public inbox for gcc-patches@gcc.gnu.org
 help / color / mirror / Atom feed
* [Patch, Fortran] PR55475 - fix invalid reads with show_locus
@ 2012-11-26 22:28 Tobias Burnus
  2012-12-03  8:57 ` Tobias Burnus
  0 siblings, 1 reply; 2+ messages in thread
From: Tobias Burnus @ 2012-11-26 22:28 UTC (permalink / raw)
  To: gcc patches, gfortran

[-- Attachment #1: Type: text/plain, Size: 584 bytes --]

As found with -fsanitize=address by HJ, but it also shows up with 
valgrind. The fix for the PR is the change in scanner.c; I think the 
patch is rather obvious.

The change in error.c is due to:

   if (c1 == c2)
     c2 += 1;

which could lead to an out-of-bounds condition is "c1" is already at the 
last character - then one exceeds the bound for c2.

Build and tested on x86-64-linux with no new failures.*
OK for the trunk?

Tobias

* I get: FAIL for gfortran.dg/lto/pr45586, 
gfortran.dg/realloc_on_assign_5.f03 and gfortran.dg/reassoc_4.f and 
XPASS for gfortran.dg/do_1.f90.

[-- Attachment #2: locus.diff --]
[-- Type: text/x-patch, Size: 1467 bytes --]

2012-11-26  Tobias Burnus  <burnus@net-b.de>

	PR fortran/55475
	* scanner.c (gfc_next_char_literal): Fix setting locus
	to free_line_length for the error message.
	* error.c (show_locus): Fix potential out-of-bounds
	read.

diff --git a/gcc/fortran/error.c b/gcc/fortran/error.c
index 4b06156..611540c 100644
--- a/gcc/fortran/error.c
+++ b/gcc/fortran/error.c
@@ -387,7 +387,7 @@ show_locus (locus *loc, int c1, int c2)
   cmax -= offset;
 
   p = &(lb->line[offset]);
-  for (i = 0; i <= cmax; i++)
+  for (i = 0; i < cmax; i++)
     {
       int spaces, j;
       spaces = gfc_widechar_display_length (*p++);
@@ -401,6 +401,11 @@ show_locus (locus *loc, int c1, int c2)
 	error_char (' ');
     }
 
+  if (i == c1)
+    error_char ('1');
+  else if (i == c2)
+    error_char ('2');
+
   error_char ('\n');
 
 }
diff --git a/gcc/fortran/scanner.c b/gcc/fortran/scanner.c
index e0556a9..765c0f9 100644
--- a/gcc/fortran/scanner.c
+++ b/gcc/fortran/scanner.c
@@ -1068,10 +1068,12 @@ restart:
 	  && gfc_current_locus.lb->truncated)
 	{
 	  int maxlen = gfc_option.free_line_length;
+	  gfc_char_t *current_nextc = gfc_current_locus.nextc;
+
 	  gfc_current_locus.lb->truncated = 0;
-	  gfc_current_locus.nextc += maxlen;
+	  gfc_current_locus.nextc =  gfc_current_locus.lb->line + maxlen;
 	  gfc_warning_now ("Line truncated at %L", &gfc_current_locus);
-	  gfc_current_locus.nextc -= maxlen;
+	  gfc_current_locus.nextc = current_nextc;
 	}
 
       if (c != '&')

^ permalink raw reply	[flat|nested] 2+ messages in thread

* Re: [Patch, Fortran] PR55475 - fix invalid reads with show_locus
  2012-11-26 22:28 [Patch, Fortran] PR55475 - fix invalid reads with show_locus Tobias Burnus
@ 2012-12-03  8:57 ` Tobias Burnus
  0 siblings, 0 replies; 2+ messages in thread
From: Tobias Burnus @ 2012-12-03  8:57 UTC (permalink / raw)
  To: gcc patches, gfortran

I have now committed that patch as obvious, Rev. 194076.

http://gcc.gnu.org/ml/fortran/2012-11/msg00084.html

Tobias

Tobias Burnus wrote:
> As found with -fsanitize=address by HJ, but it also shows up with 
> valgrind. The fix for the PR is the change in scanner.c; I think the 
> patch is rather obvious.
>
> The change in error.c is due to:
>
>   if (c1 == c2)
>     c2 += 1;
>
> which could lead to an out-of-bounds condition is "c1" is already at 
> the last character - then one exceeds the bound for c2.
>
> Build and tested on x86-64-linux with no new failures.*
> OK for the trunk?
>
> Tobias
>
> * I get: FAIL for gfortran.dg/lto/pr45586, 
> gfortran.dg/realloc_on_assign_5.f03 and gfortran.dg/reassoc_4.f and 
> XPASS for gfortran.dg/do_1.f90.

^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2012-12-03  8:57 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2012-11-26 22:28 [Patch, Fortran] PR55475 - fix invalid reads with show_locus Tobias Burnus
2012-12-03  8:57 ` Tobias Burnus

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).