LinuxQuestions.org
Download your favorite Linux distribution at LQ ISO.
Home Forums Tutorials Articles Register
Go Back   LinuxQuestions.org > Forums > Linux Forums > Linux - Newbie
User Name
Password
Linux - Newbie This Linux forum is for members that are new to Linux.
Just starting out and have a question? If it is not in the man pages or the how-to's this is the place!

Notices


Reply
  Search this Thread
Old 01-19-2013, 07:00 PM   #1
bloozman23
LQ Newbie
 
Registered: Jan 2011
Location: India
Distribution: ubuntu/Fedora/Puppy
Posts: 29

Rep: Reputation: 0
Exclamation segmentation fault bash script


When bash script is invoked it leaves the following
error message

Calculating results for Mix - 1
./06_hresult.sh: line 15: 2075 Segmentation fault
139
Calculating results for Mix - 2
./06_hresult.sh: line 15: 2076 Segmentation fault
139
Calculating results for Mix - 4
./06_hresult.sh: line 15: 2077 Segmentation fault
139
Calculating results for Mix - 8
./06_hresult.sh: line 15: 2078 Segmentation fault
139
Calculating results for Mix - 16
./06_hresult.sh: line 15: 2079 Segmentation fault
139
Calculating results for Mix - 32
./06_hresult.sh: line 15: 2080 Segmentation fault
139
Calculating results for Mix - 64
./06_hresult.sh: line 15: 2081 Segmentation fault
139


script
Code:
#!/bin/bash


ceilMix=64
ceilItr=10

mix=1

while [ $mix -le $ceilMix ]
do
	echo "Calculating results for Mix - $mix"
	HResults -T 00020  -p -t -I /media/dvone/hmmtest/mlf/allmlf-test.mlf /media/dvone/hmmtest/dics/wlist /media/dvone/hmmtest/mlf/recout_mix$mix'_'hmm$ceilItr.mlf > /media/dvone/hmmtest/results/result_mix$mix'_'hmm$ceilItr
       echo $?
	mix=$((mix*2))
done
ubuntu 11.10
64 bit
RAM -1GB
 
Old 01-19-2013, 07:32 PM   #2
Ser Olmy
Senior Member
 
Registered: Jan 2012
Distribution: Slackware
Posts: 3,334

Rep: Reputation: Disabled
The segmentation fault occurs after the "Calculating results" text but before the echo $? statement. This only leaves one possibility: The "HResults" command in line 12, whatever that is.
 
Old 01-19-2013, 09:19 PM   #3
bloozman23
LQ Newbie
 
Registered: Jan 2011
Location: India
Distribution: ubuntu/Fedora/Puppy
Posts: 29

Original Poster
Rep: Reputation: 0
valgrind says

Code:
==3768== Invalid read of size 2
==3768==    at 0x4C59FE1: getenv (getenv.c:90)
==3768==    by 0x4C8F21D: __libc_message (libc_fatal.c:67)
==3768==    by 0x4D140F4: __fortify_fail (fortify_fail.c:32)
==3768==    by 0x4D140A6: __stack_chk_fail (stack_chk_fail.c:29)
==3768==    by 0x804C2E0: OutTrans (HResults.c:1092)
==3768==    by 0x2020201F: ???
==3768==  Address 0x20202020 is not stack'd, malloc'd or (recently) free'd
==3768== 
==3768== 
==3768== Process terminating with default action of signal 11 (SIGSEGV)
==3768==  Access not within mapped region at address 0x20202020
==3768==    at 0x4C59FE1: getenv (getenv.c:90)
==3768==    by 0x4C8F21D: __libc_message (libc_fatal.c:67)
==3768==    by 0x4D140F4: __fortify_fail (fortify_fail.c:32)
==3768==    by 0x4D140A6: __stack_chk_fail (stack_chk_fail.c:29)
==3768==    by 0x804C2E0: OutTrans (HResults.c:1092)
==3768==    by 0x2020201F: ???
==3768==  If you believe this happened as a result of a stack
==3768==  overflow in your program's main thread (unlikely but
==3768==  possible), you can try to increase the size of the
==3768==  main thread stack using the --main-stacksize= flag.
==3768==  The main thread stack size used in this run was 8388608.
==3768== 
==3768== HEAP SUMMARY:
==3768==     in use at exit: 1,036,774 bytes in 72 blocks
==3768==   total heap usage: 236 allocs, 164 frees, 4,462,990 bytes allocated
==3768== 
==3768== LEAK SUMMARY:
==3768==    definitely lost: 0 bytes in 0 blocks
==3768==    indirectly lost: 0 bytes in 0 blocks
==3768==      possibly lost: 0 bytes in 0 blocks
==3768==    still reachable: 1,036,774 bytes in 72 blocks
==3768==         suppressed: 0 bytes in 0 blocks
==3768== Reachable blocks (those to which a pointer was found) are not shown.
==3768== To see them, rerun with: --leak-check=full --show-reachable=yes
==3768== 
==3768== For counts of detected and suppressed errors, rerun with: -v
==3768== ERROR SUMMARY: 1 errors from 1 contexts (suppressed: 13 from 6)
Segmentation fault
 
Old 01-20-2013, 06:30 PM   #4
chrism01
LQ Guru
 
Registered: Aug 2004
Location: Sydney
Distribution: Rocky 9.2
Posts: 18,356

Rep: Reputation: 2751Reputation: 2751Reputation: 2751Reputation: 2751Reputation: 2751Reputation: 2751Reputation: 2751Reputation: 2751Reputation: 2751Reputation: 2751Reputation: 2751
Well here
Code:
==3768==    by 0x804C2E0: OutTrans (HResults.c:1092)
its hinting towards line 1092 in the C src. The error may have originated elsewhere, but that's where it failed.
When I used to do C, SIGSEGV aka SIG 11 was usually caused by writing beyond the end of an array, often a 'string' array, overwriting the terminating \0.
This could cause other data to be corrupted. Alternately, a subsequent read would read into the memory region beyond and crash.
 
1 members found this post helpful.
Old 01-20-2013, 07:42 PM   #5
bloozman23
LQ Newbie
 
Registered: Jan 2011
Location: India
Distribution: ubuntu/Fedora/Puppy
Posts: 29

Original Poster
Rep: Reputation: 0
Code:
/* OutTrans: output aligned transcriptions using best path in grid */
void OutTrans(void)
{
   char refBuf[4096];           /* no checking of output length so */
   char testBuf[4096];          /* these are generous sizes */
   
   strcpy(refBuf," LAB: ");
   strcpy(testBuf," REC: ");
   AppendCell(nTest,nRef,testBuf,refBuf);
   printf("Aligned transcription: %s vs %s\n", labfn, recfn);
   printf("%s\n",refBuf);
   printf("%s\n",testBuf);
   fflush(stdout);
}
Here is the OutTrans Function
 
Old 01-20-2013, 07:48 PM   #6
Ser Olmy
Senior Member
 
Registered: Jan 2012
Distribution: Slackware
Posts: 3,334

Rep: Reputation: Disabled
Quote:
Originally Posted by bloozman23 View Post
Code:
   char refBuf[4096];           /* no checking of output length so */
   char testBuf[4096];          /* these are generous sizes */
I think that qualifies as "famous last words" in C.

Which line is number 1092?
 
Old 01-20-2013, 07:55 PM   #7
chrism01
LQ Guru
 
Registered: Aug 2004
Location: Sydney
Distribution: Rocky 9.2
Posts: 18,356

Rep: Reputation: 2751Reputation: 2751Reputation: 2751Reputation: 2751Reputation: 2751Reputation: 2751Reputation: 2751Reputation: 2751Reputation: 2751Reputation: 2751Reputation: 2751
Code:
no checking of output length
says it all really

I can't debug your code for you from here, but basically you need to check the size/len of all the vars mentioned there. It looks like the actual error will be in the AppendCell() fn (or a fn called from there...).
OutTrans() itself doesn't do any var manipulation; just assigns start values and prints the results.
 
1 members found this post helpful.
Old 01-20-2013, 09:52 PM   #8
bloozman23
LQ Newbie
 
Registered: Jan 2011
Location: India
Distribution: ubuntu/Fedora/Puppy
Posts: 29

Original Poster
Rep: Reputation: 0
Quote:
Originally Posted by Ser Olmy View Post
I think that qualifies as "famous last words" in C.

Which line is number 1092?
1080 -1092
void OutTrans(void)
{
char refBuf[4096]; /* no checking of output length so */
char testBuf[4096]; /* these are generous sizes */

strcpy(refBuf," LAB: ");
strcpy(testBuf," REC: ");
AppendCell(nTest,nRef,testBuf,refBuf);
printf("Aligned transcription: %s vs %s\n", labfn, recfn);
printf("%s\n",refBuf);
printf("%s\n",testBuf);
fflush(stdout);
}
 
Old 01-20-2013, 09:58 PM   #9
bloozman23
LQ Newbie
 
Registered: Jan 2011
Location: India
Distribution: ubuntu/Fedora/Puppy
Posts: 29

Original Poster
Rep: Reputation: 0
[QUOTE=chrism01;4874369]
Code:
no checking of output length
says it all really

I can't debug your code for you from here, but basically you need to check the size/len of all the vars mentioned there. It looks like the actual error will be in the AppendCell() fn (or a fn called from there...).
OutTrans() itself doesn't do any var manipulation; just assigns start values and prints the results.[/QUOTE

Thank you Chris for your value clues,
reference ApppendCell()
Code:
/* AppendCell: path upto grid[i][j] to tb and rb (recursive) */
void AppendCell(int i, int j, char *tb, char *rb)
{
   char *rlab,*tlab;
   LabId rid=NULL,tid=NULL;
   char empty[1];

   if (i<0 || j<0) 
      HError(3391,"AppendCell: Trace back failure");
   empty[0] = '\0'; rlab = tlab = empty;
   switch (grid[i][j].dir) {
   case DIAG:
      tid  = lTest[i]; tlab = tid->name;
      rid  = lRef[j]; rlab = rid->name;
      AppendCell(i-1,j-1,tb,rb); break;
   case HOR:
      tid  = lTest[i]; tlab = tid->name;
      rid = NULL; rlab = empty;
      AppendCell(i-1,j,tb,rb); break;
   case VERT:
      tid = NULL; tlab = empty;
      rid  = lRef[j]; rlab = rid->name;
      AppendCell(i,j-1,tb,rb); break;
   case NIL:
      return;
   }
   if (tid != nulClass && rid != nulClass)
      AppendPair(rb,rlab,tb,tlab);
}
 
Old 01-21-2013, 12:37 PM   #10
jpollard
Senior Member
 
Registered: Dec 2012
Location: Washington DC area
Distribution: Fedora, CentOS, Slackware
Posts: 4,912

Rep: Reputation: 1513Reputation: 1513Reputation: 1513Reputation: 1513Reputation: 1513Reputation: 1513Reputation: 1513Reputation: 1513Reputation: 1513Reputation: 1513Reputation: 1513
It isn't the size guys - it is copying a total of 7 bytes.

The problem is more likely that these buffers are passed to another structure, and then stored.

The buffers are on the stack, so when the function returns, anything that is pointing to them will be corrupted by other functions.

Notice the function AppendCell - the parameters are tb and rb. These are the stacked 4k arrays passed to AppendPair... so does AppendPair happen to require heap allocated strings?

If not, then there is no need for the 4k arrays - constant strings would work just as well, and save 8k of stack space as a benefit.

Last edited by jpollard; 01-21-2013 at 12:40 PM.
 
1 members found this post helpful.
  


Reply

Tags
bash, segmentation fault



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
Segmentation fault (core dumped) error in mobiwan script simz Linux - Software 6 02-09-2015 04:49 AM
segmentation fault in my script genderbender Linux - Software 6 02-17-2011 03:41 AM
chroot'ing gives a bash segmentation fault chrisyc Linux - Software 1 04-19-2006 03:06 AM
Segmentation fault when mounting from a bash script crc294 Linux - Hardware 3 06-25-2004 04:00 PM
Executing chat script aolnet.scm Segmentation fault degraffenried13 Linux - Software 0 11-16-2003 08:05 PM

LinuxQuestions.org > Forums > Linux Forums > Linux - Newbie

All times are GMT -5. The time now is 06:58 AM.

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