blob: b10b69b56a31fd9a82253c78855ce1ad7ba66fd7 [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);
387 }
388 /* Find symbol table. */
389 for (i = 1; i < hdr->e_shnum; i++) {
390 const char *secstrings
391 = (void *)hdr + sechdrs[hdr->e_shstrndx].sh_offset;
Ram Paibd5cbce2006-06-08 22:12:53 -0700392 const char *secname;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700393
Sam Ravnborg85bd2fd2007-02-26 15:33:52 +0100394 if (sechdrs[i].sh_offset > info->size) {
395 fatal("%s is truncated. sechdrs[i].sh_offset=%u > sizeof(*hrd)=%ul\n", filename, (unsigned int)sechdrs[i].sh_offset, sizeof(*hdr));
396 return 0;
397 }
Ram Paibd5cbce2006-06-08 22:12:53 -0700398 secname = secstrings + sechdrs[i].sh_name;
399 if (strcmp(secname, ".modinfo") == 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700400 info->modinfo = (void *)hdr + sechdrs[i].sh_offset;
401 info->modinfo_len = sechdrs[i].sh_size;
Ram Paibd5cbce2006-06-08 22:12:53 -0700402 } else if (strcmp(secname, "__ksymtab") == 0)
403 info->export_sec = i;
Sam Ravnborgc96fca22006-07-01 11:44:23 +0200404 else if (strcmp(secname, "__ksymtab_unused") == 0)
405 info->export_unused_sec = i;
Ram Paibd5cbce2006-06-08 22:12:53 -0700406 else if (strcmp(secname, "__ksymtab_gpl") == 0)
407 info->export_gpl_sec = i;
Sam Ravnborgc96fca22006-07-01 11:44:23 +0200408 else if (strcmp(secname, "__ksymtab_unused_gpl") == 0)
409 info->export_unused_gpl_sec = i;
Ram Paibd5cbce2006-06-08 22:12:53 -0700410 else if (strcmp(secname, "__ksymtab_gpl_future") == 0)
411 info->export_gpl_future_sec = i;
412
Linus Torvalds1da177e2005-04-16 15:20:36 -0700413 if (sechdrs[i].sh_type != SHT_SYMTAB)
414 continue;
415
416 info->symtab_start = (void *)hdr + sechdrs[i].sh_offset;
Sam Ravnborg62070fa2006-03-03 16:46:04 +0100417 info->symtab_stop = (void *)hdr + sechdrs[i].sh_offset
Linus Torvalds1da177e2005-04-16 15:20:36 -0700418 + sechdrs[i].sh_size;
Sam Ravnborg62070fa2006-03-03 16:46:04 +0100419 info->strtab = (void *)hdr +
Linus Torvalds1da177e2005-04-16 15:20:36 -0700420 sechdrs[sechdrs[i].sh_link].sh_offset;
421 }
422 if (!info->symtab_start) {
Sam Ravnborgcb805142006-01-28 16:57:26 +0100423 fatal("%s has no symtab?\n", filename);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700424 }
425 /* Fix endianness in symbols */
426 for (sym = info->symtab_start; sym < info->symtab_stop; sym++) {
427 sym->st_shndx = TO_NATIVE(sym->st_shndx);
428 sym->st_name = TO_NATIVE(sym->st_name);
429 sym->st_value = TO_NATIVE(sym->st_value);
430 sym->st_size = TO_NATIVE(sym->st_size);
431 }
Sam Ravnborg85bd2fd2007-02-26 15:33:52 +0100432 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700433}
434
Sam Ravnborg5c3ead82006-01-28 17:19:35 +0100435static void parse_elf_finish(struct elf_info *info)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700436{
437 release_file(info->hdr, info->size);
438}
439
Luke Yangf7b05e62006-03-02 18:35:31 +0800440#define CRC_PFX MODULE_SYMBOL_PREFIX "__crc_"
441#define KSYMTAB_PFX MODULE_SYMBOL_PREFIX "__ksymtab_"
Linus Torvalds1da177e2005-04-16 15:20:36 -0700442
Sam Ravnborg5c3ead82006-01-28 17:19:35 +0100443static void handle_modversions(struct module *mod, struct elf_info *info,
444 Elf_Sym *sym, const char *symname)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700445{
446 unsigned int crc;
Ram Paibd5cbce2006-06-08 22:12:53 -0700447 enum export export = export_from_sec(info, sym->st_shndx);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700448
449 switch (sym->st_shndx) {
450 case SHN_COMMON:
Sam Ravnborgcb805142006-01-28 16:57:26 +0100451 warn("\"%s\" [%s] is COMMON symbol\n", symname, mod->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700452 break;
453 case SHN_ABS:
454 /* CRC'd symbol */
455 if (memcmp(symname, CRC_PFX, strlen(CRC_PFX)) == 0) {
456 crc = (unsigned int) sym->st_value;
Ram Paibd5cbce2006-06-08 22:12:53 -0700457 sym_update_crc(symname + strlen(CRC_PFX), mod, crc,
458 export);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700459 }
460 break;
461 case SHN_UNDEF:
462 /* undefined symbol */
463 if (ELF_ST_BIND(sym->st_info) != STB_GLOBAL &&
464 ELF_ST_BIND(sym->st_info) != STB_WEAK)
465 break;
466 /* ignore global offset table */
467 if (strcmp(symname, "_GLOBAL_OFFSET_TABLE_") == 0)
468 break;
469 /* ignore __this_module, it will be resolved shortly */
470 if (strcmp(symname, MODULE_SYMBOL_PREFIX "__this_module") == 0)
471 break;
Ben Colline8d529012005-08-19 13:44:57 -0700472/* cope with newer glibc (2.3.4 or higher) STT_ definition in elf.h */
473#if defined(STT_REGISTER) || defined(STT_SPARC_REGISTER)
474/* add compatibility with older glibc */
475#ifndef STT_SPARC_REGISTER
476#define STT_SPARC_REGISTER STT_REGISTER
477#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700478 if (info->hdr->e_machine == EM_SPARC ||
479 info->hdr->e_machine == EM_SPARCV9) {
480 /* Ignore register directives. */
Ben Colline8d529012005-08-19 13:44:57 -0700481 if (ELF_ST_TYPE(sym->st_info) == STT_SPARC_REGISTER)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700482 break;
Sam Ravnborg62070fa2006-03-03 16:46:04 +0100483 if (symname[0] == '.') {
484 char *munged = strdup(symname);
485 munged[0] = '_';
486 munged[1] = toupper(munged[1]);
487 symname = munged;
488 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700489 }
490#endif
Sam Ravnborg62070fa2006-03-03 16:46:04 +0100491
Linus Torvalds1da177e2005-04-16 15:20:36 -0700492 if (memcmp(symname, MODULE_SYMBOL_PREFIX,
493 strlen(MODULE_SYMBOL_PREFIX)) == 0)
494 mod->unres = alloc_symbol(symname +
495 strlen(MODULE_SYMBOL_PREFIX),
496 ELF_ST_BIND(sym->st_info) == STB_WEAK,
497 mod->unres);
498 break;
499 default:
500 /* All exported symbols */
501 if (memcmp(symname, KSYMTAB_PFX, strlen(KSYMTAB_PFX)) == 0) {
Ram Paibd5cbce2006-06-08 22:12:53 -0700502 sym_add_exported(symname + strlen(KSYMTAB_PFX), mod,
503 export);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700504 }
505 if (strcmp(symname, MODULE_SYMBOL_PREFIX "init_module") == 0)
506 mod->has_init = 1;
507 if (strcmp(symname, MODULE_SYMBOL_PREFIX "cleanup_module") == 0)
508 mod->has_cleanup = 1;
509 break;
510 }
511}
512
Sam Ravnborg5c3ead82006-01-28 17:19:35 +0100513/**
514 * Parse tag=value strings from .modinfo section
515 **/
Linus Torvalds1da177e2005-04-16 15:20:36 -0700516static char *next_string(char *string, unsigned long *secsize)
517{
518 /* Skip non-zero chars */
519 while (string[0]) {
520 string++;
521 if ((*secsize)-- <= 1)
522 return NULL;
523 }
524
525 /* Skip any zero padding. */
526 while (!string[0]) {
527 string++;
528 if ((*secsize)-- <= 1)
529 return NULL;
530 }
531 return string;
532}
533
Sam Ravnborgb817f6f2006-06-09 21:53:55 +0200534static char *get_next_modinfo(void *modinfo, unsigned long modinfo_len,
535 const char *tag, char *info)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700536{
537 char *p;
538 unsigned int taglen = strlen(tag);
539 unsigned long size = modinfo_len;
540
Sam Ravnborgb817f6f2006-06-09 21:53:55 +0200541 if (info) {
542 size -= info - (char *)modinfo;
543 modinfo = next_string(info, &size);
544 }
545
Linus Torvalds1da177e2005-04-16 15:20:36 -0700546 for (p = modinfo; p; p = next_string(p, &size)) {
547 if (strncmp(p, tag, taglen) == 0 && p[taglen] == '=')
548 return p + taglen + 1;
549 }
550 return NULL;
551}
552
Sam Ravnborgb817f6f2006-06-09 21:53:55 +0200553static char *get_modinfo(void *modinfo, unsigned long modinfo_len,
554 const char *tag)
555
556{
557 return get_next_modinfo(modinfo, modinfo_len, tag, NULL);
558}
559
Sam Ravnborg93684d32006-02-19 11:53:35 +0100560/**
Sam Ravnborg4c8fbca2006-02-26 22:18:11 +0100561 * Test if string s ends in string sub
562 * return 0 if match
563 **/
564static int strrcmp(const char *s, const char *sub)
565{
566 int slen, sublen;
Sam Ravnborg62070fa2006-03-03 16:46:04 +0100567
Sam Ravnborg4c8fbca2006-02-26 22:18:11 +0100568 if (!s || !sub)
569 return 1;
Sam Ravnborg62070fa2006-03-03 16:46:04 +0100570
Sam Ravnborg4c8fbca2006-02-26 22:18:11 +0100571 slen = strlen(s);
572 sublen = strlen(sub);
Sam Ravnborg62070fa2006-03-03 16:46:04 +0100573
Sam Ravnborg4c8fbca2006-02-26 22:18:11 +0100574 if ((slen == 0) || (sublen == 0))
575 return 1;
576
577 if (sublen > slen)
578 return 1;
579
580 return memcmp(s + slen - sublen, sub, sublen);
581}
582
583/**
584 * Whitelist to allow certain references to pass with no warning.
585 * Pattern 1:
586 * If a module parameter is declared __initdata and permissions=0
587 * then this is legal despite the warning generated.
588 * We cannot see value of permissions here, so just ignore
589 * this pattern.
590 * The pattern is identified by:
591 * tosec = .init.data
Sam Ravnborg9209aed2006-03-05 00:16:26 +0100592 * fromsec = .data*
Sam Ravnborg4c8fbca2006-02-26 22:18:11 +0100593 * atsym =__param*
Sam Ravnborg62070fa2006-03-03 16:46:04 +0100594 *
Sam Ravnborg4c8fbca2006-02-26 22:18:11 +0100595 * Pattern 2:
Randy Dunlap72ee59b2006-04-15 11:17:12 -0700596 * Many drivers utilise a *driver container with references to
Sam Ravnborg4c8fbca2006-02-26 22:18:11 +0100597 * add, remove, probe functions etc.
598 * These functions may often be marked __init and we do not want to
599 * warn here.
600 * the pattern is identified by:
Sam Ravnborg5ecdd0f2006-04-14 23:54:13 +0200601 * tosec = .init.text | .exit.text | .init.data
Sam Ravnborg4c8fbca2006-02-26 22:18:11 +0100602 * fromsec = .data
Sam Ravnborgaae5f662007-02-26 16:45:41 +0100603 * atsym = *driver, *_template, *_sht, *_ops, *_probe, *probe_one, *_console
Vivek Goyalee6a8542007-01-11 01:52:44 +0100604 *
605 * Pattern 3:
Sam Ravnborg9bf8cb92007-02-26 17:49:06 +0100606 * Whitelist all references from .pci_fixup* section to .init.text
607 * This is part of the PCI init when built-in
608 *
609 * Pattern 4:
610 * Whitelist all refereces from .text.head to .init.data
611 * Whitelist all refereces from .text.head to .init.text
612 *
613 * Pattern 5:
Vivek Goyalee6a8542007-01-11 01:52:44 +0100614 * Some symbols belong to init section but still it is ok to reference
615 * these from non-init sections as these symbols don't have any memory
616 * allocated for them and symbol address and value are same. So even
617 * if init section is freed, its ok to reference those symbols.
618 * For ex. symbols marking the init section boundaries.
619 * This pattern is identified by
620 * refsymname = __init_begin, _sinittext, _einittext
Sam Ravnborg9bf8cb92007-02-26 17:49:06 +0100621 *
622 * Pattern 6:
Sam Ravnborgaae5f662007-02-26 16:45:41 +0100623 * During the early init phase we have references from .init.text to
624 * .text we have an intended section mismatch - do not warn about it.
625 * See kernel_init() in init/main.c
626 * tosec = .init.text
627 * fromsec = .text
628 * atsym = kernel_init
629 * Some symbols belong to init section but still it is ok to reference
Sam Ravnborg5a4910f2007-02-27 09:14:58 +0100630 *
631 * Pattern 7:
632 * Logos used in drivers/video/logo reside in __initdata but the
633 * funtion that references them are EXPORT_SYMBOL() so cannot be
634 * marker __init. So we whitelist them here.
635 * The pattern is:
636 * tosec = .init.data
637 * fromsec = .text*
638 * refsymname = logo_
Sam Ravnborg4c8fbca2006-02-26 22:18:11 +0100639 **/
Magnus Damm9e157a52006-08-08 17:32:11 +0900640static int secref_whitelist(const char *modname, const char *tosec,
Vivek Goyalee6a8542007-01-11 01:52:44 +0100641 const char *fromsec, const char *atsym,
642 const char *refsymname)
Sam Ravnborg4c8fbca2006-02-26 22:18:11 +0100643{
644 int f1 = 1, f2 = 1;
645 const char **s;
646 const char *pat2sym[] = {
Randy Dunlap72ee59b2006-04-15 11:17:12 -0700647 "driver",
Sam Ravnborg5ecdd0f2006-04-14 23:54:13 +0200648 "_template", /* scsi uses *_template a lot */
649 "_sht", /* scsi also used *_sht to some extent */
Sam Ravnborg4c8fbca2006-02-26 22:18:11 +0100650 "_ops",
651 "_probe",
652 "_probe_one",
Vivek Goyal118c0ac2007-01-11 01:52:44 +0100653 "_console",
Sam Ravnborg4c8fbca2006-02-26 22:18:11 +0100654 NULL
655 };
Sam Ravnborg62070fa2006-03-03 16:46:04 +0100656
Vivek Goyalee6a8542007-01-11 01:52:44 +0100657 const char *pat3refsym[] = {
658 "__init_begin",
659 "_sinittext",
660 "_einittext",
661 NULL
662 };
663
Sam Ravnborg4c8fbca2006-02-26 22:18:11 +0100664 /* Check for pattern 1 */
665 if (strcmp(tosec, ".init.data") != 0)
666 f1 = 0;
Sam Ravnborg9209aed2006-03-05 00:16:26 +0100667 if (strncmp(fromsec, ".data", strlen(".data")) != 0)
Sam Ravnborg4c8fbca2006-02-26 22:18:11 +0100668 f1 = 0;
669 if (strncmp(atsym, "__param", strlen("__param")) != 0)
670 f1 = 0;
671
672 if (f1)
673 return f1;
674
675 /* Check for pattern 2 */
Sam Ravnborg62070fa2006-03-03 16:46:04 +0100676 if ((strcmp(tosec, ".init.text") != 0) &&
Sam Ravnborg5ecdd0f2006-04-14 23:54:13 +0200677 (strcmp(tosec, ".exit.text") != 0) &&
678 (strcmp(tosec, ".init.data") != 0))
Sam Ravnborg4c8fbca2006-02-26 22:18:11 +0100679 f2 = 0;
680 if (strcmp(fromsec, ".data") != 0)
681 f2 = 0;
682
683 for (s = pat2sym; *s; s++)
684 if (strrcmp(atsym, *s) == 0)
685 f1 = 1;
Magnus Damm9e157a52006-08-08 17:32:11 +0900686 if (f1 && f2)
687 return 1;
Sam Ravnborg4c8fbca2006-02-26 22:18:11 +0100688
Sam Ravnborg9bf8cb92007-02-26 17:49:06 +0100689 /* Check for pattern 3 */
690 if ((strncmp(fromsec, ".pci_fixup", strlen(".pci_fixup")) == 0) &&
691 (strcmp(tosec, ".init.text") == 0))
692 return 1;
Vivek Goyalee6a8542007-01-11 01:52:44 +0100693
Sam Ravnborgaae5f662007-02-26 16:45:41 +0100694 /* Check for pattern 4 */
Sam Ravnborg9bf8cb92007-02-26 17:49:06 +0100695 if ((strcmp(fromsec, ".text.head") == 0) &&
696 ((strcmp(tosec, ".init.data") == 0) ||
697 (strcmp(tosec, ".init.text") == 0)))
698 return 1;
699
700 /* Check for pattern 5 */
701 for (s = pat3refsym; *s; s++)
702 if (strcmp(refsymname, *s) == 0)
703 return 1;
704
705 /* Check for pattern 6 */
Sam Ravnborgaae5f662007-02-26 16:45:41 +0100706 if ((strcmp(tosec, ".init.text") == 0) &&
707 (strcmp(fromsec, ".text") == 0) &&
708 (strcmp(refsymname, "kernel_init") == 0))
709 return 1;
Sam Ravnborg5a4910f2007-02-27 09:14:58 +0100710
711 /* Check for pattern 7 */
712 if ((strcmp(tosec, ".init.data") == 0) &&
713 (strncmp(fromsec, ".text", strlen(".text")) == 0) &&
714 (strncmp(refsymname, "logo_", strlen("logo_")) == 0))
715 return 1;
Sam Ravnborg93659af2006-08-09 08:23:55 +0200716 return 0;
Sam Ravnborg4c8fbca2006-02-26 22:18:11 +0100717}
718
719/**
Sam Ravnborg93684d32006-02-19 11:53:35 +0100720 * Find symbol based on relocation record info.
721 * In some cases the symbol supplied is a valid symbol so
722 * return refsym. If st_name != 0 we assume this is a valid symbol.
723 * In other cases the symbol needs to be looked up in the symbol table
724 * based on section and address.
725 * **/
726static Elf_Sym *find_elf_symbol(struct elf_info *elf, Elf_Addr addr,
727 Elf_Sym *relsym)
728{
729 Elf_Sym *sym;
730
731 if (relsym->st_name != 0)
732 return relsym;
733 for (sym = elf->symtab_start; sym < elf->symtab_stop; sym++) {
734 if (sym->st_shndx != relsym->st_shndx)
735 continue;
736 if (sym->st_value == addr)
737 return sym;
738 }
739 return NULL;
740}
741
David Brownellda68d612007-02-20 13:58:16 -0800742static inline int is_arm_mapping_symbol(const char *str)
743{
744 return str[0] == '$' && strchr("atd", str[1])
745 && (str[2] == '\0' || str[2] == '.');
746}
747
748/*
749 * If there's no name there, ignore it; likewise, ignore it if it's
750 * one of the magic symbols emitted used by current ARM tools.
751 *
752 * Otherwise if find_symbols_between() returns those symbols, they'll
753 * fail the whitelist tests and cause lots of false alarms ... fixable
754 * only by merging __exit and __init sections into __text, bloating
755 * the kernel (which is especially evil on embedded platforms).
756 */
757static inline int is_valid_name(struct elf_info *elf, Elf_Sym *sym)
758{
759 const char *name = elf->strtab + sym->st_name;
760
761 if (!name || !strlen(name))
762 return 0;
763 return !is_arm_mapping_symbol(name);
764}
765
Sam Ravnborgb39927c2006-02-17 22:42:02 +0100766/*
Sam Ravnborg43c74d12006-03-05 12:02:46 +0100767 * Find symbols before or equal addr and after addr - in the section sec.
768 * If we find two symbols with equal offset prefer one with a valid name.
769 * The ELF format may have a better way to detect what type of symbol
770 * it is, but this works for now.
Sam Ravnborgb39927c2006-02-17 22:42:02 +0100771 **/
772static void find_symbols_between(struct elf_info *elf, Elf_Addr addr,
773 const char *sec,
774 Elf_Sym **before, Elf_Sym **after)
775{
776 Elf_Sym *sym;
777 Elf_Ehdr *hdr = elf->hdr;
778 Elf_Addr beforediff = ~0;
779 Elf_Addr afterdiff = ~0;
780 const char *secstrings = (void *)hdr +
781 elf->sechdrs[hdr->e_shstrndx].sh_offset;
Sam Ravnborg62070fa2006-03-03 16:46:04 +0100782
Sam Ravnborgb39927c2006-02-17 22:42:02 +0100783 *before = NULL;
784 *after = NULL;
785
786 for (sym = elf->symtab_start; sym < elf->symtab_stop; sym++) {
787 const char *symsec;
788
789 if (sym->st_shndx >= SHN_LORESERVE)
790 continue;
791 symsec = secstrings + elf->sechdrs[sym->st_shndx].sh_name;
792 if (strcmp(symsec, sec) != 0)
793 continue;
David Brownellda68d612007-02-20 13:58:16 -0800794 if (!is_valid_name(elf, sym))
795 continue;
Sam Ravnborgb39927c2006-02-17 22:42:02 +0100796 if (sym->st_value <= addr) {
797 if ((addr - sym->st_value) < beforediff) {
798 beforediff = addr - sym->st_value;
799 *before = sym;
800 }
Sam Ravnborg43c74d12006-03-05 12:02:46 +0100801 else if ((addr - sym->st_value) == beforediff) {
David Brownellda68d612007-02-20 13:58:16 -0800802 *before = sym;
Sam Ravnborg43c74d12006-03-05 12:02:46 +0100803 }
Sam Ravnborgb39927c2006-02-17 22:42:02 +0100804 }
805 else
806 {
807 if ((sym->st_value - addr) < afterdiff) {
808 afterdiff = sym->st_value - addr;
809 *after = sym;
810 }
Sam Ravnborg43c74d12006-03-05 12:02:46 +0100811 else if ((sym->st_value - addr) == afterdiff) {
David Brownellda68d612007-02-20 13:58:16 -0800812 *after = sym;
Sam Ravnborg43c74d12006-03-05 12:02:46 +0100813 }
Sam Ravnborgb39927c2006-02-17 22:42:02 +0100814 }
815 }
816}
817
818/**
819 * Print a warning about a section mismatch.
820 * Try to find symbols near it so user can find it.
Sam Ravnborg4c8fbca2006-02-26 22:18:11 +0100821 * Check whitelist before warning - it may be a false positive.
Sam Ravnborgb39927c2006-02-17 22:42:02 +0100822 **/
823static void warn_sec_mismatch(const char *modname, const char *fromsec,
824 struct elf_info *elf, Elf_Sym *sym, Elf_Rela r)
825{
Sam Ravnborg93684d32006-02-19 11:53:35 +0100826 const char *refsymname = "";
827 Elf_Sym *before, *after;
828 Elf_Sym *refsym;
Sam Ravnborgb39927c2006-02-17 22:42:02 +0100829 Elf_Ehdr *hdr = elf->hdr;
830 Elf_Shdr *sechdrs = elf->sechdrs;
831 const char *secstrings = (void *)hdr +
832 sechdrs[hdr->e_shstrndx].sh_offset;
833 const char *secname = secstrings + sechdrs[sym->st_shndx].sh_name;
Sam Ravnborg62070fa2006-03-03 16:46:04 +0100834
Sam Ravnborgb39927c2006-02-17 22:42:02 +0100835 find_symbols_between(elf, r.r_offset, fromsec, &before, &after);
836
Sam Ravnborg93684d32006-02-19 11:53:35 +0100837 refsym = find_elf_symbol(elf, r.r_addend, sym);
838 if (refsym && strlen(elf->strtab + refsym->st_name))
839 refsymname = elf->strtab + refsym->st_name;
Sam Ravnborg4c8fbca2006-02-26 22:18:11 +0100840
841 /* check whitelist - we may ignore it */
Sam Ravnborg62070fa2006-03-03 16:46:04 +0100842 if (before &&
Magnus Damm9e157a52006-08-08 17:32:11 +0900843 secref_whitelist(modname, secname, fromsec,
Vivek Goyalee6a8542007-01-11 01:52:44 +0100844 elf->strtab + before->st_name, refsymname))
Sam Ravnborg4c8fbca2006-02-26 22:18:11 +0100845 return;
Sam Ravnborg62070fa2006-03-03 16:46:04 +0100846
Sam Ravnborgb39927c2006-02-17 22:42:02 +0100847 if (before && after) {
Sam Ravnborg93684d32006-02-19 11:53:35 +0100848 warn("%s - Section mismatch: reference to %s:%s from %s "
849 "between '%s' (at offset 0x%llx) and '%s'\n",
850 modname, secname, refsymname, fromsec,
Sam Ravnborgb39927c2006-02-17 22:42:02 +0100851 elf->strtab + before->st_name,
Sam Ravnborg93684d32006-02-19 11:53:35 +0100852 (long long)r.r_offset,
Sam Ravnborgb39927c2006-02-17 22:42:02 +0100853 elf->strtab + after->st_name);
854 } else if (before) {
Sam Ravnborg93684d32006-02-19 11:53:35 +0100855 warn("%s - Section mismatch: reference to %s:%s from %s "
856 "after '%s' (at offset 0x%llx)\n",
Sam Ravnborg62070fa2006-03-03 16:46:04 +0100857 modname, secname, refsymname, fromsec,
Sam Ravnborgb39927c2006-02-17 22:42:02 +0100858 elf->strtab + before->st_name,
Sam Ravnborg93684d32006-02-19 11:53:35 +0100859 (long long)r.r_offset);
Sam Ravnborgb39927c2006-02-17 22:42:02 +0100860 } else if (after) {
Sam Ravnborg93684d32006-02-19 11:53:35 +0100861 warn("%s - Section mismatch: reference to %s:%s from %s "
862 "before '%s' (at offset -0x%llx)\n",
Sam Ravnborg62070fa2006-03-03 16:46:04 +0100863 modname, secname, refsymname, fromsec,
Eric Sesterhenneaaae382006-04-11 00:54:16 +0200864 elf->strtab + after->st_name,
Sam Ravnborg93684d32006-02-19 11:53:35 +0100865 (long long)r.r_offset);
Sam Ravnborgb39927c2006-02-17 22:42:02 +0100866 } else {
Sam Ravnborg93684d32006-02-19 11:53:35 +0100867 warn("%s - Section mismatch: reference to %s:%s from %s "
868 "(offset 0x%llx)\n",
869 modname, secname, fromsec, refsymname,
870 (long long)r.r_offset);
Sam Ravnborgb39927c2006-02-17 22:42:02 +0100871 }
872}
873
874/**
875 * A module includes a number of sections that are discarded
876 * either when loaded or when used as built-in.
877 * For loaded modules all functions marked __init and all data
878 * marked __initdata will be discarded when the module has been intialized.
879 * Likewise for modules used built-in the sections marked __exit
880 * are discarded because __exit marked function are supposed to be called
881 * only when a moduel is unloaded which never happes for built-in modules.
882 * The check_sec_ref() function traverses all relocation records
883 * to find all references to a section that reference a section that will
884 * be discarded and warns about it.
885 **/
886static void check_sec_ref(struct module *mod, const char *modname,
887 struct elf_info *elf,
888 int section(const char*),
889 int section_ref_ok(const char *))
890{
891 int i;
892 Elf_Sym *sym;
893 Elf_Ehdr *hdr = elf->hdr;
894 Elf_Shdr *sechdrs = elf->sechdrs;
895 const char *secstrings = (void *)hdr +
896 sechdrs[hdr->e_shstrndx].sh_offset;
Sam Ravnborg62070fa2006-03-03 16:46:04 +0100897
Sam Ravnborgb39927c2006-02-17 22:42:02 +0100898 /* Walk through all sections */
899 for (i = 0; i < hdr->e_shnum; i++) {
Atsushi Nemoto2c1a51f2006-05-20 15:00:26 -0700900 const char *name = secstrings + sechdrs[i].sh_name;
901 const char *secname;
902 Elf_Rela r;
Atsushi Nemotoeae07ac2006-05-20 15:00:28 -0700903 unsigned int r_sym;
Sam Ravnborgb39927c2006-02-17 22:42:02 +0100904 /* We want to process only relocation sections and not .init */
Atsushi Nemoto2c1a51f2006-05-20 15:00:26 -0700905 if (sechdrs[i].sh_type == SHT_RELA) {
906 Elf_Rela *rela;
907 Elf_Rela *start = (void *)hdr + sechdrs[i].sh_offset;
908 Elf_Rela *stop = (void*)start + sechdrs[i].sh_size;
909 name += strlen(".rela");
910 if (section_ref_ok(name))
Sam Ravnborgb39927c2006-02-17 22:42:02 +0100911 continue;
912
Atsushi Nemoto2c1a51f2006-05-20 15:00:26 -0700913 for (rela = start; rela < stop; rela++) {
914 r.r_offset = TO_NATIVE(rela->r_offset);
Atsushi Nemotoeae07ac2006-05-20 15:00:28 -0700915#if KERNEL_ELFCLASS == ELFCLASS64
916 if (hdr->e_machine == EM_MIPS) {
917 r_sym = ELF64_MIPS_R_SYM(rela->r_info);
918 r_sym = TO_NATIVE(r_sym);
919 } else {
920 r.r_info = TO_NATIVE(rela->r_info);
921 r_sym = ELF_R_SYM(r.r_info);
922 }
923#else
924 r.r_info = TO_NATIVE(rela->r_info);
925 r_sym = ELF_R_SYM(r.r_info);
926#endif
Atsushi Nemoto2c1a51f2006-05-20 15:00:26 -0700927 r.r_addend = TO_NATIVE(rela->r_addend);
Atsushi Nemotoeae07ac2006-05-20 15:00:28 -0700928 sym = elf->symtab_start + r_sym;
Atsushi Nemoto2c1a51f2006-05-20 15:00:26 -0700929 /* Skip special sections */
930 if (sym->st_shndx >= SHN_LORESERVE)
931 continue;
932
933 secname = secstrings +
934 sechdrs[sym->st_shndx].sh_name;
935 if (section(secname))
936 warn_sec_mismatch(modname, name,
937 elf, sym, r);
938 }
939 } else if (sechdrs[i].sh_type == SHT_REL) {
940 Elf_Rel *rel;
941 Elf_Rel *start = (void *)hdr + sechdrs[i].sh_offset;
942 Elf_Rel *stop = (void*)start + sechdrs[i].sh_size;
943 name += strlen(".rel");
944 if (section_ref_ok(name))
945 continue;
946
947 for (rel = start; rel < stop; rel++) {
948 r.r_offset = TO_NATIVE(rel->r_offset);
Atsushi Nemotoeae07ac2006-05-20 15:00:28 -0700949#if KERNEL_ELFCLASS == ELFCLASS64
950 if (hdr->e_machine == EM_MIPS) {
951 r_sym = ELF64_MIPS_R_SYM(rel->r_info);
952 r_sym = TO_NATIVE(r_sym);
953 } else {
954 r.r_info = TO_NATIVE(rel->r_info);
955 r_sym = ELF_R_SYM(r.r_info);
956 }
957#else
958 r.r_info = TO_NATIVE(rel->r_info);
959 r_sym = ELF_R_SYM(r.r_info);
960#endif
Atsushi Nemoto2c1a51f2006-05-20 15:00:26 -0700961 r.r_addend = 0;
Atsushi Nemotoeae07ac2006-05-20 15:00:28 -0700962 sym = elf->symtab_start + r_sym;
Atsushi Nemoto2c1a51f2006-05-20 15:00:26 -0700963 /* Skip special sections */
964 if (sym->st_shndx >= SHN_LORESERVE)
965 continue;
966
967 secname = secstrings +
968 sechdrs[sym->st_shndx].sh_name;
969 if (section(secname))
970 warn_sec_mismatch(modname, name,
971 elf, sym, r);
972 }
Sam Ravnborgb39927c2006-02-17 22:42:02 +0100973 }
974 }
975}
976
977/**
978 * Functions used only during module init is marked __init and is stored in
979 * a .init.text section. Likewise data is marked __initdata and stored in
980 * a .init.data section.
981 * If this section is one of these sections return 1
982 * See include/linux/init.h for the details
983 **/
984static int init_section(const char *name)
985{
986 if (strcmp(name, ".init") == 0)
987 return 1;
988 if (strncmp(name, ".init.", strlen(".init.")) == 0)
989 return 1;
990 return 0;
991}
992
993/**
994 * Identify sections from which references to a .init section is OK.
Sam Ravnborg62070fa2006-03-03 16:46:04 +0100995 *
Sam Ravnborgb39927c2006-02-17 22:42:02 +0100996 * Unfortunately references to read only data that referenced .init
997 * sections had to be excluded. Almost all of these are false
998 * positives, they are created by gcc. The downside of excluding rodata
999 * is that there really are some user references from rodata to
1000 * init code, e.g. drivers/video/vgacon.c:
Sam Ravnborg62070fa2006-03-03 16:46:04 +01001001 *
Sam Ravnborgb39927c2006-02-17 22:42:02 +01001002 * const struct consw vga_con = {
1003 * con_startup: vgacon_startup,
1004 *
1005 * where vgacon_startup is __init. If you want to wade through the false
1006 * positives, take out the check for rodata.
1007 **/
1008static int init_section_ref_ok(const char *name)
1009{
1010 const char **s;
1011 /* Absolute section names */
1012 const char *namelist1[] = {
1013 ".init",
Sam Ravnborg9209aed2006-03-05 00:16:26 +01001014 ".opd", /* see comment [OPD] at exit_section_ref_ok() */
1015 ".toc1", /* used by ppc64 */
Sam Ravnborgb39927c2006-02-17 22:42:02 +01001016 ".stab",
Matthew Wilcox742433b2007-02-05 16:34:00 -08001017 ".data.rel.ro", /* used by parisc64 */
Rusty Russell139ec7c2006-12-07 02:14:08 +01001018 ".parainstructions",
Sam Ravnborgb39927c2006-02-17 22:42:02 +01001019 ".text.lock",
Sam Ravnborg9209aed2006-03-05 00:16:26 +01001020 "__bug_table", /* used by powerpc for BUG() */
Sam Ravnborgb39927c2006-02-17 22:42:02 +01001021 ".pci_fixup_header",
1022 ".pci_fixup_final",
1023 ".pdr",
1024 "__param",
Al Viro468d9492006-06-23 23:22:43 +01001025 "__ex_table",
1026 ".fixup",
Randy Dunlap35899c52006-06-07 16:23:26 -07001027 ".smp_locks",
Sam Ravnborg909252d2006-06-08 20:37:30 +02001028 ".plt", /* seen on ARCH=um build on x86_64. Harmless */
Benjamin Herrenschmidt21c4ff82006-10-20 11:47:19 +10001029 "__ftr_fixup", /* powerpc cpu feature fixup */
1030 "__fw_ftr_fixup", /* powerpc firmware feature fixup */
Sam Ravnborgb39927c2006-02-17 22:42:02 +01001031 NULL
1032 };
1033 /* Start of section names */
1034 const char *namelist2[] = {
1035 ".init.",
1036 ".altinstructions",
1037 ".eh_frame",
1038 ".debug",
Rusty Russell139ec7c2006-12-07 02:14:08 +01001039 ".parainstructions",
Matthew Wilcox742433b2007-02-05 16:34:00 -08001040 ".rodata",
Sam Ravnborgb39927c2006-02-17 22:42:02 +01001041 NULL
1042 };
Sam Ravnborg6e101332006-02-22 21:24:50 +01001043 /* part of section name */
1044 const char *namelist3 [] = {
1045 ".unwind", /* sample: IA_64.unwind.init.text */
1046 NULL
1047 };
1048
Sam Ravnborgb39927c2006-02-17 22:42:02 +01001049 for (s = namelist1; *s; s++)
1050 if (strcmp(*s, name) == 0)
1051 return 1;
Sam Ravnborg62070fa2006-03-03 16:46:04 +01001052 for (s = namelist2; *s; s++)
Sam Ravnborgb39927c2006-02-17 22:42:02 +01001053 if (strncmp(*s, name, strlen(*s)) == 0)
1054 return 1;
Sam Ravnborg62070fa2006-03-03 16:46:04 +01001055 for (s = namelist3; *s; s++)
Sam Ravnborge835a392006-03-05 11:34:15 +01001056 if (strstr(name, *s) != NULL)
Sam Ravnborg6e101332006-02-22 21:24:50 +01001057 return 1;
Al Viro468d9492006-06-23 23:22:43 +01001058 if (strrcmp(name, ".init") == 0)
1059 return 1;
Sam Ravnborgb39927c2006-02-17 22:42:02 +01001060 return 0;
1061}
1062
1063/*
1064 * Functions used only during module exit is marked __exit and is stored in
1065 * a .exit.text section. Likewise data is marked __exitdata and stored in
1066 * a .exit.data section.
1067 * If this section is one of these sections return 1
1068 * See include/linux/init.h for the details
1069 **/
1070static int exit_section(const char *name)
1071{
1072 if (strcmp(name, ".exit.text") == 0)
1073 return 1;
1074 if (strcmp(name, ".exit.data") == 0)
1075 return 1;
1076 return 0;
Sam Ravnborg62070fa2006-03-03 16:46:04 +01001077
Sam Ravnborgb39927c2006-02-17 22:42:02 +01001078}
1079
1080/*
1081 * Identify sections from which references to a .exit section is OK.
Sam Ravnborg62070fa2006-03-03 16:46:04 +01001082 *
Sam Ravnborgb39927c2006-02-17 22:42:02 +01001083 * [OPD] Keith Ownes <kaos@sgi.com> commented:
1084 * For our future {in}sanity, add a comment that this is the ppc .opd
1085 * section, not the ia64 .opd section.
1086 * ia64 .opd should not point to discarded sections.
Sam Ravnborg5ecdd0f2006-04-14 23:54:13 +02001087 * [.rodata] like for .init.text we ignore .rodata references -same reason
Sam Ravnborgb39927c2006-02-17 22:42:02 +01001088 **/
1089static int exit_section_ref_ok(const char *name)
1090{
1091 const char **s;
1092 /* Absolute section names */
1093 const char *namelist1[] = {
1094 ".exit.text",
1095 ".exit.data",
1096 ".init.text",
Sam Ravnborg5ecdd0f2006-04-14 23:54:13 +02001097 ".rodata",
Sam Ravnborgb39927c2006-02-17 22:42:02 +01001098 ".opd", /* See comment [OPD] */
Sam Ravnborg9209aed2006-03-05 00:16:26 +01001099 ".toc1", /* used by ppc64 */
Sam Ravnborgb39927c2006-02-17 22:42:02 +01001100 ".altinstructions",
1101 ".pdr",
Sam Ravnborg9209aed2006-03-05 00:16:26 +01001102 "__bug_table", /* used by powerpc for BUG() */
Sam Ravnborgb39927c2006-02-17 22:42:02 +01001103 ".exitcall.exit",
1104 ".eh_frame",
Randy Dunlapacd19492006-12-13 00:33:57 -08001105 ".parainstructions",
Sam Ravnborgb39927c2006-02-17 22:42:02 +01001106 ".stab",
Al Viro468d9492006-06-23 23:22:43 +01001107 "__ex_table",
1108 ".fixup",
Randy Dunlap35899c52006-06-07 16:23:26 -07001109 ".smp_locks",
Sam Ravnborg909252d2006-06-08 20:37:30 +02001110 ".plt", /* seen on ARCH=um build on x86_64. Harmless */
Sam Ravnborgb39927c2006-02-17 22:42:02 +01001111 NULL
1112 };
1113 /* Start of section names */
1114 const char *namelist2[] = {
1115 ".debug",
1116 NULL
1117 };
Sam Ravnborg6e101332006-02-22 21:24:50 +01001118 /* part of section name */
1119 const char *namelist3 [] = {
1120 ".unwind", /* Sample: IA_64.unwind.exit.text */
1121 NULL
1122 };
Sam Ravnborg62070fa2006-03-03 16:46:04 +01001123
Sam Ravnborgb39927c2006-02-17 22:42:02 +01001124 for (s = namelist1; *s; s++)
1125 if (strcmp(*s, name) == 0)
1126 return 1;
Sam Ravnborg62070fa2006-03-03 16:46:04 +01001127 for (s = namelist2; *s; s++)
Sam Ravnborgb39927c2006-02-17 22:42:02 +01001128 if (strncmp(*s, name, strlen(*s)) == 0)
1129 return 1;
Sam Ravnborg62070fa2006-03-03 16:46:04 +01001130 for (s = namelist3; *s; s++)
Sam Ravnborge835a392006-03-05 11:34:15 +01001131 if (strstr(name, *s) != NULL)
Sam Ravnborg6e101332006-02-22 21:24:50 +01001132 return 1;
Sam Ravnborgb39927c2006-02-17 22:42:02 +01001133 return 0;
1134}
1135
Sam Ravnborg5c3ead82006-01-28 17:19:35 +01001136static void read_symbols(char *modname)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001137{
1138 const char *symname;
1139 char *version;
Sam Ravnborgb817f6f2006-06-09 21:53:55 +02001140 char *license;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001141 struct module *mod;
1142 struct elf_info info = { };
1143 Elf_Sym *sym;
1144
Sam Ravnborg85bd2fd2007-02-26 15:33:52 +01001145 if (!parse_elf(&info, modname))
1146 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001147
1148 mod = new_module(modname);
1149
1150 /* When there's no vmlinux, don't print warnings about
1151 * unresolved symbols (since there'll be too many ;) */
1152 if (is_vmlinux(modname)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001153 have_vmlinux = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001154 mod->skip = 1;
1155 }
1156
Sam Ravnborgb817f6f2006-06-09 21:53:55 +02001157 license = get_modinfo(info.modinfo, info.modinfo_len, "license");
1158 while (license) {
1159 if (license_is_gpl_compatible(license))
1160 mod->gpl_compatible = 1;
1161 else {
1162 mod->gpl_compatible = 0;
1163 break;
1164 }
1165 license = get_next_modinfo(info.modinfo, info.modinfo_len,
1166 "license", license);
1167 }
1168
Linus Torvalds1da177e2005-04-16 15:20:36 -07001169 for (sym = info.symtab_start; sym < info.symtab_stop; sym++) {
1170 symname = info.strtab + sym->st_name;
1171
1172 handle_modversions(mod, &info, sym, symname);
1173 handle_moddevtable(mod, &info, sym, symname);
1174 }
Sam Ravnborgb39927c2006-02-17 22:42:02 +01001175 check_sec_ref(mod, modname, &info, init_section, init_section_ref_ok);
1176 check_sec_ref(mod, modname, &info, exit_section, exit_section_ref_ok);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001177
1178 version = get_modinfo(info.modinfo, info.modinfo_len, "version");
1179 if (version)
1180 maybe_frob_rcs_version(modname, version, info.modinfo,
1181 version - (char *)info.hdr);
1182 if (version || (all_versions && !is_vmlinux(modname)))
1183 get_src_version(modname, mod->srcversion,
1184 sizeof(mod->srcversion)-1);
1185
1186 parse_elf_finish(&info);
1187
1188 /* Our trick to get versioning for struct_module - it's
1189 * never passed as an argument to an exported function, so
1190 * the automatic versioning doesn't pick it up, but it's really
1191 * important anyhow */
1192 if (modversions)
1193 mod->unres = alloc_symbol("struct_module", 0, mod->unres);
1194}
1195
1196#define SZ 500
1197
1198/* We first write the generated file into memory using the
1199 * following helper, then compare to the file on disk and
1200 * only update the later if anything changed */
1201
Sam Ravnborg5c3ead82006-01-28 17:19:35 +01001202void __attribute__((format(printf, 2, 3))) buf_printf(struct buffer *buf,
1203 const char *fmt, ...)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001204{
1205 char tmp[SZ];
1206 int len;
1207 va_list ap;
Sam Ravnborg62070fa2006-03-03 16:46:04 +01001208
Linus Torvalds1da177e2005-04-16 15:20:36 -07001209 va_start(ap, fmt);
1210 len = vsnprintf(tmp, SZ, fmt, ap);
Sam Ravnborg7670f022006-03-16 23:04:08 -08001211 buf_write(buf, tmp, len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001212 va_end(ap);
1213}
1214
Sam Ravnborg5c3ead82006-01-28 17:19:35 +01001215void buf_write(struct buffer *buf, const char *s, int len)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001216{
1217 if (buf->size - buf->pos < len) {
Sam Ravnborg7670f022006-03-16 23:04:08 -08001218 buf->size += len + SZ;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001219 buf->p = realloc(buf->p, buf->size);
1220 }
1221 strncpy(buf->p + buf->pos, s, len);
1222 buf->pos += len;
1223}
1224
Sam Ravnborgc96fca22006-07-01 11:44:23 +02001225static void check_for_gpl_usage(enum export exp, const char *m, const char *s)
1226{
1227 const char *e = is_vmlinux(m) ?"":".ko";
1228
1229 switch (exp) {
1230 case export_gpl:
1231 fatal("modpost: GPL-incompatible module %s%s "
1232 "uses GPL-only symbol '%s'\n", m, e, s);
1233 break;
1234 case export_unused_gpl:
1235 fatal("modpost: GPL-incompatible module %s%s "
1236 "uses GPL-only symbol marked UNUSED '%s'\n", m, e, s);
1237 break;
1238 case export_gpl_future:
1239 warn("modpost: GPL-incompatible module %s%s "
1240 "uses future GPL-only symbol '%s'\n", m, e, s);
1241 break;
1242 case export_plain:
1243 case export_unused:
1244 case export_unknown:
1245 /* ignore */
1246 break;
1247 }
1248}
1249
1250static void check_for_unused(enum export exp, const char* m, const char* s)
1251{
1252 const char *e = is_vmlinux(m) ?"":".ko";
1253
1254 switch (exp) {
1255 case export_unused:
1256 case export_unused_gpl:
1257 warn("modpost: module %s%s "
1258 "uses symbol '%s' marked UNUSED\n", m, e, s);
1259 break;
1260 default:
1261 /* ignore */
1262 break;
1263 }
1264}
1265
1266static void check_exports(struct module *mod)
Sam Ravnborgb817f6f2006-06-09 21:53:55 +02001267{
1268 struct symbol *s, *exp;
1269
1270 for (s = mod->unres; s; s = s->next) {
Andrew Morton6449bd62006-06-09 20:45:06 -07001271 const char *basename;
Sam Ravnborgb817f6f2006-06-09 21:53:55 +02001272 exp = find_symbol(s->name);
1273 if (!exp || exp->module == mod)
1274 continue;
Andrew Morton6449bd62006-06-09 20:45:06 -07001275 basename = strrchr(mod->name, '/');
Sam Ravnborgb817f6f2006-06-09 21:53:55 +02001276 if (basename)
1277 basename++;
Sam Ravnborgc96fca22006-07-01 11:44:23 +02001278 else
1279 basename = mod->name;
1280 if (!mod->gpl_compatible)
1281 check_for_gpl_usage(exp->export, basename, exp->name);
1282 check_for_unused(exp->export, basename, exp->name);
Sam Ravnborgb817f6f2006-06-09 21:53:55 +02001283 }
1284}
1285
Sam Ravnborg5c3ead82006-01-28 17:19:35 +01001286/**
1287 * Header for the generated file
1288 **/
1289static void add_header(struct buffer *b, struct module *mod)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001290{
1291 buf_printf(b, "#include <linux/module.h>\n");
1292 buf_printf(b, "#include <linux/vermagic.h>\n");
1293 buf_printf(b, "#include <linux/compiler.h>\n");
1294 buf_printf(b, "\n");
1295 buf_printf(b, "MODULE_INFO(vermagic, VERMAGIC_STRING);\n");
1296 buf_printf(b, "\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001297 buf_printf(b, "struct module __this_module\n");
1298 buf_printf(b, "__attribute__((section(\".gnu.linkonce.this_module\"))) = {\n");
Ustyugov Romanf83b5e32005-09-23 08:42:11 +04001299 buf_printf(b, " .name = KBUILD_MODNAME,\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001300 if (mod->has_init)
1301 buf_printf(b, " .init = init_module,\n");
1302 if (mod->has_cleanup)
1303 buf_printf(b, "#ifdef CONFIG_MODULE_UNLOAD\n"
1304 " .exit = cleanup_module,\n"
1305 "#endif\n");
1306 buf_printf(b, "};\n");
1307}
1308
Sam Ravnborg5c3ead82006-01-28 17:19:35 +01001309/**
1310 * Record CRCs for unresolved symbols
1311 **/
Kirill Korotaevc53ddac2006-09-07 13:08:54 -07001312static int add_versions(struct buffer *b, struct module *mod)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001313{
1314 struct symbol *s, *exp;
Kirill Korotaevc53ddac2006-09-07 13:08:54 -07001315 int err = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001316
1317 for (s = mod->unres; s; s = s->next) {
1318 exp = find_symbol(s->name);
1319 if (!exp || exp->module == mod) {
Kirill Korotaevc53ddac2006-09-07 13:08:54 -07001320 if (have_vmlinux && !s->weak) {
Matthew Wilcox2a116652006-10-07 05:35:32 -06001321 if (warn_unresolved) {
1322 warn("\"%s\" [%s.ko] undefined!\n",
1323 s->name, mod->name);
1324 } else {
1325 merror("\"%s\" [%s.ko] undefined!\n",
1326 s->name, mod->name);
1327 err = 1;
1328 }
Kirill Korotaevc53ddac2006-09-07 13:08:54 -07001329 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001330 continue;
1331 }
1332 s->module = exp->module;
1333 s->crc_valid = exp->crc_valid;
1334 s->crc = exp->crc;
1335 }
1336
1337 if (!modversions)
Kirill Korotaevc53ddac2006-09-07 13:08:54 -07001338 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001339
1340 buf_printf(b, "\n");
1341 buf_printf(b, "static const struct modversion_info ____versions[]\n");
1342 buf_printf(b, "__attribute_used__\n");
1343 buf_printf(b, "__attribute__((section(\"__versions\"))) = {\n");
1344
1345 for (s = mod->unres; s; s = s->next) {
1346 if (!s->module) {
1347 continue;
1348 }
1349 if (!s->crc_valid) {
Sam Ravnborgcb805142006-01-28 16:57:26 +01001350 warn("\"%s\" [%s.ko] has no CRC!\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07001351 s->name, mod->name);
1352 continue;
1353 }
1354 buf_printf(b, "\t{ %#8x, \"%s\" },\n", s->crc, s->name);
1355 }
1356
1357 buf_printf(b, "};\n");
Kirill Korotaevc53ddac2006-09-07 13:08:54 -07001358
1359 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001360}
1361
Sam Ravnborg5c3ead82006-01-28 17:19:35 +01001362static void add_depends(struct buffer *b, struct module *mod,
1363 struct module *modules)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001364{
1365 struct symbol *s;
1366 struct module *m;
1367 int first = 1;
1368
1369 for (m = modules; m; m = m->next) {
1370 m->seen = is_vmlinux(m->name);
1371 }
1372
1373 buf_printf(b, "\n");
1374 buf_printf(b, "static const char __module_depends[]\n");
1375 buf_printf(b, "__attribute_used__\n");
1376 buf_printf(b, "__attribute__((section(\".modinfo\"))) =\n");
1377 buf_printf(b, "\"depends=");
1378 for (s = mod->unres; s; s = s->next) {
Sam Ravnborga61b2df2007-02-26 19:46:52 +01001379 const char *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001380 if (!s->module)
1381 continue;
1382
1383 if (s->module->seen)
1384 continue;
1385
1386 s->module->seen = 1;
Sam Ravnborga61b2df2007-02-26 19:46:52 +01001387 if ((p = strrchr(s->module->name, '/')) != NULL)
1388 p++;
1389 else
1390 p = s->module->name;
1391 buf_printf(b, "%s%s", first ? "" : ",", p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001392 first = 0;
1393 }
1394 buf_printf(b, "\";\n");
1395}
1396
Sam Ravnborg5c3ead82006-01-28 17:19:35 +01001397static void add_srcversion(struct buffer *b, struct module *mod)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001398{
1399 if (mod->srcversion[0]) {
1400 buf_printf(b, "\n");
1401 buf_printf(b, "MODULE_INFO(srcversion, \"%s\");\n",
1402 mod->srcversion);
1403 }
1404}
1405
Sam Ravnborg5c3ead82006-01-28 17:19:35 +01001406static void write_if_changed(struct buffer *b, const char *fname)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001407{
1408 char *tmp;
1409 FILE *file;
1410 struct stat st;
1411
1412 file = fopen(fname, "r");
1413 if (!file)
1414 goto write;
1415
1416 if (fstat(fileno(file), &st) < 0)
1417 goto close_write;
1418
1419 if (st.st_size != b->pos)
1420 goto close_write;
1421
1422 tmp = NOFAIL(malloc(b->pos));
1423 if (fread(tmp, 1, b->pos, file) != b->pos)
1424 goto free_write;
1425
1426 if (memcmp(tmp, b->p, b->pos) != 0)
1427 goto free_write;
1428
1429 free(tmp);
1430 fclose(file);
1431 return;
1432
1433 free_write:
1434 free(tmp);
1435 close_write:
1436 fclose(file);
1437 write:
1438 file = fopen(fname, "w");
1439 if (!file) {
1440 perror(fname);
1441 exit(1);
1442 }
1443 if (fwrite(b->p, 1, b->pos, file) != b->pos) {
1444 perror(fname);
1445 exit(1);
1446 }
1447 fclose(file);
1448}
1449
Ram Paibd5cbce2006-06-08 22:12:53 -07001450/* parse Module.symvers file. line format:
Sam Ravnborg534b89a2006-07-01 10:10:19 +02001451 * 0x12345678<tab>symbol<tab>module[[<tab>export]<tab>something]
Ram Paibd5cbce2006-06-08 22:12:53 -07001452 **/
Sam Ravnborg040fcc82006-01-28 22:15:55 +01001453static void read_dump(const char *fname, unsigned int kernel)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001454{
1455 unsigned long size, pos = 0;
1456 void *file = grab_file(fname, &size);
1457 char *line;
1458
1459 if (!file)
1460 /* No symbol versions, silently ignore */
1461 return;
1462
1463 while ((line = get_next_line(&pos, file, size))) {
Sam Ravnborg534b89a2006-07-01 10:10:19 +02001464 char *symname, *modname, *d, *export, *end;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001465 unsigned int crc;
1466 struct module *mod;
Sam Ravnborg040fcc82006-01-28 22:15:55 +01001467 struct symbol *s;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001468
1469 if (!(symname = strchr(line, '\t')))
1470 goto fail;
1471 *symname++ = '\0';
1472 if (!(modname = strchr(symname, '\t')))
1473 goto fail;
1474 *modname++ = '\0';
Laurent Riffard9ac545b2006-06-11 08:02:06 +02001475 if ((export = strchr(modname, '\t')) != NULL)
Ram Paibd5cbce2006-06-08 22:12:53 -07001476 *export++ = '\0';
Sam Ravnborg534b89a2006-07-01 10:10:19 +02001477 if (export && ((end = strchr(export, '\t')) != NULL))
1478 *end = '\0';
Linus Torvalds1da177e2005-04-16 15:20:36 -07001479 crc = strtoul(line, &d, 16);
1480 if (*symname == '\0' || *modname == '\0' || *d != '\0')
1481 goto fail;
1482
1483 if (!(mod = find_module(modname))) {
1484 if (is_vmlinux(modname)) {
1485 have_vmlinux = 1;
1486 }
1487 mod = new_module(NOFAIL(strdup(modname)));
1488 mod->skip = 1;
1489 }
Ram Paibd5cbce2006-06-08 22:12:53 -07001490 s = sym_add_exported(symname, mod, export_no(export));
Sam Ravnborg8e70c452006-01-28 22:22:33 +01001491 s->kernel = kernel;
1492 s->preloaded = 1;
Ram Paibd5cbce2006-06-08 22:12:53 -07001493 sym_update_crc(symname, mod, crc, export_no(export));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001494 }
1495 return;
1496fail:
1497 fatal("parse error in symbol dump file\n");
1498}
1499
Sam Ravnborg040fcc82006-01-28 22:15:55 +01001500/* For normal builds always dump all symbols.
1501 * For external modules only dump symbols
1502 * that are not read from kernel Module.symvers.
1503 **/
1504static int dump_sym(struct symbol *sym)
1505{
1506 if (!external_module)
1507 return 1;
1508 if (sym->vmlinux || sym->kernel)
1509 return 0;
1510 return 1;
1511}
Sam Ravnborg62070fa2006-03-03 16:46:04 +01001512
Sam Ravnborg5c3ead82006-01-28 17:19:35 +01001513static void write_dump(const char *fname)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001514{
1515 struct buffer buf = { };
1516 struct symbol *symbol;
1517 int n;
1518
1519 for (n = 0; n < SYMBOL_HASH_SIZE ; n++) {
1520 symbol = symbolhash[n];
1521 while (symbol) {
Sam Ravnborg040fcc82006-01-28 22:15:55 +01001522 if (dump_sym(symbol))
Ram Paibd5cbce2006-06-08 22:12:53 -07001523 buf_printf(&buf, "0x%08x\t%s\t%s\t%s\n",
Sam Ravnborg62070fa2006-03-03 16:46:04 +01001524 symbol->crc, symbol->name,
Ram Paibd5cbce2006-06-08 22:12:53 -07001525 symbol->module->name,
1526 export_str(symbol->export));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001527 symbol = symbol->next;
1528 }
1529 }
1530 write_if_changed(&buf, fname);
1531}
1532
Sam Ravnborg5c3ead82006-01-28 17:19:35 +01001533int main(int argc, char **argv)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001534{
1535 struct module *mod;
1536 struct buffer buf = { };
1537 char fname[SZ];
Sam Ravnborg040fcc82006-01-28 22:15:55 +01001538 char *kernel_read = NULL, *module_read = NULL;
1539 char *dump_write = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001540 int opt;
Kirill Korotaevc53ddac2006-09-07 13:08:54 -07001541 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001542
Kirill Korotaevc53ddac2006-09-07 13:08:54 -07001543 while ((opt = getopt(argc, argv, "i:I:mo:aw")) != -1) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001544 switch(opt) {
1545 case 'i':
Sam Ravnborg040fcc82006-01-28 22:15:55 +01001546 kernel_read = optarg;
1547 break;
1548 case 'I':
1549 module_read = optarg;
1550 external_module = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001551 break;
1552 case 'm':
1553 modversions = 1;
1554 break;
1555 case 'o':
1556 dump_write = optarg;
1557 break;
1558 case 'a':
1559 all_versions = 1;
1560 break;
Kirill Korotaevc53ddac2006-09-07 13:08:54 -07001561 case 'w':
1562 warn_unresolved = 1;
1563 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001564 default:
1565 exit(1);
1566 }
1567 }
1568
Sam Ravnborg040fcc82006-01-28 22:15:55 +01001569 if (kernel_read)
1570 read_dump(kernel_read, 1);
1571 if (module_read)
1572 read_dump(module_read, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001573
1574 while (optind < argc) {
1575 read_symbols(argv[optind++]);
1576 }
1577
1578 for (mod = modules; mod; mod = mod->next) {
1579 if (mod->skip)
1580 continue;
Sam Ravnborgc96fca22006-07-01 11:44:23 +02001581 check_exports(mod);
Sam Ravnborgb817f6f2006-06-09 21:53:55 +02001582 }
1583
Kirill Korotaevc53ddac2006-09-07 13:08:54 -07001584 err = 0;
1585
Sam Ravnborgb817f6f2006-06-09 21:53:55 +02001586 for (mod = modules; mod; mod = mod->next) {
1587 if (mod->skip)
1588 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001589
1590 buf.pos = 0;
1591
1592 add_header(&buf, mod);
Kirill Korotaevc53ddac2006-09-07 13:08:54 -07001593 err |= add_versions(&buf, mod);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001594 add_depends(&buf, mod, modules);
1595 add_moddevtable(&buf, mod);
1596 add_srcversion(&buf, mod);
1597
1598 sprintf(fname, "%s.mod.c", mod->name);
1599 write_if_changed(&buf, fname);
1600 }
1601
1602 if (dump_write)
1603 write_dump(dump_write);
1604
Kirill Korotaevc53ddac2006-09-07 13:08:54 -07001605 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001606}