Skip to content

Commit

Permalink
modpost: pass section index to find_elf_symbol2()
Browse files Browse the repository at this point in the history
find_elf_symbol2() converts the section index to the section name,
then compares the two strings in each iteration. This is slow.

It is faster to compare the section indices (i.e. integers) directly.

Signed-off-by: Masahiro Yamada <masahiroy@kernel.org>
Reviewed-by: Nick Desaulniers <ndesaulniers@google.com>
  • Loading branch information
Masahiro Yamada committed May 22, 2023
1 parent dbf7cc2 commit 9990ca3
Showing 1 changed file with 15 additions and 19 deletions.
34 changes: 15 additions & 19 deletions scripts/mod/modpost.c
Original file line number Diff line number Diff line change
@@ -1169,19 +1169,14 @@ static Elf_Sym *find_elf_symbol(struct elf_info *elf, Elf64_Sword addr,
* it is, but this works for now.
**/
static Elf_Sym *find_elf_symbol2(struct elf_info *elf, Elf_Addr addr,
const char *sec)
unsigned int secndx)
{
Elf_Sym *sym;
Elf_Sym *near = NULL;
Elf_Addr distance = ~0;

for (sym = elf->symtab_start; sym < elf->symtab_stop; sym++) {
const char *symsec;

if (is_shndx_special(sym->st_shndx))
continue;
symsec = sec_name(elf, get_secindex(elf, sym));
if (strcmp(symsec, sec) != 0)
if (get_secindex(elf, sym) != secndx)
continue;
if (!is_valid_name(elf, sym))
continue;
@@ -1203,15 +1198,16 @@ static bool is_executable_section(struct elf_info *elf, unsigned int secndx)

static void default_mismatch_handler(const char *modname, struct elf_info *elf,
const struct sectioncheck* const mismatch,
Elf_Rela *r, Elf_Sym *sym, const char *fromsec,
Elf_Rela *r, Elf_Sym *sym,
unsigned int fsecndx, const char *fromsec,
const char *tosec)
{
Elf_Sym *to;
Elf_Sym *from;
const char *tosym;
const char *fromsym;

from = find_elf_symbol2(elf, r->r_offset, fromsec);
from = find_elf_symbol2(elf, r->r_offset, fsecndx);
fromsym = sym_name(elf, from);

to = find_elf_symbol(elf, r->r_addend, sym);
@@ -1267,15 +1263,17 @@ static void default_mismatch_handler(const char *modname, struct elf_info *elf,
}

static void check_section_mismatch(const char *modname, struct elf_info *elf,
Elf_Rela *r, Elf_Sym *sym, const char *fromsec)
Elf_Rela *r, Elf_Sym *sym,
unsigned int fsecndx, const char *fromsec)
{
const char *tosec = sec_name(elf, get_secindex(elf, sym));
const struct sectioncheck *mismatch = section_mismatch(fromsec, tosec);

if (!mismatch)
return;

default_mismatch_handler(modname, elf, mismatch, r, sym, fromsec, tosec);
default_mismatch_handler(modname, elf, mismatch, r, sym, fsecndx, fromsec,
tosec);
}

static unsigned int *reloc_location(struct elf_info *elf,
@@ -1390,12 +1388,11 @@ static void section_rela(const char *modname, struct elf_info *elf,
Elf_Rela *rela;
Elf_Rela r;
unsigned int r_sym;
const char *fromsec;

unsigned int fsecndx = sechdr->sh_info;
const char *fromsec = sec_name(elf, fsecndx);
Elf_Rela *start = (void *)elf->hdr + sechdr->sh_offset;
Elf_Rela *stop = (void *)start + sechdr->sh_size;

fromsec = sec_name(elf, sechdr->sh_info);
/* if from section (name) is know good then skip it */
if (match(fromsec, section_white_list))
return;
@@ -1434,7 +1431,7 @@ static void section_rela(const char *modname, struct elf_info *elf,
/* Skip special sections */
if (is_shndx_special(sym->st_shndx))
continue;
check_section_mismatch(modname, elf, &r, sym, fromsec);
check_section_mismatch(modname, elf, &r, sym, fsecndx, fromsec);
}
}

@@ -1445,12 +1442,11 @@ static void section_rel(const char *modname, struct elf_info *elf,
Elf_Rel *rel;
Elf_Rela r;
unsigned int r_sym;
const char *fromsec;

unsigned int fsecndx = sechdr->sh_info;
const char *fromsec = sec_name(elf, fsecndx);
Elf_Rel *start = (void *)elf->hdr + sechdr->sh_offset;
Elf_Rel *stop = (void *)start + sechdr->sh_size;

fromsec = sec_name(elf, sechdr->sh_info);
/* if from section (name) is know good then skip it */
if (match(fromsec, section_white_list))
return;
@@ -1493,7 +1489,7 @@ static void section_rel(const char *modname, struct elf_info *elf,
/* Skip special sections */
if (is_shndx_special(sym->st_shndx))
continue;
check_section_mismatch(modname, elf, &r, sym, fromsec);
check_section_mismatch(modname, elf, &r, sym, fsecndx, fromsec);
}
}

0 comments on commit 9990ca3

Please sign in to comment.