]> git.itanic.dy.fi Git - linux-stable/commitdiff
modpost: factor out the common boilerplate of section_rel(a)
authorMasahiro Yamada <masahiroy@kernel.org>
Sat, 7 Oct 2023 17:04:48 +0000 (02:04 +0900)
committerMasahiro Yamada <masahiroy@kernel.org>
Wed, 18 Oct 2023 08:16:09 +0000 (17:16 +0900)
The first few lines of section_rel() and section_rela() are the same.
They both retrieve the index of the section to which the relocaton
applies, and skip known-good sections. This common code should be moved
to check_sec_ref().

Avoid ugly casts when computing 'start' and 'stop', and also make the
Elf_Rel and Elf_Rela pointers const.

Signed-off-by: Masahiro Yamada <masahiroy@kernel.org>
Reviewed-by: Nick Desaulniers <ndesaulniers@google.com>
scripts/mod/modpost.c

index 441d57ee3275a09875bddc437b6bfb0f60e1a65c..f1f658122ad805284b4c40387c21c89e5b6f13cf 100644 (file)
@@ -1420,17 +1420,10 @@ static void get_rel_type_and_sym(struct elf_info *elf, uint64_t r_info,
 }
 
 static void section_rela(struct module *mod, struct elf_info *elf,
-                        Elf_Shdr *sechdr)
+                        unsigned int fsecndx, const char *fromsec,
+                        const Elf_Rela *start, const Elf_Rela *stop)
 {
-       Elf_Rela *rela;
-       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;
-
-       /* if from section (name) is know good then skip it */
-       if (match(fromsec, section_white_list))
-               return;
+       const Elf_Rela *rela;
 
        for (rela = start; rela < stop; rela++) {
                Elf_Addr taddr, r_offset;
@@ -1460,17 +1453,10 @@ static void section_rela(struct module *mod, struct elf_info *elf,
 }
 
 static void section_rel(struct module *mod, struct elf_info *elf,
-                       Elf_Shdr *sechdr)
+                       unsigned int fsecndx, const char *fromsec,
+                       const Elf_Rel *start, const Elf_Rel *stop)
 {
-       Elf_Rel *rel;
-       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;
-
-       /* if from section (name) is know good then skip it */
-       if (match(fromsec, section_white_list))
-               return;
+       const Elf_Rel *rel;
 
        for (rel = start; rel < stop; rel++) {
                Elf_Sym *tsym;
@@ -1525,10 +1511,26 @@ static void check_sec_ref(struct module *mod, struct elf_info *elf)
 
                check_section(mod->name, elf, sechdr);
                /* We want to process only relocation sections and not .init */
-               if (sechdr->sh_type == SHT_RELA)
-                       section_rela(mod, elf, sechdr);
-               else if (sechdr->sh_type == SHT_REL)
-                       section_rel(mod, elf, sechdr);
+               if (sechdr->sh_type == SHT_REL || sechdr->sh_type == SHT_RELA) {
+                       /* section to which the relocation applies */
+                       unsigned int secndx = sechdr->sh_info;
+                       const char *secname = sec_name(elf, secndx);
+                       const void *start, *stop;
+
+                       /* If the section is known good, skip it */
+                       if (match(secname, section_white_list))
+                               continue;
+
+                       start = sym_get_data_by_offset(elf, i, 0);
+                       stop = start + sechdr->sh_size;
+
+                       if (sechdr->sh_type == SHT_RELA)
+                               section_rela(mod, elf, secndx, secname,
+                                            start, stop);
+                       else
+                               section_rel(mod, elf, secndx, secname,
+                                           start, stop);
+               }
        }
 }