blob: 0de2fb2366402a13c7f42e02c6f3912d180585d3 [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>
Andrew Morton5003bab2010-08-11 00:42:26 -070017#include <string.h>
Rusty Russell712f9b42013-04-04 17:37:38 +103018#include <limits.h>
Rusty Russelld4ef1c32013-04-04 17:37:32 +103019#include <stdbool.h>
Guenter Roeckeed380f2013-09-23 15:23:54 +093020#include <errno.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070021#include "modpost.h"
Sam Ravnborgb817f6f2006-06-09 21:53:55 +020022#include "../../include/linux/license.h"
Alan Jenkins9e1b9b82009-11-07 21:03:54 +000023
Linus Torvalds1da177e2005-04-16 15:20:36 -070024/* Are we using CONFIG_MODVERSIONS? */
Mathias Krause7a3ee752014-08-27 20:28:53 +093025static int modversions = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -070026/* Warn about undefined symbols? (do so if we have vmlinux) */
Mathias Krause7a3ee752014-08-27 20:28:53 +093027static int have_vmlinux = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -070028/* Is CONFIG_MODULE_SRCVERSION_ALL set? */
29static int all_versions = 0;
Sam Ravnborg040fcc82006-01-28 22:15:55 +010030/* If we are modposting external module set to 1 */
31static int external_module = 0;
Sam Ravnborg8d8d8282007-07-20 22:36:56 +020032/* Warn about section mismatch in vmlinux if set to 1 */
33static int vmlinux_section_warnings = 1;
Kirill Korotaevc53ddac2006-09-07 13:08:54 -070034/* Only warn about unresolved symbols */
35static int warn_unresolved = 0;
Ram Paibd5cbce2006-06-08 22:12:53 -070036/* How a symbol is exported */
Sam Ravnborg588ccd72008-01-24 21:12:37 +010037static int sec_mismatch_count = 0;
38static int sec_mismatch_verbose = 1;
Nicolas Boichat47490ec2015-10-06 09:44:42 +103039static int sec_mismatch_fatal = 0;
Guenter Roeckeed380f2013-09-23 15:23:54 +093040/* ignore missing files */
41static int ignore_missing_files;
Sam Ravnborg588ccd72008-01-24 21:12:37 +010042
Sam Ravnborgc96fca22006-07-01 11:44:23 +020043enum export {
44 export_plain, export_unused, export_gpl,
45 export_unused_gpl, export_gpl_future, export_unknown
46};
Linus Torvalds1da177e2005-04-16 15:20:36 -070047
Wanlong Gao4fd3e4e2017-06-30 22:07:03 +080048/* In kernel, this size is defined in linux/module.h;
49 * here we use Elf_Addr instead of long for covering cross-compile
50 */
51
52#define MODULE_NAME_LEN (64 - sizeof(Elf_Addr))
53
Andi Kleen6d9a89e2007-11-22 03:43:08 +010054#define PRINTF __attribute__ ((format (printf, 1, 2)))
55
56PRINTF void fatal(const char *fmt, ...)
Linus Torvalds1da177e2005-04-16 15:20:36 -070057{
58 va_list arglist;
59
60 fprintf(stderr, "FATAL: ");
61
62 va_start(arglist, fmt);
63 vfprintf(stderr, fmt, arglist);
64 va_end(arglist);
65
66 exit(1);
67}
68
Andi Kleen6d9a89e2007-11-22 03:43:08 +010069PRINTF void warn(const char *fmt, ...)
Linus Torvalds1da177e2005-04-16 15:20:36 -070070{
71 va_list arglist;
72
73 fprintf(stderr, "WARNING: ");
74
75 va_start(arglist, fmt);
76 vfprintf(stderr, fmt, arglist);
77 va_end(arglist);
78}
79
Andi Kleen6d9a89e2007-11-22 03:43:08 +010080PRINTF void merror(const char *fmt, ...)
Matthew Wilcox2a116652006-10-07 05:35:32 -060081{
82 va_list arglist;
83
84 fprintf(stderr, "ERROR: ");
85
86 va_start(arglist, fmt);
87 vfprintf(stderr, fmt, arglist);
88 va_end(arglist);
89}
90
Rusty Russelld4ef1c32013-04-04 17:37:32 +103091static inline bool strends(const char *str, const char *postfix)
92{
93 if (strlen(str) < strlen(postfix))
94 return false;
95
96 return strcmp(str + strlen(str) - strlen(postfix), postfix) == 0;
97}
98
Sam Ravnborg040fcc82006-01-28 22:15:55 +010099static int is_vmlinux(const char *modname)
100{
101 const char *myname;
102
Sam Ravnborgdf578e72008-01-11 19:17:15 +0100103 myname = strrchr(modname, '/');
104 if (myname)
Sam Ravnborg040fcc82006-01-28 22:15:55 +0100105 myname++;
106 else
107 myname = modname;
108
Sam Ravnborg741f98f2007-07-17 10:54:06 +0200109 return (strcmp(myname, "vmlinux") == 0) ||
110 (strcmp(myname, "vmlinux.o") == 0);
Sam Ravnborg040fcc82006-01-28 22:15:55 +0100111}
112
Linus Torvalds1da177e2005-04-16 15:20:36 -0700113void *do_nofail(void *ptr, const char *expr)
114{
Sam Ravnborgdf578e72008-01-11 19:17:15 +0100115 if (!ptr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700116 fatal("modpost: Memory allocation failure: %s.\n", expr);
Sam Ravnborgdf578e72008-01-11 19:17:15 +0100117
Linus Torvalds1da177e2005-04-16 15:20:36 -0700118 return ptr;
119}
120
121/* A list of all modules we processed */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700122static struct module *modules;
123
Masahiro Yamada8b185742018-05-09 18:50:40 +0900124static struct module *find_module(const char *modname)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700125{
126 struct module *mod;
127
128 for (mod = modules; mod; mod = mod->next)
129 if (strcmp(mod->name, modname) == 0)
130 break;
131 return mod;
132}
133
Rusty Russelld4ef1c32013-04-04 17:37:32 +1030134static struct module *new_module(const char *modname)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700135{
136 struct module *mod;
Rusty Russelld4ef1c32013-04-04 17:37:32 +1030137 char *p;
Sam Ravnborg62070fa2006-03-03 16:46:04 +0100138
Linus Torvalds1da177e2005-04-16 15:20:36 -0700139 mod = NOFAIL(malloc(sizeof(*mod)));
140 memset(mod, 0, sizeof(*mod));
141 p = NOFAIL(strdup(modname));
142
143 /* strip trailing .o */
Rusty Russelld4ef1c32013-04-04 17:37:32 +1030144 if (strends(p, ".o")) {
145 p[strlen(p) - 2] = '\0';
146 mod->is_dot_o = 1;
147 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700148
149 /* add to list */
150 mod->name = p;
Sam Ravnborgb817f6f2006-06-09 21:53:55 +0200151 mod->gpl_compatible = -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700152 mod->next = modules;
153 modules = mod;
154
155 return mod;
156}
157
158/* A hash of all exported symbols,
159 * struct symbol is also used for lists of unresolved symbols */
160
161#define SYMBOL_HASH_SIZE 1024
162
163struct symbol {
164 struct symbol *next;
165 struct module *module;
166 unsigned int crc;
167 int crc_valid;
168 unsigned int weak:1;
Sam Ravnborg040fcc82006-01-28 22:15:55 +0100169 unsigned int vmlinux:1; /* 1 if symbol is defined in vmlinux */
170 unsigned int kernel:1; /* 1 if symbol is from kernel
171 * (only for external modules) **/
Rusty Russellb6568b12013-11-07 12:09:13 +1030172 unsigned int preloaded:1; /* 1 if symbol from Module.symvers, or crc */
Ram Paibd5cbce2006-06-08 22:12:53 -0700173 enum export export; /* Type of export */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700174 char name[0];
175};
176
177static struct symbol *symbolhash[SYMBOL_HASH_SIZE];
178
179/* This is based on the hash agorithm from gdbm, via tdb */
180static inline unsigned int tdb_hash(const char *name)
181{
182 unsigned value; /* Used to compute the hash value. */
183 unsigned i; /* Used to cycle through random values. */
184
185 /* Set the initial value from the key size. */
Sam Ravnborgdf578e72008-01-11 19:17:15 +0100186 for (value = 0x238F13AF * strlen(name), i = 0; name[i]; i++)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700187 value = (value + (((unsigned char *)name)[i] << (i*5 % 24)));
188
189 return (1103515243 * value + 12345);
190}
191
Sam Ravnborg5c3ead82006-01-28 17:19:35 +0100192/**
193 * Allocate a new symbols for use in the hash of exported symbols or
194 * the list of unresolved symbols per module
195 **/
196static struct symbol *alloc_symbol(const char *name, unsigned int weak,
197 struct symbol *next)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700198{
199 struct symbol *s = NOFAIL(malloc(sizeof(*s) + strlen(name) + 1));
200
201 memset(s, 0, sizeof(*s));
202 strcpy(s->name, name);
203 s->weak = weak;
204 s->next = next;
205 return s;
206}
207
208/* For the hash of exported symbols */
Ram Paibd5cbce2006-06-08 22:12:53 -0700209static struct symbol *new_symbol(const char *name, struct module *module,
210 enum export export)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700211{
212 unsigned int hash;
213 struct symbol *new;
214
215 hash = tdb_hash(name) % SYMBOL_HASH_SIZE;
216 new = symbolhash[hash] = alloc_symbol(name, 0, symbolhash[hash]);
217 new->module = module;
Ram Paibd5cbce2006-06-08 22:12:53 -0700218 new->export = export;
Sam Ravnborg040fcc82006-01-28 22:15:55 +0100219 return new;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700220}
221
Sam Ravnborg5c3ead82006-01-28 17:19:35 +0100222static struct symbol *find_symbol(const char *name)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700223{
224 struct symbol *s;
225
226 /* For our purposes, .foo matches foo. PPC64 needs this. */
227 if (name[0] == '.')
228 name++;
229
Sam Ravnborgdf578e72008-01-11 19:17:15 +0100230 for (s = symbolhash[tdb_hash(name) % SYMBOL_HASH_SIZE]; s; s = s->next) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700231 if (strcmp(s->name, name) == 0)
232 return s;
233 }
234 return NULL;
235}
236
Mathias Krause7a3ee752014-08-27 20:28:53 +0930237static const struct {
Ram Paibd5cbce2006-06-08 22:12:53 -0700238 const char *str;
239 enum export export;
240} export_list[] = {
241 { .str = "EXPORT_SYMBOL", .export = export_plain },
Sam Ravnborgc96fca22006-07-01 11:44:23 +0200242 { .str = "EXPORT_UNUSED_SYMBOL", .export = export_unused },
Ram Paibd5cbce2006-06-08 22:12:53 -0700243 { .str = "EXPORT_SYMBOL_GPL", .export = export_gpl },
Sam Ravnborgc96fca22006-07-01 11:44:23 +0200244 { .str = "EXPORT_UNUSED_SYMBOL_GPL", .export = export_unused_gpl },
Ram Paibd5cbce2006-06-08 22:12:53 -0700245 { .str = "EXPORT_SYMBOL_GPL_FUTURE", .export = export_gpl_future },
246 { .str = "(unknown)", .export = export_unknown },
247};
248
249
250static const char *export_str(enum export ex)
251{
252 return export_list[ex].str;
253}
254
Sam Ravnborgdf578e72008-01-11 19:17:15 +0100255static enum export export_no(const char *s)
Ram Paibd5cbce2006-06-08 22:12:53 -0700256{
257 int i;
Sam Ravnborgdf578e72008-01-11 19:17:15 +0100258
Sam Ravnborg534b89a2006-07-01 10:10:19 +0200259 if (!s)
260 return export_unknown;
Ram Paibd5cbce2006-06-08 22:12:53 -0700261 for (i = 0; export_list[i].export != export_unknown; i++) {
262 if (strcmp(export_list[i].str, s) == 0)
263 return export_list[i].export;
264 }
265 return export_unknown;
266}
267
Masahiro Yamada6124c042017-09-06 16:19:05 -0700268static const char *sech_name(struct elf_info *elf, Elf_Shdr *sechdr)
269{
270 return (void *)elf->hdr +
271 elf->sechdrs[elf->secindex_strings].sh_offset +
272 sechdr->sh_name;
273}
274
275static const char *sec_name(struct elf_info *elf, int secindex)
276{
277 return sech_name(elf, &elf->sechdrs[secindex]);
278}
Alessio Igor Bogani62a26352011-07-14 08:51:16 +0200279
280#define strstarts(str, prefix) (strncmp(str, prefix, strlen(prefix)) == 0)
281
282static enum export export_from_secname(struct elf_info *elf, unsigned int sec)
283{
284 const char *secname = sec_name(elf, sec);
285
286 if (strstarts(secname, "___ksymtab+"))
287 return export_plain;
288 else if (strstarts(secname, "___ksymtab_unused+"))
289 return export_unused;
290 else if (strstarts(secname, "___ksymtab_gpl+"))
291 return export_gpl;
292 else if (strstarts(secname, "___ksymtab_unused_gpl+"))
293 return export_unused_gpl;
294 else if (strstarts(secname, "___ksymtab_gpl_future+"))
295 return export_gpl_future;
296 else
297 return export_unknown;
298}
299
Denys Vlasenko1ce53ad2010-07-29 01:47:53 +0200300static enum export export_from_sec(struct elf_info *elf, unsigned int sec)
Ram Paibd5cbce2006-06-08 22:12:53 -0700301{
302 if (sec == elf->export_sec)
303 return export_plain;
Sam Ravnborgc96fca22006-07-01 11:44:23 +0200304 else if (sec == elf->export_unused_sec)
305 return export_unused;
Ram Paibd5cbce2006-06-08 22:12:53 -0700306 else if (sec == elf->export_gpl_sec)
307 return export_gpl;
Sam Ravnborgc96fca22006-07-01 11:44:23 +0200308 else if (sec == elf->export_unused_gpl_sec)
309 return export_unused_gpl;
Ram Paibd5cbce2006-06-08 22:12:53 -0700310 else if (sec == elf->export_gpl_future_sec)
311 return export_gpl_future;
312 else
313 return export_unknown;
314}
315
Sam Ravnborg5c3ead82006-01-28 17:19:35 +0100316/**
317 * Add an exported symbol - it may have already been added without a
318 * CRC, in this case just update the CRC
319 **/
Ram Paibd5cbce2006-06-08 22:12:53 -0700320static struct symbol *sym_add_exported(const char *name, struct module *mod,
321 enum export export)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700322{
323 struct symbol *s = find_symbol(name);
324
325 if (!s) {
Ram Paibd5cbce2006-06-08 22:12:53 -0700326 s = new_symbol(name, mod, export);
Sam Ravnborg8e70c452006-01-28 22:22:33 +0100327 } else {
328 if (!s->preloaded) {
Sam Ravnborg7b75b132006-03-05 13:48:58 +0100329 warn("%s: '%s' exported twice. Previous export "
Sam Ravnborg8e70c452006-01-28 22:22:33 +0100330 "was in %s%s\n", mod->name, name,
331 s->module->name,
332 is_vmlinux(s->module->name) ?"":".ko");
Trent Piepho4b219602007-10-11 16:40:10 -0700333 } else {
Paul Bollebaec30e2014-04-16 18:05:35 +0200334 /* In case Module.symvers was out of date */
Trent Piepho4b219602007-10-11 16:40:10 -0700335 s->module = mod;
Sam Ravnborg8e70c452006-01-28 22:22:33 +0100336 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700337 }
Sam Ravnborg8e70c452006-01-28 22:22:33 +0100338 s->preloaded = 0;
Sam Ravnborg040fcc82006-01-28 22:15:55 +0100339 s->vmlinux = is_vmlinux(mod->name);
340 s->kernel = 0;
Ram Paibd5cbce2006-06-08 22:12:53 -0700341 s->export = export;
Sam Ravnborg040fcc82006-01-28 22:15:55 +0100342 return s;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700343}
344
Sam Ravnborg040fcc82006-01-28 22:15:55 +0100345static void sym_update_crc(const char *name, struct module *mod,
Ram Paibd5cbce2006-06-08 22:12:53 -0700346 unsigned int crc, enum export export)
Sam Ravnborg040fcc82006-01-28 22:15:55 +0100347{
348 struct symbol *s = find_symbol(name);
349
Rusty Russellb6568b12013-11-07 12:09:13 +1030350 if (!s) {
Ram Paibd5cbce2006-06-08 22:12:53 -0700351 s = new_symbol(name, mod, export);
Rusty Russellb6568b12013-11-07 12:09:13 +1030352 /* Don't complain when we find it later. */
353 s->preloaded = 1;
354 }
Sam Ravnborg040fcc82006-01-28 22:15:55 +0100355 s->crc = crc;
356 s->crc_valid = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700357}
358
Sam Ravnborg5c3ead82006-01-28 17:19:35 +0100359void *grab_file(const char *filename, unsigned long *size)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700360{
361 struct stat st;
Jesper Juhleb3d5cc2012-05-23 22:28:49 +0930362 void *map = MAP_FAILED;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700363 int fd;
364
365 fd = open(filename, O_RDONLY);
Jesper Juhleb3d5cc2012-05-23 22:28:49 +0930366 if (fd < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700367 return NULL;
Jesper Juhleb3d5cc2012-05-23 22:28:49 +0930368 if (fstat(fd, &st))
369 goto failed;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700370
371 *size = st.st_size;
372 map = mmap(NULL, *size, PROT_READ|PROT_WRITE, MAP_PRIVATE, fd, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700373
Jesper Juhleb3d5cc2012-05-23 22:28:49 +0930374failed:
375 close(fd);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700376 if (map == MAP_FAILED)
377 return NULL;
378 return map;
379}
380
Sam Ravnborg5c3ead82006-01-28 17:19:35 +0100381/**
382 * Return a copy of the next line in a mmap'ed file.
383 * spaces in the beginning of the line is trimmed away.
384 * Return a pointer to a static buffer.
385 **/
Sam Ravnborgdf578e72008-01-11 19:17:15 +0100386char *get_next_line(unsigned long *pos, void *file, unsigned long size)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700387{
388 static char line[4096];
389 int skip = 1;
390 size_t len = 0;
391 signed char *p = (signed char *)file + *pos;
392 char *s = line;
393
Sam Ravnborgdf578e72008-01-11 19:17:15 +0100394 for (; *pos < size ; (*pos)++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700395 if (skip && isspace(*p)) {
396 p++;
397 continue;
398 }
399 skip = 0;
400 if (*p != '\n' && (*pos < size)) {
401 len++;
402 *s++ = *p++;
403 if (len > 4095)
404 break; /* Too long, stop */
405 } else {
406 /* End of string */
407 *s = '\0';
408 return line;
409 }
410 }
411 /* End of buffer */
412 return NULL;
413}
414
Sam Ravnborg5c3ead82006-01-28 17:19:35 +0100415void release_file(void *file, unsigned long size)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700416{
417 munmap(file, size);
418}
419
Sam Ravnborg85bd2fd2007-02-26 15:33:52 +0100420static int parse_elf(struct elf_info *info, const char *filename)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700421{
422 unsigned int i;
Sam Ravnborg85bd2fd2007-02-26 15:33:52 +0100423 Elf_Ehdr *hdr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700424 Elf_Shdr *sechdrs;
425 Elf_Sym *sym;
Denys Vlasenko1ce53ad2010-07-29 01:47:53 +0200426 const char *secstrings;
427 unsigned int symtab_idx = ~0U, symtab_shndx_idx = ~0U;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700428
429 hdr = grab_file(filename, &info->size);
430 if (!hdr) {
Guenter Roeckeed380f2013-09-23 15:23:54 +0930431 if (ignore_missing_files) {
432 fprintf(stderr, "%s: %s (ignored)\n", filename,
433 strerror(errno));
434 return 0;
435 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700436 perror(filename);
Sam Ravnborg6803dc02006-06-24 23:46:54 +0200437 exit(1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700438 }
439 info->hdr = hdr;
Sam Ravnborg85bd2fd2007-02-26 15:33:52 +0100440 if (info->size < sizeof(*hdr)) {
441 /* file too small, assume this is an empty .o file */
442 return 0;
443 }
444 /* Is this a valid ELF file? */
445 if ((hdr->e_ident[EI_MAG0] != ELFMAG0) ||
446 (hdr->e_ident[EI_MAG1] != ELFMAG1) ||
447 (hdr->e_ident[EI_MAG2] != ELFMAG2) ||
448 (hdr->e_ident[EI_MAG3] != ELFMAG3)) {
449 /* Not an ELF file - silently ignore it */
450 return 0;
451 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700452 /* Fix endianness in ELF header */
Anders Kaseorg7d875a02009-05-03 22:02:55 +0200453 hdr->e_type = TO_NATIVE(hdr->e_type);
454 hdr->e_machine = TO_NATIVE(hdr->e_machine);
455 hdr->e_version = TO_NATIVE(hdr->e_version);
456 hdr->e_entry = TO_NATIVE(hdr->e_entry);
457 hdr->e_phoff = TO_NATIVE(hdr->e_phoff);
458 hdr->e_shoff = TO_NATIVE(hdr->e_shoff);
459 hdr->e_flags = TO_NATIVE(hdr->e_flags);
460 hdr->e_ehsize = TO_NATIVE(hdr->e_ehsize);
461 hdr->e_phentsize = TO_NATIVE(hdr->e_phentsize);
462 hdr->e_phnum = TO_NATIVE(hdr->e_phnum);
463 hdr->e_shentsize = TO_NATIVE(hdr->e_shentsize);
464 hdr->e_shnum = TO_NATIVE(hdr->e_shnum);
465 hdr->e_shstrndx = TO_NATIVE(hdr->e_shstrndx);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700466 sechdrs = (void *)hdr + hdr->e_shoff;
467 info->sechdrs = sechdrs;
468
Petr Stetiara83710e2007-08-27 12:15:07 +0200469 /* Check if file offset is correct */
470 if (hdr->e_shoff > info->size) {
Sam Ravnborgdf578e72008-01-11 19:17:15 +0100471 fatal("section header offset=%lu in file '%s' is bigger than "
472 "filesize=%lu\n", (unsigned long)hdr->e_shoff,
473 filename, info->size);
Petr Stetiara83710e2007-08-27 12:15:07 +0200474 return 0;
475 }
476
Anders Kaseorg68457562011-05-19 16:55:27 -0600477 if (hdr->e_shnum == SHN_UNDEF) {
Denys Vlasenko1ce53ad2010-07-29 01:47:53 +0200478 /*
479 * There are more than 64k sections,
480 * read count from .sh_size.
Denys Vlasenko1ce53ad2010-07-29 01:47:53 +0200481 */
482 info->num_sections = TO_NATIVE(sechdrs[0].sh_size);
483 }
484 else {
485 info->num_sections = hdr->e_shnum;
486 }
487 if (hdr->e_shstrndx == SHN_XINDEX) {
Anders Kaseorg68457562011-05-19 16:55:27 -0600488 info->secindex_strings = TO_NATIVE(sechdrs[0].sh_link);
Denys Vlasenko1ce53ad2010-07-29 01:47:53 +0200489 }
490 else {
491 info->secindex_strings = hdr->e_shstrndx;
492 }
493
Linus Torvalds1da177e2005-04-16 15:20:36 -0700494 /* Fix endianness in section headers */
Denys Vlasenko1ce53ad2010-07-29 01:47:53 +0200495 for (i = 0; i < info->num_sections; i++) {
Anders Kaseorg7d875a02009-05-03 22:02:55 +0200496 sechdrs[i].sh_name = TO_NATIVE(sechdrs[i].sh_name);
497 sechdrs[i].sh_type = TO_NATIVE(sechdrs[i].sh_type);
498 sechdrs[i].sh_flags = TO_NATIVE(sechdrs[i].sh_flags);
499 sechdrs[i].sh_addr = TO_NATIVE(sechdrs[i].sh_addr);
500 sechdrs[i].sh_offset = TO_NATIVE(sechdrs[i].sh_offset);
501 sechdrs[i].sh_size = TO_NATIVE(sechdrs[i].sh_size);
502 sechdrs[i].sh_link = TO_NATIVE(sechdrs[i].sh_link);
503 sechdrs[i].sh_info = TO_NATIVE(sechdrs[i].sh_info);
504 sechdrs[i].sh_addralign = TO_NATIVE(sechdrs[i].sh_addralign);
505 sechdrs[i].sh_entsize = TO_NATIVE(sechdrs[i].sh_entsize);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700506 }
507 /* Find symbol table. */
Denys Vlasenko1ce53ad2010-07-29 01:47:53 +0200508 secstrings = (void *)hdr + sechdrs[info->secindex_strings].sh_offset;
509 for (i = 1; i < info->num_sections; i++) {
Ram Paibd5cbce2006-06-08 22:12:53 -0700510 const char *secname;
Tejun Heo56fc82c2009-02-06 00:48:02 +0900511 int nobits = sechdrs[i].sh_type == SHT_NOBITS;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700512
Tejun Heo56fc82c2009-02-06 00:48:02 +0900513 if (!nobits && sechdrs[i].sh_offset > info->size) {
Sam Ravnborgdf578e72008-01-11 19:17:15 +0100514 fatal("%s is truncated. sechdrs[i].sh_offset=%lu > "
515 "sizeof(*hrd)=%zu\n", filename,
516 (unsigned long)sechdrs[i].sh_offset,
517 sizeof(*hdr));
Sam Ravnborg85bd2fd2007-02-26 15:33:52 +0100518 return 0;
519 }
Ram Paibd5cbce2006-06-08 22:12:53 -0700520 secname = secstrings + sechdrs[i].sh_name;
521 if (strcmp(secname, ".modinfo") == 0) {
Tejun Heo56fc82c2009-02-06 00:48:02 +0900522 if (nobits)
523 fatal("%s has NOBITS .modinfo\n", filename);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700524 info->modinfo = (void *)hdr + sechdrs[i].sh_offset;
525 info->modinfo_len = sechdrs[i].sh_size;
Ram Paibd5cbce2006-06-08 22:12:53 -0700526 } else if (strcmp(secname, "__ksymtab") == 0)
527 info->export_sec = i;
Sam Ravnborgc96fca22006-07-01 11:44:23 +0200528 else if (strcmp(secname, "__ksymtab_unused") == 0)
529 info->export_unused_sec = i;
Ram Paibd5cbce2006-06-08 22:12:53 -0700530 else if (strcmp(secname, "__ksymtab_gpl") == 0)
531 info->export_gpl_sec = i;
Sam Ravnborgc96fca22006-07-01 11:44:23 +0200532 else if (strcmp(secname, "__ksymtab_unused_gpl") == 0)
533 info->export_unused_gpl_sec = i;
Ram Paibd5cbce2006-06-08 22:12:53 -0700534 else if (strcmp(secname, "__ksymtab_gpl_future") == 0)
535 info->export_gpl_future_sec = i;
536
Denys Vlasenko1ce53ad2010-07-29 01:47:53 +0200537 if (sechdrs[i].sh_type == SHT_SYMTAB) {
538 unsigned int sh_link_idx;
539 symtab_idx = i;
540 info->symtab_start = (void *)hdr +
541 sechdrs[i].sh_offset;
542 info->symtab_stop = (void *)hdr +
543 sechdrs[i].sh_offset + sechdrs[i].sh_size;
Anders Kaseorg68457562011-05-19 16:55:27 -0600544 sh_link_idx = sechdrs[i].sh_link;
Denys Vlasenko1ce53ad2010-07-29 01:47:53 +0200545 info->strtab = (void *)hdr +
546 sechdrs[sh_link_idx].sh_offset;
547 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700548
Denys Vlasenko1ce53ad2010-07-29 01:47:53 +0200549 /* 32bit section no. table? ("more than 64k sections") */
550 if (sechdrs[i].sh_type == SHT_SYMTAB_SHNDX) {
551 symtab_shndx_idx = i;
552 info->symtab_shndx_start = (void *)hdr +
553 sechdrs[i].sh_offset;
554 info->symtab_shndx_stop = (void *)hdr +
555 sechdrs[i].sh_offset + sechdrs[i].sh_size;
556 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700557 }
Sam Ravnborgdf578e72008-01-11 19:17:15 +0100558 if (!info->symtab_start)
Sam Ravnborgcb805142006-01-28 16:57:26 +0100559 fatal("%s has no symtab?\n", filename);
Sam Ravnborgdf578e72008-01-11 19:17:15 +0100560
Linus Torvalds1da177e2005-04-16 15:20:36 -0700561 /* Fix endianness in symbols */
562 for (sym = info->symtab_start; sym < info->symtab_stop; sym++) {
563 sym->st_shndx = TO_NATIVE(sym->st_shndx);
564 sym->st_name = TO_NATIVE(sym->st_name);
565 sym->st_value = TO_NATIVE(sym->st_value);
566 sym->st_size = TO_NATIVE(sym->st_size);
567 }
Denys Vlasenko1ce53ad2010-07-29 01:47:53 +0200568
569 if (symtab_shndx_idx != ~0U) {
570 Elf32_Word *p;
Anders Kaseorg68457562011-05-19 16:55:27 -0600571 if (symtab_idx != sechdrs[symtab_shndx_idx].sh_link)
Denys Vlasenko1ce53ad2010-07-29 01:47:53 +0200572 fatal("%s: SYMTAB_SHNDX has bad sh_link: %u!=%u\n",
Anders Kaseorg68457562011-05-19 16:55:27 -0600573 filename, sechdrs[symtab_shndx_idx].sh_link,
Denys Vlasenko1ce53ad2010-07-29 01:47:53 +0200574 symtab_idx);
575 /* Fix endianness */
576 for (p = info->symtab_shndx_start; p < info->symtab_shndx_stop;
577 p++)
578 *p = TO_NATIVE(*p);
579 }
580
Sam Ravnborg85bd2fd2007-02-26 15:33:52 +0100581 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700582}
583
Sam Ravnborg5c3ead82006-01-28 17:19:35 +0100584static void parse_elf_finish(struct elf_info *info)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700585{
586 release_file(info->hdr, info->size);
587}
588
Sam Ravnborg4d7365d2008-06-12 15:02:55 +0200589static int ignore_undef_symbol(struct elf_info *info, const char *symname)
590{
591 /* ignore __this_module, it will be resolved shortly */
Masahiro Yamadab2c5cdc2018-05-09 16:23:45 +0900592 if (strcmp(symname, "__this_module") == 0)
Sam Ravnborg4d7365d2008-06-12 15:02:55 +0200593 return 1;
594 /* ignore global offset table */
595 if (strcmp(symname, "_GLOBAL_OFFSET_TABLE_") == 0)
596 return 1;
597 if (info->hdr->e_machine == EM_PPC)
598 /* Special register function linked on all modules during final link of .ko */
Masahiro Yamadad62c4762018-05-09 18:50:38 +0900599 if (strstarts(symname, "_restgpr_") ||
600 strstarts(symname, "_savegpr_") ||
601 strstarts(symname, "_rest32gpr_") ||
602 strstarts(symname, "_save32gpr_") ||
603 strstarts(symname, "_restvr_") ||
604 strstarts(symname, "_savevr_"))
Sam Ravnborg4d7365d2008-06-12 15:02:55 +0200605 return 1;
Stephen Rothwell7fca5dc2010-06-29 20:08:42 +0000606 if (info->hdr->e_machine == EM_PPC64)
607 /* Special register function linked on all modules during final link of .ko */
Masahiro Yamadad62c4762018-05-09 18:50:38 +0900608 if (strstarts(symname, "_restgpr0_") ||
609 strstarts(symname, "_savegpr0_") ||
610 strstarts(symname, "_restvr_") ||
611 strstarts(symname, "_savevr_") ||
Alan Modrac1536932016-01-15 20:52:22 +1100612 strcmp(symname, ".TOC.") == 0)
Stephen Rothwell7fca5dc2010-06-29 20:08:42 +0000613 return 1;
Sam Ravnborg4d7365d2008-06-12 15:02:55 +0200614 /* Do not ignore this symbol */
615 return 0;
616}
617
Sam Ravnborg5c3ead82006-01-28 17:19:35 +0100618static void handle_modversions(struct module *mod, struct elf_info *info,
619 Elf_Sym *sym, const char *symname)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700620{
621 unsigned int crc;
Alessio Igor Bogani62a26352011-07-14 08:51:16 +0200622 enum export export;
Nicholas Piggind8c1eb82016-11-24 03:41:42 +1100623 bool is_crc = false;
Alessio Igor Bogani62a26352011-07-14 08:51:16 +0200624
Frank Rowand258f7422012-04-09 17:59:03 -0700625 if ((!is_vmlinux(mod->name) || mod->is_dot_o) &&
Masahiro Yamadad62c4762018-05-09 18:50:38 +0900626 strstarts(symname, "__ksymtab"))
Alessio Igor Bogani62a26352011-07-14 08:51:16 +0200627 export = export_from_secname(info, get_secindex(info, sym));
628 else
629 export = export_from_sec(info, get_secindex(info, sym));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700630
Andi Kleenb5064652013-11-12 15:08:38 -0800631 /* CRC'd symbol */
Masahiro Yamadad62c4762018-05-09 18:50:38 +0900632 if (strstarts(symname, "__crc_")) {
Nicholas Piggind8c1eb82016-11-24 03:41:42 +1100633 is_crc = true;
Andi Kleenb5064652013-11-12 15:08:38 -0800634 crc = (unsigned int) sym->st_value;
Ard Biesheuvel56067812017-02-03 09:54:05 +0000635 if (sym->st_shndx != SHN_UNDEF && sym->st_shndx != SHN_ABS) {
636 unsigned int *crcp;
637
638 /* symbol points to the CRC in the ELF object */
639 crcp = (void *)info->hdr + sym->st_value +
640 info->sechdrs[sym->st_shndx].sh_offset -
641 (info->hdr->e_type != ET_REL ?
642 info->sechdrs[sym->st_shndx].sh_addr : 0);
643 crc = *crcp;
644 }
Masahiro Yamadab2c5cdc2018-05-09 16:23:45 +0900645 sym_update_crc(symname + strlen("__crc_"), mod, crc,
Andi Kleenb5064652013-11-12 15:08:38 -0800646 export);
647 }
648
Linus Torvalds1da177e2005-04-16 15:20:36 -0700649 switch (sym->st_shndx) {
650 case SHN_COMMON:
Masahiro Yamadad62c4762018-05-09 18:50:38 +0900651 if (strstarts(symname, "__gnu_lto_")) {
Andi Kleenef178f92014-02-08 09:01:17 +0100652 /* Should warn here, but modpost runs before the linker */
653 } else
654 warn("\"%s\" [%s] is COMMON symbol\n", symname, mod->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700655 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700656 case SHN_UNDEF:
657 /* undefined symbol */
658 if (ELF_ST_BIND(sym->st_info) != STB_GLOBAL &&
659 ELF_ST_BIND(sym->st_info) != STB_WEAK)
660 break;
Sam Ravnborg4d7365d2008-06-12 15:02:55 +0200661 if (ignore_undef_symbol(info, symname))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700662 break;
Ben Colline8d529012005-08-19 13:44:57 -0700663/* cope with newer glibc (2.3.4 or higher) STT_ definition in elf.h */
664#if defined(STT_REGISTER) || defined(STT_SPARC_REGISTER)
665/* add compatibility with older glibc */
666#ifndef STT_SPARC_REGISTER
667#define STT_SPARC_REGISTER STT_REGISTER
668#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700669 if (info->hdr->e_machine == EM_SPARC ||
670 info->hdr->e_machine == EM_SPARCV9) {
671 /* Ignore register directives. */
Ben Colline8d529012005-08-19 13:44:57 -0700672 if (ELF_ST_TYPE(sym->st_info) == STT_SPARC_REGISTER)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700673 break;
Sam Ravnborg62070fa2006-03-03 16:46:04 +0100674 if (symname[0] == '.') {
Randy Dunlap1f3aa902018-08-15 12:30:38 -0700675 char *munged = NOFAIL(strdup(symname));
Sam Ravnborg62070fa2006-03-03 16:46:04 +0100676 munged[0] = '_';
677 munged[1] = toupper(munged[1]);
678 symname = munged;
679 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700680 }
681#endif
Sam Ravnborg62070fa2006-03-03 16:46:04 +0100682
Nicholas Piggind8c1eb82016-11-24 03:41:42 +1100683 if (is_crc) {
684 const char *e = is_vmlinux(mod->name) ?"":".ko";
Masahiro Yamadab2c5cdc2018-05-09 16:23:45 +0900685 warn("EXPORT symbol \"%s\" [%s%s] version generation failed, symbol will not be versioned.\n",
686 symname + strlen("__crc_"), mod->name, e);
Nicholas Piggind8c1eb82016-11-24 03:41:42 +1100687 }
Rusty Russellb92021b2013-03-15 15:04:17 +1030688 mod->unres = alloc_symbol(symname,
689 ELF_ST_BIND(sym->st_info) == STB_WEAK,
690 mod->unres);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700691 break;
692 default:
693 /* All exported symbols */
Masahiro Yamadad62c4762018-05-09 18:50:38 +0900694 if (strstarts(symname, "__ksymtab_")) {
Masahiro Yamadab2c5cdc2018-05-09 16:23:45 +0900695 sym_add_exported(symname + strlen("__ksymtab_"), mod,
Ram Paibd5cbce2006-06-08 22:12:53 -0700696 export);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700697 }
Masahiro Yamadab2c5cdc2018-05-09 16:23:45 +0900698 if (strcmp(symname, "init_module") == 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700699 mod->has_init = 1;
Masahiro Yamadab2c5cdc2018-05-09 16:23:45 +0900700 if (strcmp(symname, "cleanup_module") == 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700701 mod->has_cleanup = 1;
702 break;
703 }
704}
705
Sam Ravnborg5c3ead82006-01-28 17:19:35 +0100706/**
707 * Parse tag=value strings from .modinfo section
708 **/
Linus Torvalds1da177e2005-04-16 15:20:36 -0700709static char *next_string(char *string, unsigned long *secsize)
710{
711 /* Skip non-zero chars */
712 while (string[0]) {
713 string++;
714 if ((*secsize)-- <= 1)
715 return NULL;
716 }
717
718 /* Skip any zero padding. */
719 while (!string[0]) {
720 string++;
721 if ((*secsize)-- <= 1)
722 return NULL;
723 }
724 return string;
725}
726
Masahiro Yamadabca2cce2018-05-09 18:50:37 +0900727static char *get_next_modinfo(struct elf_info *info, const char *tag,
728 char *prev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700729{
730 char *p;
731 unsigned int taglen = strlen(tag);
Masahiro Yamadabca2cce2018-05-09 18:50:37 +0900732 char *modinfo = info->modinfo;
733 unsigned long size = info->modinfo_len;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700734
Masahiro Yamadabca2cce2018-05-09 18:50:37 +0900735 if (prev) {
736 size -= prev - modinfo;
737 modinfo = next_string(prev, &size);
Sam Ravnborgb817f6f2006-06-09 21:53:55 +0200738 }
739
Linus Torvalds1da177e2005-04-16 15:20:36 -0700740 for (p = modinfo; p; p = next_string(p, &size)) {
741 if (strncmp(p, tag, taglen) == 0 && p[taglen] == '=')
742 return p + taglen + 1;
743 }
744 return NULL;
745}
746
Masahiro Yamadabca2cce2018-05-09 18:50:37 +0900747static char *get_modinfo(struct elf_info *info, const char *tag)
Sam Ravnborgb817f6f2006-06-09 21:53:55 +0200748
749{
Masahiro Yamadabca2cce2018-05-09 18:50:37 +0900750 return get_next_modinfo(info, tag, NULL);
Sam Ravnborgb817f6f2006-06-09 21:53:55 +0200751}
752
Sam Ravnborg93684d32006-02-19 11:53:35 +0100753/**
Sam Ravnborg4c8fbca2006-02-26 22:18:11 +0100754 * Test if string s ends in string sub
755 * return 0 if match
756 **/
757static int strrcmp(const char *s, const char *sub)
758{
Sam Ravnborgdf578e72008-01-11 19:17:15 +0100759 int slen, sublen;
Sam Ravnborg62070fa2006-03-03 16:46:04 +0100760
Sam Ravnborg4c8fbca2006-02-26 22:18:11 +0100761 if (!s || !sub)
762 return 1;
Sam Ravnborg62070fa2006-03-03 16:46:04 +0100763
Sam Ravnborg4c8fbca2006-02-26 22:18:11 +0100764 slen = strlen(s);
Sam Ravnborgdf578e72008-01-11 19:17:15 +0100765 sublen = strlen(sub);
Sam Ravnborg62070fa2006-03-03 16:46:04 +0100766
Sam Ravnborg4c8fbca2006-02-26 22:18:11 +0100767 if ((slen == 0) || (sublen == 0))
768 return 1;
769
Sam Ravnborgdf578e72008-01-11 19:17:15 +0100770 if (sublen > slen)
771 return 1;
Sam Ravnborg4c8fbca2006-02-26 22:18:11 +0100772
Sam Ravnborgdf578e72008-01-11 19:17:15 +0100773 return memcmp(s + slen - sublen, sub, sublen);
Sam Ravnborg4c8fbca2006-02-26 22:18:11 +0100774}
775
Sam Ravnborgff13f922008-01-23 19:54:27 +0100776static const char *sym_name(struct elf_info *elf, Elf_Sym *sym)
777{
Sam Ravnborg58fb0d42008-01-23 21:13:50 +0100778 if (sym)
779 return elf->strtab + sym->st_name;
780 else
Sam Ravnborgf6667512008-02-06 21:51:18 +0100781 return "(unknown)";
Sam Ravnborgff13f922008-01-23 19:54:27 +0100782}
783
Sam Ravnborg10668222008-01-13 22:21:31 +0100784/* The pattern is an array of simple patterns.
785 * "foo" will match an exact string equal to "foo"
Sam Ravnborg6c5bd232008-01-20 10:43:27 +0100786 * "*foo" will match a string that ends with "foo"
Sam Ravnborg10668222008-01-13 22:21:31 +0100787 * "foo*" will match a string that begins with "foo"
Paul Gortmaker09c20c02015-04-20 10:20:26 +0930788 * "*foo*" will match a string that contains "foo"
Sam Ravnborg10668222008-01-13 22:21:31 +0100789 */
Trevor Keith5c725132009-09-22 16:43:38 -0700790static int match(const char *sym, const char * const pat[])
Sam Ravnborg10668222008-01-13 22:21:31 +0100791{
792 const char *p;
793 while (*pat) {
794 p = *pat++;
795 const char *endp = p + strlen(p) - 1;
796
Paul Gortmaker09c20c02015-04-20 10:20:26 +0930797 /* "*foo*" */
798 if (*p == '*' && *endp == '*') {
799 char *here, *bare = strndup(p + 1, strlen(p) - 2);
800
801 here = strstr(sym, bare);
802 free(bare);
803 if (here != NULL)
804 return 1;
805 }
Sam Ravnborg6c5bd232008-01-20 10:43:27 +0100806 /* "*foo" */
Paul Gortmaker09c20c02015-04-20 10:20:26 +0930807 else if (*p == '*') {
Sam Ravnborg6c5bd232008-01-20 10:43:27 +0100808 if (strrcmp(sym, p + 1) == 0)
809 return 1;
810 }
Sam Ravnborg10668222008-01-13 22:21:31 +0100811 /* "foo*" */
Sam Ravnborg6c5bd232008-01-20 10:43:27 +0100812 else if (*endp == '*') {
Sam Ravnborg10668222008-01-13 22:21:31 +0100813 if (strncmp(sym, p, strlen(p) - 1) == 0)
814 return 1;
815 }
Sam Ravnborg10668222008-01-13 22:21:31 +0100816 /* no wildcards */
817 else {
818 if (strcmp(p, sym) == 0)
819 return 1;
820 }
821 }
822 /* no match */
823 return 0;
824}
825
Sam Ravnborg10668222008-01-13 22:21:31 +0100826/* sections that we do not want to do full section mismatch check on */
Mathias Krause7a3ee752014-08-27 20:28:53 +0930827static const char *const section_white_list[] =
Sam Ravnborg4391ed62009-05-04 13:05:26 +0200828{
829 ".comment*",
830 ".debug*",
Chen Gang4d10c222013-08-20 15:33:19 +0930831 ".cranges", /* sh64 */
H.J. Lu11215842010-12-15 17:11:22 -0800832 ".zdebug*", /* Compressed debug sections. */
David Howells739d8752018-03-08 09:48:46 +0000833 ".GCC.command.line", /* record-gcc-switches */
Sam Ravnborg4391ed62009-05-04 13:05:26 +0200834 ".mdebug*", /* alpha, score, mips etc. */
835 ".pdr", /* alpha, score, mips etc. */
836 ".stab*",
837 ".note*",
838 ".got*",
839 ".toc*",
Max Filippovaf42e972012-09-17 05:44:38 +0400840 ".xt.prop", /* xtensa */
841 ".xt.lit", /* xtensa */
Vineet Guptaf2e207f2013-01-21 17:18:57 +1030842 ".arcextmap*", /* arc */
843 ".gnu.linkonce.arcext*", /* arc : modules */
Noam Camusd1189c62015-10-26 19:51:46 +1030844 ".cmem*", /* EZchip */
845 ".fmt_slot*", /* EZchip */
Andi Kleenef178f92014-02-08 09:01:17 +0100846 ".gnu.lto*",
Josh Poimboeufe390f9a2017-03-01 12:04:44 -0600847 ".discard.*",
Sam Ravnborg4391ed62009-05-04 13:05:26 +0200848 NULL
849};
Sam Ravnborg10668222008-01-13 22:21:31 +0100850
Sam Ravnborge241a632008-01-28 20:13:13 +0100851/*
Anders Kaseorgb614a692009-04-23 16:49:33 -0400852 * This is used to find sections missing the SHF_ALLOC flag.
Sam Ravnborge241a632008-01-28 20:13:13 +0100853 * The cause of this is often a section specified in assembler
Anders Kaseorgb614a692009-04-23 16:49:33 -0400854 * without "ax" / "aw".
Sam Ravnborge241a632008-01-28 20:13:13 +0100855 */
Anders Kaseorgb614a692009-04-23 16:49:33 -0400856static void check_section(const char *modname, struct elf_info *elf,
Masahiro Yamadabb66fc62014-06-10 19:08:13 +0900857 Elf_Shdr *sechdr)
Sam Ravnborge241a632008-01-28 20:13:13 +0100858{
Anders Kaseorgb614a692009-04-23 16:49:33 -0400859 const char *sec = sech_name(elf, sechdr);
Sam Ravnborge241a632008-01-28 20:13:13 +0100860
Anders Kaseorgb614a692009-04-23 16:49:33 -0400861 if (sechdr->sh_type == SHT_PROGBITS &&
862 !(sechdr->sh_flags & SHF_ALLOC) &&
863 !match(sec, section_white_list)) {
864 warn("%s (%s): unexpected non-allocatable section.\n"
865 "Did you forget to use \"ax\"/\"aw\" in a .S file?\n"
866 "Note that for example <linux/init.h> contains\n"
867 "section definitions for use in .S files.\n\n",
868 modname, sec);
Sam Ravnborge241a632008-01-28 20:13:13 +0100869 }
Sam Ravnborge241a632008-01-28 20:13:13 +0100870}
871
872
873
Sam Ravnborgeb8f6892008-01-20 20:07:28 +0100874#define ALL_INIT_DATA_SECTIONS \
Rasmus Villemoesa0d8f802014-07-27 07:28:01 +0930875 ".init.setup", ".init.rodata", ".meminit.rodata", \
876 ".init.data", ".meminit.data"
Sam Ravnborgeb8f6892008-01-20 20:07:28 +0100877#define ALL_EXIT_DATA_SECTIONS \
Rasmus Villemoesa0d8f802014-07-27 07:28:01 +0930878 ".exit.data", ".memexit.data"
Sam Ravnborg10668222008-01-13 22:21:31 +0100879
Sam Ravnborgeb8f6892008-01-20 20:07:28 +0100880#define ALL_INIT_TEXT_SECTIONS \
Rasmus Villemoesa0d8f802014-07-27 07:28:01 +0930881 ".init.text", ".meminit.text"
Sam Ravnborgeb8f6892008-01-20 20:07:28 +0100882#define ALL_EXIT_TEXT_SECTIONS \
Rasmus Villemoesa0d8f802014-07-27 07:28:01 +0930883 ".exit.text", ".memexit.text"
Sam Ravnborg10668222008-01-13 22:21:31 +0100884
Sebastian Andrzej Siewiorbb15d8d2012-06-03 20:48:17 +0200885#define ALL_PCI_INIT_SECTIONS \
Rasmus Villemoesa0d8f802014-07-27 07:28:01 +0930886 ".pci_fixup_early", ".pci_fixup_header", ".pci_fixup_final", \
887 ".pci_fixup_enable", ".pci_fixup_resume", \
888 ".pci_fixup_resume_early", ".pci_fixup_suspend"
Sebastian Andrzej Siewiorbb15d8d2012-06-03 20:48:17 +0200889
Paul Gortmakere24f6622013-06-19 19:30:48 -0400890#define ALL_XXXINIT_SECTIONS MEM_INIT_SECTIONS
891#define ALL_XXXEXIT_SECTIONS MEM_EXIT_SECTIONS
Uwe Kleine-König4a31a222010-01-29 12:04:26 +0100892
893#define ALL_INIT_SECTIONS INIT_SECTIONS, ALL_XXXINIT_SECTIONS
894#define ALL_EXIT_SECTIONS EXIT_SECTIONS, ALL_XXXEXIT_SECTIONS
Sam Ravnborg10668222008-01-13 22:21:31 +0100895
Rasmus Villemoesa0d8f802014-07-27 07:28:01 +0930896#define DATA_SECTIONS ".data", ".data.rel"
Quentin Casasnovas157d1972015-04-13 20:42:52 +0930897#define TEXT_SECTIONS ".text", ".text.unlikely", ".sched.text", \
Chris Metcalf6727ad92016-10-07 17:02:55 -0700898 ".kprobes.text", ".cpuidle.text"
Quentin Casasnovas52dc0592015-04-13 20:52:53 +0930899#define OTHER_TEXT_SECTIONS ".ref.text", ".head.text", ".spinlock.text", \
Chris Metcalf673c2c32015-07-08 17:07:41 -0400900 ".fixup", ".entry.text", ".exception.text", ".text.*", \
901 ".coldtext"
Sam Ravnborg10668222008-01-13 22:21:31 +0100902
Jan Beulichfd6c3a82009-03-12 10:58:33 +0000903#define INIT_SECTIONS ".init.*"
Jan Beulichfd6c3a82009-03-12 10:58:33 +0000904#define MEM_INIT_SECTIONS ".meminit.*"
Sam Ravnborgeb8f6892008-01-20 20:07:28 +0100905
Jan Beulichfd6c3a82009-03-12 10:58:33 +0000906#define EXIT_SECTIONS ".exit.*"
Jan Beulichfd6c3a82009-03-12 10:58:33 +0000907#define MEM_EXIT_SECTIONS ".memexit.*"
Sam Ravnborgeb8f6892008-01-20 20:07:28 +0100908
Quentin Casasnovas52dc0592015-04-13 20:52:53 +0930909#define ALL_TEXT_SECTIONS ALL_INIT_TEXT_SECTIONS, ALL_EXIT_TEXT_SECTIONS, \
910 TEXT_SECTIONS, OTHER_TEXT_SECTIONS
911
Sam Ravnborg6c5bd232008-01-20 10:43:27 +0100912/* init data sections */
Mathias Krause7a3ee752014-08-27 20:28:53 +0930913static const char *const init_data_sections[] =
914 { ALL_INIT_DATA_SECTIONS, NULL };
Sam Ravnborg6c5bd232008-01-20 10:43:27 +0100915
916/* all init sections */
Mathias Krause7a3ee752014-08-27 20:28:53 +0930917static const char *const init_sections[] = { ALL_INIT_SECTIONS, NULL };
Sam Ravnborg6c5bd232008-01-20 10:43:27 +0100918
919/* All init and exit sections (code + data) */
Mathias Krause7a3ee752014-08-27 20:28:53 +0930920static const char *const init_exit_sections[] =
Sam Ravnborgeb8f6892008-01-20 20:07:28 +0100921 {ALL_INIT_SECTIONS, ALL_EXIT_SECTIONS, NULL };
Sam Ravnborg6c5bd232008-01-20 10:43:27 +0100922
Paul Gortmaker4a3893d2015-04-20 10:20:40 +0930923/* all text sections */
924static const char *const text_sections[] = { ALL_TEXT_SECTIONS, NULL };
925
Sam Ravnborg6c5bd232008-01-20 10:43:27 +0100926/* data section */
Mathias Krause7a3ee752014-08-27 20:28:53 +0930927static const char *const data_sections[] = { DATA_SECTIONS, NULL };
Sam Ravnborg6c5bd232008-01-20 10:43:27 +0100928
Sam Ravnborg6c5bd232008-01-20 10:43:27 +0100929
930/* symbols in .data that may refer to init/exit sections */
Uwe Kleine-Königaf92a822010-01-30 20:52:50 +0100931#define DEFAULT_SYMBOL_WHITE_LIST \
932 "*driver", \
933 "*_template", /* scsi uses *_template a lot */ \
934 "*_timer", /* arm uses ops structures named _timer a lot */ \
935 "*_sht", /* scsi also used *_sht to some extent */ \
936 "*_ops", \
937 "*_probe", \
938 "*_probe_one", \
939 "*_console"
Sam Ravnborg6c5bd232008-01-20 10:43:27 +0100940
Mathias Krause7a3ee752014-08-27 20:28:53 +0930941static const char *const head_sections[] = { ".head.text*", NULL };
942static const char *const linker_symbols[] =
Sam Ravnborg6c5bd232008-01-20 10:43:27 +0100943 { "__init_begin", "_sinittext", "_einittext", NULL };
Paul Gortmaker4a3893d2015-04-20 10:20:40 +0930944static const char *const optim_symbols[] = { "*.constprop.*", NULL };
Sam Ravnborg6c5bd232008-01-20 10:43:27 +0100945
Sam Ravnborg588ccd72008-01-24 21:12:37 +0100946enum mismatch {
Uwe Kleine-Königbbd3f4f2010-01-30 16:35:47 +0100947 TEXT_TO_ANY_INIT,
948 DATA_TO_ANY_INIT,
949 TEXT_TO_ANY_EXIT,
950 DATA_TO_ANY_EXIT,
951 XXXINIT_TO_SOME_INIT,
952 XXXEXIT_TO_SOME_EXIT,
953 ANY_INIT_TO_ANY_EXIT,
954 ANY_EXIT_TO_ANY_INIT,
Sam Ravnborg588ccd72008-01-24 21:12:37 +0100955 EXPORT_TO_INIT_EXIT,
Quentin Casasnovas52dc0592015-04-13 20:52:53 +0930956 EXTABLE_TO_NON_TEXT,
Sam Ravnborg588ccd72008-01-24 21:12:37 +0100957};
958
Quentin Casasnovase5d8f592015-04-13 20:55:15 +0930959/**
960 * Describe how to match sections on different criterias:
961 *
962 * @fromsec: Array of sections to be matched.
963 *
964 * @bad_tosec: Relocations applied to a section in @fromsec to a section in
965 * this array is forbidden (black-list). Can be empty.
966 *
967 * @good_tosec: Relocations applied to a section in @fromsec must be
968 * targetting sections in this array (white-list). Can be empty.
969 *
970 * @mismatch: Type of mismatch.
971 *
972 * @symbol_white_list: Do not match a relocation to a symbol in this list
973 * even if it is targetting a section in @bad_to_sec.
974 *
975 * @handler: Specific handler to call when a match is found. If NULL,
976 * default_mismatch_handler() will be called.
977 *
978 */
Sam Ravnborg10668222008-01-13 22:21:31 +0100979struct sectioncheck {
980 const char *fromsec[20];
Quentin Casasnovas050e57f2015-04-13 20:41:04 +0930981 const char *bad_tosec[20];
982 const char *good_tosec[20];
Sam Ravnborg588ccd72008-01-24 21:12:37 +0100983 enum mismatch mismatch;
Uwe Kleine-Königaf92a822010-01-30 20:52:50 +0100984 const char *symbol_white_list[20];
Quentin Casasnovas644e8f12015-04-13 20:43:17 +0930985 void (*handler)(const char *modname, struct elf_info *elf,
986 const struct sectioncheck* const mismatch,
987 Elf_Rela *r, Elf_Sym *sym, const char *fromsec);
988
Sam Ravnborg10668222008-01-13 22:21:31 +0100989};
990
Quentin Casasnovas52dc0592015-04-13 20:52:53 +0930991static void extable_mismatch_handler(const char *modname, struct elf_info *elf,
992 const struct sectioncheck* const mismatch,
993 Elf_Rela *r, Elf_Sym *sym,
994 const char *fromsec);
995
Mathias Krause7a3ee752014-08-27 20:28:53 +0930996static const struct sectioncheck sectioncheck[] = {
Sam Ravnborg10668222008-01-13 22:21:31 +0100997/* Do not reference init/exit code/data from
998 * normal code and data
999 */
1000{
Sam Ravnborg588ccd72008-01-24 21:12:37 +01001001 .fromsec = { TEXT_SECTIONS, NULL },
Quentin Casasnovas050e57f2015-04-13 20:41:04 +09301002 .bad_tosec = { ALL_INIT_SECTIONS, NULL },
Uwe Kleine-Königbbd3f4f2010-01-30 16:35:47 +01001003 .mismatch = TEXT_TO_ANY_INIT,
Uwe Kleine-Königaf92a822010-01-30 20:52:50 +01001004 .symbol_white_list = { DEFAULT_SYMBOL_WHITE_LIST, NULL },
Sam Ravnborg588ccd72008-01-24 21:12:37 +01001005},
1006{
1007 .fromsec = { DATA_SECTIONS, NULL },
Quentin Casasnovas050e57f2015-04-13 20:41:04 +09301008 .bad_tosec = { ALL_XXXINIT_SECTIONS, NULL },
Uwe Kleine-Königbbd3f4f2010-01-30 16:35:47 +01001009 .mismatch = DATA_TO_ANY_INIT,
Uwe Kleine-Königaf92a822010-01-30 20:52:50 +01001010 .symbol_white_list = { DEFAULT_SYMBOL_WHITE_LIST, NULL },
Sam Ravnborg588ccd72008-01-24 21:12:37 +01001011},
1012{
Uwe Kleine-König0db252452010-01-30 21:14:23 +01001013 .fromsec = { DATA_SECTIONS, NULL },
Quentin Casasnovas050e57f2015-04-13 20:41:04 +09301014 .bad_tosec = { INIT_SECTIONS, NULL },
Uwe Kleine-König0db252452010-01-30 21:14:23 +01001015 .mismatch = DATA_TO_ANY_INIT,
1016 .symbol_white_list = {
1017 "*_template", "*_timer", "*_sht", "*_ops",
1018 "*_probe", "*_probe_one", "*_console", NULL
1019 },
1020},
1021{
Sam Ravnborg588ccd72008-01-24 21:12:37 +01001022 .fromsec = { TEXT_SECTIONS, NULL },
Quentin Casasnovas050e57f2015-04-13 20:41:04 +09301023 .bad_tosec = { ALL_EXIT_SECTIONS, NULL },
Uwe Kleine-Königbbd3f4f2010-01-30 16:35:47 +01001024 .mismatch = TEXT_TO_ANY_EXIT,
Uwe Kleine-Königaf92a822010-01-30 20:52:50 +01001025 .symbol_white_list = { DEFAULT_SYMBOL_WHITE_LIST, NULL },
Sam Ravnborg588ccd72008-01-24 21:12:37 +01001026},
1027{
1028 .fromsec = { DATA_SECTIONS, NULL },
Quentin Casasnovas050e57f2015-04-13 20:41:04 +09301029 .bad_tosec = { ALL_EXIT_SECTIONS, NULL },
Uwe Kleine-Königbbd3f4f2010-01-30 16:35:47 +01001030 .mismatch = DATA_TO_ANY_EXIT,
Uwe Kleine-Königaf92a822010-01-30 20:52:50 +01001031 .symbol_white_list = { DEFAULT_SYMBOL_WHITE_LIST, NULL },
Sam Ravnborgeb8f6892008-01-20 20:07:28 +01001032},
Paul Gortmakere24f6622013-06-19 19:30:48 -04001033/* Do not reference init code/data from meminit code/data */
Sam Ravnborgeb8f6892008-01-20 20:07:28 +01001034{
Uwe Kleine-König4a31a222010-01-29 12:04:26 +01001035 .fromsec = { ALL_XXXINIT_SECTIONS, NULL },
Quentin Casasnovas050e57f2015-04-13 20:41:04 +09301036 .bad_tosec = { INIT_SECTIONS, NULL },
Uwe Kleine-Königbbd3f4f2010-01-30 16:35:47 +01001037 .mismatch = XXXINIT_TO_SOME_INIT,
Uwe Kleine-Königaf92a822010-01-30 20:52:50 +01001038 .symbol_white_list = { DEFAULT_SYMBOL_WHITE_LIST, NULL },
Sam Ravnborgeb8f6892008-01-20 20:07:28 +01001039},
Paul Gortmakere24f6622013-06-19 19:30:48 -04001040/* Do not reference exit code/data from memexit code/data */
Sam Ravnborgeb8f6892008-01-20 20:07:28 +01001041{
Uwe Kleine-König4a31a222010-01-29 12:04:26 +01001042 .fromsec = { ALL_XXXEXIT_SECTIONS, NULL },
Quentin Casasnovas050e57f2015-04-13 20:41:04 +09301043 .bad_tosec = { EXIT_SECTIONS, NULL },
Uwe Kleine-Königbbd3f4f2010-01-30 16:35:47 +01001044 .mismatch = XXXEXIT_TO_SOME_EXIT,
Uwe Kleine-Königaf92a822010-01-30 20:52:50 +01001045 .symbol_white_list = { DEFAULT_SYMBOL_WHITE_LIST, NULL },
Sam Ravnborg10668222008-01-13 22:21:31 +01001046},
1047/* Do not use exit code/data from init code */
1048{
Sam Ravnborgeb8f6892008-01-20 20:07:28 +01001049 .fromsec = { ALL_INIT_SECTIONS, NULL },
Quentin Casasnovas050e57f2015-04-13 20:41:04 +09301050 .bad_tosec = { ALL_EXIT_SECTIONS, NULL },
Uwe Kleine-Königbbd3f4f2010-01-30 16:35:47 +01001051 .mismatch = ANY_INIT_TO_ANY_EXIT,
Uwe Kleine-Königaf92a822010-01-30 20:52:50 +01001052 .symbol_white_list = { DEFAULT_SYMBOL_WHITE_LIST, NULL },
Sam Ravnborg10668222008-01-13 22:21:31 +01001053},
1054/* Do not use init code/data from exit code */
1055{
Sam Ravnborgeb8f6892008-01-20 20:07:28 +01001056 .fromsec = { ALL_EXIT_SECTIONS, NULL },
Quentin Casasnovas050e57f2015-04-13 20:41:04 +09301057 .bad_tosec = { ALL_INIT_SECTIONS, NULL },
Uwe Kleine-Königbbd3f4f2010-01-30 16:35:47 +01001058 .mismatch = ANY_EXIT_TO_ANY_INIT,
Uwe Kleine-Königaf92a822010-01-30 20:52:50 +01001059 .symbol_white_list = { DEFAULT_SYMBOL_WHITE_LIST, NULL },
Sam Ravnborg10668222008-01-13 22:21:31 +01001060},
Sebastian Andrzej Siewiorbb15d8d2012-06-03 20:48:17 +02001061{
1062 .fromsec = { ALL_PCI_INIT_SECTIONS, NULL },
Quentin Casasnovas050e57f2015-04-13 20:41:04 +09301063 .bad_tosec = { INIT_SECTIONS, NULL },
Sebastian Andrzej Siewiorbb15d8d2012-06-03 20:48:17 +02001064 .mismatch = ANY_INIT_TO_ANY_EXIT,
1065 .symbol_white_list = { NULL },
1066},
Sam Ravnborg10668222008-01-13 22:21:31 +01001067/* Do not export init/exit functions or data */
1068{
1069 .fromsec = { "__ksymtab*", NULL },
Quentin Casasnovas050e57f2015-04-13 20:41:04 +09301070 .bad_tosec = { INIT_SECTIONS, EXIT_SECTIONS, NULL },
Uwe Kleine-Königaf92a822010-01-30 20:52:50 +01001071 .mismatch = EXPORT_TO_INIT_EXIT,
1072 .symbol_white_list = { DEFAULT_SYMBOL_WHITE_LIST, NULL },
Quentin Casasnovas52dc0592015-04-13 20:52:53 +09301073},
1074{
1075 .fromsec = { "__ex_table", NULL },
1076 /* If you're adding any new black-listed sections in here, consider
1077 * adding a special 'printer' for them in scripts/check_extable.
1078 */
1079 .bad_tosec = { ".altinstr_replacement", NULL },
1080 .good_tosec = {ALL_TEXT_SECTIONS , NULL},
1081 .mismatch = EXTABLE_TO_NON_TEXT,
1082 .handler = extable_mismatch_handler,
Sam Ravnborg10668222008-01-13 22:21:31 +01001083}
1084};
1085
Uwe Kleine-König0d2a6362010-01-30 16:56:20 +01001086static const struct sectioncheck *section_mismatch(
1087 const char *fromsec, const char *tosec)
Sam Ravnborg10668222008-01-13 22:21:31 +01001088{
1089 int i;
1090 int elems = sizeof(sectioncheck) / sizeof(struct sectioncheck);
1091 const struct sectioncheck *check = &sectioncheck[0];
1092
Quentin Casasnovasc5c34392015-04-16 13:16:41 +09301093 /*
1094 * The target section could be the SHT_NUL section when we're
1095 * handling relocations to un-resolved symbols, trying to match it
David Howells739d8752018-03-08 09:48:46 +00001096 * doesn't make much sense and causes build failures on parisc
1097 * architectures.
Quentin Casasnovasc5c34392015-04-16 13:16:41 +09301098 */
1099 if (*tosec == '\0')
1100 return NULL;
1101
Sam Ravnborg10668222008-01-13 22:21:31 +01001102 for (i = 0; i < elems; i++) {
Quentin Casasnovas050e57f2015-04-13 20:41:04 +09301103 if (match(fromsec, check->fromsec)) {
1104 if (check->bad_tosec[0] && match(tosec, check->bad_tosec))
1105 return check;
1106 if (check->good_tosec[0] && !match(tosec, check->good_tosec))
1107 return check;
1108 }
Sam Ravnborg10668222008-01-13 22:21:31 +01001109 check++;
1110 }
Uwe Kleine-König0d2a6362010-01-30 16:56:20 +01001111 return NULL;
Sam Ravnborg10668222008-01-13 22:21:31 +01001112}
1113
Sam Ravnborg4c8fbca2006-02-26 22:18:11 +01001114/**
1115 * Whitelist to allow certain references to pass with no warning.
Sam Ravnborg0e0d3142007-05-17 20:14:48 +02001116 *
Sam Ravnborg4c8fbca2006-02-26 22:18:11 +01001117 * Pattern 1:
1118 * If a module parameter is declared __initdata and permissions=0
1119 * then this is legal despite the warning generated.
1120 * We cannot see value of permissions here, so just ignore
1121 * this pattern.
1122 * The pattern is identified by:
1123 * tosec = .init.data
Sam Ravnborg9209aed2006-03-05 00:16:26 +01001124 * fromsec = .data*
Sam Ravnborg4c8fbca2006-02-26 22:18:11 +01001125 * atsym =__param*
Sam Ravnborg62070fa2006-03-03 16:46:04 +01001126 *
Rusty Russell6a841522010-08-11 23:04:16 -06001127 * Pattern 1a:
1128 * module_param_call() ops can refer to __init set function if permissions=0
1129 * The pattern is identified by:
1130 * tosec = .init.text
1131 * fromsec = .data*
1132 * atsym = __param_ops_*
1133 *
Sam Ravnborg4c8fbca2006-02-26 22:18:11 +01001134 * Pattern 2:
Randy Dunlap72ee59b2006-04-15 11:17:12 -07001135 * Many drivers utilise a *driver container with references to
Sam Ravnborg4c8fbca2006-02-26 22:18:11 +01001136 * add, remove, probe functions etc.
Sam Ravnborg4c8fbca2006-02-26 22:18:11 +01001137 * the pattern is identified by:
Sam Ravnborg83cda2b2007-07-25 21:52:31 +02001138 * tosec = init or exit section
1139 * fromsec = data section
Sam Ravnborgdf578e72008-01-11 19:17:15 +01001140 * atsym = *driver, *_template, *_sht, *_ops, *_probe,
1141 * *probe_one, *_console, *_timer
Vivek Goyalee6a8542007-01-11 01:52:44 +01001142 *
1143 * Pattern 3:
Sam Ravnborgc9939712009-04-26 11:17:42 +02001144 * Whitelist all references from .head.text to any init section
Sam Ravnborg9bf8cb92007-02-26 17:49:06 +01001145 *
Sam Ravnborg1d8af552007-06-03 00:41:22 +02001146 * Pattern 4:
Vivek Goyalee6a8542007-01-11 01:52:44 +01001147 * Some symbols belong to init section but still it is ok to reference
1148 * these from non-init sections as these symbols don't have any memory
1149 * allocated for them and symbol address and value are same. So even
1150 * if init section is freed, its ok to reference those symbols.
1151 * For ex. symbols marking the init section boundaries.
1152 * This pattern is identified by
1153 * refsymname = __init_begin, _sinittext, _einittext
Sam Ravnborg9bf8cb92007-02-26 17:49:06 +01001154 *
Paul Gortmaker4a3893d2015-04-20 10:20:40 +09301155 * Pattern 5:
1156 * GCC may optimize static inlines when fed constant arg(s) resulting
1157 * in functions like cpumask_empty() -- generating an associated symbol
1158 * cpumask_empty.constprop.3 that appears in the audit. If the const that
1159 * is passed in comes from __init, like say nmi_ipi_mask, we get a
1160 * meaningless section warning. May need to add isra symbols too...
1161 * This pattern is identified by
1162 * tosec = init section
1163 * fromsec = text section
1164 * refsymname = *.constprop.*
1165 *
Paul Walmsleya4d26f12018-11-21 13:14:13 -08001166 * Pattern 6:
1167 * Hide section mismatch warnings for ELF local symbols. The goal
1168 * is to eliminate false positive modpost warnings caused by
1169 * compiler-generated ELF local symbol names such as ".LANCHOR1".
1170 * Autogenerated symbol names bypass modpost's "Pattern 2"
1171 * whitelisting, which relies on pattern-matching against symbol
1172 * names to work. (One situation where gcc can autogenerate ELF
1173 * local symbols is when "-fsection-anchors" is used.)
Sam Ravnborg4c8fbca2006-02-26 22:18:11 +01001174 **/
Uwe Kleine-Königaf92a822010-01-30 20:52:50 +01001175static int secref_whitelist(const struct sectioncheck *mismatch,
1176 const char *fromsec, const char *fromsym,
Sam Ravnborg58fb0d42008-01-23 21:13:50 +01001177 const char *tosec, const char *tosym)
Sam Ravnborg4c8fbca2006-02-26 22:18:11 +01001178{
Sam Ravnborg4c8fbca2006-02-26 22:18:11 +01001179 /* Check for pattern 1 */
Sam Ravnborg6c5bd232008-01-20 10:43:27 +01001180 if (match(tosec, init_data_sections) &&
1181 match(fromsec, data_sections) &&
Masahiro Yamadad62c4762018-05-09 18:50:38 +09001182 strstarts(fromsym, "__param"))
Sam Ravnborg58fb0d42008-01-23 21:13:50 +01001183 return 0;
Sam Ravnborg4c8fbca2006-02-26 22:18:11 +01001184
Rusty Russell6a841522010-08-11 23:04:16 -06001185 /* Check for pattern 1a */
1186 if (strcmp(tosec, ".init.text") == 0 &&
1187 match(fromsec, data_sections) &&
Masahiro Yamadad62c4762018-05-09 18:50:38 +09001188 strstarts(fromsym, "__param_ops_"))
Rusty Russell6a841522010-08-11 23:04:16 -06001189 return 0;
1190
Sam Ravnborg4c8fbca2006-02-26 22:18:11 +01001191 /* Check for pattern 2 */
Sam Ravnborg6c5bd232008-01-20 10:43:27 +01001192 if (match(tosec, init_exit_sections) &&
1193 match(fromsec, data_sections) &&
Uwe Kleine-Königaf92a822010-01-30 20:52:50 +01001194 match(fromsym, mismatch->symbol_white_list))
Sam Ravnborg58fb0d42008-01-23 21:13:50 +01001195 return 0;
Sam Ravnborg4c8fbca2006-02-26 22:18:11 +01001196
Sam Ravnborg9bf8cb92007-02-26 17:49:06 +01001197 /* Check for pattern 3 */
Sam Ravnborg6c5bd232008-01-20 10:43:27 +01001198 if (match(fromsec, head_sections) &&
1199 match(tosec, init_sections))
Sam Ravnborg58fb0d42008-01-23 21:13:50 +01001200 return 0;
Sam Ravnborg9bf8cb92007-02-26 17:49:06 +01001201
Sam Ravnborg1d8af552007-06-03 00:41:22 +02001202 /* Check for pattern 4 */
Sam Ravnborg58fb0d42008-01-23 21:13:50 +01001203 if (match(tosym, linker_symbols))
1204 return 0;
Sam Ravnborg9bf8cb92007-02-26 17:49:06 +01001205
Paul Gortmaker4a3893d2015-04-20 10:20:40 +09301206 /* Check for pattern 5 */
1207 if (match(fromsec, text_sections) &&
1208 match(tosec, init_sections) &&
1209 match(fromsym, optim_symbols))
1210 return 0;
1211
Paul Walmsleya4d26f12018-11-21 13:14:13 -08001212 /* Check for pattern 6 */
1213 if (strstarts(fromsym, ".L"))
1214 return 0;
1215
Sam Ravnborg58fb0d42008-01-23 21:13:50 +01001216 return 1;
Sam Ravnborg4c8fbca2006-02-26 22:18:11 +01001217}
1218
Sami Tolvanen5818c682018-10-23 15:15:35 -07001219static inline int is_arm_mapping_symbol(const char *str)
1220{
1221 return str[0] == '$' && strchr("axtd", str[1])
1222 && (str[2] == '\0' || str[2] == '.');
1223}
1224
1225/*
1226 * If there's no name there, ignore it; likewise, ignore it if it's
1227 * one of the magic symbols emitted used by current ARM tools.
1228 *
1229 * Otherwise if find_symbols_between() returns those symbols, they'll
1230 * fail the whitelist tests and cause lots of false alarms ... fixable
1231 * only by merging __exit and __init sections into __text, bloating
1232 * the kernel (which is especially evil on embedded platforms).
1233 */
1234static inline int is_valid_name(struct elf_info *elf, Elf_Sym *sym)
1235{
1236 const char *name = elf->strtab + sym->st_name;
1237
1238 if (!name || !strlen(name))
1239 return 0;
1240 return !is_arm_mapping_symbol(name);
1241}
1242
Sam Ravnborg4c8fbca2006-02-26 22:18:11 +01001243/**
Sam Ravnborg93684d32006-02-19 11:53:35 +01001244 * Find symbol based on relocation record info.
1245 * In some cases the symbol supplied is a valid symbol so
1246 * return refsym. If st_name != 0 we assume this is a valid symbol.
1247 * In other cases the symbol needs to be looked up in the symbol table
1248 * based on section and address.
1249 * **/
Sam Ravnborg9ad21c32008-01-18 21:04:34 +01001250static Elf_Sym *find_elf_symbol(struct elf_info *elf, Elf64_Sword addr,
Sam Ravnborg93684d32006-02-19 11:53:35 +01001251 Elf_Sym *relsym)
1252{
1253 Elf_Sym *sym;
Sam Ravnborg9ad21c32008-01-18 21:04:34 +01001254 Elf_Sym *near = NULL;
1255 Elf64_Sword distance = 20;
1256 Elf64_Sword d;
Denys Vlasenko1ce53ad2010-07-29 01:47:53 +02001257 unsigned int relsym_secindex;
Sam Ravnborg93684d32006-02-19 11:53:35 +01001258
1259 if (relsym->st_name != 0)
1260 return relsym;
Denys Vlasenko1ce53ad2010-07-29 01:47:53 +02001261
1262 relsym_secindex = get_secindex(elf, relsym);
Sam Ravnborg93684d32006-02-19 11:53:35 +01001263 for (sym = elf->symtab_start; sym < elf->symtab_stop; sym++) {
Denys Vlasenko1ce53ad2010-07-29 01:47:53 +02001264 if (get_secindex(elf, sym) != relsym_secindex)
Sam Ravnborg93684d32006-02-19 11:53:35 +01001265 continue;
Atsushi Nemotoae4ac122007-05-22 18:27:39 +09001266 if (ELF_ST_TYPE(sym->st_info) == STT_SECTION)
1267 continue;
Sami Tolvanen5818c682018-10-23 15:15:35 -07001268 if (!is_valid_name(elf, sym))
1269 continue;
Sam Ravnborg93684d32006-02-19 11:53:35 +01001270 if (sym->st_value == addr)
1271 return sym;
Sam Ravnborg9ad21c32008-01-18 21:04:34 +01001272 /* Find a symbol nearby - addr are maybe negative */
1273 d = sym->st_value - addr;
1274 if (d < 0)
1275 d = addr - sym->st_value;
1276 if (d < distance) {
1277 distance = d;
1278 near = sym;
1279 }
Sam Ravnborg93684d32006-02-19 11:53:35 +01001280 }
Sam Ravnborg9ad21c32008-01-18 21:04:34 +01001281 /* We need a close match */
1282 if (distance < 20)
1283 return near;
1284 else
1285 return NULL;
Sam Ravnborg93684d32006-02-19 11:53:35 +01001286}
1287
Sam Ravnborgb39927c2006-02-17 22:42:02 +01001288/*
Sam Ravnborg43c74d12006-03-05 12:02:46 +01001289 * Find symbols before or equal addr and after addr - in the section sec.
1290 * If we find two symbols with equal offset prefer one with a valid name.
1291 * The ELF format may have a better way to detect what type of symbol
1292 * it is, but this works for now.
Sam Ravnborgb39927c2006-02-17 22:42:02 +01001293 **/
Sam Ravnborg157c23c2008-01-22 21:44:32 +01001294static Elf_Sym *find_elf_symbol2(struct elf_info *elf, Elf_Addr addr,
1295 const char *sec)
Sam Ravnborgb39927c2006-02-17 22:42:02 +01001296{
1297 Elf_Sym *sym;
Sam Ravnborg157c23c2008-01-22 21:44:32 +01001298 Elf_Sym *near = NULL;
Sam Ravnborg157c23c2008-01-22 21:44:32 +01001299 Elf_Addr distance = ~0;
Sam Ravnborg62070fa2006-03-03 16:46:04 +01001300
Sam Ravnborgb39927c2006-02-17 22:42:02 +01001301 for (sym = elf->symtab_start; sym < elf->symtab_stop; sym++) {
1302 const char *symsec;
1303
Denys Vlasenko1ce53ad2010-07-29 01:47:53 +02001304 if (is_shndx_special(sym->st_shndx))
Sam Ravnborgb39927c2006-02-17 22:42:02 +01001305 continue;
Denys Vlasenko1ce53ad2010-07-29 01:47:53 +02001306 symsec = sec_name(elf, get_secindex(elf, sym));
Sam Ravnborgb39927c2006-02-17 22:42:02 +01001307 if (strcmp(symsec, sec) != 0)
1308 continue;
David Brownellda68d612007-02-20 13:58:16 -08001309 if (!is_valid_name(elf, sym))
1310 continue;
Sam Ravnborgb39927c2006-02-17 22:42:02 +01001311 if (sym->st_value <= addr) {
Sam Ravnborg157c23c2008-01-22 21:44:32 +01001312 if ((addr - sym->st_value) < distance) {
1313 distance = addr - sym->st_value;
1314 near = sym;
1315 } else if ((addr - sym->st_value) == distance) {
1316 near = sym;
Sam Ravnborg43c74d12006-03-05 12:02:46 +01001317 }
Sam Ravnborgb39927c2006-02-17 22:42:02 +01001318 }
1319 }
Sam Ravnborg157c23c2008-01-22 21:44:32 +01001320 return near;
Sam Ravnborgb39927c2006-02-17 22:42:02 +01001321}
1322
Sam Ravnborg58fb0d42008-01-23 21:13:50 +01001323/*
Sam Ravnborg588ccd72008-01-24 21:12:37 +01001324 * Convert a section name to the function/data attribute
1325 * .init.text => __init
Sam Ravnborg588ccd72008-01-24 21:12:37 +01001326 * .memexitconst => __memconst
1327 * etc.
Andy Shevchenkocbcf14a92010-08-17 13:36:40 +03001328 *
1329 * The memory of returned value has been allocated on a heap. The user of this
1330 * method should free it after usage.
Sam Ravnborg588ccd72008-01-24 21:12:37 +01001331*/
1332static char *sec2annotation(const char *s)
1333{
1334 if (match(s, init_exit_sections)) {
Randy Dunlap1f3aa902018-08-15 12:30:38 -07001335 char *p = NOFAIL(malloc(20));
Sam Ravnborg588ccd72008-01-24 21:12:37 +01001336 char *r = p;
1337
1338 *p++ = '_';
1339 *p++ = '_';
1340 if (*s == '.')
1341 s++;
1342 while (*s && *s != '.')
1343 *p++ = *s++;
1344 *p = '\0';
1345 if (*s == '.')
1346 s++;
1347 if (strstr(s, "rodata") != NULL)
1348 strcat(p, "const ");
1349 else if (strstr(s, "data") != NULL)
1350 strcat(p, "data ");
1351 else
1352 strcat(p, " ");
Andy Shevchenkocbcf14a92010-08-17 13:36:40 +03001353 return r;
Sam Ravnborg588ccd72008-01-24 21:12:37 +01001354 } else {
Randy Dunlap1f3aa902018-08-15 12:30:38 -07001355 return NOFAIL(strdup(""));
Sam Ravnborg588ccd72008-01-24 21:12:37 +01001356 }
1357}
1358
1359static int is_function(Elf_Sym *sym)
1360{
1361 if (sym)
1362 return ELF_ST_TYPE(sym->st_info) == STT_FUNC;
1363 else
Sam Ravnborgf6667512008-02-06 21:51:18 +01001364 return -1;
Sam Ravnborg588ccd72008-01-24 21:12:37 +01001365}
1366
Randy Dunlap00759c02011-03-15 14:13:47 -07001367static void print_section_list(const char * const list[20])
1368{
1369 const char *const *s = list;
1370
1371 while (*s) {
1372 fprintf(stderr, "%s", *s);
1373 s++;
1374 if (*s)
1375 fprintf(stderr, ", ");
1376 }
1377 fprintf(stderr, "\n");
1378}
1379
Quentin Casasnovas356ad532015-04-13 20:43:34 +09301380static inline void get_pretty_name(int is_func, const char** name, const char** name_p)
1381{
1382 switch (is_func) {
1383 case 0: *name = "variable"; *name_p = ""; break;
1384 case 1: *name = "function"; *name_p = "()"; break;
1385 default: *name = "(unknown reference)"; *name_p = ""; break;
1386 }
1387}
1388
Sam Ravnborg588ccd72008-01-24 21:12:37 +01001389/*
Sam Ravnborgb39927c2006-02-17 22:42:02 +01001390 * Print a warning about a section mismatch.
1391 * Try to find symbols near it so user can find it.
Sam Ravnborg4c8fbca2006-02-26 22:18:11 +01001392 * Check whitelist before warning - it may be a false positive.
Sam Ravnborg58fb0d42008-01-23 21:13:50 +01001393 */
Uwe Kleine-König0d2a6362010-01-30 16:56:20 +01001394static void report_sec_mismatch(const char *modname,
1395 const struct sectioncheck *mismatch,
Masahiro Yamadabb66fc62014-06-10 19:08:13 +09001396 const char *fromsec,
1397 unsigned long long fromaddr,
1398 const char *fromsym,
1399 int from_is_func,
1400 const char *tosec, const char *tosym,
1401 int to_is_func)
Sam Ravnborgb39927c2006-02-17 22:42:02 +01001402{
Sam Ravnborg588ccd72008-01-24 21:12:37 +01001403 const char *from, *from_p;
1404 const char *to, *to_p;
Alexey Fomenko37ed19d2010-08-09 17:20:24 -07001405 char *prl_from;
1406 char *prl_to;
Sam Ravnborgf6667512008-02-06 21:51:18 +01001407
Sam Ravnborge5f95c82008-02-02 18:57:18 +01001408 sec_mismatch_count++;
1409 if (!sec_mismatch_verbose)
1410 return;
1411
Quentin Casasnovas356ad532015-04-13 20:43:34 +09301412 get_pretty_name(from_is_func, &from, &from_p);
1413 get_pretty_name(to_is_func, &to, &to_p);
1414
Geert Uytterhoeven7c0ac492008-02-05 11:38:49 +01001415 warn("%s(%s+0x%llx): Section mismatch in reference from the %s %s%s "
1416 "to the %s %s:%s%s\n",
1417 modname, fromsec, fromaddr, from, fromsym, from_p, to, tosec,
1418 tosym, to_p);
Sam Ravnborg588ccd72008-01-24 21:12:37 +01001419
Uwe Kleine-König0d2a6362010-01-30 16:56:20 +01001420 switch (mismatch->mismatch) {
Uwe Kleine-Königbbd3f4f2010-01-30 16:35:47 +01001421 case TEXT_TO_ANY_INIT:
Alexey Fomenko37ed19d2010-08-09 17:20:24 -07001422 prl_from = sec2annotation(fromsec);
1423 prl_to = sec2annotation(tosec);
Sam Ravnborg588ccd72008-01-24 21:12:37 +01001424 fprintf(stderr,
Sam Ravnborgf6667512008-02-06 21:51:18 +01001425 "The function %s%s() references\n"
Sam Ravnborg588ccd72008-01-24 21:12:37 +01001426 "the %s %s%s%s.\n"
1427 "This is often because %s lacks a %s\n"
1428 "annotation or the annotation of %s is wrong.\n",
Alexey Fomenko37ed19d2010-08-09 17:20:24 -07001429 prl_from, fromsym,
1430 to, prl_to, tosym, to_p,
1431 fromsym, prl_to, tosym);
1432 free(prl_from);
1433 free(prl_to);
Sam Ravnborg588ccd72008-01-24 21:12:37 +01001434 break;
Uwe Kleine-Königbbd3f4f2010-01-30 16:35:47 +01001435 case DATA_TO_ANY_INIT: {
Alexey Fomenko37ed19d2010-08-09 17:20:24 -07001436 prl_to = sec2annotation(tosec);
Sam Ravnborg588ccd72008-01-24 21:12:37 +01001437 fprintf(stderr,
1438 "The variable %s references\n"
1439 "the %s %s%s%s\n"
1440 "If the reference is valid then annotate the\n"
Sam Ravnborg8b8b76c2009-06-06 00:18:05 +02001441 "variable with __init* or __refdata (see linux/init.h) "
Sam Ravnborg588ccd72008-01-24 21:12:37 +01001442 "or name the variable:\n",
Alexey Fomenko37ed19d2010-08-09 17:20:24 -07001443 fromsym, to, prl_to, tosym, to_p);
Randy Dunlap00759c02011-03-15 14:13:47 -07001444 print_section_list(mismatch->symbol_white_list);
Alexey Fomenko37ed19d2010-08-09 17:20:24 -07001445 free(prl_to);
Sam Ravnborg588ccd72008-01-24 21:12:37 +01001446 break;
Sam Ravnborg58fb0d42008-01-23 21:13:50 +01001447 }
Uwe Kleine-Königbbd3f4f2010-01-30 16:35:47 +01001448 case TEXT_TO_ANY_EXIT:
Alexey Fomenko37ed19d2010-08-09 17:20:24 -07001449 prl_to = sec2annotation(tosec);
Sam Ravnborg588ccd72008-01-24 21:12:37 +01001450 fprintf(stderr,
1451 "The function %s() references a %s in an exit section.\n"
1452 "Often the %s %s%s has valid usage outside the exit section\n"
1453 "and the fix is to remove the %sannotation of %s.\n",
Alexey Fomenko37ed19d2010-08-09 17:20:24 -07001454 fromsym, to, to, tosym, to_p, prl_to, tosym);
1455 free(prl_to);
Sam Ravnborg588ccd72008-01-24 21:12:37 +01001456 break;
Uwe Kleine-Königbbd3f4f2010-01-30 16:35:47 +01001457 case DATA_TO_ANY_EXIT: {
Alexey Fomenko37ed19d2010-08-09 17:20:24 -07001458 prl_to = sec2annotation(tosec);
Sam Ravnborg588ccd72008-01-24 21:12:37 +01001459 fprintf(stderr,
1460 "The variable %s references\n"
1461 "the %s %s%s%s\n"
1462 "If the reference is valid then annotate the\n"
1463 "variable with __exit* (see linux/init.h) or "
1464 "name the variable:\n",
Alexey Fomenko37ed19d2010-08-09 17:20:24 -07001465 fromsym, to, prl_to, tosym, to_p);
Randy Dunlap00759c02011-03-15 14:13:47 -07001466 print_section_list(mismatch->symbol_white_list);
Alexey Fomenko37ed19d2010-08-09 17:20:24 -07001467 free(prl_to);
Sam Ravnborg588ccd72008-01-24 21:12:37 +01001468 break;
1469 }
Uwe Kleine-Königbbd3f4f2010-01-30 16:35:47 +01001470 case XXXINIT_TO_SOME_INIT:
1471 case XXXEXIT_TO_SOME_EXIT:
Alexey Fomenko37ed19d2010-08-09 17:20:24 -07001472 prl_from = sec2annotation(fromsec);
1473 prl_to = sec2annotation(tosec);
Sam Ravnborg588ccd72008-01-24 21:12:37 +01001474 fprintf(stderr,
1475 "The %s %s%s%s references\n"
1476 "a %s %s%s%s.\n"
1477 "If %s is only used by %s then\n"
1478 "annotate %s with a matching annotation.\n",
Alexey Fomenko37ed19d2010-08-09 17:20:24 -07001479 from, prl_from, fromsym, from_p,
1480 to, prl_to, tosym, to_p,
Geert Uytterhoevenb1d26752008-02-17 14:12:10 +01001481 tosym, fromsym, tosym);
Alexey Fomenko37ed19d2010-08-09 17:20:24 -07001482 free(prl_from);
1483 free(prl_to);
Sam Ravnborg588ccd72008-01-24 21:12:37 +01001484 break;
Uwe Kleine-Königbbd3f4f2010-01-30 16:35:47 +01001485 case ANY_INIT_TO_ANY_EXIT:
Alexey Fomenko37ed19d2010-08-09 17:20:24 -07001486 prl_from = sec2annotation(fromsec);
1487 prl_to = sec2annotation(tosec);
Sam Ravnborg588ccd72008-01-24 21:12:37 +01001488 fprintf(stderr,
1489 "The %s %s%s%s references\n"
1490 "a %s %s%s%s.\n"
1491 "This is often seen when error handling "
1492 "in the init function\n"
1493 "uses functionality in the exit path.\n"
1494 "The fix is often to remove the %sannotation of\n"
1495 "%s%s so it may be used outside an exit section.\n",
Alexey Fomenko37ed19d2010-08-09 17:20:24 -07001496 from, prl_from, fromsym, from_p,
1497 to, prl_to, tosym, to_p,
Andrew Morton5003bab2010-08-11 00:42:26 -07001498 prl_to, tosym, to_p);
Alexey Fomenko37ed19d2010-08-09 17:20:24 -07001499 free(prl_from);
1500 free(prl_to);
Sam Ravnborg588ccd72008-01-24 21:12:37 +01001501 break;
Uwe Kleine-Königbbd3f4f2010-01-30 16:35:47 +01001502 case ANY_EXIT_TO_ANY_INIT:
Alexey Fomenko37ed19d2010-08-09 17:20:24 -07001503 prl_from = sec2annotation(fromsec);
1504 prl_to = sec2annotation(tosec);
Sam Ravnborg588ccd72008-01-24 21:12:37 +01001505 fprintf(stderr,
1506 "The %s %s%s%s references\n"
1507 "a %s %s%s%s.\n"
1508 "This is often seen when error handling "
1509 "in the exit function\n"
1510 "uses functionality in the init path.\n"
1511 "The fix is often to remove the %sannotation of\n"
1512 "%s%s so it may be used outside an init section.\n",
Alexey Fomenko37ed19d2010-08-09 17:20:24 -07001513 from, prl_from, fromsym, from_p,
1514 to, prl_to, tosym, to_p,
1515 prl_to, tosym, to_p);
1516 free(prl_from);
1517 free(prl_to);
Sam Ravnborg588ccd72008-01-24 21:12:37 +01001518 break;
1519 case EXPORT_TO_INIT_EXIT:
Alexey Fomenko37ed19d2010-08-09 17:20:24 -07001520 prl_to = sec2annotation(tosec);
Sam Ravnborg588ccd72008-01-24 21:12:37 +01001521 fprintf(stderr,
1522 "The symbol %s is exported and annotated %s\n"
1523 "Fix this by removing the %sannotation of %s "
1524 "or drop the export.\n",
Alexey Fomenko37ed19d2010-08-09 17:20:24 -07001525 tosym, prl_to, prl_to, tosym);
1526 free(prl_to);
Sam Ravnborg588ccd72008-01-24 21:12:37 +01001527 break;
Quentin Casasnovas52dc0592015-04-13 20:52:53 +09301528 case EXTABLE_TO_NON_TEXT:
1529 fatal("There's a special handler for this mismatch type, "
1530 "we should never get here.");
1531 break;
Sam Ravnborg588ccd72008-01-24 21:12:37 +01001532 }
1533 fprintf(stderr, "\n");
Sam Ravnborg58fb0d42008-01-23 21:13:50 +01001534}
1535
Quentin Casasnovas644e8f12015-04-13 20:43:17 +09301536static void default_mismatch_handler(const char *modname, struct elf_info *elf,
1537 const struct sectioncheck* const mismatch,
1538 Elf_Rela *r, Elf_Sym *sym, const char *fromsec)
1539{
1540 const char *tosec;
1541 Elf_Sym *to;
1542 Elf_Sym *from;
1543 const char *tosym;
1544 const char *fromsym;
1545
Quentin Casasnovas644e8f12015-04-13 20:43:17 +09301546 from = find_elf_symbol2(elf, r->r_offset, fromsec);
1547 fromsym = sym_name(elf, from);
Quentin Casasnovas644e8f12015-04-13 20:43:17 +09301548
Masahiro Yamadad62c4762018-05-09 18:50:38 +09001549 if (strstarts(fromsym, "reference___initcall"))
Quentin Casasnovas644e8f12015-04-13 20:43:17 +09301550 return;
1551
Quentin Casasnovasc7a65e02015-04-13 20:43:45 +09301552 tosec = sec_name(elf, get_secindex(elf, sym));
1553 to = find_elf_symbol(elf, r->r_addend, sym);
1554 tosym = sym_name(elf, to);
1555
Quentin Casasnovas644e8f12015-04-13 20:43:17 +09301556 /* check whitelist - we may ignore it */
1557 if (secref_whitelist(mismatch,
1558 fromsec, fromsym, tosec, tosym)) {
1559 report_sec_mismatch(modname, mismatch,
1560 fromsec, r->r_offset, fromsym,
1561 is_function(from), tosec, tosym,
1562 is_function(to));
1563 }
1564}
1565
Quentin Casasnovas52dc0592015-04-13 20:52:53 +09301566static int is_executable_section(struct elf_info* elf, unsigned int section_index)
1567{
1568 if (section_index > elf->num_sections)
1569 fatal("section_index is outside elf->num_sections!\n");
1570
1571 return ((elf->sechdrs[section_index].sh_flags & SHF_EXECINSTR) == SHF_EXECINSTR);
1572}
1573
1574/*
1575 * We rely on a gross hack in section_rel[a]() calling find_extable_entry_size()
1576 * to know the sizeof(struct exception_table_entry) for the target architecture.
1577 */
1578static unsigned int extable_entry_size = 0;
Quentin Casasnovase84048a2015-04-16 13:05:36 +09301579static void find_extable_entry_size(const char* const sec, const Elf_Rela* r)
Quentin Casasnovas52dc0592015-04-13 20:52:53 +09301580{
1581 /*
1582 * If we're currently checking the second relocation within __ex_table,
1583 * that relocation offset tells us the offsetof(struct
1584 * exception_table_entry, fixup) which is equal to sizeof(struct
1585 * exception_table_entry) divided by two. We use that to our advantage
1586 * since there's no portable way to get that size as every architecture
1587 * seems to go with different sized types. Not pretty but better than
1588 * hard-coding the size for every architecture..
1589 */
Quentin Casasnovase84048a2015-04-16 13:05:36 +09301590 if (!extable_entry_size)
Quentin Casasnovas52dc0592015-04-13 20:52:53 +09301591 extable_entry_size = r->r_offset * 2;
1592}
Quentin Casasnovase84048a2015-04-16 13:05:36 +09301593
Quentin Casasnovas52dc0592015-04-13 20:52:53 +09301594static inline bool is_extable_fault_address(Elf_Rela *r)
1595{
Quentin Casasnovasd3df4de2015-04-16 13:03:32 +09301596 /*
1597 * extable_entry_size is only discovered after we've handled the
1598 * _second_ relocation in __ex_table, so only abort when we're not
1599 * handling the first reloc and extable_entry_size is zero.
1600 */
1601 if (r->r_offset && extable_entry_size == 0)
Quentin Casasnovas52dc0592015-04-13 20:52:53 +09301602 fatal("extable_entry size hasn't been discovered!\n");
1603
1604 return ((r->r_offset == 0) ||
1605 (r->r_offset % extable_entry_size == 0));
1606}
1607
Quentin Casasnovase84048a2015-04-16 13:05:36 +09301608#define is_second_extable_reloc(Start, Cur, Sec) \
1609 (((Cur) == (Start) + 1) && (strcmp("__ex_table", (Sec)) == 0))
1610
Quentin Casasnovas52dc0592015-04-13 20:52:53 +09301611static void report_extable_warnings(const char* modname, struct elf_info* elf,
1612 const struct sectioncheck* const mismatch,
1613 Elf_Rela* r, Elf_Sym* sym,
1614 const char* fromsec, const char* tosec)
1615{
1616 Elf_Sym* fromsym = find_elf_symbol2(elf, r->r_offset, fromsec);
1617 const char* fromsym_name = sym_name(elf, fromsym);
1618 Elf_Sym* tosym = find_elf_symbol(elf, r->r_addend, sym);
1619 const char* tosym_name = sym_name(elf, tosym);
1620 const char* from_pretty_name;
1621 const char* from_pretty_name_p;
1622 const char* to_pretty_name;
1623 const char* to_pretty_name_p;
1624
1625 get_pretty_name(is_function(fromsym),
1626 &from_pretty_name, &from_pretty_name_p);
1627 get_pretty_name(is_function(tosym),
1628 &to_pretty_name, &to_pretty_name_p);
1629
1630 warn("%s(%s+0x%lx): Section mismatch in reference"
1631 " from the %s %s%s to the %s %s:%s%s\n",
1632 modname, fromsec, (long)r->r_offset, from_pretty_name,
1633 fromsym_name, from_pretty_name_p,
1634 to_pretty_name, tosec, tosym_name, to_pretty_name_p);
1635
1636 if (!match(tosec, mismatch->bad_tosec) &&
1637 is_executable_section(elf, get_secindex(elf, sym)))
1638 fprintf(stderr,
1639 "The relocation at %s+0x%lx references\n"
1640 "section \"%s\" which is not in the list of\n"
1641 "authorized sections. If you're adding a new section\n"
1642 "and/or if this reference is valid, add \"%s\" to the\n"
1643 "list of authorized sections to jump to on fault.\n"
1644 "This can be achieved by adding \"%s\" to \n"
1645 "OTHER_TEXT_SECTIONS in scripts/mod/modpost.c.\n",
1646 fromsec, (long)r->r_offset, tosec, tosec, tosec);
1647}
1648
1649static void extable_mismatch_handler(const char* modname, struct elf_info *elf,
1650 const struct sectioncheck* const mismatch,
1651 Elf_Rela* r, Elf_Sym* sym,
1652 const char *fromsec)
1653{
1654 const char* tosec = sec_name(elf, get_secindex(elf, sym));
1655
1656 sec_mismatch_count++;
1657
1658 if (sec_mismatch_verbose)
1659 report_extable_warnings(modname, elf, mismatch, r, sym,
1660 fromsec, tosec);
1661
1662 if (match(tosec, mismatch->bad_tosec))
1663 fatal("The relocation at %s+0x%lx references\n"
1664 "section \"%s\" which is black-listed.\n"
1665 "Something is seriously wrong and should be fixed.\n"
1666 "You might get more information about where this is\n"
1667 "coming from by using scripts/check_extable.sh %s\n",
1668 fromsec, (long)r->r_offset, tosec, modname);
1669 else if (!is_executable_section(elf, get_secindex(elf, sym))) {
1670 if (is_extable_fault_address(r))
1671 fatal("The relocation at %s+0x%lx references\n"
1672 "section \"%s\" which is not executable, IOW\n"
1673 "it is not possible for the kernel to fault\n"
1674 "at that address. Something is seriously wrong\n"
1675 "and should be fixed.\n",
1676 fromsec, (long)r->r_offset, tosec);
1677 else
1678 fatal("The relocation at %s+0x%lx references\n"
1679 "section \"%s\" which is not executable, IOW\n"
1680 "the kernel will fault if it ever tries to\n"
1681 "jump to it. Something is seriously wrong\n"
1682 "and should be fixed.\n",
1683 fromsec, (long)r->r_offset, tosec);
1684 }
1685}
1686
Sam Ravnborg58fb0d42008-01-23 21:13:50 +01001687static void check_section_mismatch(const char *modname, struct elf_info *elf,
Masahiro Yamadabb66fc62014-06-10 19:08:13 +09001688 Elf_Rela *r, Elf_Sym *sym, const char *fromsec)
Sam Ravnborg58fb0d42008-01-23 21:13:50 +01001689{
Luis de Bethencourt0cad61d2018-01-16 13:21:29 +00001690 const char *tosec = sec_name(elf, get_secindex(elf, sym));
Quentin Casasnovas644e8f12015-04-13 20:43:17 +09301691 const struct sectioncheck *mismatch = section_mismatch(fromsec, tosec);
Sam Ravnborg58fb0d42008-01-23 21:13:50 +01001692
Uwe Kleine-König0d2a6362010-01-30 16:56:20 +01001693 if (mismatch) {
Quentin Casasnovas644e8f12015-04-13 20:43:17 +09301694 if (mismatch->handler)
1695 mismatch->handler(modname, elf, mismatch,
1696 r, sym, fromsec);
1697 else
1698 default_mismatch_handler(modname, elf, mismatch,
1699 r, sym, fromsec);
Sam Ravnborgb39927c2006-02-17 22:42:02 +01001700 }
1701}
1702
Atsushi Nemotoae4ac122007-05-22 18:27:39 +09001703static unsigned int *reloc_location(struct elf_info *elf,
Sam Ravnborg5b24c072008-01-18 21:49:29 +01001704 Elf_Shdr *sechdr, Elf_Rela *r)
Atsushi Nemotoae4ac122007-05-22 18:27:39 +09001705{
1706 Elf_Shdr *sechdrs = elf->sechdrs;
Anders Kaseorg68457562011-05-19 16:55:27 -06001707 int section = sechdr->sh_info;
Atsushi Nemotoae4ac122007-05-22 18:27:39 +09001708
1709 return (void *)elf->hdr + sechdrs[section].sh_offset +
Olof Johansson731ece42010-12-10 02:09:23 -06001710 r->r_offset;
Atsushi Nemotoae4ac122007-05-22 18:27:39 +09001711}
1712
Sam Ravnborg5b24c072008-01-18 21:49:29 +01001713static int addend_386_rel(struct elf_info *elf, Elf_Shdr *sechdr, Elf_Rela *r)
Atsushi Nemotoae4ac122007-05-22 18:27:39 +09001714{
1715 unsigned int r_typ = ELF_R_TYPE(r->r_info);
Sam Ravnborg5b24c072008-01-18 21:49:29 +01001716 unsigned int *location = reloc_location(elf, sechdr, r);
Atsushi Nemotoae4ac122007-05-22 18:27:39 +09001717
1718 switch (r_typ) {
1719 case R_386_32:
1720 r->r_addend = TO_NATIVE(*location);
1721 break;
1722 case R_386_PC32:
1723 r->r_addend = TO_NATIVE(*location) + 4;
1724 /* For CONFIG_RELOCATABLE=y */
1725 if (elf->hdr->e_type == ET_EXEC)
1726 r->r_addend += r->r_offset;
1727 break;
1728 }
1729 return 0;
1730}
1731
Tony Lindgren6e2e3402012-02-14 21:58:56 +01001732#ifndef R_ARM_CALL
1733#define R_ARM_CALL 28
1734#endif
1735#ifndef R_ARM_JUMP24
1736#define R_ARM_JUMP24 29
1737#endif
1738
David A. Longc9698e52014-02-14 22:41:18 +01001739#ifndef R_ARM_THM_CALL
1740#define R_ARM_THM_CALL 10
1741#endif
1742#ifndef R_ARM_THM_JUMP24
1743#define R_ARM_THM_JUMP24 30
1744#endif
1745#ifndef R_ARM_THM_JUMP19
1746#define R_ARM_THM_JUMP19 51
1747#endif
1748
Sam Ravnborg5b24c072008-01-18 21:49:29 +01001749static int addend_arm_rel(struct elf_info *elf, Elf_Shdr *sechdr, Elf_Rela *r)
Sam Ravnborg56a974f2007-07-16 22:39:35 +02001750{
1751 unsigned int r_typ = ELF_R_TYPE(r->r_info);
1752
1753 switch (r_typ) {
1754 case R_ARM_ABS32:
1755 /* From ARM ABI: (S + A) | T */
Sam Ravnborgdf578e72008-01-11 19:17:15 +01001756 r->r_addend = (int)(long)
Masahiro Yamadabb66fc62014-06-10 19:08:13 +09001757 (elf->symtab_start + ELF_R_SYM(r->r_info));
Sam Ravnborg56a974f2007-07-16 22:39:35 +02001758 break;
1759 case R_ARM_PC24:
Tony Lindgren6e2e3402012-02-14 21:58:56 +01001760 case R_ARM_CALL:
1761 case R_ARM_JUMP24:
David A. Longc9698e52014-02-14 22:41:18 +01001762 case R_ARM_THM_CALL:
1763 case R_ARM_THM_JUMP24:
1764 case R_ARM_THM_JUMP19:
Sam Ravnborg56a974f2007-07-16 22:39:35 +02001765 /* From ARM ABI: ((S + A) | T) - P */
Sam Ravnborgdf578e72008-01-11 19:17:15 +01001766 r->r_addend = (int)(long)(elf->hdr +
Masahiro Yamadabb66fc62014-06-10 19:08:13 +09001767 sechdr->sh_offset +
1768 (r->r_offset - sechdr->sh_addr));
Sam Ravnborg56a974f2007-07-16 22:39:35 +02001769 break;
1770 default:
1771 return 1;
1772 }
1773 return 0;
1774}
1775
Sam Ravnborg5b24c072008-01-18 21:49:29 +01001776static int addend_mips_rel(struct elf_info *elf, Elf_Shdr *sechdr, Elf_Rela *r)
Atsushi Nemotoae4ac122007-05-22 18:27:39 +09001777{
1778 unsigned int r_typ = ELF_R_TYPE(r->r_info);
Sam Ravnborg5b24c072008-01-18 21:49:29 +01001779 unsigned int *location = reloc_location(elf, sechdr, r);
Atsushi Nemotoae4ac122007-05-22 18:27:39 +09001780 unsigned int inst;
1781
1782 if (r_typ == R_MIPS_HI16)
1783 return 1; /* skip this */
1784 inst = TO_NATIVE(*location);
1785 switch (r_typ) {
1786 case R_MIPS_LO16:
1787 r->r_addend = inst & 0xffff;
1788 break;
1789 case R_MIPS_26:
1790 r->r_addend = (inst & 0x03ffffff) << 2;
1791 break;
1792 case R_MIPS_32:
1793 r->r_addend = inst;
1794 break;
1795 }
1796 return 0;
1797}
1798
Sam Ravnborg5b24c072008-01-18 21:49:29 +01001799static void section_rela(const char *modname, struct elf_info *elf,
Masahiro Yamadabb66fc62014-06-10 19:08:13 +09001800 Elf_Shdr *sechdr)
Sam Ravnborg5b24c072008-01-18 21:49:29 +01001801{
1802 Elf_Sym *sym;
1803 Elf_Rela *rela;
1804 Elf_Rela r;
1805 unsigned int r_sym;
1806 const char *fromsec;
Sam Ravnborg5b24c072008-01-18 21:49:29 +01001807
Sam Ravnborgff13f922008-01-23 19:54:27 +01001808 Elf_Rela *start = (void *)elf->hdr + sechdr->sh_offset;
Sam Ravnborg5b24c072008-01-18 21:49:29 +01001809 Elf_Rela *stop = (void *)start + sechdr->sh_size;
1810
Sam Ravnborgff13f922008-01-23 19:54:27 +01001811 fromsec = sech_name(elf, sechdr);
Sam Ravnborg5b24c072008-01-18 21:49:29 +01001812 fromsec += strlen(".rela");
1813 /* if from section (name) is know good then skip it */
Anders Kaseorgb614a692009-04-23 16:49:33 -04001814 if (match(fromsec, section_white_list))
Sam Ravnborg5b24c072008-01-18 21:49:29 +01001815 return;
Sam Ravnborge241a632008-01-28 20:13:13 +01001816
Sam Ravnborg5b24c072008-01-18 21:49:29 +01001817 for (rela = start; rela < stop; rela++) {
1818 r.r_offset = TO_NATIVE(rela->r_offset);
1819#if KERNEL_ELFCLASS == ELFCLASS64
Sam Ravnborgff13f922008-01-23 19:54:27 +01001820 if (elf->hdr->e_machine == EM_MIPS) {
Sam Ravnborg5b24c072008-01-18 21:49:29 +01001821 unsigned int r_typ;
1822 r_sym = ELF64_MIPS_R_SYM(rela->r_info);
1823 r_sym = TO_NATIVE(r_sym);
1824 r_typ = ELF64_MIPS_R_TYPE(rela->r_info);
1825 r.r_info = ELF64_R_INFO(r_sym, r_typ);
1826 } else {
1827 r.r_info = TO_NATIVE(rela->r_info);
1828 r_sym = ELF_R_SYM(r.r_info);
1829 }
1830#else
1831 r.r_info = TO_NATIVE(rela->r_info);
1832 r_sym = ELF_R_SYM(r.r_info);
1833#endif
1834 r.r_addend = TO_NATIVE(rela->r_addend);
1835 sym = elf->symtab_start + r_sym;
1836 /* Skip special sections */
Denys Vlasenko1ce53ad2010-07-29 01:47:53 +02001837 if (is_shndx_special(sym->st_shndx))
Sam Ravnborg5b24c072008-01-18 21:49:29 +01001838 continue;
Quentin Casasnovase84048a2015-04-16 13:05:36 +09301839 if (is_second_extable_reloc(start, rela, fromsec))
1840 find_extable_entry_size(fromsec, &r);
Sam Ravnborg58fb0d42008-01-23 21:13:50 +01001841 check_section_mismatch(modname, elf, &r, sym, fromsec);
Sam Ravnborg5b24c072008-01-18 21:49:29 +01001842 }
1843}
1844
1845static void section_rel(const char *modname, struct elf_info *elf,
Masahiro Yamadabb66fc62014-06-10 19:08:13 +09001846 Elf_Shdr *sechdr)
Sam Ravnborg5b24c072008-01-18 21:49:29 +01001847{
1848 Elf_Sym *sym;
1849 Elf_Rel *rel;
1850 Elf_Rela r;
1851 unsigned int r_sym;
1852 const char *fromsec;
Sam Ravnborg5b24c072008-01-18 21:49:29 +01001853
Sam Ravnborgff13f922008-01-23 19:54:27 +01001854 Elf_Rel *start = (void *)elf->hdr + sechdr->sh_offset;
Sam Ravnborg5b24c072008-01-18 21:49:29 +01001855 Elf_Rel *stop = (void *)start + sechdr->sh_size;
1856
Sam Ravnborgff13f922008-01-23 19:54:27 +01001857 fromsec = sech_name(elf, sechdr);
Sam Ravnborg5b24c072008-01-18 21:49:29 +01001858 fromsec += strlen(".rel");
1859 /* if from section (name) is know good then skip it */
Anders Kaseorgb614a692009-04-23 16:49:33 -04001860 if (match(fromsec, section_white_list))
Sam Ravnborg5b24c072008-01-18 21:49:29 +01001861 return;
1862
1863 for (rel = start; rel < stop; rel++) {
1864 r.r_offset = TO_NATIVE(rel->r_offset);
1865#if KERNEL_ELFCLASS == ELFCLASS64
Sam Ravnborgff13f922008-01-23 19:54:27 +01001866 if (elf->hdr->e_machine == EM_MIPS) {
Sam Ravnborg5b24c072008-01-18 21:49:29 +01001867 unsigned int r_typ;
1868 r_sym = ELF64_MIPS_R_SYM(rel->r_info);
1869 r_sym = TO_NATIVE(r_sym);
1870 r_typ = ELF64_MIPS_R_TYPE(rel->r_info);
1871 r.r_info = ELF64_R_INFO(r_sym, r_typ);
1872 } else {
1873 r.r_info = TO_NATIVE(rel->r_info);
1874 r_sym = ELF_R_SYM(r.r_info);
1875 }
1876#else
1877 r.r_info = TO_NATIVE(rel->r_info);
1878 r_sym = ELF_R_SYM(r.r_info);
1879#endif
1880 r.r_addend = 0;
Sam Ravnborgff13f922008-01-23 19:54:27 +01001881 switch (elf->hdr->e_machine) {
Sam Ravnborg5b24c072008-01-18 21:49:29 +01001882 case EM_386:
1883 if (addend_386_rel(elf, sechdr, &r))
1884 continue;
1885 break;
1886 case EM_ARM:
1887 if (addend_arm_rel(elf, sechdr, &r))
1888 continue;
1889 break;
1890 case EM_MIPS:
1891 if (addend_mips_rel(elf, sechdr, &r))
1892 continue;
1893 break;
1894 }
1895 sym = elf->symtab_start + r_sym;
1896 /* Skip special sections */
Denys Vlasenko1ce53ad2010-07-29 01:47:53 +02001897 if (is_shndx_special(sym->st_shndx))
Sam Ravnborg5b24c072008-01-18 21:49:29 +01001898 continue;
Quentin Casasnovase84048a2015-04-16 13:05:36 +09301899 if (is_second_extable_reloc(start, rel, fromsec))
1900 find_extable_entry_size(fromsec, &r);
Sam Ravnborg58fb0d42008-01-23 21:13:50 +01001901 check_section_mismatch(modname, elf, &r, sym, fromsec);
Sam Ravnborg5b24c072008-01-18 21:49:29 +01001902 }
1903}
1904
Sam Ravnborgb39927c2006-02-17 22:42:02 +01001905/**
1906 * A module includes a number of sections that are discarded
1907 * either when loaded or when used as built-in.
1908 * For loaded modules all functions marked __init and all data
Uwe Kleine-Königb5950762010-11-01 15:38:34 -04001909 * marked __initdata will be discarded when the module has been initialized.
Sam Ravnborgb39927c2006-02-17 22:42:02 +01001910 * Likewise for modules used built-in the sections marked __exit
1911 * are discarded because __exit marked function are supposed to be called
Ben Dooks32be1d22008-07-29 22:33:44 -07001912 * only when a module is unloaded which never happens for built-in modules.
Sam Ravnborgb39927c2006-02-17 22:42:02 +01001913 * The check_sec_ref() function traverses all relocation records
1914 * to find all references to a section that reference a section that will
1915 * be discarded and warns about it.
1916 **/
1917static void check_sec_ref(struct module *mod, const char *modname,
Masahiro Yamadabb66fc62014-06-10 19:08:13 +09001918 struct elf_info *elf)
Sam Ravnborgb39927c2006-02-17 22:42:02 +01001919{
1920 int i;
Sam Ravnborgb39927c2006-02-17 22:42:02 +01001921 Elf_Shdr *sechdrs = elf->sechdrs;
Sam Ravnborg62070fa2006-03-03 16:46:04 +01001922
Sam Ravnborgb39927c2006-02-17 22:42:02 +01001923 /* Walk through all sections */
Denys Vlasenko1ce53ad2010-07-29 01:47:53 +02001924 for (i = 0; i < elf->num_sections; i++) {
Anders Kaseorgb614a692009-04-23 16:49:33 -04001925 check_section(modname, elf, &elf->sechdrs[i]);
Sam Ravnborgb39927c2006-02-17 22:42:02 +01001926 /* We want to process only relocation sections and not .init */
Sam Ravnborg5b24c072008-01-18 21:49:29 +01001927 if (sechdrs[i].sh_type == SHT_RELA)
Sam Ravnborg10668222008-01-13 22:21:31 +01001928 section_rela(modname, elf, &elf->sechdrs[i]);
Sam Ravnborg5b24c072008-01-18 21:49:29 +01001929 else if (sechdrs[i].sh_type == SHT_REL)
Sam Ravnborg10668222008-01-13 22:21:31 +01001930 section_rel(modname, elf, &elf->sechdrs[i]);
Sam Ravnborgb39927c2006-02-17 22:42:02 +01001931 }
1932}
1933
Andi Kleen7d02b492014-02-08 09:01:12 +01001934static char *remove_dot(char *s)
1935{
Michal Nazarewiczfcd38ed2014-07-27 07:27:01 +09301936 size_t n = strcspn(s, ".");
Andi Kleen7d02b492014-02-08 09:01:12 +01001937
Michal Nazarewiczfcd38ed2014-07-27 07:27:01 +09301938 if (n && s[n]) {
1939 size_t m = strspn(s + n + 1, "0123456789");
1940 if (m && (s[n + m] == '.' || s[n + m] == 0))
Andi Kleen7d02b492014-02-08 09:01:12 +01001941 s[n] = 0;
1942 }
1943 return s;
1944}
1945
Masahiro Yamada8b185742018-05-09 18:50:40 +09001946static void read_symbols(const char *modname)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001947{
1948 const char *symname;
1949 char *version;
Sam Ravnborgb817f6f2006-06-09 21:53:55 +02001950 char *license;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001951 struct module *mod;
1952 struct elf_info info = { };
1953 Elf_Sym *sym;
1954
Sam Ravnborg85bd2fd2007-02-26 15:33:52 +01001955 if (!parse_elf(&info, modname))
1956 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001957
1958 mod = new_module(modname);
1959
1960 /* When there's no vmlinux, don't print warnings about
1961 * unresolved symbols (since there'll be too many ;) */
1962 if (is_vmlinux(modname)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001963 have_vmlinux = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001964 mod->skip = 1;
1965 }
1966
Masahiro Yamadabca2cce2018-05-09 18:50:37 +09001967 license = get_modinfo(&info, "license");
Randy Dunlapba1029c2017-11-12 11:21:45 -08001968 if (!license && !is_vmlinux(modname))
Sam Ravnborg2fa36562008-04-26 21:07:26 +02001969 warn("modpost: missing MODULE_LICENSE() in %s\n"
1970 "see include/linux/module.h for "
1971 "more information\n", modname);
Sam Ravnborgb817f6f2006-06-09 21:53:55 +02001972 while (license) {
1973 if (license_is_gpl_compatible(license))
1974 mod->gpl_compatible = 1;
1975 else {
1976 mod->gpl_compatible = 0;
1977 break;
1978 }
Masahiro Yamadabca2cce2018-05-09 18:50:37 +09001979 license = get_next_modinfo(&info, "license", license);
Sam Ravnborgb817f6f2006-06-09 21:53:55 +02001980 }
1981
Linus Torvalds1da177e2005-04-16 15:20:36 -07001982 for (sym = info.symtab_start; sym < info.symtab_stop; sym++) {
Andi Kleen7d02b492014-02-08 09:01:12 +01001983 symname = remove_dot(info.strtab + sym->st_name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001984
1985 handle_modversions(mod, &info, sym, symname);
1986 handle_moddevtable(mod, &info, sym, symname);
1987 }
Masahiro Yamada074a04f2018-05-09 18:50:39 +09001988 if (!is_vmlinux(modname) || vmlinux_section_warnings)
Sam Ravnborg10668222008-01-13 22:21:31 +01001989 check_sec_ref(mod, modname, &info);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001990
Masahiro Yamadabca2cce2018-05-09 18:50:37 +09001991 version = get_modinfo(&info, "version");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001992 if (version)
1993 maybe_frob_rcs_version(modname, version, info.modinfo,
1994 version - (char *)info.hdr);
1995 if (version || (all_versions && !is_vmlinux(modname)))
1996 get_src_version(modname, mod->srcversion,
1997 sizeof(mod->srcversion)-1);
1998
1999 parse_elf_finish(&info);
2000
Rusty Russell8c8ef422009-03-31 13:05:34 -06002001 /* Our trick to get versioning for module struct etc. - it's
Linus Torvalds1da177e2005-04-16 15:20:36 -07002002 * never passed as an argument to an exported function, so
2003 * the automatic versioning doesn't pick it up, but it's really
2004 * important anyhow */
2005 if (modversions)
Rusty Russell8c8ef422009-03-31 13:05:34 -06002006 mod->unres = alloc_symbol("module_layout", 0, mod->unres);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002007}
2008
Rusty Russell712f9b42013-04-04 17:37:38 +10302009static void read_symbols_from_files(const char *filename)
2010{
2011 FILE *in = stdin;
2012 char fname[PATH_MAX];
2013
2014 if (strcmp(filename, "-") != 0) {
2015 in = fopen(filename, "r");
2016 if (!in)
2017 fatal("Can't open filenames file %s: %m", filename);
2018 }
2019
2020 while (fgets(fname, PATH_MAX, in) != NULL) {
2021 if (strends(fname, "\n"))
2022 fname[strlen(fname)-1] = '\0';
2023 read_symbols(fname);
2024 }
2025
2026 if (in != stdin)
2027 fclose(in);
2028}
2029
Linus Torvalds1da177e2005-04-16 15:20:36 -07002030#define SZ 500
2031
2032/* We first write the generated file into memory using the
2033 * following helper, then compare to the file on disk and
2034 * only update the later if anything changed */
2035
Sam Ravnborg5c3ead82006-01-28 17:19:35 +01002036void __attribute__((format(printf, 2, 3))) buf_printf(struct buffer *buf,
2037 const char *fmt, ...)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002038{
2039 char tmp[SZ];
2040 int len;
2041 va_list ap;
Sam Ravnborg62070fa2006-03-03 16:46:04 +01002042
Linus Torvalds1da177e2005-04-16 15:20:36 -07002043 va_start(ap, fmt);
2044 len = vsnprintf(tmp, SZ, fmt, ap);
Sam Ravnborg7670f0232006-03-16 23:04:08 -08002045 buf_write(buf, tmp, len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002046 va_end(ap);
2047}
2048
Sam Ravnborg5c3ead82006-01-28 17:19:35 +01002049void buf_write(struct buffer *buf, const char *s, int len)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002050{
2051 if (buf->size - buf->pos < len) {
Sam Ravnborg7670f0232006-03-16 23:04:08 -08002052 buf->size += len + SZ;
Randy Dunlap1f3aa902018-08-15 12:30:38 -07002053 buf->p = NOFAIL(realloc(buf->p, buf->size));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002054 }
2055 strncpy(buf->p + buf->pos, s, len);
2056 buf->pos += len;
2057}
2058
Sam Ravnborgc96fca22006-07-01 11:44:23 +02002059static void check_for_gpl_usage(enum export exp, const char *m, const char *s)
2060{
2061 const char *e = is_vmlinux(m) ?"":".ko";
2062
2063 switch (exp) {
2064 case export_gpl:
2065 fatal("modpost: GPL-incompatible module %s%s "
2066 "uses GPL-only symbol '%s'\n", m, e, s);
2067 break;
2068 case export_unused_gpl:
2069 fatal("modpost: GPL-incompatible module %s%s "
2070 "uses GPL-only symbol marked UNUSED '%s'\n", m, e, s);
2071 break;
2072 case export_gpl_future:
2073 warn("modpost: GPL-incompatible module %s%s "
2074 "uses future GPL-only symbol '%s'\n", m, e, s);
2075 break;
2076 case export_plain:
2077 case export_unused:
2078 case export_unknown:
2079 /* ignore */
2080 break;
2081 }
2082}
2083
Sam Ravnborgdf578e72008-01-11 19:17:15 +01002084static void check_for_unused(enum export exp, const char *m, const char *s)
Sam Ravnborgc96fca22006-07-01 11:44:23 +02002085{
2086 const char *e = is_vmlinux(m) ?"":".ko";
2087
2088 switch (exp) {
2089 case export_unused:
2090 case export_unused_gpl:
2091 warn("modpost: module %s%s "
2092 "uses symbol '%s' marked UNUSED\n", m, e, s);
2093 break;
2094 default:
2095 /* ignore */
2096 break;
2097 }
2098}
2099
Masahiro Yamada3b415282018-11-23 16:57:23 +09002100static int check_exports(struct module *mod)
Sam Ravnborgb817f6f2006-06-09 21:53:55 +02002101{
2102 struct symbol *s, *exp;
Masahiro Yamada3b415282018-11-23 16:57:23 +09002103 int err = 0;
Sam Ravnborgb817f6f2006-06-09 21:53:55 +02002104
2105 for (s = mod->unres; s; s = s->next) {
Andrew Morton6449bd62006-06-09 20:45:06 -07002106 const char *basename;
Sam Ravnborgb817f6f2006-06-09 21:53:55 +02002107 exp = find_symbol(s->name);
Masahiro Yamada3b415282018-11-23 16:57:23 +09002108 if (!exp || exp->module == mod) {
2109 if (have_vmlinux && !s->weak) {
2110 if (warn_unresolved) {
2111 warn("\"%s\" [%s.ko] undefined!\n",
2112 s->name, mod->name);
2113 } else {
2114 merror("\"%s\" [%s.ko] undefined!\n",
2115 s->name, mod->name);
2116 err = 1;
2117 }
2118 }
Sam Ravnborgb817f6f2006-06-09 21:53:55 +02002119 continue;
Masahiro Yamada3b415282018-11-23 16:57:23 +09002120 }
Andrew Morton6449bd62006-06-09 20:45:06 -07002121 basename = strrchr(mod->name, '/');
Sam Ravnborgb817f6f2006-06-09 21:53:55 +02002122 if (basename)
2123 basename++;
Sam Ravnborgc96fca22006-07-01 11:44:23 +02002124 else
2125 basename = mod->name;
2126 if (!mod->gpl_compatible)
2127 check_for_gpl_usage(exp->export, basename, exp->name);
2128 check_for_unused(exp->export, basename, exp->name);
Sam Ravnborgdf578e72008-01-11 19:17:15 +01002129 }
Masahiro Yamada3b415282018-11-23 16:57:23 +09002130
2131 return err;
Sam Ravnborgb817f6f2006-06-09 21:53:55 +02002132}
2133
Wanlong Gao4fd3e4e2017-06-30 22:07:03 +08002134static int check_modname_len(struct module *mod)
2135{
2136 const char *mod_name;
2137
2138 mod_name = strrchr(mod->name, '/');
2139 if (mod_name == NULL)
2140 mod_name = mod->name;
2141 else
2142 mod_name++;
2143 if (strlen(mod_name) >= MODULE_NAME_LEN) {
2144 merror("module name is too long [%s.ko]\n", mod->name);
2145 return 1;
2146 }
2147
2148 return 0;
2149}
2150
Sam Ravnborg5c3ead82006-01-28 17:19:35 +01002151/**
2152 * Header for the generated file
2153 **/
2154static void add_header(struct buffer *b, struct module *mod)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002155{
Laura Abbott9afb7192018-07-05 17:49:37 -07002156 buf_printf(b, "#include <linux/build-salt.h>\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002157 buf_printf(b, "#include <linux/module.h>\n");
2158 buf_printf(b, "#include <linux/vermagic.h>\n");
2159 buf_printf(b, "#include <linux/compiler.h>\n");
2160 buf_printf(b, "\n");
Laura Abbott9afb7192018-07-05 17:49:37 -07002161 buf_printf(b, "BUILD_SALT;\n");
2162 buf_printf(b, "\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002163 buf_printf(b, "MODULE_INFO(vermagic, VERMAGIC_STRING);\n");
Kees Cook3e2e8572017-04-21 15:35:27 -07002164 buf_printf(b, "MODULE_INFO(name, KBUILD_MODNAME);\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002165 buf_printf(b, "\n");
Andi Kleene0f244c2013-10-23 10:57:58 +10302166 buf_printf(b, "__visible struct module __this_module\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002167 buf_printf(b, "__attribute__((section(\".gnu.linkonce.this_module\"))) = {\n");
Greg Kroah-Hartman3c7ec942012-04-25 11:10:15 -07002168 buf_printf(b, "\t.name = KBUILD_MODNAME,\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002169 if (mod->has_init)
Greg Kroah-Hartman3c7ec942012-04-25 11:10:15 -07002170 buf_printf(b, "\t.init = init_module,\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002171 if (mod->has_cleanup)
2172 buf_printf(b, "#ifdef CONFIG_MODULE_UNLOAD\n"
Greg Kroah-Hartman3c7ec942012-04-25 11:10:15 -07002173 "\t.exit = cleanup_module,\n"
Linus Torvalds1da177e2005-04-16 15:20:36 -07002174 "#endif\n");
Greg Kroah-Hartman3c7ec942012-04-25 11:10:15 -07002175 buf_printf(b, "\t.arch = MODULE_ARCH_INIT,\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002176 buf_printf(b, "};\n");
2177}
2178
Ben Hutchings2449b8b2011-10-24 15:12:28 +02002179static void add_intree_flag(struct buffer *b, int is_intree)
2180{
2181 if (is_intree)
2182 buf_printf(b, "\nMODULE_INFO(intree, \"Y\");\n");
2183}
2184
Andi Kleencaf75012018-01-25 15:50:28 -08002185/* Cannot check for assembler */
2186static void add_retpoline(struct buffer *b)
2187{
2188 buf_printf(b, "\n#ifdef RETPOLINE\n");
2189 buf_printf(b, "MODULE_INFO(retpoline, \"Y\");\n");
2190 buf_printf(b, "#endif\n");
2191}
2192
Trevor Keith5c725132009-09-22 16:43:38 -07002193static void add_staging_flag(struct buffer *b, const char *name)
Greg Kroah-Hartmana9860bf2008-09-24 14:46:44 -07002194{
Masahiro Yamadad62c4762018-05-09 18:50:38 +09002195 if (strstarts(name, "drivers/staging"))
Greg Kroah-Hartmana9860bf2008-09-24 14:46:44 -07002196 buf_printf(b, "\nMODULE_INFO(staging, \"Y\");\n");
2197}
2198
Sam Ravnborg5c3ead82006-01-28 17:19:35 +01002199/**
2200 * Record CRCs for unresolved symbols
2201 **/
Kirill Korotaevc53ddac2006-09-07 13:08:54 -07002202static int add_versions(struct buffer *b, struct module *mod)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002203{
2204 struct symbol *s, *exp;
Kirill Korotaevc53ddac2006-09-07 13:08:54 -07002205 int err = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002206
2207 for (s = mod->unres; s; s = s->next) {
2208 exp = find_symbol(s->name);
Masahiro Yamada3b415282018-11-23 16:57:23 +09002209 if (!exp || exp->module == mod)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002210 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002211 s->module = exp->module;
2212 s->crc_valid = exp->crc_valid;
2213 s->crc = exp->crc;
2214 }
2215
2216 if (!modversions)
Kirill Korotaevc53ddac2006-09-07 13:08:54 -07002217 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002218
2219 buf_printf(b, "\n");
2220 buf_printf(b, "static const struct modversion_info ____versions[]\n");
Adrian Bunk3ff6eec2008-01-24 22:16:20 +01002221 buf_printf(b, "__used\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002222 buf_printf(b, "__attribute__((section(\"__versions\"))) = {\n");
2223
2224 for (s = mod->unres; s; s = s->next) {
Sam Ravnborgdf578e72008-01-11 19:17:15 +01002225 if (!s->module)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002226 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002227 if (!s->crc_valid) {
Sam Ravnborgcb805142006-01-28 16:57:26 +01002228 warn("\"%s\" [%s.ko] has no CRC!\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07002229 s->name, mod->name);
2230 continue;
2231 }
Takashi Iwai5cfb2032015-08-08 15:16:20 +09302232 if (strlen(s->name) >= MODULE_NAME_LEN) {
2233 merror("too long symbol \"%s\" [%s.ko]\n",
2234 s->name, mod->name);
2235 err = 1;
2236 break;
2237 }
Masahiro Yamadab2c5cdc2018-05-09 16:23:45 +09002238 buf_printf(b, "\t{ %#8x, \"%s\" },\n",
James Hogana4b6a772013-03-18 19:38:56 +10302239 s->crc, s->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002240 }
2241
2242 buf_printf(b, "};\n");
Kirill Korotaevc53ddac2006-09-07 13:08:54 -07002243
2244 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002245}
2246
Masahiro Yamadad2665ca2018-11-23 16:57:21 +09002247static void add_depends(struct buffer *b, struct module *mod)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002248{
2249 struct symbol *s;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002250 int first = 1;
2251
Masahiro Yamadad2665ca2018-11-23 16:57:21 +09002252 /* Clear ->seen flag of modules that own symbols needed by this. */
2253 for (s = mod->unres; s; s = s->next)
2254 if (s->module)
2255 s->module->seen = is_vmlinux(s->module->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002256
2257 buf_printf(b, "\n");
2258 buf_printf(b, "static const char __module_depends[]\n");
Adrian Bunk3ff6eec2008-01-24 22:16:20 +01002259 buf_printf(b, "__used\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002260 buf_printf(b, "__attribute__((section(\".modinfo\"))) =\n");
2261 buf_printf(b, "\"depends=");
2262 for (s = mod->unres; s; s = s->next) {
Sam Ravnborga61b2df2007-02-26 19:46:52 +01002263 const char *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002264 if (!s->module)
2265 continue;
2266
2267 if (s->module->seen)
2268 continue;
2269
2270 s->module->seen = 1;
Sam Ravnborgdf578e72008-01-11 19:17:15 +01002271 p = strrchr(s->module->name, '/');
2272 if (p)
Sam Ravnborga61b2df2007-02-26 19:46:52 +01002273 p++;
2274 else
2275 p = s->module->name;
2276 buf_printf(b, "%s%s", first ? "" : ",", p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002277 first = 0;
2278 }
2279 buf_printf(b, "\";\n");
2280}
2281
Sam Ravnborg5c3ead82006-01-28 17:19:35 +01002282static void add_srcversion(struct buffer *b, struct module *mod)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002283{
2284 if (mod->srcversion[0]) {
2285 buf_printf(b, "\n");
2286 buf_printf(b, "MODULE_INFO(srcversion, \"%s\");\n",
2287 mod->srcversion);
2288 }
2289}
2290
Sam Ravnborg5c3ead82006-01-28 17:19:35 +01002291static void write_if_changed(struct buffer *b, const char *fname)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002292{
2293 char *tmp;
2294 FILE *file;
2295 struct stat st;
2296
2297 file = fopen(fname, "r");
2298 if (!file)
2299 goto write;
2300
2301 if (fstat(fileno(file), &st) < 0)
2302 goto close_write;
2303
2304 if (st.st_size != b->pos)
2305 goto close_write;
2306
2307 tmp = NOFAIL(malloc(b->pos));
2308 if (fread(tmp, 1, b->pos, file) != b->pos)
2309 goto free_write;
2310
2311 if (memcmp(tmp, b->p, b->pos) != 0)
2312 goto free_write;
2313
2314 free(tmp);
2315 fclose(file);
2316 return;
2317
2318 free_write:
2319 free(tmp);
2320 close_write:
2321 fclose(file);
2322 write:
2323 file = fopen(fname, "w");
2324 if (!file) {
2325 perror(fname);
2326 exit(1);
2327 }
2328 if (fwrite(b->p, 1, b->pos, file) != b->pos) {
2329 perror(fname);
2330 exit(1);
2331 }
2332 fclose(file);
2333}
2334
Ram Paibd5cbce2006-06-08 22:12:53 -07002335/* parse Module.symvers file. line format:
Sam Ravnborg534b89a2006-07-01 10:10:19 +02002336 * 0x12345678<tab>symbol<tab>module[[<tab>export]<tab>something]
Ram Paibd5cbce2006-06-08 22:12:53 -07002337 **/
Sam Ravnborg040fcc82006-01-28 22:15:55 +01002338static void read_dump(const char *fname, unsigned int kernel)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002339{
2340 unsigned long size, pos = 0;
2341 void *file = grab_file(fname, &size);
2342 char *line;
2343
Sam Ravnborgdf578e72008-01-11 19:17:15 +01002344 if (!file)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002345 /* No symbol versions, silently ignore */
2346 return;
2347
2348 while ((line = get_next_line(&pos, file, size))) {
Sam Ravnborg534b89a2006-07-01 10:10:19 +02002349 char *symname, *modname, *d, *export, *end;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002350 unsigned int crc;
2351 struct module *mod;
Sam Ravnborg040fcc82006-01-28 22:15:55 +01002352 struct symbol *s;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002353
2354 if (!(symname = strchr(line, '\t')))
2355 goto fail;
2356 *symname++ = '\0';
2357 if (!(modname = strchr(symname, '\t')))
2358 goto fail;
2359 *modname++ = '\0';
Laurent Riffard9ac545b2006-06-11 08:02:06 +02002360 if ((export = strchr(modname, '\t')) != NULL)
Ram Paibd5cbce2006-06-08 22:12:53 -07002361 *export++ = '\0';
Sam Ravnborg534b89a2006-07-01 10:10:19 +02002362 if (export && ((end = strchr(export, '\t')) != NULL))
2363 *end = '\0';
Linus Torvalds1da177e2005-04-16 15:20:36 -07002364 crc = strtoul(line, &d, 16);
2365 if (*symname == '\0' || *modname == '\0' || *d != '\0')
2366 goto fail;
Sam Ravnborgdf578e72008-01-11 19:17:15 +01002367 mod = find_module(modname);
2368 if (!mod) {
2369 if (is_vmlinux(modname))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002370 have_vmlinux = 1;
Jan Beulich0fa3a882009-03-12 12:28:30 +00002371 mod = new_module(modname);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002372 mod->skip = 1;
2373 }
Ram Paibd5cbce2006-06-08 22:12:53 -07002374 s = sym_add_exported(symname, mod, export_no(export));
Sam Ravnborg8e70c452006-01-28 22:22:33 +01002375 s->kernel = kernel;
2376 s->preloaded = 1;
Ram Paibd5cbce2006-06-08 22:12:53 -07002377 sym_update_crc(symname, mod, crc, export_no(export));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002378 }
Christian Engelmayer2ee41e62014-04-28 11:34:32 +09302379 release_file(file, size);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002380 return;
2381fail:
Christian Engelmayer2ee41e62014-04-28 11:34:32 +09302382 release_file(file, size);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002383 fatal("parse error in symbol dump file\n");
2384}
2385
Sam Ravnborg040fcc82006-01-28 22:15:55 +01002386/* For normal builds always dump all symbols.
2387 * For external modules only dump symbols
2388 * that are not read from kernel Module.symvers.
2389 **/
2390static int dump_sym(struct symbol *sym)
2391{
2392 if (!external_module)
2393 return 1;
2394 if (sym->vmlinux || sym->kernel)
2395 return 0;
2396 return 1;
2397}
Sam Ravnborg62070fa2006-03-03 16:46:04 +01002398
Sam Ravnborg5c3ead82006-01-28 17:19:35 +01002399static void write_dump(const char *fname)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002400{
2401 struct buffer buf = { };
2402 struct symbol *symbol;
2403 int n;
2404
2405 for (n = 0; n < SYMBOL_HASH_SIZE ; n++) {
2406 symbol = symbolhash[n];
2407 while (symbol) {
Sam Ravnborg040fcc82006-01-28 22:15:55 +01002408 if (dump_sym(symbol))
Ram Paibd5cbce2006-06-08 22:12:53 -07002409 buf_printf(&buf, "0x%08x\t%s\t%s\t%s\n",
Sam Ravnborg62070fa2006-03-03 16:46:04 +01002410 symbol->crc, symbol->name,
Ram Paibd5cbce2006-06-08 22:12:53 -07002411 symbol->module->name,
2412 export_str(symbol->export));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002413 symbol = symbol->next;
2414 }
2415 }
2416 write_if_changed(&buf, fname);
Heinrich Schuchardtc7d47f22016-08-02 21:43:01 +02002417 free(buf.p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002418}
2419
Richard Hacker2d04b5a2008-02-28 09:40:52 +01002420struct ext_sym_list {
2421 struct ext_sym_list *next;
2422 const char *file;
2423};
2424
Sam Ravnborg5c3ead82006-01-28 17:19:35 +01002425int main(int argc, char **argv)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002426{
2427 struct module *mod;
2428 struct buffer buf = { };
Sam Ravnborg040fcc82006-01-28 22:15:55 +01002429 char *kernel_read = NULL, *module_read = NULL;
Rusty Russell712f9b42013-04-04 17:37:38 +10302430 char *dump_write = NULL, *files_source = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002431 int opt;
Kirill Korotaevc53ddac2006-09-07 13:08:54 -07002432 int err;
Richard Hacker2d04b5a2008-02-28 09:40:52 +01002433 struct ext_sym_list *extsym_iter;
2434 struct ext_sym_list *extsym_start = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002435
Paul Walmsley0987abc2018-11-14 16:56:01 -08002436 while ((opt = getopt(argc, argv, "i:I:e:mnsST:o:awE")) != -1) {
Sam Ravnborgdf578e72008-01-11 19:17:15 +01002437 switch (opt) {
2438 case 'i':
2439 kernel_read = optarg;
2440 break;
2441 case 'I':
2442 module_read = optarg;
2443 external_module = 1;
2444 break;
Richard Hacker2d04b5a2008-02-28 09:40:52 +01002445 case 'e':
2446 external_module = 1;
2447 extsym_iter =
2448 NOFAIL(malloc(sizeof(*extsym_iter)));
2449 extsym_iter->next = extsym_start;
2450 extsym_iter->file = optarg;
2451 extsym_start = extsym_iter;
2452 break;
Sam Ravnborgdf578e72008-01-11 19:17:15 +01002453 case 'm':
2454 modversions = 1;
2455 break;
Guenter Roeckeed380f2013-09-23 15:23:54 +09302456 case 'n':
2457 ignore_missing_files = 1;
2458 break;
Sam Ravnborgdf578e72008-01-11 19:17:15 +01002459 case 'o':
2460 dump_write = optarg;
2461 break;
2462 case 'a':
2463 all_versions = 1;
2464 break;
2465 case 's':
2466 vmlinux_section_warnings = 0;
2467 break;
Sam Ravnborg588ccd72008-01-24 21:12:37 +01002468 case 'S':
2469 sec_mismatch_verbose = 0;
2470 break;
Rusty Russell712f9b42013-04-04 17:37:38 +10302471 case 'T':
2472 files_source = optarg;
2473 break;
Sam Ravnborgdf578e72008-01-11 19:17:15 +01002474 case 'w':
2475 warn_unresolved = 1;
2476 break;
Nicolas Boichat47490ec2015-10-06 09:44:42 +10302477 case 'E':
2478 sec_mismatch_fatal = 1;
2479 break;
Sam Ravnborgdf578e72008-01-11 19:17:15 +01002480 default:
2481 exit(1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002482 }
2483 }
2484
Sam Ravnborg040fcc82006-01-28 22:15:55 +01002485 if (kernel_read)
2486 read_dump(kernel_read, 1);
2487 if (module_read)
2488 read_dump(module_read, 0);
Richard Hacker2d04b5a2008-02-28 09:40:52 +01002489 while (extsym_start) {
2490 read_dump(extsym_start->file, 0);
2491 extsym_iter = extsym_start->next;
2492 free(extsym_start);
2493 extsym_start = extsym_iter;
2494 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002495
Sam Ravnborgdf578e72008-01-11 19:17:15 +01002496 while (optind < argc)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002497 read_symbols(argv[optind++]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002498
Rusty Russell712f9b42013-04-04 17:37:38 +10302499 if (files_source)
2500 read_symbols_from_files(files_source);
2501
Kirill Korotaevc53ddac2006-09-07 13:08:54 -07002502 err = 0;
2503
Sam Ravnborgb817f6f2006-06-09 21:53:55 +02002504 for (mod = modules; mod; mod = mod->next) {
Mathias Kraused93e1712014-08-27 20:28:56 +09302505 char fname[PATH_MAX];
Andi Kleen666ab412007-11-22 03:43:10 +01002506
Sam Ravnborgb817f6f2006-06-09 21:53:55 +02002507 if (mod->skip)
2508 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002509
2510 buf.pos = 0;
2511
Wanlong Gao4fd3e4e2017-06-30 22:07:03 +08002512 err |= check_modname_len(mod);
Masahiro Yamada3b415282018-11-23 16:57:23 +09002513 err |= check_exports(mod);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002514 add_header(&buf, mod);
Ben Hutchings2449b8b2011-10-24 15:12:28 +02002515 add_intree_flag(&buf, !external_module);
Andi Kleencaf75012018-01-25 15:50:28 -08002516 add_retpoline(&buf);
Greg Kroah-Hartmana9860bf2008-09-24 14:46:44 -07002517 add_staging_flag(&buf, mod->name);
Kirill Korotaevc53ddac2006-09-07 13:08:54 -07002518 err |= add_versions(&buf, mod);
Masahiro Yamadad2665ca2018-11-23 16:57:21 +09002519 add_depends(&buf, mod);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002520 add_moddevtable(&buf, mod);
2521 add_srcversion(&buf, mod);
2522
2523 sprintf(fname, "%s.mod.c", mod->name);
2524 write_if_changed(&buf, fname);
2525 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002526 if (dump_write)
2527 write_dump(dump_write);
Nicolas Boichat47490ec2015-10-06 09:44:42 +10302528 if (sec_mismatch_count) {
2529 if (!sec_mismatch_verbose) {
2530 warn("modpost: Found %d section mismatch(es).\n"
2531 "To see full details build your kernel with:\n"
2532 "'make CONFIG_DEBUG_SECTION_MISMATCH=y'\n",
2533 sec_mismatch_count);
2534 }
2535 if (sec_mismatch_fatal) {
2536 fatal("modpost: Section mismatches detected.\n"
2537 "Set CONFIG_SECTION_MISMATCH_WARN_ONLY=y to allow them.\n");
2538 }
2539 }
Heinrich Schuchardtc7d47f22016-08-02 21:43:01 +02002540 free(buf.p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002541
Kirill Korotaevc53ddac2006-09-07 13:08:54 -07002542 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002543}