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