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