blob: 256b3d272e2ea75ff33168b6b5c9658c42a363b1 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/* Postprocess module symbol versions
2 *
3 * Copyright 2003 Kai Germaschewski
4 * Copyright 2002-2004 Rusty Russell, IBM Corporation
Sam Ravnborg382168f2006-02-26 20:11:17 +01005 * Copyright 2006 Sam Ravnborg
Linus Torvalds1da177e2005-04-16 15:20:36 -07006 * Based in part on module-init-tools/depmod.c,file2alias
7 *
8 * This software may be used and distributed according to the terms
9 * of the GNU General Public License, incorporated herein by reference.
10 *
11 * Usage: modpost vmlinux module1.o module2.o ...
12 */
13
14#include <ctype.h>
15#include "modpost.h"
Sam Ravnborgb817f6f2006-06-09 21:53:55 +020016#include "../../include/linux/license.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070017
18/* Are we using CONFIG_MODVERSIONS? */
19int modversions = 0;
20/* Warn about undefined symbols? (do so if we have vmlinux) */
21int have_vmlinux = 0;
22/* Is CONFIG_MODULE_SRCVERSION_ALL set? */
23static int all_versions = 0;
Sam Ravnborg040fcc82006-01-28 22:15:55 +010024/* If we are modposting external module set to 1 */
25static int external_module = 0;
Kirill Korotaevc53ddac2006-09-07 13:08:54 -070026/* Only warn about unresolved symbols */
27static int warn_unresolved = 0;
Ram Paibd5cbce2006-06-08 22:12:53 -070028/* How a symbol is exported */
Sam Ravnborgc96fca22006-07-01 11:44:23 +020029enum export {
30 export_plain, export_unused, export_gpl,
31 export_unused_gpl, export_gpl_future, export_unknown
32};
Linus Torvalds1da177e2005-04-16 15:20:36 -070033
Sam Ravnborg5c3ead82006-01-28 17:19:35 +010034void fatal(const char *fmt, ...)
Linus Torvalds1da177e2005-04-16 15:20:36 -070035{
36 va_list arglist;
37
38 fprintf(stderr, "FATAL: ");
39
40 va_start(arglist, fmt);
41 vfprintf(stderr, fmt, arglist);
42 va_end(arglist);
43
44 exit(1);
45}
46
Sam Ravnborg5c3ead82006-01-28 17:19:35 +010047void warn(const char *fmt, ...)
Linus Torvalds1da177e2005-04-16 15:20:36 -070048{
49 va_list arglist;
50
51 fprintf(stderr, "WARNING: ");
52
53 va_start(arglist, fmt);
54 vfprintf(stderr, fmt, arglist);
55 va_end(arglist);
56}
57
Matthew Wilcox2a116652006-10-07 05:35:32 -060058void merror(const char *fmt, ...)
59{
60 va_list arglist;
61
62 fprintf(stderr, "ERROR: ");
63
64 va_start(arglist, fmt);
65 vfprintf(stderr, fmt, arglist);
66 va_end(arglist);
67}
68
Sam Ravnborg040fcc82006-01-28 22:15:55 +010069static int is_vmlinux(const char *modname)
70{
71 const char *myname;
72
73 if ((myname = strrchr(modname, '/')))
74 myname++;
75 else
76 myname = modname;
77
78 return strcmp(myname, "vmlinux") == 0;
79}
80
Linus Torvalds1da177e2005-04-16 15:20:36 -070081void *do_nofail(void *ptr, const char *expr)
82{
83 if (!ptr) {
84 fatal("modpost: Memory allocation failure: %s.\n", expr);
85 }
86 return ptr;
87}
88
89/* A list of all modules we processed */
90
91static struct module *modules;
92
Sam Ravnborg5c3ead82006-01-28 17:19:35 +010093static struct module *find_module(char *modname)
Linus Torvalds1da177e2005-04-16 15:20:36 -070094{
95 struct module *mod;
96
97 for (mod = modules; mod; mod = mod->next)
98 if (strcmp(mod->name, modname) == 0)
99 break;
100 return mod;
101}
102
Sam Ravnborg5c3ead82006-01-28 17:19:35 +0100103static struct module *new_module(char *modname)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700104{
105 struct module *mod;
106 char *p, *s;
Sam Ravnborg62070fa2006-03-03 16:46:04 +0100107
Linus Torvalds1da177e2005-04-16 15:20:36 -0700108 mod = NOFAIL(malloc(sizeof(*mod)));
109 memset(mod, 0, sizeof(*mod));
110 p = NOFAIL(strdup(modname));
111
112 /* strip trailing .o */
113 if ((s = strrchr(p, '.')) != NULL)
114 if (strcmp(s, ".o") == 0)
115 *s = '\0';
116
117 /* add to list */
118 mod->name = p;
Sam Ravnborgb817f6f2006-06-09 21:53:55 +0200119 mod->gpl_compatible = -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700120 mod->next = modules;
121 modules = mod;
122
123 return mod;
124}
125
126/* A hash of all exported symbols,
127 * struct symbol is also used for lists of unresolved symbols */
128
129#define SYMBOL_HASH_SIZE 1024
130
131struct symbol {
132 struct symbol *next;
133 struct module *module;
134 unsigned int crc;
135 int crc_valid;
136 unsigned int weak:1;
Sam Ravnborg040fcc82006-01-28 22:15:55 +0100137 unsigned int vmlinux:1; /* 1 if symbol is defined in vmlinux */
138 unsigned int kernel:1; /* 1 if symbol is from kernel
139 * (only for external modules) **/
Sam Ravnborg8e70c452006-01-28 22:22:33 +0100140 unsigned int preloaded:1; /* 1 if symbol from Module.symvers */
Ram Paibd5cbce2006-06-08 22:12:53 -0700141 enum export export; /* Type of export */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700142 char name[0];
143};
144
145static struct symbol *symbolhash[SYMBOL_HASH_SIZE];
146
147/* This is based on the hash agorithm from gdbm, via tdb */
148static inline unsigned int tdb_hash(const char *name)
149{
150 unsigned value; /* Used to compute the hash value. */
151 unsigned i; /* Used to cycle through random values. */
152
153 /* Set the initial value from the key size. */
154 for (value = 0x238F13AF * strlen(name), i=0; name[i]; i++)
155 value = (value + (((unsigned char *)name)[i] << (i*5 % 24)));
156
157 return (1103515243 * value + 12345);
158}
159
Sam Ravnborg5c3ead82006-01-28 17:19:35 +0100160/**
161 * Allocate a new symbols for use in the hash of exported symbols or
162 * the list of unresolved symbols per module
163 **/
164static struct symbol *alloc_symbol(const char *name, unsigned int weak,
165 struct symbol *next)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700166{
167 struct symbol *s = NOFAIL(malloc(sizeof(*s) + strlen(name) + 1));
168
169 memset(s, 0, sizeof(*s));
170 strcpy(s->name, name);
171 s->weak = weak;
172 s->next = next;
173 return s;
174}
175
176/* For the hash of exported symbols */
Ram Paibd5cbce2006-06-08 22:12:53 -0700177static struct symbol *new_symbol(const char *name, struct module *module,
178 enum export export)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700179{
180 unsigned int hash;
181 struct symbol *new;
182
183 hash = tdb_hash(name) % SYMBOL_HASH_SIZE;
184 new = symbolhash[hash] = alloc_symbol(name, 0, symbolhash[hash]);
185 new->module = module;
Ram Paibd5cbce2006-06-08 22:12:53 -0700186 new->export = export;
Sam Ravnborg040fcc82006-01-28 22:15:55 +0100187 return new;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700188}
189
Sam Ravnborg5c3ead82006-01-28 17:19:35 +0100190static struct symbol *find_symbol(const char *name)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700191{
192 struct symbol *s;
193
194 /* For our purposes, .foo matches foo. PPC64 needs this. */
195 if (name[0] == '.')
196 name++;
197
198 for (s = symbolhash[tdb_hash(name) % SYMBOL_HASH_SIZE]; s; s=s->next) {
199 if (strcmp(s->name, name) == 0)
200 return s;
201 }
202 return NULL;
203}
204
Ram Paibd5cbce2006-06-08 22:12:53 -0700205static struct {
206 const char *str;
207 enum export export;
208} export_list[] = {
209 { .str = "EXPORT_SYMBOL", .export = export_plain },
Sam Ravnborgc96fca22006-07-01 11:44:23 +0200210 { .str = "EXPORT_UNUSED_SYMBOL", .export = export_unused },
Ram Paibd5cbce2006-06-08 22:12:53 -0700211 { .str = "EXPORT_SYMBOL_GPL", .export = export_gpl },
Sam Ravnborgc96fca22006-07-01 11:44:23 +0200212 { .str = "EXPORT_UNUSED_SYMBOL_GPL", .export = export_unused_gpl },
Ram Paibd5cbce2006-06-08 22:12:53 -0700213 { .str = "EXPORT_SYMBOL_GPL_FUTURE", .export = export_gpl_future },
214 { .str = "(unknown)", .export = export_unknown },
215};
216
217
218static const char *export_str(enum export ex)
219{
220 return export_list[ex].str;
221}
222
223static enum export export_no(const char * s)
224{
225 int i;
Sam Ravnborg534b89a2006-07-01 10:10:19 +0200226 if (!s)
227 return export_unknown;
Ram Paibd5cbce2006-06-08 22:12:53 -0700228 for (i = 0; export_list[i].export != export_unknown; i++) {
229 if (strcmp(export_list[i].str, s) == 0)
230 return export_list[i].export;
231 }
232 return export_unknown;
233}
234
235static enum export export_from_sec(struct elf_info *elf, Elf_Section sec)
236{
237 if (sec == elf->export_sec)
238 return export_plain;
Sam Ravnborgc96fca22006-07-01 11:44:23 +0200239 else if (sec == elf->export_unused_sec)
240 return export_unused;
Ram Paibd5cbce2006-06-08 22:12:53 -0700241 else if (sec == elf->export_gpl_sec)
242 return export_gpl;
Sam Ravnborgc96fca22006-07-01 11:44:23 +0200243 else if (sec == elf->export_unused_gpl_sec)
244 return export_unused_gpl;
Ram Paibd5cbce2006-06-08 22:12:53 -0700245 else if (sec == elf->export_gpl_future_sec)
246 return export_gpl_future;
247 else
248 return export_unknown;
249}
250
Sam Ravnborg5c3ead82006-01-28 17:19:35 +0100251/**
252 * Add an exported symbol - it may have already been added without a
253 * CRC, in this case just update the CRC
254 **/
Ram Paibd5cbce2006-06-08 22:12:53 -0700255static struct symbol *sym_add_exported(const char *name, struct module *mod,
256 enum export export)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700257{
258 struct symbol *s = find_symbol(name);
259
260 if (!s) {
Ram Paibd5cbce2006-06-08 22:12:53 -0700261 s = new_symbol(name, mod, export);
Sam Ravnborg8e70c452006-01-28 22:22:33 +0100262 } else {
263 if (!s->preloaded) {
Sam Ravnborg7b75b132006-03-05 13:48:58 +0100264 warn("%s: '%s' exported twice. Previous export "
Sam Ravnborg8e70c452006-01-28 22:22:33 +0100265 "was in %s%s\n", mod->name, name,
266 s->module->name,
267 is_vmlinux(s->module->name) ?"":".ko");
268 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700269 }
Sam Ravnborg8e70c452006-01-28 22:22:33 +0100270 s->preloaded = 0;
Sam Ravnborg040fcc82006-01-28 22:15:55 +0100271 s->vmlinux = is_vmlinux(mod->name);
272 s->kernel = 0;
Ram Paibd5cbce2006-06-08 22:12:53 -0700273 s->export = export;
Sam Ravnborg040fcc82006-01-28 22:15:55 +0100274 return s;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700275}
276
Sam Ravnborg040fcc82006-01-28 22:15:55 +0100277static void sym_update_crc(const char *name, struct module *mod,
Ram Paibd5cbce2006-06-08 22:12:53 -0700278 unsigned int crc, enum export export)
Sam Ravnborg040fcc82006-01-28 22:15:55 +0100279{
280 struct symbol *s = find_symbol(name);
281
282 if (!s)
Ram Paibd5cbce2006-06-08 22:12:53 -0700283 s = new_symbol(name, mod, export);
Sam Ravnborg040fcc82006-01-28 22:15:55 +0100284 s->crc = crc;
285 s->crc_valid = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700286}
287
Sam Ravnborg5c3ead82006-01-28 17:19:35 +0100288void *grab_file(const char *filename, unsigned long *size)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700289{
290 struct stat st;
291 void *map;
292 int fd;
293
294 fd = open(filename, O_RDONLY);
295 if (fd < 0 || fstat(fd, &st) != 0)
296 return NULL;
297
298 *size = st.st_size;
299 map = mmap(NULL, *size, PROT_READ|PROT_WRITE, MAP_PRIVATE, fd, 0);
300 close(fd);
301
302 if (map == MAP_FAILED)
303 return NULL;
304 return map;
305}
306
Sam Ravnborg5c3ead82006-01-28 17:19:35 +0100307/**
308 * Return a copy of the next line in a mmap'ed file.
309 * spaces in the beginning of the line is trimmed away.
310 * Return a pointer to a static buffer.
311 **/
312char* get_next_line(unsigned long *pos, void *file, unsigned long size)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700313{
314 static char line[4096];
315 int skip = 1;
316 size_t len = 0;
317 signed char *p = (signed char *)file + *pos;
318 char *s = line;
319
320 for (; *pos < size ; (*pos)++)
321 {
322 if (skip && isspace(*p)) {
323 p++;
324 continue;
325 }
326 skip = 0;
327 if (*p != '\n' && (*pos < size)) {
328 len++;
329 *s++ = *p++;
330 if (len > 4095)
331 break; /* Too long, stop */
332 } else {
333 /* End of string */
334 *s = '\0';
335 return line;
336 }
337 }
338 /* End of buffer */
339 return NULL;
340}
341
Sam Ravnborg5c3ead82006-01-28 17:19:35 +0100342void release_file(void *file, unsigned long size)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700343{
344 munmap(file, size);
345}
346
Sam Ravnborg85bd2fd2007-02-26 15:33:52 +0100347static int parse_elf(struct elf_info *info, const char *filename)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700348{
349 unsigned int i;
Sam Ravnborg85bd2fd2007-02-26 15:33:52 +0100350 Elf_Ehdr *hdr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700351 Elf_Shdr *sechdrs;
352 Elf_Sym *sym;
353
354 hdr = grab_file(filename, &info->size);
355 if (!hdr) {
356 perror(filename);
Sam Ravnborg6803dc02006-06-24 23:46:54 +0200357 exit(1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700358 }
359 info->hdr = hdr;
Sam Ravnborg85bd2fd2007-02-26 15:33:52 +0100360 if (info->size < sizeof(*hdr)) {
361 /* file too small, assume this is an empty .o file */
362 return 0;
363 }
364 /* Is this a valid ELF file? */
365 if ((hdr->e_ident[EI_MAG0] != ELFMAG0) ||
366 (hdr->e_ident[EI_MAG1] != ELFMAG1) ||
367 (hdr->e_ident[EI_MAG2] != ELFMAG2) ||
368 (hdr->e_ident[EI_MAG3] != ELFMAG3)) {
369 /* Not an ELF file - silently ignore it */
370 return 0;
371 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700372 /* Fix endianness in ELF header */
373 hdr->e_shoff = TO_NATIVE(hdr->e_shoff);
374 hdr->e_shstrndx = TO_NATIVE(hdr->e_shstrndx);
375 hdr->e_shnum = TO_NATIVE(hdr->e_shnum);
376 hdr->e_machine = TO_NATIVE(hdr->e_machine);
Atsushi Nemotoae4ac122007-05-22 18:27:39 +0900377 hdr->e_type = TO_NATIVE(hdr->e_type);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700378 sechdrs = (void *)hdr + hdr->e_shoff;
379 info->sechdrs = sechdrs;
380
381 /* Fix endianness in section headers */
382 for (i = 0; i < hdr->e_shnum; i++) {
383 sechdrs[i].sh_type = TO_NATIVE(sechdrs[i].sh_type);
384 sechdrs[i].sh_offset = TO_NATIVE(sechdrs[i].sh_offset);
385 sechdrs[i].sh_size = TO_NATIVE(sechdrs[i].sh_size);
386 sechdrs[i].sh_link = TO_NATIVE(sechdrs[i].sh_link);
387 sechdrs[i].sh_name = TO_NATIVE(sechdrs[i].sh_name);
Atsushi Nemotoae4ac122007-05-22 18:27:39 +0900388 sechdrs[i].sh_info = TO_NATIVE(sechdrs[i].sh_info);
389 sechdrs[i].sh_addr = TO_NATIVE(sechdrs[i].sh_addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700390 }
391 /* Find symbol table. */
392 for (i = 1; i < hdr->e_shnum; i++) {
393 const char *secstrings
394 = (void *)hdr + sechdrs[hdr->e_shstrndx].sh_offset;
Ram Paibd5cbce2006-06-08 22:12:53 -0700395 const char *secname;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700396
Sam Ravnborg85bd2fd2007-02-26 15:33:52 +0100397 if (sechdrs[i].sh_offset > info->size) {
398 fatal("%s is truncated. sechdrs[i].sh_offset=%u > sizeof(*hrd)=%ul\n", filename, (unsigned int)sechdrs[i].sh_offset, sizeof(*hdr));
399 return 0;
400 }
Ram Paibd5cbce2006-06-08 22:12:53 -0700401 secname = secstrings + sechdrs[i].sh_name;
402 if (strcmp(secname, ".modinfo") == 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700403 info->modinfo = (void *)hdr + sechdrs[i].sh_offset;
404 info->modinfo_len = sechdrs[i].sh_size;
Ram Paibd5cbce2006-06-08 22:12:53 -0700405 } else if (strcmp(secname, "__ksymtab") == 0)
406 info->export_sec = i;
Sam Ravnborgc96fca22006-07-01 11:44:23 +0200407 else if (strcmp(secname, "__ksymtab_unused") == 0)
408 info->export_unused_sec = i;
Ram Paibd5cbce2006-06-08 22:12:53 -0700409 else if (strcmp(secname, "__ksymtab_gpl") == 0)
410 info->export_gpl_sec = i;
Sam Ravnborgc96fca22006-07-01 11:44:23 +0200411 else if (strcmp(secname, "__ksymtab_unused_gpl") == 0)
412 info->export_unused_gpl_sec = i;
Ram Paibd5cbce2006-06-08 22:12:53 -0700413 else if (strcmp(secname, "__ksymtab_gpl_future") == 0)
414 info->export_gpl_future_sec = i;
415
Linus Torvalds1da177e2005-04-16 15:20:36 -0700416 if (sechdrs[i].sh_type != SHT_SYMTAB)
417 continue;
418
419 info->symtab_start = (void *)hdr + sechdrs[i].sh_offset;
Sam Ravnborg62070fa2006-03-03 16:46:04 +0100420 info->symtab_stop = (void *)hdr + sechdrs[i].sh_offset
Linus Torvalds1da177e2005-04-16 15:20:36 -0700421 + sechdrs[i].sh_size;
Sam Ravnborg62070fa2006-03-03 16:46:04 +0100422 info->strtab = (void *)hdr +
Linus Torvalds1da177e2005-04-16 15:20:36 -0700423 sechdrs[sechdrs[i].sh_link].sh_offset;
424 }
425 if (!info->symtab_start) {
Sam Ravnborgcb805142006-01-28 16:57:26 +0100426 fatal("%s has no symtab?\n", filename);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700427 }
428 /* Fix endianness in symbols */
429 for (sym = info->symtab_start; sym < info->symtab_stop; sym++) {
430 sym->st_shndx = TO_NATIVE(sym->st_shndx);
431 sym->st_name = TO_NATIVE(sym->st_name);
432 sym->st_value = TO_NATIVE(sym->st_value);
433 sym->st_size = TO_NATIVE(sym->st_size);
434 }
Sam Ravnborg85bd2fd2007-02-26 15:33:52 +0100435 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700436}
437
Sam Ravnborg5c3ead82006-01-28 17:19:35 +0100438static void parse_elf_finish(struct elf_info *info)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700439{
440 release_file(info->hdr, info->size);
441}
442
Luke Yangf7b05e62006-03-02 18:35:31 +0800443#define CRC_PFX MODULE_SYMBOL_PREFIX "__crc_"
444#define KSYMTAB_PFX MODULE_SYMBOL_PREFIX "__ksymtab_"
Linus Torvalds1da177e2005-04-16 15:20:36 -0700445
Sam Ravnborg5c3ead82006-01-28 17:19:35 +0100446static void handle_modversions(struct module *mod, struct elf_info *info,
447 Elf_Sym *sym, const char *symname)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700448{
449 unsigned int crc;
Ram Paibd5cbce2006-06-08 22:12:53 -0700450 enum export export = export_from_sec(info, sym->st_shndx);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700451
452 switch (sym->st_shndx) {
453 case SHN_COMMON:
Sam Ravnborgcb805142006-01-28 16:57:26 +0100454 warn("\"%s\" [%s] is COMMON symbol\n", symname, mod->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700455 break;
456 case SHN_ABS:
457 /* CRC'd symbol */
458 if (memcmp(symname, CRC_PFX, strlen(CRC_PFX)) == 0) {
459 crc = (unsigned int) sym->st_value;
Ram Paibd5cbce2006-06-08 22:12:53 -0700460 sym_update_crc(symname + strlen(CRC_PFX), mod, crc,
461 export);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700462 }
463 break;
464 case SHN_UNDEF:
465 /* undefined symbol */
466 if (ELF_ST_BIND(sym->st_info) != STB_GLOBAL &&
467 ELF_ST_BIND(sym->st_info) != STB_WEAK)
468 break;
469 /* ignore global offset table */
470 if (strcmp(symname, "_GLOBAL_OFFSET_TABLE_") == 0)
471 break;
472 /* ignore __this_module, it will be resolved shortly */
473 if (strcmp(symname, MODULE_SYMBOL_PREFIX "__this_module") == 0)
474 break;
Ben Colline8d529012005-08-19 13:44:57 -0700475/* cope with newer glibc (2.3.4 or higher) STT_ definition in elf.h */
476#if defined(STT_REGISTER) || defined(STT_SPARC_REGISTER)
477/* add compatibility with older glibc */
478#ifndef STT_SPARC_REGISTER
479#define STT_SPARC_REGISTER STT_REGISTER
480#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700481 if (info->hdr->e_machine == EM_SPARC ||
482 info->hdr->e_machine == EM_SPARCV9) {
483 /* Ignore register directives. */
Ben Colline8d529012005-08-19 13:44:57 -0700484 if (ELF_ST_TYPE(sym->st_info) == STT_SPARC_REGISTER)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700485 break;
Sam Ravnborg62070fa2006-03-03 16:46:04 +0100486 if (symname[0] == '.') {
487 char *munged = strdup(symname);
488 munged[0] = '_';
489 munged[1] = toupper(munged[1]);
490 symname = munged;
491 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700492 }
493#endif
Sam Ravnborg62070fa2006-03-03 16:46:04 +0100494
Linus Torvalds1da177e2005-04-16 15:20:36 -0700495 if (memcmp(symname, MODULE_SYMBOL_PREFIX,
496 strlen(MODULE_SYMBOL_PREFIX)) == 0)
497 mod->unres = alloc_symbol(symname +
498 strlen(MODULE_SYMBOL_PREFIX),
499 ELF_ST_BIND(sym->st_info) == STB_WEAK,
500 mod->unres);
501 break;
502 default:
503 /* All exported symbols */
504 if (memcmp(symname, KSYMTAB_PFX, strlen(KSYMTAB_PFX)) == 0) {
Ram Paibd5cbce2006-06-08 22:12:53 -0700505 sym_add_exported(symname + strlen(KSYMTAB_PFX), mod,
506 export);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700507 }
508 if (strcmp(symname, MODULE_SYMBOL_PREFIX "init_module") == 0)
509 mod->has_init = 1;
510 if (strcmp(symname, MODULE_SYMBOL_PREFIX "cleanup_module") == 0)
511 mod->has_cleanup = 1;
512 break;
513 }
514}
515
Sam Ravnborg5c3ead82006-01-28 17:19:35 +0100516/**
517 * Parse tag=value strings from .modinfo section
518 **/
Linus Torvalds1da177e2005-04-16 15:20:36 -0700519static char *next_string(char *string, unsigned long *secsize)
520{
521 /* Skip non-zero chars */
522 while (string[0]) {
523 string++;
524 if ((*secsize)-- <= 1)
525 return NULL;
526 }
527
528 /* Skip any zero padding. */
529 while (!string[0]) {
530 string++;
531 if ((*secsize)-- <= 1)
532 return NULL;
533 }
534 return string;
535}
536
Sam Ravnborgb817f6f2006-06-09 21:53:55 +0200537static char *get_next_modinfo(void *modinfo, unsigned long modinfo_len,
538 const char *tag, char *info)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700539{
540 char *p;
541 unsigned int taglen = strlen(tag);
542 unsigned long size = modinfo_len;
543
Sam Ravnborgb817f6f2006-06-09 21:53:55 +0200544 if (info) {
545 size -= info - (char *)modinfo;
546 modinfo = next_string(info, &size);
547 }
548
Linus Torvalds1da177e2005-04-16 15:20:36 -0700549 for (p = modinfo; p; p = next_string(p, &size)) {
550 if (strncmp(p, tag, taglen) == 0 && p[taglen] == '=')
551 return p + taglen + 1;
552 }
553 return NULL;
554}
555
Sam Ravnborgb817f6f2006-06-09 21:53:55 +0200556static char *get_modinfo(void *modinfo, unsigned long modinfo_len,
557 const char *tag)
558
559{
560 return get_next_modinfo(modinfo, modinfo_len, tag, NULL);
561}
562
Sam Ravnborg93684d32006-02-19 11:53:35 +0100563/**
Sam Ravnborg4c8fbca2006-02-26 22:18:11 +0100564 * Test if string s ends in string sub
565 * return 0 if match
566 **/
567static int strrcmp(const char *s, const char *sub)
568{
569 int slen, sublen;
Sam Ravnborg62070fa2006-03-03 16:46:04 +0100570
Sam Ravnborg4c8fbca2006-02-26 22:18:11 +0100571 if (!s || !sub)
572 return 1;
Sam Ravnborg62070fa2006-03-03 16:46:04 +0100573
Sam Ravnborg4c8fbca2006-02-26 22:18:11 +0100574 slen = strlen(s);
575 sublen = strlen(sub);
Sam Ravnborg62070fa2006-03-03 16:46:04 +0100576
Sam Ravnborg4c8fbca2006-02-26 22:18:11 +0100577 if ((slen == 0) || (sublen == 0))
578 return 1;
579
580 if (sublen > slen)
581 return 1;
582
583 return memcmp(s + slen - sublen, sub, sublen);
584}
585
586/**
587 * Whitelist to allow certain references to pass with no warning.
Sam Ravnborg0e0d3142007-05-17 20:14:48 +0200588 *
589 * Pattern 0:
590 * Do not warn if funtion/data are marked with __init_refok/__initdata_refok.
591 * The pattern is identified by:
592 * fromsec = .text.init.refok | .data.init.refok
593 *
Sam Ravnborg4c8fbca2006-02-26 22:18:11 +0100594 * Pattern 1:
595 * If a module parameter is declared __initdata and permissions=0
596 * then this is legal despite the warning generated.
597 * We cannot see value of permissions here, so just ignore
598 * this pattern.
599 * The pattern is identified by:
600 * tosec = .init.data
Sam Ravnborg9209aed2006-03-05 00:16:26 +0100601 * fromsec = .data*
Sam Ravnborg4c8fbca2006-02-26 22:18:11 +0100602 * atsym =__param*
Sam Ravnborg62070fa2006-03-03 16:46:04 +0100603 *
Sam Ravnborg4c8fbca2006-02-26 22:18:11 +0100604 * Pattern 2:
Randy Dunlap72ee59b2006-04-15 11:17:12 -0700605 * Many drivers utilise a *driver container with references to
Sam Ravnborg4c8fbca2006-02-26 22:18:11 +0100606 * add, remove, probe functions etc.
607 * These functions may often be marked __init and we do not want to
608 * warn here.
609 * the pattern is identified by:
Sam Ravnborg5ecdd0f2006-04-14 23:54:13 +0200610 * tosec = .init.text | .exit.text | .init.data
Sam Ravnborg4c8fbca2006-02-26 22:18:11 +0100611 * fromsec = .data
Sam Ravnborgaae5f662007-02-26 16:45:41 +0100612 * atsym = *driver, *_template, *_sht, *_ops, *_probe, *probe_one, *_console
Vivek Goyalee6a8542007-01-11 01:52:44 +0100613 *
614 * Pattern 3:
Sam Ravnborg9bf8cb92007-02-26 17:49:06 +0100615 * Whitelist all references from .pci_fixup* section to .init.text
616 * This is part of the PCI init when built-in
617 *
618 * Pattern 4:
619 * Whitelist all refereces from .text.head to .init.data
620 * Whitelist all refereces from .text.head to .init.text
621 *
622 * Pattern 5:
Vivek Goyalee6a8542007-01-11 01:52:44 +0100623 * Some symbols belong to init section but still it is ok to reference
624 * these from non-init sections as these symbols don't have any memory
625 * allocated for them and symbol address and value are same. So even
626 * if init section is freed, its ok to reference those symbols.
627 * For ex. symbols marking the init section boundaries.
628 * This pattern is identified by
629 * refsymname = __init_begin, _sinittext, _einittext
Sam Ravnborg9bf8cb92007-02-26 17:49:06 +0100630 *
Sam Ravnborg5a4910f2007-02-27 09:14:58 +0100631 * Pattern 7:
632 * Logos used in drivers/video/logo reside in __initdata but the
633 * funtion that references them are EXPORT_SYMBOL() so cannot be
634 * marker __init. So we whitelist them here.
635 * The pattern is:
636 * tosec = .init.data
637 * fromsec = .text*
638 * refsymname = logo_
Sam Ravnborgb4d51712007-04-29 20:53:01 +0200639 *
640 * Pattern 8:
641 * Symbols contained in .paravirtprobe may safely reference .init.text.
642 * The pattern is:
643 * tosec = .init.text
644 * fromsec = .paravirtprobe
645 *
Yasunori Goto72280ed2007-05-08 00:23:10 -0700646 * Pattern 10:
Li Yangcd547792007-05-14 18:04:28 +0800647 * ia64 has machvec table for each platform and
648 * powerpc has a machine desc table for each platform.
649 * It is mixture of function pointers of .init.text and .text.
650 * fromsec = .machvec | .machine.desc
Sam Ravnborg4c8fbca2006-02-26 22:18:11 +0100651 **/
Magnus Damm9e157a52006-08-08 17:32:11 +0900652static int secref_whitelist(const char *modname, const char *tosec,
Vivek Goyalee6a8542007-01-11 01:52:44 +0100653 const char *fromsec, const char *atsym,
654 const char *refsymname)
Sam Ravnborg4c8fbca2006-02-26 22:18:11 +0100655{
656 int f1 = 1, f2 = 1;
657 const char **s;
658 const char *pat2sym[] = {
Randy Dunlap72ee59b2006-04-15 11:17:12 -0700659 "driver",
Sam Ravnborg5ecdd0f2006-04-14 23:54:13 +0200660 "_template", /* scsi uses *_template a lot */
661 "_sht", /* scsi also used *_sht to some extent */
Sam Ravnborg4c8fbca2006-02-26 22:18:11 +0100662 "_ops",
663 "_probe",
664 "_probe_one",
Vivek Goyal118c0ac2007-01-11 01:52:44 +0100665 "_console",
Vivek Goyal1833d6b2007-05-02 19:27:08 +0200666 "apic_es7000",
Sam Ravnborg4c8fbca2006-02-26 22:18:11 +0100667 NULL
668 };
Sam Ravnborg62070fa2006-03-03 16:46:04 +0100669
Vivek Goyalee6a8542007-01-11 01:52:44 +0100670 const char *pat3refsym[] = {
671 "__init_begin",
672 "_sinittext",
673 "_einittext",
674 NULL
675 };
676
Sam Ravnborg0e0d3142007-05-17 20:14:48 +0200677 /* Check for pattern 0 */
678 if ((strcmp(fromsec, ".text.init.refok") == 0) ||
679 (strcmp(fromsec, ".data.init.refok") == 0))
680 return 1;
681
Sam Ravnborg4c8fbca2006-02-26 22:18:11 +0100682 /* Check for pattern 1 */
683 if (strcmp(tosec, ".init.data") != 0)
684 f1 = 0;
Sam Ravnborg9209aed2006-03-05 00:16:26 +0100685 if (strncmp(fromsec, ".data", strlen(".data")) != 0)
Sam Ravnborg4c8fbca2006-02-26 22:18:11 +0100686 f1 = 0;
687 if (strncmp(atsym, "__param", strlen("__param")) != 0)
688 f1 = 0;
689
690 if (f1)
691 return f1;
692
693 /* Check for pattern 2 */
Sam Ravnborg62070fa2006-03-03 16:46:04 +0100694 if ((strcmp(tosec, ".init.text") != 0) &&
Sam Ravnborg5ecdd0f2006-04-14 23:54:13 +0200695 (strcmp(tosec, ".exit.text") != 0) &&
696 (strcmp(tosec, ".init.data") != 0))
Sam Ravnborg4c8fbca2006-02-26 22:18:11 +0100697 f2 = 0;
698 if (strcmp(fromsec, ".data") != 0)
699 f2 = 0;
700
701 for (s = pat2sym; *s; s++)
702 if (strrcmp(atsym, *s) == 0)
703 f1 = 1;
Magnus Damm9e157a52006-08-08 17:32:11 +0900704 if (f1 && f2)
705 return 1;
Sam Ravnborg4c8fbca2006-02-26 22:18:11 +0100706
Sam Ravnborg9bf8cb92007-02-26 17:49:06 +0100707 /* Check for pattern 3 */
708 if ((strncmp(fromsec, ".pci_fixup", strlen(".pci_fixup")) == 0) &&
709 (strcmp(tosec, ".init.text") == 0))
710 return 1;
Vivek Goyalee6a8542007-01-11 01:52:44 +0100711
Sam Ravnborgaae5f662007-02-26 16:45:41 +0100712 /* Check for pattern 4 */
Sam Ravnborg9bf8cb92007-02-26 17:49:06 +0100713 if ((strcmp(fromsec, ".text.head") == 0) &&
714 ((strcmp(tosec, ".init.data") == 0) ||
715 (strcmp(tosec, ".init.text") == 0)))
716 return 1;
717
718 /* Check for pattern 5 */
719 for (s = pat3refsym; *s; s++)
720 if (strcmp(refsymname, *s) == 0)
721 return 1;
722
Sam Ravnborg5a4910f2007-02-27 09:14:58 +0100723 /* Check for pattern 7 */
724 if ((strcmp(tosec, ".init.data") == 0) &&
725 (strncmp(fromsec, ".text", strlen(".text")) == 0) &&
726 (strncmp(refsymname, "logo_", strlen("logo_")) == 0))
Vivek Goyalf8657e12007-02-13 13:26:22 +0100727 return 1;
728
Sam Ravnborgb4d51712007-04-29 20:53:01 +0200729 /* Check for pattern 8 */
730 if ((strcmp(tosec, ".init.text") == 0) &&
731 (strcmp(fromsec, ".paravirtprobe") == 0))
732 return 1;
733
Yasunori Goto72280ed2007-05-08 00:23:10 -0700734 /* Check for pattern 10 */
Li Yangcd547792007-05-14 18:04:28 +0800735 if ((strcmp(fromsec, ".machvec") == 0) ||
736 (strcmp(fromsec, ".machine.desc") == 0))
Yasunori Goto72280ed2007-05-08 00:23:10 -0700737 return 1;
738
Sam Ravnborg93659af2006-08-09 08:23:55 +0200739 return 0;
Sam Ravnborg4c8fbca2006-02-26 22:18:11 +0100740}
741
742/**
Sam Ravnborg93684d32006-02-19 11:53:35 +0100743 * Find symbol based on relocation record info.
744 * In some cases the symbol supplied is a valid symbol so
745 * return refsym. If st_name != 0 we assume this is a valid symbol.
746 * In other cases the symbol needs to be looked up in the symbol table
747 * based on section and address.
748 * **/
749static Elf_Sym *find_elf_symbol(struct elf_info *elf, Elf_Addr addr,
750 Elf_Sym *relsym)
751{
752 Elf_Sym *sym;
753
754 if (relsym->st_name != 0)
755 return relsym;
756 for (sym = elf->symtab_start; sym < elf->symtab_stop; sym++) {
757 if (sym->st_shndx != relsym->st_shndx)
758 continue;
Atsushi Nemotoae4ac122007-05-22 18:27:39 +0900759 if (ELF_ST_TYPE(sym->st_info) == STT_SECTION)
760 continue;
Sam Ravnborg93684d32006-02-19 11:53:35 +0100761 if (sym->st_value == addr)
762 return sym;
763 }
764 return NULL;
765}
766
David Brownellda68d612007-02-20 13:58:16 -0800767static inline int is_arm_mapping_symbol(const char *str)
768{
769 return str[0] == '$' && strchr("atd", str[1])
770 && (str[2] == '\0' || str[2] == '.');
771}
772
773/*
774 * If there's no name there, ignore it; likewise, ignore it if it's
775 * one of the magic symbols emitted used by current ARM tools.
776 *
777 * Otherwise if find_symbols_between() returns those symbols, they'll
778 * fail the whitelist tests and cause lots of false alarms ... fixable
779 * only by merging __exit and __init sections into __text, bloating
780 * the kernel (which is especially evil on embedded platforms).
781 */
782static inline int is_valid_name(struct elf_info *elf, Elf_Sym *sym)
783{
784 const char *name = elf->strtab + sym->st_name;
785
786 if (!name || !strlen(name))
787 return 0;
788 return !is_arm_mapping_symbol(name);
789}
790
Sam Ravnborgb39927c2006-02-17 22:42:02 +0100791/*
Sam Ravnborg43c74d12006-03-05 12:02:46 +0100792 * Find symbols before or equal addr and after addr - in the section sec.
793 * If we find two symbols with equal offset prefer one with a valid name.
794 * The ELF format may have a better way to detect what type of symbol
795 * it is, but this works for now.
Sam Ravnborgb39927c2006-02-17 22:42:02 +0100796 **/
797static void find_symbols_between(struct elf_info *elf, Elf_Addr addr,
798 const char *sec,
799 Elf_Sym **before, Elf_Sym **after)
800{
801 Elf_Sym *sym;
802 Elf_Ehdr *hdr = elf->hdr;
803 Elf_Addr beforediff = ~0;
804 Elf_Addr afterdiff = ~0;
805 const char *secstrings = (void *)hdr +
806 elf->sechdrs[hdr->e_shstrndx].sh_offset;
Sam Ravnborg62070fa2006-03-03 16:46:04 +0100807
Sam Ravnborgb39927c2006-02-17 22:42:02 +0100808 *before = NULL;
809 *after = NULL;
810
811 for (sym = elf->symtab_start; sym < elf->symtab_stop; sym++) {
812 const char *symsec;
813
814 if (sym->st_shndx >= SHN_LORESERVE)
815 continue;
816 symsec = secstrings + elf->sechdrs[sym->st_shndx].sh_name;
817 if (strcmp(symsec, sec) != 0)
818 continue;
David Brownellda68d612007-02-20 13:58:16 -0800819 if (!is_valid_name(elf, sym))
820 continue;
Sam Ravnborgb39927c2006-02-17 22:42:02 +0100821 if (sym->st_value <= addr) {
822 if ((addr - sym->st_value) < beforediff) {
823 beforediff = addr - sym->st_value;
824 *before = sym;
825 }
Sam Ravnborg43c74d12006-03-05 12:02:46 +0100826 else if ((addr - sym->st_value) == beforediff) {
David Brownellda68d612007-02-20 13:58:16 -0800827 *before = sym;
Sam Ravnborg43c74d12006-03-05 12:02:46 +0100828 }
Sam Ravnborgb39927c2006-02-17 22:42:02 +0100829 }
830 else
831 {
832 if ((sym->st_value - addr) < afterdiff) {
833 afterdiff = sym->st_value - addr;
834 *after = sym;
835 }
Sam Ravnborg43c74d12006-03-05 12:02:46 +0100836 else if ((sym->st_value - addr) == afterdiff) {
David Brownellda68d612007-02-20 13:58:16 -0800837 *after = sym;
Sam Ravnborg43c74d12006-03-05 12:02:46 +0100838 }
Sam Ravnborgb39927c2006-02-17 22:42:02 +0100839 }
840 }
841}
842
843/**
844 * Print a warning about a section mismatch.
845 * Try to find symbols near it so user can find it.
Sam Ravnborg4c8fbca2006-02-26 22:18:11 +0100846 * Check whitelist before warning - it may be a false positive.
Sam Ravnborgb39927c2006-02-17 22:42:02 +0100847 **/
848static void warn_sec_mismatch(const char *modname, const char *fromsec,
849 struct elf_info *elf, Elf_Sym *sym, Elf_Rela r)
850{
Sam Ravnborg93684d32006-02-19 11:53:35 +0100851 const char *refsymname = "";
852 Elf_Sym *before, *after;
853 Elf_Sym *refsym;
Sam Ravnborgb39927c2006-02-17 22:42:02 +0100854 Elf_Ehdr *hdr = elf->hdr;
855 Elf_Shdr *sechdrs = elf->sechdrs;
856 const char *secstrings = (void *)hdr +
857 sechdrs[hdr->e_shstrndx].sh_offset;
858 const char *secname = secstrings + sechdrs[sym->st_shndx].sh_name;
Sam Ravnborg62070fa2006-03-03 16:46:04 +0100859
Sam Ravnborgb39927c2006-02-17 22:42:02 +0100860 find_symbols_between(elf, r.r_offset, fromsec, &before, &after);
861
Sam Ravnborg93684d32006-02-19 11:53:35 +0100862 refsym = find_elf_symbol(elf, r.r_addend, sym);
863 if (refsym && strlen(elf->strtab + refsym->st_name))
864 refsymname = elf->strtab + refsym->st_name;
Sam Ravnborg4c8fbca2006-02-26 22:18:11 +0100865
866 /* check whitelist - we may ignore it */
Sam Ravnborg62070fa2006-03-03 16:46:04 +0100867 if (before &&
Magnus Damm9e157a52006-08-08 17:32:11 +0900868 secref_whitelist(modname, secname, fromsec,
Vivek Goyalee6a8542007-01-11 01:52:44 +0100869 elf->strtab + before->st_name, refsymname))
Sam Ravnborg4c8fbca2006-02-26 22:18:11 +0100870 return;
Sam Ravnborg62070fa2006-03-03 16:46:04 +0100871
Li Yangcd547792007-05-14 18:04:28 +0800872 /* fromsec whitelist - without a valid 'before'
873 * powerpc has a GOT table in .got2 section */
874 if (strcmp(fromsec, ".got2") == 0)
875 return;
876
Sam Ravnborgb39927c2006-02-17 22:42:02 +0100877 if (before && after) {
Russell King256012092007-05-10 23:03:25 +0100878 warn("%s(%s+0x%llx): Section mismatch: reference to %s:%s "
879 "(between '%s' and '%s')\n",
880 modname, fromsec, (unsigned long long)r.r_offset,
881 secname, refsymname,
Sam Ravnborgb39927c2006-02-17 22:42:02 +0100882 elf->strtab + before->st_name,
Sam Ravnborgb39927c2006-02-17 22:42:02 +0100883 elf->strtab + after->st_name);
884 } else if (before) {
Russell King256012092007-05-10 23:03:25 +0100885 warn("%s(%s+0x%llx): Section mismatch: reference to %s:%s "
886 "(after '%s')\n",
887 modname, fromsec, (unsigned long long)r.r_offset,
888 secname, refsymname,
889 elf->strtab + before->st_name);
Sam Ravnborgb39927c2006-02-17 22:42:02 +0100890 } else if (after) {
Russell King256012092007-05-10 23:03:25 +0100891 warn("%s(%s+0x%llx): Section mismatch: reference to %s:%s "
Sam Ravnborg93684d32006-02-19 11:53:35 +0100892 "before '%s' (at offset -0x%llx)\n",
Russell King256012092007-05-10 23:03:25 +0100893 modname, fromsec, (unsigned long long)r.r_offset,
894 secname, refsymname,
895 elf->strtab + after->st_name);
Sam Ravnborgb39927c2006-02-17 22:42:02 +0100896 } else {
Russell King256012092007-05-10 23:03:25 +0100897 warn("%s(%s+0x%llx): Section mismatch: reference to %s:%s\n",
898 modname, fromsec, (unsigned long long)r.r_offset,
899 secname, refsymname);
Sam Ravnborgb39927c2006-02-17 22:42:02 +0100900 }
901}
902
Atsushi Nemotoae4ac122007-05-22 18:27:39 +0900903static unsigned int *reloc_location(struct elf_info *elf,
904 int rsection, Elf_Rela *r)
905{
906 Elf_Shdr *sechdrs = elf->sechdrs;
907 int section = sechdrs[rsection].sh_info;
908
909 return (void *)elf->hdr + sechdrs[section].sh_offset +
910 (r->r_offset - sechdrs[section].sh_addr);
911}
912
913static int addend_386_rel(struct elf_info *elf, int rsection, Elf_Rela *r)
914{
915 unsigned int r_typ = ELF_R_TYPE(r->r_info);
916 unsigned int *location = reloc_location(elf, rsection, r);
917
918 switch (r_typ) {
919 case R_386_32:
920 r->r_addend = TO_NATIVE(*location);
921 break;
922 case R_386_PC32:
923 r->r_addend = TO_NATIVE(*location) + 4;
924 /* For CONFIG_RELOCATABLE=y */
925 if (elf->hdr->e_type == ET_EXEC)
926 r->r_addend += r->r_offset;
927 break;
928 }
929 return 0;
930}
931
Sam Ravnborg56a974f2007-07-16 22:39:35 +0200932static int addend_arm_rel(struct elf_info *elf, int rsection, Elf_Rela *r)
933{
934 unsigned int r_typ = ELF_R_TYPE(r->r_info);
935
936 switch (r_typ) {
937 case R_ARM_ABS32:
938 /* From ARM ABI: (S + A) | T */
939 r->r_addend = (int)(long)(elf->symtab_start + ELF_R_SYM(r->r_info));
940 break;
941 case R_ARM_PC24:
942 /* From ARM ABI: ((S + A) | T) - P */
943 r->r_addend = (int)(long)(elf->hdr + elf->sechdrs[rsection].sh_offset +
944 (r->r_offset - elf->sechdrs[rsection].sh_addr));
945 break;
946 default:
947 return 1;
948 }
949 return 0;
950}
951
Atsushi Nemotoae4ac122007-05-22 18:27:39 +0900952static int addend_mips_rel(struct elf_info *elf, int rsection, Elf_Rela *r)
953{
954 unsigned int r_typ = ELF_R_TYPE(r->r_info);
955 unsigned int *location = reloc_location(elf, rsection, r);
956 unsigned int inst;
957
958 if (r_typ == R_MIPS_HI16)
959 return 1; /* skip this */
960 inst = TO_NATIVE(*location);
961 switch (r_typ) {
962 case R_MIPS_LO16:
963 r->r_addend = inst & 0xffff;
964 break;
965 case R_MIPS_26:
966 r->r_addend = (inst & 0x03ffffff) << 2;
967 break;
968 case R_MIPS_32:
969 r->r_addend = inst;
970 break;
971 }
972 return 0;
973}
974
Sam Ravnborgb39927c2006-02-17 22:42:02 +0100975/**
976 * A module includes a number of sections that are discarded
977 * either when loaded or when used as built-in.
978 * For loaded modules all functions marked __init and all data
979 * marked __initdata will be discarded when the module has been intialized.
980 * Likewise for modules used built-in the sections marked __exit
981 * are discarded because __exit marked function are supposed to be called
982 * only when a moduel is unloaded which never happes for built-in modules.
983 * The check_sec_ref() function traverses all relocation records
984 * to find all references to a section that reference a section that will
985 * be discarded and warns about it.
986 **/
987static void check_sec_ref(struct module *mod, const char *modname,
988 struct elf_info *elf,
989 int section(const char*),
990 int section_ref_ok(const char *))
991{
992 int i;
993 Elf_Sym *sym;
994 Elf_Ehdr *hdr = elf->hdr;
995 Elf_Shdr *sechdrs = elf->sechdrs;
996 const char *secstrings = (void *)hdr +
997 sechdrs[hdr->e_shstrndx].sh_offset;
Sam Ravnborg62070fa2006-03-03 16:46:04 +0100998
Sam Ravnborgb39927c2006-02-17 22:42:02 +0100999 /* Walk through all sections */
1000 for (i = 0; i < hdr->e_shnum; i++) {
Atsushi Nemoto2c1a51f2006-05-20 15:00:26 -07001001 const char *name = secstrings + sechdrs[i].sh_name;
1002 const char *secname;
1003 Elf_Rela r;
Atsushi Nemotoeae07ac2006-05-20 15:00:28 -07001004 unsigned int r_sym;
Sam Ravnborgb39927c2006-02-17 22:42:02 +01001005 /* We want to process only relocation sections and not .init */
Atsushi Nemoto2c1a51f2006-05-20 15:00:26 -07001006 if (sechdrs[i].sh_type == SHT_RELA) {
1007 Elf_Rela *rela;
1008 Elf_Rela *start = (void *)hdr + sechdrs[i].sh_offset;
1009 Elf_Rela *stop = (void*)start + sechdrs[i].sh_size;
1010 name += strlen(".rela");
1011 if (section_ref_ok(name))
Sam Ravnborgb39927c2006-02-17 22:42:02 +01001012 continue;
1013
Atsushi Nemoto2c1a51f2006-05-20 15:00:26 -07001014 for (rela = start; rela < stop; rela++) {
1015 r.r_offset = TO_NATIVE(rela->r_offset);
Atsushi Nemotoeae07ac2006-05-20 15:00:28 -07001016#if KERNEL_ELFCLASS == ELFCLASS64
1017 if (hdr->e_machine == EM_MIPS) {
Atsushi Nemotoae4ac122007-05-22 18:27:39 +09001018 unsigned int r_typ;
Atsushi Nemotoeae07ac2006-05-20 15:00:28 -07001019 r_sym = ELF64_MIPS_R_SYM(rela->r_info);
1020 r_sym = TO_NATIVE(r_sym);
Atsushi Nemotoae4ac122007-05-22 18:27:39 +09001021 r_typ = ELF64_MIPS_R_TYPE(rela->r_info);
1022 r.r_info = ELF64_R_INFO(r_sym, r_typ);
Atsushi Nemotoeae07ac2006-05-20 15:00:28 -07001023 } else {
1024 r.r_info = TO_NATIVE(rela->r_info);
1025 r_sym = ELF_R_SYM(r.r_info);
1026 }
1027#else
1028 r.r_info = TO_NATIVE(rela->r_info);
1029 r_sym = ELF_R_SYM(r.r_info);
1030#endif
Atsushi Nemoto2c1a51f2006-05-20 15:00:26 -07001031 r.r_addend = TO_NATIVE(rela->r_addend);
Atsushi Nemotoeae07ac2006-05-20 15:00:28 -07001032 sym = elf->symtab_start + r_sym;
Atsushi Nemoto2c1a51f2006-05-20 15:00:26 -07001033 /* Skip special sections */
1034 if (sym->st_shndx >= SHN_LORESERVE)
1035 continue;
1036
1037 secname = secstrings +
1038 sechdrs[sym->st_shndx].sh_name;
1039 if (section(secname))
1040 warn_sec_mismatch(modname, name,
1041 elf, sym, r);
1042 }
1043 } else if (sechdrs[i].sh_type == SHT_REL) {
1044 Elf_Rel *rel;
1045 Elf_Rel *start = (void *)hdr + sechdrs[i].sh_offset;
1046 Elf_Rel *stop = (void*)start + sechdrs[i].sh_size;
1047 name += strlen(".rel");
1048 if (section_ref_ok(name))
1049 continue;
1050
1051 for (rel = start; rel < stop; rel++) {
1052 r.r_offset = TO_NATIVE(rel->r_offset);
Atsushi Nemotoeae07ac2006-05-20 15:00:28 -07001053#if KERNEL_ELFCLASS == ELFCLASS64
1054 if (hdr->e_machine == EM_MIPS) {
Atsushi Nemotoae4ac122007-05-22 18:27:39 +09001055 unsigned int r_typ;
Atsushi Nemotoeae07ac2006-05-20 15:00:28 -07001056 r_sym = ELF64_MIPS_R_SYM(rel->r_info);
1057 r_sym = TO_NATIVE(r_sym);
Atsushi Nemotoae4ac122007-05-22 18:27:39 +09001058 r_typ = ELF64_MIPS_R_TYPE(rel->r_info);
1059 r.r_info = ELF64_R_INFO(r_sym, r_typ);
Atsushi Nemotoeae07ac2006-05-20 15:00:28 -07001060 } else {
1061 r.r_info = TO_NATIVE(rel->r_info);
1062 r_sym = ELF_R_SYM(r.r_info);
1063 }
1064#else
1065 r.r_info = TO_NATIVE(rel->r_info);
1066 r_sym = ELF_R_SYM(r.r_info);
1067#endif
Atsushi Nemoto2c1a51f2006-05-20 15:00:26 -07001068 r.r_addend = 0;
Atsushi Nemotoae4ac122007-05-22 18:27:39 +09001069 switch (hdr->e_machine) {
1070 case EM_386:
1071 if (addend_386_rel(elf, i, &r))
1072 continue;
1073 break;
Sam Ravnborg56a974f2007-07-16 22:39:35 +02001074 case EM_ARM:
1075 if(addend_arm_rel(elf, i, &r))
1076 continue;
1077 break;
Atsushi Nemotoae4ac122007-05-22 18:27:39 +09001078 case EM_MIPS:
1079 if (addend_mips_rel(elf, i, &r))
1080 continue;
1081 break;
1082 }
Atsushi Nemotoeae07ac2006-05-20 15:00:28 -07001083 sym = elf->symtab_start + r_sym;
Atsushi Nemoto2c1a51f2006-05-20 15:00:26 -07001084 /* Skip special sections */
1085 if (sym->st_shndx >= SHN_LORESERVE)
1086 continue;
1087
1088 secname = secstrings +
1089 sechdrs[sym->st_shndx].sh_name;
1090 if (section(secname))
1091 warn_sec_mismatch(modname, name,
1092 elf, sym, r);
1093 }
Sam Ravnborgb39927c2006-02-17 22:42:02 +01001094 }
1095 }
1096}
1097
1098/**
1099 * Functions used only during module init is marked __init and is stored in
1100 * a .init.text section. Likewise data is marked __initdata and stored in
1101 * a .init.data section.
1102 * If this section is one of these sections return 1
1103 * See include/linux/init.h for the details
1104 **/
1105static int init_section(const char *name)
1106{
1107 if (strcmp(name, ".init") == 0)
1108 return 1;
1109 if (strncmp(name, ".init.", strlen(".init.")) == 0)
1110 return 1;
1111 return 0;
1112}
1113
1114/**
1115 * Identify sections from which references to a .init section is OK.
Sam Ravnborg62070fa2006-03-03 16:46:04 +01001116 *
Sam Ravnborgb39927c2006-02-17 22:42:02 +01001117 * Unfortunately references to read only data that referenced .init
1118 * sections had to be excluded. Almost all of these are false
1119 * positives, they are created by gcc. The downside of excluding rodata
1120 * is that there really are some user references from rodata to
1121 * init code, e.g. drivers/video/vgacon.c:
Sam Ravnborg62070fa2006-03-03 16:46:04 +01001122 *
Sam Ravnborgb39927c2006-02-17 22:42:02 +01001123 * const struct consw vga_con = {
1124 * con_startup: vgacon_startup,
1125 *
1126 * where vgacon_startup is __init. If you want to wade through the false
1127 * positives, take out the check for rodata.
1128 **/
1129static int init_section_ref_ok(const char *name)
1130{
1131 const char **s;
1132 /* Absolute section names */
1133 const char *namelist1[] = {
1134 ".init",
Sam Ravnborg9209aed2006-03-05 00:16:26 +01001135 ".opd", /* see comment [OPD] at exit_section_ref_ok() */
1136 ".toc1", /* used by ppc64 */
Sam Ravnborgb39927c2006-02-17 22:42:02 +01001137 ".stab",
Matthew Wilcox742433b2007-02-05 16:34:00 -08001138 ".data.rel.ro", /* used by parisc64 */
Rusty Russell139ec7c2006-12-07 02:14:08 +01001139 ".parainstructions",
Sam Ravnborgb39927c2006-02-17 22:42:02 +01001140 ".text.lock",
Sam Ravnborg9209aed2006-03-05 00:16:26 +01001141 "__bug_table", /* used by powerpc for BUG() */
Sam Ravnborgb39927c2006-02-17 22:42:02 +01001142 ".pci_fixup_header",
1143 ".pci_fixup_final",
1144 ".pdr",
1145 "__param",
Al Viro468d9492006-06-23 23:22:43 +01001146 "__ex_table",
1147 ".fixup",
Randy Dunlap35899c52006-06-07 16:23:26 -07001148 ".smp_locks",
Sam Ravnborg909252d2006-06-08 20:37:30 +02001149 ".plt", /* seen on ARCH=um build on x86_64. Harmless */
Benjamin Herrenschmidt21c4ff82006-10-20 11:47:19 +10001150 "__ftr_fixup", /* powerpc cpu feature fixup */
1151 "__fw_ftr_fixup", /* powerpc firmware feature fixup */
Sam Ravnborg2648a532007-06-11 21:52:04 +02001152 ".cranges", /* used by sh64 */
Sam Ravnborgb39927c2006-02-17 22:42:02 +01001153 NULL
1154 };
1155 /* Start of section names */
1156 const char *namelist2[] = {
1157 ".init.",
1158 ".altinstructions",
1159 ".eh_frame",
1160 ".debug",
Rusty Russell139ec7c2006-12-07 02:14:08 +01001161 ".parainstructions",
Matthew Wilcox742433b2007-02-05 16:34:00 -08001162 ".rodata",
Sam Ravnborgb39927c2006-02-17 22:42:02 +01001163 NULL
1164 };
Sam Ravnborg6e101332006-02-22 21:24:50 +01001165 /* part of section name */
1166 const char *namelist3 [] = {
1167 ".unwind", /* sample: IA_64.unwind.init.text */
1168 NULL
1169 };
1170
Sam Ravnborgb39927c2006-02-17 22:42:02 +01001171 for (s = namelist1; *s; s++)
1172 if (strcmp(*s, name) == 0)
1173 return 1;
Sam Ravnborg62070fa2006-03-03 16:46:04 +01001174 for (s = namelist2; *s; s++)
Sam Ravnborgb39927c2006-02-17 22:42:02 +01001175 if (strncmp(*s, name, strlen(*s)) == 0)
1176 return 1;
Sam Ravnborg62070fa2006-03-03 16:46:04 +01001177 for (s = namelist3; *s; s++)
Sam Ravnborge835a392006-03-05 11:34:15 +01001178 if (strstr(name, *s) != NULL)
Sam Ravnborg6e101332006-02-22 21:24:50 +01001179 return 1;
Al Viro468d9492006-06-23 23:22:43 +01001180 if (strrcmp(name, ".init") == 0)
1181 return 1;
Sam Ravnborgb39927c2006-02-17 22:42:02 +01001182 return 0;
1183}
1184
1185/*
1186 * Functions used only during module exit is marked __exit and is stored in
1187 * a .exit.text section. Likewise data is marked __exitdata and stored in
1188 * a .exit.data section.
1189 * If this section is one of these sections return 1
1190 * See include/linux/init.h for the details
1191 **/
1192static int exit_section(const char *name)
1193{
1194 if (strcmp(name, ".exit.text") == 0)
1195 return 1;
1196 if (strcmp(name, ".exit.data") == 0)
1197 return 1;
1198 return 0;
Sam Ravnborg62070fa2006-03-03 16:46:04 +01001199
Sam Ravnborgb39927c2006-02-17 22:42:02 +01001200}
1201
1202/*
1203 * Identify sections from which references to a .exit section is OK.
Sam Ravnborg62070fa2006-03-03 16:46:04 +01001204 *
Sam Ravnborgb39927c2006-02-17 22:42:02 +01001205 * [OPD] Keith Ownes <kaos@sgi.com> commented:
1206 * For our future {in}sanity, add a comment that this is the ppc .opd
1207 * section, not the ia64 .opd section.
1208 * ia64 .opd should not point to discarded sections.
Sam Ravnborg5ecdd0f2006-04-14 23:54:13 +02001209 * [.rodata] like for .init.text we ignore .rodata references -same reason
Sam Ravnborgb39927c2006-02-17 22:42:02 +01001210 **/
1211static int exit_section_ref_ok(const char *name)
1212{
1213 const char **s;
1214 /* Absolute section names */
1215 const char *namelist1[] = {
1216 ".exit.text",
1217 ".exit.data",
1218 ".init.text",
Sam Ravnborg5ecdd0f2006-04-14 23:54:13 +02001219 ".rodata",
Sam Ravnborgb39927c2006-02-17 22:42:02 +01001220 ".opd", /* See comment [OPD] */
Sam Ravnborg9209aed2006-03-05 00:16:26 +01001221 ".toc1", /* used by ppc64 */
Sam Ravnborgb39927c2006-02-17 22:42:02 +01001222 ".altinstructions",
1223 ".pdr",
Sam Ravnborg9209aed2006-03-05 00:16:26 +01001224 "__bug_table", /* used by powerpc for BUG() */
Sam Ravnborgb39927c2006-02-17 22:42:02 +01001225 ".exitcall.exit",
1226 ".eh_frame",
Randy Dunlapacd19492006-12-13 00:33:57 -08001227 ".parainstructions",
Sam Ravnborgb39927c2006-02-17 22:42:02 +01001228 ".stab",
Al Viro468d9492006-06-23 23:22:43 +01001229 "__ex_table",
1230 ".fixup",
Randy Dunlap35899c52006-06-07 16:23:26 -07001231 ".smp_locks",
Sam Ravnborg909252d2006-06-08 20:37:30 +02001232 ".plt", /* seen on ARCH=um build on x86_64. Harmless */
Sam Ravnborg2648a532007-06-11 21:52:04 +02001233 ".cranges", /* used by sh64 */
Sam Ravnborgb39927c2006-02-17 22:42:02 +01001234 NULL
1235 };
1236 /* Start of section names */
1237 const char *namelist2[] = {
1238 ".debug",
1239 NULL
1240 };
Sam Ravnborg6e101332006-02-22 21:24:50 +01001241 /* part of section name */
1242 const char *namelist3 [] = {
1243 ".unwind", /* Sample: IA_64.unwind.exit.text */
1244 NULL
1245 };
Sam Ravnborg62070fa2006-03-03 16:46:04 +01001246
Sam Ravnborgb39927c2006-02-17 22:42:02 +01001247 for (s = namelist1; *s; s++)
1248 if (strcmp(*s, name) == 0)
1249 return 1;
Sam Ravnborg62070fa2006-03-03 16:46:04 +01001250 for (s = namelist2; *s; s++)
Sam Ravnborgb39927c2006-02-17 22:42:02 +01001251 if (strncmp(*s, name, strlen(*s)) == 0)
1252 return 1;
Sam Ravnborg62070fa2006-03-03 16:46:04 +01001253 for (s = namelist3; *s; s++)
Sam Ravnborge835a392006-03-05 11:34:15 +01001254 if (strstr(name, *s) != NULL)
Sam Ravnborg6e101332006-02-22 21:24:50 +01001255 return 1;
Sam Ravnborgb39927c2006-02-17 22:42:02 +01001256 return 0;
1257}
1258
Sam Ravnborg5c3ead82006-01-28 17:19:35 +01001259static void read_symbols(char *modname)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001260{
1261 const char *symname;
1262 char *version;
Sam Ravnborgb817f6f2006-06-09 21:53:55 +02001263 char *license;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001264 struct module *mod;
1265 struct elf_info info = { };
1266 Elf_Sym *sym;
1267
Sam Ravnborg85bd2fd2007-02-26 15:33:52 +01001268 if (!parse_elf(&info, modname))
1269 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001270
1271 mod = new_module(modname);
1272
1273 /* When there's no vmlinux, don't print warnings about
1274 * unresolved symbols (since there'll be too many ;) */
1275 if (is_vmlinux(modname)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001276 have_vmlinux = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001277 mod->skip = 1;
1278 }
1279
Sam Ravnborgb817f6f2006-06-09 21:53:55 +02001280 license = get_modinfo(info.modinfo, info.modinfo_len, "license");
1281 while (license) {
1282 if (license_is_gpl_compatible(license))
1283 mod->gpl_compatible = 1;
1284 else {
1285 mod->gpl_compatible = 0;
1286 break;
1287 }
1288 license = get_next_modinfo(info.modinfo, info.modinfo_len,
1289 "license", license);
1290 }
1291
Linus Torvalds1da177e2005-04-16 15:20:36 -07001292 for (sym = info.symtab_start; sym < info.symtab_stop; sym++) {
1293 symname = info.strtab + sym->st_name;
1294
1295 handle_modversions(mod, &info, sym, symname);
1296 handle_moddevtable(mod, &info, sym, symname);
1297 }
Sam Ravnborgb39927c2006-02-17 22:42:02 +01001298 check_sec_ref(mod, modname, &info, init_section, init_section_ref_ok);
1299 check_sec_ref(mod, modname, &info, exit_section, exit_section_ref_ok);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001300
1301 version = get_modinfo(info.modinfo, info.modinfo_len, "version");
1302 if (version)
1303 maybe_frob_rcs_version(modname, version, info.modinfo,
1304 version - (char *)info.hdr);
1305 if (version || (all_versions && !is_vmlinux(modname)))
1306 get_src_version(modname, mod->srcversion,
1307 sizeof(mod->srcversion)-1);
1308
1309 parse_elf_finish(&info);
1310
1311 /* Our trick to get versioning for struct_module - it's
1312 * never passed as an argument to an exported function, so
1313 * the automatic versioning doesn't pick it up, but it's really
1314 * important anyhow */
1315 if (modversions)
1316 mod->unres = alloc_symbol("struct_module", 0, mod->unres);
1317}
1318
1319#define SZ 500
1320
1321/* We first write the generated file into memory using the
1322 * following helper, then compare to the file on disk and
1323 * only update the later if anything changed */
1324
Sam Ravnborg5c3ead82006-01-28 17:19:35 +01001325void __attribute__((format(printf, 2, 3))) buf_printf(struct buffer *buf,
1326 const char *fmt, ...)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001327{
1328 char tmp[SZ];
1329 int len;
1330 va_list ap;
Sam Ravnborg62070fa2006-03-03 16:46:04 +01001331
Linus Torvalds1da177e2005-04-16 15:20:36 -07001332 va_start(ap, fmt);
1333 len = vsnprintf(tmp, SZ, fmt, ap);
Sam Ravnborg7670f022006-03-16 23:04:08 -08001334 buf_write(buf, tmp, len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001335 va_end(ap);
1336}
1337
Sam Ravnborg5c3ead82006-01-28 17:19:35 +01001338void buf_write(struct buffer *buf, const char *s, int len)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001339{
1340 if (buf->size - buf->pos < len) {
Sam Ravnborg7670f022006-03-16 23:04:08 -08001341 buf->size += len + SZ;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001342 buf->p = realloc(buf->p, buf->size);
1343 }
1344 strncpy(buf->p + buf->pos, s, len);
1345 buf->pos += len;
1346}
1347
Sam Ravnborgc96fca22006-07-01 11:44:23 +02001348static void check_for_gpl_usage(enum export exp, const char *m, const char *s)
1349{
1350 const char *e = is_vmlinux(m) ?"":".ko";
1351
1352 switch (exp) {
1353 case export_gpl:
1354 fatal("modpost: GPL-incompatible module %s%s "
1355 "uses GPL-only symbol '%s'\n", m, e, s);
1356 break;
1357 case export_unused_gpl:
1358 fatal("modpost: GPL-incompatible module %s%s "
1359 "uses GPL-only symbol marked UNUSED '%s'\n", m, e, s);
1360 break;
1361 case export_gpl_future:
1362 warn("modpost: GPL-incompatible module %s%s "
1363 "uses future GPL-only symbol '%s'\n", m, e, s);
1364 break;
1365 case export_plain:
1366 case export_unused:
1367 case export_unknown:
1368 /* ignore */
1369 break;
1370 }
1371}
1372
1373static void check_for_unused(enum export exp, const char* m, const char* s)
1374{
1375 const char *e = is_vmlinux(m) ?"":".ko";
1376
1377 switch (exp) {
1378 case export_unused:
1379 case export_unused_gpl:
1380 warn("modpost: module %s%s "
1381 "uses symbol '%s' marked UNUSED\n", m, e, s);
1382 break;
1383 default:
1384 /* ignore */
1385 break;
1386 }
1387}
1388
1389static void check_exports(struct module *mod)
Sam Ravnborgb817f6f2006-06-09 21:53:55 +02001390{
1391 struct symbol *s, *exp;
1392
1393 for (s = mod->unres; s; s = s->next) {
Andrew Morton6449bd62006-06-09 20:45:06 -07001394 const char *basename;
Sam Ravnborgb817f6f2006-06-09 21:53:55 +02001395 exp = find_symbol(s->name);
1396 if (!exp || exp->module == mod)
1397 continue;
Andrew Morton6449bd62006-06-09 20:45:06 -07001398 basename = strrchr(mod->name, '/');
Sam Ravnborgb817f6f2006-06-09 21:53:55 +02001399 if (basename)
1400 basename++;
Sam Ravnborgc96fca22006-07-01 11:44:23 +02001401 else
1402 basename = mod->name;
1403 if (!mod->gpl_compatible)
1404 check_for_gpl_usage(exp->export, basename, exp->name);
1405 check_for_unused(exp->export, basename, exp->name);
Sam Ravnborgb817f6f2006-06-09 21:53:55 +02001406 }
1407}
1408
Sam Ravnborg5c3ead82006-01-28 17:19:35 +01001409/**
1410 * Header for the generated file
1411 **/
1412static void add_header(struct buffer *b, struct module *mod)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001413{
1414 buf_printf(b, "#include <linux/module.h>\n");
1415 buf_printf(b, "#include <linux/vermagic.h>\n");
1416 buf_printf(b, "#include <linux/compiler.h>\n");
1417 buf_printf(b, "\n");
1418 buf_printf(b, "MODULE_INFO(vermagic, VERMAGIC_STRING);\n");
1419 buf_printf(b, "\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001420 buf_printf(b, "struct module __this_module\n");
1421 buf_printf(b, "__attribute__((section(\".gnu.linkonce.this_module\"))) = {\n");
Ustyugov Romanf83b5e32005-09-23 08:42:11 +04001422 buf_printf(b, " .name = KBUILD_MODNAME,\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001423 if (mod->has_init)
1424 buf_printf(b, " .init = init_module,\n");
1425 if (mod->has_cleanup)
1426 buf_printf(b, "#ifdef CONFIG_MODULE_UNLOAD\n"
1427 " .exit = cleanup_module,\n"
1428 "#endif\n");
Roman Zippele61a1c12007-05-09 02:35:15 -07001429 buf_printf(b, " .arch = MODULE_ARCH_INIT,\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001430 buf_printf(b, "};\n");
1431}
1432
Sam Ravnborg5c3ead82006-01-28 17:19:35 +01001433/**
1434 * Record CRCs for unresolved symbols
1435 **/
Kirill Korotaevc53ddac2006-09-07 13:08:54 -07001436static int add_versions(struct buffer *b, struct module *mod)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001437{
1438 struct symbol *s, *exp;
Kirill Korotaevc53ddac2006-09-07 13:08:54 -07001439 int err = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001440
1441 for (s = mod->unres; s; s = s->next) {
1442 exp = find_symbol(s->name);
1443 if (!exp || exp->module == mod) {
Kirill Korotaevc53ddac2006-09-07 13:08:54 -07001444 if (have_vmlinux && !s->weak) {
Matthew Wilcox2a116652006-10-07 05:35:32 -06001445 if (warn_unresolved) {
1446 warn("\"%s\" [%s.ko] undefined!\n",
1447 s->name, mod->name);
1448 } else {
1449 merror("\"%s\" [%s.ko] undefined!\n",
1450 s->name, mod->name);
1451 err = 1;
1452 }
Kirill Korotaevc53ddac2006-09-07 13:08:54 -07001453 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001454 continue;
1455 }
1456 s->module = exp->module;
1457 s->crc_valid = exp->crc_valid;
1458 s->crc = exp->crc;
1459 }
1460
1461 if (!modversions)
Kirill Korotaevc53ddac2006-09-07 13:08:54 -07001462 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001463
1464 buf_printf(b, "\n");
1465 buf_printf(b, "static const struct modversion_info ____versions[]\n");
1466 buf_printf(b, "__attribute_used__\n");
1467 buf_printf(b, "__attribute__((section(\"__versions\"))) = {\n");
1468
1469 for (s = mod->unres; s; s = s->next) {
1470 if (!s->module) {
1471 continue;
1472 }
1473 if (!s->crc_valid) {
Sam Ravnborgcb805142006-01-28 16:57:26 +01001474 warn("\"%s\" [%s.ko] has no CRC!\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07001475 s->name, mod->name);
1476 continue;
1477 }
1478 buf_printf(b, "\t{ %#8x, \"%s\" },\n", s->crc, s->name);
1479 }
1480
1481 buf_printf(b, "};\n");
Kirill Korotaevc53ddac2006-09-07 13:08:54 -07001482
1483 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001484}
1485
Sam Ravnborg5c3ead82006-01-28 17:19:35 +01001486static void add_depends(struct buffer *b, struct module *mod,
1487 struct module *modules)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001488{
1489 struct symbol *s;
1490 struct module *m;
1491 int first = 1;
1492
1493 for (m = modules; m; m = m->next) {
1494 m->seen = is_vmlinux(m->name);
1495 }
1496
1497 buf_printf(b, "\n");
1498 buf_printf(b, "static const char __module_depends[]\n");
1499 buf_printf(b, "__attribute_used__\n");
1500 buf_printf(b, "__attribute__((section(\".modinfo\"))) =\n");
1501 buf_printf(b, "\"depends=");
1502 for (s = mod->unres; s; s = s->next) {
Sam Ravnborga61b2df2007-02-26 19:46:52 +01001503 const char *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001504 if (!s->module)
1505 continue;
1506
1507 if (s->module->seen)
1508 continue;
1509
1510 s->module->seen = 1;
Sam Ravnborga61b2df2007-02-26 19:46:52 +01001511 if ((p = strrchr(s->module->name, '/')) != NULL)
1512 p++;
1513 else
1514 p = s->module->name;
1515 buf_printf(b, "%s%s", first ? "" : ",", p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001516 first = 0;
1517 }
1518 buf_printf(b, "\";\n");
1519}
1520
Sam Ravnborg5c3ead82006-01-28 17:19:35 +01001521static void add_srcversion(struct buffer *b, struct module *mod)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001522{
1523 if (mod->srcversion[0]) {
1524 buf_printf(b, "\n");
1525 buf_printf(b, "MODULE_INFO(srcversion, \"%s\");\n",
1526 mod->srcversion);
1527 }
1528}
1529
Sam Ravnborg5c3ead82006-01-28 17:19:35 +01001530static void write_if_changed(struct buffer *b, const char *fname)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001531{
1532 char *tmp;
1533 FILE *file;
1534 struct stat st;
1535
1536 file = fopen(fname, "r");
1537 if (!file)
1538 goto write;
1539
1540 if (fstat(fileno(file), &st) < 0)
1541 goto close_write;
1542
1543 if (st.st_size != b->pos)
1544 goto close_write;
1545
1546 tmp = NOFAIL(malloc(b->pos));
1547 if (fread(tmp, 1, b->pos, file) != b->pos)
1548 goto free_write;
1549
1550 if (memcmp(tmp, b->p, b->pos) != 0)
1551 goto free_write;
1552
1553 free(tmp);
1554 fclose(file);
1555 return;
1556
1557 free_write:
1558 free(tmp);
1559 close_write:
1560 fclose(file);
1561 write:
1562 file = fopen(fname, "w");
1563 if (!file) {
1564 perror(fname);
1565 exit(1);
1566 }
1567 if (fwrite(b->p, 1, b->pos, file) != b->pos) {
1568 perror(fname);
1569 exit(1);
1570 }
1571 fclose(file);
1572}
1573
Ram Paibd5cbce2006-06-08 22:12:53 -07001574/* parse Module.symvers file. line format:
Sam Ravnborg534b89a2006-07-01 10:10:19 +02001575 * 0x12345678<tab>symbol<tab>module[[<tab>export]<tab>something]
Ram Paibd5cbce2006-06-08 22:12:53 -07001576 **/
Sam Ravnborg040fcc82006-01-28 22:15:55 +01001577static void read_dump(const char *fname, unsigned int kernel)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001578{
1579 unsigned long size, pos = 0;
1580 void *file = grab_file(fname, &size);
1581 char *line;
1582
1583 if (!file)
1584 /* No symbol versions, silently ignore */
1585 return;
1586
1587 while ((line = get_next_line(&pos, file, size))) {
Sam Ravnborg534b89a2006-07-01 10:10:19 +02001588 char *symname, *modname, *d, *export, *end;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001589 unsigned int crc;
1590 struct module *mod;
Sam Ravnborg040fcc82006-01-28 22:15:55 +01001591 struct symbol *s;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001592
1593 if (!(symname = strchr(line, '\t')))
1594 goto fail;
1595 *symname++ = '\0';
1596 if (!(modname = strchr(symname, '\t')))
1597 goto fail;
1598 *modname++ = '\0';
Laurent Riffard9ac545b2006-06-11 08:02:06 +02001599 if ((export = strchr(modname, '\t')) != NULL)
Ram Paibd5cbce2006-06-08 22:12:53 -07001600 *export++ = '\0';
Sam Ravnborg534b89a2006-07-01 10:10:19 +02001601 if (export && ((end = strchr(export, '\t')) != NULL))
1602 *end = '\0';
Linus Torvalds1da177e2005-04-16 15:20:36 -07001603 crc = strtoul(line, &d, 16);
1604 if (*symname == '\0' || *modname == '\0' || *d != '\0')
1605 goto fail;
1606
1607 if (!(mod = find_module(modname))) {
1608 if (is_vmlinux(modname)) {
1609 have_vmlinux = 1;
1610 }
1611 mod = new_module(NOFAIL(strdup(modname)));
1612 mod->skip = 1;
1613 }
Ram Paibd5cbce2006-06-08 22:12:53 -07001614 s = sym_add_exported(symname, mod, export_no(export));
Sam Ravnborg8e70c452006-01-28 22:22:33 +01001615 s->kernel = kernel;
1616 s->preloaded = 1;
Ram Paibd5cbce2006-06-08 22:12:53 -07001617 sym_update_crc(symname, mod, crc, export_no(export));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001618 }
1619 return;
1620fail:
1621 fatal("parse error in symbol dump file\n");
1622}
1623
Sam Ravnborg040fcc82006-01-28 22:15:55 +01001624/* For normal builds always dump all symbols.
1625 * For external modules only dump symbols
1626 * that are not read from kernel Module.symvers.
1627 **/
1628static int dump_sym(struct symbol *sym)
1629{
1630 if (!external_module)
1631 return 1;
1632 if (sym->vmlinux || sym->kernel)
1633 return 0;
1634 return 1;
1635}
Sam Ravnborg62070fa2006-03-03 16:46:04 +01001636
Sam Ravnborg5c3ead82006-01-28 17:19:35 +01001637static void write_dump(const char *fname)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001638{
1639 struct buffer buf = { };
1640 struct symbol *symbol;
1641 int n;
1642
1643 for (n = 0; n < SYMBOL_HASH_SIZE ; n++) {
1644 symbol = symbolhash[n];
1645 while (symbol) {
Sam Ravnborg040fcc82006-01-28 22:15:55 +01001646 if (dump_sym(symbol))
Ram Paibd5cbce2006-06-08 22:12:53 -07001647 buf_printf(&buf, "0x%08x\t%s\t%s\t%s\n",
Sam Ravnborg62070fa2006-03-03 16:46:04 +01001648 symbol->crc, symbol->name,
Ram Paibd5cbce2006-06-08 22:12:53 -07001649 symbol->module->name,
1650 export_str(symbol->export));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001651 symbol = symbol->next;
1652 }
1653 }
1654 write_if_changed(&buf, fname);
1655}
1656
Sam Ravnborg5c3ead82006-01-28 17:19:35 +01001657int main(int argc, char **argv)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001658{
1659 struct module *mod;
1660 struct buffer buf = { };
1661 char fname[SZ];
Sam Ravnborg040fcc82006-01-28 22:15:55 +01001662 char *kernel_read = NULL, *module_read = NULL;
1663 char *dump_write = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001664 int opt;
Kirill Korotaevc53ddac2006-09-07 13:08:54 -07001665 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001666
Kirill Korotaevc53ddac2006-09-07 13:08:54 -07001667 while ((opt = getopt(argc, argv, "i:I:mo:aw")) != -1) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001668 switch(opt) {
1669 case 'i':
Sam Ravnborg040fcc82006-01-28 22:15:55 +01001670 kernel_read = optarg;
1671 break;
1672 case 'I':
1673 module_read = optarg;
1674 external_module = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001675 break;
1676 case 'm':
1677 modversions = 1;
1678 break;
1679 case 'o':
1680 dump_write = optarg;
1681 break;
1682 case 'a':
1683 all_versions = 1;
1684 break;
Kirill Korotaevc53ddac2006-09-07 13:08:54 -07001685 case 'w':
1686 warn_unresolved = 1;
1687 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001688 default:
1689 exit(1);
1690 }
1691 }
1692
Sam Ravnborg040fcc82006-01-28 22:15:55 +01001693 if (kernel_read)
1694 read_dump(kernel_read, 1);
1695 if (module_read)
1696 read_dump(module_read, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001697
1698 while (optind < argc) {
1699 read_symbols(argv[optind++]);
1700 }
1701
1702 for (mod = modules; mod; mod = mod->next) {
1703 if (mod->skip)
1704 continue;
Sam Ravnborgc96fca22006-07-01 11:44:23 +02001705 check_exports(mod);
Sam Ravnborgb817f6f2006-06-09 21:53:55 +02001706 }
1707
Kirill Korotaevc53ddac2006-09-07 13:08:54 -07001708 err = 0;
1709
Sam Ravnborgb817f6f2006-06-09 21:53:55 +02001710 for (mod = modules; mod; mod = mod->next) {
1711 if (mod->skip)
1712 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001713
1714 buf.pos = 0;
1715
1716 add_header(&buf, mod);
Kirill Korotaevc53ddac2006-09-07 13:08:54 -07001717 err |= add_versions(&buf, mod);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001718 add_depends(&buf, mod, modules);
1719 add_moddevtable(&buf, mod);
1720 add_srcversion(&buf, mod);
1721
1722 sprintf(fname, "%s.mod.c", mod->name);
1723 write_if_changed(&buf, fname);
1724 }
1725
1726 if (dump_write)
1727 write_dump(dump_write);
1728
Kirill Korotaevc53ddac2006-09-07 13:08:54 -07001729 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001730}