Blame SOURCES/binutils-CVE-2019-17451.patch

38fe89
--- binutils.orig/bfd/dwarf2.c	2019-11-13 11:32:09.395430104 +0000
38fe89
+++ binutils-2.33.1/bfd/dwarf2.c	2019-11-13 11:33:17.272899503 +0000
38fe89
@@ -4440,7 +4440,16 @@ _bfd_dwarf2_slurp_debug_info (bfd *abfd,
38fe89
       for (total_size = 0;
38fe89
 	   msec;
38fe89
 	   msec = find_debug_info (debug_bfd, debug_sections, msec))
38fe89
-	total_size += msec->size;
38fe89
+       {
38fe89
+         /* Catch PR25070 testcase overflowing size calculation here.  */
38fe89
+         if (total_size + msec->size < total_size
38fe89
+             || total_size + msec->size < msec->size)
38fe89
+           {
38fe89
+             bfd_set_error (bfd_error_no_memory);
38fe89
+             return FALSE;
38fe89
+           }
38fe89
+         total_size += msec->size;
38fe89
+       }
38fe89
 
38fe89
       stash->info_ptr_memory = (bfd_byte *) bfd_malloc (total_size);
38fe89
       if (stash->info_ptr_memory == NULL)