blob: 3f0380b8d8f787cd0def08de9d0b9c7807ae8c54 [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>
17#include "modpost.h"
Linus Torvalds5a865c02009-12-17 07:23:42 -080018#include "../../include/generated/autoconf.h"
Sam Ravnborgb817f6f2006-06-09 21:53:55 +020019#include "../../include/linux/license.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070020
Alan Jenkins9e1b9b82009-11-07 21:03:54 +000021/* Some toolchains use a `_' prefix for all user symbols. */
22#ifdef CONFIG_SYMBOL_PREFIX
23#define MODULE_SYMBOL_PREFIX CONFIG_SYMBOL_PREFIX
24#else
25#define MODULE_SYMBOL_PREFIX ""
26#endif
27
28
Linus Torvalds1da177e2005-04-16 15:20:36 -070029/* Are we using CONFIG_MODVERSIONS? */
30int modversions = 0;
31/* Warn about undefined symbols? (do so if we have vmlinux) */
32int have_vmlinux = 0;
33/* Is CONFIG_MODULE_SRCVERSION_ALL set? */
34static int all_versions = 0;
Sam Ravnborg040fcc82006-01-28 22:15:55 +010035/* If we are modposting external module set to 1 */
36static int external_module = 0;
Sam Ravnborg8d8d8282007-07-20 22:36:56 +020037/* Warn about section mismatch in vmlinux if set to 1 */
38static int vmlinux_section_warnings = 1;
Kirill Korotaevc53ddac2006-09-07 13:08:54 -070039/* Only warn about unresolved symbols */
40static int warn_unresolved = 0;
Ram Paibd5cbce2006-06-08 22:12:53 -070041/* How a symbol is exported */
Sam Ravnborg588ccd72008-01-24 21:12:37 +010042static int sec_mismatch_count = 0;
43static int sec_mismatch_verbose = 1;
44
Sam Ravnborgc96fca22006-07-01 11:44:23 +020045enum export {
46 export_plain, export_unused, export_gpl,
47 export_unused_gpl, export_gpl_future, export_unknown
48};
Linus Torvalds1da177e2005-04-16 15:20:36 -070049
Andi Kleen6d9a89e2007-11-22 03:43:08 +010050#define PRINTF __attribute__ ((format (printf, 1, 2)))
51
52PRINTF void fatal(const char *fmt, ...)
Linus Torvalds1da177e2005-04-16 15:20:36 -070053{
54 va_list arglist;
55
56 fprintf(stderr, "FATAL: ");
57
58 va_start(arglist, fmt);
59 vfprintf(stderr, fmt, arglist);
60 va_end(arglist);
61
62 exit(1);
63}
64
Andi Kleen6d9a89e2007-11-22 03:43:08 +010065PRINTF void warn(const char *fmt, ...)
Linus Torvalds1da177e2005-04-16 15:20:36 -070066{
67 va_list arglist;
68
69 fprintf(stderr, "WARNING: ");
70
71 va_start(arglist, fmt);
72 vfprintf(stderr, fmt, arglist);
73 va_end(arglist);
74}
75
Andi Kleen6d9a89e2007-11-22 03:43:08 +010076PRINTF void merror(const char *fmt, ...)
Matthew Wilcox2a116652006-10-07 05:35:32 -060077{
78 va_list arglist;
79
80 fprintf(stderr, "ERROR: ");
81
82 va_start(arglist, fmt);
83 vfprintf(stderr, fmt, arglist);
84 va_end(arglist);
85}
86
Sam Ravnborg040fcc82006-01-28 22:15:55 +010087static int is_vmlinux(const char *modname)
88{
89 const char *myname;
90
Sam Ravnborgdf578e72008-01-11 19:17:15 +010091 myname = strrchr(modname, '/');
92 if (myname)
Sam Ravnborg040fcc82006-01-28 22:15:55 +010093 myname++;
94 else
95 myname = modname;
96
Sam Ravnborg741f98f2007-07-17 10:54:06 +020097 return (strcmp(myname, "vmlinux") == 0) ||
98 (strcmp(myname, "vmlinux.o") == 0);
Sam Ravnborg040fcc82006-01-28 22:15:55 +010099}
100
Linus Torvalds1da177e2005-04-16 15:20:36 -0700101void *do_nofail(void *ptr, const char *expr)
102{
Sam Ravnborgdf578e72008-01-11 19:17:15 +0100103 if (!ptr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700104 fatal("modpost: Memory allocation failure: %s.\n", expr);
Sam Ravnborgdf578e72008-01-11 19:17:15 +0100105
Linus Torvalds1da177e2005-04-16 15:20:36 -0700106 return ptr;
107}
108
109/* A list of all modules we processed */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700110static struct module *modules;
111
Sam Ravnborg5c3ead82006-01-28 17:19:35 +0100112static struct module *find_module(char *modname)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700113{
114 struct module *mod;
115
116 for (mod = modules; mod; mod = mod->next)
117 if (strcmp(mod->name, modname) == 0)
118 break;
119 return mod;
120}
121
Sam Ravnborg5c3ead82006-01-28 17:19:35 +0100122static struct module *new_module(char *modname)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700123{
124 struct module *mod;
125 char *p, *s;
Sam Ravnborg62070fa2006-03-03 16:46:04 +0100126
Linus Torvalds1da177e2005-04-16 15:20:36 -0700127 mod = NOFAIL(malloc(sizeof(*mod)));
128 memset(mod, 0, sizeof(*mod));
129 p = NOFAIL(strdup(modname));
130
131 /* strip trailing .o */
Sam Ravnborgdf578e72008-01-11 19:17:15 +0100132 s = strrchr(p, '.');
133 if (s != NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700134 if (strcmp(s, ".o") == 0)
135 *s = '\0';
136
137 /* add to list */
138 mod->name = p;
Sam Ravnborgb817f6f2006-06-09 21:53:55 +0200139 mod->gpl_compatible = -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700140 mod->next = modules;
141 modules = mod;
142
143 return mod;
144}
145
146/* A hash of all exported symbols,
147 * struct symbol is also used for lists of unresolved symbols */
148
149#define SYMBOL_HASH_SIZE 1024
150
151struct symbol {
152 struct symbol *next;
153 struct module *module;
154 unsigned int crc;
155 int crc_valid;
156 unsigned int weak:1;
Sam Ravnborg040fcc82006-01-28 22:15:55 +0100157 unsigned int vmlinux:1; /* 1 if symbol is defined in vmlinux */
158 unsigned int kernel:1; /* 1 if symbol is from kernel
159 * (only for external modules) **/
Sam Ravnborg8e70c452006-01-28 22:22:33 +0100160 unsigned int preloaded:1; /* 1 if symbol from Module.symvers */
Ram Paibd5cbce2006-06-08 22:12:53 -0700161 enum export export; /* Type of export */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700162 char name[0];
163};
164
165static struct symbol *symbolhash[SYMBOL_HASH_SIZE];
166
167/* This is based on the hash agorithm from gdbm, via tdb */
168static inline unsigned int tdb_hash(const char *name)
169{
170 unsigned value; /* Used to compute the hash value. */
171 unsigned i; /* Used to cycle through random values. */
172
173 /* Set the initial value from the key size. */
Sam Ravnborgdf578e72008-01-11 19:17:15 +0100174 for (value = 0x238F13AF * strlen(name), i = 0; name[i]; i++)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700175 value = (value + (((unsigned char *)name)[i] << (i*5 % 24)));
176
177 return (1103515243 * value + 12345);
178}
179
Sam Ravnborg5c3ead82006-01-28 17:19:35 +0100180/**
181 * Allocate a new symbols for use in the hash of exported symbols or
182 * the list of unresolved symbols per module
183 **/
184static struct symbol *alloc_symbol(const char *name, unsigned int weak,
185 struct symbol *next)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700186{
187 struct symbol *s = NOFAIL(malloc(sizeof(*s) + strlen(name) + 1));
188
189 memset(s, 0, sizeof(*s));
190 strcpy(s->name, name);
191 s->weak = weak;
192 s->next = next;
193 return s;
194}
195
196/* For the hash of exported symbols */
Ram Paibd5cbce2006-06-08 22:12:53 -0700197static struct symbol *new_symbol(const char *name, struct module *module,
198 enum export export)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700199{
200 unsigned int hash;
201 struct symbol *new;
202
203 hash = tdb_hash(name) % SYMBOL_HASH_SIZE;
204 new = symbolhash[hash] = alloc_symbol(name, 0, symbolhash[hash]);
205 new->module = module;
Ram Paibd5cbce2006-06-08 22:12:53 -0700206 new->export = export;
Sam Ravnborg040fcc82006-01-28 22:15:55 +0100207 return new;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700208}
209
Sam Ravnborg5c3ead82006-01-28 17:19:35 +0100210static struct symbol *find_symbol(const char *name)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700211{
212 struct symbol *s;
213
214 /* For our purposes, .foo matches foo. PPC64 needs this. */
215 if (name[0] == '.')
216 name++;
217
Sam Ravnborgdf578e72008-01-11 19:17:15 +0100218 for (s = symbolhash[tdb_hash(name) % SYMBOL_HASH_SIZE]; s; s = s->next) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700219 if (strcmp(s->name, name) == 0)
220 return s;
221 }
222 return NULL;
223}
224
Ram Paibd5cbce2006-06-08 22:12:53 -0700225static struct {
226 const char *str;
227 enum export export;
228} export_list[] = {
229 { .str = "EXPORT_SYMBOL", .export = export_plain },
Sam Ravnborgc96fca22006-07-01 11:44:23 +0200230 { .str = "EXPORT_UNUSED_SYMBOL", .export = export_unused },
Ram Paibd5cbce2006-06-08 22:12:53 -0700231 { .str = "EXPORT_SYMBOL_GPL", .export = export_gpl },
Sam Ravnborgc96fca22006-07-01 11:44:23 +0200232 { .str = "EXPORT_UNUSED_SYMBOL_GPL", .export = export_unused_gpl },
Ram Paibd5cbce2006-06-08 22:12:53 -0700233 { .str = "EXPORT_SYMBOL_GPL_FUTURE", .export = export_gpl_future },
234 { .str = "(unknown)", .export = export_unknown },
235};
236
237
238static const char *export_str(enum export ex)
239{
240 return export_list[ex].str;
241}
242
Sam Ravnborgdf578e72008-01-11 19:17:15 +0100243static enum export export_no(const char *s)
Ram Paibd5cbce2006-06-08 22:12:53 -0700244{
245 int i;
Sam Ravnborgdf578e72008-01-11 19:17:15 +0100246
Sam Ravnborg534b89a2006-07-01 10:10:19 +0200247 if (!s)
248 return export_unknown;
Ram Paibd5cbce2006-06-08 22:12:53 -0700249 for (i = 0; export_list[i].export != export_unknown; i++) {
250 if (strcmp(export_list[i].str, s) == 0)
251 return export_list[i].export;
252 }
253 return export_unknown;
254}
255
256static enum export export_from_sec(struct elf_info *elf, Elf_Section sec)
257{
258 if (sec == elf->export_sec)
259 return export_plain;
Sam Ravnborgc96fca22006-07-01 11:44:23 +0200260 else if (sec == elf->export_unused_sec)
261 return export_unused;
Ram Paibd5cbce2006-06-08 22:12:53 -0700262 else if (sec == elf->export_gpl_sec)
263 return export_gpl;
Sam Ravnborgc96fca22006-07-01 11:44:23 +0200264 else if (sec == elf->export_unused_gpl_sec)
265 return export_unused_gpl;
Ram Paibd5cbce2006-06-08 22:12:53 -0700266 else if (sec == elf->export_gpl_future_sec)
267 return export_gpl_future;
268 else
269 return export_unknown;
270}
271
Sam Ravnborg5c3ead82006-01-28 17:19:35 +0100272/**
273 * Add an exported symbol - it may have already been added without a
274 * CRC, in this case just update the CRC
275 **/
Ram Paibd5cbce2006-06-08 22:12:53 -0700276static struct symbol *sym_add_exported(const char *name, struct module *mod,
277 enum export export)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700278{
279 struct symbol *s = find_symbol(name);
280
281 if (!s) {
Ram Paibd5cbce2006-06-08 22:12:53 -0700282 s = new_symbol(name, mod, export);
Sam Ravnborg8e70c452006-01-28 22:22:33 +0100283 } else {
284 if (!s->preloaded) {
Sam Ravnborg7b75b132006-03-05 13:48:58 +0100285 warn("%s: '%s' exported twice. Previous export "
Sam Ravnborg8e70c452006-01-28 22:22:33 +0100286 "was in %s%s\n", mod->name, name,
287 s->module->name,
288 is_vmlinux(s->module->name) ?"":".ko");
Trent Piepho4b219602007-10-11 16:40:10 -0700289 } else {
290 /* In case Modules.symvers was out of date */
291 s->module = mod;
Sam Ravnborg8e70c452006-01-28 22:22:33 +0100292 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700293 }
Sam Ravnborg8e70c452006-01-28 22:22:33 +0100294 s->preloaded = 0;
Sam Ravnborg040fcc82006-01-28 22:15:55 +0100295 s->vmlinux = is_vmlinux(mod->name);
296 s->kernel = 0;
Ram Paibd5cbce2006-06-08 22:12:53 -0700297 s->export = export;
Sam Ravnborg040fcc82006-01-28 22:15:55 +0100298 return s;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700299}
300
Sam Ravnborg040fcc82006-01-28 22:15:55 +0100301static void sym_update_crc(const char *name, struct module *mod,
Ram Paibd5cbce2006-06-08 22:12:53 -0700302 unsigned int crc, enum export export)
Sam Ravnborg040fcc82006-01-28 22:15:55 +0100303{
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 Ravnborg040fcc82006-01-28 22:15:55 +0100308 s->crc = crc;
309 s->crc_valid = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700310}
311
Sam Ravnborg5c3ead82006-01-28 17:19:35 +0100312void *grab_file(const char *filename, unsigned long *size)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700313{
314 struct stat st;
315 void *map;
316 int fd;
317
318 fd = open(filename, O_RDONLY);
319 if (fd < 0 || fstat(fd, &st) != 0)
320 return NULL;
321
322 *size = st.st_size;
323 map = mmap(NULL, *size, PROT_READ|PROT_WRITE, MAP_PRIVATE, fd, 0);
324 close(fd);
325
326 if (map == MAP_FAILED)
327 return NULL;
328 return map;
329}
330
Sam Ravnborg5c3ead82006-01-28 17:19:35 +0100331/**
332 * Return a copy of the next line in a mmap'ed file.
333 * spaces in the beginning of the line is trimmed away.
334 * Return a pointer to a static buffer.
335 **/
Sam Ravnborgdf578e72008-01-11 19:17:15 +0100336char *get_next_line(unsigned long *pos, void *file, unsigned long size)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700337{
338 static char line[4096];
339 int skip = 1;
340 size_t len = 0;
341 signed char *p = (signed char *)file + *pos;
342 char *s = line;
343
Sam Ravnborgdf578e72008-01-11 19:17:15 +0100344 for (; *pos < size ; (*pos)++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700345 if (skip && isspace(*p)) {
346 p++;
347 continue;
348 }
349 skip = 0;
350 if (*p != '\n' && (*pos < size)) {
351 len++;
352 *s++ = *p++;
353 if (len > 4095)
354 break; /* Too long, stop */
355 } else {
356 /* End of string */
357 *s = '\0';
358 return line;
359 }
360 }
361 /* End of buffer */
362 return NULL;
363}
364
Sam Ravnborg5c3ead82006-01-28 17:19:35 +0100365void release_file(void *file, unsigned long size)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700366{
367 munmap(file, size);
368}
369
Sam Ravnborg85bd2fd2007-02-26 15:33:52 +0100370static int parse_elf(struct elf_info *info, const char *filename)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700371{
372 unsigned int i;
Sam Ravnborg85bd2fd2007-02-26 15:33:52 +0100373 Elf_Ehdr *hdr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700374 Elf_Shdr *sechdrs;
375 Elf_Sym *sym;
376
377 hdr = grab_file(filename, &info->size);
378 if (!hdr) {
379 perror(filename);
Sam Ravnborg6803dc02006-06-24 23:46:54 +0200380 exit(1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700381 }
382 info->hdr = hdr;
Sam Ravnborg85bd2fd2007-02-26 15:33:52 +0100383 if (info->size < sizeof(*hdr)) {
384 /* file too small, assume this is an empty .o file */
385 return 0;
386 }
387 /* Is this a valid ELF file? */
388 if ((hdr->e_ident[EI_MAG0] != ELFMAG0) ||
389 (hdr->e_ident[EI_MAG1] != ELFMAG1) ||
390 (hdr->e_ident[EI_MAG2] != ELFMAG2) ||
391 (hdr->e_ident[EI_MAG3] != ELFMAG3)) {
392 /* Not an ELF file - silently ignore it */
393 return 0;
394 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700395 /* Fix endianness in ELF header */
Anders Kaseorg7d875a02009-05-03 22:02:55 +0200396 hdr->e_type = TO_NATIVE(hdr->e_type);
397 hdr->e_machine = TO_NATIVE(hdr->e_machine);
398 hdr->e_version = TO_NATIVE(hdr->e_version);
399 hdr->e_entry = TO_NATIVE(hdr->e_entry);
400 hdr->e_phoff = TO_NATIVE(hdr->e_phoff);
401 hdr->e_shoff = TO_NATIVE(hdr->e_shoff);
402 hdr->e_flags = TO_NATIVE(hdr->e_flags);
403 hdr->e_ehsize = TO_NATIVE(hdr->e_ehsize);
404 hdr->e_phentsize = TO_NATIVE(hdr->e_phentsize);
405 hdr->e_phnum = TO_NATIVE(hdr->e_phnum);
406 hdr->e_shentsize = TO_NATIVE(hdr->e_shentsize);
407 hdr->e_shnum = TO_NATIVE(hdr->e_shnum);
408 hdr->e_shstrndx = TO_NATIVE(hdr->e_shstrndx);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700409 sechdrs = (void *)hdr + hdr->e_shoff;
410 info->sechdrs = sechdrs;
411
Petr Stetiara83710e2007-08-27 12:15:07 +0200412 /* Check if file offset is correct */
413 if (hdr->e_shoff > info->size) {
Sam Ravnborgdf578e72008-01-11 19:17:15 +0100414 fatal("section header offset=%lu in file '%s' is bigger than "
415 "filesize=%lu\n", (unsigned long)hdr->e_shoff,
416 filename, info->size);
Petr Stetiara83710e2007-08-27 12:15:07 +0200417 return 0;
418 }
419
Linus Torvalds1da177e2005-04-16 15:20:36 -0700420 /* Fix endianness in section headers */
421 for (i = 0; i < hdr->e_shnum; i++) {
Anders Kaseorg7d875a02009-05-03 22:02:55 +0200422 sechdrs[i].sh_name = TO_NATIVE(sechdrs[i].sh_name);
423 sechdrs[i].sh_type = TO_NATIVE(sechdrs[i].sh_type);
424 sechdrs[i].sh_flags = TO_NATIVE(sechdrs[i].sh_flags);
425 sechdrs[i].sh_addr = TO_NATIVE(sechdrs[i].sh_addr);
426 sechdrs[i].sh_offset = TO_NATIVE(sechdrs[i].sh_offset);
427 sechdrs[i].sh_size = TO_NATIVE(sechdrs[i].sh_size);
428 sechdrs[i].sh_link = TO_NATIVE(sechdrs[i].sh_link);
429 sechdrs[i].sh_info = TO_NATIVE(sechdrs[i].sh_info);
430 sechdrs[i].sh_addralign = TO_NATIVE(sechdrs[i].sh_addralign);
431 sechdrs[i].sh_entsize = TO_NATIVE(sechdrs[i].sh_entsize);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700432 }
433 /* Find symbol table. */
434 for (i = 1; i < hdr->e_shnum; i++) {
435 const char *secstrings
436 = (void *)hdr + sechdrs[hdr->e_shstrndx].sh_offset;
Ram Paibd5cbce2006-06-08 22:12:53 -0700437 const char *secname;
Tejun Heo56fc82c2009-02-06 00:48:02 +0900438 int nobits = sechdrs[i].sh_type == SHT_NOBITS;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700439
Tejun Heo56fc82c2009-02-06 00:48:02 +0900440 if (!nobits && sechdrs[i].sh_offset > info->size) {
Sam Ravnborgdf578e72008-01-11 19:17:15 +0100441 fatal("%s is truncated. sechdrs[i].sh_offset=%lu > "
442 "sizeof(*hrd)=%zu\n", filename,
443 (unsigned long)sechdrs[i].sh_offset,
444 sizeof(*hdr));
Sam Ravnborg85bd2fd2007-02-26 15:33:52 +0100445 return 0;
446 }
Ram Paibd5cbce2006-06-08 22:12:53 -0700447 secname = secstrings + sechdrs[i].sh_name;
448 if (strcmp(secname, ".modinfo") == 0) {
Tejun Heo56fc82c2009-02-06 00:48:02 +0900449 if (nobits)
450 fatal("%s has NOBITS .modinfo\n", filename);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700451 info->modinfo = (void *)hdr + sechdrs[i].sh_offset;
452 info->modinfo_len = sechdrs[i].sh_size;
Ram Paibd5cbce2006-06-08 22:12:53 -0700453 } else if (strcmp(secname, "__ksymtab") == 0)
454 info->export_sec = i;
Sam Ravnborgc96fca22006-07-01 11:44:23 +0200455 else if (strcmp(secname, "__ksymtab_unused") == 0)
456 info->export_unused_sec = i;
Ram Paibd5cbce2006-06-08 22:12:53 -0700457 else if (strcmp(secname, "__ksymtab_gpl") == 0)
458 info->export_gpl_sec = i;
Sam Ravnborgc96fca22006-07-01 11:44:23 +0200459 else if (strcmp(secname, "__ksymtab_unused_gpl") == 0)
460 info->export_unused_gpl_sec = i;
Ram Paibd5cbce2006-06-08 22:12:53 -0700461 else if (strcmp(secname, "__ksymtab_gpl_future") == 0)
462 info->export_gpl_future_sec = i;
463
Linus Torvalds1da177e2005-04-16 15:20:36 -0700464 if (sechdrs[i].sh_type != SHT_SYMTAB)
465 continue;
466
467 info->symtab_start = (void *)hdr + sechdrs[i].sh_offset;
Sam Ravnborg62070fa2006-03-03 16:46:04 +0100468 info->symtab_stop = (void *)hdr + sechdrs[i].sh_offset
Linus Torvalds1da177e2005-04-16 15:20:36 -0700469 + sechdrs[i].sh_size;
Sam Ravnborg62070fa2006-03-03 16:46:04 +0100470 info->strtab = (void *)hdr +
Linus Torvalds1da177e2005-04-16 15:20:36 -0700471 sechdrs[sechdrs[i].sh_link].sh_offset;
472 }
Sam Ravnborgdf578e72008-01-11 19:17:15 +0100473 if (!info->symtab_start)
Sam Ravnborgcb805142006-01-28 16:57:26 +0100474 fatal("%s has no symtab?\n", filename);
Sam Ravnborgdf578e72008-01-11 19:17:15 +0100475
Linus Torvalds1da177e2005-04-16 15:20:36 -0700476 /* Fix endianness in symbols */
477 for (sym = info->symtab_start; sym < info->symtab_stop; sym++) {
478 sym->st_shndx = TO_NATIVE(sym->st_shndx);
479 sym->st_name = TO_NATIVE(sym->st_name);
480 sym->st_value = TO_NATIVE(sym->st_value);
481 sym->st_size = TO_NATIVE(sym->st_size);
482 }
Sam Ravnborg85bd2fd2007-02-26 15:33:52 +0100483 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700484}
485
Sam Ravnborg5c3ead82006-01-28 17:19:35 +0100486static void parse_elf_finish(struct elf_info *info)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700487{
488 release_file(info->hdr, info->size);
489}
490
Sam Ravnborg4d7365d2008-06-12 15:02:55 +0200491static int ignore_undef_symbol(struct elf_info *info, const char *symname)
492{
493 /* ignore __this_module, it will be resolved shortly */
494 if (strcmp(symname, MODULE_SYMBOL_PREFIX "__this_module") == 0)
495 return 1;
496 /* ignore global offset table */
497 if (strcmp(symname, "_GLOBAL_OFFSET_TABLE_") == 0)
498 return 1;
499 if (info->hdr->e_machine == EM_PPC)
500 /* Special register function linked on all modules during final link of .ko */
501 if (strncmp(symname, "_restgpr_", sizeof("_restgpr_") - 1) == 0 ||
502 strncmp(symname, "_savegpr_", sizeof("_savegpr_") - 1) == 0 ||
503 strncmp(symname, "_rest32gpr_", sizeof("_rest32gpr_") - 1) == 0 ||
504 strncmp(symname, "_save32gpr_", sizeof("_save32gpr_") - 1) == 0)
505 return 1;
506 /* Do not ignore this symbol */
507 return 0;
508}
509
Luke Yangf7b05e62006-03-02 18:35:31 +0800510#define CRC_PFX MODULE_SYMBOL_PREFIX "__crc_"
511#define KSYMTAB_PFX MODULE_SYMBOL_PREFIX "__ksymtab_"
Linus Torvalds1da177e2005-04-16 15:20:36 -0700512
Sam Ravnborg5c3ead82006-01-28 17:19:35 +0100513static void handle_modversions(struct module *mod, struct elf_info *info,
514 Elf_Sym *sym, const char *symname)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700515{
516 unsigned int crc;
Ram Paibd5cbce2006-06-08 22:12:53 -0700517 enum export export = export_from_sec(info, sym->st_shndx);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700518
519 switch (sym->st_shndx) {
520 case SHN_COMMON:
Sam Ravnborgcb805142006-01-28 16:57:26 +0100521 warn("\"%s\" [%s] is COMMON symbol\n", symname, mod->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700522 break;
523 case SHN_ABS:
524 /* CRC'd symbol */
Michal Marek8d995132009-12-12 12:02:24 +0100525 if (strncmp(symname, CRC_PFX, strlen(CRC_PFX)) == 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700526 crc = (unsigned int) sym->st_value;
Ram Paibd5cbce2006-06-08 22:12:53 -0700527 sym_update_crc(symname + strlen(CRC_PFX), mod, crc,
528 export);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700529 }
530 break;
531 case SHN_UNDEF:
532 /* undefined symbol */
533 if (ELF_ST_BIND(sym->st_info) != STB_GLOBAL &&
534 ELF_ST_BIND(sym->st_info) != STB_WEAK)
535 break;
Sam Ravnborg4d7365d2008-06-12 15:02:55 +0200536 if (ignore_undef_symbol(info, symname))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700537 break;
Ben Colline8d529012005-08-19 13:44:57 -0700538/* cope with newer glibc (2.3.4 or higher) STT_ definition in elf.h */
539#if defined(STT_REGISTER) || defined(STT_SPARC_REGISTER)
540/* add compatibility with older glibc */
541#ifndef STT_SPARC_REGISTER
542#define STT_SPARC_REGISTER STT_REGISTER
543#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700544 if (info->hdr->e_machine == EM_SPARC ||
545 info->hdr->e_machine == EM_SPARCV9) {
546 /* Ignore register directives. */
Ben Colline8d529012005-08-19 13:44:57 -0700547 if (ELF_ST_TYPE(sym->st_info) == STT_SPARC_REGISTER)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700548 break;
Sam Ravnborg62070fa2006-03-03 16:46:04 +0100549 if (symname[0] == '.') {
550 char *munged = strdup(symname);
551 munged[0] = '_';
552 munged[1] = toupper(munged[1]);
553 symname = munged;
554 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700555 }
556#endif
Sam Ravnborg62070fa2006-03-03 16:46:04 +0100557
Linus Torvalds1da177e2005-04-16 15:20:36 -0700558 if (memcmp(symname, MODULE_SYMBOL_PREFIX,
Sam Ravnborgdf578e72008-01-11 19:17:15 +0100559 strlen(MODULE_SYMBOL_PREFIX)) == 0) {
560 mod->unres =
561 alloc_symbol(symname +
562 strlen(MODULE_SYMBOL_PREFIX),
563 ELF_ST_BIND(sym->st_info) == STB_WEAK,
564 mod->unres);
565 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700566 break;
567 default:
568 /* All exported symbols */
Michal Marek8d995132009-12-12 12:02:24 +0100569 if (strncmp(symname, KSYMTAB_PFX, strlen(KSYMTAB_PFX)) == 0) {
Ram Paibd5cbce2006-06-08 22:12:53 -0700570 sym_add_exported(symname + strlen(KSYMTAB_PFX), mod,
571 export);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700572 }
573 if (strcmp(symname, MODULE_SYMBOL_PREFIX "init_module") == 0)
574 mod->has_init = 1;
575 if (strcmp(symname, MODULE_SYMBOL_PREFIX "cleanup_module") == 0)
576 mod->has_cleanup = 1;
577 break;
578 }
579}
580
Sam Ravnborg5c3ead82006-01-28 17:19:35 +0100581/**
582 * Parse tag=value strings from .modinfo section
583 **/
Linus Torvalds1da177e2005-04-16 15:20:36 -0700584static char *next_string(char *string, unsigned long *secsize)
585{
586 /* Skip non-zero chars */
587 while (string[0]) {
588 string++;
589 if ((*secsize)-- <= 1)
590 return NULL;
591 }
592
593 /* Skip any zero padding. */
594 while (!string[0]) {
595 string++;
596 if ((*secsize)-- <= 1)
597 return NULL;
598 }
599 return string;
600}
601
Sam Ravnborgb817f6f2006-06-09 21:53:55 +0200602static char *get_next_modinfo(void *modinfo, unsigned long modinfo_len,
603 const char *tag, char *info)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700604{
605 char *p;
606 unsigned int taglen = strlen(tag);
607 unsigned long size = modinfo_len;
608
Sam Ravnborgb817f6f2006-06-09 21:53:55 +0200609 if (info) {
610 size -= info - (char *)modinfo;
611 modinfo = next_string(info, &size);
612 }
613
Linus Torvalds1da177e2005-04-16 15:20:36 -0700614 for (p = modinfo; p; p = next_string(p, &size)) {
615 if (strncmp(p, tag, taglen) == 0 && p[taglen] == '=')
616 return p + taglen + 1;
617 }
618 return NULL;
619}
620
Sam Ravnborgb817f6f2006-06-09 21:53:55 +0200621static char *get_modinfo(void *modinfo, unsigned long modinfo_len,
622 const char *tag)
623
624{
625 return get_next_modinfo(modinfo, modinfo_len, tag, NULL);
626}
627
Sam Ravnborg93684d32006-02-19 11:53:35 +0100628/**
Sam Ravnborg4c8fbca2006-02-26 22:18:11 +0100629 * Test if string s ends in string sub
630 * return 0 if match
631 **/
632static int strrcmp(const char *s, const char *sub)
633{
Sam Ravnborgdf578e72008-01-11 19:17:15 +0100634 int slen, sublen;
Sam Ravnborg62070fa2006-03-03 16:46:04 +0100635
Sam Ravnborg4c8fbca2006-02-26 22:18:11 +0100636 if (!s || !sub)
637 return 1;
Sam Ravnborg62070fa2006-03-03 16:46:04 +0100638
Sam Ravnborg4c8fbca2006-02-26 22:18:11 +0100639 slen = strlen(s);
Sam Ravnborgdf578e72008-01-11 19:17:15 +0100640 sublen = strlen(sub);
Sam Ravnborg62070fa2006-03-03 16:46:04 +0100641
Sam Ravnborg4c8fbca2006-02-26 22:18:11 +0100642 if ((slen == 0) || (sublen == 0))
643 return 1;
644
Sam Ravnborgdf578e72008-01-11 19:17:15 +0100645 if (sublen > slen)
646 return 1;
Sam Ravnborg4c8fbca2006-02-26 22:18:11 +0100647
Sam Ravnborgdf578e72008-01-11 19:17:15 +0100648 return memcmp(s + slen - sublen, sub, sublen);
Sam Ravnborg4c8fbca2006-02-26 22:18:11 +0100649}
650
Sam Ravnborgff13f922008-01-23 19:54:27 +0100651static const char *sym_name(struct elf_info *elf, Elf_Sym *sym)
652{
Sam Ravnborg58fb0d42008-01-23 21:13:50 +0100653 if (sym)
654 return elf->strtab + sym->st_name;
655 else
Sam Ravnborgf6667512008-02-06 21:51:18 +0100656 return "(unknown)";
Sam Ravnborgff13f922008-01-23 19:54:27 +0100657}
658
659static const char *sec_name(struct elf_info *elf, int shndx)
660{
661 Elf_Shdr *sechdrs = elf->sechdrs;
662 return (void *)elf->hdr +
663 elf->sechdrs[elf->hdr->e_shstrndx].sh_offset +
664 sechdrs[shndx].sh_name;
665}
666
667static const char *sech_name(struct elf_info *elf, Elf_Shdr *sechdr)
668{
669 return (void *)elf->hdr +
670 elf->sechdrs[elf->hdr->e_shstrndx].sh_offset +
671 sechdr->sh_name;
672}
673
Sam Ravnborg10668222008-01-13 22:21:31 +0100674/* if sym is empty or point to a string
675 * like ".[0-9]+" then return 1.
676 * This is the optional prefix added by ld to some sections
677 */
678static int number_prefix(const char *sym)
679{
680 if (*sym++ == '\0')
681 return 1;
682 if (*sym != '.')
683 return 0;
684 do {
685 char c = *sym++;
686 if (c < '0' || c > '9')
687 return 0;
688 } while (*sym);
689 return 1;
690}
691
692/* The pattern is an array of simple patterns.
693 * "foo" will match an exact string equal to "foo"
Sam Ravnborg6c5bd232008-01-20 10:43:27 +0100694 * "*foo" will match a string that ends with "foo"
Sam Ravnborg10668222008-01-13 22:21:31 +0100695 * "foo*" will match a string that begins with "foo"
696 * "foo$" will match a string equal to "foo" or "foo.1"
697 * where the '1' can be any number including several digits.
698 * The $ syntax is for sections where ld append a dot number
699 * to make section name unique.
700 */
Trevor Keith5c725132009-09-22 16:43:38 -0700701static int match(const char *sym, const char * const pat[])
Sam Ravnborg10668222008-01-13 22:21:31 +0100702{
703 const char *p;
704 while (*pat) {
705 p = *pat++;
706 const char *endp = p + strlen(p) - 1;
707
Sam Ravnborg6c5bd232008-01-20 10:43:27 +0100708 /* "*foo" */
709 if (*p == '*') {
710 if (strrcmp(sym, p + 1) == 0)
711 return 1;
712 }
Sam Ravnborg10668222008-01-13 22:21:31 +0100713 /* "foo*" */
Sam Ravnborg6c5bd232008-01-20 10:43:27 +0100714 else if (*endp == '*') {
Sam Ravnborg10668222008-01-13 22:21:31 +0100715 if (strncmp(sym, p, strlen(p) - 1) == 0)
716 return 1;
717 }
718 /* "foo$" */
719 else if (*endp == '$') {
720 if (strncmp(sym, p, strlen(p) - 1) == 0) {
721 if (number_prefix(sym + strlen(p) - 1))
722 return 1;
723 }
724 }
725 /* no wildcards */
726 else {
727 if (strcmp(p, sym) == 0)
728 return 1;
729 }
730 }
731 /* no match */
732 return 0;
733}
734
Sam Ravnborg10668222008-01-13 22:21:31 +0100735/* sections that we do not want to do full section mismatch check on */
736static const char *section_white_list[] =
Sam Ravnborg4391ed62009-05-04 13:05:26 +0200737{
738 ".comment*",
739 ".debug*",
740 ".mdebug*", /* alpha, score, mips etc. */
741 ".pdr", /* alpha, score, mips etc. */
742 ".stab*",
743 ".note*",
744 ".got*",
745 ".toc*",
746 NULL
747};
Sam Ravnborg10668222008-01-13 22:21:31 +0100748
Sam Ravnborge241a632008-01-28 20:13:13 +0100749/*
Anders Kaseorgb614a692009-04-23 16:49:33 -0400750 * This is used to find sections missing the SHF_ALLOC flag.
Sam Ravnborge241a632008-01-28 20:13:13 +0100751 * The cause of this is often a section specified in assembler
Anders Kaseorgb614a692009-04-23 16:49:33 -0400752 * without "ax" / "aw".
Sam Ravnborge241a632008-01-28 20:13:13 +0100753 */
Anders Kaseorgb614a692009-04-23 16:49:33 -0400754static void check_section(const char *modname, struct elf_info *elf,
755 Elf_Shdr *sechdr)
Sam Ravnborge241a632008-01-28 20:13:13 +0100756{
Anders Kaseorgb614a692009-04-23 16:49:33 -0400757 const char *sec = sech_name(elf, sechdr);
Sam Ravnborge241a632008-01-28 20:13:13 +0100758
Anders Kaseorgb614a692009-04-23 16:49:33 -0400759 if (sechdr->sh_type == SHT_PROGBITS &&
760 !(sechdr->sh_flags & SHF_ALLOC) &&
761 !match(sec, section_white_list)) {
762 warn("%s (%s): unexpected non-allocatable section.\n"
763 "Did you forget to use \"ax\"/\"aw\" in a .S file?\n"
764 "Note that for example <linux/init.h> contains\n"
765 "section definitions for use in .S files.\n\n",
766 modname, sec);
Sam Ravnborge241a632008-01-28 20:13:13 +0100767 }
Sam Ravnborge241a632008-01-28 20:13:13 +0100768}
769
770
771
Sam Ravnborgeb8f6892008-01-20 20:07:28 +0100772#define ALL_INIT_DATA_SECTIONS \
Jan Beulichfd6c3a82009-03-12 10:58:33 +0000773 ".init.setup$", ".init.rodata$", \
774 ".devinit.rodata$", ".cpuinit.rodata$", ".meminit.rodata$" \
Sam Ravnborgeb8f6892008-01-20 20:07:28 +0100775 ".init.data$", ".devinit.data$", ".cpuinit.data$", ".meminit.data$"
776#define ALL_EXIT_DATA_SECTIONS \
777 ".exit.data$", ".devexit.data$", ".cpuexit.data$", ".memexit.data$"
Sam Ravnborg10668222008-01-13 22:21:31 +0100778
Sam Ravnborgeb8f6892008-01-20 20:07:28 +0100779#define ALL_INIT_TEXT_SECTIONS \
780 ".init.text$", ".devinit.text$", ".cpuinit.text$", ".meminit.text$"
781#define ALL_EXIT_TEXT_SECTIONS \
782 ".exit.text$", ".devexit.text$", ".cpuexit.text$", ".memexit.text$"
Sam Ravnborg10668222008-01-13 22:21:31 +0100783
Uwe Kleine-König4a31a222010-01-29 12:04:26 +0100784#define ALL_XXXINIT_SECTIONS DEV_INIT_SECTIONS, CPU_INIT_SECTIONS, \
785 MEM_INIT_SECTIONS
786#define ALL_XXXEXIT_SECTIONS DEV_EXIT_SECTIONS, CPU_EXIT_SECTIONS, \
787 MEM_EXIT_SECTIONS
788
789#define ALL_INIT_SECTIONS INIT_SECTIONS, ALL_XXXINIT_SECTIONS
790#define ALL_EXIT_SECTIONS EXIT_SECTIONS, ALL_XXXEXIT_SECTIONS
Sam Ravnborg10668222008-01-13 22:21:31 +0100791
Sam Ravnborg6c5bd232008-01-20 10:43:27 +0100792#define DATA_SECTIONS ".data$", ".data.rel$"
Sam Ravnborg10668222008-01-13 22:21:31 +0100793#define TEXT_SECTIONS ".text$"
794
Jan Beulichfd6c3a82009-03-12 10:58:33 +0000795#define INIT_SECTIONS ".init.*"
796#define DEV_INIT_SECTIONS ".devinit.*"
797#define CPU_INIT_SECTIONS ".cpuinit.*"
798#define MEM_INIT_SECTIONS ".meminit.*"
Sam Ravnborgeb8f6892008-01-20 20:07:28 +0100799
Jan Beulichfd6c3a82009-03-12 10:58:33 +0000800#define EXIT_SECTIONS ".exit.*"
801#define DEV_EXIT_SECTIONS ".devexit.*"
802#define CPU_EXIT_SECTIONS ".cpuexit.*"
803#define MEM_EXIT_SECTIONS ".memexit.*"
Sam Ravnborgeb8f6892008-01-20 20:07:28 +0100804
Sam Ravnborg6c5bd232008-01-20 10:43:27 +0100805/* init data sections */
Sam Ravnborgeb8f6892008-01-20 20:07:28 +0100806static const char *init_data_sections[] = { ALL_INIT_DATA_SECTIONS, NULL };
Sam Ravnborg6c5bd232008-01-20 10:43:27 +0100807
808/* all init sections */
Sam Ravnborgeb8f6892008-01-20 20:07:28 +0100809static const char *init_sections[] = { ALL_INIT_SECTIONS, NULL };
Sam Ravnborg6c5bd232008-01-20 10:43:27 +0100810
811/* All init and exit sections (code + data) */
812static const char *init_exit_sections[] =
Sam Ravnborgeb8f6892008-01-20 20:07:28 +0100813 {ALL_INIT_SECTIONS, ALL_EXIT_SECTIONS, NULL };
Sam Ravnborg6c5bd232008-01-20 10:43:27 +0100814
815/* data section */
816static const char *data_sections[] = { DATA_SECTIONS, NULL };
817
Sam Ravnborg6c5bd232008-01-20 10:43:27 +0100818
819/* symbols in .data that may refer to init/exit sections */
820static const char *symbol_white_list[] =
821{
822 "*driver",
823 "*_template", /* scsi uses *_template a lot */
824 "*_timer", /* arm uses ops structures named _timer a lot */
825 "*_sht", /* scsi also used *_sht to some extent */
826 "*_ops",
827 "*_probe",
828 "*_probe_one",
829 "*_console",
830 NULL
831};
832
833static const char *head_sections[] = { ".head.text*", NULL };
834static const char *linker_symbols[] =
835 { "__init_begin", "_sinittext", "_einittext", NULL };
836
Sam Ravnborg588ccd72008-01-24 21:12:37 +0100837enum mismatch {
838 NO_MISMATCH,
Uwe Kleine-Königbbd3f4f2010-01-30 16:35:47 +0100839 TEXT_TO_ANY_INIT,
840 DATA_TO_ANY_INIT,
841 TEXT_TO_ANY_EXIT,
842 DATA_TO_ANY_EXIT,
843 XXXINIT_TO_SOME_INIT,
844 XXXEXIT_TO_SOME_EXIT,
845 ANY_INIT_TO_ANY_EXIT,
846 ANY_EXIT_TO_ANY_INIT,
Sam Ravnborg588ccd72008-01-24 21:12:37 +0100847 EXPORT_TO_INIT_EXIT,
848};
849
Sam Ravnborg10668222008-01-13 22:21:31 +0100850struct sectioncheck {
851 const char *fromsec[20];
852 const char *tosec[20];
Sam Ravnborg588ccd72008-01-24 21:12:37 +0100853 enum mismatch mismatch;
Sam Ravnborg10668222008-01-13 22:21:31 +0100854};
855
856const struct sectioncheck sectioncheck[] = {
857/* Do not reference init/exit code/data from
858 * normal code and data
859 */
860{
Sam Ravnborg588ccd72008-01-24 21:12:37 +0100861 .fromsec = { TEXT_SECTIONS, NULL },
862 .tosec = { ALL_INIT_SECTIONS, NULL },
Uwe Kleine-Königbbd3f4f2010-01-30 16:35:47 +0100863 .mismatch = TEXT_TO_ANY_INIT,
Sam Ravnborg588ccd72008-01-24 21:12:37 +0100864},
865{
866 .fromsec = { DATA_SECTIONS, NULL },
867 .tosec = { ALL_INIT_SECTIONS, NULL },
Uwe Kleine-Königbbd3f4f2010-01-30 16:35:47 +0100868 .mismatch = DATA_TO_ANY_INIT,
Sam Ravnborg588ccd72008-01-24 21:12:37 +0100869},
870{
871 .fromsec = { TEXT_SECTIONS, NULL },
872 .tosec = { ALL_EXIT_SECTIONS, NULL },
Uwe Kleine-Königbbd3f4f2010-01-30 16:35:47 +0100873 .mismatch = TEXT_TO_ANY_EXIT,
Sam Ravnborg588ccd72008-01-24 21:12:37 +0100874},
875{
876 .fromsec = { DATA_SECTIONS, NULL },
877 .tosec = { ALL_EXIT_SECTIONS, NULL },
Uwe Kleine-Königbbd3f4f2010-01-30 16:35:47 +0100878 .mismatch = DATA_TO_ANY_EXIT,
Sam Ravnborgeb8f6892008-01-20 20:07:28 +0100879},
880/* Do not reference init code/data from devinit/cpuinit/meminit code/data */
881{
Uwe Kleine-König4a31a222010-01-29 12:04:26 +0100882 .fromsec = { ALL_XXXINIT_SECTIONS, NULL },
Sam Ravnborg588ccd72008-01-24 21:12:37 +0100883 .tosec = { INIT_SECTIONS, NULL },
Uwe Kleine-Königbbd3f4f2010-01-30 16:35:47 +0100884 .mismatch = XXXINIT_TO_SOME_INIT,
Sam Ravnborgeb8f6892008-01-20 20:07:28 +0100885},
Jan Beulichfd6c3a82009-03-12 10:58:33 +0000886/* Do not reference cpuinit code/data from meminit code/data */
887{
888 .fromsec = { MEM_INIT_SECTIONS, NULL },
889 .tosec = { CPU_INIT_SECTIONS, NULL },
Uwe Kleine-Königbbd3f4f2010-01-30 16:35:47 +0100890 .mismatch = XXXINIT_TO_SOME_INIT,
Jan Beulichfd6c3a82009-03-12 10:58:33 +0000891},
892/* Do not reference meminit code/data from cpuinit code/data */
893{
894 .fromsec = { CPU_INIT_SECTIONS, NULL },
895 .tosec = { MEM_INIT_SECTIONS, NULL },
Uwe Kleine-Königbbd3f4f2010-01-30 16:35:47 +0100896 .mismatch = XXXINIT_TO_SOME_INIT,
Jan Beulichfd6c3a82009-03-12 10:58:33 +0000897},
Sam Ravnborgeb8f6892008-01-20 20:07:28 +0100898/* Do not reference exit code/data from devexit/cpuexit/memexit code/data */
899{
Uwe Kleine-König4a31a222010-01-29 12:04:26 +0100900 .fromsec = { ALL_XXXEXIT_SECTIONS, NULL },
Sam Ravnborg588ccd72008-01-24 21:12:37 +0100901 .tosec = { EXIT_SECTIONS, NULL },
Uwe Kleine-Königbbd3f4f2010-01-30 16:35:47 +0100902 .mismatch = XXXEXIT_TO_SOME_EXIT,
Sam Ravnborg10668222008-01-13 22:21:31 +0100903},
Jan Beulichfd6c3a82009-03-12 10:58:33 +0000904/* Do not reference cpuexit code/data from memexit code/data */
905{
906 .fromsec = { MEM_EXIT_SECTIONS, NULL },
907 .tosec = { CPU_EXIT_SECTIONS, NULL },
Uwe Kleine-Königbbd3f4f2010-01-30 16:35:47 +0100908 .mismatch = XXXEXIT_TO_SOME_EXIT,
Jan Beulichfd6c3a82009-03-12 10:58:33 +0000909},
910/* Do not reference memexit code/data from cpuexit code/data */
911{
912 .fromsec = { CPU_EXIT_SECTIONS, NULL },
913 .tosec = { MEM_EXIT_SECTIONS, NULL },
Uwe Kleine-Königbbd3f4f2010-01-30 16:35:47 +0100914 .mismatch = XXXEXIT_TO_SOME_EXIT,
Jan Beulichfd6c3a82009-03-12 10:58:33 +0000915},
Sam Ravnborg10668222008-01-13 22:21:31 +0100916/* Do not use exit code/data from init code */
917{
Sam Ravnborgeb8f6892008-01-20 20:07:28 +0100918 .fromsec = { ALL_INIT_SECTIONS, NULL },
919 .tosec = { ALL_EXIT_SECTIONS, NULL },
Uwe Kleine-Königbbd3f4f2010-01-30 16:35:47 +0100920 .mismatch = ANY_INIT_TO_ANY_EXIT,
Sam Ravnborg10668222008-01-13 22:21:31 +0100921},
922/* Do not use init code/data from exit code */
923{
Sam Ravnborgeb8f6892008-01-20 20:07:28 +0100924 .fromsec = { ALL_EXIT_SECTIONS, NULL },
Sam Ravnborg588ccd72008-01-24 21:12:37 +0100925 .tosec = { ALL_INIT_SECTIONS, NULL },
Uwe Kleine-Königbbd3f4f2010-01-30 16:35:47 +0100926 .mismatch = ANY_EXIT_TO_ANY_INIT,
Sam Ravnborg10668222008-01-13 22:21:31 +0100927},
928/* Do not export init/exit functions or data */
929{
930 .fromsec = { "__ksymtab*", NULL },
Sam Ravnborgfa95eb12008-02-02 23:30:22 +0100931 .tosec = { INIT_SECTIONS, EXIT_SECTIONS, NULL },
Sam Ravnborg588ccd72008-01-24 21:12:37 +0100932 .mismatch = EXPORT_TO_INIT_EXIT
Sam Ravnborg10668222008-01-13 22:21:31 +0100933}
934};
935
Uwe Kleine-König0d2a6362010-01-30 16:56:20 +0100936static const struct sectioncheck *section_mismatch(
937 const char *fromsec, const char *tosec)
Sam Ravnborg10668222008-01-13 22:21:31 +0100938{
939 int i;
940 int elems = sizeof(sectioncheck) / sizeof(struct sectioncheck);
941 const struct sectioncheck *check = &sectioncheck[0];
942
943 for (i = 0; i < elems; i++) {
944 if (match(fromsec, check->fromsec) &&
945 match(tosec, check->tosec))
Uwe Kleine-König0d2a6362010-01-30 16:56:20 +0100946 return check;
Sam Ravnborg10668222008-01-13 22:21:31 +0100947 check++;
948 }
Uwe Kleine-König0d2a6362010-01-30 16:56:20 +0100949 return NULL;
Sam Ravnborg10668222008-01-13 22:21:31 +0100950}
951
Sam Ravnborg4c8fbca2006-02-26 22:18:11 +0100952/**
953 * Whitelist to allow certain references to pass with no warning.
Sam Ravnborg0e0d3142007-05-17 20:14:48 +0200954 *
Sam Ravnborg4c8fbca2006-02-26 22:18:11 +0100955 * Pattern 1:
956 * If a module parameter is declared __initdata and permissions=0
957 * then this is legal despite the warning generated.
958 * We cannot see value of permissions here, so just ignore
959 * this pattern.
960 * The pattern is identified by:
961 * tosec = .init.data
Sam Ravnborg9209aed2006-03-05 00:16:26 +0100962 * fromsec = .data*
Sam Ravnborg4c8fbca2006-02-26 22:18:11 +0100963 * atsym =__param*
Sam Ravnborg62070fa2006-03-03 16:46:04 +0100964 *
Sam Ravnborg4c8fbca2006-02-26 22:18:11 +0100965 * Pattern 2:
Randy Dunlap72ee59b2006-04-15 11:17:12 -0700966 * Many drivers utilise a *driver container with references to
Sam Ravnborg4c8fbca2006-02-26 22:18:11 +0100967 * add, remove, probe functions etc.
Uwe Kleine-Königb75dcab2010-01-29 11:40:38 +0100968 * These functions may often be marked __devinit and we do not want to
Sam Ravnborg4c8fbca2006-02-26 22:18:11 +0100969 * warn here.
970 * the pattern is identified by:
Sam Ravnborg83cda2b2007-07-25 21:52:31 +0200971 * tosec = init or exit section
972 * fromsec = data section
Sam Ravnborgdf578e72008-01-11 19:17:15 +0100973 * atsym = *driver, *_template, *_sht, *_ops, *_probe,
974 * *probe_one, *_console, *_timer
Vivek Goyalee6a8542007-01-11 01:52:44 +0100975 *
976 * Pattern 3:
Sam Ravnborgc9939712009-04-26 11:17:42 +0200977 * Whitelist all references from .head.text to any init section
Sam Ravnborg9bf8cb92007-02-26 17:49:06 +0100978 *
Sam Ravnborg1d8af552007-06-03 00:41:22 +0200979 * Pattern 4:
Vivek Goyalee6a8542007-01-11 01:52:44 +0100980 * Some symbols belong to init section but still it is ok to reference
981 * these from non-init sections as these symbols don't have any memory
982 * allocated for them and symbol address and value are same. So even
983 * if init section is freed, its ok to reference those symbols.
984 * For ex. symbols marking the init section boundaries.
985 * This pattern is identified by
986 * refsymname = __init_begin, _sinittext, _einittext
Sam Ravnborg9bf8cb92007-02-26 17:49:06 +0100987 *
Sam Ravnborg4c8fbca2006-02-26 22:18:11 +0100988 **/
Sam Ravnborg58fb0d42008-01-23 21:13:50 +0100989static int secref_whitelist(const char *fromsec, const char *fromsym,
990 const char *tosec, const char *tosym)
Sam Ravnborg4c8fbca2006-02-26 22:18:11 +0100991{
Sam Ravnborg4c8fbca2006-02-26 22:18:11 +0100992 /* Check for pattern 1 */
Sam Ravnborg6c5bd232008-01-20 10:43:27 +0100993 if (match(tosec, init_data_sections) &&
994 match(fromsec, data_sections) &&
Sam Ravnborg58fb0d42008-01-23 21:13:50 +0100995 (strncmp(fromsym, "__param", strlen("__param")) == 0))
996 return 0;
Sam Ravnborg4c8fbca2006-02-26 22:18:11 +0100997
998 /* Check for pattern 2 */
Sam Ravnborg6c5bd232008-01-20 10:43:27 +0100999 if (match(tosec, init_exit_sections) &&
1000 match(fromsec, data_sections) &&
Sam Ravnborg58fb0d42008-01-23 21:13:50 +01001001 match(fromsym, symbol_white_list))
1002 return 0;
Sam Ravnborg4c8fbca2006-02-26 22:18:11 +01001003
Sam Ravnborg9bf8cb92007-02-26 17:49:06 +01001004 /* Check for pattern 3 */
Sam Ravnborg6c5bd232008-01-20 10:43:27 +01001005 if (match(fromsec, head_sections) &&
1006 match(tosec, init_sections))
Sam Ravnborg58fb0d42008-01-23 21:13:50 +01001007 return 0;
Sam Ravnborg9bf8cb92007-02-26 17:49:06 +01001008
Sam Ravnborg1d8af552007-06-03 00:41:22 +02001009 /* Check for pattern 4 */
Sam Ravnborg58fb0d42008-01-23 21:13:50 +01001010 if (match(tosym, linker_symbols))
1011 return 0;
Sam Ravnborg9bf8cb92007-02-26 17:49:06 +01001012
Sam Ravnborg58fb0d42008-01-23 21:13:50 +01001013 return 1;
Sam Ravnborg4c8fbca2006-02-26 22:18:11 +01001014}
1015
1016/**
Sam Ravnborg93684d32006-02-19 11:53:35 +01001017 * Find symbol based on relocation record info.
1018 * In some cases the symbol supplied is a valid symbol so
1019 * return refsym. If st_name != 0 we assume this is a valid symbol.
1020 * In other cases the symbol needs to be looked up in the symbol table
1021 * based on section and address.
1022 * **/
Sam Ravnborg9ad21c32008-01-18 21:04:34 +01001023static Elf_Sym *find_elf_symbol(struct elf_info *elf, Elf64_Sword addr,
Sam Ravnborg93684d32006-02-19 11:53:35 +01001024 Elf_Sym *relsym)
1025{
1026 Elf_Sym *sym;
Sam Ravnborg9ad21c32008-01-18 21:04:34 +01001027 Elf_Sym *near = NULL;
1028 Elf64_Sword distance = 20;
1029 Elf64_Sword d;
Sam Ravnborg93684d32006-02-19 11:53:35 +01001030
1031 if (relsym->st_name != 0)
1032 return relsym;
1033 for (sym = elf->symtab_start; sym < elf->symtab_stop; sym++) {
1034 if (sym->st_shndx != relsym->st_shndx)
1035 continue;
Atsushi Nemotoae4ac122007-05-22 18:27:39 +09001036 if (ELF_ST_TYPE(sym->st_info) == STT_SECTION)
1037 continue;
Sam Ravnborg93684d32006-02-19 11:53:35 +01001038 if (sym->st_value == addr)
1039 return sym;
Sam Ravnborg9ad21c32008-01-18 21:04:34 +01001040 /* Find a symbol nearby - addr are maybe negative */
1041 d = sym->st_value - addr;
1042 if (d < 0)
1043 d = addr - sym->st_value;
1044 if (d < distance) {
1045 distance = d;
1046 near = sym;
1047 }
Sam Ravnborg93684d32006-02-19 11:53:35 +01001048 }
Sam Ravnborg9ad21c32008-01-18 21:04:34 +01001049 /* We need a close match */
1050 if (distance < 20)
1051 return near;
1052 else
1053 return NULL;
Sam Ravnborg93684d32006-02-19 11:53:35 +01001054}
1055
David Brownellda68d612007-02-20 13:58:16 -08001056static inline int is_arm_mapping_symbol(const char *str)
1057{
1058 return str[0] == '$' && strchr("atd", str[1])
1059 && (str[2] == '\0' || str[2] == '.');
1060}
1061
1062/*
1063 * If there's no name there, ignore it; likewise, ignore it if it's
1064 * one of the magic symbols emitted used by current ARM tools.
1065 *
1066 * Otherwise if find_symbols_between() returns those symbols, they'll
1067 * fail the whitelist tests and cause lots of false alarms ... fixable
1068 * only by merging __exit and __init sections into __text, bloating
1069 * the kernel (which is especially evil on embedded platforms).
1070 */
1071static inline int is_valid_name(struct elf_info *elf, Elf_Sym *sym)
1072{
1073 const char *name = elf->strtab + sym->st_name;
1074
1075 if (!name || !strlen(name))
1076 return 0;
1077 return !is_arm_mapping_symbol(name);
1078}
1079
Sam Ravnborgb39927c2006-02-17 22:42:02 +01001080/*
Sam Ravnborg43c74d12006-03-05 12:02:46 +01001081 * Find symbols before or equal addr and after addr - in the section sec.
1082 * If we find two symbols with equal offset prefer one with a valid name.
1083 * The ELF format may have a better way to detect what type of symbol
1084 * it is, but this works for now.
Sam Ravnborgb39927c2006-02-17 22:42:02 +01001085 **/
Sam Ravnborg157c23c2008-01-22 21:44:32 +01001086static Elf_Sym *find_elf_symbol2(struct elf_info *elf, Elf_Addr addr,
1087 const char *sec)
Sam Ravnborgb39927c2006-02-17 22:42:02 +01001088{
1089 Elf_Sym *sym;
Sam Ravnborg157c23c2008-01-22 21:44:32 +01001090 Elf_Sym *near = NULL;
Sam Ravnborg157c23c2008-01-22 21:44:32 +01001091 Elf_Addr distance = ~0;
Sam Ravnborg62070fa2006-03-03 16:46:04 +01001092
Sam Ravnborgb39927c2006-02-17 22:42:02 +01001093 for (sym = elf->symtab_start; sym < elf->symtab_stop; sym++) {
1094 const char *symsec;
1095
1096 if (sym->st_shndx >= SHN_LORESERVE)
1097 continue;
Sam Ravnborgff13f922008-01-23 19:54:27 +01001098 symsec = sec_name(elf, sym->st_shndx);
Sam Ravnborgb39927c2006-02-17 22:42:02 +01001099 if (strcmp(symsec, sec) != 0)
1100 continue;
David Brownellda68d612007-02-20 13:58:16 -08001101 if (!is_valid_name(elf, sym))
1102 continue;
Sam Ravnborgb39927c2006-02-17 22:42:02 +01001103 if (sym->st_value <= addr) {
Sam Ravnborg157c23c2008-01-22 21:44:32 +01001104 if ((addr - sym->st_value) < distance) {
1105 distance = addr - sym->st_value;
1106 near = sym;
1107 } else if ((addr - sym->st_value) == distance) {
1108 near = sym;
Sam Ravnborg43c74d12006-03-05 12:02:46 +01001109 }
Sam Ravnborgb39927c2006-02-17 22:42:02 +01001110 }
1111 }
Sam Ravnborg157c23c2008-01-22 21:44:32 +01001112 return near;
Sam Ravnborgb39927c2006-02-17 22:42:02 +01001113}
1114
Sam Ravnborg58fb0d42008-01-23 21:13:50 +01001115/*
Sam Ravnborg588ccd72008-01-24 21:12:37 +01001116 * Convert a section name to the function/data attribute
1117 * .init.text => __init
1118 * .cpuinit.data => __cpudata
1119 * .memexitconst => __memconst
1120 * etc.
1121*/
1122static char *sec2annotation(const char *s)
1123{
1124 if (match(s, init_exit_sections)) {
1125 char *p = malloc(20);
1126 char *r = p;
1127
1128 *p++ = '_';
1129 *p++ = '_';
1130 if (*s == '.')
1131 s++;
1132 while (*s && *s != '.')
1133 *p++ = *s++;
1134 *p = '\0';
1135 if (*s == '.')
1136 s++;
1137 if (strstr(s, "rodata") != NULL)
1138 strcat(p, "const ");
1139 else if (strstr(s, "data") != NULL)
1140 strcat(p, "data ");
1141 else
1142 strcat(p, " ");
1143 return r; /* we leak her but we do not care */
1144 } else {
1145 return "";
1146 }
1147}
1148
1149static int is_function(Elf_Sym *sym)
1150{
1151 if (sym)
1152 return ELF_ST_TYPE(sym->st_info) == STT_FUNC;
1153 else
Sam Ravnborgf6667512008-02-06 21:51:18 +01001154 return -1;
Sam Ravnborg588ccd72008-01-24 21:12:37 +01001155}
1156
1157/*
Sam Ravnborgb39927c2006-02-17 22:42:02 +01001158 * Print a warning about a section mismatch.
1159 * Try to find symbols near it so user can find it.
Sam Ravnborg4c8fbca2006-02-26 22:18:11 +01001160 * Check whitelist before warning - it may be a false positive.
Sam Ravnborg58fb0d42008-01-23 21:13:50 +01001161 */
Uwe Kleine-König0d2a6362010-01-30 16:56:20 +01001162static void report_sec_mismatch(const char *modname,
1163 const struct sectioncheck *mismatch,
Sam Ravnborg58fb0d42008-01-23 21:13:50 +01001164 const char *fromsec,
1165 unsigned long long fromaddr,
1166 const char *fromsym,
Sam Ravnborg588ccd72008-01-24 21:12:37 +01001167 int from_is_func,
1168 const char *tosec, const char *tosym,
1169 int to_is_func)
Sam Ravnborgb39927c2006-02-17 22:42:02 +01001170{
Sam Ravnborg588ccd72008-01-24 21:12:37 +01001171 const char *from, *from_p;
1172 const char *to, *to_p;
Sam Ravnborgf6667512008-02-06 21:51:18 +01001173
1174 switch (from_is_func) {
1175 case 0: from = "variable"; from_p = ""; break;
1176 case 1: from = "function"; from_p = "()"; break;
1177 default: from = "(unknown reference)"; from_p = ""; break;
1178 }
1179 switch (to_is_func) {
1180 case 0: to = "variable"; to_p = ""; break;
1181 case 1: to = "function"; to_p = "()"; break;
1182 default: to = "(unknown reference)"; to_p = ""; break;
1183 }
Sam Ravnborg588ccd72008-01-24 21:12:37 +01001184
Sam Ravnborge5f95c82008-02-02 18:57:18 +01001185 sec_mismatch_count++;
1186 if (!sec_mismatch_verbose)
1187 return;
1188
Geert Uytterhoeven7c0ac492008-02-05 11:38:49 +01001189 warn("%s(%s+0x%llx): Section mismatch in reference from the %s %s%s "
1190 "to the %s %s:%s%s\n",
1191 modname, fromsec, fromaddr, from, fromsym, from_p, to, tosec,
1192 tosym, to_p);
Sam Ravnborg588ccd72008-01-24 21:12:37 +01001193
Uwe Kleine-König0d2a6362010-01-30 16:56:20 +01001194 switch (mismatch->mismatch) {
Uwe Kleine-Königbbd3f4f2010-01-30 16:35:47 +01001195 case TEXT_TO_ANY_INIT:
Sam Ravnborg588ccd72008-01-24 21:12:37 +01001196 fprintf(stderr,
Sam Ravnborgf6667512008-02-06 21:51:18 +01001197 "The function %s%s() references\n"
Sam Ravnborg588ccd72008-01-24 21:12:37 +01001198 "the %s %s%s%s.\n"
1199 "This is often because %s lacks a %s\n"
1200 "annotation or the annotation of %s is wrong.\n",
1201 sec2annotation(fromsec), fromsym,
1202 to, sec2annotation(tosec), tosym, to_p,
1203 fromsym, sec2annotation(tosec), tosym);
1204 break;
Uwe Kleine-Königbbd3f4f2010-01-30 16:35:47 +01001205 case DATA_TO_ANY_INIT: {
Sam Ravnborg588ccd72008-01-24 21:12:37 +01001206 const char **s = symbol_white_list;
1207 fprintf(stderr,
1208 "The variable %s references\n"
1209 "the %s %s%s%s\n"
1210 "If the reference is valid then annotate the\n"
Sam Ravnborg8b8b76c2009-06-06 00:18:05 +02001211 "variable with __init* or __refdata (see linux/init.h) "
Sam Ravnborg588ccd72008-01-24 21:12:37 +01001212 "or name the variable:\n",
1213 fromsym, to, sec2annotation(tosec), tosym, to_p);
1214 while (*s)
1215 fprintf(stderr, "%s, ", *s++);
1216 fprintf(stderr, "\n");
1217 break;
Sam Ravnborg58fb0d42008-01-23 21:13:50 +01001218 }
Uwe Kleine-Königbbd3f4f2010-01-30 16:35:47 +01001219 case TEXT_TO_ANY_EXIT:
Sam Ravnborg588ccd72008-01-24 21:12:37 +01001220 fprintf(stderr,
1221 "The function %s() references a %s in an exit section.\n"
1222 "Often the %s %s%s has valid usage outside the exit section\n"
1223 "and the fix is to remove the %sannotation of %s.\n",
1224 fromsym, to, to, tosym, to_p, sec2annotation(tosec), tosym);
1225 break;
Uwe Kleine-Königbbd3f4f2010-01-30 16:35:47 +01001226 case DATA_TO_ANY_EXIT: {
Sam Ravnborg588ccd72008-01-24 21:12:37 +01001227 const char **s = symbol_white_list;
1228 fprintf(stderr,
1229 "The variable %s references\n"
1230 "the %s %s%s%s\n"
1231 "If the reference is valid then annotate the\n"
1232 "variable with __exit* (see linux/init.h) or "
1233 "name the variable:\n",
1234 fromsym, to, sec2annotation(tosec), tosym, to_p);
1235 while (*s)
1236 fprintf(stderr, "%s, ", *s++);
1237 fprintf(stderr, "\n");
1238 break;
1239 }
Uwe Kleine-Königbbd3f4f2010-01-30 16:35:47 +01001240 case XXXINIT_TO_SOME_INIT:
1241 case XXXEXIT_TO_SOME_EXIT:
Sam Ravnborg588ccd72008-01-24 21:12:37 +01001242 fprintf(stderr,
1243 "The %s %s%s%s references\n"
1244 "a %s %s%s%s.\n"
1245 "If %s is only used by %s then\n"
1246 "annotate %s with a matching annotation.\n",
1247 from, sec2annotation(fromsec), fromsym, from_p,
1248 to, sec2annotation(tosec), tosym, to_p,
Geert Uytterhoevenb1d26752008-02-17 14:12:10 +01001249 tosym, fromsym, tosym);
Sam Ravnborg588ccd72008-01-24 21:12:37 +01001250 break;
Uwe Kleine-Königbbd3f4f2010-01-30 16:35:47 +01001251 case ANY_INIT_TO_ANY_EXIT:
Sam Ravnborg588ccd72008-01-24 21:12:37 +01001252 fprintf(stderr,
1253 "The %s %s%s%s references\n"
1254 "a %s %s%s%s.\n"
1255 "This is often seen when error handling "
1256 "in the init function\n"
1257 "uses functionality in the exit path.\n"
1258 "The fix is often to remove the %sannotation of\n"
1259 "%s%s so it may be used outside an exit section.\n",
1260 from, sec2annotation(fromsec), fromsym, from_p,
1261 to, sec2annotation(tosec), tosym, to_p,
1262 sec2annotation(tosec), tosym, to_p);
1263 break;
Uwe Kleine-Königbbd3f4f2010-01-30 16:35:47 +01001264 case ANY_EXIT_TO_ANY_INIT:
Sam Ravnborg588ccd72008-01-24 21:12:37 +01001265 fprintf(stderr,
1266 "The %s %s%s%s references\n"
1267 "a %s %s%s%s.\n"
1268 "This is often seen when error handling "
1269 "in the exit function\n"
1270 "uses functionality in the init path.\n"
1271 "The fix is often to remove the %sannotation of\n"
1272 "%s%s so it may be used outside an init section.\n",
1273 from, sec2annotation(fromsec), fromsym, from_p,
1274 to, sec2annotation(tosec), tosym, to_p,
1275 sec2annotation(tosec), tosym, to_p);
1276 break;
1277 case EXPORT_TO_INIT_EXIT:
1278 fprintf(stderr,
1279 "The symbol %s is exported and annotated %s\n"
1280 "Fix this by removing the %sannotation of %s "
1281 "or drop the export.\n",
1282 tosym, sec2annotation(tosec), sec2annotation(tosec), tosym);
1283 case NO_MISMATCH:
1284 /* To get warnings on missing members */
1285 break;
1286 }
1287 fprintf(stderr, "\n");
Sam Ravnborg58fb0d42008-01-23 21:13:50 +01001288}
1289
1290static void check_section_mismatch(const char *modname, struct elf_info *elf,
1291 Elf_Rela *r, Elf_Sym *sym, const char *fromsec)
1292{
1293 const char *tosec;
Uwe Kleine-König0d2a6362010-01-30 16:56:20 +01001294 const struct sectioncheck *mismatch;
Sam Ravnborg58fb0d42008-01-23 21:13:50 +01001295
1296 tosec = sec_name(elf, sym->st_shndx);
Sam Ravnborg588ccd72008-01-24 21:12:37 +01001297 mismatch = section_mismatch(fromsec, tosec);
Uwe Kleine-König0d2a6362010-01-30 16:56:20 +01001298 if (mismatch) {
Sam Ravnborg588ccd72008-01-24 21:12:37 +01001299 Elf_Sym *to;
1300 Elf_Sym *from;
Sam Ravnborg58fb0d42008-01-23 21:13:50 +01001301 const char *tosym;
Sam Ravnborg588ccd72008-01-24 21:12:37 +01001302 const char *fromsym;
Sam Ravnborg58fb0d42008-01-23 21:13:50 +01001303
Sam Ravnborg588ccd72008-01-24 21:12:37 +01001304 from = find_elf_symbol2(elf, r->r_offset, fromsec);
1305 fromsym = sym_name(elf, from);
1306 to = find_elf_symbol(elf, r->r_addend, sym);
1307 tosym = sym_name(elf, to);
Sam Ravnborg58fb0d42008-01-23 21:13:50 +01001308
1309 /* check whitelist - we may ignore it */
1310 if (secref_whitelist(fromsec, fromsym, tosec, tosym)) {
Sam Ravnborg588ccd72008-01-24 21:12:37 +01001311 report_sec_mismatch(modname, mismatch,
1312 fromsec, r->r_offset, fromsym,
1313 is_function(from), tosec, tosym,
1314 is_function(to));
Sam Ravnborg58fb0d42008-01-23 21:13:50 +01001315 }
Sam Ravnborgb39927c2006-02-17 22:42:02 +01001316 }
1317}
1318
Atsushi Nemotoae4ac122007-05-22 18:27:39 +09001319static unsigned int *reloc_location(struct elf_info *elf,
Sam Ravnborg5b24c072008-01-18 21:49:29 +01001320 Elf_Shdr *sechdr, Elf_Rela *r)
Atsushi Nemotoae4ac122007-05-22 18:27:39 +09001321{
1322 Elf_Shdr *sechdrs = elf->sechdrs;
Sam Ravnborg5b24c072008-01-18 21:49:29 +01001323 int section = sechdr->sh_info;
Atsushi Nemotoae4ac122007-05-22 18:27:39 +09001324
1325 return (void *)elf->hdr + sechdrs[section].sh_offset +
1326 (r->r_offset - sechdrs[section].sh_addr);
1327}
1328
Sam Ravnborg5b24c072008-01-18 21:49:29 +01001329static int addend_386_rel(struct elf_info *elf, Elf_Shdr *sechdr, Elf_Rela *r)
Atsushi Nemotoae4ac122007-05-22 18:27:39 +09001330{
1331 unsigned int r_typ = ELF_R_TYPE(r->r_info);
Sam Ravnborg5b24c072008-01-18 21:49:29 +01001332 unsigned int *location = reloc_location(elf, sechdr, r);
Atsushi Nemotoae4ac122007-05-22 18:27:39 +09001333
1334 switch (r_typ) {
1335 case R_386_32:
1336 r->r_addend = TO_NATIVE(*location);
1337 break;
1338 case R_386_PC32:
1339 r->r_addend = TO_NATIVE(*location) + 4;
1340 /* For CONFIG_RELOCATABLE=y */
1341 if (elf->hdr->e_type == ET_EXEC)
1342 r->r_addend += r->r_offset;
1343 break;
1344 }
1345 return 0;
1346}
1347
Sam Ravnborg5b24c072008-01-18 21:49:29 +01001348static int addend_arm_rel(struct elf_info *elf, Elf_Shdr *sechdr, Elf_Rela *r)
Sam Ravnborg56a974f2007-07-16 22:39:35 +02001349{
1350 unsigned int r_typ = ELF_R_TYPE(r->r_info);
1351
1352 switch (r_typ) {
1353 case R_ARM_ABS32:
1354 /* From ARM ABI: (S + A) | T */
Sam Ravnborgdf578e72008-01-11 19:17:15 +01001355 r->r_addend = (int)(long)
1356 (elf->symtab_start + ELF_R_SYM(r->r_info));
Sam Ravnborg56a974f2007-07-16 22:39:35 +02001357 break;
1358 case R_ARM_PC24:
1359 /* From ARM ABI: ((S + A) | T) - P */
Sam Ravnborgdf578e72008-01-11 19:17:15 +01001360 r->r_addend = (int)(long)(elf->hdr +
Sam Ravnborg5b24c072008-01-18 21:49:29 +01001361 sechdr->sh_offset +
1362 (r->r_offset - sechdr->sh_addr));
Sam Ravnborg56a974f2007-07-16 22:39:35 +02001363 break;
1364 default:
1365 return 1;
1366 }
1367 return 0;
1368}
1369
Sam Ravnborg5b24c072008-01-18 21:49:29 +01001370static int addend_mips_rel(struct elf_info *elf, Elf_Shdr *sechdr, Elf_Rela *r)
Atsushi Nemotoae4ac122007-05-22 18:27:39 +09001371{
1372 unsigned int r_typ = ELF_R_TYPE(r->r_info);
Sam Ravnborg5b24c072008-01-18 21:49:29 +01001373 unsigned int *location = reloc_location(elf, sechdr, r);
Atsushi Nemotoae4ac122007-05-22 18:27:39 +09001374 unsigned int inst;
1375
1376 if (r_typ == R_MIPS_HI16)
1377 return 1; /* skip this */
1378 inst = TO_NATIVE(*location);
1379 switch (r_typ) {
1380 case R_MIPS_LO16:
1381 r->r_addend = inst & 0xffff;
1382 break;
1383 case R_MIPS_26:
1384 r->r_addend = (inst & 0x03ffffff) << 2;
1385 break;
1386 case R_MIPS_32:
1387 r->r_addend = inst;
1388 break;
1389 }
1390 return 0;
1391}
1392
Sam Ravnborg5b24c072008-01-18 21:49:29 +01001393static void section_rela(const char *modname, struct elf_info *elf,
Sam Ravnborg10668222008-01-13 22:21:31 +01001394 Elf_Shdr *sechdr)
Sam Ravnborg5b24c072008-01-18 21:49:29 +01001395{
1396 Elf_Sym *sym;
1397 Elf_Rela *rela;
1398 Elf_Rela r;
1399 unsigned int r_sym;
1400 const char *fromsec;
Sam Ravnborg5b24c072008-01-18 21:49:29 +01001401
Sam Ravnborgff13f922008-01-23 19:54:27 +01001402 Elf_Rela *start = (void *)elf->hdr + sechdr->sh_offset;
Sam Ravnborg5b24c072008-01-18 21:49:29 +01001403 Elf_Rela *stop = (void *)start + sechdr->sh_size;
1404
Sam Ravnborgff13f922008-01-23 19:54:27 +01001405 fromsec = sech_name(elf, sechdr);
Sam Ravnborg5b24c072008-01-18 21:49:29 +01001406 fromsec += strlen(".rela");
1407 /* if from section (name) is know good then skip it */
Anders Kaseorgb614a692009-04-23 16:49:33 -04001408 if (match(fromsec, section_white_list))
Sam Ravnborg5b24c072008-01-18 21:49:29 +01001409 return;
Sam Ravnborge241a632008-01-28 20:13:13 +01001410
Sam Ravnborg5b24c072008-01-18 21:49:29 +01001411 for (rela = start; rela < stop; rela++) {
1412 r.r_offset = TO_NATIVE(rela->r_offset);
1413#if KERNEL_ELFCLASS == ELFCLASS64
Sam Ravnborgff13f922008-01-23 19:54:27 +01001414 if (elf->hdr->e_machine == EM_MIPS) {
Sam Ravnborg5b24c072008-01-18 21:49:29 +01001415 unsigned int r_typ;
1416 r_sym = ELF64_MIPS_R_SYM(rela->r_info);
1417 r_sym = TO_NATIVE(r_sym);
1418 r_typ = ELF64_MIPS_R_TYPE(rela->r_info);
1419 r.r_info = ELF64_R_INFO(r_sym, r_typ);
1420 } else {
1421 r.r_info = TO_NATIVE(rela->r_info);
1422 r_sym = ELF_R_SYM(r.r_info);
1423 }
1424#else
1425 r.r_info = TO_NATIVE(rela->r_info);
1426 r_sym = ELF_R_SYM(r.r_info);
1427#endif
1428 r.r_addend = TO_NATIVE(rela->r_addend);
1429 sym = elf->symtab_start + r_sym;
1430 /* Skip special sections */
1431 if (sym->st_shndx >= SHN_LORESERVE)
1432 continue;
Sam Ravnborg58fb0d42008-01-23 21:13:50 +01001433 check_section_mismatch(modname, elf, &r, sym, fromsec);
Sam Ravnborg5b24c072008-01-18 21:49:29 +01001434 }
1435}
1436
1437static void section_rel(const char *modname, struct elf_info *elf,
Sam Ravnborg10668222008-01-13 22:21:31 +01001438 Elf_Shdr *sechdr)
Sam Ravnborg5b24c072008-01-18 21:49:29 +01001439{
1440 Elf_Sym *sym;
1441 Elf_Rel *rel;
1442 Elf_Rela r;
1443 unsigned int r_sym;
1444 const char *fromsec;
Sam Ravnborg5b24c072008-01-18 21:49:29 +01001445
Sam Ravnborgff13f922008-01-23 19:54:27 +01001446 Elf_Rel *start = (void *)elf->hdr + sechdr->sh_offset;
Sam Ravnborg5b24c072008-01-18 21:49:29 +01001447 Elf_Rel *stop = (void *)start + sechdr->sh_size;
1448
Sam Ravnborgff13f922008-01-23 19:54:27 +01001449 fromsec = sech_name(elf, sechdr);
Sam Ravnborg5b24c072008-01-18 21:49:29 +01001450 fromsec += strlen(".rel");
1451 /* if from section (name) is know good then skip it */
Anders Kaseorgb614a692009-04-23 16:49:33 -04001452 if (match(fromsec, section_white_list))
Sam Ravnborg5b24c072008-01-18 21:49:29 +01001453 return;
1454
1455 for (rel = start; rel < stop; rel++) {
1456 r.r_offset = TO_NATIVE(rel->r_offset);
1457#if KERNEL_ELFCLASS == ELFCLASS64
Sam Ravnborgff13f922008-01-23 19:54:27 +01001458 if (elf->hdr->e_machine == EM_MIPS) {
Sam Ravnborg5b24c072008-01-18 21:49:29 +01001459 unsigned int r_typ;
1460 r_sym = ELF64_MIPS_R_SYM(rel->r_info);
1461 r_sym = TO_NATIVE(r_sym);
1462 r_typ = ELF64_MIPS_R_TYPE(rel->r_info);
1463 r.r_info = ELF64_R_INFO(r_sym, r_typ);
1464 } else {
1465 r.r_info = TO_NATIVE(rel->r_info);
1466 r_sym = ELF_R_SYM(r.r_info);
1467 }
1468#else
1469 r.r_info = TO_NATIVE(rel->r_info);
1470 r_sym = ELF_R_SYM(r.r_info);
1471#endif
1472 r.r_addend = 0;
Sam Ravnborgff13f922008-01-23 19:54:27 +01001473 switch (elf->hdr->e_machine) {
Sam Ravnborg5b24c072008-01-18 21:49:29 +01001474 case EM_386:
1475 if (addend_386_rel(elf, sechdr, &r))
1476 continue;
1477 break;
1478 case EM_ARM:
1479 if (addend_arm_rel(elf, sechdr, &r))
1480 continue;
1481 break;
1482 case EM_MIPS:
1483 if (addend_mips_rel(elf, sechdr, &r))
1484 continue;
1485 break;
1486 }
1487 sym = elf->symtab_start + r_sym;
1488 /* Skip special sections */
1489 if (sym->st_shndx >= SHN_LORESERVE)
1490 continue;
Sam Ravnborg58fb0d42008-01-23 21:13:50 +01001491 check_section_mismatch(modname, elf, &r, sym, fromsec);
Sam Ravnborg5b24c072008-01-18 21:49:29 +01001492 }
1493}
1494
Sam Ravnborgb39927c2006-02-17 22:42:02 +01001495/**
1496 * A module includes a number of sections that are discarded
1497 * either when loaded or when used as built-in.
1498 * For loaded modules all functions marked __init and all data
1499 * marked __initdata will be discarded when the module has been intialized.
1500 * Likewise for modules used built-in the sections marked __exit
1501 * are discarded because __exit marked function are supposed to be called
Ben Dooks32be1d22008-07-29 22:33:44 -07001502 * only when a module is unloaded which never happens for built-in modules.
Sam Ravnborgb39927c2006-02-17 22:42:02 +01001503 * The check_sec_ref() function traverses all relocation records
1504 * to find all references to a section that reference a section that will
1505 * be discarded and warns about it.
1506 **/
1507static void check_sec_ref(struct module *mod, const char *modname,
Sam Ravnborg10668222008-01-13 22:21:31 +01001508 struct elf_info *elf)
Sam Ravnborgb39927c2006-02-17 22:42:02 +01001509{
1510 int i;
Sam Ravnborgb39927c2006-02-17 22:42:02 +01001511 Elf_Shdr *sechdrs = elf->sechdrs;
Sam Ravnborg62070fa2006-03-03 16:46:04 +01001512
Sam Ravnborgb39927c2006-02-17 22:42:02 +01001513 /* Walk through all sections */
Sam Ravnborgff13f922008-01-23 19:54:27 +01001514 for (i = 0; i < elf->hdr->e_shnum; i++) {
Anders Kaseorgb614a692009-04-23 16:49:33 -04001515 check_section(modname, elf, &elf->sechdrs[i]);
Sam Ravnborgb39927c2006-02-17 22:42:02 +01001516 /* We want to process only relocation sections and not .init */
Sam Ravnborg5b24c072008-01-18 21:49:29 +01001517 if (sechdrs[i].sh_type == SHT_RELA)
Sam Ravnborg10668222008-01-13 22:21:31 +01001518 section_rela(modname, elf, &elf->sechdrs[i]);
Sam Ravnborg5b24c072008-01-18 21:49:29 +01001519 else if (sechdrs[i].sh_type == SHT_REL)
Sam Ravnborg10668222008-01-13 22:21:31 +01001520 section_rel(modname, elf, &elf->sechdrs[i]);
Sam Ravnborgb39927c2006-02-17 22:42:02 +01001521 }
1522}
1523
Sam Ravnborg5c3ead82006-01-28 17:19:35 +01001524static void read_symbols(char *modname)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001525{
1526 const char *symname;
1527 char *version;
Sam Ravnborgb817f6f2006-06-09 21:53:55 +02001528 char *license;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001529 struct module *mod;
1530 struct elf_info info = { };
1531 Elf_Sym *sym;
1532
Sam Ravnborg85bd2fd2007-02-26 15:33:52 +01001533 if (!parse_elf(&info, modname))
1534 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001535
1536 mod = new_module(modname);
1537
1538 /* When there's no vmlinux, don't print warnings about
1539 * unresolved symbols (since there'll be too many ;) */
1540 if (is_vmlinux(modname)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001541 have_vmlinux = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001542 mod->skip = 1;
1543 }
1544
Sam Ravnborgb817f6f2006-06-09 21:53:55 +02001545 license = get_modinfo(info.modinfo, info.modinfo_len, "license");
Sam Ravnborg2fa36562008-04-26 21:07:26 +02001546 if (info.modinfo && !license && !is_vmlinux(modname))
1547 warn("modpost: missing MODULE_LICENSE() in %s\n"
1548 "see include/linux/module.h for "
1549 "more information\n", modname);
Sam Ravnborgb817f6f2006-06-09 21:53:55 +02001550 while (license) {
1551 if (license_is_gpl_compatible(license))
1552 mod->gpl_compatible = 1;
1553 else {
1554 mod->gpl_compatible = 0;
1555 break;
1556 }
1557 license = get_next_modinfo(info.modinfo, info.modinfo_len,
1558 "license", license);
1559 }
1560
Linus Torvalds1da177e2005-04-16 15:20:36 -07001561 for (sym = info.symtab_start; sym < info.symtab_stop; sym++) {
1562 symname = info.strtab + sym->st_name;
1563
1564 handle_modversions(mod, &info, sym, symname);
1565 handle_moddevtable(mod, &info, sym, symname);
1566 }
Sam Ravnborgd1f25e62008-01-17 21:17:42 +01001567 if (!is_vmlinux(modname) ||
Sam Ravnborg10668222008-01-13 22:21:31 +01001568 (is_vmlinux(modname) && vmlinux_section_warnings))
1569 check_sec_ref(mod, modname, &info);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001570
1571 version = get_modinfo(info.modinfo, info.modinfo_len, "version");
1572 if (version)
1573 maybe_frob_rcs_version(modname, version, info.modinfo,
1574 version - (char *)info.hdr);
1575 if (version || (all_versions && !is_vmlinux(modname)))
1576 get_src_version(modname, mod->srcversion,
1577 sizeof(mod->srcversion)-1);
1578
1579 parse_elf_finish(&info);
1580
Rusty Russell8c8ef422009-03-31 13:05:34 -06001581 /* Our trick to get versioning for module struct etc. - it's
Linus Torvalds1da177e2005-04-16 15:20:36 -07001582 * never passed as an argument to an exported function, so
1583 * the automatic versioning doesn't pick it up, but it's really
1584 * important anyhow */
1585 if (modversions)
Rusty Russell8c8ef422009-03-31 13:05:34 -06001586 mod->unres = alloc_symbol("module_layout", 0, mod->unres);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001587}
1588
1589#define SZ 500
1590
1591/* We first write the generated file into memory using the
1592 * following helper, then compare to the file on disk and
1593 * only update the later if anything changed */
1594
Sam Ravnborg5c3ead82006-01-28 17:19:35 +01001595void __attribute__((format(printf, 2, 3))) buf_printf(struct buffer *buf,
1596 const char *fmt, ...)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001597{
1598 char tmp[SZ];
1599 int len;
1600 va_list ap;
Sam Ravnborg62070fa2006-03-03 16:46:04 +01001601
Linus Torvalds1da177e2005-04-16 15:20:36 -07001602 va_start(ap, fmt);
1603 len = vsnprintf(tmp, SZ, fmt, ap);
Sam Ravnborg7670f022006-03-16 23:04:08 -08001604 buf_write(buf, tmp, len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001605 va_end(ap);
1606}
1607
Sam Ravnborg5c3ead82006-01-28 17:19:35 +01001608void buf_write(struct buffer *buf, const char *s, int len)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001609{
1610 if (buf->size - buf->pos < len) {
Sam Ravnborg7670f022006-03-16 23:04:08 -08001611 buf->size += len + SZ;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001612 buf->p = realloc(buf->p, buf->size);
1613 }
1614 strncpy(buf->p + buf->pos, s, len);
1615 buf->pos += len;
1616}
1617
Sam Ravnborgc96fca22006-07-01 11:44:23 +02001618static void check_for_gpl_usage(enum export exp, const char *m, const char *s)
1619{
1620 const char *e = is_vmlinux(m) ?"":".ko";
1621
1622 switch (exp) {
1623 case export_gpl:
1624 fatal("modpost: GPL-incompatible module %s%s "
1625 "uses GPL-only symbol '%s'\n", m, e, s);
1626 break;
1627 case export_unused_gpl:
1628 fatal("modpost: GPL-incompatible module %s%s "
1629 "uses GPL-only symbol marked UNUSED '%s'\n", m, e, s);
1630 break;
1631 case export_gpl_future:
1632 warn("modpost: GPL-incompatible module %s%s "
1633 "uses future GPL-only symbol '%s'\n", m, e, s);
1634 break;
1635 case export_plain:
1636 case export_unused:
1637 case export_unknown:
1638 /* ignore */
1639 break;
1640 }
1641}
1642
Sam Ravnborgdf578e72008-01-11 19:17:15 +01001643static void check_for_unused(enum export exp, const char *m, const char *s)
Sam Ravnborgc96fca22006-07-01 11:44:23 +02001644{
1645 const char *e = is_vmlinux(m) ?"":".ko";
1646
1647 switch (exp) {
1648 case export_unused:
1649 case export_unused_gpl:
1650 warn("modpost: module %s%s "
1651 "uses symbol '%s' marked UNUSED\n", m, e, s);
1652 break;
1653 default:
1654 /* ignore */
1655 break;
1656 }
1657}
1658
1659static void check_exports(struct module *mod)
Sam Ravnborgb817f6f2006-06-09 21:53:55 +02001660{
1661 struct symbol *s, *exp;
1662
1663 for (s = mod->unres; s; s = s->next) {
Andrew Morton6449bd62006-06-09 20:45:06 -07001664 const char *basename;
Sam Ravnborgb817f6f2006-06-09 21:53:55 +02001665 exp = find_symbol(s->name);
1666 if (!exp || exp->module == mod)
1667 continue;
Andrew Morton6449bd62006-06-09 20:45:06 -07001668 basename = strrchr(mod->name, '/');
Sam Ravnborgb817f6f2006-06-09 21:53:55 +02001669 if (basename)
1670 basename++;
Sam Ravnborgc96fca22006-07-01 11:44:23 +02001671 else
1672 basename = mod->name;
1673 if (!mod->gpl_compatible)
1674 check_for_gpl_usage(exp->export, basename, exp->name);
1675 check_for_unused(exp->export, basename, exp->name);
Sam Ravnborgdf578e72008-01-11 19:17:15 +01001676 }
Sam Ravnborgb817f6f2006-06-09 21:53:55 +02001677}
1678
Sam Ravnborg5c3ead82006-01-28 17:19:35 +01001679/**
1680 * Header for the generated file
1681 **/
1682static void add_header(struct buffer *b, struct module *mod)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001683{
1684 buf_printf(b, "#include <linux/module.h>\n");
1685 buf_printf(b, "#include <linux/vermagic.h>\n");
1686 buf_printf(b, "#include <linux/compiler.h>\n");
1687 buf_printf(b, "\n");
1688 buf_printf(b, "MODULE_INFO(vermagic, VERMAGIC_STRING);\n");
1689 buf_printf(b, "\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001690 buf_printf(b, "struct module __this_module\n");
1691 buf_printf(b, "__attribute__((section(\".gnu.linkonce.this_module\"))) = {\n");
Ustyugov Romanf83b5e32005-09-23 08:42:11 +04001692 buf_printf(b, " .name = KBUILD_MODNAME,\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001693 if (mod->has_init)
1694 buf_printf(b, " .init = init_module,\n");
1695 if (mod->has_cleanup)
1696 buf_printf(b, "#ifdef CONFIG_MODULE_UNLOAD\n"
1697 " .exit = cleanup_module,\n"
1698 "#endif\n");
Roman Zippele61a1c12007-05-09 02:35:15 -07001699 buf_printf(b, " .arch = MODULE_ARCH_INIT,\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001700 buf_printf(b, "};\n");
1701}
1702
Trevor Keith5c725132009-09-22 16:43:38 -07001703static void add_staging_flag(struct buffer *b, const char *name)
Greg Kroah-Hartmana9860bf2008-09-24 14:46:44 -07001704{
1705 static const char *staging_dir = "drivers/staging";
1706
1707 if (strncmp(staging_dir, name, strlen(staging_dir)) == 0)
1708 buf_printf(b, "\nMODULE_INFO(staging, \"Y\");\n");
1709}
1710
Sam Ravnborg5c3ead82006-01-28 17:19:35 +01001711/**
1712 * Record CRCs for unresolved symbols
1713 **/
Kirill Korotaevc53ddac2006-09-07 13:08:54 -07001714static int add_versions(struct buffer *b, struct module *mod)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001715{
1716 struct symbol *s, *exp;
Kirill Korotaevc53ddac2006-09-07 13:08:54 -07001717 int err = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001718
1719 for (s = mod->unres; s; s = s->next) {
1720 exp = find_symbol(s->name);
1721 if (!exp || exp->module == mod) {
Kirill Korotaevc53ddac2006-09-07 13:08:54 -07001722 if (have_vmlinux && !s->weak) {
Matthew Wilcox2a116652006-10-07 05:35:32 -06001723 if (warn_unresolved) {
1724 warn("\"%s\" [%s.ko] undefined!\n",
1725 s->name, mod->name);
1726 } else {
1727 merror("\"%s\" [%s.ko] undefined!\n",
1728 s->name, mod->name);
1729 err = 1;
1730 }
Kirill Korotaevc53ddac2006-09-07 13:08:54 -07001731 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001732 continue;
1733 }
1734 s->module = exp->module;
1735 s->crc_valid = exp->crc_valid;
1736 s->crc = exp->crc;
1737 }
1738
1739 if (!modversions)
Kirill Korotaevc53ddac2006-09-07 13:08:54 -07001740 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001741
1742 buf_printf(b, "\n");
1743 buf_printf(b, "static const struct modversion_info ____versions[]\n");
Adrian Bunk3ff6eec2008-01-24 22:16:20 +01001744 buf_printf(b, "__used\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001745 buf_printf(b, "__attribute__((section(\"__versions\"))) = {\n");
1746
1747 for (s = mod->unres; s; s = s->next) {
Sam Ravnborgdf578e72008-01-11 19:17:15 +01001748 if (!s->module)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001749 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001750 if (!s->crc_valid) {
Sam Ravnborgcb805142006-01-28 16:57:26 +01001751 warn("\"%s\" [%s.ko] has no CRC!\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07001752 s->name, mod->name);
1753 continue;
1754 }
1755 buf_printf(b, "\t{ %#8x, \"%s\" },\n", s->crc, s->name);
1756 }
1757
1758 buf_printf(b, "};\n");
Kirill Korotaevc53ddac2006-09-07 13:08:54 -07001759
1760 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001761}
1762
Sam Ravnborg5c3ead82006-01-28 17:19:35 +01001763static void add_depends(struct buffer *b, struct module *mod,
1764 struct module *modules)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001765{
1766 struct symbol *s;
1767 struct module *m;
1768 int first = 1;
1769
Sam Ravnborgdf578e72008-01-11 19:17:15 +01001770 for (m = modules; m; m = m->next)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001771 m->seen = is_vmlinux(m->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001772
1773 buf_printf(b, "\n");
1774 buf_printf(b, "static const char __module_depends[]\n");
Adrian Bunk3ff6eec2008-01-24 22:16:20 +01001775 buf_printf(b, "__used\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001776 buf_printf(b, "__attribute__((section(\".modinfo\"))) =\n");
1777 buf_printf(b, "\"depends=");
1778 for (s = mod->unres; s; s = s->next) {
Sam Ravnborga61b2df2007-02-26 19:46:52 +01001779 const char *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001780 if (!s->module)
1781 continue;
1782
1783 if (s->module->seen)
1784 continue;
1785
1786 s->module->seen = 1;
Sam Ravnborgdf578e72008-01-11 19:17:15 +01001787 p = strrchr(s->module->name, '/');
1788 if (p)
Sam Ravnborga61b2df2007-02-26 19:46:52 +01001789 p++;
1790 else
1791 p = s->module->name;
1792 buf_printf(b, "%s%s", first ? "" : ",", p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001793 first = 0;
1794 }
1795 buf_printf(b, "\";\n");
1796}
1797
Sam Ravnborg5c3ead82006-01-28 17:19:35 +01001798static void add_srcversion(struct buffer *b, struct module *mod)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001799{
1800 if (mod->srcversion[0]) {
1801 buf_printf(b, "\n");
1802 buf_printf(b, "MODULE_INFO(srcversion, \"%s\");\n",
1803 mod->srcversion);
1804 }
1805}
1806
Sam Ravnborg5c3ead82006-01-28 17:19:35 +01001807static void write_if_changed(struct buffer *b, const char *fname)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001808{
1809 char *tmp;
1810 FILE *file;
1811 struct stat st;
1812
1813 file = fopen(fname, "r");
1814 if (!file)
1815 goto write;
1816
1817 if (fstat(fileno(file), &st) < 0)
1818 goto close_write;
1819
1820 if (st.st_size != b->pos)
1821 goto close_write;
1822
1823 tmp = NOFAIL(malloc(b->pos));
1824 if (fread(tmp, 1, b->pos, file) != b->pos)
1825 goto free_write;
1826
1827 if (memcmp(tmp, b->p, b->pos) != 0)
1828 goto free_write;
1829
1830 free(tmp);
1831 fclose(file);
1832 return;
1833
1834 free_write:
1835 free(tmp);
1836 close_write:
1837 fclose(file);
1838 write:
1839 file = fopen(fname, "w");
1840 if (!file) {
1841 perror(fname);
1842 exit(1);
1843 }
1844 if (fwrite(b->p, 1, b->pos, file) != b->pos) {
1845 perror(fname);
1846 exit(1);
1847 }
1848 fclose(file);
1849}
1850
Ram Paibd5cbce2006-06-08 22:12:53 -07001851/* parse Module.symvers file. line format:
Sam Ravnborg534b89a2006-07-01 10:10:19 +02001852 * 0x12345678<tab>symbol<tab>module[[<tab>export]<tab>something]
Ram Paibd5cbce2006-06-08 22:12:53 -07001853 **/
Sam Ravnborg040fcc82006-01-28 22:15:55 +01001854static void read_dump(const char *fname, unsigned int kernel)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001855{
1856 unsigned long size, pos = 0;
1857 void *file = grab_file(fname, &size);
1858 char *line;
1859
Sam Ravnborgdf578e72008-01-11 19:17:15 +01001860 if (!file)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001861 /* No symbol versions, silently ignore */
1862 return;
1863
1864 while ((line = get_next_line(&pos, file, size))) {
Sam Ravnborg534b89a2006-07-01 10:10:19 +02001865 char *symname, *modname, *d, *export, *end;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001866 unsigned int crc;
1867 struct module *mod;
Sam Ravnborg040fcc82006-01-28 22:15:55 +01001868 struct symbol *s;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001869
1870 if (!(symname = strchr(line, '\t')))
1871 goto fail;
1872 *symname++ = '\0';
1873 if (!(modname = strchr(symname, '\t')))
1874 goto fail;
1875 *modname++ = '\0';
Laurent Riffard9ac545b2006-06-11 08:02:06 +02001876 if ((export = strchr(modname, '\t')) != NULL)
Ram Paibd5cbce2006-06-08 22:12:53 -07001877 *export++ = '\0';
Sam Ravnborg534b89a2006-07-01 10:10:19 +02001878 if (export && ((end = strchr(export, '\t')) != NULL))
1879 *end = '\0';
Linus Torvalds1da177e2005-04-16 15:20:36 -07001880 crc = strtoul(line, &d, 16);
1881 if (*symname == '\0' || *modname == '\0' || *d != '\0')
1882 goto fail;
Sam Ravnborgdf578e72008-01-11 19:17:15 +01001883 mod = find_module(modname);
1884 if (!mod) {
1885 if (is_vmlinux(modname))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001886 have_vmlinux = 1;
Jan Beulich0fa3a882009-03-12 12:28:30 +00001887 mod = new_module(modname);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001888 mod->skip = 1;
1889 }
Ram Paibd5cbce2006-06-08 22:12:53 -07001890 s = sym_add_exported(symname, mod, export_no(export));
Sam Ravnborg8e70c452006-01-28 22:22:33 +01001891 s->kernel = kernel;
1892 s->preloaded = 1;
Ram Paibd5cbce2006-06-08 22:12:53 -07001893 sym_update_crc(symname, mod, crc, export_no(export));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001894 }
1895 return;
1896fail:
1897 fatal("parse error in symbol dump file\n");
1898}
1899
Sam Ravnborg040fcc82006-01-28 22:15:55 +01001900/* For normal builds always dump all symbols.
1901 * For external modules only dump symbols
1902 * that are not read from kernel Module.symvers.
1903 **/
1904static int dump_sym(struct symbol *sym)
1905{
1906 if (!external_module)
1907 return 1;
1908 if (sym->vmlinux || sym->kernel)
1909 return 0;
1910 return 1;
1911}
Sam Ravnborg62070fa2006-03-03 16:46:04 +01001912
Sam Ravnborg5c3ead82006-01-28 17:19:35 +01001913static void write_dump(const char *fname)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001914{
1915 struct buffer buf = { };
1916 struct symbol *symbol;
1917 int n;
1918
1919 for (n = 0; n < SYMBOL_HASH_SIZE ; n++) {
1920 symbol = symbolhash[n];
1921 while (symbol) {
Sam Ravnborg040fcc82006-01-28 22:15:55 +01001922 if (dump_sym(symbol))
Ram Paibd5cbce2006-06-08 22:12:53 -07001923 buf_printf(&buf, "0x%08x\t%s\t%s\t%s\n",
Sam Ravnborg62070fa2006-03-03 16:46:04 +01001924 symbol->crc, symbol->name,
Ram Paibd5cbce2006-06-08 22:12:53 -07001925 symbol->module->name,
1926 export_str(symbol->export));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001927 symbol = symbol->next;
1928 }
1929 }
1930 write_if_changed(&buf, fname);
1931}
1932
Richard Hacker2d04b5a2008-02-28 09:40:52 +01001933struct ext_sym_list {
1934 struct ext_sym_list *next;
1935 const char *file;
1936};
1937
Sam Ravnborg5c3ead82006-01-28 17:19:35 +01001938int main(int argc, char **argv)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001939{
1940 struct module *mod;
1941 struct buffer buf = { };
Sam Ravnborg040fcc82006-01-28 22:15:55 +01001942 char *kernel_read = NULL, *module_read = NULL;
1943 char *dump_write = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001944 int opt;
Kirill Korotaevc53ddac2006-09-07 13:08:54 -07001945 int err;
Richard Hacker2d04b5a2008-02-28 09:40:52 +01001946 struct ext_sym_list *extsym_iter;
1947 struct ext_sym_list *extsym_start = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001948
Richard Hacker2d04b5a2008-02-28 09:40:52 +01001949 while ((opt = getopt(argc, argv, "i:I:e:cmsSo:awM:K:")) != -1) {
Sam Ravnborgdf578e72008-01-11 19:17:15 +01001950 switch (opt) {
1951 case 'i':
1952 kernel_read = optarg;
1953 break;
1954 case 'I':
1955 module_read = optarg;
1956 external_module = 1;
1957 break;
Sam Ravnborg4ce6efe2008-03-23 21:38:54 +01001958 case 'c':
1959 cross_build = 1;
1960 break;
Richard Hacker2d04b5a2008-02-28 09:40:52 +01001961 case 'e':
1962 external_module = 1;
1963 extsym_iter =
1964 NOFAIL(malloc(sizeof(*extsym_iter)));
1965 extsym_iter->next = extsym_start;
1966 extsym_iter->file = optarg;
1967 extsym_start = extsym_iter;
1968 break;
Sam Ravnborgdf578e72008-01-11 19:17:15 +01001969 case 'm':
1970 modversions = 1;
1971 break;
1972 case 'o':
1973 dump_write = optarg;
1974 break;
1975 case 'a':
1976 all_versions = 1;
1977 break;
1978 case 's':
1979 vmlinux_section_warnings = 0;
1980 break;
Sam Ravnborg588ccd72008-01-24 21:12:37 +01001981 case 'S':
1982 sec_mismatch_verbose = 0;
1983 break;
Sam Ravnborgdf578e72008-01-11 19:17:15 +01001984 case 'w':
1985 warn_unresolved = 1;
1986 break;
1987 default:
1988 exit(1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001989 }
1990 }
1991
Sam Ravnborg040fcc82006-01-28 22:15:55 +01001992 if (kernel_read)
1993 read_dump(kernel_read, 1);
1994 if (module_read)
1995 read_dump(module_read, 0);
Richard Hacker2d04b5a2008-02-28 09:40:52 +01001996 while (extsym_start) {
1997 read_dump(extsym_start->file, 0);
1998 extsym_iter = extsym_start->next;
1999 free(extsym_start);
2000 extsym_start = extsym_iter;
2001 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002002
Sam Ravnborgdf578e72008-01-11 19:17:15 +01002003 while (optind < argc)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002004 read_symbols(argv[optind++]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002005
2006 for (mod = modules; mod; mod = mod->next) {
2007 if (mod->skip)
2008 continue;
Sam Ravnborgc96fca22006-07-01 11:44:23 +02002009 check_exports(mod);
Sam Ravnborgb817f6f2006-06-09 21:53:55 +02002010 }
2011
Kirill Korotaevc53ddac2006-09-07 13:08:54 -07002012 err = 0;
2013
Sam Ravnborgb817f6f2006-06-09 21:53:55 +02002014 for (mod = modules; mod; mod = mod->next) {
Andi Kleen666ab412007-11-22 03:43:10 +01002015 char fname[strlen(mod->name) + 10];
2016
Sam Ravnborgb817f6f2006-06-09 21:53:55 +02002017 if (mod->skip)
2018 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002019
2020 buf.pos = 0;
2021
2022 add_header(&buf, mod);
Greg Kroah-Hartmana9860bf2008-09-24 14:46:44 -07002023 add_staging_flag(&buf, mod->name);
Kirill Korotaevc53ddac2006-09-07 13:08:54 -07002024 err |= add_versions(&buf, mod);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002025 add_depends(&buf, mod, modules);
2026 add_moddevtable(&buf, mod);
2027 add_srcversion(&buf, mod);
2028
2029 sprintf(fname, "%s.mod.c", mod->name);
2030 write_if_changed(&buf, fname);
2031 }
2032
2033 if (dump_write)
2034 write_dump(dump_write);
Sam Ravnborg588ccd72008-01-24 21:12:37 +01002035 if (sec_mismatch_count && !sec_mismatch_verbose)
Geert Uytterhoeven7c0ac492008-02-05 11:38:49 +01002036 warn("modpost: Found %d section mismatch(es).\n"
2037 "To see full details build your kernel with:\n"
2038 "'make CONFIG_DEBUG_SECTION_MISMATCH=y'\n",
2039 sec_mismatch_count);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002040
Kirill Korotaevc53ddac2006-09-07 13:08:54 -07002041 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002042}