modpost.c 43 KB

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