Blame SOURCES/glibc-rh767146.patch

b40826
diff -rup a/elf/dl-load.c b/elf/dl-load.c
b40826
--- a/elf/dl-load.c	2012-02-03 10:59:58.917870716 -0700
b40826
+++ b/elf/dl-load.c	2012-02-03 11:01:01.796580644 -0700
b40826
@@ -1130,6 +1130,16 @@ _dl_map_object_from_fd (const char *name
b40826
 		= N_("ELF load command address/offset not properly aligned");
b40826
 	      goto call_lose;
b40826
 	    }
b40826
+	  if (__builtin_expect ((ph->p_offset + ph->p_filesz > st.st_size), 0))
b40826
+	    {
b40826
+	      /* If the segment requires zeroing of part of its last
b40826
+		 page, we'll crash when accessing the unmapped page.
b40826
+		 There's still a possibility of a race, if the shared
b40826
+		 object is truncated between the fxstat above and the
b40826
+		 memset below.  */
b40826
+	      errstring = N_("ELF load command past end of file");
b40826
+	      goto call_lose;
b40826
+	    }
b40826
 
b40826
 	  c = &loadcmds[nloadcmds++];
b40826
 	  c->mapstart = ph->p_vaddr & ~(GLRO(dl_pagesize) - 1);
b40826
Only in b/elf: dl-load.c.orig