blob: 14a50c8d3f3400ea1b40b0eaeb7f045b57d2d4da [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/* Generate assembler source containing symbol information
2 *
3 * Copyright 2002 by Kai Germaschewski
4 *
5 * This software may be used and distributed according to the terms
6 * of the GNU General Public License, incorporated herein by reference.
7 *
8 * Usage: nm -n vmlinux | scripts/kallsyms [--all-symbols] > symbols.S
9 *
Linus Torvalds1da177e2005-04-16 15:20:36 -070010 * Table compression uses all the unused char codes on the symbols and
11 * maps these to the most used substrings (tokens). For instance, it might
12 * map char code 0xF7 to represent "write_" and then in every symbol where
13 * "write_" appears it can be replaced by 0xF7, saving 5 bytes.
14 * The used codes themselves are also placed in the table so that the
15 * decompresion can work without "special cases".
16 * Applied to kernel symbols, this usually produces a compression ratio
17 * of about 50%.
18 *
19 */
20
21#include <stdio.h>
22#include <stdlib.h>
23#include <string.h>
24#include <ctype.h>
Ard Biesheuvel2213e9a2016-03-15 14:58:19 -070025#include <limits.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070026
Mike Frysinger17b1f0d2009-06-08 19:12:13 -040027#define ARRAY_SIZE(arr) (sizeof(arr) / sizeof(arr[0]))
Mike Frysinger17b1f0d2009-06-08 19:12:13 -040028
Tejun Heo9281ace2007-07-17 04:03:51 -070029#define KSYM_NAME_LEN 128
Linus Torvalds1da177e2005-04-16 15:20:36 -070030
Linus Torvalds1da177e2005-04-16 15:20:36 -070031struct sym_entry {
32 unsigned long long addr;
Paulo Marquesb3dbb4e2005-09-06 15:16:31 -070033 unsigned int len;
Paulo Marquesf2df3f62008-02-06 01:37:33 -080034 unsigned int start_pos;
Linus Torvalds1da177e2005-04-16 15:20:36 -070035 unsigned char *sym;
Ard Biesheuvel8c996942016-03-15 14:58:15 -070036 unsigned int percpu_absolute;
Linus Torvalds1da177e2005-04-16 15:20:36 -070037};
38
Kees Cook78eb7152014-03-17 13:18:27 +103039struct addr_range {
40 const char *start_sym, *end_sym;
Mike Frysinger17b1f0d2009-06-08 19:12:13 -040041 unsigned long long start, end;
42};
43
44static unsigned long long _text;
Ard Biesheuvel2213e9a2016-03-15 14:58:19 -070045static unsigned long long relative_base;
Kees Cook78eb7152014-03-17 13:18:27 +103046static struct addr_range text_ranges[] = {
Mike Frysinger17b1f0d2009-06-08 19:12:13 -040047 { "_stext", "_etext" },
48 { "_sinittext", "_einittext" },
Mike Frysinger17b1f0d2009-06-08 19:12:13 -040049};
50#define text_range_text (&text_ranges[0])
51#define text_range_inittext (&text_ranges[1])
52
Rusty Russellc6bda7c2014-03-17 14:05:46 +103053static struct addr_range percpu_range = {
54 "__per_cpu_start", "__per_cpu_end", -1ULL, 0
55};
56
Linus Torvalds1da177e2005-04-16 15:20:36 -070057static struct sym_entry *table;
Paulo Marquesb3dbb4e2005-09-06 15:16:31 -070058static unsigned int table_size, table_cnt;
Linus Torvalds1da177e2005-04-16 15:20:36 -070059static int all_symbols = 0;
Rusty Russellc6bda7c2014-03-17 14:05:46 +103060static int absolute_percpu = 0;
Ard Biesheuvel2213e9a2016-03-15 14:58:19 -070061static int base_relative = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -070062
Masahiro Yamadaf43e9da2019-02-04 10:53:16 +090063static int token_profit[0x10000];
Linus Torvalds1da177e2005-04-16 15:20:36 -070064
65/* the table that holds the result of the compression */
Masahiro Yamadaf43e9da2019-02-04 10:53:16 +090066static unsigned char best_table[256][2];
67static unsigned char best_table_len[256];
Linus Torvalds1da177e2005-04-16 15:20:36 -070068
69
Paulo Marquesb3dbb4e2005-09-06 15:16:31 -070070static void usage(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -070071{
Ming Leif6537f22013-11-02 09:11:33 +103072 fprintf(stderr, "Usage: kallsyms [--all-symbols] "
Ard Biesheuvel2213e9a2016-03-15 14:58:19 -070073 "[--base-relative] < in.map > out.S\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -070074 exit(1);
75}
76
Kees Cook78eb7152014-03-17 13:18:27 +103077static int check_symbol_range(const char *sym, unsigned long long addr,
78 struct addr_range *ranges, int entries)
Mike Frysinger17b1f0d2009-06-08 19:12:13 -040079{
80 size_t i;
Kees Cook78eb7152014-03-17 13:18:27 +103081 struct addr_range *ar;
Mike Frysinger17b1f0d2009-06-08 19:12:13 -040082
Kees Cook78eb7152014-03-17 13:18:27 +103083 for (i = 0; i < entries; ++i) {
84 ar = &ranges[i];
Mike Frysinger17b1f0d2009-06-08 19:12:13 -040085
Kees Cook78eb7152014-03-17 13:18:27 +103086 if (strcmp(sym, ar->start_sym) == 0) {
87 ar->start = addr;
Mike Frysinger17b1f0d2009-06-08 19:12:13 -040088 return 0;
Kees Cook78eb7152014-03-17 13:18:27 +103089 } else if (strcmp(sym, ar->end_sym) == 0) {
90 ar->end = addr;
Mike Frysinger17b1f0d2009-06-08 19:12:13 -040091 return 0;
92 }
93 }
94
95 return 1;
96}
97
Paulo Marquesb3dbb4e2005-09-06 15:16:31 -070098static int read_symbol(FILE *in, struct sym_entry *s)
Linus Torvalds1da177e2005-04-16 15:20:36 -070099{
Masahiro Yamada534c9f22018-05-09 16:23:47 +0900100 char sym[500], stype;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700101 int rc;
102
Masahiro Yamada534c9f22018-05-09 16:23:47 +0900103 rc = fscanf(in, "%llx %c %499s\n", &s->addr, &stype, sym);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700104 if (rc != 3) {
Masahiro Yamada534c9f22018-05-09 16:23:47 +0900105 if (rc != EOF && fgets(sym, 500, in) == NULL)
Jean Sacrenef894872010-09-10 23:13:33 -0600106 fprintf(stderr, "Read error or end of file.\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700107 return -1;
108 }
Eugene Loh6db29832019-01-17 14:46:00 -0800109 if (strlen(sym) >= KSYM_NAME_LEN) {
110 fprintf(stderr, "Symbol %s too long for kallsyms (%zu >= %d).\n"
Masahiro Yamadabb66fc62014-06-10 19:08:13 +0900111 "Please increase KSYM_NAME_LEN both in kernel and kallsyms.c\n",
Masahiro Yamada534c9f22018-05-09 16:23:47 +0900112 sym, strlen(sym), KSYM_NAME_LEN);
Andi Kleenf3462aa2013-10-23 15:07:53 +0200113 return -1;
114 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700115
116 /* Ignore most absolute/undefined (?) symbols. */
Eric W. Biedermanfd593d12006-12-07 02:14:04 +0100117 if (strcmp(sym, "_text") == 0)
118 _text = s->addr;
Kees Cook78eb7152014-03-17 13:18:27 +1030119 else if (check_symbol_range(sym, s->addr, text_ranges,
120 ARRAY_SIZE(text_ranges)) == 0)
Mike Frysinger17b1f0d2009-06-08 19:12:13 -0400121 /* nothing to do */;
Paulo Marquesb3dbb4e2005-09-06 15:16:31 -0700122 else if (toupper(stype) == 'A')
Linus Torvalds1da177e2005-04-16 15:20:36 -0700123 {
124 /* Keep these useful absolute symbols */
Yoshinori Sato41f11a42005-05-01 08:59:06 -0700125 if (strcmp(sym, "__kernel_syscall_via_break") &&
126 strcmp(sym, "__kernel_syscall_via_epc") &&
127 strcmp(sym, "__kernel_sigtramp") &&
128 strcmp(sym, "__gp"))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700129 return -1;
130
131 }
Masahiro Yamadae0109042019-11-24 01:04:33 +0900132 else if (toupper(stype) == 'U')
Linus Torvalds1da177e2005-04-16 15:20:36 -0700133 return -1;
Masahiro Yamadae0109042019-11-24 01:04:33 +0900134 /*
135 * Ignore generated symbols such as:
136 * - mapping symbols in ARM ELF files ($a, $t, and $d)
137 * - MIPS ELF local symbols ($L123 instead of .L123)
138 */
Masahiro Yamada534c9f22018-05-09 16:23:47 +0900139 else if (sym[0] == '$')
Ralf Baechle6f00df22005-09-06 15:16:41 -0700140 return -1;
Sam Ravnborgaab34ac2008-05-19 20:07:58 +0200141 /* exclude debugging symbols */
Guenter Roeck51962a92017-10-13 15:57:58 -0700142 else if (stype == 'N' || stype == 'n')
Sam Ravnborgaab34ac2008-05-19 20:07:58 +0200143 return -1;
Vasily Gorbik33177f012019-06-28 19:22:47 +0200144 /* exclude s390 kasan local symbols */
145 else if (!strncmp(sym, ".LASANPC", 8))
146 return -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700147
148 /* include the type field in the symbol name, so that it gets
149 * compressed together */
Masahiro Yamada534c9f22018-05-09 16:23:47 +0900150 s->len = strlen(sym) + 1;
Paulo Marquesb3dbb4e2005-09-06 15:16:31 -0700151 s->sym = malloc(s->len + 1);
Jesper Juhlf1a136e2006-03-25 03:07:46 -0800152 if (!s->sym) {
153 fprintf(stderr, "kallsyms failure: "
154 "unable to allocate required amount of memory\n");
155 exit(EXIT_FAILURE);
156 }
Masahiro Yamada534c9f22018-05-09 16:23:47 +0900157 strcpy((char *)s->sym + 1, sym);
Paulo Marquesb3dbb4e2005-09-06 15:16:31 -0700158 s->sym[0] = stype;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700159
Ard Biesheuvel8c996942016-03-15 14:58:15 -0700160 s->percpu_absolute = 0;
161
Rusty Russellc6bda7c2014-03-17 14:05:46 +1030162 /* Record if we've found __per_cpu_start/end. */
163 check_symbol_range(sym, s->addr, &percpu_range, 1);
164
Linus Torvalds1da177e2005-04-16 15:20:36 -0700165 return 0;
166}
167
Kees Cook78eb7152014-03-17 13:18:27 +1030168static int symbol_in_range(struct sym_entry *s, struct addr_range *ranges,
169 int entries)
Mike Frysinger17b1f0d2009-06-08 19:12:13 -0400170{
171 size_t i;
Kees Cook78eb7152014-03-17 13:18:27 +1030172 struct addr_range *ar;
Mike Frysinger17b1f0d2009-06-08 19:12:13 -0400173
Kees Cook78eb7152014-03-17 13:18:27 +1030174 for (i = 0; i < entries; ++i) {
175 ar = &ranges[i];
Mike Frysinger17b1f0d2009-06-08 19:12:13 -0400176
Kees Cook78eb7152014-03-17 13:18:27 +1030177 if (s->addr >= ar->start && s->addr <= ar->end)
Mike Frysingerac6ca5c2009-06-15 07:52:48 -0400178 return 1;
Mike Frysinger17b1f0d2009-06-08 19:12:13 -0400179 }
180
Mike Frysingerac6ca5c2009-06-15 07:52:48 -0400181 return 0;
Mike Frysinger17b1f0d2009-06-08 19:12:13 -0400182}
183
Paulo Marquesb3dbb4e2005-09-06 15:16:31 -0700184static int symbol_valid(struct sym_entry *s)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700185{
186 /* Symbols which vary between passes. Passes 1 and 2 must have
Sam Ravnborg2ea03892009-01-14 21:38:20 +0100187 * identical symbol lists. The kallsyms_* symbols below are only added
188 * after pass 1, they would be included in pass 2 when --all-symbols is
189 * specified so exclude them to get a stable symbol list.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700190 */
191 static char *special_symbols[] = {
Sam Ravnborg2ea03892009-01-14 21:38:20 +0100192 "kallsyms_addresses",
Ard Biesheuvel2213e9a2016-03-15 14:58:19 -0700193 "kallsyms_offsets",
194 "kallsyms_relative_base",
Sam Ravnborg2ea03892009-01-14 21:38:20 +0100195 "kallsyms_num_syms",
196 "kallsyms_names",
197 "kallsyms_markers",
198 "kallsyms_token_table",
199 "kallsyms_token_index",
200
Linus Torvalds1da177e2005-04-16 15:20:36 -0700201 /* Exclude linker generated symbols which vary between passes */
202 "_SDA_BASE_", /* ppc */
203 "_SDA2_BASE_", /* ppc */
204 NULL };
Ard Biesheuvelbd8b22d2015-03-30 15:20:31 +0200205
Ard Biesheuvel56067812017-02-03 09:54:05 +0000206 static char *special_prefixes[] = {
207 "__crc_", /* modversions */
Ard Biesheuvel1212f7a2018-03-01 17:19:01 +0000208 "__efistub_", /* arm64 EFI stub namespace */
Ard Biesheuvel56067812017-02-03 09:54:05 +0000209 NULL };
210
Ard Biesheuvelbd8b22d2015-03-30 15:20:31 +0200211 static char *special_suffixes[] = {
Ard Biesheuvelbd8b22d2015-03-30 15:20:31 +0200212 "_veneer", /* arm */
Ard Biesheuvelb9b74be2016-04-01 14:33:48 +0100213 "_from_arm", /* arm */
214 "_from_thumb", /* arm */
Ard Biesheuvelbd8b22d2015-03-30 15:20:31 +0200215 NULL };
216
Linus Torvalds1da177e2005-04-16 15:20:36 -0700217 int i;
Ard Biesheuvelbd8b22d2015-03-30 15:20:31 +0200218 char *sym_name = (char *)s->sym + 1;
219
Linus Torvalds1da177e2005-04-16 15:20:36 -0700220 /* if --all-symbols is not specified, then symbols outside the text
221 * and inittext sections are discarded */
222 if (!all_symbols) {
Kees Cook78eb7152014-03-17 13:18:27 +1030223 if (symbol_in_range(s, text_ranges,
224 ARRAY_SIZE(text_ranges)) == 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700225 return 0;
226 /* Corner case. Discard any symbols with the same value as
Robin Getza3b81112008-02-06 01:36:26 -0800227 * _etext _einittext; they can move between pass 1 and 2 when
228 * the kallsyms data are added. If these symbols move then
229 * they may get dropped in pass 2, which breaks the kallsyms
230 * rules.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700231 */
Mike Frysinger17b1f0d2009-06-08 19:12:13 -0400232 if ((s->addr == text_range_text->end &&
Ard Biesheuvelbd8b22d2015-03-30 15:20:31 +0200233 strcmp(sym_name,
Kees Cook78eb7152014-03-17 13:18:27 +1030234 text_range_text->end_sym)) ||
Mike Frysinger17b1f0d2009-06-08 19:12:13 -0400235 (s->addr == text_range_inittext->end &&
Ard Biesheuvelbd8b22d2015-03-30 15:20:31 +0200236 strcmp(sym_name,
Kees Cook78eb7152014-03-17 13:18:27 +1030237 text_range_inittext->end_sym)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700238 return 0;
239 }
240
241 /* Exclude symbols which vary between passes. */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700242 for (i = 0; special_symbols[i]; i++)
Ard Biesheuvelbd8b22d2015-03-30 15:20:31 +0200243 if (strcmp(sym_name, special_symbols[i]) == 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700244 return 0;
245
Ard Biesheuvel56067812017-02-03 09:54:05 +0000246 for (i = 0; special_prefixes[i]; i++) {
247 int l = strlen(special_prefixes[i]);
248
249 if (l <= strlen(sym_name) &&
250 strncmp(sym_name, special_prefixes[i], l) == 0)
251 return 0;
252 }
253
Ard Biesheuvelbd8b22d2015-03-30 15:20:31 +0200254 for (i = 0; special_suffixes[i]; i++) {
255 int l = strlen(sym_name) - strlen(special_suffixes[i]);
256
257 if (l >= 0 && strcmp(sym_name + l, special_suffixes[i]) == 0)
258 return 0;
259 }
260
Linus Torvalds1da177e2005-04-16 15:20:36 -0700261 return 1;
262}
263
Masahiro Yamada5e5c4fa2019-11-24 01:04:31 +0900264/* remove all the invalid symbols from the table */
265static void shrink_table(void)
266{
267 unsigned int i, pos;
268
269 pos = 0;
270 for (i = 0; i < table_cnt; i++) {
271 if (symbol_valid(&table[i])) {
272 if (pos != i)
273 table[pos] = table[i];
274 pos++;
275 } else {
276 free(table[i].sym);
277 }
278 }
279 table_cnt = pos;
280
281 /* When valid symbol is not registered, exit to error */
282 if (!table_cnt) {
283 fprintf(stderr, "No valid symbol.\n");
284 exit(1);
285 }
286}
287
Paulo Marquesb3dbb4e2005-09-06 15:16:31 -0700288static void read_map(FILE *in)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700289{
290 while (!feof(in)) {
Paulo Marquesb3dbb4e2005-09-06 15:16:31 -0700291 if (table_cnt >= table_size) {
292 table_size += 10000;
293 table = realloc(table, sizeof(*table) * table_size);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700294 if (!table) {
295 fprintf(stderr, "out of memory\n");
296 exit (1);
297 }
298 }
Paulo Marquesf2df3f62008-02-06 01:37:33 -0800299 if (read_symbol(in, &table[table_cnt]) == 0) {
300 table[table_cnt].start_pos = table_cnt;
Paulo Marquesb3dbb4e2005-09-06 15:16:31 -0700301 table_cnt++;
Paulo Marquesf2df3f62008-02-06 01:37:33 -0800302 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700303 }
304}
305
306static void output_label(char *label)
307{
Masahiro Yamada534c9f22018-05-09 16:23:47 +0900308 printf(".globl %s\n", label);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700309 printf("\tALGN\n");
Masahiro Yamada534c9f22018-05-09 16:23:47 +0900310 printf("%s:\n", label);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700311}
312
313/* uncompress a compressed symbol. When this function is called, the best table
314 * might still be compressed itself, so the function needs to be recursive */
315static int expand_symbol(unsigned char *data, int len, char *result)
316{
317 int c, rlen, total=0;
318
319 while (len) {
320 c = *data;
321 /* if the table holds a single char that is the same as the one
322 * we are looking for, then end the search */
323 if (best_table[c][0]==c && best_table_len[c]==1) {
324 *result++ = c;
325 total++;
326 } else {
327 /* if not, recurse and expand */
328 rlen = expand_symbol(best_table[c], best_table_len[c], result);
329 total += rlen;
330 result += rlen;
331 }
332 data++;
333 len--;
334 }
335 *result=0;
336
337 return total;
338}
339
Kees Cook78eb7152014-03-17 13:18:27 +1030340static int symbol_absolute(struct sym_entry *s)
341{
Ard Biesheuvel8c996942016-03-15 14:58:15 -0700342 return s->percpu_absolute;
Kees Cook78eb7152014-03-17 13:18:27 +1030343}
344
Paulo Marquesb3dbb4e2005-09-06 15:16:31 -0700345static void write_src(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700346{
Paulo Marquesb3dbb4e2005-09-06 15:16:31 -0700347 unsigned int i, k, off;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700348 unsigned int best_idx[256];
349 unsigned int *markers;
Tejun Heo9281ace2007-07-17 04:03:51 -0700350 char buf[KSYM_NAME_LEN];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700351
Masahiro Yamada500193e2019-02-04 10:53:18 +0900352 printf("#include <asm/bitsperlong.h>\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700353 printf("#if BITS_PER_LONG == 64\n");
354 printf("#define PTR .quad\n");
Mathias Krause72d3ebb2018-12-30 13:36:00 +0100355 printf("#define ALGN .balign 8\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700356 printf("#else\n");
357 printf("#define PTR .long\n");
Mathias Krause72d3ebb2018-12-30 13:36:00 +0100358 printf("#define ALGN .balign 4\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700359 printf("#endif\n");
360
Jan Beulichaad09472006-12-08 02:35:57 -0800361 printf("\t.section .rodata, \"a\"\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700362
Ard Biesheuvel2213e9a2016-03-15 14:58:19 -0700363 /* Provide proper symbols relocatability by their relativeness
364 * to a fixed anchor point in the runtime image, either '_text'
365 * for absolute address tables, in which case the linker will
366 * emit the final addresses at build time. Otherwise, use the
367 * offset relative to the lowest value encountered of all relative
368 * symbols, and emit non-relocatable fixed offsets that will be fixed
369 * up at runtime.
370 *
371 * The symbol names cannot be used to construct normal symbol
372 * references as the list of symbols contains symbols that are
373 * declared static and are private to their .o files. This prevents
374 * .tmp_kallsyms.o or any other object from referencing them.
Eric W. Biedermanfd593d12006-12-07 02:14:04 +0100375 */
Ard Biesheuvel2213e9a2016-03-15 14:58:19 -0700376 if (!base_relative)
377 output_label("kallsyms_addresses");
378 else
379 output_label("kallsyms_offsets");
380
Paulo Marquesb3dbb4e2005-09-06 15:16:31 -0700381 for (i = 0; i < table_cnt; i++) {
Ard Biesheuvel2213e9a2016-03-15 14:58:19 -0700382 if (base_relative) {
383 long long offset;
384 int overflow;
385
386 if (!absolute_percpu) {
387 offset = table[i].addr - relative_base;
388 overflow = (offset < 0 || offset > UINT_MAX);
389 } else if (symbol_absolute(&table[i])) {
390 offset = table[i].addr;
391 overflow = (offset < 0 || offset > INT_MAX);
392 } else {
393 offset = relative_base - table[i].addr - 1;
394 overflow = (offset < INT_MIN || offset >= 0);
395 }
396 if (overflow) {
397 fprintf(stderr, "kallsyms failure: "
398 "%s symbol value %#llx out of range in relative mode\n",
399 symbol_absolute(&table[i]) ? "absolute" : "relative",
400 table[i].addr);
401 exit(EXIT_FAILURE);
402 }
403 printf("\t.long\t%#x\n", (int)offset);
404 } else if (!symbol_absolute(&table[i])) {
Vivek Goyal2c22d8b2006-12-07 02:14:10 +0100405 if (_text <= table[i].addr)
406 printf("\tPTR\t_text + %#llx\n",
407 table[i].addr - _text);
408 else
Andrew Morton2930ffc2014-03-10 15:49:48 -0700409 printf("\tPTR\t_text - %#llx\n",
410 _text - table[i].addr);
Eric W. Biedermanfd593d12006-12-07 02:14:04 +0100411 } else {
412 printf("\tPTR\t%#llx\n", table[i].addr);
413 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700414 }
415 printf("\n");
416
Ard Biesheuvel2213e9a2016-03-15 14:58:19 -0700417 if (base_relative) {
418 output_label("kallsyms_relative_base");
419 printf("\tPTR\t_text - %#llx\n", _text - relative_base);
420 printf("\n");
421 }
422
Linus Torvalds1da177e2005-04-16 15:20:36 -0700423 output_label("kallsyms_num_syms");
Jan Beulich80ffbaa2018-09-03 06:09:34 -0600424 printf("\t.long\t%u\n", table_cnt);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700425 printf("\n");
426
427 /* table of offset markers, that give the offset in the compressed stream
428 * every 256 symbols */
Jesper Juhlf1a136e2006-03-25 03:07:46 -0800429 markers = malloc(sizeof(unsigned int) * ((table_cnt + 255) / 256));
430 if (!markers) {
431 fprintf(stderr, "kallsyms failure: "
432 "unable to allocate required memory\n");
433 exit(EXIT_FAILURE);
434 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700435
436 output_label("kallsyms_names");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700437 off = 0;
Paulo Marquesb3dbb4e2005-09-06 15:16:31 -0700438 for (i = 0; i < table_cnt; i++) {
439 if ((i & 0xFF) == 0)
440 markers[i >> 8] = off;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700441
442 printf("\t.byte 0x%02x", table[i].len);
443 for (k = 0; k < table[i].len; k++)
444 printf(", 0x%02x", table[i].sym[k]);
445 printf("\n");
446
447 off += table[i].len + 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700448 }
449 printf("\n");
450
451 output_label("kallsyms_markers");
Paulo Marquesb3dbb4e2005-09-06 15:16:31 -0700452 for (i = 0; i < ((table_cnt + 255) >> 8); i++)
Jan Beulich80ffbaa2018-09-03 06:09:34 -0600453 printf("\t.long\t%u\n", markers[i]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700454 printf("\n");
455
456 free(markers);
457
458 output_label("kallsyms_token_table");
459 off = 0;
460 for (i = 0; i < 256; i++) {
461 best_idx[i] = off;
Paulo Marquesb3dbb4e2005-09-06 15:16:31 -0700462 expand_symbol(best_table[i], best_table_len[i], buf);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700463 printf("\t.asciz\t\"%s\"\n", buf);
464 off += strlen(buf) + 1;
465 }
466 printf("\n");
467
468 output_label("kallsyms_token_index");
469 for (i = 0; i < 256; i++)
470 printf("\t.short\t%d\n", best_idx[i]);
471 printf("\n");
472}
473
474
475/* table lookup compression functions */
476
Linus Torvalds1da177e2005-04-16 15:20:36 -0700477/* count all the possible tokens in a symbol */
478static void learn_symbol(unsigned char *symbol, int len)
479{
480 int i;
481
482 for (i = 0; i < len - 1; i++)
Paulo Marquesb3dbb4e2005-09-06 15:16:31 -0700483 token_profit[ symbol[i] + (symbol[i + 1] << 8) ]++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700484}
485
486/* decrease the count for all the possible tokens in a symbol */
487static void forget_symbol(unsigned char *symbol, int len)
488{
489 int i;
490
491 for (i = 0; i < len - 1; i++)
Paulo Marquesb3dbb4e2005-09-06 15:16:31 -0700492 token_profit[ symbol[i] + (symbol[i + 1] << 8) ]--;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700493}
494
Masahiro Yamada5e5c4fa2019-11-24 01:04:31 +0900495/* do the initial token count */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700496static void build_initial_tok_table(void)
497{
Masahiro Yamada5e5c4fa2019-11-24 01:04:31 +0900498 unsigned int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700499
Masahiro Yamada5e5c4fa2019-11-24 01:04:31 +0900500 for (i = 0; i < table_cnt; i++)
501 learn_symbol(table[i].sym, table[i].len);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700502}
503
Paulo Marques7c5d2492007-06-20 18:09:00 +0100504static void *find_token(unsigned char *str, int len, unsigned char *token)
505{
506 int i;
507
508 for (i = 0; i < len - 1; i++) {
509 if (str[i] == token[0] && str[i+1] == token[1])
510 return &str[i];
511 }
512 return NULL;
513}
514
Linus Torvalds1da177e2005-04-16 15:20:36 -0700515/* replace a given token in all the valid symbols. Use the sampled symbols
516 * to update the counts */
Paulo Marquesb3dbb4e2005-09-06 15:16:31 -0700517static void compress_symbols(unsigned char *str, int idx)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700518{
Paulo Marquesb3dbb4e2005-09-06 15:16:31 -0700519 unsigned int i, len, size;
520 unsigned char *p1, *p2;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700521
Paulo Marquesb3dbb4e2005-09-06 15:16:31 -0700522 for (i = 0; i < table_cnt; i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700523
524 len = table[i].len;
Paulo Marquesb3dbb4e2005-09-06 15:16:31 -0700525 p1 = table[i].sym;
526
527 /* find the token on the symbol */
Paulo Marques7c5d2492007-06-20 18:09:00 +0100528 p2 = find_token(p1, len, str);
Paulo Marquesb3dbb4e2005-09-06 15:16:31 -0700529 if (!p2) continue;
530
531 /* decrease the counts for this symbol's tokens */
532 forget_symbol(table[i].sym, len);
533
534 size = len;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700535
536 do {
Paulo Marquesb3dbb4e2005-09-06 15:16:31 -0700537 *p2 = idx;
538 p2++;
539 size -= (p2 - p1);
540 memmove(p2, p2 + 1, size);
541 p1 = p2;
542 len--;
543
544 if (size < 2) break;
545
Linus Torvalds1da177e2005-04-16 15:20:36 -0700546 /* find the token on the symbol */
Paulo Marques7c5d2492007-06-20 18:09:00 +0100547 p2 = find_token(p1, size, str);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700548
Paulo Marquesb3dbb4e2005-09-06 15:16:31 -0700549 } while (p2);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700550
Paulo Marquesb3dbb4e2005-09-06 15:16:31 -0700551 table[i].len = len;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700552
Paulo Marquesb3dbb4e2005-09-06 15:16:31 -0700553 /* increase the counts for this symbol's new tokens */
554 learn_symbol(table[i].sym, len);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700555 }
556}
557
558/* search the token with the maximum profit */
Paulo Marquesb3dbb4e2005-09-06 15:16:31 -0700559static int find_best_token(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700560{
Paulo Marquesb3dbb4e2005-09-06 15:16:31 -0700561 int i, best, bestprofit;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700562
563 bestprofit=-10000;
Paulo Marquesb3dbb4e2005-09-06 15:16:31 -0700564 best = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700565
Paulo Marquesb3dbb4e2005-09-06 15:16:31 -0700566 for (i = 0; i < 0x10000; i++) {
567 if (token_profit[i] > bestprofit) {
568 best = i;
569 bestprofit = token_profit[i];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700570 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700571 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700572 return best;
573}
574
575/* this is the core of the algorithm: calculate the "best" table */
576static void optimize_result(void)
577{
Paulo Marquesb3dbb4e2005-09-06 15:16:31 -0700578 int i, best;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700579
580 /* using the '\0' symbol last allows compress_symbols to use standard
581 * fast string functions */
582 for (i = 255; i >= 0; i--) {
583
584 /* if this table slot is empty (it is not used by an actual
585 * original char code */
586 if (!best_table_len[i]) {
587
Cao jincbf7a902018-02-27 16:16:19 +0800588 /* find the token with the best profit value */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700589 best = find_best_token();
Xiaochen Wange0a04b12011-05-01 11:41:41 +0800590 if (token_profit[best] == 0)
591 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700592
593 /* place it in the "best" table */
Paulo Marquesb3dbb4e2005-09-06 15:16:31 -0700594 best_table_len[i] = 2;
595 best_table[i][0] = best & 0xFF;
596 best_table[i][1] = (best >> 8) & 0xFF;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700597
598 /* replace this token in all the valid symbols */
Paulo Marquesb3dbb4e2005-09-06 15:16:31 -0700599 compress_symbols(best_table[i], i);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700600 }
601 }
602}
603
604/* start by placing the symbols that are actually used on the table */
605static void insert_real_symbols_in_table(void)
606{
Paulo Marquesb3dbb4e2005-09-06 15:16:31 -0700607 unsigned int i, j, c;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700608
Paulo Marquesb3dbb4e2005-09-06 15:16:31 -0700609 for (i = 0; i < table_cnt; i++) {
610 for (j = 0; j < table[i].len; j++) {
611 c = table[i].sym[j];
612 best_table[c][0]=c;
613 best_table_len[c]=1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700614 }
615 }
616}
617
618static void optimize_token_table(void)
619{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700620 build_initial_tok_table();
621
622 insert_real_symbols_in_table();
623
624 optimize_result();
625}
626
Lai Jiangshanb478b782009-03-13 15:10:26 +0800627/* guess for "linker script provide" symbol */
628static int may_be_linker_script_provide_symbol(const struct sym_entry *se)
629{
630 const char *symbol = (char *)se->sym + 1;
631 int len = se->len - 1;
632
633 if (len < 8)
634 return 0;
635
636 if (symbol[0] != '_' || symbol[1] != '_')
637 return 0;
638
639 /* __start_XXXXX */
640 if (!memcmp(symbol + 2, "start_", 6))
641 return 1;
642
643 /* __stop_XXXXX */
644 if (!memcmp(symbol + 2, "stop_", 5))
645 return 1;
646
647 /* __end_XXXXX */
648 if (!memcmp(symbol + 2, "end_", 4))
649 return 1;
650
651 /* __XXXXX_start */
652 if (!memcmp(symbol + len - 6, "_start", 6))
653 return 1;
654
655 /* __XXXXX_end */
656 if (!memcmp(symbol + len - 4, "_end", 4))
657 return 1;
658
659 return 0;
660}
661
662static int prefix_underscores_count(const char *str)
663{
664 const char *tail = str;
665
Paul Mundta9ece532009-09-22 16:44:12 -0700666 while (*tail == '_')
Lai Jiangshanb478b782009-03-13 15:10:26 +0800667 tail++;
668
669 return tail - str;
670}
671
Paulo Marquesf2df3f62008-02-06 01:37:33 -0800672static int compare_symbols(const void *a, const void *b)
673{
674 const struct sym_entry *sa;
675 const struct sym_entry *sb;
676 int wa, wb;
677
678 sa = a;
679 sb = b;
680
681 /* sort by address first */
682 if (sa->addr > sb->addr)
683 return 1;
684 if (sa->addr < sb->addr)
685 return -1;
686
687 /* sort by "weakness" type */
688 wa = (sa->sym[0] == 'w') || (sa->sym[0] == 'W');
689 wb = (sb->sym[0] == 'w') || (sb->sym[0] == 'W');
690 if (wa != wb)
691 return wa - wb;
692
Lai Jiangshanb478b782009-03-13 15:10:26 +0800693 /* sort by "linker script provide" type */
694 wa = may_be_linker_script_provide_symbol(sa);
695 wb = may_be_linker_script_provide_symbol(sb);
696 if (wa != wb)
697 return wa - wb;
698
699 /* sort by the number of prefix underscores */
700 wa = prefix_underscores_count((const char *)sa->sym + 1);
701 wb = prefix_underscores_count((const char *)sb->sym + 1);
702 if (wa != wb)
703 return wa - wb;
704
Paulo Marquesf2df3f62008-02-06 01:37:33 -0800705 /* sort by initial order, so that other symbols are left undisturbed */
706 return sa->start_pos - sb->start_pos;
707}
708
709static void sort_symbols(void)
710{
711 qsort(table, table_cnt, sizeof(struct sym_entry), compare_symbols);
712}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700713
Rusty Russellc6bda7c2014-03-17 14:05:46 +1030714static void make_percpus_absolute(void)
715{
716 unsigned int i;
717
718 for (i = 0; i < table_cnt; i++)
Ard Biesheuvel8c996942016-03-15 14:58:15 -0700719 if (symbol_in_range(&table[i], &percpu_range, 1)) {
720 /*
721 * Keep the 'A' override for percpu symbols to
722 * ensure consistent behavior compared to older
723 * versions of this tool.
724 */
Rusty Russellc6bda7c2014-03-17 14:05:46 +1030725 table[i].sym[0] = 'A';
Ard Biesheuvel8c996942016-03-15 14:58:15 -0700726 table[i].percpu_absolute = 1;
727 }
Rusty Russellc6bda7c2014-03-17 14:05:46 +1030728}
729
Ard Biesheuvel2213e9a2016-03-15 14:58:19 -0700730/* find the minimum non-absolute symbol address */
731static void record_relative_base(void)
732{
733 unsigned int i;
734
Ard Biesheuvel2213e9a2016-03-15 14:58:19 -0700735 for (i = 0; i < table_cnt; i++)
Masahiro Yamadaf34ea022019-11-24 01:04:32 +0900736 if (!symbol_absolute(&table[i])) {
737 /*
738 * The table is sorted by address.
739 * Take the first non-absolute symbol value.
740 */
Ard Biesheuvel2213e9a2016-03-15 14:58:19 -0700741 relative_base = table[i].addr;
Masahiro Yamadaf34ea022019-11-24 01:04:32 +0900742 return;
743 }
Ard Biesheuvel2213e9a2016-03-15 14:58:19 -0700744}
745
Paulo Marquesb3dbb4e2005-09-06 15:16:31 -0700746int main(int argc, char **argv)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700747{
Yoshinori Sato41f11a42005-05-01 08:59:06 -0700748 if (argc >= 2) {
749 int i;
750 for (i = 1; i < argc; i++) {
751 if(strcmp(argv[i], "--all-symbols") == 0)
752 all_symbols = 1;
Rusty Russellc6bda7c2014-03-17 14:05:46 +1030753 else if (strcmp(argv[i], "--absolute-percpu") == 0)
754 absolute_percpu = 1;
Masahiro Yamada534c9f22018-05-09 16:23:47 +0900755 else if (strcmp(argv[i], "--base-relative") == 0)
Ard Biesheuvel2213e9a2016-03-15 14:58:19 -0700756 base_relative = 1;
757 else
Yoshinori Sato41f11a42005-05-01 08:59:06 -0700758 usage();
759 }
760 } else if (argc != 1)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700761 usage();
762
763 read_map(stdin);
Masahiro Yamada5e5c4fa2019-11-24 01:04:31 +0900764 shrink_table();
Rusty Russellc6bda7c2014-03-17 14:05:46 +1030765 if (absolute_percpu)
766 make_percpus_absolute();
Masahiro Yamadaf34ea022019-11-24 01:04:32 +0900767 sort_symbols();
Ard Biesheuvel2213e9a2016-03-15 14:58:19 -0700768 if (base_relative)
769 record_relative_base();
Sam Ravnborg2ea03892009-01-14 21:38:20 +0100770 optimize_token_table();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700771 write_src();
772
773 return 0;
774}