blob: 62ed15a0351563717b495b988b6a20451b85d7ab [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;
Kirill Korotaevc53ddac2006-09-07 13:08:54 -070040/* Only warn about unresolved symbols */
41static int warn_unresolved = 0;
Ram Paibd5cbce2006-06-08 22:12:53 -070042/* How a symbol is exported */
Sam Ravnborg588ccd72008-01-24 21:12:37 +010043static int sec_mismatch_count = 0;
44static int sec_mismatch_verbose = 1;
45
Sam Ravnborgc96fca22006-07-01 11:44:23 +020046enum export {
47 export_plain, export_unused, export_gpl,
48 export_unused_gpl, export_gpl_future, export_unknown
49};
Linus Torvalds1da177e2005-04-16 15:20:36 -070050
Andi Kleen6d9a89e2007-11-22 03:43:08 +010051#define PRINTF __attribute__ ((format (printf, 1, 2)))
52
53PRINTF void fatal(const char *fmt, ...)
Linus Torvalds1da177e2005-04-16 15:20:36 -070054{
55 va_list arglist;
56
57 fprintf(stderr, "FATAL: ");
58
59 va_start(arglist, fmt);
60 vfprintf(stderr, fmt, arglist);
61 va_end(arglist);
62
63 exit(1);
64}
65
Andi Kleen6d9a89e2007-11-22 03:43:08 +010066PRINTF void warn(const char *fmt, ...)
Linus Torvalds1da177e2005-04-16 15:20:36 -070067{
68 va_list arglist;
69
70 fprintf(stderr, "WARNING: ");
71
72 va_start(arglist, fmt);
73 vfprintf(stderr, fmt, arglist);
74 va_end(arglist);
75}
76
Andi Kleen6d9a89e2007-11-22 03:43:08 +010077PRINTF void merror(const char *fmt, ...)
Matthew Wilcox2a116652006-10-07 05:35:32 -060078{
79 va_list arglist;
80
81 fprintf(stderr, "ERROR: ");
82
83 va_start(arglist, fmt);
84 vfprintf(stderr, fmt, arglist);
85 va_end(arglist);
86}
87
Sam Ravnborg040fcc82006-01-28 22:15:55 +010088static int is_vmlinux(const char *modname)
89{
90 const char *myname;
91
Sam Ravnborgdf578e72008-01-11 19:17:15 +010092 myname = strrchr(modname, '/');
93 if (myname)
Sam Ravnborg040fcc82006-01-28 22:15:55 +010094 myname++;
95 else
96 myname = modname;
97
Sam Ravnborg741f98f2007-07-17 10:54:06 +020098 return (strcmp(myname, "vmlinux") == 0) ||
99 (strcmp(myname, "vmlinux.o") == 0);
Sam Ravnborg040fcc82006-01-28 22:15:55 +0100100}
101
Linus Torvalds1da177e2005-04-16 15:20:36 -0700102void *do_nofail(void *ptr, const char *expr)
103{
Sam Ravnborgdf578e72008-01-11 19:17:15 +0100104 if (!ptr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700105 fatal("modpost: Memory allocation failure: %s.\n", expr);
Sam Ravnborgdf578e72008-01-11 19:17:15 +0100106
Linus Torvalds1da177e2005-04-16 15:20:36 -0700107 return ptr;
108}
109
110/* A list of all modules we processed */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700111static struct module *modules;
112
Sam Ravnborg5c3ead82006-01-28 17:19:35 +0100113static struct module *find_module(char *modname)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700114{
115 struct module *mod;
116
117 for (mod = modules; mod; mod = mod->next)
118 if (strcmp(mod->name, modname) == 0)
119 break;
120 return mod;
121}
122
Sam Ravnborg5c3ead82006-01-28 17:19:35 +0100123static struct module *new_module(char *modname)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700124{
125 struct module *mod;
126 char *p, *s;
Sam Ravnborg62070fa2006-03-03 16:46:04 +0100127
Linus Torvalds1da177e2005-04-16 15:20:36 -0700128 mod = NOFAIL(malloc(sizeof(*mod)));
129 memset(mod, 0, sizeof(*mod));
130 p = NOFAIL(strdup(modname));
131
132 /* strip trailing .o */
Sam Ravnborgdf578e72008-01-11 19:17:15 +0100133 s = strrchr(p, '.');
134 if (s != NULL)
Frank Rowand258f7422012-04-09 17:59:03 -0700135 if (strcmp(s, ".o") == 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700136 *s = '\0';
Frank Rowand258f7422012-04-09 17:59:03 -0700137 mod->is_dot_o = 1;
138 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700139
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
Alessio Igor Bogani62a26352011-07-14 08:51:16 +0200259static const char *sec_name(struct elf_info *elf, int secindex);
260
261#define strstarts(str, prefix) (strncmp(str, prefix, strlen(prefix)) == 0)
262
263static enum export export_from_secname(struct elf_info *elf, unsigned int sec)
264{
265 const char *secname = sec_name(elf, sec);
266
267 if (strstarts(secname, "___ksymtab+"))
268 return export_plain;
269 else if (strstarts(secname, "___ksymtab_unused+"))
270 return export_unused;
271 else if (strstarts(secname, "___ksymtab_gpl+"))
272 return export_gpl;
273 else if (strstarts(secname, "___ksymtab_unused_gpl+"))
274 return export_unused_gpl;
275 else if (strstarts(secname, "___ksymtab_gpl_future+"))
276 return export_gpl_future;
277 else
278 return export_unknown;
279}
280
Denys Vlasenko1ce53ad2010-07-29 01:47:53 +0200281static enum export export_from_sec(struct elf_info *elf, unsigned int sec)
Ram Paibd5cbce2006-06-08 22:12:53 -0700282{
283 if (sec == elf->export_sec)
284 return export_plain;
Sam Ravnborgc96fca22006-07-01 11:44:23 +0200285 else if (sec == elf->export_unused_sec)
286 return export_unused;
Ram Paibd5cbce2006-06-08 22:12:53 -0700287 else if (sec == elf->export_gpl_sec)
288 return export_gpl;
Sam Ravnborgc96fca22006-07-01 11:44:23 +0200289 else if (sec == elf->export_unused_gpl_sec)
290 return export_unused_gpl;
Ram Paibd5cbce2006-06-08 22:12:53 -0700291 else if (sec == elf->export_gpl_future_sec)
292 return export_gpl_future;
293 else
294 return export_unknown;
295}
296
Sam Ravnborg5c3ead82006-01-28 17:19:35 +0100297/**
298 * Add an exported symbol - it may have already been added without a
299 * CRC, in this case just update the CRC
300 **/
Ram Paibd5cbce2006-06-08 22:12:53 -0700301static struct symbol *sym_add_exported(const char *name, struct module *mod,
302 enum export export)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700303{
304 struct symbol *s = find_symbol(name);
305
306 if (!s) {
Ram Paibd5cbce2006-06-08 22:12:53 -0700307 s = new_symbol(name, mod, export);
Sam Ravnborg8e70c452006-01-28 22:22:33 +0100308 } else {
309 if (!s->preloaded) {
Sam Ravnborg7b75b132006-03-05 13:48:58 +0100310 warn("%s: '%s' exported twice. Previous export "
Sam Ravnborg8e70c452006-01-28 22:22:33 +0100311 "was in %s%s\n", mod->name, name,
312 s->module->name,
313 is_vmlinux(s->module->name) ?"":".ko");
Trent Piepho4b219602007-10-11 16:40:10 -0700314 } else {
315 /* In case Modules.symvers was out of date */
316 s->module = mod;
Sam Ravnborg8e70c452006-01-28 22:22:33 +0100317 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700318 }
Sam Ravnborg8e70c452006-01-28 22:22:33 +0100319 s->preloaded = 0;
Sam Ravnborg040fcc82006-01-28 22:15:55 +0100320 s->vmlinux = is_vmlinux(mod->name);
321 s->kernel = 0;
Ram Paibd5cbce2006-06-08 22:12:53 -0700322 s->export = export;
Sam Ravnborg040fcc82006-01-28 22:15:55 +0100323 return s;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700324}
325
Sam Ravnborg040fcc82006-01-28 22:15:55 +0100326static void sym_update_crc(const char *name, struct module *mod,
Ram Paibd5cbce2006-06-08 22:12:53 -0700327 unsigned int crc, enum export export)
Sam Ravnborg040fcc82006-01-28 22:15:55 +0100328{
329 struct symbol *s = find_symbol(name);
330
331 if (!s)
Ram Paibd5cbce2006-06-08 22:12:53 -0700332 s = new_symbol(name, mod, export);
Sam Ravnborg040fcc82006-01-28 22:15:55 +0100333 s->crc = crc;
334 s->crc_valid = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700335}
336
Sam Ravnborg5c3ead82006-01-28 17:19:35 +0100337void *grab_file(const char *filename, unsigned long *size)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700338{
339 struct stat st;
340 void *map;
341 int fd;
342
343 fd = open(filename, O_RDONLY);
344 if (fd < 0 || fstat(fd, &st) != 0)
345 return NULL;
346
347 *size = st.st_size;
348 map = mmap(NULL, *size, PROT_READ|PROT_WRITE, MAP_PRIVATE, fd, 0);
349 close(fd);
350
351 if (map == MAP_FAILED)
352 return NULL;
353 return map;
354}
355
Sam Ravnborg5c3ead82006-01-28 17:19:35 +0100356/**
357 * Return a copy of the next line in a mmap'ed file.
358 * spaces in the beginning of the line is trimmed away.
359 * Return a pointer to a static buffer.
360 **/
Sam Ravnborgdf578e72008-01-11 19:17:15 +0100361char *get_next_line(unsigned long *pos, void *file, unsigned long size)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700362{
363 static char line[4096];
364 int skip = 1;
365 size_t len = 0;
366 signed char *p = (signed char *)file + *pos;
367 char *s = line;
368
Sam Ravnborgdf578e72008-01-11 19:17:15 +0100369 for (; *pos < size ; (*pos)++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700370 if (skip && isspace(*p)) {
371 p++;
372 continue;
373 }
374 skip = 0;
375 if (*p != '\n' && (*pos < size)) {
376 len++;
377 *s++ = *p++;
378 if (len > 4095)
379 break; /* Too long, stop */
380 } else {
381 /* End of string */
382 *s = '\0';
383 return line;
384 }
385 }
386 /* End of buffer */
387 return NULL;
388}
389
Sam Ravnborg5c3ead82006-01-28 17:19:35 +0100390void release_file(void *file, unsigned long size)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700391{
392 munmap(file, size);
393}
394
Sam Ravnborg85bd2fd2007-02-26 15:33:52 +0100395static int parse_elf(struct elf_info *info, const char *filename)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700396{
397 unsigned int i;
Sam Ravnborg85bd2fd2007-02-26 15:33:52 +0100398 Elf_Ehdr *hdr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700399 Elf_Shdr *sechdrs;
400 Elf_Sym *sym;
Denys Vlasenko1ce53ad2010-07-29 01:47:53 +0200401 const char *secstrings;
402 unsigned int symtab_idx = ~0U, symtab_shndx_idx = ~0U;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700403
404 hdr = grab_file(filename, &info->size);
405 if (!hdr) {
406 perror(filename);
Sam Ravnborg6803dc02006-06-24 23:46:54 +0200407 exit(1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700408 }
409 info->hdr = hdr;
Sam Ravnborg85bd2fd2007-02-26 15:33:52 +0100410 if (info->size < sizeof(*hdr)) {
411 /* file too small, assume this is an empty .o file */
412 return 0;
413 }
414 /* Is this a valid ELF file? */
415 if ((hdr->e_ident[EI_MAG0] != ELFMAG0) ||
416 (hdr->e_ident[EI_MAG1] != ELFMAG1) ||
417 (hdr->e_ident[EI_MAG2] != ELFMAG2) ||
418 (hdr->e_ident[EI_MAG3] != ELFMAG3)) {
419 /* Not an ELF file - silently ignore it */
420 return 0;
421 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700422 /* Fix endianness in ELF header */
Anders Kaseorg7d875a02009-05-03 22:02:55 +0200423 hdr->e_type = TO_NATIVE(hdr->e_type);
424 hdr->e_machine = TO_NATIVE(hdr->e_machine);
425 hdr->e_version = TO_NATIVE(hdr->e_version);
426 hdr->e_entry = TO_NATIVE(hdr->e_entry);
427 hdr->e_phoff = TO_NATIVE(hdr->e_phoff);
428 hdr->e_shoff = TO_NATIVE(hdr->e_shoff);
429 hdr->e_flags = TO_NATIVE(hdr->e_flags);
430 hdr->e_ehsize = TO_NATIVE(hdr->e_ehsize);
431 hdr->e_phentsize = TO_NATIVE(hdr->e_phentsize);
432 hdr->e_phnum = TO_NATIVE(hdr->e_phnum);
433 hdr->e_shentsize = TO_NATIVE(hdr->e_shentsize);
434 hdr->e_shnum = TO_NATIVE(hdr->e_shnum);
435 hdr->e_shstrndx = TO_NATIVE(hdr->e_shstrndx);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700436 sechdrs = (void *)hdr + hdr->e_shoff;
437 info->sechdrs = sechdrs;
438
Petr Stetiara83710e2007-08-27 12:15:07 +0200439 /* Check if file offset is correct */
440 if (hdr->e_shoff > info->size) {
Sam Ravnborgdf578e72008-01-11 19:17:15 +0100441 fatal("section header offset=%lu in file '%s' is bigger than "
442 "filesize=%lu\n", (unsigned long)hdr->e_shoff,
443 filename, info->size);
Petr Stetiara83710e2007-08-27 12:15:07 +0200444 return 0;
445 }
446
Anders Kaseorg68457562011-05-19 16:55:27 -0600447 if (hdr->e_shnum == SHN_UNDEF) {
Denys Vlasenko1ce53ad2010-07-29 01:47:53 +0200448 /*
449 * There are more than 64k sections,
450 * read count from .sh_size.
Denys Vlasenko1ce53ad2010-07-29 01:47:53 +0200451 */
452 info->num_sections = TO_NATIVE(sechdrs[0].sh_size);
453 }
454 else {
455 info->num_sections = hdr->e_shnum;
456 }
457 if (hdr->e_shstrndx == SHN_XINDEX) {
Anders Kaseorg68457562011-05-19 16:55:27 -0600458 info->secindex_strings = TO_NATIVE(sechdrs[0].sh_link);
Denys Vlasenko1ce53ad2010-07-29 01:47:53 +0200459 }
460 else {
461 info->secindex_strings = hdr->e_shstrndx;
462 }
463
Linus Torvalds1da177e2005-04-16 15:20:36 -0700464 /* Fix endianness in section headers */
Denys Vlasenko1ce53ad2010-07-29 01:47:53 +0200465 for (i = 0; i < info->num_sections; i++) {
Anders Kaseorg7d875a02009-05-03 22:02:55 +0200466 sechdrs[i].sh_name = TO_NATIVE(sechdrs[i].sh_name);
467 sechdrs[i].sh_type = TO_NATIVE(sechdrs[i].sh_type);
468 sechdrs[i].sh_flags = TO_NATIVE(sechdrs[i].sh_flags);
469 sechdrs[i].sh_addr = TO_NATIVE(sechdrs[i].sh_addr);
470 sechdrs[i].sh_offset = TO_NATIVE(sechdrs[i].sh_offset);
471 sechdrs[i].sh_size = TO_NATIVE(sechdrs[i].sh_size);
472 sechdrs[i].sh_link = TO_NATIVE(sechdrs[i].sh_link);
473 sechdrs[i].sh_info = TO_NATIVE(sechdrs[i].sh_info);
474 sechdrs[i].sh_addralign = TO_NATIVE(sechdrs[i].sh_addralign);
475 sechdrs[i].sh_entsize = TO_NATIVE(sechdrs[i].sh_entsize);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700476 }
477 /* Find symbol table. */
Denys Vlasenko1ce53ad2010-07-29 01:47:53 +0200478 secstrings = (void *)hdr + sechdrs[info->secindex_strings].sh_offset;
479 for (i = 1; i < info->num_sections; i++) {
Ram Paibd5cbce2006-06-08 22:12:53 -0700480 const char *secname;
Tejun Heo56fc82c2009-02-06 00:48:02 +0900481 int nobits = sechdrs[i].sh_type == SHT_NOBITS;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700482
Tejun Heo56fc82c2009-02-06 00:48:02 +0900483 if (!nobits && sechdrs[i].sh_offset > info->size) {
Sam Ravnborgdf578e72008-01-11 19:17:15 +0100484 fatal("%s is truncated. sechdrs[i].sh_offset=%lu > "
485 "sizeof(*hrd)=%zu\n", filename,
486 (unsigned long)sechdrs[i].sh_offset,
487 sizeof(*hdr));
Sam Ravnborg85bd2fd2007-02-26 15:33:52 +0100488 return 0;
489 }
Ram Paibd5cbce2006-06-08 22:12:53 -0700490 secname = secstrings + sechdrs[i].sh_name;
491 if (strcmp(secname, ".modinfo") == 0) {
Tejun Heo56fc82c2009-02-06 00:48:02 +0900492 if (nobits)
493 fatal("%s has NOBITS .modinfo\n", filename);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700494 info->modinfo = (void *)hdr + sechdrs[i].sh_offset;
495 info->modinfo_len = sechdrs[i].sh_size;
Ram Paibd5cbce2006-06-08 22:12:53 -0700496 } else if (strcmp(secname, "__ksymtab") == 0)
497 info->export_sec = i;
Sam Ravnborgc96fca22006-07-01 11:44:23 +0200498 else if (strcmp(secname, "__ksymtab_unused") == 0)
499 info->export_unused_sec = i;
Ram Paibd5cbce2006-06-08 22:12:53 -0700500 else if (strcmp(secname, "__ksymtab_gpl") == 0)
501 info->export_gpl_sec = i;
Sam Ravnborgc96fca22006-07-01 11:44:23 +0200502 else if (strcmp(secname, "__ksymtab_unused_gpl") == 0)
503 info->export_unused_gpl_sec = i;
Ram Paibd5cbce2006-06-08 22:12:53 -0700504 else if (strcmp(secname, "__ksymtab_gpl_future") == 0)
505 info->export_gpl_future_sec = i;
506
Denys Vlasenko1ce53ad2010-07-29 01:47:53 +0200507 if (sechdrs[i].sh_type == SHT_SYMTAB) {
508 unsigned int sh_link_idx;
509 symtab_idx = i;
510 info->symtab_start = (void *)hdr +
511 sechdrs[i].sh_offset;
512 info->symtab_stop = (void *)hdr +
513 sechdrs[i].sh_offset + sechdrs[i].sh_size;
Anders Kaseorg68457562011-05-19 16:55:27 -0600514 sh_link_idx = sechdrs[i].sh_link;
Denys Vlasenko1ce53ad2010-07-29 01:47:53 +0200515 info->strtab = (void *)hdr +
516 sechdrs[sh_link_idx].sh_offset;
517 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700518
Denys Vlasenko1ce53ad2010-07-29 01:47:53 +0200519 /* 32bit section no. table? ("more than 64k sections") */
520 if (sechdrs[i].sh_type == SHT_SYMTAB_SHNDX) {
521 symtab_shndx_idx = i;
522 info->symtab_shndx_start = (void *)hdr +
523 sechdrs[i].sh_offset;
524 info->symtab_shndx_stop = (void *)hdr +
525 sechdrs[i].sh_offset + sechdrs[i].sh_size;
526 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700527 }
Sam Ravnborgdf578e72008-01-11 19:17:15 +0100528 if (!info->symtab_start)
Sam Ravnborgcb805142006-01-28 16:57:26 +0100529 fatal("%s has no symtab?\n", filename);
Sam Ravnborgdf578e72008-01-11 19:17:15 +0100530
Linus Torvalds1da177e2005-04-16 15:20:36 -0700531 /* Fix endianness in symbols */
532 for (sym = info->symtab_start; sym < info->symtab_stop; sym++) {
533 sym->st_shndx = TO_NATIVE(sym->st_shndx);
534 sym->st_name = TO_NATIVE(sym->st_name);
535 sym->st_value = TO_NATIVE(sym->st_value);
536 sym->st_size = TO_NATIVE(sym->st_size);
537 }
Denys Vlasenko1ce53ad2010-07-29 01:47:53 +0200538
539 if (symtab_shndx_idx != ~0U) {
540 Elf32_Word *p;
Anders Kaseorg68457562011-05-19 16:55:27 -0600541 if (symtab_idx != sechdrs[symtab_shndx_idx].sh_link)
Denys Vlasenko1ce53ad2010-07-29 01:47:53 +0200542 fatal("%s: SYMTAB_SHNDX has bad sh_link: %u!=%u\n",
Anders Kaseorg68457562011-05-19 16:55:27 -0600543 filename, sechdrs[symtab_shndx_idx].sh_link,
Denys Vlasenko1ce53ad2010-07-29 01:47:53 +0200544 symtab_idx);
545 /* Fix endianness */
546 for (p = info->symtab_shndx_start; p < info->symtab_shndx_stop;
547 p++)
548 *p = TO_NATIVE(*p);
549 }
550
Sam Ravnborg85bd2fd2007-02-26 15:33:52 +0100551 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700552}
553
Sam Ravnborg5c3ead82006-01-28 17:19:35 +0100554static void parse_elf_finish(struct elf_info *info)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700555{
556 release_file(info->hdr, info->size);
557}
558
Sam Ravnborg4d7365d2008-06-12 15:02:55 +0200559static int ignore_undef_symbol(struct elf_info *info, const char *symname)
560{
561 /* ignore __this_module, it will be resolved shortly */
562 if (strcmp(symname, MODULE_SYMBOL_PREFIX "__this_module") == 0)
563 return 1;
564 /* ignore global offset table */
565 if (strcmp(symname, "_GLOBAL_OFFSET_TABLE_") == 0)
566 return 1;
567 if (info->hdr->e_machine == EM_PPC)
568 /* Special register function linked on all modules during final link of .ko */
569 if (strncmp(symname, "_restgpr_", sizeof("_restgpr_") - 1) == 0 ||
570 strncmp(symname, "_savegpr_", sizeof("_savegpr_") - 1) == 0 ||
571 strncmp(symname, "_rest32gpr_", sizeof("_rest32gpr_") - 1) == 0 ||
Andreas Schwab7dff32e2013-12-30 15:31:17 +0100572 strncmp(symname, "_save32gpr_", sizeof("_save32gpr_") - 1) == 0 ||
573 strncmp(symname, "_restvr_", sizeof("_restvr_") - 1) == 0 ||
574 strncmp(symname, "_savevr_", sizeof("_savevr_") - 1) == 0)
Sam Ravnborg4d7365d2008-06-12 15:02:55 +0200575 return 1;
Stephen Rothwell7fca5dc2010-06-29 20:08:42 +0000576 if (info->hdr->e_machine == EM_PPC64)
577 /* Special register function linked on all modules during final link of .ko */
578 if (strncmp(symname, "_restgpr0_", sizeof("_restgpr0_") - 1) == 0 ||
Andreas Schwab7dff32e2013-12-30 15:31:17 +0100579 strncmp(symname, "_savegpr0_", sizeof("_savegpr0_") - 1) == 0 ||
580 strncmp(symname, "_restvr_", sizeof("_restvr_") - 1) == 0 ||
581 strncmp(symname, "_savevr_", sizeof("_savevr_") - 1) == 0)
Stephen Rothwell7fca5dc2010-06-29 20:08:42 +0000582 return 1;
Sam Ravnborg4d7365d2008-06-12 15:02:55 +0200583 /* Do not ignore this symbol */
584 return 0;
585}
586
Luke Yangf7b05e62006-03-02 18:35:31 +0800587#define CRC_PFX MODULE_SYMBOL_PREFIX "__crc_"
588#define KSYMTAB_PFX MODULE_SYMBOL_PREFIX "__ksymtab_"
Linus Torvalds1da177e2005-04-16 15:20:36 -0700589
Sam Ravnborg5c3ead82006-01-28 17:19:35 +0100590static void handle_modversions(struct module *mod, struct elf_info *info,
591 Elf_Sym *sym, const char *symname)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700592{
593 unsigned int crc;
Alessio Igor Bogani62a26352011-07-14 08:51:16 +0200594 enum export export;
595
Frank Rowand258f7422012-04-09 17:59:03 -0700596 if ((!is_vmlinux(mod->name) || mod->is_dot_o) &&
597 strncmp(symname, "__ksymtab", 9) == 0)
Alessio Igor Bogani62a26352011-07-14 08:51:16 +0200598 export = export_from_secname(info, get_secindex(info, sym));
599 else
600 export = export_from_sec(info, get_secindex(info, sym));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700601
602 switch (sym->st_shndx) {
603 case SHN_COMMON:
Sam Ravnborgcb805142006-01-28 16:57:26 +0100604 warn("\"%s\" [%s] is COMMON symbol\n", symname, mod->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700605 break;
606 case SHN_ABS:
607 /* CRC'd symbol */
Michal Marek8d995132009-12-12 12:02:24 +0100608 if (strncmp(symname, CRC_PFX, strlen(CRC_PFX)) == 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700609 crc = (unsigned int) sym->st_value;
Ram Paibd5cbce2006-06-08 22:12:53 -0700610 sym_update_crc(symname + strlen(CRC_PFX), mod, crc,
611 export);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700612 }
613 break;
614 case SHN_UNDEF:
615 /* undefined symbol */
616 if (ELF_ST_BIND(sym->st_info) != STB_GLOBAL &&
617 ELF_ST_BIND(sym->st_info) != STB_WEAK)
618 break;
Sam Ravnborg4d7365d2008-06-12 15:02:55 +0200619 if (ignore_undef_symbol(info, symname))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700620 break;
Ben Colline8d529012005-08-19 13:44:57 -0700621/* cope with newer glibc (2.3.4 or higher) STT_ definition in elf.h */
622#if defined(STT_REGISTER) || defined(STT_SPARC_REGISTER)
623/* add compatibility with older glibc */
624#ifndef STT_SPARC_REGISTER
625#define STT_SPARC_REGISTER STT_REGISTER
626#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700627 if (info->hdr->e_machine == EM_SPARC ||
628 info->hdr->e_machine == EM_SPARCV9) {
629 /* Ignore register directives. */
Ben Colline8d529012005-08-19 13:44:57 -0700630 if (ELF_ST_TYPE(sym->st_info) == STT_SPARC_REGISTER)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700631 break;
Sam Ravnborg62070fa2006-03-03 16:46:04 +0100632 if (symname[0] == '.') {
633 char *munged = strdup(symname);
634 munged[0] = '_';
635 munged[1] = toupper(munged[1]);
636 symname = munged;
637 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700638 }
639#endif
Sam Ravnborg62070fa2006-03-03 16:46:04 +0100640
Linus Torvalds1da177e2005-04-16 15:20:36 -0700641 if (memcmp(symname, MODULE_SYMBOL_PREFIX,
Sam Ravnborgdf578e72008-01-11 19:17:15 +0100642 strlen(MODULE_SYMBOL_PREFIX)) == 0) {
643 mod->unres =
644 alloc_symbol(symname +
645 strlen(MODULE_SYMBOL_PREFIX),
646 ELF_ST_BIND(sym->st_info) == STB_WEAK,
647 mod->unres);
648 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700649 break;
650 default:
651 /* All exported symbols */
Michal Marek8d995132009-12-12 12:02:24 +0100652 if (strncmp(symname, KSYMTAB_PFX, strlen(KSYMTAB_PFX)) == 0) {
Ram Paibd5cbce2006-06-08 22:12:53 -0700653 sym_add_exported(symname + strlen(KSYMTAB_PFX), mod,
654 export);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700655 }
656 if (strcmp(symname, MODULE_SYMBOL_PREFIX "init_module") == 0)
657 mod->has_init = 1;
658 if (strcmp(symname, MODULE_SYMBOL_PREFIX "cleanup_module") == 0)
659 mod->has_cleanup = 1;
660 break;
661 }
662}
663
Sam Ravnborg5c3ead82006-01-28 17:19:35 +0100664/**
665 * Parse tag=value strings from .modinfo section
666 **/
Linus Torvalds1da177e2005-04-16 15:20:36 -0700667static char *next_string(char *string, unsigned long *secsize)
668{
669 /* Skip non-zero chars */
670 while (string[0]) {
671 string++;
672 if ((*secsize)-- <= 1)
673 return NULL;
674 }
675
676 /* Skip any zero padding. */
677 while (!string[0]) {
678 string++;
679 if ((*secsize)-- <= 1)
680 return NULL;
681 }
682 return string;
683}
684
Sam Ravnborgb817f6f2006-06-09 21:53:55 +0200685static char *get_next_modinfo(void *modinfo, unsigned long modinfo_len,
686 const char *tag, char *info)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700687{
688 char *p;
689 unsigned int taglen = strlen(tag);
690 unsigned long size = modinfo_len;
691
Sam Ravnborgb817f6f2006-06-09 21:53:55 +0200692 if (info) {
693 size -= info - (char *)modinfo;
694 modinfo = next_string(info, &size);
695 }
696
Linus Torvalds1da177e2005-04-16 15:20:36 -0700697 for (p = modinfo; p; p = next_string(p, &size)) {
698 if (strncmp(p, tag, taglen) == 0 && p[taglen] == '=')
699 return p + taglen + 1;
700 }
701 return NULL;
702}
703
Sam Ravnborgb817f6f2006-06-09 21:53:55 +0200704static char *get_modinfo(void *modinfo, unsigned long modinfo_len,
705 const char *tag)
706
707{
708 return get_next_modinfo(modinfo, modinfo_len, tag, NULL);
709}
710
Sam Ravnborg93684d32006-02-19 11:53:35 +0100711/**
Sam Ravnborg4c8fbca2006-02-26 22:18:11 +0100712 * Test if string s ends in string sub
713 * return 0 if match
714 **/
715static int strrcmp(const char *s, const char *sub)
716{
Sam Ravnborgdf578e72008-01-11 19:17:15 +0100717 int slen, sublen;
Sam Ravnborg62070fa2006-03-03 16:46:04 +0100718
Sam Ravnborg4c8fbca2006-02-26 22:18:11 +0100719 if (!s || !sub)
720 return 1;
Sam Ravnborg62070fa2006-03-03 16:46:04 +0100721
Sam Ravnborg4c8fbca2006-02-26 22:18:11 +0100722 slen = strlen(s);
Sam Ravnborgdf578e72008-01-11 19:17:15 +0100723 sublen = strlen(sub);
Sam Ravnborg62070fa2006-03-03 16:46:04 +0100724
Sam Ravnborg4c8fbca2006-02-26 22:18:11 +0100725 if ((slen == 0) || (sublen == 0))
726 return 1;
727
Sam Ravnborgdf578e72008-01-11 19:17:15 +0100728 if (sublen > slen)
729 return 1;
Sam Ravnborg4c8fbca2006-02-26 22:18:11 +0100730
Sam Ravnborgdf578e72008-01-11 19:17:15 +0100731 return memcmp(s + slen - sublen, sub, sublen);
Sam Ravnborg4c8fbca2006-02-26 22:18:11 +0100732}
733
Sam Ravnborgff13f922008-01-23 19:54:27 +0100734static const char *sym_name(struct elf_info *elf, Elf_Sym *sym)
735{
Sam Ravnborg58fb0d42008-01-23 21:13:50 +0100736 if (sym)
737 return elf->strtab + sym->st_name;
738 else
Sam Ravnborgf6667512008-02-06 21:51:18 +0100739 return "(unknown)";
Sam Ravnborgff13f922008-01-23 19:54:27 +0100740}
741
Denys Vlasenko1ce53ad2010-07-29 01:47:53 +0200742static const char *sec_name(struct elf_info *elf, int secindex)
Sam Ravnborgff13f922008-01-23 19:54:27 +0100743{
744 Elf_Shdr *sechdrs = elf->sechdrs;
745 return (void *)elf->hdr +
Denys Vlasenko1ce53ad2010-07-29 01:47:53 +0200746 elf->sechdrs[elf->secindex_strings].sh_offset +
747 sechdrs[secindex].sh_name;
Sam Ravnborgff13f922008-01-23 19:54:27 +0100748}
749
750static const char *sech_name(struct elf_info *elf, Elf_Shdr *sechdr)
751{
752 return (void *)elf->hdr +
Denys Vlasenko1ce53ad2010-07-29 01:47:53 +0200753 elf->sechdrs[elf->secindex_strings].sh_offset +
754 sechdr->sh_name;
Sam Ravnborgff13f922008-01-23 19:54:27 +0100755}
756
Sam Ravnborg10668222008-01-13 22:21:31 +0100757/* if sym is empty or point to a string
758 * like ".[0-9]+" then return 1.
759 * This is the optional prefix added by ld to some sections
760 */
761static int number_prefix(const char *sym)
762{
763 if (*sym++ == '\0')
764 return 1;
765 if (*sym != '.')
766 return 0;
767 do {
768 char c = *sym++;
769 if (c < '0' || c > '9')
770 return 0;
771 } while (*sym);
772 return 1;
773}
774
775/* The pattern is an array of simple patterns.
776 * "foo" will match an exact string equal to "foo"
Sam Ravnborg6c5bd232008-01-20 10:43:27 +0100777 * "*foo" will match a string that ends with "foo"
Sam Ravnborg10668222008-01-13 22:21:31 +0100778 * "foo*" will match a string that begins with "foo"
779 * "foo$" will match a string equal to "foo" or "foo.1"
780 * where the '1' can be any number including several digits.
781 * The $ syntax is for sections where ld append a dot number
782 * to make section name unique.
783 */
Trevor Keith5c725132009-09-22 16:43:38 -0700784static int match(const char *sym, const char * const pat[])
Sam Ravnborg10668222008-01-13 22:21:31 +0100785{
786 const char *p;
787 while (*pat) {
788 p = *pat++;
789 const char *endp = p + strlen(p) - 1;
790
Sam Ravnborg6c5bd232008-01-20 10:43:27 +0100791 /* "*foo" */
792 if (*p == '*') {
793 if (strrcmp(sym, p + 1) == 0)
794 return 1;
795 }
Sam Ravnborg10668222008-01-13 22:21:31 +0100796 /* "foo*" */
Sam Ravnborg6c5bd232008-01-20 10:43:27 +0100797 else if (*endp == '*') {
Sam Ravnborg10668222008-01-13 22:21:31 +0100798 if (strncmp(sym, p, strlen(p) - 1) == 0)
799 return 1;
800 }
801 /* "foo$" */
802 else if (*endp == '$') {
803 if (strncmp(sym, p, strlen(p) - 1) == 0) {
804 if (number_prefix(sym + strlen(p) - 1))
805 return 1;
806 }
807 }
808 /* no wildcards */
809 else {
810 if (strcmp(p, sym) == 0)
811 return 1;
812 }
813 }
814 /* no match */
815 return 0;
816}
817
Sam Ravnborg10668222008-01-13 22:21:31 +0100818/* sections that we do not want to do full section mismatch check on */
819static const char *section_white_list[] =
Sam Ravnborg4391ed62009-05-04 13:05:26 +0200820{
821 ".comment*",
822 ".debug*",
H.J. Lu11215842010-12-15 17:11:22 -0800823 ".zdebug*", /* Compressed debug sections. */
David Howells019fca82010-08-12 16:54:47 +0100824 ".GCC-command-line", /* mn10300 */
Sam Ravnborg4391ed62009-05-04 13:05:26 +0200825 ".mdebug*", /* alpha, score, mips etc. */
826 ".pdr", /* alpha, score, mips etc. */
827 ".stab*",
828 ".note*",
829 ".got*",
830 ".toc*",
831 NULL
832};
Sam Ravnborg10668222008-01-13 22:21:31 +0100833
Sam Ravnborge241a632008-01-28 20:13:13 +0100834/*
Anders Kaseorgb614a692009-04-23 16:49:33 -0400835 * This is used to find sections missing the SHF_ALLOC flag.
Sam Ravnborge241a632008-01-28 20:13:13 +0100836 * The cause of this is often a section specified in assembler
Anders Kaseorgb614a692009-04-23 16:49:33 -0400837 * without "ax" / "aw".
Sam Ravnborge241a632008-01-28 20:13:13 +0100838 */
Anders Kaseorgb614a692009-04-23 16:49:33 -0400839static void check_section(const char *modname, struct elf_info *elf,
840 Elf_Shdr *sechdr)
Sam Ravnborge241a632008-01-28 20:13:13 +0100841{
Anders Kaseorgb614a692009-04-23 16:49:33 -0400842 const char *sec = sech_name(elf, sechdr);
Sam Ravnborge241a632008-01-28 20:13:13 +0100843
Anders Kaseorgb614a692009-04-23 16:49:33 -0400844 if (sechdr->sh_type == SHT_PROGBITS &&
845 !(sechdr->sh_flags & SHF_ALLOC) &&
846 !match(sec, section_white_list)) {
847 warn("%s (%s): unexpected non-allocatable section.\n"
848 "Did you forget to use \"ax\"/\"aw\" in a .S file?\n"
849 "Note that for example <linux/init.h> contains\n"
850 "section definitions for use in .S files.\n\n",
851 modname, sec);
Sam Ravnborge241a632008-01-28 20:13:13 +0100852 }
Sam Ravnborge241a632008-01-28 20:13:13 +0100853}
854
855
856
Sam Ravnborgeb8f6892008-01-20 20:07:28 +0100857#define ALL_INIT_DATA_SECTIONS \
Jan Beulichfd6c3a82009-03-12 10:58:33 +0000858 ".init.setup$", ".init.rodata$", \
Jan Beulich9aaf4402012-03-08 09:41:25 +0000859 ".devinit.rodata$", ".cpuinit.rodata$", ".meminit.rodata$", \
Sam Ravnborgeb8f6892008-01-20 20:07:28 +0100860 ".init.data$", ".devinit.data$", ".cpuinit.data$", ".meminit.data$"
861#define ALL_EXIT_DATA_SECTIONS \
862 ".exit.data$", ".devexit.data$", ".cpuexit.data$", ".memexit.data$"
Sam Ravnborg10668222008-01-13 22:21:31 +0100863
Sam Ravnborgeb8f6892008-01-20 20:07:28 +0100864#define ALL_INIT_TEXT_SECTIONS \
865 ".init.text$", ".devinit.text$", ".cpuinit.text$", ".meminit.text$"
866#define ALL_EXIT_TEXT_SECTIONS \
867 ".exit.text$", ".devexit.text$", ".cpuexit.text$", ".memexit.text$"
Sam Ravnborg10668222008-01-13 22:21:31 +0100868
Uwe Kleine-König4a31a222010-01-29 12:04:26 +0100869#define ALL_XXXINIT_SECTIONS DEV_INIT_SECTIONS, CPU_INIT_SECTIONS, \
870 MEM_INIT_SECTIONS
871#define ALL_XXXEXIT_SECTIONS DEV_EXIT_SECTIONS, CPU_EXIT_SECTIONS, \
872 MEM_EXIT_SECTIONS
873
874#define ALL_INIT_SECTIONS INIT_SECTIONS, ALL_XXXINIT_SECTIONS
875#define ALL_EXIT_SECTIONS EXIT_SECTIONS, ALL_XXXEXIT_SECTIONS
Sam Ravnborg10668222008-01-13 22:21:31 +0100876
Sam Ravnborg6c5bd232008-01-20 10:43:27 +0100877#define DATA_SECTIONS ".data$", ".data.rel$"
Sam Ravnborg10668222008-01-13 22:21:31 +0100878#define TEXT_SECTIONS ".text$"
879
Jan Beulichfd6c3a82009-03-12 10:58:33 +0000880#define INIT_SECTIONS ".init.*"
881#define DEV_INIT_SECTIONS ".devinit.*"
882#define CPU_INIT_SECTIONS ".cpuinit.*"
883#define MEM_INIT_SECTIONS ".meminit.*"
Sam Ravnborgeb8f6892008-01-20 20:07:28 +0100884
Jan Beulichfd6c3a82009-03-12 10:58:33 +0000885#define EXIT_SECTIONS ".exit.*"
886#define DEV_EXIT_SECTIONS ".devexit.*"
887#define CPU_EXIT_SECTIONS ".cpuexit.*"
888#define MEM_EXIT_SECTIONS ".memexit.*"
Sam Ravnborgeb8f6892008-01-20 20:07:28 +0100889
Sam Ravnborg6c5bd232008-01-20 10:43:27 +0100890/* init data sections */
Sam Ravnborgeb8f6892008-01-20 20:07:28 +0100891static const char *init_data_sections[] = { ALL_INIT_DATA_SECTIONS, NULL };
Sam Ravnborg6c5bd232008-01-20 10:43:27 +0100892
893/* all init sections */
Sam Ravnborgeb8f6892008-01-20 20:07:28 +0100894static const char *init_sections[] = { ALL_INIT_SECTIONS, NULL };
Sam Ravnborg6c5bd232008-01-20 10:43:27 +0100895
896/* All init and exit sections (code + data) */
897static const char *init_exit_sections[] =
Sam Ravnborgeb8f6892008-01-20 20:07:28 +0100898 {ALL_INIT_SECTIONS, ALL_EXIT_SECTIONS, NULL };
Sam Ravnborg6c5bd232008-01-20 10:43:27 +0100899
900/* data section */
901static const char *data_sections[] = { DATA_SECTIONS, NULL };
902
Sam Ravnborg6c5bd232008-01-20 10:43:27 +0100903
904/* symbols in .data that may refer to init/exit sections */
Uwe Kleine-Königaf92a822010-01-30 20:52:50 +0100905#define DEFAULT_SYMBOL_WHITE_LIST \
906 "*driver", \
907 "*_template", /* scsi uses *_template a lot */ \
908 "*_timer", /* arm uses ops structures named _timer a lot */ \
909 "*_sht", /* scsi also used *_sht to some extent */ \
910 "*_ops", \
911 "*_probe", \
912 "*_probe_one", \
913 "*_console"
Sam Ravnborg6c5bd232008-01-20 10:43:27 +0100914
915static const char *head_sections[] = { ".head.text*", NULL };
916static const char *linker_symbols[] =
917 { "__init_begin", "_sinittext", "_einittext", NULL };
918
Sam Ravnborg588ccd72008-01-24 21:12:37 +0100919enum mismatch {
Uwe Kleine-Königbbd3f4f2010-01-30 16:35:47 +0100920 TEXT_TO_ANY_INIT,
921 DATA_TO_ANY_INIT,
922 TEXT_TO_ANY_EXIT,
923 DATA_TO_ANY_EXIT,
924 XXXINIT_TO_SOME_INIT,
925 XXXEXIT_TO_SOME_EXIT,
926 ANY_INIT_TO_ANY_EXIT,
927 ANY_EXIT_TO_ANY_INIT,
Sam Ravnborg588ccd72008-01-24 21:12:37 +0100928 EXPORT_TO_INIT_EXIT,
929};
930
Sam Ravnborg10668222008-01-13 22:21:31 +0100931struct sectioncheck {
932 const char *fromsec[20];
933 const char *tosec[20];
Sam Ravnborg588ccd72008-01-24 21:12:37 +0100934 enum mismatch mismatch;
Uwe Kleine-Königaf92a822010-01-30 20:52:50 +0100935 const char *symbol_white_list[20];
Sam Ravnborg10668222008-01-13 22:21:31 +0100936};
937
938const struct sectioncheck sectioncheck[] = {
939/* Do not reference init/exit code/data from
940 * normal code and data
941 */
942{
Sam Ravnborg588ccd72008-01-24 21:12:37 +0100943 .fromsec = { TEXT_SECTIONS, NULL },
944 .tosec = { ALL_INIT_SECTIONS, NULL },
Uwe Kleine-Königbbd3f4f2010-01-30 16:35:47 +0100945 .mismatch = TEXT_TO_ANY_INIT,
Uwe Kleine-Königaf92a822010-01-30 20:52:50 +0100946 .symbol_white_list = { DEFAULT_SYMBOL_WHITE_LIST, NULL },
Sam Ravnborg588ccd72008-01-24 21:12:37 +0100947},
948{
949 .fromsec = { DATA_SECTIONS, NULL },
Uwe Kleine-König0db252452010-01-30 21:14:23 +0100950 .tosec = { ALL_XXXINIT_SECTIONS, NULL },
Uwe Kleine-Königbbd3f4f2010-01-30 16:35:47 +0100951 .mismatch = DATA_TO_ANY_INIT,
Uwe Kleine-Königaf92a822010-01-30 20:52:50 +0100952 .symbol_white_list = { DEFAULT_SYMBOL_WHITE_LIST, NULL },
Sam Ravnborg588ccd72008-01-24 21:12:37 +0100953},
954{
Uwe Kleine-König0db252452010-01-30 21:14:23 +0100955 .fromsec = { DATA_SECTIONS, NULL },
956 .tosec = { INIT_SECTIONS, NULL },
957 .mismatch = DATA_TO_ANY_INIT,
958 .symbol_white_list = {
959 "*_template", "*_timer", "*_sht", "*_ops",
960 "*_probe", "*_probe_one", "*_console", NULL
961 },
962},
963{
Sam Ravnborg588ccd72008-01-24 21:12:37 +0100964 .fromsec = { TEXT_SECTIONS, NULL },
965 .tosec = { ALL_EXIT_SECTIONS, NULL },
Uwe Kleine-Königbbd3f4f2010-01-30 16:35:47 +0100966 .mismatch = TEXT_TO_ANY_EXIT,
Uwe Kleine-Königaf92a822010-01-30 20:52:50 +0100967 .symbol_white_list = { DEFAULT_SYMBOL_WHITE_LIST, NULL },
Sam Ravnborg588ccd72008-01-24 21:12:37 +0100968},
969{
970 .fromsec = { DATA_SECTIONS, NULL },
971 .tosec = { ALL_EXIT_SECTIONS, NULL },
Uwe Kleine-Königbbd3f4f2010-01-30 16:35:47 +0100972 .mismatch = DATA_TO_ANY_EXIT,
Uwe Kleine-Königaf92a822010-01-30 20:52:50 +0100973 .symbol_white_list = { DEFAULT_SYMBOL_WHITE_LIST, NULL },
Sam Ravnborgeb8f6892008-01-20 20:07:28 +0100974},
975/* Do not reference init code/data from devinit/cpuinit/meminit code/data */
976{
Uwe Kleine-König4a31a222010-01-29 12:04:26 +0100977 .fromsec = { ALL_XXXINIT_SECTIONS, NULL },
Sam Ravnborg588ccd72008-01-24 21:12:37 +0100978 .tosec = { INIT_SECTIONS, NULL },
Uwe Kleine-Königbbd3f4f2010-01-30 16:35:47 +0100979 .mismatch = XXXINIT_TO_SOME_INIT,
Uwe Kleine-Königaf92a822010-01-30 20:52:50 +0100980 .symbol_white_list = { DEFAULT_SYMBOL_WHITE_LIST, NULL },
Sam Ravnborgeb8f6892008-01-20 20:07:28 +0100981},
Jan Beulichfd6c3a82009-03-12 10:58:33 +0000982/* Do not reference cpuinit code/data from meminit code/data */
983{
984 .fromsec = { MEM_INIT_SECTIONS, NULL },
985 .tosec = { CPU_INIT_SECTIONS, NULL },
Uwe Kleine-Königbbd3f4f2010-01-30 16:35:47 +0100986 .mismatch = XXXINIT_TO_SOME_INIT,
Uwe Kleine-Königaf92a822010-01-30 20:52:50 +0100987 .symbol_white_list = { DEFAULT_SYMBOL_WHITE_LIST, NULL },
Jan Beulichfd6c3a82009-03-12 10:58:33 +0000988},
989/* Do not reference meminit code/data from cpuinit code/data */
990{
991 .fromsec = { CPU_INIT_SECTIONS, NULL },
992 .tosec = { MEM_INIT_SECTIONS, NULL },
Uwe Kleine-Königbbd3f4f2010-01-30 16:35:47 +0100993 .mismatch = XXXINIT_TO_SOME_INIT,
Uwe Kleine-Königaf92a822010-01-30 20:52:50 +0100994 .symbol_white_list = { DEFAULT_SYMBOL_WHITE_LIST, NULL },
Jan Beulichfd6c3a82009-03-12 10:58:33 +0000995},
Sam Ravnborgeb8f6892008-01-20 20:07:28 +0100996/* Do not reference exit code/data from devexit/cpuexit/memexit code/data */
997{
Uwe Kleine-König4a31a222010-01-29 12:04:26 +0100998 .fromsec = { ALL_XXXEXIT_SECTIONS, NULL },
Sam Ravnborg588ccd72008-01-24 21:12:37 +0100999 .tosec = { EXIT_SECTIONS, NULL },
Uwe Kleine-Königbbd3f4f2010-01-30 16:35:47 +01001000 .mismatch = XXXEXIT_TO_SOME_EXIT,
Uwe Kleine-Königaf92a822010-01-30 20:52:50 +01001001 .symbol_white_list = { DEFAULT_SYMBOL_WHITE_LIST, NULL },
Sam Ravnborg10668222008-01-13 22:21:31 +01001002},
Jan Beulichfd6c3a82009-03-12 10:58:33 +00001003/* Do not reference cpuexit code/data from memexit code/data */
1004{
1005 .fromsec = { MEM_EXIT_SECTIONS, NULL },
1006 .tosec = { CPU_EXIT_SECTIONS, NULL },
Uwe Kleine-Königbbd3f4f2010-01-30 16:35:47 +01001007 .mismatch = XXXEXIT_TO_SOME_EXIT,
Uwe Kleine-Königaf92a822010-01-30 20:52:50 +01001008 .symbol_white_list = { DEFAULT_SYMBOL_WHITE_LIST, NULL },
Jan Beulichfd6c3a82009-03-12 10:58:33 +00001009},
1010/* Do not reference memexit code/data from cpuexit code/data */
1011{
1012 .fromsec = { CPU_EXIT_SECTIONS, NULL },
1013 .tosec = { MEM_EXIT_SECTIONS, NULL },
Uwe Kleine-Königbbd3f4f2010-01-30 16:35:47 +01001014 .mismatch = XXXEXIT_TO_SOME_EXIT,
Uwe Kleine-Königaf92a822010-01-30 20:52:50 +01001015 .symbol_white_list = { DEFAULT_SYMBOL_WHITE_LIST, NULL },
Jan Beulichfd6c3a82009-03-12 10:58:33 +00001016},
Sam Ravnborg10668222008-01-13 22:21:31 +01001017/* Do not use exit code/data from init code */
1018{
Sam Ravnborgeb8f6892008-01-20 20:07:28 +01001019 .fromsec = { ALL_INIT_SECTIONS, NULL },
1020 .tosec = { ALL_EXIT_SECTIONS, NULL },
Uwe Kleine-Königbbd3f4f2010-01-30 16:35:47 +01001021 .mismatch = ANY_INIT_TO_ANY_EXIT,
Uwe Kleine-Königaf92a822010-01-30 20:52:50 +01001022 .symbol_white_list = { DEFAULT_SYMBOL_WHITE_LIST, NULL },
Sam Ravnborg10668222008-01-13 22:21:31 +01001023},
1024/* Do not use init code/data from exit code */
1025{
Sam Ravnborgeb8f6892008-01-20 20:07:28 +01001026 .fromsec = { ALL_EXIT_SECTIONS, NULL },
Sam Ravnborg588ccd72008-01-24 21:12:37 +01001027 .tosec = { ALL_INIT_SECTIONS, NULL },
Uwe Kleine-Königbbd3f4f2010-01-30 16:35:47 +01001028 .mismatch = ANY_EXIT_TO_ANY_INIT,
Uwe Kleine-Königaf92a822010-01-30 20:52:50 +01001029 .symbol_white_list = { DEFAULT_SYMBOL_WHITE_LIST, NULL },
Sam Ravnborg10668222008-01-13 22:21:31 +01001030},
1031/* Do not export init/exit functions or data */
1032{
1033 .fromsec = { "__ksymtab*", NULL },
Sam Ravnborgfa95eb12008-02-02 23:30:22 +01001034 .tosec = { INIT_SECTIONS, EXIT_SECTIONS, NULL },
Uwe Kleine-Königaf92a822010-01-30 20:52:50 +01001035 .mismatch = EXPORT_TO_INIT_EXIT,
1036 .symbol_white_list = { DEFAULT_SYMBOL_WHITE_LIST, NULL },
Sam Ravnborg10668222008-01-13 22:21:31 +01001037}
1038};
1039
Uwe Kleine-König0d2a6362010-01-30 16:56:20 +01001040static const struct sectioncheck *section_mismatch(
1041 const char *fromsec, const char *tosec)
Sam Ravnborg10668222008-01-13 22:21:31 +01001042{
1043 int i;
1044 int elems = sizeof(sectioncheck) / sizeof(struct sectioncheck);
1045 const struct sectioncheck *check = &sectioncheck[0];
1046
1047 for (i = 0; i < elems; i++) {
1048 if (match(fromsec, check->fromsec) &&
1049 match(tosec, check->tosec))
Uwe Kleine-König0d2a6362010-01-30 16:56:20 +01001050 return check;
Sam Ravnborg10668222008-01-13 22:21:31 +01001051 check++;
1052 }
Uwe Kleine-König0d2a6362010-01-30 16:56:20 +01001053 return NULL;
Sam Ravnborg10668222008-01-13 22:21:31 +01001054}
1055
Sam Ravnborg4c8fbca2006-02-26 22:18:11 +01001056/**
1057 * Whitelist to allow certain references to pass with no warning.
Sam Ravnborg0e0d3142007-05-17 20:14:48 +02001058 *
Sam Ravnborg4c8fbca2006-02-26 22:18:11 +01001059 * Pattern 1:
1060 * If a module parameter is declared __initdata and permissions=0
1061 * then this is legal despite the warning generated.
1062 * We cannot see value of permissions here, so just ignore
1063 * this pattern.
1064 * The pattern is identified by:
1065 * tosec = .init.data
Sam Ravnborg9209aed2006-03-05 00:16:26 +01001066 * fromsec = .data*
Sam Ravnborg4c8fbca2006-02-26 22:18:11 +01001067 * atsym =__param*
Sam Ravnborg62070fa2006-03-03 16:46:04 +01001068 *
Rusty Russell6a841522010-08-11 23:04:16 -06001069 * Pattern 1a:
1070 * module_param_call() ops can refer to __init set function if permissions=0
1071 * The pattern is identified by:
1072 * tosec = .init.text
1073 * fromsec = .data*
1074 * atsym = __param_ops_*
1075 *
Sam Ravnborg4c8fbca2006-02-26 22:18:11 +01001076 * Pattern 2:
Randy Dunlap72ee59b2006-04-15 11:17:12 -07001077 * Many drivers utilise a *driver container with references to
Sam Ravnborg4c8fbca2006-02-26 22:18:11 +01001078 * add, remove, probe functions etc.
Uwe Kleine-Königb75dcab2010-01-29 11:40:38 +01001079 * These functions may often be marked __devinit and we do not want to
Sam Ravnborg4c8fbca2006-02-26 22:18:11 +01001080 * warn here.
1081 * the pattern is identified by:
Sam Ravnborg83cda2b2007-07-25 21:52:31 +02001082 * tosec = init or exit section
1083 * fromsec = data section
Sam Ravnborgdf578e72008-01-11 19:17:15 +01001084 * atsym = *driver, *_template, *_sht, *_ops, *_probe,
1085 * *probe_one, *_console, *_timer
Vivek Goyalee6a8542007-01-11 01:52:44 +01001086 *
1087 * Pattern 3:
Sam Ravnborgc9939712009-04-26 11:17:42 +02001088 * Whitelist all references from .head.text to any init section
Sam Ravnborg9bf8cb92007-02-26 17:49:06 +01001089 *
Sam Ravnborg1d8af552007-06-03 00:41:22 +02001090 * Pattern 4:
Vivek Goyalee6a8542007-01-11 01:52:44 +01001091 * Some symbols belong to init section but still it is ok to reference
1092 * these from non-init sections as these symbols don't have any memory
1093 * allocated for them and symbol address and value are same. So even
1094 * if init section is freed, its ok to reference those symbols.
1095 * For ex. symbols marking the init section boundaries.
1096 * This pattern is identified by
1097 * refsymname = __init_begin, _sinittext, _einittext
Sam Ravnborg9bf8cb92007-02-26 17:49:06 +01001098 *
Sam Ravnborg4c8fbca2006-02-26 22:18:11 +01001099 **/
Uwe Kleine-Königaf92a822010-01-30 20:52:50 +01001100static int secref_whitelist(const struct sectioncheck *mismatch,
1101 const char *fromsec, const char *fromsym,
Sam Ravnborg58fb0d42008-01-23 21:13:50 +01001102 const char *tosec, const char *tosym)
Sam Ravnborg4c8fbca2006-02-26 22:18:11 +01001103{
Sam Ravnborg4c8fbca2006-02-26 22:18:11 +01001104 /* Check for pattern 1 */
Sam Ravnborg6c5bd232008-01-20 10:43:27 +01001105 if (match(tosec, init_data_sections) &&
1106 match(fromsec, data_sections) &&
Sam Ravnborg58fb0d42008-01-23 21:13:50 +01001107 (strncmp(fromsym, "__param", strlen("__param")) == 0))
1108 return 0;
Sam Ravnborg4c8fbca2006-02-26 22:18:11 +01001109
Rusty Russell6a841522010-08-11 23:04:16 -06001110 /* Check for pattern 1a */
1111 if (strcmp(tosec, ".init.text") == 0 &&
1112 match(fromsec, data_sections) &&
1113 (strncmp(fromsym, "__param_ops_", strlen("__param_ops_")) == 0))
1114 return 0;
1115
Sam Ravnborg4c8fbca2006-02-26 22:18:11 +01001116 /* Check for pattern 2 */
Sam Ravnborg6c5bd232008-01-20 10:43:27 +01001117 if (match(tosec, init_exit_sections) &&
1118 match(fromsec, data_sections) &&
Uwe Kleine-Königaf92a822010-01-30 20:52:50 +01001119 match(fromsym, mismatch->symbol_white_list))
Sam Ravnborg58fb0d42008-01-23 21:13:50 +01001120 return 0;
Sam Ravnborg4c8fbca2006-02-26 22:18:11 +01001121
Sam Ravnborg9bf8cb92007-02-26 17:49:06 +01001122 /* Check for pattern 3 */
Sam Ravnborg6c5bd232008-01-20 10:43:27 +01001123 if (match(fromsec, head_sections) &&
1124 match(tosec, init_sections))
Sam Ravnborg58fb0d42008-01-23 21:13:50 +01001125 return 0;
Sam Ravnborg9bf8cb92007-02-26 17:49:06 +01001126
Sam Ravnborg1d8af552007-06-03 00:41:22 +02001127 /* Check for pattern 4 */
Sam Ravnborg58fb0d42008-01-23 21:13:50 +01001128 if (match(tosym, linker_symbols))
1129 return 0;
Sam Ravnborg9bf8cb92007-02-26 17:49:06 +01001130
Sam Ravnborg58fb0d42008-01-23 21:13:50 +01001131 return 1;
Sam Ravnborg4c8fbca2006-02-26 22:18:11 +01001132}
1133
1134/**
Sam Ravnborg93684d32006-02-19 11:53:35 +01001135 * Find symbol based on relocation record info.
1136 * In some cases the symbol supplied is a valid symbol so
1137 * return refsym. If st_name != 0 we assume this is a valid symbol.
1138 * In other cases the symbol needs to be looked up in the symbol table
1139 * based on section and address.
1140 * **/
Sam Ravnborg9ad21c32008-01-18 21:04:34 +01001141static Elf_Sym *find_elf_symbol(struct elf_info *elf, Elf64_Sword addr,
Sam Ravnborg93684d32006-02-19 11:53:35 +01001142 Elf_Sym *relsym)
1143{
1144 Elf_Sym *sym;
Sam Ravnborg9ad21c32008-01-18 21:04:34 +01001145 Elf_Sym *near = NULL;
1146 Elf64_Sword distance = 20;
1147 Elf64_Sword d;
Denys Vlasenko1ce53ad2010-07-29 01:47:53 +02001148 unsigned int relsym_secindex;
Sam Ravnborg93684d32006-02-19 11:53:35 +01001149
1150 if (relsym->st_name != 0)
1151 return relsym;
Denys Vlasenko1ce53ad2010-07-29 01:47:53 +02001152
1153 relsym_secindex = get_secindex(elf, relsym);
Sam Ravnborg93684d32006-02-19 11:53:35 +01001154 for (sym = elf->symtab_start; sym < elf->symtab_stop; sym++) {
Denys Vlasenko1ce53ad2010-07-29 01:47:53 +02001155 if (get_secindex(elf, sym) != relsym_secindex)
Sam Ravnborg93684d32006-02-19 11:53:35 +01001156 continue;
Atsushi Nemotoae4ac122007-05-22 18:27:39 +09001157 if (ELF_ST_TYPE(sym->st_info) == STT_SECTION)
1158 continue;
Sam Ravnborg93684d32006-02-19 11:53:35 +01001159 if (sym->st_value == addr)
1160 return sym;
Sam Ravnborg9ad21c32008-01-18 21:04:34 +01001161 /* Find a symbol nearby - addr are maybe negative */
1162 d = sym->st_value - addr;
1163 if (d < 0)
1164 d = addr - sym->st_value;
1165 if (d < distance) {
1166 distance = d;
1167 near = sym;
1168 }
Sam Ravnborg93684d32006-02-19 11:53:35 +01001169 }
Sam Ravnborg9ad21c32008-01-18 21:04:34 +01001170 /* We need a close match */
1171 if (distance < 20)
1172 return near;
1173 else
1174 return NULL;
Sam Ravnborg93684d32006-02-19 11:53:35 +01001175}
1176
David Brownellda68d612007-02-20 13:58:16 -08001177static inline int is_arm_mapping_symbol(const char *str)
1178{
1179 return str[0] == '$' && strchr("atd", str[1])
1180 && (str[2] == '\0' || str[2] == '.');
1181}
1182
1183/*
1184 * If there's no name there, ignore it; likewise, ignore it if it's
1185 * one of the magic symbols emitted used by current ARM tools.
1186 *
1187 * Otherwise if find_symbols_between() returns those symbols, they'll
1188 * fail the whitelist tests and cause lots of false alarms ... fixable
1189 * only by merging __exit and __init sections into __text, bloating
1190 * the kernel (which is especially evil on embedded platforms).
1191 */
1192static inline int is_valid_name(struct elf_info *elf, Elf_Sym *sym)
1193{
1194 const char *name = elf->strtab + sym->st_name;
1195
1196 if (!name || !strlen(name))
1197 return 0;
1198 return !is_arm_mapping_symbol(name);
1199}
1200
Sam Ravnborgb39927c2006-02-17 22:42:02 +01001201/*
Sam Ravnborg43c74d12006-03-05 12:02:46 +01001202 * Find symbols before or equal addr and after addr - in the section sec.
1203 * If we find two symbols with equal offset prefer one with a valid name.
1204 * The ELF format may have a better way to detect what type of symbol
1205 * it is, but this works for now.
Sam Ravnborgb39927c2006-02-17 22:42:02 +01001206 **/
Sam Ravnborg157c23c2008-01-22 21:44:32 +01001207static Elf_Sym *find_elf_symbol2(struct elf_info *elf, Elf_Addr addr,
1208 const char *sec)
Sam Ravnborgb39927c2006-02-17 22:42:02 +01001209{
1210 Elf_Sym *sym;
Sam Ravnborg157c23c2008-01-22 21:44:32 +01001211 Elf_Sym *near = NULL;
Sam Ravnborg157c23c2008-01-22 21:44:32 +01001212 Elf_Addr distance = ~0;
Sam Ravnborg62070fa2006-03-03 16:46:04 +01001213
Sam Ravnborgb39927c2006-02-17 22:42:02 +01001214 for (sym = elf->symtab_start; sym < elf->symtab_stop; sym++) {
1215 const char *symsec;
1216
Denys Vlasenko1ce53ad2010-07-29 01:47:53 +02001217 if (is_shndx_special(sym->st_shndx))
Sam Ravnborgb39927c2006-02-17 22:42:02 +01001218 continue;
Denys Vlasenko1ce53ad2010-07-29 01:47:53 +02001219 symsec = sec_name(elf, get_secindex(elf, sym));
Sam Ravnborgb39927c2006-02-17 22:42:02 +01001220 if (strcmp(symsec, sec) != 0)
1221 continue;
David Brownellda68d612007-02-20 13:58:16 -08001222 if (!is_valid_name(elf, sym))
1223 continue;
Sam Ravnborgb39927c2006-02-17 22:42:02 +01001224 if (sym->st_value <= addr) {
Sam Ravnborg157c23c2008-01-22 21:44:32 +01001225 if ((addr - sym->st_value) < distance) {
1226 distance = addr - sym->st_value;
1227 near = sym;
1228 } else if ((addr - sym->st_value) == distance) {
1229 near = sym;
Sam Ravnborg43c74d12006-03-05 12:02:46 +01001230 }
Sam Ravnborgb39927c2006-02-17 22:42:02 +01001231 }
1232 }
Sam Ravnborg157c23c2008-01-22 21:44:32 +01001233 return near;
Sam Ravnborgb39927c2006-02-17 22:42:02 +01001234}
1235
Sam Ravnborg58fb0d42008-01-23 21:13:50 +01001236/*
Sam Ravnborg588ccd72008-01-24 21:12:37 +01001237 * Convert a section name to the function/data attribute
1238 * .init.text => __init
1239 * .cpuinit.data => __cpudata
1240 * .memexitconst => __memconst
1241 * etc.
Andy Shevchenkocbcf14a92010-08-17 13:36:40 +03001242 *
1243 * The memory of returned value has been allocated on a heap. The user of this
1244 * method should free it after usage.
Sam Ravnborg588ccd72008-01-24 21:12:37 +01001245*/
1246static char *sec2annotation(const char *s)
1247{
1248 if (match(s, init_exit_sections)) {
1249 char *p = malloc(20);
1250 char *r = p;
1251
1252 *p++ = '_';
1253 *p++ = '_';
1254 if (*s == '.')
1255 s++;
1256 while (*s && *s != '.')
1257 *p++ = *s++;
1258 *p = '\0';
1259 if (*s == '.')
1260 s++;
1261 if (strstr(s, "rodata") != NULL)
1262 strcat(p, "const ");
1263 else if (strstr(s, "data") != NULL)
1264 strcat(p, "data ");
1265 else
1266 strcat(p, " ");
Andy Shevchenkocbcf14a92010-08-17 13:36:40 +03001267 return r;
Sam Ravnborg588ccd72008-01-24 21:12:37 +01001268 } else {
Andrew Morton5003bab2010-08-11 00:42:26 -07001269 return strdup("");
Sam Ravnborg588ccd72008-01-24 21:12:37 +01001270 }
1271}
1272
1273static int is_function(Elf_Sym *sym)
1274{
1275 if (sym)
1276 return ELF_ST_TYPE(sym->st_info) == STT_FUNC;
1277 else
Sam Ravnborgf6667512008-02-06 21:51:18 +01001278 return -1;
Sam Ravnborg588ccd72008-01-24 21:12:37 +01001279}
1280
Randy Dunlap00759c02011-03-15 14:13:47 -07001281static void print_section_list(const char * const list[20])
1282{
1283 const char *const *s = list;
1284
1285 while (*s) {
1286 fprintf(stderr, "%s", *s);
1287 s++;
1288 if (*s)
1289 fprintf(stderr, ", ");
1290 }
1291 fprintf(stderr, "\n");
1292}
1293
Sam Ravnborg588ccd72008-01-24 21:12:37 +01001294/*
Sam Ravnborgb39927c2006-02-17 22:42:02 +01001295 * Print a warning about a section mismatch.
1296 * Try to find symbols near it so user can find it.
Sam Ravnborg4c8fbca2006-02-26 22:18:11 +01001297 * Check whitelist before warning - it may be a false positive.
Sam Ravnborg58fb0d42008-01-23 21:13:50 +01001298 */
Uwe Kleine-König0d2a6362010-01-30 16:56:20 +01001299static void report_sec_mismatch(const char *modname,
1300 const struct sectioncheck *mismatch,
Sam Ravnborg58fb0d42008-01-23 21:13:50 +01001301 const char *fromsec,
1302 unsigned long long fromaddr,
1303 const char *fromsym,
Sam Ravnborg588ccd72008-01-24 21:12:37 +01001304 int from_is_func,
1305 const char *tosec, const char *tosym,
1306 int to_is_func)
Sam Ravnborgb39927c2006-02-17 22:42:02 +01001307{
Sam Ravnborg588ccd72008-01-24 21:12:37 +01001308 const char *from, *from_p;
1309 const char *to, *to_p;
Alexey Fomenko37ed19d2010-08-09 17:20:24 -07001310 char *prl_from;
1311 char *prl_to;
Sam Ravnborgf6667512008-02-06 21:51:18 +01001312
1313 switch (from_is_func) {
1314 case 0: from = "variable"; from_p = ""; break;
1315 case 1: from = "function"; from_p = "()"; break;
1316 default: from = "(unknown reference)"; from_p = ""; break;
1317 }
1318 switch (to_is_func) {
1319 case 0: to = "variable"; to_p = ""; break;
1320 case 1: to = "function"; to_p = "()"; break;
1321 default: to = "(unknown reference)"; to_p = ""; break;
1322 }
Sam Ravnborg588ccd72008-01-24 21:12:37 +01001323
Sam Ravnborge5f95c82008-02-02 18:57:18 +01001324 sec_mismatch_count++;
1325 if (!sec_mismatch_verbose)
1326 return;
1327
Geert Uytterhoeven7c0ac492008-02-05 11:38:49 +01001328 warn("%s(%s+0x%llx): Section mismatch in reference from the %s %s%s "
1329 "to the %s %s:%s%s\n",
1330 modname, fromsec, fromaddr, from, fromsym, from_p, to, tosec,
1331 tosym, to_p);
Sam Ravnborg588ccd72008-01-24 21:12:37 +01001332
Uwe Kleine-König0d2a6362010-01-30 16:56:20 +01001333 switch (mismatch->mismatch) {
Uwe Kleine-Königbbd3f4f2010-01-30 16:35:47 +01001334 case TEXT_TO_ANY_INIT:
Alexey Fomenko37ed19d2010-08-09 17:20:24 -07001335 prl_from = sec2annotation(fromsec);
1336 prl_to = sec2annotation(tosec);
Sam Ravnborg588ccd72008-01-24 21:12:37 +01001337 fprintf(stderr,
Sam Ravnborgf6667512008-02-06 21:51:18 +01001338 "The function %s%s() references\n"
Sam Ravnborg588ccd72008-01-24 21:12:37 +01001339 "the %s %s%s%s.\n"
1340 "This is often because %s lacks a %s\n"
1341 "annotation or the annotation of %s is wrong.\n",
Alexey Fomenko37ed19d2010-08-09 17:20:24 -07001342 prl_from, fromsym,
1343 to, prl_to, tosym, to_p,
1344 fromsym, prl_to, tosym);
1345 free(prl_from);
1346 free(prl_to);
Sam Ravnborg588ccd72008-01-24 21:12:37 +01001347 break;
Uwe Kleine-Königbbd3f4f2010-01-30 16:35:47 +01001348 case DATA_TO_ANY_INIT: {
Alexey Fomenko37ed19d2010-08-09 17:20:24 -07001349 prl_to = sec2annotation(tosec);
Sam Ravnborg588ccd72008-01-24 21:12:37 +01001350 fprintf(stderr,
1351 "The variable %s references\n"
1352 "the %s %s%s%s\n"
1353 "If the reference is valid then annotate the\n"
Sam Ravnborg8b8b76c2009-06-06 00:18:05 +02001354 "variable with __init* or __refdata (see linux/init.h) "
Sam Ravnborg588ccd72008-01-24 21:12:37 +01001355 "or name the variable:\n",
Alexey Fomenko37ed19d2010-08-09 17:20:24 -07001356 fromsym, to, prl_to, tosym, to_p);
Randy Dunlap00759c02011-03-15 14:13:47 -07001357 print_section_list(mismatch->symbol_white_list);
Alexey Fomenko37ed19d2010-08-09 17:20:24 -07001358 free(prl_to);
Sam Ravnborg588ccd72008-01-24 21:12:37 +01001359 break;
Sam Ravnborg58fb0d42008-01-23 21:13:50 +01001360 }
Uwe Kleine-Königbbd3f4f2010-01-30 16:35:47 +01001361 case TEXT_TO_ANY_EXIT:
Alexey Fomenko37ed19d2010-08-09 17:20:24 -07001362 prl_to = sec2annotation(tosec);
Sam Ravnborg588ccd72008-01-24 21:12:37 +01001363 fprintf(stderr,
1364 "The function %s() references a %s in an exit section.\n"
1365 "Often the %s %s%s has valid usage outside the exit section\n"
1366 "and the fix is to remove the %sannotation of %s.\n",
Alexey Fomenko37ed19d2010-08-09 17:20:24 -07001367 fromsym, to, to, tosym, to_p, prl_to, tosym);
1368 free(prl_to);
Sam Ravnborg588ccd72008-01-24 21:12:37 +01001369 break;
Uwe Kleine-Königbbd3f4f2010-01-30 16:35:47 +01001370 case DATA_TO_ANY_EXIT: {
Alexey Fomenko37ed19d2010-08-09 17:20:24 -07001371 prl_to = sec2annotation(tosec);
Sam Ravnborg588ccd72008-01-24 21:12:37 +01001372 fprintf(stderr,
1373 "The variable %s references\n"
1374 "the %s %s%s%s\n"
1375 "If the reference is valid then annotate the\n"
1376 "variable with __exit* (see linux/init.h) or "
1377 "name the variable:\n",
Alexey Fomenko37ed19d2010-08-09 17:20:24 -07001378 fromsym, to, prl_to, tosym, to_p);
Randy Dunlap00759c02011-03-15 14:13:47 -07001379 print_section_list(mismatch->symbol_white_list);
Alexey Fomenko37ed19d2010-08-09 17:20:24 -07001380 free(prl_to);
Sam Ravnborg588ccd72008-01-24 21:12:37 +01001381 break;
1382 }
Uwe Kleine-Königbbd3f4f2010-01-30 16:35:47 +01001383 case XXXINIT_TO_SOME_INIT:
1384 case XXXEXIT_TO_SOME_EXIT:
Alexey Fomenko37ed19d2010-08-09 17:20:24 -07001385 prl_from = sec2annotation(fromsec);
1386 prl_to = sec2annotation(tosec);
Sam Ravnborg588ccd72008-01-24 21:12:37 +01001387 fprintf(stderr,
1388 "The %s %s%s%s references\n"
1389 "a %s %s%s%s.\n"
1390 "If %s is only used by %s then\n"
1391 "annotate %s with a matching annotation.\n",
Alexey Fomenko37ed19d2010-08-09 17:20:24 -07001392 from, prl_from, fromsym, from_p,
1393 to, prl_to, tosym, to_p,
Geert Uytterhoevenb1d26752008-02-17 14:12:10 +01001394 tosym, fromsym, tosym);
Alexey Fomenko37ed19d2010-08-09 17:20:24 -07001395 free(prl_from);
1396 free(prl_to);
Sam Ravnborg588ccd72008-01-24 21:12:37 +01001397 break;
Uwe Kleine-Königbbd3f4f2010-01-30 16:35:47 +01001398 case ANY_INIT_TO_ANY_EXIT:
Alexey Fomenko37ed19d2010-08-09 17:20:24 -07001399 prl_from = sec2annotation(fromsec);
1400 prl_to = sec2annotation(tosec);
Sam Ravnborg588ccd72008-01-24 21:12:37 +01001401 fprintf(stderr,
1402 "The %s %s%s%s references\n"
1403 "a %s %s%s%s.\n"
1404 "This is often seen when error handling "
1405 "in the init function\n"
1406 "uses functionality in the exit path.\n"
1407 "The fix is often to remove the %sannotation of\n"
1408 "%s%s so it may be used outside an exit section.\n",
Alexey Fomenko37ed19d2010-08-09 17:20:24 -07001409 from, prl_from, fromsym, from_p,
1410 to, prl_to, tosym, to_p,
Andrew Morton5003bab2010-08-11 00:42:26 -07001411 prl_to, tosym, to_p);
Alexey Fomenko37ed19d2010-08-09 17:20:24 -07001412 free(prl_from);
1413 free(prl_to);
Sam Ravnborg588ccd72008-01-24 21:12:37 +01001414 break;
Uwe Kleine-Königbbd3f4f2010-01-30 16:35:47 +01001415 case ANY_EXIT_TO_ANY_INIT:
Alexey Fomenko37ed19d2010-08-09 17:20:24 -07001416 prl_from = sec2annotation(fromsec);
1417 prl_to = sec2annotation(tosec);
Sam Ravnborg588ccd72008-01-24 21:12:37 +01001418 fprintf(stderr,
1419 "The %s %s%s%s references\n"
1420 "a %s %s%s%s.\n"
1421 "This is often seen when error handling "
1422 "in the exit function\n"
1423 "uses functionality in the init path.\n"
1424 "The fix is often to remove the %sannotation of\n"
1425 "%s%s so it may be used outside an init section.\n",
Alexey Fomenko37ed19d2010-08-09 17:20:24 -07001426 from, prl_from, fromsym, from_p,
1427 to, prl_to, tosym, to_p,
1428 prl_to, tosym, to_p);
1429 free(prl_from);
1430 free(prl_to);
Sam Ravnborg588ccd72008-01-24 21:12:37 +01001431 break;
1432 case EXPORT_TO_INIT_EXIT:
Alexey Fomenko37ed19d2010-08-09 17:20:24 -07001433 prl_to = sec2annotation(tosec);
Sam Ravnborg588ccd72008-01-24 21:12:37 +01001434 fprintf(stderr,
1435 "The symbol %s is exported and annotated %s\n"
1436 "Fix this by removing the %sannotation of %s "
1437 "or drop the export.\n",
Alexey Fomenko37ed19d2010-08-09 17:20:24 -07001438 tosym, prl_to, prl_to, tosym);
1439 free(prl_to);
Sam Ravnborg588ccd72008-01-24 21:12:37 +01001440 break;
1441 }
1442 fprintf(stderr, "\n");
Sam Ravnborg58fb0d42008-01-23 21:13:50 +01001443}
1444
1445static void check_section_mismatch(const char *modname, struct elf_info *elf,
1446 Elf_Rela *r, Elf_Sym *sym, const char *fromsec)
1447{
1448 const char *tosec;
Uwe Kleine-König0d2a6362010-01-30 16:56:20 +01001449 const struct sectioncheck *mismatch;
Sam Ravnborg58fb0d42008-01-23 21:13:50 +01001450
Denys Vlasenko1ce53ad2010-07-29 01:47:53 +02001451 tosec = sec_name(elf, get_secindex(elf, sym));
Sam Ravnborg588ccd72008-01-24 21:12:37 +01001452 mismatch = section_mismatch(fromsec, tosec);
Uwe Kleine-König0d2a6362010-01-30 16:56:20 +01001453 if (mismatch) {
Sam Ravnborg588ccd72008-01-24 21:12:37 +01001454 Elf_Sym *to;
1455 Elf_Sym *from;
Sam Ravnborg58fb0d42008-01-23 21:13:50 +01001456 const char *tosym;
Sam Ravnborg588ccd72008-01-24 21:12:37 +01001457 const char *fromsym;
Sam Ravnborg58fb0d42008-01-23 21:13:50 +01001458
Sam Ravnborg588ccd72008-01-24 21:12:37 +01001459 from = find_elf_symbol2(elf, r->r_offset, fromsec);
1460 fromsym = sym_name(elf, from);
1461 to = find_elf_symbol(elf, r->r_addend, sym);
1462 tosym = sym_name(elf, to);
Sam Ravnborg58fb0d42008-01-23 21:13:50 +01001463
1464 /* check whitelist - we may ignore it */
Uwe Kleine-Königaf92a822010-01-30 20:52:50 +01001465 if (secref_whitelist(mismatch,
1466 fromsec, fromsym, tosec, tosym)) {
Sam Ravnborg588ccd72008-01-24 21:12:37 +01001467 report_sec_mismatch(modname, mismatch,
1468 fromsec, r->r_offset, fromsym,
1469 is_function(from), tosec, tosym,
1470 is_function(to));
Sam Ravnborg58fb0d42008-01-23 21:13:50 +01001471 }
Sam Ravnborgb39927c2006-02-17 22:42:02 +01001472 }
1473}
1474
Atsushi Nemotoae4ac122007-05-22 18:27:39 +09001475static unsigned int *reloc_location(struct elf_info *elf,
Sam Ravnborg5b24c072008-01-18 21:49:29 +01001476 Elf_Shdr *sechdr, Elf_Rela *r)
Atsushi Nemotoae4ac122007-05-22 18:27:39 +09001477{
1478 Elf_Shdr *sechdrs = elf->sechdrs;
Anders Kaseorg68457562011-05-19 16:55:27 -06001479 int section = sechdr->sh_info;
Atsushi Nemotoae4ac122007-05-22 18:27:39 +09001480
1481 return (void *)elf->hdr + sechdrs[section].sh_offset +
Olof Johansson731ece42010-12-10 02:09:23 -06001482 r->r_offset;
Atsushi Nemotoae4ac122007-05-22 18:27:39 +09001483}
1484
Sam Ravnborg5b24c072008-01-18 21:49:29 +01001485static int addend_386_rel(struct elf_info *elf, Elf_Shdr *sechdr, Elf_Rela *r)
Atsushi Nemotoae4ac122007-05-22 18:27:39 +09001486{
1487 unsigned int r_typ = ELF_R_TYPE(r->r_info);
Sam Ravnborg5b24c072008-01-18 21:49:29 +01001488 unsigned int *location = reloc_location(elf, sechdr, r);
Atsushi Nemotoae4ac122007-05-22 18:27:39 +09001489
1490 switch (r_typ) {
1491 case R_386_32:
1492 r->r_addend = TO_NATIVE(*location);
1493 break;
1494 case R_386_PC32:
1495 r->r_addend = TO_NATIVE(*location) + 4;
1496 /* For CONFIG_RELOCATABLE=y */
1497 if (elf->hdr->e_type == ET_EXEC)
1498 r->r_addend += r->r_offset;
1499 break;
1500 }
1501 return 0;
1502}
1503
Tony Lindgren6e2e3402012-02-14 21:58:56 +01001504#ifndef R_ARM_CALL
1505#define R_ARM_CALL 28
1506#endif
1507#ifndef R_ARM_JUMP24
1508#define R_ARM_JUMP24 29
1509#endif
1510
Sam Ravnborg5b24c072008-01-18 21:49:29 +01001511static int addend_arm_rel(struct elf_info *elf, Elf_Shdr *sechdr, Elf_Rela *r)
Sam Ravnborg56a974f2007-07-16 22:39:35 +02001512{
1513 unsigned int r_typ = ELF_R_TYPE(r->r_info);
1514
1515 switch (r_typ) {
1516 case R_ARM_ABS32:
1517 /* From ARM ABI: (S + A) | T */
Sam Ravnborgdf578e72008-01-11 19:17:15 +01001518 r->r_addend = (int)(long)
1519 (elf->symtab_start + ELF_R_SYM(r->r_info));
Sam Ravnborg56a974f2007-07-16 22:39:35 +02001520 break;
1521 case R_ARM_PC24:
Tony Lindgren6e2e3402012-02-14 21:58:56 +01001522 case R_ARM_CALL:
1523 case R_ARM_JUMP24:
Sam Ravnborg56a974f2007-07-16 22:39:35 +02001524 /* From ARM ABI: ((S + A) | T) - P */
Sam Ravnborgdf578e72008-01-11 19:17:15 +01001525 r->r_addend = (int)(long)(elf->hdr +
Sam Ravnborg5b24c072008-01-18 21:49:29 +01001526 sechdr->sh_offset +
1527 (r->r_offset - sechdr->sh_addr));
Sam Ravnborg56a974f2007-07-16 22:39:35 +02001528 break;
1529 default:
1530 return 1;
1531 }
1532 return 0;
1533}
1534
Sam Ravnborg5b24c072008-01-18 21:49:29 +01001535static int addend_mips_rel(struct elf_info *elf, Elf_Shdr *sechdr, Elf_Rela *r)
Atsushi Nemotoae4ac122007-05-22 18:27:39 +09001536{
1537 unsigned int r_typ = ELF_R_TYPE(r->r_info);
Sam Ravnborg5b24c072008-01-18 21:49:29 +01001538 unsigned int *location = reloc_location(elf, sechdr, r);
Atsushi Nemotoae4ac122007-05-22 18:27:39 +09001539 unsigned int inst;
1540
1541 if (r_typ == R_MIPS_HI16)
1542 return 1; /* skip this */
1543 inst = TO_NATIVE(*location);
1544 switch (r_typ) {
1545 case R_MIPS_LO16:
1546 r->r_addend = inst & 0xffff;
1547 break;
1548 case R_MIPS_26:
1549 r->r_addend = (inst & 0x03ffffff) << 2;
1550 break;
1551 case R_MIPS_32:
1552 r->r_addend = inst;
1553 break;
1554 }
1555 return 0;
1556}
1557
Sam Ravnborg5b24c072008-01-18 21:49:29 +01001558static void section_rela(const char *modname, struct elf_info *elf,
Sam Ravnborg10668222008-01-13 22:21:31 +01001559 Elf_Shdr *sechdr)
Sam Ravnborg5b24c072008-01-18 21:49:29 +01001560{
1561 Elf_Sym *sym;
1562 Elf_Rela *rela;
1563 Elf_Rela r;
1564 unsigned int r_sym;
1565 const char *fromsec;
Sam Ravnborg5b24c072008-01-18 21:49:29 +01001566
Sam Ravnborgff13f922008-01-23 19:54:27 +01001567 Elf_Rela *start = (void *)elf->hdr + sechdr->sh_offset;
Sam Ravnborg5b24c072008-01-18 21:49:29 +01001568 Elf_Rela *stop = (void *)start + sechdr->sh_size;
1569
Sam Ravnborgff13f922008-01-23 19:54:27 +01001570 fromsec = sech_name(elf, sechdr);
Sam Ravnborg5b24c072008-01-18 21:49:29 +01001571 fromsec += strlen(".rela");
1572 /* if from section (name) is know good then skip it */
Anders Kaseorgb614a692009-04-23 16:49:33 -04001573 if (match(fromsec, section_white_list))
Sam Ravnborg5b24c072008-01-18 21:49:29 +01001574 return;
Sam Ravnborge241a632008-01-28 20:13:13 +01001575
Sam Ravnborg5b24c072008-01-18 21:49:29 +01001576 for (rela = start; rela < stop; rela++) {
1577 r.r_offset = TO_NATIVE(rela->r_offset);
1578#if KERNEL_ELFCLASS == ELFCLASS64
Sam Ravnborgff13f922008-01-23 19:54:27 +01001579 if (elf->hdr->e_machine == EM_MIPS) {
Sam Ravnborg5b24c072008-01-18 21:49:29 +01001580 unsigned int r_typ;
1581 r_sym = ELF64_MIPS_R_SYM(rela->r_info);
1582 r_sym = TO_NATIVE(r_sym);
1583 r_typ = ELF64_MIPS_R_TYPE(rela->r_info);
1584 r.r_info = ELF64_R_INFO(r_sym, r_typ);
1585 } else {
1586 r.r_info = TO_NATIVE(rela->r_info);
1587 r_sym = ELF_R_SYM(r.r_info);
1588 }
1589#else
1590 r.r_info = TO_NATIVE(rela->r_info);
1591 r_sym = ELF_R_SYM(r.r_info);
1592#endif
1593 r.r_addend = TO_NATIVE(rela->r_addend);
1594 sym = elf->symtab_start + r_sym;
1595 /* Skip special sections */
Denys Vlasenko1ce53ad2010-07-29 01:47:53 +02001596 if (is_shndx_special(sym->st_shndx))
Sam Ravnborg5b24c072008-01-18 21:49:29 +01001597 continue;
Sam Ravnborg58fb0d42008-01-23 21:13:50 +01001598 check_section_mismatch(modname, elf, &r, sym, fromsec);
Sam Ravnborg5b24c072008-01-18 21:49:29 +01001599 }
1600}
1601
1602static void section_rel(const char *modname, struct elf_info *elf,
Sam Ravnborg10668222008-01-13 22:21:31 +01001603 Elf_Shdr *sechdr)
Sam Ravnborg5b24c072008-01-18 21:49:29 +01001604{
1605 Elf_Sym *sym;
1606 Elf_Rel *rel;
1607 Elf_Rela r;
1608 unsigned int r_sym;
1609 const char *fromsec;
Sam Ravnborg5b24c072008-01-18 21:49:29 +01001610
Sam Ravnborgff13f922008-01-23 19:54:27 +01001611 Elf_Rel *start = (void *)elf->hdr + sechdr->sh_offset;
Sam Ravnborg5b24c072008-01-18 21:49:29 +01001612 Elf_Rel *stop = (void *)start + sechdr->sh_size;
1613
Sam Ravnborgff13f922008-01-23 19:54:27 +01001614 fromsec = sech_name(elf, sechdr);
Sam Ravnborg5b24c072008-01-18 21:49:29 +01001615 fromsec += strlen(".rel");
1616 /* if from section (name) is know good then skip it */
Anders Kaseorgb614a692009-04-23 16:49:33 -04001617 if (match(fromsec, section_white_list))
Sam Ravnborg5b24c072008-01-18 21:49:29 +01001618 return;
1619
1620 for (rel = start; rel < stop; rel++) {
1621 r.r_offset = TO_NATIVE(rel->r_offset);
1622#if KERNEL_ELFCLASS == ELFCLASS64
Sam Ravnborgff13f922008-01-23 19:54:27 +01001623 if (elf->hdr->e_machine == EM_MIPS) {
Sam Ravnborg5b24c072008-01-18 21:49:29 +01001624 unsigned int r_typ;
1625 r_sym = ELF64_MIPS_R_SYM(rel->r_info);
1626 r_sym = TO_NATIVE(r_sym);
1627 r_typ = ELF64_MIPS_R_TYPE(rel->r_info);
1628 r.r_info = ELF64_R_INFO(r_sym, r_typ);
1629 } else {
1630 r.r_info = TO_NATIVE(rel->r_info);
1631 r_sym = ELF_R_SYM(r.r_info);
1632 }
1633#else
1634 r.r_info = TO_NATIVE(rel->r_info);
1635 r_sym = ELF_R_SYM(r.r_info);
1636#endif
1637 r.r_addend = 0;
Sam Ravnborgff13f922008-01-23 19:54:27 +01001638 switch (elf->hdr->e_machine) {
Sam Ravnborg5b24c072008-01-18 21:49:29 +01001639 case EM_386:
1640 if (addend_386_rel(elf, sechdr, &r))
1641 continue;
1642 break;
1643 case EM_ARM:
1644 if (addend_arm_rel(elf, sechdr, &r))
1645 continue;
1646 break;
1647 case EM_MIPS:
1648 if (addend_mips_rel(elf, sechdr, &r))
1649 continue;
1650 break;
1651 }
1652 sym = elf->symtab_start + r_sym;
1653 /* Skip special sections */
Denys Vlasenko1ce53ad2010-07-29 01:47:53 +02001654 if (is_shndx_special(sym->st_shndx))
Sam Ravnborg5b24c072008-01-18 21:49:29 +01001655 continue;
Sam Ravnborg58fb0d42008-01-23 21:13:50 +01001656 check_section_mismatch(modname, elf, &r, sym, fromsec);
Sam Ravnborg5b24c072008-01-18 21:49:29 +01001657 }
1658}
1659
Sam Ravnborgb39927c2006-02-17 22:42:02 +01001660/**
1661 * A module includes a number of sections that are discarded
1662 * either when loaded or when used as built-in.
1663 * For loaded modules all functions marked __init and all data
Uwe Kleine-Königb5950762010-11-01 15:38:34 -04001664 * marked __initdata will be discarded when the module has been initialized.
Sam Ravnborgb39927c2006-02-17 22:42:02 +01001665 * Likewise for modules used built-in the sections marked __exit
1666 * are discarded because __exit marked function are supposed to be called
Ben Dooks32be1d22008-07-29 22:33:44 -07001667 * only when a module is unloaded which never happens for built-in modules.
Sam Ravnborgb39927c2006-02-17 22:42:02 +01001668 * The check_sec_ref() function traverses all relocation records
1669 * to find all references to a section that reference a section that will
1670 * be discarded and warns about it.
1671 **/
1672static void check_sec_ref(struct module *mod, const char *modname,
Sam Ravnborg10668222008-01-13 22:21:31 +01001673 struct elf_info *elf)
Sam Ravnborgb39927c2006-02-17 22:42:02 +01001674{
1675 int i;
Sam Ravnborgb39927c2006-02-17 22:42:02 +01001676 Elf_Shdr *sechdrs = elf->sechdrs;
Sam Ravnborg62070fa2006-03-03 16:46:04 +01001677
Sam Ravnborgb39927c2006-02-17 22:42:02 +01001678 /* Walk through all sections */
Denys Vlasenko1ce53ad2010-07-29 01:47:53 +02001679 for (i = 0; i < elf->num_sections; i++) {
Anders Kaseorgb614a692009-04-23 16:49:33 -04001680 check_section(modname, elf, &elf->sechdrs[i]);
Sam Ravnborgb39927c2006-02-17 22:42:02 +01001681 /* We want to process only relocation sections and not .init */
Sam Ravnborg5b24c072008-01-18 21:49:29 +01001682 if (sechdrs[i].sh_type == SHT_RELA)
Sam Ravnborg10668222008-01-13 22:21:31 +01001683 section_rela(modname, elf, &elf->sechdrs[i]);
Sam Ravnborg5b24c072008-01-18 21:49:29 +01001684 else if (sechdrs[i].sh_type == SHT_REL)
Sam Ravnborg10668222008-01-13 22:21:31 +01001685 section_rel(modname, elf, &elf->sechdrs[i]);
Sam Ravnborgb39927c2006-02-17 22:42:02 +01001686 }
1687}
1688
Sam Ravnborg5c3ead82006-01-28 17:19:35 +01001689static void read_symbols(char *modname)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001690{
1691 const char *symname;
1692 char *version;
Sam Ravnborgb817f6f2006-06-09 21:53:55 +02001693 char *license;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001694 struct module *mod;
1695 struct elf_info info = { };
1696 Elf_Sym *sym;
1697
Sam Ravnborg85bd2fd2007-02-26 15:33:52 +01001698 if (!parse_elf(&info, modname))
1699 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001700
1701 mod = new_module(modname);
1702
1703 /* When there's no vmlinux, don't print warnings about
1704 * unresolved symbols (since there'll be too many ;) */
1705 if (is_vmlinux(modname)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001706 have_vmlinux = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001707 mod->skip = 1;
1708 }
1709
Sam Ravnborgb817f6f2006-06-09 21:53:55 +02001710 license = get_modinfo(info.modinfo, info.modinfo_len, "license");
Sam Ravnborg2fa36562008-04-26 21:07:26 +02001711 if (info.modinfo && !license && !is_vmlinux(modname))
1712 warn("modpost: missing MODULE_LICENSE() in %s\n"
1713 "see include/linux/module.h for "
1714 "more information\n", modname);
Sam Ravnborgb817f6f2006-06-09 21:53:55 +02001715 while (license) {
1716 if (license_is_gpl_compatible(license))
1717 mod->gpl_compatible = 1;
1718 else {
1719 mod->gpl_compatible = 0;
1720 break;
1721 }
1722 license = get_next_modinfo(info.modinfo, info.modinfo_len,
1723 "license", license);
1724 }
1725
Linus Torvalds1da177e2005-04-16 15:20:36 -07001726 for (sym = info.symtab_start; sym < info.symtab_stop; sym++) {
1727 symname = info.strtab + sym->st_name;
1728
1729 handle_modversions(mod, &info, sym, symname);
1730 handle_moddevtable(mod, &info, sym, symname);
1731 }
Sam Ravnborgd1f25e62008-01-17 21:17:42 +01001732 if (!is_vmlinux(modname) ||
Sam Ravnborg10668222008-01-13 22:21:31 +01001733 (is_vmlinux(modname) && vmlinux_section_warnings))
1734 check_sec_ref(mod, modname, &info);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001735
1736 version = get_modinfo(info.modinfo, info.modinfo_len, "version");
1737 if (version)
1738 maybe_frob_rcs_version(modname, version, info.modinfo,
1739 version - (char *)info.hdr);
1740 if (version || (all_versions && !is_vmlinux(modname)))
1741 get_src_version(modname, mod->srcversion,
1742 sizeof(mod->srcversion)-1);
1743
1744 parse_elf_finish(&info);
1745
Rusty Russell8c8ef422009-03-31 13:05:34 -06001746 /* Our trick to get versioning for module struct etc. - it's
Linus Torvalds1da177e2005-04-16 15:20:36 -07001747 * never passed as an argument to an exported function, so
1748 * the automatic versioning doesn't pick it up, but it's really
1749 * important anyhow */
1750 if (modversions)
Rusty Russell8c8ef422009-03-31 13:05:34 -06001751 mod->unres = alloc_symbol("module_layout", 0, mod->unres);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001752}
1753
1754#define SZ 500
1755
1756/* We first write the generated file into memory using the
1757 * following helper, then compare to the file on disk and
1758 * only update the later if anything changed */
1759
Sam Ravnborg5c3ead82006-01-28 17:19:35 +01001760void __attribute__((format(printf, 2, 3))) buf_printf(struct buffer *buf,
1761 const char *fmt, ...)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001762{
1763 char tmp[SZ];
1764 int len;
1765 va_list ap;
Sam Ravnborg62070fa2006-03-03 16:46:04 +01001766
Linus Torvalds1da177e2005-04-16 15:20:36 -07001767 va_start(ap, fmt);
1768 len = vsnprintf(tmp, SZ, fmt, ap);
Sam Ravnborg7670f022006-03-16 23:04:08 -08001769 buf_write(buf, tmp, len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001770 va_end(ap);
1771}
1772
Sam Ravnborg5c3ead82006-01-28 17:19:35 +01001773void buf_write(struct buffer *buf, const char *s, int len)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001774{
1775 if (buf->size - buf->pos < len) {
Sam Ravnborg7670f022006-03-16 23:04:08 -08001776 buf->size += len + SZ;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001777 buf->p = realloc(buf->p, buf->size);
1778 }
1779 strncpy(buf->p + buf->pos, s, len);
1780 buf->pos += len;
1781}
1782
Sam Ravnborgc96fca22006-07-01 11:44:23 +02001783static void check_for_gpl_usage(enum export exp, const char *m, const char *s)
1784{
1785 const char *e = is_vmlinux(m) ?"":".ko";
1786
1787 switch (exp) {
1788 case export_gpl:
1789 fatal("modpost: GPL-incompatible module %s%s "
1790 "uses GPL-only symbol '%s'\n", m, e, s);
1791 break;
1792 case export_unused_gpl:
1793 fatal("modpost: GPL-incompatible module %s%s "
1794 "uses GPL-only symbol marked UNUSED '%s'\n", m, e, s);
1795 break;
1796 case export_gpl_future:
1797 warn("modpost: GPL-incompatible module %s%s "
1798 "uses future GPL-only symbol '%s'\n", m, e, s);
1799 break;
1800 case export_plain:
1801 case export_unused:
1802 case export_unknown:
1803 /* ignore */
1804 break;
1805 }
1806}
1807
Sam Ravnborgdf578e72008-01-11 19:17:15 +01001808static void check_for_unused(enum export exp, const char *m, const char *s)
Sam Ravnborgc96fca22006-07-01 11:44:23 +02001809{
1810 const char *e = is_vmlinux(m) ?"":".ko";
1811
1812 switch (exp) {
1813 case export_unused:
1814 case export_unused_gpl:
1815 warn("modpost: module %s%s "
1816 "uses symbol '%s' marked UNUSED\n", m, e, s);
1817 break;
1818 default:
1819 /* ignore */
1820 break;
1821 }
1822}
1823
1824static void check_exports(struct module *mod)
Sam Ravnborgb817f6f2006-06-09 21:53:55 +02001825{
1826 struct symbol *s, *exp;
1827
1828 for (s = mod->unres; s; s = s->next) {
Andrew Morton6449bd62006-06-09 20:45:06 -07001829 const char *basename;
Sam Ravnborgb817f6f2006-06-09 21:53:55 +02001830 exp = find_symbol(s->name);
1831 if (!exp || exp->module == mod)
1832 continue;
Andrew Morton6449bd62006-06-09 20:45:06 -07001833 basename = strrchr(mod->name, '/');
Sam Ravnborgb817f6f2006-06-09 21:53:55 +02001834 if (basename)
1835 basename++;
Sam Ravnborgc96fca22006-07-01 11:44:23 +02001836 else
1837 basename = mod->name;
1838 if (!mod->gpl_compatible)
1839 check_for_gpl_usage(exp->export, basename, exp->name);
1840 check_for_unused(exp->export, basename, exp->name);
Sam Ravnborgdf578e72008-01-11 19:17:15 +01001841 }
Sam Ravnborgb817f6f2006-06-09 21:53:55 +02001842}
1843
Sam Ravnborg5c3ead82006-01-28 17:19:35 +01001844/**
1845 * Header for the generated file
1846 **/
1847static void add_header(struct buffer *b, struct module *mod)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001848{
1849 buf_printf(b, "#include <linux/module.h>\n");
1850 buf_printf(b, "#include <linux/vermagic.h>\n");
1851 buf_printf(b, "#include <linux/compiler.h>\n");
1852 buf_printf(b, "\n");
1853 buf_printf(b, "MODULE_INFO(vermagic, VERMAGIC_STRING);\n");
1854 buf_printf(b, "\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001855 buf_printf(b, "struct module __this_module\n");
1856 buf_printf(b, "__attribute__((section(\".gnu.linkonce.this_module\"))) = {\n");
Ustyugov Romanf83b5e32005-09-23 08:42:11 +04001857 buf_printf(b, " .name = KBUILD_MODNAME,\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001858 if (mod->has_init)
1859 buf_printf(b, " .init = init_module,\n");
1860 if (mod->has_cleanup)
1861 buf_printf(b, "#ifdef CONFIG_MODULE_UNLOAD\n"
1862 " .exit = cleanup_module,\n"
1863 "#endif\n");
Roman Zippele61a1c12007-05-09 02:35:15 -07001864 buf_printf(b, " .arch = MODULE_ARCH_INIT,\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001865 buf_printf(b, "};\n");
1866}
1867
Ben Hutchings2449b8b2011-10-24 15:12:28 +02001868static void add_intree_flag(struct buffer *b, int is_intree)
1869{
1870 if (is_intree)
1871 buf_printf(b, "\nMODULE_INFO(intree, \"Y\");\n");
1872}
1873
Trevor Keith5c725132009-09-22 16:43:38 -07001874static void add_staging_flag(struct buffer *b, const char *name)
Greg Kroah-Hartmana9860bf2008-09-24 14:46:44 -07001875{
1876 static const char *staging_dir = "drivers/staging";
1877
1878 if (strncmp(staging_dir, name, strlen(staging_dir)) == 0)
1879 buf_printf(b, "\nMODULE_INFO(staging, \"Y\");\n");
1880}
1881
Sam Ravnborg5c3ead82006-01-28 17:19:35 +01001882/**
1883 * Record CRCs for unresolved symbols
1884 **/
Kirill Korotaevc53ddac2006-09-07 13:08:54 -07001885static int add_versions(struct buffer *b, struct module *mod)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001886{
1887 struct symbol *s, *exp;
Kirill Korotaevc53ddac2006-09-07 13:08:54 -07001888 int err = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001889
1890 for (s = mod->unres; s; s = s->next) {
1891 exp = find_symbol(s->name);
1892 if (!exp || exp->module == mod) {
Kirill Korotaevc53ddac2006-09-07 13:08:54 -07001893 if (have_vmlinux && !s->weak) {
Matthew Wilcox2a116652006-10-07 05:35:32 -06001894 if (warn_unresolved) {
1895 warn("\"%s\" [%s.ko] undefined!\n",
1896 s->name, mod->name);
1897 } else {
1898 merror("\"%s\" [%s.ko] undefined!\n",
1899 s->name, mod->name);
1900 err = 1;
1901 }
Kirill Korotaevc53ddac2006-09-07 13:08:54 -07001902 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001903 continue;
1904 }
1905 s->module = exp->module;
1906 s->crc_valid = exp->crc_valid;
1907 s->crc = exp->crc;
1908 }
1909
1910 if (!modversions)
Kirill Korotaevc53ddac2006-09-07 13:08:54 -07001911 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001912
1913 buf_printf(b, "\n");
1914 buf_printf(b, "static const struct modversion_info ____versions[]\n");
Adrian Bunk3ff6eec2008-01-24 22:16:20 +01001915 buf_printf(b, "__used\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001916 buf_printf(b, "__attribute__((section(\"__versions\"))) = {\n");
1917
1918 for (s = mod->unres; s; s = s->next) {
Sam Ravnborgdf578e72008-01-11 19:17:15 +01001919 if (!s->module)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001920 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001921 if (!s->crc_valid) {
Sam Ravnborgcb805142006-01-28 16:57:26 +01001922 warn("\"%s\" [%s.ko] has no CRC!\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07001923 s->name, mod->name);
1924 continue;
1925 }
1926 buf_printf(b, "\t{ %#8x, \"%s\" },\n", s->crc, s->name);
1927 }
1928
1929 buf_printf(b, "};\n");
Kirill Korotaevc53ddac2006-09-07 13:08:54 -07001930
1931 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001932}
1933
Sam Ravnborg5c3ead82006-01-28 17:19:35 +01001934static void add_depends(struct buffer *b, struct module *mod,
1935 struct module *modules)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001936{
1937 struct symbol *s;
1938 struct module *m;
1939 int first = 1;
1940
Sam Ravnborgdf578e72008-01-11 19:17:15 +01001941 for (m = modules; m; m = m->next)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001942 m->seen = is_vmlinux(m->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001943
1944 buf_printf(b, "\n");
1945 buf_printf(b, "static const char __module_depends[]\n");
Adrian Bunk3ff6eec2008-01-24 22:16:20 +01001946 buf_printf(b, "__used\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001947 buf_printf(b, "__attribute__((section(\".modinfo\"))) =\n");
1948 buf_printf(b, "\"depends=");
1949 for (s = mod->unres; s; s = s->next) {
Sam Ravnborga61b2df2007-02-26 19:46:52 +01001950 const char *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001951 if (!s->module)
1952 continue;
1953
1954 if (s->module->seen)
1955 continue;
1956
1957 s->module->seen = 1;
Sam Ravnborgdf578e72008-01-11 19:17:15 +01001958 p = strrchr(s->module->name, '/');
1959 if (p)
Sam Ravnborga61b2df2007-02-26 19:46:52 +01001960 p++;
1961 else
1962 p = s->module->name;
1963 buf_printf(b, "%s%s", first ? "" : ",", p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001964 first = 0;
1965 }
1966 buf_printf(b, "\";\n");
1967}
1968
Sam Ravnborg5c3ead82006-01-28 17:19:35 +01001969static void add_srcversion(struct buffer *b, struct module *mod)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001970{
1971 if (mod->srcversion[0]) {
1972 buf_printf(b, "\n");
1973 buf_printf(b, "MODULE_INFO(srcversion, \"%s\");\n",
1974 mod->srcversion);
1975 }
1976}
1977
Sam Ravnborg5c3ead82006-01-28 17:19:35 +01001978static void write_if_changed(struct buffer *b, const char *fname)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001979{
1980 char *tmp;
1981 FILE *file;
1982 struct stat st;
1983
1984 file = fopen(fname, "r");
1985 if (!file)
1986 goto write;
1987
1988 if (fstat(fileno(file), &st) < 0)
1989 goto close_write;
1990
1991 if (st.st_size != b->pos)
1992 goto close_write;
1993
1994 tmp = NOFAIL(malloc(b->pos));
1995 if (fread(tmp, 1, b->pos, file) != b->pos)
1996 goto free_write;
1997
1998 if (memcmp(tmp, b->p, b->pos) != 0)
1999 goto free_write;
2000
2001 free(tmp);
2002 fclose(file);
2003 return;
2004
2005 free_write:
2006 free(tmp);
2007 close_write:
2008 fclose(file);
2009 write:
2010 file = fopen(fname, "w");
2011 if (!file) {
2012 perror(fname);
2013 exit(1);
2014 }
2015 if (fwrite(b->p, 1, b->pos, file) != b->pos) {
2016 perror(fname);
2017 exit(1);
2018 }
2019 fclose(file);
2020}
2021
Ram Paibd5cbce2006-06-08 22:12:53 -07002022/* parse Module.symvers file. line format:
Sam Ravnborg534b89a2006-07-01 10:10:19 +02002023 * 0x12345678<tab>symbol<tab>module[[<tab>export]<tab>something]
Ram Paibd5cbce2006-06-08 22:12:53 -07002024 **/
Sam Ravnborg040fcc82006-01-28 22:15:55 +01002025static void read_dump(const char *fname, unsigned int kernel)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002026{
2027 unsigned long size, pos = 0;
2028 void *file = grab_file(fname, &size);
2029 char *line;
2030
Sam Ravnborgdf578e72008-01-11 19:17:15 +01002031 if (!file)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002032 /* No symbol versions, silently ignore */
2033 return;
2034
2035 while ((line = get_next_line(&pos, file, size))) {
Sam Ravnborg534b89a2006-07-01 10:10:19 +02002036 char *symname, *modname, *d, *export, *end;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002037 unsigned int crc;
2038 struct module *mod;
Sam Ravnborg040fcc82006-01-28 22:15:55 +01002039 struct symbol *s;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002040
2041 if (!(symname = strchr(line, '\t')))
2042 goto fail;
2043 *symname++ = '\0';
2044 if (!(modname = strchr(symname, '\t')))
2045 goto fail;
2046 *modname++ = '\0';
Laurent Riffard9ac545b2006-06-11 08:02:06 +02002047 if ((export = strchr(modname, '\t')) != NULL)
Ram Paibd5cbce2006-06-08 22:12:53 -07002048 *export++ = '\0';
Sam Ravnborg534b89a2006-07-01 10:10:19 +02002049 if (export && ((end = strchr(export, '\t')) != NULL))
2050 *end = '\0';
Linus Torvalds1da177e2005-04-16 15:20:36 -07002051 crc = strtoul(line, &d, 16);
2052 if (*symname == '\0' || *modname == '\0' || *d != '\0')
2053 goto fail;
Sam Ravnborgdf578e72008-01-11 19:17:15 +01002054 mod = find_module(modname);
2055 if (!mod) {
2056 if (is_vmlinux(modname))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002057 have_vmlinux = 1;
Jan Beulich0fa3a882009-03-12 12:28:30 +00002058 mod = new_module(modname);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002059 mod->skip = 1;
2060 }
Ram Paibd5cbce2006-06-08 22:12:53 -07002061 s = sym_add_exported(symname, mod, export_no(export));
Sam Ravnborg8e70c452006-01-28 22:22:33 +01002062 s->kernel = kernel;
2063 s->preloaded = 1;
Ram Paibd5cbce2006-06-08 22:12:53 -07002064 sym_update_crc(symname, mod, crc, export_no(export));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002065 }
2066 return;
2067fail:
2068 fatal("parse error in symbol dump file\n");
2069}
2070
Sam Ravnborg040fcc82006-01-28 22:15:55 +01002071/* For normal builds always dump all symbols.
2072 * For external modules only dump symbols
2073 * that are not read from kernel Module.symvers.
2074 **/
2075static int dump_sym(struct symbol *sym)
2076{
2077 if (!external_module)
2078 return 1;
2079 if (sym->vmlinux || sym->kernel)
2080 return 0;
2081 return 1;
2082}
Sam Ravnborg62070fa2006-03-03 16:46:04 +01002083
Sam Ravnborg5c3ead82006-01-28 17:19:35 +01002084static void write_dump(const char *fname)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002085{
2086 struct buffer buf = { };
2087 struct symbol *symbol;
2088 int n;
2089
2090 for (n = 0; n < SYMBOL_HASH_SIZE ; n++) {
2091 symbol = symbolhash[n];
2092 while (symbol) {
Sam Ravnborg040fcc82006-01-28 22:15:55 +01002093 if (dump_sym(symbol))
Ram Paibd5cbce2006-06-08 22:12:53 -07002094 buf_printf(&buf, "0x%08x\t%s\t%s\t%s\n",
Sam Ravnborg62070fa2006-03-03 16:46:04 +01002095 symbol->crc, symbol->name,
Ram Paibd5cbce2006-06-08 22:12:53 -07002096 symbol->module->name,
2097 export_str(symbol->export));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002098 symbol = symbol->next;
2099 }
2100 }
2101 write_if_changed(&buf, fname);
2102}
2103
Richard Hacker2d04b5a2008-02-28 09:40:52 +01002104struct ext_sym_list {
2105 struct ext_sym_list *next;
2106 const char *file;
2107};
2108
Sam Ravnborg5c3ead82006-01-28 17:19:35 +01002109int main(int argc, char **argv)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002110{
2111 struct module *mod;
2112 struct buffer buf = { };
Sam Ravnborg040fcc82006-01-28 22:15:55 +01002113 char *kernel_read = NULL, *module_read = NULL;
2114 char *dump_write = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002115 int opt;
Kirill Korotaevc53ddac2006-09-07 13:08:54 -07002116 int err;
Richard Hacker2d04b5a2008-02-28 09:40:52 +01002117 struct ext_sym_list *extsym_iter;
2118 struct ext_sym_list *extsym_start = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002119
Richard Hacker2d04b5a2008-02-28 09:40:52 +01002120 while ((opt = getopt(argc, argv, "i:I:e:cmsSo:awM:K:")) != -1) {
Sam Ravnborgdf578e72008-01-11 19:17:15 +01002121 switch (opt) {
2122 case 'i':
2123 kernel_read = optarg;
2124 break;
2125 case 'I':
2126 module_read = optarg;
2127 external_module = 1;
2128 break;
Sam Ravnborg4ce6efe2008-03-23 21:38:54 +01002129 case 'c':
2130 cross_build = 1;
2131 break;
Richard Hacker2d04b5a2008-02-28 09:40:52 +01002132 case 'e':
2133 external_module = 1;
2134 extsym_iter =
2135 NOFAIL(malloc(sizeof(*extsym_iter)));
2136 extsym_iter->next = extsym_start;
2137 extsym_iter->file = optarg;
2138 extsym_start = extsym_iter;
2139 break;
Sam Ravnborgdf578e72008-01-11 19:17:15 +01002140 case 'm':
2141 modversions = 1;
2142 break;
2143 case 'o':
2144 dump_write = optarg;
2145 break;
2146 case 'a':
2147 all_versions = 1;
2148 break;
2149 case 's':
2150 vmlinux_section_warnings = 0;
2151 break;
Sam Ravnborg588ccd72008-01-24 21:12:37 +01002152 case 'S':
2153 sec_mismatch_verbose = 0;
2154 break;
Sam Ravnborgdf578e72008-01-11 19:17:15 +01002155 case 'w':
2156 warn_unresolved = 1;
2157 break;
2158 default:
2159 exit(1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002160 }
2161 }
2162
Sam Ravnborg040fcc82006-01-28 22:15:55 +01002163 if (kernel_read)
2164 read_dump(kernel_read, 1);
2165 if (module_read)
2166 read_dump(module_read, 0);
Richard Hacker2d04b5a2008-02-28 09:40:52 +01002167 while (extsym_start) {
2168 read_dump(extsym_start->file, 0);
2169 extsym_iter = extsym_start->next;
2170 free(extsym_start);
2171 extsym_start = extsym_iter;
2172 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002173
Sam Ravnborgdf578e72008-01-11 19:17:15 +01002174 while (optind < argc)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002175 read_symbols(argv[optind++]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002176
2177 for (mod = modules; mod; mod = mod->next) {
2178 if (mod->skip)
2179 continue;
Sam Ravnborgc96fca22006-07-01 11:44:23 +02002180 check_exports(mod);
Sam Ravnborgb817f6f2006-06-09 21:53:55 +02002181 }
2182
Kirill Korotaevc53ddac2006-09-07 13:08:54 -07002183 err = 0;
2184
Sam Ravnborgb817f6f2006-06-09 21:53:55 +02002185 for (mod = modules; mod; mod = mod->next) {
Andi Kleen666ab412007-11-22 03:43:10 +01002186 char fname[strlen(mod->name) + 10];
2187
Sam Ravnborgb817f6f2006-06-09 21:53:55 +02002188 if (mod->skip)
2189 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002190
2191 buf.pos = 0;
2192
2193 add_header(&buf, mod);
Ben Hutchings2449b8b2011-10-24 15:12:28 +02002194 add_intree_flag(&buf, !external_module);
Greg Kroah-Hartmana9860bf2008-09-24 14:46:44 -07002195 add_staging_flag(&buf, mod->name);
Kirill Korotaevc53ddac2006-09-07 13:08:54 -07002196 err |= add_versions(&buf, mod);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002197 add_depends(&buf, mod, modules);
2198 add_moddevtable(&buf, mod);
2199 add_srcversion(&buf, mod);
2200
2201 sprintf(fname, "%s.mod.c", mod->name);
2202 write_if_changed(&buf, fname);
2203 }
2204
2205 if (dump_write)
2206 write_dump(dump_write);
Sam Ravnborg588ccd72008-01-24 21:12:37 +01002207 if (sec_mismatch_count && !sec_mismatch_verbose)
Geert Uytterhoeven7c0ac492008-02-05 11:38:49 +01002208 warn("modpost: Found %d section mismatch(es).\n"
2209 "To see full details build your kernel with:\n"
2210 "'make CONFIG_DEBUG_SECTION_MISMATCH=y'\n",
2211 sec_mismatch_count);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002212
Kirill Korotaevc53ddac2006-09-07 13:08:54 -07002213 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002214}