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