blob: 3a12c22cc2f8f0ca82f624a50c4878fce389e7bb [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;
Sam Ravnborg8d8d8282007-07-20 22:36:56 +020026/* Warn about section mismatch in vmlinux if set to 1 */
27static int vmlinux_section_warnings = 1;
Kirill Korotaevc53ddac2006-09-07 13:08:54 -070028/* Only warn about unresolved symbols */
29static int warn_unresolved = 0;
Ram Paibd5cbce2006-06-08 22:12:53 -070030/* How a symbol is exported */
Sam Ravnborgc96fca22006-07-01 11:44:23 +020031enum export {
32 export_plain, export_unused, export_gpl,
33 export_unused_gpl, export_gpl_future, export_unknown
34};
Linus Torvalds1da177e2005-04-16 15:20:36 -070035
Andi Kleen6d9a89e2007-11-22 03:43:08 +010036#define PRINTF __attribute__ ((format (printf, 1, 2)))
37
38PRINTF void fatal(const char *fmt, ...)
Linus Torvalds1da177e2005-04-16 15:20:36 -070039{
40 va_list arglist;
41
42 fprintf(stderr, "FATAL: ");
43
44 va_start(arglist, fmt);
45 vfprintf(stderr, fmt, arglist);
46 va_end(arglist);
47
48 exit(1);
49}
50
Andi Kleen6d9a89e2007-11-22 03:43:08 +010051PRINTF void warn(const char *fmt, ...)
Linus Torvalds1da177e2005-04-16 15:20:36 -070052{
53 va_list arglist;
54
55 fprintf(stderr, "WARNING: ");
56
57 va_start(arglist, fmt);
58 vfprintf(stderr, fmt, arglist);
59 va_end(arglist);
60}
61
Andi Kleen6d9a89e2007-11-22 03:43:08 +010062PRINTF void merror(const char *fmt, ...)
Matthew Wilcox2a116652006-10-07 05:35:32 -060063{
64 va_list arglist;
65
66 fprintf(stderr, "ERROR: ");
67
68 va_start(arglist, fmt);
69 vfprintf(stderr, fmt, arglist);
70 va_end(arglist);
71}
72
Sam Ravnborg040fcc82006-01-28 22:15:55 +010073static int is_vmlinux(const char *modname)
74{
75 const char *myname;
76
77 if ((myname = strrchr(modname, '/')))
78 myname++;
79 else
80 myname = modname;
81
Sam Ravnborg741f98f2007-07-17 10:54:06 +020082 return (strcmp(myname, "vmlinux") == 0) ||
83 (strcmp(myname, "vmlinux.o") == 0);
Sam Ravnborg040fcc82006-01-28 22:15:55 +010084}
85
Linus Torvalds1da177e2005-04-16 15:20:36 -070086void *do_nofail(void *ptr, const char *expr)
87{
88 if (!ptr) {
89 fatal("modpost: Memory allocation failure: %s.\n", expr);
90 }
91 return ptr;
92}
93
94/* A list of all modules we processed */
95
96static struct module *modules;
97
Sam Ravnborg5c3ead82006-01-28 17:19:35 +010098static struct module *find_module(char *modname)
Linus Torvalds1da177e2005-04-16 15:20:36 -070099{
100 struct module *mod;
101
102 for (mod = modules; mod; mod = mod->next)
103 if (strcmp(mod->name, modname) == 0)
104 break;
105 return mod;
106}
107
Sam Ravnborg5c3ead82006-01-28 17:19:35 +0100108static struct module *new_module(char *modname)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700109{
110 struct module *mod;
111 char *p, *s;
Sam Ravnborg62070fa2006-03-03 16:46:04 +0100112
Linus Torvalds1da177e2005-04-16 15:20:36 -0700113 mod = NOFAIL(malloc(sizeof(*mod)));
114 memset(mod, 0, sizeof(*mod));
115 p = NOFAIL(strdup(modname));
116
117 /* strip trailing .o */
118 if ((s = strrchr(p, '.')) != NULL)
119 if (strcmp(s, ".o") == 0)
120 *s = '\0';
121
122 /* add to list */
123 mod->name = p;
Sam Ravnborgb817f6f2006-06-09 21:53:55 +0200124 mod->gpl_compatible = -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700125 mod->next = modules;
126 modules = mod;
127
128 return mod;
129}
130
131/* A hash of all exported symbols,
132 * struct symbol is also used for lists of unresolved symbols */
133
134#define SYMBOL_HASH_SIZE 1024
135
136struct symbol {
137 struct symbol *next;
138 struct module *module;
139 unsigned int crc;
140 int crc_valid;
141 unsigned int weak:1;
Sam Ravnborg040fcc82006-01-28 22:15:55 +0100142 unsigned int vmlinux:1; /* 1 if symbol is defined in vmlinux */
143 unsigned int kernel:1; /* 1 if symbol is from kernel
144 * (only for external modules) **/
Sam Ravnborg8e70c452006-01-28 22:22:33 +0100145 unsigned int preloaded:1; /* 1 if symbol from Module.symvers */
Ram Paibd5cbce2006-06-08 22:12:53 -0700146 enum export export; /* Type of export */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700147 char name[0];
148};
149
150static struct symbol *symbolhash[SYMBOL_HASH_SIZE];
151
152/* This is based on the hash agorithm from gdbm, via tdb */
153static inline unsigned int tdb_hash(const char *name)
154{
155 unsigned value; /* Used to compute the hash value. */
156 unsigned i; /* Used to cycle through random values. */
157
158 /* Set the initial value from the key size. */
159 for (value = 0x238F13AF * strlen(name), i=0; name[i]; i++)
160 value = (value + (((unsigned char *)name)[i] << (i*5 % 24)));
161
162 return (1103515243 * value + 12345);
163}
164
Sam Ravnborg5c3ead82006-01-28 17:19:35 +0100165/**
166 * Allocate a new symbols for use in the hash of exported symbols or
167 * the list of unresolved symbols per module
168 **/
169static struct symbol *alloc_symbol(const char *name, unsigned int weak,
170 struct symbol *next)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700171{
172 struct symbol *s = NOFAIL(malloc(sizeof(*s) + strlen(name) + 1));
173
174 memset(s, 0, sizeof(*s));
175 strcpy(s->name, name);
176 s->weak = weak;
177 s->next = next;
178 return s;
179}
180
181/* For the hash of exported symbols */
Ram Paibd5cbce2006-06-08 22:12:53 -0700182static struct symbol *new_symbol(const char *name, struct module *module,
183 enum export export)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700184{
185 unsigned int hash;
186 struct symbol *new;
187
188 hash = tdb_hash(name) % SYMBOL_HASH_SIZE;
189 new = symbolhash[hash] = alloc_symbol(name, 0, symbolhash[hash]);
190 new->module = module;
Ram Paibd5cbce2006-06-08 22:12:53 -0700191 new->export = export;
Sam Ravnborg040fcc82006-01-28 22:15:55 +0100192 return new;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700193}
194
Sam Ravnborg5c3ead82006-01-28 17:19:35 +0100195static struct symbol *find_symbol(const char *name)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700196{
197 struct symbol *s;
198
199 /* For our purposes, .foo matches foo. PPC64 needs this. */
200 if (name[0] == '.')
201 name++;
202
203 for (s = symbolhash[tdb_hash(name) % SYMBOL_HASH_SIZE]; s; s=s->next) {
204 if (strcmp(s->name, name) == 0)
205 return s;
206 }
207 return NULL;
208}
209
Ram Paibd5cbce2006-06-08 22:12:53 -0700210static struct {
211 const char *str;
212 enum export export;
213} export_list[] = {
214 { .str = "EXPORT_SYMBOL", .export = export_plain },
Sam Ravnborgc96fca22006-07-01 11:44:23 +0200215 { .str = "EXPORT_UNUSED_SYMBOL", .export = export_unused },
Ram Paibd5cbce2006-06-08 22:12:53 -0700216 { .str = "EXPORT_SYMBOL_GPL", .export = export_gpl },
Sam Ravnborgc96fca22006-07-01 11:44:23 +0200217 { .str = "EXPORT_UNUSED_SYMBOL_GPL", .export = export_unused_gpl },
Ram Paibd5cbce2006-06-08 22:12:53 -0700218 { .str = "EXPORT_SYMBOL_GPL_FUTURE", .export = export_gpl_future },
219 { .str = "(unknown)", .export = export_unknown },
220};
221
222
223static const char *export_str(enum export ex)
224{
225 return export_list[ex].str;
226}
227
228static enum export export_no(const char * s)
229{
230 int i;
Sam Ravnborg534b89a2006-07-01 10:10:19 +0200231 if (!s)
232 return export_unknown;
Ram Paibd5cbce2006-06-08 22:12:53 -0700233 for (i = 0; export_list[i].export != export_unknown; i++) {
234 if (strcmp(export_list[i].str, s) == 0)
235 return export_list[i].export;
236 }
237 return export_unknown;
238}
239
240static enum export export_from_sec(struct elf_info *elf, Elf_Section sec)
241{
242 if (sec == elf->export_sec)
243 return export_plain;
Sam Ravnborgc96fca22006-07-01 11:44:23 +0200244 else if (sec == elf->export_unused_sec)
245 return export_unused;
Ram Paibd5cbce2006-06-08 22:12:53 -0700246 else if (sec == elf->export_gpl_sec)
247 return export_gpl;
Sam Ravnborgc96fca22006-07-01 11:44:23 +0200248 else if (sec == elf->export_unused_gpl_sec)
249 return export_unused_gpl;
Ram Paibd5cbce2006-06-08 22:12:53 -0700250 else if (sec == elf->export_gpl_future_sec)
251 return export_gpl_future;
252 else
253 return export_unknown;
254}
255
Sam Ravnborg5c3ead82006-01-28 17:19:35 +0100256/**
257 * Add an exported symbol - it may have already been added without a
258 * CRC, in this case just update the CRC
259 **/
Ram Paibd5cbce2006-06-08 22:12:53 -0700260static struct symbol *sym_add_exported(const char *name, struct module *mod,
261 enum export export)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700262{
263 struct symbol *s = find_symbol(name);
264
265 if (!s) {
Ram Paibd5cbce2006-06-08 22:12:53 -0700266 s = new_symbol(name, mod, export);
Sam Ravnborg8e70c452006-01-28 22:22:33 +0100267 } else {
268 if (!s->preloaded) {
Sam Ravnborg7b75b132006-03-05 13:48:58 +0100269 warn("%s: '%s' exported twice. Previous export "
Sam Ravnborg8e70c452006-01-28 22:22:33 +0100270 "was in %s%s\n", mod->name, name,
271 s->module->name,
272 is_vmlinux(s->module->name) ?"":".ko");
Trent Piepho4b219602007-10-11 16:40:10 -0700273 } else {
274 /* In case Modules.symvers was out of date */
275 s->module = mod;
Sam Ravnborg8e70c452006-01-28 22:22:33 +0100276 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700277 }
Sam Ravnborg8e70c452006-01-28 22:22:33 +0100278 s->preloaded = 0;
Sam Ravnborg040fcc82006-01-28 22:15:55 +0100279 s->vmlinux = is_vmlinux(mod->name);
280 s->kernel = 0;
Ram Paibd5cbce2006-06-08 22:12:53 -0700281 s->export = export;
Sam Ravnborg040fcc82006-01-28 22:15:55 +0100282 return s;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700283}
284
Sam Ravnborg040fcc82006-01-28 22:15:55 +0100285static void sym_update_crc(const char *name, struct module *mod,
Ram Paibd5cbce2006-06-08 22:12:53 -0700286 unsigned int crc, enum export export)
Sam Ravnborg040fcc82006-01-28 22:15:55 +0100287{
288 struct symbol *s = find_symbol(name);
289
290 if (!s)
Ram Paibd5cbce2006-06-08 22:12:53 -0700291 s = new_symbol(name, mod, export);
Sam Ravnborg040fcc82006-01-28 22:15:55 +0100292 s->crc = crc;
293 s->crc_valid = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700294}
295
Sam Ravnborg5c3ead82006-01-28 17:19:35 +0100296void *grab_file(const char *filename, unsigned long *size)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700297{
298 struct stat st;
299 void *map;
300 int fd;
301
302 fd = open(filename, O_RDONLY);
303 if (fd < 0 || fstat(fd, &st) != 0)
304 return NULL;
305
306 *size = st.st_size;
307 map = mmap(NULL, *size, PROT_READ|PROT_WRITE, MAP_PRIVATE, fd, 0);
308 close(fd);
309
310 if (map == MAP_FAILED)
311 return NULL;
312 return map;
313}
314
Sam Ravnborg5c3ead82006-01-28 17:19:35 +0100315/**
316 * Return a copy of the next line in a mmap'ed file.
317 * spaces in the beginning of the line is trimmed away.
318 * Return a pointer to a static buffer.
319 **/
320char* get_next_line(unsigned long *pos, void *file, unsigned long size)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700321{
322 static char line[4096];
323 int skip = 1;
324 size_t len = 0;
325 signed char *p = (signed char *)file + *pos;
326 char *s = line;
327
328 for (; *pos < size ; (*pos)++)
329 {
330 if (skip && isspace(*p)) {
331 p++;
332 continue;
333 }
334 skip = 0;
335 if (*p != '\n' && (*pos < size)) {
336 len++;
337 *s++ = *p++;
338 if (len > 4095)
339 break; /* Too long, stop */
340 } else {
341 /* End of string */
342 *s = '\0';
343 return line;
344 }
345 }
346 /* End of buffer */
347 return NULL;
348}
349
Sam Ravnborg5c3ead82006-01-28 17:19:35 +0100350void release_file(void *file, unsigned long size)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700351{
352 munmap(file, size);
353}
354
Sam Ravnborg85bd2fd2007-02-26 15:33:52 +0100355static int parse_elf(struct elf_info *info, const char *filename)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700356{
357 unsigned int i;
Sam Ravnborg85bd2fd2007-02-26 15:33:52 +0100358 Elf_Ehdr *hdr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700359 Elf_Shdr *sechdrs;
360 Elf_Sym *sym;
361
362 hdr = grab_file(filename, &info->size);
363 if (!hdr) {
364 perror(filename);
Sam Ravnborg6803dc02006-06-24 23:46:54 +0200365 exit(1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700366 }
367 info->hdr = hdr;
Sam Ravnborg85bd2fd2007-02-26 15:33:52 +0100368 if (info->size < sizeof(*hdr)) {
369 /* file too small, assume this is an empty .o file */
370 return 0;
371 }
372 /* Is this a valid ELF file? */
373 if ((hdr->e_ident[EI_MAG0] != ELFMAG0) ||
374 (hdr->e_ident[EI_MAG1] != ELFMAG1) ||
375 (hdr->e_ident[EI_MAG2] != ELFMAG2) ||
376 (hdr->e_ident[EI_MAG3] != ELFMAG3)) {
377 /* Not an ELF file - silently ignore it */
378 return 0;
379 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700380 /* Fix endianness in ELF header */
381 hdr->e_shoff = TO_NATIVE(hdr->e_shoff);
382 hdr->e_shstrndx = TO_NATIVE(hdr->e_shstrndx);
383 hdr->e_shnum = TO_NATIVE(hdr->e_shnum);
384 hdr->e_machine = TO_NATIVE(hdr->e_machine);
Atsushi Nemotoae4ac122007-05-22 18:27:39 +0900385 hdr->e_type = TO_NATIVE(hdr->e_type);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700386 sechdrs = (void *)hdr + hdr->e_shoff;
387 info->sechdrs = sechdrs;
388
Petr Stetiara83710e2007-08-27 12:15:07 +0200389 /* Check if file offset is correct */
390 if (hdr->e_shoff > info->size) {
391 fatal("section header offset=%u in file '%s' is bigger then filesize=%lu\n", hdr->e_shoff, filename, info->size);
392 return 0;
393 }
394
Linus Torvalds1da177e2005-04-16 15:20:36 -0700395 /* Fix endianness in section headers */
396 for (i = 0; i < hdr->e_shnum; i++) {
397 sechdrs[i].sh_type = TO_NATIVE(sechdrs[i].sh_type);
398 sechdrs[i].sh_offset = TO_NATIVE(sechdrs[i].sh_offset);
399 sechdrs[i].sh_size = TO_NATIVE(sechdrs[i].sh_size);
400 sechdrs[i].sh_link = TO_NATIVE(sechdrs[i].sh_link);
401 sechdrs[i].sh_name = TO_NATIVE(sechdrs[i].sh_name);
Atsushi Nemotoae4ac122007-05-22 18:27:39 +0900402 sechdrs[i].sh_info = TO_NATIVE(sechdrs[i].sh_info);
403 sechdrs[i].sh_addr = TO_NATIVE(sechdrs[i].sh_addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700404 }
405 /* Find symbol table. */
406 for (i = 1; i < hdr->e_shnum; i++) {
407 const char *secstrings
408 = (void *)hdr + sechdrs[hdr->e_shstrndx].sh_offset;
Ram Paibd5cbce2006-06-08 22:12:53 -0700409 const char *secname;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700410
Sam Ravnborg85bd2fd2007-02-26 15:33:52 +0100411 if (sechdrs[i].sh_offset > info->size) {
412 fatal("%s is truncated. sechdrs[i].sh_offset=%u > sizeof(*hrd)=%ul\n", filename, (unsigned int)sechdrs[i].sh_offset, sizeof(*hdr));
413 return 0;
414 }
Ram Paibd5cbce2006-06-08 22:12:53 -0700415 secname = secstrings + sechdrs[i].sh_name;
416 if (strcmp(secname, ".modinfo") == 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700417 info->modinfo = (void *)hdr + sechdrs[i].sh_offset;
418 info->modinfo_len = sechdrs[i].sh_size;
Ram Paibd5cbce2006-06-08 22:12:53 -0700419 } else if (strcmp(secname, "__ksymtab") == 0)
420 info->export_sec = i;
Sam Ravnborgc96fca22006-07-01 11:44:23 +0200421 else if (strcmp(secname, "__ksymtab_unused") == 0)
422 info->export_unused_sec = i;
Ram Paibd5cbce2006-06-08 22:12:53 -0700423 else if (strcmp(secname, "__ksymtab_gpl") == 0)
424 info->export_gpl_sec = i;
Sam Ravnborgc96fca22006-07-01 11:44:23 +0200425 else if (strcmp(secname, "__ksymtab_unused_gpl") == 0)
426 info->export_unused_gpl_sec = i;
Ram Paibd5cbce2006-06-08 22:12:53 -0700427 else if (strcmp(secname, "__ksymtab_gpl_future") == 0)
428 info->export_gpl_future_sec = i;
429
Linus Torvalds1da177e2005-04-16 15:20:36 -0700430 if (sechdrs[i].sh_type != SHT_SYMTAB)
431 continue;
432
433 info->symtab_start = (void *)hdr + sechdrs[i].sh_offset;
Sam Ravnborg62070fa2006-03-03 16:46:04 +0100434 info->symtab_stop = (void *)hdr + sechdrs[i].sh_offset
Linus Torvalds1da177e2005-04-16 15:20:36 -0700435 + sechdrs[i].sh_size;
Sam Ravnborg62070fa2006-03-03 16:46:04 +0100436 info->strtab = (void *)hdr +
Linus Torvalds1da177e2005-04-16 15:20:36 -0700437 sechdrs[sechdrs[i].sh_link].sh_offset;
438 }
439 if (!info->symtab_start) {
Sam Ravnborgcb805142006-01-28 16:57:26 +0100440 fatal("%s has no symtab?\n", filename);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700441 }
442 /* Fix endianness in symbols */
443 for (sym = info->symtab_start; sym < info->symtab_stop; sym++) {
444 sym->st_shndx = TO_NATIVE(sym->st_shndx);
445 sym->st_name = TO_NATIVE(sym->st_name);
446 sym->st_value = TO_NATIVE(sym->st_value);
447 sym->st_size = TO_NATIVE(sym->st_size);
448 }
Sam Ravnborg85bd2fd2007-02-26 15:33:52 +0100449 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700450}
451
Sam Ravnborg5c3ead82006-01-28 17:19:35 +0100452static void parse_elf_finish(struct elf_info *info)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700453{
454 release_file(info->hdr, info->size);
455}
456
Luke Yangf7b05e62006-03-02 18:35:31 +0800457#define CRC_PFX MODULE_SYMBOL_PREFIX "__crc_"
458#define KSYMTAB_PFX MODULE_SYMBOL_PREFIX "__ksymtab_"
Linus Torvalds1da177e2005-04-16 15:20:36 -0700459
Sam Ravnborg5c3ead82006-01-28 17:19:35 +0100460static void handle_modversions(struct module *mod, struct elf_info *info,
461 Elf_Sym *sym, const char *symname)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700462{
463 unsigned int crc;
Ram Paibd5cbce2006-06-08 22:12:53 -0700464 enum export export = export_from_sec(info, sym->st_shndx);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700465
466 switch (sym->st_shndx) {
467 case SHN_COMMON:
Sam Ravnborgcb805142006-01-28 16:57:26 +0100468 warn("\"%s\" [%s] is COMMON symbol\n", symname, mod->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700469 break;
470 case SHN_ABS:
471 /* CRC'd symbol */
472 if (memcmp(symname, CRC_PFX, strlen(CRC_PFX)) == 0) {
473 crc = (unsigned int) sym->st_value;
Ram Paibd5cbce2006-06-08 22:12:53 -0700474 sym_update_crc(symname + strlen(CRC_PFX), mod, crc,
475 export);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700476 }
477 break;
478 case SHN_UNDEF:
479 /* undefined symbol */
480 if (ELF_ST_BIND(sym->st_info) != STB_GLOBAL &&
481 ELF_ST_BIND(sym->st_info) != STB_WEAK)
482 break;
483 /* ignore global offset table */
484 if (strcmp(symname, "_GLOBAL_OFFSET_TABLE_") == 0)
485 break;
486 /* ignore __this_module, it will be resolved shortly */
487 if (strcmp(symname, MODULE_SYMBOL_PREFIX "__this_module") == 0)
488 break;
Ben Colline8d529012005-08-19 13:44:57 -0700489/* cope with newer glibc (2.3.4 or higher) STT_ definition in elf.h */
490#if defined(STT_REGISTER) || defined(STT_SPARC_REGISTER)
491/* add compatibility with older glibc */
492#ifndef STT_SPARC_REGISTER
493#define STT_SPARC_REGISTER STT_REGISTER
494#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700495 if (info->hdr->e_machine == EM_SPARC ||
496 info->hdr->e_machine == EM_SPARCV9) {
497 /* Ignore register directives. */
Ben Colline8d529012005-08-19 13:44:57 -0700498 if (ELF_ST_TYPE(sym->st_info) == STT_SPARC_REGISTER)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700499 break;
Sam Ravnborg62070fa2006-03-03 16:46:04 +0100500 if (symname[0] == '.') {
501 char *munged = strdup(symname);
502 munged[0] = '_';
503 munged[1] = toupper(munged[1]);
504 symname = munged;
505 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700506 }
507#endif
Sam Ravnborg62070fa2006-03-03 16:46:04 +0100508
Linus Torvalds1da177e2005-04-16 15:20:36 -0700509 if (memcmp(symname, MODULE_SYMBOL_PREFIX,
510 strlen(MODULE_SYMBOL_PREFIX)) == 0)
511 mod->unres = alloc_symbol(symname +
512 strlen(MODULE_SYMBOL_PREFIX),
513 ELF_ST_BIND(sym->st_info) == STB_WEAK,
514 mod->unres);
515 break;
516 default:
517 /* All exported symbols */
518 if (memcmp(symname, KSYMTAB_PFX, strlen(KSYMTAB_PFX)) == 0) {
Ram Paibd5cbce2006-06-08 22:12:53 -0700519 sym_add_exported(symname + strlen(KSYMTAB_PFX), mod,
520 export);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700521 }
522 if (strcmp(symname, MODULE_SYMBOL_PREFIX "init_module") == 0)
523 mod->has_init = 1;
524 if (strcmp(symname, MODULE_SYMBOL_PREFIX "cleanup_module") == 0)
525 mod->has_cleanup = 1;
526 break;
527 }
528}
529
Sam Ravnborg5c3ead82006-01-28 17:19:35 +0100530/**
531 * Parse tag=value strings from .modinfo section
532 **/
Linus Torvalds1da177e2005-04-16 15:20:36 -0700533static char *next_string(char *string, unsigned long *secsize)
534{
535 /* Skip non-zero chars */
536 while (string[0]) {
537 string++;
538 if ((*secsize)-- <= 1)
539 return NULL;
540 }
541
542 /* Skip any zero padding. */
543 while (!string[0]) {
544 string++;
545 if ((*secsize)-- <= 1)
546 return NULL;
547 }
548 return string;
549}
550
Sam Ravnborgb817f6f2006-06-09 21:53:55 +0200551static char *get_next_modinfo(void *modinfo, unsigned long modinfo_len,
552 const char *tag, char *info)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700553{
554 char *p;
555 unsigned int taglen = strlen(tag);
556 unsigned long size = modinfo_len;
557
Sam Ravnborgb817f6f2006-06-09 21:53:55 +0200558 if (info) {
559 size -= info - (char *)modinfo;
560 modinfo = next_string(info, &size);
561 }
562
Linus Torvalds1da177e2005-04-16 15:20:36 -0700563 for (p = modinfo; p; p = next_string(p, &size)) {
564 if (strncmp(p, tag, taglen) == 0 && p[taglen] == '=')
565 return p + taglen + 1;
566 }
567 return NULL;
568}
569
Sam Ravnborgb817f6f2006-06-09 21:53:55 +0200570static char *get_modinfo(void *modinfo, unsigned long modinfo_len,
571 const char *tag)
572
573{
574 return get_next_modinfo(modinfo, modinfo_len, tag, NULL);
575}
576
Sam Ravnborg93684d32006-02-19 11:53:35 +0100577/**
Sam Ravnborg4c8fbca2006-02-26 22:18:11 +0100578 * Test if string s ends in string sub
579 * return 0 if match
580 **/
581static int strrcmp(const char *s, const char *sub)
582{
583 int slen, sublen;
Sam Ravnborg62070fa2006-03-03 16:46:04 +0100584
Sam Ravnborg4c8fbca2006-02-26 22:18:11 +0100585 if (!s || !sub)
586 return 1;
Sam Ravnborg62070fa2006-03-03 16:46:04 +0100587
Sam Ravnborg4c8fbca2006-02-26 22:18:11 +0100588 slen = strlen(s);
589 sublen = strlen(sub);
Sam Ravnborg62070fa2006-03-03 16:46:04 +0100590
Sam Ravnborg4c8fbca2006-02-26 22:18:11 +0100591 if ((slen == 0) || (sublen == 0))
592 return 1;
593
594 if (sublen > slen)
595 return 1;
596
597 return memcmp(s + slen - sublen, sub, sublen);
598}
599
Sam Ravnborg2f5ee612007-07-25 21:46:40 +0200600/*
601 * Functions used only during module init is marked __init and is stored in
602 * a .init.text section. Likewise data is marked __initdata and stored in
603 * a .init.data section.
604 * If this section is one of these sections return 1
605 * See include/linux/init.h for the details
606 */
607static int init_section(const char *name)
608{
609 if (strcmp(name, ".init") == 0)
610 return 1;
611 if (strncmp(name, ".init.", strlen(".init.")) == 0)
612 return 1;
613 return 0;
614}
615
616/*
617 * Functions used only during module exit is marked __exit and is stored in
618 * a .exit.text section. Likewise data is marked __exitdata and stored in
619 * a .exit.data section.
620 * If this section is one of these sections return 1
621 * See include/linux/init.h for the details
622 **/
623static int exit_section(const char *name)
624{
625 if (strcmp(name, ".exit.text") == 0)
626 return 1;
627 if (strcmp(name, ".exit.data") == 0)
628 return 1;
629 return 0;
630
631}
632
633/*
634 * Data sections are named like this:
635 * .data | .data.rel | .data.rel.*
636 * Return 1 if the specified section is a data section
637 */
638static int data_section(const char *name)
639{
640 if ((strcmp(name, ".data") == 0) ||
641 (strcmp(name, ".data.rel") == 0) ||
642 (strncmp(name, ".data.rel.", strlen(".data.rel.")) == 0))
643 return 1;
644 else
645 return 0;
646}
647
Sam Ravnborg4c8fbca2006-02-26 22:18:11 +0100648/**
649 * Whitelist to allow certain references to pass with no warning.
Sam Ravnborg0e0d3142007-05-17 20:14:48 +0200650 *
651 * Pattern 0:
652 * Do not warn if funtion/data are marked with __init_refok/__initdata_refok.
653 * The pattern is identified by:
Sam Ravnborgcb7e51d2007-07-25 22:24:52 +0200654 * fromsec = .text.init.refok* | .data.init.refok*
Sam Ravnborg0e0d3142007-05-17 20:14:48 +0200655 *
Sam Ravnborg4c8fbca2006-02-26 22:18:11 +0100656 * Pattern 1:
657 * If a module parameter is declared __initdata and permissions=0
658 * then this is legal despite the warning generated.
659 * We cannot see value of permissions here, so just ignore
660 * this pattern.
661 * The pattern is identified by:
662 * tosec = .init.data
Sam Ravnborg9209aed2006-03-05 00:16:26 +0100663 * fromsec = .data*
Sam Ravnborg4c8fbca2006-02-26 22:18:11 +0100664 * atsym =__param*
Sam Ravnborg62070fa2006-03-03 16:46:04 +0100665 *
Sam Ravnborg4c8fbca2006-02-26 22:18:11 +0100666 * Pattern 2:
Randy Dunlap72ee59b2006-04-15 11:17:12 -0700667 * Many drivers utilise a *driver container with references to
Sam Ravnborg4c8fbca2006-02-26 22:18:11 +0100668 * add, remove, probe functions etc.
669 * These functions may often be marked __init and we do not want to
670 * warn here.
671 * the pattern is identified by:
Sam Ravnborg83cda2b2007-07-25 21:52:31 +0200672 * tosec = init or exit section
673 * fromsec = data section
Sam Ravnborg1e29a702007-06-03 22:19:24 +0200674 * atsym = *driver, *_template, *_sht, *_ops, *_probe, *probe_one, *_console, *_timer
Vivek Goyalee6a8542007-01-11 01:52:44 +0100675 *
676 * Pattern 3:
Sam Ravnborg9bf8cb92007-02-26 17:49:06 +0100677 * Whitelist all refereces from .text.head to .init.data
678 * Whitelist all refereces from .text.head to .init.text
679 *
Sam Ravnborg1d8af552007-06-03 00:41:22 +0200680 * Pattern 4:
Vivek Goyalee6a8542007-01-11 01:52:44 +0100681 * Some symbols belong to init section but still it is ok to reference
682 * these from non-init sections as these symbols don't have any memory
683 * allocated for them and symbol address and value are same. So even
684 * if init section is freed, its ok to reference those symbols.
685 * For ex. symbols marking the init section boundaries.
686 * This pattern is identified by
687 * refsymname = __init_begin, _sinittext, _einittext
Sam Ravnborg9bf8cb92007-02-26 17:49:06 +0100688 *
Sam Ravnborgcb7e51d2007-07-25 22:24:52 +0200689 * Pattern 5:
690 * Xtensa uses literal sections for constants that are accessed PC-relative.
691 * Literal sections may safely reference their text sections.
692 * (Note that the name for the literal section omits any trailing '.text')
693 * tosec = <section>[.text]
694 * fromsec = <section>.literal
Sam Ravnborg4c8fbca2006-02-26 22:18:11 +0100695 **/
Magnus Damm9e157a52006-08-08 17:32:11 +0900696static int secref_whitelist(const char *modname, const char *tosec,
Vivek Goyalee6a8542007-01-11 01:52:44 +0100697 const char *fromsec, const char *atsym,
698 const char *refsymname)
Sam Ravnborg4c8fbca2006-02-26 22:18:11 +0100699{
Sam Ravnborgcb7e51d2007-07-25 22:24:52 +0200700 int len;
Sam Ravnborg4c8fbca2006-02-26 22:18:11 +0100701 const char **s;
702 const char *pat2sym[] = {
Randy Dunlap72ee59b2006-04-15 11:17:12 -0700703 "driver",
Sam Ravnborg5ecdd0f2006-04-14 23:54:13 +0200704 "_template", /* scsi uses *_template a lot */
Sam Ravnborg1e29a702007-06-03 22:19:24 +0200705 "_timer", /* arm uses ops structures named _timer a lot */
Sam Ravnborg5ecdd0f2006-04-14 23:54:13 +0200706 "_sht", /* scsi also used *_sht to some extent */
Sam Ravnborg4c8fbca2006-02-26 22:18:11 +0100707 "_ops",
708 "_probe",
709 "_probe_one",
Vivek Goyal118c0ac2007-01-11 01:52:44 +0100710 "_console",
Sam Ravnborg4c8fbca2006-02-26 22:18:11 +0100711 NULL
712 };
Sam Ravnborg62070fa2006-03-03 16:46:04 +0100713
Vivek Goyalee6a8542007-01-11 01:52:44 +0100714 const char *pat3refsym[] = {
715 "__init_begin",
716 "_sinittext",
717 "_einittext",
718 NULL
719 };
720
Sam Ravnborg0e0d3142007-05-17 20:14:48 +0200721 /* Check for pattern 0 */
Sam Ravnborgcb7e51d2007-07-25 22:24:52 +0200722 if ((strncmp(fromsec, ".text.init.refok", strlen(".text.init.refok")) == 0) ||
Pavel Emelyanov46650792007-10-08 20:38:39 -0700723 (strncmp(fromsec, ".exit.text.refok", strlen(".exit.text.refok")) == 0) ||
Sam Ravnborgcb7e51d2007-07-25 22:24:52 +0200724 (strncmp(fromsec, ".data.init.refok", strlen(".data.init.refok")) == 0))
Sam Ravnborg0e0d3142007-05-17 20:14:48 +0200725 return 1;
726
Sam Ravnborg4c8fbca2006-02-26 22:18:11 +0100727 /* Check for pattern 1 */
Sam Ravnborg83cda2b2007-07-25 21:52:31 +0200728 if ((strcmp(tosec, ".init.data") == 0) &&
729 (strncmp(fromsec, ".data", strlen(".data")) == 0) &&
730 (strncmp(atsym, "__param", strlen("__param")) == 0))
731 return 1;
Sam Ravnborg4c8fbca2006-02-26 22:18:11 +0100732
733 /* Check for pattern 2 */
Sam Ravnborg83cda2b2007-07-25 21:52:31 +0200734 if ((init_section(tosec) || exit_section(tosec)) && data_section(fromsec))
735 for (s = pat2sym; *s; s++)
736 if (strrcmp(atsym, *s) == 0)
737 return 1;
Sam Ravnborg4c8fbca2006-02-26 22:18:11 +0100738
Sam Ravnborg9bf8cb92007-02-26 17:49:06 +0100739 /* Check for pattern 3 */
Sam Ravnborg9bf8cb92007-02-26 17:49:06 +0100740 if ((strcmp(fromsec, ".text.head") == 0) &&
741 ((strcmp(tosec, ".init.data") == 0) ||
742 (strcmp(tosec, ".init.text") == 0)))
743 return 1;
744
Sam Ravnborg1d8af552007-06-03 00:41:22 +0200745 /* Check for pattern 4 */
Sam Ravnborg9bf8cb92007-02-26 17:49:06 +0100746 for (s = pat3refsym; *s; s++)
747 if (strcmp(refsymname, *s) == 0)
748 return 1;
749
Sam Ravnborgcb7e51d2007-07-25 22:24:52 +0200750 /* Check for pattern 5 */
751 if (strrcmp(tosec, ".text") == 0)
752 len = strlen(tosec) - strlen(".text");
753 else
754 len = strlen(tosec);
755 if ((strncmp(tosec, fromsec, len) == 0) && (strlen(fromsec) > len) &&
756 (strcmp(fromsec + len, ".literal") == 0))
757 return 1;
758
Sam Ravnborg93659af2006-08-09 08:23:55 +0200759 return 0;
Sam Ravnborg4c8fbca2006-02-26 22:18:11 +0100760}
761
762/**
Sam Ravnborg93684d32006-02-19 11:53:35 +0100763 * Find symbol based on relocation record info.
764 * In some cases the symbol supplied is a valid symbol so
765 * return refsym. If st_name != 0 we assume this is a valid symbol.
766 * In other cases the symbol needs to be looked up in the symbol table
767 * based on section and address.
768 * **/
769static Elf_Sym *find_elf_symbol(struct elf_info *elf, Elf_Addr addr,
770 Elf_Sym *relsym)
771{
772 Elf_Sym *sym;
773
774 if (relsym->st_name != 0)
775 return relsym;
776 for (sym = elf->symtab_start; sym < elf->symtab_stop; sym++) {
777 if (sym->st_shndx != relsym->st_shndx)
778 continue;
Atsushi Nemotoae4ac122007-05-22 18:27:39 +0900779 if (ELF_ST_TYPE(sym->st_info) == STT_SECTION)
780 continue;
Sam Ravnborg93684d32006-02-19 11:53:35 +0100781 if (sym->st_value == addr)
782 return sym;
783 }
784 return NULL;
785}
786
David Brownellda68d612007-02-20 13:58:16 -0800787static inline int is_arm_mapping_symbol(const char *str)
788{
789 return str[0] == '$' && strchr("atd", str[1])
790 && (str[2] == '\0' || str[2] == '.');
791}
792
793/*
794 * If there's no name there, ignore it; likewise, ignore it if it's
795 * one of the magic symbols emitted used by current ARM tools.
796 *
797 * Otherwise if find_symbols_between() returns those symbols, they'll
798 * fail the whitelist tests and cause lots of false alarms ... fixable
799 * only by merging __exit and __init sections into __text, bloating
800 * the kernel (which is especially evil on embedded platforms).
801 */
802static inline int is_valid_name(struct elf_info *elf, Elf_Sym *sym)
803{
804 const char *name = elf->strtab + sym->st_name;
805
806 if (!name || !strlen(name))
807 return 0;
808 return !is_arm_mapping_symbol(name);
809}
810
Sam Ravnborgb39927c2006-02-17 22:42:02 +0100811/*
Sam Ravnborg43c74d12006-03-05 12:02:46 +0100812 * Find symbols before or equal addr and after addr - in the section sec.
813 * If we find two symbols with equal offset prefer one with a valid name.
814 * The ELF format may have a better way to detect what type of symbol
815 * it is, but this works for now.
Sam Ravnborgb39927c2006-02-17 22:42:02 +0100816 **/
817static void find_symbols_between(struct elf_info *elf, Elf_Addr addr,
818 const char *sec,
819 Elf_Sym **before, Elf_Sym **after)
820{
821 Elf_Sym *sym;
822 Elf_Ehdr *hdr = elf->hdr;
823 Elf_Addr beforediff = ~0;
824 Elf_Addr afterdiff = ~0;
825 const char *secstrings = (void *)hdr +
826 elf->sechdrs[hdr->e_shstrndx].sh_offset;
Sam Ravnborg62070fa2006-03-03 16:46:04 +0100827
Sam Ravnborgb39927c2006-02-17 22:42:02 +0100828 *before = NULL;
829 *after = NULL;
830
831 for (sym = elf->symtab_start; sym < elf->symtab_stop; sym++) {
832 const char *symsec;
833
834 if (sym->st_shndx >= SHN_LORESERVE)
835 continue;
836 symsec = secstrings + elf->sechdrs[sym->st_shndx].sh_name;
837 if (strcmp(symsec, sec) != 0)
838 continue;
David Brownellda68d612007-02-20 13:58:16 -0800839 if (!is_valid_name(elf, sym))
840 continue;
Sam Ravnborgb39927c2006-02-17 22:42:02 +0100841 if (sym->st_value <= addr) {
842 if ((addr - sym->st_value) < beforediff) {
843 beforediff = addr - sym->st_value;
844 *before = sym;
845 }
Sam Ravnborg43c74d12006-03-05 12:02:46 +0100846 else if ((addr - sym->st_value) == beforediff) {
David Brownellda68d612007-02-20 13:58:16 -0800847 *before = sym;
Sam Ravnborg43c74d12006-03-05 12:02:46 +0100848 }
Sam Ravnborgb39927c2006-02-17 22:42:02 +0100849 }
850 else
851 {
852 if ((sym->st_value - addr) < afterdiff) {
853 afterdiff = sym->st_value - addr;
854 *after = sym;
855 }
Sam Ravnborg43c74d12006-03-05 12:02:46 +0100856 else if ((sym->st_value - addr) == afterdiff) {
David Brownellda68d612007-02-20 13:58:16 -0800857 *after = sym;
Sam Ravnborg43c74d12006-03-05 12:02:46 +0100858 }
Sam Ravnborgb39927c2006-02-17 22:42:02 +0100859 }
860 }
861}
862
863/**
864 * Print a warning about a section mismatch.
865 * Try to find symbols near it so user can find it.
Sam Ravnborg4c8fbca2006-02-26 22:18:11 +0100866 * Check whitelist before warning - it may be a false positive.
Sam Ravnborgb39927c2006-02-17 22:42:02 +0100867 **/
868static void warn_sec_mismatch(const char *modname, const char *fromsec,
869 struct elf_info *elf, Elf_Sym *sym, Elf_Rela r)
870{
Sam Ravnborg93684d32006-02-19 11:53:35 +0100871 const char *refsymname = "";
872 Elf_Sym *before, *after;
873 Elf_Sym *refsym;
Sam Ravnborgb39927c2006-02-17 22:42:02 +0100874 Elf_Ehdr *hdr = elf->hdr;
875 Elf_Shdr *sechdrs = elf->sechdrs;
876 const char *secstrings = (void *)hdr +
877 sechdrs[hdr->e_shstrndx].sh_offset;
878 const char *secname = secstrings + sechdrs[sym->st_shndx].sh_name;
Sam Ravnborg62070fa2006-03-03 16:46:04 +0100879
Sam Ravnborgb39927c2006-02-17 22:42:02 +0100880 find_symbols_between(elf, r.r_offset, fromsec, &before, &after);
881
Sam Ravnborg93684d32006-02-19 11:53:35 +0100882 refsym = find_elf_symbol(elf, r.r_addend, sym);
883 if (refsym && strlen(elf->strtab + refsym->st_name))
884 refsymname = elf->strtab + refsym->st_name;
Sam Ravnborg4c8fbca2006-02-26 22:18:11 +0100885
886 /* check whitelist - we may ignore it */
Sam Ravnborgcb7e51d2007-07-25 22:24:52 +0200887 if (secref_whitelist(modname, secname, fromsec,
888 before ? elf->strtab + before->st_name : "",
889 refsymname))
Sam Ravnborg4c8fbca2006-02-26 22:18:11 +0100890 return;
Sam Ravnborg62070fa2006-03-03 16:46:04 +0100891
Sam Ravnborgb39927c2006-02-17 22:42:02 +0100892 if (before && after) {
Russell King256012092007-05-10 23:03:25 +0100893 warn("%s(%s+0x%llx): Section mismatch: reference to %s:%s "
894 "(between '%s' and '%s')\n",
895 modname, fromsec, (unsigned long long)r.r_offset,
896 secname, refsymname,
Sam Ravnborgb39927c2006-02-17 22:42:02 +0100897 elf->strtab + before->st_name,
Sam Ravnborgb39927c2006-02-17 22:42:02 +0100898 elf->strtab + after->st_name);
899 } else if (before) {
Russell King256012092007-05-10 23:03:25 +0100900 warn("%s(%s+0x%llx): Section mismatch: reference to %s:%s "
901 "(after '%s')\n",
902 modname, fromsec, (unsigned long long)r.r_offset,
903 secname, refsymname,
904 elf->strtab + before->st_name);
Sam Ravnborgb39927c2006-02-17 22:42:02 +0100905 } else if (after) {
Russell King256012092007-05-10 23:03:25 +0100906 warn("%s(%s+0x%llx): Section mismatch: reference to %s:%s "
Sam Ravnborg93684d32006-02-19 11:53:35 +0100907 "before '%s' (at offset -0x%llx)\n",
Russell King256012092007-05-10 23:03:25 +0100908 modname, fromsec, (unsigned long long)r.r_offset,
909 secname, refsymname,
910 elf->strtab + after->st_name);
Sam Ravnborgb39927c2006-02-17 22:42:02 +0100911 } else {
Russell King256012092007-05-10 23:03:25 +0100912 warn("%s(%s+0x%llx): Section mismatch: reference to %s:%s\n",
913 modname, fromsec, (unsigned long long)r.r_offset,
914 secname, refsymname);
Sam Ravnborgb39927c2006-02-17 22:42:02 +0100915 }
916}
917
Atsushi Nemotoae4ac122007-05-22 18:27:39 +0900918static unsigned int *reloc_location(struct elf_info *elf,
919 int rsection, Elf_Rela *r)
920{
921 Elf_Shdr *sechdrs = elf->sechdrs;
922 int section = sechdrs[rsection].sh_info;
923
924 return (void *)elf->hdr + sechdrs[section].sh_offset +
925 (r->r_offset - sechdrs[section].sh_addr);
926}
927
928static int addend_386_rel(struct elf_info *elf, int rsection, Elf_Rela *r)
929{
930 unsigned int r_typ = ELF_R_TYPE(r->r_info);
931 unsigned int *location = reloc_location(elf, rsection, r);
932
933 switch (r_typ) {
934 case R_386_32:
935 r->r_addend = TO_NATIVE(*location);
936 break;
937 case R_386_PC32:
938 r->r_addend = TO_NATIVE(*location) + 4;
939 /* For CONFIG_RELOCATABLE=y */
940 if (elf->hdr->e_type == ET_EXEC)
941 r->r_addend += r->r_offset;
942 break;
943 }
944 return 0;
945}
946
Sam Ravnborg56a974f2007-07-16 22:39:35 +0200947static int addend_arm_rel(struct elf_info *elf, int rsection, Elf_Rela *r)
948{
949 unsigned int r_typ = ELF_R_TYPE(r->r_info);
950
951 switch (r_typ) {
952 case R_ARM_ABS32:
953 /* From ARM ABI: (S + A) | T */
954 r->r_addend = (int)(long)(elf->symtab_start + ELF_R_SYM(r->r_info));
955 break;
956 case R_ARM_PC24:
957 /* From ARM ABI: ((S + A) | T) - P */
958 r->r_addend = (int)(long)(elf->hdr + elf->sechdrs[rsection].sh_offset +
959 (r->r_offset - elf->sechdrs[rsection].sh_addr));
960 break;
961 default:
962 return 1;
963 }
964 return 0;
965}
966
Atsushi Nemotoae4ac122007-05-22 18:27:39 +0900967static int addend_mips_rel(struct elf_info *elf, int rsection, Elf_Rela *r)
968{
969 unsigned int r_typ = ELF_R_TYPE(r->r_info);
970 unsigned int *location = reloc_location(elf, rsection, r);
971 unsigned int inst;
972
973 if (r_typ == R_MIPS_HI16)
974 return 1; /* skip this */
975 inst = TO_NATIVE(*location);
976 switch (r_typ) {
977 case R_MIPS_LO16:
978 r->r_addend = inst & 0xffff;
979 break;
980 case R_MIPS_26:
981 r->r_addend = (inst & 0x03ffffff) << 2;
982 break;
983 case R_MIPS_32:
984 r->r_addend = inst;
985 break;
986 }
987 return 0;
988}
989
Sam Ravnborgb39927c2006-02-17 22:42:02 +0100990/**
991 * A module includes a number of sections that are discarded
992 * either when loaded or when used as built-in.
993 * For loaded modules all functions marked __init and all data
994 * marked __initdata will be discarded when the module has been intialized.
995 * Likewise for modules used built-in the sections marked __exit
996 * are discarded because __exit marked function are supposed to be called
997 * only when a moduel is unloaded which never happes for built-in modules.
998 * The check_sec_ref() function traverses all relocation records
999 * to find all references to a section that reference a section that will
1000 * be discarded and warns about it.
1001 **/
1002static void check_sec_ref(struct module *mod, const char *modname,
1003 struct elf_info *elf,
1004 int section(const char*),
1005 int section_ref_ok(const char *))
1006{
1007 int i;
1008 Elf_Sym *sym;
1009 Elf_Ehdr *hdr = elf->hdr;
1010 Elf_Shdr *sechdrs = elf->sechdrs;
1011 const char *secstrings = (void *)hdr +
1012 sechdrs[hdr->e_shstrndx].sh_offset;
Sam Ravnborg62070fa2006-03-03 16:46:04 +01001013
Sam Ravnborgb39927c2006-02-17 22:42:02 +01001014 /* Walk through all sections */
1015 for (i = 0; i < hdr->e_shnum; i++) {
Atsushi Nemoto2c1a51f2006-05-20 15:00:26 -07001016 const char *name = secstrings + sechdrs[i].sh_name;
1017 const char *secname;
1018 Elf_Rela r;
Atsushi Nemotoeae07ac2006-05-20 15:00:28 -07001019 unsigned int r_sym;
Sam Ravnborgb39927c2006-02-17 22:42:02 +01001020 /* We want to process only relocation sections and not .init */
Atsushi Nemoto2c1a51f2006-05-20 15:00:26 -07001021 if (sechdrs[i].sh_type == SHT_RELA) {
1022 Elf_Rela *rela;
1023 Elf_Rela *start = (void *)hdr + sechdrs[i].sh_offset;
1024 Elf_Rela *stop = (void*)start + sechdrs[i].sh_size;
1025 name += strlen(".rela");
1026 if (section_ref_ok(name))
Sam Ravnborgb39927c2006-02-17 22:42:02 +01001027 continue;
1028
Atsushi Nemoto2c1a51f2006-05-20 15:00:26 -07001029 for (rela = start; rela < stop; rela++) {
1030 r.r_offset = TO_NATIVE(rela->r_offset);
Atsushi Nemotoeae07ac2006-05-20 15:00:28 -07001031#if KERNEL_ELFCLASS == ELFCLASS64
1032 if (hdr->e_machine == EM_MIPS) {
Atsushi Nemotoae4ac122007-05-22 18:27:39 +09001033 unsigned int r_typ;
Atsushi Nemotoeae07ac2006-05-20 15:00:28 -07001034 r_sym = ELF64_MIPS_R_SYM(rela->r_info);
1035 r_sym = TO_NATIVE(r_sym);
Atsushi Nemotoae4ac122007-05-22 18:27:39 +09001036 r_typ = ELF64_MIPS_R_TYPE(rela->r_info);
1037 r.r_info = ELF64_R_INFO(r_sym, r_typ);
Atsushi Nemotoeae07ac2006-05-20 15:00:28 -07001038 } else {
1039 r.r_info = TO_NATIVE(rela->r_info);
1040 r_sym = ELF_R_SYM(r.r_info);
1041 }
1042#else
1043 r.r_info = TO_NATIVE(rela->r_info);
1044 r_sym = ELF_R_SYM(r.r_info);
1045#endif
Atsushi Nemoto2c1a51f2006-05-20 15:00:26 -07001046 r.r_addend = TO_NATIVE(rela->r_addend);
Atsushi Nemotoeae07ac2006-05-20 15:00:28 -07001047 sym = elf->symtab_start + r_sym;
Atsushi Nemoto2c1a51f2006-05-20 15:00:26 -07001048 /* Skip special sections */
1049 if (sym->st_shndx >= SHN_LORESERVE)
1050 continue;
1051
1052 secname = secstrings +
1053 sechdrs[sym->st_shndx].sh_name;
1054 if (section(secname))
1055 warn_sec_mismatch(modname, name,
1056 elf, sym, r);
1057 }
1058 } else if (sechdrs[i].sh_type == SHT_REL) {
1059 Elf_Rel *rel;
1060 Elf_Rel *start = (void *)hdr + sechdrs[i].sh_offset;
1061 Elf_Rel *stop = (void*)start + sechdrs[i].sh_size;
1062 name += strlen(".rel");
1063 if (section_ref_ok(name))
1064 continue;
1065
1066 for (rel = start; rel < stop; rel++) {
1067 r.r_offset = TO_NATIVE(rel->r_offset);
Atsushi Nemotoeae07ac2006-05-20 15:00:28 -07001068#if KERNEL_ELFCLASS == ELFCLASS64
1069 if (hdr->e_machine == EM_MIPS) {
Atsushi Nemotoae4ac122007-05-22 18:27:39 +09001070 unsigned int r_typ;
Atsushi Nemotoeae07ac2006-05-20 15:00:28 -07001071 r_sym = ELF64_MIPS_R_SYM(rel->r_info);
1072 r_sym = TO_NATIVE(r_sym);
Atsushi Nemotoae4ac122007-05-22 18:27:39 +09001073 r_typ = ELF64_MIPS_R_TYPE(rel->r_info);
1074 r.r_info = ELF64_R_INFO(r_sym, r_typ);
Atsushi Nemotoeae07ac2006-05-20 15:00:28 -07001075 } else {
1076 r.r_info = TO_NATIVE(rel->r_info);
1077 r_sym = ELF_R_SYM(r.r_info);
1078 }
1079#else
1080 r.r_info = TO_NATIVE(rel->r_info);
1081 r_sym = ELF_R_SYM(r.r_info);
1082#endif
Atsushi Nemoto2c1a51f2006-05-20 15:00:26 -07001083 r.r_addend = 0;
Atsushi Nemotoae4ac122007-05-22 18:27:39 +09001084 switch (hdr->e_machine) {
1085 case EM_386:
1086 if (addend_386_rel(elf, i, &r))
1087 continue;
1088 break;
Sam Ravnborg56a974f2007-07-16 22:39:35 +02001089 case EM_ARM:
1090 if(addend_arm_rel(elf, i, &r))
1091 continue;
1092 break;
Atsushi Nemotoae4ac122007-05-22 18:27:39 +09001093 case EM_MIPS:
1094 if (addend_mips_rel(elf, i, &r))
1095 continue;
1096 break;
1097 }
Atsushi Nemotoeae07ac2006-05-20 15:00:28 -07001098 sym = elf->symtab_start + r_sym;
Atsushi Nemoto2c1a51f2006-05-20 15:00:26 -07001099 /* Skip special sections */
1100 if (sym->st_shndx >= SHN_LORESERVE)
1101 continue;
1102
1103 secname = secstrings +
1104 sechdrs[sym->st_shndx].sh_name;
1105 if (section(secname))
1106 warn_sec_mismatch(modname, name,
1107 elf, sym, r);
1108 }
Sam Ravnborgb39927c2006-02-17 22:42:02 +01001109 }
1110 }
1111}
1112
Sam Ravnborg10872472007-06-02 21:18:51 +02001113/*
1114 * Identify sections from which references to either a
1115 * .init or a .exit section is OK.
1116 *
1117 * [OPD] Keith Ownes <kaos@sgi.com> commented:
1118 * For our future {in}sanity, add a comment that this is the ppc .opd
1119 * section, not the ia64 .opd section.
1120 * ia64 .opd should not point to discarded sections.
1121 * [.rodata] like for .init.text we ignore .rodata references -same reason
Sam Ravnborg1d8af552007-06-03 00:41:22 +02001122 */
Sam Ravnborg10872472007-06-02 21:18:51 +02001123static int initexit_section_ref_ok(const char *name)
1124{
1125 const char **s;
1126 /* Absolute section names */
1127 const char *namelist1[] = {
1128 "__bug_table", /* used by powerpc for BUG() */
1129 "__ex_table",
1130 ".altinstructions",
1131 ".cranges", /* used by sh64 */
1132 ".fixup",
Sam Ravnborg1d8af552007-06-03 00:41:22 +02001133 ".machvec", /* ia64 + powerpc uses these */
1134 ".machine.desc",
Sam Ravnborg10872472007-06-02 21:18:51 +02001135 ".opd", /* See comment [OPD] */
Ralf Baechlead0b1422007-07-31 00:38:47 -07001136 "__dbe_table",
Sam Ravnborg10872472007-06-02 21:18:51 +02001137 ".parainstructions",
1138 ".pdr",
1139 ".plt", /* seen on ARCH=um build on x86_64. Harmless */
1140 ".smp_locks",
1141 ".stab",
Al Viro3a5df1d2007-07-20 04:32:48 +01001142 ".m68k_fixup",
Sam Ravnborgcb7e51d2007-07-25 22:24:52 +02001143 ".xt.prop", /* xtensa informational section */
1144 ".xt.lit", /* xtensa informational section */
Sam Ravnborg10872472007-06-02 21:18:51 +02001145 NULL
1146 };
1147 /* Start of section names */
1148 const char *namelist2[] = {
1149 ".debug",
1150 ".eh_frame",
1151 ".note", /* ignore ELF notes - may contain anything */
1152 ".got", /* powerpc - global offset table */
1153 ".toc", /* powerpc - table of contents */
1154 NULL
1155 };
1156 /* part of section name */
1157 const char *namelist3 [] = {
1158 ".unwind", /* Sample: IA_64.unwind.exit.text */
1159 NULL
1160 };
1161
1162 for (s = namelist1; *s; s++)
1163 if (strcmp(*s, name) == 0)
1164 return 1;
1165 for (s = namelist2; *s; s++)
1166 if (strncmp(*s, name, strlen(*s)) == 0)
1167 return 1;
1168 for (s = namelist3; *s; s++)
1169 if (strstr(name, *s) != NULL)
1170 return 1;
1171 return 0;
1172}
1173
Sam Ravnborgb39927c2006-02-17 22:42:02 +01001174
Sam Ravnborg10872472007-06-02 21:18:51 +02001175/*
Sam Ravnborgb39927c2006-02-17 22:42:02 +01001176 * Identify sections from which references to a .init section is OK.
Sam Ravnborg62070fa2006-03-03 16:46:04 +01001177 *
Sam Ravnborgb39927c2006-02-17 22:42:02 +01001178 * Unfortunately references to read only data that referenced .init
1179 * sections had to be excluded. Almost all of these are false
1180 * positives, they are created by gcc. The downside of excluding rodata
1181 * is that there really are some user references from rodata to
1182 * init code, e.g. drivers/video/vgacon.c:
Sam Ravnborg62070fa2006-03-03 16:46:04 +01001183 *
Sam Ravnborgb39927c2006-02-17 22:42:02 +01001184 * const struct consw vga_con = {
1185 * con_startup: vgacon_startup,
1186 *
1187 * where vgacon_startup is __init. If you want to wade through the false
1188 * positives, take out the check for rodata.
Sam Ravnborg10872472007-06-02 21:18:51 +02001189 */
Sam Ravnborgb39927c2006-02-17 22:42:02 +01001190static int init_section_ref_ok(const char *name)
1191{
1192 const char **s;
1193 /* Absolute section names */
1194 const char *namelist1[] = {
Ralf Baechleeec73e82007-07-10 09:16:32 +01001195 "__dbe_table", /* MIPS generate these */
Benjamin Herrenschmidt21c4ff82006-10-20 11:47:19 +10001196 "__ftr_fixup", /* powerpc cpu feature fixup */
1197 "__fw_ftr_fixup", /* powerpc firmware feature fixup */
Sam Ravnborg10872472007-06-02 21:18:51 +02001198 "__param",
1199 ".data.rel.ro", /* used by parisc64 */
1200 ".init",
1201 ".text.lock",
Sam Ravnborgb39927c2006-02-17 22:42:02 +01001202 NULL
1203 };
1204 /* Start of section names */
1205 const char *namelist2[] = {
1206 ".init.",
Sam Ravnborg10872472007-06-02 21:18:51 +02001207 ".pci_fixup",
Matthew Wilcox742433b2007-02-05 16:34:00 -08001208 ".rodata",
Sam Ravnborgb39927c2006-02-17 22:42:02 +01001209 NULL
1210 };
Sam Ravnborg10872472007-06-02 21:18:51 +02001211
1212 if (initexit_section_ref_ok(name))
1213 return 1;
Sam Ravnborg6e101332006-02-22 21:24:50 +01001214
Sam Ravnborgb39927c2006-02-17 22:42:02 +01001215 for (s = namelist1; *s; s++)
1216 if (strcmp(*s, name) == 0)
1217 return 1;
Sam Ravnborg62070fa2006-03-03 16:46:04 +01001218 for (s = namelist2; *s; s++)
Sam Ravnborgb39927c2006-02-17 22:42:02 +01001219 if (strncmp(*s, name, strlen(*s)) == 0)
1220 return 1;
Sam Ravnborg10872472007-06-02 21:18:51 +02001221
1222 /* If section name ends with ".init" we allow references
1223 * as is the case with .initcallN.init, .early_param.init, .taglist.init etc
1224 */
Al Viro468d9492006-06-23 23:22:43 +01001225 if (strrcmp(name, ".init") == 0)
1226 return 1;
Sam Ravnborgb39927c2006-02-17 22:42:02 +01001227 return 0;
1228}
1229
1230/*
Sam Ravnborgb39927c2006-02-17 22:42:02 +01001231 * Identify sections from which references to a .exit section is OK.
Sam Ravnborg10872472007-06-02 21:18:51 +02001232 */
Sam Ravnborgb39927c2006-02-17 22:42:02 +01001233static int exit_section_ref_ok(const char *name)
1234{
1235 const char **s;
1236 /* Absolute section names */
1237 const char *namelist1[] = {
Sam Ravnborgb39927c2006-02-17 22:42:02 +01001238 ".exit.data",
Sam Ravnborg10872472007-06-02 21:18:51 +02001239 ".exit.text",
1240 ".exitcall.exit",
Sam Ravnborg5ecdd0f2006-04-14 23:54:13 +02001241 ".rodata",
Sam Ravnborg6e101332006-02-22 21:24:50 +01001242 NULL
1243 };
Sam Ravnborg62070fa2006-03-03 16:46:04 +01001244
Sam Ravnborg10872472007-06-02 21:18:51 +02001245 if (initexit_section_ref_ok(name))
1246 return 1;
1247
Sam Ravnborgb39927c2006-02-17 22:42:02 +01001248 for (s = namelist1; *s; s++)
1249 if (strcmp(*s, name) == 0)
1250 return 1;
Sam Ravnborgb39927c2006-02-17 22:42:02 +01001251 return 0;
1252}
1253
Sam Ravnborg5c3ead82006-01-28 17:19:35 +01001254static void read_symbols(char *modname)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001255{
1256 const char *symname;
1257 char *version;
Sam Ravnborgb817f6f2006-06-09 21:53:55 +02001258 char *license;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001259 struct module *mod;
1260 struct elf_info info = { };
1261 Elf_Sym *sym;
1262
Sam Ravnborg85bd2fd2007-02-26 15:33:52 +01001263 if (!parse_elf(&info, modname))
1264 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001265
1266 mod = new_module(modname);
1267
1268 /* When there's no vmlinux, don't print warnings about
1269 * unresolved symbols (since there'll be too many ;) */
1270 if (is_vmlinux(modname)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001271 have_vmlinux = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001272 mod->skip = 1;
1273 }
1274
Sam Ravnborgb817f6f2006-06-09 21:53:55 +02001275 license = get_modinfo(info.modinfo, info.modinfo_len, "license");
1276 while (license) {
1277 if (license_is_gpl_compatible(license))
1278 mod->gpl_compatible = 1;
1279 else {
1280 mod->gpl_compatible = 0;
1281 break;
1282 }
1283 license = get_next_modinfo(info.modinfo, info.modinfo_len,
1284 "license", license);
1285 }
1286
Linus Torvalds1da177e2005-04-16 15:20:36 -07001287 for (sym = info.symtab_start; sym < info.symtab_stop; sym++) {
1288 symname = info.strtab + sym->st_name;
1289
1290 handle_modversions(mod, &info, sym, symname);
1291 handle_moddevtable(mod, &info, sym, symname);
1292 }
Sam Ravnborg8d8d8282007-07-20 22:36:56 +02001293 if (is_vmlinux(modname) && vmlinux_section_warnings) {
1294 check_sec_ref(mod, modname, &info, init_section, init_section_ref_ok);
1295 check_sec_ref(mod, modname, &info, exit_section, exit_section_ref_ok);
1296 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001297
1298 version = get_modinfo(info.modinfo, info.modinfo_len, "version");
1299 if (version)
1300 maybe_frob_rcs_version(modname, version, info.modinfo,
1301 version - (char *)info.hdr);
1302 if (version || (all_versions && !is_vmlinux(modname)))
1303 get_src_version(modname, mod->srcversion,
1304 sizeof(mod->srcversion)-1);
1305
1306 parse_elf_finish(&info);
1307
1308 /* Our trick to get versioning for struct_module - it's
1309 * never passed as an argument to an exported function, so
1310 * the automatic versioning doesn't pick it up, but it's really
1311 * important anyhow */
1312 if (modversions)
1313 mod->unres = alloc_symbol("struct_module", 0, mod->unres);
1314}
1315
1316#define SZ 500
1317
1318/* We first write the generated file into memory using the
1319 * following helper, then compare to the file on disk and
1320 * only update the later if anything changed */
1321
Sam Ravnborg5c3ead82006-01-28 17:19:35 +01001322void __attribute__((format(printf, 2, 3))) buf_printf(struct buffer *buf,
1323 const char *fmt, ...)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001324{
1325 char tmp[SZ];
1326 int len;
1327 va_list ap;
Sam Ravnborg62070fa2006-03-03 16:46:04 +01001328
Linus Torvalds1da177e2005-04-16 15:20:36 -07001329 va_start(ap, fmt);
1330 len = vsnprintf(tmp, SZ, fmt, ap);
Sam Ravnborg7670f022006-03-16 23:04:08 -08001331 buf_write(buf, tmp, len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001332 va_end(ap);
1333}
1334
Sam Ravnborg5c3ead82006-01-28 17:19:35 +01001335void buf_write(struct buffer *buf, const char *s, int len)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001336{
1337 if (buf->size - buf->pos < len) {
Sam Ravnborg7670f022006-03-16 23:04:08 -08001338 buf->size += len + SZ;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001339 buf->p = realloc(buf->p, buf->size);
1340 }
1341 strncpy(buf->p + buf->pos, s, len);
1342 buf->pos += len;
1343}
1344
Sam Ravnborgc96fca22006-07-01 11:44:23 +02001345static void check_for_gpl_usage(enum export exp, const char *m, const char *s)
1346{
1347 const char *e = is_vmlinux(m) ?"":".ko";
1348
1349 switch (exp) {
1350 case export_gpl:
1351 fatal("modpost: GPL-incompatible module %s%s "
1352 "uses GPL-only symbol '%s'\n", m, e, s);
1353 break;
1354 case export_unused_gpl:
1355 fatal("modpost: GPL-incompatible module %s%s "
1356 "uses GPL-only symbol marked UNUSED '%s'\n", m, e, s);
1357 break;
1358 case export_gpl_future:
1359 warn("modpost: GPL-incompatible module %s%s "
1360 "uses future GPL-only symbol '%s'\n", m, e, s);
1361 break;
1362 case export_plain:
1363 case export_unused:
1364 case export_unknown:
1365 /* ignore */
1366 break;
1367 }
1368}
1369
1370static void check_for_unused(enum export exp, const char* m, const char* s)
1371{
1372 const char *e = is_vmlinux(m) ?"":".ko";
1373
1374 switch (exp) {
1375 case export_unused:
1376 case export_unused_gpl:
1377 warn("modpost: module %s%s "
1378 "uses symbol '%s' marked UNUSED\n", m, e, s);
1379 break;
1380 default:
1381 /* ignore */
1382 break;
1383 }
1384}
1385
1386static void check_exports(struct module *mod)
Sam Ravnborgb817f6f2006-06-09 21:53:55 +02001387{
1388 struct symbol *s, *exp;
1389
1390 for (s = mod->unres; s; s = s->next) {
Andrew Morton6449bd62006-06-09 20:45:06 -07001391 const char *basename;
Sam Ravnborgb817f6f2006-06-09 21:53:55 +02001392 exp = find_symbol(s->name);
1393 if (!exp || exp->module == mod)
1394 continue;
Andrew Morton6449bd62006-06-09 20:45:06 -07001395 basename = strrchr(mod->name, '/');
Sam Ravnborgb817f6f2006-06-09 21:53:55 +02001396 if (basename)
1397 basename++;
Sam Ravnborgc96fca22006-07-01 11:44:23 +02001398 else
1399 basename = mod->name;
1400 if (!mod->gpl_compatible)
1401 check_for_gpl_usage(exp->export, basename, exp->name);
1402 check_for_unused(exp->export, basename, exp->name);
Sam Ravnborgb817f6f2006-06-09 21:53:55 +02001403 }
1404}
1405
Sam Ravnborg5c3ead82006-01-28 17:19:35 +01001406/**
1407 * Header for the generated file
1408 **/
1409static void add_header(struct buffer *b, struct module *mod)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001410{
1411 buf_printf(b, "#include <linux/module.h>\n");
1412 buf_printf(b, "#include <linux/vermagic.h>\n");
1413 buf_printf(b, "#include <linux/compiler.h>\n");
1414 buf_printf(b, "\n");
1415 buf_printf(b, "MODULE_INFO(vermagic, VERMAGIC_STRING);\n");
1416 buf_printf(b, "\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001417 buf_printf(b, "struct module __this_module\n");
1418 buf_printf(b, "__attribute__((section(\".gnu.linkonce.this_module\"))) = {\n");
Ustyugov Romanf83b5e32005-09-23 08:42:11 +04001419 buf_printf(b, " .name = KBUILD_MODNAME,\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001420 if (mod->has_init)
1421 buf_printf(b, " .init = init_module,\n");
1422 if (mod->has_cleanup)
1423 buf_printf(b, "#ifdef CONFIG_MODULE_UNLOAD\n"
1424 " .exit = cleanup_module,\n"
1425 "#endif\n");
Roman Zippele61a1c12007-05-09 02:35:15 -07001426 buf_printf(b, " .arch = MODULE_ARCH_INIT,\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001427 buf_printf(b, "};\n");
1428}
1429
Sam Ravnborg5c3ead82006-01-28 17:19:35 +01001430/**
1431 * Record CRCs for unresolved symbols
1432 **/
Kirill Korotaevc53ddac2006-09-07 13:08:54 -07001433static int add_versions(struct buffer *b, struct module *mod)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001434{
1435 struct symbol *s, *exp;
Kirill Korotaevc53ddac2006-09-07 13:08:54 -07001436 int err = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001437
1438 for (s = mod->unres; s; s = s->next) {
1439 exp = find_symbol(s->name);
1440 if (!exp || exp->module == mod) {
Kirill Korotaevc53ddac2006-09-07 13:08:54 -07001441 if (have_vmlinux && !s->weak) {
Matthew Wilcox2a116652006-10-07 05:35:32 -06001442 if (warn_unresolved) {
1443 warn("\"%s\" [%s.ko] undefined!\n",
1444 s->name, mod->name);
1445 } else {
1446 merror("\"%s\" [%s.ko] undefined!\n",
1447 s->name, mod->name);
1448 err = 1;
1449 }
Kirill Korotaevc53ddac2006-09-07 13:08:54 -07001450 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001451 continue;
1452 }
1453 s->module = exp->module;
1454 s->crc_valid = exp->crc_valid;
1455 s->crc = exp->crc;
1456 }
1457
1458 if (!modversions)
Kirill Korotaevc53ddac2006-09-07 13:08:54 -07001459 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001460
1461 buf_printf(b, "\n");
1462 buf_printf(b, "static const struct modversion_info ____versions[]\n");
1463 buf_printf(b, "__attribute_used__\n");
1464 buf_printf(b, "__attribute__((section(\"__versions\"))) = {\n");
1465
1466 for (s = mod->unres; s; s = s->next) {
1467 if (!s->module) {
1468 continue;
1469 }
1470 if (!s->crc_valid) {
Sam Ravnborgcb805142006-01-28 16:57:26 +01001471 warn("\"%s\" [%s.ko] has no CRC!\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07001472 s->name, mod->name);
1473 continue;
1474 }
1475 buf_printf(b, "\t{ %#8x, \"%s\" },\n", s->crc, s->name);
1476 }
1477
1478 buf_printf(b, "};\n");
Kirill Korotaevc53ddac2006-09-07 13:08:54 -07001479
1480 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001481}
1482
Sam Ravnborg5c3ead82006-01-28 17:19:35 +01001483static void add_depends(struct buffer *b, struct module *mod,
1484 struct module *modules)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001485{
1486 struct symbol *s;
1487 struct module *m;
1488 int first = 1;
1489
1490 for (m = modules; m; m = m->next) {
1491 m->seen = is_vmlinux(m->name);
1492 }
1493
1494 buf_printf(b, "\n");
1495 buf_printf(b, "static const char __module_depends[]\n");
1496 buf_printf(b, "__attribute_used__\n");
1497 buf_printf(b, "__attribute__((section(\".modinfo\"))) =\n");
1498 buf_printf(b, "\"depends=");
1499 for (s = mod->unres; s; s = s->next) {
Sam Ravnborga61b2df2007-02-26 19:46:52 +01001500 const char *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001501 if (!s->module)
1502 continue;
1503
1504 if (s->module->seen)
1505 continue;
1506
1507 s->module->seen = 1;
Sam Ravnborga61b2df2007-02-26 19:46:52 +01001508 if ((p = strrchr(s->module->name, '/')) != NULL)
1509 p++;
1510 else
1511 p = s->module->name;
1512 buf_printf(b, "%s%s", first ? "" : ",", p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001513 first = 0;
1514 }
1515 buf_printf(b, "\";\n");
1516}
1517
Sam Ravnborg5c3ead82006-01-28 17:19:35 +01001518static void add_srcversion(struct buffer *b, struct module *mod)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001519{
1520 if (mod->srcversion[0]) {
1521 buf_printf(b, "\n");
1522 buf_printf(b, "MODULE_INFO(srcversion, \"%s\");\n",
1523 mod->srcversion);
1524 }
1525}
1526
Sam Ravnborg5c3ead82006-01-28 17:19:35 +01001527static void write_if_changed(struct buffer *b, const char *fname)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001528{
1529 char *tmp;
1530 FILE *file;
1531 struct stat st;
1532
1533 file = fopen(fname, "r");
1534 if (!file)
1535 goto write;
1536
1537 if (fstat(fileno(file), &st) < 0)
1538 goto close_write;
1539
1540 if (st.st_size != b->pos)
1541 goto close_write;
1542
1543 tmp = NOFAIL(malloc(b->pos));
1544 if (fread(tmp, 1, b->pos, file) != b->pos)
1545 goto free_write;
1546
1547 if (memcmp(tmp, b->p, b->pos) != 0)
1548 goto free_write;
1549
1550 free(tmp);
1551 fclose(file);
1552 return;
1553
1554 free_write:
1555 free(tmp);
1556 close_write:
1557 fclose(file);
1558 write:
1559 file = fopen(fname, "w");
1560 if (!file) {
1561 perror(fname);
1562 exit(1);
1563 }
1564 if (fwrite(b->p, 1, b->pos, file) != b->pos) {
1565 perror(fname);
1566 exit(1);
1567 }
1568 fclose(file);
1569}
1570
Ram Paibd5cbce2006-06-08 22:12:53 -07001571/* parse Module.symvers file. line format:
Sam Ravnborg534b89a2006-07-01 10:10:19 +02001572 * 0x12345678<tab>symbol<tab>module[[<tab>export]<tab>something]
Ram Paibd5cbce2006-06-08 22:12:53 -07001573 **/
Sam Ravnborg040fcc82006-01-28 22:15:55 +01001574static void read_dump(const char *fname, unsigned int kernel)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001575{
1576 unsigned long size, pos = 0;
1577 void *file = grab_file(fname, &size);
1578 char *line;
1579
1580 if (!file)
1581 /* No symbol versions, silently ignore */
1582 return;
1583
1584 while ((line = get_next_line(&pos, file, size))) {
Sam Ravnborg534b89a2006-07-01 10:10:19 +02001585 char *symname, *modname, *d, *export, *end;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001586 unsigned int crc;
1587 struct module *mod;
Sam Ravnborg040fcc82006-01-28 22:15:55 +01001588 struct symbol *s;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001589
1590 if (!(symname = strchr(line, '\t')))
1591 goto fail;
1592 *symname++ = '\0';
1593 if (!(modname = strchr(symname, '\t')))
1594 goto fail;
1595 *modname++ = '\0';
Laurent Riffard9ac545b2006-06-11 08:02:06 +02001596 if ((export = strchr(modname, '\t')) != NULL)
Ram Paibd5cbce2006-06-08 22:12:53 -07001597 *export++ = '\0';
Sam Ravnborg534b89a2006-07-01 10:10:19 +02001598 if (export && ((end = strchr(export, '\t')) != NULL))
1599 *end = '\0';
Linus Torvalds1da177e2005-04-16 15:20:36 -07001600 crc = strtoul(line, &d, 16);
1601 if (*symname == '\0' || *modname == '\0' || *d != '\0')
1602 goto fail;
1603
1604 if (!(mod = find_module(modname))) {
1605 if (is_vmlinux(modname)) {
1606 have_vmlinux = 1;
1607 }
1608 mod = new_module(NOFAIL(strdup(modname)));
1609 mod->skip = 1;
1610 }
Ram Paibd5cbce2006-06-08 22:12:53 -07001611 s = sym_add_exported(symname, mod, export_no(export));
Sam Ravnborg8e70c452006-01-28 22:22:33 +01001612 s->kernel = kernel;
1613 s->preloaded = 1;
Ram Paibd5cbce2006-06-08 22:12:53 -07001614 sym_update_crc(symname, mod, crc, export_no(export));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001615 }
1616 return;
1617fail:
1618 fatal("parse error in symbol dump file\n");
1619}
1620
Sam Ravnborg040fcc82006-01-28 22:15:55 +01001621/* For normal builds always dump all symbols.
1622 * For external modules only dump symbols
1623 * that are not read from kernel Module.symvers.
1624 **/
1625static int dump_sym(struct symbol *sym)
1626{
1627 if (!external_module)
1628 return 1;
1629 if (sym->vmlinux || sym->kernel)
1630 return 0;
1631 return 1;
1632}
Sam Ravnborg62070fa2006-03-03 16:46:04 +01001633
Sam Ravnborg5c3ead82006-01-28 17:19:35 +01001634static void write_dump(const char *fname)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001635{
1636 struct buffer buf = { };
1637 struct symbol *symbol;
1638 int n;
1639
1640 for (n = 0; n < SYMBOL_HASH_SIZE ; n++) {
1641 symbol = symbolhash[n];
1642 while (symbol) {
Sam Ravnborg040fcc82006-01-28 22:15:55 +01001643 if (dump_sym(symbol))
Ram Paibd5cbce2006-06-08 22:12:53 -07001644 buf_printf(&buf, "0x%08x\t%s\t%s\t%s\n",
Sam Ravnborg62070fa2006-03-03 16:46:04 +01001645 symbol->crc, symbol->name,
Ram Paibd5cbce2006-06-08 22:12:53 -07001646 symbol->module->name,
1647 export_str(symbol->export));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001648 symbol = symbol->next;
1649 }
1650 }
1651 write_if_changed(&buf, fname);
1652}
1653
Sam Ravnborg5c3ead82006-01-28 17:19:35 +01001654int main(int argc, char **argv)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001655{
1656 struct module *mod;
1657 struct buffer buf = { };
1658 char fname[SZ];
Sam Ravnborg040fcc82006-01-28 22:15:55 +01001659 char *kernel_read = NULL, *module_read = NULL;
1660 char *dump_write = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001661 int opt;
Kirill Korotaevc53ddac2006-09-07 13:08:54 -07001662 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001663
Sam Ravnborg8d8d8282007-07-20 22:36:56 +02001664 while ((opt = getopt(argc, argv, "i:I:mso:aw")) != -1) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001665 switch(opt) {
1666 case 'i':
Sam Ravnborg040fcc82006-01-28 22:15:55 +01001667 kernel_read = optarg;
1668 break;
1669 case 'I':
1670 module_read = optarg;
1671 external_module = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001672 break;
1673 case 'm':
1674 modversions = 1;
1675 break;
1676 case 'o':
1677 dump_write = optarg;
1678 break;
1679 case 'a':
1680 all_versions = 1;
1681 break;
Sam Ravnborg8d8d8282007-07-20 22:36:56 +02001682 case 's':
1683 vmlinux_section_warnings = 0;
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}