Blame SOURCES/binutils-CVE-2018-17358.patch

869a11
diff -rup binutils.orig/bfd/dwarf2.c binutils-2.30/bfd/dwarf2.c
869a11
--- binutils.orig/bfd/dwarf2.c	2018-09-26 15:07:47.162863937 +0100
869a11
+++ binutils-2.30/bfd/dwarf2.c	2018-09-26 15:08:50.868368183 +0100
869a11
@@ -527,6 +527,7 @@ read_section (bfd *	      abfd,
869a11
   asection *msec;
869a11
   const char *section_name = sec->uncompressed_name;
869a11
   bfd_byte *contents = *section_buffer;
869a11
+  bfd_size_type amt;
869a11
 
869a11
   /* The section may have already been read.  */
869a11
   if (contents == NULL)
869a11
@@ -549,7 +550,14 @@ read_section (bfd *	      abfd,
869a11
       *section_size = msec->rawsize ? msec->rawsize : msec->size;
869a11
       /* Paranoia - alloc one extra so that we can make sure a string
869a11
 	 section is NUL terminated.  */
869a11
-      contents = (bfd_byte *) bfd_malloc (*section_size + 1);
869a11
+      amt = *section_size + 1;
869a11
+      if (amt == 0)
869a11
+	{
869a11
+	  bfd_set_error (bfd_error_no_memory);
869a11
+	  return FALSE;
869a11
+	}
869a11
+      contents = (bfd_byte *) bfd_malloc (amt);
869a11
+
869a11
       if (contents == NULL)
869a11
 	return FALSE;
869a11
       if (syms
869a11
diff -rup binutils.orig/bfd/syms.c binutils-2.30/bfd/syms.c
869a11
--- binutils.orig/bfd/syms.c	2018-09-26 15:07:47.162863937 +0100
869a11
+++ binutils-2.30/bfd/syms.c	2018-09-26 15:11:41.671038993 +0100
869a11
@@ -1035,6 +1035,10 @@ _bfd_stab_section_find_nearest_line (bfd
869a11
 					 0, strsize))
869a11
 	return FALSE;
869a11
 
869a11
+      /* Stab strings ought to be nul terminated.  Ensure the last one
869a11
+	 is, to prevent running off the end of the buffer.  */
869a11
+      info->strs[strsize - 1] = 0;
869a11
+
869a11
       /* If this is a relocatable object file, we have to relocate
869a11
 	 the entries in .stab.  This should always be simple 32 bit
869a11
 	 relocations against symbols defined in this object file, so
869a11
@@ -1073,7 +1077,8 @@ _bfd_stab_section_find_nearest_line (bfd
869a11
 		  || r->howto->bitsize != 32
869a11
 		  || r->howto->pc_relative
869a11
 		  || r->howto->bitpos != 0
869a11
-		  || r->howto->dst_mask != 0xffffffff)
869a11
+		  || r->howto->dst_mask != 0xffffffff
869a11
+		  || r->address * bfd_octets_per_byte (abfd) + 4 > stabsize)
869a11
 		{
869a11
 		  _bfd_error_handler
869a11
 		    (_("Unsupported .stab relocation"));
869a11
@@ -1195,7 +1200,8 @@ _bfd_stab_section_find_nearest_line (bfd
869a11
 		{
869a11
 		  nul_fun = stab;
869a11
 		  nul_str = str;
869a11
-		  if (file_name >= (char *) info->strs + strsize || file_name < (char *) str)
869a11
+		  if (file_name >= (char *) info->strs + strsize
869a11
+		      || file_name < (char *) str)
869a11
 		    file_name = NULL;
869a11
 		  if (stab + STABSIZE + TYPEOFF < info->stabs + stabsize
869a11
 		      && *(stab + STABSIZE + TYPEOFF) == (bfd_byte) N_SO)
869a11
@@ -1206,7 +1212,8 @@ _bfd_stab_section_find_nearest_line (bfd
869a11
 		      directory_name = file_name;
869a11
 		      file_name = ((char *) str
869a11
 				   + bfd_get_32 (abfd, stab + STRDXOFF));
869a11
-		      if (file_name >= (char *) info->strs + strsize || file_name < (char *) str)
869a11
+		      if (file_name >= (char *) info->strs + strsize
869a11
+			  || file_name < (char *) str)
869a11
 			file_name = NULL;
869a11
 		    }
869a11
 		}
869a11
@@ -1217,7 +1224,8 @@ _bfd_stab_section_find_nearest_line (bfd
869a11
 	      file_name = (char *) str + bfd_get_32 (abfd, stab + STRDXOFF);
869a11
 	      /* PR 17512: file: 0c680a1f.  */
869a11
 	      /* PR 17512: file: 5da8aec4.  */
869a11
-	      if (file_name >= (char *) info->strs + strsize || file_name < (char *) str)
869a11
+	      if (file_name >= (char *) info->strs + strsize
869a11
+		  || file_name < (char *) str)
869a11
 		file_name = NULL;
869a11
 	      break;
869a11
 
869a11
@@ -1226,7 +1234,8 @@ _bfd_stab_section_find_nearest_line (bfd
869a11
 	      function_name = (char *) str + bfd_get_32 (abfd, stab + STRDXOFF);
869a11
 	      if (function_name == (char *) str)
869a11
 		continue;
869a11
-	      if (function_name >= (char *) info->strs + strsize)
869a11
+	      if (function_name >= (char *) info->strs + strsize
869a11
+		  || function_name < (char *) str)
869a11
 		function_name = NULL;
869a11
 
869a11
 	      nul_fun = NULL;
869a11
@@ -1335,7 +1344,8 @@ _bfd_stab_section_find_nearest_line (bfd
869a11
 	  if (val <= offset)
869a11
 	    {
869a11
 	      file_name = (char *) str + bfd_get_32 (abfd, stab + STRDXOFF);
869a11
-	      if (file_name >= (char *) info->strs + strsize || file_name < (char *) str)
869a11
+	      if (file_name >= (char *) info->strs + strsize
869a11
+		  || file_name < (char *) str)
869a11
 		file_name = NULL;
869a11
 	      *pline = 0;
869a11
 	    }