]> bbs.cooldavid.org Git - net-next-2.6.git/blame - scripts/mod/modpost.c
modpost: support objects with more than 64k sections
[net-next-2.6.git] / scripts / mod / modpost.c
CommitLineData
1da177e4
LT
1/* Postprocess module symbol versions
2 *
3 * Copyright 2003 Kai Germaschewski
4 * Copyright 2002-2004 Rusty Russell, IBM Corporation
df578e7d 5 * Copyright 2006-2008 Sam Ravnborg
1da177e4
LT
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
b2e3e658
MD
14#define _GNU_SOURCE
15#include <stdio.h>
1da177e4
LT
16#include <ctype.h>
17#include "modpost.h"
5a865c06 18#include "../../include/generated/autoconf.h"
b817f6fe 19#include "../../include/linux/license.h"
1da177e4 20
9e1b9b80
AJ
21/* Some toolchains use a `_' prefix for all user symbols. */
22#ifdef CONFIG_SYMBOL_PREFIX
23#define MODULE_SYMBOL_PREFIX CONFIG_SYMBOL_PREFIX
24#else
25#define MODULE_SYMBOL_PREFIX ""
26#endif
27
28
1da177e4
LT
29/* Are we using CONFIG_MODVERSIONS? */
30int modversions = 0;
31/* Warn about undefined symbols? (do so if we have vmlinux) */
32int have_vmlinux = 0;
33/* Is CONFIG_MODULE_SRCVERSION_ALL set? */
34static int all_versions = 0;
040fcc81
SR
35/* If we are modposting external module set to 1 */
36static int external_module = 0;
8d8d8289
SR
37/* Warn about section mismatch in vmlinux if set to 1 */
38static int vmlinux_section_warnings = 1;
c53ddacd
KK
39/* Only warn about unresolved symbols */
40static int warn_unresolved = 0;
bd5cbced 41/* How a symbol is exported */
588ccd73
SR
42static int sec_mismatch_count = 0;
43static int sec_mismatch_verbose = 1;
44
c96fca21
SR
45enum export {
46 export_plain, export_unused, export_gpl,
47 export_unused_gpl, export_gpl_future, export_unknown
48};
1da177e4 49
6d9a89ea
AK
50#define PRINTF __attribute__ ((format (printf, 1, 2)))
51
52PRINTF void fatal(const char *fmt, ...)
1da177e4
LT
53{
54 va_list arglist;
55
56 fprintf(stderr, "FATAL: ");
57
58 va_start(arglist, fmt);
59 vfprintf(stderr, fmt, arglist);
60 va_end(arglist);
61
62 exit(1);
63}
64
6d9a89ea 65PRINTF void warn(const char *fmt, ...)
1da177e4
LT
66{
67 va_list arglist;
68
69 fprintf(stderr, "WARNING: ");
70
71 va_start(arglist, fmt);
72 vfprintf(stderr, fmt, arglist);
73 va_end(arglist);
74}
75
6d9a89ea 76PRINTF void merror(const char *fmt, ...)
2a116659
MW
77{
78 va_list arglist;
79
80 fprintf(stderr, "ERROR: ");
81
82 va_start(arglist, fmt);
83 vfprintf(stderr, fmt, arglist);
84 va_end(arglist);
85}
86
040fcc81
SR
87static int is_vmlinux(const char *modname)
88{
89 const char *myname;
90
df578e7d
SR
91 myname = strrchr(modname, '/');
92 if (myname)
040fcc81
SR
93 myname++;
94 else
95 myname = modname;
96
741f98fe
SR
97 return (strcmp(myname, "vmlinux") == 0) ||
98 (strcmp(myname, "vmlinux.o") == 0);
040fcc81
SR
99}
100
1da177e4
LT
101void *do_nofail(void *ptr, const char *expr)
102{
df578e7d 103 if (!ptr)
1da177e4 104 fatal("modpost: Memory allocation failure: %s.\n", expr);
df578e7d 105
1da177e4
LT
106 return ptr;
107}
108
109/* A list of all modules we processed */
1da177e4
LT
110static struct module *modules;
111
5c3ead8c 112static struct module *find_module(char *modname)
1da177e4
LT
113{
114 struct module *mod;
115
116 for (mod = modules; mod; mod = mod->next)
117 if (strcmp(mod->name, modname) == 0)
118 break;
119 return mod;
120}
121
5c3ead8c 122static struct module *new_module(char *modname)
1da177e4
LT
123{
124 struct module *mod;
125 char *p, *s;
62070fa4 126
1da177e4
LT
127 mod = NOFAIL(malloc(sizeof(*mod)));
128 memset(mod, 0, sizeof(*mod));
129 p = NOFAIL(strdup(modname));
130
131 /* strip trailing .o */
df578e7d
SR
132 s = strrchr(p, '.');
133 if (s != NULL)
1da177e4
LT
134 if (strcmp(s, ".o") == 0)
135 *s = '\0';
136
137 /* add to list */
138 mod->name = p;
b817f6fe 139 mod->gpl_compatible = -1;
1da177e4
LT
140 mod->next = modules;
141 modules = mod;
142
143 return mod;
144}
145
146/* A hash of all exported symbols,
147 * struct symbol is also used for lists of unresolved symbols */
148
149#define SYMBOL_HASH_SIZE 1024
150
151struct symbol {
152 struct symbol *next;
153 struct module *module;
154 unsigned int crc;
155 int crc_valid;
156 unsigned int weak:1;
040fcc81
SR
157 unsigned int vmlinux:1; /* 1 if symbol is defined in vmlinux */
158 unsigned int kernel:1; /* 1 if symbol is from kernel
159 * (only for external modules) **/
8e70c458 160 unsigned int preloaded:1; /* 1 if symbol from Module.symvers */
bd5cbced 161 enum export export; /* Type of export */
1da177e4
LT
162 char name[0];
163};
164
165static struct symbol *symbolhash[SYMBOL_HASH_SIZE];
166
167/* This is based on the hash agorithm from gdbm, via tdb */
168static inline unsigned int tdb_hash(const char *name)
169{
170 unsigned value; /* Used to compute the hash value. */
171 unsigned i; /* Used to cycle through random values. */
172
173 /* Set the initial value from the key size. */
df578e7d 174 for (value = 0x238F13AF * strlen(name), i = 0; name[i]; i++)
1da177e4
LT
175 value = (value + (((unsigned char *)name)[i] << (i*5 % 24)));
176
177 return (1103515243 * value + 12345);
178}
179
5c3ead8c
SR
180/**
181 * Allocate a new symbols for use in the hash of exported symbols or
182 * the list of unresolved symbols per module
183 **/
184static struct symbol *alloc_symbol(const char *name, unsigned int weak,
185 struct symbol *next)
1da177e4
LT
186{
187 struct symbol *s = NOFAIL(malloc(sizeof(*s) + strlen(name) + 1));
188
189 memset(s, 0, sizeof(*s));
190 strcpy(s->name, name);
191 s->weak = weak;
192 s->next = next;
193 return s;
194}
195
196/* For the hash of exported symbols */
bd5cbced
RP
197static struct symbol *new_symbol(const char *name, struct module *module,
198 enum export export)
1da177e4
LT
199{
200 unsigned int hash;
201 struct symbol *new;
202
203 hash = tdb_hash(name) % SYMBOL_HASH_SIZE;
204 new = symbolhash[hash] = alloc_symbol(name, 0, symbolhash[hash]);
205 new->module = module;
bd5cbced 206 new->export = export;
040fcc81 207 return new;
1da177e4
LT
208}
209
5c3ead8c 210static struct symbol *find_symbol(const char *name)
1da177e4
LT
211{
212 struct symbol *s;
213
214 /* For our purposes, .foo matches foo. PPC64 needs this. */
215 if (name[0] == '.')
216 name++;
217
df578e7d 218 for (s = symbolhash[tdb_hash(name) % SYMBOL_HASH_SIZE]; s; s = s->next) {
1da177e4
LT
219 if (strcmp(s->name, name) == 0)
220 return s;
221 }
222 return NULL;
223}
224
bd5cbced
RP
225static struct {
226 const char *str;
227 enum export export;
228} export_list[] = {
229 { .str = "EXPORT_SYMBOL", .export = export_plain },
c96fca21 230 { .str = "EXPORT_UNUSED_SYMBOL", .export = export_unused },
bd5cbced 231 { .str = "EXPORT_SYMBOL_GPL", .export = export_gpl },
c96fca21 232 { .str = "EXPORT_UNUSED_SYMBOL_GPL", .export = export_unused_gpl },
bd5cbced
RP
233 { .str = "EXPORT_SYMBOL_GPL_FUTURE", .export = export_gpl_future },
234 { .str = "(unknown)", .export = export_unknown },
235};
236
237
238static const char *export_str(enum export ex)
239{
240 return export_list[ex].str;
241}
242
df578e7d 243static enum export export_no(const char *s)
bd5cbced
RP
244{
245 int i;
df578e7d 246
534b89a9
SR
247 if (!s)
248 return export_unknown;
bd5cbced
RP
249 for (i = 0; export_list[i].export != export_unknown; i++) {
250 if (strcmp(export_list[i].str, s) == 0)
251 return export_list[i].export;
252 }
253 return export_unknown;
254}
255
1ce53adf 256static enum export export_from_sec(struct elf_info *elf, unsigned int sec)
bd5cbced
RP
257{
258 if (sec == elf->export_sec)
259 return export_plain;
c96fca21
SR
260 else if (sec == elf->export_unused_sec)
261 return export_unused;
bd5cbced
RP
262 else if (sec == elf->export_gpl_sec)
263 return export_gpl;
c96fca21
SR
264 else if (sec == elf->export_unused_gpl_sec)
265 return export_unused_gpl;
bd5cbced
RP
266 else if (sec == elf->export_gpl_future_sec)
267 return export_gpl_future;
268 else
269 return export_unknown;
270}
271
5c3ead8c
SR
272/**
273 * Add an exported symbol - it may have already been added without a
274 * CRC, in this case just update the CRC
275 **/
bd5cbced
RP
276static struct symbol *sym_add_exported(const char *name, struct module *mod,
277 enum export export)
1da177e4
LT
278{
279 struct symbol *s = find_symbol(name);
280
281 if (!s) {
bd5cbced 282 s = new_symbol(name, mod, export);
8e70c458
SR
283 } else {
284 if (!s->preloaded) {
7b75b13c 285 warn("%s: '%s' exported twice. Previous export "
8e70c458
SR
286 "was in %s%s\n", mod->name, name,
287 s->module->name,
288 is_vmlinux(s->module->name) ?"":".ko");
4b21960f
TP
289 } else {
290 /* In case Modules.symvers was out of date */
291 s->module = mod;
8e70c458 292 }
1da177e4 293 }
8e70c458 294 s->preloaded = 0;
040fcc81
SR
295 s->vmlinux = is_vmlinux(mod->name);
296 s->kernel = 0;
bd5cbced 297 s->export = export;
040fcc81
SR
298 return s;
299}
300
301static void sym_update_crc(const char *name, struct module *mod,
bd5cbced 302 unsigned int crc, enum export export)
040fcc81
SR
303{
304 struct symbol *s = find_symbol(name);
305
306 if (!s)
bd5cbced 307 s = new_symbol(name, mod, export);
040fcc81
SR
308 s->crc = crc;
309 s->crc_valid = 1;
1da177e4
LT
310}
311
5c3ead8c 312void *grab_file(const char *filename, unsigned long *size)
1da177e4
LT
313{
314 struct stat st;
315 void *map;
316 int fd;
317
318 fd = open(filename, O_RDONLY);
319 if (fd < 0 || fstat(fd, &st) != 0)
320 return NULL;
321
322 *size = st.st_size;
323 map = mmap(NULL, *size, PROT_READ|PROT_WRITE, MAP_PRIVATE, fd, 0);
324 close(fd);
325
326 if (map == MAP_FAILED)
327 return NULL;
328 return map;
329}
330
5c3ead8c
SR
331/**
332 * Return a copy of the next line in a mmap'ed file.
333 * spaces in the beginning of the line is trimmed away.
334 * Return a pointer to a static buffer.
335 **/
df578e7d 336char *get_next_line(unsigned long *pos, void *file, unsigned long size)
1da177e4
LT
337{
338 static char line[4096];
339 int skip = 1;
340 size_t len = 0;
341 signed char *p = (signed char *)file + *pos;
342 char *s = line;
343
df578e7d 344 for (; *pos < size ; (*pos)++) {
1da177e4
LT
345 if (skip && isspace(*p)) {
346 p++;
347 continue;
348 }
349 skip = 0;
350 if (*p != '\n' && (*pos < size)) {
351 len++;
352 *s++ = *p++;
353 if (len > 4095)
354 break; /* Too long, stop */
355 } else {
356 /* End of string */
357 *s = '\0';
358 return line;
359 }
360 }
361 /* End of buffer */
362 return NULL;
363}
364
5c3ead8c 365void release_file(void *file, unsigned long size)
1da177e4
LT
366{
367 munmap(file, size);
368}
369
85bd2fdd 370static int parse_elf(struct elf_info *info, const char *filename)
1da177e4
LT
371{
372 unsigned int i;
85bd2fdd 373 Elf_Ehdr *hdr;
1da177e4
LT
374 Elf_Shdr *sechdrs;
375 Elf_Sym *sym;
1ce53adf
DV
376 const char *secstrings;
377 unsigned int symtab_idx = ~0U, symtab_shndx_idx = ~0U;
1da177e4
LT
378
379 hdr = grab_file(filename, &info->size);
380 if (!hdr) {
381 perror(filename);
6803dc0e 382 exit(1);
1da177e4
LT
383 }
384 info->hdr = hdr;
85bd2fdd
SR
385 if (info->size < sizeof(*hdr)) {
386 /* file too small, assume this is an empty .o file */
387 return 0;
388 }
389 /* Is this a valid ELF file? */
390 if ((hdr->e_ident[EI_MAG0] != ELFMAG0) ||
391 (hdr->e_ident[EI_MAG1] != ELFMAG1) ||
392 (hdr->e_ident[EI_MAG2] != ELFMAG2) ||
393 (hdr->e_ident[EI_MAG3] != ELFMAG3)) {
394 /* Not an ELF file - silently ignore it */
395 return 0;
396 }
1da177e4 397 /* Fix endianness in ELF header */
7d875a02
AK
398 hdr->e_type = TO_NATIVE(hdr->e_type);
399 hdr->e_machine = TO_NATIVE(hdr->e_machine);
400 hdr->e_version = TO_NATIVE(hdr->e_version);
401 hdr->e_entry = TO_NATIVE(hdr->e_entry);
402 hdr->e_phoff = TO_NATIVE(hdr->e_phoff);
403 hdr->e_shoff = TO_NATIVE(hdr->e_shoff);
404 hdr->e_flags = TO_NATIVE(hdr->e_flags);
405 hdr->e_ehsize = TO_NATIVE(hdr->e_ehsize);
406 hdr->e_phentsize = TO_NATIVE(hdr->e_phentsize);
407 hdr->e_phnum = TO_NATIVE(hdr->e_phnum);
408 hdr->e_shentsize = TO_NATIVE(hdr->e_shentsize);
409 hdr->e_shnum = TO_NATIVE(hdr->e_shnum);
410 hdr->e_shstrndx = TO_NATIVE(hdr->e_shstrndx);
1da177e4
LT
411 sechdrs = (void *)hdr + hdr->e_shoff;
412 info->sechdrs = sechdrs;
413
a83710e5
PS
414 /* Check if file offset is correct */
415 if (hdr->e_shoff > info->size) {
df578e7d
SR
416 fatal("section header offset=%lu in file '%s' is bigger than "
417 "filesize=%lu\n", (unsigned long)hdr->e_shoff,
418 filename, info->size);
a83710e5
PS
419 return 0;
420 }
421
1ce53adf
DV
422 if (hdr->e_shnum == 0) {
423 /*
424 * There are more than 64k sections,
425 * read count from .sh_size.
426 * note: it doesn't need shndx2secindex()
427 */
428 info->num_sections = TO_NATIVE(sechdrs[0].sh_size);
429 }
430 else {
431 info->num_sections = hdr->e_shnum;
432 }
433 if (hdr->e_shstrndx == SHN_XINDEX) {
434 info->secindex_strings =
435 shndx2secindex(TO_NATIVE(sechdrs[0].sh_link));
436 }
437 else {
438 info->secindex_strings = hdr->e_shstrndx;
439 }
440
1da177e4 441 /* Fix endianness in section headers */
1ce53adf 442 for (i = 0; i < info->num_sections; i++) {
7d875a02
AK
443 sechdrs[i].sh_name = TO_NATIVE(sechdrs[i].sh_name);
444 sechdrs[i].sh_type = TO_NATIVE(sechdrs[i].sh_type);
445 sechdrs[i].sh_flags = TO_NATIVE(sechdrs[i].sh_flags);
446 sechdrs[i].sh_addr = TO_NATIVE(sechdrs[i].sh_addr);
447 sechdrs[i].sh_offset = TO_NATIVE(sechdrs[i].sh_offset);
448 sechdrs[i].sh_size = TO_NATIVE(sechdrs[i].sh_size);
449 sechdrs[i].sh_link = TO_NATIVE(sechdrs[i].sh_link);
450 sechdrs[i].sh_info = TO_NATIVE(sechdrs[i].sh_info);
451 sechdrs[i].sh_addralign = TO_NATIVE(sechdrs[i].sh_addralign);
452 sechdrs[i].sh_entsize = TO_NATIVE(sechdrs[i].sh_entsize);
1da177e4
LT
453 }
454 /* Find symbol table. */
1ce53adf
DV
455 secstrings = (void *)hdr + sechdrs[info->secindex_strings].sh_offset;
456 for (i = 1; i < info->num_sections; i++) {
bd5cbced 457 const char *secname;
56fc82c5 458 int nobits = sechdrs[i].sh_type == SHT_NOBITS;
1da177e4 459
56fc82c5 460 if (!nobits && sechdrs[i].sh_offset > info->size) {
df578e7d
SR
461 fatal("%s is truncated. sechdrs[i].sh_offset=%lu > "
462 "sizeof(*hrd)=%zu\n", filename,
463 (unsigned long)sechdrs[i].sh_offset,
464 sizeof(*hdr));
85bd2fdd
SR
465 return 0;
466 }
bd5cbced
RP
467 secname = secstrings + sechdrs[i].sh_name;
468 if (strcmp(secname, ".modinfo") == 0) {
56fc82c5
TH
469 if (nobits)
470 fatal("%s has NOBITS .modinfo\n", filename);
1da177e4
LT
471 info->modinfo = (void *)hdr + sechdrs[i].sh_offset;
472 info->modinfo_len = sechdrs[i].sh_size;
bd5cbced
RP
473 } else if (strcmp(secname, "__ksymtab") == 0)
474 info->export_sec = i;
c96fca21
SR
475 else if (strcmp(secname, "__ksymtab_unused") == 0)
476 info->export_unused_sec = i;
bd5cbced
RP
477 else if (strcmp(secname, "__ksymtab_gpl") == 0)
478 info->export_gpl_sec = i;
c96fca21
SR
479 else if (strcmp(secname, "__ksymtab_unused_gpl") == 0)
480 info->export_unused_gpl_sec = i;
bd5cbced
RP
481 else if (strcmp(secname, "__ksymtab_gpl_future") == 0)
482 info->export_gpl_future_sec = i;
483
1ce53adf
DV
484 if (sechdrs[i].sh_type == SHT_SYMTAB) {
485 unsigned int sh_link_idx;
486 symtab_idx = i;
487 info->symtab_start = (void *)hdr +
488 sechdrs[i].sh_offset;
489 info->symtab_stop = (void *)hdr +
490 sechdrs[i].sh_offset + sechdrs[i].sh_size;
491 sh_link_idx = shndx2secindex(sechdrs[i].sh_link);
492 info->strtab = (void *)hdr +
493 sechdrs[sh_link_idx].sh_offset;
494 }
1da177e4 495
1ce53adf
DV
496 /* 32bit section no. table? ("more than 64k sections") */
497 if (sechdrs[i].sh_type == SHT_SYMTAB_SHNDX) {
498 symtab_shndx_idx = i;
499 info->symtab_shndx_start = (void *)hdr +
500 sechdrs[i].sh_offset;
501 info->symtab_shndx_stop = (void *)hdr +
502 sechdrs[i].sh_offset + sechdrs[i].sh_size;
503 }
1da177e4 504 }
df578e7d 505 if (!info->symtab_start)
cb80514d 506 fatal("%s has no symtab?\n", filename);
df578e7d 507
1da177e4
LT
508 /* Fix endianness in symbols */
509 for (sym = info->symtab_start; sym < info->symtab_stop; sym++) {
510 sym->st_shndx = TO_NATIVE(sym->st_shndx);
511 sym->st_name = TO_NATIVE(sym->st_name);
512 sym->st_value = TO_NATIVE(sym->st_value);
513 sym->st_size = TO_NATIVE(sym->st_size);
514 }
1ce53adf
DV
515
516 if (symtab_shndx_idx != ~0U) {
517 Elf32_Word *p;
518 if (symtab_idx !=
519 shndx2secindex(sechdrs[symtab_shndx_idx].sh_link))
520 fatal("%s: SYMTAB_SHNDX has bad sh_link: %u!=%u\n",
521 filename,
522 shndx2secindex(sechdrs[symtab_shndx_idx].sh_link),
523 symtab_idx);
524 /* Fix endianness */
525 for (p = info->symtab_shndx_start; p < info->symtab_shndx_stop;
526 p++)
527 *p = TO_NATIVE(*p);
528 }
529
85bd2fdd 530 return 1;
1da177e4
LT
531}
532
5c3ead8c 533static void parse_elf_finish(struct elf_info *info)
1da177e4
LT
534{
535 release_file(info->hdr, info->size);
536}
537
4d7365d6
SR
538static int ignore_undef_symbol(struct elf_info *info, const char *symname)
539{
540 /* ignore __this_module, it will be resolved shortly */
541 if (strcmp(symname, MODULE_SYMBOL_PREFIX "__this_module") == 0)
542 return 1;
543 /* ignore global offset table */
544 if (strcmp(symname, "_GLOBAL_OFFSET_TABLE_") == 0)
545 return 1;
546 if (info->hdr->e_machine == EM_PPC)
547 /* Special register function linked on all modules during final link of .ko */
548 if (strncmp(symname, "_restgpr_", sizeof("_restgpr_") - 1) == 0 ||
549 strncmp(symname, "_savegpr_", sizeof("_savegpr_") - 1) == 0 ||
550 strncmp(symname, "_rest32gpr_", sizeof("_rest32gpr_") - 1) == 0 ||
551 strncmp(symname, "_save32gpr_", sizeof("_save32gpr_") - 1) == 0)
552 return 1;
553 /* Do not ignore this symbol */
554 return 0;
555}
556
f7b05e64
LY
557#define CRC_PFX MODULE_SYMBOL_PREFIX "__crc_"
558#define KSYMTAB_PFX MODULE_SYMBOL_PREFIX "__ksymtab_"
1da177e4 559
5c3ead8c
SR
560static void handle_modversions(struct module *mod, struct elf_info *info,
561 Elf_Sym *sym, const char *symname)
1da177e4
LT
562{
563 unsigned int crc;
1ce53adf 564 enum export export = export_from_sec(info, get_secindex(info, sym));
1da177e4
LT
565
566 switch (sym->st_shndx) {
567 case SHN_COMMON:
cb80514d 568 warn("\"%s\" [%s] is COMMON symbol\n", symname, mod->name);
1da177e4
LT
569 break;
570 case SHN_ABS:
571 /* CRC'd symbol */
8d99513c 572 if (strncmp(symname, CRC_PFX, strlen(CRC_PFX)) == 0) {
1da177e4 573 crc = (unsigned int) sym->st_value;
bd5cbced
RP
574 sym_update_crc(symname + strlen(CRC_PFX), mod, crc,
575 export);
1da177e4
LT
576 }
577 break;
578 case SHN_UNDEF:
579 /* undefined symbol */
580 if (ELF_ST_BIND(sym->st_info) != STB_GLOBAL &&
581 ELF_ST_BIND(sym->st_info) != STB_WEAK)
582 break;
4d7365d6 583 if (ignore_undef_symbol(info, symname))
1da177e4 584 break;
8d529014
BC
585/* cope with newer glibc (2.3.4 or higher) STT_ definition in elf.h */
586#if defined(STT_REGISTER) || defined(STT_SPARC_REGISTER)
587/* add compatibility with older glibc */
588#ifndef STT_SPARC_REGISTER
589#define STT_SPARC_REGISTER STT_REGISTER
590#endif
1da177e4
LT
591 if (info->hdr->e_machine == EM_SPARC ||
592 info->hdr->e_machine == EM_SPARCV9) {
593 /* Ignore register directives. */
8d529014 594 if (ELF_ST_TYPE(sym->st_info) == STT_SPARC_REGISTER)
1da177e4 595 break;
62070fa4
SR
596 if (symname[0] == '.') {
597 char *munged = strdup(symname);
598 munged[0] = '_';
599 munged[1] = toupper(munged[1]);
600 symname = munged;
601 }
1da177e4
LT
602 }
603#endif
62070fa4 604
1da177e4 605 if (memcmp(symname, MODULE_SYMBOL_PREFIX,
df578e7d
SR
606 strlen(MODULE_SYMBOL_PREFIX)) == 0) {
607 mod->unres =
608 alloc_symbol(symname +
609 strlen(MODULE_SYMBOL_PREFIX),
610 ELF_ST_BIND(sym->st_info) == STB_WEAK,
611 mod->unres);
612 }
1da177e4
LT
613 break;
614 default:
615 /* All exported symbols */
8d99513c 616 if (strncmp(symname, KSYMTAB_PFX, strlen(KSYMTAB_PFX)) == 0) {
bd5cbced
RP
617 sym_add_exported(symname + strlen(KSYMTAB_PFX), mod,
618 export);
1da177e4
LT
619 }
620 if (strcmp(symname, MODULE_SYMBOL_PREFIX "init_module") == 0)
621 mod->has_init = 1;
622 if (strcmp(symname, MODULE_SYMBOL_PREFIX "cleanup_module") == 0)
623 mod->has_cleanup = 1;
624 break;
625 }
626}
627
5c3ead8c
SR
628/**
629 * Parse tag=value strings from .modinfo section
630 **/
1da177e4
LT
631static char *next_string(char *string, unsigned long *secsize)
632{
633 /* Skip non-zero chars */
634 while (string[0]) {
635 string++;
636 if ((*secsize)-- <= 1)
637 return NULL;
638 }
639
640 /* Skip any zero padding. */
641 while (!string[0]) {
642 string++;
643 if ((*secsize)-- <= 1)
644 return NULL;
645 }
646 return string;
647}
648
b817f6fe
SR
649static char *get_next_modinfo(void *modinfo, unsigned long modinfo_len,
650 const char *tag, char *info)
1da177e4
LT
651{
652 char *p;
653 unsigned int taglen = strlen(tag);
654 unsigned long size = modinfo_len;
655
b817f6fe
SR
656 if (info) {
657 size -= info - (char *)modinfo;
658 modinfo = next_string(info, &size);
659 }
660
1da177e4
LT
661 for (p = modinfo; p; p = next_string(p, &size)) {
662 if (strncmp(p, tag, taglen) == 0 && p[taglen] == '=')
663 return p + taglen + 1;
664 }
665 return NULL;
666}
667
b817f6fe
SR
668static char *get_modinfo(void *modinfo, unsigned long modinfo_len,
669 const char *tag)
670
671{
672 return get_next_modinfo(modinfo, modinfo_len, tag, NULL);
673}
674
4c8fbca5
SR
675/**
676 * Test if string s ends in string sub
677 * return 0 if match
678 **/
679static int strrcmp(const char *s, const char *sub)
680{
df578e7d 681 int slen, sublen;
62070fa4 682
4c8fbca5
SR
683 if (!s || !sub)
684 return 1;
62070fa4 685
4c8fbca5 686 slen = strlen(s);
df578e7d 687 sublen = strlen(sub);
62070fa4 688
4c8fbca5
SR
689 if ((slen == 0) || (sublen == 0))
690 return 1;
691
df578e7d
SR
692 if (sublen > slen)
693 return 1;
4c8fbca5 694
df578e7d 695 return memcmp(s + slen - sublen, sub, sublen);
4c8fbca5
SR
696}
697
ff13f926
SR
698static const char *sym_name(struct elf_info *elf, Elf_Sym *sym)
699{
58fb0d4f
SR
700 if (sym)
701 return elf->strtab + sym->st_name;
702 else
f666751a 703 return "(unknown)";
ff13f926
SR
704}
705
1ce53adf 706static const char *sec_name(struct elf_info *elf, int secindex)
ff13f926
SR
707{
708 Elf_Shdr *sechdrs = elf->sechdrs;
709 return (void *)elf->hdr +
1ce53adf
DV
710 elf->sechdrs[elf->secindex_strings].sh_offset +
711 sechdrs[secindex].sh_name;
ff13f926
SR
712}
713
714static const char *sech_name(struct elf_info *elf, Elf_Shdr *sechdr)
715{
716 return (void *)elf->hdr +
1ce53adf
DV
717 elf->sechdrs[elf->secindex_strings].sh_offset +
718 sechdr->sh_name;
ff13f926
SR
719}
720
10668220
SR
721/* if sym is empty or point to a string
722 * like ".[0-9]+" then return 1.
723 * This is the optional prefix added by ld to some sections
724 */
725static int number_prefix(const char *sym)
726{
727 if (*sym++ == '\0')
728 return 1;
729 if (*sym != '.')
730 return 0;
731 do {
732 char c = *sym++;
733 if (c < '0' || c > '9')
734 return 0;
735 } while (*sym);
736 return 1;
737}
738
739/* The pattern is an array of simple patterns.
740 * "foo" will match an exact string equal to "foo"
6c5bd235 741 * "*foo" will match a string that ends with "foo"
10668220
SR
742 * "foo*" will match a string that begins with "foo"
743 * "foo$" will match a string equal to "foo" or "foo.1"
744 * where the '1' can be any number including several digits.
745 * The $ syntax is for sections where ld append a dot number
746 * to make section name unique.
747 */
5c725138 748static int match(const char *sym, const char * const pat[])
10668220
SR
749{
750 const char *p;
751 while (*pat) {
752 p = *pat++;
753 const char *endp = p + strlen(p) - 1;
754
6c5bd235
SR
755 /* "*foo" */
756 if (*p == '*') {
757 if (strrcmp(sym, p + 1) == 0)
758 return 1;
759 }
10668220 760 /* "foo*" */
6c5bd235 761 else if (*endp == '*') {
10668220
SR
762 if (strncmp(sym, p, strlen(p) - 1) == 0)
763 return 1;
764 }
765 /* "foo$" */
766 else if (*endp == '$') {
767 if (strncmp(sym, p, strlen(p) - 1) == 0) {
768 if (number_prefix(sym + strlen(p) - 1))
769 return 1;
770 }
771 }
772 /* no wildcards */
773 else {
774 if (strcmp(p, sym) == 0)
775 return 1;
776 }
777 }
778 /* no match */
779 return 0;
780}
781
10668220
SR
782/* sections that we do not want to do full section mismatch check on */
783static const char *section_white_list[] =
4391ed6a
SR
784{
785 ".comment*",
786 ".debug*",
787 ".mdebug*", /* alpha, score, mips etc. */
788 ".pdr", /* alpha, score, mips etc. */
789 ".stab*",
790 ".note*",
791 ".got*",
792 ".toc*",
793 NULL
794};
10668220 795
e241a630 796/*
b614a697 797 * This is used to find sections missing the SHF_ALLOC flag.
e241a630 798 * The cause of this is often a section specified in assembler
b614a697 799 * without "ax" / "aw".
e241a630 800 */
b614a697
AK
801static void check_section(const char *modname, struct elf_info *elf,
802 Elf_Shdr *sechdr)
e241a630 803{
b614a697
AK
804 const char *sec = sech_name(elf, sechdr);
805
806 if (sechdr->sh_type == SHT_PROGBITS &&
807 !(sechdr->sh_flags & SHF_ALLOC) &&
808 !match(sec, section_white_list)) {
809 warn("%s (%s): unexpected non-allocatable section.\n"
810 "Did you forget to use \"ax\"/\"aw\" in a .S file?\n"
811 "Note that for example <linux/init.h> contains\n"
812 "section definitions for use in .S files.\n\n",
813 modname, sec);
e241a630 814 }
e241a630
SR
815}
816
817
818
eb8f6890 819#define ALL_INIT_DATA_SECTIONS \
fd6c3a8d
JB
820 ".init.setup$", ".init.rodata$", \
821 ".devinit.rodata$", ".cpuinit.rodata$", ".meminit.rodata$" \
eb8f6890
SR
822 ".init.data$", ".devinit.data$", ".cpuinit.data$", ".meminit.data$"
823#define ALL_EXIT_DATA_SECTIONS \
824 ".exit.data$", ".devexit.data$", ".cpuexit.data$", ".memexit.data$"
10668220 825
eb8f6890
SR
826#define ALL_INIT_TEXT_SECTIONS \
827 ".init.text$", ".devinit.text$", ".cpuinit.text$", ".meminit.text$"
828#define ALL_EXIT_TEXT_SECTIONS \
829 ".exit.text$", ".devexit.text$", ".cpuexit.text$", ".memexit.text$"
10668220 830
4a31a229
UKK
831#define ALL_XXXINIT_SECTIONS DEV_INIT_SECTIONS, CPU_INIT_SECTIONS, \
832 MEM_INIT_SECTIONS
833#define ALL_XXXEXIT_SECTIONS DEV_EXIT_SECTIONS, CPU_EXIT_SECTIONS, \
834 MEM_EXIT_SECTIONS
835
836#define ALL_INIT_SECTIONS INIT_SECTIONS, ALL_XXXINIT_SECTIONS
837#define ALL_EXIT_SECTIONS EXIT_SECTIONS, ALL_XXXEXIT_SECTIONS
10668220 838
6c5bd235 839#define DATA_SECTIONS ".data$", ".data.rel$"
10668220
SR
840#define TEXT_SECTIONS ".text$"
841
fd6c3a8d
JB
842#define INIT_SECTIONS ".init.*"
843#define DEV_INIT_SECTIONS ".devinit.*"
844#define CPU_INIT_SECTIONS ".cpuinit.*"
845#define MEM_INIT_SECTIONS ".meminit.*"
eb8f6890 846
fd6c3a8d
JB
847#define EXIT_SECTIONS ".exit.*"
848#define DEV_EXIT_SECTIONS ".devexit.*"
849#define CPU_EXIT_SECTIONS ".cpuexit.*"
850#define MEM_EXIT_SECTIONS ".memexit.*"
eb8f6890 851
6c5bd235 852/* init data sections */
eb8f6890 853static const char *init_data_sections[] = { ALL_INIT_DATA_SECTIONS, NULL };
6c5bd235
SR
854
855/* all init sections */
eb8f6890 856static const char *init_sections[] = { ALL_INIT_SECTIONS, NULL };
6c5bd235
SR
857
858/* All init and exit sections (code + data) */
859static const char *init_exit_sections[] =
eb8f6890 860 {ALL_INIT_SECTIONS, ALL_EXIT_SECTIONS, NULL };
6c5bd235
SR
861
862/* data section */
863static const char *data_sections[] = { DATA_SECTIONS, NULL };
864
6c5bd235
SR
865
866/* symbols in .data that may refer to init/exit sections */
af92a82d
UKK
867#define DEFAULT_SYMBOL_WHITE_LIST \
868 "*driver", \
869 "*_template", /* scsi uses *_template a lot */ \
870 "*_timer", /* arm uses ops structures named _timer a lot */ \
871 "*_sht", /* scsi also used *_sht to some extent */ \
872 "*_ops", \
873 "*_probe", \
874 "*_probe_one", \
875 "*_console"
6c5bd235
SR
876
877static const char *head_sections[] = { ".head.text*", NULL };
878static const char *linker_symbols[] =
879 { "__init_begin", "_sinittext", "_einittext", NULL };
880
588ccd73 881enum mismatch {
bbd3f4fb
UKK
882 TEXT_TO_ANY_INIT,
883 DATA_TO_ANY_INIT,
884 TEXT_TO_ANY_EXIT,
885 DATA_TO_ANY_EXIT,
886 XXXINIT_TO_SOME_INIT,
887 XXXEXIT_TO_SOME_EXIT,
888 ANY_INIT_TO_ANY_EXIT,
889 ANY_EXIT_TO_ANY_INIT,
588ccd73
SR
890 EXPORT_TO_INIT_EXIT,
891};
892
10668220
SR
893struct sectioncheck {
894 const char *fromsec[20];
895 const char *tosec[20];
588ccd73 896 enum mismatch mismatch;
af92a82d 897 const char *symbol_white_list[20];
10668220
SR
898};
899
900const struct sectioncheck sectioncheck[] = {
901/* Do not reference init/exit code/data from
902 * normal code and data
903 */
904{
588ccd73
SR
905 .fromsec = { TEXT_SECTIONS, NULL },
906 .tosec = { ALL_INIT_SECTIONS, NULL },
bbd3f4fb 907 .mismatch = TEXT_TO_ANY_INIT,
af92a82d 908 .symbol_white_list = { DEFAULT_SYMBOL_WHITE_LIST, NULL },
588ccd73
SR
909},
910{
911 .fromsec = { DATA_SECTIONS, NULL },
0db25245 912 .tosec = { ALL_XXXINIT_SECTIONS, NULL },
bbd3f4fb 913 .mismatch = DATA_TO_ANY_INIT,
af92a82d 914 .symbol_white_list = { DEFAULT_SYMBOL_WHITE_LIST, NULL },
588ccd73 915},
0db25245
UKK
916{
917 .fromsec = { DATA_SECTIONS, NULL },
918 .tosec = { INIT_SECTIONS, NULL },
919 .mismatch = DATA_TO_ANY_INIT,
920 .symbol_white_list = {
921 "*_template", "*_timer", "*_sht", "*_ops",
922 "*_probe", "*_probe_one", "*_console", NULL
923 },
924},
588ccd73
SR
925{
926 .fromsec = { TEXT_SECTIONS, NULL },
927 .tosec = { ALL_EXIT_SECTIONS, NULL },
bbd3f4fb 928 .mismatch = TEXT_TO_ANY_EXIT,
af92a82d 929 .symbol_white_list = { DEFAULT_SYMBOL_WHITE_LIST, NULL },
588ccd73
SR
930},
931{
932 .fromsec = { DATA_SECTIONS, NULL },
933 .tosec = { ALL_EXIT_SECTIONS, NULL },
bbd3f4fb 934 .mismatch = DATA_TO_ANY_EXIT,
af92a82d 935 .symbol_white_list = { DEFAULT_SYMBOL_WHITE_LIST, NULL },
eb8f6890
SR
936},
937/* Do not reference init code/data from devinit/cpuinit/meminit code/data */
938{
4a31a229 939 .fromsec = { ALL_XXXINIT_SECTIONS, NULL },
588ccd73 940 .tosec = { INIT_SECTIONS, NULL },
bbd3f4fb 941 .mismatch = XXXINIT_TO_SOME_INIT,
af92a82d 942 .symbol_white_list = { DEFAULT_SYMBOL_WHITE_LIST, NULL },
eb8f6890 943},
fd6c3a8d
JB
944/* Do not reference cpuinit code/data from meminit code/data */
945{
946 .fromsec = { MEM_INIT_SECTIONS, NULL },
947 .tosec = { CPU_INIT_SECTIONS, NULL },
bbd3f4fb 948 .mismatch = XXXINIT_TO_SOME_INIT,
af92a82d 949 .symbol_white_list = { DEFAULT_SYMBOL_WHITE_LIST, NULL },
fd6c3a8d
JB
950},
951/* Do not reference meminit code/data from cpuinit code/data */
952{
953 .fromsec = { CPU_INIT_SECTIONS, NULL },
954 .tosec = { MEM_INIT_SECTIONS, NULL },
bbd3f4fb 955 .mismatch = XXXINIT_TO_SOME_INIT,
af92a82d 956 .symbol_white_list = { DEFAULT_SYMBOL_WHITE_LIST, NULL },
fd6c3a8d 957},
eb8f6890
SR
958/* Do not reference exit code/data from devexit/cpuexit/memexit code/data */
959{
4a31a229 960 .fromsec = { ALL_XXXEXIT_SECTIONS, NULL },
588ccd73 961 .tosec = { EXIT_SECTIONS, NULL },
bbd3f4fb 962 .mismatch = XXXEXIT_TO_SOME_EXIT,
af92a82d 963 .symbol_white_list = { DEFAULT_SYMBOL_WHITE_LIST, NULL },
10668220 964},
fd6c3a8d
JB
965/* Do not reference cpuexit code/data from memexit code/data */
966{
967 .fromsec = { MEM_EXIT_SECTIONS, NULL },
968 .tosec = { CPU_EXIT_SECTIONS, NULL },
bbd3f4fb 969 .mismatch = XXXEXIT_TO_SOME_EXIT,
af92a82d 970 .symbol_white_list = { DEFAULT_SYMBOL_WHITE_LIST, NULL },
fd6c3a8d
JB
971},
972/* Do not reference memexit code/data from cpuexit code/data */
973{
974 .fromsec = { CPU_EXIT_SECTIONS, NULL },
975 .tosec = { MEM_EXIT_SECTIONS, NULL },
bbd3f4fb 976 .mismatch = XXXEXIT_TO_SOME_EXIT,
af92a82d 977 .symbol_white_list = { DEFAULT_SYMBOL_WHITE_LIST, NULL },
fd6c3a8d 978},
10668220
SR
979/* Do not use exit code/data from init code */
980{
eb8f6890
SR
981 .fromsec = { ALL_INIT_SECTIONS, NULL },
982 .tosec = { ALL_EXIT_SECTIONS, NULL },
bbd3f4fb 983 .mismatch = ANY_INIT_TO_ANY_EXIT,
af92a82d 984 .symbol_white_list = { DEFAULT_SYMBOL_WHITE_LIST, NULL },
10668220
SR
985},
986/* Do not use init code/data from exit code */
987{
eb8f6890 988 .fromsec = { ALL_EXIT_SECTIONS, NULL },
588ccd73 989 .tosec = { ALL_INIT_SECTIONS, NULL },
bbd3f4fb 990 .mismatch = ANY_EXIT_TO_ANY_INIT,
af92a82d 991 .symbol_white_list = { DEFAULT_SYMBOL_WHITE_LIST, NULL },
10668220
SR
992},
993/* Do not export init/exit functions or data */
994{
995 .fromsec = { "__ksymtab*", NULL },
fa95eb1f 996 .tosec = { INIT_SECTIONS, EXIT_SECTIONS, NULL },
af92a82d
UKK
997 .mismatch = EXPORT_TO_INIT_EXIT,
998 .symbol_white_list = { DEFAULT_SYMBOL_WHITE_LIST, NULL },
10668220
SR
999}
1000};
1001
0d2a636e
UKK
1002static const struct sectioncheck *section_mismatch(
1003 const char *fromsec, const char *tosec)
10668220
SR
1004{
1005 int i;
1006 int elems = sizeof(sectioncheck) / sizeof(struct sectioncheck);
1007 const struct sectioncheck *check = &sectioncheck[0];
1008
1009 for (i = 0; i < elems; i++) {
1010 if (match(fromsec, check->fromsec) &&
1011 match(tosec, check->tosec))
0d2a636e 1012 return check;
10668220
SR
1013 check++;
1014 }
0d2a636e 1015 return NULL;
10668220
SR
1016}
1017
4c8fbca5
SR
1018/**
1019 * Whitelist to allow certain references to pass with no warning.
0e0d314e 1020 *
4c8fbca5
SR
1021 * Pattern 1:
1022 * If a module parameter is declared __initdata and permissions=0
1023 * then this is legal despite the warning generated.
1024 * We cannot see value of permissions here, so just ignore
1025 * this pattern.
1026 * The pattern is identified by:
1027 * tosec = .init.data
9209aed0 1028 * fromsec = .data*
4c8fbca5 1029 * atsym =__param*
62070fa4 1030 *
4c8fbca5 1031 * Pattern 2:
72ee59b5 1032 * Many drivers utilise a *driver container with references to
4c8fbca5 1033 * add, remove, probe functions etc.
b75dcabd 1034 * These functions may often be marked __devinit and we do not want to
4c8fbca5
SR
1035 * warn here.
1036 * the pattern is identified by:
83cda2bb
SR
1037 * tosec = init or exit section
1038 * fromsec = data section
df578e7d
SR
1039 * atsym = *driver, *_template, *_sht, *_ops, *_probe,
1040 * *probe_one, *_console, *_timer
ee6a8545
VG
1041 *
1042 * Pattern 3:
c993971f 1043 * Whitelist all references from .head.text to any init section
9bf8cb9b 1044 *
1d8af559 1045 * Pattern 4:
ee6a8545
VG
1046 * Some symbols belong to init section but still it is ok to reference
1047 * these from non-init sections as these symbols don't have any memory
1048 * allocated for them and symbol address and value are same. So even
1049 * if init section is freed, its ok to reference those symbols.
1050 * For ex. symbols marking the init section boundaries.
1051 * This pattern is identified by
1052 * refsymname = __init_begin, _sinittext, _einittext
9bf8cb9b 1053 *
4c8fbca5 1054 **/
af92a82d
UKK
1055static int secref_whitelist(const struct sectioncheck *mismatch,
1056 const char *fromsec, const char *fromsym,
58fb0d4f 1057 const char *tosec, const char *tosym)
4c8fbca5 1058{
4c8fbca5 1059 /* Check for pattern 1 */
6c5bd235
SR
1060 if (match(tosec, init_data_sections) &&
1061 match(fromsec, data_sections) &&
58fb0d4f
SR
1062 (strncmp(fromsym, "__param", strlen("__param")) == 0))
1063 return 0;
4c8fbca5
SR
1064
1065 /* Check for pattern 2 */
6c5bd235
SR
1066 if (match(tosec, init_exit_sections) &&
1067 match(fromsec, data_sections) &&
af92a82d 1068 match(fromsym, mismatch->symbol_white_list))
58fb0d4f 1069 return 0;
4c8fbca5 1070
9bf8cb9b 1071 /* Check for pattern 3 */
6c5bd235
SR
1072 if (match(fromsec, head_sections) &&
1073 match(tosec, init_sections))
58fb0d4f 1074 return 0;
9bf8cb9b 1075
1d8af559 1076 /* Check for pattern 4 */
58fb0d4f
SR
1077 if (match(tosym, linker_symbols))
1078 return 0;
9bf8cb9b 1079
58fb0d4f 1080 return 1;
4c8fbca5
SR
1081}
1082
93684d3b
SR
1083/**
1084 * Find symbol based on relocation record info.
1085 * In some cases the symbol supplied is a valid symbol so
1086 * return refsym. If st_name != 0 we assume this is a valid symbol.
1087 * In other cases the symbol needs to be looked up in the symbol table
1088 * based on section and address.
1089 * **/
9ad21c3f 1090static Elf_Sym *find_elf_symbol(struct elf_info *elf, Elf64_Sword addr,
93684d3b
SR
1091 Elf_Sym *relsym)
1092{
1093 Elf_Sym *sym;
9ad21c3f
SR
1094 Elf_Sym *near = NULL;
1095 Elf64_Sword distance = 20;
1096 Elf64_Sword d;
1ce53adf 1097 unsigned int relsym_secindex;
93684d3b
SR
1098
1099 if (relsym->st_name != 0)
1100 return relsym;
1ce53adf
DV
1101
1102 relsym_secindex = get_secindex(elf, relsym);
93684d3b 1103 for (sym = elf->symtab_start; sym < elf->symtab_stop; sym++) {
1ce53adf 1104 if (get_secindex(elf, sym) != relsym_secindex)
93684d3b 1105 continue;
ae4ac123
AN
1106 if (ELF_ST_TYPE(sym->st_info) == STT_SECTION)
1107 continue;
93684d3b
SR
1108 if (sym->st_value == addr)
1109 return sym;
9ad21c3f
SR
1110 /* Find a symbol nearby - addr are maybe negative */
1111 d = sym->st_value - addr;
1112 if (d < 0)
1113 d = addr - sym->st_value;
1114 if (d < distance) {
1115 distance = d;
1116 near = sym;
1117 }
93684d3b 1118 }
9ad21c3f
SR
1119 /* We need a close match */
1120 if (distance < 20)
1121 return near;
1122 else
1123 return NULL;
93684d3b
SR
1124}
1125
da68d61f
DB
1126static inline int is_arm_mapping_symbol(const char *str)
1127{
1128 return str[0] == '$' && strchr("atd", str[1])
1129 && (str[2] == '\0' || str[2] == '.');
1130}
1131
1132/*
1133 * If there's no name there, ignore it; likewise, ignore it if it's
1134 * one of the magic symbols emitted used by current ARM tools.
1135 *
1136 * Otherwise if find_symbols_between() returns those symbols, they'll
1137 * fail the whitelist tests and cause lots of false alarms ... fixable
1138 * only by merging __exit and __init sections into __text, bloating
1139 * the kernel (which is especially evil on embedded platforms).
1140 */
1141static inline int is_valid_name(struct elf_info *elf, Elf_Sym *sym)
1142{
1143 const char *name = elf->strtab + sym->st_name;
1144
1145 if (!name || !strlen(name))
1146 return 0;
1147 return !is_arm_mapping_symbol(name);
1148}
1149
b39927cf 1150/*
43c74d17
SR
1151 * Find symbols before or equal addr and after addr - in the section sec.
1152 * If we find two symbols with equal offset prefer one with a valid name.
1153 * The ELF format may have a better way to detect what type of symbol
1154 * it is, but this works for now.
b39927cf 1155 **/
157c23c8
SR
1156static Elf_Sym *find_elf_symbol2(struct elf_info *elf, Elf_Addr addr,
1157 const char *sec)
b39927cf
SR
1158{
1159 Elf_Sym *sym;
157c23c8 1160 Elf_Sym *near = NULL;
157c23c8 1161 Elf_Addr distance = ~0;
62070fa4 1162
b39927cf
SR
1163 for (sym = elf->symtab_start; sym < elf->symtab_stop; sym++) {
1164 const char *symsec;
1165
1ce53adf 1166 if (is_shndx_special(sym->st_shndx))
b39927cf 1167 continue;
1ce53adf 1168 symsec = sec_name(elf, get_secindex(elf, sym));
b39927cf
SR
1169 if (strcmp(symsec, sec) != 0)
1170 continue;
da68d61f
DB
1171 if (!is_valid_name(elf, sym))
1172 continue;
b39927cf 1173 if (sym->st_value <= addr) {
157c23c8
SR
1174 if ((addr - sym->st_value) < distance) {
1175 distance = addr - sym->st_value;
1176 near = sym;
1177 } else if ((addr - sym->st_value) == distance) {
1178 near = sym;
43c74d17 1179 }
b39927cf
SR
1180 }
1181 }
157c23c8 1182 return near;
b39927cf
SR
1183}
1184
588ccd73
SR
1185/*
1186 * Convert a section name to the function/data attribute
1187 * .init.text => __init
1188 * .cpuinit.data => __cpudata
1189 * .memexitconst => __memconst
1190 * etc.
1191*/
1192static char *sec2annotation(const char *s)
1193{
1194 if (match(s, init_exit_sections)) {
1195 char *p = malloc(20);
1196 char *r = p;
1197
1198 *p++ = '_';
1199 *p++ = '_';
1200 if (*s == '.')
1201 s++;
1202 while (*s && *s != '.')
1203 *p++ = *s++;
1204 *p = '\0';
1205 if (*s == '.')
1206 s++;
1207 if (strstr(s, "rodata") != NULL)
1208 strcat(p, "const ");
1209 else if (strstr(s, "data") != NULL)
1210 strcat(p, "data ");
1211 else
1212 strcat(p, " ");
1213 return r; /* we leak her but we do not care */
1214 } else {
1215 return "";
1216 }
1217}
1218
1219static int is_function(Elf_Sym *sym)
1220{
1221 if (sym)
1222 return ELF_ST_TYPE(sym->st_info) == STT_FUNC;
1223 else
f666751a 1224 return -1;
588ccd73
SR
1225}
1226
58fb0d4f 1227/*
b39927cf
SR
1228 * Print a warning about a section mismatch.
1229 * Try to find symbols near it so user can find it.
4c8fbca5 1230 * Check whitelist before warning - it may be a false positive.
58fb0d4f 1231 */
0d2a636e
UKK
1232static void report_sec_mismatch(const char *modname,
1233 const struct sectioncheck *mismatch,
58fb0d4f
SR
1234 const char *fromsec,
1235 unsigned long long fromaddr,
1236 const char *fromsym,
588ccd73
SR
1237 int from_is_func,
1238 const char *tosec, const char *tosym,
1239 int to_is_func)
1240{
1241 const char *from, *from_p;
1242 const char *to, *to_p;
f666751a
SR
1243
1244 switch (from_is_func) {
1245 case 0: from = "variable"; from_p = ""; break;
1246 case 1: from = "function"; from_p = "()"; break;
1247 default: from = "(unknown reference)"; from_p = ""; break;
1248 }
1249 switch (to_is_func) {
1250 case 0: to = "variable"; to_p = ""; break;
1251 case 1: to = "function"; to_p = "()"; break;
1252 default: to = "(unknown reference)"; to_p = ""; break;
1253 }
588ccd73 1254
e5f95c8b
SR
1255 sec_mismatch_count++;
1256 if (!sec_mismatch_verbose)
1257 return;
1258
7c0ac495
GU
1259 warn("%s(%s+0x%llx): Section mismatch in reference from the %s %s%s "
1260 "to the %s %s:%s%s\n",
1261 modname, fromsec, fromaddr, from, fromsym, from_p, to, tosec,
1262 tosym, to_p);
588ccd73 1263
0d2a636e 1264 switch (mismatch->mismatch) {
bbd3f4fb 1265 case TEXT_TO_ANY_INIT:
588ccd73 1266 fprintf(stderr,
f666751a 1267 "The function %s%s() references\n"
588ccd73
SR
1268 "the %s %s%s%s.\n"
1269 "This is often because %s lacks a %s\n"
1270 "annotation or the annotation of %s is wrong.\n",
1271 sec2annotation(fromsec), fromsym,
1272 to, sec2annotation(tosec), tosym, to_p,
1273 fromsym, sec2annotation(tosec), tosym);
1274 break;
bbd3f4fb 1275 case DATA_TO_ANY_INIT: {
af92a82d 1276 const char *const *s = mismatch->symbol_white_list;
588ccd73
SR
1277 fprintf(stderr,
1278 "The variable %s references\n"
1279 "the %s %s%s%s\n"
1280 "If the reference is valid then annotate the\n"
8b8b76c0 1281 "variable with __init* or __refdata (see linux/init.h) "
588ccd73
SR
1282 "or name the variable:\n",
1283 fromsym, to, sec2annotation(tosec), tosym, to_p);
1284 while (*s)
1285 fprintf(stderr, "%s, ", *s++);
1286 fprintf(stderr, "\n");
1287 break;
58fb0d4f 1288 }
bbd3f4fb 1289 case TEXT_TO_ANY_EXIT:
588ccd73
SR
1290 fprintf(stderr,
1291 "The function %s() references a %s in an exit section.\n"
1292 "Often the %s %s%s has valid usage outside the exit section\n"
1293 "and the fix is to remove the %sannotation of %s.\n",
1294 fromsym, to, to, tosym, to_p, sec2annotation(tosec), tosym);
1295 break;
bbd3f4fb 1296 case DATA_TO_ANY_EXIT: {
af92a82d 1297 const char *const *s = mismatch->symbol_white_list;
588ccd73
SR
1298 fprintf(stderr,
1299 "The variable %s references\n"
1300 "the %s %s%s%s\n"
1301 "If the reference is valid then annotate the\n"
1302 "variable with __exit* (see linux/init.h) or "
1303 "name the variable:\n",
1304 fromsym, to, sec2annotation(tosec), tosym, to_p);
1305 while (*s)
1306 fprintf(stderr, "%s, ", *s++);
1307 fprintf(stderr, "\n");
1308 break;
1309 }
bbd3f4fb
UKK
1310 case XXXINIT_TO_SOME_INIT:
1311 case XXXEXIT_TO_SOME_EXIT:
588ccd73
SR
1312 fprintf(stderr,
1313 "The %s %s%s%s references\n"
1314 "a %s %s%s%s.\n"
1315 "If %s is only used by %s then\n"
1316 "annotate %s with a matching annotation.\n",
1317 from, sec2annotation(fromsec), fromsym, from_p,
1318 to, sec2annotation(tosec), tosym, to_p,
b1d2675a 1319 tosym, fromsym, tosym);
588ccd73 1320 break;
bbd3f4fb 1321 case ANY_INIT_TO_ANY_EXIT:
588ccd73
SR
1322 fprintf(stderr,
1323 "The %s %s%s%s references\n"
1324 "a %s %s%s%s.\n"
1325 "This is often seen when error handling "
1326 "in the init function\n"
1327 "uses functionality in the exit path.\n"
1328 "The fix is often to remove the %sannotation of\n"
1329 "%s%s so it may be used outside an exit section.\n",
1330 from, sec2annotation(fromsec), fromsym, from_p,
1331 to, sec2annotation(tosec), tosym, to_p,
1332 sec2annotation(tosec), tosym, to_p);
1333 break;
bbd3f4fb 1334 case ANY_EXIT_TO_ANY_INIT:
588ccd73
SR
1335 fprintf(stderr,
1336 "The %s %s%s%s references\n"
1337 "a %s %s%s%s.\n"
1338 "This is often seen when error handling "
1339 "in the exit function\n"
1340 "uses functionality in the init path.\n"
1341 "The fix is often to remove the %sannotation of\n"
1342 "%s%s so it may be used outside an init section.\n",
1343 from, sec2annotation(fromsec), fromsym, from_p,
1344 to, sec2annotation(tosec), tosym, to_p,
1345 sec2annotation(tosec), tosym, to_p);
1346 break;
1347 case EXPORT_TO_INIT_EXIT:
1348 fprintf(stderr,
1349 "The symbol %s is exported and annotated %s\n"
1350 "Fix this by removing the %sannotation of %s "
1351 "or drop the export.\n",
1352 tosym, sec2annotation(tosec), sec2annotation(tosec), tosym);
588ccd73
SR
1353 break;
1354 }
1355 fprintf(stderr, "\n");
58fb0d4f
SR
1356}
1357
1358static void check_section_mismatch(const char *modname, struct elf_info *elf,
1359 Elf_Rela *r, Elf_Sym *sym, const char *fromsec)
1360{
1361 const char *tosec;
0d2a636e 1362 const struct sectioncheck *mismatch;
58fb0d4f 1363
1ce53adf 1364 tosec = sec_name(elf, get_secindex(elf, sym));
588ccd73 1365 mismatch = section_mismatch(fromsec, tosec);
0d2a636e 1366 if (mismatch) {
588ccd73
SR
1367 Elf_Sym *to;
1368 Elf_Sym *from;
58fb0d4f 1369 const char *tosym;
588ccd73 1370 const char *fromsym;
58fb0d4f 1371
588ccd73
SR
1372 from = find_elf_symbol2(elf, r->r_offset, fromsec);
1373 fromsym = sym_name(elf, from);
1374 to = find_elf_symbol(elf, r->r_addend, sym);
1375 tosym = sym_name(elf, to);
58fb0d4f
SR
1376
1377 /* check whitelist - we may ignore it */
af92a82d
UKK
1378 if (secref_whitelist(mismatch,
1379 fromsec, fromsym, tosec, tosym)) {
588ccd73
SR
1380 report_sec_mismatch(modname, mismatch,
1381 fromsec, r->r_offset, fromsym,
1382 is_function(from), tosec, tosym,
1383 is_function(to));
58fb0d4f 1384 }
b39927cf
SR
1385 }
1386}
1387
ae4ac123 1388static unsigned int *reloc_location(struct elf_info *elf,
5b24c071 1389 Elf_Shdr *sechdr, Elf_Rela *r)
ae4ac123
AN
1390{
1391 Elf_Shdr *sechdrs = elf->sechdrs;
1ce53adf 1392 int section = shndx2secindex(sechdr->sh_info);
ae4ac123
AN
1393
1394 return (void *)elf->hdr + sechdrs[section].sh_offset +
1395 (r->r_offset - sechdrs[section].sh_addr);
1396}
1397
5b24c071 1398static int addend_386_rel(struct elf_info *elf, Elf_Shdr *sechdr, Elf_Rela *r)
ae4ac123
AN
1399{
1400 unsigned int r_typ = ELF_R_TYPE(r->r_info);
5b24c071 1401 unsigned int *location = reloc_location(elf, sechdr, r);
ae4ac123
AN
1402
1403 switch (r_typ) {
1404 case R_386_32:
1405 r->r_addend = TO_NATIVE(*location);
1406 break;
1407 case R_386_PC32:
1408 r->r_addend = TO_NATIVE(*location) + 4;
1409 /* For CONFIG_RELOCATABLE=y */
1410 if (elf->hdr->e_type == ET_EXEC)
1411 r->r_addend += r->r_offset;
1412 break;
1413 }
1414 return 0;
1415}
1416
5b24c071 1417static int addend_arm_rel(struct elf_info *elf, Elf_Shdr *sechdr, Elf_Rela *r)
56a974fa
SR
1418{
1419 unsigned int r_typ = ELF_R_TYPE(r->r_info);
1420
1421 switch (r_typ) {
1422 case R_ARM_ABS32:
1423 /* From ARM ABI: (S + A) | T */
df578e7d
SR
1424 r->r_addend = (int)(long)
1425 (elf->symtab_start + ELF_R_SYM(r->r_info));
56a974fa
SR
1426 break;
1427 case R_ARM_PC24:
1428 /* From ARM ABI: ((S + A) | T) - P */
df578e7d 1429 r->r_addend = (int)(long)(elf->hdr +
5b24c071
SR
1430 sechdr->sh_offset +
1431 (r->r_offset - sechdr->sh_addr));
56a974fa
SR
1432 break;
1433 default:
1434 return 1;
1435 }
1436 return 0;
1437}
1438
5b24c071 1439static int addend_mips_rel(struct elf_info *elf, Elf_Shdr *sechdr, Elf_Rela *r)
ae4ac123
AN
1440{
1441 unsigned int r_typ = ELF_R_TYPE(r->r_info);
5b24c071 1442 unsigned int *location = reloc_location(elf, sechdr, r);
ae4ac123
AN
1443 unsigned int inst;
1444
1445 if (r_typ == R_MIPS_HI16)
1446 return 1; /* skip this */
1447 inst = TO_NATIVE(*location);
1448 switch (r_typ) {
1449 case R_MIPS_LO16:
1450 r->r_addend = inst & 0xffff;
1451 break;
1452 case R_MIPS_26:
1453 r->r_addend = (inst & 0x03ffffff) << 2;
1454 break;
1455 case R_MIPS_32:
1456 r->r_addend = inst;
1457 break;
1458 }
1459 return 0;
1460}
1461
5b24c071 1462static void section_rela(const char *modname, struct elf_info *elf,
10668220 1463 Elf_Shdr *sechdr)
5b24c071
SR
1464{
1465 Elf_Sym *sym;
1466 Elf_Rela *rela;
1467 Elf_Rela r;
1468 unsigned int r_sym;
1469 const char *fromsec;
5b24c071 1470
ff13f926 1471 Elf_Rela *start = (void *)elf->hdr + sechdr->sh_offset;
5b24c071
SR
1472 Elf_Rela *stop = (void *)start + sechdr->sh_size;
1473
ff13f926 1474 fromsec = sech_name(elf, sechdr);
5b24c071
SR
1475 fromsec += strlen(".rela");
1476 /* if from section (name) is know good then skip it */
b614a697 1477 if (match(fromsec, section_white_list))
5b24c071 1478 return;
e241a630 1479
5b24c071
SR
1480 for (rela = start; rela < stop; rela++) {
1481 r.r_offset = TO_NATIVE(rela->r_offset);
1482#if KERNEL_ELFCLASS == ELFCLASS64
ff13f926 1483 if (elf->hdr->e_machine == EM_MIPS) {
5b24c071
SR
1484 unsigned int r_typ;
1485 r_sym = ELF64_MIPS_R_SYM(rela->r_info);
1486 r_sym = TO_NATIVE(r_sym);
1487 r_typ = ELF64_MIPS_R_TYPE(rela->r_info);
1488 r.r_info = ELF64_R_INFO(r_sym, r_typ);
1489 } else {
1490 r.r_info = TO_NATIVE(rela->r_info);
1491 r_sym = ELF_R_SYM(r.r_info);
1492 }
1493#else
1494 r.r_info = TO_NATIVE(rela->r_info);
1495 r_sym = ELF_R_SYM(r.r_info);
1496#endif
1497 r.r_addend = TO_NATIVE(rela->r_addend);
1498 sym = elf->symtab_start + r_sym;
1499 /* Skip special sections */
1ce53adf 1500 if (is_shndx_special(sym->st_shndx))
5b24c071 1501 continue;
58fb0d4f 1502 check_section_mismatch(modname, elf, &r, sym, fromsec);
5b24c071
SR
1503 }
1504}
1505
1506static void section_rel(const char *modname, struct elf_info *elf,
10668220 1507 Elf_Shdr *sechdr)
5b24c071
SR
1508{
1509 Elf_Sym *sym;
1510 Elf_Rel *rel;
1511 Elf_Rela r;
1512 unsigned int r_sym;
1513 const char *fromsec;
5b24c071 1514
ff13f926 1515 Elf_Rel *start = (void *)elf->hdr + sechdr->sh_offset;
5b24c071
SR
1516 Elf_Rel *stop = (void *)start + sechdr->sh_size;
1517
ff13f926 1518 fromsec = sech_name(elf, sechdr);
5b24c071
SR
1519 fromsec += strlen(".rel");
1520 /* if from section (name) is know good then skip it */
b614a697 1521 if (match(fromsec, section_white_list))
5b24c071
SR
1522 return;
1523
1524 for (rel = start; rel < stop; rel++) {
1525 r.r_offset = TO_NATIVE(rel->r_offset);
1526#if KERNEL_ELFCLASS == ELFCLASS64
ff13f926 1527 if (elf->hdr->e_machine == EM_MIPS) {
5b24c071
SR
1528 unsigned int r_typ;
1529 r_sym = ELF64_MIPS_R_SYM(rel->r_info);
1530 r_sym = TO_NATIVE(r_sym);
1531 r_typ = ELF64_MIPS_R_TYPE(rel->r_info);
1532 r.r_info = ELF64_R_INFO(r_sym, r_typ);
1533 } else {
1534 r.r_info = TO_NATIVE(rel->r_info);
1535 r_sym = ELF_R_SYM(r.r_info);
1536 }
1537#else
1538 r.r_info = TO_NATIVE(rel->r_info);
1539 r_sym = ELF_R_SYM(r.r_info);
1540#endif
1541 r.r_addend = 0;
ff13f926 1542 switch (elf->hdr->e_machine) {
5b24c071
SR
1543 case EM_386:
1544 if (addend_386_rel(elf, sechdr, &r))
1545 continue;
1546 break;
1547 case EM_ARM:
1548 if (addend_arm_rel(elf, sechdr, &r))
1549 continue;
1550 break;
1551 case EM_MIPS:
1552 if (addend_mips_rel(elf, sechdr, &r))
1553 continue;
1554 break;
1555 }
1556 sym = elf->symtab_start + r_sym;
1557 /* Skip special sections */
1ce53adf 1558 if (is_shndx_special(sym->st_shndx))
5b24c071 1559 continue;
58fb0d4f 1560 check_section_mismatch(modname, elf, &r, sym, fromsec);
5b24c071
SR
1561 }
1562}
1563
b39927cf
SR
1564/**
1565 * A module includes a number of sections that are discarded
1566 * either when loaded or when used as built-in.
1567 * For loaded modules all functions marked __init and all data
1568 * marked __initdata will be discarded when the module has been intialized.
1569 * Likewise for modules used built-in the sections marked __exit
1570 * are discarded because __exit marked function are supposed to be called
32be1d22 1571 * only when a module is unloaded which never happens for built-in modules.
b39927cf
SR
1572 * The check_sec_ref() function traverses all relocation records
1573 * to find all references to a section that reference a section that will
1574 * be discarded and warns about it.
1575 **/
1576static void check_sec_ref(struct module *mod, const char *modname,
10668220 1577 struct elf_info *elf)
b39927cf
SR
1578{
1579 int i;
b39927cf 1580 Elf_Shdr *sechdrs = elf->sechdrs;
62070fa4 1581
b39927cf 1582 /* Walk through all sections */
1ce53adf 1583 for (i = 0; i < elf->num_sections; i++) {
b614a697 1584 check_section(modname, elf, &elf->sechdrs[i]);
b39927cf 1585 /* We want to process only relocation sections and not .init */
5b24c071 1586 if (sechdrs[i].sh_type == SHT_RELA)
10668220 1587 section_rela(modname, elf, &elf->sechdrs[i]);
5b24c071 1588 else if (sechdrs[i].sh_type == SHT_REL)
10668220 1589 section_rel(modname, elf, &elf->sechdrs[i]);
b39927cf
SR
1590 }
1591}
1592
5c3ead8c 1593static void read_symbols(char *modname)
1da177e4
LT
1594{
1595 const char *symname;
1596 char *version;
b817f6fe 1597 char *license;
1da177e4
LT
1598 struct module *mod;
1599 struct elf_info info = { };
1600 Elf_Sym *sym;
1601
85bd2fdd
SR
1602 if (!parse_elf(&info, modname))
1603 return;
1da177e4
LT
1604
1605 mod = new_module(modname);
1606
1607 /* When there's no vmlinux, don't print warnings about
1608 * unresolved symbols (since there'll be too many ;) */
1609 if (is_vmlinux(modname)) {
1da177e4 1610 have_vmlinux = 1;
1da177e4
LT
1611 mod->skip = 1;
1612 }
1613
b817f6fe 1614 license = get_modinfo(info.modinfo, info.modinfo_len, "license");
2fa36568
SR
1615 if (info.modinfo && !license && !is_vmlinux(modname))
1616 warn("modpost: missing MODULE_LICENSE() in %s\n"
1617 "see include/linux/module.h for "
1618 "more information\n", modname);
b817f6fe
SR
1619 while (license) {
1620 if (license_is_gpl_compatible(license))
1621 mod->gpl_compatible = 1;
1622 else {
1623 mod->gpl_compatible = 0;
1624 break;
1625 }
1626 license = get_next_modinfo(info.modinfo, info.modinfo_len,
1627 "license", license);
1628 }
1629
1da177e4
LT
1630 for (sym = info.symtab_start; sym < info.symtab_stop; sym++) {
1631 symname = info.strtab + sym->st_name;
1632
1633 handle_modversions(mod, &info, sym, symname);
1634 handle_moddevtable(mod, &info, sym, symname);
1635 }
d1f25e66 1636 if (!is_vmlinux(modname) ||
10668220
SR
1637 (is_vmlinux(modname) && vmlinux_section_warnings))
1638 check_sec_ref(mod, modname, &info);
1da177e4
LT
1639
1640 version = get_modinfo(info.modinfo, info.modinfo_len, "version");
1641 if (version)
1642 maybe_frob_rcs_version(modname, version, info.modinfo,
1643 version - (char *)info.hdr);
1644 if (version || (all_versions && !is_vmlinux(modname)))
1645 get_src_version(modname, mod->srcversion,
1646 sizeof(mod->srcversion)-1);
1647
1648 parse_elf_finish(&info);
1649
8c8ef42a 1650 /* Our trick to get versioning for module struct etc. - it's
1da177e4
LT
1651 * never passed as an argument to an exported function, so
1652 * the automatic versioning doesn't pick it up, but it's really
1653 * important anyhow */
1654 if (modversions)
8c8ef42a 1655 mod->unres = alloc_symbol("module_layout", 0, mod->unres);
1da177e4
LT
1656}
1657
1658#define SZ 500
1659
1660/* We first write the generated file into memory using the
1661 * following helper, then compare to the file on disk and
1662 * only update the later if anything changed */
1663
5c3ead8c
SR
1664void __attribute__((format(printf, 2, 3))) buf_printf(struct buffer *buf,
1665 const char *fmt, ...)
1da177e4
LT
1666{
1667 char tmp[SZ];
1668 int len;
1669 va_list ap;
62070fa4 1670
1da177e4
LT
1671 va_start(ap, fmt);
1672 len = vsnprintf(tmp, SZ, fmt, ap);
7670f023 1673 buf_write(buf, tmp, len);
1da177e4
LT
1674 va_end(ap);
1675}
1676
5c3ead8c 1677void buf_write(struct buffer *buf, const char *s, int len)
1da177e4
LT
1678{
1679 if (buf->size - buf->pos < len) {
7670f023 1680 buf->size += len + SZ;
1da177e4
LT
1681 buf->p = realloc(buf->p, buf->size);
1682 }
1683 strncpy(buf->p + buf->pos, s, len);
1684 buf->pos += len;
1685}
1686
c96fca21
SR
1687static void check_for_gpl_usage(enum export exp, const char *m, const char *s)
1688{
1689 const char *e = is_vmlinux(m) ?"":".ko";
1690
1691 switch (exp) {
1692 case export_gpl:
1693 fatal("modpost: GPL-incompatible module %s%s "
1694 "uses GPL-only symbol '%s'\n", m, e, s);
1695 break;
1696 case export_unused_gpl:
1697 fatal("modpost: GPL-incompatible module %s%s "
1698 "uses GPL-only symbol marked UNUSED '%s'\n", m, e, s);
1699 break;
1700 case export_gpl_future:
1701 warn("modpost: GPL-incompatible module %s%s "
1702 "uses future GPL-only symbol '%s'\n", m, e, s);
1703 break;
1704 case export_plain:
1705 case export_unused:
1706 case export_unknown:
1707 /* ignore */
1708 break;
1709 }
1710}
1711
df578e7d 1712static void check_for_unused(enum export exp, const char *m, const char *s)
c96fca21
SR
1713{
1714 const char *e = is_vmlinux(m) ?"":".ko";
1715
1716 switch (exp) {
1717 case export_unused:
1718 case export_unused_gpl:
1719 warn("modpost: module %s%s "
1720 "uses symbol '%s' marked UNUSED\n", m, e, s);
1721 break;
1722 default:
1723 /* ignore */
1724 break;
1725 }
1726}
1727
1728static void check_exports(struct module *mod)
b817f6fe
SR
1729{
1730 struct symbol *s, *exp;
1731
1732 for (s = mod->unres; s; s = s->next) {
6449bd62 1733 const char *basename;
b817f6fe
SR
1734 exp = find_symbol(s->name);
1735 if (!exp || exp->module == mod)
1736 continue;
6449bd62 1737 basename = strrchr(mod->name, '/');
b817f6fe
SR
1738 if (basename)
1739 basename++;
c96fca21
SR
1740 else
1741 basename = mod->name;
1742 if (!mod->gpl_compatible)
1743 check_for_gpl_usage(exp->export, basename, exp->name);
1744 check_for_unused(exp->export, basename, exp->name);
df578e7d 1745 }
b817f6fe
SR
1746}
1747
5c3ead8c
SR
1748/**
1749 * Header for the generated file
1750 **/
1751static void add_header(struct buffer *b, struct module *mod)
1da177e4
LT
1752{
1753 buf_printf(b, "#include <linux/module.h>\n");
1754 buf_printf(b, "#include <linux/vermagic.h>\n");
1755 buf_printf(b, "#include <linux/compiler.h>\n");
1756 buf_printf(b, "\n");
1757 buf_printf(b, "MODULE_INFO(vermagic, VERMAGIC_STRING);\n");
1758 buf_printf(b, "\n");
1da177e4
LT
1759 buf_printf(b, "struct module __this_module\n");
1760 buf_printf(b, "__attribute__((section(\".gnu.linkonce.this_module\"))) = {\n");
f83b5e32 1761 buf_printf(b, " .name = KBUILD_MODNAME,\n");
1da177e4
LT
1762 if (mod->has_init)
1763 buf_printf(b, " .init = init_module,\n");
1764 if (mod->has_cleanup)
1765 buf_printf(b, "#ifdef CONFIG_MODULE_UNLOAD\n"
1766 " .exit = cleanup_module,\n"
1767 "#endif\n");
e61a1c1c 1768 buf_printf(b, " .arch = MODULE_ARCH_INIT,\n");
1da177e4
LT
1769 buf_printf(b, "};\n");
1770}
1771
5c725138 1772static void add_staging_flag(struct buffer *b, const char *name)
a9860bf0
GKH
1773{
1774 static const char *staging_dir = "drivers/staging";
1775
1776 if (strncmp(staging_dir, name, strlen(staging_dir)) == 0)
1777 buf_printf(b, "\nMODULE_INFO(staging, \"Y\");\n");
1778}
1779
5c3ead8c
SR
1780/**
1781 * Record CRCs for unresolved symbols
1782 **/
c53ddacd 1783static int add_versions(struct buffer *b, struct module *mod)
1da177e4
LT
1784{
1785 struct symbol *s, *exp;
c53ddacd 1786 int err = 0;
1da177e4
LT
1787
1788 for (s = mod->unres; s; s = s->next) {
1789 exp = find_symbol(s->name);
1790 if (!exp || exp->module == mod) {
c53ddacd 1791 if (have_vmlinux && !s->weak) {
2a116659
MW
1792 if (warn_unresolved) {
1793 warn("\"%s\" [%s.ko] undefined!\n",
1794 s->name, mod->name);
1795 } else {
1796 merror("\"%s\" [%s.ko] undefined!\n",
1797 s->name, mod->name);
1798 err = 1;
1799 }
c53ddacd 1800 }
1da177e4
LT
1801 continue;
1802 }
1803 s->module = exp->module;
1804 s->crc_valid = exp->crc_valid;
1805 s->crc = exp->crc;
1806 }
1807
1808 if (!modversions)
c53ddacd 1809 return err;
1da177e4
LT
1810
1811 buf_printf(b, "\n");
1812 buf_printf(b, "static const struct modversion_info ____versions[]\n");
3ff6eecc 1813 buf_printf(b, "__used\n");
1da177e4
LT
1814 buf_printf(b, "__attribute__((section(\"__versions\"))) = {\n");
1815
1816 for (s = mod->unres; s; s = s->next) {
df578e7d 1817 if (!s->module)
1da177e4 1818 continue;
1da177e4 1819 if (!s->crc_valid) {
cb80514d 1820 warn("\"%s\" [%s.ko] has no CRC!\n",
1da177e4
LT
1821 s->name, mod->name);
1822 continue;
1823 }
1824 buf_printf(b, "\t{ %#8x, \"%s\" },\n", s->crc, s->name);
1825 }
1826
1827 buf_printf(b, "};\n");
c53ddacd
KK
1828
1829 return err;
1da177e4
LT
1830}
1831
5c3ead8c
SR
1832static void add_depends(struct buffer *b, struct module *mod,
1833 struct module *modules)
1da177e4
LT
1834{
1835 struct symbol *s;
1836 struct module *m;
1837 int first = 1;
1838
df578e7d 1839 for (m = modules; m; m = m->next)
1da177e4 1840 m->seen = is_vmlinux(m->name);
1da177e4
LT
1841
1842 buf_printf(b, "\n");
1843 buf_printf(b, "static const char __module_depends[]\n");
3ff6eecc 1844 buf_printf(b, "__used\n");
1da177e4
LT
1845 buf_printf(b, "__attribute__((section(\".modinfo\"))) =\n");
1846 buf_printf(b, "\"depends=");
1847 for (s = mod->unres; s; s = s->next) {
a61b2dfd 1848 const char *p;
1da177e4
LT
1849 if (!s->module)
1850 continue;
1851
1852 if (s->module->seen)
1853 continue;
1854
1855 s->module->seen = 1;
df578e7d
SR
1856 p = strrchr(s->module->name, '/');
1857 if (p)
a61b2dfd
SR
1858 p++;
1859 else
1860 p = s->module->name;
1861 buf_printf(b, "%s%s", first ? "" : ",", p);
1da177e4
LT
1862 first = 0;
1863 }
1864 buf_printf(b, "\";\n");
1865}
1866
5c3ead8c 1867static void add_srcversion(struct buffer *b, struct module *mod)
1da177e4
LT
1868{
1869 if (mod->srcversion[0]) {
1870 buf_printf(b, "\n");
1871 buf_printf(b, "MODULE_INFO(srcversion, \"%s\");\n",
1872 mod->srcversion);
1873 }
1874}
1875
5c3ead8c 1876static void write_if_changed(struct buffer *b, const char *fname)
1da177e4
LT
1877{
1878 char *tmp;
1879 FILE *file;
1880 struct stat st;
1881
1882 file = fopen(fname, "r");
1883 if (!file)
1884 goto write;
1885
1886 if (fstat(fileno(file), &st) < 0)
1887 goto close_write;
1888
1889 if (st.st_size != b->pos)
1890 goto close_write;
1891
1892 tmp = NOFAIL(malloc(b->pos));
1893 if (fread(tmp, 1, b->pos, file) != b->pos)
1894 goto free_write;
1895
1896 if (memcmp(tmp, b->p, b->pos) != 0)
1897 goto free_write;
1898
1899 free(tmp);
1900 fclose(file);
1901 return;
1902
1903 free_write:
1904 free(tmp);
1905 close_write:
1906 fclose(file);
1907 write:
1908 file = fopen(fname, "w");
1909 if (!file) {
1910 perror(fname);
1911 exit(1);
1912 }
1913 if (fwrite(b->p, 1, b->pos, file) != b->pos) {
1914 perror(fname);
1915 exit(1);
1916 }
1917 fclose(file);
1918}
1919
bd5cbced 1920/* parse Module.symvers file. line format:
534b89a9 1921 * 0x12345678<tab>symbol<tab>module[[<tab>export]<tab>something]
bd5cbced 1922 **/
040fcc81 1923static void read_dump(const char *fname, unsigned int kernel)
1da177e4
LT
1924{
1925 unsigned long size, pos = 0;
1926 void *file = grab_file(fname, &size);
1927 char *line;
1928
df578e7d 1929 if (!file)
1da177e4
LT
1930 /* No symbol versions, silently ignore */
1931 return;
1932
1933 while ((line = get_next_line(&pos, file, size))) {
534b89a9 1934 char *symname, *modname, *d, *export, *end;
1da177e4
LT
1935 unsigned int crc;
1936 struct module *mod;
040fcc81 1937 struct symbol *s;
1da177e4
LT
1938
1939 if (!(symname = strchr(line, '\t')))
1940 goto fail;
1941 *symname++ = '\0';
1942 if (!(modname = strchr(symname, '\t')))
1943 goto fail;
1944 *modname++ = '\0';
9ac545b0 1945 if ((export = strchr(modname, '\t')) != NULL)
bd5cbced 1946 *export++ = '\0';
534b89a9
SR
1947 if (export && ((end = strchr(export, '\t')) != NULL))
1948 *end = '\0';
1da177e4
LT
1949 crc = strtoul(line, &d, 16);
1950 if (*symname == '\0' || *modname == '\0' || *d != '\0')
1951 goto fail;
df578e7d
SR
1952 mod = find_module(modname);
1953 if (!mod) {
1954 if (is_vmlinux(modname))
1da177e4 1955 have_vmlinux = 1;
0fa3a88c 1956 mod = new_module(modname);
1da177e4
LT
1957 mod->skip = 1;
1958 }
bd5cbced 1959 s = sym_add_exported(symname, mod, export_no(export));
8e70c458
SR
1960 s->kernel = kernel;
1961 s->preloaded = 1;
bd5cbced 1962 sym_update_crc(symname, mod, crc, export_no(export));
1da177e4
LT
1963 }
1964 return;
1965fail:
1966 fatal("parse error in symbol dump file\n");
1967}
1968
040fcc81
SR
1969/* For normal builds always dump all symbols.
1970 * For external modules only dump symbols
1971 * that are not read from kernel Module.symvers.
1972 **/
1973static int dump_sym(struct symbol *sym)
1974{
1975 if (!external_module)
1976 return 1;
1977 if (sym->vmlinux || sym->kernel)
1978 return 0;
1979 return 1;
1980}
62070fa4 1981
5c3ead8c 1982static void write_dump(const char *fname)
1da177e4
LT
1983{
1984 struct buffer buf = { };
1985 struct symbol *symbol;
1986 int n;
1987
1988 for (n = 0; n < SYMBOL_HASH_SIZE ; n++) {
1989 symbol = symbolhash[n];
1990 while (symbol) {
040fcc81 1991 if (dump_sym(symbol))
bd5cbced 1992 buf_printf(&buf, "0x%08x\t%s\t%s\t%s\n",
62070fa4 1993 symbol->crc, symbol->name,
bd5cbced
RP
1994 symbol->module->name,
1995 export_str(symbol->export));
1da177e4
LT
1996 symbol = symbol->next;
1997 }
1998 }
1999 write_if_changed(&buf, fname);
2000}
2001
2d04b5ae
RH
2002struct ext_sym_list {
2003 struct ext_sym_list *next;
2004 const char *file;
2005};
2006
5c3ead8c 2007int main(int argc, char **argv)
1da177e4
LT
2008{
2009 struct module *mod;
2010 struct buffer buf = { };
040fcc81
SR
2011 char *kernel_read = NULL, *module_read = NULL;
2012 char *dump_write = NULL;
1da177e4 2013 int opt;
c53ddacd 2014 int err;
2d04b5ae
RH
2015 struct ext_sym_list *extsym_iter;
2016 struct ext_sym_list *extsym_start = NULL;
1da177e4 2017
2d04b5ae 2018 while ((opt = getopt(argc, argv, "i:I:e:cmsSo:awM:K:")) != -1) {
df578e7d
SR
2019 switch (opt) {
2020 case 'i':
2021 kernel_read = optarg;
2022 break;
2023 case 'I':
2024 module_read = optarg;
2025 external_module = 1;
2026 break;
4ce6efed
SR
2027 case 'c':
2028 cross_build = 1;
2029 break;
2d04b5ae
RH
2030 case 'e':
2031 external_module = 1;
2032 extsym_iter =
2033 NOFAIL(malloc(sizeof(*extsym_iter)));
2034 extsym_iter->next = extsym_start;
2035 extsym_iter->file = optarg;
2036 extsym_start = extsym_iter;
2037 break;
df578e7d
SR
2038 case 'm':
2039 modversions = 1;
2040 break;
2041 case 'o':
2042 dump_write = optarg;
2043 break;
2044 case 'a':
2045 all_versions = 1;
2046 break;
2047 case 's':
2048 vmlinux_section_warnings = 0;
2049 break;
588ccd73
SR
2050 case 'S':
2051 sec_mismatch_verbose = 0;
2052 break;
df578e7d
SR
2053 case 'w':
2054 warn_unresolved = 1;
2055 break;
2056 default:
2057 exit(1);
1da177e4
LT
2058 }
2059 }
2060
040fcc81
SR
2061 if (kernel_read)
2062 read_dump(kernel_read, 1);
2063 if (module_read)
2064 read_dump(module_read, 0);
2d04b5ae
RH
2065 while (extsym_start) {
2066 read_dump(extsym_start->file, 0);
2067 extsym_iter = extsym_start->next;
2068 free(extsym_start);
2069 extsym_start = extsym_iter;
2070 }
1da177e4 2071
df578e7d 2072 while (optind < argc)
1da177e4 2073 read_symbols(argv[optind++]);
1da177e4 2074
b817f6fe
SR
2075 for (mod = modules; mod; mod = mod->next) {
2076 if (mod->skip)
2077 continue;
c96fca21 2078 check_exports(mod);
b817f6fe
SR
2079 }
2080
c53ddacd
KK
2081 err = 0;
2082
1da177e4 2083 for (mod = modules; mod; mod = mod->next) {
666ab414
AK
2084 char fname[strlen(mod->name) + 10];
2085
1da177e4
LT
2086 if (mod->skip)
2087 continue;
2088
2089 buf.pos = 0;
2090
2091 add_header(&buf, mod);
a9860bf0 2092 add_staging_flag(&buf, mod->name);
c53ddacd 2093 err |= add_versions(&buf, mod);
1da177e4
LT
2094 add_depends(&buf, mod, modules);
2095 add_moddevtable(&buf, mod);
2096 add_srcversion(&buf, mod);
2097
2098 sprintf(fname, "%s.mod.c", mod->name);
2099 write_if_changed(&buf, fname);
2100 }
2101
2102 if (dump_write)
2103 write_dump(dump_write);
588ccd73 2104 if (sec_mismatch_count && !sec_mismatch_verbose)
7c0ac495
GU
2105 warn("modpost: Found %d section mismatch(es).\n"
2106 "To see full details build your kernel with:\n"
2107 "'make CONFIG_DEBUG_SECTION_MISMATCH=y'\n",
2108 sec_mismatch_count);
1da177e4 2109
c53ddacd 2110 return err;
1da177e4 2111}