blob: 5f2ecd51bde3f352940a68b547c1d4240ce9748d [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
Sam Ravnborg040fcc82006-01-28 22:15:55 +010058static int is_vmlinux(const char *modname)
59{
60 const char *myname;
61
62 if ((myname = strrchr(modname, '/')))
63 myname++;
64 else
65 myname = modname;
66
67 return strcmp(myname, "vmlinux") == 0;
68}
69
Linus Torvalds1da177e2005-04-16 15:20:36 -070070void *do_nofail(void *ptr, const char *expr)
71{
72 if (!ptr) {
73 fatal("modpost: Memory allocation failure: %s.\n", expr);
74 }
75 return ptr;
76}
77
78/* A list of all modules we processed */
79
80static struct module *modules;
81
Sam Ravnborg5c3ead82006-01-28 17:19:35 +010082static struct module *find_module(char *modname)
Linus Torvalds1da177e2005-04-16 15:20:36 -070083{
84 struct module *mod;
85
86 for (mod = modules; mod; mod = mod->next)
87 if (strcmp(mod->name, modname) == 0)
88 break;
89 return mod;
90}
91
Sam Ravnborg5c3ead82006-01-28 17:19:35 +010092static struct module *new_module(char *modname)
Linus Torvalds1da177e2005-04-16 15:20:36 -070093{
94 struct module *mod;
95 char *p, *s;
Sam Ravnborg62070fa2006-03-03 16:46:04 +010096
Linus Torvalds1da177e2005-04-16 15:20:36 -070097 mod = NOFAIL(malloc(sizeof(*mod)));
98 memset(mod, 0, sizeof(*mod));
99 p = NOFAIL(strdup(modname));
100
101 /* strip trailing .o */
102 if ((s = strrchr(p, '.')) != NULL)
103 if (strcmp(s, ".o") == 0)
104 *s = '\0';
105
106 /* add to list */
107 mod->name = p;
Sam Ravnborgb817f6f2006-06-09 21:53:55 +0200108 mod->gpl_compatible = -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700109 mod->next = modules;
110 modules = mod;
111
112 return mod;
113}
114
115/* A hash of all exported symbols,
116 * struct symbol is also used for lists of unresolved symbols */
117
118#define SYMBOL_HASH_SIZE 1024
119
120struct symbol {
121 struct symbol *next;
122 struct module *module;
123 unsigned int crc;
124 int crc_valid;
125 unsigned int weak:1;
Sam Ravnborg040fcc82006-01-28 22:15:55 +0100126 unsigned int vmlinux:1; /* 1 if symbol is defined in vmlinux */
127 unsigned int kernel:1; /* 1 if symbol is from kernel
128 * (only for external modules) **/
Sam Ravnborg8e70c452006-01-28 22:22:33 +0100129 unsigned int preloaded:1; /* 1 if symbol from Module.symvers */
Ram Paibd5cbce2006-06-08 22:12:53 -0700130 enum export export; /* Type of export */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700131 char name[0];
132};
133
134static struct symbol *symbolhash[SYMBOL_HASH_SIZE];
135
136/* This is based on the hash agorithm from gdbm, via tdb */
137static inline unsigned int tdb_hash(const char *name)
138{
139 unsigned value; /* Used to compute the hash value. */
140 unsigned i; /* Used to cycle through random values. */
141
142 /* Set the initial value from the key size. */
143 for (value = 0x238F13AF * strlen(name), i=0; name[i]; i++)
144 value = (value + (((unsigned char *)name)[i] << (i*5 % 24)));
145
146 return (1103515243 * value + 12345);
147}
148
Sam Ravnborg5c3ead82006-01-28 17:19:35 +0100149/**
150 * Allocate a new symbols for use in the hash of exported symbols or
151 * the list of unresolved symbols per module
152 **/
153static struct symbol *alloc_symbol(const char *name, unsigned int weak,
154 struct symbol *next)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700155{
156 struct symbol *s = NOFAIL(malloc(sizeof(*s) + strlen(name) + 1));
157
158 memset(s, 0, sizeof(*s));
159 strcpy(s->name, name);
160 s->weak = weak;
161 s->next = next;
162 return s;
163}
164
165/* For the hash of exported symbols */
Ram Paibd5cbce2006-06-08 22:12:53 -0700166static struct symbol *new_symbol(const char *name, struct module *module,
167 enum export export)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700168{
169 unsigned int hash;
170 struct symbol *new;
171
172 hash = tdb_hash(name) % SYMBOL_HASH_SIZE;
173 new = symbolhash[hash] = alloc_symbol(name, 0, symbolhash[hash]);
174 new->module = module;
Ram Paibd5cbce2006-06-08 22:12:53 -0700175 new->export = export;
Sam Ravnborg040fcc82006-01-28 22:15:55 +0100176 return new;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700177}
178
Sam Ravnborg5c3ead82006-01-28 17:19:35 +0100179static struct symbol *find_symbol(const char *name)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700180{
181 struct symbol *s;
182
183 /* For our purposes, .foo matches foo. PPC64 needs this. */
184 if (name[0] == '.')
185 name++;
186
187 for (s = symbolhash[tdb_hash(name) % SYMBOL_HASH_SIZE]; s; s=s->next) {
188 if (strcmp(s->name, name) == 0)
189 return s;
190 }
191 return NULL;
192}
193
Ram Paibd5cbce2006-06-08 22:12:53 -0700194static struct {
195 const char *str;
196 enum export export;
197} export_list[] = {
198 { .str = "EXPORT_SYMBOL", .export = export_plain },
Sam Ravnborgc96fca22006-07-01 11:44:23 +0200199 { .str = "EXPORT_UNUSED_SYMBOL", .export = export_unused },
Ram Paibd5cbce2006-06-08 22:12:53 -0700200 { .str = "EXPORT_SYMBOL_GPL", .export = export_gpl },
Sam Ravnborgc96fca22006-07-01 11:44:23 +0200201 { .str = "EXPORT_UNUSED_SYMBOL_GPL", .export = export_unused_gpl },
Ram Paibd5cbce2006-06-08 22:12:53 -0700202 { .str = "EXPORT_SYMBOL_GPL_FUTURE", .export = export_gpl_future },
203 { .str = "(unknown)", .export = export_unknown },
204};
205
206
207static const char *export_str(enum export ex)
208{
209 return export_list[ex].str;
210}
211
212static enum export export_no(const char * s)
213{
214 int i;
Sam Ravnborg534b89a2006-07-01 10:10:19 +0200215 if (!s)
216 return export_unknown;
Ram Paibd5cbce2006-06-08 22:12:53 -0700217 for (i = 0; export_list[i].export != export_unknown; i++) {
218 if (strcmp(export_list[i].str, s) == 0)
219 return export_list[i].export;
220 }
221 return export_unknown;
222}
223
224static enum export export_from_sec(struct elf_info *elf, Elf_Section sec)
225{
226 if (sec == elf->export_sec)
227 return export_plain;
Sam Ravnborgc96fca22006-07-01 11:44:23 +0200228 else if (sec == elf->export_unused_sec)
229 return export_unused;
Ram Paibd5cbce2006-06-08 22:12:53 -0700230 else if (sec == elf->export_gpl_sec)
231 return export_gpl;
Sam Ravnborgc96fca22006-07-01 11:44:23 +0200232 else if (sec == elf->export_unused_gpl_sec)
233 return export_unused_gpl;
Ram Paibd5cbce2006-06-08 22:12:53 -0700234 else if (sec == elf->export_gpl_future_sec)
235 return export_gpl_future;
236 else
237 return export_unknown;
238}
239
Sam Ravnborg5c3ead82006-01-28 17:19:35 +0100240/**
241 * Add an exported symbol - it may have already been added without a
242 * CRC, in this case just update the CRC
243 **/
Ram Paibd5cbce2006-06-08 22:12:53 -0700244static struct symbol *sym_add_exported(const char *name, struct module *mod,
245 enum export export)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700246{
247 struct symbol *s = find_symbol(name);
248
249 if (!s) {
Ram Paibd5cbce2006-06-08 22:12:53 -0700250 s = new_symbol(name, mod, export);
Sam Ravnborg8e70c452006-01-28 22:22:33 +0100251 } else {
252 if (!s->preloaded) {
Sam Ravnborg7b75b132006-03-05 13:48:58 +0100253 warn("%s: '%s' exported twice. Previous export "
Sam Ravnborg8e70c452006-01-28 22:22:33 +0100254 "was in %s%s\n", mod->name, name,
255 s->module->name,
256 is_vmlinux(s->module->name) ?"":".ko");
257 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700258 }
Sam Ravnborg8e70c452006-01-28 22:22:33 +0100259 s->preloaded = 0;
Sam Ravnborg040fcc82006-01-28 22:15:55 +0100260 s->vmlinux = is_vmlinux(mod->name);
261 s->kernel = 0;
Ram Paibd5cbce2006-06-08 22:12:53 -0700262 s->export = export;
Sam Ravnborg040fcc82006-01-28 22:15:55 +0100263 return s;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700264}
265
Sam Ravnborg040fcc82006-01-28 22:15:55 +0100266static void sym_update_crc(const char *name, struct module *mod,
Ram Paibd5cbce2006-06-08 22:12:53 -0700267 unsigned int crc, enum export export)
Sam Ravnborg040fcc82006-01-28 22:15:55 +0100268{
269 struct symbol *s = find_symbol(name);
270
271 if (!s)
Ram Paibd5cbce2006-06-08 22:12:53 -0700272 s = new_symbol(name, mod, export);
Sam Ravnborg040fcc82006-01-28 22:15:55 +0100273 s->crc = crc;
274 s->crc_valid = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700275}
276
Sam Ravnborg5c3ead82006-01-28 17:19:35 +0100277void *grab_file(const char *filename, unsigned long *size)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700278{
279 struct stat st;
280 void *map;
281 int fd;
282
283 fd = open(filename, O_RDONLY);
284 if (fd < 0 || fstat(fd, &st) != 0)
285 return NULL;
286
287 *size = st.st_size;
288 map = mmap(NULL, *size, PROT_READ|PROT_WRITE, MAP_PRIVATE, fd, 0);
289 close(fd);
290
291 if (map == MAP_FAILED)
292 return NULL;
293 return map;
294}
295
Sam Ravnborg5c3ead82006-01-28 17:19:35 +0100296/**
297 * Return a copy of the next line in a mmap'ed file.
298 * spaces in the beginning of the line is trimmed away.
299 * Return a pointer to a static buffer.
300 **/
301char* get_next_line(unsigned long *pos, void *file, unsigned long size)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700302{
303 static char line[4096];
304 int skip = 1;
305 size_t len = 0;
306 signed char *p = (signed char *)file + *pos;
307 char *s = line;
308
309 for (; *pos < size ; (*pos)++)
310 {
311 if (skip && isspace(*p)) {
312 p++;
313 continue;
314 }
315 skip = 0;
316 if (*p != '\n' && (*pos < size)) {
317 len++;
318 *s++ = *p++;
319 if (len > 4095)
320 break; /* Too long, stop */
321 } else {
322 /* End of string */
323 *s = '\0';
324 return line;
325 }
326 }
327 /* End of buffer */
328 return NULL;
329}
330
Sam Ravnborg5c3ead82006-01-28 17:19:35 +0100331void release_file(void *file, unsigned long size)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700332{
333 munmap(file, size);
334}
335
Sam Ravnborg85bd2fd2007-02-26 15:33:52 +0100336static int parse_elf(struct elf_info *info, const char *filename)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700337{
338 unsigned int i;
Sam Ravnborg85bd2fd2007-02-26 15:33:52 +0100339 Elf_Ehdr *hdr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700340 Elf_Shdr *sechdrs;
341 Elf_Sym *sym;
342
343 hdr = grab_file(filename, &info->size);
344 if (!hdr) {
345 perror(filename);
Sam Ravnborg6803dc02006-06-24 23:46:54 +0200346 exit(1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700347 }
348 info->hdr = hdr;
Sam Ravnborg85bd2fd2007-02-26 15:33:52 +0100349 if (info->size < sizeof(*hdr)) {
350 /* file too small, assume this is an empty .o file */
351 return 0;
352 }
353 /* Is this a valid ELF file? */
354 if ((hdr->e_ident[EI_MAG0] != ELFMAG0) ||
355 (hdr->e_ident[EI_MAG1] != ELFMAG1) ||
356 (hdr->e_ident[EI_MAG2] != ELFMAG2) ||
357 (hdr->e_ident[EI_MAG3] != ELFMAG3)) {
358 /* Not an ELF file - silently ignore it */
359 return 0;
360 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700361 /* Fix endianness in ELF header */
362 hdr->e_shoff = TO_NATIVE(hdr->e_shoff);
363 hdr->e_shstrndx = TO_NATIVE(hdr->e_shstrndx);
364 hdr->e_shnum = TO_NATIVE(hdr->e_shnum);
365 hdr->e_machine = TO_NATIVE(hdr->e_machine);
366 sechdrs = (void *)hdr + hdr->e_shoff;
367 info->sechdrs = sechdrs;
368
369 /* Fix endianness in section headers */
370 for (i = 0; i < hdr->e_shnum; i++) {
371 sechdrs[i].sh_type = TO_NATIVE(sechdrs[i].sh_type);
372 sechdrs[i].sh_offset = TO_NATIVE(sechdrs[i].sh_offset);
373 sechdrs[i].sh_size = TO_NATIVE(sechdrs[i].sh_size);
374 sechdrs[i].sh_link = TO_NATIVE(sechdrs[i].sh_link);
375 sechdrs[i].sh_name = TO_NATIVE(sechdrs[i].sh_name);
376 }
377 /* Find symbol table. */
378 for (i = 1; i < hdr->e_shnum; i++) {
379 const char *secstrings
380 = (void *)hdr + sechdrs[hdr->e_shstrndx].sh_offset;
Ram Paibd5cbce2006-06-08 22:12:53 -0700381 const char *secname;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700382
Sam Ravnborg85bd2fd2007-02-26 15:33:52 +0100383 if (sechdrs[i].sh_offset > info->size) {
384 fatal("%s is truncated. sechdrs[i].sh_offset=%u > sizeof(*hrd)=%ul\n", filename, (unsigned int)sechdrs[i].sh_offset, sizeof(*hdr));
385 return 0;
386 }
Ram Paibd5cbce2006-06-08 22:12:53 -0700387 secname = secstrings + sechdrs[i].sh_name;
388 if (strcmp(secname, ".modinfo") == 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700389 info->modinfo = (void *)hdr + sechdrs[i].sh_offset;
390 info->modinfo_len = sechdrs[i].sh_size;
Ram Paibd5cbce2006-06-08 22:12:53 -0700391 } else if (strcmp(secname, "__ksymtab") == 0)
392 info->export_sec = i;
Sam Ravnborgc96fca22006-07-01 11:44:23 +0200393 else if (strcmp(secname, "__ksymtab_unused") == 0)
394 info->export_unused_sec = i;
Ram Paibd5cbce2006-06-08 22:12:53 -0700395 else if (strcmp(secname, "__ksymtab_gpl") == 0)
396 info->export_gpl_sec = i;
Sam Ravnborgc96fca22006-07-01 11:44:23 +0200397 else if (strcmp(secname, "__ksymtab_unused_gpl") == 0)
398 info->export_unused_gpl_sec = i;
Ram Paibd5cbce2006-06-08 22:12:53 -0700399 else if (strcmp(secname, "__ksymtab_gpl_future") == 0)
400 info->export_gpl_future_sec = i;
401
Linus Torvalds1da177e2005-04-16 15:20:36 -0700402 if (sechdrs[i].sh_type != SHT_SYMTAB)
403 continue;
404
405 info->symtab_start = (void *)hdr + sechdrs[i].sh_offset;
Sam Ravnborg62070fa2006-03-03 16:46:04 +0100406 info->symtab_stop = (void *)hdr + sechdrs[i].sh_offset
Linus Torvalds1da177e2005-04-16 15:20:36 -0700407 + sechdrs[i].sh_size;
Sam Ravnborg62070fa2006-03-03 16:46:04 +0100408 info->strtab = (void *)hdr +
Linus Torvalds1da177e2005-04-16 15:20:36 -0700409 sechdrs[sechdrs[i].sh_link].sh_offset;
410 }
411 if (!info->symtab_start) {
Sam Ravnborgcb805142006-01-28 16:57:26 +0100412 fatal("%s has no symtab?\n", filename);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700413 }
414 /* Fix endianness in symbols */
415 for (sym = info->symtab_start; sym < info->symtab_stop; sym++) {
416 sym->st_shndx = TO_NATIVE(sym->st_shndx);
417 sym->st_name = TO_NATIVE(sym->st_name);
418 sym->st_value = TO_NATIVE(sym->st_value);
419 sym->st_size = TO_NATIVE(sym->st_size);
420 }
Sam Ravnborg85bd2fd2007-02-26 15:33:52 +0100421 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700422}
423
Sam Ravnborg5c3ead82006-01-28 17:19:35 +0100424static void parse_elf_finish(struct elf_info *info)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700425{
426 release_file(info->hdr, info->size);
427}
428
Luke Yangf7b05e62006-03-02 18:35:31 +0800429#define CRC_PFX MODULE_SYMBOL_PREFIX "__crc_"
430#define KSYMTAB_PFX MODULE_SYMBOL_PREFIX "__ksymtab_"
Linus Torvalds1da177e2005-04-16 15:20:36 -0700431
Sam Ravnborg5c3ead82006-01-28 17:19:35 +0100432static void handle_modversions(struct module *mod, struct elf_info *info,
433 Elf_Sym *sym, const char *symname)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700434{
435 unsigned int crc;
Ram Paibd5cbce2006-06-08 22:12:53 -0700436 enum export export = export_from_sec(info, sym->st_shndx);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700437
438 switch (sym->st_shndx) {
439 case SHN_COMMON:
Sam Ravnborgcb805142006-01-28 16:57:26 +0100440 warn("\"%s\" [%s] is COMMON symbol\n", symname, mod->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700441 break;
442 case SHN_ABS:
443 /* CRC'd symbol */
444 if (memcmp(symname, CRC_PFX, strlen(CRC_PFX)) == 0) {
445 crc = (unsigned int) sym->st_value;
Ram Paibd5cbce2006-06-08 22:12:53 -0700446 sym_update_crc(symname + strlen(CRC_PFX), mod, crc,
447 export);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700448 }
449 break;
450 case SHN_UNDEF:
451 /* undefined symbol */
452 if (ELF_ST_BIND(sym->st_info) != STB_GLOBAL &&
453 ELF_ST_BIND(sym->st_info) != STB_WEAK)
454 break;
455 /* ignore global offset table */
456 if (strcmp(symname, "_GLOBAL_OFFSET_TABLE_") == 0)
457 break;
458 /* ignore __this_module, it will be resolved shortly */
459 if (strcmp(symname, MODULE_SYMBOL_PREFIX "__this_module") == 0)
460 break;
Ben Colline8d529012005-08-19 13:44:57 -0700461/* cope with newer glibc (2.3.4 or higher) STT_ definition in elf.h */
462#if defined(STT_REGISTER) || defined(STT_SPARC_REGISTER)
463/* add compatibility with older glibc */
464#ifndef STT_SPARC_REGISTER
465#define STT_SPARC_REGISTER STT_REGISTER
466#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700467 if (info->hdr->e_machine == EM_SPARC ||
468 info->hdr->e_machine == EM_SPARCV9) {
469 /* Ignore register directives. */
Ben Colline8d529012005-08-19 13:44:57 -0700470 if (ELF_ST_TYPE(sym->st_info) == STT_SPARC_REGISTER)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700471 break;
Sam Ravnborg62070fa2006-03-03 16:46:04 +0100472 if (symname[0] == '.') {
473 char *munged = strdup(symname);
474 munged[0] = '_';
475 munged[1] = toupper(munged[1]);
476 symname = munged;
477 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700478 }
479#endif
Sam Ravnborg62070fa2006-03-03 16:46:04 +0100480
Linus Torvalds1da177e2005-04-16 15:20:36 -0700481 if (memcmp(symname, MODULE_SYMBOL_PREFIX,
482 strlen(MODULE_SYMBOL_PREFIX)) == 0)
483 mod->unres = alloc_symbol(symname +
484 strlen(MODULE_SYMBOL_PREFIX),
485 ELF_ST_BIND(sym->st_info) == STB_WEAK,
486 mod->unres);
487 break;
488 default:
489 /* All exported symbols */
490 if (memcmp(symname, KSYMTAB_PFX, strlen(KSYMTAB_PFX)) == 0) {
Ram Paibd5cbce2006-06-08 22:12:53 -0700491 sym_add_exported(symname + strlen(KSYMTAB_PFX), mod,
492 export);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700493 }
494 if (strcmp(symname, MODULE_SYMBOL_PREFIX "init_module") == 0)
495 mod->has_init = 1;
496 if (strcmp(symname, MODULE_SYMBOL_PREFIX "cleanup_module") == 0)
497 mod->has_cleanup = 1;
498 break;
499 }
500}
501
Sam Ravnborg5c3ead82006-01-28 17:19:35 +0100502/**
503 * Parse tag=value strings from .modinfo section
504 **/
Linus Torvalds1da177e2005-04-16 15:20:36 -0700505static char *next_string(char *string, unsigned long *secsize)
506{
507 /* Skip non-zero chars */
508 while (string[0]) {
509 string++;
510 if ((*secsize)-- <= 1)
511 return NULL;
512 }
513
514 /* Skip any zero padding. */
515 while (!string[0]) {
516 string++;
517 if ((*secsize)-- <= 1)
518 return NULL;
519 }
520 return string;
521}
522
Sam Ravnborgb817f6f2006-06-09 21:53:55 +0200523static char *get_next_modinfo(void *modinfo, unsigned long modinfo_len,
524 const char *tag, char *info)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700525{
526 char *p;
527 unsigned int taglen = strlen(tag);
528 unsigned long size = modinfo_len;
529
Sam Ravnborgb817f6f2006-06-09 21:53:55 +0200530 if (info) {
531 size -= info - (char *)modinfo;
532 modinfo = next_string(info, &size);
533 }
534
Linus Torvalds1da177e2005-04-16 15:20:36 -0700535 for (p = modinfo; p; p = next_string(p, &size)) {
536 if (strncmp(p, tag, taglen) == 0 && p[taglen] == '=')
537 return p + taglen + 1;
538 }
539 return NULL;
540}
541
Sam Ravnborgb817f6f2006-06-09 21:53:55 +0200542static char *get_modinfo(void *modinfo, unsigned long modinfo_len,
543 const char *tag)
544
545{
546 return get_next_modinfo(modinfo, modinfo_len, tag, NULL);
547}
548
Sam Ravnborg93684d32006-02-19 11:53:35 +0100549/**
Sam Ravnborg4c8fbca2006-02-26 22:18:11 +0100550 * Test if string s ends in string sub
551 * return 0 if match
552 **/
553static int strrcmp(const char *s, const char *sub)
554{
555 int slen, sublen;
Sam Ravnborg62070fa2006-03-03 16:46:04 +0100556
Sam Ravnborg4c8fbca2006-02-26 22:18:11 +0100557 if (!s || !sub)
558 return 1;
Sam Ravnborg62070fa2006-03-03 16:46:04 +0100559
Sam Ravnborg4c8fbca2006-02-26 22:18:11 +0100560 slen = strlen(s);
561 sublen = strlen(sub);
Sam Ravnborg62070fa2006-03-03 16:46:04 +0100562
Sam Ravnborg4c8fbca2006-02-26 22:18:11 +0100563 if ((slen == 0) || (sublen == 0))
564 return 1;
565
566 if (sublen > slen)
567 return 1;
568
569 return memcmp(s + slen - sublen, sub, sublen);
570}
571
572/**
573 * Whitelist to allow certain references to pass with no warning.
574 * Pattern 1:
575 * If a module parameter is declared __initdata and permissions=0
576 * then this is legal despite the warning generated.
577 * We cannot see value of permissions here, so just ignore
578 * this pattern.
579 * The pattern is identified by:
580 * tosec = .init.data
Sam Ravnborg9209aed2006-03-05 00:16:26 +0100581 * fromsec = .data*
Sam Ravnborg4c8fbca2006-02-26 22:18:11 +0100582 * atsym =__param*
Sam Ravnborg62070fa2006-03-03 16:46:04 +0100583 *
Sam Ravnborg4c8fbca2006-02-26 22:18:11 +0100584 * Pattern 2:
Randy Dunlap72ee59b2006-04-15 11:17:12 -0700585 * Many drivers utilise a *driver container with references to
Sam Ravnborg4c8fbca2006-02-26 22:18:11 +0100586 * add, remove, probe functions etc.
587 * These functions may often be marked __init and we do not want to
588 * warn here.
589 * the pattern is identified by:
Sam Ravnborg5ecdd0f2006-04-14 23:54:13 +0200590 * tosec = .init.text | .exit.text | .init.data
Sam Ravnborg4c8fbca2006-02-26 22:18:11 +0100591 * fromsec = .data
Sam Ravnborgaae5f662007-02-26 16:45:41 +0100592 * atsym = *driver, *_template, *_sht, *_ops, *_probe, *probe_one, *_console
Vivek Goyalee6a8542007-01-11 01:52:44 +0100593 *
594 * Pattern 3:
Sam Ravnborg9bf8cb92007-02-26 17:49:06 +0100595 * Whitelist all references from .pci_fixup* section to .init.text
596 * This is part of the PCI init when built-in
597 *
598 * Pattern 4:
599 * Whitelist all refereces from .text.head to .init.data
600 * Whitelist all refereces from .text.head to .init.text
601 *
602 * Pattern 5:
Vivek Goyalee6a8542007-01-11 01:52:44 +0100603 * Some symbols belong to init section but still it is ok to reference
604 * these from non-init sections as these symbols don't have any memory
605 * allocated for them and symbol address and value are same. So even
606 * if init section is freed, its ok to reference those symbols.
607 * For ex. symbols marking the init section boundaries.
608 * This pattern is identified by
609 * refsymname = __init_begin, _sinittext, _einittext
Sam Ravnborg9bf8cb92007-02-26 17:49:06 +0100610 *
611 * Pattern 6:
Sam Ravnborgaae5f662007-02-26 16:45:41 +0100612 * During the early init phase we have references from .init.text to
613 * .text we have an intended section mismatch - do not warn about it.
614 * See kernel_init() in init/main.c
615 * tosec = .init.text
616 * fromsec = .text
617 * atsym = kernel_init
618 * Some symbols belong to init section but still it is ok to reference
Sam Ravnborg5a4910f2007-02-27 09:14:58 +0100619 *
620 * Pattern 7:
621 * Logos used in drivers/video/logo reside in __initdata but the
622 * funtion that references them are EXPORT_SYMBOL() so cannot be
623 * marker __init. So we whitelist them here.
624 * The pattern is:
625 * tosec = .init.data
626 * fromsec = .text*
627 * refsymname = logo_
Sam Ravnborg4c8fbca2006-02-26 22:18:11 +0100628 **/
Magnus Damm9e157a52006-08-08 17:32:11 +0900629static int secref_whitelist(const char *modname, const char *tosec,
Vivek Goyalee6a8542007-01-11 01:52:44 +0100630 const char *fromsec, const char *atsym,
631 const char *refsymname)
Sam Ravnborg4c8fbca2006-02-26 22:18:11 +0100632{
633 int f1 = 1, f2 = 1;
634 const char **s;
635 const char *pat2sym[] = {
Randy Dunlap72ee59b2006-04-15 11:17:12 -0700636 "driver",
Sam Ravnborg5ecdd0f2006-04-14 23:54:13 +0200637 "_template", /* scsi uses *_template a lot */
638 "_sht", /* scsi also used *_sht to some extent */
Sam Ravnborg4c8fbca2006-02-26 22:18:11 +0100639 "_ops",
640 "_probe",
641 "_probe_one",
Vivek Goyal118c0ac2007-01-11 01:52:44 +0100642 "_console",
Sam Ravnborg4c8fbca2006-02-26 22:18:11 +0100643 NULL
644 };
Sam Ravnborg62070fa2006-03-03 16:46:04 +0100645
Vivek Goyalee6a8542007-01-11 01:52:44 +0100646 const char *pat3refsym[] = {
647 "__init_begin",
648 "_sinittext",
649 "_einittext",
650 NULL
651 };
652
Sam Ravnborg4c8fbca2006-02-26 22:18:11 +0100653 /* Check for pattern 1 */
654 if (strcmp(tosec, ".init.data") != 0)
655 f1 = 0;
Sam Ravnborg9209aed2006-03-05 00:16:26 +0100656 if (strncmp(fromsec, ".data", strlen(".data")) != 0)
Sam Ravnborg4c8fbca2006-02-26 22:18:11 +0100657 f1 = 0;
658 if (strncmp(atsym, "__param", strlen("__param")) != 0)
659 f1 = 0;
660
661 if (f1)
662 return f1;
663
664 /* Check for pattern 2 */
Sam Ravnborg62070fa2006-03-03 16:46:04 +0100665 if ((strcmp(tosec, ".init.text") != 0) &&
Sam Ravnborg5ecdd0f2006-04-14 23:54:13 +0200666 (strcmp(tosec, ".exit.text") != 0) &&
667 (strcmp(tosec, ".init.data") != 0))
Sam Ravnborg4c8fbca2006-02-26 22:18:11 +0100668 f2 = 0;
669 if (strcmp(fromsec, ".data") != 0)
670 f2 = 0;
671
672 for (s = pat2sym; *s; s++)
673 if (strrcmp(atsym, *s) == 0)
674 f1 = 1;
Magnus Damm9e157a52006-08-08 17:32:11 +0900675 if (f1 && f2)
676 return 1;
Sam Ravnborg4c8fbca2006-02-26 22:18:11 +0100677
Sam Ravnborg9bf8cb92007-02-26 17:49:06 +0100678 /* Check for pattern 3 */
679 if ((strncmp(fromsec, ".pci_fixup", strlen(".pci_fixup")) == 0) &&
680 (strcmp(tosec, ".init.text") == 0))
681 return 1;
Vivek Goyalee6a8542007-01-11 01:52:44 +0100682
Sam Ravnborgaae5f662007-02-26 16:45:41 +0100683 /* Check for pattern 4 */
Sam Ravnborg9bf8cb92007-02-26 17:49:06 +0100684 if ((strcmp(fromsec, ".text.head") == 0) &&
685 ((strcmp(tosec, ".init.data") == 0) ||
686 (strcmp(tosec, ".init.text") == 0)))
687 return 1;
688
689 /* Check for pattern 5 */
690 for (s = pat3refsym; *s; s++)
691 if (strcmp(refsymname, *s) == 0)
692 return 1;
693
694 /* Check for pattern 6 */
Sam Ravnborgaae5f662007-02-26 16:45:41 +0100695 if ((strcmp(tosec, ".init.text") == 0) &&
696 (strcmp(fromsec, ".text") == 0) &&
697 (strcmp(refsymname, "kernel_init") == 0))
698 return 1;
Sam Ravnborg5a4910f2007-02-27 09:14:58 +0100699
700 /* Check for pattern 7 */
701 if ((strcmp(tosec, ".init.data") == 0) &&
702 (strncmp(fromsec, ".text", strlen(".text")) == 0) &&
703 (strncmp(refsymname, "logo_", strlen("logo_")) == 0))
704 return 1;
Sam Ravnborg93659af2006-08-09 08:23:55 +0200705 return 0;
Sam Ravnborg4c8fbca2006-02-26 22:18:11 +0100706}
707
708/**
Sam Ravnborg93684d32006-02-19 11:53:35 +0100709 * Find symbol based on relocation record info.
710 * In some cases the symbol supplied is a valid symbol so
711 * return refsym. If st_name != 0 we assume this is a valid symbol.
712 * In other cases the symbol needs to be looked up in the symbol table
713 * based on section and address.
714 * **/
715static Elf_Sym *find_elf_symbol(struct elf_info *elf, Elf_Addr addr,
716 Elf_Sym *relsym)
717{
718 Elf_Sym *sym;
719
720 if (relsym->st_name != 0)
721 return relsym;
722 for (sym = elf->symtab_start; sym < elf->symtab_stop; sym++) {
723 if (sym->st_shndx != relsym->st_shndx)
724 continue;
725 if (sym->st_value == addr)
726 return sym;
727 }
728 return NULL;
729}
730
David Brownellda68d612007-02-20 13:58:16 -0800731static inline int is_arm_mapping_symbol(const char *str)
732{
733 return str[0] == '$' && strchr("atd", str[1])
734 && (str[2] == '\0' || str[2] == '.');
735}
736
737/*
738 * If there's no name there, ignore it; likewise, ignore it if it's
739 * one of the magic symbols emitted used by current ARM tools.
740 *
741 * Otherwise if find_symbols_between() returns those symbols, they'll
742 * fail the whitelist tests and cause lots of false alarms ... fixable
743 * only by merging __exit and __init sections into __text, bloating
744 * the kernel (which is especially evil on embedded platforms).
745 */
746static inline int is_valid_name(struct elf_info *elf, Elf_Sym *sym)
747{
748 const char *name = elf->strtab + sym->st_name;
749
750 if (!name || !strlen(name))
751 return 0;
752 return !is_arm_mapping_symbol(name);
753}
754
Sam Ravnborgb39927c2006-02-17 22:42:02 +0100755/*
Sam Ravnborg43c74d12006-03-05 12:02:46 +0100756 * Find symbols before or equal addr and after addr - in the section sec.
757 * If we find two symbols with equal offset prefer one with a valid name.
758 * The ELF format may have a better way to detect what type of symbol
759 * it is, but this works for now.
Sam Ravnborgb39927c2006-02-17 22:42:02 +0100760 **/
761static void find_symbols_between(struct elf_info *elf, Elf_Addr addr,
762 const char *sec,
763 Elf_Sym **before, Elf_Sym **after)
764{
765 Elf_Sym *sym;
766 Elf_Ehdr *hdr = elf->hdr;
767 Elf_Addr beforediff = ~0;
768 Elf_Addr afterdiff = ~0;
769 const char *secstrings = (void *)hdr +
770 elf->sechdrs[hdr->e_shstrndx].sh_offset;
Sam Ravnborg62070fa2006-03-03 16:46:04 +0100771
Sam Ravnborgb39927c2006-02-17 22:42:02 +0100772 *before = NULL;
773 *after = NULL;
774
775 for (sym = elf->symtab_start; sym < elf->symtab_stop; sym++) {
776 const char *symsec;
777
778 if (sym->st_shndx >= SHN_LORESERVE)
779 continue;
780 symsec = secstrings + elf->sechdrs[sym->st_shndx].sh_name;
781 if (strcmp(symsec, sec) != 0)
782 continue;
David Brownellda68d612007-02-20 13:58:16 -0800783 if (!is_valid_name(elf, sym))
784 continue;
Sam Ravnborgb39927c2006-02-17 22:42:02 +0100785 if (sym->st_value <= addr) {
786 if ((addr - sym->st_value) < beforediff) {
787 beforediff = addr - sym->st_value;
788 *before = sym;
789 }
Sam Ravnborg43c74d12006-03-05 12:02:46 +0100790 else if ((addr - sym->st_value) == beforediff) {
David Brownellda68d612007-02-20 13:58:16 -0800791 *before = sym;
Sam Ravnborg43c74d12006-03-05 12:02:46 +0100792 }
Sam Ravnborgb39927c2006-02-17 22:42:02 +0100793 }
794 else
795 {
796 if ((sym->st_value - addr) < afterdiff) {
797 afterdiff = sym->st_value - addr;
798 *after = sym;
799 }
Sam Ravnborg43c74d12006-03-05 12:02:46 +0100800 else if ((sym->st_value - addr) == afterdiff) {
David Brownellda68d612007-02-20 13:58:16 -0800801 *after = sym;
Sam Ravnborg43c74d12006-03-05 12:02:46 +0100802 }
Sam Ravnborgb39927c2006-02-17 22:42:02 +0100803 }
804 }
805}
806
807/**
808 * Print a warning about a section mismatch.
809 * Try to find symbols near it so user can find it.
Sam Ravnborg4c8fbca2006-02-26 22:18:11 +0100810 * Check whitelist before warning - it may be a false positive.
Sam Ravnborgb39927c2006-02-17 22:42:02 +0100811 **/
812static void warn_sec_mismatch(const char *modname, const char *fromsec,
813 struct elf_info *elf, Elf_Sym *sym, Elf_Rela r)
814{
Sam Ravnborg93684d32006-02-19 11:53:35 +0100815 const char *refsymname = "";
816 Elf_Sym *before, *after;
817 Elf_Sym *refsym;
Sam Ravnborgb39927c2006-02-17 22:42:02 +0100818 Elf_Ehdr *hdr = elf->hdr;
819 Elf_Shdr *sechdrs = elf->sechdrs;
820 const char *secstrings = (void *)hdr +
821 sechdrs[hdr->e_shstrndx].sh_offset;
822 const char *secname = secstrings + sechdrs[sym->st_shndx].sh_name;
Sam Ravnborg62070fa2006-03-03 16:46:04 +0100823
Sam Ravnborgb39927c2006-02-17 22:42:02 +0100824 find_symbols_between(elf, r.r_offset, fromsec, &before, &after);
825
Sam Ravnborg93684d32006-02-19 11:53:35 +0100826 refsym = find_elf_symbol(elf, r.r_addend, sym);
827 if (refsym && strlen(elf->strtab + refsym->st_name))
828 refsymname = elf->strtab + refsym->st_name;
Sam Ravnborg4c8fbca2006-02-26 22:18:11 +0100829
830 /* check whitelist - we may ignore it */
Sam Ravnborg62070fa2006-03-03 16:46:04 +0100831 if (before &&
Magnus Damm9e157a52006-08-08 17:32:11 +0900832 secref_whitelist(modname, secname, fromsec,
Vivek Goyalee6a8542007-01-11 01:52:44 +0100833 elf->strtab + before->st_name, refsymname))
Sam Ravnborg4c8fbca2006-02-26 22:18:11 +0100834 return;
Sam Ravnborg62070fa2006-03-03 16:46:04 +0100835
Sam Ravnborgb39927c2006-02-17 22:42:02 +0100836 if (before && after) {
Sam Ravnborg93684d32006-02-19 11:53:35 +0100837 warn("%s - Section mismatch: reference to %s:%s from %s "
838 "between '%s' (at offset 0x%llx) and '%s'\n",
839 modname, secname, refsymname, fromsec,
Sam Ravnborgb39927c2006-02-17 22:42:02 +0100840 elf->strtab + before->st_name,
Sam Ravnborg93684d32006-02-19 11:53:35 +0100841 (long long)r.r_offset,
Sam Ravnborgb39927c2006-02-17 22:42:02 +0100842 elf->strtab + after->st_name);
843 } else if (before) {
Sam Ravnborg93684d32006-02-19 11:53:35 +0100844 warn("%s - Section mismatch: reference to %s:%s from %s "
845 "after '%s' (at offset 0x%llx)\n",
Sam Ravnborg62070fa2006-03-03 16:46:04 +0100846 modname, secname, refsymname, fromsec,
Sam Ravnborgb39927c2006-02-17 22:42:02 +0100847 elf->strtab + before->st_name,
Sam Ravnborg93684d32006-02-19 11:53:35 +0100848 (long long)r.r_offset);
Sam Ravnborgb39927c2006-02-17 22:42:02 +0100849 } else if (after) {
Sam Ravnborg93684d32006-02-19 11:53:35 +0100850 warn("%s - Section mismatch: reference to %s:%s from %s "
851 "before '%s' (at offset -0x%llx)\n",
Sam Ravnborg62070fa2006-03-03 16:46:04 +0100852 modname, secname, refsymname, fromsec,
Eric Sesterhenneaaae382006-04-11 00:54:16 +0200853 elf->strtab + after->st_name,
Sam Ravnborg93684d32006-02-19 11:53:35 +0100854 (long long)r.r_offset);
Sam Ravnborgb39927c2006-02-17 22:42:02 +0100855 } else {
Sam Ravnborg93684d32006-02-19 11:53:35 +0100856 warn("%s - Section mismatch: reference to %s:%s from %s "
857 "(offset 0x%llx)\n",
858 modname, secname, fromsec, refsymname,
859 (long long)r.r_offset);
Sam Ravnborgb39927c2006-02-17 22:42:02 +0100860 }
861}
862
863/**
864 * A module includes a number of sections that are discarded
865 * either when loaded or when used as built-in.
866 * For loaded modules all functions marked __init and all data
867 * marked __initdata will be discarded when the module has been intialized.
868 * Likewise for modules used built-in the sections marked __exit
869 * are discarded because __exit marked function are supposed to be called
870 * only when a moduel is unloaded which never happes for built-in modules.
871 * The check_sec_ref() function traverses all relocation records
872 * to find all references to a section that reference a section that will
873 * be discarded and warns about it.
874 **/
875static void check_sec_ref(struct module *mod, const char *modname,
876 struct elf_info *elf,
877 int section(const char*),
878 int section_ref_ok(const char *))
879{
880 int i;
881 Elf_Sym *sym;
882 Elf_Ehdr *hdr = elf->hdr;
883 Elf_Shdr *sechdrs = elf->sechdrs;
884 const char *secstrings = (void *)hdr +
885 sechdrs[hdr->e_shstrndx].sh_offset;
Sam Ravnborg62070fa2006-03-03 16:46:04 +0100886
Sam Ravnborgb39927c2006-02-17 22:42:02 +0100887 /* Walk through all sections */
888 for (i = 0; i < hdr->e_shnum; i++) {
Atsushi Nemoto2c1a51f2006-05-20 15:00:26 -0700889 const char *name = secstrings + sechdrs[i].sh_name;
890 const char *secname;
891 Elf_Rela r;
Atsushi Nemotoeae07ac2006-05-20 15:00:28 -0700892 unsigned int r_sym;
Sam Ravnborgb39927c2006-02-17 22:42:02 +0100893 /* We want to process only relocation sections and not .init */
Atsushi Nemoto2c1a51f2006-05-20 15:00:26 -0700894 if (sechdrs[i].sh_type == SHT_RELA) {
895 Elf_Rela *rela;
896 Elf_Rela *start = (void *)hdr + sechdrs[i].sh_offset;
897 Elf_Rela *stop = (void*)start + sechdrs[i].sh_size;
898 name += strlen(".rela");
899 if (section_ref_ok(name))
Sam Ravnborgb39927c2006-02-17 22:42:02 +0100900 continue;
901
Atsushi Nemoto2c1a51f2006-05-20 15:00:26 -0700902 for (rela = start; rela < stop; rela++) {
903 r.r_offset = TO_NATIVE(rela->r_offset);
Atsushi Nemotoeae07ac2006-05-20 15:00:28 -0700904#if KERNEL_ELFCLASS == ELFCLASS64
905 if (hdr->e_machine == EM_MIPS) {
906 r_sym = ELF64_MIPS_R_SYM(rela->r_info);
907 r_sym = TO_NATIVE(r_sym);
908 } else {
909 r.r_info = TO_NATIVE(rela->r_info);
910 r_sym = ELF_R_SYM(r.r_info);
911 }
912#else
913 r.r_info = TO_NATIVE(rela->r_info);
914 r_sym = ELF_R_SYM(r.r_info);
915#endif
Atsushi Nemoto2c1a51f2006-05-20 15:00:26 -0700916 r.r_addend = TO_NATIVE(rela->r_addend);
Atsushi Nemotoeae07ac2006-05-20 15:00:28 -0700917 sym = elf->symtab_start + r_sym;
Atsushi Nemoto2c1a51f2006-05-20 15:00:26 -0700918 /* Skip special sections */
919 if (sym->st_shndx >= SHN_LORESERVE)
920 continue;
921
922 secname = secstrings +
923 sechdrs[sym->st_shndx].sh_name;
924 if (section(secname))
925 warn_sec_mismatch(modname, name,
926 elf, sym, r);
927 }
928 } else if (sechdrs[i].sh_type == SHT_REL) {
929 Elf_Rel *rel;
930 Elf_Rel *start = (void *)hdr + sechdrs[i].sh_offset;
931 Elf_Rel *stop = (void*)start + sechdrs[i].sh_size;
932 name += strlen(".rel");
933 if (section_ref_ok(name))
934 continue;
935
936 for (rel = start; rel < stop; rel++) {
937 r.r_offset = TO_NATIVE(rel->r_offset);
Atsushi Nemotoeae07ac2006-05-20 15:00:28 -0700938#if KERNEL_ELFCLASS == ELFCLASS64
939 if (hdr->e_machine == EM_MIPS) {
940 r_sym = ELF64_MIPS_R_SYM(rel->r_info);
941 r_sym = TO_NATIVE(r_sym);
942 } else {
943 r.r_info = TO_NATIVE(rel->r_info);
944 r_sym = ELF_R_SYM(r.r_info);
945 }
946#else
947 r.r_info = TO_NATIVE(rel->r_info);
948 r_sym = ELF_R_SYM(r.r_info);
949#endif
Atsushi Nemoto2c1a51f2006-05-20 15:00:26 -0700950 r.r_addend = 0;
Atsushi Nemotoeae07ac2006-05-20 15:00:28 -0700951 sym = elf->symtab_start + r_sym;
Atsushi Nemoto2c1a51f2006-05-20 15:00:26 -0700952 /* Skip special sections */
953 if (sym->st_shndx >= SHN_LORESERVE)
954 continue;
955
956 secname = secstrings +
957 sechdrs[sym->st_shndx].sh_name;
958 if (section(secname))
959 warn_sec_mismatch(modname, name,
960 elf, sym, r);
961 }
Sam Ravnborgb39927c2006-02-17 22:42:02 +0100962 }
963 }
964}
965
966/**
967 * Functions used only during module init is marked __init and is stored in
968 * a .init.text section. Likewise data is marked __initdata and stored in
969 * a .init.data section.
970 * If this section is one of these sections return 1
971 * See include/linux/init.h for the details
972 **/
973static int init_section(const char *name)
974{
975 if (strcmp(name, ".init") == 0)
976 return 1;
977 if (strncmp(name, ".init.", strlen(".init.")) == 0)
978 return 1;
979 return 0;
980}
981
982/**
983 * Identify sections from which references to a .init section is OK.
Sam Ravnborg62070fa2006-03-03 16:46:04 +0100984 *
Sam Ravnborgb39927c2006-02-17 22:42:02 +0100985 * Unfortunately references to read only data that referenced .init
986 * sections had to be excluded. Almost all of these are false
987 * positives, they are created by gcc. The downside of excluding rodata
988 * is that there really are some user references from rodata to
989 * init code, e.g. drivers/video/vgacon.c:
Sam Ravnborg62070fa2006-03-03 16:46:04 +0100990 *
Sam Ravnborgb39927c2006-02-17 22:42:02 +0100991 * const struct consw vga_con = {
992 * con_startup: vgacon_startup,
993 *
994 * where vgacon_startup is __init. If you want to wade through the false
995 * positives, take out the check for rodata.
996 **/
997static int init_section_ref_ok(const char *name)
998{
999 const char **s;
1000 /* Absolute section names */
1001 const char *namelist1[] = {
1002 ".init",
Sam Ravnborg9209aed2006-03-05 00:16:26 +01001003 ".opd", /* see comment [OPD] at exit_section_ref_ok() */
1004 ".toc1", /* used by ppc64 */
Sam Ravnborgb39927c2006-02-17 22:42:02 +01001005 ".stab",
Matthew Wilcox742433b2007-02-05 16:34:00 -08001006 ".data.rel.ro", /* used by parisc64 */
Rusty Russell139ec7c2006-12-07 02:14:08 +01001007 ".parainstructions",
Sam Ravnborgb39927c2006-02-17 22:42:02 +01001008 ".text.lock",
Sam Ravnborg9209aed2006-03-05 00:16:26 +01001009 "__bug_table", /* used by powerpc for BUG() */
Sam Ravnborgb39927c2006-02-17 22:42:02 +01001010 ".pci_fixup_header",
1011 ".pci_fixup_final",
1012 ".pdr",
1013 "__param",
Al Viro468d9492006-06-23 23:22:43 +01001014 "__ex_table",
1015 ".fixup",
Randy Dunlap35899c52006-06-07 16:23:26 -07001016 ".smp_locks",
Sam Ravnborg909252d2006-06-08 20:37:30 +02001017 ".plt", /* seen on ARCH=um build on x86_64. Harmless */
Benjamin Herrenschmidt21c4ff82006-10-20 11:47:19 +10001018 "__ftr_fixup", /* powerpc cpu feature fixup */
1019 "__fw_ftr_fixup", /* powerpc firmware feature fixup */
Sam Ravnborgb39927c2006-02-17 22:42:02 +01001020 NULL
1021 };
1022 /* Start of section names */
1023 const char *namelist2[] = {
1024 ".init.",
1025 ".altinstructions",
1026 ".eh_frame",
1027 ".debug",
Rusty Russell139ec7c2006-12-07 02:14:08 +01001028 ".parainstructions",
Matthew Wilcox742433b2007-02-05 16:34:00 -08001029 ".rodata",
Sam Ravnborgb39927c2006-02-17 22:42:02 +01001030 NULL
1031 };
Sam Ravnborg6e101332006-02-22 21:24:50 +01001032 /* part of section name */
1033 const char *namelist3 [] = {
1034 ".unwind", /* sample: IA_64.unwind.init.text */
1035 NULL
1036 };
1037
Sam Ravnborgb39927c2006-02-17 22:42:02 +01001038 for (s = namelist1; *s; s++)
1039 if (strcmp(*s, name) == 0)
1040 return 1;
Sam Ravnborg62070fa2006-03-03 16:46:04 +01001041 for (s = namelist2; *s; s++)
Sam Ravnborgb39927c2006-02-17 22:42:02 +01001042 if (strncmp(*s, name, strlen(*s)) == 0)
1043 return 1;
Sam Ravnborg62070fa2006-03-03 16:46:04 +01001044 for (s = namelist3; *s; s++)
Sam Ravnborge835a392006-03-05 11:34:15 +01001045 if (strstr(name, *s) != NULL)
Sam Ravnborg6e101332006-02-22 21:24:50 +01001046 return 1;
Al Viro468d9492006-06-23 23:22:43 +01001047 if (strrcmp(name, ".init") == 0)
1048 return 1;
Sam Ravnborgb39927c2006-02-17 22:42:02 +01001049 return 0;
1050}
1051
1052/*
1053 * Functions used only during module exit is marked __exit and is stored in
1054 * a .exit.text section. Likewise data is marked __exitdata and stored in
1055 * a .exit.data section.
1056 * If this section is one of these sections return 1
1057 * See include/linux/init.h for the details
1058 **/
1059static int exit_section(const char *name)
1060{
1061 if (strcmp(name, ".exit.text") == 0)
1062 return 1;
1063 if (strcmp(name, ".exit.data") == 0)
1064 return 1;
1065 return 0;
Sam Ravnborg62070fa2006-03-03 16:46:04 +01001066
Sam Ravnborgb39927c2006-02-17 22:42:02 +01001067}
1068
1069/*
1070 * Identify sections from which references to a .exit section is OK.
Sam Ravnborg62070fa2006-03-03 16:46:04 +01001071 *
Sam Ravnborgb39927c2006-02-17 22:42:02 +01001072 * [OPD] Keith Ownes <kaos@sgi.com> commented:
1073 * For our future {in}sanity, add a comment that this is the ppc .opd
1074 * section, not the ia64 .opd section.
1075 * ia64 .opd should not point to discarded sections.
Sam Ravnborg5ecdd0f2006-04-14 23:54:13 +02001076 * [.rodata] like for .init.text we ignore .rodata references -same reason
Sam Ravnborgb39927c2006-02-17 22:42:02 +01001077 **/
1078static int exit_section_ref_ok(const char *name)
1079{
1080 const char **s;
1081 /* Absolute section names */
1082 const char *namelist1[] = {
1083 ".exit.text",
1084 ".exit.data",
1085 ".init.text",
Sam Ravnborg5ecdd0f2006-04-14 23:54:13 +02001086 ".rodata",
Sam Ravnborgb39927c2006-02-17 22:42:02 +01001087 ".opd", /* See comment [OPD] */
Sam Ravnborg9209aed2006-03-05 00:16:26 +01001088 ".toc1", /* used by ppc64 */
Sam Ravnborgb39927c2006-02-17 22:42:02 +01001089 ".altinstructions",
1090 ".pdr",
Sam Ravnborg9209aed2006-03-05 00:16:26 +01001091 "__bug_table", /* used by powerpc for BUG() */
Sam Ravnborgb39927c2006-02-17 22:42:02 +01001092 ".exitcall.exit",
1093 ".eh_frame",
Randy Dunlapacd19492006-12-13 00:33:57 -08001094 ".parainstructions",
Sam Ravnborgb39927c2006-02-17 22:42:02 +01001095 ".stab",
Al Viro468d9492006-06-23 23:22:43 +01001096 "__ex_table",
1097 ".fixup",
Randy Dunlap35899c52006-06-07 16:23:26 -07001098 ".smp_locks",
Sam Ravnborg909252d2006-06-08 20:37:30 +02001099 ".plt", /* seen on ARCH=um build on x86_64. Harmless */
Sam Ravnborgb39927c2006-02-17 22:42:02 +01001100 NULL
1101 };
1102 /* Start of section names */
1103 const char *namelist2[] = {
1104 ".debug",
1105 NULL
1106 };
Sam Ravnborg6e101332006-02-22 21:24:50 +01001107 /* part of section name */
1108 const char *namelist3 [] = {
1109 ".unwind", /* Sample: IA_64.unwind.exit.text */
1110 NULL
1111 };
Sam Ravnborg62070fa2006-03-03 16:46:04 +01001112
Sam Ravnborgb39927c2006-02-17 22:42:02 +01001113 for (s = namelist1; *s; s++)
1114 if (strcmp(*s, name) == 0)
1115 return 1;
Sam Ravnborg62070fa2006-03-03 16:46:04 +01001116 for (s = namelist2; *s; s++)
Sam Ravnborgb39927c2006-02-17 22:42:02 +01001117 if (strncmp(*s, name, strlen(*s)) == 0)
1118 return 1;
Sam Ravnborg62070fa2006-03-03 16:46:04 +01001119 for (s = namelist3; *s; s++)
Sam Ravnborge835a392006-03-05 11:34:15 +01001120 if (strstr(name, *s) != NULL)
Sam Ravnborg6e101332006-02-22 21:24:50 +01001121 return 1;
Sam Ravnborgb39927c2006-02-17 22:42:02 +01001122 return 0;
1123}
1124
Sam Ravnborg5c3ead82006-01-28 17:19:35 +01001125static void read_symbols(char *modname)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001126{
1127 const char *symname;
1128 char *version;
Sam Ravnborgb817f6f2006-06-09 21:53:55 +02001129 char *license;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001130 struct module *mod;
1131 struct elf_info info = { };
1132 Elf_Sym *sym;
1133
Sam Ravnborg85bd2fd2007-02-26 15:33:52 +01001134 if (!parse_elf(&info, modname))
1135 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001136
1137 mod = new_module(modname);
1138
1139 /* When there's no vmlinux, don't print warnings about
1140 * unresolved symbols (since there'll be too many ;) */
1141 if (is_vmlinux(modname)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001142 have_vmlinux = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001143 mod->skip = 1;
1144 }
1145
Sam Ravnborgb817f6f2006-06-09 21:53:55 +02001146 license = get_modinfo(info.modinfo, info.modinfo_len, "license");
1147 while (license) {
1148 if (license_is_gpl_compatible(license))
1149 mod->gpl_compatible = 1;
1150 else {
1151 mod->gpl_compatible = 0;
1152 break;
1153 }
1154 license = get_next_modinfo(info.modinfo, info.modinfo_len,
1155 "license", license);
1156 }
1157
Linus Torvalds1da177e2005-04-16 15:20:36 -07001158 for (sym = info.symtab_start; sym < info.symtab_stop; sym++) {
1159 symname = info.strtab + sym->st_name;
1160
1161 handle_modversions(mod, &info, sym, symname);
1162 handle_moddevtable(mod, &info, sym, symname);
1163 }
Sam Ravnborgb39927c2006-02-17 22:42:02 +01001164 check_sec_ref(mod, modname, &info, init_section, init_section_ref_ok);
1165 check_sec_ref(mod, modname, &info, exit_section, exit_section_ref_ok);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001166
1167 version = get_modinfo(info.modinfo, info.modinfo_len, "version");
1168 if (version)
1169 maybe_frob_rcs_version(modname, version, info.modinfo,
1170 version - (char *)info.hdr);
1171 if (version || (all_versions && !is_vmlinux(modname)))
1172 get_src_version(modname, mod->srcversion,
1173 sizeof(mod->srcversion)-1);
1174
1175 parse_elf_finish(&info);
1176
1177 /* Our trick to get versioning for struct_module - it's
1178 * never passed as an argument to an exported function, so
1179 * the automatic versioning doesn't pick it up, but it's really
1180 * important anyhow */
1181 if (modversions)
1182 mod->unres = alloc_symbol("struct_module", 0, mod->unres);
1183}
1184
1185#define SZ 500
1186
1187/* We first write the generated file into memory using the
1188 * following helper, then compare to the file on disk and
1189 * only update the later if anything changed */
1190
Sam Ravnborg5c3ead82006-01-28 17:19:35 +01001191void __attribute__((format(printf, 2, 3))) buf_printf(struct buffer *buf,
1192 const char *fmt, ...)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001193{
1194 char tmp[SZ];
1195 int len;
1196 va_list ap;
Sam Ravnborg62070fa2006-03-03 16:46:04 +01001197
Linus Torvalds1da177e2005-04-16 15:20:36 -07001198 va_start(ap, fmt);
1199 len = vsnprintf(tmp, SZ, fmt, ap);
Sam Ravnborg7670f022006-03-16 23:04:08 -08001200 buf_write(buf, tmp, len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001201 va_end(ap);
1202}
1203
Sam Ravnborg5c3ead82006-01-28 17:19:35 +01001204void buf_write(struct buffer *buf, const char *s, int len)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001205{
1206 if (buf->size - buf->pos < len) {
Sam Ravnborg7670f022006-03-16 23:04:08 -08001207 buf->size += len + SZ;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001208 buf->p = realloc(buf->p, buf->size);
1209 }
1210 strncpy(buf->p + buf->pos, s, len);
1211 buf->pos += len;
1212}
1213
Sam Ravnborgc96fca22006-07-01 11:44:23 +02001214static void check_for_gpl_usage(enum export exp, const char *m, const char *s)
1215{
1216 const char *e = is_vmlinux(m) ?"":".ko";
1217
1218 switch (exp) {
1219 case export_gpl:
1220 fatal("modpost: GPL-incompatible module %s%s "
1221 "uses GPL-only symbol '%s'\n", m, e, s);
1222 break;
1223 case export_unused_gpl:
1224 fatal("modpost: GPL-incompatible module %s%s "
1225 "uses GPL-only symbol marked UNUSED '%s'\n", m, e, s);
1226 break;
1227 case export_gpl_future:
1228 warn("modpost: GPL-incompatible module %s%s "
1229 "uses future GPL-only symbol '%s'\n", m, e, s);
1230 break;
1231 case export_plain:
1232 case export_unused:
1233 case export_unknown:
1234 /* ignore */
1235 break;
1236 }
1237}
1238
1239static void check_for_unused(enum export exp, const char* m, const char* s)
1240{
1241 const char *e = is_vmlinux(m) ?"":".ko";
1242
1243 switch (exp) {
1244 case export_unused:
1245 case export_unused_gpl:
1246 warn("modpost: module %s%s "
1247 "uses symbol '%s' marked UNUSED\n", m, e, s);
1248 break;
1249 default:
1250 /* ignore */
1251 break;
1252 }
1253}
1254
1255static void check_exports(struct module *mod)
Sam Ravnborgb817f6f2006-06-09 21:53:55 +02001256{
1257 struct symbol *s, *exp;
1258
1259 for (s = mod->unres; s; s = s->next) {
Andrew Morton6449bd62006-06-09 20:45:06 -07001260 const char *basename;
Sam Ravnborgb817f6f2006-06-09 21:53:55 +02001261 exp = find_symbol(s->name);
1262 if (!exp || exp->module == mod)
1263 continue;
Andrew Morton6449bd62006-06-09 20:45:06 -07001264 basename = strrchr(mod->name, '/');
Sam Ravnborgb817f6f2006-06-09 21:53:55 +02001265 if (basename)
1266 basename++;
Sam Ravnborgc96fca22006-07-01 11:44:23 +02001267 else
1268 basename = mod->name;
1269 if (!mod->gpl_compatible)
1270 check_for_gpl_usage(exp->export, basename, exp->name);
1271 check_for_unused(exp->export, basename, exp->name);
Sam Ravnborgb817f6f2006-06-09 21:53:55 +02001272 }
1273}
1274
Sam Ravnborg5c3ead82006-01-28 17:19:35 +01001275/**
1276 * Header for the generated file
1277 **/
1278static void add_header(struct buffer *b, struct module *mod)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001279{
1280 buf_printf(b, "#include <linux/module.h>\n");
1281 buf_printf(b, "#include <linux/vermagic.h>\n");
1282 buf_printf(b, "#include <linux/compiler.h>\n");
1283 buf_printf(b, "\n");
1284 buf_printf(b, "MODULE_INFO(vermagic, VERMAGIC_STRING);\n");
1285 buf_printf(b, "\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001286 buf_printf(b, "struct module __this_module\n");
1287 buf_printf(b, "__attribute__((section(\".gnu.linkonce.this_module\"))) = {\n");
Ustyugov Romanf83b5e32005-09-23 08:42:11 +04001288 buf_printf(b, " .name = KBUILD_MODNAME,\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001289 if (mod->has_init)
1290 buf_printf(b, " .init = init_module,\n");
1291 if (mod->has_cleanup)
1292 buf_printf(b, "#ifdef CONFIG_MODULE_UNLOAD\n"
1293 " .exit = cleanup_module,\n"
1294 "#endif\n");
1295 buf_printf(b, "};\n");
1296}
1297
Sam Ravnborg5c3ead82006-01-28 17:19:35 +01001298/**
1299 * Record CRCs for unresolved symbols
1300 **/
Kirill Korotaevc53ddac2006-09-07 13:08:54 -07001301static int add_versions(struct buffer *b, struct module *mod)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001302{
1303 struct symbol *s, *exp;
Kirill Korotaevc53ddac2006-09-07 13:08:54 -07001304 int err = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001305
1306 for (s = mod->unres; s; s = s->next) {
1307 exp = find_symbol(s->name);
1308 if (!exp || exp->module == mod) {
Kirill Korotaevc53ddac2006-09-07 13:08:54 -07001309 if (have_vmlinux && !s->weak) {
Sam Ravnborgcb805142006-01-28 16:57:26 +01001310 warn("\"%s\" [%s.ko] undefined!\n",
1311 s->name, mod->name);
Kirill Korotaevc53ddac2006-09-07 13:08:54 -07001312 err = warn_unresolved ? 0 : 1;
1313 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001314 continue;
1315 }
1316 s->module = exp->module;
1317 s->crc_valid = exp->crc_valid;
1318 s->crc = exp->crc;
1319 }
1320
1321 if (!modversions)
Kirill Korotaevc53ddac2006-09-07 13:08:54 -07001322 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001323
1324 buf_printf(b, "\n");
1325 buf_printf(b, "static const struct modversion_info ____versions[]\n");
1326 buf_printf(b, "__attribute_used__\n");
1327 buf_printf(b, "__attribute__((section(\"__versions\"))) = {\n");
1328
1329 for (s = mod->unres; s; s = s->next) {
1330 if (!s->module) {
1331 continue;
1332 }
1333 if (!s->crc_valid) {
Sam Ravnborgcb805142006-01-28 16:57:26 +01001334 warn("\"%s\" [%s.ko] has no CRC!\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07001335 s->name, mod->name);
1336 continue;
1337 }
1338 buf_printf(b, "\t{ %#8x, \"%s\" },\n", s->crc, s->name);
1339 }
1340
1341 buf_printf(b, "};\n");
Kirill Korotaevc53ddac2006-09-07 13:08:54 -07001342
1343 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001344}
1345
Sam Ravnborg5c3ead82006-01-28 17:19:35 +01001346static void add_depends(struct buffer *b, struct module *mod,
1347 struct module *modules)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001348{
1349 struct symbol *s;
1350 struct module *m;
1351 int first = 1;
1352
1353 for (m = modules; m; m = m->next) {
1354 m->seen = is_vmlinux(m->name);
1355 }
1356
1357 buf_printf(b, "\n");
1358 buf_printf(b, "static const char __module_depends[]\n");
1359 buf_printf(b, "__attribute_used__\n");
1360 buf_printf(b, "__attribute__((section(\".modinfo\"))) =\n");
1361 buf_printf(b, "\"depends=");
1362 for (s = mod->unres; s; s = s->next) {
Sam Ravnborga61b2df2007-02-26 19:46:52 +01001363 const char *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001364 if (!s->module)
1365 continue;
1366
1367 if (s->module->seen)
1368 continue;
1369
1370 s->module->seen = 1;
Sam Ravnborga61b2df2007-02-26 19:46:52 +01001371 if ((p = strrchr(s->module->name, '/')) != NULL)
1372 p++;
1373 else
1374 p = s->module->name;
1375 buf_printf(b, "%s%s", first ? "" : ",", p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001376 first = 0;
1377 }
1378 buf_printf(b, "\";\n");
1379}
1380
Sam Ravnborg5c3ead82006-01-28 17:19:35 +01001381static void add_srcversion(struct buffer *b, struct module *mod)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001382{
1383 if (mod->srcversion[0]) {
1384 buf_printf(b, "\n");
1385 buf_printf(b, "MODULE_INFO(srcversion, \"%s\");\n",
1386 mod->srcversion);
1387 }
1388}
1389
Sam Ravnborg5c3ead82006-01-28 17:19:35 +01001390static void write_if_changed(struct buffer *b, const char *fname)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001391{
1392 char *tmp;
1393 FILE *file;
1394 struct stat st;
1395
1396 file = fopen(fname, "r");
1397 if (!file)
1398 goto write;
1399
1400 if (fstat(fileno(file), &st) < 0)
1401 goto close_write;
1402
1403 if (st.st_size != b->pos)
1404 goto close_write;
1405
1406 tmp = NOFAIL(malloc(b->pos));
1407 if (fread(tmp, 1, b->pos, file) != b->pos)
1408 goto free_write;
1409
1410 if (memcmp(tmp, b->p, b->pos) != 0)
1411 goto free_write;
1412
1413 free(tmp);
1414 fclose(file);
1415 return;
1416
1417 free_write:
1418 free(tmp);
1419 close_write:
1420 fclose(file);
1421 write:
1422 file = fopen(fname, "w");
1423 if (!file) {
1424 perror(fname);
1425 exit(1);
1426 }
1427 if (fwrite(b->p, 1, b->pos, file) != b->pos) {
1428 perror(fname);
1429 exit(1);
1430 }
1431 fclose(file);
1432}
1433
Ram Paibd5cbce2006-06-08 22:12:53 -07001434/* parse Module.symvers file. line format:
Sam Ravnborg534b89a2006-07-01 10:10:19 +02001435 * 0x12345678<tab>symbol<tab>module[[<tab>export]<tab>something]
Ram Paibd5cbce2006-06-08 22:12:53 -07001436 **/
Sam Ravnborg040fcc82006-01-28 22:15:55 +01001437static void read_dump(const char *fname, unsigned int kernel)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001438{
1439 unsigned long size, pos = 0;
1440 void *file = grab_file(fname, &size);
1441 char *line;
1442
1443 if (!file)
1444 /* No symbol versions, silently ignore */
1445 return;
1446
1447 while ((line = get_next_line(&pos, file, size))) {
Sam Ravnborg534b89a2006-07-01 10:10:19 +02001448 char *symname, *modname, *d, *export, *end;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001449 unsigned int crc;
1450 struct module *mod;
Sam Ravnborg040fcc82006-01-28 22:15:55 +01001451 struct symbol *s;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001452
1453 if (!(symname = strchr(line, '\t')))
1454 goto fail;
1455 *symname++ = '\0';
1456 if (!(modname = strchr(symname, '\t')))
1457 goto fail;
1458 *modname++ = '\0';
Laurent Riffard9ac545b2006-06-11 08:02:06 +02001459 if ((export = strchr(modname, '\t')) != NULL)
Ram Paibd5cbce2006-06-08 22:12:53 -07001460 *export++ = '\0';
Sam Ravnborg534b89a2006-07-01 10:10:19 +02001461 if (export && ((end = strchr(export, '\t')) != NULL))
1462 *end = '\0';
Linus Torvalds1da177e2005-04-16 15:20:36 -07001463 crc = strtoul(line, &d, 16);
1464 if (*symname == '\0' || *modname == '\0' || *d != '\0')
1465 goto fail;
1466
1467 if (!(mod = find_module(modname))) {
1468 if (is_vmlinux(modname)) {
1469 have_vmlinux = 1;
1470 }
1471 mod = new_module(NOFAIL(strdup(modname)));
1472 mod->skip = 1;
1473 }
Ram Paibd5cbce2006-06-08 22:12:53 -07001474 s = sym_add_exported(symname, mod, export_no(export));
Sam Ravnborg8e70c452006-01-28 22:22:33 +01001475 s->kernel = kernel;
1476 s->preloaded = 1;
Ram Paibd5cbce2006-06-08 22:12:53 -07001477 sym_update_crc(symname, mod, crc, export_no(export));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001478 }
1479 return;
1480fail:
1481 fatal("parse error in symbol dump file\n");
1482}
1483
Sam Ravnborg040fcc82006-01-28 22:15:55 +01001484/* For normal builds always dump all symbols.
1485 * For external modules only dump symbols
1486 * that are not read from kernel Module.symvers.
1487 **/
1488static int dump_sym(struct symbol *sym)
1489{
1490 if (!external_module)
1491 return 1;
1492 if (sym->vmlinux || sym->kernel)
1493 return 0;
1494 return 1;
1495}
Sam Ravnborg62070fa2006-03-03 16:46:04 +01001496
Sam Ravnborg5c3ead82006-01-28 17:19:35 +01001497static void write_dump(const char *fname)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001498{
1499 struct buffer buf = { };
1500 struct symbol *symbol;
1501 int n;
1502
1503 for (n = 0; n < SYMBOL_HASH_SIZE ; n++) {
1504 symbol = symbolhash[n];
1505 while (symbol) {
Sam Ravnborg040fcc82006-01-28 22:15:55 +01001506 if (dump_sym(symbol))
Ram Paibd5cbce2006-06-08 22:12:53 -07001507 buf_printf(&buf, "0x%08x\t%s\t%s\t%s\n",
Sam Ravnborg62070fa2006-03-03 16:46:04 +01001508 symbol->crc, symbol->name,
Ram Paibd5cbce2006-06-08 22:12:53 -07001509 symbol->module->name,
1510 export_str(symbol->export));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001511 symbol = symbol->next;
1512 }
1513 }
1514 write_if_changed(&buf, fname);
1515}
1516
Sam Ravnborg5c3ead82006-01-28 17:19:35 +01001517int main(int argc, char **argv)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001518{
1519 struct module *mod;
1520 struct buffer buf = { };
1521 char fname[SZ];
Sam Ravnborg040fcc82006-01-28 22:15:55 +01001522 char *kernel_read = NULL, *module_read = NULL;
1523 char *dump_write = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001524 int opt;
Kirill Korotaevc53ddac2006-09-07 13:08:54 -07001525 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001526
Kirill Korotaevc53ddac2006-09-07 13:08:54 -07001527 while ((opt = getopt(argc, argv, "i:I:mo:aw")) != -1) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001528 switch(opt) {
1529 case 'i':
Sam Ravnborg040fcc82006-01-28 22:15:55 +01001530 kernel_read = optarg;
1531 break;
1532 case 'I':
1533 module_read = optarg;
1534 external_module = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001535 break;
1536 case 'm':
1537 modversions = 1;
1538 break;
1539 case 'o':
1540 dump_write = optarg;
1541 break;
1542 case 'a':
1543 all_versions = 1;
1544 break;
Kirill Korotaevc53ddac2006-09-07 13:08:54 -07001545 case 'w':
1546 warn_unresolved = 1;
1547 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001548 default:
1549 exit(1);
1550 }
1551 }
1552
Sam Ravnborg040fcc82006-01-28 22:15:55 +01001553 if (kernel_read)
1554 read_dump(kernel_read, 1);
1555 if (module_read)
1556 read_dump(module_read, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001557
1558 while (optind < argc) {
1559 read_symbols(argv[optind++]);
1560 }
1561
1562 for (mod = modules; mod; mod = mod->next) {
1563 if (mod->skip)
1564 continue;
Sam Ravnborgc96fca22006-07-01 11:44:23 +02001565 check_exports(mod);
Sam Ravnborgb817f6f2006-06-09 21:53:55 +02001566 }
1567
Kirill Korotaevc53ddac2006-09-07 13:08:54 -07001568 err = 0;
1569
Sam Ravnborgb817f6f2006-06-09 21:53:55 +02001570 for (mod = modules; mod; mod = mod->next) {
1571 if (mod->skip)
1572 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001573
1574 buf.pos = 0;
1575
1576 add_header(&buf, mod);
Kirill Korotaevc53ddac2006-09-07 13:08:54 -07001577 err |= add_versions(&buf, mod);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001578 add_depends(&buf, mod, modules);
1579 add_moddevtable(&buf, mod);
1580 add_srcversion(&buf, mod);
1581
1582 sprintf(fname, "%s.mod.c", mod->name);
1583 write_if_changed(&buf, fname);
1584 }
1585
1586 if (dump_write)
1587 write_dump(dump_write);
1588
Kirill Korotaevc53ddac2006-09-07 13:08:54 -07001589 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001590}