On Fri, Jan 17, 2020 at 04:03:20PM +0100, Petr Mladek wrote: > The special SHF_RELA_LIVEPATCH section is still needed to find static > (non-exported) symbols. But it can be done together with the other > relocations when the livepatch module is being loaded. > > There is no longer needed to copy the info section. The related > code in the module loaded will get removed in separate patch. > > Signed-off-by: Petr Mladek <pmladek@xxxxxxxx> > --- > include/linux/livepatch.h | 4 +++ > kernel/livepatch/core.c | 62 +++-------------------------------------------- > kernel/module.c | 16 +++++++----- > 3 files changed, 18 insertions(+), 64 deletions(-) > > > [ ... snip ... ] > > diff --git a/kernel/module.c b/kernel/module.c > index bd92854b42c2..c14b5135db27 100644 > --- a/kernel/module.c > +++ b/kernel/module.c > @@ -2410,16 +2410,20 @@ static int apply_relocations(struct module *mod, const struct load_info *info) > if (!(info->sechdrs[infosec].sh_flags & SHF_ALLOC)) > continue; > > - /* Livepatch relocation sections are applied by livepatch */ > - if (info->sechdrs[i].sh_flags & SHF_RELA_LIVEPATCH) > - continue; > - > - if (info->sechdrs[i].sh_type == SHT_REL) > + /* Livepatch need to resolve static symbols. */ > + if (info->sechdrs[i].sh_flags & SHF_RELA_LIVEPATCH) { > + err = klp_resolve_symbols(info->sechdrs, i, mod); > + if (err < 0) > + break; > + err = apply_relocate_add(info->sechdrs, info->strtab, > + info->index.sym, i, mod); > + } else if (info->sechdrs[i].sh_type == SHT_REL) { > err = apply_relocate(info->sechdrs, info->strtab, > info->index.sym, i, mod); > - else if (info->sechdrs[i].sh_type == SHT_RELA) > + } else if (info->sechdrs[i].sh_type == SHT_RELA) { > err = apply_relocate_add(info->sechdrs, info->strtab, > info->index.sym, i, mod); > + } > if (err < 0) > break; > } Hi Petr, At first I thought there was a simple order of operations problem here with respect to klp_resolve_symbols() accessing core_kallsyms before they were setup by add_kallsyms(): load_module apply_relocations /* Livepatch need to resolve static symbols. */ if (info->sechdrs[i].sh_flags & SHF_RELA_LIVEPATCH) { err = klp_resolve_symbols(info->sechdrs, i, mod); klp_resolve_symbols sym = pmod->core_kallsyms.symtab + ELF_R_SYM(relas[i].r_info); ^^^^^^^^^^^^^^^^^^^^ used before init (below) ... post_relocation add_kallsyms /* * Now populate the cut down core kallsyms for after init * and set types up while we still have access to sections. */ mod->core_kallsyms.symtab = dst = mod->core_layout.base + info->symoffs; mod->core_kallsyms.strtab = s = mod->core_layout.base + info->stroffs; mod->core_kallsyms.typetab = mod->core_layout.base + info->core_typeoffs; ^^^^^^^^^^^^^^^^^^^^^ core_kallsyms initialized here But after tinkering with the patchset, a larger problem is that klp_resolve_symbols() writes st_values to the core_kallsyms copies, but then apply_relocate_add() references the originals in the load_info structure. I assume that klp_resolve_symbols() originally looked at the core_kallsyms copies for handling the late module patching case. If we no longer need to support that, then how about this slight modification to klp_resolve_symbols() to make it look more the like apply_relocate{_add,} calls? -->8-- -->8-- -->8-- -->8-- -->8-- -->8-- -->8-- -->8-- -->8-- -->8-- diff --git a/include/linux/livepatch.h b/include/linux/livepatch.h index 3b27ef1a7291..54d5a4045e5a 100644 --- a/include/linux/livepatch.h +++ b/include/linux/livepatch.h @@ -210,6 +210,8 @@ int klp_module_coming(struct module *mod); void klp_module_going(struct module *mod); int klp_resolve_symbols(Elf_Shdr *sechdrs, + const char *strtab, + unsigned int symindex, unsigned int relsec, struct module *pmod); diff --git a/kernel/livepatch/core.c b/kernel/livepatch/core.c index cc0ac93fe8cd..02638e3b09b0 100644 --- a/kernel/livepatch/core.c +++ b/kernel/livepatch/core.c @@ -197,13 +197,14 @@ static int klp_find_object_symbol(const char *objname, const char *name, } int klp_resolve_symbols(Elf_Shdr *sechdrs, + const char *strtab, + unsigned int symindex, unsigned int relsec, struct module *pmod) { int i, cnt, vmlinux, ret; char objname[MODULE_NAME_LEN]; char symname[KSYM_NAME_LEN]; - char *strtab = pmod->core_kallsyms.strtab; Elf_Shdr *relasec = sechdrs + relsec; Elf_Rela *relas; Elf_Sym *sym; @@ -224,7 +225,8 @@ int klp_resolve_symbols(Elf_Shdr *sechdrs, relas = (Elf_Rela *) relasec->sh_addr; /* For each rela in this klp relocation section */ for (i = 0; i < relasec->sh_size / sizeof(Elf_Rela); i++) { - sym = pmod->core_kallsyms.symtab + ELF_R_SYM(relas[i].r_info); + sym = (Elf64_Sym *)sechdrs[symindex].sh_addr + + ELF_R_SYM(relas[i].r_info); if (sym->st_shndx != SHN_LIVEPATCH) { pr_err("symbol %s is not marked as a livepatch symbol\n", strtab + sym->st_name); diff --git a/kernel/module.c b/kernel/module.c index d435bad80d7d..a65f089f19c9 100644 --- a/kernel/module.c +++ b/kernel/module.c @@ -2320,7 +2320,8 @@ static int apply_relocations(struct module *mod, const struct load_info *info) /* Livepatch need to resolve static symbols. */ if (info->sechdrs[i].sh_flags & SHF_RELA_LIVEPATCH) { - err = klp_resolve_symbols(info->sechdrs, i, mod); + err = klp_resolve_symbols(info->sechdrs, info->strtab, + info->index.sym, i, mod); if (err < 0) break; err = apply_relocate_add(info->sechdrs, info->strtab, -->8-- -->8-- -->8-- -->8-- -->8-- -->8-- -->8-- -->8-- -->8-- -->8-- -- Joe