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