modpost.c 43 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710
  1. /* Postprocess module symbol versions
  2. *
  3. * Copyright 2003 Kai Germaschewski
  4. * Copyright 2002-2004 Rusty Russell, IBM Corporation
  5. * Copyright 2006 Sam Ravnborg
  6. * Based in part on module-init-tools/depmod.c,file2alias
  7. *
  8. * This software may be used and distributed according to the terms
  9. * of the GNU General Public License, incorporated herein by reference.
  10. *
  11. * Usage: modpost vmlinux module1.o module2.o ...
  12. */
  13. #include <ctype.h>
  14. #include "modpost.h"
  15. #include "../../include/linux/license.h"
  16. /* Are we using CONFIG_MODVERSIONS? */
  17. int modversions = 0;
  18. /* Warn about undefined symbols? (do so if we have vmlinux) */
  19. int have_vmlinux = 0;
  20. /* Is CONFIG_MODULE_SRCVERSION_ALL set? */
  21. static int all_versions = 0;
  22. /* If we are modposting external module set to 1 */
  23. static int external_module = 0;
  24. /* Only warn about unresolved symbols */
  25. static int warn_unresolved = 0;
  26. /* How a symbol is exported */
  27. enum export {
  28. export_plain, export_unused, export_gpl,
  29. export_unused_gpl, export_gpl_future, export_unknown
  30. };
  31. void fatal(const char *fmt, ...)
  32. {
  33. va_list arglist;
  34. fprintf(stderr, "FATAL: ");
  35. va_start(arglist, fmt);
  36. vfprintf(stderr, fmt, arglist);
  37. va_end(arglist);
  38. exit(1);
  39. }
  40. void warn(const char *fmt, ...)
  41. {
  42. va_list arglist;
  43. fprintf(stderr, "WARNING: ");
  44. va_start(arglist, fmt);
  45. vfprintf(stderr, fmt, arglist);
  46. va_end(arglist);
  47. }
  48. void merror(const char *fmt, ...)
  49. {
  50. va_list arglist;
  51. fprintf(stderr, "ERROR: ");
  52. va_start(arglist, fmt);
  53. vfprintf(stderr, fmt, arglist);
  54. va_end(arglist);
  55. }
  56. static int is_vmlinux(const char *modname)
  57. {
  58. const char *myname;
  59. if ((myname = strrchr(modname, '/')))
  60. myname++;
  61. else
  62. myname = modname;
  63. return strcmp(myname, "vmlinux") == 0;
  64. }
  65. void *do_nofail(void *ptr, const char *expr)
  66. {
  67. if (!ptr) {
  68. fatal("modpost: Memory allocation failure: %s.\n", expr);
  69. }
  70. return ptr;
  71. }
  72. /* A list of all modules we processed */
  73. static struct module *modules;
  74. static struct module *find_module(char *modname)
  75. {
  76. struct module *mod;
  77. for (mod = modules; mod; mod = mod->next)
  78. if (strcmp(mod->name, modname) == 0)
  79. break;
  80. return mod;
  81. }
  82. static struct module *new_module(char *modname)
  83. {
  84. struct module *mod;
  85. char *p, *s;
  86. mod = NOFAIL(malloc(sizeof(*mod)));
  87. memset(mod, 0, sizeof(*mod));
  88. p = NOFAIL(strdup(modname));
  89. /* strip trailing .o */
  90. if ((s = strrchr(p, '.')) != NULL)
  91. if (strcmp(s, ".o") == 0)
  92. *s = '\0';
  93. /* add to list */
  94. mod->name = p;
  95. mod->gpl_compatible = -1;
  96. mod->next = modules;
  97. modules = mod;
  98. return mod;
  99. }
  100. /* A hash of all exported symbols,
  101. * struct symbol is also used for lists of unresolved symbols */
  102. #define SYMBOL_HASH_SIZE 1024
  103. struct symbol {
  104. struct symbol *next;
  105. struct module *module;
  106. unsigned int crc;
  107. int crc_valid;
  108. unsigned int weak:1;
  109. unsigned int vmlinux:1; /* 1 if symbol is defined in vmlinux */
  110. unsigned int kernel:1; /* 1 if symbol is from kernel
  111. * (only for external modules) **/
  112. unsigned int preloaded:1; /* 1 if symbol from Module.symvers */
  113. enum export export; /* Type of export */
  114. char name[0];
  115. };
  116. static struct symbol *symbolhash[SYMBOL_HASH_SIZE];
  117. /* This is based on the hash agorithm from gdbm, via tdb */
  118. static inline unsigned int tdb_hash(const char *name)
  119. {
  120. unsigned value; /* Used to compute the hash value. */
  121. unsigned i; /* Used to cycle through random values. */
  122. /* Set the initial value from the key size. */
  123. for (value = 0x238F13AF * strlen(name), i=0; name[i]; i++)
  124. value = (value + (((unsigned char *)name)[i] << (i*5 % 24)));
  125. return (1103515243 * value + 12345);
  126. }
  127. /**
  128. * Allocate a new symbols for use in the hash of exported symbols or
  129. * the list of unresolved symbols per module
  130. **/
  131. static struct symbol *alloc_symbol(const char *name, unsigned int weak,
  132. struct symbol *next)
  133. {
  134. struct symbol *s = NOFAIL(malloc(sizeof(*s) + strlen(name) + 1));
  135. memset(s, 0, sizeof(*s));
  136. strcpy(s->name, name);
  137. s->weak = weak;
  138. s->next = next;
  139. return s;
  140. }
  141. /* For the hash of exported symbols */
  142. static struct symbol *new_symbol(const char *name, struct module *module,
  143. enum export export)
  144. {
  145. unsigned int hash;
  146. struct symbol *new;
  147. hash = tdb_hash(name) % SYMBOL_HASH_SIZE;
  148. new = symbolhash[hash] = alloc_symbol(name, 0, symbolhash[hash]);
  149. new->module = module;
  150. new->export = export;
  151. return new;
  152. }
  153. static struct symbol *find_symbol(const char *name)
  154. {
  155. struct symbol *s;
  156. /* For our purposes, .foo matches foo. PPC64 needs this. */
  157. if (name[0] == '.')
  158. name++;
  159. for (s = symbolhash[tdb_hash(name) % SYMBOL_HASH_SIZE]; s; s=s->next) {
  160. if (strcmp(s->name, name) == 0)
  161. return s;
  162. }
  163. return NULL;
  164. }
  165. static struct {
  166. const char *str;
  167. enum export export;
  168. } export_list[] = {
  169. { .str = "EXPORT_SYMBOL", .export = export_plain },
  170. { .str = "EXPORT_UNUSED_SYMBOL", .export = export_unused },
  171. { .str = "EXPORT_SYMBOL_GPL", .export = export_gpl },
  172. { .str = "EXPORT_UNUSED_SYMBOL_GPL", .export = export_unused_gpl },
  173. { .str = "EXPORT_SYMBOL_GPL_FUTURE", .export = export_gpl_future },
  174. { .str = "(unknown)", .export = export_unknown },
  175. };
  176. static const char *export_str(enum export ex)
  177. {
  178. return export_list[ex].str;
  179. }
  180. static enum export export_no(const char * s)
  181. {
  182. int i;
  183. if (!s)
  184. return export_unknown;
  185. for (i = 0; export_list[i].export != export_unknown; i++) {
  186. if (strcmp(export_list[i].str, s) == 0)
  187. return export_list[i].export;
  188. }
  189. return export_unknown;
  190. }
  191. static enum export export_from_sec(struct elf_info *elf, Elf_Section sec)
  192. {
  193. if (sec == elf->export_sec)
  194. return export_plain;
  195. else if (sec == elf->export_unused_sec)
  196. return export_unused;
  197. else if (sec == elf->export_gpl_sec)
  198. return export_gpl;
  199. else if (sec == elf->export_unused_gpl_sec)
  200. return export_unused_gpl;
  201. else if (sec == elf->export_gpl_future_sec)
  202. return export_gpl_future;
  203. else
  204. return export_unknown;
  205. }
  206. /**
  207. * Add an exported symbol - it may have already been added without a
  208. * CRC, in this case just update the CRC
  209. **/
  210. static struct symbol *sym_add_exported(const char *name, struct module *mod,
  211. enum export export)
  212. {
  213. struct symbol *s = find_symbol(name);
  214. if (!s) {
  215. s = new_symbol(name, mod, export);
  216. } else {
  217. if (!s->preloaded) {
  218. warn("%s: '%s' exported twice. Previous export "
  219. "was in %s%s\n", mod->name, name,
  220. s->module->name,
  221. is_vmlinux(s->module->name) ?"":".ko");
  222. }
  223. }
  224. s->preloaded = 0;
  225. s->vmlinux = is_vmlinux(mod->name);
  226. s->kernel = 0;
  227. s->export = export;
  228. return s;
  229. }
  230. static void sym_update_crc(const char *name, struct module *mod,
  231. unsigned int crc, enum export export)
  232. {
  233. struct symbol *s = find_symbol(name);
  234. if (!s)
  235. s = new_symbol(name, mod, export);
  236. s->crc = crc;
  237. s->crc_valid = 1;
  238. }
  239. void *grab_file(const char *filename, unsigned long *size)
  240. {
  241. struct stat st;
  242. void *map;
  243. int fd;
  244. fd = open(filename, O_RDONLY);
  245. if (fd < 0 || fstat(fd, &st) != 0)
  246. return NULL;
  247. *size = st.st_size;
  248. map = mmap(NULL, *size, PROT_READ|PROT_WRITE, MAP_PRIVATE, fd, 0);
  249. close(fd);
  250. if (map == MAP_FAILED)
  251. return NULL;
  252. return map;
  253. }
  254. /**
  255. * Return a copy of the next line in a mmap'ed file.
  256. * spaces in the beginning of the line is trimmed away.
  257. * Return a pointer to a static buffer.
  258. **/
  259. char* get_next_line(unsigned long *pos, void *file, unsigned long size)
  260. {
  261. static char line[4096];
  262. int skip = 1;
  263. size_t len = 0;
  264. signed char *p = (signed char *)file + *pos;
  265. char *s = line;
  266. for (; *pos < size ; (*pos)++)
  267. {
  268. if (skip && isspace(*p)) {
  269. p++;
  270. continue;
  271. }
  272. skip = 0;
  273. if (*p != '\n' && (*pos < size)) {
  274. len++;
  275. *s++ = *p++;
  276. if (len > 4095)
  277. break; /* Too long, stop */
  278. } else {
  279. /* End of string */
  280. *s = '\0';
  281. return line;
  282. }
  283. }
  284. /* End of buffer */
  285. return NULL;
  286. }
  287. void release_file(void *file, unsigned long size)
  288. {
  289. munmap(file, size);
  290. }
  291. static int parse_elf(struct elf_info *info, const char *filename)
  292. {
  293. unsigned int i;
  294. Elf_Ehdr *hdr;
  295. Elf_Shdr *sechdrs;
  296. Elf_Sym *sym;
  297. hdr = grab_file(filename, &info->size);
  298. if (!hdr) {
  299. perror(filename);
  300. exit(1);
  301. }
  302. info->hdr = hdr;
  303. if (info->size < sizeof(*hdr)) {
  304. /* file too small, assume this is an empty .o file */
  305. return 0;
  306. }
  307. /* Is this a valid ELF file? */
  308. if ((hdr->e_ident[EI_MAG0] != ELFMAG0) ||
  309. (hdr->e_ident[EI_MAG1] != ELFMAG1) ||
  310. (hdr->e_ident[EI_MAG2] != ELFMAG2) ||
  311. (hdr->e_ident[EI_MAG3] != ELFMAG3)) {
  312. /* Not an ELF file - silently ignore it */
  313. return 0;
  314. }
  315. /* Fix endianness in ELF header */
  316. hdr->e_shoff = TO_NATIVE(hdr->e_shoff);
  317. hdr->e_shstrndx = TO_NATIVE(hdr->e_shstrndx);
  318. hdr->e_shnum = TO_NATIVE(hdr->e_shnum);
  319. hdr->e_machine = TO_NATIVE(hdr->e_machine);
  320. sechdrs = (void *)hdr + hdr->e_shoff;
  321. info->sechdrs = sechdrs;
  322. /* Fix endianness in section headers */
  323. for (i = 0; i < hdr->e_shnum; i++) {
  324. sechdrs[i].sh_type = TO_NATIVE(sechdrs[i].sh_type);
  325. sechdrs[i].sh_offset = TO_NATIVE(sechdrs[i].sh_offset);
  326. sechdrs[i].sh_size = TO_NATIVE(sechdrs[i].sh_size);
  327. sechdrs[i].sh_link = TO_NATIVE(sechdrs[i].sh_link);
  328. sechdrs[i].sh_name = TO_NATIVE(sechdrs[i].sh_name);
  329. sechdrs[i].sh_info = TO_NATIVE(sechdrs[i].sh_info);
  330. }
  331. /* Find symbol table. */
  332. for (i = 1; i < hdr->e_shnum; i++) {
  333. const char *secstrings
  334. = (void *)hdr + sechdrs[hdr->e_shstrndx].sh_offset;
  335. const char *secname;
  336. if (sechdrs[i].sh_offset > info->size) {
  337. fatal("%s is truncated. sechdrs[i].sh_offset=%u > sizeof(*hrd)=%ul\n", filename, (unsigned int)sechdrs[i].sh_offset, sizeof(*hdr));
  338. return 0;
  339. }
  340. secname = secstrings + sechdrs[i].sh_name;
  341. if (strcmp(secname, ".modinfo") == 0) {
  342. info->modinfo = (void *)hdr + sechdrs[i].sh_offset;
  343. info->modinfo_len = sechdrs[i].sh_size;
  344. } else if (strcmp(secname, "__ksymtab") == 0)
  345. info->export_sec = i;
  346. else if (strcmp(secname, "__ksymtab_unused") == 0)
  347. info->export_unused_sec = i;
  348. else if (strcmp(secname, "__ksymtab_gpl") == 0)
  349. info->export_gpl_sec = i;
  350. else if (strcmp(secname, "__ksymtab_unused_gpl") == 0)
  351. info->export_unused_gpl_sec = i;
  352. else if (strcmp(secname, "__ksymtab_gpl_future") == 0)
  353. info->export_gpl_future_sec = i;
  354. if (sechdrs[i].sh_type != SHT_SYMTAB)
  355. continue;
  356. info->symtab_start = (void *)hdr + sechdrs[i].sh_offset;
  357. info->symtab_stop = (void *)hdr + sechdrs[i].sh_offset
  358. + sechdrs[i].sh_size;
  359. info->strtab = (void *)hdr +
  360. sechdrs[sechdrs[i].sh_link].sh_offset;
  361. }
  362. if (!info->symtab_start) {
  363. fatal("%s has no symtab?\n", filename);
  364. }
  365. /* Fix endianness in symbols */
  366. for (sym = info->symtab_start; sym < info->symtab_stop; sym++) {
  367. sym->st_shndx = TO_NATIVE(sym->st_shndx);
  368. sym->st_name = TO_NATIVE(sym->st_name);
  369. sym->st_value = TO_NATIVE(sym->st_value);
  370. sym->st_size = TO_NATIVE(sym->st_size);
  371. }
  372. return 1;
  373. }
  374. static void parse_elf_finish(struct elf_info *info)
  375. {
  376. release_file(info->hdr, info->size);
  377. }
  378. #define CRC_PFX MODULE_SYMBOL_PREFIX "__crc_"
  379. #define KSYMTAB_PFX MODULE_SYMBOL_PREFIX "__ksymtab_"
  380. static void handle_modversions(struct module *mod, struct elf_info *info,
  381. Elf_Sym *sym, const char *symname)
  382. {
  383. unsigned int crc;
  384. enum export export = export_from_sec(info, sym->st_shndx);
  385. switch (sym->st_shndx) {
  386. case SHN_COMMON:
  387. warn("\"%s\" [%s] is COMMON symbol\n", symname, mod->name);
  388. break;
  389. case SHN_ABS:
  390. /* CRC'd symbol */
  391. if (memcmp(symname, CRC_PFX, strlen(CRC_PFX)) == 0) {
  392. crc = (unsigned int) sym->st_value;
  393. sym_update_crc(symname + strlen(CRC_PFX), mod, crc,
  394. export);
  395. }
  396. break;
  397. case SHN_UNDEF:
  398. /* undefined symbol */
  399. if (ELF_ST_BIND(sym->st_info) != STB_GLOBAL &&
  400. ELF_ST_BIND(sym->st_info) != STB_WEAK)
  401. break;
  402. /* ignore global offset table */
  403. if (strcmp(symname, "_GLOBAL_OFFSET_TABLE_") == 0)
  404. break;
  405. /* ignore __this_module, it will be resolved shortly */
  406. if (strcmp(symname, MODULE_SYMBOL_PREFIX "__this_module") == 0)
  407. break;
  408. /* cope with newer glibc (2.3.4 or higher) STT_ definition in elf.h */
  409. #if defined(STT_REGISTER) || defined(STT_SPARC_REGISTER)
  410. /* add compatibility with older glibc */
  411. #ifndef STT_SPARC_REGISTER
  412. #define STT_SPARC_REGISTER STT_REGISTER
  413. #endif
  414. if (info->hdr->e_machine == EM_SPARC ||
  415. info->hdr->e_machine == EM_SPARCV9) {
  416. /* Ignore register directives. */
  417. if (ELF_ST_TYPE(sym->st_info) == STT_SPARC_REGISTER)
  418. break;
  419. if (symname[0] == '.') {
  420. char *munged = strdup(symname);
  421. munged[0] = '_';
  422. munged[1] = toupper(munged[1]);
  423. symname = munged;
  424. }
  425. }
  426. #endif
  427. if (memcmp(symname, MODULE_SYMBOL_PREFIX,
  428. strlen(MODULE_SYMBOL_PREFIX)) == 0)
  429. mod->unres = alloc_symbol(symname +
  430. strlen(MODULE_SYMBOL_PREFIX),
  431. ELF_ST_BIND(sym->st_info) == STB_WEAK,
  432. mod->unres);
  433. break;
  434. default:
  435. /* All exported symbols */
  436. if (memcmp(symname, KSYMTAB_PFX, strlen(KSYMTAB_PFX)) == 0) {
  437. sym_add_exported(symname + strlen(KSYMTAB_PFX), mod,
  438. export);
  439. }
  440. if (strcmp(symname, MODULE_SYMBOL_PREFIX "init_module") == 0)
  441. mod->has_init = 1;
  442. if (strcmp(symname, MODULE_SYMBOL_PREFIX "cleanup_module") == 0)
  443. mod->has_cleanup = 1;
  444. break;
  445. }
  446. }
  447. /**
  448. * Parse tag=value strings from .modinfo section
  449. **/
  450. static char *next_string(char *string, unsigned long *secsize)
  451. {
  452. /* Skip non-zero chars */
  453. while (string[0]) {
  454. string++;
  455. if ((*secsize)-- <= 1)
  456. return NULL;
  457. }
  458. /* Skip any zero padding. */
  459. while (!string[0]) {
  460. string++;
  461. if ((*secsize)-- <= 1)
  462. return NULL;
  463. }
  464. return string;
  465. }
  466. static char *get_next_modinfo(void *modinfo, unsigned long modinfo_len,
  467. const char *tag, char *info)
  468. {
  469. char *p;
  470. unsigned int taglen = strlen(tag);
  471. unsigned long size = modinfo_len;
  472. if (info) {
  473. size -= info - (char *)modinfo;
  474. modinfo = next_string(info, &size);
  475. }
  476. for (p = modinfo; p; p = next_string(p, &size)) {
  477. if (strncmp(p, tag, taglen) == 0 && p[taglen] == '=')
  478. return p + taglen + 1;
  479. }
  480. return NULL;
  481. }
  482. static char *get_modinfo(void *modinfo, unsigned long modinfo_len,
  483. const char *tag)
  484. {
  485. return get_next_modinfo(modinfo, modinfo_len, tag, NULL);
  486. }
  487. /**
  488. * Test if string s ends in string sub
  489. * return 0 if match
  490. **/
  491. static int strrcmp(const char *s, const char *sub)
  492. {
  493. int slen, sublen;
  494. if (!s || !sub)
  495. return 1;
  496. slen = strlen(s);
  497. sublen = strlen(sub);
  498. if ((slen == 0) || (sublen == 0))
  499. return 1;
  500. if (sublen > slen)
  501. return 1;
  502. return memcmp(s + slen - sublen, sub, sublen);
  503. }
  504. /**
  505. * Whitelist to allow certain references to pass with no warning.
  506. *
  507. * Pattern 0:
  508. * Do not warn if funtion/data are marked with __init_refok/__initdata_refok.
  509. * The pattern is identified by:
  510. * fromsec = .text.init.refok | .data.init.refok
  511. *
  512. * Pattern 1:
  513. * If a module parameter is declared __initdata and permissions=0
  514. * then this is legal despite the warning generated.
  515. * We cannot see value of permissions here, so just ignore
  516. * this pattern.
  517. * The pattern is identified by:
  518. * tosec = .init.data
  519. * fromsec = .data*
  520. * atsym =__param*
  521. *
  522. * Pattern 2:
  523. * Many drivers utilise a *driver container with references to
  524. * add, remove, probe functions etc.
  525. * These functions may often be marked __init and we do not want to
  526. * warn here.
  527. * the pattern is identified by:
  528. * tosec = .init.text | .exit.text | .init.data
  529. * fromsec = .data
  530. * atsym = *driver, *_template, *_sht, *_ops, *_probe, *probe_one, *_console
  531. *
  532. * Pattern 3:
  533. * Whitelist all references from .pci_fixup* section to .init.text
  534. * This is part of the PCI init when built-in
  535. *
  536. * Pattern 4:
  537. * Whitelist all refereces from .text.head to .init.data
  538. * Whitelist all refereces from .text.head to .init.text
  539. *
  540. * Pattern 5:
  541. * Some symbols belong to init section but still it is ok to reference
  542. * these from non-init sections as these symbols don't have any memory
  543. * allocated for them and symbol address and value are same. So even
  544. * if init section is freed, its ok to reference those symbols.
  545. * For ex. symbols marking the init section boundaries.
  546. * This pattern is identified by
  547. * refsymname = __init_begin, _sinittext, _einittext
  548. *
  549. * Pattern 7:
  550. * Logos used in drivers/video/logo reside in __initdata but the
  551. * funtion that references them are EXPORT_SYMBOL() so cannot be
  552. * marker __init. So we whitelist them here.
  553. * The pattern is:
  554. * tosec = .init.data
  555. * fromsec = .text*
  556. * refsymname = logo_
  557. *
  558. * Pattern 8:
  559. * Symbols contained in .paravirtprobe may safely reference .init.text.
  560. * The pattern is:
  561. * tosec = .init.text
  562. * fromsec = .paravirtprobe
  563. *
  564. * Pattern 10:
  565. * ia64 has machvec table for each platform and
  566. * powerpc has a machine desc table for each platform.
  567. * It is mixture of function pointers of .init.text and .text.
  568. * fromsec = .machvec | .machine.desc
  569. **/
  570. static int secref_whitelist(const char *modname, const char *tosec,
  571. const char *fromsec, const char *atsym,
  572. const char *refsymname)
  573. {
  574. int f1 = 1, f2 = 1;
  575. const char **s;
  576. const char *pat2sym[] = {
  577. "driver",
  578. "_template", /* scsi uses *_template a lot */
  579. "_sht", /* scsi also used *_sht to some extent */
  580. "_ops",
  581. "_probe",
  582. "_probe_one",
  583. "_console",
  584. "apic_es7000",
  585. NULL
  586. };
  587. const char *pat3refsym[] = {
  588. "__init_begin",
  589. "_sinittext",
  590. "_einittext",
  591. NULL
  592. };
  593. /* Check for pattern 0 */
  594. if ((strcmp(fromsec, ".text.init.refok") == 0) ||
  595. (strcmp(fromsec, ".data.init.refok") == 0))
  596. return 1;
  597. /* Check for pattern 1 */
  598. if (strcmp(tosec, ".init.data") != 0)
  599. f1 = 0;
  600. if (strncmp(fromsec, ".data", strlen(".data")) != 0)
  601. f1 = 0;
  602. if (strncmp(atsym, "__param", strlen("__param")) != 0)
  603. f1 = 0;
  604. if (f1)
  605. return f1;
  606. /* Check for pattern 2 */
  607. if ((strcmp(tosec, ".init.text") != 0) &&
  608. (strcmp(tosec, ".exit.text") != 0) &&
  609. (strcmp(tosec, ".init.data") != 0))
  610. f2 = 0;
  611. if (strcmp(fromsec, ".data") != 0)
  612. f2 = 0;
  613. for (s = pat2sym; *s; s++)
  614. if (strrcmp(atsym, *s) == 0)
  615. f1 = 1;
  616. if (f1 && f2)
  617. return 1;
  618. /* Check for pattern 3 */
  619. if ((strncmp(fromsec, ".pci_fixup", strlen(".pci_fixup")) == 0) &&
  620. (strcmp(tosec, ".init.text") == 0))
  621. return 1;
  622. /* Check for pattern 4 */
  623. if ((strcmp(fromsec, ".text.head") == 0) &&
  624. ((strcmp(tosec, ".init.data") == 0) ||
  625. (strcmp(tosec, ".init.text") == 0)))
  626. return 1;
  627. /* Check for pattern 5 */
  628. for (s = pat3refsym; *s; s++)
  629. if (strcmp(refsymname, *s) == 0)
  630. return 1;
  631. /* Check for pattern 7 */
  632. if ((strcmp(tosec, ".init.data") == 0) &&
  633. (strncmp(fromsec, ".text", strlen(".text")) == 0) &&
  634. (strncmp(refsymname, "logo_", strlen("logo_")) == 0))
  635. return 1;
  636. /* Check for pattern 8 */
  637. if ((strcmp(tosec, ".init.text") == 0) &&
  638. (strcmp(fromsec, ".paravirtprobe") == 0))
  639. return 1;
  640. /* Check for pattern 10 */
  641. if ((strcmp(fromsec, ".machvec") == 0) ||
  642. (strcmp(fromsec, ".machine.desc") == 0))
  643. return 1;
  644. return 0;
  645. }
  646. /**
  647. * Find symbol based on relocation record info.
  648. * In some cases the symbol supplied is a valid symbol so
  649. * return refsym. If st_name != 0 we assume this is a valid symbol.
  650. * In other cases the symbol needs to be looked up in the symbol table
  651. * based on section and address.
  652. * **/
  653. static Elf_Sym *find_elf_symbol(struct elf_info *elf, Elf_Addr addr,
  654. Elf_Sym *relsym)
  655. {
  656. Elf_Sym *sym;
  657. if (relsym->st_name != 0)
  658. return relsym;
  659. for (sym = elf->symtab_start; sym < elf->symtab_stop; sym++) {
  660. if (sym->st_shndx != relsym->st_shndx)
  661. continue;
  662. if (ELF_ST_TYPE(sym->st_info) == STT_SECTION)
  663. continue;
  664. if (sym->st_value == addr)
  665. return sym;
  666. }
  667. return NULL;
  668. }
  669. static inline int is_arm_mapping_symbol(const char *str)
  670. {
  671. return str[0] == '$' && strchr("atd", str[1])
  672. && (str[2] == '\0' || str[2] == '.');
  673. }
  674. /*
  675. * If there's no name there, ignore it; likewise, ignore it if it's
  676. * one of the magic symbols emitted used by current ARM tools.
  677. *
  678. * Otherwise if find_symbols_between() returns those symbols, they'll
  679. * fail the whitelist tests and cause lots of false alarms ... fixable
  680. * only by merging __exit and __init sections into __text, bloating
  681. * the kernel (which is especially evil on embedded platforms).
  682. */
  683. static inline int is_valid_name(struct elf_info *elf, Elf_Sym *sym)
  684. {
  685. const char *name = elf->strtab + sym->st_name;
  686. if (!name || !strlen(name))
  687. return 0;
  688. return !is_arm_mapping_symbol(name);
  689. }
  690. /*
  691. * Find symbols before or equal addr and after addr - in the section sec.
  692. * If we find two symbols with equal offset prefer one with a valid name.
  693. * The ELF format may have a better way to detect what type of symbol
  694. * it is, but this works for now.
  695. **/
  696. static void find_symbols_between(struct elf_info *elf, Elf_Addr addr,
  697. const char *sec,
  698. Elf_Sym **before, Elf_Sym **after)
  699. {
  700. Elf_Sym *sym;
  701. Elf_Ehdr *hdr = elf->hdr;
  702. Elf_Addr beforediff = ~0;
  703. Elf_Addr afterdiff = ~0;
  704. const char *secstrings = (void *)hdr +
  705. elf->sechdrs[hdr->e_shstrndx].sh_offset;
  706. *before = NULL;
  707. *after = NULL;
  708. for (sym = elf->symtab_start; sym < elf->symtab_stop; sym++) {
  709. const char *symsec;
  710. if (sym->st_shndx >= SHN_LORESERVE)
  711. continue;
  712. symsec = secstrings + elf->sechdrs[sym->st_shndx].sh_name;
  713. if (strcmp(symsec, sec) != 0)
  714. continue;
  715. if (!is_valid_name(elf, sym))
  716. continue;
  717. if (sym->st_value <= addr) {
  718. if ((addr - sym->st_value) < beforediff) {
  719. beforediff = addr - sym->st_value;
  720. *before = sym;
  721. }
  722. else if ((addr - sym->st_value) == beforediff) {
  723. *before = sym;
  724. }
  725. }
  726. else
  727. {
  728. if ((sym->st_value - addr) < afterdiff) {
  729. afterdiff = sym->st_value - addr;
  730. *after = sym;
  731. }
  732. else if ((sym->st_value - addr) == afterdiff) {
  733. *after = sym;
  734. }
  735. }
  736. }
  737. }
  738. /**
  739. * Print a warning about a section mismatch.
  740. * Try to find symbols near it so user can find it.
  741. * Check whitelist before warning - it may be a false positive.
  742. **/
  743. static void warn_sec_mismatch(const char *modname, const char *fromsec,
  744. struct elf_info *elf, Elf_Sym *sym, Elf_Rela r)
  745. {
  746. const char *refsymname = "";
  747. Elf_Sym *before, *after;
  748. Elf_Sym *refsym;
  749. Elf_Ehdr *hdr = elf->hdr;
  750. Elf_Shdr *sechdrs = elf->sechdrs;
  751. const char *secstrings = (void *)hdr +
  752. sechdrs[hdr->e_shstrndx].sh_offset;
  753. const char *secname = secstrings + sechdrs[sym->st_shndx].sh_name;
  754. find_symbols_between(elf, r.r_offset, fromsec, &before, &after);
  755. refsym = find_elf_symbol(elf, r.r_addend, sym);
  756. if (refsym && strlen(elf->strtab + refsym->st_name))
  757. refsymname = elf->strtab + refsym->st_name;
  758. /* check whitelist - we may ignore it */
  759. if (before &&
  760. secref_whitelist(modname, secname, fromsec,
  761. elf->strtab + before->st_name, refsymname))
  762. return;
  763. /* fromsec whitelist - without a valid 'before'
  764. * powerpc has a GOT table in .got2 section */
  765. if (strcmp(fromsec, ".got2") == 0)
  766. return;
  767. if (before && after) {
  768. warn("%s(%s+0x%llx): Section mismatch: reference to %s:%s "
  769. "(between '%s' and '%s')\n",
  770. modname, fromsec, (unsigned long long)r.r_offset,
  771. secname, refsymname,
  772. elf->strtab + before->st_name,
  773. elf->strtab + after->st_name);
  774. } else if (before) {
  775. warn("%s(%s+0x%llx): Section mismatch: reference to %s:%s "
  776. "(after '%s')\n",
  777. modname, fromsec, (unsigned long long)r.r_offset,
  778. secname, refsymname,
  779. elf->strtab + before->st_name);
  780. } else if (after) {
  781. warn("%s(%s+0x%llx): Section mismatch: reference to %s:%s "
  782. "before '%s' (at offset -0x%llx)\n",
  783. modname, fromsec, (unsigned long long)r.r_offset,
  784. secname, refsymname,
  785. elf->strtab + after->st_name);
  786. } else {
  787. warn("%s(%s+0x%llx): Section mismatch: reference to %s:%s\n",
  788. modname, fromsec, (unsigned long long)r.r_offset,
  789. secname, refsymname);
  790. }
  791. }
  792. static void addend_386_rel(struct elf_info *elf, int section, Elf_Rela *r)
  793. {
  794. Elf_Shdr *sechdrs = elf->sechdrs;
  795. unsigned int r_typ;
  796. unsigned int *location;
  797. r_typ = ELF_R_TYPE(r->r_info);
  798. location = (void *)elf->hdr +
  799. sechdrs[sechdrs[section].sh_info].sh_offset + r->r_offset;
  800. switch (r_typ) {
  801. case R_386_32:
  802. r->r_addend = TO_NATIVE(*location);
  803. break;
  804. case R_386_PC32:
  805. r->r_addend = TO_NATIVE(*location) + 4;
  806. break;
  807. }
  808. }
  809. static void addend_arm_rel(struct elf_info *elf, int section, Elf_Rela *r)
  810. {
  811. Elf_Shdr *sechdrs = elf->sechdrs;
  812. unsigned int r_typ;
  813. unsigned int *location;
  814. r_typ = ELF_R_TYPE(r->r_info);
  815. location = (void *)elf->hdr +
  816. sechdrs[sechdrs[section].sh_info].sh_offset + r->r_offset;
  817. switch (r_typ) {
  818. case R_ARM_ABS32:
  819. r->r_addend = TO_NATIVE(*location);
  820. break;
  821. case R_ARM_PC24:
  822. r->r_addend = ((TO_NATIVE(*location) & 0x00ffffff) << 2) + 8;
  823. break;
  824. }
  825. }
  826. static int addend_mips_rel(struct elf_info *elf, int section, Elf_Rela *r)
  827. {
  828. Elf_Shdr *sechdrs = elf->sechdrs;
  829. unsigned int r_typ;
  830. unsigned int *location;
  831. unsigned int inst;
  832. r_typ = ELF_R_TYPE(r->r_info);
  833. if (r_typ == R_MIPS_HI16)
  834. return 1; /* skip this */
  835. location = (void *)elf->hdr +
  836. sechdrs[sechdrs[section].sh_info].sh_offset + r->r_offset;
  837. inst = TO_NATIVE(*location);
  838. switch (r_typ) {
  839. case R_MIPS_LO16:
  840. r->r_addend = ((inst & 0xffff) ^ 0x8000) - 0x8000;
  841. break;
  842. case R_MIPS_26:
  843. r->r_addend = (inst & 0x03ffffff) << 2;
  844. break;
  845. }
  846. return 0;
  847. }
  848. /**
  849. * A module includes a number of sections that are discarded
  850. * either when loaded or when used as built-in.
  851. * For loaded modules all functions marked __init and all data
  852. * marked __initdata will be discarded when the module has been intialized.
  853. * Likewise for modules used built-in the sections marked __exit
  854. * are discarded because __exit marked function are supposed to be called
  855. * only when a moduel is unloaded which never happes for built-in modules.
  856. * The check_sec_ref() function traverses all relocation records
  857. * to find all references to a section that reference a section that will
  858. * be discarded and warns about it.
  859. **/
  860. static void check_sec_ref(struct module *mod, const char *modname,
  861. struct elf_info *elf,
  862. int section(const char*),
  863. int section_ref_ok(const char *))
  864. {
  865. int i;
  866. Elf_Sym *sym;
  867. Elf_Ehdr *hdr = elf->hdr;
  868. Elf_Shdr *sechdrs = elf->sechdrs;
  869. const char *secstrings = (void *)hdr +
  870. sechdrs[hdr->e_shstrndx].sh_offset;
  871. /* Walk through all sections */
  872. for (i = 0; i < hdr->e_shnum; i++) {
  873. const char *name = secstrings + sechdrs[i].sh_name;
  874. const char *secname;
  875. Elf_Rela r;
  876. unsigned int r_sym;
  877. /* We want to process only relocation sections and not .init */
  878. if (sechdrs[i].sh_type == SHT_RELA) {
  879. Elf_Rela *rela;
  880. Elf_Rela *start = (void *)hdr + sechdrs[i].sh_offset;
  881. Elf_Rela *stop = (void*)start + sechdrs[i].sh_size;
  882. name += strlen(".rela");
  883. if (section_ref_ok(name))
  884. continue;
  885. for (rela = start; rela < stop; rela++) {
  886. r.r_offset = TO_NATIVE(rela->r_offset);
  887. #if KERNEL_ELFCLASS == ELFCLASS64
  888. if (hdr->e_machine == EM_MIPS) {
  889. unsigned int r_typ;
  890. r_sym = ELF64_MIPS_R_SYM(rela->r_info);
  891. r_sym = TO_NATIVE(r_sym);
  892. r_typ = ELF64_MIPS_R_TYPE(rela->r_info);
  893. r.r_info = ELF64_R_INFO(r_sym, r_typ);
  894. } else {
  895. r.r_info = TO_NATIVE(rela->r_info);
  896. r_sym = ELF_R_SYM(r.r_info);
  897. }
  898. #else
  899. r.r_info = TO_NATIVE(rela->r_info);
  900. r_sym = ELF_R_SYM(r.r_info);
  901. #endif
  902. r.r_addend = TO_NATIVE(rela->r_addend);
  903. sym = elf->symtab_start + r_sym;
  904. /* Skip special sections */
  905. if (sym->st_shndx >= SHN_LORESERVE)
  906. continue;
  907. secname = secstrings +
  908. sechdrs[sym->st_shndx].sh_name;
  909. if (section(secname))
  910. warn_sec_mismatch(modname, name,
  911. elf, sym, r);
  912. }
  913. } else if (sechdrs[i].sh_type == SHT_REL) {
  914. Elf_Rel *rel;
  915. Elf_Rel *start = (void *)hdr + sechdrs[i].sh_offset;
  916. Elf_Rel *stop = (void*)start + sechdrs[i].sh_size;
  917. name += strlen(".rel");
  918. if (section_ref_ok(name))
  919. continue;
  920. for (rel = start; rel < stop; rel++) {
  921. r.r_offset = TO_NATIVE(rel->r_offset);
  922. #if KERNEL_ELFCLASS == ELFCLASS64
  923. if (hdr->e_machine == EM_MIPS) {
  924. unsigned int r_typ;
  925. r_sym = ELF64_MIPS_R_SYM(rel->r_info);
  926. r_sym = TO_NATIVE(r_sym);
  927. r_typ = ELF64_MIPS_R_TYPE(rel->r_info);
  928. r.r_info = ELF64_R_INFO(r_sym, r_typ);
  929. } else {
  930. r.r_info = TO_NATIVE(rel->r_info);
  931. r_sym = ELF_R_SYM(r.r_info);
  932. }
  933. #else
  934. r.r_info = TO_NATIVE(rel->r_info);
  935. r_sym = ELF_R_SYM(r.r_info);
  936. #endif
  937. r.r_addend = 0;
  938. if (hdr->e_machine == EM_386)
  939. addend_386_rel(elf, i, &r);
  940. else if (hdr->e_machine == EM_ARM)
  941. addend_arm_rel(elf, i, &r);
  942. else if (hdr->e_machine == EM_MIPS) {
  943. if (addend_mips_rel(elf, i, &r))
  944. continue;
  945. }
  946. sym = elf->symtab_start + r_sym;
  947. /* Skip special sections */
  948. if (sym->st_shndx >= SHN_LORESERVE)
  949. continue;
  950. secname = secstrings +
  951. sechdrs[sym->st_shndx].sh_name;
  952. if (section(secname))
  953. warn_sec_mismatch(modname, name,
  954. elf, sym, r);
  955. }
  956. }
  957. }
  958. }
  959. /**
  960. * Functions used only during module init is marked __init and is stored in
  961. * a .init.text section. Likewise data is marked __initdata and stored in
  962. * a .init.data section.
  963. * If this section is one of these sections return 1
  964. * See include/linux/init.h for the details
  965. **/
  966. static int init_section(const char *name)
  967. {
  968. if (strcmp(name, ".init") == 0)
  969. return 1;
  970. if (strncmp(name, ".init.", strlen(".init.")) == 0)
  971. return 1;
  972. return 0;
  973. }
  974. /**
  975. * Identify sections from which references to a .init section is OK.
  976. *
  977. * Unfortunately references to read only data that referenced .init
  978. * sections had to be excluded. Almost all of these are false
  979. * positives, they are created by gcc. The downside of excluding rodata
  980. * is that there really are some user references from rodata to
  981. * init code, e.g. drivers/video/vgacon.c:
  982. *
  983. * const struct consw vga_con = {
  984. * con_startup: vgacon_startup,
  985. *
  986. * where vgacon_startup is __init. If you want to wade through the false
  987. * positives, take out the check for rodata.
  988. **/
  989. static int init_section_ref_ok(const char *name)
  990. {
  991. const char **s;
  992. /* Absolute section names */
  993. const char *namelist1[] = {
  994. ".init",
  995. ".opd", /* see comment [OPD] at exit_section_ref_ok() */
  996. ".toc1", /* used by ppc64 */
  997. ".stab",
  998. ".data.rel.ro", /* used by parisc64 */
  999. ".parainstructions",
  1000. ".text.lock",
  1001. "__bug_table", /* used by powerpc for BUG() */
  1002. ".pci_fixup_header",
  1003. ".pci_fixup_final",
  1004. ".pdr",
  1005. "__param",
  1006. "__ex_table",
  1007. ".fixup",
  1008. ".smp_locks",
  1009. ".plt", /* seen on ARCH=um build on x86_64. Harmless */
  1010. "__ftr_fixup", /* powerpc cpu feature fixup */
  1011. "__fw_ftr_fixup", /* powerpc firmware feature fixup */
  1012. NULL
  1013. };
  1014. /* Start of section names */
  1015. const char *namelist2[] = {
  1016. ".init.",
  1017. ".altinstructions",
  1018. ".eh_frame",
  1019. ".debug",
  1020. ".parainstructions",
  1021. ".rodata",
  1022. NULL
  1023. };
  1024. /* part of section name */
  1025. const char *namelist3 [] = {
  1026. ".unwind", /* sample: IA_64.unwind.init.text */
  1027. NULL
  1028. };
  1029. for (s = namelist1; *s; s++)
  1030. if (strcmp(*s, name) == 0)
  1031. return 1;
  1032. for (s = namelist2; *s; s++)
  1033. if (strncmp(*s, name, strlen(*s)) == 0)
  1034. return 1;
  1035. for (s = namelist3; *s; s++)
  1036. if (strstr(name, *s) != NULL)
  1037. return 1;
  1038. if (strrcmp(name, ".init") == 0)
  1039. return 1;
  1040. return 0;
  1041. }
  1042. /*
  1043. * Functions used only during module exit is marked __exit and is stored in
  1044. * a .exit.text section. Likewise data is marked __exitdata and stored in
  1045. * a .exit.data section.
  1046. * If this section is one of these sections return 1
  1047. * See include/linux/init.h for the details
  1048. **/
  1049. static int exit_section(const char *name)
  1050. {
  1051. if (strcmp(name, ".exit.text") == 0)
  1052. return 1;
  1053. if (strcmp(name, ".exit.data") == 0)
  1054. return 1;
  1055. return 0;
  1056. }
  1057. /*
  1058. * Identify sections from which references to a .exit section is OK.
  1059. *
  1060. * [OPD] Keith Ownes <kaos@sgi.com> commented:
  1061. * For our future {in}sanity, add a comment that this is the ppc .opd
  1062. * section, not the ia64 .opd section.
  1063. * ia64 .opd should not point to discarded sections.
  1064. * [.rodata] like for .init.text we ignore .rodata references -same reason
  1065. **/
  1066. static int exit_section_ref_ok(const char *name)
  1067. {
  1068. const char **s;
  1069. /* Absolute section names */
  1070. const char *namelist1[] = {
  1071. ".exit.text",
  1072. ".exit.data",
  1073. ".init.text",
  1074. ".rodata",
  1075. ".opd", /* See comment [OPD] */
  1076. ".toc1", /* used by ppc64 */
  1077. ".altinstructions",
  1078. ".pdr",
  1079. "__bug_table", /* used by powerpc for BUG() */
  1080. ".exitcall.exit",
  1081. ".eh_frame",
  1082. ".parainstructions",
  1083. ".stab",
  1084. "__ex_table",
  1085. ".fixup",
  1086. ".smp_locks",
  1087. ".plt", /* seen on ARCH=um build on x86_64. Harmless */
  1088. NULL
  1089. };
  1090. /* Start of section names */
  1091. const char *namelist2[] = {
  1092. ".debug",
  1093. NULL
  1094. };
  1095. /* part of section name */
  1096. const char *namelist3 [] = {
  1097. ".unwind", /* Sample: IA_64.unwind.exit.text */
  1098. NULL
  1099. };
  1100. for (s = namelist1; *s; s++)
  1101. if (strcmp(*s, name) == 0)
  1102. return 1;
  1103. for (s = namelist2; *s; s++)
  1104. if (strncmp(*s, name, strlen(*s)) == 0)
  1105. return 1;
  1106. for (s = namelist3; *s; s++)
  1107. if (strstr(name, *s) != NULL)
  1108. return 1;
  1109. return 0;
  1110. }
  1111. static void read_symbols(char *modname)
  1112. {
  1113. const char *symname;
  1114. char *version;
  1115. char *license;
  1116. struct module *mod;
  1117. struct elf_info info = { };
  1118. Elf_Sym *sym;
  1119. if (!parse_elf(&info, modname))
  1120. return;
  1121. mod = new_module(modname);
  1122. /* When there's no vmlinux, don't print warnings about
  1123. * unresolved symbols (since there'll be too many ;) */
  1124. if (is_vmlinux(modname)) {
  1125. have_vmlinux = 1;
  1126. mod->skip = 1;
  1127. }
  1128. license = get_modinfo(info.modinfo, info.modinfo_len, "license");
  1129. while (license) {
  1130. if (license_is_gpl_compatible(license))
  1131. mod->gpl_compatible = 1;
  1132. else {
  1133. mod->gpl_compatible = 0;
  1134. break;
  1135. }
  1136. license = get_next_modinfo(info.modinfo, info.modinfo_len,
  1137. "license", license);
  1138. }
  1139. for (sym = info.symtab_start; sym < info.symtab_stop; sym++) {
  1140. symname = info.strtab + sym->st_name;
  1141. handle_modversions(mod, &info, sym, symname);
  1142. handle_moddevtable(mod, &info, sym, symname);
  1143. }
  1144. check_sec_ref(mod, modname, &info, init_section, init_section_ref_ok);
  1145. check_sec_ref(mod, modname, &info, exit_section, exit_section_ref_ok);
  1146. version = get_modinfo(info.modinfo, info.modinfo_len, "version");
  1147. if (version)
  1148. maybe_frob_rcs_version(modname, version, info.modinfo,
  1149. version - (char *)info.hdr);
  1150. if (version || (all_versions && !is_vmlinux(modname)))
  1151. get_src_version(modname, mod->srcversion,
  1152. sizeof(mod->srcversion)-1);
  1153. parse_elf_finish(&info);
  1154. /* Our trick to get versioning for struct_module - it's
  1155. * never passed as an argument to an exported function, so
  1156. * the automatic versioning doesn't pick it up, but it's really
  1157. * important anyhow */
  1158. if (modversions)
  1159. mod->unres = alloc_symbol("struct_module", 0, mod->unres);
  1160. }
  1161. #define SZ 500
  1162. /* We first write the generated file into memory using the
  1163. * following helper, then compare to the file on disk and
  1164. * only update the later if anything changed */
  1165. void __attribute__((format(printf, 2, 3))) buf_printf(struct buffer *buf,
  1166. const char *fmt, ...)
  1167. {
  1168. char tmp[SZ];
  1169. int len;
  1170. va_list ap;
  1171. va_start(ap, fmt);
  1172. len = vsnprintf(tmp, SZ, fmt, ap);
  1173. buf_write(buf, tmp, len);
  1174. va_end(ap);
  1175. }
  1176. void buf_write(struct buffer *buf, const char *s, int len)
  1177. {
  1178. if (buf->size - buf->pos < len) {
  1179. buf->size += len + SZ;
  1180. buf->p = realloc(buf->p, buf->size);
  1181. }
  1182. strncpy(buf->p + buf->pos, s, len);
  1183. buf->pos += len;
  1184. }
  1185. static void check_for_gpl_usage(enum export exp, const char *m, const char *s)
  1186. {
  1187. const char *e = is_vmlinux(m) ?"":".ko";
  1188. switch (exp) {
  1189. case export_gpl:
  1190. fatal("modpost: GPL-incompatible module %s%s "
  1191. "uses GPL-only symbol '%s'\n", m, e, s);
  1192. break;
  1193. case export_unused_gpl:
  1194. fatal("modpost: GPL-incompatible module %s%s "
  1195. "uses GPL-only symbol marked UNUSED '%s'\n", m, e, s);
  1196. break;
  1197. case export_gpl_future:
  1198. warn("modpost: GPL-incompatible module %s%s "
  1199. "uses future GPL-only symbol '%s'\n", m, e, s);
  1200. break;
  1201. case export_plain:
  1202. case export_unused:
  1203. case export_unknown:
  1204. /* ignore */
  1205. break;
  1206. }
  1207. }
  1208. static void check_for_unused(enum export exp, const char* m, const char* s)
  1209. {
  1210. const char *e = is_vmlinux(m) ?"":".ko";
  1211. switch (exp) {
  1212. case export_unused:
  1213. case export_unused_gpl:
  1214. warn("modpost: module %s%s "
  1215. "uses symbol '%s' marked UNUSED\n", m, e, s);
  1216. break;
  1217. default:
  1218. /* ignore */
  1219. break;
  1220. }
  1221. }
  1222. static void check_exports(struct module *mod)
  1223. {
  1224. struct symbol *s, *exp;
  1225. for (s = mod->unres; s; s = s->next) {
  1226. const char *basename;
  1227. exp = find_symbol(s->name);
  1228. if (!exp || exp->module == mod)
  1229. continue;
  1230. basename = strrchr(mod->name, '/');
  1231. if (basename)
  1232. basename++;
  1233. else
  1234. basename = mod->name;
  1235. if (!mod->gpl_compatible)
  1236. check_for_gpl_usage(exp->export, basename, exp->name);
  1237. check_for_unused(exp->export, basename, exp->name);
  1238. }
  1239. }
  1240. /**
  1241. * Header for the generated file
  1242. **/
  1243. static void add_header(struct buffer *b, struct module *mod)
  1244. {
  1245. buf_printf(b, "#include <linux/module.h>\n");
  1246. buf_printf(b, "#include <linux/vermagic.h>\n");
  1247. buf_printf(b, "#include <linux/compiler.h>\n");
  1248. buf_printf(b, "\n");
  1249. buf_printf(b, "MODULE_INFO(vermagic, VERMAGIC_STRING);\n");
  1250. buf_printf(b, "\n");
  1251. buf_printf(b, "struct module __this_module\n");
  1252. buf_printf(b, "__attribute__((section(\".gnu.linkonce.this_module\"))) = {\n");
  1253. buf_printf(b, " .name = KBUILD_MODNAME,\n");
  1254. if (mod->has_init)
  1255. buf_printf(b, " .init = init_module,\n");
  1256. if (mod->has_cleanup)
  1257. buf_printf(b, "#ifdef CONFIG_MODULE_UNLOAD\n"
  1258. " .exit = cleanup_module,\n"
  1259. "#endif\n");
  1260. buf_printf(b, " .arch = MODULE_ARCH_INIT,\n");
  1261. buf_printf(b, "};\n");
  1262. }
  1263. /**
  1264. * Record CRCs for unresolved symbols
  1265. **/
  1266. static int add_versions(struct buffer *b, struct module *mod)
  1267. {
  1268. struct symbol *s, *exp;
  1269. int err = 0;
  1270. for (s = mod->unres; s; s = s->next) {
  1271. exp = find_symbol(s->name);
  1272. if (!exp || exp->module == mod) {
  1273. if (have_vmlinux && !s->weak) {
  1274. if (warn_unresolved) {
  1275. warn("\"%s\" [%s.ko] undefined!\n",
  1276. s->name, mod->name);
  1277. } else {
  1278. merror("\"%s\" [%s.ko] undefined!\n",
  1279. s->name, mod->name);
  1280. err = 1;
  1281. }
  1282. }
  1283. continue;
  1284. }
  1285. s->module = exp->module;
  1286. s->crc_valid = exp->crc_valid;
  1287. s->crc = exp->crc;
  1288. }
  1289. if (!modversions)
  1290. return err;
  1291. buf_printf(b, "\n");
  1292. buf_printf(b, "static const struct modversion_info ____versions[]\n");
  1293. buf_printf(b, "__attribute_used__\n");
  1294. buf_printf(b, "__attribute__((section(\"__versions\"))) = {\n");
  1295. for (s = mod->unres; s; s = s->next) {
  1296. if (!s->module) {
  1297. continue;
  1298. }
  1299. if (!s->crc_valid) {
  1300. warn("\"%s\" [%s.ko] has no CRC!\n",
  1301. s->name, mod->name);
  1302. continue;
  1303. }
  1304. buf_printf(b, "\t{ %#8x, \"%s\" },\n", s->crc, s->name);
  1305. }
  1306. buf_printf(b, "};\n");
  1307. return err;
  1308. }
  1309. static void add_depends(struct buffer *b, struct module *mod,
  1310. struct module *modules)
  1311. {
  1312. struct symbol *s;
  1313. struct module *m;
  1314. int first = 1;
  1315. for (m = modules; m; m = m->next) {
  1316. m->seen = is_vmlinux(m->name);
  1317. }
  1318. buf_printf(b, "\n");
  1319. buf_printf(b, "static const char __module_depends[]\n");
  1320. buf_printf(b, "__attribute_used__\n");
  1321. buf_printf(b, "__attribute__((section(\".modinfo\"))) =\n");
  1322. buf_printf(b, "\"depends=");
  1323. for (s = mod->unres; s; s = s->next) {
  1324. const char *p;
  1325. if (!s->module)
  1326. continue;
  1327. if (s->module->seen)
  1328. continue;
  1329. s->module->seen = 1;
  1330. if ((p = strrchr(s->module->name, '/')) != NULL)
  1331. p++;
  1332. else
  1333. p = s->module->name;
  1334. buf_printf(b, "%s%s", first ? "" : ",", p);
  1335. first = 0;
  1336. }
  1337. buf_printf(b, "\";\n");
  1338. }
  1339. static void add_srcversion(struct buffer *b, struct module *mod)
  1340. {
  1341. if (mod->srcversion[0]) {
  1342. buf_printf(b, "\n");
  1343. buf_printf(b, "MODULE_INFO(srcversion, \"%s\");\n",
  1344. mod->srcversion);
  1345. }
  1346. }
  1347. static void write_if_changed(struct buffer *b, const char *fname)
  1348. {
  1349. char *tmp;
  1350. FILE *file;
  1351. struct stat st;
  1352. file = fopen(fname, "r");
  1353. if (!file)
  1354. goto write;
  1355. if (fstat(fileno(file), &st) < 0)
  1356. goto close_write;
  1357. if (st.st_size != b->pos)
  1358. goto close_write;
  1359. tmp = NOFAIL(malloc(b->pos));
  1360. if (fread(tmp, 1, b->pos, file) != b->pos)
  1361. goto free_write;
  1362. if (memcmp(tmp, b->p, b->pos) != 0)
  1363. goto free_write;
  1364. free(tmp);
  1365. fclose(file);
  1366. return;
  1367. free_write:
  1368. free(tmp);
  1369. close_write:
  1370. fclose(file);
  1371. write:
  1372. file = fopen(fname, "w");
  1373. if (!file) {
  1374. perror(fname);
  1375. exit(1);
  1376. }
  1377. if (fwrite(b->p, 1, b->pos, file) != b->pos) {
  1378. perror(fname);
  1379. exit(1);
  1380. }
  1381. fclose(file);
  1382. }
  1383. /* parse Module.symvers file. line format:
  1384. * 0x12345678<tab>symbol<tab>module[[<tab>export]<tab>something]
  1385. **/
  1386. static void read_dump(const char *fname, unsigned int kernel)
  1387. {
  1388. unsigned long size, pos = 0;
  1389. void *file = grab_file(fname, &size);
  1390. char *line;
  1391. if (!file)
  1392. /* No symbol versions, silently ignore */
  1393. return;
  1394. while ((line = get_next_line(&pos, file, size))) {
  1395. char *symname, *modname, *d, *export, *end;
  1396. unsigned int crc;
  1397. struct module *mod;
  1398. struct symbol *s;
  1399. if (!(symname = strchr(line, '\t')))
  1400. goto fail;
  1401. *symname++ = '\0';
  1402. if (!(modname = strchr(symname, '\t')))
  1403. goto fail;
  1404. *modname++ = '\0';
  1405. if ((export = strchr(modname, '\t')) != NULL)
  1406. *export++ = '\0';
  1407. if (export && ((end = strchr(export, '\t')) != NULL))
  1408. *end = '\0';
  1409. crc = strtoul(line, &d, 16);
  1410. if (*symname == '\0' || *modname == '\0' || *d != '\0')
  1411. goto fail;
  1412. if (!(mod = find_module(modname))) {
  1413. if (is_vmlinux(modname)) {
  1414. have_vmlinux = 1;
  1415. }
  1416. mod = new_module(NOFAIL(strdup(modname)));
  1417. mod->skip = 1;
  1418. }
  1419. s = sym_add_exported(symname, mod, export_no(export));
  1420. s->kernel = kernel;
  1421. s->preloaded = 1;
  1422. sym_update_crc(symname, mod, crc, export_no(export));
  1423. }
  1424. return;
  1425. fail:
  1426. fatal("parse error in symbol dump file\n");
  1427. }
  1428. /* For normal builds always dump all symbols.
  1429. * For external modules only dump symbols
  1430. * that are not read from kernel Module.symvers.
  1431. **/
  1432. static int dump_sym(struct symbol *sym)
  1433. {
  1434. if (!external_module)
  1435. return 1;
  1436. if (sym->vmlinux || sym->kernel)
  1437. return 0;
  1438. return 1;
  1439. }
  1440. static void write_dump(const char *fname)
  1441. {
  1442. struct buffer buf = { };
  1443. struct symbol *symbol;
  1444. int n;
  1445. for (n = 0; n < SYMBOL_HASH_SIZE ; n++) {
  1446. symbol = symbolhash[n];
  1447. while (symbol) {
  1448. if (dump_sym(symbol))
  1449. buf_printf(&buf, "0x%08x\t%s\t%s\t%s\n",
  1450. symbol->crc, symbol->name,
  1451. symbol->module->name,
  1452. export_str(symbol->export));
  1453. symbol = symbol->next;
  1454. }
  1455. }
  1456. write_if_changed(&buf, fname);
  1457. }
  1458. int main(int argc, char **argv)
  1459. {
  1460. struct module *mod;
  1461. struct buffer buf = { };
  1462. char fname[SZ];
  1463. char *kernel_read = NULL, *module_read = NULL;
  1464. char *dump_write = NULL;
  1465. int opt;
  1466. int err;
  1467. while ((opt = getopt(argc, argv, "i:I:mo:aw")) != -1) {
  1468. switch(opt) {
  1469. case 'i':
  1470. kernel_read = optarg;
  1471. break;
  1472. case 'I':
  1473. module_read = optarg;
  1474. external_module = 1;
  1475. break;
  1476. case 'm':
  1477. modversions = 1;
  1478. break;
  1479. case 'o':
  1480. dump_write = optarg;
  1481. break;
  1482. case 'a':
  1483. all_versions = 1;
  1484. break;
  1485. case 'w':
  1486. warn_unresolved = 1;
  1487. break;
  1488. default:
  1489. exit(1);
  1490. }
  1491. }
  1492. if (kernel_read)
  1493. read_dump(kernel_read, 1);
  1494. if (module_read)
  1495. read_dump(module_read, 0);
  1496. while (optind < argc) {
  1497. read_symbols(argv[optind++]);
  1498. }
  1499. for (mod = modules; mod; mod = mod->next) {
  1500. if (mod->skip)
  1501. continue;
  1502. check_exports(mod);
  1503. }
  1504. err = 0;
  1505. for (mod = modules; mod; mod = mod->next) {
  1506. if (mod->skip)
  1507. continue;
  1508. buf.pos = 0;
  1509. add_header(&buf, mod);
  1510. err |= add_versions(&buf, mod);
  1511. add_depends(&buf, mod, modules);
  1512. add_moddevtable(&buf, mod);
  1513. add_srcversion(&buf, mod);
  1514. sprintf(fname, "%s.mod.c", mod->name);
  1515. write_if_changed(&buf, fname);
  1516. }
  1517. if (dump_write)
  1518. write_dump(dump_write);
  1519. return err;
  1520. }