vmlinux.lds.h: Move Program Header restoration into NOTES macro
authorKees Cook <keescook@chromium.org>
Tue, 29 Oct 2019 21:13:31 +0000 (14:13 -0700)
committerBorislav Petkov <bp@suse.de>
Mon, 4 Nov 2019 14:34:39 +0000 (15:34 +0100)
In preparation for moving NOTES into RO_DATA, make the Program Header
assignment restoration be part of the NOTES macro itself.

Signed-off-by: Kees Cook <keescook@chromium.org>
Signed-off-by: Borislav Petkov <bp@suse.de>
Acked-by: Heiko Carstens <heiko.carstens@de.ibm.com> # s390
Cc: Andy Lutomirski <luto@kernel.org>
Cc: Arnd Bergmann <arnd@arndb.de>
Cc: Dave Hansen <dave.hansen@linux.intel.com>
Cc: linux-alpha@vger.kernel.org
Cc: linux-arch@vger.kernel.org
Cc: linux-arm-kernel@lists.infradead.org
Cc: linux-c6x-dev@linux-c6x.org
Cc: linux-ia64@vger.kernel.org
Cc: linux-s390@vger.kernel.org
Cc: linuxppc-dev@lists.ozlabs.org
Cc: Michael Ellerman <mpe@ellerman.id.au>
Cc: Michal Simek <monstr@monstr.eu>
Cc: Rick Edgecombe <rick.p.edgecombe@intel.com>
Cc: Segher Boessenkool <segher@kernel.crashing.org>
Cc: Will Deacon <will@kernel.org>
Cc: x86-ml <x86@kernel.org>
Cc: Yoshinori Sato <ysato@users.sourceforge.jp>
Link: https://lkml.kernel.org/r/20191029211351.13243-10-keescook@chromium.org
arch/alpha/kernel/vmlinux.lds.S
arch/ia64/kernel/vmlinux.lds.S
arch/mips/kernel/vmlinux.lds.S
arch/powerpc/kernel/vmlinux.lds.S
arch/s390/kernel/vmlinux.lds.S
arch/x86/kernel/vmlinux.lds.S
include/asm-generic/vmlinux.lds.h

index 363a60ba7c31aeba1e35d47609c6a7b6e1b1af17..cdfdc91ce64c75d974380a4079a9937db2750a4b 100644 (file)
@@ -34,10 +34,7 @@ SECTIONS
        swapper_pg_dir = SWAPPER_PGD;
        _etext = .;     /* End of text section */
 
-       NOTES :text :note
-       .dummy : {
-               *(.dummy)
-       } :text
+       NOTES
 
        RODATA
        EXCEPTION_TABLE(16)
index 7cf4958b732d01229cc140f7f659bd4c509754dd..bfc937ec168c37eea3056a2e45164d9bca3f22fb 100644 (file)
@@ -70,9 +70,7 @@ SECTIONS {
        /*
         * Read-only data
         */
-       NOTES :text :note       /* put .notes in text and mark in PT_NOTE  */
-       code_continues : {
-       } :text                /* switch back to regular program...  */
+       NOTES
 
        EXCEPTION_TABLE(16)
 
index 1c95612eb8005588bcdf015a512997d0d16a29a0..6a22f531d815c2599e153671376a9f5fbd086a81 100644 (file)
@@ -81,8 +81,7 @@ SECTIONS
                __stop___dbe_table = .;
        }
 
-       NOTES NOTES_HEADERS
-       .dummy : { *(.dummy) } :text
+       NOTES
 
        _sdata = .;                     /* Start of data section */
        RODATA
index 7e26e20c83245ad588471bc5a231343b2fdbf8b0..4f19d814d59298cb89148d3ad88218bc453cf24a 100644 (file)
@@ -164,9 +164,7 @@ SECTIONS
 #endif
        EXCEPTION_TABLE(0)
 
-       NOTES :text :note
-       /* Restore program header away from PT_NOTE. */
-       .dummy : { *(.dummy) } :text
+       NOTES
 
 /*
  * Init sections discarded at runtime
index 646d939346dfa887a192c72dfab1d83cfbd3f431..f88eedeb915a3d20669fa2d134a33e6403b6392e 100644 (file)
@@ -52,9 +52,7 @@ SECTIONS
                _etext = .;             /* End of text section */
        } :text = 0x0700
 
-       NOTES :text :note
-
-       .dummy : { *(.dummy) } :text
+       NOTES
 
        RO_DATA_SECTION(PAGE_SIZE)
 
index 2e18bf5c1aed0b2ddc8ff63c2acc1fcc1f00c947..8be25b09c2b7a0d6776e9856d76d893d37493bc3 100644 (file)
@@ -148,8 +148,7 @@ SECTIONS
                _etext = .;
        } :text = 0x9090
 
-       NOTES :text :note
-       .dummy : { *(.dummy) } :text
+       NOTES
 
        EXCEPTION_TABLE(16)
 
index f5dd45ce73f169c2b11d5d70ceef27771361a5c8..97d4299f14dc1dd4a3ea10c0aa79c9aa97bab367 100644 (file)
 
 /*
  * Only some architectures want to have the .notes segment visible in
- * a separate PT_NOTE ELF Program Header.
+ * a separate PT_NOTE ELF Program Header. When this happens, it needs
+ * to be visible in both the kernel text's PT_LOAD and the PT_NOTE
+ * Program Headers. In this case, though, the PT_LOAD needs to be made
+ * the default again so that all the following sections don't also end
+ * up in the PT_NOTE Program Header.
  */
 #ifdef EMITS_PT_NOTE
 #define NOTES_HEADERS          :text :note
+#define NOTES_HEADERS_RESTORE  __restore_ph : { *(.__restore_ph) } :text
+#else
+#define NOTES_HEADERS
+#define NOTES_HEADERS_RESTORE
 #endif
 
 /* Align . to a 8 byte boundary equals to maximum function alignment. */
                __start_notes = .;                                      \
                KEEP(*(.note.*))                                        \
                __stop_notes = .;                                       \
-       }
+       } NOTES_HEADERS                                                 \
+       NOTES_HEADERS_RESTORE
 
 #define INIT_SETUP(initsetup_align)                                    \
                . = ALIGN(initsetup_align);                             \