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