LinuxQuestions.org
Visit Jeremy's Blog.
Home Forums Tutorials Articles Register
Go Back   LinuxQuestions.org > Forums > Non-*NIX Forums > Programming
User Name
Password
Programming This forum is for all programming questions.
The question does not have to be directly related to Linux and any language is fair game.

Notices


Reply
  Search this Thread
Old 03-09-2011, 09:07 AM   #1
tsg
Member
 
Registered: Mar 2008
Posts: 155

Rep: Reputation: 30
writing "\r" to /dev/ttyS* causes segmentation fault


This is a C++ program I wrote years ago that has been chugging along fine with no problems until I recently upgraded from Slackware 13.0 to 13.1. Suddenly the process dies with a segfault. I recompiled against the new libraries and still no luck.

This is the offending bit of code:

Code:
int comm_handler::transmit(const byte* out, size_t len) {
        size_t written = 0;
        ssize_t count;
        int fail = FALSE;

        while ((written < len) && !fail) {
                count = write(fd,out+written,len-written);
                if (count == -1) {
                        syslog(LOG_ERR,"transmit failed: %s",strerror(errno));
                        fail = TRUE;
                }
                else
                        written += count;
        }
        if ((written < len) || fail)
                return -1;
        else
                return 1;
}
When it is called with out = "ATH0\r" and len = 5, I get a segfault. When I call it with out = "ATH0 " (note trailing space), it goes through. Unfortunately I need a carriage return at the end or the modem doesn't process the command.

Can anyone explain why a carriage return would cause a segfault?
 
Old 03-09-2011, 09:44 AM   #2
dwhitney67
Senior Member
 
Registered: Jun 2006
Location: Maryland
Distribution: Kubuntu, Fedora, RHEL
Posts: 1,541

Rep: Reputation: 335Reputation: 335Reputation: 335Reputation: 335
The code you presented looks fine, thus I wonder if this is really the source of the SEGV. Have you debugged the code, using gdb, so verify that all of the parameter values and class member data (ie. 'fd') are valid values?
 
Old 03-09-2011, 09:58 AM   #3
tsg
Member
 
Registered: Mar 2008
Posts: 155

Original Poster
Rep: Reputation: 30
My knowledge of gdb is limited, but I have used it to step through the function. It fails consistently on the write() function. I tried to debug it with a core dump but I my libraries don't have debugging symbols so I don't get much meaningful data. fd, as far as I can tell, is valid (at least, it's the same value returned by the "open" function earlier), as is out, and len.

I've used minicom on the serial port to communicate with the modem and that much seems to work. It's really messing with me because the only thing that's changed is a minor version of the operating system and I haven't seen anything in the changelogs that might indicate this would be an issue.

It also segfaults if out is "ATH0\n", "ATH0\r ", "\rATH0".
 
Old 03-09-2011, 10:05 AM   #4
dwhitney67
Senior Member
 
Registered: Jun 2006
Location: Maryland
Distribution: Kubuntu, Fedora, RHEL
Posts: 1,541

Rep: Reputation: 335Reputation: 335Reputation: 335Reputation: 335
When you call transmit(), are you hard-coding the string for 'out', or is it a variable that you are passing? If the latter, can you show how it is declared.
 
Old 03-09-2011, 10:30 AM   #5
tsg
Member
 
Registered: Mar 2008
Posts: 155

Original Poster
Rep: Reputation: 30
It's part of a loop that attempts to reset the modem:

Code:
   266          for (tries=0; tries < 3; tries++) {
   267                  syslog(LOG_DEBUG,"DEBUG: sending \"ATH0\"");
   268                  if (transmit((byte*)"ATH0\r",5) < 0 )
   269                          continue;
   270                  syslog(LOG_DEBUG,"DEBUG: waiting for \"OK\"");
   271                  if (waitfor((byte*)"OK\r",3,MODEM_TIMEOUT) <= 0)
   272                          continue;
   273                  syslog(LOG_DEBUG,"DEBUG: done waiting for \"OK\"");
   274                  done = TRUE;
   275                  break;
   276          }
Line 268 is where it crashes, but it also happens to be the first time the method is called.

For grins, I connected the same modem to another machine with the same operating system and had the same problem.
 
Old 03-09-2011, 11:04 AM   #6
theNbomr
LQ 5k Club
 
Registered: Aug 2005
Distribution: OpenSuse, Fedora, Redhat, Debian
Posts: 5,399
Blog Entries: 2

Rep: Reputation: 908Reputation: 908Reputation: 908Reputation: 908Reputation: 908Reputation: 908Reputation: 908Reputation: 908
Wild-ass shot in the dark: something has made your literal strings look like multi-byte characters, or the system is incorrectly expecting them to be. I've never really understood the mechanisms behind all of that hocus-pocus, but is seems reasonable that it might occur with an OS upgrade.

--- rod.
 
Old 03-09-2011, 11:14 AM   #7
tsg
Member
 
Registered: Mar 2008
Posts: 155

Original Poster
Rep: Reputation: 30
Now that you mention it, during the install, the setup program asked me something about UTF. I didn't understand what it was asking (and can't remember what it said), but offered a "safe option" which I took. I wonder if that had anything to do with it.
 
Old 03-09-2011, 11:17 AM   #8
dwhitney67
Senior Member
 
Registered: Jun 2006
Location: Maryland
Distribution: Kubuntu, Fedora, RHEL
Posts: 1,541

Rep: Reputation: 335Reputation: 335Reputation: 335Reputation: 335
Check the setting of the LANG environment variable.

Also, are you certain there is not any problems (ie. buffer overflow) in syslog()?
 
Old 03-09-2011, 11:33 AM   #9
tsg
Member
 
Registered: Mar 2008
Posts: 155

Original Poster
Rep: Reputation: 30
Quote:
Originally Posted by dwhitney67 View Post
Check the setting of the LANG environment variable.
for my account (the one I'm compiling the program in): LANG=en_US
for root (whose running the program): LANG is not set

Quote:
Also, are you certain there is not any problems (ie. buffer overflow) in syslog()?
I hadn't thought to look, but there is nothing in syslog or messages that looks at all helpful.

EDIT(2): sorry, I misunderstood. The syslog()'s were added after the SEGV showed up as a means of tracing it.

EDIT: It also doesn't seem to matter if write is passed a byte* or char*, it still crashes.

Last edited by tsg; 03-09-2011 at 12:10 PM. Reason: additional info
 
Old 03-09-2011, 12:08 PM   #10
tsg
Member
 
Registered: Mar 2008
Posts: 155

Original Poster
Rep: Reputation: 30
I will also accept suggestions for a better way to do this ie. write AT commands to a US Robotics modem.
 
Old 03-09-2011, 01:07 PM   #11
dwhitney67
Senior Member
 
Registered: Jun 2006
Location: Maryland
Distribution: Kubuntu, Fedora, RHEL
Posts: 1,541

Rep: Reputation: 335Reputation: 335Reputation: 335Reputation: 335
On my system, root has LANG set to en_US.UTF-8, as does the regular-user account.

I do not have a USR device to play with, much less any other device that uses the /dev/ttyS* interfaces. Thus when I attempt to send data to a device such as /dev/ttyS0, I always get an "Input/output" error.
 
Old 03-09-2011, 01:36 PM   #12
theNbomr
LQ 5k Club
 
Registered: Aug 2005
Distribution: OpenSuse, Fedora, Redhat, Debian
Posts: 5,399
Blog Entries: 2

Rep: Reputation: 908Reputation: 908Reputation: 908Reputation: 908Reputation: 908Reputation: 908Reputation: 908Reputation: 908
What happens if you try sending individual characters/bytes sequentially?
Code:
    transmit((byte*)"A",1);
    transmit((byte*)"T",1);
    transmit((byte*)"H",1);
    transmit((byte*)"0",1);
    transmit((byte*)"\r",1);
Just trying to see whether it is the carriage return, or the carriage return in combination, or...?

What if you contrive your string data to be read from somewhere at runtime, rather than as embedded literal strings?

Did any permissions/ownership on your device pseudo-files change during the upgrade? Any changes applied in the udev system? What about the driver version for that serial port (really a stretch for something as tried & true as a standard serial port, but...?)

Do you fully initialize the serial port before using it (i.e. set all of the appropriate termios parameters); something new might be applying a setting that didn't exist before.

--- rod.
 
Old 03-09-2011, 01:50 PM   #13
tsg
Member
 
Registered: Mar 2008
Posts: 155

Original Poster
Rep: Reputation: 30
Quote:
Originally Posted by dwhitney67 View Post
On my system, root has LANG set to en_US.UTF-8, as does the regular-user account.
Changing LANG doesn't seem to help.
 
Old 03-09-2011, 02:06 PM   #14
tsg
Member
 
Registered: Mar 2008
Posts: 155

Original Poster
Rep: Reputation: 30
I may have figured something out: it may not be the transmit that is choking it but the receive, hence the carriage return causing the issue. I have the modem configured not to echo any input, so it's not going to generate any output until the carriage return. That's run in a separate handler:

Code:
void comm_handler::io_handler(int status) {
        int res,x;
        byte buf[255];
        sigset_t newset, oldset;
        sigfillset(&newset);

        sigprocmask(SIG_BLOCK,&newset,&oldset);
        res = read(fd,buf,255);
        for (x=0; x<res;x++) {
                b.push(buf[x]);
        }
        sigprocmask(SIG_SETMASK,&oldset,NULL);
}
which is set up with:

Code:
void comm_handler::init_port() {
        io.sa_handler = comm_handler::io_handler;
        sigemptyset(&io.sa_mask);
        sigaddset(&io.sa_mask,SIGIO);
        sigaction(SIGIO,&io,NULL);
        fcntl(fd,F_SETOWN,getpid());
}
I have to plead ignorance to a lot of this since I grabbed it from an online tutorial somewhere and it worked; I don't understand a lot of what it is doing. I believe that init_port() registers io_handler() as a method to be called anytime there is input available at the serial port, triggered by a SIGIO signal. The sigprocmask stuff I don't have a clue what it's doing.

b is a buffer class that I wrote to contain the input data. I'll have to go digging in there to see if maybe I screwed something up, although it has been working for years.

This is getting deep, and I appreciate the help.
 
Old 03-09-2011, 02:35 PM   #15
wje_lq
Member
 
Registered: Sep 2007
Location: Mariposa
Distribution: FreeBSD,Debian wheezy
Posts: 811

Rep: Reputation: 179Reputation: 179
Quote:
Originally Posted by tsg View Post
I will also accept suggestions for a better way to do this ie. write AT commands to a US Robotics modem.
Oh! Well, then.

It turns out I have one of those. A US Robotics Courier. Once a month I use it to dial out to the National Bureau of Standards folks to find out what time it is. I wrote a C program which does this. As long as I was doing it, I wrote (inside the source file) a 950-line comment on how to program your modem in C. Can't hurt to give it a look-see, right?

For at least the next two weeks, you can get it here.
 
  


Reply



Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is Off
HTML code is Off



Similar Threads
Thread Thread Starter Forum Replies Last Post
"netstat -l" gives "segmentation fault" Earwig Linux - Newbie 2 03-31-2010 04:12 PM
/etc/rc.d/rc.sysinit: line 46: 819 Segmentation fault LC_ALL=C fgrep -q "/dev " /proc RMLinux Linux - Newbie 1 12-01-2008 02:53 AM
sunbird 0.3 does not start, error: Segmentation fault : "$prog" ${1+"$@"} polemon Ubuntu 8 01-08-2007 04:22 AM
why iam getting problems like "...too many files opened" or "segmentation fault" naren_0101bits Linux - Newbie 2 07-19-2004 12:20 PM
Writing to "/dev/usb/hiddev*" and to "/proc/bus/usb/00B/00S" throw an arror EI stpg Programming 0 07-14-2004 05:44 AM

LinuxQuestions.org > Forums > Non-*NIX Forums > Programming

All times are GMT -5. The time now is 10:33 PM.

Main Menu
Advertisement
My LQ
Write for LQ
LinuxQuestions.org is looking for people interested in writing Editorials, Articles, Reviews, and more. If you'd like to contribute content, let us know.
Main Menu
Syndicate
RSS1  Latest Threads
RSS1  LQ News
Twitter: @linuxquestions
Open Source Consulting | Domain Registration