blob: 7c87267b6ff0c72c62be5e1b70dc5ea80b3185c5 [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 Ravnborg382168f2006-02-26 20:11:17 +01005 * Copyright 2006 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
14#include <ctype.h>
15#include "modpost.h"
Sam Ravnborgb817f6f2006-06-09 21:53:55 +020016#include "../../include/linux/license.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070017
18/* Are we using CONFIG_MODVERSIONS? */
19int modversions = 0;
20/* Warn about undefined symbols? (do so if we have vmlinux) */
21int have_vmlinux = 0;
22/* Is CONFIG_MODULE_SRCVERSION_ALL set? */
23static int all_versions = 0;
Sam Ravnborg040fcc82006-01-28 22:15:55 +010024/* If we are modposting external module set to 1 */
25static int external_module = 0;
Kirill Korotaevc53ddac2006-09-07 13:08:54 -070026/* Only warn about unresolved symbols */
27static int warn_unresolved = 0;
Ram Paibd5cbce2006-06-08 22:12:53 -070028/* How a symbol is exported */
Sam Ravnborgc96fca22006-07-01 11:44:23 +020029enum export {
30 export_plain, export_unused, export_gpl,
31 export_unused_gpl, export_gpl_future, export_unknown
32};
Linus Torvalds1da177e2005-04-16 15:20:36 -070033
Sam Ravnborg5c3ead82006-01-28 17:19:35 +010034void fatal(const char *fmt, ...)
Linus Torvalds1da177e2005-04-16 15:20:36 -070035{
36 va_list arglist;
37
38 fprintf(stderr, "FATAL: ");
39
40 va_start(arglist, fmt);
41 vfprintf(stderr, fmt, arglist);
42 va_end(arglist);
43
44 exit(1);
45}
46
Sam Ravnborg5c3ead82006-01-28 17:19:35 +010047void warn(const char *fmt, ...)
Linus Torvalds1da177e2005-04-16 15:20:36 -070048{
49 va_list arglist;
50
51 fprintf(stderr, "WARNING: ");
52
53 va_start(arglist, fmt);
54 vfprintf(stderr, fmt, arglist);
55 va_end(arglist);
56}
57
Matthew Wilcox2a116652006-10-07 05:35:32 -060058void merror(const char *fmt, ...)
59{
60 va_list arglist;
61
62 fprintf(stderr, "ERROR: ");
63
64 va_start(arglist, fmt);
65 vfprintf(stderr, fmt, arglist);
66 va_end(arglist);
67}
68
Sam Ravnborg040fcc82006-01-28 22:15:55 +010069static int is_vmlinux(const char *modname)
70{
71 const char *myname;
72
73 if ((myname = strrchr(modname, '/')))
74 myname++;
75 else
76 myname = modname;
77
78 return strcmp(myname, "vmlinux") == 0;
79}
80
Linus Torvalds1da177e2005-04-16 15:20:36 -070081void *do_nofail(void *ptr, const char *expr)
82{
83 if (!ptr) {
84 fatal("modpost: Memory allocation failure: %s.\n", expr);
85 }
86 return ptr;
87}
88
89/* A list of all modules we processed */
90
91static struct module *modules;
92
Sam Ravnborg5c3ead82006-01-28 17:19:35 +010093static struct module *find_module(char *modname)
Linus Torvalds1da177e2005-04-16 15:20:36 -070094{
95 struct module *mod;
96
97 for (mod = modules; mod; mod = mod->next)
98 if (strcmp(mod->name, modname) == 0)
99 break;
100 return mod;
101}
102
Sam Ravnborg5c3ead82006-01-28 17:19:35 +0100103static struct module *new_module(char *modname)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700104{
105 struct module *mod;
106 char *p, *s;
Sam Ravnborg62070fa2006-03-03 16:46:04 +0100107
Linus Torvalds1da177e2005-04-16 15:20:36 -0700108 mod = NOFAIL(malloc(sizeof(*mod)));
109 memset(mod, 0, sizeof(*mod));
110 p = NOFAIL(strdup(modname));
111
112 /* strip trailing .o */
113 if ((s = strrchr(p, '.')) != NULL)
114 if (strcmp(s, ".o") == 0)
115 *s = '\0';
116
117 /* add to list */
118 mod->name = p;
Sam Ravnborgb817f6f2006-06-09 21:53:55 +0200119 mod->gpl_compatible = -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700120 mod->next = modules;
121 modules = mod;
122
123 return mod;
124}
125
126/* A hash of all exported symbols,
127 * struct symbol is also used for lists of unresolved symbols */
128
129#define SYMBOL_HASH_SIZE 1024
130
131struct symbol {
132 struct symbol *next;
133 struct module *module;
134 unsigned int crc;
135 int crc_valid;
136 unsigned int weak:1;
Sam Ravnborg040fcc82006-01-28 22:15:55 +0100137 unsigned int vmlinux:1; /* 1 if symbol is defined in vmlinux */
138 unsigned int kernel:1; /* 1 if symbol is from kernel
139 * (only for external modules) **/
Sam Ravnborg8e70c452006-01-28 22:22:33 +0100140 unsigned int preloaded:1; /* 1 if symbol from Module.symvers */
Ram Paibd5cbce2006-06-08 22:12:53 -0700141 enum export export; /* Type of export */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700142 char name[0];
143};
144
145static struct symbol *symbolhash[SYMBOL_HASH_SIZE];
146
147/* This is based on the hash agorithm from gdbm, via tdb */
148static inline unsigned int tdb_hash(const char *name)
149{
150 unsigned value; /* Used to compute the hash value. */
151 unsigned i; /* Used to cycle through random values. */
152
153 /* Set the initial value from the key size. */
154 for (value = 0x238F13AF * strlen(name), i=0; name[i]; i++)
155 value = (value + (((unsigned char *)name)[i] << (i*5 % 24)));
156
157 return (1103515243 * value + 12345);
158}
159
Sam Ravnborg5c3ead82006-01-28 17:19:35 +0100160/**
161 * Allocate a new symbols for use in the hash of exported symbols or
162 * the list of unresolved symbols per module
163 **/
164static struct symbol *alloc_symbol(const char *name, unsigned int weak,
165 struct symbol *next)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700166{
167 struct symbol *s = NOFAIL(malloc(sizeof(*s) + strlen(name) + 1));
168
169 memset(s, 0, sizeof(*s));
170 strcpy(s->name, name);
171 s->weak = weak;
172 s->next = next;
173 return s;
174}
175
176/* For the hash of exported symbols */
Ram Paibd5cbce2006-06-08 22:12:53 -0700177static struct symbol *new_symbol(const char *name, struct module *module,
178 enum export export)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700179{
180 unsigned int hash;
181 struct symbol *new;
182
183 hash = tdb_hash(name) % SYMBOL_HASH_SIZE;
184 new = symbolhash[hash] = alloc_symbol(name, 0, symbolhash[hash]);
185 new->module = module;
Ram Paibd5cbce2006-06-08 22:12:53 -0700186 new->export = export;
Sam Ravnborg040fcc82006-01-28 22:15:55 +0100187 return new;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700188}
189
Sam Ravnborg5c3ead82006-01-28 17:19:35 +0100190static struct symbol *find_symbol(const char *name)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700191{
192 struct symbol *s;
193
194 /* For our purposes, .foo matches foo. PPC64 needs this. */
195 if (name[0] == '.')
196 name++;
197
198 for (s = symbolhash[tdb_hash(name) % SYMBOL_HASH_SIZE]; s; s=s->next) {
199 if (strcmp(s->name, name) == 0)
200 return s;
201 }
202 return NULL;
203}
204
Ram Paibd5cbce2006-06-08 22:12:53 -0700205static struct {
206 const char *str;
207 enum export export;
208} export_list[] = {
209 { .str = "EXPORT_SYMBOL", .export = export_plain },
Sam Ravnborgc96fca22006-07-01 11:44:23 +0200210 { .str = "EXPORT_UNUSED_SYMBOL", .export = export_unused },
Ram Paibd5cbce2006-06-08 22:12:53 -0700211 { .str = "EXPORT_SYMBOL_GPL", .export = export_gpl },
Sam Ravnborgc96fca22006-07-01 11:44:23 +0200212 { .str = "EXPORT_UNUSED_SYMBOL_GPL", .export = export_unused_gpl },
Ram Paibd5cbce2006-06-08 22:12:53 -0700213 { .str = "EXPORT_SYMBOL_GPL_FUTURE", .export = export_gpl_future },
214 { .str = "(unknown)", .export = export_unknown },
215};
216
217
218static const char *export_str(enum export ex)
219{
220 return export_list[ex].str;
221}
222
223static enum export export_no(const char * s)
224{
225 int i;
Sam Ravnborg534b89a2006-07-01 10:10:19 +0200226 if (!s)
227 return export_unknown;
Ram Paibd5cbce2006-06-08 22:12:53 -0700228 for (i = 0; export_list[i].export != export_unknown; i++) {
229 if (strcmp(export_list[i].str, s) == 0)
230 return export_list[i].export;
231 }
232 return export_unknown;
233}
234
235static enum export export_from_sec(struct elf_info *elf, Elf_Section sec)
236{
237 if (sec == elf->export_sec)
238 return export_plain;
Sam Ravnborgc96fca22006-07-01 11:44:23 +0200239 else if (sec == elf->export_unused_sec)
240 return export_unused;
Ram Paibd5cbce2006-06-08 22:12:53 -0700241 else if (sec == elf->export_gpl_sec)
242 return export_gpl;
Sam Ravnborgc96fca22006-07-01 11:44:23 +0200243 else if (sec == elf->export_unused_gpl_sec)
244 return export_unused_gpl;
Ram Paibd5cbce2006-06-08 22:12:53 -0700245 else if (sec == elf->export_gpl_future_sec)
246 return export_gpl_future;
247 else
248 return export_unknown;
249}
250
Sam Ravnborg5c3ead82006-01-28 17:19:35 +0100251/**
252 * Add an exported symbol - it may have already been added without a
253 * CRC, in this case just update the CRC
254 **/
Ram Paibd5cbce2006-06-08 22:12:53 -0700255static struct symbol *sym_add_exported(const char *name, struct module *mod,
256 enum export export)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700257{
258 struct symbol *s = find_symbol(name);
259
260 if (!s) {
Ram Paibd5cbce2006-06-08 22:12:53 -0700261 s = new_symbol(name, mod, export);
Sam Ravnborg8e70c452006-01-28 22:22:33 +0100262 } else {
263 if (!s->preloaded) {
Sam Ravnborg7b75b132006-03-05 13:48:58 +0100264 warn("%s: '%s' exported twice. Previous export "
Sam Ravnborg8e70c452006-01-28 22:22:33 +0100265 "was in %s%s\n", mod->name, name,
266 s->module->name,
267 is_vmlinux(s->module->name) ?"":".ko");
268 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700269 }
Sam Ravnborg8e70c452006-01-28 22:22:33 +0100270 s->preloaded = 0;
Sam Ravnborg040fcc82006-01-28 22:15:55 +0100271 s->vmlinux = is_vmlinux(mod->name);
272 s->kernel = 0;
Ram Paibd5cbce2006-06-08 22:12:53 -0700273 s->export = export;
Sam Ravnborg040fcc82006-01-28 22:15:55 +0100274 return s;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700275}
276
Sam Ravnborg040fcc82006-01-28 22:15:55 +0100277static void sym_update_crc(const char *name, struct module *mod,
Ram Paibd5cbce2006-06-08 22:12:53 -0700278 unsigned int crc, enum export export)
Sam Ravnborg040fcc82006-01-28 22:15:55 +0100279{
280 struct symbol *s = find_symbol(name);
281
282 if (!s)
Ram Paibd5cbce2006-06-08 22:12:53 -0700283 s = new_symbol(name, mod, export);
Sam Ravnborg040fcc82006-01-28 22:15:55 +0100284 s->crc = crc;
285 s->crc_valid = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700286}
287
Sam Ravnborg5c3ead82006-01-28 17:19:35 +0100288void *grab_file(const char *filename, unsigned long *size)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700289{
290 struct stat st;
291 void *map;
292 int fd;
293
294 fd = open(filename, O_RDONLY);
295 if (fd < 0 || fstat(fd, &st) != 0)
296 return NULL;
297
298 *size = st.st_size;
299 map = mmap(NULL, *size, PROT_READ|PROT_WRITE, MAP_PRIVATE, fd, 0);
300 close(fd);
301
302 if (map == MAP_FAILED)
303 return NULL;
304 return map;
305}
306
Sam Ravnborg5c3ead82006-01-28 17:19:35 +0100307/**
308 * Return a copy of the next line in a mmap'ed file.
309 * spaces in the beginning of the line is trimmed away.
310 * Return a pointer to a static buffer.
311 **/
312char* get_next_line(unsigned long *pos, void *file, unsigned long size)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700313{
314 static char line[4096];
315 int skip = 1;
316 size_t len = 0;
317 signed char *p = (signed char *)file + *pos;
318 char *s = line;
319
320 for (; *pos < size ; (*pos)++)
321 {
322 if (skip && isspace(*p)) {
323 p++;
324 continue;
325 }
326 skip = 0;
327 if (*p != '\n' && (*pos < size)) {
328 len++;
329 *s++ = *p++;
330 if (len > 4095)
331 break; /* Too long, stop */
332 } else {
333 /* End of string */
334 *s = '\0';
335 return line;
336 }
337 }
338 /* End of buffer */
339 return NULL;
340}
341
Sam Ravnborg5c3ead82006-01-28 17:19:35 +0100342void release_file(void *file, unsigned long size)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700343{
344 munmap(file, size);
345}
346
Sam Ravnborg85bd2fd2007-02-26 15:33:52 +0100347static int parse_elf(struct elf_info *info, const char *filename)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700348{
349 unsigned int i;
Sam Ravnborg85bd2fd2007-02-26 15:33:52 +0100350 Elf_Ehdr *hdr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700351 Elf_Shdr *sechdrs;
352 Elf_Sym *sym;
353
354 hdr = grab_file(filename, &info->size);
355 if (!hdr) {
356 perror(filename);
Sam Ravnborg6803dc02006-06-24 23:46:54 +0200357 exit(1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700358 }
359 info->hdr = hdr;
Sam Ravnborg85bd2fd2007-02-26 15:33:52 +0100360 if (info->size < sizeof(*hdr)) {
361 /* file too small, assume this is an empty .o file */
362 return 0;
363 }
364 /* Is this a valid ELF file? */
365 if ((hdr->e_ident[EI_MAG0] != ELFMAG0) ||
366 (hdr->e_ident[EI_MAG1] != ELFMAG1) ||
367 (hdr->e_ident[EI_MAG2] != ELFMAG2) ||
368 (hdr->e_ident[EI_MAG3] != ELFMAG3)) {
369 /* Not an ELF file - silently ignore it */
370 return 0;
371 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700372 /* Fix endianness in ELF header */
373 hdr->e_shoff = TO_NATIVE(hdr->e_shoff);
374 hdr->e_shstrndx = TO_NATIVE(hdr->e_shstrndx);
375 hdr->e_shnum = TO_NATIVE(hdr->e_shnum);
376 hdr->e_machine = TO_NATIVE(hdr->e_machine);
377 sechdrs = (void *)hdr + hdr->e_shoff;
378 info->sechdrs = sechdrs;
379
380 /* Fix endianness in section headers */
381 for (i = 0; i < hdr->e_shnum; i++) {
382 sechdrs[i].sh_type = TO_NATIVE(sechdrs[i].sh_type);
383 sechdrs[i].sh_offset = TO_NATIVE(sechdrs[i].sh_offset);
384 sechdrs[i].sh_size = TO_NATIVE(sechdrs[i].sh_size);
385 sechdrs[i].sh_link = TO_NATIVE(sechdrs[i].sh_link);
386 sechdrs[i].sh_name = TO_NATIVE(sechdrs[i].sh_name);
Atsushi Nemotof892b7d2007-05-17 01:14:38 +0900387 sechdrs[i].sh_info = TO_NATIVE(sechdrs[i].sh_info);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700388 }
389 /* Find symbol table. */
390 for (i = 1; i < hdr->e_shnum; i++) {
391 const char *secstrings
392 = (void *)hdr + sechdrs[hdr->e_shstrndx].sh_offset;
Ram Paibd5cbce2006-06-08 22:12:53 -0700393 const char *secname;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700394
Sam Ravnborg85bd2fd2007-02-26 15:33:52 +0100395 if (sechdrs[i].sh_offset > info->size) {
396 fatal("%s is truncated. sechdrs[i].sh_offset=%u > sizeof(*hrd)=%ul\n", filename, (unsigned int)sechdrs[i].sh_offset, sizeof(*hdr));
397 return 0;
398 }
Ram Paibd5cbce2006-06-08 22:12:53 -0700399 secname = secstrings + sechdrs[i].sh_name;
400 if (strcmp(secname, ".modinfo") == 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700401 info->modinfo = (void *)hdr + sechdrs[i].sh_offset;
402 info->modinfo_len = sechdrs[i].sh_size;
Ram Paibd5cbce2006-06-08 22:12:53 -0700403 } else if (strcmp(secname, "__ksymtab") == 0)
404 info->export_sec = i;
Sam Ravnborgc96fca22006-07-01 11:44:23 +0200405 else if (strcmp(secname, "__ksymtab_unused") == 0)
406 info->export_unused_sec = i;
Ram Paibd5cbce2006-06-08 22:12:53 -0700407 else if (strcmp(secname, "__ksymtab_gpl") == 0)
408 info->export_gpl_sec = i;
Sam Ravnborgc96fca22006-07-01 11:44:23 +0200409 else if (strcmp(secname, "__ksymtab_unused_gpl") == 0)
410 info->export_unused_gpl_sec = i;
Ram Paibd5cbce2006-06-08 22:12:53 -0700411 else if (strcmp(secname, "__ksymtab_gpl_future") == 0)
412 info->export_gpl_future_sec = i;
413
Linus Torvalds1da177e2005-04-16 15:20:36 -0700414 if (sechdrs[i].sh_type != SHT_SYMTAB)
415 continue;
416
417 info->symtab_start = (void *)hdr + sechdrs[i].sh_offset;
Sam Ravnborg62070fa2006-03-03 16:46:04 +0100418 info->symtab_stop = (void *)hdr + sechdrs[i].sh_offset
Linus Torvalds1da177e2005-04-16 15:20:36 -0700419 + sechdrs[i].sh_size;
Sam Ravnborg62070fa2006-03-03 16:46:04 +0100420 info->strtab = (void *)hdr +
Linus Torvalds1da177e2005-04-16 15:20:36 -0700421 sechdrs[sechdrs[i].sh_link].sh_offset;
422 }
423 if (!info->symtab_start) {
Sam Ravnborgcb805142006-01-28 16:57:26 +0100424 fatal("%s has no symtab?\n", filename);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700425 }
426 /* Fix endianness in symbols */
427 for (sym = info->symtab_start; sym < info->symtab_stop; sym++) {
428 sym->st_shndx = TO_NATIVE(sym->st_shndx);
429 sym->st_name = TO_NATIVE(sym->st_name);
430 sym->st_value = TO_NATIVE(sym->st_value);
431 sym->st_size = TO_NATIVE(sym->st_size);
432 }
Sam Ravnborg85bd2fd2007-02-26 15:33:52 +0100433 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700434}
435
Sam Ravnborg5c3ead82006-01-28 17:19:35 +0100436static void parse_elf_finish(struct elf_info *info)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700437{
438 release_file(info->hdr, info->size);
439}
440
Luke Yangf7b05e62006-03-02 18:35:31 +0800441#define CRC_PFX MODULE_SYMBOL_PREFIX "__crc_"
442#define KSYMTAB_PFX MODULE_SYMBOL_PREFIX "__ksymtab_"
Linus Torvalds1da177e2005-04-16 15:20:36 -0700443
Sam Ravnborg5c3ead82006-01-28 17:19:35 +0100444static void handle_modversions(struct module *mod, struct elf_info *info,
445 Elf_Sym *sym, const char *symname)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700446{
447 unsigned int crc;
Ram Paibd5cbce2006-06-08 22:12:53 -0700448 enum export export = export_from_sec(info, sym->st_shndx);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700449
450 switch (sym->st_shndx) {
451 case SHN_COMMON:
Sam Ravnborgcb805142006-01-28 16:57:26 +0100452 warn("\"%s\" [%s] is COMMON symbol\n", symname, mod->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700453 break;
454 case SHN_ABS:
455 /* CRC'd symbol */
456 if (memcmp(symname, CRC_PFX, strlen(CRC_PFX)) == 0) {
457 crc = (unsigned int) sym->st_value;
Ram Paibd5cbce2006-06-08 22:12:53 -0700458 sym_update_crc(symname + strlen(CRC_PFX), mod, crc,
459 export);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700460 }
461 break;
462 case SHN_UNDEF:
463 /* undefined symbol */
464 if (ELF_ST_BIND(sym->st_info) != STB_GLOBAL &&
465 ELF_ST_BIND(sym->st_info) != STB_WEAK)
466 break;
467 /* ignore global offset table */
468 if (strcmp(symname, "_GLOBAL_OFFSET_TABLE_") == 0)
469 break;
470 /* ignore __this_module, it will be resolved shortly */
471 if (strcmp(symname, MODULE_SYMBOL_PREFIX "__this_module") == 0)
472 break;
Ben Colline8d529012005-08-19 13:44:57 -0700473/* cope with newer glibc (2.3.4 or higher) STT_ definition in elf.h */
474#if defined(STT_REGISTER) || defined(STT_SPARC_REGISTER)
475/* add compatibility with older glibc */
476#ifndef STT_SPARC_REGISTER
477#define STT_SPARC_REGISTER STT_REGISTER
478#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700479 if (info->hdr->e_machine == EM_SPARC ||
480 info->hdr->e_machine == EM_SPARCV9) {
481 /* Ignore register directives. */
Ben Colline8d529012005-08-19 13:44:57 -0700482 if (ELF_ST_TYPE(sym->st_info) == STT_SPARC_REGISTER)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700483 break;
Sam Ravnborg62070fa2006-03-03 16:46:04 +0100484 if (symname[0] == '.') {
485 char *munged = strdup(symname);
486 munged[0] = '_';
487 munged[1] = toupper(munged[1]);
488 symname = munged;
489 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700490 }
491#endif
Sam Ravnborg62070fa2006-03-03 16:46:04 +0100492
Linus Torvalds1da177e2005-04-16 15:20:36 -0700493 if (memcmp(symname, MODULE_SYMBOL_PREFIX,
494 strlen(MODULE_SYMBOL_PREFIX)) == 0)
495 mod->unres = alloc_symbol(symname +
496 strlen(MODULE_SYMBOL_PREFIX),
497 ELF_ST_BIND(sym->st_info) == STB_WEAK,
498 mod->unres);
499 break;
500 default:
501 /* All exported symbols */
502 if (memcmp(symname, KSYMTAB_PFX, strlen(KSYMTAB_PFX)) == 0) {
Ram Paibd5cbce2006-06-08 22:12:53 -0700503 sym_add_exported(symname + strlen(KSYMTAB_PFX), mod,
504 export);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700505 }
506 if (strcmp(symname, MODULE_SYMBOL_PREFIX "init_module") == 0)
507 mod->has_init = 1;
508 if (strcmp(symname, MODULE_SYMBOL_PREFIX "cleanup_module") == 0)
509 mod->has_cleanup = 1;
510 break;
511 }
512}
513
Sam Ravnborg5c3ead82006-01-28 17:19:35 +0100514/**
515 * Parse tag=value strings from .modinfo section
516 **/
Linus Torvalds1da177e2005-04-16 15:20:36 -0700517static char *next_string(char *string, unsigned long *secsize)
518{
519 /* Skip non-zero chars */
520 while (string[0]) {
521 string++;
522 if ((*secsize)-- <= 1)
523 return NULL;
524 }
525
526 /* Skip any zero padding. */
527 while (!string[0]) {
528 string++;
529 if ((*secsize)-- <= 1)
530 return NULL;
531 }
532 return string;
533}
534
Sam Ravnborgb817f6f2006-06-09 21:53:55 +0200535static char *get_next_modinfo(void *modinfo, unsigned long modinfo_len,
536 const char *tag, char *info)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700537{
538 char *p;
539 unsigned int taglen = strlen(tag);
540 unsigned long size = modinfo_len;
541
Sam Ravnborgb817f6f2006-06-09 21:53:55 +0200542 if (info) {
543 size -= info - (char *)modinfo;
544 modinfo = next_string(info, &size);
545 }
546
Linus Torvalds1da177e2005-04-16 15:20:36 -0700547 for (p = modinfo; p; p = next_string(p, &size)) {
548 if (strncmp(p, tag, taglen) == 0 && p[taglen] == '=')
549 return p + taglen + 1;
550 }
551 return NULL;
552}
553
Sam Ravnborgb817f6f2006-06-09 21:53:55 +0200554static char *get_modinfo(void *modinfo, unsigned long modinfo_len,
555 const char *tag)
556
557{
558 return get_next_modinfo(modinfo, modinfo_len, tag, NULL);
559}
560
Sam Ravnborg93684d32006-02-19 11:53:35 +0100561/**
Sam Ravnborg4c8fbca2006-02-26 22:18:11 +0100562 * Test if string s ends in string sub
563 * return 0 if match
564 **/
565static int strrcmp(const char *s, const char *sub)
566{
567 int slen, sublen;
Sam Ravnborg62070fa2006-03-03 16:46:04 +0100568
Sam Ravnborg4c8fbca2006-02-26 22:18:11 +0100569 if (!s || !sub)
570 return 1;
Sam Ravnborg62070fa2006-03-03 16:46:04 +0100571
Sam Ravnborg4c8fbca2006-02-26 22:18:11 +0100572 slen = strlen(s);
573 sublen = strlen(sub);
Sam Ravnborg62070fa2006-03-03 16:46:04 +0100574
Sam Ravnborg4c8fbca2006-02-26 22:18:11 +0100575 if ((slen == 0) || (sublen == 0))
576 return 1;
577
578 if (sublen > slen)
579 return 1;
580
581 return memcmp(s + slen - sublen, sub, sublen);
582}
583
584/**
585 * Whitelist to allow certain references to pass with no warning.
Sam Ravnborg0e0d3142007-05-17 20:14:48 +0200586 *
587 * Pattern 0:
588 * Do not warn if funtion/data are marked with __init_refok/__initdata_refok.
589 * The pattern is identified by:
590 * fromsec = .text.init.refok | .data.init.refok
591 *
Sam Ravnborg4c8fbca2006-02-26 22:18:11 +0100592 * Pattern 1:
593 * If a module parameter is declared __initdata and permissions=0
594 * then this is legal despite the warning generated.
595 * We cannot see value of permissions here, so just ignore
596 * this pattern.
597 * The pattern is identified by:
598 * tosec = .init.data
Sam Ravnborg9209aed2006-03-05 00:16:26 +0100599 * fromsec = .data*
Sam Ravnborg4c8fbca2006-02-26 22:18:11 +0100600 * atsym =__param*
Sam Ravnborg62070fa2006-03-03 16:46:04 +0100601 *
Sam Ravnborg4c8fbca2006-02-26 22:18:11 +0100602 * Pattern 2:
Randy Dunlap72ee59b2006-04-15 11:17:12 -0700603 * Many drivers utilise a *driver container with references to
Sam Ravnborg4c8fbca2006-02-26 22:18:11 +0100604 * add, remove, probe functions etc.
605 * These functions may often be marked __init and we do not want to
606 * warn here.
607 * the pattern is identified by:
Sam Ravnborg5ecdd0f2006-04-14 23:54:13 +0200608 * tosec = .init.text | .exit.text | .init.data
Sam Ravnborg4c8fbca2006-02-26 22:18:11 +0100609 * fromsec = .data
Sam Ravnborgaae5f662007-02-26 16:45:41 +0100610 * atsym = *driver, *_template, *_sht, *_ops, *_probe, *probe_one, *_console
Vivek Goyalee6a8542007-01-11 01:52:44 +0100611 *
612 * Pattern 3:
Sam Ravnborg9bf8cb92007-02-26 17:49:06 +0100613 * Whitelist all references from .pci_fixup* section to .init.text
614 * This is part of the PCI init when built-in
615 *
616 * Pattern 4:
617 * Whitelist all refereces from .text.head to .init.data
618 * Whitelist all refereces from .text.head to .init.text
619 *
620 * Pattern 5:
Vivek Goyalee6a8542007-01-11 01:52:44 +0100621 * Some symbols belong to init section but still it is ok to reference
622 * these from non-init sections as these symbols don't have any memory
623 * allocated for them and symbol address and value are same. So even
624 * if init section is freed, its ok to reference those symbols.
625 * For ex. symbols marking the init section boundaries.
626 * This pattern is identified by
627 * refsymname = __init_begin, _sinittext, _einittext
Sam Ravnborg9bf8cb92007-02-26 17:49:06 +0100628 *
629 * Pattern 6:
Sam Ravnborgaae5f662007-02-26 16:45:41 +0100630 * During the early init phase we have references from .init.text to
631 * .text we have an intended section mismatch - do not warn about it.
632 * See kernel_init() in init/main.c
633 * tosec = .init.text
634 * fromsec = .text
635 * atsym = kernel_init
Sam Ravnborg5a4910f2007-02-27 09:14:58 +0100636 *
637 * Pattern 7:
638 * Logos used in drivers/video/logo reside in __initdata but the
639 * funtion that references them are EXPORT_SYMBOL() so cannot be
640 * marker __init. So we whitelist them here.
641 * The pattern is:
642 * tosec = .init.data
643 * fromsec = .text*
644 * refsymname = logo_
Sam Ravnborgb4d51712007-04-29 20:53:01 +0200645 *
646 * Pattern 8:
647 * Symbols contained in .paravirtprobe may safely reference .init.text.
648 * The pattern is:
649 * tosec = .init.text
650 * fromsec = .paravirtprobe
651 *
Yasunori Goto72280ed2007-05-08 00:23:10 -0700652 * Pattern 9:
653 * Some of functions are common code between boot time and hotplug
654 * time. The bootmem allocater is called only boot time in its
655 * functions. So it's ok to reference.
656 * tosec = .init.text
657 *
658 * Pattern 10:
Li Yangcd547792007-05-14 18:04:28 +0800659 * ia64 has machvec table for each platform and
660 * powerpc has a machine desc table for each platform.
661 * It is mixture of function pointers of .init.text and .text.
662 * fromsec = .machvec | .machine.desc
Sam Ravnborg4c8fbca2006-02-26 22:18:11 +0100663 **/
Magnus Damm9e157a52006-08-08 17:32:11 +0900664static int secref_whitelist(const char *modname, const char *tosec,
Vivek Goyalee6a8542007-01-11 01:52:44 +0100665 const char *fromsec, const char *atsym,
666 const char *refsymname)
Sam Ravnborg4c8fbca2006-02-26 22:18:11 +0100667{
668 int f1 = 1, f2 = 1;
669 const char **s;
670 const char *pat2sym[] = {
Randy Dunlap72ee59b2006-04-15 11:17:12 -0700671 "driver",
Sam Ravnborg5ecdd0f2006-04-14 23:54:13 +0200672 "_template", /* scsi uses *_template a lot */
673 "_sht", /* scsi also used *_sht to some extent */
Sam Ravnborg4c8fbca2006-02-26 22:18:11 +0100674 "_ops",
675 "_probe",
676 "_probe_one",
Vivek Goyal118c0ac2007-01-11 01:52:44 +0100677 "_console",
Vivek Goyal1833d6b2007-05-02 19:27:08 +0200678 "apic_es7000",
Sam Ravnborg4c8fbca2006-02-26 22:18:11 +0100679 NULL
680 };
Sam Ravnborg62070fa2006-03-03 16:46:04 +0100681
Vivek Goyalee6a8542007-01-11 01:52:44 +0100682 const char *pat3refsym[] = {
683 "__init_begin",
684 "_sinittext",
685 "_einittext",
686 NULL
687 };
688
Yasunori Goto72280ed2007-05-08 00:23:10 -0700689 const char *pat4sym[] = {
690 "sparse_index_alloc",
691 "zone_wait_table_init",
692 NULL
693 };
694
Sam Ravnborg0e0d3142007-05-17 20:14:48 +0200695 /* Check for pattern 0 */
696 if ((strcmp(fromsec, ".text.init.refok") == 0) ||
697 (strcmp(fromsec, ".data.init.refok") == 0))
698 return 1;
699
Sam Ravnborg4c8fbca2006-02-26 22:18:11 +0100700 /* Check for pattern 1 */
701 if (strcmp(tosec, ".init.data") != 0)
702 f1 = 0;
Sam Ravnborg9209aed2006-03-05 00:16:26 +0100703 if (strncmp(fromsec, ".data", strlen(".data")) != 0)
Sam Ravnborg4c8fbca2006-02-26 22:18:11 +0100704 f1 = 0;
705 if (strncmp(atsym, "__param", strlen("__param")) != 0)
706 f1 = 0;
707
708 if (f1)
709 return f1;
710
711 /* Check for pattern 2 */
Sam Ravnborg62070fa2006-03-03 16:46:04 +0100712 if ((strcmp(tosec, ".init.text") != 0) &&
Sam Ravnborg5ecdd0f2006-04-14 23:54:13 +0200713 (strcmp(tosec, ".exit.text") != 0) &&
714 (strcmp(tosec, ".init.data") != 0))
Sam Ravnborg4c8fbca2006-02-26 22:18:11 +0100715 f2 = 0;
716 if (strcmp(fromsec, ".data") != 0)
717 f2 = 0;
718
719 for (s = pat2sym; *s; s++)
720 if (strrcmp(atsym, *s) == 0)
721 f1 = 1;
Magnus Damm9e157a52006-08-08 17:32:11 +0900722 if (f1 && f2)
723 return 1;
Sam Ravnborg4c8fbca2006-02-26 22:18:11 +0100724
Sam Ravnborg9bf8cb92007-02-26 17:49:06 +0100725 /* Check for pattern 3 */
726 if ((strncmp(fromsec, ".pci_fixup", strlen(".pci_fixup")) == 0) &&
727 (strcmp(tosec, ".init.text") == 0))
728 return 1;
Vivek Goyalee6a8542007-01-11 01:52:44 +0100729
Sam Ravnborgaae5f662007-02-26 16:45:41 +0100730 /* Check for pattern 4 */
Sam Ravnborg9bf8cb92007-02-26 17:49:06 +0100731 if ((strcmp(fromsec, ".text.head") == 0) &&
732 ((strcmp(tosec, ".init.data") == 0) ||
733 (strcmp(tosec, ".init.text") == 0)))
734 return 1;
735
736 /* Check for pattern 5 */
737 for (s = pat3refsym; *s; s++)
738 if (strcmp(refsymname, *s) == 0)
739 return 1;
740
741 /* Check for pattern 6 */
Sam Ravnborgaae5f662007-02-26 16:45:41 +0100742 if ((strcmp(tosec, ".init.text") == 0) &&
743 (strcmp(fromsec, ".text") == 0) &&
744 (strcmp(refsymname, "kernel_init") == 0))
Magnus Damm9e157a52006-08-08 17:32:11 +0900745 return 1;
Vivek Goyalee6a8542007-01-11 01:52:44 +0100746
Sam Ravnborg5a4910f2007-02-27 09:14:58 +0100747 /* Check for pattern 7 */
748 if ((strcmp(tosec, ".init.data") == 0) &&
749 (strncmp(fromsec, ".text", strlen(".text")) == 0) &&
750 (strncmp(refsymname, "logo_", strlen("logo_")) == 0))
Vivek Goyalf8657e12007-02-13 13:26:22 +0100751 return 1;
752
Sam Ravnborgb4d51712007-04-29 20:53:01 +0200753 /* Check for pattern 8 */
754 if ((strcmp(tosec, ".init.text") == 0) &&
755 (strcmp(fromsec, ".paravirtprobe") == 0))
756 return 1;
757
Yasunori Goto72280ed2007-05-08 00:23:10 -0700758 /* Check for pattern 9 */
759 if ((strcmp(tosec, ".init.text") == 0) &&
760 (strcmp(fromsec, ".text") == 0))
761 for (s = pat4sym; *s; s++)
762 if (strcmp(atsym, *s) == 0)
763 return 1;
764
765 /* Check for pattern 10 */
Li Yangcd547792007-05-14 18:04:28 +0800766 if ((strcmp(fromsec, ".machvec") == 0) ||
767 (strcmp(fromsec, ".machine.desc") == 0))
Yasunori Goto72280ed2007-05-08 00:23:10 -0700768 return 1;
769
Sam Ravnborg93659af2006-08-09 08:23:55 +0200770 return 0;
Sam Ravnborg4c8fbca2006-02-26 22:18:11 +0100771}
772
773/**
Sam Ravnborg93684d32006-02-19 11:53:35 +0100774 * Find symbol based on relocation record info.
775 * In some cases the symbol supplied is a valid symbol so
776 * return refsym. If st_name != 0 we assume this is a valid symbol.
777 * In other cases the symbol needs to be looked up in the symbol table
778 * based on section and address.
779 * **/
780static Elf_Sym *find_elf_symbol(struct elf_info *elf, Elf_Addr addr,
781 Elf_Sym *relsym)
782{
783 Elf_Sym *sym;
784
785 if (relsym->st_name != 0)
786 return relsym;
787 for (sym = elf->symtab_start; sym < elf->symtab_stop; sym++) {
788 if (sym->st_shndx != relsym->st_shndx)
789 continue;
Atsushi Nemotof892b7d2007-05-17 01:14:38 +0900790 if (ELF_ST_TYPE(sym->st_info) == STT_SECTION)
791 continue;
Sam Ravnborg93684d32006-02-19 11:53:35 +0100792 if (sym->st_value == addr)
793 return sym;
794 }
795 return NULL;
796}
797
David Brownellda68d612007-02-20 13:58:16 -0800798static inline int is_arm_mapping_symbol(const char *str)
799{
800 return str[0] == '$' && strchr("atd", str[1])
801 && (str[2] == '\0' || str[2] == '.');
802}
803
804/*
805 * If there's no name there, ignore it; likewise, ignore it if it's
806 * one of the magic symbols emitted used by current ARM tools.
807 *
808 * Otherwise if find_symbols_between() returns those symbols, they'll
809 * fail the whitelist tests and cause lots of false alarms ... fixable
810 * only by merging __exit and __init sections into __text, bloating
811 * the kernel (which is especially evil on embedded platforms).
812 */
813static inline int is_valid_name(struct elf_info *elf, Elf_Sym *sym)
814{
815 const char *name = elf->strtab + sym->st_name;
816
817 if (!name || !strlen(name))
818 return 0;
819 return !is_arm_mapping_symbol(name);
820}
821
Sam Ravnborgb39927c2006-02-17 22:42:02 +0100822/*
Sam Ravnborg43c74d12006-03-05 12:02:46 +0100823 * Find symbols before or equal addr and after addr - in the section sec.
824 * If we find two symbols with equal offset prefer one with a valid name.
825 * The ELF format may have a better way to detect what type of symbol
826 * it is, but this works for now.
Sam Ravnborgb39927c2006-02-17 22:42:02 +0100827 **/
828static void find_symbols_between(struct elf_info *elf, Elf_Addr addr,
829 const char *sec,
830 Elf_Sym **before, Elf_Sym **after)
831{
832 Elf_Sym *sym;
833 Elf_Ehdr *hdr = elf->hdr;
834 Elf_Addr beforediff = ~0;
835 Elf_Addr afterdiff = ~0;
836 const char *secstrings = (void *)hdr +
837 elf->sechdrs[hdr->e_shstrndx].sh_offset;
Sam Ravnborg62070fa2006-03-03 16:46:04 +0100838
Sam Ravnborgb39927c2006-02-17 22:42:02 +0100839 *before = NULL;
840 *after = NULL;
841
842 for (sym = elf->symtab_start; sym < elf->symtab_stop; sym++) {
843 const char *symsec;
844
845 if (sym->st_shndx >= SHN_LORESERVE)
846 continue;
847 symsec = secstrings + elf->sechdrs[sym->st_shndx].sh_name;
848 if (strcmp(symsec, sec) != 0)
849 continue;
David Brownellda68d612007-02-20 13:58:16 -0800850 if (!is_valid_name(elf, sym))
851 continue;
Sam Ravnborgb39927c2006-02-17 22:42:02 +0100852 if (sym->st_value <= addr) {
853 if ((addr - sym->st_value) < beforediff) {
854 beforediff = addr - sym->st_value;
855 *before = sym;
856 }
Sam Ravnborg43c74d12006-03-05 12:02:46 +0100857 else if ((addr - sym->st_value) == beforediff) {
David Brownellda68d612007-02-20 13:58:16 -0800858 *before = sym;
Sam Ravnborg43c74d12006-03-05 12:02:46 +0100859 }
Sam Ravnborgb39927c2006-02-17 22:42:02 +0100860 }
861 else
862 {
863 if ((sym->st_value - addr) < afterdiff) {
864 afterdiff = sym->st_value - addr;
865 *after = sym;
866 }
Sam Ravnborg43c74d12006-03-05 12:02:46 +0100867 else if ((sym->st_value - addr) == afterdiff) {
David Brownellda68d612007-02-20 13:58:16 -0800868 *after = sym;
Sam Ravnborg43c74d12006-03-05 12:02:46 +0100869 }
Sam Ravnborgb39927c2006-02-17 22:42:02 +0100870 }
871 }
872}
873
874/**
875 * Print a warning about a section mismatch.
876 * Try to find symbols near it so user can find it.
Sam Ravnborg4c8fbca2006-02-26 22:18:11 +0100877 * Check whitelist before warning - it may be a false positive.
Sam Ravnborgb39927c2006-02-17 22:42:02 +0100878 **/
879static void warn_sec_mismatch(const char *modname, const char *fromsec,
880 struct elf_info *elf, Elf_Sym *sym, Elf_Rela r)
881{
Sam Ravnborg93684d32006-02-19 11:53:35 +0100882 const char *refsymname = "";
883 Elf_Sym *before, *after;
884 Elf_Sym *refsym;
Sam Ravnborgb39927c2006-02-17 22:42:02 +0100885 Elf_Ehdr *hdr = elf->hdr;
886 Elf_Shdr *sechdrs = elf->sechdrs;
887 const char *secstrings = (void *)hdr +
888 sechdrs[hdr->e_shstrndx].sh_offset;
889 const char *secname = secstrings + sechdrs[sym->st_shndx].sh_name;
Sam Ravnborg62070fa2006-03-03 16:46:04 +0100890
Sam Ravnborgb39927c2006-02-17 22:42:02 +0100891 find_symbols_between(elf, r.r_offset, fromsec, &before, &after);
892
Sam Ravnborg93684d32006-02-19 11:53:35 +0100893 refsym = find_elf_symbol(elf, r.r_addend, sym);
894 if (refsym && strlen(elf->strtab + refsym->st_name))
895 refsymname = elf->strtab + refsym->st_name;
Sam Ravnborg4c8fbca2006-02-26 22:18:11 +0100896
897 /* check whitelist - we may ignore it */
Sam Ravnborg62070fa2006-03-03 16:46:04 +0100898 if (before &&
Magnus Damm9e157a52006-08-08 17:32:11 +0900899 secref_whitelist(modname, secname, fromsec,
Vivek Goyalee6a8542007-01-11 01:52:44 +0100900 elf->strtab + before->st_name, refsymname))
Sam Ravnborg4c8fbca2006-02-26 22:18:11 +0100901 return;
Sam Ravnborg62070fa2006-03-03 16:46:04 +0100902
Li Yangcd547792007-05-14 18:04:28 +0800903 /* fromsec whitelist - without a valid 'before'
904 * powerpc has a GOT table in .got2 section */
905 if (strcmp(fromsec, ".got2") == 0)
906 return;
907
Sam Ravnborgb39927c2006-02-17 22:42:02 +0100908 if (before && after) {
Russell King256012092007-05-10 23:03:25 +0100909 warn("%s(%s+0x%llx): Section mismatch: reference to %s:%s "
910 "(between '%s' and '%s')\n",
911 modname, fromsec, (unsigned long long)r.r_offset,
912 secname, refsymname,
Sam Ravnborgb39927c2006-02-17 22:42:02 +0100913 elf->strtab + before->st_name,
Sam Ravnborgb39927c2006-02-17 22:42:02 +0100914 elf->strtab + after->st_name);
915 } else if (before) {
Russell King256012092007-05-10 23:03:25 +0100916 warn("%s(%s+0x%llx): Section mismatch: reference to %s:%s "
917 "(after '%s')\n",
918 modname, fromsec, (unsigned long long)r.r_offset,
919 secname, refsymname,
920 elf->strtab + before->st_name);
Sam Ravnborgb39927c2006-02-17 22:42:02 +0100921 } else if (after) {
Russell King256012092007-05-10 23:03:25 +0100922 warn("%s(%s+0x%llx): Section mismatch: reference to %s:%s "
Sam Ravnborg93684d32006-02-19 11:53:35 +0100923 "before '%s' (at offset -0x%llx)\n",
Russell King256012092007-05-10 23:03:25 +0100924 modname, fromsec, (unsigned long long)r.r_offset,
925 secname, refsymname,
926 elf->strtab + after->st_name);
Sam Ravnborgb39927c2006-02-17 22:42:02 +0100927 } else {
Russell King256012092007-05-10 23:03:25 +0100928 warn("%s(%s+0x%llx): Section mismatch: reference to %s:%s\n",
929 modname, fromsec, (unsigned long long)r.r_offset,
930 secname, refsymname);
Sam Ravnborgb39927c2006-02-17 22:42:02 +0100931 }
932}
933
Atsushi Nemotof892b7d2007-05-17 01:14:38 +0900934static void addend_386_rel(struct elf_info *elf, int section, Elf_Rela *r)
935{
936 Elf_Shdr *sechdrs = elf->sechdrs;
937 unsigned int r_typ;
938 unsigned int *location;
939
940 r_typ = ELF_R_TYPE(r->r_info);
941 location = (void *)elf->hdr +
942 sechdrs[sechdrs[section].sh_info].sh_offset + r->r_offset;
943 switch (r_typ) {
944 case R_386_32:
945 r->r_addend = TO_NATIVE(*location);
946 break;
947 case R_386_PC32:
948 r->r_addend = TO_NATIVE(*location) + 4;
949 break;
950 }
951}
952
953static void addend_arm_rel(struct elf_info *elf, int section, Elf_Rela *r)
954{
955 Elf_Shdr *sechdrs = elf->sechdrs;
956 unsigned int r_typ;
957 unsigned int *location;
958
959 r_typ = ELF_R_TYPE(r->r_info);
960 location = (void *)elf->hdr +
961 sechdrs[sechdrs[section].sh_info].sh_offset + r->r_offset;
962 switch (r_typ) {
963 case R_ARM_ABS32:
964 r->r_addend = TO_NATIVE(*location);
965 break;
966 case R_ARM_PC24:
967 r->r_addend = ((TO_NATIVE(*location) & 0x00ffffff) << 2) + 8;
968 break;
969 }
970}
971
972static int addend_mips_rel(struct elf_info *elf, int section, Elf_Rela *r)
973{
974 Elf_Shdr *sechdrs = elf->sechdrs;
975 unsigned int r_typ;
976 unsigned int *location;
977 unsigned int inst;
978
979 r_typ = ELF_R_TYPE(r->r_info);
980 if (r_typ == R_MIPS_HI16)
981 return 1; /* skip this */
982 location = (void *)elf->hdr +
983 sechdrs[sechdrs[section].sh_info].sh_offset + r->r_offset;
984 inst = TO_NATIVE(*location);
985 switch (r_typ) {
986 case R_MIPS_LO16:
987 r->r_addend = ((inst & 0xffff) ^ 0x8000) - 0x8000;
988 break;
989 case R_MIPS_26:
990 r->r_addend = (inst & 0x03ffffff) << 2;
991 break;
992 }
993 return 0;
994}
995
Sam Ravnborgb39927c2006-02-17 22:42:02 +0100996/**
997 * A module includes a number of sections that are discarded
998 * either when loaded or when used as built-in.
999 * For loaded modules all functions marked __init and all data
1000 * marked __initdata will be discarded when the module has been intialized.
1001 * Likewise for modules used built-in the sections marked __exit
1002 * are discarded because __exit marked function are supposed to be called
1003 * only when a moduel is unloaded which never happes for built-in modules.
1004 * The check_sec_ref() function traverses all relocation records
1005 * to find all references to a section that reference a section that will
1006 * be discarded and warns about it.
1007 **/
1008static void check_sec_ref(struct module *mod, const char *modname,
1009 struct elf_info *elf,
1010 int section(const char*),
1011 int section_ref_ok(const char *))
1012{
1013 int i;
1014 Elf_Sym *sym;
1015 Elf_Ehdr *hdr = elf->hdr;
1016 Elf_Shdr *sechdrs = elf->sechdrs;
1017 const char *secstrings = (void *)hdr +
1018 sechdrs[hdr->e_shstrndx].sh_offset;
Sam Ravnborg62070fa2006-03-03 16:46:04 +01001019
Sam Ravnborgb39927c2006-02-17 22:42:02 +01001020 /* Walk through all sections */
1021 for (i = 0; i < hdr->e_shnum; i++) {
Atsushi Nemoto2c1a51f2006-05-20 15:00:26 -07001022 const char *name = secstrings + sechdrs[i].sh_name;
1023 const char *secname;
1024 Elf_Rela r;
Atsushi Nemotoeae07ac2006-05-20 15:00:28 -07001025 unsigned int r_sym;
Sam Ravnborgb39927c2006-02-17 22:42:02 +01001026 /* We want to process only relocation sections and not .init */
Atsushi Nemoto2c1a51f2006-05-20 15:00:26 -07001027 if (sechdrs[i].sh_type == SHT_RELA) {
1028 Elf_Rela *rela;
1029 Elf_Rela *start = (void *)hdr + sechdrs[i].sh_offset;
1030 Elf_Rela *stop = (void*)start + sechdrs[i].sh_size;
1031 name += strlen(".rela");
1032 if (section_ref_ok(name))
Sam Ravnborgb39927c2006-02-17 22:42:02 +01001033 continue;
1034
Atsushi Nemoto2c1a51f2006-05-20 15:00:26 -07001035 for (rela = start; rela < stop; rela++) {
1036 r.r_offset = TO_NATIVE(rela->r_offset);
Atsushi Nemotoeae07ac2006-05-20 15:00:28 -07001037#if KERNEL_ELFCLASS == ELFCLASS64
1038 if (hdr->e_machine == EM_MIPS) {
Atsushi Nemotof892b7d2007-05-17 01:14:38 +09001039 unsigned int r_typ;
Atsushi Nemotoeae07ac2006-05-20 15:00:28 -07001040 r_sym = ELF64_MIPS_R_SYM(rela->r_info);
1041 r_sym = TO_NATIVE(r_sym);
Atsushi Nemotof892b7d2007-05-17 01:14:38 +09001042 r_typ = ELF64_MIPS_R_TYPE(rela->r_info);
1043 r.r_info = ELF64_R_INFO(r_sym, r_typ);
Atsushi Nemotoeae07ac2006-05-20 15:00:28 -07001044 } else {
1045 r.r_info = TO_NATIVE(rela->r_info);
1046 r_sym = ELF_R_SYM(r.r_info);
1047 }
1048#else
1049 r.r_info = TO_NATIVE(rela->r_info);
1050 r_sym = ELF_R_SYM(r.r_info);
1051#endif
Atsushi Nemoto2c1a51f2006-05-20 15:00:26 -07001052 r.r_addend = TO_NATIVE(rela->r_addend);
Atsushi Nemotoeae07ac2006-05-20 15:00:28 -07001053 sym = elf->symtab_start + r_sym;
Atsushi Nemoto2c1a51f2006-05-20 15:00:26 -07001054 /* Skip special sections */
1055 if (sym->st_shndx >= SHN_LORESERVE)
1056 continue;
1057
1058 secname = secstrings +
1059 sechdrs[sym->st_shndx].sh_name;
1060 if (section(secname))
1061 warn_sec_mismatch(modname, name,
1062 elf, sym, r);
1063 }
1064 } else if (sechdrs[i].sh_type == SHT_REL) {
1065 Elf_Rel *rel;
1066 Elf_Rel *start = (void *)hdr + sechdrs[i].sh_offset;
1067 Elf_Rel *stop = (void*)start + sechdrs[i].sh_size;
1068 name += strlen(".rel");
1069 if (section_ref_ok(name))
1070 continue;
1071
1072 for (rel = start; rel < stop; rel++) {
1073 r.r_offset = TO_NATIVE(rel->r_offset);
Atsushi Nemotoeae07ac2006-05-20 15:00:28 -07001074#if KERNEL_ELFCLASS == ELFCLASS64
1075 if (hdr->e_machine == EM_MIPS) {
Atsushi Nemotof892b7d2007-05-17 01:14:38 +09001076 unsigned int r_typ;
Atsushi Nemotoeae07ac2006-05-20 15:00:28 -07001077 r_sym = ELF64_MIPS_R_SYM(rel->r_info);
1078 r_sym = TO_NATIVE(r_sym);
Atsushi Nemotof892b7d2007-05-17 01:14:38 +09001079 r_typ = ELF64_MIPS_R_TYPE(rel->r_info);
1080 r.r_info = ELF64_R_INFO(r_sym, r_typ);
Atsushi Nemotoeae07ac2006-05-20 15:00:28 -07001081 } else {
1082 r.r_info = TO_NATIVE(rel->r_info);
1083 r_sym = ELF_R_SYM(r.r_info);
1084 }
1085#else
1086 r.r_info = TO_NATIVE(rel->r_info);
1087 r_sym = ELF_R_SYM(r.r_info);
1088#endif
Atsushi Nemoto2c1a51f2006-05-20 15:00:26 -07001089 r.r_addend = 0;
Atsushi Nemotof892b7d2007-05-17 01:14:38 +09001090 if (hdr->e_machine == EM_386)
1091 addend_386_rel(elf, i, &r);
1092 else if (hdr->e_machine == EM_ARM)
1093 addend_arm_rel(elf, i, &r);
1094 else if (hdr->e_machine == EM_MIPS) {
1095 if (addend_mips_rel(elf, i, &r))
1096 continue;
1097 }
Atsushi Nemotoeae07ac2006-05-20 15:00:28 -07001098 sym = elf->symtab_start + r_sym;
Atsushi Nemoto2c1a51f2006-05-20 15:00:26 -07001099 /* Skip special sections */
1100 if (sym->st_shndx >= SHN_LORESERVE)
1101 continue;
1102
1103 secname = secstrings +
1104 sechdrs[sym->st_shndx].sh_name;
1105 if (section(secname))
1106 warn_sec_mismatch(modname, name,
1107 elf, sym, r);
1108 }
Sam Ravnborgb39927c2006-02-17 22:42:02 +01001109 }
1110 }
1111}
1112
1113/**
1114 * Functions used only during module init is marked __init and is stored in
1115 * a .init.text section. Likewise data is marked __initdata and stored in
1116 * a .init.data section.
1117 * If this section is one of these sections return 1
1118 * See include/linux/init.h for the details
1119 **/
1120static int init_section(const char *name)
1121{
1122 if (strcmp(name, ".init") == 0)
1123 return 1;
1124 if (strncmp(name, ".init.", strlen(".init.")) == 0)
1125 return 1;
1126 return 0;
1127}
1128
1129/**
1130 * Identify sections from which references to a .init section is OK.
Sam Ravnborg62070fa2006-03-03 16:46:04 +01001131 *
Sam Ravnborgb39927c2006-02-17 22:42:02 +01001132 * Unfortunately references to read only data that referenced .init
1133 * sections had to be excluded. Almost all of these are false
1134 * positives, they are created by gcc. The downside of excluding rodata
1135 * is that there really are some user references from rodata to
1136 * init code, e.g. drivers/video/vgacon.c:
Sam Ravnborg62070fa2006-03-03 16:46:04 +01001137 *
Sam Ravnborgb39927c2006-02-17 22:42:02 +01001138 * const struct consw vga_con = {
1139 * con_startup: vgacon_startup,
1140 *
1141 * where vgacon_startup is __init. If you want to wade through the false
1142 * positives, take out the check for rodata.
1143 **/
1144static int init_section_ref_ok(const char *name)
1145{
1146 const char **s;
1147 /* Absolute section names */
1148 const char *namelist1[] = {
1149 ".init",
Sam Ravnborg9209aed2006-03-05 00:16:26 +01001150 ".opd", /* see comment [OPD] at exit_section_ref_ok() */
1151 ".toc1", /* used by ppc64 */
Sam Ravnborgb39927c2006-02-17 22:42:02 +01001152 ".stab",
Matthew Wilcox742433b2007-02-05 16:34:00 -08001153 ".data.rel.ro", /* used by parisc64 */
Rusty Russell139ec7c2006-12-07 02:14:08 +01001154 ".parainstructions",
Sam Ravnborgb39927c2006-02-17 22:42:02 +01001155 ".text.lock",
Sam Ravnborg9209aed2006-03-05 00:16:26 +01001156 "__bug_table", /* used by powerpc for BUG() */
Sam Ravnborgb39927c2006-02-17 22:42:02 +01001157 ".pci_fixup_header",
1158 ".pci_fixup_final",
1159 ".pdr",
1160 "__param",
Al Viro468d9492006-06-23 23:22:43 +01001161 "__ex_table",
1162 ".fixup",
Randy Dunlap35899c52006-06-07 16:23:26 -07001163 ".smp_locks",
Sam Ravnborg909252d2006-06-08 20:37:30 +02001164 ".plt", /* seen on ARCH=um build on x86_64. Harmless */
Benjamin Herrenschmidt21c4ff82006-10-20 11:47:19 +10001165 "__ftr_fixup", /* powerpc cpu feature fixup */
1166 "__fw_ftr_fixup", /* powerpc firmware feature fixup */
Sam Ravnborgb39927c2006-02-17 22:42:02 +01001167 NULL
1168 };
1169 /* Start of section names */
1170 const char *namelist2[] = {
1171 ".init.",
1172 ".altinstructions",
1173 ".eh_frame",
1174 ".debug",
Rusty Russell139ec7c2006-12-07 02:14:08 +01001175 ".parainstructions",
Matthew Wilcox742433b2007-02-05 16:34:00 -08001176 ".rodata",
Sam Ravnborgb39927c2006-02-17 22:42:02 +01001177 NULL
1178 };
Sam Ravnborg6e101332006-02-22 21:24:50 +01001179 /* part of section name */
1180 const char *namelist3 [] = {
1181 ".unwind", /* sample: IA_64.unwind.init.text */
1182 NULL
1183 };
1184
Sam Ravnborgb39927c2006-02-17 22:42:02 +01001185 for (s = namelist1; *s; s++)
1186 if (strcmp(*s, name) == 0)
1187 return 1;
Sam Ravnborg62070fa2006-03-03 16:46:04 +01001188 for (s = namelist2; *s; s++)
Sam Ravnborgb39927c2006-02-17 22:42:02 +01001189 if (strncmp(*s, name, strlen(*s)) == 0)
1190 return 1;
Sam Ravnborg62070fa2006-03-03 16:46:04 +01001191 for (s = namelist3; *s; s++)
Sam Ravnborge835a392006-03-05 11:34:15 +01001192 if (strstr(name, *s) != NULL)
Sam Ravnborg6e101332006-02-22 21:24:50 +01001193 return 1;
Al Viro468d9492006-06-23 23:22:43 +01001194 if (strrcmp(name, ".init") == 0)
1195 return 1;
Sam Ravnborgb39927c2006-02-17 22:42:02 +01001196 return 0;
1197}
1198
1199/*
1200 * Functions used only during module exit is marked __exit and is stored in
1201 * a .exit.text section. Likewise data is marked __exitdata and stored in
1202 * a .exit.data section.
1203 * If this section is one of these sections return 1
1204 * See include/linux/init.h for the details
1205 **/
1206static int exit_section(const char *name)
1207{
1208 if (strcmp(name, ".exit.text") == 0)
1209 return 1;
1210 if (strcmp(name, ".exit.data") == 0)
1211 return 1;
1212 return 0;
Sam Ravnborg62070fa2006-03-03 16:46:04 +01001213
Sam Ravnborgb39927c2006-02-17 22:42:02 +01001214}
1215
1216/*
1217 * Identify sections from which references to a .exit section is OK.
Sam Ravnborg62070fa2006-03-03 16:46:04 +01001218 *
Sam Ravnborgb39927c2006-02-17 22:42:02 +01001219 * [OPD] Keith Ownes <kaos@sgi.com> commented:
1220 * For our future {in}sanity, add a comment that this is the ppc .opd
1221 * section, not the ia64 .opd section.
1222 * ia64 .opd should not point to discarded sections.
Sam Ravnborg5ecdd0f2006-04-14 23:54:13 +02001223 * [.rodata] like for .init.text we ignore .rodata references -same reason
Sam Ravnborgb39927c2006-02-17 22:42:02 +01001224 **/
1225static int exit_section_ref_ok(const char *name)
1226{
1227 const char **s;
1228 /* Absolute section names */
1229 const char *namelist1[] = {
1230 ".exit.text",
1231 ".exit.data",
1232 ".init.text",
Sam Ravnborg5ecdd0f2006-04-14 23:54:13 +02001233 ".rodata",
Sam Ravnborgb39927c2006-02-17 22:42:02 +01001234 ".opd", /* See comment [OPD] */
Sam Ravnborg9209aed2006-03-05 00:16:26 +01001235 ".toc1", /* used by ppc64 */
Sam Ravnborgb39927c2006-02-17 22:42:02 +01001236 ".altinstructions",
1237 ".pdr",
Sam Ravnborg9209aed2006-03-05 00:16:26 +01001238 "__bug_table", /* used by powerpc for BUG() */
Sam Ravnborgb39927c2006-02-17 22:42:02 +01001239 ".exitcall.exit",
1240 ".eh_frame",
Randy Dunlapacd19492006-12-13 00:33:57 -08001241 ".parainstructions",
Sam Ravnborgb39927c2006-02-17 22:42:02 +01001242 ".stab",
Al Viro468d9492006-06-23 23:22:43 +01001243 "__ex_table",
1244 ".fixup",
Randy Dunlap35899c52006-06-07 16:23:26 -07001245 ".smp_locks",
Sam Ravnborg909252d2006-06-08 20:37:30 +02001246 ".plt", /* seen on ARCH=um build on x86_64. Harmless */
Sam Ravnborgb39927c2006-02-17 22:42:02 +01001247 NULL
1248 };
1249 /* Start of section names */
1250 const char *namelist2[] = {
1251 ".debug",
1252 NULL
1253 };
Sam Ravnborg6e101332006-02-22 21:24:50 +01001254 /* part of section name */
1255 const char *namelist3 [] = {
1256 ".unwind", /* Sample: IA_64.unwind.exit.text */
1257 NULL
1258 };
Sam Ravnborg62070fa2006-03-03 16:46:04 +01001259
Sam Ravnborgb39927c2006-02-17 22:42:02 +01001260 for (s = namelist1; *s; s++)
1261 if (strcmp(*s, name) == 0)
1262 return 1;
Sam Ravnborg62070fa2006-03-03 16:46:04 +01001263 for (s = namelist2; *s; s++)
Sam Ravnborgb39927c2006-02-17 22:42:02 +01001264 if (strncmp(*s, name, strlen(*s)) == 0)
1265 return 1;
Sam Ravnborg62070fa2006-03-03 16:46:04 +01001266 for (s = namelist3; *s; s++)
Sam Ravnborge835a392006-03-05 11:34:15 +01001267 if (strstr(name, *s) != NULL)
Sam Ravnborg6e101332006-02-22 21:24:50 +01001268 return 1;
Sam Ravnborgb39927c2006-02-17 22:42:02 +01001269 return 0;
1270}
1271
Sam Ravnborg5c3ead82006-01-28 17:19:35 +01001272static void read_symbols(char *modname)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001273{
1274 const char *symname;
1275 char *version;
Sam Ravnborgb817f6f2006-06-09 21:53:55 +02001276 char *license;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001277 struct module *mod;
1278 struct elf_info info = { };
1279 Elf_Sym *sym;
1280
Sam Ravnborg85bd2fd2007-02-26 15:33:52 +01001281 if (!parse_elf(&info, modname))
1282 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001283
1284 mod = new_module(modname);
1285
1286 /* When there's no vmlinux, don't print warnings about
1287 * unresolved symbols (since there'll be too many ;) */
1288 if (is_vmlinux(modname)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001289 have_vmlinux = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001290 mod->skip = 1;
1291 }
1292
Sam Ravnborgb817f6f2006-06-09 21:53:55 +02001293 license = get_modinfo(info.modinfo, info.modinfo_len, "license");
1294 while (license) {
1295 if (license_is_gpl_compatible(license))
1296 mod->gpl_compatible = 1;
1297 else {
1298 mod->gpl_compatible = 0;
1299 break;
1300 }
1301 license = get_next_modinfo(info.modinfo, info.modinfo_len,
1302 "license", license);
1303 }
1304
Linus Torvalds1da177e2005-04-16 15:20:36 -07001305 for (sym = info.symtab_start; sym < info.symtab_stop; sym++) {
1306 symname = info.strtab + sym->st_name;
1307
1308 handle_modversions(mod, &info, sym, symname);
1309 handle_moddevtable(mod, &info, sym, symname);
1310 }
Sam Ravnborgb39927c2006-02-17 22:42:02 +01001311 check_sec_ref(mod, modname, &info, init_section, init_section_ref_ok);
1312 check_sec_ref(mod, modname, &info, exit_section, exit_section_ref_ok);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001313
1314 version = get_modinfo(info.modinfo, info.modinfo_len, "version");
1315 if (version)
1316 maybe_frob_rcs_version(modname, version, info.modinfo,
1317 version - (char *)info.hdr);
1318 if (version || (all_versions && !is_vmlinux(modname)))
1319 get_src_version(modname, mod->srcversion,
1320 sizeof(mod->srcversion)-1);
1321
1322 parse_elf_finish(&info);
1323
1324 /* Our trick to get versioning for struct_module - it's
1325 * never passed as an argument to an exported function, so
1326 * the automatic versioning doesn't pick it up, but it's really
1327 * important anyhow */
1328 if (modversions)
1329 mod->unres = alloc_symbol("struct_module", 0, mod->unres);
1330}
1331
1332#define SZ 500
1333
1334/* We first write the generated file into memory using the
1335 * following helper, then compare to the file on disk and
1336 * only update the later if anything changed */
1337
Sam Ravnborg5c3ead82006-01-28 17:19:35 +01001338void __attribute__((format(printf, 2, 3))) buf_printf(struct buffer *buf,
1339 const char *fmt, ...)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001340{
1341 char tmp[SZ];
1342 int len;
1343 va_list ap;
Sam Ravnborg62070fa2006-03-03 16:46:04 +01001344
Linus Torvalds1da177e2005-04-16 15:20:36 -07001345 va_start(ap, fmt);
1346 len = vsnprintf(tmp, SZ, fmt, ap);
Sam Ravnborg7670f022006-03-16 23:04:08 -08001347 buf_write(buf, tmp, len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001348 va_end(ap);
1349}
1350
Sam Ravnborg5c3ead82006-01-28 17:19:35 +01001351void buf_write(struct buffer *buf, const char *s, int len)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001352{
1353 if (buf->size - buf->pos < len) {
Sam Ravnborg7670f022006-03-16 23:04:08 -08001354 buf->size += len + SZ;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001355 buf->p = realloc(buf->p, buf->size);
1356 }
1357 strncpy(buf->p + buf->pos, s, len);
1358 buf->pos += len;
1359}
1360
Sam Ravnborgc96fca22006-07-01 11:44:23 +02001361static void check_for_gpl_usage(enum export exp, const char *m, const char *s)
1362{
1363 const char *e = is_vmlinux(m) ?"":".ko";
1364
1365 switch (exp) {
1366 case export_gpl:
1367 fatal("modpost: GPL-incompatible module %s%s "
1368 "uses GPL-only symbol '%s'\n", m, e, s);
1369 break;
1370 case export_unused_gpl:
1371 fatal("modpost: GPL-incompatible module %s%s "
1372 "uses GPL-only symbol marked UNUSED '%s'\n", m, e, s);
1373 break;
1374 case export_gpl_future:
1375 warn("modpost: GPL-incompatible module %s%s "
1376 "uses future GPL-only symbol '%s'\n", m, e, s);
1377 break;
1378 case export_plain:
1379 case export_unused:
1380 case export_unknown:
1381 /* ignore */
1382 break;
1383 }
1384}
1385
1386static void check_for_unused(enum export exp, const char* m, const char* s)
1387{
1388 const char *e = is_vmlinux(m) ?"":".ko";
1389
1390 switch (exp) {
1391 case export_unused:
1392 case export_unused_gpl:
1393 warn("modpost: module %s%s "
1394 "uses symbol '%s' marked UNUSED\n", m, e, s);
1395 break;
1396 default:
1397 /* ignore */
1398 break;
1399 }
1400}
1401
1402static void check_exports(struct module *mod)
Sam Ravnborgb817f6f2006-06-09 21:53:55 +02001403{
1404 struct symbol *s, *exp;
1405
1406 for (s = mod->unres; s; s = s->next) {
Andrew Morton6449bd62006-06-09 20:45:06 -07001407 const char *basename;
Sam Ravnborgb817f6f2006-06-09 21:53:55 +02001408 exp = find_symbol(s->name);
1409 if (!exp || exp->module == mod)
1410 continue;
Andrew Morton6449bd62006-06-09 20:45:06 -07001411 basename = strrchr(mod->name, '/');
Sam Ravnborgb817f6f2006-06-09 21:53:55 +02001412 if (basename)
1413 basename++;
Sam Ravnborgc96fca22006-07-01 11:44:23 +02001414 else
1415 basename = mod->name;
1416 if (!mod->gpl_compatible)
1417 check_for_gpl_usage(exp->export, basename, exp->name);
1418 check_for_unused(exp->export, basename, exp->name);
Sam Ravnborgb817f6f2006-06-09 21:53:55 +02001419 }
1420}
1421
Sam Ravnborg5c3ead82006-01-28 17:19:35 +01001422/**
1423 * Header for the generated file
1424 **/
1425static void add_header(struct buffer *b, struct module *mod)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001426{
1427 buf_printf(b, "#include <linux/module.h>\n");
1428 buf_printf(b, "#include <linux/vermagic.h>\n");
1429 buf_printf(b, "#include <linux/compiler.h>\n");
1430 buf_printf(b, "\n");
1431 buf_printf(b, "MODULE_INFO(vermagic, VERMAGIC_STRING);\n");
1432 buf_printf(b, "\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001433 buf_printf(b, "struct module __this_module\n");
1434 buf_printf(b, "__attribute__((section(\".gnu.linkonce.this_module\"))) = {\n");
Ustyugov Romanf83b5e32005-09-23 08:42:11 +04001435 buf_printf(b, " .name = KBUILD_MODNAME,\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001436 if (mod->has_init)
1437 buf_printf(b, " .init = init_module,\n");
1438 if (mod->has_cleanup)
1439 buf_printf(b, "#ifdef CONFIG_MODULE_UNLOAD\n"
1440 " .exit = cleanup_module,\n"
1441 "#endif\n");
Roman Zippele61a1c12007-05-09 02:35:15 -07001442 buf_printf(b, " .arch = MODULE_ARCH_INIT,\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001443 buf_printf(b, "};\n");
1444}
1445
Sam Ravnborg5c3ead82006-01-28 17:19:35 +01001446/**
1447 * Record CRCs for unresolved symbols
1448 **/
Kirill Korotaevc53ddac2006-09-07 13:08:54 -07001449static int add_versions(struct buffer *b, struct module *mod)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001450{
1451 struct symbol *s, *exp;
Kirill Korotaevc53ddac2006-09-07 13:08:54 -07001452 int err = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001453
1454 for (s = mod->unres; s; s = s->next) {
1455 exp = find_symbol(s->name);
1456 if (!exp || exp->module == mod) {
Kirill Korotaevc53ddac2006-09-07 13:08:54 -07001457 if (have_vmlinux && !s->weak) {
Matthew Wilcox2a116652006-10-07 05:35:32 -06001458 if (warn_unresolved) {
1459 warn("\"%s\" [%s.ko] undefined!\n",
1460 s->name, mod->name);
1461 } else {
1462 merror("\"%s\" [%s.ko] undefined!\n",
1463 s->name, mod->name);
1464 err = 1;
1465 }
Kirill Korotaevc53ddac2006-09-07 13:08:54 -07001466 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001467 continue;
1468 }
1469 s->module = exp->module;
1470 s->crc_valid = exp->crc_valid;
1471 s->crc = exp->crc;
1472 }
1473
1474 if (!modversions)
Kirill Korotaevc53ddac2006-09-07 13:08:54 -07001475 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001476
1477 buf_printf(b, "\n");
1478 buf_printf(b, "static const struct modversion_info ____versions[]\n");
1479 buf_printf(b, "__attribute_used__\n");
1480 buf_printf(b, "__attribute__((section(\"__versions\"))) = {\n");
1481
1482 for (s = mod->unres; s; s = s->next) {
1483 if (!s->module) {
1484 continue;
1485 }
1486 if (!s->crc_valid) {
Sam Ravnborgcb805142006-01-28 16:57:26 +01001487 warn("\"%s\" [%s.ko] has no CRC!\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07001488 s->name, mod->name);
1489 continue;
1490 }
1491 buf_printf(b, "\t{ %#8x, \"%s\" },\n", s->crc, s->name);
1492 }
1493
1494 buf_printf(b, "};\n");
Kirill Korotaevc53ddac2006-09-07 13:08:54 -07001495
1496 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001497}
1498
Sam Ravnborg5c3ead82006-01-28 17:19:35 +01001499static void add_depends(struct buffer *b, struct module *mod,
1500 struct module *modules)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001501{
1502 struct symbol *s;
1503 struct module *m;
1504 int first = 1;
1505
1506 for (m = modules; m; m = m->next) {
1507 m->seen = is_vmlinux(m->name);
1508 }
1509
1510 buf_printf(b, "\n");
1511 buf_printf(b, "static const char __module_depends[]\n");
1512 buf_printf(b, "__attribute_used__\n");
1513 buf_printf(b, "__attribute__((section(\".modinfo\"))) =\n");
1514 buf_printf(b, "\"depends=");
1515 for (s = mod->unres; s; s = s->next) {
Sam Ravnborga61b2df2007-02-26 19:46:52 +01001516 const char *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001517 if (!s->module)
1518 continue;
1519
1520 if (s->module->seen)
1521 continue;
1522
1523 s->module->seen = 1;
Sam Ravnborga61b2df2007-02-26 19:46:52 +01001524 if ((p = strrchr(s->module->name, '/')) != NULL)
1525 p++;
1526 else
1527 p = s->module->name;
1528 buf_printf(b, "%s%s", first ? "" : ",", p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001529 first = 0;
1530 }
1531 buf_printf(b, "\";\n");
1532}
1533
Sam Ravnborg5c3ead82006-01-28 17:19:35 +01001534static void add_srcversion(struct buffer *b, struct module *mod)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001535{
1536 if (mod->srcversion[0]) {
1537 buf_printf(b, "\n");
1538 buf_printf(b, "MODULE_INFO(srcversion, \"%s\");\n",
1539 mod->srcversion);
1540 }
1541}
1542
Sam Ravnborg5c3ead82006-01-28 17:19:35 +01001543static void write_if_changed(struct buffer *b, const char *fname)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001544{
1545 char *tmp;
1546 FILE *file;
1547 struct stat st;
1548
1549 file = fopen(fname, "r");
1550 if (!file)
1551 goto write;
1552
1553 if (fstat(fileno(file), &st) < 0)
1554 goto close_write;
1555
1556 if (st.st_size != b->pos)
1557 goto close_write;
1558
1559 tmp = NOFAIL(malloc(b->pos));
1560 if (fread(tmp, 1, b->pos, file) != b->pos)
1561 goto free_write;
1562
1563 if (memcmp(tmp, b->p, b->pos) != 0)
1564 goto free_write;
1565
1566 free(tmp);
1567 fclose(file);
1568 return;
1569
1570 free_write:
1571 free(tmp);
1572 close_write:
1573 fclose(file);
1574 write:
1575 file = fopen(fname, "w");
1576 if (!file) {
1577 perror(fname);
1578 exit(1);
1579 }
1580 if (fwrite(b->p, 1, b->pos, file) != b->pos) {
1581 perror(fname);
1582 exit(1);
1583 }
1584 fclose(file);
1585}
1586
Ram Paibd5cbce2006-06-08 22:12:53 -07001587/* parse Module.symvers file. line format:
Sam Ravnborg534b89a2006-07-01 10:10:19 +02001588 * 0x12345678<tab>symbol<tab>module[[<tab>export]<tab>something]
Ram Paibd5cbce2006-06-08 22:12:53 -07001589 **/
Sam Ravnborg040fcc82006-01-28 22:15:55 +01001590static void read_dump(const char *fname, unsigned int kernel)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001591{
1592 unsigned long size, pos = 0;
1593 void *file = grab_file(fname, &size);
1594 char *line;
1595
1596 if (!file)
1597 /* No symbol versions, silently ignore */
1598 return;
1599
1600 while ((line = get_next_line(&pos, file, size))) {
Sam Ravnborg534b89a2006-07-01 10:10:19 +02001601 char *symname, *modname, *d, *export, *end;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001602 unsigned int crc;
1603 struct module *mod;
Sam Ravnborg040fcc82006-01-28 22:15:55 +01001604 struct symbol *s;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001605
1606 if (!(symname = strchr(line, '\t')))
1607 goto fail;
1608 *symname++ = '\0';
1609 if (!(modname = strchr(symname, '\t')))
1610 goto fail;
1611 *modname++ = '\0';
Laurent Riffard9ac545b2006-06-11 08:02:06 +02001612 if ((export = strchr(modname, '\t')) != NULL)
Ram Paibd5cbce2006-06-08 22:12:53 -07001613 *export++ = '\0';
Sam Ravnborg534b89a2006-07-01 10:10:19 +02001614 if (export && ((end = strchr(export, '\t')) != NULL))
1615 *end = '\0';
Linus Torvalds1da177e2005-04-16 15:20:36 -07001616 crc = strtoul(line, &d, 16);
1617 if (*symname == '\0' || *modname == '\0' || *d != '\0')
1618 goto fail;
1619
1620 if (!(mod = find_module(modname))) {
1621 if (is_vmlinux(modname)) {
1622 have_vmlinux = 1;
1623 }
1624 mod = new_module(NOFAIL(strdup(modname)));
1625 mod->skip = 1;
1626 }
Ram Paibd5cbce2006-06-08 22:12:53 -07001627 s = sym_add_exported(symname, mod, export_no(export));
Sam Ravnborg8e70c452006-01-28 22:22:33 +01001628 s->kernel = kernel;
1629 s->preloaded = 1;
Ram Paibd5cbce2006-06-08 22:12:53 -07001630 sym_update_crc(symname, mod, crc, export_no(export));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001631 }
1632 return;
1633fail:
1634 fatal("parse error in symbol dump file\n");
1635}
1636
Sam Ravnborg040fcc82006-01-28 22:15:55 +01001637/* For normal builds always dump all symbols.
1638 * For external modules only dump symbols
1639 * that are not read from kernel Module.symvers.
1640 **/
1641static int dump_sym(struct symbol *sym)
1642{
1643 if (!external_module)
1644 return 1;
1645 if (sym->vmlinux || sym->kernel)
1646 return 0;
1647 return 1;
1648}
Sam Ravnborg62070fa2006-03-03 16:46:04 +01001649
Sam Ravnborg5c3ead82006-01-28 17:19:35 +01001650static void write_dump(const char *fname)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001651{
1652 struct buffer buf = { };
1653 struct symbol *symbol;
1654 int n;
1655
1656 for (n = 0; n < SYMBOL_HASH_SIZE ; n++) {
1657 symbol = symbolhash[n];
1658 while (symbol) {
Sam Ravnborg040fcc82006-01-28 22:15:55 +01001659 if (dump_sym(symbol))
Ram Paibd5cbce2006-06-08 22:12:53 -07001660 buf_printf(&buf, "0x%08x\t%s\t%s\t%s\n",
Sam Ravnborg62070fa2006-03-03 16:46:04 +01001661 symbol->crc, symbol->name,
Ram Paibd5cbce2006-06-08 22:12:53 -07001662 symbol->module->name,
1663 export_str(symbol->export));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001664 symbol = symbol->next;
1665 }
1666 }
1667 write_if_changed(&buf, fname);
1668}
1669
Sam Ravnborg5c3ead82006-01-28 17:19:35 +01001670int main(int argc, char **argv)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001671{
1672 struct module *mod;
1673 struct buffer buf = { };
1674 char fname[SZ];
Sam Ravnborg040fcc82006-01-28 22:15:55 +01001675 char *kernel_read = NULL, *module_read = NULL;
1676 char *dump_write = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001677 int opt;
Kirill Korotaevc53ddac2006-09-07 13:08:54 -07001678 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001679
Kirill Korotaevc53ddac2006-09-07 13:08:54 -07001680 while ((opt = getopt(argc, argv, "i:I:mo:aw")) != -1) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001681 switch(opt) {
1682 case 'i':
Sam Ravnborg040fcc82006-01-28 22:15:55 +01001683 kernel_read = optarg;
1684 break;
1685 case 'I':
1686 module_read = optarg;
1687 external_module = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001688 break;
1689 case 'm':
1690 modversions = 1;
1691 break;
1692 case 'o':
1693 dump_write = optarg;
1694 break;
1695 case 'a':
1696 all_versions = 1;
1697 break;
Kirill Korotaevc53ddac2006-09-07 13:08:54 -07001698 case 'w':
1699 warn_unresolved = 1;
1700 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001701 default:
1702 exit(1);
1703 }
1704 }
1705
Sam Ravnborg040fcc82006-01-28 22:15:55 +01001706 if (kernel_read)
1707 read_dump(kernel_read, 1);
1708 if (module_read)
1709 read_dump(module_read, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001710
1711 while (optind < argc) {
1712 read_symbols(argv[optind++]);
1713 }
1714
1715 for (mod = modules; mod; mod = mod->next) {
1716 if (mod->skip)
1717 continue;
Sam Ravnborgc96fca22006-07-01 11:44:23 +02001718 check_exports(mod);
Sam Ravnborgb817f6f2006-06-09 21:53:55 +02001719 }
1720
Kirill Korotaevc53ddac2006-09-07 13:08:54 -07001721 err = 0;
1722
Sam Ravnborgb817f6f2006-06-09 21:53:55 +02001723 for (mod = modules; mod; mod = mod->next) {
1724 if (mod->skip)
1725 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001726
1727 buf.pos = 0;
1728
1729 add_header(&buf, mod);
Kirill Korotaevc53ddac2006-09-07 13:08:54 -07001730 err |= add_versions(&buf, mod);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001731 add_depends(&buf, mod, modules);
1732 add_moddevtable(&buf, mod);
1733 add_srcversion(&buf, mod);
1734
1735 sprintf(fname, "%s.mod.c", mod->name);
1736 write_if_changed(&buf, fname);
1737 }
1738
1739 if (dump_write)
1740 write_dump(dump_write);
1741
Kirill Korotaevc53ddac2006-09-07 13:08:54 -07001742 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001743}