Re: [PATCH 2/2] x86/boot/compressed: Remove unnecessary sections from bzImage

From: Michael Matz
Date: Mon Feb 24 2020 - 08:28:42 EST


Hello,

On Sat, 22 Feb 2020, Nick Desaulniers wrote:

> > > > In GNU ld, it seems that .shstrtab .symtab and .strtab are special
> > > > cased. Neither the input section description *(.shstrtab) nor *(*)
> > > > discards .shstrtab . I feel that this is a weird case (probably even a bug)
> > > > that lld should not implement.
> > >
> > > Ok, forget what the tools do for a second: why is .shstrtab special and
> > > why would one want to keep it?
> > >
> > > Because one still wants to know what the section names of an object are
> > > or other tools need it or why?
> > >
> > > Thx.
> > >
> > > --
> > > Regards/Gruss,
> > > Boris.
> > >
> > > https://people.kernel.org/tglx/notes-about-netiquette
> >
> > .shstrtab is required by the ELF specification. The e_shstrndx field in
> > the ELF header is the index of .shstrtab, and each section in the
> > section table is required to have an sh_name that points into the
> > .shstrtab.
>
> Yeah, I can see it both ways. That `*` doesn't glob all remaining
> sections is surprising to me, but bfd seems to be "extra helpful" in
> not discarding sections that are required via ELF spec.

In a way the /DISCARD/ assignment should be thought of as applying to
_input_ sections (as all such section references on the RHS), not
necessarily to output sections. What this then means for sections that
are synthesized by the link editor is less clear. Some of them are
generated regardless (as you noted, e.g. the symbol table and associated
string sections, including section name string table), some of them are
suppressed, and either lead to an followup error (e.g. with .gnu.hash), or
to invalid output (e.g. missing .dynsym for executables simply lead to
segfaults when running them).

That's the reason for the perceived inconsistency with behaviour on '*':
it's application to synthesized sections. Arguably bfd should be fixed to
also not discard the other essential sections (or alternatively to give an
error when an essential section is discarded). The lld behaviour of e.g.
discarding .shstrtab (or other synthesized sections necessary for valid
ELF output) doesn't make much sense either, though.


Ciao,
Michael.