vmlinux.lds.h: Move Program Header restoration into NOTES macro
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
This commit is contained in:

committed by
Borislav Petkov

parent
441110a547
commit
fbe6a8e618
@@ -34,10 +34,7 @@ SECTIONS
|
|||||||
swapper_pg_dir = SWAPPER_PGD;
|
swapper_pg_dir = SWAPPER_PGD;
|
||||||
_etext = .; /* End of text section */
|
_etext = .; /* End of text section */
|
||||||
|
|
||||||
NOTES :text :note
|
NOTES
|
||||||
.dummy : {
|
|
||||||
*(.dummy)
|
|
||||||
} :text
|
|
||||||
|
|
||||||
RODATA
|
RODATA
|
||||||
EXCEPTION_TABLE(16)
|
EXCEPTION_TABLE(16)
|
||||||
|
@@ -70,9 +70,7 @@ SECTIONS {
|
|||||||
/*
|
/*
|
||||||
* Read-only data
|
* Read-only data
|
||||||
*/
|
*/
|
||||||
NOTES :text :note /* put .notes in text and mark in PT_NOTE */
|
NOTES
|
||||||
code_continues : {
|
|
||||||
} :text /* switch back to regular program... */
|
|
||||||
|
|
||||||
EXCEPTION_TABLE(16)
|
EXCEPTION_TABLE(16)
|
||||||
|
|
||||||
|
@@ -81,8 +81,7 @@ SECTIONS
|
|||||||
__stop___dbe_table = .;
|
__stop___dbe_table = .;
|
||||||
}
|
}
|
||||||
|
|
||||||
NOTES NOTES_HEADERS
|
NOTES
|
||||||
.dummy : { *(.dummy) } :text
|
|
||||||
|
|
||||||
_sdata = .; /* Start of data section */
|
_sdata = .; /* Start of data section */
|
||||||
RODATA
|
RODATA
|
||||||
|
@@ -164,9 +164,7 @@ SECTIONS
|
|||||||
#endif
|
#endif
|
||||||
EXCEPTION_TABLE(0)
|
EXCEPTION_TABLE(0)
|
||||||
|
|
||||||
NOTES :text :note
|
NOTES
|
||||||
/* Restore program header away from PT_NOTE. */
|
|
||||||
.dummy : { *(.dummy) } :text
|
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* Init sections discarded at runtime
|
* Init sections discarded at runtime
|
||||||
|
@@ -52,9 +52,7 @@ SECTIONS
|
|||||||
_etext = .; /* End of text section */
|
_etext = .; /* End of text section */
|
||||||
} :text = 0x0700
|
} :text = 0x0700
|
||||||
|
|
||||||
NOTES :text :note
|
NOTES
|
||||||
|
|
||||||
.dummy : { *(.dummy) } :text
|
|
||||||
|
|
||||||
RO_DATA_SECTION(PAGE_SIZE)
|
RO_DATA_SECTION(PAGE_SIZE)
|
||||||
|
|
||||||
|
@@ -148,8 +148,7 @@ SECTIONS
|
|||||||
_etext = .;
|
_etext = .;
|
||||||
} :text = 0x9090
|
} :text = 0x9090
|
||||||
|
|
||||||
NOTES :text :note
|
NOTES
|
||||||
.dummy : { *(.dummy) } :text
|
|
||||||
|
|
||||||
EXCEPTION_TABLE(16)
|
EXCEPTION_TABLE(16)
|
||||||
|
|
||||||
|
@@ -56,10 +56,18 @@
|
|||||||
|
|
||||||
/*
|
/*
|
||||||
* Only some architectures want to have the .notes segment visible in
|
* 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
|
#ifdef EMITS_PT_NOTE
|
||||||
#define NOTES_HEADERS :text :note
|
#define NOTES_HEADERS :text :note
|
||||||
|
#define NOTES_HEADERS_RESTORE __restore_ph : { *(.__restore_ph) } :text
|
||||||
|
#else
|
||||||
|
#define NOTES_HEADERS
|
||||||
|
#define NOTES_HEADERS_RESTORE
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
/* Align . to a 8 byte boundary equals to maximum function alignment. */
|
/* Align . to a 8 byte boundary equals to maximum function alignment. */
|
||||||
@@ -798,7 +806,8 @@
|
|||||||
__start_notes = .; \
|
__start_notes = .; \
|
||||||
KEEP(*(.note.*)) \
|
KEEP(*(.note.*)) \
|
||||||
__stop_notes = .; \
|
__stop_notes = .; \
|
||||||
}
|
} NOTES_HEADERS \
|
||||||
|
NOTES_HEADERS_RESTORE
|
||||||
|
|
||||||
#define INIT_SETUP(initsetup_align) \
|
#define INIT_SETUP(initsetup_align) \
|
||||||
. = ALIGN(initsetup_align); \
|
. = ALIGN(initsetup_align); \
|
||||||
|
Reference in New Issue
Block a user