Re: [RFC 28/31] x86/alternative: Create symbols for special section entries
From: Josh Poimboeuf
Date: Fri Sep 06 2024 - 12:53:53 EST
On Fri, Sep 06, 2024 at 12:19:09PM +0200, Borislav Petkov wrote:
> Right, I was talking to Michael about it yesterday, CCed.
>
> He suggested that you might be better off creating these annotations by
> sticking the required info in a section instead of generating symbols.
>
> I.e.,
>
> .pushsection .klp_objects
> .size \\name\\@, \\end - .\n"
> ...
> .popsection
".size" directive references a "name" symbol, did you mean it would just
annotate the entry like so?
.pushsection .klp_objects
.long \\start - .
.long \\end - .
.popsection
That's definitely possible, but it's much less cleaner for objtool diff,
which works by cloning symbols and their dependencies.
If the symbols are your concern, they could easily be stripped with a
trivial change to scripts/kallsyms.c:is_ignored_symbol() as Peter
suggested.
--
Josh