[PATCH 25/27] objtool: Add ANNOTATE_EXPORTED_NORETURN()
Josh Poimboeuf <[email protected]>
| Newsgroups | gmane.linux.kbuild.devel,gmane.linux.kernel,gmane.linux.kernel.rust |
|---|---|
| Message-ID | <5cb3ce81ac9bc1087313397d5e4b9fc066748dea.1787890035.git.jpoimboe@kernel.org> |
Add ANNOTATE_EXPORTED_NORETURN() for the rare case where a module exports a noreturn function. Signed-off-by: Josh Poimboeuf <[email protected]> --- include/linux/annotate.h | 17 +++++++++++++++++ tools/objtool/check.c | 27 +++++++++++++++++++++++++++ tools/objtool/klp-diff.c | 32 ++++++++++++++++++++++++++++++++ 3 files changed, 76 insertions(+) diff --git a/include/linux/annotate.h b/include/linux/annotate.h index a81ca04b4c501..70450eeec3186 100644 --- a/include/linux/annotate.h +++ b/include/linux/annotate.h @@ -25,6 +25,15 @@ "912: " \ __stringify(__ASM_ANNOTATE(.discard.annotate_data, 912b, type)) +/* + * Annotate a symbol by name rather than by relocation, so it can optionally be + * used in a header file. + */ +#define ASM_ANNOTATE_NAME(section, sym) \ + ".pushsection " section ", \"MS\", @progbits, 1\n\t" \ + ".asciz \"" __stringify(sym) "\"\n\t" \ + ".popsection" + #else /* __ASSEMBLY__ */ .macro ANNOTATE type @@ -44,6 +53,7 @@ #define ASM_ANNOTATE_LABEL(label, type) "" #define ASM_ANNOTATE(type) #define ASM_ANNOTATE_DATA(type) +#define ASM_ANNOTATE_NAME(section, sym) "" #else /* __ASSEMBLY__ */ .macro ANNOTATE type .endm @@ -112,6 +122,13 @@ */ #define ANNOTATE_IGNORE_NORETURN(sym) asm(ASM_ANNOTATE_LABEL(sym, ANNOTYPE_IGNORE_NORETURN)) +/* + * Tell objtool running on a module that a function exported by another module + * is __noreturn. Objtool has no way of communicating that between modules due + * to the parallel nature of module linking in kbuild. + */ +#define ANNOTATE_EXPORTED_NORETURN(sym) asm(ASM_ANNOTATE_NAME(".discard.annotate_noreturn", sym)) + /* * Annotate a special section entry. This emables livepatch module generation * to find and extract individual special section entries as needed. diff --git a/tools/objtool/check.c b/tools/objtool/check.c index 583d86220e040..6eaac32374722 100644 --- a/tools/objtool/check.c +++ b/tools/objtool/check.c @@ -409,6 +409,31 @@ static int read_noreturns(struct objtool_file *file) return 0; } +static void read_annotate_noreturn(struct objtool_file *file) +{ + struct section *sec; + struct symbol *func; + unsigned long off; + const char *name; + + sec = find_section_by_name(file->elf, ".discard.annotate_noreturn"); + if (!sec || !sec->data) + return; + + for (off = 0; off < sec_size(sec); off += strlen(name) + 1) { + name = sec->data->d_buf + off; + if (!*name) + continue; + + func = find_global_symbol_by_name(file->elf, name); + if (!func) + continue; + + if (is_undef_sym(func)) + func->_noreturn = 1; + } +} + static void init_cfi_state(struct cfi_state *cfi) { int i; @@ -4984,6 +5009,8 @@ int check(struct objtool_file *file) goto out; } + read_annotate_noreturn(file); + ret = decode_file(file); if (ret) goto out; diff --git a/tools/objtool/klp-diff.c b/tools/objtool/klp-diff.c index 16681a76f13d0..5719a8e016cb3 100644 --- a/tools/objtool/klp-diff.c +++ b/tools/objtool/klp-diff.c @@ -361,6 +361,7 @@ static bool is_special_section(struct section *sec) static const char * const non_special_discards[] = { ".discard.addressable", + ".discard.annotate_noreturn", ".discard.sym_checksum", }; @@ -2217,6 +2218,34 @@ static int copy_import_ns(struct elfs *e) return 0; } +/* + * ANNOTATE_EXPORTED_NORETURN() annotations reference their functions by name + * rather than by relocation, so individual entries can't be extracted. Copy + * the (tiny) section as-is. + */ +static int copy_annotate_noreturn(struct elfs *e) +{ + struct section *patched_sec, *out_sec; + + patched_sec = find_section_by_name(e->patched, ".discard.annotate_noreturn"); + if (!patched_sec || !patched_sec->data || !sec_size(patched_sec)) + return 0; + + out_sec = elf_create_section(e->out, patched_sec->name, 0, + patched_sec->sh.sh_entsize, + patched_sec->sh.sh_type, + patched_sec->sh.sh_addralign, + patched_sec->sh.sh_flags); + if (!out_sec) + return -1; + + if (!elf_add_data(e->out, out_sec, patched_sec->data->d_buf, + sec_size(patched_sec))) + return -1; + + return 0; +} + int cmd_klp_diff(int argc, const char **argv) { struct elfs e = {0}; @@ -2288,6 +2317,9 @@ int cmd_klp_diff(int argc, const char **argv) if (copy_import_ns(&e)) return -1; + if (copy_annotate_noreturn(&e)) + return -1; + if (elf_write(e.out)) return -1; -- 2.55.0