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