blob: d3e509edfd5e76ef254dbd1659fab71b952a5cdb [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/* Postprocess module symbol versions
2 *
3 * Copyright 2003 Kai Germaschewski
4 * Copyright 2002-2004 Rusty Russell, IBM Corporation
Sam Ravnborgdf578e72008-01-11 19:17:15 +01005 * Copyright 2006-2008 Sam Ravnborg
Linus Torvalds1da177e2005-04-16 15:20:36 -07006 * 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
Mathieu Desnoyersb2e3e652008-02-13 15:03:39 -080014#define _GNU_SOURCE
15#include <stdio.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070016#include <ctype.h>
Andrew Morton5003bab2010-08-11 00:42:26 -070017#include <string.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070018#include "modpost.h"
Linus Torvalds5a865c02009-12-17 07:23:42 -080019#include "../../include/generated/autoconf.h"
Sam Ravnborgb817f6f2006-06-09 21:53:55 +020020#include "../../include/linux/license.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070021
Alan Jenkins9e1b9b82009-11-07 21:03:54 +000022/* 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
Linus Torvalds1da177e2005-04-16 15:20:36 -070030/* Are we using CONFIG_MODVERSIONS? */
31int modversions = 0;
32/* Warn about undefined symbols? (do so if we have vmlinux) */
33int have_vmlinux = 0;
34/* Is CONFIG_MODULE_SRCVERSION_ALL set? */
35static int all_versions = 0;
Sam Ravnborg040fcc82006-01-28 22:15:55 +010036/* If we are modposting external module set to 1 */
37static int external_module = 0;
Sam Ravnborg8d8d8282007-07-20 22:36:56 +020038/* Warn about section mismatch in vmlinux if set to 1 */
39static int vmlinux_section_warnings = 1;
Bryan Huntsman3f2bc4d2011-08-16 17:27:22 -070040/* Exit with an error when there is a section mismatch if set to 1 */
41static int section_error_on_mismatch;
Kirill Korotaevc53ddac2006-09-07 13:08:54 -070042/* Only warn about unresolved symbols */
43static int warn_unresolved = 0;
Ram Paibd5cbce2006-06-08 22:12:53 -070044/* How a symbol is exported */
Sam Ravnborg588ccd72008-01-24 21:12:37 +010045static int sec_mismatch_count = 0;
46static int sec_mismatch_verbose = 1;
47
Sam Ravnborgc96fca22006-07-01 11:44:23 +020048enum export {
49 export_plain, export_unused, export_gpl,
50 export_unused_gpl, export_gpl_future, export_unknown
51};
Linus Torvalds1da177e2005-04-16 15:20:36 -070052
Andi Kleen6d9a89e2007-11-22 03:43:08 +010053#define PRINTF __attribute__ ((format (printf, 1, 2)))
54
55PRINTF void fatal(const char *fmt, ...)
Linus Torvalds1da177e2005-04-16 15:20:36 -070056{
57 va_list arglist;
58
59 fprintf(stderr, "FATAL: ");
60
61 va_start(arglist, fmt);
62 vfprintf(stderr, fmt, arglist);
63 va_end(arglist);
64
65 exit(1);
66}
67
Andi Kleen6d9a89e2007-11-22 03:43:08 +010068PRINTF void warn(const char *fmt, ...)
Linus Torvalds1da177e2005-04-16 15:20:36 -070069{
70 va_list arglist;
71
72 fprintf(stderr, "WARNING: ");
73
74 va_start(arglist, fmt);
75 vfprintf(stderr, fmt, arglist);
76 va_end(arglist);
77}
78
Andi Kleen6d9a89e2007-11-22 03:43:08 +010079PRINTF void merror(const char *fmt, ...)
Matthew Wilcox2a116652006-10-07 05:35:32 -060080{
81 va_list arglist;
82
83 fprintf(stderr, "ERROR: ");
84
85 va_start(arglist, fmt);
86 vfprintf(stderr, fmt, arglist);
87 va_end(arglist);
88}
89
Sam Ravnborg040fcc82006-01-28 22:15:55 +010090static int is_vmlinux(const char *modname)
91{
92 const char *myname;
93
Sam Ravnborgdf578e72008-01-11 19:17:15 +010094 myname = strrchr(modname, '/');
95 if (myname)
Sam Ravnborg040fcc82006-01-28 22:15:55 +010096 myname++;
97 else
98 myname = modname;
99
Sam Ravnborg741f98f2007-07-17 10:54:06 +0200100 return (strcmp(myname, "vmlinux") == 0) ||
101 (strcmp(myname, "vmlinux.o") == 0);
Sam Ravnborg040fcc82006-01-28 22:15:55 +0100102}
103
Linus Torvalds1da177e2005-04-16 15:20:36 -0700104void *do_nofail(void *ptr, const char *expr)
105{
Sam Ravnborgdf578e72008-01-11 19:17:15 +0100106 if (!ptr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700107 fatal("modpost: Memory allocation failure: %s.\n", expr);
Sam Ravnborgdf578e72008-01-11 19:17:15 +0100108
Linus Torvalds1da177e2005-04-16 15:20:36 -0700109 return ptr;
110}
111
112/* A list of all modules we processed */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700113static struct module *modules;
114
Sam Ravnborg5c3ead82006-01-28 17:19:35 +0100115static struct module *find_module(char *modname)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700116{
117 struct module *mod;
118
119 for (mod = modules; mod; mod = mod->next)
120 if (strcmp(mod->name, modname) == 0)
121 break;
122 return mod;
123}
124
Sam Ravnborg5c3ead82006-01-28 17:19:35 +0100125static struct module *new_module(char *modname)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700126{
127 struct module *mod;
128 char *p, *s;
Sam Ravnborg62070fa2006-03-03 16:46:04 +0100129
Linus Torvalds1da177e2005-04-16 15:20:36 -0700130 mod = NOFAIL(malloc(sizeof(*mod)));
131 memset(mod, 0, sizeof(*mod));
132 p = NOFAIL(strdup(modname));
133
134 /* strip trailing .o */
Sam Ravnborgdf578e72008-01-11 19:17:15 +0100135 s = strrchr(p, '.');
136 if (s != NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700137 if (strcmp(s, ".o") == 0)
138 *s = '\0';
139
140 /* add to list */
141 mod->name = p;
Sam Ravnborgb817f6f2006-06-09 21:53:55 +0200142 mod->gpl_compatible = -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700143 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
154struct symbol {
155 struct symbol *next;
156 struct module *module;
157 unsigned int crc;
158 int crc_valid;
159 unsigned int weak:1;
Sam Ravnborg040fcc82006-01-28 22:15:55 +0100160 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) **/
Sam Ravnborg8e70c452006-01-28 22:22:33 +0100163 unsigned int preloaded:1; /* 1 if symbol from Module.symvers */
Ram Paibd5cbce2006-06-08 22:12:53 -0700164 enum export export; /* Type of export */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700165 char name[0];
166};
167
168static struct symbol *symbolhash[SYMBOL_HASH_SIZE];
169
170/* This is based on the hash agorithm from gdbm, via tdb */
171static 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. */
Sam Ravnborgdf578e72008-01-11 19:17:15 +0100177 for (value = 0x238F13AF * strlen(name), i = 0; name[i]; i++)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700178 value = (value + (((unsigned char *)name)[i] << (i*5 % 24)));
179
180 return (1103515243 * value + 12345);
181}
182
Sam Ravnborg5c3ead82006-01-28 17:19:35 +0100183/**
184 * Allocate a new symbols for use in the hash of exported symbols or
185 * the list of unresolved symbols per module
186 **/
187static struct symbol *alloc_symbol(const char *name, unsigned int weak,
188 struct symbol *next)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700189{
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 */
Ram Paibd5cbce2006-06-08 22:12:53 -0700200static struct symbol *new_symbol(const char *name, struct module *module,
201 enum export export)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700202{
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;
Ram Paibd5cbce2006-06-08 22:12:53 -0700209 new->export = export;
Sam Ravnborg040fcc82006-01-28 22:15:55 +0100210 return new;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700211}
212
Sam Ravnborg5c3ead82006-01-28 17:19:35 +0100213static struct symbol *find_symbol(const char *name)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700214{
215 struct symbol *s;
216
217 /* For our purposes, .foo matches foo. PPC64 needs this. */
218 if (name[0] == '.')
219 name++;
220
Sam Ravnborgdf578e72008-01-11 19:17:15 +0100221 for (s = symbolhash[tdb_hash(name) % SYMBOL_HASH_SIZE]; s; s = s->next) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700222 if (strcmp(s->name, name) == 0)
223 return s;
224 }
225 return NULL;
226}
227
Ram Paibd5cbce2006-06-08 22:12:53 -0700228static struct {
229 const char *str;
230 enum export export;
231} export_list[] = {
232 { .str = "EXPORT_SYMBOL", .export = export_plain },
Sam Ravnborgc96fca22006-07-01 11:44:23 +0200233 { .str = "EXPORT_UNUSED_SYMBOL", .export = export_unused },
Ram Paibd5cbce2006-06-08 22:12:53 -0700234 { .str = "EXPORT_SYMBOL_GPL", .export = export_gpl },
Sam Ravnborgc96fca22006-07-01 11:44:23 +0200235 { .str = "EXPORT_UNUSED_SYMBOL_GPL", .export = export_unused_gpl },
Ram Paibd5cbce2006-06-08 22:12:53 -0700236 { .str = "EXPORT_SYMBOL_GPL_FUTURE", .export = export_gpl_future },
237 { .str = "(unknown)", .export = export_unknown },
238};
239
240
241static const char *export_str(enum export ex)
242{
243 return export_list[ex].str;
244}
245
Sam Ravnborgdf578e72008-01-11 19:17:15 +0100246static enum export export_no(const char *s)
Ram Paibd5cbce2006-06-08 22:12:53 -0700247{
248 int i;
Sam Ravnborgdf578e72008-01-11 19:17:15 +0100249
Sam Ravnborg534b89a2006-07-01 10:10:19 +0200250 if (!s)
251 return export_unknown;
Ram Paibd5cbce2006-06-08 22:12:53 -0700252 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
Denys Vlasenko1ce53ad2010-07-29 01:47:53 +0200259static enum export export_from_sec(struct elf_info *elf, unsigned int sec)
Ram Paibd5cbce2006-06-08 22:12:53 -0700260{
261 if (sec == elf->export_sec)
262 return export_plain;
Sam Ravnborgc96fca22006-07-01 11:44:23 +0200263 else if (sec == elf->export_unused_sec)
264 return export_unused;
Ram Paibd5cbce2006-06-08 22:12:53 -0700265 else if (sec == elf->export_gpl_sec)
266 return export_gpl;
Sam Ravnborgc96fca22006-07-01 11:44:23 +0200267 else if (sec == elf->export_unused_gpl_sec)
268 return export_unused_gpl;
Ram Paibd5cbce2006-06-08 22:12:53 -0700269 else if (sec == elf->export_gpl_future_sec)
270 return export_gpl_future;
271 else
272 return export_unknown;
273}
274
Sam Ravnborg5c3ead82006-01-28 17:19:35 +0100275/**
276 * Add an exported symbol - it may have already been added without a
277 * CRC, in this case just update the CRC
278 **/
Ram Paibd5cbce2006-06-08 22:12:53 -0700279static struct symbol *sym_add_exported(const char *name, struct module *mod,
280 enum export export)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700281{
282 struct symbol *s = find_symbol(name);
283
284 if (!s) {
Ram Paibd5cbce2006-06-08 22:12:53 -0700285 s = new_symbol(name, mod, export);
Sam Ravnborg8e70c452006-01-28 22:22:33 +0100286 } else {
287 if (!s->preloaded) {
Sam Ravnborg7b75b132006-03-05 13:48:58 +0100288 warn("%s: '%s' exported twice. Previous export "
Sam Ravnborg8e70c452006-01-28 22:22:33 +0100289 "was in %s%s\n", mod->name, name,
290 s->module->name,
291 is_vmlinux(s->module->name) ?"":".ko");
Trent Piepho4b219602007-10-11 16:40:10 -0700292 } else {
293 /* In case Modules.symvers was out of date */
294 s->module = mod;
Sam Ravnborg8e70c452006-01-28 22:22:33 +0100295 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700296 }
Sam Ravnborg8e70c452006-01-28 22:22:33 +0100297 s->preloaded = 0;
Sam Ravnborg040fcc82006-01-28 22:15:55 +0100298 s->vmlinux = is_vmlinux(mod->name);
299 s->kernel = 0;
Ram Paibd5cbce2006-06-08 22:12:53 -0700300 s->export = export;
Sam Ravnborg040fcc82006-01-28 22:15:55 +0100301 return s;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700302}
303
Sam Ravnborg040fcc82006-01-28 22:15:55 +0100304static void sym_update_crc(const char *name, struct module *mod,
Ram Paibd5cbce2006-06-08 22:12:53 -0700305 unsigned int crc, enum export export)
Sam Ravnborg040fcc82006-01-28 22:15:55 +0100306{
307 struct symbol *s = find_symbol(name);
308
309 if (!s)
Ram Paibd5cbce2006-06-08 22:12:53 -0700310 s = new_symbol(name, mod, export);
Sam Ravnborg040fcc82006-01-28 22:15:55 +0100311 s->crc = crc;
312 s->crc_valid = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700313}
314
Sam Ravnborg5c3ead82006-01-28 17:19:35 +0100315void *grab_file(const char *filename, unsigned long *size)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700316{
317 struct stat st;
318 void *map;
319 int fd;
320
321 fd = open(filename, O_RDONLY);
322 if (fd < 0 || fstat(fd, &st) != 0)
323 return NULL;
324
325 *size = st.st_size;
326 map = mmap(NULL, *size, PROT_READ|PROT_WRITE, MAP_PRIVATE, fd, 0);
327 close(fd);
328
329 if (map == MAP_FAILED)
330 return NULL;
331 return map;
332}
333
Sam Ravnborg5c3ead82006-01-28 17:19:35 +0100334/**
335 * Return a copy of the next line in a mmap'ed file.
336 * spaces in the beginning of the line is trimmed away.
337 * Return a pointer to a static buffer.
338 **/
Sam Ravnborgdf578e72008-01-11 19:17:15 +0100339char *get_next_line(unsigned long *pos, void *file, unsigned long size)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700340{
341 static char line[4096];
342 int skip = 1;
343 size_t len = 0;
344 signed char *p = (signed char *)file + *pos;
345 char *s = line;
346
Sam Ravnborgdf578e72008-01-11 19:17:15 +0100347 for (; *pos < size ; (*pos)++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700348 if (skip && isspace(*p)) {
349 p++;
350 continue;
351 }
352 skip = 0;
353 if (*p != '\n' && (*pos < size)) {
354 len++;
355 *s++ = *p++;
356 if (len > 4095)
357 break; /* Too long, stop */
358 } else {
359 /* End of string */
360 *s = '\0';
361 return line;
362 }
363 }
364 /* End of buffer */
365 return NULL;
366}
367
Sam Ravnborg5c3ead82006-01-28 17:19:35 +0100368void release_file(void *file, unsigned long size)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700369{
370 munmap(file, size);
371}
372
Sam Ravnborg85bd2fd2007-02-26 15:33:52 +0100373static int parse_elf(struct elf_info *info, const char *filename)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700374{
375 unsigned int i;
Sam Ravnborg85bd2fd2007-02-26 15:33:52 +0100376 Elf_Ehdr *hdr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700377 Elf_Shdr *sechdrs;
378 Elf_Sym *sym;
Denys Vlasenko1ce53ad2010-07-29 01:47:53 +0200379 const char *secstrings;
380 unsigned int symtab_idx = ~0U, symtab_shndx_idx = ~0U;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700381
382 hdr = grab_file(filename, &info->size);
383 if (!hdr) {
384 perror(filename);
Sam Ravnborg6803dc02006-06-24 23:46:54 +0200385 exit(1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700386 }
387 info->hdr = hdr;
Sam Ravnborg85bd2fd2007-02-26 15:33:52 +0100388 if (info->size < sizeof(*hdr)) {
389 /* file too small, assume this is an empty .o file */
390 return 0;
391 }
392 /* Is this a valid ELF file? */
393 if ((hdr->e_ident[EI_MAG0] != ELFMAG0) ||
394 (hdr->e_ident[EI_MAG1] != ELFMAG1) ||
395 (hdr->e_ident[EI_MAG2] != ELFMAG2) ||
396 (hdr->e_ident[EI_MAG3] != ELFMAG3)) {
397 /* Not an ELF file - silently ignore it */
398 return 0;
399 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700400 /* Fix endianness in ELF header */
Anders Kaseorg7d875a02009-05-03 22:02:55 +0200401 hdr->e_type = TO_NATIVE(hdr->e_type);
402 hdr->e_machine = TO_NATIVE(hdr->e_machine);
403 hdr->e_version = TO_NATIVE(hdr->e_version);
404 hdr->e_entry = TO_NATIVE(hdr->e_entry);
405 hdr->e_phoff = TO_NATIVE(hdr->e_phoff);
406 hdr->e_shoff = TO_NATIVE(hdr->e_shoff);
407 hdr->e_flags = TO_NATIVE(hdr->e_flags);
408 hdr->e_ehsize = TO_NATIVE(hdr->e_ehsize);
409 hdr->e_phentsize = TO_NATIVE(hdr->e_phentsize);
410 hdr->e_phnum = TO_NATIVE(hdr->e_phnum);
411 hdr->e_shentsize = TO_NATIVE(hdr->e_shentsize);
412 hdr->e_shnum = TO_NATIVE(hdr->e_shnum);
413 hdr->e_shstrndx = TO_NATIVE(hdr->e_shstrndx);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700414 sechdrs = (void *)hdr + hdr->e_shoff;
415 info->sechdrs = sechdrs;
416
Petr Stetiara83710e2007-08-27 12:15:07 +0200417 /* Check if file offset is correct */
418 if (hdr->e_shoff > info->size) {
Sam Ravnborgdf578e72008-01-11 19:17:15 +0100419 fatal("section header offset=%lu in file '%s' is bigger than "
420 "filesize=%lu\n", (unsigned long)hdr->e_shoff,
421 filename, info->size);
Petr Stetiara83710e2007-08-27 12:15:07 +0200422 return 0;
423 }
424
Anders Kaseorg68457562011-05-19 16:55:27 -0600425 if (hdr->e_shnum == SHN_UNDEF) {
Denys Vlasenko1ce53ad2010-07-29 01:47:53 +0200426 /*
427 * There are more than 64k sections,
428 * read count from .sh_size.
Denys Vlasenko1ce53ad2010-07-29 01:47:53 +0200429 */
430 info->num_sections = TO_NATIVE(sechdrs[0].sh_size);
431 }
432 else {
433 info->num_sections = hdr->e_shnum;
434 }
435 if (hdr->e_shstrndx == SHN_XINDEX) {
Anders Kaseorg68457562011-05-19 16:55:27 -0600436 info->secindex_strings = TO_NATIVE(sechdrs[0].sh_link);
Denys Vlasenko1ce53ad2010-07-29 01:47:53 +0200437 }
438 else {
439 info->secindex_strings = hdr->e_shstrndx;
440 }
441
Linus Torvalds1da177e2005-04-16 15:20:36 -0700442 /* Fix endianness in section headers */
Denys Vlasenko1ce53ad2010-07-29 01:47:53 +0200443 for (i = 0; i < info->num_sections; i++) {
Anders Kaseorg7d875a02009-05-03 22:02:55 +0200444 sechdrs[i].sh_name = TO_NATIVE(sechdrs[i].sh_name);
445 sechdrs[i].sh_type = TO_NATIVE(sechdrs[i].sh_type);
446 sechdrs[i].sh_flags = TO_NATIVE(sechdrs[i].sh_flags);
447 sechdrs[i].sh_addr = TO_NATIVE(sechdrs[i].sh_addr);
448 sechdrs[i].sh_offset = TO_NATIVE(sechdrs[i].sh_offset);
449 sechdrs[i].sh_size = TO_NATIVE(sechdrs[i].sh_size);
450 sechdrs[i].sh_link = TO_NATIVE(sechdrs[i].sh_link);
451 sechdrs[i].sh_info = TO_NATIVE(sechdrs[i].sh_info);
452 sechdrs[i].sh_addralign = TO_NATIVE(sechdrs[i].sh_addralign);
453 sechdrs[i].sh_entsize = TO_NATIVE(sechdrs[i].sh_entsize);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700454 }
455 /* Find symbol table. */
Denys Vlasenko1ce53ad2010-07-29 01:47:53 +0200456 secstrings = (void *)hdr + sechdrs[info->secindex_strings].sh_offset;
457 for (i = 1; i < info->num_sections; i++) {
Ram Paibd5cbce2006-06-08 22:12:53 -0700458 const char *secname;
Tejun Heo56fc82c2009-02-06 00:48:02 +0900459 int nobits = sechdrs[i].sh_type == SHT_NOBITS;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700460
Tejun Heo56fc82c2009-02-06 00:48:02 +0900461 if (!nobits && sechdrs[i].sh_offset > info->size) {
Sam Ravnborgdf578e72008-01-11 19:17:15 +0100462 fatal("%s is truncated. sechdrs[i].sh_offset=%lu > "
463 "sizeof(*hrd)=%zu\n", filename,
464 (unsigned long)sechdrs[i].sh_offset,
465 sizeof(*hdr));
Sam Ravnborg85bd2fd2007-02-26 15:33:52 +0100466 return 0;
467 }
Ram Paibd5cbce2006-06-08 22:12:53 -0700468 secname = secstrings + sechdrs[i].sh_name;
469 if (strcmp(secname, ".modinfo") == 0) {
Tejun Heo56fc82c2009-02-06 00:48:02 +0900470 if (nobits)
471 fatal("%s has NOBITS .modinfo\n", filename);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700472 info->modinfo = (void *)hdr + sechdrs[i].sh_offset;
473 info->modinfo_len = sechdrs[i].sh_size;
Ram Paibd5cbce2006-06-08 22:12:53 -0700474 } else if (strcmp(secname, "__ksymtab") == 0)
475 info->export_sec = i;
Sam Ravnborgc96fca22006-07-01 11:44:23 +0200476 else if (strcmp(secname, "__ksymtab_unused") == 0)
477 info->export_unused_sec = i;
Ram Paibd5cbce2006-06-08 22:12:53 -0700478 else if (strcmp(secname, "__ksymtab_gpl") == 0)
479 info->export_gpl_sec = i;
Sam Ravnborgc96fca22006-07-01 11:44:23 +0200480 else if (strcmp(secname, "__ksymtab_unused_gpl") == 0)
481 info->export_unused_gpl_sec = i;
Ram Paibd5cbce2006-06-08 22:12:53 -0700482 else if (strcmp(secname, "__ksymtab_gpl_future") == 0)
483 info->export_gpl_future_sec = i;
484
Denys Vlasenko1ce53ad2010-07-29 01:47:53 +0200485 if (sechdrs[i].sh_type == SHT_SYMTAB) {
486 unsigned int sh_link_idx;
487 symtab_idx = i;
488 info->symtab_start = (void *)hdr +
489 sechdrs[i].sh_offset;
490 info->symtab_stop = (void *)hdr +
491 sechdrs[i].sh_offset + sechdrs[i].sh_size;
Anders Kaseorg68457562011-05-19 16:55:27 -0600492 sh_link_idx = sechdrs[i].sh_link;
Denys Vlasenko1ce53ad2010-07-29 01:47:53 +0200493 info->strtab = (void *)hdr +
494 sechdrs[sh_link_idx].sh_offset;
495 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700496
Denys Vlasenko1ce53ad2010-07-29 01:47:53 +0200497 /* 32bit section no. table? ("more than 64k sections") */
498 if (sechdrs[i].sh_type == SHT_SYMTAB_SHNDX) {
499 symtab_shndx_idx = i;
500 info->symtab_shndx_start = (void *)hdr +
501 sechdrs[i].sh_offset;
502 info->symtab_shndx_stop = (void *)hdr +
503 sechdrs[i].sh_offset + sechdrs[i].sh_size;
504 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700505 }
Sam Ravnborgdf578e72008-01-11 19:17:15 +0100506 if (!info->symtab_start)
Sam Ravnborgcb805142006-01-28 16:57:26 +0100507 fatal("%s has no symtab?\n", filename);
Sam Ravnborgdf578e72008-01-11 19:17:15 +0100508
Linus Torvalds1da177e2005-04-16 15:20:36 -0700509 /* Fix endianness in symbols */
510 for (sym = info->symtab_start; sym < info->symtab_stop; sym++) {
511 sym->st_shndx = TO_NATIVE(sym->st_shndx);
512 sym->st_name = TO_NATIVE(sym->st_name);
513 sym->st_value = TO_NATIVE(sym->st_value);
514 sym->st_size = TO_NATIVE(sym->st_size);
515 }
Denys Vlasenko1ce53ad2010-07-29 01:47:53 +0200516
517 if (symtab_shndx_idx != ~0U) {
518 Elf32_Word *p;
Anders Kaseorg68457562011-05-19 16:55:27 -0600519 if (symtab_idx != sechdrs[symtab_shndx_idx].sh_link)
Denys Vlasenko1ce53ad2010-07-29 01:47:53 +0200520 fatal("%s: SYMTAB_SHNDX has bad sh_link: %u!=%u\n",
Anders Kaseorg68457562011-05-19 16:55:27 -0600521 filename, sechdrs[symtab_shndx_idx].sh_link,
Denys Vlasenko1ce53ad2010-07-29 01:47:53 +0200522 symtab_idx);
523 /* Fix endianness */
524 for (p = info->symtab_shndx_start; p < info->symtab_shndx_stop;
525 p++)
526 *p = TO_NATIVE(*p);
527 }
528
Sam Ravnborg85bd2fd2007-02-26 15:33:52 +0100529 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700530}
531
Sam Ravnborg5c3ead82006-01-28 17:19:35 +0100532static void parse_elf_finish(struct elf_info *info)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700533{
534 release_file(info->hdr, info->size);
535}
536
Sam Ravnborg4d7365d2008-06-12 15:02:55 +0200537static int ignore_undef_symbol(struct elf_info *info, const char *symname)
538{
539 /* ignore __this_module, it will be resolved shortly */
540 if (strcmp(symname, MODULE_SYMBOL_PREFIX "__this_module") == 0)
541 return 1;
542 /* ignore global offset table */
543 if (strcmp(symname, "_GLOBAL_OFFSET_TABLE_") == 0)
544 return 1;
545 if (info->hdr->e_machine == EM_PPC)
546 /* Special register function linked on all modules during final link of .ko */
547 if (strncmp(symname, "_restgpr_", sizeof("_restgpr_") - 1) == 0 ||
548 strncmp(symname, "_savegpr_", sizeof("_savegpr_") - 1) == 0 ||
549 strncmp(symname, "_rest32gpr_", sizeof("_rest32gpr_") - 1) == 0 ||
550 strncmp(symname, "_save32gpr_", sizeof("_save32gpr_") - 1) == 0)
551 return 1;
Stephen Rothwell7fca5dc2010-06-29 20:08:42 +0000552 if (info->hdr->e_machine == EM_PPC64)
553 /* Special register function linked on all modules during final link of .ko */
554 if (strncmp(symname, "_restgpr0_", sizeof("_restgpr0_") - 1) == 0 ||
555 strncmp(symname, "_savegpr0_", sizeof("_savegpr0_") - 1) == 0)
556 return 1;
Sam Ravnborg4d7365d2008-06-12 15:02:55 +0200557 /* Do not ignore this symbol */
558 return 0;
559}
560
Luke Yangf7b05e62006-03-02 18:35:31 +0800561#define CRC_PFX MODULE_SYMBOL_PREFIX "__crc_"
562#define KSYMTAB_PFX MODULE_SYMBOL_PREFIX "__ksymtab_"
Linus Torvalds1da177e2005-04-16 15:20:36 -0700563
Sam Ravnborg5c3ead82006-01-28 17:19:35 +0100564static void handle_modversions(struct module *mod, struct elf_info *info,
565 Elf_Sym *sym, const char *symname)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700566{
567 unsigned int crc;
Denys Vlasenko1ce53ad2010-07-29 01:47:53 +0200568 enum export export = export_from_sec(info, get_secindex(info, sym));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700569
570 switch (sym->st_shndx) {
571 case SHN_COMMON:
Sam Ravnborgcb805142006-01-28 16:57:26 +0100572 warn("\"%s\" [%s] is COMMON symbol\n", symname, mod->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700573 break;
574 case SHN_ABS:
575 /* CRC'd symbol */
Michal Marek8d995132009-12-12 12:02:24 +0100576 if (strncmp(symname, CRC_PFX, strlen(CRC_PFX)) == 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700577 crc = (unsigned int) sym->st_value;
Ram Paibd5cbce2006-06-08 22:12:53 -0700578 sym_update_crc(symname + strlen(CRC_PFX), mod, crc,
579 export);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700580 }
581 break;
582 case SHN_UNDEF:
583 /* undefined symbol */
584 if (ELF_ST_BIND(sym->st_info) != STB_GLOBAL &&
585 ELF_ST_BIND(sym->st_info) != STB_WEAK)
586 break;
Sam Ravnborg4d7365d2008-06-12 15:02:55 +0200587 if (ignore_undef_symbol(info, symname))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700588 break;
Ben Colline8d529012005-08-19 13:44:57 -0700589/* cope with newer glibc (2.3.4 or higher) STT_ definition in elf.h */
590#if defined(STT_REGISTER) || defined(STT_SPARC_REGISTER)
591/* add compatibility with older glibc */
592#ifndef STT_SPARC_REGISTER
593#define STT_SPARC_REGISTER STT_REGISTER
594#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700595 if (info->hdr->e_machine == EM_SPARC ||
596 info->hdr->e_machine == EM_SPARCV9) {
597 /* Ignore register directives. */
Ben Colline8d529012005-08-19 13:44:57 -0700598 if (ELF_ST_TYPE(sym->st_info) == STT_SPARC_REGISTER)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700599 break;
Sam Ravnborg62070fa2006-03-03 16:46:04 +0100600 if (symname[0] == '.') {
601 char *munged = strdup(symname);
602 munged[0] = '_';
603 munged[1] = toupper(munged[1]);
604 symname = munged;
605 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700606 }
607#endif
Sam Ravnborg62070fa2006-03-03 16:46:04 +0100608
Linus Torvalds1da177e2005-04-16 15:20:36 -0700609 if (memcmp(symname, MODULE_SYMBOL_PREFIX,
Sam Ravnborgdf578e72008-01-11 19:17:15 +0100610 strlen(MODULE_SYMBOL_PREFIX)) == 0) {
611 mod->unres =
612 alloc_symbol(symname +
613 strlen(MODULE_SYMBOL_PREFIX),
614 ELF_ST_BIND(sym->st_info) == STB_WEAK,
615 mod->unres);
616 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700617 break;
618 default:
619 /* All exported symbols */
Michal Marek8d995132009-12-12 12:02:24 +0100620 if (strncmp(symname, KSYMTAB_PFX, strlen(KSYMTAB_PFX)) == 0) {
Ram Paibd5cbce2006-06-08 22:12:53 -0700621 sym_add_exported(symname + strlen(KSYMTAB_PFX), mod,
622 export);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700623 }
624 if (strcmp(symname, MODULE_SYMBOL_PREFIX "init_module") == 0)
625 mod->has_init = 1;
626 if (strcmp(symname, MODULE_SYMBOL_PREFIX "cleanup_module") == 0)
627 mod->has_cleanup = 1;
628 break;
629 }
630}
631
Sam Ravnborg5c3ead82006-01-28 17:19:35 +0100632/**
633 * Parse tag=value strings from .modinfo section
634 **/
Linus Torvalds1da177e2005-04-16 15:20:36 -0700635static char *next_string(char *string, unsigned long *secsize)
636{
637 /* Skip non-zero chars */
638 while (string[0]) {
639 string++;
640 if ((*secsize)-- <= 1)
641 return NULL;
642 }
643
644 /* Skip any zero padding. */
645 while (!string[0]) {
646 string++;
647 if ((*secsize)-- <= 1)
648 return NULL;
649 }
650 return string;
651}
652
Sam Ravnborgb817f6f2006-06-09 21:53:55 +0200653static char *get_next_modinfo(void *modinfo, unsigned long modinfo_len,
654 const char *tag, char *info)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700655{
656 char *p;
657 unsigned int taglen = strlen(tag);
658 unsigned long size = modinfo_len;
659
Sam Ravnborgb817f6f2006-06-09 21:53:55 +0200660 if (info) {
661 size -= info - (char *)modinfo;
662 modinfo = next_string(info, &size);
663 }
664
Linus Torvalds1da177e2005-04-16 15:20:36 -0700665 for (p = modinfo; p; p = next_string(p, &size)) {
666 if (strncmp(p, tag, taglen) == 0 && p[taglen] == '=')
667 return p + taglen + 1;
668 }
669 return NULL;
670}
671
Sam Ravnborgb817f6f2006-06-09 21:53:55 +0200672static char *get_modinfo(void *modinfo, unsigned long modinfo_len,
673 const char *tag)
674
675{
676 return get_next_modinfo(modinfo, modinfo_len, tag, NULL);
677}
678
Sam Ravnborg93684d32006-02-19 11:53:35 +0100679/**
Sam Ravnborg4c8fbca2006-02-26 22:18:11 +0100680 * Test if string s ends in string sub
681 * return 0 if match
682 **/
683static int strrcmp(const char *s, const char *sub)
684{
Sam Ravnborgdf578e72008-01-11 19:17:15 +0100685 int slen, sublen;
Sam Ravnborg62070fa2006-03-03 16:46:04 +0100686
Sam Ravnborg4c8fbca2006-02-26 22:18:11 +0100687 if (!s || !sub)
688 return 1;
Sam Ravnborg62070fa2006-03-03 16:46:04 +0100689
Sam Ravnborg4c8fbca2006-02-26 22:18:11 +0100690 slen = strlen(s);
Sam Ravnborgdf578e72008-01-11 19:17:15 +0100691 sublen = strlen(sub);
Sam Ravnborg62070fa2006-03-03 16:46:04 +0100692
Sam Ravnborg4c8fbca2006-02-26 22:18:11 +0100693 if ((slen == 0) || (sublen == 0))
694 return 1;
695
Sam Ravnborgdf578e72008-01-11 19:17:15 +0100696 if (sublen > slen)
697 return 1;
Sam Ravnborg4c8fbca2006-02-26 22:18:11 +0100698
Sam Ravnborgdf578e72008-01-11 19:17:15 +0100699 return memcmp(s + slen - sublen, sub, sublen);
Sam Ravnborg4c8fbca2006-02-26 22:18:11 +0100700}
701
Sam Ravnborgff13f922008-01-23 19:54:27 +0100702static const char *sym_name(struct elf_info *elf, Elf_Sym *sym)
703{
Sam Ravnborg58fb0d42008-01-23 21:13:50 +0100704 if (sym)
705 return elf->strtab + sym->st_name;
706 else
Sam Ravnborgf6667512008-02-06 21:51:18 +0100707 return "(unknown)";
Sam Ravnborgff13f922008-01-23 19:54:27 +0100708}
709
Denys Vlasenko1ce53ad2010-07-29 01:47:53 +0200710static const char *sec_name(struct elf_info *elf, int secindex)
Sam Ravnborgff13f922008-01-23 19:54:27 +0100711{
712 Elf_Shdr *sechdrs = elf->sechdrs;
713 return (void *)elf->hdr +
Denys Vlasenko1ce53ad2010-07-29 01:47:53 +0200714 elf->sechdrs[elf->secindex_strings].sh_offset +
715 sechdrs[secindex].sh_name;
Sam Ravnborgff13f922008-01-23 19:54:27 +0100716}
717
718static const char *sech_name(struct elf_info *elf, Elf_Shdr *sechdr)
719{
720 return (void *)elf->hdr +
Denys Vlasenko1ce53ad2010-07-29 01:47:53 +0200721 elf->sechdrs[elf->secindex_strings].sh_offset +
722 sechdr->sh_name;
Sam Ravnborgff13f922008-01-23 19:54:27 +0100723}
724
Sam Ravnborg10668222008-01-13 22:21:31 +0100725/* if sym is empty or point to a string
726 * like ".[0-9]+" then return 1.
727 * This is the optional prefix added by ld to some sections
728 */
729static int number_prefix(const char *sym)
730{
731 if (*sym++ == '\0')
732 return 1;
733 if (*sym != '.')
734 return 0;
735 do {
736 char c = *sym++;
737 if (c < '0' || c > '9')
738 return 0;
739 } while (*sym);
740 return 1;
741}
742
743/* The pattern is an array of simple patterns.
744 * "foo" will match an exact string equal to "foo"
Sam Ravnborg6c5bd232008-01-20 10:43:27 +0100745 * "*foo" will match a string that ends with "foo"
Sam Ravnborg10668222008-01-13 22:21:31 +0100746 * "foo*" will match a string that begins with "foo"
747 * "foo$" will match a string equal to "foo" or "foo.1"
748 * where the '1' can be any number including several digits.
749 * The $ syntax is for sections where ld append a dot number
750 * to make section name unique.
751 */
Trevor Keith5c725132009-09-22 16:43:38 -0700752static int match(const char *sym, const char * const pat[])
Sam Ravnborg10668222008-01-13 22:21:31 +0100753{
754 const char *p;
755 while (*pat) {
756 p = *pat++;
757 const char *endp = p + strlen(p) - 1;
758
Sam Ravnborg6c5bd232008-01-20 10:43:27 +0100759 /* "*foo" */
760 if (*p == '*') {
761 if (strrcmp(sym, p + 1) == 0)
762 return 1;
763 }
Sam Ravnborg10668222008-01-13 22:21:31 +0100764 /* "foo*" */
Sam Ravnborg6c5bd232008-01-20 10:43:27 +0100765 else if (*endp == '*') {
Sam Ravnborg10668222008-01-13 22:21:31 +0100766 if (strncmp(sym, p, strlen(p) - 1) == 0)
767 return 1;
768 }
769 /* "foo$" */
770 else if (*endp == '$') {
771 if (strncmp(sym, p, strlen(p) - 1) == 0) {
772 if (number_prefix(sym + strlen(p) - 1))
773 return 1;
774 }
775 }
776 /* no wildcards */
777 else {
778 if (strcmp(p, sym) == 0)
779 return 1;
780 }
781 }
782 /* no match */
783 return 0;
784}
785
Sam Ravnborg10668222008-01-13 22:21:31 +0100786/* sections that we do not want to do full section mismatch check on */
787static const char *section_white_list[] =
Sam Ravnborg4391ed62009-05-04 13:05:26 +0200788{
789 ".comment*",
790 ".debug*",
H.J. Lu11215842010-12-15 17:11:22 -0800791 ".zdebug*", /* Compressed debug sections. */
David Howells019fca82010-08-12 16:54:47 +0100792 ".GCC-command-line", /* mn10300 */
Sam Ravnborg4391ed62009-05-04 13:05:26 +0200793 ".mdebug*", /* alpha, score, mips etc. */
794 ".pdr", /* alpha, score, mips etc. */
795 ".stab*",
796 ".note*",
797 ".got*",
798 ".toc*",
799 NULL
800};
Sam Ravnborg10668222008-01-13 22:21:31 +0100801
Sam Ravnborge241a632008-01-28 20:13:13 +0100802/*
Anders Kaseorgb614a692009-04-23 16:49:33 -0400803 * This is used to find sections missing the SHF_ALLOC flag.
Sam Ravnborge241a632008-01-28 20:13:13 +0100804 * The cause of this is often a section specified in assembler
Anders Kaseorgb614a692009-04-23 16:49:33 -0400805 * without "ax" / "aw".
Sam Ravnborge241a632008-01-28 20:13:13 +0100806 */
Anders Kaseorgb614a692009-04-23 16:49:33 -0400807static void check_section(const char *modname, struct elf_info *elf,
808 Elf_Shdr *sechdr)
Sam Ravnborge241a632008-01-28 20:13:13 +0100809{
Anders Kaseorgb614a692009-04-23 16:49:33 -0400810 const char *sec = sech_name(elf, sechdr);
Sam Ravnborge241a632008-01-28 20:13:13 +0100811
Anders Kaseorgb614a692009-04-23 16:49:33 -0400812 if (sechdr->sh_type == SHT_PROGBITS &&
813 !(sechdr->sh_flags & SHF_ALLOC) &&
814 !match(sec, section_white_list)) {
815 warn("%s (%s): unexpected non-allocatable section.\n"
816 "Did you forget to use \"ax\"/\"aw\" in a .S file?\n"
817 "Note that for example <linux/init.h> contains\n"
818 "section definitions for use in .S files.\n\n",
819 modname, sec);
Sam Ravnborge241a632008-01-28 20:13:13 +0100820 }
Sam Ravnborge241a632008-01-28 20:13:13 +0100821}
822
823
824
Sam Ravnborgeb8f6892008-01-20 20:07:28 +0100825#define ALL_INIT_DATA_SECTIONS \
Jan Beulichfd6c3a82009-03-12 10:58:33 +0000826 ".init.setup$", ".init.rodata$", \
827 ".devinit.rodata$", ".cpuinit.rodata$", ".meminit.rodata$" \
Sam Ravnborgeb8f6892008-01-20 20:07:28 +0100828 ".init.data$", ".devinit.data$", ".cpuinit.data$", ".meminit.data$"
829#define ALL_EXIT_DATA_SECTIONS \
830 ".exit.data$", ".devexit.data$", ".cpuexit.data$", ".memexit.data$"
Sam Ravnborg10668222008-01-13 22:21:31 +0100831
Sam Ravnborgeb8f6892008-01-20 20:07:28 +0100832#define ALL_INIT_TEXT_SECTIONS \
833 ".init.text$", ".devinit.text$", ".cpuinit.text$", ".meminit.text$"
834#define ALL_EXIT_TEXT_SECTIONS \
835 ".exit.text$", ".devexit.text$", ".cpuexit.text$", ".memexit.text$"
Sam Ravnborg10668222008-01-13 22:21:31 +0100836
Uwe Kleine-König4a31a222010-01-29 12:04:26 +0100837#define ALL_XXXINIT_SECTIONS DEV_INIT_SECTIONS, CPU_INIT_SECTIONS, \
838 MEM_INIT_SECTIONS
839#define ALL_XXXEXIT_SECTIONS DEV_EXIT_SECTIONS, CPU_EXIT_SECTIONS, \
840 MEM_EXIT_SECTIONS
841
842#define ALL_INIT_SECTIONS INIT_SECTIONS, ALL_XXXINIT_SECTIONS
843#define ALL_EXIT_SECTIONS EXIT_SECTIONS, ALL_XXXEXIT_SECTIONS
Sam Ravnborg10668222008-01-13 22:21:31 +0100844
Sam Ravnborg6c5bd232008-01-20 10:43:27 +0100845#define DATA_SECTIONS ".data$", ".data.rel$"
Sam Ravnborg10668222008-01-13 22:21:31 +0100846#define TEXT_SECTIONS ".text$"
847
Jan Beulichfd6c3a82009-03-12 10:58:33 +0000848#define INIT_SECTIONS ".init.*"
849#define DEV_INIT_SECTIONS ".devinit.*"
850#define CPU_INIT_SECTIONS ".cpuinit.*"
851#define MEM_INIT_SECTIONS ".meminit.*"
Sam Ravnborgeb8f6892008-01-20 20:07:28 +0100852
Jan Beulichfd6c3a82009-03-12 10:58:33 +0000853#define EXIT_SECTIONS ".exit.*"
854#define DEV_EXIT_SECTIONS ".devexit.*"
855#define CPU_EXIT_SECTIONS ".cpuexit.*"
856#define MEM_EXIT_SECTIONS ".memexit.*"
Sam Ravnborgeb8f6892008-01-20 20:07:28 +0100857
Sam Ravnborg6c5bd232008-01-20 10:43:27 +0100858/* init data sections */
Sam Ravnborgeb8f6892008-01-20 20:07:28 +0100859static const char *init_data_sections[] = { ALL_INIT_DATA_SECTIONS, NULL };
Sam Ravnborg6c5bd232008-01-20 10:43:27 +0100860
861/* all init sections */
Sam Ravnborgeb8f6892008-01-20 20:07:28 +0100862static const char *init_sections[] = { ALL_INIT_SECTIONS, NULL };
Sam Ravnborg6c5bd232008-01-20 10:43:27 +0100863
864/* All init and exit sections (code + data) */
865static const char *init_exit_sections[] =
Sam Ravnborgeb8f6892008-01-20 20:07:28 +0100866 {ALL_INIT_SECTIONS, ALL_EXIT_SECTIONS, NULL };
Sam Ravnborg6c5bd232008-01-20 10:43:27 +0100867
868/* data section */
869static const char *data_sections[] = { DATA_SECTIONS, NULL };
870
Sam Ravnborg6c5bd232008-01-20 10:43:27 +0100871
872/* symbols in .data that may refer to init/exit sections */
Uwe Kleine-Königaf92a822010-01-30 20:52:50 +0100873#define DEFAULT_SYMBOL_WHITE_LIST \
874 "*driver", \
875 "*_template", /* scsi uses *_template a lot */ \
876 "*_timer", /* arm uses ops structures named _timer a lot */ \
877 "*_sht", /* scsi also used *_sht to some extent */ \
878 "*_ops", \
879 "*_probe", \
880 "*_probe_one", \
881 "*_console"
Sam Ravnborg6c5bd232008-01-20 10:43:27 +0100882
883static const char *head_sections[] = { ".head.text*", NULL };
884static const char *linker_symbols[] =
885 { "__init_begin", "_sinittext", "_einittext", NULL };
886
Sam Ravnborg588ccd72008-01-24 21:12:37 +0100887enum mismatch {
Uwe Kleine-Königbbd3f4f2010-01-30 16:35:47 +0100888 TEXT_TO_ANY_INIT,
889 DATA_TO_ANY_INIT,
890 TEXT_TO_ANY_EXIT,
891 DATA_TO_ANY_EXIT,
892 XXXINIT_TO_SOME_INIT,
893 XXXEXIT_TO_SOME_EXIT,
894 ANY_INIT_TO_ANY_EXIT,
895 ANY_EXIT_TO_ANY_INIT,
Sam Ravnborg588ccd72008-01-24 21:12:37 +0100896 EXPORT_TO_INIT_EXIT,
897};
898
Sam Ravnborg10668222008-01-13 22:21:31 +0100899struct sectioncheck {
900 const char *fromsec[20];
901 const char *tosec[20];
Sam Ravnborg588ccd72008-01-24 21:12:37 +0100902 enum mismatch mismatch;
Uwe Kleine-Königaf92a822010-01-30 20:52:50 +0100903 const char *symbol_white_list[20];
Sam Ravnborg10668222008-01-13 22:21:31 +0100904};
905
906const struct sectioncheck sectioncheck[] = {
907/* Do not reference init/exit code/data from
908 * normal code and data
909 */
910{
Sam Ravnborg588ccd72008-01-24 21:12:37 +0100911 .fromsec = { TEXT_SECTIONS, NULL },
912 .tosec = { ALL_INIT_SECTIONS, NULL },
Uwe Kleine-Königbbd3f4f2010-01-30 16:35:47 +0100913 .mismatch = TEXT_TO_ANY_INIT,
Uwe Kleine-Königaf92a822010-01-30 20:52:50 +0100914 .symbol_white_list = { DEFAULT_SYMBOL_WHITE_LIST, NULL },
Sam Ravnborg588ccd72008-01-24 21:12:37 +0100915},
916{
917 .fromsec = { DATA_SECTIONS, NULL },
Uwe Kleine-König0db252452010-01-30 21:14:23 +0100918 .tosec = { ALL_XXXINIT_SECTIONS, NULL },
Uwe Kleine-Königbbd3f4f2010-01-30 16:35:47 +0100919 .mismatch = DATA_TO_ANY_INIT,
Uwe Kleine-Königaf92a822010-01-30 20:52:50 +0100920 .symbol_white_list = { DEFAULT_SYMBOL_WHITE_LIST, NULL },
Sam Ravnborg588ccd72008-01-24 21:12:37 +0100921},
922{
Uwe Kleine-König0db252452010-01-30 21:14:23 +0100923 .fromsec = { DATA_SECTIONS, NULL },
924 .tosec = { INIT_SECTIONS, NULL },
925 .mismatch = DATA_TO_ANY_INIT,
926 .symbol_white_list = {
927 "*_template", "*_timer", "*_sht", "*_ops",
928 "*_probe", "*_probe_one", "*_console", NULL
929 },
930},
931{
Sam Ravnborg588ccd72008-01-24 21:12:37 +0100932 .fromsec = { TEXT_SECTIONS, NULL },
933 .tosec = { ALL_EXIT_SECTIONS, NULL },
Uwe Kleine-Königbbd3f4f2010-01-30 16:35:47 +0100934 .mismatch = TEXT_TO_ANY_EXIT,
Uwe Kleine-Königaf92a822010-01-30 20:52:50 +0100935 .symbol_white_list = { DEFAULT_SYMBOL_WHITE_LIST, NULL },
Sam Ravnborg588ccd72008-01-24 21:12:37 +0100936},
937{
938 .fromsec = { DATA_SECTIONS, NULL },
939 .tosec = { ALL_EXIT_SECTIONS, NULL },
Uwe Kleine-Königbbd3f4f2010-01-30 16:35:47 +0100940 .mismatch = DATA_TO_ANY_EXIT,
Uwe Kleine-Königaf92a822010-01-30 20:52:50 +0100941 .symbol_white_list = { DEFAULT_SYMBOL_WHITE_LIST, NULL },
Sam Ravnborgeb8f6892008-01-20 20:07:28 +0100942},
943/* Do not reference init code/data from devinit/cpuinit/meminit code/data */
944{
Uwe Kleine-König4a31a222010-01-29 12:04:26 +0100945 .fromsec = { ALL_XXXINIT_SECTIONS, NULL },
Sam Ravnborg588ccd72008-01-24 21:12:37 +0100946 .tosec = { INIT_SECTIONS, NULL },
Uwe Kleine-Königbbd3f4f2010-01-30 16:35:47 +0100947 .mismatch = XXXINIT_TO_SOME_INIT,
Uwe Kleine-Königaf92a822010-01-30 20:52:50 +0100948 .symbol_white_list = { DEFAULT_SYMBOL_WHITE_LIST, NULL },
Sam Ravnborgeb8f6892008-01-20 20:07:28 +0100949},
Jan Beulichfd6c3a82009-03-12 10:58:33 +0000950/* Do not reference cpuinit code/data from meminit code/data */
951{
952 .fromsec = { MEM_INIT_SECTIONS, NULL },
953 .tosec = { CPU_INIT_SECTIONS, NULL },
Uwe Kleine-Königbbd3f4f2010-01-30 16:35:47 +0100954 .mismatch = XXXINIT_TO_SOME_INIT,
Uwe Kleine-Königaf92a822010-01-30 20:52:50 +0100955 .symbol_white_list = { DEFAULT_SYMBOL_WHITE_LIST, NULL },
Jan Beulichfd6c3a82009-03-12 10:58:33 +0000956},
957/* Do not reference meminit code/data from cpuinit code/data */
958{
959 .fromsec = { CPU_INIT_SECTIONS, NULL },
960 .tosec = { MEM_INIT_SECTIONS, NULL },
Uwe Kleine-Königbbd3f4f2010-01-30 16:35:47 +0100961 .mismatch = XXXINIT_TO_SOME_INIT,
Uwe Kleine-Königaf92a822010-01-30 20:52:50 +0100962 .symbol_white_list = { DEFAULT_SYMBOL_WHITE_LIST, NULL },
Jan Beulichfd6c3a82009-03-12 10:58:33 +0000963},
Sam Ravnborgeb8f6892008-01-20 20:07:28 +0100964/* Do not reference exit code/data from devexit/cpuexit/memexit code/data */
965{
Uwe Kleine-König4a31a222010-01-29 12:04:26 +0100966 .fromsec = { ALL_XXXEXIT_SECTIONS, NULL },
Sam Ravnborg588ccd72008-01-24 21:12:37 +0100967 .tosec = { EXIT_SECTIONS, NULL },
Uwe Kleine-Königbbd3f4f2010-01-30 16:35:47 +0100968 .mismatch = XXXEXIT_TO_SOME_EXIT,
Uwe Kleine-Königaf92a822010-01-30 20:52:50 +0100969 .symbol_white_list = { DEFAULT_SYMBOL_WHITE_LIST, NULL },
Sam Ravnborg10668222008-01-13 22:21:31 +0100970},
Jan Beulichfd6c3a82009-03-12 10:58:33 +0000971/* Do not reference cpuexit code/data from memexit code/data */
972{
973 .fromsec = { MEM_EXIT_SECTIONS, NULL },
974 .tosec = { CPU_EXIT_SECTIONS, NULL },
Uwe Kleine-Königbbd3f4f2010-01-30 16:35:47 +0100975 .mismatch = XXXEXIT_TO_SOME_EXIT,
Uwe Kleine-Königaf92a822010-01-30 20:52:50 +0100976 .symbol_white_list = { DEFAULT_SYMBOL_WHITE_LIST, NULL },
Jan Beulichfd6c3a82009-03-12 10:58:33 +0000977},
978/* Do not reference memexit code/data from cpuexit code/data */
979{
980 .fromsec = { CPU_EXIT_SECTIONS, NULL },
981 .tosec = { MEM_EXIT_SECTIONS, NULL },
Uwe Kleine-Königbbd3f4f2010-01-30 16:35:47 +0100982 .mismatch = XXXEXIT_TO_SOME_EXIT,
Uwe Kleine-Königaf92a822010-01-30 20:52:50 +0100983 .symbol_white_list = { DEFAULT_SYMBOL_WHITE_LIST, NULL },
Jan Beulichfd6c3a82009-03-12 10:58:33 +0000984},
Sam Ravnborg10668222008-01-13 22:21:31 +0100985/* Do not use exit code/data from init code */
986{
Sam Ravnborgeb8f6892008-01-20 20:07:28 +0100987 .fromsec = { ALL_INIT_SECTIONS, NULL },
988 .tosec = { ALL_EXIT_SECTIONS, NULL },
Uwe Kleine-Königbbd3f4f2010-01-30 16:35:47 +0100989 .mismatch = ANY_INIT_TO_ANY_EXIT,
Uwe Kleine-Königaf92a822010-01-30 20:52:50 +0100990 .symbol_white_list = { DEFAULT_SYMBOL_WHITE_LIST, NULL },
Sam Ravnborg10668222008-01-13 22:21:31 +0100991},
992/* Do not use init code/data from exit code */
993{
Sam Ravnborgeb8f6892008-01-20 20:07:28 +0100994 .fromsec = { ALL_EXIT_SECTIONS, NULL },
Sam Ravnborg588ccd72008-01-24 21:12:37 +0100995 .tosec = { ALL_INIT_SECTIONS, NULL },
Uwe Kleine-Königbbd3f4f2010-01-30 16:35:47 +0100996 .mismatch = ANY_EXIT_TO_ANY_INIT,
Uwe Kleine-Königaf92a822010-01-30 20:52:50 +0100997 .symbol_white_list = { DEFAULT_SYMBOL_WHITE_LIST, NULL },
Sam Ravnborg10668222008-01-13 22:21:31 +0100998},
999/* Do not export init/exit functions or data */
1000{
1001 .fromsec = { "__ksymtab*", NULL },
Sam Ravnborgfa95eb12008-02-02 23:30:22 +01001002 .tosec = { INIT_SECTIONS, EXIT_SECTIONS, NULL },
Uwe Kleine-Königaf92a822010-01-30 20:52:50 +01001003 .mismatch = EXPORT_TO_INIT_EXIT,
1004 .symbol_white_list = { DEFAULT_SYMBOL_WHITE_LIST, NULL },
Sam Ravnborg10668222008-01-13 22:21:31 +01001005}
1006};
1007
Uwe Kleine-König0d2a6362010-01-30 16:56:20 +01001008static const struct sectioncheck *section_mismatch(
1009 const char *fromsec, const char *tosec)
Sam Ravnborg10668222008-01-13 22:21:31 +01001010{
1011 int i;
1012 int elems = sizeof(sectioncheck) / sizeof(struct sectioncheck);
1013 const struct sectioncheck *check = &sectioncheck[0];
1014
1015 for (i = 0; i < elems; i++) {
1016 if (match(fromsec, check->fromsec) &&
1017 match(tosec, check->tosec))
Uwe Kleine-König0d2a6362010-01-30 16:56:20 +01001018 return check;
Sam Ravnborg10668222008-01-13 22:21:31 +01001019 check++;
1020 }
Uwe Kleine-König0d2a6362010-01-30 16:56:20 +01001021 return NULL;
Sam Ravnborg10668222008-01-13 22:21:31 +01001022}
1023
Sam Ravnborg4c8fbca2006-02-26 22:18:11 +01001024/**
1025 * Whitelist to allow certain references to pass with no warning.
Sam Ravnborg0e0d3142007-05-17 20:14:48 +02001026 *
Sam Ravnborg4c8fbca2006-02-26 22:18:11 +01001027 * Pattern 1:
1028 * If a module parameter is declared __initdata and permissions=0
1029 * then this is legal despite the warning generated.
1030 * We cannot see value of permissions here, so just ignore
1031 * this pattern.
1032 * The pattern is identified by:
1033 * tosec = .init.data
Sam Ravnborg9209aed2006-03-05 00:16:26 +01001034 * fromsec = .data*
Sam Ravnborg4c8fbca2006-02-26 22:18:11 +01001035 * atsym =__param*
Sam Ravnborg62070fa2006-03-03 16:46:04 +01001036 *
Rusty Russell6a841522010-08-11 23:04:16 -06001037 * Pattern 1a:
1038 * module_param_call() ops can refer to __init set function if permissions=0
1039 * The pattern is identified by:
1040 * tosec = .init.text
1041 * fromsec = .data*
1042 * atsym = __param_ops_*
1043 *
Sam Ravnborg4c8fbca2006-02-26 22:18:11 +01001044 * Pattern 2:
Randy Dunlap72ee59b2006-04-15 11:17:12 -07001045 * Many drivers utilise a *driver container with references to
Sam Ravnborg4c8fbca2006-02-26 22:18:11 +01001046 * add, remove, probe functions etc.
Uwe Kleine-Königb75dcab2010-01-29 11:40:38 +01001047 * These functions may often be marked __devinit and we do not want to
Sam Ravnborg4c8fbca2006-02-26 22:18:11 +01001048 * warn here.
1049 * the pattern is identified by:
Sam Ravnborg83cda2b2007-07-25 21:52:31 +02001050 * tosec = init or exit section
1051 * fromsec = data section
Sam Ravnborgdf578e72008-01-11 19:17:15 +01001052 * atsym = *driver, *_template, *_sht, *_ops, *_probe,
1053 * *probe_one, *_console, *_timer
Vivek Goyalee6a8542007-01-11 01:52:44 +01001054 *
1055 * Pattern 3:
Sam Ravnborgc9939712009-04-26 11:17:42 +02001056 * Whitelist all references from .head.text to any init section
Sam Ravnborg9bf8cb92007-02-26 17:49:06 +01001057 *
Sam Ravnborg1d8af552007-06-03 00:41:22 +02001058 * Pattern 4:
Vivek Goyalee6a8542007-01-11 01:52:44 +01001059 * Some symbols belong to init section but still it is ok to reference
1060 * these from non-init sections as these symbols don't have any memory
1061 * allocated for them and symbol address and value are same. So even
1062 * if init section is freed, its ok to reference those symbols.
1063 * For ex. symbols marking the init section boundaries.
1064 * This pattern is identified by
1065 * refsymname = __init_begin, _sinittext, _einittext
Sam Ravnborg9bf8cb92007-02-26 17:49:06 +01001066 *
Sam Ravnborg4c8fbca2006-02-26 22:18:11 +01001067 **/
Uwe Kleine-Königaf92a822010-01-30 20:52:50 +01001068static int secref_whitelist(const struct sectioncheck *mismatch,
1069 const char *fromsec, const char *fromsym,
Sam Ravnborg58fb0d42008-01-23 21:13:50 +01001070 const char *tosec, const char *tosym)
Sam Ravnborg4c8fbca2006-02-26 22:18:11 +01001071{
Sam Ravnborg4c8fbca2006-02-26 22:18:11 +01001072 /* Check for pattern 1 */
Sam Ravnborg6c5bd232008-01-20 10:43:27 +01001073 if (match(tosec, init_data_sections) &&
1074 match(fromsec, data_sections) &&
Sam Ravnborg58fb0d42008-01-23 21:13:50 +01001075 (strncmp(fromsym, "__param", strlen("__param")) == 0))
1076 return 0;
Sam Ravnborg4c8fbca2006-02-26 22:18:11 +01001077
Rusty Russell6a841522010-08-11 23:04:16 -06001078 /* Check for pattern 1a */
1079 if (strcmp(tosec, ".init.text") == 0 &&
1080 match(fromsec, data_sections) &&
1081 (strncmp(fromsym, "__param_ops_", strlen("__param_ops_")) == 0))
1082 return 0;
1083
Sam Ravnborg4c8fbca2006-02-26 22:18:11 +01001084 /* Check for pattern 2 */
Sam Ravnborg6c5bd232008-01-20 10:43:27 +01001085 if (match(tosec, init_exit_sections) &&
1086 match(fromsec, data_sections) &&
Uwe Kleine-Königaf92a822010-01-30 20:52:50 +01001087 match(fromsym, mismatch->symbol_white_list))
Sam Ravnborg58fb0d42008-01-23 21:13:50 +01001088 return 0;
Sam Ravnborg4c8fbca2006-02-26 22:18:11 +01001089
Sam Ravnborg9bf8cb92007-02-26 17:49:06 +01001090 /* Check for pattern 3 */
Sam Ravnborg6c5bd232008-01-20 10:43:27 +01001091 if (match(fromsec, head_sections) &&
1092 match(tosec, init_sections))
Sam Ravnborg58fb0d42008-01-23 21:13:50 +01001093 return 0;
Sam Ravnborg9bf8cb92007-02-26 17:49:06 +01001094
Sam Ravnborg1d8af552007-06-03 00:41:22 +02001095 /* Check for pattern 4 */
Sam Ravnborg58fb0d42008-01-23 21:13:50 +01001096 if (match(tosym, linker_symbols))
1097 return 0;
Sam Ravnborg9bf8cb92007-02-26 17:49:06 +01001098
Sam Ravnborg58fb0d42008-01-23 21:13:50 +01001099 return 1;
Sam Ravnborg4c8fbca2006-02-26 22:18:11 +01001100}
1101
1102/**
Sam Ravnborg93684d32006-02-19 11:53:35 +01001103 * Find symbol based on relocation record info.
1104 * In some cases the symbol supplied is a valid symbol so
1105 * return refsym. If st_name != 0 we assume this is a valid symbol.
1106 * In other cases the symbol needs to be looked up in the symbol table
1107 * based on section and address.
1108 * **/
Sam Ravnborg9ad21c32008-01-18 21:04:34 +01001109static Elf_Sym *find_elf_symbol(struct elf_info *elf, Elf64_Sword addr,
Sam Ravnborg93684d32006-02-19 11:53:35 +01001110 Elf_Sym *relsym)
1111{
1112 Elf_Sym *sym;
Sam Ravnborg9ad21c32008-01-18 21:04:34 +01001113 Elf_Sym *near = NULL;
1114 Elf64_Sword distance = 20;
1115 Elf64_Sword d;
Denys Vlasenko1ce53ad2010-07-29 01:47:53 +02001116 unsigned int relsym_secindex;
Sam Ravnborg93684d32006-02-19 11:53:35 +01001117
1118 if (relsym->st_name != 0)
1119 return relsym;
Denys Vlasenko1ce53ad2010-07-29 01:47:53 +02001120
1121 relsym_secindex = get_secindex(elf, relsym);
Sam Ravnborg93684d32006-02-19 11:53:35 +01001122 for (sym = elf->symtab_start; sym < elf->symtab_stop; sym++) {
Denys Vlasenko1ce53ad2010-07-29 01:47:53 +02001123 if (get_secindex(elf, sym) != relsym_secindex)
Sam Ravnborg93684d32006-02-19 11:53:35 +01001124 continue;
Atsushi Nemotoae4ac122007-05-22 18:27:39 +09001125 if (ELF_ST_TYPE(sym->st_info) == STT_SECTION)
1126 continue;
Sam Ravnborg93684d32006-02-19 11:53:35 +01001127 if (sym->st_value == addr)
1128 return sym;
Sam Ravnborg9ad21c32008-01-18 21:04:34 +01001129 /* Find a symbol nearby - addr are maybe negative */
1130 d = sym->st_value - addr;
1131 if (d < 0)
1132 d = addr - sym->st_value;
1133 if (d < distance) {
1134 distance = d;
1135 near = sym;
1136 }
Sam Ravnborg93684d32006-02-19 11:53:35 +01001137 }
Sam Ravnborg9ad21c32008-01-18 21:04:34 +01001138 /* We need a close match */
1139 if (distance < 20)
1140 return near;
1141 else
1142 return NULL;
Sam Ravnborg93684d32006-02-19 11:53:35 +01001143}
1144
David Brownellda68d612007-02-20 13:58:16 -08001145static inline int is_arm_mapping_symbol(const char *str)
1146{
1147 return str[0] == '$' && strchr("atd", str[1])
1148 && (str[2] == '\0' || str[2] == '.');
1149}
1150
1151/*
1152 * If there's no name there, ignore it; likewise, ignore it if it's
1153 * one of the magic symbols emitted used by current ARM tools.
1154 *
1155 * Otherwise if find_symbols_between() returns those symbols, they'll
1156 * fail the whitelist tests and cause lots of false alarms ... fixable
1157 * only by merging __exit and __init sections into __text, bloating
1158 * the kernel (which is especially evil on embedded platforms).
1159 */
1160static inline int is_valid_name(struct elf_info *elf, Elf_Sym *sym)
1161{
1162 const char *name = elf->strtab + sym->st_name;
1163
1164 if (!name || !strlen(name))
1165 return 0;
1166 return !is_arm_mapping_symbol(name);
1167}
1168
Sam Ravnborgb39927c2006-02-17 22:42:02 +01001169/*
Sam Ravnborg43c74d12006-03-05 12:02:46 +01001170 * Find symbols before or equal addr and after addr - in the section sec.
1171 * If we find two symbols with equal offset prefer one with a valid name.
1172 * The ELF format may have a better way to detect what type of symbol
1173 * it is, but this works for now.
Sam Ravnborgb39927c2006-02-17 22:42:02 +01001174 **/
Sam Ravnborg157c23c2008-01-22 21:44:32 +01001175static Elf_Sym *find_elf_symbol2(struct elf_info *elf, Elf_Addr addr,
1176 const char *sec)
Sam Ravnborgb39927c2006-02-17 22:42:02 +01001177{
1178 Elf_Sym *sym;
Sam Ravnborg157c23c2008-01-22 21:44:32 +01001179 Elf_Sym *near = NULL;
Sam Ravnborg157c23c2008-01-22 21:44:32 +01001180 Elf_Addr distance = ~0;
Sam Ravnborg62070fa2006-03-03 16:46:04 +01001181
Sam Ravnborgb39927c2006-02-17 22:42:02 +01001182 for (sym = elf->symtab_start; sym < elf->symtab_stop; sym++) {
1183 const char *symsec;
1184
Denys Vlasenko1ce53ad2010-07-29 01:47:53 +02001185 if (is_shndx_special(sym->st_shndx))
Sam Ravnborgb39927c2006-02-17 22:42:02 +01001186 continue;
Denys Vlasenko1ce53ad2010-07-29 01:47:53 +02001187 symsec = sec_name(elf, get_secindex(elf, sym));
Sam Ravnborgb39927c2006-02-17 22:42:02 +01001188 if (strcmp(symsec, sec) != 0)
1189 continue;
David Brownellda68d612007-02-20 13:58:16 -08001190 if (!is_valid_name(elf, sym))
1191 continue;
Sam Ravnborgb39927c2006-02-17 22:42:02 +01001192 if (sym->st_value <= addr) {
Sam Ravnborg157c23c2008-01-22 21:44:32 +01001193 if ((addr - sym->st_value) < distance) {
1194 distance = addr - sym->st_value;
1195 near = sym;
1196 } else if ((addr - sym->st_value) == distance) {
1197 near = sym;
Sam Ravnborg43c74d12006-03-05 12:02:46 +01001198 }
Sam Ravnborgb39927c2006-02-17 22:42:02 +01001199 }
1200 }
Sam Ravnborg157c23c2008-01-22 21:44:32 +01001201 return near;
Sam Ravnborgb39927c2006-02-17 22:42:02 +01001202}
1203
Sam Ravnborg58fb0d42008-01-23 21:13:50 +01001204/*
Sam Ravnborg588ccd72008-01-24 21:12:37 +01001205 * Convert a section name to the function/data attribute
1206 * .init.text => __init
1207 * .cpuinit.data => __cpudata
1208 * .memexitconst => __memconst
1209 * etc.
Andy Shevchenkocbcf14a92010-08-17 13:36:40 +03001210 *
1211 * The memory of returned value has been allocated on a heap. The user of this
1212 * method should free it after usage.
Sam Ravnborg588ccd72008-01-24 21:12:37 +01001213*/
1214static char *sec2annotation(const char *s)
1215{
1216 if (match(s, init_exit_sections)) {
1217 char *p = malloc(20);
1218 char *r = p;
1219
1220 *p++ = '_';
1221 *p++ = '_';
1222 if (*s == '.')
1223 s++;
1224 while (*s && *s != '.')
1225 *p++ = *s++;
1226 *p = '\0';
1227 if (*s == '.')
1228 s++;
1229 if (strstr(s, "rodata") != NULL)
1230 strcat(p, "const ");
1231 else if (strstr(s, "data") != NULL)
1232 strcat(p, "data ");
1233 else
1234 strcat(p, " ");
Andy Shevchenkocbcf14a92010-08-17 13:36:40 +03001235 return r;
Sam Ravnborg588ccd72008-01-24 21:12:37 +01001236 } else {
Andrew Morton5003bab2010-08-11 00:42:26 -07001237 return strdup("");
Sam Ravnborg588ccd72008-01-24 21:12:37 +01001238 }
1239}
1240
1241static int is_function(Elf_Sym *sym)
1242{
1243 if (sym)
1244 return ELF_ST_TYPE(sym->st_info) == STT_FUNC;
1245 else
Sam Ravnborgf6667512008-02-06 21:51:18 +01001246 return -1;
Sam Ravnborg588ccd72008-01-24 21:12:37 +01001247}
1248
Randy Dunlap00759c02011-03-15 14:13:47 -07001249static void print_section_list(const char * const list[20])
1250{
1251 const char *const *s = list;
1252
1253 while (*s) {
1254 fprintf(stderr, "%s", *s);
1255 s++;
1256 if (*s)
1257 fprintf(stderr, ", ");
1258 }
1259 fprintf(stderr, "\n");
1260}
1261
Sam Ravnborg588ccd72008-01-24 21:12:37 +01001262/*
Sam Ravnborgb39927c2006-02-17 22:42:02 +01001263 * Print a warning about a section mismatch.
1264 * Try to find symbols near it so user can find it.
Sam Ravnborg4c8fbca2006-02-26 22:18:11 +01001265 * Check whitelist before warning - it may be a false positive.
Sam Ravnborg58fb0d42008-01-23 21:13:50 +01001266 */
Uwe Kleine-König0d2a6362010-01-30 16:56:20 +01001267static void report_sec_mismatch(const char *modname,
1268 const struct sectioncheck *mismatch,
Sam Ravnborg58fb0d42008-01-23 21:13:50 +01001269 const char *fromsec,
1270 unsigned long long fromaddr,
1271 const char *fromsym,
Sam Ravnborg588ccd72008-01-24 21:12:37 +01001272 int from_is_func,
1273 const char *tosec, const char *tosym,
1274 int to_is_func)
Sam Ravnborgb39927c2006-02-17 22:42:02 +01001275{
Sam Ravnborg588ccd72008-01-24 21:12:37 +01001276 const char *from, *from_p;
1277 const char *to, *to_p;
Alexey Fomenko37ed19d2010-08-09 17:20:24 -07001278 char *prl_from;
1279 char *prl_to;
Sam Ravnborgf6667512008-02-06 21:51:18 +01001280
1281 switch (from_is_func) {
1282 case 0: from = "variable"; from_p = ""; break;
1283 case 1: from = "function"; from_p = "()"; break;
1284 default: from = "(unknown reference)"; from_p = ""; break;
1285 }
1286 switch (to_is_func) {
1287 case 0: to = "variable"; to_p = ""; break;
1288 case 1: to = "function"; to_p = "()"; break;
1289 default: to = "(unknown reference)"; to_p = ""; break;
1290 }
Sam Ravnborg588ccd72008-01-24 21:12:37 +01001291
Sam Ravnborge5f95c82008-02-02 18:57:18 +01001292 sec_mismatch_count++;
1293 if (!sec_mismatch_verbose)
1294 return;
1295
Geert Uytterhoeven7c0ac492008-02-05 11:38:49 +01001296 warn("%s(%s+0x%llx): Section mismatch in reference from the %s %s%s "
1297 "to the %s %s:%s%s\n",
1298 modname, fromsec, fromaddr, from, fromsym, from_p, to, tosec,
1299 tosym, to_p);
Sam Ravnborg588ccd72008-01-24 21:12:37 +01001300
Uwe Kleine-König0d2a6362010-01-30 16:56:20 +01001301 switch (mismatch->mismatch) {
Uwe Kleine-Königbbd3f4f2010-01-30 16:35:47 +01001302 case TEXT_TO_ANY_INIT:
Alexey Fomenko37ed19d2010-08-09 17:20:24 -07001303 prl_from = sec2annotation(fromsec);
1304 prl_to = sec2annotation(tosec);
Sam Ravnborg588ccd72008-01-24 21:12:37 +01001305 fprintf(stderr,
Sam Ravnborgf6667512008-02-06 21:51:18 +01001306 "The function %s%s() references\n"
Sam Ravnborg588ccd72008-01-24 21:12:37 +01001307 "the %s %s%s%s.\n"
1308 "This is often because %s lacks a %s\n"
1309 "annotation or the annotation of %s is wrong.\n",
Alexey Fomenko37ed19d2010-08-09 17:20:24 -07001310 prl_from, fromsym,
1311 to, prl_to, tosym, to_p,
1312 fromsym, prl_to, tosym);
1313 free(prl_from);
1314 free(prl_to);
Sam Ravnborg588ccd72008-01-24 21:12:37 +01001315 break;
Uwe Kleine-Königbbd3f4f2010-01-30 16:35:47 +01001316 case DATA_TO_ANY_INIT: {
Alexey Fomenko37ed19d2010-08-09 17:20:24 -07001317 prl_to = sec2annotation(tosec);
Sam Ravnborg588ccd72008-01-24 21:12:37 +01001318 fprintf(stderr,
1319 "The variable %s references\n"
1320 "the %s %s%s%s\n"
1321 "If the reference is valid then annotate the\n"
Sam Ravnborg8b8b76c2009-06-06 00:18:05 +02001322 "variable with __init* or __refdata (see linux/init.h) "
Sam Ravnborg588ccd72008-01-24 21:12:37 +01001323 "or name the variable:\n",
Alexey Fomenko37ed19d2010-08-09 17:20:24 -07001324 fromsym, to, prl_to, tosym, to_p);
Randy Dunlap00759c02011-03-15 14:13:47 -07001325 print_section_list(mismatch->symbol_white_list);
Alexey Fomenko37ed19d2010-08-09 17:20:24 -07001326 free(prl_to);
Sam Ravnborg588ccd72008-01-24 21:12:37 +01001327 break;
Sam Ravnborg58fb0d42008-01-23 21:13:50 +01001328 }
Uwe Kleine-Königbbd3f4f2010-01-30 16:35:47 +01001329 case TEXT_TO_ANY_EXIT:
Alexey Fomenko37ed19d2010-08-09 17:20:24 -07001330 prl_to = sec2annotation(tosec);
Sam Ravnborg588ccd72008-01-24 21:12:37 +01001331 fprintf(stderr,
1332 "The function %s() references a %s in an exit section.\n"
1333 "Often the %s %s%s has valid usage outside the exit section\n"
1334 "and the fix is to remove the %sannotation of %s.\n",
Alexey Fomenko37ed19d2010-08-09 17:20:24 -07001335 fromsym, to, to, tosym, to_p, prl_to, tosym);
1336 free(prl_to);
Sam Ravnborg588ccd72008-01-24 21:12:37 +01001337 break;
Uwe Kleine-Königbbd3f4f2010-01-30 16:35:47 +01001338 case DATA_TO_ANY_EXIT: {
Alexey Fomenko37ed19d2010-08-09 17:20:24 -07001339 prl_to = sec2annotation(tosec);
Sam Ravnborg588ccd72008-01-24 21:12:37 +01001340 fprintf(stderr,
1341 "The variable %s references\n"
1342 "the %s %s%s%s\n"
1343 "If the reference is valid then annotate the\n"
1344 "variable with __exit* (see linux/init.h) or "
1345 "name the variable:\n",
Alexey Fomenko37ed19d2010-08-09 17:20:24 -07001346 fromsym, to, prl_to, tosym, to_p);
Randy Dunlap00759c02011-03-15 14:13:47 -07001347 print_section_list(mismatch->symbol_white_list);
Alexey Fomenko37ed19d2010-08-09 17:20:24 -07001348 free(prl_to);
Sam Ravnborg588ccd72008-01-24 21:12:37 +01001349 break;
1350 }
Uwe Kleine-Königbbd3f4f2010-01-30 16:35:47 +01001351 case XXXINIT_TO_SOME_INIT:
1352 case XXXEXIT_TO_SOME_EXIT:
Alexey Fomenko37ed19d2010-08-09 17:20:24 -07001353 prl_from = sec2annotation(fromsec);
1354 prl_to = sec2annotation(tosec);
Sam Ravnborg588ccd72008-01-24 21:12:37 +01001355 fprintf(stderr,
1356 "The %s %s%s%s references\n"
1357 "a %s %s%s%s.\n"
1358 "If %s is only used by %s then\n"
1359 "annotate %s with a matching annotation.\n",
Alexey Fomenko37ed19d2010-08-09 17:20:24 -07001360 from, prl_from, fromsym, from_p,
1361 to, prl_to, tosym, to_p,
Geert Uytterhoevenb1d26752008-02-17 14:12:10 +01001362 tosym, fromsym, tosym);
Alexey Fomenko37ed19d2010-08-09 17:20:24 -07001363 free(prl_from);
1364 free(prl_to);
Sam Ravnborg588ccd72008-01-24 21:12:37 +01001365 break;
Uwe Kleine-Königbbd3f4f2010-01-30 16:35:47 +01001366 case ANY_INIT_TO_ANY_EXIT:
Alexey Fomenko37ed19d2010-08-09 17:20:24 -07001367 prl_from = sec2annotation(fromsec);
1368 prl_to = sec2annotation(tosec);
Sam Ravnborg588ccd72008-01-24 21:12:37 +01001369 fprintf(stderr,
1370 "The %s %s%s%s references\n"
1371 "a %s %s%s%s.\n"
1372 "This is often seen when error handling "
1373 "in the init function\n"
1374 "uses functionality in the exit path.\n"
1375 "The fix is often to remove the %sannotation of\n"
1376 "%s%s so it may be used outside an exit section.\n",
Alexey Fomenko37ed19d2010-08-09 17:20:24 -07001377 from, prl_from, fromsym, from_p,
1378 to, prl_to, tosym, to_p,
Andrew Morton5003bab2010-08-11 00:42:26 -07001379 prl_to, tosym, to_p);
Alexey Fomenko37ed19d2010-08-09 17:20:24 -07001380 free(prl_from);
1381 free(prl_to);
Sam Ravnborg588ccd72008-01-24 21:12:37 +01001382 break;
Uwe Kleine-Königbbd3f4f2010-01-30 16:35:47 +01001383 case ANY_EXIT_TO_ANY_INIT:
Alexey Fomenko37ed19d2010-08-09 17:20:24 -07001384 prl_from = sec2annotation(fromsec);
1385 prl_to = sec2annotation(tosec);
Sam Ravnborg588ccd72008-01-24 21:12:37 +01001386 fprintf(stderr,
1387 "The %s %s%s%s references\n"
1388 "a %s %s%s%s.\n"
1389 "This is often seen when error handling "
1390 "in the exit function\n"
1391 "uses functionality in the init path.\n"
1392 "The fix is often to remove the %sannotation of\n"
1393 "%s%s so it may be used outside an init section.\n",
Alexey Fomenko37ed19d2010-08-09 17:20:24 -07001394 from, prl_from, fromsym, from_p,
1395 to, prl_to, tosym, to_p,
1396 prl_to, tosym, to_p);
1397 free(prl_from);
1398 free(prl_to);
Sam Ravnborg588ccd72008-01-24 21:12:37 +01001399 break;
1400 case EXPORT_TO_INIT_EXIT:
Alexey Fomenko37ed19d2010-08-09 17:20:24 -07001401 prl_to = sec2annotation(tosec);
Sam Ravnborg588ccd72008-01-24 21:12:37 +01001402 fprintf(stderr,
1403 "The symbol %s is exported and annotated %s\n"
1404 "Fix this by removing the %sannotation of %s "
1405 "or drop the export.\n",
Alexey Fomenko37ed19d2010-08-09 17:20:24 -07001406 tosym, prl_to, prl_to, tosym);
1407 free(prl_to);
Sam Ravnborg588ccd72008-01-24 21:12:37 +01001408 break;
1409 }
1410 fprintf(stderr, "\n");
Sam Ravnborg58fb0d42008-01-23 21:13:50 +01001411}
1412
1413static void check_section_mismatch(const char *modname, struct elf_info *elf,
1414 Elf_Rela *r, Elf_Sym *sym, const char *fromsec)
1415{
1416 const char *tosec;
Uwe Kleine-König0d2a6362010-01-30 16:56:20 +01001417 const struct sectioncheck *mismatch;
Sam Ravnborg58fb0d42008-01-23 21:13:50 +01001418
Denys Vlasenko1ce53ad2010-07-29 01:47:53 +02001419 tosec = sec_name(elf, get_secindex(elf, sym));
Sam Ravnborg588ccd72008-01-24 21:12:37 +01001420 mismatch = section_mismatch(fromsec, tosec);
Uwe Kleine-König0d2a6362010-01-30 16:56:20 +01001421 if (mismatch) {
Sam Ravnborg588ccd72008-01-24 21:12:37 +01001422 Elf_Sym *to;
1423 Elf_Sym *from;
Sam Ravnborg58fb0d42008-01-23 21:13:50 +01001424 const char *tosym;
Sam Ravnborg588ccd72008-01-24 21:12:37 +01001425 const char *fromsym;
Sam Ravnborg58fb0d42008-01-23 21:13:50 +01001426
Sam Ravnborg588ccd72008-01-24 21:12:37 +01001427 from = find_elf_symbol2(elf, r->r_offset, fromsec);
1428 fromsym = sym_name(elf, from);
1429 to = find_elf_symbol(elf, r->r_addend, sym);
1430 tosym = sym_name(elf, to);
Sam Ravnborg58fb0d42008-01-23 21:13:50 +01001431
1432 /* check whitelist - we may ignore it */
Uwe Kleine-Königaf92a822010-01-30 20:52:50 +01001433 if (secref_whitelist(mismatch,
1434 fromsec, fromsym, tosec, tosym)) {
Sam Ravnborg588ccd72008-01-24 21:12:37 +01001435 report_sec_mismatch(modname, mismatch,
1436 fromsec, r->r_offset, fromsym,
1437 is_function(from), tosec, tosym,
1438 is_function(to));
Sam Ravnborg58fb0d42008-01-23 21:13:50 +01001439 }
Sam Ravnborgb39927c2006-02-17 22:42:02 +01001440 }
1441}
1442
Atsushi Nemotoae4ac122007-05-22 18:27:39 +09001443static unsigned int *reloc_location(struct elf_info *elf,
Sam Ravnborg5b24c072008-01-18 21:49:29 +01001444 Elf_Shdr *sechdr, Elf_Rela *r)
Atsushi Nemotoae4ac122007-05-22 18:27:39 +09001445{
1446 Elf_Shdr *sechdrs = elf->sechdrs;
Anders Kaseorg68457562011-05-19 16:55:27 -06001447 int section = sechdr->sh_info;
Atsushi Nemotoae4ac122007-05-22 18:27:39 +09001448
1449 return (void *)elf->hdr + sechdrs[section].sh_offset +
Olof Johansson731ece42010-12-10 02:09:23 -06001450 r->r_offset;
Atsushi Nemotoae4ac122007-05-22 18:27:39 +09001451}
1452
Sam Ravnborg5b24c072008-01-18 21:49:29 +01001453static int addend_386_rel(struct elf_info *elf, Elf_Shdr *sechdr, Elf_Rela *r)
Atsushi Nemotoae4ac122007-05-22 18:27:39 +09001454{
1455 unsigned int r_typ = ELF_R_TYPE(r->r_info);
Sam Ravnborg5b24c072008-01-18 21:49:29 +01001456 unsigned int *location = reloc_location(elf, sechdr, r);
Atsushi Nemotoae4ac122007-05-22 18:27:39 +09001457
1458 switch (r_typ) {
1459 case R_386_32:
1460 r->r_addend = TO_NATIVE(*location);
1461 break;
1462 case R_386_PC32:
1463 r->r_addend = TO_NATIVE(*location) + 4;
1464 /* For CONFIG_RELOCATABLE=y */
1465 if (elf->hdr->e_type == ET_EXEC)
1466 r->r_addend += r->r_offset;
1467 break;
1468 }
1469 return 0;
1470}
1471
Sam Ravnborg5b24c072008-01-18 21:49:29 +01001472static int addend_arm_rel(struct elf_info *elf, Elf_Shdr *sechdr, Elf_Rela *r)
Sam Ravnborg56a974f2007-07-16 22:39:35 +02001473{
1474 unsigned int r_typ = ELF_R_TYPE(r->r_info);
1475
1476 switch (r_typ) {
1477 case R_ARM_ABS32:
1478 /* From ARM ABI: (S + A) | T */
Sam Ravnborgdf578e72008-01-11 19:17:15 +01001479 r->r_addend = (int)(long)
1480 (elf->symtab_start + ELF_R_SYM(r->r_info));
Sam Ravnborg56a974f2007-07-16 22:39:35 +02001481 break;
1482 case R_ARM_PC24:
1483 /* From ARM ABI: ((S + A) | T) - P */
Sam Ravnborgdf578e72008-01-11 19:17:15 +01001484 r->r_addend = (int)(long)(elf->hdr +
Sam Ravnborg5b24c072008-01-18 21:49:29 +01001485 sechdr->sh_offset +
1486 (r->r_offset - sechdr->sh_addr));
Sam Ravnborg56a974f2007-07-16 22:39:35 +02001487 break;
1488 default:
1489 return 1;
1490 }
1491 return 0;
1492}
1493
Sam Ravnborg5b24c072008-01-18 21:49:29 +01001494static int addend_mips_rel(struct elf_info *elf, Elf_Shdr *sechdr, Elf_Rela *r)
Atsushi Nemotoae4ac122007-05-22 18:27:39 +09001495{
1496 unsigned int r_typ = ELF_R_TYPE(r->r_info);
Sam Ravnborg5b24c072008-01-18 21:49:29 +01001497 unsigned int *location = reloc_location(elf, sechdr, r);
Atsushi Nemotoae4ac122007-05-22 18:27:39 +09001498 unsigned int inst;
1499
1500 if (r_typ == R_MIPS_HI16)
1501 return 1; /* skip this */
1502 inst = TO_NATIVE(*location);
1503 switch (r_typ) {
1504 case R_MIPS_LO16:
1505 r->r_addend = inst & 0xffff;
1506 break;
1507 case R_MIPS_26:
1508 r->r_addend = (inst & 0x03ffffff) << 2;
1509 break;
1510 case R_MIPS_32:
1511 r->r_addend = inst;
1512 break;
1513 }
1514 return 0;
1515}
1516
Sam Ravnborg5b24c072008-01-18 21:49:29 +01001517static void section_rela(const char *modname, struct elf_info *elf,
Sam Ravnborg10668222008-01-13 22:21:31 +01001518 Elf_Shdr *sechdr)
Sam Ravnborg5b24c072008-01-18 21:49:29 +01001519{
1520 Elf_Sym *sym;
1521 Elf_Rela *rela;
1522 Elf_Rela r;
1523 unsigned int r_sym;
1524 const char *fromsec;
Sam Ravnborg5b24c072008-01-18 21:49:29 +01001525
Sam Ravnborgff13f922008-01-23 19:54:27 +01001526 Elf_Rela *start = (void *)elf->hdr + sechdr->sh_offset;
Sam Ravnborg5b24c072008-01-18 21:49:29 +01001527 Elf_Rela *stop = (void *)start + sechdr->sh_size;
1528
Sam Ravnborgff13f922008-01-23 19:54:27 +01001529 fromsec = sech_name(elf, sechdr);
Sam Ravnborg5b24c072008-01-18 21:49:29 +01001530 fromsec += strlen(".rela");
1531 /* if from section (name) is know good then skip it */
Anders Kaseorgb614a692009-04-23 16:49:33 -04001532 if (match(fromsec, section_white_list))
Sam Ravnborg5b24c072008-01-18 21:49:29 +01001533 return;
Sam Ravnborge241a632008-01-28 20:13:13 +01001534
Sam Ravnborg5b24c072008-01-18 21:49:29 +01001535 for (rela = start; rela < stop; rela++) {
1536 r.r_offset = TO_NATIVE(rela->r_offset);
1537#if KERNEL_ELFCLASS == ELFCLASS64
Sam Ravnborgff13f922008-01-23 19:54:27 +01001538 if (elf->hdr->e_machine == EM_MIPS) {
Sam Ravnborg5b24c072008-01-18 21:49:29 +01001539 unsigned int r_typ;
1540 r_sym = ELF64_MIPS_R_SYM(rela->r_info);
1541 r_sym = TO_NATIVE(r_sym);
1542 r_typ = ELF64_MIPS_R_TYPE(rela->r_info);
1543 r.r_info = ELF64_R_INFO(r_sym, r_typ);
1544 } else {
1545 r.r_info = TO_NATIVE(rela->r_info);
1546 r_sym = ELF_R_SYM(r.r_info);
1547 }
1548#else
1549 r.r_info = TO_NATIVE(rela->r_info);
1550 r_sym = ELF_R_SYM(r.r_info);
1551#endif
1552 r.r_addend = TO_NATIVE(rela->r_addend);
1553 sym = elf->symtab_start + r_sym;
1554 /* Skip special sections */
Denys Vlasenko1ce53ad2010-07-29 01:47:53 +02001555 if (is_shndx_special(sym->st_shndx))
Sam Ravnborg5b24c072008-01-18 21:49:29 +01001556 continue;
Sam Ravnborg58fb0d42008-01-23 21:13:50 +01001557 check_section_mismatch(modname, elf, &r, sym, fromsec);
Sam Ravnborg5b24c072008-01-18 21:49:29 +01001558 }
1559}
1560
1561static void section_rel(const char *modname, struct elf_info *elf,
Sam Ravnborg10668222008-01-13 22:21:31 +01001562 Elf_Shdr *sechdr)
Sam Ravnborg5b24c072008-01-18 21:49:29 +01001563{
1564 Elf_Sym *sym;
1565 Elf_Rel *rel;
1566 Elf_Rela r;
1567 unsigned int r_sym;
1568 const char *fromsec;
Sam Ravnborg5b24c072008-01-18 21:49:29 +01001569
Sam Ravnborgff13f922008-01-23 19:54:27 +01001570 Elf_Rel *start = (void *)elf->hdr + sechdr->sh_offset;
Sam Ravnborg5b24c072008-01-18 21:49:29 +01001571 Elf_Rel *stop = (void *)start + sechdr->sh_size;
1572
Sam Ravnborgff13f922008-01-23 19:54:27 +01001573 fromsec = sech_name(elf, sechdr);
Sam Ravnborg5b24c072008-01-18 21:49:29 +01001574 fromsec += strlen(".rel");
1575 /* if from section (name) is know good then skip it */
Anders Kaseorgb614a692009-04-23 16:49:33 -04001576 if (match(fromsec, section_white_list))
Sam Ravnborg5b24c072008-01-18 21:49:29 +01001577 return;
1578
1579 for (rel = start; rel < stop; rel++) {
1580 r.r_offset = TO_NATIVE(rel->r_offset);
1581#if KERNEL_ELFCLASS == ELFCLASS64
Sam Ravnborgff13f922008-01-23 19:54:27 +01001582 if (elf->hdr->e_machine == EM_MIPS) {
Sam Ravnborg5b24c072008-01-18 21:49:29 +01001583 unsigned int r_typ;
1584 r_sym = ELF64_MIPS_R_SYM(rel->r_info);
1585 r_sym = TO_NATIVE(r_sym);
1586 r_typ = ELF64_MIPS_R_TYPE(rel->r_info);
1587 r.r_info = ELF64_R_INFO(r_sym, r_typ);
1588 } else {
1589 r.r_info = TO_NATIVE(rel->r_info);
1590 r_sym = ELF_R_SYM(r.r_info);
1591 }
1592#else
1593 r.r_info = TO_NATIVE(rel->r_info);
1594 r_sym = ELF_R_SYM(r.r_info);
1595#endif
1596 r.r_addend = 0;
Sam Ravnborgff13f922008-01-23 19:54:27 +01001597 switch (elf->hdr->e_machine) {
Sam Ravnborg5b24c072008-01-18 21:49:29 +01001598 case EM_386:
1599 if (addend_386_rel(elf, sechdr, &r))
1600 continue;
1601 break;
1602 case EM_ARM:
1603 if (addend_arm_rel(elf, sechdr, &r))
1604 continue;
1605 break;
1606 case EM_MIPS:
1607 if (addend_mips_rel(elf, sechdr, &r))
1608 continue;
1609 break;
1610 }
1611 sym = elf->symtab_start + r_sym;
1612 /* Skip special sections */
Denys Vlasenko1ce53ad2010-07-29 01:47:53 +02001613 if (is_shndx_special(sym->st_shndx))
Sam Ravnborg5b24c072008-01-18 21:49:29 +01001614 continue;
Sam Ravnborg58fb0d42008-01-23 21:13:50 +01001615 check_section_mismatch(modname, elf, &r, sym, fromsec);
Sam Ravnborg5b24c072008-01-18 21:49:29 +01001616 }
1617}
1618
Sam Ravnborgb39927c2006-02-17 22:42:02 +01001619/**
1620 * A module includes a number of sections that are discarded
1621 * either when loaded or when used as built-in.
1622 * For loaded modules all functions marked __init and all data
Uwe Kleine-Königb5950762010-11-01 15:38:34 -04001623 * marked __initdata will be discarded when the module has been initialized.
Sam Ravnborgb39927c2006-02-17 22:42:02 +01001624 * Likewise for modules used built-in the sections marked __exit
1625 * are discarded because __exit marked function are supposed to be called
Ben Dooks32be1d22008-07-29 22:33:44 -07001626 * only when a module is unloaded which never happens for built-in modules.
Sam Ravnborgb39927c2006-02-17 22:42:02 +01001627 * The check_sec_ref() function traverses all relocation records
1628 * to find all references to a section that reference a section that will
1629 * be discarded and warns about it.
1630 **/
1631static void check_sec_ref(struct module *mod, const char *modname,
Sam Ravnborg10668222008-01-13 22:21:31 +01001632 struct elf_info *elf)
Sam Ravnborgb39927c2006-02-17 22:42:02 +01001633{
1634 int i;
Sam Ravnborgb39927c2006-02-17 22:42:02 +01001635 Elf_Shdr *sechdrs = elf->sechdrs;
Sam Ravnborg62070fa2006-03-03 16:46:04 +01001636
Sam Ravnborgb39927c2006-02-17 22:42:02 +01001637 /* Walk through all sections */
Denys Vlasenko1ce53ad2010-07-29 01:47:53 +02001638 for (i = 0; i < elf->num_sections; i++) {
Anders Kaseorgb614a692009-04-23 16:49:33 -04001639 check_section(modname, elf, &elf->sechdrs[i]);
Sam Ravnborgb39927c2006-02-17 22:42:02 +01001640 /* We want to process only relocation sections and not .init */
Sam Ravnborg5b24c072008-01-18 21:49:29 +01001641 if (sechdrs[i].sh_type == SHT_RELA)
Sam Ravnborg10668222008-01-13 22:21:31 +01001642 section_rela(modname, elf, &elf->sechdrs[i]);
Sam Ravnborg5b24c072008-01-18 21:49:29 +01001643 else if (sechdrs[i].sh_type == SHT_REL)
Sam Ravnborg10668222008-01-13 22:21:31 +01001644 section_rel(modname, elf, &elf->sechdrs[i]);
Sam Ravnborgb39927c2006-02-17 22:42:02 +01001645 }
1646}
1647
Sam Ravnborg5c3ead82006-01-28 17:19:35 +01001648static void read_symbols(char *modname)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001649{
1650 const char *symname;
1651 char *version;
Sam Ravnborgb817f6f2006-06-09 21:53:55 +02001652 char *license;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001653 struct module *mod;
1654 struct elf_info info = { };
1655 Elf_Sym *sym;
1656
Sam Ravnborg85bd2fd2007-02-26 15:33:52 +01001657 if (!parse_elf(&info, modname))
1658 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001659
1660 mod = new_module(modname);
1661
1662 /* When there's no vmlinux, don't print warnings about
1663 * unresolved symbols (since there'll be too many ;) */
1664 if (is_vmlinux(modname)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001665 have_vmlinux = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001666 mod->skip = 1;
1667 }
1668
Sam Ravnborgb817f6f2006-06-09 21:53:55 +02001669 license = get_modinfo(info.modinfo, info.modinfo_len, "license");
Sam Ravnborg2fa36562008-04-26 21:07:26 +02001670 if (info.modinfo && !license && !is_vmlinux(modname))
1671 warn("modpost: missing MODULE_LICENSE() in %s\n"
1672 "see include/linux/module.h for "
1673 "more information\n", modname);
Sam Ravnborgb817f6f2006-06-09 21:53:55 +02001674 while (license) {
1675 if (license_is_gpl_compatible(license))
1676 mod->gpl_compatible = 1;
1677 else {
1678 mod->gpl_compatible = 0;
1679 break;
1680 }
1681 license = get_next_modinfo(info.modinfo, info.modinfo_len,
1682 "license", license);
1683 }
1684
Linus Torvalds1da177e2005-04-16 15:20:36 -07001685 for (sym = info.symtab_start; sym < info.symtab_stop; sym++) {
1686 symname = info.strtab + sym->st_name;
1687
1688 handle_modversions(mod, &info, sym, symname);
1689 handle_moddevtable(mod, &info, sym, symname);
1690 }
Sam Ravnborgd1f25e62008-01-17 21:17:42 +01001691 if (!is_vmlinux(modname) ||
Sam Ravnborg10668222008-01-13 22:21:31 +01001692 (is_vmlinux(modname) && vmlinux_section_warnings))
1693 check_sec_ref(mod, modname, &info);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001694
1695 version = get_modinfo(info.modinfo, info.modinfo_len, "version");
1696 if (version)
1697 maybe_frob_rcs_version(modname, version, info.modinfo,
1698 version - (char *)info.hdr);
1699 if (version || (all_versions && !is_vmlinux(modname)))
1700 get_src_version(modname, mod->srcversion,
1701 sizeof(mod->srcversion)-1);
1702
1703 parse_elf_finish(&info);
1704
Rusty Russell8c8ef422009-03-31 13:05:34 -06001705 /* Our trick to get versioning for module struct etc. - it's
Linus Torvalds1da177e2005-04-16 15:20:36 -07001706 * never passed as an argument to an exported function, so
1707 * the automatic versioning doesn't pick it up, but it's really
1708 * important anyhow */
1709 if (modversions)
Rusty Russell8c8ef422009-03-31 13:05:34 -06001710 mod->unres = alloc_symbol("module_layout", 0, mod->unres);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001711}
1712
1713#define SZ 500
1714
1715/* We first write the generated file into memory using the
1716 * following helper, then compare to the file on disk and
1717 * only update the later if anything changed */
1718
Sam Ravnborg5c3ead82006-01-28 17:19:35 +01001719void __attribute__((format(printf, 2, 3))) buf_printf(struct buffer *buf,
1720 const char *fmt, ...)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001721{
1722 char tmp[SZ];
1723 int len;
1724 va_list ap;
Sam Ravnborg62070fa2006-03-03 16:46:04 +01001725
Linus Torvalds1da177e2005-04-16 15:20:36 -07001726 va_start(ap, fmt);
1727 len = vsnprintf(tmp, SZ, fmt, ap);
Sam Ravnborg7670f022006-03-16 23:04:08 -08001728 buf_write(buf, tmp, len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001729 va_end(ap);
1730}
1731
Sam Ravnborg5c3ead82006-01-28 17:19:35 +01001732void buf_write(struct buffer *buf, const char *s, int len)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001733{
1734 if (buf->size - buf->pos < len) {
Sam Ravnborg7670f022006-03-16 23:04:08 -08001735 buf->size += len + SZ;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001736 buf->p = realloc(buf->p, buf->size);
1737 }
1738 strncpy(buf->p + buf->pos, s, len);
1739 buf->pos += len;
1740}
1741
Sam Ravnborgc96fca22006-07-01 11:44:23 +02001742static void check_for_gpl_usage(enum export exp, const char *m, const char *s)
1743{
1744 const char *e = is_vmlinux(m) ?"":".ko";
1745
1746 switch (exp) {
1747 case export_gpl:
1748 fatal("modpost: GPL-incompatible module %s%s "
1749 "uses GPL-only symbol '%s'\n", m, e, s);
1750 break;
1751 case export_unused_gpl:
1752 fatal("modpost: GPL-incompatible module %s%s "
1753 "uses GPL-only symbol marked UNUSED '%s'\n", m, e, s);
1754 break;
1755 case export_gpl_future:
1756 warn("modpost: GPL-incompatible module %s%s "
1757 "uses future GPL-only symbol '%s'\n", m, e, s);
1758 break;
1759 case export_plain:
1760 case export_unused:
1761 case export_unknown:
1762 /* ignore */
1763 break;
1764 }
1765}
1766
Sam Ravnborgdf578e72008-01-11 19:17:15 +01001767static void check_for_unused(enum export exp, const char *m, const char *s)
Sam Ravnborgc96fca22006-07-01 11:44:23 +02001768{
1769 const char *e = is_vmlinux(m) ?"":".ko";
1770
1771 switch (exp) {
1772 case export_unused:
1773 case export_unused_gpl:
1774 warn("modpost: module %s%s "
1775 "uses symbol '%s' marked UNUSED\n", m, e, s);
1776 break;
1777 default:
1778 /* ignore */
1779 break;
1780 }
1781}
1782
1783static void check_exports(struct module *mod)
Sam Ravnborgb817f6f2006-06-09 21:53:55 +02001784{
1785 struct symbol *s, *exp;
1786
1787 for (s = mod->unres; s; s = s->next) {
Andrew Morton6449bd62006-06-09 20:45:06 -07001788 const char *basename;
Sam Ravnborgb817f6f2006-06-09 21:53:55 +02001789 exp = find_symbol(s->name);
1790 if (!exp || exp->module == mod)
1791 continue;
Andrew Morton6449bd62006-06-09 20:45:06 -07001792 basename = strrchr(mod->name, '/');
Sam Ravnborgb817f6f2006-06-09 21:53:55 +02001793 if (basename)
1794 basename++;
Sam Ravnborgc96fca22006-07-01 11:44:23 +02001795 else
1796 basename = mod->name;
1797 if (!mod->gpl_compatible)
1798 check_for_gpl_usage(exp->export, basename, exp->name);
1799 check_for_unused(exp->export, basename, exp->name);
Sam Ravnborgdf578e72008-01-11 19:17:15 +01001800 }
Sam Ravnborgb817f6f2006-06-09 21:53:55 +02001801}
1802
Sam Ravnborg5c3ead82006-01-28 17:19:35 +01001803/**
1804 * Header for the generated file
1805 **/
1806static void add_header(struct buffer *b, struct module *mod)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001807{
1808 buf_printf(b, "#include <linux/module.h>\n");
1809 buf_printf(b, "#include <linux/vermagic.h>\n");
1810 buf_printf(b, "#include <linux/compiler.h>\n");
1811 buf_printf(b, "\n");
1812 buf_printf(b, "MODULE_INFO(vermagic, VERMAGIC_STRING);\n");
1813 buf_printf(b, "\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001814 buf_printf(b, "struct module __this_module\n");
1815 buf_printf(b, "__attribute__((section(\".gnu.linkonce.this_module\"))) = {\n");
Ustyugov Romanf83b5e32005-09-23 08:42:11 +04001816 buf_printf(b, " .name = KBUILD_MODNAME,\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001817 if (mod->has_init)
1818 buf_printf(b, " .init = init_module,\n");
1819 if (mod->has_cleanup)
1820 buf_printf(b, "#ifdef CONFIG_MODULE_UNLOAD\n"
1821 " .exit = cleanup_module,\n"
1822 "#endif\n");
Roman Zippele61a1c12007-05-09 02:35:15 -07001823 buf_printf(b, " .arch = MODULE_ARCH_INIT,\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001824 buf_printf(b, "};\n");
1825}
1826
Trevor Keith5c725132009-09-22 16:43:38 -07001827static void add_staging_flag(struct buffer *b, const char *name)
Greg Kroah-Hartmana9860bf2008-09-24 14:46:44 -07001828{
1829 static const char *staging_dir = "drivers/staging";
1830
1831 if (strncmp(staging_dir, name, strlen(staging_dir)) == 0)
1832 buf_printf(b, "\nMODULE_INFO(staging, \"Y\");\n");
1833}
1834
Sam Ravnborg5c3ead82006-01-28 17:19:35 +01001835/**
1836 * Record CRCs for unresolved symbols
1837 **/
Kirill Korotaevc53ddac2006-09-07 13:08:54 -07001838static int add_versions(struct buffer *b, struct module *mod)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001839{
1840 struct symbol *s, *exp;
Kirill Korotaevc53ddac2006-09-07 13:08:54 -07001841 int err = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001842
1843 for (s = mod->unres; s; s = s->next) {
1844 exp = find_symbol(s->name);
1845 if (!exp || exp->module == mod) {
Kirill Korotaevc53ddac2006-09-07 13:08:54 -07001846 if (have_vmlinux && !s->weak) {
Matthew Wilcox2a116652006-10-07 05:35:32 -06001847 if (warn_unresolved) {
1848 warn("\"%s\" [%s.ko] undefined!\n",
1849 s->name, mod->name);
1850 } else {
1851 merror("\"%s\" [%s.ko] undefined!\n",
1852 s->name, mod->name);
1853 err = 1;
1854 }
Kirill Korotaevc53ddac2006-09-07 13:08:54 -07001855 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001856 continue;
1857 }
1858 s->module = exp->module;
1859 s->crc_valid = exp->crc_valid;
1860 s->crc = exp->crc;
1861 }
1862
1863 if (!modversions)
Kirill Korotaevc53ddac2006-09-07 13:08:54 -07001864 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001865
1866 buf_printf(b, "\n");
1867 buf_printf(b, "static const struct modversion_info ____versions[]\n");
Adrian Bunk3ff6eec2008-01-24 22:16:20 +01001868 buf_printf(b, "__used\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001869 buf_printf(b, "__attribute__((section(\"__versions\"))) = {\n");
1870
1871 for (s = mod->unres; s; s = s->next) {
Sam Ravnborgdf578e72008-01-11 19:17:15 +01001872 if (!s->module)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001873 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001874 if (!s->crc_valid) {
Sam Ravnborgcb805142006-01-28 16:57:26 +01001875 warn("\"%s\" [%s.ko] has no CRC!\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07001876 s->name, mod->name);
1877 continue;
1878 }
1879 buf_printf(b, "\t{ %#8x, \"%s\" },\n", s->crc, s->name);
1880 }
1881
1882 buf_printf(b, "};\n");
Kirill Korotaevc53ddac2006-09-07 13:08:54 -07001883
1884 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001885}
1886
Sam Ravnborg5c3ead82006-01-28 17:19:35 +01001887static void add_depends(struct buffer *b, struct module *mod,
1888 struct module *modules)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001889{
1890 struct symbol *s;
1891 struct module *m;
1892 int first = 1;
1893
Sam Ravnborgdf578e72008-01-11 19:17:15 +01001894 for (m = modules; m; m = m->next)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001895 m->seen = is_vmlinux(m->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001896
1897 buf_printf(b, "\n");
1898 buf_printf(b, "static const char __module_depends[]\n");
Adrian Bunk3ff6eec2008-01-24 22:16:20 +01001899 buf_printf(b, "__used\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001900 buf_printf(b, "__attribute__((section(\".modinfo\"))) =\n");
1901 buf_printf(b, "\"depends=");
1902 for (s = mod->unres; s; s = s->next) {
Sam Ravnborga61b2df2007-02-26 19:46:52 +01001903 const char *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001904 if (!s->module)
1905 continue;
1906
1907 if (s->module->seen)
1908 continue;
1909
1910 s->module->seen = 1;
Sam Ravnborgdf578e72008-01-11 19:17:15 +01001911 p = strrchr(s->module->name, '/');
1912 if (p)
Sam Ravnborga61b2df2007-02-26 19:46:52 +01001913 p++;
1914 else
1915 p = s->module->name;
1916 buf_printf(b, "%s%s", first ? "" : ",", p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001917 first = 0;
1918 }
1919 buf_printf(b, "\";\n");
1920}
1921
Sam Ravnborg5c3ead82006-01-28 17:19:35 +01001922static void add_srcversion(struct buffer *b, struct module *mod)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001923{
1924 if (mod->srcversion[0]) {
1925 buf_printf(b, "\n");
1926 buf_printf(b, "MODULE_INFO(srcversion, \"%s\");\n",
1927 mod->srcversion);
1928 }
1929}
1930
Sam Ravnborg5c3ead82006-01-28 17:19:35 +01001931static void write_if_changed(struct buffer *b, const char *fname)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001932{
1933 char *tmp;
1934 FILE *file;
1935 struct stat st;
1936
1937 file = fopen(fname, "r");
1938 if (!file)
1939 goto write;
1940
1941 if (fstat(fileno(file), &st) < 0)
1942 goto close_write;
1943
1944 if (st.st_size != b->pos)
1945 goto close_write;
1946
1947 tmp = NOFAIL(malloc(b->pos));
1948 if (fread(tmp, 1, b->pos, file) != b->pos)
1949 goto free_write;
1950
1951 if (memcmp(tmp, b->p, b->pos) != 0)
1952 goto free_write;
1953
1954 free(tmp);
1955 fclose(file);
1956 return;
1957
1958 free_write:
1959 free(tmp);
1960 close_write:
1961 fclose(file);
1962 write:
1963 file = fopen(fname, "w");
1964 if (!file) {
1965 perror(fname);
1966 exit(1);
1967 }
1968 if (fwrite(b->p, 1, b->pos, file) != b->pos) {
1969 perror(fname);
1970 exit(1);
1971 }
1972 fclose(file);
1973}
1974
Ram Paibd5cbce2006-06-08 22:12:53 -07001975/* parse Module.symvers file. line format:
Sam Ravnborg534b89a2006-07-01 10:10:19 +02001976 * 0x12345678<tab>symbol<tab>module[[<tab>export]<tab>something]
Ram Paibd5cbce2006-06-08 22:12:53 -07001977 **/
Sam Ravnborg040fcc82006-01-28 22:15:55 +01001978static void read_dump(const char *fname, unsigned int kernel)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001979{
1980 unsigned long size, pos = 0;
1981 void *file = grab_file(fname, &size);
1982 char *line;
1983
Sam Ravnborgdf578e72008-01-11 19:17:15 +01001984 if (!file)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001985 /* No symbol versions, silently ignore */
1986 return;
1987
1988 while ((line = get_next_line(&pos, file, size))) {
Sam Ravnborg534b89a2006-07-01 10:10:19 +02001989 char *symname, *modname, *d, *export, *end;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001990 unsigned int crc;
1991 struct module *mod;
Sam Ravnborg040fcc82006-01-28 22:15:55 +01001992 struct symbol *s;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001993
1994 if (!(symname = strchr(line, '\t')))
1995 goto fail;
1996 *symname++ = '\0';
1997 if (!(modname = strchr(symname, '\t')))
1998 goto fail;
1999 *modname++ = '\0';
Laurent Riffard9ac545b2006-06-11 08:02:06 +02002000 if ((export = strchr(modname, '\t')) != NULL)
Ram Paibd5cbce2006-06-08 22:12:53 -07002001 *export++ = '\0';
Sam Ravnborg534b89a2006-07-01 10:10:19 +02002002 if (export && ((end = strchr(export, '\t')) != NULL))
2003 *end = '\0';
Linus Torvalds1da177e2005-04-16 15:20:36 -07002004 crc = strtoul(line, &d, 16);
2005 if (*symname == '\0' || *modname == '\0' || *d != '\0')
2006 goto fail;
Sam Ravnborgdf578e72008-01-11 19:17:15 +01002007 mod = find_module(modname);
2008 if (!mod) {
2009 if (is_vmlinux(modname))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002010 have_vmlinux = 1;
Jan Beulich0fa3a882009-03-12 12:28:30 +00002011 mod = new_module(modname);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002012 mod->skip = 1;
2013 }
Ram Paibd5cbce2006-06-08 22:12:53 -07002014 s = sym_add_exported(symname, mod, export_no(export));
Sam Ravnborg8e70c452006-01-28 22:22:33 +01002015 s->kernel = kernel;
2016 s->preloaded = 1;
Ram Paibd5cbce2006-06-08 22:12:53 -07002017 sym_update_crc(symname, mod, crc, export_no(export));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002018 }
2019 return;
2020fail:
2021 fatal("parse error in symbol dump file\n");
2022}
2023
Sam Ravnborg040fcc82006-01-28 22:15:55 +01002024/* For normal builds always dump all symbols.
2025 * For external modules only dump symbols
2026 * that are not read from kernel Module.symvers.
2027 **/
2028static int dump_sym(struct symbol *sym)
2029{
2030 if (!external_module)
2031 return 1;
2032 if (sym->vmlinux || sym->kernel)
2033 return 0;
2034 return 1;
2035}
Sam Ravnborg62070fa2006-03-03 16:46:04 +01002036
Sam Ravnborg5c3ead82006-01-28 17:19:35 +01002037static void write_dump(const char *fname)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002038{
2039 struct buffer buf = { };
2040 struct symbol *symbol;
2041 int n;
2042
2043 for (n = 0; n < SYMBOL_HASH_SIZE ; n++) {
2044 symbol = symbolhash[n];
2045 while (symbol) {
Sam Ravnborg040fcc82006-01-28 22:15:55 +01002046 if (dump_sym(symbol))
Ram Paibd5cbce2006-06-08 22:12:53 -07002047 buf_printf(&buf, "0x%08x\t%s\t%s\t%s\n",
Sam Ravnborg62070fa2006-03-03 16:46:04 +01002048 symbol->crc, symbol->name,
Ram Paibd5cbce2006-06-08 22:12:53 -07002049 symbol->module->name,
2050 export_str(symbol->export));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002051 symbol = symbol->next;
2052 }
2053 }
2054 write_if_changed(&buf, fname);
2055}
2056
Richard Hacker2d04b5a2008-02-28 09:40:52 +01002057struct ext_sym_list {
2058 struct ext_sym_list *next;
2059 const char *file;
2060};
2061
Sam Ravnborg5c3ead82006-01-28 17:19:35 +01002062int main(int argc, char **argv)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002063{
2064 struct module *mod;
2065 struct buffer buf = { };
Sam Ravnborg040fcc82006-01-28 22:15:55 +01002066 char *kernel_read = NULL, *module_read = NULL;
2067 char *dump_write = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002068 int opt;
Kirill Korotaevc53ddac2006-09-07 13:08:54 -07002069 int err;
Richard Hacker2d04b5a2008-02-28 09:40:52 +01002070 struct ext_sym_list *extsym_iter;
2071 struct ext_sym_list *extsym_start = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002072
Bryan Huntsman3f2bc4d2011-08-16 17:27:22 -07002073 while ((opt = getopt(argc, argv, "i:I:e:cmsSo:awM:K:E")) != -1) {
Sam Ravnborgdf578e72008-01-11 19:17:15 +01002074 switch (opt) {
2075 case 'i':
2076 kernel_read = optarg;
2077 break;
2078 case 'I':
2079 module_read = optarg;
2080 external_module = 1;
2081 break;
Sam Ravnborg4ce6efe2008-03-23 21:38:54 +01002082 case 'c':
2083 cross_build = 1;
2084 break;
Richard Hacker2d04b5a2008-02-28 09:40:52 +01002085 case 'e':
2086 external_module = 1;
2087 extsym_iter =
2088 NOFAIL(malloc(sizeof(*extsym_iter)));
2089 extsym_iter->next = extsym_start;
2090 extsym_iter->file = optarg;
2091 extsym_start = extsym_iter;
2092 break;
Sam Ravnborgdf578e72008-01-11 19:17:15 +01002093 case 'm':
2094 modversions = 1;
2095 break;
2096 case 'o':
2097 dump_write = optarg;
2098 break;
2099 case 'a':
2100 all_versions = 1;
2101 break;
2102 case 's':
2103 vmlinux_section_warnings = 0;
2104 break;
Sam Ravnborg588ccd72008-01-24 21:12:37 +01002105 case 'S':
2106 sec_mismatch_verbose = 0;
2107 break;
Sam Ravnborgdf578e72008-01-11 19:17:15 +01002108 case 'w':
2109 warn_unresolved = 1;
2110 break;
Bryan Huntsman3f2bc4d2011-08-16 17:27:22 -07002111 case 'E':
2112 section_error_on_mismatch = 1;
2113 break;
Sam Ravnborgdf578e72008-01-11 19:17:15 +01002114 default:
2115 exit(1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002116 }
2117 }
2118
Sam Ravnborg040fcc82006-01-28 22:15:55 +01002119 if (kernel_read)
2120 read_dump(kernel_read, 1);
2121 if (module_read)
2122 read_dump(module_read, 0);
Richard Hacker2d04b5a2008-02-28 09:40:52 +01002123 while (extsym_start) {
2124 read_dump(extsym_start->file, 0);
2125 extsym_iter = extsym_start->next;
2126 free(extsym_start);
2127 extsym_start = extsym_iter;
2128 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002129
Sam Ravnborgdf578e72008-01-11 19:17:15 +01002130 while (optind < argc)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002131 read_symbols(argv[optind++]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002132
2133 for (mod = modules; mod; mod = mod->next) {
2134 if (mod->skip)
2135 continue;
Sam Ravnborgc96fca22006-07-01 11:44:23 +02002136 check_exports(mod);
Sam Ravnborgb817f6f2006-06-09 21:53:55 +02002137 }
2138
Kirill Korotaevc53ddac2006-09-07 13:08:54 -07002139 err = 0;
2140
Sam Ravnborgb817f6f2006-06-09 21:53:55 +02002141 for (mod = modules; mod; mod = mod->next) {
Andi Kleen666ab412007-11-22 03:43:10 +01002142 char fname[strlen(mod->name) + 10];
2143
Sam Ravnborgb817f6f2006-06-09 21:53:55 +02002144 if (mod->skip)
2145 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002146
2147 buf.pos = 0;
2148
2149 add_header(&buf, mod);
Greg Kroah-Hartmana9860bf2008-09-24 14:46:44 -07002150 add_staging_flag(&buf, mod->name);
Kirill Korotaevc53ddac2006-09-07 13:08:54 -07002151 err |= add_versions(&buf, mod);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002152 add_depends(&buf, mod, modules);
2153 add_moddevtable(&buf, mod);
2154 add_srcversion(&buf, mod);
2155
2156 sprintf(fname, "%s.mod.c", mod->name);
2157 write_if_changed(&buf, fname);
2158 }
2159
2160 if (dump_write)
2161 write_dump(dump_write);
Bryan Huntsman3f2bc4d2011-08-16 17:27:22 -07002162
2163 if (sec_mismatch_count && !sec_mismatch_verbose) {
2164 merror(
2165 "modpost: Found %d section mismatch(es).\n"
2166 "To see full details build your kernel with:\n"
2167 "'make CONFIG_DEBUG_SECTION_MISMATCH=y'\n",
2168 sec_mismatch_count);
2169
2170 }
2171
2172 if (sec_mismatch_count && section_error_on_mismatch) {
2173 err |= 1;
2174 printf(
2175 "To build the kernel despite the mismatches, "
2176 "build with:\n'make CONFIG_NO_ERROR_ON_MISMATCH=y'\n"
2177 "(NOTE: This is not recommended)\n");
2178 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002179
Kirill Korotaevc53ddac2006-09-07 13:08:54 -07002180 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002181}