Author: robert
Date: 2011-08-13 22:09:30 -0600 (Sat, 13 Aug 2011)
New Revision: 2309

Added:
   trunk/binutils/binutils-2.21.1-pt_pax-1.patch
Log:
Add PaX patches for Binutils

Added: trunk/binutils/binutils-2.21.1-pt_pax-1.patch
===================================================================
--- trunk/binutils/binutils-2.21.1-pt_pax-1.patch                               
(rev 0)
+++ trunk/binutils/binutils-2.21.1-pt_pax-1.patch       2011-08-14 04:09:30 UTC 
(rev 2309)
@@ -0,0 +1,254 @@
+Submitted By: Robert Connolly <[email protected]> (ashes)
+Date: 2011-08-13
+Initial Package Version: 2.21.1
+Upstream Status: Unknown
+Origin:
+http://sources.gentoo.org/cgi-bin/viewvc.cgi/gentoo/src/patchsets/binutils/2.21.1/63_all_binutils-2.21-pt-pax-flags-20101209.patch?revision=1.1
+Description: This adds PT_PAX_FLAGS to Binutils. See: 
http://pax.grsecurity.net/
+
+diff -Naur binutils-2.21.1.orig//bfd/elf-bfd.h binutils-2.21.1/bfd/elf-bfd.h
+--- binutils-2.21.1.orig//bfd/elf-bfd.h        2011-06-27 07:39:03.000000000 
+0000
++++ binutils-2.21.1/bfd/elf-bfd.h      2011-08-14 03:42:30.706649268 +0000
+@@ -1577,6 +1577,9 @@
+   /* Segment flags for the PT_GNU_STACK segment.  */
+   unsigned int stack_flags;
+ 
++  /* Segment flags for the PT_PAX_FLAGS segment.  */
++  unsigned int pax_flags;
++
+   /* Symbol version definitions in external objects.  */
+   Elf_Internal_Verdef *verdef;
+ 
+diff -Naur binutils-2.21.1.orig//bfd/elf.c binutils-2.21.1/bfd/elf.c
+--- binutils-2.21.1.orig//bfd/elf.c    2011-06-27 07:39:04.000000000 +0000
++++ binutils-2.21.1/bfd/elf.c  2011-08-14 03:42:30.709649036 +0000
+@@ -1158,6 +1158,7 @@
+     case PT_GNU_EH_FRAME: pt = "EH_FRAME"; break;
+     case PT_GNU_STACK: pt = "STACK"; break;
+     case PT_GNU_RELRO: pt = "RELRO"; break;
++    case PT_PAX_FLAGS: pt = "PAX_FLAGS"; break;
+     default: pt = NULL; break;
+     }
+   return pt;
+@@ -2477,6 +2478,9 @@
+     case PT_GNU_RELRO:
+       return _bfd_elf_make_section_from_phdr (abfd, hdr, hdr_index, "relro");
+ 
++    case PT_PAX_FLAGS:
++      return _bfd_elf_make_section_from_phdr (abfd, hdr, index, "pax_flags");
++
+     default:
+       /* Check for any processor-specific program segment types.  */
+       bed = get_elf_backend_data (abfd);
+@@ -3551,6 +3555,11 @@
+       ++segs;
+     }
+ 
++    {
++      /* We need a PT_PAX_FLAGS segment.  */
++      ++segs;
++    }
++
+   for (s = abfd->sections; s != NULL; s = s->next)
+     {
+       if ((s->flags & SEC_LOAD) != 0
+@@ -4153,6 +4162,20 @@
+           }
+       }
+ 
++    {
++      amt = sizeof (struct elf_segment_map);
++      m = bfd_zalloc (abfd, amt);
++      if (m == NULL)
++      goto error_return;
++      m->next = NULL;
++      m->p_type = PT_PAX_FLAGS;
++      m->p_flags = elf_tdata (abfd)->pax_flags;
++      m->p_flags_valid = 1;
++
++      *pm = m;
++      pm = &m->next;
++    }
++
+       free (sections);
+       elf_tdata (abfd)->segment_map = mfirst;
+     }
+@@ -5417,7 +5440,8 @@
+        6. PT_TLS segment includes only SHF_TLS sections.
+        7. SHF_TLS sections are only in PT_TLS or PT_LOAD segments.
+        8. PT_DYNAMIC should not contain empty sections at the beginning
+-        (with the possible exception of .dynamic).  */
++        (with the possible exception of .dynamic).
++       9. PT_PAX_FLAGS segments do not include any sections.  */
+ #define IS_SECTION_IN_INPUT_SEGMENT(section, segment, bed)            \
+   ((((segment->p_paddr                                                        
\
+       ? IS_CONTAINED_BY_LMA (section, segment, segment->p_paddr)      \
+@@ -5425,6 +5449,7 @@
+      && (section->flags & SEC_ALLOC) != 0)                            \
+     || IS_NOTE (segment, section))                                    \
+    && segment->p_type != PT_GNU_STACK                                 \
++   && segment->p_type != PT_PAX_FLAGS                                 \
+    && (segment->p_type != PT_TLS                                      \
+        || (section->flags & SEC_THREAD_LOCAL))                                
\
+    && (segment->p_type == PT_LOAD                                     \
+diff -Naur binutils-2.21.1.orig//bfd/elflink.c binutils-2.21.1/bfd/elflink.c
+--- binutils-2.21.1.orig//bfd/elflink.c        2011-06-27 07:39:06.000000000 
+0000
++++ binutils-2.21.1/bfd/elflink.c      2011-08-14 03:42:30.714649007 +0000
+@@ -5545,16 +5545,30 @@
+     return TRUE;
+ 
+   bed = get_elf_backend_data (output_bfd);
++
++  elf_tdata (output_bfd)->pax_flags = PF_NORANDEXEC;
++  if (info->execheap)
++    elf_tdata (output_bfd)->pax_flags |= PF_NOMPROTECT;
++  else if (info->noexecheap)
++    elf_tdata (output_bfd)->pax_flags |= PF_MPROTECT;
++
+   if (info->execstack)
+-    elf_tdata (output_bfd)->stack_flags = PF_R | PF_W | PF_X;
++    {
++      elf_tdata (output_bfd)->stack_flags = PF_R | PF_W | PF_X;
++      elf_tdata (output_bfd)->pax_flags |= PF_EMUTRAMP;
++    }
+   else if (info->noexecstack)
+-    elf_tdata (output_bfd)->stack_flags = PF_R | PF_W;
++    {
++      elf_tdata (output_bfd)->stack_flags = PF_R | PF_W;
++      elf_tdata (output_bfd)->pax_flags |= PF_NOEMUTRAMP;
++    }
+   else
+     {
+       bfd *inputobj;
+       asection *notesec = NULL;
+       int exec = 0;
+ 
++      elf_tdata (output_bfd)->pax_flags |= PF_NOEMUTRAMP;
+       for (inputobj = info->input_bfds;
+          inputobj;
+          inputobj = inputobj->link_next)
+@@ -5567,7 +5581,11 @@
+         if (s)
+           {
+             if (s->flags & SEC_CODE)
+-              exec = PF_X;
++              {
++                elf_tdata (output_bfd)->pax_flags &= ~PF_NOEMUTRAMP;
++                elf_tdata (output_bfd)->pax_flags |= PF_EMUTRAMP;
++                exec = PF_X;
++              }
+             notesec = s;
+           }
+         else if (bed->default_execstack)
+diff -Naur binutils-2.21.1.orig//binutils/readelf.c 
binutils-2.21.1/binutils/readelf.c
+--- binutils-2.21.1.orig//binutils/readelf.c   2011-03-16 08:36:01.000000000 
+0000
++++ binutils-2.21.1/binutils/readelf.c 2011-08-14 03:42:30.727649703 +0000
+@@ -2740,6 +2740,7 @@
+                       return "GNU_EH_FRAME";
+     case PT_GNU_STACK:        return "GNU_STACK";
+     case PT_GNU_RELRO:  return "GNU_RELRO";
++    case PT_PAX_FLAGS:  return "PAX_FLAGS";
+ 
+     default:
+       if ((p_type >= PT_LOPROC) && (p_type <= PT_HIPROC))
+diff -Naur binutils-2.21.1.orig//include/bfdlink.h 
binutils-2.21.1/include/bfdlink.h
+--- binutils-2.21.1.orig//include/bfdlink.h    2011-06-27 07:39:13.000000000 
+0000
++++ binutils-2.21.1/include/bfdlink.h  2011-08-14 03:42:30.739648761 +0000
+@@ -322,6 +322,14 @@
+   /* TRUE if PT_GNU_RELRO segment should be created.  */
+   unsigned int relro: 1;
+ 
++  /* TRUE if PT_PAX_FLAGS segment should be created with PF_NOMPROTECT
++     flags.  */
++  unsigned int execheap: 1;
++
++  /* TRUE if PT_PAX_FLAGS segment should be created with PF_MPROTECT
++     flags.  */
++  unsigned int noexecheap: 1;
++
+   /* TRUE if we should warn when adding a DT_TEXTREL to a shared object.  */
+   unsigned int warn_shared_textrel: 1;
+ 
+diff -Naur binutils-2.21.1.orig//include/elf/common.h 
binutils-2.21.1/include/elf/common.h
+--- binutils-2.21.1.orig//include/elf/common.h 2010-05-18 03:31:06.000000000 
+0000
++++ binutils-2.21.1/include/elf/common.h       2011-08-14 03:42:30.739648761 
+0000
+@@ -429,6 +429,7 @@
+ #define PT_SUNW_EH_FRAME PT_GNU_EH_FRAME      /* Solaris uses the same value 
*/
+ #define PT_GNU_STACK  (PT_LOOS + 0x474e551) /* Stack flags */
+ #define PT_GNU_RELRO  (PT_LOOS + 0x474e552) /* Read-only after relocation */
++#define PT_PAX_FLAGS  (PT_LOOS + 0x5041580) /* PaX flags */
+ 
+ /* Program segment permissions, in program header p_flags field.  */
+ 
+@@ -439,6 +440,21 @@
+ #define PF_MASKOS     0x0FF00000      /* New value, Oct 4, 1999 Draft */
+ #define PF_MASKPROC   0xF0000000      /* Processor-specific reserved bits */
+ 
++/* Flags to control PaX behavior.  */
++
++#define PF_PAGEEXEC   (1 << 4)        /* Enable  PAGEEXEC */
++#define PF_NOPAGEEXEC (1 << 5)        /* Disable PAGEEXEC */
++#define PF_SEGMEXEC   (1 << 6)        /* Enable  SEGMEXEC */
++#define PF_NOSEGMEXEC (1 << 7)        /* Disable SEGMEXEC */
++#define PF_MPROTECT   (1 << 8)        /* Enable  MPROTECT */
++#define PF_NOMPROTECT (1 << 9)        /* Disable MPROTECT */
++#define PF_RANDEXEC   (1 << 10)       /* Enable  RANDEXEC */
++#define PF_NORANDEXEC (1 << 11)       /* Disable RANDEXEC */
++#define PF_EMUTRAMP   (1 << 12)       /* Enable  EMUTRAMP */
++#define PF_NOEMUTRAMP (1 << 13)       /* Disable EMUTRAMP */
++#define PF_RANDMMAP   (1 << 14)       /* Enable  RANDMMAP */
++#define PF_NORANDMMAP (1 << 15)       /* Disable RANDMMAP */
++
+ /* Values for section header, sh_type field.  */
+ 
+ #define SHT_NULL      0               /* Section header table entry unused */
+diff -Naur binutils-2.21.1.orig//ld/emultempl/elf32.em 
binutils-2.21.1/ld/emultempl/elf32.em
+--- binutils-2.21.1.orig//ld/emultempl/elf32.em        2011-06-27 
07:39:14.000000000 +0000
++++ binutils-2.21.1/ld/emultempl/elf32.em      2011-08-14 03:42:30.741648550 
+0000
+@@ -2285,6 +2285,16 @@
+         link_info.noexecstack = TRUE;
+         link_info.execstack = FALSE;
+       }
++      else if (strcmp (optarg, "execheap") == 0)
++      {
++        link_info.execheap = TRUE;
++        link_info.noexecheap = FALSE;
++      }
++      else if (strcmp (optarg, "noexecheap") == 0)
++      {
++        link_info.noexecheap = TRUE;
++        link_info.execheap = FALSE;
++      }
+ EOF
+ 
+   if test -n "$COMMONPAGESIZE"; then
+@@ -2368,6 +2378,8 @@
+   fprintf (file, _("\
+   -z execstack                Mark executable as requiring executable 
stack\n"));
+   fprintf (file, _("\
++  -z execheap                 Mark executable as requiring executable 
heap\n"));
++  fprintf (file, _("\
+   -z initfirst                Mark DSO to be initialized first at 
runtime\n"));
+   fprintf (file, _("\
+   -z interpose                Mark object to interpose all DSOs but 
executable\n"));
+@@ -2391,6 +2403,8 @@
+   -z nodump                   Mark DSO not available to dldump\n"));
+   fprintf (file, _("\
+   -z noexecstack              Mark executable as not requiring executable 
stack\n"));
++  fprintf (file, _("\
++  -z noexecheap               Mark executable as not requiring executable 
heap\n"));
+ EOF
+ 
+   if test -n "$COMMONPAGESIZE"; then
+diff -Naur binutils-2.21.1.orig//ld/ldgram.y binutils-2.21.1/ld/ldgram.y
+--- binutils-2.21.1.orig//ld/ldgram.y  2011-03-16 08:37:31.000000000 +0000
++++ binutils-2.21.1/ld/ldgram.y        2011-08-14 03:42:30.742649555 +0000
+@@ -1119,6 +1119,8 @@
+                           $$ = exp_intop (0x6474e550);
+                         else if (strcmp (s, "PT_GNU_STACK") == 0)
+                           $$ = exp_intop (0x6474e551);
++                        else if (strcmp (s, "PT_PAX_FLAGS") == 0)
++                          $$ = exp_intop (0x65041580);
+                         else
+                           {
+                             einfo (_("\

-- 
http://linuxfromscratch.org/mailman/listinfo/patches
FAQ: http://www.linuxfromscratch.org/faq/
Unsubscribe: See the above information page

Reply via email to