19 #include "../../include/generated/autoconf.h"
20 #include "../../include/linux/license.h"
23 #ifdef CONFIG_SYMBOL_PREFIX
24 #define MODULE_SYMBOL_PREFIX CONFIG_SYMBOL_PREFIX
26 #define MODULE_SYMBOL_PREFIX ""
37 static int external_module = 0;
39 static int vmlinux_section_warnings = 1;
41 static int warn_unresolved = 0;
43 static int sec_mismatch_count = 0;
44 static int sec_mismatch_verbose = 1;
51 #define PRINTF __attribute__ ((format (printf, 1, 2)))
88 static int is_vmlinux(
const char *
modname)
98 return (
strcmp(myname,
"vmlinux") == 0) ||
99 (
strcmp(myname,
"vmlinux.o") == 0);
105 fatal(
"modpost: Memory allocation failure: %s.\n", expr);
111 static struct module *modules;
117 for (mod = modules;
mod; mod = mod->
next)
123 static struct module *new_module(
char *modname)
129 memset(mod, 0,
sizeof(*mod));
130 p =
NOFAIL(strdup(modname));
135 if (
strcmp(s,
".o") == 0) {
152 #define SYMBOL_HASH_SIZE 1024
171 static inline unsigned int tdb_hash(
const char *
name)
177 for (value = 0x238F13AF *
strlen(name), i = 0; name[
i]; i++)
178 value = (value + (((
unsigned char *)name)[i] << (i*5 % 24)));
180 return (1103515243 * value + 12345);
187 static struct symbol *alloc_symbol(
const char *
name,
unsigned int weak,
207 new = symbolhash[
hash] = alloc_symbol(name, 0, symbolhash[hash]);
234 { .str =
"EXPORT_SYMBOL_GPL", .export =
export_gpl },
241 static const char *export_str(
enum export ex)
243 return export_list[ex].str;
246 static enum export export_no(
const char *s)
254 return export_list[
i].export;
259 static const char *sec_name(
struct elf_info *elf,
int secindex);
261 #define strstarts(str, prefix) (strncmp(str, prefix, strlen(prefix)) == 0)
265 const char *secname = sec_name(elf, sec);
269 else if (
strstarts(secname,
"___ksymtab_unused+"))
271 else if (
strstarts(secname,
"___ksymtab_gpl+"))
273 else if (
strstarts(secname,
"___ksymtab_unused_gpl+"))
275 else if (
strstarts(secname,
"___ksymtab_gpl_future+"))
301 static struct symbol *sym_add_exported(
const char *name,
struct module *mod,
307 s = new_symbol(name, mod, export);
310 warn(
"%s: '%s' exported twice. Previous export "
311 "was in %s%s\n", mod->
name, name,
313 is_vmlinux(s->
module->name) ?
"":
".ko");
326 static void sym_update_crc(
const char *name,
struct module *mod,
327 unsigned int crc,
enum export export)
332 s = new_symbol(name, mod, export);
340 void *
map = MAP_FAILED;
354 if (map == MAP_FAILED)
366 static char line[4096];
369 signed char *p = (
signed char *)file + *pos;
372 for (; *pos <
size ; (*pos)++) {
378 if (*p !=
'\n' && (*pos < size)) {
404 const char *secstrings;
405 unsigned int symtab_idx = ~0
U, symtab_shndx_idx = ~0
U;
413 if (info->
size <
sizeof(*hdr)) {
427 hdr->e_machine =
TO_NATIVE(hdr->e_machine);
428 hdr->e_version =
TO_NATIVE(hdr->e_version);
433 hdr->e_ehsize =
TO_NATIVE(hdr->e_ehsize);
434 hdr->e_phentsize =
TO_NATIVE(hdr->e_phentsize);
436 hdr->e_shentsize =
TO_NATIVE(hdr->e_shentsize);
438 hdr->e_shstrndx =
TO_NATIVE(hdr->e_shstrndx);
439 sechdrs = (
void *)hdr + hdr->e_shoff;
443 if (hdr->e_shoff > info->
size) {
444 fatal(
"section header offset=%lu in file '%s' is bigger than "
445 "filesize=%lu\n", (
unsigned long)hdr->e_shoff,
446 filename, info->
size);
460 if (hdr->e_shstrndx == SHN_XINDEX) {
469 sechdrs[
i].sh_name =
TO_NATIVE(sechdrs[i].sh_name);
470 sechdrs[
i].sh_type =
TO_NATIVE(sechdrs[i].sh_type);
471 sechdrs[
i].sh_flags =
TO_NATIVE(sechdrs[i].sh_flags);
472 sechdrs[
i].sh_addr =
TO_NATIVE(sechdrs[i].sh_addr);
473 sechdrs[
i].sh_offset =
TO_NATIVE(sechdrs[i].sh_offset);
474 sechdrs[
i].sh_size =
TO_NATIVE(sechdrs[i].sh_size);
475 sechdrs[
i].sh_link =
TO_NATIVE(sechdrs[i].sh_link);
476 sechdrs[
i].sh_info =
TO_NATIVE(sechdrs[i].sh_info);
477 sechdrs[
i].sh_addralign =
TO_NATIVE(sechdrs[i].sh_addralign);
478 sechdrs[
i].sh_entsize =
TO_NATIVE(sechdrs[i].sh_entsize);
486 if (!nobits && sechdrs[i].sh_offset > info->
size) {
487 fatal(
"%s is truncated. sechdrs[i].sh_offset=%lu > "
488 "sizeof(*hrd)=%zu\n", filename,
489 (
unsigned long)sechdrs[i].sh_offset,
493 secname = secstrings + sechdrs[
i].sh_name;
494 if (
strcmp(secname,
".modinfo") == 0) {
496 fatal(
"%s has NOBITS .modinfo\n", filename);
497 info->
modinfo = (
void *)hdr + sechdrs[i].sh_offset;
499 }
else if (
strcmp(secname,
"__ksymtab") == 0)
501 else if (
strcmp(secname,
"__ksymtab_unused") == 0)
503 else if (
strcmp(secname,
"__ksymtab_gpl") == 0)
505 else if (
strcmp(secname,
"__ksymtab_unused_gpl") == 0)
507 else if (
strcmp(secname,
"__ksymtab_gpl_future") == 0)
511 unsigned int sh_link_idx;
514 sechdrs[i].sh_offset;
516 sechdrs[i].sh_offset + sechdrs[i].sh_size;
517 sh_link_idx = sechdrs[
i].sh_link;
518 info->
strtab = (
void *)hdr +
519 sechdrs[sh_link_idx].sh_offset;
523 if (sechdrs[i].sh_type == SHT_SYMTAB_SHNDX) {
524 symtab_shndx_idx =
i;
526 sechdrs[i].sh_offset;
528 sechdrs[i].sh_offset + sechdrs[i].sh_size;
532 fatal(
"%s has no symtab?\n", filename);
535 for (sym = info->
symtab_start; sym < info->symtab_stop; sym++) {
536 sym->st_shndx =
TO_NATIVE(sym->st_shndx);
538 sym->st_value =
TO_NATIVE(sym->st_value);
542 if (symtab_shndx_idx != ~0
U) {
544 if (symtab_idx != sechdrs[symtab_shndx_idx].sh_link)
545 fatal(
"%s: SYMTAB_SHNDX has bad sh_link: %u!=%u\n",
546 filename, sechdrs[symtab_shndx_idx].sh_link,
557 static void parse_elf_finish(
struct elf_info *info)
562 static int ignore_undef_symbol(
struct elf_info *info,
const char *symname)
568 if (
strcmp(symname,
"_GLOBAL_OFFSET_TABLE_") == 0)
572 if (
strncmp(symname,
"_restgpr_",
sizeof(
"_restgpr_") - 1) == 0 ||
573 strncmp(symname,
"_savegpr_",
sizeof(
"_savegpr_") - 1) == 0 ||
574 strncmp(symname,
"_rest32gpr_",
sizeof(
"_rest32gpr_") - 1) == 0 ||
575 strncmp(symname,
"_save32gpr_",
sizeof(
"_save32gpr_") - 1) == 0)
579 if (
strncmp(symname,
"_restgpr0_",
sizeof(
"_restgpr0_") - 1) == 0 ||
580 strncmp(symname,
"_savegpr0_",
sizeof(
"_savegpr0_") - 1) == 0)
586 #define CRC_PFX MODULE_SYMBOL_PREFIX "__crc_"
587 #define KSYMTAB_PFX MODULE_SYMBOL_PREFIX "__ksymtab_"
589 static void handle_modversions(
struct module *mod,
struct elf_info *info,
590 Elf_Sym *sym,
const char *symname)
596 strncmp(symname,
"__ksymtab", 9) == 0)
597 export = export_from_secname(info, get_secindex(info, sym));
599 export = export_from_sec(info, get_secindex(info, sym));
601 switch (sym->st_shndx) {
603 warn(
"\"%s\" [%s] is COMMON symbol\n", symname, mod->
name);
608 crc = (
unsigned int) sym->st_value;
618 if (ignore_undef_symbol(info, symname))
621 #if defined(STT_REGISTER) || defined(STT_SPARC_REGISTER)
623 #ifndef STT_SPARC_REGISTER
624 #define STT_SPARC_REGISTER STT_REGISTER
629 if (
ELF_ST_TYPE(sym->st_info) == STT_SPARC_REGISTER)
631 if (symname[0] ==
'.') {
632 char *munged = strdup(symname);
634 munged[1] =
toupper(munged[1]);
643 alloc_symbol(symname +
666 static char *next_string(
char *
string,
unsigned long *secsize)
671 if ((*secsize)-- <= 1)
678 if ((*secsize)-- <= 1)
684 static char *get_next_modinfo(
void *modinfo,
unsigned long modinfo_len,
685 const char *
tag,
char *info)
688 unsigned int taglen =
strlen(tag);
689 unsigned long size = modinfo_len;
692 size -= info - (
char *)modinfo;
693 modinfo = next_string(info, &size);
696 for (p = modinfo;
p; p = next_string(p, &size)) {
697 if (
strncmp(p, tag, taglen) == 0 && p[taglen] ==
'=')
698 return p + taglen + 1;
703 static char *get_modinfo(
void *modinfo,
unsigned long modinfo_len,
707 return get_next_modinfo(modinfo, modinfo_len, tag,
NULL);
714 static int strrcmp(
const char *s,
const char *sub)
724 if ((slen == 0) || (sublen == 0))
730 return memcmp(s + slen - sublen, sub, sublen);
736 return elf->
strtab + sym->st_name;
741 static const char *sec_name(
struct elf_info *elf,
int secindex)
744 return (
void *)elf->
hdr +
746 sechdrs[secindex].sh_name;
751 return (
void *)elf->
hdr +
760 static int number_prefix(
const char *sym)
768 if (c < '0' || c >
'9')
783 static int match(
const char *sym,
const char *
const pat[])
788 const char *endp = p +
strlen(p) - 1;
792 if (strrcmp(sym, p + 1) == 0)
796 else if (*endp ==
'*') {
801 else if (*endp ==
'$') {
803 if (number_prefix(sym +
strlen(p) - 1))
818 static const char *section_white_list[] =
841 static void check_section(
const char *modname,
struct elf_info *elf,
844 const char *sec = sech_name(elf, sechdr);
848 !
match(sec, section_white_list)) {
849 warn(
"%s (%s): unexpected non-allocatable section.\n"
850 "Did you forget to use \"ax\"/\"aw\" in a .S file?\n"
851 "Note that for example <linux/init.h> contains\n"
852 "section definitions for use in .S files.\n\n",
859 #define ALL_INIT_DATA_SECTIONS \
860 ".init.setup$", ".init.rodata$", \
861 ".devinit.rodata$", ".cpuinit.rodata$", ".meminit.rodata$", \
862 ".init.data$", ".devinit.data$", ".cpuinit.data$", ".meminit.data$"
863 #define ALL_EXIT_DATA_SECTIONS \
864 ".exit.data$", ".devexit.data$", ".cpuexit.data$", ".memexit.data$"
866 #define ALL_INIT_TEXT_SECTIONS \
867 ".init.text$", ".devinit.text$", ".cpuinit.text$", ".meminit.text$"
868 #define ALL_EXIT_TEXT_SECTIONS \
869 ".exit.text$", ".devexit.text$", ".cpuexit.text$", ".memexit.text$"
871 #define ALL_PCI_INIT_SECTIONS \
872 ".pci_fixup_early$", ".pci_fixup_header$", ".pci_fixup_final$", \
873 ".pci_fixup_enable$", ".pci_fixup_resume$", \
874 ".pci_fixup_resume_early$", ".pci_fixup_suspend$"
876 #define ALL_XXXINIT_SECTIONS DEV_INIT_SECTIONS, CPU_INIT_SECTIONS, \
878 #define ALL_XXXEXIT_SECTIONS DEV_EXIT_SECTIONS, CPU_EXIT_SECTIONS, \
881 #define ALL_INIT_SECTIONS INIT_SECTIONS, ALL_XXXINIT_SECTIONS
882 #define ALL_EXIT_SECTIONS EXIT_SECTIONS, ALL_XXXEXIT_SECTIONS
884 #define DATA_SECTIONS ".data$", ".data.rel$"
885 #define TEXT_SECTIONS ".text$"
887 #define INIT_SECTIONS ".init.*"
888 #define DEV_INIT_SECTIONS ".devinit.*"
889 #define CPU_INIT_SECTIONS ".cpuinit.*"
890 #define MEM_INIT_SECTIONS ".meminit.*"
892 #define EXIT_SECTIONS ".exit.*"
893 #define DEV_EXIT_SECTIONS ".devexit.*"
894 #define CPU_EXIT_SECTIONS ".cpuexit.*"
895 #define MEM_EXIT_SECTIONS ".memexit.*"
904 static const char *init_exit_sections[] =
912 #define DEFAULT_SYMBOL_WHITE_LIST \
922 static const char *head_sections[] = {
".head.text*",
NULL };
923 static const char *linker_symbols[] =
924 {
"__init_begin",
"_sinittext",
"_einittext",
NULL };
965 .symbol_white_list = {
966 "*_template",
"*_timer",
"*_sht",
"*_ops",
967 "*_probe",
"*_probe_one",
"*_console",
NULL
1042 .symbol_white_list = {
NULL },
1046 .fromsec = {
"__ksymtab*",
NULL },
1053 static const struct sectioncheck *section_mismatch(
1057 int elems =
sizeof(
sectioncheck) /
sizeof(
struct sectioncheck);
1058 const struct sectioncheck *
check = §ioncheck[0];
1060 for (i = 0; i < elems; i++) {
1113 static int secref_whitelist(
const struct sectioncheck *
mismatch,
1114 const char *fromsec,
const char *fromsym,
1115 const char *tosec,
const char *tosym)
1118 if (
match(tosec, init_data_sections) &&
1119 match(fromsec, data_sections) &&
1124 if (
strcmp(tosec,
".init.text") == 0 &&
1125 match(fromsec, data_sections) &&
1126 (
strncmp(fromsym,
"__param_ops_",
strlen(
"__param_ops_")) == 0))
1130 if (
match(tosec, init_exit_sections) &&
1131 match(fromsec, data_sections) &&
1136 if (
match(fromsec, head_sections) &&
1137 match(tosec, init_sections))
1141 if (
match(tosym, linker_symbols))
1161 unsigned int relsym_secindex;
1163 if (relsym->st_name != 0)
1166 relsym_secindex = get_secindex(elf, relsym);
1167 for (sym = elf->
symtab_start; sym < elf->symtab_stop; sym++) {
1168 if (get_secindex(elf, sym) != relsym_secindex)
1172 if (sym->st_value == addr)
1175 d = sym->st_value -
addr;
1177 d = addr - sym->st_value;
1190 static inline int is_arm_mapping_symbol(
const char *
str)
1192 return str[0] ==
'$' &&
strchr(
"atd", str[1])
1193 && (str[2] ==
'\0' || str[2] ==
'.');
1207 const char *name = elf->
strtab + sym->st_name;
1209 if (!name || !
strlen(name))
1211 return !is_arm_mapping_symbol(name);
1227 for (sym = elf->
symtab_start; sym < elf->symtab_stop; sym++) {
1230 if (is_shndx_special(sym->st_shndx))
1232 symsec = sec_name(elf, get_secindex(elf, sym));
1233 if (
strcmp(symsec, sec) != 0)
1235 if (!is_valid_name(elf, sym))
1237 if (sym->st_value <= addr) {
1238 if ((addr - sym->st_value) < distance) {
1239 distance = addr - sym->st_value;
1241 }
else if ((addr - sym->st_value) == distance) {
1259 static char *sec2annotation(
const char *s)
1261 if (
match(s, init_exit_sections)) {
1269 while (*s && *s !=
'.')
1286 static int is_function(
Elf_Sym *sym)
1294 static void print_section_list(
const char *
const list[20])
1296 const char *
const *s =
list;
1312 static void report_sec_mismatch(
const char *modname,
1313 const struct sectioncheck *mismatch,
1314 const char *fromsec,
1315 unsigned long long fromaddr,
1316 const char *fromsym,
1318 const char *tosec,
const char *tosym,
1321 const char *
from, *from_p;
1322 const char *to, *to_p;
1326 switch (from_is_func) {
1327 case 0: from =
"variable"; from_p =
"";
break;
1328 case 1: from =
"function"; from_p =
"()";
break;
1329 default: from =
"(unknown reference)"; from_p =
"";
break;
1331 switch (to_is_func) {
1332 case 0: to =
"variable"; to_p =
"";
break;
1333 case 1: to =
"function"; to_p =
"()";
break;
1334 default: to =
"(unknown reference)"; to_p =
"";
break;
1337 sec_mismatch_count++;
1338 if (!sec_mismatch_verbose)
1341 warn(
"%s(%s+0x%llx): Section mismatch in reference from the %s %s%s "
1342 "to the %s %s:%s%s\n",
1343 modname, fromsec, fromaddr, from, fromsym, from_p, to, tosec,
1348 prl_from = sec2annotation(fromsec);
1349 prl_to = sec2annotation(tosec);
1351 "The function %s%s() references\n"
1353 "This is often because %s lacks a %s\n"
1354 "annotation or the annotation of %s is wrong.\n",
1356 to, prl_to, tosym, to_p,
1357 fromsym, prl_to, tosym);
1362 prl_to = sec2annotation(tosec);
1364 "The variable %s references\n"
1366 "If the reference is valid then annotate the\n"
1367 "variable with __init* or __refdata (see linux/init.h) "
1368 "or name the variable:\n",
1369 fromsym, to, prl_to, tosym, to_p);
1375 prl_to = sec2annotation(tosec);
1377 "The function %s() references a %s in an exit section.\n"
1378 "Often the %s %s%s has valid usage outside the exit section\n"
1379 "and the fix is to remove the %sannotation of %s.\n",
1380 fromsym, to, to, tosym, to_p, prl_to, tosym);
1384 prl_to = sec2annotation(tosec);
1386 "The variable %s references\n"
1388 "If the reference is valid then annotate the\n"
1389 "variable with __exit* (see linux/init.h) or "
1390 "name the variable:\n",
1391 fromsym, to, prl_to, tosym, to_p);
1398 prl_from = sec2annotation(fromsec);
1399 prl_to = sec2annotation(tosec);
1401 "The %s %s%s%s references\n"
1403 "If %s is only used by %s then\n"
1404 "annotate %s with a matching annotation.\n",
1405 from, prl_from, fromsym, from_p,
1406 to, prl_to, tosym, to_p,
1407 tosym, fromsym, tosym);
1412 prl_from = sec2annotation(fromsec);
1413 prl_to = sec2annotation(tosec);
1415 "The %s %s%s%s references\n"
1417 "This is often seen when error handling "
1418 "in the init function\n"
1419 "uses functionality in the exit path.\n"
1420 "The fix is often to remove the %sannotation of\n"
1421 "%s%s so it may be used outside an exit section.\n",
1422 from, prl_from, fromsym, from_p,
1423 to, prl_to, tosym, to_p,
1424 prl_to, tosym, to_p);
1429 prl_from = sec2annotation(fromsec);
1430 prl_to = sec2annotation(tosec);
1432 "The %s %s%s%s references\n"
1434 "This is often seen when error handling "
1435 "in the exit function\n"
1436 "uses functionality in the init path.\n"
1437 "The fix is often to remove the %sannotation of\n"
1438 "%s%s so it may be used outside an init section.\n",
1439 from, prl_from, fromsym, from_p,
1440 to, prl_to, tosym, to_p,
1441 prl_to, tosym, to_p);
1446 prl_to = sec2annotation(tosec);
1448 "The symbol %s is exported and annotated %s\n"
1449 "Fix this by removing the %sannotation of %s "
1450 "or drop the export.\n",
1451 tosym, prl_to, prl_to, tosym);
1458 static void check_section_mismatch(
const char *modname,
struct elf_info *elf,
1462 const struct sectioncheck *
mismatch;
1464 tosec = sec_name(elf, get_secindex(elf, sym));
1465 mismatch = section_mismatch(fromsec, tosec);
1470 const char *fromsym;
1472 from = find_elf_symbol2(elf, r->r_offset, fromsec);
1474 to = find_elf_symbol(elf, r->r_addend, sym);
1478 if (secref_whitelist(mismatch,
1479 fromsec, fromsym, tosec, tosym)) {
1480 report_sec_mismatch(modname, mismatch,
1481 fromsec, r->r_offset, fromsym,
1482 is_function(from), tosec, tosym,
1488 static unsigned int *reloc_location(
struct elf_info *elf,
1492 int section = sechdr->sh_info;
1494 return (
void *)elf->
hdr + sechdrs[section].sh_offset +
1501 unsigned int *
location = reloc_location(elf, sechdr, r);
1511 r->r_addend += r->r_offset;
1518 #define R_ARM_CALL 28
1520 #ifndef R_ARM_JUMP24
1521 #define R_ARM_JUMP24 29
1531 r->r_addend = (
int)(
long)
1538 r->r_addend = (
int)(
long)(elf->
hdr +
1540 (r->r_offset - sechdr->sh_addr));
1551 unsigned int *location = reloc_location(elf, sechdr, r);
1559 r->r_addend = inst & 0xffff;
1562 r->r_addend = (inst & 0x03ffffff) << 2;
1571 static void section_rela(
const char *modname,
struct elf_info *elf,
1583 fromsec = sech_name(elf, sechdr);
1584 fromsec +=
strlen(
".rela");
1586 if (
match(fromsec, section_white_list))
1589 for (rela = start; rela <
stop; rela++) {
1591 #if KERNEL_ELFCLASS == ELFCLASS64
1597 r.r_info = ELF64_R_INFO(r_sym, r_typ);
1609 if (is_shndx_special(sym->st_shndx))
1611 check_section_mismatch(modname, elf, &r, sym, fromsec);
1615 static void section_rel(
const char *modname,
struct elf_info *elf,
1624 Elf_Rel *start = (
void *)elf->
hdr + sechdr->sh_offset;
1625 Elf_Rel *stop = (
void *)start + sechdr->sh_size;
1627 fromsec = sech_name(elf, sechdr);
1628 fromsec +=
strlen(
".rel");
1630 if (
match(fromsec, section_white_list))
1633 for (rel = start; rel <
stop; rel++) {
1635 #if KERNEL_ELFCLASS == ELFCLASS64
1641 r.r_info = ELF64_R_INFO(r_sym, r_typ);
1651 switch (elf->
hdr->e_machine) {
1653 if (addend_386_rel(elf, sechdr, &r))
1657 if (addend_arm_rel(elf, sechdr, &r))
1661 if (addend_mips_rel(elf, sechdr, &r))
1667 if (is_shndx_special(sym->st_shndx))
1669 check_section_mismatch(modname, elf, &r, sym, fromsec);
1685 static void check_sec_ref(
struct module *mod,
const char *modname,
1693 check_section(modname, elf, &elf->
sechdrs[i]);
1695 if (sechdrs[i].sh_type ==
SHT_RELA)
1696 section_rela(modname, elf, &elf->
sechdrs[i]);
1697 else if (sechdrs[i].sh_type ==
SHT_REL)
1698 section_rel(modname, elf, &elf->
sechdrs[i]);
1702 static void read_symbols(
char *modname)
1704 const char *symname;
1711 if (!parse_elf(&info, modname))
1714 mod = new_module(modname);
1718 if (is_vmlinux(modname)) {
1724 if (info.
modinfo && !license && !is_vmlinux(modname))
1725 warn(
"modpost: missing MODULE_LICENSE() in %s\n"
1726 "see include/linux/module.h for "
1727 "more information\n", modname);
1729 if (license_is_gpl_compatible(license))
1736 "license", license);
1740 symname = info.
strtab + sym->st_name;
1742 handle_modversions(mod, &info, sym, symname);
1745 if (!is_vmlinux(modname) ||
1746 (is_vmlinux(modname) && vmlinux_section_warnings))
1747 check_sec_ref(mod, modname, &info);
1752 version - (
char *)info.
hdr);
1757 parse_elf_finish(&info);
1764 mod->
unres = alloc_symbol(
"module_layout", 0, mod->
unres);
1788 if (buf->
size - buf->
pos < len) {
1790 buf->
p = realloc(buf->
p, buf->
size);
1796 static void check_for_gpl_usage(
enum export
exp,
const char *
m,
const char *s)
1798 const char *
e = is_vmlinux(m) ?
"":
".ko";
1802 fatal(
"modpost: GPL-incompatible module %s%s "
1803 "uses GPL-only symbol '%s'\n", m, e, s);
1806 fatal(
"modpost: GPL-incompatible module %s%s "
1807 "uses GPL-only symbol marked UNUSED '%s'\n", m, e, s);
1810 warn(
"modpost: GPL-incompatible module %s%s "
1811 "uses future GPL-only symbol '%s'\n", m, e, s);
1821 static void check_for_unused(
enum export exp,
const char *m,
const char *s)
1823 const char *e = is_vmlinux(m) ?
"":
".ko";
1828 warn(
"modpost: module %s%s "
1829 "uses symbol '%s' marked UNUSED\n", m, e, s);
1837 static void check_exports(
struct module *mod)
1842 const char *basename;
1844 if (!exp || exp->
module == mod)
1850 basename = mod->
name;
1852 check_for_gpl_usage(exp->
export, basename, exp->
name);
1853 check_for_unused(exp->
export, basename, exp->
name);
1860 static void add_header(
struct buffer *
b,
struct module *mod)
1862 buf_printf(b,
"#include <linux/module.h>\n");
1863 buf_printf(b,
"#include <linux/vermagic.h>\n");
1864 buf_printf(b,
"#include <linux/compiler.h>\n");
1865 buf_printf(b,
"\n");
1866 buf_printf(b,
"MODULE_INFO(vermagic, VERMAGIC_STRING);\n");
1867 buf_printf(b,
"\n");
1868 buf_printf(b,
"struct module __this_module\n");
1869 buf_printf(b,
"__attribute__((section(\".gnu.linkonce.this_module\"))) = {\n");
1870 buf_printf(b,
"\t.name = KBUILD_MODNAME,\n");
1872 buf_printf(b,
"\t.init = init_module,\n");
1874 buf_printf(b,
"#ifdef CONFIG_MODULE_UNLOAD\n"
1875 "\t.exit = cleanup_module,\n"
1877 buf_printf(b,
"\t.arch = MODULE_ARCH_INIT,\n");
1878 buf_printf(b,
"};\n");
1881 static void add_intree_flag(
struct buffer *b,
int is_intree)
1884 buf_printf(b,
"\nMODULE_INFO(intree, \"Y\");\n");
1887 static void add_staging_flag(
struct buffer *b,
const char *name)
1889 static const char *staging_dir =
"drivers/staging";
1892 buf_printf(b,
"\nMODULE_INFO(staging, \"Y\");\n");
1898 static int add_versions(
struct buffer *b,
struct module *mod)
1905 if (!exp || exp->
module == mod) {
1907 if (warn_unresolved) {
1908 warn(
"\"%s\" [%s.ko] undefined!\n",
1911 merror(
"\"%s\" [%s.ko] undefined!\n",
1926 buf_printf(b,
"\n");
1927 buf_printf(b,
"static const struct modversion_info ____versions[]\n");
1928 buf_printf(b,
"__used\n");
1929 buf_printf(b,
"__attribute__((section(\"__versions\"))) = {\n");
1935 warn(
"\"%s\" [%s.ko] has no CRC!\n",
1939 buf_printf(b,
"\t{ %#8x, \"%s\" },\n", s->
crc, s->
name);
1942 buf_printf(b,
"};\n");
1947 static void add_depends(
struct buffer *b,
struct module *mod,
1954 for (m = modules;
m; m = m->
next)
1957 buf_printf(b,
"\n");
1958 buf_printf(b,
"static const char __module_depends[]\n");
1959 buf_printf(b,
"__used\n");
1960 buf_printf(b,
"__attribute__((section(\".modinfo\"))) =\n");
1961 buf_printf(b,
"\"depends=");
1976 buf_printf(b,
"%s%s", first ?
"" :
",", p);
1979 buf_printf(b,
"\";\n");
1982 static void add_srcversion(
struct buffer *b,
struct module *mod)
1985 buf_printf(b,
"\n");
1986 buf_printf(b,
"MODULE_INFO(srcversion, \"%s\");\n",
1991 static void write_if_changed(
struct buffer *b,
const char *
fname)
1997 file = fopen(fname,
"r");
2001 if (fstat(fileno(file), &
st) < 0)
2004 if (
st.st_size != b->
pos)
2008 if (fread(tmp, 1, b->
pos, file) != b->
pos)
2023 file = fopen(fname,
"w");
2028 if (fwrite(b->
p, 1, b->
pos, file) != b->
pos) {
2038 static void read_dump(
const char *fname,
unsigned int kernel)
2054 if (!(symname =
strchr(line,
'\t')))
2057 if (!(modname =
strchr(symname,
'\t')))
2060 if ((export =
strchr(modname,
'\t')) !=
NULL)
2062 if (export && ((end =
strchr(export,
'\t')) !=
NULL))
2064 crc = strtoul(line, &d, 16);
2065 if (*symname ==
'\0' || *modname ==
'\0' || *d !=
'\0')
2069 if (is_vmlinux(modname))
2071 mod = new_module(modname);
2074 s = sym_add_exported(symname, mod, export_no(export));
2077 sym_update_crc(symname, mod, crc, export_no(export));
2081 fatal(
"parse error in symbol dump file\n");
2088 static int dump_sym(
struct symbol *sym)
2090 if (!external_module)
2097 static void write_dump(
const char *fname)
2104 symbol = symbolhash[
n];
2106 if (dump_sym(symbol))
2107 buf_printf(&buf,
"0x%08x\t%s\t%s\t%s\n",
2110 export_str(symbol->
export));
2111 symbol = symbol->
next;
2114 write_if_changed(&buf, fname);
2133 while ((opt = getopt(argc, argv,
"i:I:e:cmsSo:awM:K:")) != -1) {
2136 kernel_read = optarg;
2139 module_read = optarg;
2140 external_module = 1;
2146 external_module = 1;
2149 extsym_iter->
next = extsym_start;
2150 extsym_iter->
file = optarg;
2151 extsym_start = extsym_iter;
2157 dump_write = optarg;
2163 vmlinux_section_warnings = 0;
2166 sec_mismatch_verbose = 0;
2169 warn_unresolved = 1;
2177 read_dump(kernel_read, 1);
2179 read_dump(module_read, 0);
2180 while (extsym_start) {
2181 read_dump(extsym_start->
file, 0);
2182 extsym_iter = extsym_start->
next;
2184 extsym_start = extsym_iter;
2187 while (optind < argc)
2188 read_symbols(argv[optind++]);
2190 for (mod = modules;
mod; mod = mod->
next) {
2198 for (mod = modules;
mod; mod = mod->
next) {
2206 add_header(&buf, mod);
2207 add_intree_flag(&buf, !external_module);
2208 add_staging_flag(&buf, mod->
name);
2209 err |= add_versions(&buf, mod);
2210 add_depends(&buf, mod, modules);
2212 add_srcversion(&buf, mod);
2215 write_if_changed(&buf, fname);
2219 write_dump(dump_write);
2220 if (sec_mismatch_count && !sec_mismatch_verbose)
2221 warn(
"modpost: Found %d section mismatch(es).\n"
2222 "To see full details build your kernel with:\n"
2223 "'make CONFIG_DEBUG_SECTION_MISMATCH=y'\n",
2224 sec_mismatch_count);