blob: 88921611b22e62e9b0792ea1cc5affe789a07964 [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 Ravnborgdf578e72008-01-11 19:17:15 +01005 * Copyright 2006-2008 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
Mathieu Desnoyersb2e3e652008-02-13 15:03:39 -080014#define _GNU_SOURCE
15#include <stdio.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070016#include <ctype.h>
17#include "modpost.h"
Sam Ravnborgb817f6f2006-06-09 21:53:55 +020018#include "../../include/linux/license.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070019
20/* Are we using CONFIG_MODVERSIONS? */
21int modversions = 0;
22/* Warn about undefined symbols? (do so if we have vmlinux) */
23int have_vmlinux = 0;
24/* Is CONFIG_MODULE_SRCVERSION_ALL set? */
25static int all_versions = 0;
Sam Ravnborg040fcc82006-01-28 22:15:55 +010026/* If we are modposting external module set to 1 */
27static int external_module = 0;
Sam Ravnborg8d8d8282007-07-20 22:36:56 +020028/* Warn about section mismatch in vmlinux if set to 1 */
29static int vmlinux_section_warnings = 1;
Kirill Korotaevc53ddac2006-09-07 13:08:54 -070030/* Only warn about unresolved symbols */
31static int warn_unresolved = 0;
Ram Paibd5cbce2006-06-08 22:12:53 -070032/* How a symbol is exported */
Sam Ravnborg588ccd72008-01-24 21:12:37 +010033static int sec_mismatch_count = 0;
34static int sec_mismatch_verbose = 1;
35
Sam Ravnborgc96fca22006-07-01 11:44:23 +020036enum export {
37 export_plain, export_unused, export_gpl,
38 export_unused_gpl, export_gpl_future, export_unknown
39};
Linus Torvalds1da177e2005-04-16 15:20:36 -070040
Andi Kleen6d9a89e2007-11-22 03:43:08 +010041#define PRINTF __attribute__ ((format (printf, 1, 2)))
42
43PRINTF void fatal(const char *fmt, ...)
Linus Torvalds1da177e2005-04-16 15:20:36 -070044{
45 va_list arglist;
46
47 fprintf(stderr, "FATAL: ");
48
49 va_start(arglist, fmt);
50 vfprintf(stderr, fmt, arglist);
51 va_end(arglist);
52
53 exit(1);
54}
55
Andi Kleen6d9a89e2007-11-22 03:43:08 +010056PRINTF void warn(const char *fmt, ...)
Linus Torvalds1da177e2005-04-16 15:20:36 -070057{
58 va_list arglist;
59
60 fprintf(stderr, "WARNING: ");
61
62 va_start(arglist, fmt);
63 vfprintf(stderr, fmt, arglist);
64 va_end(arglist);
65}
66
Andi Kleen6d9a89e2007-11-22 03:43:08 +010067PRINTF void merror(const char *fmt, ...)
Matthew Wilcox2a116652006-10-07 05:35:32 -060068{
69 va_list arglist;
70
71 fprintf(stderr, "ERROR: ");
72
73 va_start(arglist, fmt);
74 vfprintf(stderr, fmt, arglist);
75 va_end(arglist);
76}
77
Sam Ravnborg040fcc82006-01-28 22:15:55 +010078static int is_vmlinux(const char *modname)
79{
80 const char *myname;
81
Sam Ravnborgdf578e72008-01-11 19:17:15 +010082 myname = strrchr(modname, '/');
83 if (myname)
Sam Ravnborg040fcc82006-01-28 22:15:55 +010084 myname++;
85 else
86 myname = modname;
87
Sam Ravnborg741f98f2007-07-17 10:54:06 +020088 return (strcmp(myname, "vmlinux") == 0) ||
89 (strcmp(myname, "vmlinux.o") == 0);
Sam Ravnborg040fcc82006-01-28 22:15:55 +010090}
91
Linus Torvalds1da177e2005-04-16 15:20:36 -070092void *do_nofail(void *ptr, const char *expr)
93{
Sam Ravnborgdf578e72008-01-11 19:17:15 +010094 if (!ptr)
Linus Torvalds1da177e2005-04-16 15:20:36 -070095 fatal("modpost: Memory allocation failure: %s.\n", expr);
Sam Ravnborgdf578e72008-01-11 19:17:15 +010096
Linus Torvalds1da177e2005-04-16 15:20:36 -070097 return ptr;
98}
99
100/* A list of all modules we processed */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700101static struct module *modules;
102
Sam Ravnborg5c3ead82006-01-28 17:19:35 +0100103static struct module *find_module(char *modname)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700104{
105 struct module *mod;
106
107 for (mod = modules; mod; mod = mod->next)
108 if (strcmp(mod->name, modname) == 0)
109 break;
110 return mod;
111}
112
Sam Ravnborg5c3ead82006-01-28 17:19:35 +0100113static struct module *new_module(char *modname)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700114{
115 struct module *mod;
116 char *p, *s;
Sam Ravnborg62070fa2006-03-03 16:46:04 +0100117
Linus Torvalds1da177e2005-04-16 15:20:36 -0700118 mod = NOFAIL(malloc(sizeof(*mod)));
119 memset(mod, 0, sizeof(*mod));
120 p = NOFAIL(strdup(modname));
121
122 /* strip trailing .o */
Sam Ravnborgdf578e72008-01-11 19:17:15 +0100123 s = strrchr(p, '.');
124 if (s != NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700125 if (strcmp(s, ".o") == 0)
126 *s = '\0';
127
128 /* add to list */
129 mod->name = p;
Sam Ravnborgb817f6f2006-06-09 21:53:55 +0200130 mod->gpl_compatible = -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700131 mod->next = modules;
132 modules = mod;
133
134 return mod;
135}
136
137/* A hash of all exported symbols,
138 * struct symbol is also used for lists of unresolved symbols */
139
140#define SYMBOL_HASH_SIZE 1024
141
142struct symbol {
143 struct symbol *next;
144 struct module *module;
145 unsigned int crc;
146 int crc_valid;
147 unsigned int weak:1;
Sam Ravnborg040fcc82006-01-28 22:15:55 +0100148 unsigned int vmlinux:1; /* 1 if symbol is defined in vmlinux */
149 unsigned int kernel:1; /* 1 if symbol is from kernel
150 * (only for external modules) **/
Sam Ravnborg8e70c452006-01-28 22:22:33 +0100151 unsigned int preloaded:1; /* 1 if symbol from Module.symvers */
Ram Paibd5cbce2006-06-08 22:12:53 -0700152 enum export export; /* Type of export */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700153 char name[0];
154};
155
156static struct symbol *symbolhash[SYMBOL_HASH_SIZE];
157
158/* This is based on the hash agorithm from gdbm, via tdb */
159static inline unsigned int tdb_hash(const char *name)
160{
161 unsigned value; /* Used to compute the hash value. */
162 unsigned i; /* Used to cycle through random values. */
163
164 /* Set the initial value from the key size. */
Sam Ravnborgdf578e72008-01-11 19:17:15 +0100165 for (value = 0x238F13AF * strlen(name), i = 0; name[i]; i++)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700166 value = (value + (((unsigned char *)name)[i] << (i*5 % 24)));
167
168 return (1103515243 * value + 12345);
169}
170
Sam Ravnborg5c3ead82006-01-28 17:19:35 +0100171/**
172 * Allocate a new symbols for use in the hash of exported symbols or
173 * the list of unresolved symbols per module
174 **/
175static struct symbol *alloc_symbol(const char *name, unsigned int weak,
176 struct symbol *next)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700177{
178 struct symbol *s = NOFAIL(malloc(sizeof(*s) + strlen(name) + 1));
179
180 memset(s, 0, sizeof(*s));
181 strcpy(s->name, name);
182 s->weak = weak;
183 s->next = next;
184 return s;
185}
186
187/* For the hash of exported symbols */
Ram Paibd5cbce2006-06-08 22:12:53 -0700188static struct symbol *new_symbol(const char *name, struct module *module,
189 enum export export)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700190{
191 unsigned int hash;
192 struct symbol *new;
193
194 hash = tdb_hash(name) % SYMBOL_HASH_SIZE;
195 new = symbolhash[hash] = alloc_symbol(name, 0, symbolhash[hash]);
196 new->module = module;
Ram Paibd5cbce2006-06-08 22:12:53 -0700197 new->export = export;
Sam Ravnborg040fcc82006-01-28 22:15:55 +0100198 return new;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700199}
200
Sam Ravnborg5c3ead82006-01-28 17:19:35 +0100201static struct symbol *find_symbol(const char *name)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700202{
203 struct symbol *s;
204
205 /* For our purposes, .foo matches foo. PPC64 needs this. */
206 if (name[0] == '.')
207 name++;
208
Sam Ravnborgdf578e72008-01-11 19:17:15 +0100209 for (s = symbolhash[tdb_hash(name) % SYMBOL_HASH_SIZE]; s; s = s->next) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700210 if (strcmp(s->name, name) == 0)
211 return s;
212 }
213 return NULL;
214}
215
Ram Paibd5cbce2006-06-08 22:12:53 -0700216static struct {
217 const char *str;
218 enum export export;
219} export_list[] = {
220 { .str = "EXPORT_SYMBOL", .export = export_plain },
Sam Ravnborgc96fca22006-07-01 11:44:23 +0200221 { .str = "EXPORT_UNUSED_SYMBOL", .export = export_unused },
Ram Paibd5cbce2006-06-08 22:12:53 -0700222 { .str = "EXPORT_SYMBOL_GPL", .export = export_gpl },
Sam Ravnborgc96fca22006-07-01 11:44:23 +0200223 { .str = "EXPORT_UNUSED_SYMBOL_GPL", .export = export_unused_gpl },
Ram Paibd5cbce2006-06-08 22:12:53 -0700224 { .str = "EXPORT_SYMBOL_GPL_FUTURE", .export = export_gpl_future },
225 { .str = "(unknown)", .export = export_unknown },
226};
227
228
229static const char *export_str(enum export ex)
230{
231 return export_list[ex].str;
232}
233
Sam Ravnborgdf578e72008-01-11 19:17:15 +0100234static enum export export_no(const char *s)
Ram Paibd5cbce2006-06-08 22:12:53 -0700235{
236 int i;
Sam Ravnborgdf578e72008-01-11 19:17:15 +0100237
Sam Ravnborg534b89a2006-07-01 10:10:19 +0200238 if (!s)
239 return export_unknown;
Ram Paibd5cbce2006-06-08 22:12:53 -0700240 for (i = 0; export_list[i].export != export_unknown; i++) {
241 if (strcmp(export_list[i].str, s) == 0)
242 return export_list[i].export;
243 }
244 return export_unknown;
245}
246
247static enum export export_from_sec(struct elf_info *elf, Elf_Section sec)
248{
249 if (sec == elf->export_sec)
250 return export_plain;
Sam Ravnborgc96fca22006-07-01 11:44:23 +0200251 else if (sec == elf->export_unused_sec)
252 return export_unused;
Ram Paibd5cbce2006-06-08 22:12:53 -0700253 else if (sec == elf->export_gpl_sec)
254 return export_gpl;
Sam Ravnborgc96fca22006-07-01 11:44:23 +0200255 else if (sec == elf->export_unused_gpl_sec)
256 return export_unused_gpl;
Ram Paibd5cbce2006-06-08 22:12:53 -0700257 else if (sec == elf->export_gpl_future_sec)
258 return export_gpl_future;
259 else
260 return export_unknown;
261}
262
Sam Ravnborg5c3ead82006-01-28 17:19:35 +0100263/**
264 * Add an exported symbol - it may have already been added without a
265 * CRC, in this case just update the CRC
266 **/
Ram Paibd5cbce2006-06-08 22:12:53 -0700267static struct symbol *sym_add_exported(const char *name, struct module *mod,
268 enum export export)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700269{
270 struct symbol *s = find_symbol(name);
271
272 if (!s) {
Ram Paibd5cbce2006-06-08 22:12:53 -0700273 s = new_symbol(name, mod, export);
Sam Ravnborg8e70c452006-01-28 22:22:33 +0100274 } else {
275 if (!s->preloaded) {
Sam Ravnborg7b75b132006-03-05 13:48:58 +0100276 warn("%s: '%s' exported twice. Previous export "
Sam Ravnborg8e70c452006-01-28 22:22:33 +0100277 "was in %s%s\n", mod->name, name,
278 s->module->name,
279 is_vmlinux(s->module->name) ?"":".ko");
Trent Piepho4b219602007-10-11 16:40:10 -0700280 } else {
281 /* In case Modules.symvers was out of date */
282 s->module = mod;
Sam Ravnborg8e70c452006-01-28 22:22:33 +0100283 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700284 }
Sam Ravnborg8e70c452006-01-28 22:22:33 +0100285 s->preloaded = 0;
Sam Ravnborg040fcc82006-01-28 22:15:55 +0100286 s->vmlinux = is_vmlinux(mod->name);
287 s->kernel = 0;
Ram Paibd5cbce2006-06-08 22:12:53 -0700288 s->export = export;
Sam Ravnborg040fcc82006-01-28 22:15:55 +0100289 return s;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700290}
291
Sam Ravnborg040fcc82006-01-28 22:15:55 +0100292static void sym_update_crc(const char *name, struct module *mod,
Ram Paibd5cbce2006-06-08 22:12:53 -0700293 unsigned int crc, enum export export)
Sam Ravnborg040fcc82006-01-28 22:15:55 +0100294{
295 struct symbol *s = find_symbol(name);
296
297 if (!s)
Ram Paibd5cbce2006-06-08 22:12:53 -0700298 s = new_symbol(name, mod, export);
Sam Ravnborg040fcc82006-01-28 22:15:55 +0100299 s->crc = crc;
300 s->crc_valid = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700301}
302
Sam Ravnborg5c3ead82006-01-28 17:19:35 +0100303void *grab_file(const char *filename, unsigned long *size)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700304{
305 struct stat st;
306 void *map;
307 int fd;
308
309 fd = open(filename, O_RDONLY);
310 if (fd < 0 || fstat(fd, &st) != 0)
311 return NULL;
312
313 *size = st.st_size;
314 map = mmap(NULL, *size, PROT_READ|PROT_WRITE, MAP_PRIVATE, fd, 0);
315 close(fd);
316
317 if (map == MAP_FAILED)
318 return NULL;
319 return map;
320}
321
Sam Ravnborg5c3ead82006-01-28 17:19:35 +0100322/**
323 * Return a copy of the next line in a mmap'ed file.
324 * spaces in the beginning of the line is trimmed away.
325 * Return a pointer to a static buffer.
326 **/
Sam Ravnborgdf578e72008-01-11 19:17:15 +0100327char *get_next_line(unsigned long *pos, void *file, unsigned long size)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700328{
329 static char line[4096];
330 int skip = 1;
331 size_t len = 0;
332 signed char *p = (signed char *)file + *pos;
333 char *s = line;
334
Sam Ravnborgdf578e72008-01-11 19:17:15 +0100335 for (; *pos < size ; (*pos)++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700336 if (skip && isspace(*p)) {
337 p++;
338 continue;
339 }
340 skip = 0;
341 if (*p != '\n' && (*pos < size)) {
342 len++;
343 *s++ = *p++;
344 if (len > 4095)
345 break; /* Too long, stop */
346 } else {
347 /* End of string */
348 *s = '\0';
349 return line;
350 }
351 }
352 /* End of buffer */
353 return NULL;
354}
355
Sam Ravnborg5c3ead82006-01-28 17:19:35 +0100356void release_file(void *file, unsigned long size)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700357{
358 munmap(file, size);
359}
360
Sam Ravnborg85bd2fd2007-02-26 15:33:52 +0100361static int parse_elf(struct elf_info *info, const char *filename)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700362{
363 unsigned int i;
Sam Ravnborg85bd2fd2007-02-26 15:33:52 +0100364 Elf_Ehdr *hdr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700365 Elf_Shdr *sechdrs;
366 Elf_Sym *sym;
367
368 hdr = grab_file(filename, &info->size);
369 if (!hdr) {
370 perror(filename);
Sam Ravnborg6803dc02006-06-24 23:46:54 +0200371 exit(1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700372 }
373 info->hdr = hdr;
Sam Ravnborg85bd2fd2007-02-26 15:33:52 +0100374 if (info->size < sizeof(*hdr)) {
375 /* file too small, assume this is an empty .o file */
376 return 0;
377 }
378 /* Is this a valid ELF file? */
379 if ((hdr->e_ident[EI_MAG0] != ELFMAG0) ||
380 (hdr->e_ident[EI_MAG1] != ELFMAG1) ||
381 (hdr->e_ident[EI_MAG2] != ELFMAG2) ||
382 (hdr->e_ident[EI_MAG3] != ELFMAG3)) {
383 /* Not an ELF file - silently ignore it */
384 return 0;
385 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700386 /* Fix endianness in ELF header */
387 hdr->e_shoff = TO_NATIVE(hdr->e_shoff);
388 hdr->e_shstrndx = TO_NATIVE(hdr->e_shstrndx);
389 hdr->e_shnum = TO_NATIVE(hdr->e_shnum);
390 hdr->e_machine = TO_NATIVE(hdr->e_machine);
Atsushi Nemotoae4ac122007-05-22 18:27:39 +0900391 hdr->e_type = TO_NATIVE(hdr->e_type);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700392 sechdrs = (void *)hdr + hdr->e_shoff;
393 info->sechdrs = sechdrs;
394
Petr Stetiara83710e2007-08-27 12:15:07 +0200395 /* Check if file offset is correct */
396 if (hdr->e_shoff > info->size) {
Sam Ravnborgdf578e72008-01-11 19:17:15 +0100397 fatal("section header offset=%lu in file '%s' is bigger than "
398 "filesize=%lu\n", (unsigned long)hdr->e_shoff,
399 filename, info->size);
Petr Stetiara83710e2007-08-27 12:15:07 +0200400 return 0;
401 }
402
Linus Torvalds1da177e2005-04-16 15:20:36 -0700403 /* Fix endianness in section headers */
404 for (i = 0; i < hdr->e_shnum; i++) {
405 sechdrs[i].sh_type = TO_NATIVE(sechdrs[i].sh_type);
406 sechdrs[i].sh_offset = TO_NATIVE(sechdrs[i].sh_offset);
407 sechdrs[i].sh_size = TO_NATIVE(sechdrs[i].sh_size);
408 sechdrs[i].sh_link = TO_NATIVE(sechdrs[i].sh_link);
409 sechdrs[i].sh_name = TO_NATIVE(sechdrs[i].sh_name);
Atsushi Nemotoae4ac122007-05-22 18:27:39 +0900410 sechdrs[i].sh_info = TO_NATIVE(sechdrs[i].sh_info);
411 sechdrs[i].sh_addr = TO_NATIVE(sechdrs[i].sh_addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700412 }
413 /* Find symbol table. */
414 for (i = 1; i < hdr->e_shnum; i++) {
415 const char *secstrings
416 = (void *)hdr + sechdrs[hdr->e_shstrndx].sh_offset;
Ram Paibd5cbce2006-06-08 22:12:53 -0700417 const char *secname;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700418
Sam Ravnborg85bd2fd2007-02-26 15:33:52 +0100419 if (sechdrs[i].sh_offset > info->size) {
Sam Ravnborgdf578e72008-01-11 19:17:15 +0100420 fatal("%s is truncated. sechdrs[i].sh_offset=%lu > "
421 "sizeof(*hrd)=%zu\n", filename,
422 (unsigned long)sechdrs[i].sh_offset,
423 sizeof(*hdr));
Sam Ravnborg85bd2fd2007-02-26 15:33:52 +0100424 return 0;
425 }
Ram Paibd5cbce2006-06-08 22:12:53 -0700426 secname = secstrings + sechdrs[i].sh_name;
427 if (strcmp(secname, ".modinfo") == 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700428 info->modinfo = (void *)hdr + sechdrs[i].sh_offset;
429 info->modinfo_len = sechdrs[i].sh_size;
Ram Paibd5cbce2006-06-08 22:12:53 -0700430 } else if (strcmp(secname, "__ksymtab") == 0)
431 info->export_sec = i;
Sam Ravnborgc96fca22006-07-01 11:44:23 +0200432 else if (strcmp(secname, "__ksymtab_unused") == 0)
433 info->export_unused_sec = i;
Ram Paibd5cbce2006-06-08 22:12:53 -0700434 else if (strcmp(secname, "__ksymtab_gpl") == 0)
435 info->export_gpl_sec = i;
Sam Ravnborgc96fca22006-07-01 11:44:23 +0200436 else if (strcmp(secname, "__ksymtab_unused_gpl") == 0)
437 info->export_unused_gpl_sec = i;
Ram Paibd5cbce2006-06-08 22:12:53 -0700438 else if (strcmp(secname, "__ksymtab_gpl_future") == 0)
439 info->export_gpl_future_sec = i;
Mathieu Desnoyersb2e3e652008-02-13 15:03:39 -0800440 else if (strcmp(secname, "__markers_strings") == 0)
441 info->markers_strings_sec = i;
Ram Paibd5cbce2006-06-08 22:12:53 -0700442
Linus Torvalds1da177e2005-04-16 15:20:36 -0700443 if (sechdrs[i].sh_type != SHT_SYMTAB)
444 continue;
445
446 info->symtab_start = (void *)hdr + sechdrs[i].sh_offset;
Sam Ravnborg62070fa2006-03-03 16:46:04 +0100447 info->symtab_stop = (void *)hdr + sechdrs[i].sh_offset
Linus Torvalds1da177e2005-04-16 15:20:36 -0700448 + sechdrs[i].sh_size;
Sam Ravnborg62070fa2006-03-03 16:46:04 +0100449 info->strtab = (void *)hdr +
Linus Torvalds1da177e2005-04-16 15:20:36 -0700450 sechdrs[sechdrs[i].sh_link].sh_offset;
451 }
Sam Ravnborgdf578e72008-01-11 19:17:15 +0100452 if (!info->symtab_start)
Sam Ravnborgcb805142006-01-28 16:57:26 +0100453 fatal("%s has no symtab?\n", filename);
Sam Ravnborgdf578e72008-01-11 19:17:15 +0100454
Linus Torvalds1da177e2005-04-16 15:20:36 -0700455 /* Fix endianness in symbols */
456 for (sym = info->symtab_start; sym < info->symtab_stop; sym++) {
457 sym->st_shndx = TO_NATIVE(sym->st_shndx);
458 sym->st_name = TO_NATIVE(sym->st_name);
459 sym->st_value = TO_NATIVE(sym->st_value);
460 sym->st_size = TO_NATIVE(sym->st_size);
461 }
Sam Ravnborg85bd2fd2007-02-26 15:33:52 +0100462 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700463}
464
Sam Ravnborg5c3ead82006-01-28 17:19:35 +0100465static void parse_elf_finish(struct elf_info *info)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700466{
467 release_file(info->hdr, info->size);
468}
469
Sam Ravnborg4d7365d2008-06-12 15:02:55 +0200470static int ignore_undef_symbol(struct elf_info *info, const char *symname)
471{
472 /* ignore __this_module, it will be resolved shortly */
473 if (strcmp(symname, MODULE_SYMBOL_PREFIX "__this_module") == 0)
474 return 1;
475 /* ignore global offset table */
476 if (strcmp(symname, "_GLOBAL_OFFSET_TABLE_") == 0)
477 return 1;
478 if (info->hdr->e_machine == EM_PPC)
479 /* Special register function linked on all modules during final link of .ko */
480 if (strncmp(symname, "_restgpr_", sizeof("_restgpr_") - 1) == 0 ||
481 strncmp(symname, "_savegpr_", sizeof("_savegpr_") - 1) == 0 ||
482 strncmp(symname, "_rest32gpr_", sizeof("_rest32gpr_") - 1) == 0 ||
483 strncmp(symname, "_save32gpr_", sizeof("_save32gpr_") - 1) == 0)
484 return 1;
485 /* Do not ignore this symbol */
486 return 0;
487}
488
Luke Yangf7b05e62006-03-02 18:35:31 +0800489#define CRC_PFX MODULE_SYMBOL_PREFIX "__crc_"
490#define KSYMTAB_PFX MODULE_SYMBOL_PREFIX "__ksymtab_"
Linus Torvalds1da177e2005-04-16 15:20:36 -0700491
Sam Ravnborg5c3ead82006-01-28 17:19:35 +0100492static void handle_modversions(struct module *mod, struct elf_info *info,
493 Elf_Sym *sym, const char *symname)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700494{
495 unsigned int crc;
Ram Paibd5cbce2006-06-08 22:12:53 -0700496 enum export export = export_from_sec(info, sym->st_shndx);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700497
498 switch (sym->st_shndx) {
499 case SHN_COMMON:
Sam Ravnborgcb805142006-01-28 16:57:26 +0100500 warn("\"%s\" [%s] is COMMON symbol\n", symname, mod->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700501 break;
502 case SHN_ABS:
503 /* CRC'd symbol */
504 if (memcmp(symname, CRC_PFX, strlen(CRC_PFX)) == 0) {
505 crc = (unsigned int) sym->st_value;
Ram Paibd5cbce2006-06-08 22:12:53 -0700506 sym_update_crc(symname + strlen(CRC_PFX), mod, crc,
507 export);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700508 }
509 break;
510 case SHN_UNDEF:
511 /* undefined symbol */
512 if (ELF_ST_BIND(sym->st_info) != STB_GLOBAL &&
513 ELF_ST_BIND(sym->st_info) != STB_WEAK)
514 break;
Sam Ravnborg4d7365d2008-06-12 15:02:55 +0200515 if (ignore_undef_symbol(info, symname))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700516 break;
Ben Colline8d529012005-08-19 13:44:57 -0700517/* cope with newer glibc (2.3.4 or higher) STT_ definition in elf.h */
518#if defined(STT_REGISTER) || defined(STT_SPARC_REGISTER)
519/* add compatibility with older glibc */
520#ifndef STT_SPARC_REGISTER
521#define STT_SPARC_REGISTER STT_REGISTER
522#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700523 if (info->hdr->e_machine == EM_SPARC ||
524 info->hdr->e_machine == EM_SPARCV9) {
525 /* Ignore register directives. */
Ben Colline8d529012005-08-19 13:44:57 -0700526 if (ELF_ST_TYPE(sym->st_info) == STT_SPARC_REGISTER)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700527 break;
Sam Ravnborg62070fa2006-03-03 16:46:04 +0100528 if (symname[0] == '.') {
529 char *munged = strdup(symname);
530 munged[0] = '_';
531 munged[1] = toupper(munged[1]);
532 symname = munged;
533 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700534 }
535#endif
Sam Ravnborg62070fa2006-03-03 16:46:04 +0100536
Linus Torvalds1da177e2005-04-16 15:20:36 -0700537 if (memcmp(symname, MODULE_SYMBOL_PREFIX,
Sam Ravnborgdf578e72008-01-11 19:17:15 +0100538 strlen(MODULE_SYMBOL_PREFIX)) == 0) {
539 mod->unres =
540 alloc_symbol(symname +
541 strlen(MODULE_SYMBOL_PREFIX),
542 ELF_ST_BIND(sym->st_info) == STB_WEAK,
543 mod->unres);
544 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700545 break;
546 default:
547 /* All exported symbols */
548 if (memcmp(symname, KSYMTAB_PFX, strlen(KSYMTAB_PFX)) == 0) {
Ram Paibd5cbce2006-06-08 22:12:53 -0700549 sym_add_exported(symname + strlen(KSYMTAB_PFX), mod,
550 export);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700551 }
552 if (strcmp(symname, MODULE_SYMBOL_PREFIX "init_module") == 0)
553 mod->has_init = 1;
554 if (strcmp(symname, MODULE_SYMBOL_PREFIX "cleanup_module") == 0)
555 mod->has_cleanup = 1;
556 break;
557 }
558}
559
Sam Ravnborg5c3ead82006-01-28 17:19:35 +0100560/**
561 * Parse tag=value strings from .modinfo section
562 **/
Linus Torvalds1da177e2005-04-16 15:20:36 -0700563static char *next_string(char *string, unsigned long *secsize)
564{
565 /* Skip non-zero chars */
566 while (string[0]) {
567 string++;
568 if ((*secsize)-- <= 1)
569 return NULL;
570 }
571
572 /* Skip any zero padding. */
573 while (!string[0]) {
574 string++;
575 if ((*secsize)-- <= 1)
576 return NULL;
577 }
578 return string;
579}
580
Sam Ravnborgb817f6f2006-06-09 21:53:55 +0200581static char *get_next_modinfo(void *modinfo, unsigned long modinfo_len,
582 const char *tag, char *info)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700583{
584 char *p;
585 unsigned int taglen = strlen(tag);
586 unsigned long size = modinfo_len;
587
Sam Ravnborgb817f6f2006-06-09 21:53:55 +0200588 if (info) {
589 size -= info - (char *)modinfo;
590 modinfo = next_string(info, &size);
591 }
592
Linus Torvalds1da177e2005-04-16 15:20:36 -0700593 for (p = modinfo; p; p = next_string(p, &size)) {
594 if (strncmp(p, tag, taglen) == 0 && p[taglen] == '=')
595 return p + taglen + 1;
596 }
597 return NULL;
598}
599
Sam Ravnborgb817f6f2006-06-09 21:53:55 +0200600static char *get_modinfo(void *modinfo, unsigned long modinfo_len,
601 const char *tag)
602
603{
604 return get_next_modinfo(modinfo, modinfo_len, tag, NULL);
605}
606
Sam Ravnborg93684d32006-02-19 11:53:35 +0100607/**
Sam Ravnborg4c8fbca2006-02-26 22:18:11 +0100608 * Test if string s ends in string sub
609 * return 0 if match
610 **/
611static int strrcmp(const char *s, const char *sub)
612{
Sam Ravnborgdf578e72008-01-11 19:17:15 +0100613 int slen, sublen;
Sam Ravnborg62070fa2006-03-03 16:46:04 +0100614
Sam Ravnborg4c8fbca2006-02-26 22:18:11 +0100615 if (!s || !sub)
616 return 1;
Sam Ravnborg62070fa2006-03-03 16:46:04 +0100617
Sam Ravnborg4c8fbca2006-02-26 22:18:11 +0100618 slen = strlen(s);
Sam Ravnborgdf578e72008-01-11 19:17:15 +0100619 sublen = strlen(sub);
Sam Ravnborg62070fa2006-03-03 16:46:04 +0100620
Sam Ravnborg4c8fbca2006-02-26 22:18:11 +0100621 if ((slen == 0) || (sublen == 0))
622 return 1;
623
Sam Ravnborgdf578e72008-01-11 19:17:15 +0100624 if (sublen > slen)
625 return 1;
Sam Ravnborg4c8fbca2006-02-26 22:18:11 +0100626
Sam Ravnborgdf578e72008-01-11 19:17:15 +0100627 return memcmp(s + slen - sublen, sub, sublen);
Sam Ravnborg4c8fbca2006-02-26 22:18:11 +0100628}
629
Sam Ravnborgff13f922008-01-23 19:54:27 +0100630static const char *sym_name(struct elf_info *elf, Elf_Sym *sym)
631{
Sam Ravnborg58fb0d42008-01-23 21:13:50 +0100632 if (sym)
633 return elf->strtab + sym->st_name;
634 else
Sam Ravnborgf6667512008-02-06 21:51:18 +0100635 return "(unknown)";
Sam Ravnborgff13f922008-01-23 19:54:27 +0100636}
637
638static const char *sec_name(struct elf_info *elf, int shndx)
639{
640 Elf_Shdr *sechdrs = elf->sechdrs;
641 return (void *)elf->hdr +
642 elf->sechdrs[elf->hdr->e_shstrndx].sh_offset +
643 sechdrs[shndx].sh_name;
644}
645
646static const char *sech_name(struct elf_info *elf, Elf_Shdr *sechdr)
647{
648 return (void *)elf->hdr +
649 elf->sechdrs[elf->hdr->e_shstrndx].sh_offset +
650 sechdr->sh_name;
651}
652
Sam Ravnborg10668222008-01-13 22:21:31 +0100653/* if sym is empty or point to a string
654 * like ".[0-9]+" then return 1.
655 * This is the optional prefix added by ld to some sections
656 */
657static int number_prefix(const char *sym)
658{
659 if (*sym++ == '\0')
660 return 1;
661 if (*sym != '.')
662 return 0;
663 do {
664 char c = *sym++;
665 if (c < '0' || c > '9')
666 return 0;
667 } while (*sym);
668 return 1;
669}
670
671/* The pattern is an array of simple patterns.
672 * "foo" will match an exact string equal to "foo"
Sam Ravnborg6c5bd232008-01-20 10:43:27 +0100673 * "*foo" will match a string that ends with "foo"
Sam Ravnborg10668222008-01-13 22:21:31 +0100674 * "foo*" will match a string that begins with "foo"
675 * "foo$" will match a string equal to "foo" or "foo.1"
676 * where the '1' can be any number including several digits.
677 * The $ syntax is for sections where ld append a dot number
678 * to make section name unique.
679 */
680int match(const char *sym, const char * const pat[])
681{
682 const char *p;
683 while (*pat) {
684 p = *pat++;
685 const char *endp = p + strlen(p) - 1;
686
Sam Ravnborg6c5bd232008-01-20 10:43:27 +0100687 /* "*foo" */
688 if (*p == '*') {
689 if (strrcmp(sym, p + 1) == 0)
690 return 1;
691 }
Sam Ravnborg10668222008-01-13 22:21:31 +0100692 /* "foo*" */
Sam Ravnborg6c5bd232008-01-20 10:43:27 +0100693 else if (*endp == '*') {
Sam Ravnborg10668222008-01-13 22:21:31 +0100694 if (strncmp(sym, p, strlen(p) - 1) == 0)
695 return 1;
696 }
697 /* "foo$" */
698 else if (*endp == '$') {
699 if (strncmp(sym, p, strlen(p) - 1) == 0) {
700 if (number_prefix(sym + strlen(p) - 1))
701 return 1;
702 }
703 }
704 /* no wildcards */
705 else {
706 if (strcmp(p, sym) == 0)
707 return 1;
708 }
709 }
710 /* no match */
711 return 0;
712}
713
Sam Ravnborg10668222008-01-13 22:21:31 +0100714/* sections that we do not want to do full section mismatch check on */
715static const char *section_white_list[] =
716 { ".debug*", ".stab*", ".note*", ".got*", ".toc*", NULL };
717
Sam Ravnborge241a632008-01-28 20:13:13 +0100718/*
719 * Is this section one we do not want to check?
720 * This is often debug sections.
721 * If we are going to check this section then
722 * test if section name ends with a dot and a number.
723 * This is used to find sections where the linker have
724 * appended a dot-number to make the name unique.
725 * The cause of this is often a section specified in assembler
726 * without "ax" / "aw" and the same section used in .c
727 * code where gcc add these.
728 */
729static int check_section(const char *modname, const char *sec)
730{
731 const char *e = sec + strlen(sec) - 1;
732 if (match(sec, section_white_list))
733 return 1;
734
735 if (*e && isdigit(*e)) {
736 /* consume all digits */
737 while (*e && e != sec && isdigit(*e))
738 e--;
Andi Kleenfd1db0a2008-05-08 13:41:11 +0200739 if (*e == '.' && !strstr(sec, ".linkonce")) {
Sam Ravnborge241a632008-01-28 20:13:13 +0100740 warn("%s (%s): unexpected section name.\n"
741 "The (.[number]+) following section name are "
742 "ld generated and not expected.\n"
743 "Did you forget to use \"ax\"/\"aw\" "
744 "in a .S file?\n"
745 "Note that for example <linux/init.h> contains\n"
746 "section definitions for use in .S files.\n\n",
747 modname, sec);
748 }
749 }
750 return 0;
751}
752
753
754
Sam Ravnborgeb8f6892008-01-20 20:07:28 +0100755#define ALL_INIT_DATA_SECTIONS \
756 ".init.data$", ".devinit.data$", ".cpuinit.data$", ".meminit.data$"
757#define ALL_EXIT_DATA_SECTIONS \
758 ".exit.data$", ".devexit.data$", ".cpuexit.data$", ".memexit.data$"
Sam Ravnborg10668222008-01-13 22:21:31 +0100759
Sam Ravnborgeb8f6892008-01-20 20:07:28 +0100760#define ALL_INIT_TEXT_SECTIONS \
761 ".init.text$", ".devinit.text$", ".cpuinit.text$", ".meminit.text$"
762#define ALL_EXIT_TEXT_SECTIONS \
763 ".exit.text$", ".devexit.text$", ".cpuexit.text$", ".memexit.text$"
Sam Ravnborg10668222008-01-13 22:21:31 +0100764
Sam Ravnborgeb8f6892008-01-20 20:07:28 +0100765#define ALL_INIT_SECTIONS ALL_INIT_DATA_SECTIONS, ALL_INIT_TEXT_SECTIONS
766#define ALL_EXIT_SECTIONS ALL_EXIT_DATA_SECTIONS, ALL_EXIT_TEXT_SECTIONS
Sam Ravnborg10668222008-01-13 22:21:31 +0100767
Sam Ravnborg6c5bd232008-01-20 10:43:27 +0100768#define DATA_SECTIONS ".data$", ".data.rel$"
Sam Ravnborg10668222008-01-13 22:21:31 +0100769#define TEXT_SECTIONS ".text$"
770
Sam Ravnborgeb8f6892008-01-20 20:07:28 +0100771#define INIT_SECTIONS ".init.data$", ".init.text$"
772#define DEV_INIT_SECTIONS ".devinit.data$", ".devinit.text$"
773#define CPU_INIT_SECTIONS ".cpuinit.data$", ".cpuinit.text$"
774#define MEM_INIT_SECTIONS ".meminit.data$", ".meminit.text$"
775
776#define EXIT_SECTIONS ".exit.data$", ".exit.text$"
777#define DEV_EXIT_SECTIONS ".devexit.data$", ".devexit.text$"
778#define CPU_EXIT_SECTIONS ".cpuexit.data$", ".cpuexit.text$"
779#define MEM_EXIT_SECTIONS ".memexit.data$", ".memexit.text$"
780
Sam Ravnborg6c5bd232008-01-20 10:43:27 +0100781/* init data sections */
Sam Ravnborgeb8f6892008-01-20 20:07:28 +0100782static const char *init_data_sections[] = { ALL_INIT_DATA_SECTIONS, NULL };
Sam Ravnborg6c5bd232008-01-20 10:43:27 +0100783
784/* all init sections */
Sam Ravnborgeb8f6892008-01-20 20:07:28 +0100785static const char *init_sections[] = { ALL_INIT_SECTIONS, NULL };
Sam Ravnborg6c5bd232008-01-20 10:43:27 +0100786
787/* All init and exit sections (code + data) */
788static const char *init_exit_sections[] =
Sam Ravnborgeb8f6892008-01-20 20:07:28 +0100789 {ALL_INIT_SECTIONS, ALL_EXIT_SECTIONS, NULL };
Sam Ravnborg6c5bd232008-01-20 10:43:27 +0100790
791/* data section */
792static const char *data_sections[] = { DATA_SECTIONS, NULL };
793
794/* sections that may refer to an init/exit section with no warning */
795static const char *initref_sections[] =
796{
797 ".text.init.refok*",
798 ".exit.text.refok*",
799 ".data.init.refok*",
800 NULL
801};
802
803
804/* symbols in .data that may refer to init/exit sections */
805static const char *symbol_white_list[] =
806{
807 "*driver",
808 "*_template", /* scsi uses *_template a lot */
809 "*_timer", /* arm uses ops structures named _timer a lot */
810 "*_sht", /* scsi also used *_sht to some extent */
811 "*_ops",
812 "*_probe",
813 "*_probe_one",
814 "*_console",
815 NULL
816};
817
818static const char *head_sections[] = { ".head.text*", NULL };
819static const char *linker_symbols[] =
820 { "__init_begin", "_sinittext", "_einittext", NULL };
821
Sam Ravnborg588ccd72008-01-24 21:12:37 +0100822enum mismatch {
823 NO_MISMATCH,
824 TEXT_TO_INIT,
825 DATA_TO_INIT,
826 TEXT_TO_EXIT,
827 DATA_TO_EXIT,
828 XXXINIT_TO_INIT,
829 XXXEXIT_TO_EXIT,
830 INIT_TO_EXIT,
831 EXIT_TO_INIT,
832 EXPORT_TO_INIT_EXIT,
833};
834
Sam Ravnborg10668222008-01-13 22:21:31 +0100835struct sectioncheck {
836 const char *fromsec[20];
837 const char *tosec[20];
Sam Ravnborg588ccd72008-01-24 21:12:37 +0100838 enum mismatch mismatch;
Sam Ravnborg10668222008-01-13 22:21:31 +0100839};
840
841const struct sectioncheck sectioncheck[] = {
842/* Do not reference init/exit code/data from
843 * normal code and data
844 */
845{
Sam Ravnborg588ccd72008-01-24 21:12:37 +0100846 .fromsec = { TEXT_SECTIONS, NULL },
847 .tosec = { ALL_INIT_SECTIONS, NULL },
848 .mismatch = TEXT_TO_INIT,
849},
850{
851 .fromsec = { DATA_SECTIONS, NULL },
852 .tosec = { ALL_INIT_SECTIONS, NULL },
853 .mismatch = DATA_TO_INIT,
854},
855{
856 .fromsec = { TEXT_SECTIONS, NULL },
857 .tosec = { ALL_EXIT_SECTIONS, NULL },
858 .mismatch = TEXT_TO_EXIT,
859},
860{
861 .fromsec = { DATA_SECTIONS, NULL },
862 .tosec = { ALL_EXIT_SECTIONS, NULL },
863 .mismatch = DATA_TO_EXIT,
Sam Ravnborgeb8f6892008-01-20 20:07:28 +0100864},
865/* Do not reference init code/data from devinit/cpuinit/meminit code/data */
866{
867 .fromsec = { DEV_INIT_SECTIONS, CPU_INIT_SECTIONS, MEM_INIT_SECTIONS, NULL },
Sam Ravnborg588ccd72008-01-24 21:12:37 +0100868 .tosec = { INIT_SECTIONS, NULL },
869 .mismatch = XXXINIT_TO_INIT,
Sam Ravnborgeb8f6892008-01-20 20:07:28 +0100870},
871/* Do not reference exit code/data from devexit/cpuexit/memexit code/data */
872{
873 .fromsec = { DEV_EXIT_SECTIONS, CPU_EXIT_SECTIONS, MEM_EXIT_SECTIONS, NULL },
Sam Ravnborg588ccd72008-01-24 21:12:37 +0100874 .tosec = { EXIT_SECTIONS, NULL },
875 .mismatch = XXXEXIT_TO_EXIT,
Sam Ravnborg10668222008-01-13 22:21:31 +0100876},
877/* Do not use exit code/data from init code */
878{
Sam Ravnborgeb8f6892008-01-20 20:07:28 +0100879 .fromsec = { ALL_INIT_SECTIONS, NULL },
880 .tosec = { ALL_EXIT_SECTIONS, NULL },
Sam Ravnborg588ccd72008-01-24 21:12:37 +0100881 .mismatch = INIT_TO_EXIT,
Sam Ravnborg10668222008-01-13 22:21:31 +0100882},
883/* Do not use init code/data from exit code */
884{
Sam Ravnborgeb8f6892008-01-20 20:07:28 +0100885 .fromsec = { ALL_EXIT_SECTIONS, NULL },
Sam Ravnborg588ccd72008-01-24 21:12:37 +0100886 .tosec = { ALL_INIT_SECTIONS, NULL },
887 .mismatch = EXIT_TO_INIT,
Sam Ravnborg10668222008-01-13 22:21:31 +0100888},
889/* Do not export init/exit functions or data */
890{
891 .fromsec = { "__ksymtab*", NULL },
Sam Ravnborgfa95eb12008-02-02 23:30:22 +0100892 .tosec = { INIT_SECTIONS, EXIT_SECTIONS, NULL },
Sam Ravnborg588ccd72008-01-24 21:12:37 +0100893 .mismatch = EXPORT_TO_INIT_EXIT
Sam Ravnborg10668222008-01-13 22:21:31 +0100894}
895};
896
897static int section_mismatch(const char *fromsec, const char *tosec)
898{
899 int i;
900 int elems = sizeof(sectioncheck) / sizeof(struct sectioncheck);
901 const struct sectioncheck *check = &sectioncheck[0];
902
903 for (i = 0; i < elems; i++) {
904 if (match(fromsec, check->fromsec) &&
905 match(tosec, check->tosec))
Sam Ravnborg588ccd72008-01-24 21:12:37 +0100906 return check->mismatch;
Sam Ravnborg10668222008-01-13 22:21:31 +0100907 check++;
908 }
Sam Ravnborg588ccd72008-01-24 21:12:37 +0100909 return NO_MISMATCH;
Sam Ravnborg10668222008-01-13 22:21:31 +0100910}
911
Sam Ravnborg4c8fbca2006-02-26 22:18:11 +0100912/**
913 * Whitelist to allow certain references to pass with no warning.
Sam Ravnborg0e0d3142007-05-17 20:14:48 +0200914 *
915 * Pattern 0:
916 * Do not warn if funtion/data are marked with __init_refok/__initdata_refok.
917 * The pattern is identified by:
Sam Ravnborgcb7e51d2007-07-25 22:24:52 +0200918 * fromsec = .text.init.refok* | .data.init.refok*
Sam Ravnborg0e0d3142007-05-17 20:14:48 +0200919 *
Sam Ravnborg4c8fbca2006-02-26 22:18:11 +0100920 * Pattern 1:
921 * If a module parameter is declared __initdata and permissions=0
922 * then this is legal despite the warning generated.
923 * We cannot see value of permissions here, so just ignore
924 * this pattern.
925 * The pattern is identified by:
926 * tosec = .init.data
Sam Ravnborg9209aed2006-03-05 00:16:26 +0100927 * fromsec = .data*
Sam Ravnborg4c8fbca2006-02-26 22:18:11 +0100928 * atsym =__param*
Sam Ravnborg62070fa2006-03-03 16:46:04 +0100929 *
Sam Ravnborg4c8fbca2006-02-26 22:18:11 +0100930 * Pattern 2:
Randy Dunlap72ee59b2006-04-15 11:17:12 -0700931 * Many drivers utilise a *driver container with references to
Sam Ravnborg4c8fbca2006-02-26 22:18:11 +0100932 * add, remove, probe functions etc.
933 * These functions may often be marked __init and we do not want to
934 * warn here.
935 * the pattern is identified by:
Sam Ravnborg83cda2b2007-07-25 21:52:31 +0200936 * tosec = init or exit section
937 * fromsec = data section
Sam Ravnborgdf578e72008-01-11 19:17:15 +0100938 * atsym = *driver, *_template, *_sht, *_ops, *_probe,
939 * *probe_one, *_console, *_timer
Vivek Goyalee6a8542007-01-11 01:52:44 +0100940 *
941 * Pattern 3:
Sam Ravnborg9bf8cb92007-02-26 17:49:06 +0100942 * Whitelist all refereces from .text.head to .init.data
943 * Whitelist all refereces from .text.head to .init.text
944 *
Sam Ravnborg1d8af552007-06-03 00:41:22 +0200945 * Pattern 4:
Vivek Goyalee6a8542007-01-11 01:52:44 +0100946 * Some symbols belong to init section but still it is ok to reference
947 * these from non-init sections as these symbols don't have any memory
948 * allocated for them and symbol address and value are same. So even
949 * if init section is freed, its ok to reference those symbols.
950 * For ex. symbols marking the init section boundaries.
951 * This pattern is identified by
952 * refsymname = __init_begin, _sinittext, _einittext
Sam Ravnborg9bf8cb92007-02-26 17:49:06 +0100953 *
Sam Ravnborg4c8fbca2006-02-26 22:18:11 +0100954 **/
Sam Ravnborg58fb0d42008-01-23 21:13:50 +0100955static int secref_whitelist(const char *fromsec, const char *fromsym,
956 const char *tosec, const char *tosym)
Sam Ravnborg4c8fbca2006-02-26 22:18:11 +0100957{
Sam Ravnborg0e0d3142007-05-17 20:14:48 +0200958 /* Check for pattern 0 */
Sam Ravnborg6c5bd232008-01-20 10:43:27 +0100959 if (match(fromsec, initref_sections))
Sam Ravnborg58fb0d42008-01-23 21:13:50 +0100960 return 0;
Sam Ravnborg0e0d3142007-05-17 20:14:48 +0200961
Sam Ravnborg4c8fbca2006-02-26 22:18:11 +0100962 /* Check for pattern 1 */
Sam Ravnborg6c5bd232008-01-20 10:43:27 +0100963 if (match(tosec, init_data_sections) &&
964 match(fromsec, data_sections) &&
Sam Ravnborg58fb0d42008-01-23 21:13:50 +0100965 (strncmp(fromsym, "__param", strlen("__param")) == 0))
966 return 0;
Sam Ravnborg4c8fbca2006-02-26 22:18:11 +0100967
968 /* Check for pattern 2 */
Sam Ravnborg6c5bd232008-01-20 10:43:27 +0100969 if (match(tosec, init_exit_sections) &&
970 match(fromsec, data_sections) &&
Sam Ravnborg58fb0d42008-01-23 21:13:50 +0100971 match(fromsym, symbol_white_list))
972 return 0;
Sam Ravnborg4c8fbca2006-02-26 22:18:11 +0100973
Sam Ravnborg9bf8cb92007-02-26 17:49:06 +0100974 /* Check for pattern 3 */
Sam Ravnborg6c5bd232008-01-20 10:43:27 +0100975 if (match(fromsec, head_sections) &&
976 match(tosec, init_sections))
Sam Ravnborg58fb0d42008-01-23 21:13:50 +0100977 return 0;
Sam Ravnborg9bf8cb92007-02-26 17:49:06 +0100978
Sam Ravnborg1d8af552007-06-03 00:41:22 +0200979 /* Check for pattern 4 */
Sam Ravnborg58fb0d42008-01-23 21:13:50 +0100980 if (match(tosym, linker_symbols))
981 return 0;
Sam Ravnborg9bf8cb92007-02-26 17:49:06 +0100982
Sam Ravnborg58fb0d42008-01-23 21:13:50 +0100983 return 1;
Sam Ravnborg4c8fbca2006-02-26 22:18:11 +0100984}
985
986/**
Sam Ravnborg93684d32006-02-19 11:53:35 +0100987 * Find symbol based on relocation record info.
988 * In some cases the symbol supplied is a valid symbol so
989 * return refsym. If st_name != 0 we assume this is a valid symbol.
990 * In other cases the symbol needs to be looked up in the symbol table
991 * based on section and address.
992 * **/
Sam Ravnborg9ad21c32008-01-18 21:04:34 +0100993static Elf_Sym *find_elf_symbol(struct elf_info *elf, Elf64_Sword addr,
Sam Ravnborg93684d32006-02-19 11:53:35 +0100994 Elf_Sym *relsym)
995{
996 Elf_Sym *sym;
Sam Ravnborg9ad21c32008-01-18 21:04:34 +0100997 Elf_Sym *near = NULL;
998 Elf64_Sword distance = 20;
999 Elf64_Sword d;
Sam Ravnborg93684d32006-02-19 11:53:35 +01001000
1001 if (relsym->st_name != 0)
1002 return relsym;
1003 for (sym = elf->symtab_start; sym < elf->symtab_stop; sym++) {
1004 if (sym->st_shndx != relsym->st_shndx)
1005 continue;
Atsushi Nemotoae4ac122007-05-22 18:27:39 +09001006 if (ELF_ST_TYPE(sym->st_info) == STT_SECTION)
1007 continue;
Sam Ravnborg93684d32006-02-19 11:53:35 +01001008 if (sym->st_value == addr)
1009 return sym;
Sam Ravnborg9ad21c32008-01-18 21:04:34 +01001010 /* Find a symbol nearby - addr are maybe negative */
1011 d = sym->st_value - addr;
1012 if (d < 0)
1013 d = addr - sym->st_value;
1014 if (d < distance) {
1015 distance = d;
1016 near = sym;
1017 }
Sam Ravnborg93684d32006-02-19 11:53:35 +01001018 }
Sam Ravnborg9ad21c32008-01-18 21:04:34 +01001019 /* We need a close match */
1020 if (distance < 20)
1021 return near;
1022 else
1023 return NULL;
Sam Ravnborg93684d32006-02-19 11:53:35 +01001024}
1025
David Brownellda68d612007-02-20 13:58:16 -08001026static inline int is_arm_mapping_symbol(const char *str)
1027{
1028 return str[0] == '$' && strchr("atd", str[1])
1029 && (str[2] == '\0' || str[2] == '.');
1030}
1031
1032/*
1033 * If there's no name there, ignore it; likewise, ignore it if it's
1034 * one of the magic symbols emitted used by current ARM tools.
1035 *
1036 * Otherwise if find_symbols_between() returns those symbols, they'll
1037 * fail the whitelist tests and cause lots of false alarms ... fixable
1038 * only by merging __exit and __init sections into __text, bloating
1039 * the kernel (which is especially evil on embedded platforms).
1040 */
1041static inline int is_valid_name(struct elf_info *elf, Elf_Sym *sym)
1042{
1043 const char *name = elf->strtab + sym->st_name;
1044
1045 if (!name || !strlen(name))
1046 return 0;
1047 return !is_arm_mapping_symbol(name);
1048}
1049
Sam Ravnborgb39927c2006-02-17 22:42:02 +01001050/*
Sam Ravnborg43c74d12006-03-05 12:02:46 +01001051 * Find symbols before or equal addr and after addr - in the section sec.
1052 * If we find two symbols with equal offset prefer one with a valid name.
1053 * The ELF format may have a better way to detect what type of symbol
1054 * it is, but this works for now.
Sam Ravnborgb39927c2006-02-17 22:42:02 +01001055 **/
Sam Ravnborg157c23c2008-01-22 21:44:32 +01001056static Elf_Sym *find_elf_symbol2(struct elf_info *elf, Elf_Addr addr,
1057 const char *sec)
Sam Ravnborgb39927c2006-02-17 22:42:02 +01001058{
1059 Elf_Sym *sym;
Sam Ravnborg157c23c2008-01-22 21:44:32 +01001060 Elf_Sym *near = NULL;
Sam Ravnborg157c23c2008-01-22 21:44:32 +01001061 Elf_Addr distance = ~0;
Sam Ravnborg62070fa2006-03-03 16:46:04 +01001062
Sam Ravnborgb39927c2006-02-17 22:42:02 +01001063 for (sym = elf->symtab_start; sym < elf->symtab_stop; sym++) {
1064 const char *symsec;
1065
1066 if (sym->st_shndx >= SHN_LORESERVE)
1067 continue;
Sam Ravnborgff13f922008-01-23 19:54:27 +01001068 symsec = sec_name(elf, sym->st_shndx);
Sam Ravnborgb39927c2006-02-17 22:42:02 +01001069 if (strcmp(symsec, sec) != 0)
1070 continue;
David Brownellda68d612007-02-20 13:58:16 -08001071 if (!is_valid_name(elf, sym))
1072 continue;
Sam Ravnborgb39927c2006-02-17 22:42:02 +01001073 if (sym->st_value <= addr) {
Sam Ravnborg157c23c2008-01-22 21:44:32 +01001074 if ((addr - sym->st_value) < distance) {
1075 distance = addr - sym->st_value;
1076 near = sym;
1077 } else if ((addr - sym->st_value) == distance) {
1078 near = sym;
Sam Ravnborg43c74d12006-03-05 12:02:46 +01001079 }
Sam Ravnborgb39927c2006-02-17 22:42:02 +01001080 }
1081 }
Sam Ravnborg157c23c2008-01-22 21:44:32 +01001082 return near;
Sam Ravnborgb39927c2006-02-17 22:42:02 +01001083}
1084
Sam Ravnborg58fb0d42008-01-23 21:13:50 +01001085/*
Sam Ravnborg588ccd72008-01-24 21:12:37 +01001086 * Convert a section name to the function/data attribute
1087 * .init.text => __init
1088 * .cpuinit.data => __cpudata
1089 * .memexitconst => __memconst
1090 * etc.
1091*/
1092static char *sec2annotation(const char *s)
1093{
1094 if (match(s, init_exit_sections)) {
1095 char *p = malloc(20);
1096 char *r = p;
1097
1098 *p++ = '_';
1099 *p++ = '_';
1100 if (*s == '.')
1101 s++;
1102 while (*s && *s != '.')
1103 *p++ = *s++;
1104 *p = '\0';
1105 if (*s == '.')
1106 s++;
1107 if (strstr(s, "rodata") != NULL)
1108 strcat(p, "const ");
1109 else if (strstr(s, "data") != NULL)
1110 strcat(p, "data ");
1111 else
1112 strcat(p, " ");
1113 return r; /* we leak her but we do not care */
1114 } else {
1115 return "";
1116 }
1117}
1118
1119static int is_function(Elf_Sym *sym)
1120{
1121 if (sym)
1122 return ELF_ST_TYPE(sym->st_info) == STT_FUNC;
1123 else
Sam Ravnborgf6667512008-02-06 21:51:18 +01001124 return -1;
Sam Ravnborg588ccd72008-01-24 21:12:37 +01001125}
1126
1127/*
Sam Ravnborgb39927c2006-02-17 22:42:02 +01001128 * Print a warning about a section mismatch.
1129 * Try to find symbols near it so user can find it.
Sam Ravnborg4c8fbca2006-02-26 22:18:11 +01001130 * Check whitelist before warning - it may be a false positive.
Sam Ravnborg58fb0d42008-01-23 21:13:50 +01001131 */
Sam Ravnborg588ccd72008-01-24 21:12:37 +01001132static void report_sec_mismatch(const char *modname, enum mismatch mismatch,
Sam Ravnborg58fb0d42008-01-23 21:13:50 +01001133 const char *fromsec,
1134 unsigned long long fromaddr,
1135 const char *fromsym,
Sam Ravnborg588ccd72008-01-24 21:12:37 +01001136 int from_is_func,
1137 const char *tosec, const char *tosym,
1138 int to_is_func)
Sam Ravnborgb39927c2006-02-17 22:42:02 +01001139{
Sam Ravnborg588ccd72008-01-24 21:12:37 +01001140 const char *from, *from_p;
1141 const char *to, *to_p;
Sam Ravnborgf6667512008-02-06 21:51:18 +01001142
1143 switch (from_is_func) {
1144 case 0: from = "variable"; from_p = ""; break;
1145 case 1: from = "function"; from_p = "()"; break;
1146 default: from = "(unknown reference)"; from_p = ""; break;
1147 }
1148 switch (to_is_func) {
1149 case 0: to = "variable"; to_p = ""; break;
1150 case 1: to = "function"; to_p = "()"; break;
1151 default: to = "(unknown reference)"; to_p = ""; break;
1152 }
Sam Ravnborg588ccd72008-01-24 21:12:37 +01001153
Sam Ravnborge5f95c82008-02-02 18:57:18 +01001154 sec_mismatch_count++;
1155 if (!sec_mismatch_verbose)
1156 return;
1157
Geert Uytterhoeven7c0ac492008-02-05 11:38:49 +01001158 warn("%s(%s+0x%llx): Section mismatch in reference from the %s %s%s "
1159 "to the %s %s:%s%s\n",
1160 modname, fromsec, fromaddr, from, fromsym, from_p, to, tosec,
1161 tosym, to_p);
Sam Ravnborg588ccd72008-01-24 21:12:37 +01001162
Sam Ravnborg588ccd72008-01-24 21:12:37 +01001163 switch (mismatch) {
1164 case TEXT_TO_INIT:
1165 fprintf(stderr,
Sam Ravnborgf6667512008-02-06 21:51:18 +01001166 "The function %s%s() references\n"
Sam Ravnborg588ccd72008-01-24 21:12:37 +01001167 "the %s %s%s%s.\n"
1168 "This is often because %s lacks a %s\n"
1169 "annotation or the annotation of %s is wrong.\n",
1170 sec2annotation(fromsec), fromsym,
1171 to, sec2annotation(tosec), tosym, to_p,
1172 fromsym, sec2annotation(tosec), tosym);
1173 break;
1174 case DATA_TO_INIT: {
1175 const char **s = symbol_white_list;
1176 fprintf(stderr,
1177 "The variable %s references\n"
1178 "the %s %s%s%s\n"
1179 "If the reference is valid then annotate the\n"
1180 "variable with __init* (see linux/init.h) "
1181 "or name the variable:\n",
1182 fromsym, to, sec2annotation(tosec), tosym, to_p);
1183 while (*s)
1184 fprintf(stderr, "%s, ", *s++);
1185 fprintf(stderr, "\n");
1186 break;
Sam Ravnborg58fb0d42008-01-23 21:13:50 +01001187 }
Sam Ravnborg588ccd72008-01-24 21:12:37 +01001188 case TEXT_TO_EXIT:
1189 fprintf(stderr,
1190 "The function %s() references a %s in an exit section.\n"
1191 "Often the %s %s%s has valid usage outside the exit section\n"
1192 "and the fix is to remove the %sannotation of %s.\n",
1193 fromsym, to, to, tosym, to_p, sec2annotation(tosec), tosym);
1194 break;
1195 case DATA_TO_EXIT: {
1196 const char **s = symbol_white_list;
1197 fprintf(stderr,
1198 "The variable %s references\n"
1199 "the %s %s%s%s\n"
1200 "If the reference is valid then annotate the\n"
1201 "variable with __exit* (see linux/init.h) or "
1202 "name the variable:\n",
1203 fromsym, to, sec2annotation(tosec), tosym, to_p);
1204 while (*s)
1205 fprintf(stderr, "%s, ", *s++);
1206 fprintf(stderr, "\n");
1207 break;
1208 }
1209 case XXXINIT_TO_INIT:
1210 case XXXEXIT_TO_EXIT:
1211 fprintf(stderr,
1212 "The %s %s%s%s references\n"
1213 "a %s %s%s%s.\n"
1214 "If %s is only used by %s then\n"
1215 "annotate %s with a matching annotation.\n",
1216 from, sec2annotation(fromsec), fromsym, from_p,
1217 to, sec2annotation(tosec), tosym, to_p,
Geert Uytterhoevenb1d26752008-02-17 14:12:10 +01001218 tosym, fromsym, tosym);
Sam Ravnborg588ccd72008-01-24 21:12:37 +01001219 break;
1220 case INIT_TO_EXIT:
1221 fprintf(stderr,
1222 "The %s %s%s%s references\n"
1223 "a %s %s%s%s.\n"
1224 "This is often seen when error handling "
1225 "in the init function\n"
1226 "uses functionality in the exit path.\n"
1227 "The fix is often to remove the %sannotation of\n"
1228 "%s%s so it may be used outside an exit section.\n",
1229 from, sec2annotation(fromsec), fromsym, from_p,
1230 to, sec2annotation(tosec), tosym, to_p,
1231 sec2annotation(tosec), tosym, to_p);
1232 break;
1233 case EXIT_TO_INIT:
1234 fprintf(stderr,
1235 "The %s %s%s%s references\n"
1236 "a %s %s%s%s.\n"
1237 "This is often seen when error handling "
1238 "in the exit function\n"
1239 "uses functionality in the init path.\n"
1240 "The fix is often to remove the %sannotation of\n"
1241 "%s%s so it may be used outside an init section.\n",
1242 from, sec2annotation(fromsec), fromsym, from_p,
1243 to, sec2annotation(tosec), tosym, to_p,
1244 sec2annotation(tosec), tosym, to_p);
1245 break;
1246 case EXPORT_TO_INIT_EXIT:
1247 fprintf(stderr,
1248 "The symbol %s is exported and annotated %s\n"
1249 "Fix this by removing the %sannotation of %s "
1250 "or drop the export.\n",
1251 tosym, sec2annotation(tosec), sec2annotation(tosec), tosym);
1252 case NO_MISMATCH:
1253 /* To get warnings on missing members */
1254 break;
1255 }
1256 fprintf(stderr, "\n");
Sam Ravnborg58fb0d42008-01-23 21:13:50 +01001257}
1258
1259static void check_section_mismatch(const char *modname, struct elf_info *elf,
1260 Elf_Rela *r, Elf_Sym *sym, const char *fromsec)
1261{
1262 const char *tosec;
Sam Ravnborg588ccd72008-01-24 21:12:37 +01001263 enum mismatch mismatch;
Sam Ravnborg58fb0d42008-01-23 21:13:50 +01001264
1265 tosec = sec_name(elf, sym->st_shndx);
Sam Ravnborg588ccd72008-01-24 21:12:37 +01001266 mismatch = section_mismatch(fromsec, tosec);
1267 if (mismatch != NO_MISMATCH) {
1268 Elf_Sym *to;
1269 Elf_Sym *from;
Sam Ravnborg58fb0d42008-01-23 21:13:50 +01001270 const char *tosym;
Sam Ravnborg588ccd72008-01-24 21:12:37 +01001271 const char *fromsym;
Sam Ravnborg58fb0d42008-01-23 21:13:50 +01001272
Sam Ravnborg588ccd72008-01-24 21:12:37 +01001273 from = find_elf_symbol2(elf, r->r_offset, fromsec);
1274 fromsym = sym_name(elf, from);
1275 to = find_elf_symbol(elf, r->r_addend, sym);
1276 tosym = sym_name(elf, to);
Sam Ravnborg58fb0d42008-01-23 21:13:50 +01001277
1278 /* check whitelist - we may ignore it */
1279 if (secref_whitelist(fromsec, fromsym, tosec, tosym)) {
Sam Ravnborg588ccd72008-01-24 21:12:37 +01001280 report_sec_mismatch(modname, mismatch,
1281 fromsec, r->r_offset, fromsym,
1282 is_function(from), tosec, tosym,
1283 is_function(to));
Sam Ravnborg58fb0d42008-01-23 21:13:50 +01001284 }
Sam Ravnborgb39927c2006-02-17 22:42:02 +01001285 }
1286}
1287
Atsushi Nemotoae4ac122007-05-22 18:27:39 +09001288static unsigned int *reloc_location(struct elf_info *elf,
Sam Ravnborg5b24c072008-01-18 21:49:29 +01001289 Elf_Shdr *sechdr, Elf_Rela *r)
Atsushi Nemotoae4ac122007-05-22 18:27:39 +09001290{
1291 Elf_Shdr *sechdrs = elf->sechdrs;
Sam Ravnborg5b24c072008-01-18 21:49:29 +01001292 int section = sechdr->sh_info;
Atsushi Nemotoae4ac122007-05-22 18:27:39 +09001293
1294 return (void *)elf->hdr + sechdrs[section].sh_offset +
1295 (r->r_offset - sechdrs[section].sh_addr);
1296}
1297
Sam Ravnborg5b24c072008-01-18 21:49:29 +01001298static int addend_386_rel(struct elf_info *elf, Elf_Shdr *sechdr, Elf_Rela *r)
Atsushi Nemotoae4ac122007-05-22 18:27:39 +09001299{
1300 unsigned int r_typ = ELF_R_TYPE(r->r_info);
Sam Ravnborg5b24c072008-01-18 21:49:29 +01001301 unsigned int *location = reloc_location(elf, sechdr, r);
Atsushi Nemotoae4ac122007-05-22 18:27:39 +09001302
1303 switch (r_typ) {
1304 case R_386_32:
1305 r->r_addend = TO_NATIVE(*location);
1306 break;
1307 case R_386_PC32:
1308 r->r_addend = TO_NATIVE(*location) + 4;
1309 /* For CONFIG_RELOCATABLE=y */
1310 if (elf->hdr->e_type == ET_EXEC)
1311 r->r_addend += r->r_offset;
1312 break;
1313 }
1314 return 0;
1315}
1316
Sam Ravnborg5b24c072008-01-18 21:49:29 +01001317static int addend_arm_rel(struct elf_info *elf, Elf_Shdr *sechdr, Elf_Rela *r)
Sam Ravnborg56a974f2007-07-16 22:39:35 +02001318{
1319 unsigned int r_typ = ELF_R_TYPE(r->r_info);
1320
1321 switch (r_typ) {
1322 case R_ARM_ABS32:
1323 /* From ARM ABI: (S + A) | T */
Sam Ravnborgdf578e72008-01-11 19:17:15 +01001324 r->r_addend = (int)(long)
1325 (elf->symtab_start + ELF_R_SYM(r->r_info));
Sam Ravnborg56a974f2007-07-16 22:39:35 +02001326 break;
1327 case R_ARM_PC24:
1328 /* From ARM ABI: ((S + A) | T) - P */
Sam Ravnborgdf578e72008-01-11 19:17:15 +01001329 r->r_addend = (int)(long)(elf->hdr +
Sam Ravnborg5b24c072008-01-18 21:49:29 +01001330 sechdr->sh_offset +
1331 (r->r_offset - sechdr->sh_addr));
Sam Ravnborg56a974f2007-07-16 22:39:35 +02001332 break;
1333 default:
1334 return 1;
1335 }
1336 return 0;
1337}
1338
Sam Ravnborg5b24c072008-01-18 21:49:29 +01001339static int addend_mips_rel(struct elf_info *elf, Elf_Shdr *sechdr, Elf_Rela *r)
Atsushi Nemotoae4ac122007-05-22 18:27:39 +09001340{
1341 unsigned int r_typ = ELF_R_TYPE(r->r_info);
Sam Ravnborg5b24c072008-01-18 21:49:29 +01001342 unsigned int *location = reloc_location(elf, sechdr, r);
Atsushi Nemotoae4ac122007-05-22 18:27:39 +09001343 unsigned int inst;
1344
1345 if (r_typ == R_MIPS_HI16)
1346 return 1; /* skip this */
1347 inst = TO_NATIVE(*location);
1348 switch (r_typ) {
1349 case R_MIPS_LO16:
1350 r->r_addend = inst & 0xffff;
1351 break;
1352 case R_MIPS_26:
1353 r->r_addend = (inst & 0x03ffffff) << 2;
1354 break;
1355 case R_MIPS_32:
1356 r->r_addend = inst;
1357 break;
1358 }
1359 return 0;
1360}
1361
Sam Ravnborg5b24c072008-01-18 21:49:29 +01001362static void section_rela(const char *modname, struct elf_info *elf,
Sam Ravnborg10668222008-01-13 22:21:31 +01001363 Elf_Shdr *sechdr)
Sam Ravnborg5b24c072008-01-18 21:49:29 +01001364{
1365 Elf_Sym *sym;
1366 Elf_Rela *rela;
1367 Elf_Rela r;
1368 unsigned int r_sym;
1369 const char *fromsec;
Sam Ravnborg5b24c072008-01-18 21:49:29 +01001370
Sam Ravnborgff13f922008-01-23 19:54:27 +01001371 Elf_Rela *start = (void *)elf->hdr + sechdr->sh_offset;
Sam Ravnborg5b24c072008-01-18 21:49:29 +01001372 Elf_Rela *stop = (void *)start + sechdr->sh_size;
1373
Sam Ravnborgff13f922008-01-23 19:54:27 +01001374 fromsec = sech_name(elf, sechdr);
Sam Ravnborg5b24c072008-01-18 21:49:29 +01001375 fromsec += strlen(".rela");
1376 /* if from section (name) is know good then skip it */
Sam Ravnborge241a632008-01-28 20:13:13 +01001377 if (check_section(modname, fromsec))
Sam Ravnborg5b24c072008-01-18 21:49:29 +01001378 return;
Sam Ravnborge241a632008-01-28 20:13:13 +01001379
Sam Ravnborg5b24c072008-01-18 21:49:29 +01001380 for (rela = start; rela < stop; rela++) {
1381 r.r_offset = TO_NATIVE(rela->r_offset);
1382#if KERNEL_ELFCLASS == ELFCLASS64
Sam Ravnborgff13f922008-01-23 19:54:27 +01001383 if (elf->hdr->e_machine == EM_MIPS) {
Sam Ravnborg5b24c072008-01-18 21:49:29 +01001384 unsigned int r_typ;
1385 r_sym = ELF64_MIPS_R_SYM(rela->r_info);
1386 r_sym = TO_NATIVE(r_sym);
1387 r_typ = ELF64_MIPS_R_TYPE(rela->r_info);
1388 r.r_info = ELF64_R_INFO(r_sym, r_typ);
1389 } else {
1390 r.r_info = TO_NATIVE(rela->r_info);
1391 r_sym = ELF_R_SYM(r.r_info);
1392 }
1393#else
1394 r.r_info = TO_NATIVE(rela->r_info);
1395 r_sym = ELF_R_SYM(r.r_info);
1396#endif
1397 r.r_addend = TO_NATIVE(rela->r_addend);
1398 sym = elf->symtab_start + r_sym;
1399 /* Skip special sections */
1400 if (sym->st_shndx >= SHN_LORESERVE)
1401 continue;
Sam Ravnborg58fb0d42008-01-23 21:13:50 +01001402 check_section_mismatch(modname, elf, &r, sym, fromsec);
Sam Ravnborg5b24c072008-01-18 21:49:29 +01001403 }
1404}
1405
1406static void section_rel(const char *modname, struct elf_info *elf,
Sam Ravnborg10668222008-01-13 22:21:31 +01001407 Elf_Shdr *sechdr)
Sam Ravnborg5b24c072008-01-18 21:49:29 +01001408{
1409 Elf_Sym *sym;
1410 Elf_Rel *rel;
1411 Elf_Rela r;
1412 unsigned int r_sym;
1413 const char *fromsec;
Sam Ravnborg5b24c072008-01-18 21:49:29 +01001414
Sam Ravnborgff13f922008-01-23 19:54:27 +01001415 Elf_Rel *start = (void *)elf->hdr + sechdr->sh_offset;
Sam Ravnborg5b24c072008-01-18 21:49:29 +01001416 Elf_Rel *stop = (void *)start + sechdr->sh_size;
1417
Sam Ravnborgff13f922008-01-23 19:54:27 +01001418 fromsec = sech_name(elf, sechdr);
Sam Ravnborg5b24c072008-01-18 21:49:29 +01001419 fromsec += strlen(".rel");
1420 /* if from section (name) is know good then skip it */
Sam Ravnborge241a632008-01-28 20:13:13 +01001421 if (check_section(modname, fromsec))
Sam Ravnborg5b24c072008-01-18 21:49:29 +01001422 return;
1423
1424 for (rel = start; rel < stop; rel++) {
1425 r.r_offset = TO_NATIVE(rel->r_offset);
1426#if KERNEL_ELFCLASS == ELFCLASS64
Sam Ravnborgff13f922008-01-23 19:54:27 +01001427 if (elf->hdr->e_machine == EM_MIPS) {
Sam Ravnborg5b24c072008-01-18 21:49:29 +01001428 unsigned int r_typ;
1429 r_sym = ELF64_MIPS_R_SYM(rel->r_info);
1430 r_sym = TO_NATIVE(r_sym);
1431 r_typ = ELF64_MIPS_R_TYPE(rel->r_info);
1432 r.r_info = ELF64_R_INFO(r_sym, r_typ);
1433 } else {
1434 r.r_info = TO_NATIVE(rel->r_info);
1435 r_sym = ELF_R_SYM(r.r_info);
1436 }
1437#else
1438 r.r_info = TO_NATIVE(rel->r_info);
1439 r_sym = ELF_R_SYM(r.r_info);
1440#endif
1441 r.r_addend = 0;
Sam Ravnborgff13f922008-01-23 19:54:27 +01001442 switch (elf->hdr->e_machine) {
Sam Ravnborg5b24c072008-01-18 21:49:29 +01001443 case EM_386:
1444 if (addend_386_rel(elf, sechdr, &r))
1445 continue;
1446 break;
1447 case EM_ARM:
1448 if (addend_arm_rel(elf, sechdr, &r))
1449 continue;
1450 break;
1451 case EM_MIPS:
1452 if (addend_mips_rel(elf, sechdr, &r))
1453 continue;
1454 break;
1455 }
1456 sym = elf->symtab_start + r_sym;
1457 /* Skip special sections */
1458 if (sym->st_shndx >= SHN_LORESERVE)
1459 continue;
Sam Ravnborg58fb0d42008-01-23 21:13:50 +01001460 check_section_mismatch(modname, elf, &r, sym, fromsec);
Sam Ravnborg5b24c072008-01-18 21:49:29 +01001461 }
1462}
1463
Sam Ravnborgb39927c2006-02-17 22:42:02 +01001464/**
1465 * A module includes a number of sections that are discarded
1466 * either when loaded or when used as built-in.
1467 * For loaded modules all functions marked __init and all data
1468 * marked __initdata will be discarded when the module has been intialized.
1469 * Likewise for modules used built-in the sections marked __exit
1470 * are discarded because __exit marked function are supposed to be called
Ben Dooks32be1d22008-07-29 22:33:44 -07001471 * only when a module is unloaded which never happens for built-in modules.
Sam Ravnborgb39927c2006-02-17 22:42:02 +01001472 * The check_sec_ref() function traverses all relocation records
1473 * to find all references to a section that reference a section that will
1474 * be discarded and warns about it.
1475 **/
1476static void check_sec_ref(struct module *mod, const char *modname,
Sam Ravnborg10668222008-01-13 22:21:31 +01001477 struct elf_info *elf)
Sam Ravnborgb39927c2006-02-17 22:42:02 +01001478{
1479 int i;
Sam Ravnborgb39927c2006-02-17 22:42:02 +01001480 Elf_Shdr *sechdrs = elf->sechdrs;
Sam Ravnborg62070fa2006-03-03 16:46:04 +01001481
Sam Ravnborgb39927c2006-02-17 22:42:02 +01001482 /* Walk through all sections */
Sam Ravnborgff13f922008-01-23 19:54:27 +01001483 for (i = 0; i < elf->hdr->e_shnum; i++) {
Sam Ravnborgb39927c2006-02-17 22:42:02 +01001484 /* We want to process only relocation sections and not .init */
Sam Ravnborg5b24c072008-01-18 21:49:29 +01001485 if (sechdrs[i].sh_type == SHT_RELA)
Sam Ravnborg10668222008-01-13 22:21:31 +01001486 section_rela(modname, elf, &elf->sechdrs[i]);
Sam Ravnborg5b24c072008-01-18 21:49:29 +01001487 else if (sechdrs[i].sh_type == SHT_REL)
Sam Ravnborg10668222008-01-13 22:21:31 +01001488 section_rel(modname, elf, &elf->sechdrs[i]);
Sam Ravnborgb39927c2006-02-17 22:42:02 +01001489 }
1490}
1491
Mathieu Desnoyersb2e3e652008-02-13 15:03:39 -08001492static void get_markers(struct elf_info *info, struct module *mod)
1493{
1494 const Elf_Shdr *sh = &info->sechdrs[info->markers_strings_sec];
1495 const char *strings = (const char *) info->hdr + sh->sh_offset;
1496 const Elf_Sym *sym, *first_sym, *last_sym;
1497 size_t n;
1498
1499 if (!info->markers_strings_sec)
1500 return;
1501
1502 /*
1503 * First count the strings. We look for all the symbols defined
1504 * in the __markers_strings section named __mstrtab_*. For
1505 * these local names, the compiler puts a random .NNN suffix on,
1506 * so the names don't correspond exactly.
1507 */
1508 first_sym = last_sym = NULL;
1509 n = 0;
1510 for (sym = info->symtab_start; sym < info->symtab_stop; sym++)
1511 if (ELF_ST_TYPE(sym->st_info) == STT_OBJECT &&
1512 sym->st_shndx == info->markers_strings_sec &&
1513 !strncmp(info->strtab + sym->st_name,
1514 "__mstrtab_", sizeof "__mstrtab_" - 1)) {
1515 if (first_sym == NULL)
1516 first_sym = sym;
1517 last_sym = sym;
1518 ++n;
1519 }
1520
1521 if (n == 0)
1522 return;
1523
1524 /*
1525 * Now collect each name and format into a line for the output.
1526 * Lines look like:
1527 * marker_name vmlinux marker %s format %d
1528 * The format string after the second \t can use whitespace.
1529 */
1530 mod->markers = NOFAIL(malloc(sizeof mod->markers[0] * n));
1531 mod->nmarkers = n;
1532
1533 n = 0;
1534 for (sym = first_sym; sym <= last_sym; sym++)
1535 if (ELF_ST_TYPE(sym->st_info) == STT_OBJECT &&
1536 sym->st_shndx == info->markers_strings_sec &&
1537 !strncmp(info->strtab + sym->st_name,
1538 "__mstrtab_", sizeof "__mstrtab_" - 1)) {
1539 const char *name = strings + sym->st_value;
1540 const char *fmt = strchr(name, '\0') + 1;
1541 char *line = NULL;
1542 asprintf(&line, "%s\t%s\t%s\n", name, mod->name, fmt);
1543 NOFAIL(line);
1544 mod->markers[n++] = line;
1545 }
1546}
1547
Sam Ravnborg5c3ead82006-01-28 17:19:35 +01001548static void read_symbols(char *modname)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001549{
1550 const char *symname;
1551 char *version;
Sam Ravnborgb817f6f2006-06-09 21:53:55 +02001552 char *license;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001553 struct module *mod;
1554 struct elf_info info = { };
1555 Elf_Sym *sym;
1556
Sam Ravnborg85bd2fd2007-02-26 15:33:52 +01001557 if (!parse_elf(&info, modname))
1558 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001559
1560 mod = new_module(modname);
1561
1562 /* When there's no vmlinux, don't print warnings about
1563 * unresolved symbols (since there'll be too many ;) */
1564 if (is_vmlinux(modname)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001565 have_vmlinux = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001566 mod->skip = 1;
1567 }
1568
Sam Ravnborgb817f6f2006-06-09 21:53:55 +02001569 license = get_modinfo(info.modinfo, info.modinfo_len, "license");
Sam Ravnborg2fa36562008-04-26 21:07:26 +02001570 if (info.modinfo && !license && !is_vmlinux(modname))
1571 warn("modpost: missing MODULE_LICENSE() in %s\n"
1572 "see include/linux/module.h for "
1573 "more information\n", modname);
Sam Ravnborgb817f6f2006-06-09 21:53:55 +02001574 while (license) {
1575 if (license_is_gpl_compatible(license))
1576 mod->gpl_compatible = 1;
1577 else {
1578 mod->gpl_compatible = 0;
1579 break;
1580 }
1581 license = get_next_modinfo(info.modinfo, info.modinfo_len,
1582 "license", license);
1583 }
1584
Linus Torvalds1da177e2005-04-16 15:20:36 -07001585 for (sym = info.symtab_start; sym < info.symtab_stop; sym++) {
1586 symname = info.strtab + sym->st_name;
1587
1588 handle_modversions(mod, &info, sym, symname);
1589 handle_moddevtable(mod, &info, sym, symname);
1590 }
Sam Ravnborgd1f25e62008-01-17 21:17:42 +01001591 if (!is_vmlinux(modname) ||
Sam Ravnborg10668222008-01-13 22:21:31 +01001592 (is_vmlinux(modname) && vmlinux_section_warnings))
1593 check_sec_ref(mod, modname, &info);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001594
1595 version = get_modinfo(info.modinfo, info.modinfo_len, "version");
1596 if (version)
1597 maybe_frob_rcs_version(modname, version, info.modinfo,
1598 version - (char *)info.hdr);
1599 if (version || (all_versions && !is_vmlinux(modname)))
1600 get_src_version(modname, mod->srcversion,
1601 sizeof(mod->srcversion)-1);
1602
Mathieu Desnoyersb2e3e652008-02-13 15:03:39 -08001603 get_markers(&info, mod);
1604
Linus Torvalds1da177e2005-04-16 15:20:36 -07001605 parse_elf_finish(&info);
1606
1607 /* Our trick to get versioning for struct_module - it's
1608 * never passed as an argument to an exported function, so
1609 * the automatic versioning doesn't pick it up, but it's really
1610 * important anyhow */
1611 if (modversions)
1612 mod->unres = alloc_symbol("struct_module", 0, mod->unres);
1613}
1614
1615#define SZ 500
1616
1617/* We first write the generated file into memory using the
1618 * following helper, then compare to the file on disk and
1619 * only update the later if anything changed */
1620
Sam Ravnborg5c3ead82006-01-28 17:19:35 +01001621void __attribute__((format(printf, 2, 3))) buf_printf(struct buffer *buf,
1622 const char *fmt, ...)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001623{
1624 char tmp[SZ];
1625 int len;
1626 va_list ap;
Sam Ravnborg62070fa2006-03-03 16:46:04 +01001627
Linus Torvalds1da177e2005-04-16 15:20:36 -07001628 va_start(ap, fmt);
1629 len = vsnprintf(tmp, SZ, fmt, ap);
Sam Ravnborg7670f022006-03-16 23:04:08 -08001630 buf_write(buf, tmp, len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001631 va_end(ap);
1632}
1633
Sam Ravnborg5c3ead82006-01-28 17:19:35 +01001634void buf_write(struct buffer *buf, const char *s, int len)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001635{
1636 if (buf->size - buf->pos < len) {
Sam Ravnborg7670f022006-03-16 23:04:08 -08001637 buf->size += len + SZ;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001638 buf->p = realloc(buf->p, buf->size);
1639 }
1640 strncpy(buf->p + buf->pos, s, len);
1641 buf->pos += len;
1642}
1643
Sam Ravnborgc96fca22006-07-01 11:44:23 +02001644static void check_for_gpl_usage(enum export exp, const char *m, const char *s)
1645{
1646 const char *e = is_vmlinux(m) ?"":".ko";
1647
1648 switch (exp) {
1649 case export_gpl:
1650 fatal("modpost: GPL-incompatible module %s%s "
1651 "uses GPL-only symbol '%s'\n", m, e, s);
1652 break;
1653 case export_unused_gpl:
1654 fatal("modpost: GPL-incompatible module %s%s "
1655 "uses GPL-only symbol marked UNUSED '%s'\n", m, e, s);
1656 break;
1657 case export_gpl_future:
1658 warn("modpost: GPL-incompatible module %s%s "
1659 "uses future GPL-only symbol '%s'\n", m, e, s);
1660 break;
1661 case export_plain:
1662 case export_unused:
1663 case export_unknown:
1664 /* ignore */
1665 break;
1666 }
1667}
1668
Sam Ravnborgdf578e72008-01-11 19:17:15 +01001669static void check_for_unused(enum export exp, const char *m, const char *s)
Sam Ravnborgc96fca22006-07-01 11:44:23 +02001670{
1671 const char *e = is_vmlinux(m) ?"":".ko";
1672
1673 switch (exp) {
1674 case export_unused:
1675 case export_unused_gpl:
1676 warn("modpost: module %s%s "
1677 "uses symbol '%s' marked UNUSED\n", m, e, s);
1678 break;
1679 default:
1680 /* ignore */
1681 break;
1682 }
1683}
1684
1685static void check_exports(struct module *mod)
Sam Ravnborgb817f6f2006-06-09 21:53:55 +02001686{
1687 struct symbol *s, *exp;
1688
1689 for (s = mod->unres; s; s = s->next) {
Andrew Morton6449bd62006-06-09 20:45:06 -07001690 const char *basename;
Sam Ravnborgb817f6f2006-06-09 21:53:55 +02001691 exp = find_symbol(s->name);
1692 if (!exp || exp->module == mod)
1693 continue;
Andrew Morton6449bd62006-06-09 20:45:06 -07001694 basename = strrchr(mod->name, '/');
Sam Ravnborgb817f6f2006-06-09 21:53:55 +02001695 if (basename)
1696 basename++;
Sam Ravnborgc96fca22006-07-01 11:44:23 +02001697 else
1698 basename = mod->name;
1699 if (!mod->gpl_compatible)
1700 check_for_gpl_usage(exp->export, basename, exp->name);
1701 check_for_unused(exp->export, basename, exp->name);
Sam Ravnborgdf578e72008-01-11 19:17:15 +01001702 }
Sam Ravnborgb817f6f2006-06-09 21:53:55 +02001703}
1704
Sam Ravnborg5c3ead82006-01-28 17:19:35 +01001705/**
1706 * Header for the generated file
1707 **/
1708static void add_header(struct buffer *b, struct module *mod)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001709{
1710 buf_printf(b, "#include <linux/module.h>\n");
1711 buf_printf(b, "#include <linux/vermagic.h>\n");
1712 buf_printf(b, "#include <linux/compiler.h>\n");
1713 buf_printf(b, "\n");
1714 buf_printf(b, "MODULE_INFO(vermagic, VERMAGIC_STRING);\n");
1715 buf_printf(b, "\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001716 buf_printf(b, "struct module __this_module\n");
1717 buf_printf(b, "__attribute__((section(\".gnu.linkonce.this_module\"))) = {\n");
Ustyugov Romanf83b5e32005-09-23 08:42:11 +04001718 buf_printf(b, " .name = KBUILD_MODNAME,\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001719 if (mod->has_init)
1720 buf_printf(b, " .init = init_module,\n");
1721 if (mod->has_cleanup)
1722 buf_printf(b, "#ifdef CONFIG_MODULE_UNLOAD\n"
1723 " .exit = cleanup_module,\n"
1724 "#endif\n");
Roman Zippele61a1c12007-05-09 02:35:15 -07001725 buf_printf(b, " .arch = MODULE_ARCH_INIT,\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001726 buf_printf(b, "};\n");
1727}
1728
Greg Kroah-Hartmana9860bf2008-09-24 14:46:44 -07001729void add_staging_flag(struct buffer *b, const char *name)
1730{
1731 static const char *staging_dir = "drivers/staging";
1732
1733 if (strncmp(staging_dir, name, strlen(staging_dir)) == 0)
1734 buf_printf(b, "\nMODULE_INFO(staging, \"Y\");\n");
1735}
1736
Sam Ravnborg5c3ead82006-01-28 17:19:35 +01001737/**
1738 * Record CRCs for unresolved symbols
1739 **/
Kirill Korotaevc53ddac2006-09-07 13:08:54 -07001740static int add_versions(struct buffer *b, struct module *mod)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001741{
1742 struct symbol *s, *exp;
Kirill Korotaevc53ddac2006-09-07 13:08:54 -07001743 int err = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001744
1745 for (s = mod->unres; s; s = s->next) {
1746 exp = find_symbol(s->name);
1747 if (!exp || exp->module == mod) {
Kirill Korotaevc53ddac2006-09-07 13:08:54 -07001748 if (have_vmlinux && !s->weak) {
Matthew Wilcox2a116652006-10-07 05:35:32 -06001749 if (warn_unresolved) {
1750 warn("\"%s\" [%s.ko] undefined!\n",
1751 s->name, mod->name);
1752 } else {
1753 merror("\"%s\" [%s.ko] undefined!\n",
1754 s->name, mod->name);
1755 err = 1;
1756 }
Kirill Korotaevc53ddac2006-09-07 13:08:54 -07001757 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001758 continue;
1759 }
1760 s->module = exp->module;
1761 s->crc_valid = exp->crc_valid;
1762 s->crc = exp->crc;
1763 }
1764
1765 if (!modversions)
Kirill Korotaevc53ddac2006-09-07 13:08:54 -07001766 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001767
1768 buf_printf(b, "\n");
1769 buf_printf(b, "static const struct modversion_info ____versions[]\n");
Adrian Bunk3ff6eec2008-01-24 22:16:20 +01001770 buf_printf(b, "__used\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001771 buf_printf(b, "__attribute__((section(\"__versions\"))) = {\n");
1772
1773 for (s = mod->unres; s; s = s->next) {
Sam Ravnborgdf578e72008-01-11 19:17:15 +01001774 if (!s->module)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001775 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001776 if (!s->crc_valid) {
Sam Ravnborgcb805142006-01-28 16:57:26 +01001777 warn("\"%s\" [%s.ko] has no CRC!\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07001778 s->name, mod->name);
1779 continue;
1780 }
1781 buf_printf(b, "\t{ %#8x, \"%s\" },\n", s->crc, s->name);
1782 }
1783
1784 buf_printf(b, "};\n");
Kirill Korotaevc53ddac2006-09-07 13:08:54 -07001785
1786 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001787}
1788
Sam Ravnborg5c3ead82006-01-28 17:19:35 +01001789static void add_depends(struct buffer *b, struct module *mod,
1790 struct module *modules)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001791{
1792 struct symbol *s;
1793 struct module *m;
1794 int first = 1;
1795
Sam Ravnborgdf578e72008-01-11 19:17:15 +01001796 for (m = modules; m; m = m->next)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001797 m->seen = is_vmlinux(m->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001798
1799 buf_printf(b, "\n");
1800 buf_printf(b, "static const char __module_depends[]\n");
Adrian Bunk3ff6eec2008-01-24 22:16:20 +01001801 buf_printf(b, "__used\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001802 buf_printf(b, "__attribute__((section(\".modinfo\"))) =\n");
1803 buf_printf(b, "\"depends=");
1804 for (s = mod->unres; s; s = s->next) {
Sam Ravnborga61b2df2007-02-26 19:46:52 +01001805 const char *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001806 if (!s->module)
1807 continue;
1808
1809 if (s->module->seen)
1810 continue;
1811
1812 s->module->seen = 1;
Sam Ravnborgdf578e72008-01-11 19:17:15 +01001813 p = strrchr(s->module->name, '/');
1814 if (p)
Sam Ravnborga61b2df2007-02-26 19:46:52 +01001815 p++;
1816 else
1817 p = s->module->name;
1818 buf_printf(b, "%s%s", first ? "" : ",", p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001819 first = 0;
1820 }
1821 buf_printf(b, "\";\n");
1822}
1823
Sam Ravnborg5c3ead82006-01-28 17:19:35 +01001824static void add_srcversion(struct buffer *b, struct module *mod)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001825{
1826 if (mod->srcversion[0]) {
1827 buf_printf(b, "\n");
1828 buf_printf(b, "MODULE_INFO(srcversion, \"%s\");\n",
1829 mod->srcversion);
1830 }
1831}
1832
Sam Ravnborg5c3ead82006-01-28 17:19:35 +01001833static void write_if_changed(struct buffer *b, const char *fname)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001834{
1835 char *tmp;
1836 FILE *file;
1837 struct stat st;
1838
1839 file = fopen(fname, "r");
1840 if (!file)
1841 goto write;
1842
1843 if (fstat(fileno(file), &st) < 0)
1844 goto close_write;
1845
1846 if (st.st_size != b->pos)
1847 goto close_write;
1848
1849 tmp = NOFAIL(malloc(b->pos));
1850 if (fread(tmp, 1, b->pos, file) != b->pos)
1851 goto free_write;
1852
1853 if (memcmp(tmp, b->p, b->pos) != 0)
1854 goto free_write;
1855
1856 free(tmp);
1857 fclose(file);
1858 return;
1859
1860 free_write:
1861 free(tmp);
1862 close_write:
1863 fclose(file);
1864 write:
1865 file = fopen(fname, "w");
1866 if (!file) {
1867 perror(fname);
1868 exit(1);
1869 }
1870 if (fwrite(b->p, 1, b->pos, file) != b->pos) {
1871 perror(fname);
1872 exit(1);
1873 }
1874 fclose(file);
1875}
1876
Ram Paibd5cbce2006-06-08 22:12:53 -07001877/* parse Module.symvers file. line format:
Sam Ravnborg534b89a2006-07-01 10:10:19 +02001878 * 0x12345678<tab>symbol<tab>module[[<tab>export]<tab>something]
Ram Paibd5cbce2006-06-08 22:12:53 -07001879 **/
Sam Ravnborg040fcc82006-01-28 22:15:55 +01001880static void read_dump(const char *fname, unsigned int kernel)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001881{
1882 unsigned long size, pos = 0;
1883 void *file = grab_file(fname, &size);
1884 char *line;
1885
Sam Ravnborgdf578e72008-01-11 19:17:15 +01001886 if (!file)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001887 /* No symbol versions, silently ignore */
1888 return;
1889
1890 while ((line = get_next_line(&pos, file, size))) {
Sam Ravnborg534b89a2006-07-01 10:10:19 +02001891 char *symname, *modname, *d, *export, *end;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001892 unsigned int crc;
1893 struct module *mod;
Sam Ravnborg040fcc82006-01-28 22:15:55 +01001894 struct symbol *s;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001895
1896 if (!(symname = strchr(line, '\t')))
1897 goto fail;
1898 *symname++ = '\0';
1899 if (!(modname = strchr(symname, '\t')))
1900 goto fail;
1901 *modname++ = '\0';
Laurent Riffard9ac545b2006-06-11 08:02:06 +02001902 if ((export = strchr(modname, '\t')) != NULL)
Ram Paibd5cbce2006-06-08 22:12:53 -07001903 *export++ = '\0';
Sam Ravnborg534b89a2006-07-01 10:10:19 +02001904 if (export && ((end = strchr(export, '\t')) != NULL))
1905 *end = '\0';
Linus Torvalds1da177e2005-04-16 15:20:36 -07001906 crc = strtoul(line, &d, 16);
1907 if (*symname == '\0' || *modname == '\0' || *d != '\0')
1908 goto fail;
Sam Ravnborgdf578e72008-01-11 19:17:15 +01001909 mod = find_module(modname);
1910 if (!mod) {
1911 if (is_vmlinux(modname))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001912 have_vmlinux = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001913 mod = new_module(NOFAIL(strdup(modname)));
1914 mod->skip = 1;
1915 }
Ram Paibd5cbce2006-06-08 22:12:53 -07001916 s = sym_add_exported(symname, mod, export_no(export));
Sam Ravnborg8e70c452006-01-28 22:22:33 +01001917 s->kernel = kernel;
1918 s->preloaded = 1;
Ram Paibd5cbce2006-06-08 22:12:53 -07001919 sym_update_crc(symname, mod, crc, export_no(export));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001920 }
1921 return;
1922fail:
1923 fatal("parse error in symbol dump file\n");
1924}
1925
Sam Ravnborg040fcc82006-01-28 22:15:55 +01001926/* For normal builds always dump all symbols.
1927 * For external modules only dump symbols
1928 * that are not read from kernel Module.symvers.
1929 **/
1930static int dump_sym(struct symbol *sym)
1931{
1932 if (!external_module)
1933 return 1;
1934 if (sym->vmlinux || sym->kernel)
1935 return 0;
1936 return 1;
1937}
Sam Ravnborg62070fa2006-03-03 16:46:04 +01001938
Sam Ravnborg5c3ead82006-01-28 17:19:35 +01001939static void write_dump(const char *fname)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001940{
1941 struct buffer buf = { };
1942 struct symbol *symbol;
1943 int n;
1944
1945 for (n = 0; n < SYMBOL_HASH_SIZE ; n++) {
1946 symbol = symbolhash[n];
1947 while (symbol) {
Sam Ravnborg040fcc82006-01-28 22:15:55 +01001948 if (dump_sym(symbol))
Ram Paibd5cbce2006-06-08 22:12:53 -07001949 buf_printf(&buf, "0x%08x\t%s\t%s\t%s\n",
Sam Ravnborg62070fa2006-03-03 16:46:04 +01001950 symbol->crc, symbol->name,
Ram Paibd5cbce2006-06-08 22:12:53 -07001951 symbol->module->name,
1952 export_str(symbol->export));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001953 symbol = symbol->next;
1954 }
1955 }
1956 write_if_changed(&buf, fname);
1957}
1958
Mathieu Desnoyersb2e3e652008-02-13 15:03:39 -08001959static void add_marker(struct module *mod, const char *name, const char *fmt)
1960{
1961 char *line = NULL;
1962 asprintf(&line, "%s\t%s\t%s\n", name, mod->name, fmt);
1963 NOFAIL(line);
1964
1965 mod->markers = NOFAIL(realloc(mod->markers, ((mod->nmarkers + 1) *
1966 sizeof mod->markers[0])));
1967 mod->markers[mod->nmarkers++] = line;
1968}
1969
1970static void read_markers(const char *fname)
1971{
1972 unsigned long size, pos = 0;
1973 void *file = grab_file(fname, &size);
1974 char *line;
1975
1976 if (!file) /* No old markers, silently ignore */
1977 return;
1978
1979 while ((line = get_next_line(&pos, file, size))) {
1980 char *marker, *modname, *fmt;
1981 struct module *mod;
1982
1983 marker = line;
1984 modname = strchr(marker, '\t');
1985 if (!modname)
1986 goto fail;
1987 *modname++ = '\0';
1988 fmt = strchr(modname, '\t');
1989 if (!fmt)
1990 goto fail;
1991 *fmt++ = '\0';
1992 if (*marker == '\0' || *modname == '\0')
1993 goto fail;
1994
1995 mod = find_module(modname);
1996 if (!mod) {
Mathieu Desnoyersb2e3e652008-02-13 15:03:39 -08001997 mod = new_module(NOFAIL(strdup(modname)));
1998 mod->skip = 1;
1999 }
Mathieu Desnoyers87f3b6b2008-10-06 09:30:12 -04002000 if (is_vmlinux(modname)) {
2001 have_vmlinux = 1;
2002 mod->skip = 0;
2003 }
Mathieu Desnoyersb2e3e652008-02-13 15:03:39 -08002004
Mathieu Desnoyersd35cb362008-07-21 14:21:38 -07002005 if (!mod->skip)
2006 add_marker(mod, marker, fmt);
Mathieu Desnoyersb2e3e652008-02-13 15:03:39 -08002007 }
2008 return;
2009fail:
2010 fatal("parse error in markers list file\n");
2011}
2012
2013static int compare_strings(const void *a, const void *b)
2014{
2015 return strcmp(*(const char **) a, *(const char **) b);
2016}
2017
2018static void write_markers(const char *fname)
2019{
2020 struct buffer buf = { };
2021 struct module *mod;
2022 size_t i;
2023
2024 for (mod = modules; mod; mod = mod->next)
2025 if ((!external_module || !mod->skip) && mod->markers != NULL) {
2026 /*
2027 * Sort the strings so we can skip duplicates when
2028 * we write them out.
2029 */
2030 qsort(mod->markers, mod->nmarkers,
2031 sizeof mod->markers[0], &compare_strings);
2032 for (i = 0; i < mod->nmarkers; ++i) {
2033 char *line = mod->markers[i];
2034 buf_write(&buf, line, strlen(line));
2035 while (i + 1 < mod->nmarkers &&
2036 !strcmp(mod->markers[i],
2037 mod->markers[i + 1]))
2038 free(mod->markers[i++]);
2039 free(mod->markers[i]);
2040 }
2041 free(mod->markers);
2042 mod->markers = NULL;
2043 }
2044
2045 write_if_changed(&buf, fname);
2046}
2047
Richard Hacker2d04b5a2008-02-28 09:40:52 +01002048struct ext_sym_list {
2049 struct ext_sym_list *next;
2050 const char *file;
2051};
2052
Sam Ravnborg5c3ead82006-01-28 17:19:35 +01002053int main(int argc, char **argv)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002054{
2055 struct module *mod;
2056 struct buffer buf = { };
Sam Ravnborg040fcc82006-01-28 22:15:55 +01002057 char *kernel_read = NULL, *module_read = NULL;
2058 char *dump_write = NULL;
Mathieu Desnoyersb2e3e652008-02-13 15:03:39 -08002059 char *markers_read = NULL;
2060 char *markers_write = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002061 int opt;
Kirill Korotaevc53ddac2006-09-07 13:08:54 -07002062 int err;
Richard Hacker2d04b5a2008-02-28 09:40:52 +01002063 struct ext_sym_list *extsym_iter;
2064 struct ext_sym_list *extsym_start = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002065
Richard Hacker2d04b5a2008-02-28 09:40:52 +01002066 while ((opt = getopt(argc, argv, "i:I:e:cmsSo:awM:K:")) != -1) {
Sam Ravnborgdf578e72008-01-11 19:17:15 +01002067 switch (opt) {
2068 case 'i':
2069 kernel_read = optarg;
2070 break;
2071 case 'I':
2072 module_read = optarg;
2073 external_module = 1;
2074 break;
Sam Ravnborg4ce6efe2008-03-23 21:38:54 +01002075 case 'c':
2076 cross_build = 1;
2077 break;
Richard Hacker2d04b5a2008-02-28 09:40:52 +01002078 case 'e':
2079 external_module = 1;
2080 extsym_iter =
2081 NOFAIL(malloc(sizeof(*extsym_iter)));
2082 extsym_iter->next = extsym_start;
2083 extsym_iter->file = optarg;
2084 extsym_start = extsym_iter;
2085 break;
Sam Ravnborgdf578e72008-01-11 19:17:15 +01002086 case 'm':
2087 modversions = 1;
2088 break;
2089 case 'o':
2090 dump_write = optarg;
2091 break;
2092 case 'a':
2093 all_versions = 1;
2094 break;
2095 case 's':
2096 vmlinux_section_warnings = 0;
2097 break;
Sam Ravnborg588ccd72008-01-24 21:12:37 +01002098 case 'S':
2099 sec_mismatch_verbose = 0;
2100 break;
Sam Ravnborgdf578e72008-01-11 19:17:15 +01002101 case 'w':
2102 warn_unresolved = 1;
2103 break;
Mathieu Desnoyersb2e3e652008-02-13 15:03:39 -08002104 case 'M':
2105 markers_write = optarg;
2106 break;
2107 case 'K':
2108 markers_read = optarg;
2109 break;
Sam Ravnborgdf578e72008-01-11 19:17:15 +01002110 default:
2111 exit(1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002112 }
2113 }
2114
Sam Ravnborg040fcc82006-01-28 22:15:55 +01002115 if (kernel_read)
2116 read_dump(kernel_read, 1);
2117 if (module_read)
2118 read_dump(module_read, 0);
Richard Hacker2d04b5a2008-02-28 09:40:52 +01002119 while (extsym_start) {
2120 read_dump(extsym_start->file, 0);
2121 extsym_iter = extsym_start->next;
2122 free(extsym_start);
2123 extsym_start = extsym_iter;
2124 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002125
Sam Ravnborgdf578e72008-01-11 19:17:15 +01002126 while (optind < argc)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002127 read_symbols(argv[optind++]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002128
2129 for (mod = modules; mod; mod = mod->next) {
2130 if (mod->skip)
2131 continue;
Sam Ravnborgc96fca22006-07-01 11:44:23 +02002132 check_exports(mod);
Sam Ravnborgb817f6f2006-06-09 21:53:55 +02002133 }
2134
Kirill Korotaevc53ddac2006-09-07 13:08:54 -07002135 err = 0;
2136
Sam Ravnborgb817f6f2006-06-09 21:53:55 +02002137 for (mod = modules; mod; mod = mod->next) {
Andi Kleen666ab412007-11-22 03:43:10 +01002138 char fname[strlen(mod->name) + 10];
2139
Sam Ravnborgb817f6f2006-06-09 21:53:55 +02002140 if (mod->skip)
2141 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002142
2143 buf.pos = 0;
2144
2145 add_header(&buf, mod);
Greg Kroah-Hartmana9860bf2008-09-24 14:46:44 -07002146 add_staging_flag(&buf, mod->name);
Kirill Korotaevc53ddac2006-09-07 13:08:54 -07002147 err |= add_versions(&buf, mod);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002148 add_depends(&buf, mod, modules);
2149 add_moddevtable(&buf, mod);
2150 add_srcversion(&buf, mod);
2151
2152 sprintf(fname, "%s.mod.c", mod->name);
2153 write_if_changed(&buf, fname);
2154 }
2155
2156 if (dump_write)
2157 write_dump(dump_write);
Sam Ravnborg588ccd72008-01-24 21:12:37 +01002158 if (sec_mismatch_count && !sec_mismatch_verbose)
Geert Uytterhoeven7c0ac492008-02-05 11:38:49 +01002159 warn("modpost: Found %d section mismatch(es).\n"
2160 "To see full details build your kernel with:\n"
2161 "'make CONFIG_DEBUG_SECTION_MISMATCH=y'\n",
2162 sec_mismatch_count);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002163
Mathieu Desnoyersb2e3e652008-02-13 15:03:39 -08002164 if (markers_read)
2165 read_markers(markers_read);
2166
2167 if (markers_write)
2168 write_markers(markers_write);
2169
Kirill Korotaevc53ddac2006-09-07 13:08:54 -07002170 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002171}