blob: 5028d46a8f3572a4e3f5296d051601c3724a78b3 [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;
Ram Paibd5cbce2006-06-08 22:12:53 -070026/* How a symbol is exported */
Sam Ravnborgc96fca22006-07-01 11:44:23 +020027enum export {
28 export_plain, export_unused, export_gpl,
29 export_unused_gpl, export_gpl_future, export_unknown
30};
Linus Torvalds1da177e2005-04-16 15:20:36 -070031
Sam Ravnborg5c3ead82006-01-28 17:19:35 +010032void fatal(const char *fmt, ...)
Linus Torvalds1da177e2005-04-16 15:20:36 -070033{
34 va_list arglist;
35
36 fprintf(stderr, "FATAL: ");
37
38 va_start(arglist, fmt);
39 vfprintf(stderr, fmt, arglist);
40 va_end(arglist);
41
42 exit(1);
43}
44
Sam Ravnborg5c3ead82006-01-28 17:19:35 +010045void warn(const char *fmt, ...)
Linus Torvalds1da177e2005-04-16 15:20:36 -070046{
47 va_list arglist;
48
49 fprintf(stderr, "WARNING: ");
50
51 va_start(arglist, fmt);
52 vfprintf(stderr, fmt, arglist);
53 va_end(arglist);
54}
55
Sam Ravnborg040fcc82006-01-28 22:15:55 +010056static int is_vmlinux(const char *modname)
57{
58 const char *myname;
59
60 if ((myname = strrchr(modname, '/')))
61 myname++;
62 else
63 myname = modname;
64
65 return strcmp(myname, "vmlinux") == 0;
66}
67
Linus Torvalds1da177e2005-04-16 15:20:36 -070068void *do_nofail(void *ptr, const char *expr)
69{
70 if (!ptr) {
71 fatal("modpost: Memory allocation failure: %s.\n", expr);
72 }
73 return ptr;
74}
75
76/* A list of all modules we processed */
77
78static struct module *modules;
79
Sam Ravnborg5c3ead82006-01-28 17:19:35 +010080static struct module *find_module(char *modname)
Linus Torvalds1da177e2005-04-16 15:20:36 -070081{
82 struct module *mod;
83
84 for (mod = modules; mod; mod = mod->next)
85 if (strcmp(mod->name, modname) == 0)
86 break;
87 return mod;
88}
89
Sam Ravnborg5c3ead82006-01-28 17:19:35 +010090static struct module *new_module(char *modname)
Linus Torvalds1da177e2005-04-16 15:20:36 -070091{
92 struct module *mod;
93 char *p, *s;
Sam Ravnborg62070fa2006-03-03 16:46:04 +010094
Linus Torvalds1da177e2005-04-16 15:20:36 -070095 mod = NOFAIL(malloc(sizeof(*mod)));
96 memset(mod, 0, sizeof(*mod));
97 p = NOFAIL(strdup(modname));
98
99 /* strip trailing .o */
100 if ((s = strrchr(p, '.')) != NULL)
101 if (strcmp(s, ".o") == 0)
102 *s = '\0';
103
104 /* add to list */
105 mod->name = p;
Sam Ravnborgb817f6f2006-06-09 21:53:55 +0200106 mod->gpl_compatible = -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700107 mod->next = modules;
108 modules = mod;
109
110 return mod;
111}
112
113/* A hash of all exported symbols,
114 * struct symbol is also used for lists of unresolved symbols */
115
116#define SYMBOL_HASH_SIZE 1024
117
118struct symbol {
119 struct symbol *next;
120 struct module *module;
121 unsigned int crc;
122 int crc_valid;
123 unsigned int weak:1;
Sam Ravnborg040fcc82006-01-28 22:15:55 +0100124 unsigned int vmlinux:1; /* 1 if symbol is defined in vmlinux */
125 unsigned int kernel:1; /* 1 if symbol is from kernel
126 * (only for external modules) **/
Sam Ravnborg8e70c452006-01-28 22:22:33 +0100127 unsigned int preloaded:1; /* 1 if symbol from Module.symvers */
Ram Paibd5cbce2006-06-08 22:12:53 -0700128 enum export export; /* Type of export */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700129 char name[0];
130};
131
132static struct symbol *symbolhash[SYMBOL_HASH_SIZE];
133
134/* This is based on the hash agorithm from gdbm, via tdb */
135static inline unsigned int tdb_hash(const char *name)
136{
137 unsigned value; /* Used to compute the hash value. */
138 unsigned i; /* Used to cycle through random values. */
139
140 /* Set the initial value from the key size. */
141 for (value = 0x238F13AF * strlen(name), i=0; name[i]; i++)
142 value = (value + (((unsigned char *)name)[i] << (i*5 % 24)));
143
144 return (1103515243 * value + 12345);
145}
146
Sam Ravnborg5c3ead82006-01-28 17:19:35 +0100147/**
148 * Allocate a new symbols for use in the hash of exported symbols or
149 * the list of unresolved symbols per module
150 **/
151static struct symbol *alloc_symbol(const char *name, unsigned int weak,
152 struct symbol *next)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700153{
154 struct symbol *s = NOFAIL(malloc(sizeof(*s) + strlen(name) + 1));
155
156 memset(s, 0, sizeof(*s));
157 strcpy(s->name, name);
158 s->weak = weak;
159 s->next = next;
160 return s;
161}
162
163/* For the hash of exported symbols */
Ram Paibd5cbce2006-06-08 22:12:53 -0700164static struct symbol *new_symbol(const char *name, struct module *module,
165 enum export export)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700166{
167 unsigned int hash;
168 struct symbol *new;
169
170 hash = tdb_hash(name) % SYMBOL_HASH_SIZE;
171 new = symbolhash[hash] = alloc_symbol(name, 0, symbolhash[hash]);
172 new->module = module;
Ram Paibd5cbce2006-06-08 22:12:53 -0700173 new->export = export;
Sam Ravnborg040fcc82006-01-28 22:15:55 +0100174 return new;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700175}
176
Sam Ravnborg5c3ead82006-01-28 17:19:35 +0100177static struct symbol *find_symbol(const char *name)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700178{
179 struct symbol *s;
180
181 /* For our purposes, .foo matches foo. PPC64 needs this. */
182 if (name[0] == '.')
183 name++;
184
185 for (s = symbolhash[tdb_hash(name) % SYMBOL_HASH_SIZE]; s; s=s->next) {
186 if (strcmp(s->name, name) == 0)
187 return s;
188 }
189 return NULL;
190}
191
Ram Paibd5cbce2006-06-08 22:12:53 -0700192static struct {
193 const char *str;
194 enum export export;
195} export_list[] = {
196 { .str = "EXPORT_SYMBOL", .export = export_plain },
Sam Ravnborgc96fca22006-07-01 11:44:23 +0200197 { .str = "EXPORT_UNUSED_SYMBOL", .export = export_unused },
Ram Paibd5cbce2006-06-08 22:12:53 -0700198 { .str = "EXPORT_SYMBOL_GPL", .export = export_gpl },
Sam Ravnborgc96fca22006-07-01 11:44:23 +0200199 { .str = "EXPORT_UNUSED_SYMBOL_GPL", .export = export_unused_gpl },
Ram Paibd5cbce2006-06-08 22:12:53 -0700200 { .str = "EXPORT_SYMBOL_GPL_FUTURE", .export = export_gpl_future },
201 { .str = "(unknown)", .export = export_unknown },
202};
203
204
205static const char *export_str(enum export ex)
206{
207 return export_list[ex].str;
208}
209
210static enum export export_no(const char * s)
211{
212 int i;
Sam Ravnborg534b89a2006-07-01 10:10:19 +0200213 if (!s)
214 return export_unknown;
Ram Paibd5cbce2006-06-08 22:12:53 -0700215 for (i = 0; export_list[i].export != export_unknown; i++) {
216 if (strcmp(export_list[i].str, s) == 0)
217 return export_list[i].export;
218 }
219 return export_unknown;
220}
221
222static enum export export_from_sec(struct elf_info *elf, Elf_Section sec)
223{
224 if (sec == elf->export_sec)
225 return export_plain;
Sam Ravnborgc96fca22006-07-01 11:44:23 +0200226 else if (sec == elf->export_unused_sec)
227 return export_unused;
Ram Paibd5cbce2006-06-08 22:12:53 -0700228 else if (sec == elf->export_gpl_sec)
229 return export_gpl;
Sam Ravnborgc96fca22006-07-01 11:44:23 +0200230 else if (sec == elf->export_unused_gpl_sec)
231 return export_unused_gpl;
Ram Paibd5cbce2006-06-08 22:12:53 -0700232 else if (sec == elf->export_gpl_future_sec)
233 return export_gpl_future;
234 else
235 return export_unknown;
236}
237
Sam Ravnborg5c3ead82006-01-28 17:19:35 +0100238/**
239 * Add an exported symbol - it may have already been added without a
240 * CRC, in this case just update the CRC
241 **/
Ram Paibd5cbce2006-06-08 22:12:53 -0700242static struct symbol *sym_add_exported(const char *name, struct module *mod,
243 enum export export)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700244{
245 struct symbol *s = find_symbol(name);
246
247 if (!s) {
Ram Paibd5cbce2006-06-08 22:12:53 -0700248 s = new_symbol(name, mod, export);
Sam Ravnborg8e70c452006-01-28 22:22:33 +0100249 } else {
250 if (!s->preloaded) {
Sam Ravnborg7b75b132006-03-05 13:48:58 +0100251 warn("%s: '%s' exported twice. Previous export "
Sam Ravnborg8e70c452006-01-28 22:22:33 +0100252 "was in %s%s\n", mod->name, name,
253 s->module->name,
254 is_vmlinux(s->module->name) ?"":".ko");
255 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700256 }
Sam Ravnborg8e70c452006-01-28 22:22:33 +0100257 s->preloaded = 0;
Sam Ravnborg040fcc82006-01-28 22:15:55 +0100258 s->vmlinux = is_vmlinux(mod->name);
259 s->kernel = 0;
Ram Paibd5cbce2006-06-08 22:12:53 -0700260 s->export = export;
Sam Ravnborg040fcc82006-01-28 22:15:55 +0100261 return s;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700262}
263
Sam Ravnborg040fcc82006-01-28 22:15:55 +0100264static void sym_update_crc(const char *name, struct module *mod,
Ram Paibd5cbce2006-06-08 22:12:53 -0700265 unsigned int crc, enum export export)
Sam Ravnborg040fcc82006-01-28 22:15:55 +0100266{
267 struct symbol *s = find_symbol(name);
268
269 if (!s)
Ram Paibd5cbce2006-06-08 22:12:53 -0700270 s = new_symbol(name, mod, export);
Sam Ravnborg040fcc82006-01-28 22:15:55 +0100271 s->crc = crc;
272 s->crc_valid = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700273}
274
Sam Ravnborg5c3ead82006-01-28 17:19:35 +0100275void *grab_file(const char *filename, unsigned long *size)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700276{
277 struct stat st;
278 void *map;
279 int fd;
280
281 fd = open(filename, O_RDONLY);
282 if (fd < 0 || fstat(fd, &st) != 0)
283 return NULL;
284
285 *size = st.st_size;
286 map = mmap(NULL, *size, PROT_READ|PROT_WRITE, MAP_PRIVATE, fd, 0);
287 close(fd);
288
289 if (map == MAP_FAILED)
290 return NULL;
291 return map;
292}
293
Sam Ravnborg5c3ead82006-01-28 17:19:35 +0100294/**
295 * Return a copy of the next line in a mmap'ed file.
296 * spaces in the beginning of the line is trimmed away.
297 * Return a pointer to a static buffer.
298 **/
299char* get_next_line(unsigned long *pos, void *file, unsigned long size)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700300{
301 static char line[4096];
302 int skip = 1;
303 size_t len = 0;
304 signed char *p = (signed char *)file + *pos;
305 char *s = line;
306
307 for (; *pos < size ; (*pos)++)
308 {
309 if (skip && isspace(*p)) {
310 p++;
311 continue;
312 }
313 skip = 0;
314 if (*p != '\n' && (*pos < size)) {
315 len++;
316 *s++ = *p++;
317 if (len > 4095)
318 break; /* Too long, stop */
319 } else {
320 /* End of string */
321 *s = '\0';
322 return line;
323 }
324 }
325 /* End of buffer */
326 return NULL;
327}
328
Sam Ravnborg5c3ead82006-01-28 17:19:35 +0100329void release_file(void *file, unsigned long size)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700330{
331 munmap(file, size);
332}
333
Sam Ravnborg5c3ead82006-01-28 17:19:35 +0100334static void parse_elf(struct elf_info *info, const char *filename)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700335{
336 unsigned int i;
337 Elf_Ehdr *hdr = info->hdr;
338 Elf_Shdr *sechdrs;
339 Elf_Sym *sym;
340
341 hdr = grab_file(filename, &info->size);
342 if (!hdr) {
343 perror(filename);
Sam Ravnborg6803dc02006-06-24 23:46:54 +0200344 exit(1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700345 }
346 info->hdr = hdr;
347 if (info->size < sizeof(*hdr))
348 goto truncated;
349
350 /* Fix endianness in ELF header */
351 hdr->e_shoff = TO_NATIVE(hdr->e_shoff);
352 hdr->e_shstrndx = TO_NATIVE(hdr->e_shstrndx);
353 hdr->e_shnum = TO_NATIVE(hdr->e_shnum);
354 hdr->e_machine = TO_NATIVE(hdr->e_machine);
355 sechdrs = (void *)hdr + hdr->e_shoff;
356 info->sechdrs = sechdrs;
357
358 /* Fix endianness in section headers */
359 for (i = 0; i < hdr->e_shnum; i++) {
360 sechdrs[i].sh_type = TO_NATIVE(sechdrs[i].sh_type);
361 sechdrs[i].sh_offset = TO_NATIVE(sechdrs[i].sh_offset);
362 sechdrs[i].sh_size = TO_NATIVE(sechdrs[i].sh_size);
363 sechdrs[i].sh_link = TO_NATIVE(sechdrs[i].sh_link);
364 sechdrs[i].sh_name = TO_NATIVE(sechdrs[i].sh_name);
365 }
366 /* Find symbol table. */
367 for (i = 1; i < hdr->e_shnum; i++) {
368 const char *secstrings
369 = (void *)hdr + sechdrs[hdr->e_shstrndx].sh_offset;
Ram Paibd5cbce2006-06-08 22:12:53 -0700370 const char *secname;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700371
372 if (sechdrs[i].sh_offset > info->size)
373 goto truncated;
Ram Paibd5cbce2006-06-08 22:12:53 -0700374 secname = secstrings + sechdrs[i].sh_name;
375 if (strcmp(secname, ".modinfo") == 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700376 info->modinfo = (void *)hdr + sechdrs[i].sh_offset;
377 info->modinfo_len = sechdrs[i].sh_size;
Ram Paibd5cbce2006-06-08 22:12:53 -0700378 } else if (strcmp(secname, "__ksymtab") == 0)
379 info->export_sec = i;
Sam Ravnborgc96fca22006-07-01 11:44:23 +0200380 else if (strcmp(secname, "__ksymtab_unused") == 0)
381 info->export_unused_sec = i;
Ram Paibd5cbce2006-06-08 22:12:53 -0700382 else if (strcmp(secname, "__ksymtab_gpl") == 0)
383 info->export_gpl_sec = i;
Sam Ravnborgc96fca22006-07-01 11:44:23 +0200384 else if (strcmp(secname, "__ksymtab_unused_gpl") == 0)
385 info->export_unused_gpl_sec = i;
Ram Paibd5cbce2006-06-08 22:12:53 -0700386 else if (strcmp(secname, "__ksymtab_gpl_future") == 0)
387 info->export_gpl_future_sec = i;
388
Linus Torvalds1da177e2005-04-16 15:20:36 -0700389 if (sechdrs[i].sh_type != SHT_SYMTAB)
390 continue;
391
392 info->symtab_start = (void *)hdr + sechdrs[i].sh_offset;
Sam Ravnborg62070fa2006-03-03 16:46:04 +0100393 info->symtab_stop = (void *)hdr + sechdrs[i].sh_offset
Linus Torvalds1da177e2005-04-16 15:20:36 -0700394 + sechdrs[i].sh_size;
Sam Ravnborg62070fa2006-03-03 16:46:04 +0100395 info->strtab = (void *)hdr +
Linus Torvalds1da177e2005-04-16 15:20:36 -0700396 sechdrs[sechdrs[i].sh_link].sh_offset;
397 }
398 if (!info->symtab_start) {
Sam Ravnborgcb805142006-01-28 16:57:26 +0100399 fatal("%s has no symtab?\n", filename);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700400 }
401 /* Fix endianness in symbols */
402 for (sym = info->symtab_start; sym < info->symtab_stop; sym++) {
403 sym->st_shndx = TO_NATIVE(sym->st_shndx);
404 sym->st_name = TO_NATIVE(sym->st_name);
405 sym->st_value = TO_NATIVE(sym->st_value);
406 sym->st_size = TO_NATIVE(sym->st_size);
407 }
408 return;
409
410 truncated:
Sam Ravnborgcb805142006-01-28 16:57:26 +0100411 fatal("%s is truncated.\n", filename);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700412}
413
Sam Ravnborg5c3ead82006-01-28 17:19:35 +0100414static void parse_elf_finish(struct elf_info *info)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700415{
416 release_file(info->hdr, info->size);
417}
418
Luke Yangf7b05e62006-03-02 18:35:31 +0800419#define CRC_PFX MODULE_SYMBOL_PREFIX "__crc_"
420#define KSYMTAB_PFX MODULE_SYMBOL_PREFIX "__ksymtab_"
Linus Torvalds1da177e2005-04-16 15:20:36 -0700421
Sam Ravnborg5c3ead82006-01-28 17:19:35 +0100422static void handle_modversions(struct module *mod, struct elf_info *info,
423 Elf_Sym *sym, const char *symname)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700424{
425 unsigned int crc;
Ram Paibd5cbce2006-06-08 22:12:53 -0700426 enum export export = export_from_sec(info, sym->st_shndx);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700427
428 switch (sym->st_shndx) {
429 case SHN_COMMON:
Sam Ravnborgcb805142006-01-28 16:57:26 +0100430 warn("\"%s\" [%s] is COMMON symbol\n", symname, mod->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700431 break;
432 case SHN_ABS:
433 /* CRC'd symbol */
434 if (memcmp(symname, CRC_PFX, strlen(CRC_PFX)) == 0) {
435 crc = (unsigned int) sym->st_value;
Ram Paibd5cbce2006-06-08 22:12:53 -0700436 sym_update_crc(symname + strlen(CRC_PFX), mod, crc,
437 export);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700438 }
439 break;
440 case SHN_UNDEF:
441 /* undefined symbol */
442 if (ELF_ST_BIND(sym->st_info) != STB_GLOBAL &&
443 ELF_ST_BIND(sym->st_info) != STB_WEAK)
444 break;
445 /* ignore global offset table */
446 if (strcmp(symname, "_GLOBAL_OFFSET_TABLE_") == 0)
447 break;
448 /* ignore __this_module, it will be resolved shortly */
449 if (strcmp(symname, MODULE_SYMBOL_PREFIX "__this_module") == 0)
450 break;
Ben Colline8d529012005-08-19 13:44:57 -0700451/* cope with newer glibc (2.3.4 or higher) STT_ definition in elf.h */
452#if defined(STT_REGISTER) || defined(STT_SPARC_REGISTER)
453/* add compatibility with older glibc */
454#ifndef STT_SPARC_REGISTER
455#define STT_SPARC_REGISTER STT_REGISTER
456#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700457 if (info->hdr->e_machine == EM_SPARC ||
458 info->hdr->e_machine == EM_SPARCV9) {
459 /* Ignore register directives. */
Ben Colline8d529012005-08-19 13:44:57 -0700460 if (ELF_ST_TYPE(sym->st_info) == STT_SPARC_REGISTER)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700461 break;
Sam Ravnborg62070fa2006-03-03 16:46:04 +0100462 if (symname[0] == '.') {
463 char *munged = strdup(symname);
464 munged[0] = '_';
465 munged[1] = toupper(munged[1]);
466 symname = munged;
467 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700468 }
469#endif
Sam Ravnborg62070fa2006-03-03 16:46:04 +0100470
Linus Torvalds1da177e2005-04-16 15:20:36 -0700471 if (memcmp(symname, MODULE_SYMBOL_PREFIX,
472 strlen(MODULE_SYMBOL_PREFIX)) == 0)
473 mod->unres = alloc_symbol(symname +
474 strlen(MODULE_SYMBOL_PREFIX),
475 ELF_ST_BIND(sym->st_info) == STB_WEAK,
476 mod->unres);
477 break;
478 default:
479 /* All exported symbols */
480 if (memcmp(symname, KSYMTAB_PFX, strlen(KSYMTAB_PFX)) == 0) {
Ram Paibd5cbce2006-06-08 22:12:53 -0700481 sym_add_exported(symname + strlen(KSYMTAB_PFX), mod,
482 export);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700483 }
484 if (strcmp(symname, MODULE_SYMBOL_PREFIX "init_module") == 0)
485 mod->has_init = 1;
486 if (strcmp(symname, MODULE_SYMBOL_PREFIX "cleanup_module") == 0)
487 mod->has_cleanup = 1;
488 break;
489 }
490}
491
Sam Ravnborg5c3ead82006-01-28 17:19:35 +0100492/**
493 * Parse tag=value strings from .modinfo section
494 **/
Linus Torvalds1da177e2005-04-16 15:20:36 -0700495static char *next_string(char *string, unsigned long *secsize)
496{
497 /* Skip non-zero chars */
498 while (string[0]) {
499 string++;
500 if ((*secsize)-- <= 1)
501 return NULL;
502 }
503
504 /* Skip any zero padding. */
505 while (!string[0]) {
506 string++;
507 if ((*secsize)-- <= 1)
508 return NULL;
509 }
510 return string;
511}
512
Sam Ravnborgb817f6f2006-06-09 21:53:55 +0200513static char *get_next_modinfo(void *modinfo, unsigned long modinfo_len,
514 const char *tag, char *info)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700515{
516 char *p;
517 unsigned int taglen = strlen(tag);
518 unsigned long size = modinfo_len;
519
Sam Ravnborgb817f6f2006-06-09 21:53:55 +0200520 if (info) {
521 size -= info - (char *)modinfo;
522 modinfo = next_string(info, &size);
523 }
524
Linus Torvalds1da177e2005-04-16 15:20:36 -0700525 for (p = modinfo; p; p = next_string(p, &size)) {
526 if (strncmp(p, tag, taglen) == 0 && p[taglen] == '=')
527 return p + taglen + 1;
528 }
529 return NULL;
530}
531
Sam Ravnborgb817f6f2006-06-09 21:53:55 +0200532static char *get_modinfo(void *modinfo, unsigned long modinfo_len,
533 const char *tag)
534
535{
536 return get_next_modinfo(modinfo, modinfo_len, tag, NULL);
537}
538
Sam Ravnborg93684d32006-02-19 11:53:35 +0100539/**
Sam Ravnborg4c8fbca2006-02-26 22:18:11 +0100540 * Test if string s ends in string sub
541 * return 0 if match
542 **/
543static int strrcmp(const char *s, const char *sub)
544{
545 int slen, sublen;
Sam Ravnborg62070fa2006-03-03 16:46:04 +0100546
Sam Ravnborg4c8fbca2006-02-26 22:18:11 +0100547 if (!s || !sub)
548 return 1;
Sam Ravnborg62070fa2006-03-03 16:46:04 +0100549
Sam Ravnborg4c8fbca2006-02-26 22:18:11 +0100550 slen = strlen(s);
551 sublen = strlen(sub);
Sam Ravnborg62070fa2006-03-03 16:46:04 +0100552
Sam Ravnborg4c8fbca2006-02-26 22:18:11 +0100553 if ((slen == 0) || (sublen == 0))
554 return 1;
555
556 if (sublen > slen)
557 return 1;
558
559 return memcmp(s + slen - sublen, sub, sublen);
560}
561
562/**
563 * Whitelist to allow certain references to pass with no warning.
564 * Pattern 1:
565 * If a module parameter is declared __initdata and permissions=0
566 * then this is legal despite the warning generated.
567 * We cannot see value of permissions here, so just ignore
568 * this pattern.
569 * The pattern is identified by:
570 * tosec = .init.data
Sam Ravnborg9209aed2006-03-05 00:16:26 +0100571 * fromsec = .data*
Sam Ravnborg4c8fbca2006-02-26 22:18:11 +0100572 * atsym =__param*
Sam Ravnborg62070fa2006-03-03 16:46:04 +0100573 *
Sam Ravnborg4c8fbca2006-02-26 22:18:11 +0100574 * Pattern 2:
Randy Dunlap72ee59b2006-04-15 11:17:12 -0700575 * Many drivers utilise a *driver container with references to
Sam Ravnborg4c8fbca2006-02-26 22:18:11 +0100576 * add, remove, probe functions etc.
577 * These functions may often be marked __init and we do not want to
578 * warn here.
579 * the pattern is identified by:
Sam Ravnborg5ecdd0f2006-04-14 23:54:13 +0200580 * tosec = .init.text | .exit.text | .init.data
Sam Ravnborg4c8fbca2006-02-26 22:18:11 +0100581 * fromsec = .data
Randy Dunlap72ee59b2006-04-15 11:17:12 -0700582 * atsym = *driver, *_template, *_sht, *_ops, *_probe, *probe_one
Sam Ravnborg4c8fbca2006-02-26 22:18:11 +0100583 **/
Magnus Damm9e157a52006-08-08 17:32:11 +0900584static int secref_whitelist(const char *modname, const char *tosec,
585 const char *fromsec, const char *atsym)
Sam Ravnborg4c8fbca2006-02-26 22:18:11 +0100586{
587 int f1 = 1, f2 = 1;
588 const char **s;
589 const char *pat2sym[] = {
Randy Dunlap72ee59b2006-04-15 11:17:12 -0700590 "driver",
Sam Ravnborg5ecdd0f2006-04-14 23:54:13 +0200591 "_template", /* scsi uses *_template a lot */
592 "_sht", /* scsi also used *_sht to some extent */
Sam Ravnborg4c8fbca2006-02-26 22:18:11 +0100593 "_ops",
594 "_probe",
595 "_probe_one",
596 NULL
597 };
Sam Ravnborg62070fa2006-03-03 16:46:04 +0100598
Sam Ravnborg4c8fbca2006-02-26 22:18:11 +0100599 /* Check for pattern 1 */
600 if (strcmp(tosec, ".init.data") != 0)
601 f1 = 0;
Sam Ravnborg9209aed2006-03-05 00:16:26 +0100602 if (strncmp(fromsec, ".data", strlen(".data")) != 0)
Sam Ravnborg4c8fbca2006-02-26 22:18:11 +0100603 f1 = 0;
604 if (strncmp(atsym, "__param", strlen("__param")) != 0)
605 f1 = 0;
606
607 if (f1)
608 return f1;
609
610 /* Check for pattern 2 */
Sam Ravnborg62070fa2006-03-03 16:46:04 +0100611 if ((strcmp(tosec, ".init.text") != 0) &&
Sam Ravnborg5ecdd0f2006-04-14 23:54:13 +0200612 (strcmp(tosec, ".exit.text") != 0) &&
613 (strcmp(tosec, ".init.data") != 0))
Sam Ravnborg4c8fbca2006-02-26 22:18:11 +0100614 f2 = 0;
615 if (strcmp(fromsec, ".data") != 0)
616 f2 = 0;
617
618 for (s = pat2sym; *s; s++)
619 if (strrcmp(atsym, *s) == 0)
620 f1 = 1;
Magnus Damm9e157a52006-08-08 17:32:11 +0900621 if (f1 && f2)
622 return 1;
Sam Ravnborg4c8fbca2006-02-26 22:18:11 +0100623
Magnus Damm9e157a52006-08-08 17:32:11 +0900624 /* Whitelist all references from .pci_fixup section if vmlinux */
625 if (is_vmlinux(modname)) {
626 if ((strcmp(fromsec, ".pci_fixup") == 0) &&
627 (strcmp(tosec, ".init.text") == 0))
628 return 1;
629 }
Sam Ravnborg4c8fbca2006-02-26 22:18:11 +0100630}
631
632/**
Sam Ravnborg93684d32006-02-19 11:53:35 +0100633 * Find symbol based on relocation record info.
634 * In some cases the symbol supplied is a valid symbol so
635 * return refsym. If st_name != 0 we assume this is a valid symbol.
636 * In other cases the symbol needs to be looked up in the symbol table
637 * based on section and address.
638 * **/
639static Elf_Sym *find_elf_symbol(struct elf_info *elf, Elf_Addr addr,
640 Elf_Sym *relsym)
641{
642 Elf_Sym *sym;
643
644 if (relsym->st_name != 0)
645 return relsym;
646 for (sym = elf->symtab_start; sym < elf->symtab_stop; sym++) {
647 if (sym->st_shndx != relsym->st_shndx)
648 continue;
649 if (sym->st_value == addr)
650 return sym;
651 }
652 return NULL;
653}
654
Sam Ravnborgb39927c2006-02-17 22:42:02 +0100655/*
Sam Ravnborg43c74d12006-03-05 12:02:46 +0100656 * Find symbols before or equal addr and after addr - in the section sec.
657 * If we find two symbols with equal offset prefer one with a valid name.
658 * The ELF format may have a better way to detect what type of symbol
659 * it is, but this works for now.
Sam Ravnborgb39927c2006-02-17 22:42:02 +0100660 **/
661static void find_symbols_between(struct elf_info *elf, Elf_Addr addr,
662 const char *sec,
663 Elf_Sym **before, Elf_Sym **after)
664{
665 Elf_Sym *sym;
666 Elf_Ehdr *hdr = elf->hdr;
667 Elf_Addr beforediff = ~0;
668 Elf_Addr afterdiff = ~0;
669 const char *secstrings = (void *)hdr +
670 elf->sechdrs[hdr->e_shstrndx].sh_offset;
Sam Ravnborg62070fa2006-03-03 16:46:04 +0100671
Sam Ravnborgb39927c2006-02-17 22:42:02 +0100672 *before = NULL;
673 *after = NULL;
674
675 for (sym = elf->symtab_start; sym < elf->symtab_stop; sym++) {
676 const char *symsec;
677
678 if (sym->st_shndx >= SHN_LORESERVE)
679 continue;
680 symsec = secstrings + elf->sechdrs[sym->st_shndx].sh_name;
681 if (strcmp(symsec, sec) != 0)
682 continue;
683 if (sym->st_value <= addr) {
684 if ((addr - sym->st_value) < beforediff) {
685 beforediff = addr - sym->st_value;
686 *before = sym;
687 }
Sam Ravnborg43c74d12006-03-05 12:02:46 +0100688 else if ((addr - sym->st_value) == beforediff) {
689 /* equal offset, valid name? */
690 const char *name = elf->strtab + sym->st_name;
691 if (name && strlen(name))
692 *before = sym;
693 }
Sam Ravnborgb39927c2006-02-17 22:42:02 +0100694 }
695 else
696 {
697 if ((sym->st_value - addr) < afterdiff) {
698 afterdiff = sym->st_value - addr;
699 *after = sym;
700 }
Sam Ravnborg43c74d12006-03-05 12:02:46 +0100701 else if ((sym->st_value - addr) == afterdiff) {
702 /* equal offset, valid name? */
703 const char *name = elf->strtab + sym->st_name;
704 if (name && strlen(name))
705 *after = sym;
706 }
Sam Ravnborgb39927c2006-02-17 22:42:02 +0100707 }
708 }
709}
710
711/**
712 * Print a warning about a section mismatch.
713 * Try to find symbols near it so user can find it.
Sam Ravnborg4c8fbca2006-02-26 22:18:11 +0100714 * Check whitelist before warning - it may be a false positive.
Sam Ravnborgb39927c2006-02-17 22:42:02 +0100715 **/
716static void warn_sec_mismatch(const char *modname, const char *fromsec,
717 struct elf_info *elf, Elf_Sym *sym, Elf_Rela r)
718{
Sam Ravnborg93684d32006-02-19 11:53:35 +0100719 const char *refsymname = "";
720 Elf_Sym *before, *after;
721 Elf_Sym *refsym;
Sam Ravnborgb39927c2006-02-17 22:42:02 +0100722 Elf_Ehdr *hdr = elf->hdr;
723 Elf_Shdr *sechdrs = elf->sechdrs;
724 const char *secstrings = (void *)hdr +
725 sechdrs[hdr->e_shstrndx].sh_offset;
726 const char *secname = secstrings + sechdrs[sym->st_shndx].sh_name;
Sam Ravnborg62070fa2006-03-03 16:46:04 +0100727
Sam Ravnborgb39927c2006-02-17 22:42:02 +0100728 find_symbols_between(elf, r.r_offset, fromsec, &before, &after);
729
Sam Ravnborg93684d32006-02-19 11:53:35 +0100730 refsym = find_elf_symbol(elf, r.r_addend, sym);
731 if (refsym && strlen(elf->strtab + refsym->st_name))
732 refsymname = elf->strtab + refsym->st_name;
Sam Ravnborg4c8fbca2006-02-26 22:18:11 +0100733
734 /* check whitelist - we may ignore it */
Sam Ravnborg62070fa2006-03-03 16:46:04 +0100735 if (before &&
Magnus Damm9e157a52006-08-08 17:32:11 +0900736 secref_whitelist(modname, secname, fromsec,
737 elf->strtab + before->st_name))
Sam Ravnborg4c8fbca2006-02-26 22:18:11 +0100738 return;
Sam Ravnborg62070fa2006-03-03 16:46:04 +0100739
Sam Ravnborgb39927c2006-02-17 22:42:02 +0100740 if (before && after) {
Sam Ravnborg93684d32006-02-19 11:53:35 +0100741 warn("%s - Section mismatch: reference to %s:%s from %s "
742 "between '%s' (at offset 0x%llx) and '%s'\n",
743 modname, secname, refsymname, fromsec,
Sam Ravnborgb39927c2006-02-17 22:42:02 +0100744 elf->strtab + before->st_name,
Sam Ravnborg93684d32006-02-19 11:53:35 +0100745 (long long)r.r_offset,
Sam Ravnborgb39927c2006-02-17 22:42:02 +0100746 elf->strtab + after->st_name);
747 } else if (before) {
Sam Ravnborg93684d32006-02-19 11:53:35 +0100748 warn("%s - Section mismatch: reference to %s:%s from %s "
749 "after '%s' (at offset 0x%llx)\n",
Sam Ravnborg62070fa2006-03-03 16:46:04 +0100750 modname, secname, refsymname, fromsec,
Sam Ravnborgb39927c2006-02-17 22:42:02 +0100751 elf->strtab + before->st_name,
Sam Ravnborg93684d32006-02-19 11:53:35 +0100752 (long long)r.r_offset);
Sam Ravnborgb39927c2006-02-17 22:42:02 +0100753 } else if (after) {
Sam Ravnborg93684d32006-02-19 11:53:35 +0100754 warn("%s - Section mismatch: reference to %s:%s from %s "
755 "before '%s' (at offset -0x%llx)\n",
Sam Ravnborg62070fa2006-03-03 16:46:04 +0100756 modname, secname, refsymname, fromsec,
Eric Sesterhenneaaae382006-04-11 00:54:16 +0200757 elf->strtab + after->st_name,
Sam Ravnborg93684d32006-02-19 11:53:35 +0100758 (long long)r.r_offset);
Sam Ravnborgb39927c2006-02-17 22:42:02 +0100759 } else {
Sam Ravnborg93684d32006-02-19 11:53:35 +0100760 warn("%s - Section mismatch: reference to %s:%s from %s "
761 "(offset 0x%llx)\n",
762 modname, secname, fromsec, refsymname,
763 (long long)r.r_offset);
Sam Ravnborgb39927c2006-02-17 22:42:02 +0100764 }
765}
766
767/**
768 * A module includes a number of sections that are discarded
769 * either when loaded or when used as built-in.
770 * For loaded modules all functions marked __init and all data
771 * marked __initdata will be discarded when the module has been intialized.
772 * Likewise for modules used built-in the sections marked __exit
773 * are discarded because __exit marked function are supposed to be called
774 * only when a moduel is unloaded which never happes for built-in modules.
775 * The check_sec_ref() function traverses all relocation records
776 * to find all references to a section that reference a section that will
777 * be discarded and warns about it.
778 **/
779static void check_sec_ref(struct module *mod, const char *modname,
780 struct elf_info *elf,
781 int section(const char*),
782 int section_ref_ok(const char *))
783{
784 int i;
785 Elf_Sym *sym;
786 Elf_Ehdr *hdr = elf->hdr;
787 Elf_Shdr *sechdrs = elf->sechdrs;
788 const char *secstrings = (void *)hdr +
789 sechdrs[hdr->e_shstrndx].sh_offset;
Sam Ravnborg62070fa2006-03-03 16:46:04 +0100790
Sam Ravnborgb39927c2006-02-17 22:42:02 +0100791 /* Walk through all sections */
792 for (i = 0; i < hdr->e_shnum; i++) {
Atsushi Nemoto2c1a51f2006-05-20 15:00:26 -0700793 const char *name = secstrings + sechdrs[i].sh_name;
794 const char *secname;
795 Elf_Rela r;
Atsushi Nemotoeae07ac2006-05-20 15:00:28 -0700796 unsigned int r_sym;
Sam Ravnborgb39927c2006-02-17 22:42:02 +0100797 /* We want to process only relocation sections and not .init */
Atsushi Nemoto2c1a51f2006-05-20 15:00:26 -0700798 if (sechdrs[i].sh_type == SHT_RELA) {
799 Elf_Rela *rela;
800 Elf_Rela *start = (void *)hdr + sechdrs[i].sh_offset;
801 Elf_Rela *stop = (void*)start + sechdrs[i].sh_size;
802 name += strlen(".rela");
803 if (section_ref_ok(name))
Sam Ravnborgb39927c2006-02-17 22:42:02 +0100804 continue;
805
Atsushi Nemoto2c1a51f2006-05-20 15:00:26 -0700806 for (rela = start; rela < stop; rela++) {
807 r.r_offset = TO_NATIVE(rela->r_offset);
Atsushi Nemotoeae07ac2006-05-20 15:00:28 -0700808#if KERNEL_ELFCLASS == ELFCLASS64
809 if (hdr->e_machine == EM_MIPS) {
810 r_sym = ELF64_MIPS_R_SYM(rela->r_info);
811 r_sym = TO_NATIVE(r_sym);
812 } else {
813 r.r_info = TO_NATIVE(rela->r_info);
814 r_sym = ELF_R_SYM(r.r_info);
815 }
816#else
817 r.r_info = TO_NATIVE(rela->r_info);
818 r_sym = ELF_R_SYM(r.r_info);
819#endif
Atsushi Nemoto2c1a51f2006-05-20 15:00:26 -0700820 r.r_addend = TO_NATIVE(rela->r_addend);
Atsushi Nemotoeae07ac2006-05-20 15:00:28 -0700821 sym = elf->symtab_start + r_sym;
Atsushi Nemoto2c1a51f2006-05-20 15:00:26 -0700822 /* Skip special sections */
823 if (sym->st_shndx >= SHN_LORESERVE)
824 continue;
825
826 secname = secstrings +
827 sechdrs[sym->st_shndx].sh_name;
828 if (section(secname))
829 warn_sec_mismatch(modname, name,
830 elf, sym, r);
831 }
832 } else if (sechdrs[i].sh_type == SHT_REL) {
833 Elf_Rel *rel;
834 Elf_Rel *start = (void *)hdr + sechdrs[i].sh_offset;
835 Elf_Rel *stop = (void*)start + sechdrs[i].sh_size;
836 name += strlen(".rel");
837 if (section_ref_ok(name))
838 continue;
839
840 for (rel = start; rel < stop; rel++) {
841 r.r_offset = TO_NATIVE(rel->r_offset);
Atsushi Nemotoeae07ac2006-05-20 15:00:28 -0700842#if KERNEL_ELFCLASS == ELFCLASS64
843 if (hdr->e_machine == EM_MIPS) {
844 r_sym = ELF64_MIPS_R_SYM(rel->r_info);
845 r_sym = TO_NATIVE(r_sym);
846 } else {
847 r.r_info = TO_NATIVE(rel->r_info);
848 r_sym = ELF_R_SYM(r.r_info);
849 }
850#else
851 r.r_info = TO_NATIVE(rel->r_info);
852 r_sym = ELF_R_SYM(r.r_info);
853#endif
Atsushi Nemoto2c1a51f2006-05-20 15:00:26 -0700854 r.r_addend = 0;
Atsushi Nemotoeae07ac2006-05-20 15:00:28 -0700855 sym = elf->symtab_start + r_sym;
Atsushi Nemoto2c1a51f2006-05-20 15:00:26 -0700856 /* Skip special sections */
857 if (sym->st_shndx >= SHN_LORESERVE)
858 continue;
859
860 secname = secstrings +
861 sechdrs[sym->st_shndx].sh_name;
862 if (section(secname))
863 warn_sec_mismatch(modname, name,
864 elf, sym, r);
865 }
Sam Ravnborgb39927c2006-02-17 22:42:02 +0100866 }
867 }
868}
869
870/**
871 * Functions used only during module init is marked __init and is stored in
872 * a .init.text section. Likewise data is marked __initdata and stored in
873 * a .init.data section.
874 * If this section is one of these sections return 1
875 * See include/linux/init.h for the details
876 **/
877static int init_section(const char *name)
878{
879 if (strcmp(name, ".init") == 0)
880 return 1;
881 if (strncmp(name, ".init.", strlen(".init.")) == 0)
882 return 1;
883 return 0;
884}
885
886/**
887 * Identify sections from which references to a .init section is OK.
Sam Ravnborg62070fa2006-03-03 16:46:04 +0100888 *
Sam Ravnborgb39927c2006-02-17 22:42:02 +0100889 * Unfortunately references to read only data that referenced .init
890 * sections had to be excluded. Almost all of these are false
891 * positives, they are created by gcc. The downside of excluding rodata
892 * is that there really are some user references from rodata to
893 * init code, e.g. drivers/video/vgacon.c:
Sam Ravnborg62070fa2006-03-03 16:46:04 +0100894 *
Sam Ravnborgb39927c2006-02-17 22:42:02 +0100895 * const struct consw vga_con = {
896 * con_startup: vgacon_startup,
897 *
898 * where vgacon_startup is __init. If you want to wade through the false
899 * positives, take out the check for rodata.
900 **/
901static int init_section_ref_ok(const char *name)
902{
903 const char **s;
904 /* Absolute section names */
905 const char *namelist1[] = {
906 ".init",
Sam Ravnborg9209aed2006-03-05 00:16:26 +0100907 ".opd", /* see comment [OPD] at exit_section_ref_ok() */
908 ".toc1", /* used by ppc64 */
Sam Ravnborgb39927c2006-02-17 22:42:02 +0100909 ".stab",
910 ".rodata",
911 ".text.lock",
Sam Ravnborg9209aed2006-03-05 00:16:26 +0100912 "__bug_table", /* used by powerpc for BUG() */
Sam Ravnborgb39927c2006-02-17 22:42:02 +0100913 ".pci_fixup_header",
914 ".pci_fixup_final",
915 ".pdr",
916 "__param",
Al Viro468d9492006-06-23 23:22:43 +0100917 "__ex_table",
918 ".fixup",
Randy Dunlap35899c52006-06-07 16:23:26 -0700919 ".smp_locks",
Sam Ravnborg909252d2006-06-08 20:37:30 +0200920 ".plt", /* seen on ARCH=um build on x86_64. Harmless */
Sam Ravnborgb39927c2006-02-17 22:42:02 +0100921 NULL
922 };
923 /* Start of section names */
924 const char *namelist2[] = {
925 ".init.",
926 ".altinstructions",
927 ".eh_frame",
928 ".debug",
929 NULL
930 };
Sam Ravnborg6e101332006-02-22 21:24:50 +0100931 /* part of section name */
932 const char *namelist3 [] = {
933 ".unwind", /* sample: IA_64.unwind.init.text */
934 NULL
935 };
936
Sam Ravnborgb39927c2006-02-17 22:42:02 +0100937 for (s = namelist1; *s; s++)
938 if (strcmp(*s, name) == 0)
939 return 1;
Sam Ravnborg62070fa2006-03-03 16:46:04 +0100940 for (s = namelist2; *s; s++)
Sam Ravnborgb39927c2006-02-17 22:42:02 +0100941 if (strncmp(*s, name, strlen(*s)) == 0)
942 return 1;
Sam Ravnborg62070fa2006-03-03 16:46:04 +0100943 for (s = namelist3; *s; s++)
Sam Ravnborge835a392006-03-05 11:34:15 +0100944 if (strstr(name, *s) != NULL)
Sam Ravnborg6e101332006-02-22 21:24:50 +0100945 return 1;
Al Viro468d9492006-06-23 23:22:43 +0100946 if (strrcmp(name, ".init") == 0)
947 return 1;
Sam Ravnborgb39927c2006-02-17 22:42:02 +0100948 return 0;
949}
950
951/*
952 * Functions used only during module exit is marked __exit and is stored in
953 * a .exit.text section. Likewise data is marked __exitdata and stored in
954 * a .exit.data section.
955 * If this section is one of these sections return 1
956 * See include/linux/init.h for the details
957 **/
958static int exit_section(const char *name)
959{
960 if (strcmp(name, ".exit.text") == 0)
961 return 1;
962 if (strcmp(name, ".exit.data") == 0)
963 return 1;
964 return 0;
Sam Ravnborg62070fa2006-03-03 16:46:04 +0100965
Sam Ravnborgb39927c2006-02-17 22:42:02 +0100966}
967
968/*
969 * Identify sections from which references to a .exit section is OK.
Sam Ravnborg62070fa2006-03-03 16:46:04 +0100970 *
Sam Ravnborgb39927c2006-02-17 22:42:02 +0100971 * [OPD] Keith Ownes <kaos@sgi.com> commented:
972 * For our future {in}sanity, add a comment that this is the ppc .opd
973 * section, not the ia64 .opd section.
974 * ia64 .opd should not point to discarded sections.
Sam Ravnborg5ecdd0f2006-04-14 23:54:13 +0200975 * [.rodata] like for .init.text we ignore .rodata references -same reason
Sam Ravnborgb39927c2006-02-17 22:42:02 +0100976 **/
977static int exit_section_ref_ok(const char *name)
978{
979 const char **s;
980 /* Absolute section names */
981 const char *namelist1[] = {
982 ".exit.text",
983 ".exit.data",
984 ".init.text",
Sam Ravnborg5ecdd0f2006-04-14 23:54:13 +0200985 ".rodata",
Sam Ravnborgb39927c2006-02-17 22:42:02 +0100986 ".opd", /* See comment [OPD] */
Sam Ravnborg9209aed2006-03-05 00:16:26 +0100987 ".toc1", /* used by ppc64 */
Sam Ravnborgb39927c2006-02-17 22:42:02 +0100988 ".altinstructions",
989 ".pdr",
Sam Ravnborg9209aed2006-03-05 00:16:26 +0100990 "__bug_table", /* used by powerpc for BUG() */
Sam Ravnborgb39927c2006-02-17 22:42:02 +0100991 ".exitcall.exit",
992 ".eh_frame",
993 ".stab",
Al Viro468d9492006-06-23 23:22:43 +0100994 "__ex_table",
995 ".fixup",
Randy Dunlap35899c52006-06-07 16:23:26 -0700996 ".smp_locks",
Sam Ravnborg909252d2006-06-08 20:37:30 +0200997 ".plt", /* seen on ARCH=um build on x86_64. Harmless */
Sam Ravnborgb39927c2006-02-17 22:42:02 +0100998 NULL
999 };
1000 /* Start of section names */
1001 const char *namelist2[] = {
1002 ".debug",
1003 NULL
1004 };
Sam Ravnborg6e101332006-02-22 21:24:50 +01001005 /* part of section name */
1006 const char *namelist3 [] = {
1007 ".unwind", /* Sample: IA_64.unwind.exit.text */
1008 NULL
1009 };
Sam Ravnborg62070fa2006-03-03 16:46:04 +01001010
Sam Ravnborgb39927c2006-02-17 22:42:02 +01001011 for (s = namelist1; *s; s++)
1012 if (strcmp(*s, name) == 0)
1013 return 1;
Sam Ravnborg62070fa2006-03-03 16:46:04 +01001014 for (s = namelist2; *s; s++)
Sam Ravnborgb39927c2006-02-17 22:42:02 +01001015 if (strncmp(*s, name, strlen(*s)) == 0)
1016 return 1;
Sam Ravnborg62070fa2006-03-03 16:46:04 +01001017 for (s = namelist3; *s; s++)
Sam Ravnborge835a392006-03-05 11:34:15 +01001018 if (strstr(name, *s) != NULL)
Sam Ravnborg6e101332006-02-22 21:24:50 +01001019 return 1;
Sam Ravnborgb39927c2006-02-17 22:42:02 +01001020 return 0;
1021}
1022
Sam Ravnborg5c3ead82006-01-28 17:19:35 +01001023static void read_symbols(char *modname)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001024{
1025 const char *symname;
1026 char *version;
Sam Ravnborgb817f6f2006-06-09 21:53:55 +02001027 char *license;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001028 struct module *mod;
1029 struct elf_info info = { };
1030 Elf_Sym *sym;
1031
1032 parse_elf(&info, modname);
1033
1034 mod = new_module(modname);
1035
1036 /* When there's no vmlinux, don't print warnings about
1037 * unresolved symbols (since there'll be too many ;) */
1038 if (is_vmlinux(modname)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001039 have_vmlinux = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001040 mod->skip = 1;
1041 }
1042
Sam Ravnborgb817f6f2006-06-09 21:53:55 +02001043 license = get_modinfo(info.modinfo, info.modinfo_len, "license");
1044 while (license) {
1045 if (license_is_gpl_compatible(license))
1046 mod->gpl_compatible = 1;
1047 else {
1048 mod->gpl_compatible = 0;
1049 break;
1050 }
1051 license = get_next_modinfo(info.modinfo, info.modinfo_len,
1052 "license", license);
1053 }
1054
Linus Torvalds1da177e2005-04-16 15:20:36 -07001055 for (sym = info.symtab_start; sym < info.symtab_stop; sym++) {
1056 symname = info.strtab + sym->st_name;
1057
1058 handle_modversions(mod, &info, sym, symname);
1059 handle_moddevtable(mod, &info, sym, symname);
1060 }
Sam Ravnborgb39927c2006-02-17 22:42:02 +01001061 check_sec_ref(mod, modname, &info, init_section, init_section_ref_ok);
1062 check_sec_ref(mod, modname, &info, exit_section, exit_section_ref_ok);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001063
1064 version = get_modinfo(info.modinfo, info.modinfo_len, "version");
1065 if (version)
1066 maybe_frob_rcs_version(modname, version, info.modinfo,
1067 version - (char *)info.hdr);
1068 if (version || (all_versions && !is_vmlinux(modname)))
1069 get_src_version(modname, mod->srcversion,
1070 sizeof(mod->srcversion)-1);
1071
1072 parse_elf_finish(&info);
1073
1074 /* Our trick to get versioning for struct_module - it's
1075 * never passed as an argument to an exported function, so
1076 * the automatic versioning doesn't pick it up, but it's really
1077 * important anyhow */
1078 if (modversions)
1079 mod->unres = alloc_symbol("struct_module", 0, mod->unres);
1080}
1081
1082#define SZ 500
1083
1084/* We first write the generated file into memory using the
1085 * following helper, then compare to the file on disk and
1086 * only update the later if anything changed */
1087
Sam Ravnborg5c3ead82006-01-28 17:19:35 +01001088void __attribute__((format(printf, 2, 3))) buf_printf(struct buffer *buf,
1089 const char *fmt, ...)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001090{
1091 char tmp[SZ];
1092 int len;
1093 va_list ap;
Sam Ravnborg62070fa2006-03-03 16:46:04 +01001094
Linus Torvalds1da177e2005-04-16 15:20:36 -07001095 va_start(ap, fmt);
1096 len = vsnprintf(tmp, SZ, fmt, ap);
Sam Ravnborg7670f022006-03-16 23:04:08 -08001097 buf_write(buf, tmp, len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001098 va_end(ap);
1099}
1100
Sam Ravnborg5c3ead82006-01-28 17:19:35 +01001101void buf_write(struct buffer *buf, const char *s, int len)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001102{
1103 if (buf->size - buf->pos < len) {
Sam Ravnborg7670f022006-03-16 23:04:08 -08001104 buf->size += len + SZ;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001105 buf->p = realloc(buf->p, buf->size);
1106 }
1107 strncpy(buf->p + buf->pos, s, len);
1108 buf->pos += len;
1109}
1110
Sam Ravnborgc96fca22006-07-01 11:44:23 +02001111static void check_for_gpl_usage(enum export exp, const char *m, const char *s)
1112{
1113 const char *e = is_vmlinux(m) ?"":".ko";
1114
1115 switch (exp) {
1116 case export_gpl:
1117 fatal("modpost: GPL-incompatible module %s%s "
1118 "uses GPL-only symbol '%s'\n", m, e, s);
1119 break;
1120 case export_unused_gpl:
1121 fatal("modpost: GPL-incompatible module %s%s "
1122 "uses GPL-only symbol marked UNUSED '%s'\n", m, e, s);
1123 break;
1124 case export_gpl_future:
1125 warn("modpost: GPL-incompatible module %s%s "
1126 "uses future GPL-only symbol '%s'\n", m, e, s);
1127 break;
1128 case export_plain:
1129 case export_unused:
1130 case export_unknown:
1131 /* ignore */
1132 break;
1133 }
1134}
1135
1136static void check_for_unused(enum export exp, const char* m, const char* s)
1137{
1138 const char *e = is_vmlinux(m) ?"":".ko";
1139
1140 switch (exp) {
1141 case export_unused:
1142 case export_unused_gpl:
1143 warn("modpost: module %s%s "
1144 "uses symbol '%s' marked UNUSED\n", m, e, s);
1145 break;
1146 default:
1147 /* ignore */
1148 break;
1149 }
1150}
1151
1152static void check_exports(struct module *mod)
Sam Ravnborgb817f6f2006-06-09 21:53:55 +02001153{
1154 struct symbol *s, *exp;
1155
1156 for (s = mod->unres; s; s = s->next) {
Andrew Morton6449bd62006-06-09 20:45:06 -07001157 const char *basename;
Sam Ravnborgb817f6f2006-06-09 21:53:55 +02001158 exp = find_symbol(s->name);
1159 if (!exp || exp->module == mod)
1160 continue;
Andrew Morton6449bd62006-06-09 20:45:06 -07001161 basename = strrchr(mod->name, '/');
Sam Ravnborgb817f6f2006-06-09 21:53:55 +02001162 if (basename)
1163 basename++;
Sam Ravnborgc96fca22006-07-01 11:44:23 +02001164 else
1165 basename = mod->name;
1166 if (!mod->gpl_compatible)
1167 check_for_gpl_usage(exp->export, basename, exp->name);
1168 check_for_unused(exp->export, basename, exp->name);
Sam Ravnborgb817f6f2006-06-09 21:53:55 +02001169 }
1170}
1171
Sam Ravnborg5c3ead82006-01-28 17:19:35 +01001172/**
1173 * Header for the generated file
1174 **/
1175static void add_header(struct buffer *b, struct module *mod)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001176{
1177 buf_printf(b, "#include <linux/module.h>\n");
1178 buf_printf(b, "#include <linux/vermagic.h>\n");
1179 buf_printf(b, "#include <linux/compiler.h>\n");
1180 buf_printf(b, "\n");
1181 buf_printf(b, "MODULE_INFO(vermagic, VERMAGIC_STRING);\n");
1182 buf_printf(b, "\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001183 buf_printf(b, "struct module __this_module\n");
1184 buf_printf(b, "__attribute__((section(\".gnu.linkonce.this_module\"))) = {\n");
Ustyugov Romanf83b5e32005-09-23 08:42:11 +04001185 buf_printf(b, " .name = KBUILD_MODNAME,\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001186 if (mod->has_init)
1187 buf_printf(b, " .init = init_module,\n");
1188 if (mod->has_cleanup)
1189 buf_printf(b, "#ifdef CONFIG_MODULE_UNLOAD\n"
1190 " .exit = cleanup_module,\n"
1191 "#endif\n");
1192 buf_printf(b, "};\n");
1193}
1194
Sam Ravnborg5c3ead82006-01-28 17:19:35 +01001195/**
1196 * Record CRCs for unresolved symbols
1197 **/
1198static void add_versions(struct buffer *b, struct module *mod)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001199{
1200 struct symbol *s, *exp;
1201
1202 for (s = mod->unres; s; s = s->next) {
1203 exp = find_symbol(s->name);
1204 if (!exp || exp->module == mod) {
1205 if (have_vmlinux && !s->weak)
Sam Ravnborgcb805142006-01-28 16:57:26 +01001206 warn("\"%s\" [%s.ko] undefined!\n",
1207 s->name, mod->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001208 continue;
1209 }
1210 s->module = exp->module;
1211 s->crc_valid = exp->crc_valid;
1212 s->crc = exp->crc;
1213 }
1214
1215 if (!modversions)
1216 return;
1217
1218 buf_printf(b, "\n");
1219 buf_printf(b, "static const struct modversion_info ____versions[]\n");
1220 buf_printf(b, "__attribute_used__\n");
1221 buf_printf(b, "__attribute__((section(\"__versions\"))) = {\n");
1222
1223 for (s = mod->unres; s; s = s->next) {
1224 if (!s->module) {
1225 continue;
1226 }
1227 if (!s->crc_valid) {
Sam Ravnborgcb805142006-01-28 16:57:26 +01001228 warn("\"%s\" [%s.ko] has no CRC!\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07001229 s->name, mod->name);
1230 continue;
1231 }
1232 buf_printf(b, "\t{ %#8x, \"%s\" },\n", s->crc, s->name);
1233 }
1234
1235 buf_printf(b, "};\n");
1236}
1237
Sam Ravnborg5c3ead82006-01-28 17:19:35 +01001238static void add_depends(struct buffer *b, struct module *mod,
1239 struct module *modules)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001240{
1241 struct symbol *s;
1242 struct module *m;
1243 int first = 1;
1244
1245 for (m = modules; m; m = m->next) {
1246 m->seen = is_vmlinux(m->name);
1247 }
1248
1249 buf_printf(b, "\n");
1250 buf_printf(b, "static const char __module_depends[]\n");
1251 buf_printf(b, "__attribute_used__\n");
1252 buf_printf(b, "__attribute__((section(\".modinfo\"))) =\n");
1253 buf_printf(b, "\"depends=");
1254 for (s = mod->unres; s; s = s->next) {
1255 if (!s->module)
1256 continue;
1257
1258 if (s->module->seen)
1259 continue;
1260
1261 s->module->seen = 1;
1262 buf_printf(b, "%s%s", first ? "" : ",",
1263 strrchr(s->module->name, '/') + 1);
1264 first = 0;
1265 }
1266 buf_printf(b, "\";\n");
1267}
1268
Sam Ravnborg5c3ead82006-01-28 17:19:35 +01001269static void add_srcversion(struct buffer *b, struct module *mod)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001270{
1271 if (mod->srcversion[0]) {
1272 buf_printf(b, "\n");
1273 buf_printf(b, "MODULE_INFO(srcversion, \"%s\");\n",
1274 mod->srcversion);
1275 }
1276}
1277
Sam Ravnborg5c3ead82006-01-28 17:19:35 +01001278static void write_if_changed(struct buffer *b, const char *fname)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001279{
1280 char *tmp;
1281 FILE *file;
1282 struct stat st;
1283
1284 file = fopen(fname, "r");
1285 if (!file)
1286 goto write;
1287
1288 if (fstat(fileno(file), &st) < 0)
1289 goto close_write;
1290
1291 if (st.st_size != b->pos)
1292 goto close_write;
1293
1294 tmp = NOFAIL(malloc(b->pos));
1295 if (fread(tmp, 1, b->pos, file) != b->pos)
1296 goto free_write;
1297
1298 if (memcmp(tmp, b->p, b->pos) != 0)
1299 goto free_write;
1300
1301 free(tmp);
1302 fclose(file);
1303 return;
1304
1305 free_write:
1306 free(tmp);
1307 close_write:
1308 fclose(file);
1309 write:
1310 file = fopen(fname, "w");
1311 if (!file) {
1312 perror(fname);
1313 exit(1);
1314 }
1315 if (fwrite(b->p, 1, b->pos, file) != b->pos) {
1316 perror(fname);
1317 exit(1);
1318 }
1319 fclose(file);
1320}
1321
Ram Paibd5cbce2006-06-08 22:12:53 -07001322/* parse Module.symvers file. line format:
Sam Ravnborg534b89a2006-07-01 10:10:19 +02001323 * 0x12345678<tab>symbol<tab>module[[<tab>export]<tab>something]
Ram Paibd5cbce2006-06-08 22:12:53 -07001324 **/
Sam Ravnborg040fcc82006-01-28 22:15:55 +01001325static void read_dump(const char *fname, unsigned int kernel)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001326{
1327 unsigned long size, pos = 0;
1328 void *file = grab_file(fname, &size);
1329 char *line;
1330
1331 if (!file)
1332 /* No symbol versions, silently ignore */
1333 return;
1334
1335 while ((line = get_next_line(&pos, file, size))) {
Sam Ravnborg534b89a2006-07-01 10:10:19 +02001336 char *symname, *modname, *d, *export, *end;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001337 unsigned int crc;
1338 struct module *mod;
Sam Ravnborg040fcc82006-01-28 22:15:55 +01001339 struct symbol *s;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001340
1341 if (!(symname = strchr(line, '\t')))
1342 goto fail;
1343 *symname++ = '\0';
1344 if (!(modname = strchr(symname, '\t')))
1345 goto fail;
1346 *modname++ = '\0';
Laurent Riffard9ac545b2006-06-11 08:02:06 +02001347 if ((export = strchr(modname, '\t')) != NULL)
Ram Paibd5cbce2006-06-08 22:12:53 -07001348 *export++ = '\0';
Sam Ravnborg534b89a2006-07-01 10:10:19 +02001349 if (export && ((end = strchr(export, '\t')) != NULL))
1350 *end = '\0';
Linus Torvalds1da177e2005-04-16 15:20:36 -07001351 crc = strtoul(line, &d, 16);
1352 if (*symname == '\0' || *modname == '\0' || *d != '\0')
1353 goto fail;
1354
1355 if (!(mod = find_module(modname))) {
1356 if (is_vmlinux(modname)) {
1357 have_vmlinux = 1;
1358 }
1359 mod = new_module(NOFAIL(strdup(modname)));
1360 mod->skip = 1;
1361 }
Ram Paibd5cbce2006-06-08 22:12:53 -07001362 s = sym_add_exported(symname, mod, export_no(export));
Sam Ravnborg8e70c452006-01-28 22:22:33 +01001363 s->kernel = kernel;
1364 s->preloaded = 1;
Ram Paibd5cbce2006-06-08 22:12:53 -07001365 sym_update_crc(symname, mod, crc, export_no(export));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001366 }
1367 return;
1368fail:
1369 fatal("parse error in symbol dump file\n");
1370}
1371
Sam Ravnborg040fcc82006-01-28 22:15:55 +01001372/* For normal builds always dump all symbols.
1373 * For external modules only dump symbols
1374 * that are not read from kernel Module.symvers.
1375 **/
1376static int dump_sym(struct symbol *sym)
1377{
1378 if (!external_module)
1379 return 1;
1380 if (sym->vmlinux || sym->kernel)
1381 return 0;
1382 return 1;
1383}
Sam Ravnborg62070fa2006-03-03 16:46:04 +01001384
Sam Ravnborg5c3ead82006-01-28 17:19:35 +01001385static void write_dump(const char *fname)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001386{
1387 struct buffer buf = { };
1388 struct symbol *symbol;
1389 int n;
1390
1391 for (n = 0; n < SYMBOL_HASH_SIZE ; n++) {
1392 symbol = symbolhash[n];
1393 while (symbol) {
Sam Ravnborg040fcc82006-01-28 22:15:55 +01001394 if (dump_sym(symbol))
Ram Paibd5cbce2006-06-08 22:12:53 -07001395 buf_printf(&buf, "0x%08x\t%s\t%s\t%s\n",
Sam Ravnborg62070fa2006-03-03 16:46:04 +01001396 symbol->crc, symbol->name,
Ram Paibd5cbce2006-06-08 22:12:53 -07001397 symbol->module->name,
1398 export_str(symbol->export));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001399 symbol = symbol->next;
1400 }
1401 }
1402 write_if_changed(&buf, fname);
1403}
1404
Sam Ravnborg5c3ead82006-01-28 17:19:35 +01001405int main(int argc, char **argv)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001406{
1407 struct module *mod;
1408 struct buffer buf = { };
1409 char fname[SZ];
Sam Ravnborg040fcc82006-01-28 22:15:55 +01001410 char *kernel_read = NULL, *module_read = NULL;
1411 char *dump_write = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001412 int opt;
1413
Sam Ravnborg040fcc82006-01-28 22:15:55 +01001414 while ((opt = getopt(argc, argv, "i:I:mo:a")) != -1) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001415 switch(opt) {
1416 case 'i':
Sam Ravnborg040fcc82006-01-28 22:15:55 +01001417 kernel_read = optarg;
1418 break;
1419 case 'I':
1420 module_read = optarg;
1421 external_module = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001422 break;
1423 case 'm':
1424 modversions = 1;
1425 break;
1426 case 'o':
1427 dump_write = optarg;
1428 break;
1429 case 'a':
1430 all_versions = 1;
1431 break;
1432 default:
1433 exit(1);
1434 }
1435 }
1436
Sam Ravnborg040fcc82006-01-28 22:15:55 +01001437 if (kernel_read)
1438 read_dump(kernel_read, 1);
1439 if (module_read)
1440 read_dump(module_read, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001441
1442 while (optind < argc) {
1443 read_symbols(argv[optind++]);
1444 }
1445
1446 for (mod = modules; mod; mod = mod->next) {
1447 if (mod->skip)
1448 continue;
Sam Ravnborgc96fca22006-07-01 11:44:23 +02001449 check_exports(mod);
Sam Ravnborgb817f6f2006-06-09 21:53:55 +02001450 }
1451
1452 for (mod = modules; mod; mod = mod->next) {
1453 if (mod->skip)
1454 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001455
1456 buf.pos = 0;
1457
1458 add_header(&buf, mod);
1459 add_versions(&buf, mod);
1460 add_depends(&buf, mod, modules);
1461 add_moddevtable(&buf, mod);
1462 add_srcversion(&buf, mod);
1463
1464 sprintf(fname, "%s.mod.c", mod->name);
1465 write_if_changed(&buf, fname);
1466 }
1467
1468 if (dump_write)
1469 write_dump(dump_write);
1470
1471 return 0;
1472}