modpost: remove the unused argument of check_sec_ref()
[linux-2.6-microblaze.git] / scripts / mod / modpost.c
index a78b75f..2806a5c 100644 (file)
@@ -266,7 +266,7 @@ static void sym_add_unresolved(const char *name, struct module *mod, bool weak)
        list_add_tail(&sym->list, &mod->unresolved_symbols);
 }
 
-static struct symbol *find_symbol(const char *name)
+static struct symbol *sym_find_with_module(const char *name, struct module *mod)
 {
        struct symbol *s;
 
@@ -275,12 +275,17 @@ static struct symbol *find_symbol(const char *name)
                name++;
 
        for (s = symbolhash[tdb_hash(name) % SYMBOL_HASH_SIZE]; s; s = s->next) {
-               if (strcmp(s->name, name) == 0)
+               if (strcmp(s->name, name) == 0 && (!mod || s->module == mod))
                        return s;
        }
        return NULL;
 }
 
+static struct symbol *find_symbol(const char *name)
+{
+       return sym_find_with_module(name, NULL);
+}
+
 struct namespace_list {
        struct list_head list;
        char namespace[];
@@ -378,19 +383,10 @@ static struct symbol *sym_add_exported(const char *name, struct module *mod,
        return s;
 }
 
-static void sym_set_crc(const char *name, unsigned int crc)
+static void sym_set_crc(struct symbol *sym, unsigned int crc)
 {
-       struct symbol *s = find_symbol(name);
-
-       /*
-        * Ignore stand-alone __crc_*, which might be auto-generated symbols
-        * such as __*_veneer in ARM ELF.
-        */
-       if (!s)
-               return;
-
-       s->crc = crc;
-       s->crc_valid = true;
+       sym->crc = crc;
+       sym->crc_valid = true;
 }
 
 static void *grab_file(const char *filename, size_t *size)
@@ -613,33 +609,6 @@ static int ignore_undef_symbol(struct elf_info *info, const char *symname)
        return 0;
 }
 
-static void handle_modversion(const struct module *mod,
-                             const struct elf_info *info,
-                             const Elf_Sym *sym, const char *symname)
-{
-       unsigned int crc;
-
-       if (sym->st_shndx == SHN_UNDEF) {
-               warn("EXPORT symbol \"%s\" [%s%s] version generation failed, symbol will not be versioned.\n"
-                    "Is \"%s\" prototyped in <asm/asm-prototypes.h>?\n",
-                    symname, mod->name, mod->is_vmlinux ? "" : ".ko",
-                    symname);
-
-               return;
-       }
-
-       if (sym->st_shndx == SHN_ABS) {
-               crc = sym->st_value;
-       } else {
-               unsigned int *crcp;
-
-               /* symbol points to the CRC in the ELF object */
-               crcp = sym_get_data(info, sym);
-               crc = TO_NATIVE(*crcp);
-       }
-       sym_set_crc(symname, crc);
-}
-
 static void handle_symbol(struct module *mod, struct elf_info *info,
                          const Elf_Sym *sym, const char *symname)
 {
@@ -1211,7 +1180,8 @@ static int secref_whitelist(const struct sectioncheck *mismatch,
 
 static inline int is_arm_mapping_symbol(const char *str)
 {
-       return str[0] == '$' && strchr("axtd", str[1])
+       return str[0] == '$' &&
+              (str[1] == 'a' || str[1] == 'd' || str[1] == 't' || str[1] == 'x')
               && (str[2] == '\0' || str[2] == '.');
 }
 
@@ -1914,8 +1884,7 @@ static void section_rel(const char *modname, struct elf_info *elf,
  * to find all references to a section that reference a section that will
  * be discarded and warns about it.
  **/
-static void check_sec_ref(struct module *mod, const char *modname,
-                         struct elf_info *elf)
+static void check_sec_ref(const char *modname, struct elf_info *elf)
 {
        int i;
        Elf_Shdr *sechdrs = elf->sechdrs;
@@ -1937,7 +1906,7 @@ static char *remove_dot(char *s)
 
        if (n && s[n]) {
                size_t m = strspn(s + n + 1, "0123456789");
-               if (m && (s[n + m] == '.' || s[n + m] == 0))
+               if (m && (s[n + m + 1] == '.' || s[n + m + 1] == 0))
                        s[n] = 0;
 
                /* strip trailing .prelink */
@@ -1947,6 +1916,104 @@ static char *remove_dot(char *s)
        return s;
 }
 
+/*
+ * The CRCs are recorded in .*.cmd files in the form of:
+ * #SYMVER <name> <crc>
+ */
+static void extract_crcs_for_object(const char *object, struct module *mod)
+{
+       char cmd_file[PATH_MAX];
+       char *buf, *p;
+       const char *base;
+       int dirlen, ret;
+
+       base = strrchr(object, '/');
+       if (base) {
+               base++;
+               dirlen = base - object;
+       } else {
+               dirlen = 0;
+               base = object;
+       }
+
+       ret = snprintf(cmd_file, sizeof(cmd_file), "%.*s.%s.cmd",
+                      dirlen, object, base);
+       if (ret >= sizeof(cmd_file)) {
+               error("%s: too long path was truncated\n", cmd_file);
+               return;
+       }
+
+       buf = read_text_file(cmd_file);
+       p = buf;
+
+       while ((p = strstr(p, "\n#SYMVER "))) {
+               char *name;
+               size_t namelen;
+               unsigned int crc;
+               struct symbol *sym;
+
+               name = p + strlen("\n#SYMVER ");
+
+               p = strchr(name, ' ');
+               if (!p)
+                       break;
+
+               namelen = p - name;
+               p++;
+
+               if (!isdigit(*p))
+                       continue;       /* skip this line */
+
+               crc = strtol(p, &p, 0);
+               if (*p != '\n')
+                       continue;       /* skip this line */
+
+               name[namelen] = '\0';
+
+               /*
+                * sym_find_with_module() may return NULL here.
+                * It typically occurs when CONFIG_TRIM_UNUSED_KSYMS=y.
+                * Since commit e1327a127703, genksyms calculates CRCs of all
+                * symbols, including trimmed ones. Ignore orphan CRCs.
+                */
+               sym = sym_find_with_module(name, mod);
+               if (sym)
+                       sym_set_crc(sym, crc);
+       }
+
+       free(buf);
+}
+
+/*
+ * The symbol versions (CRC) are recorded in the .*.cmd files.
+ * Parse them to retrieve CRCs for the current module.
+ */
+static void mod_set_crcs(struct module *mod)
+{
+       char objlist[PATH_MAX];
+       char *buf, *p, *obj;
+       int ret;
+
+       if (mod->is_vmlinux) {
+               strcpy(objlist, ".vmlinux.objs");
+       } else {
+               /* objects for a module are listed in the *.mod file. */
+               ret = snprintf(objlist, sizeof(objlist), "%s.mod", mod->name);
+               if (ret >= sizeof(objlist)) {
+                       error("%s: too long path was truncated\n", objlist);
+                       return;
+               }
+       }
+
+       buf = read_text_file(objlist);
+       p = buf;
+
+       while ((obj = strsep(&p, "\n")) && obj[0])
+               extract_crcs_for_object(obj, mod);
+
+       free(buf);
+}
+
 static void read_symbols(const char *modname)
 {
        const char *symname;
@@ -2007,9 +2074,6 @@ static void read_symbols(const char *modname)
                if (strstarts(symname, "__kstrtabns_"))
                        sym_update_namespace(symname + strlen("__kstrtabns_"),
                                             sym_get_data(&info, sym));
-               if (strstarts(symname, "__crc_"))
-                       handle_modversion(mod, &info, sym,
-                                         symname + strlen("__crc_"));
        }
 
        // check for static EXPORT_SYMBOL_* functions && global vars
@@ -2026,7 +2090,7 @@ static void read_symbols(const char *modname)
                }
        }
 
-       check_sec_ref(mod, modname, &info);
+       check_sec_ref(modname, &info);
 
        if (!mod->is_vmlinux) {
                version = get_modinfo(&info, "version");
@@ -2037,12 +2101,17 @@ static void read_symbols(const char *modname)
 
        parse_elf_finish(&info);
 
-       /* Our trick to get versioning for module struct etc. - it's
-        * never passed as an argument to an exported function, so
-        * the automatic versioning doesn't pick it up, but it's really
-        * important anyhow */
-       if (modversions)
+       if (modversions) {
+               /*
+                * Our trick to get versioning for module struct etc. - it's
+                * never passed as an argument to an exported function, so
+                * the automatic versioning doesn't pick it up, but it's really
+                * important anyhow.
+                */
                sym_add_unresolved("module_layout", mod, false);
+
+               mod_set_crcs(mod);
+       }
 }
 
 static void read_symbols_from_files(const char *filename)
@@ -2165,6 +2234,7 @@ static void add_header(struct buffer *b, struct module *mod)
        buf_printf(b, "#define INCLUDE_VERMAGIC\n");
        buf_printf(b, "#include <linux/build-salt.h>\n");
        buf_printf(b, "#include <linux/elfnote-lto.h>\n");
+       buf_printf(b, "#include <linux/export-internal.h>\n");
        buf_printf(b, "#include <linux/vermagic.h>\n");
        buf_printf(b, "#include <linux/compiler.h>\n");
        buf_printf(b, "\n");
@@ -2199,6 +2269,29 @@ static void add_header(struct buffer *b, struct module *mod)
                buf_printf(b, "\nMODULE_INFO(staging, \"Y\");\n");
 }
 
+static void add_exported_symbols(struct buffer *buf, struct module *mod)
+{
+       struct symbol *sym;
+
+       if (!modversions)
+               return;
+
+       /* record CRCs for exported symbols */
+       buf_printf(buf, "\n");
+       list_for_each_entry(sym, &mod->exported_symbols, list) {
+               if (!sym->crc_valid) {
+                       warn("EXPORT symbol \"%s\" [%s%s] version generation failed, symbol will not be versioned.\n"
+                            "Is \"%s\" prototyped in <asm/asm-prototypes.h>?\n",
+                            sym->name, mod->name, mod->is_vmlinux ? "" : ".ko",
+                            sym->name);
+                       continue;
+               }
+
+               buf_printf(buf, "SYMBOL_CRC(%s, 0x%08x, \"%s\");\n",
+                          sym->name, sym->crc, sym->is_gpl_only ? "_gpl" : "");
+       }
+}
+
 /**
  * Record CRCs for unresolved symbols
  **/
@@ -2332,6 +2425,18 @@ static void write_if_changed(struct buffer *b, const char *fname)
        write_buf(b, fname);
 }
 
+static void write_vmlinux_export_c_file(struct module *mod)
+{
+       struct buffer buf = { };
+
+       buf_printf(&buf,
+                  "#include <linux/export-internal.h>\n");
+
+       add_exported_symbols(&buf, mod);
+       write_if_changed(&buf, ".vmlinux.export.c");
+       free(buf.p);
+}
+
 /* do sanity checks, and generate *.mod.c file */
 static void write_mod_c_file(struct module *mod)
 {
@@ -2343,6 +2448,7 @@ static void write_mod_c_file(struct module *mod)
        check_exports(mod);
 
        add_header(&buf, mod);
+       add_exported_symbols(&buf, mod);
        add_versions(&buf, mod);
        add_depends(&buf, mod);
        add_moddevtable(&buf, mod);
@@ -2414,7 +2520,7 @@ static void read_dump(const char *fname)
                }
                s = sym_add_exported(symname, mod, gpl_only);
                s->is_static = false;
-               sym_set_crc(symname, crc);
+               sym_set_crc(s, crc);
                sym_update_namespace(symname, namespace);
        }
        free(buf);
@@ -2540,7 +2646,9 @@ int main(int argc, char **argv)
                if (mod->from_dump)
                        continue;
 
-               if (!mod->is_vmlinux)
+               if (mod->is_vmlinux)
+                       write_vmlinux_export_c_file(mod);
+               else
                        write_mod_c_file(mod);
        }