Message ID | 20221003222133.20948-3-aliraza@bu.edu (mailing list archive) |
---|---|
State | New |
Headers | show |
Series | Unikernel Linux (UKL) | expand |
On Mon, Oct 3, 2022, at 3:21 PM, Ali Raza wrote: > The kernel normally skips loading this segment as it is not inlcuded in > standard builds. However, when linked with an application in the Unikernel > configuration the segment will be present. Load PT_TLS when configured as a > unikernel. > > Cc: Jonathan Corbet <corbet@lwn.net> > Cc: Masahiro Yamada <masahiroy@kernel.org> > Cc: Michal Marek <michal.lkml@markovi.net> > Cc: Nick Desaulniers <ndesaulniers@google.com> > Cc: Thomas Gleixner <tglx@linutronix.de> > Cc: Ingo Molnar <mingo@redhat.com> > Cc: Borislav Petkov <bp@alien8.de> > Cc: Dave Hansen <dave.hansen@linux.intel.com> > Cc: "H. Peter Anvin" <hpa@zytor.com> > Cc: Andy Lutomirski <luto@kernel.org> > Cc: Eric Biederman <ebiederm@xmission.com> > Cc: Kees Cook <keescook@chromium.org> > Cc: Peter Zijlstra <peterz@infradead.org> > Cc: Alexander Viro <viro@zeniv.linux.org.uk> > Cc: Arnd Bergmann <arnd@arndb.de> > Cc: Juri Lelli <juri.lelli@redhat.com> > Cc: Vincent Guittot <vincent.guittot@linaro.org> > Cc: Dietmar Eggemann <dietmar.eggemann@arm.com> > Cc: Steven Rostedt <rostedt@goodmis.org> > Cc: Ben Segall <bsegall@google.com> > Cc: Mel Gorman <mgorman@suse.de> > Cc: Daniel Bristot de Oliveira <bristot@redhat.com> > Cc: Valentin Schneider <vschneid@redhat.com> > Cc: Paolo Bonzini <pbonzini@redhat.com> > Cc: Josh Poimboeuf <jpoimboe@kernel.org> > > Signed-off-by: Ali Raza <aliraza@bu.edu> > --- > arch/x86/boot/compressed/misc.c | 3 +++ > 1 file changed, 3 insertions(+) > > diff --git a/arch/x86/boot/compressed/misc.c b/arch/x86/boot/compressed/misc.c > index cf690d8712f4..0d07b5661c9c 100644 > --- a/arch/x86/boot/compressed/misc.c > +++ b/arch/x86/boot/compressed/misc.c > @@ -310,6 +310,9 @@ static void parse_elf(void *output) > phdr = &phdrs[i]; > > switch (phdr->p_type) { > +#ifdef CONFIG_UNIKERNEL_LINUX > + case PT_TLS: > +#endif Can you explain why exactly a Linux boot image would have a TLS segment? What does it do? > case PT_LOAD: > #ifdef CONFIG_X86_64 > if ((phdr->p_align % 0x200000) != 0) > -- > 2.21.3
On 10/4/22 13:30, Andy Lutomirski wrote: > On Mon, Oct 3, 2022, at 3:21 PM, Ali Raza wrote: >> The kernel normally skips loading this segment as it is not inlcuded in >> standard builds. However, when linked with an application in the Unikernel >> configuration the segment will be present. Load PT_TLS when configured as a >> unikernel. >> >> Cc: Jonathan Corbet <corbet@lwn.net> >> Cc: Masahiro Yamada <masahiroy@kernel.org> >> Cc: Michal Marek <michal.lkml@markovi.net> >> Cc: Nick Desaulniers <ndesaulniers@google.com> >> Cc: Thomas Gleixner <tglx@linutronix.de> >> Cc: Ingo Molnar <mingo@redhat.com> >> Cc: Borislav Petkov <bp@alien8.de> >> Cc: Dave Hansen <dave.hansen@linux.intel.com> >> Cc: "H. Peter Anvin" <hpa@zytor.com> >> Cc: Andy Lutomirski <luto@kernel.org> >> Cc: Eric Biederman <ebiederm@xmission.com> >> Cc: Kees Cook <keescook@chromium.org> >> Cc: Peter Zijlstra <peterz@infradead.org> >> Cc: Alexander Viro <viro@zeniv.linux.org.uk> >> Cc: Arnd Bergmann <arnd@arndb.de> >> Cc: Juri Lelli <juri.lelli@redhat.com> >> Cc: Vincent Guittot <vincent.guittot@linaro.org> >> Cc: Dietmar Eggemann <dietmar.eggemann@arm.com> >> Cc: Steven Rostedt <rostedt@goodmis.org> >> Cc: Ben Segall <bsegall@google.com> >> Cc: Mel Gorman <mgorman@suse.de> >> Cc: Daniel Bristot de Oliveira <bristot@redhat.com> >> Cc: Valentin Schneider <vschneid@redhat.com> >> Cc: Paolo Bonzini <pbonzini@redhat.com> >> Cc: Josh Poimboeuf <jpoimboe@kernel.org> >> >> Signed-off-by: Ali Raza <aliraza@bu.edu> >> --- >> arch/x86/boot/compressed/misc.c | 3 +++ >> 1 file changed, 3 insertions(+) >> >> diff --git a/arch/x86/boot/compressed/misc.c b/arch/x86/boot/compressed/misc.c >> index cf690d8712f4..0d07b5661c9c 100644 >> --- a/arch/x86/boot/compressed/misc.c >> +++ b/arch/x86/boot/compressed/misc.c >> @@ -310,6 +310,9 @@ static void parse_elf(void *output) >> phdr = &phdrs[i]; >> >> switch (phdr->p_type) { >> +#ifdef CONFIG_UNIKERNEL_LINUX >> + case PT_TLS: >> +#endif > > Can you explain why exactly a Linux boot image would have a TLS segment? What does it do? Thank you for taking the time to review the patch. A UKL boot image will have a TLS segment if an application has it, or is linked with glibc, and the resulting binary is then linked with the kernel. This will allow applications depending on TLS to function without modification in the UKL setting. That is why, the first patch in this series adds TLS section to the kernel linker script. Also, if you use an application binary that does not have a TLS section (like the one given with this patchset in samples/ukl), you can turn it off through the CONFIG_UKL_TLS option. This means the size of the TLS section would be zero and this code will effectively not load anything. > >> case PT_LOAD: >> #ifdef CONFIG_X86_64 >> if ((phdr->p_align % 0x200000) != 0) >> -- >> 2.21.3
diff --git a/arch/x86/boot/compressed/misc.c b/arch/x86/boot/compressed/misc.c index cf690d8712f4..0d07b5661c9c 100644 --- a/arch/x86/boot/compressed/misc.c +++ b/arch/x86/boot/compressed/misc.c @@ -310,6 +310,9 @@ static void parse_elf(void *output) phdr = &phdrs[i]; switch (phdr->p_type) { +#ifdef CONFIG_UNIKERNEL_LINUX + case PT_TLS: +#endif case PT_LOAD: #ifdef CONFIG_X86_64 if ((phdr->p_align % 0x200000) != 0)
The kernel normally skips loading this segment as it is not inlcuded in standard builds. However, when linked with an application in the Unikernel configuration the segment will be present. Load PT_TLS when configured as a unikernel. Cc: Jonathan Corbet <corbet@lwn.net> Cc: Masahiro Yamada <masahiroy@kernel.org> Cc: Michal Marek <michal.lkml@markovi.net> Cc: Nick Desaulniers <ndesaulniers@google.com> Cc: Thomas Gleixner <tglx@linutronix.de> Cc: Ingo Molnar <mingo@redhat.com> Cc: Borislav Petkov <bp@alien8.de> Cc: Dave Hansen <dave.hansen@linux.intel.com> Cc: "H. Peter Anvin" <hpa@zytor.com> Cc: Andy Lutomirski <luto@kernel.org> Cc: Eric Biederman <ebiederm@xmission.com> Cc: Kees Cook <keescook@chromium.org> Cc: Peter Zijlstra <peterz@infradead.org> Cc: Alexander Viro <viro@zeniv.linux.org.uk> Cc: Arnd Bergmann <arnd@arndb.de> Cc: Juri Lelli <juri.lelli@redhat.com> Cc: Vincent Guittot <vincent.guittot@linaro.org> Cc: Dietmar Eggemann <dietmar.eggemann@arm.com> Cc: Steven Rostedt <rostedt@goodmis.org> Cc: Ben Segall <bsegall@google.com> Cc: Mel Gorman <mgorman@suse.de> Cc: Daniel Bristot de Oliveira <bristot@redhat.com> Cc: Valentin Schneider <vschneid@redhat.com> Cc: Paolo Bonzini <pbonzini@redhat.com> Cc: Josh Poimboeuf <jpoimboe@kernel.org> Signed-off-by: Ali Raza <aliraza@bu.edu> --- arch/x86/boot/compressed/misc.c | 3 +++ 1 file changed, 3 insertions(+)