blob: 94153732ec00188b03968781ce908792c5ed7f5c [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
Masahiro Yamadaa41333e2019-11-24 01:04:39 +090021#include <stdbool.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070022#include <stdio.h>
23#include <stdlib.h>
24#include <string.h>
25#include <ctype.h>
Ard Biesheuvel2213e9a2016-03-15 14:58:19 -070026#include <limits.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070027
Mike Frysinger17b1f0d2009-06-08 19:12:13 -040028#define ARRAY_SIZE(arr) (sizeof(arr) / sizeof(arr[0]))
Mike Frysinger17b1f0d2009-06-08 19:12:13 -040029
Tejun Heo9281ace2007-07-17 04:03:51 -070030#define KSYM_NAME_LEN 128
Linus Torvalds1da177e2005-04-16 15:20:36 -070031
Linus Torvalds1da177e2005-04-16 15:20:36 -070032struct sym_entry {
33 unsigned long long addr;
Paulo Marquesb3dbb4e2005-09-06 15:16:31 -070034 unsigned int len;
Paulo Marquesf2df3f62008-02-06 01:37:33 -080035 unsigned int start_pos;
Linus Torvalds1da177e2005-04-16 15:20:36 -070036 unsigned char *sym;
Ard Biesheuvel8c996942016-03-15 14:58:15 -070037 unsigned int percpu_absolute;
Linus Torvalds1da177e2005-04-16 15:20:36 -070038};
39
Kees Cook78eb7152014-03-17 13:18:27 +103040struct addr_range {
41 const char *start_sym, *end_sym;
Mike Frysinger17b1f0d2009-06-08 19:12:13 -040042 unsigned long long start, end;
43};
44
45static unsigned long long _text;
Ard Biesheuvel2213e9a2016-03-15 14:58:19 -070046static unsigned long long relative_base;
Kees Cook78eb7152014-03-17 13:18:27 +103047static struct addr_range text_ranges[] = {
Mike Frysinger17b1f0d2009-06-08 19:12:13 -040048 { "_stext", "_etext" },
49 { "_sinittext", "_einittext" },
Mike Frysinger17b1f0d2009-06-08 19:12:13 -040050};
51#define text_range_text (&text_ranges[0])
52#define text_range_inittext (&text_ranges[1])
53
Rusty Russellc6bda7c2014-03-17 14:05:46 +103054static struct addr_range percpu_range = {
55 "__per_cpu_start", "__per_cpu_end", -1ULL, 0
56};
57
Linus Torvalds1da177e2005-04-16 15:20:36 -070058static struct sym_entry *table;
Paulo Marquesb3dbb4e2005-09-06 15:16:31 -070059static unsigned int table_size, table_cnt;
Masahiro Yamada831362f2019-11-24 01:04:44 +090060static int all_symbols;
61static int absolute_percpu;
62static int base_relative;
Linus Torvalds1da177e2005-04-16 15:20:36 -070063
Masahiro Yamadaf43e9da2019-02-04 10:53:16 +090064static int token_profit[0x10000];
Linus Torvalds1da177e2005-04-16 15:20:36 -070065
66/* the table that holds the result of the compression */
Masahiro Yamadaf43e9da2019-02-04 10:53:16 +090067static unsigned char best_table[256][2];
68static unsigned char best_table_len[256];
Linus Torvalds1da177e2005-04-16 15:20:36 -070069
70
Paulo Marquesb3dbb4e2005-09-06 15:16:31 -070071static void usage(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -070072{
Ming Leif6537f22013-11-02 09:11:33 +103073 fprintf(stderr, "Usage: kallsyms [--all-symbols] "
Ard Biesheuvel2213e9a2016-03-15 14:58:19 -070074 "[--base-relative] < in.map > out.S\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -070075 exit(1);
76}
77
Masahiro Yamada29e55ad2019-11-24 01:04:35 +090078static char *sym_name(const struct sym_entry *s)
79{
80 return (char *)s->sym + 1;
81}
82
Masahiro Yamadaa41333e2019-11-24 01:04:39 +090083static bool is_ignored_symbol(const char *name, char type)
84{
85 static const char * const ignored_symbols[] = {
86 /*
87 * Symbols which vary between passes. Passes 1 and 2 must have
88 * identical symbol lists. The kallsyms_* symbols below are
89 * only added after pass 1, they would be included in pass 2
90 * when --all-symbols is specified so exclude them to get a
91 * stable symbol list.
92 */
93 "kallsyms_addresses",
94 "kallsyms_offsets",
95 "kallsyms_relative_base",
96 "kallsyms_num_syms",
97 "kallsyms_names",
98 "kallsyms_markers",
99 "kallsyms_token_table",
100 "kallsyms_token_index",
101 /* Exclude linker generated symbols which vary between passes */
102 "_SDA_BASE_", /* ppc */
103 "_SDA2_BASE_", /* ppc */
104 NULL
105 };
106
107 static const char * const ignored_prefixes[] = {
Masahiro Yamada97261e12019-11-24 01:04:40 +0900108 "$", /* local symbols for ARM, MIPS, etc. */
109 ".LASANPC", /* s390 kasan local symbols */
Masahiro Yamadaa41333e2019-11-24 01:04:39 +0900110 "__crc_", /* modversions */
111 "__efistub_", /* arm64 EFI stub namespace */
112 NULL
113 };
114
115 static const char * const ignored_suffixes[] = {
116 "_from_arm", /* arm */
117 "_from_thumb", /* arm */
118 "_veneer", /* arm */
119 NULL
120 };
121
122 const char * const *p;
123
124 /* Exclude symbols which vary between passes. */
125 for (p = ignored_symbols; *p; p++)
126 if (!strcmp(name, *p))
127 return true;
128
129 for (p = ignored_prefixes; *p; p++)
130 if (!strncmp(name, *p, strlen(*p)))
131 return true;
132
133 for (p = ignored_suffixes; *p; p++) {
134 int l = strlen(name) - strlen(*p);
135
136 if (l >= 0 && !strcmp(name + l, *p))
137 return true;
138 }
139
Masahiro Yamada887df762019-11-24 01:04:41 +0900140 if (type == 'U' || type == 'u')
141 return true;
142 /* exclude debugging symbols */
143 if (type == 'N' || type == 'n')
144 return true;
145
146 if (toupper(type) == 'A') {
147 /* Keep these useful absolute symbols */
148 if (strcmp(name, "__kernel_syscall_via_break") &&
149 strcmp(name, "__kernel_syscall_via_epc") &&
150 strcmp(name, "__kernel_sigtramp") &&
151 strcmp(name, "__gp"))
152 return true;
153 }
154
Masahiro Yamadaa41333e2019-11-24 01:04:39 +0900155 return false;
156}
157
Masahiro Yamadab6233d02019-11-24 01:04:42 +0900158static void check_symbol_range(const char *sym, unsigned long long addr,
159 struct addr_range *ranges, int entries)
Mike Frysinger17b1f0d2009-06-08 19:12:13 -0400160{
161 size_t i;
Kees Cook78eb7152014-03-17 13:18:27 +1030162 struct addr_range *ar;
Mike Frysinger17b1f0d2009-06-08 19:12:13 -0400163
Kees Cook78eb7152014-03-17 13:18:27 +1030164 for (i = 0; i < entries; ++i) {
165 ar = &ranges[i];
Mike Frysinger17b1f0d2009-06-08 19:12:13 -0400166
Kees Cook78eb7152014-03-17 13:18:27 +1030167 if (strcmp(sym, ar->start_sym) == 0) {
168 ar->start = addr;
Masahiro Yamadab6233d02019-11-24 01:04:42 +0900169 return;
Kees Cook78eb7152014-03-17 13:18:27 +1030170 } else if (strcmp(sym, ar->end_sym) == 0) {
171 ar->end = addr;
Masahiro Yamadab6233d02019-11-24 01:04:42 +0900172 return;
Mike Frysinger17b1f0d2009-06-08 19:12:13 -0400173 }
174 }
Mike Frysinger17b1f0d2009-06-08 19:12:13 -0400175}
176
Paulo Marquesb3dbb4e2005-09-06 15:16:31 -0700177static int read_symbol(FILE *in, struct sym_entry *s)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700178{
Masahiro Yamada534c9f22018-05-09 16:23:47 +0900179 char sym[500], stype;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700180 int rc;
181
Masahiro Yamada534c9f22018-05-09 16:23:47 +0900182 rc = fscanf(in, "%llx %c %499s\n", &s->addr, &stype, sym);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700183 if (rc != 3) {
Masahiro Yamada534c9f22018-05-09 16:23:47 +0900184 if (rc != EOF && fgets(sym, 500, in) == NULL)
Jean Sacrenef894872010-09-10 23:13:33 -0600185 fprintf(stderr, "Read error or end of file.\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700186 return -1;
187 }
Eugene Loh6db29832019-01-17 14:46:00 -0800188 if (strlen(sym) >= KSYM_NAME_LEN) {
189 fprintf(stderr, "Symbol %s too long for kallsyms (%zu >= %d).\n"
Masahiro Yamadabb66fc62014-06-10 19:08:13 +0900190 "Please increase KSYM_NAME_LEN both in kernel and kallsyms.c\n",
Masahiro Yamada534c9f22018-05-09 16:23:47 +0900191 sym, strlen(sym), KSYM_NAME_LEN);
Andi Kleenf3462aa2013-10-23 15:07:53 +0200192 return -1;
193 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700194
Masahiro Yamadaa41333e2019-11-24 01:04:39 +0900195 if (is_ignored_symbol(sym, stype))
196 return -1;
197
Linus Torvalds1da177e2005-04-16 15:20:36 -0700198 /* Ignore most absolute/undefined (?) symbols. */
Eric W. Biedermanfd593d12006-12-07 02:14:04 +0100199 if (strcmp(sym, "_text") == 0)
200 _text = s->addr;
Masahiro Yamadab6233d02019-11-24 01:04:42 +0900201
202 check_symbol_range(sym, s->addr, text_ranges, ARRAY_SIZE(text_ranges));
Masahiro Yamadad44270f2019-11-24 01:04:43 +0900203 check_symbol_range(sym, s->addr, &percpu_range, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700204
205 /* include the type field in the symbol name, so that it gets
206 * compressed together */
Masahiro Yamada534c9f22018-05-09 16:23:47 +0900207 s->len = strlen(sym) + 1;
Paulo Marquesb3dbb4e2005-09-06 15:16:31 -0700208 s->sym = malloc(s->len + 1);
Jesper Juhlf1a136e2006-03-25 03:07:46 -0800209 if (!s->sym) {
210 fprintf(stderr, "kallsyms failure: "
211 "unable to allocate required amount of memory\n");
212 exit(EXIT_FAILURE);
213 }
Masahiro Yamada29e55ad2019-11-24 01:04:35 +0900214 strcpy(sym_name(s), sym);
Paulo Marquesb3dbb4e2005-09-06 15:16:31 -0700215 s->sym[0] = stype;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700216
Ard Biesheuvel8c996942016-03-15 14:58:15 -0700217 s->percpu_absolute = 0;
218
Linus Torvalds1da177e2005-04-16 15:20:36 -0700219 return 0;
220}
221
Masahiro Yamada4bfe2b72019-11-24 01:04:38 +0900222static int symbol_in_range(const struct sym_entry *s,
223 const struct addr_range *ranges, int entries)
Mike Frysinger17b1f0d2009-06-08 19:12:13 -0400224{
225 size_t i;
Masahiro Yamada4bfe2b72019-11-24 01:04:38 +0900226 const struct addr_range *ar;
Mike Frysinger17b1f0d2009-06-08 19:12:13 -0400227
Kees Cook78eb7152014-03-17 13:18:27 +1030228 for (i = 0; i < entries; ++i) {
229 ar = &ranges[i];
Mike Frysinger17b1f0d2009-06-08 19:12:13 -0400230
Kees Cook78eb7152014-03-17 13:18:27 +1030231 if (s->addr >= ar->start && s->addr <= ar->end)
Mike Frysingerac6ca5c2009-06-15 07:52:48 -0400232 return 1;
Mike Frysinger17b1f0d2009-06-08 19:12:13 -0400233 }
234
Mike Frysingerac6ca5c2009-06-15 07:52:48 -0400235 return 0;
Mike Frysinger17b1f0d2009-06-08 19:12:13 -0400236}
237
Masahiro Yamada4bfe2b72019-11-24 01:04:38 +0900238static int symbol_valid(const struct sym_entry *s)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700239{
Masahiro Yamada29e55ad2019-11-24 01:04:35 +0900240 const char *name = sym_name(s);
Ard Biesheuvelbd8b22d2015-03-30 15:20:31 +0200241
Linus Torvalds1da177e2005-04-16 15:20:36 -0700242 /* if --all-symbols is not specified, then symbols outside the text
243 * and inittext sections are discarded */
244 if (!all_symbols) {
Kees Cook78eb7152014-03-17 13:18:27 +1030245 if (symbol_in_range(s, text_ranges,
246 ARRAY_SIZE(text_ranges)) == 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700247 return 0;
248 /* Corner case. Discard any symbols with the same value as
Robin Getza3b81112008-02-06 01:36:26 -0800249 * _etext _einittext; they can move between pass 1 and 2 when
250 * the kallsyms data are added. If these symbols move then
251 * they may get dropped in pass 2, which breaks the kallsyms
252 * rules.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700253 */
Mike Frysinger17b1f0d2009-06-08 19:12:13 -0400254 if ((s->addr == text_range_text->end &&
Masahiro Yamada29e55ad2019-11-24 01:04:35 +0900255 strcmp(name, text_range_text->end_sym)) ||
Mike Frysinger17b1f0d2009-06-08 19:12:13 -0400256 (s->addr == text_range_inittext->end &&
Masahiro Yamada29e55ad2019-11-24 01:04:35 +0900257 strcmp(name, text_range_inittext->end_sym)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700258 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
Masahiro Yamada4bfe2b72019-11-24 01:04:38 +0900306static void output_label(const char *label)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700307{
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
Masahiro Yamadafd2ab2f2019-12-09 12:51:48 +0900313/* Provide proper symbols relocatability by their '_text' relativeness. */
314static void output_address(unsigned long long addr)
315{
316 if (_text <= addr)
317 printf("\tPTR\t_text + %#llx\n", addr - _text);
318 else
319 printf("\tPTR\t_text - %#llx\n", _text - addr);
320}
321
Linus Torvalds1da177e2005-04-16 15:20:36 -0700322/* uncompress a compressed symbol. When this function is called, the best table
323 * might still be compressed itself, so the function needs to be recursive */
Masahiro Yamada4bfe2b72019-11-24 01:04:38 +0900324static int expand_symbol(const unsigned char *data, int len, char *result)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700325{
326 int c, rlen, total=0;
327
328 while (len) {
329 c = *data;
330 /* if the table holds a single char that is the same as the one
331 * we are looking for, then end the search */
332 if (best_table[c][0]==c && best_table_len[c]==1) {
333 *result++ = c;
334 total++;
335 } else {
336 /* if not, recurse and expand */
337 rlen = expand_symbol(best_table[c], best_table_len[c], result);
338 total += rlen;
339 result += rlen;
340 }
341 data++;
342 len--;
343 }
344 *result=0;
345
346 return total;
347}
348
Masahiro Yamada4bfe2b72019-11-24 01:04:38 +0900349static int symbol_absolute(const struct sym_entry *s)
Kees Cook78eb7152014-03-17 13:18:27 +1030350{
Ard Biesheuvel8c996942016-03-15 14:58:15 -0700351 return s->percpu_absolute;
Kees Cook78eb7152014-03-17 13:18:27 +1030352}
353
Paulo Marquesb3dbb4e2005-09-06 15:16:31 -0700354static void write_src(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700355{
Paulo Marquesb3dbb4e2005-09-06 15:16:31 -0700356 unsigned int i, k, off;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700357 unsigned int best_idx[256];
358 unsigned int *markers;
Tejun Heo9281ace2007-07-17 04:03:51 -0700359 char buf[KSYM_NAME_LEN];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700360
Masahiro Yamada500193e2019-02-04 10:53:18 +0900361 printf("#include <asm/bitsperlong.h>\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700362 printf("#if BITS_PER_LONG == 64\n");
363 printf("#define PTR .quad\n");
Mathias Krause72d3ebb2018-12-30 13:36:00 +0100364 printf("#define ALGN .balign 8\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700365 printf("#else\n");
366 printf("#define PTR .long\n");
Mathias Krause72d3ebb2018-12-30 13:36:00 +0100367 printf("#define ALGN .balign 4\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700368 printf("#endif\n");
369
Jan Beulichaad09472006-12-08 02:35:57 -0800370 printf("\t.section .rodata, \"a\"\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700371
Ard Biesheuvel2213e9a2016-03-15 14:58:19 -0700372 if (!base_relative)
373 output_label("kallsyms_addresses");
374 else
375 output_label("kallsyms_offsets");
376
Paulo Marquesb3dbb4e2005-09-06 15:16:31 -0700377 for (i = 0; i < table_cnt; i++) {
Ard Biesheuvel2213e9a2016-03-15 14:58:19 -0700378 if (base_relative) {
Masahiro Yamadafd2ab2f2019-12-09 12:51:48 +0900379 /*
380 * Use the offset relative to the lowest value
381 * encountered of all relative symbols, and emit
382 * non-relocatable fixed offsets that will be fixed
383 * up at runtime.
384 */
385
Ard Biesheuvel2213e9a2016-03-15 14:58:19 -0700386 long long offset;
387 int overflow;
388
389 if (!absolute_percpu) {
390 offset = table[i].addr - relative_base;
391 overflow = (offset < 0 || offset > UINT_MAX);
392 } else if (symbol_absolute(&table[i])) {
393 offset = table[i].addr;
394 overflow = (offset < 0 || offset > INT_MAX);
395 } else {
396 offset = relative_base - table[i].addr - 1;
397 overflow = (offset < INT_MIN || offset >= 0);
398 }
399 if (overflow) {
400 fprintf(stderr, "kallsyms failure: "
401 "%s symbol value %#llx out of range in relative mode\n",
402 symbol_absolute(&table[i]) ? "absolute" : "relative",
403 table[i].addr);
404 exit(EXIT_FAILURE);
405 }
406 printf("\t.long\t%#x\n", (int)offset);
407 } else if (!symbol_absolute(&table[i])) {
Masahiro Yamadafd2ab2f2019-12-09 12:51:48 +0900408 output_address(table[i].addr);
Eric W. Biedermanfd593d12006-12-07 02:14:04 +0100409 } else {
410 printf("\tPTR\t%#llx\n", table[i].addr);
411 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700412 }
413 printf("\n");
414
Ard Biesheuvel2213e9a2016-03-15 14:58:19 -0700415 if (base_relative) {
416 output_label("kallsyms_relative_base");
Masahiro Yamadafd2ab2f2019-12-09 12:51:48 +0900417 output_address(relative_base);
Ard Biesheuvel2213e9a2016-03-15 14:58:19 -0700418 printf("\n");
419 }
420
Linus Torvalds1da177e2005-04-16 15:20:36 -0700421 output_label("kallsyms_num_syms");
Jan Beulich80ffbaa2018-09-03 06:09:34 -0600422 printf("\t.long\t%u\n", table_cnt);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700423 printf("\n");
424
425 /* table of offset markers, that give the offset in the compressed stream
426 * every 256 symbols */
Jesper Juhlf1a136e2006-03-25 03:07:46 -0800427 markers = malloc(sizeof(unsigned int) * ((table_cnt + 255) / 256));
428 if (!markers) {
429 fprintf(stderr, "kallsyms failure: "
430 "unable to allocate required memory\n");
431 exit(EXIT_FAILURE);
432 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700433
434 output_label("kallsyms_names");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700435 off = 0;
Paulo Marquesb3dbb4e2005-09-06 15:16:31 -0700436 for (i = 0; i < table_cnt; i++) {
437 if ((i & 0xFF) == 0)
438 markers[i >> 8] = off;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700439
440 printf("\t.byte 0x%02x", table[i].len);
441 for (k = 0; k < table[i].len; k++)
442 printf(", 0x%02x", table[i].sym[k]);
443 printf("\n");
444
445 off += table[i].len + 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700446 }
447 printf("\n");
448
449 output_label("kallsyms_markers");
Paulo Marquesb3dbb4e2005-09-06 15:16:31 -0700450 for (i = 0; i < ((table_cnt + 255) >> 8); i++)
Jan Beulich80ffbaa2018-09-03 06:09:34 -0600451 printf("\t.long\t%u\n", markers[i]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700452 printf("\n");
453
454 free(markers);
455
456 output_label("kallsyms_token_table");
457 off = 0;
458 for (i = 0; i < 256; i++) {
459 best_idx[i] = off;
Paulo Marquesb3dbb4e2005-09-06 15:16:31 -0700460 expand_symbol(best_table[i], best_table_len[i], buf);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700461 printf("\t.asciz\t\"%s\"\n", buf);
462 off += strlen(buf) + 1;
463 }
464 printf("\n");
465
466 output_label("kallsyms_token_index");
467 for (i = 0; i < 256; i++)
468 printf("\t.short\t%d\n", best_idx[i]);
469 printf("\n");
470}
471
472
473/* table lookup compression functions */
474
Linus Torvalds1da177e2005-04-16 15:20:36 -0700475/* count all the possible tokens in a symbol */
Masahiro Yamada4bfe2b72019-11-24 01:04:38 +0900476static void learn_symbol(const unsigned char *symbol, int len)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700477{
478 int i;
479
480 for (i = 0; i < len - 1; i++)
Paulo Marquesb3dbb4e2005-09-06 15:16:31 -0700481 token_profit[ symbol[i] + (symbol[i + 1] << 8) ]++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700482}
483
484/* decrease the count for all the possible tokens in a symbol */
Masahiro Yamada4bfe2b72019-11-24 01:04:38 +0900485static void forget_symbol(const unsigned char *symbol, int len)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700486{
487 int i;
488
489 for (i = 0; i < len - 1; i++)
Paulo Marquesb3dbb4e2005-09-06 15:16:31 -0700490 token_profit[ symbol[i] + (symbol[i + 1] << 8) ]--;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700491}
492
Masahiro Yamada5e5c4fa2019-11-24 01:04:31 +0900493/* do the initial token count */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700494static void build_initial_tok_table(void)
495{
Masahiro Yamada5e5c4fa2019-11-24 01:04:31 +0900496 unsigned int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700497
Masahiro Yamada5e5c4fa2019-11-24 01:04:31 +0900498 for (i = 0; i < table_cnt; i++)
499 learn_symbol(table[i].sym, table[i].len);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700500}
501
Masahiro Yamada2558c132019-11-24 01:04:37 +0900502static unsigned char *find_token(unsigned char *str, int len,
Masahiro Yamada4bfe2b72019-11-24 01:04:38 +0900503 const unsigned char *token)
Paulo Marques7c5d2492007-06-20 18:09:00 +0100504{
505 int i;
506
507 for (i = 0; i < len - 1; i++) {
508 if (str[i] == token[0] && str[i+1] == token[1])
509 return &str[i];
510 }
511 return NULL;
512}
513
Linus Torvalds1da177e2005-04-16 15:20:36 -0700514/* replace a given token in all the valid symbols. Use the sampled symbols
515 * to update the counts */
Masahiro Yamada4bfe2b72019-11-24 01:04:38 +0900516static void compress_symbols(const unsigned char *str, int idx)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700517{
Paulo Marquesb3dbb4e2005-09-06 15:16:31 -0700518 unsigned int i, len, size;
519 unsigned char *p1, *p2;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700520
Paulo Marquesb3dbb4e2005-09-06 15:16:31 -0700521 for (i = 0; i < table_cnt; i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700522
523 len = table[i].len;
Paulo Marquesb3dbb4e2005-09-06 15:16:31 -0700524 p1 = table[i].sym;
525
526 /* find the token on the symbol */
Paulo Marques7c5d2492007-06-20 18:09:00 +0100527 p2 = find_token(p1, len, str);
Paulo Marquesb3dbb4e2005-09-06 15:16:31 -0700528 if (!p2) continue;
529
530 /* decrease the counts for this symbol's tokens */
531 forget_symbol(table[i].sym, len);
532
533 size = len;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700534
535 do {
Paulo Marquesb3dbb4e2005-09-06 15:16:31 -0700536 *p2 = idx;
537 p2++;
538 size -= (p2 - p1);
539 memmove(p2, p2 + 1, size);
540 p1 = p2;
541 len--;
542
543 if (size < 2) break;
544
Linus Torvalds1da177e2005-04-16 15:20:36 -0700545 /* find the token on the symbol */
Paulo Marques7c5d2492007-06-20 18:09:00 +0100546 p2 = find_token(p1, size, str);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700547
Paulo Marquesb3dbb4e2005-09-06 15:16:31 -0700548 } while (p2);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700549
Paulo Marquesb3dbb4e2005-09-06 15:16:31 -0700550 table[i].len = len;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700551
Paulo Marquesb3dbb4e2005-09-06 15:16:31 -0700552 /* increase the counts for this symbol's new tokens */
553 learn_symbol(table[i].sym, len);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700554 }
555}
556
557/* search the token with the maximum profit */
Paulo Marquesb3dbb4e2005-09-06 15:16:31 -0700558static int find_best_token(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700559{
Paulo Marquesb3dbb4e2005-09-06 15:16:31 -0700560 int i, best, bestprofit;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700561
562 bestprofit=-10000;
Paulo Marquesb3dbb4e2005-09-06 15:16:31 -0700563 best = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700564
Paulo Marquesb3dbb4e2005-09-06 15:16:31 -0700565 for (i = 0; i < 0x10000; i++) {
566 if (token_profit[i] > bestprofit) {
567 best = i;
568 bestprofit = token_profit[i];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700569 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700570 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700571 return best;
572}
573
574/* this is the core of the algorithm: calculate the "best" table */
575static void optimize_result(void)
576{
Paulo Marquesb3dbb4e2005-09-06 15:16:31 -0700577 int i, best;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700578
579 /* using the '\0' symbol last allows compress_symbols to use standard
580 * fast string functions */
581 for (i = 255; i >= 0; i--) {
582
583 /* if this table slot is empty (it is not used by an actual
584 * original char code */
585 if (!best_table_len[i]) {
586
Cao jincbf7a902018-02-27 16:16:19 +0800587 /* find the token with the best profit value */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700588 best = find_best_token();
Xiaochen Wange0a04b12011-05-01 11:41:41 +0800589 if (token_profit[best] == 0)
590 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700591
592 /* place it in the "best" table */
Paulo Marquesb3dbb4e2005-09-06 15:16:31 -0700593 best_table_len[i] = 2;
594 best_table[i][0] = best & 0xFF;
595 best_table[i][1] = (best >> 8) & 0xFF;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700596
597 /* replace this token in all the valid symbols */
Paulo Marquesb3dbb4e2005-09-06 15:16:31 -0700598 compress_symbols(best_table[i], i);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700599 }
600 }
601}
602
603/* start by placing the symbols that are actually used on the table */
604static void insert_real_symbols_in_table(void)
605{
Paulo Marquesb3dbb4e2005-09-06 15:16:31 -0700606 unsigned int i, j, c;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700607
Paulo Marquesb3dbb4e2005-09-06 15:16:31 -0700608 for (i = 0; i < table_cnt; i++) {
609 for (j = 0; j < table[i].len; j++) {
610 c = table[i].sym[j];
611 best_table[c][0]=c;
612 best_table_len[c]=1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700613 }
614 }
615}
616
617static void optimize_token_table(void)
618{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700619 build_initial_tok_table();
620
621 insert_real_symbols_in_table();
622
623 optimize_result();
624}
625
Lai Jiangshanb478b782009-03-13 15:10:26 +0800626/* guess for "linker script provide" symbol */
627static int may_be_linker_script_provide_symbol(const struct sym_entry *se)
628{
Masahiro Yamada29e55ad2019-11-24 01:04:35 +0900629 const char *symbol = sym_name(se);
Lai Jiangshanb478b782009-03-13 15:10:26 +0800630 int len = se->len - 1;
631
632 if (len < 8)
633 return 0;
634
635 if (symbol[0] != '_' || symbol[1] != '_')
636 return 0;
637
638 /* __start_XXXXX */
639 if (!memcmp(symbol + 2, "start_", 6))
640 return 1;
641
642 /* __stop_XXXXX */
643 if (!memcmp(symbol + 2, "stop_", 5))
644 return 1;
645
646 /* __end_XXXXX */
647 if (!memcmp(symbol + 2, "end_", 4))
648 return 1;
649
650 /* __XXXXX_start */
651 if (!memcmp(symbol + len - 6, "_start", 6))
652 return 1;
653
654 /* __XXXXX_end */
655 if (!memcmp(symbol + len - 4, "_end", 4))
656 return 1;
657
658 return 0;
659}
660
Paulo Marquesf2df3f62008-02-06 01:37:33 -0800661static int compare_symbols(const void *a, const void *b)
662{
663 const struct sym_entry *sa;
664 const struct sym_entry *sb;
665 int wa, wb;
666
667 sa = a;
668 sb = b;
669
670 /* sort by address first */
671 if (sa->addr > sb->addr)
672 return 1;
673 if (sa->addr < sb->addr)
674 return -1;
675
676 /* sort by "weakness" type */
677 wa = (sa->sym[0] == 'w') || (sa->sym[0] == 'W');
678 wb = (sb->sym[0] == 'w') || (sb->sym[0] == 'W');
679 if (wa != wb)
680 return wa - wb;
681
Lai Jiangshanb478b782009-03-13 15:10:26 +0800682 /* sort by "linker script provide" type */
683 wa = may_be_linker_script_provide_symbol(sa);
684 wb = may_be_linker_script_provide_symbol(sb);
685 if (wa != wb)
686 return wa - wb;
687
688 /* sort by the number of prefix underscores */
Masahiro Yamadaaa915242019-11-24 01:04:36 +0900689 wa = strspn(sym_name(sa), "_");
690 wb = strspn(sym_name(sb), "_");
Lai Jiangshanb478b782009-03-13 15:10:26 +0800691 if (wa != wb)
692 return wa - wb;
693
Paulo Marquesf2df3f62008-02-06 01:37:33 -0800694 /* sort by initial order, so that other symbols are left undisturbed */
695 return sa->start_pos - sb->start_pos;
696}
697
698static void sort_symbols(void)
699{
700 qsort(table, table_cnt, sizeof(struct sym_entry), compare_symbols);
701}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700702
Rusty Russellc6bda7c2014-03-17 14:05:46 +1030703static void make_percpus_absolute(void)
704{
705 unsigned int i;
706
707 for (i = 0; i < table_cnt; i++)
Ard Biesheuvel8c996942016-03-15 14:58:15 -0700708 if (symbol_in_range(&table[i], &percpu_range, 1)) {
709 /*
710 * Keep the 'A' override for percpu symbols to
711 * ensure consistent behavior compared to older
712 * versions of this tool.
713 */
Rusty Russellc6bda7c2014-03-17 14:05:46 +1030714 table[i].sym[0] = 'A';
Ard Biesheuvel8c996942016-03-15 14:58:15 -0700715 table[i].percpu_absolute = 1;
716 }
Rusty Russellc6bda7c2014-03-17 14:05:46 +1030717}
718
Ard Biesheuvel2213e9a2016-03-15 14:58:19 -0700719/* find the minimum non-absolute symbol address */
720static void record_relative_base(void)
721{
722 unsigned int i;
723
Ard Biesheuvel2213e9a2016-03-15 14:58:19 -0700724 for (i = 0; i < table_cnt; i++)
Masahiro Yamadaf34ea022019-11-24 01:04:32 +0900725 if (!symbol_absolute(&table[i])) {
726 /*
727 * The table is sorted by address.
728 * Take the first non-absolute symbol value.
729 */
Ard Biesheuvel2213e9a2016-03-15 14:58:19 -0700730 relative_base = table[i].addr;
Masahiro Yamadaf34ea022019-11-24 01:04:32 +0900731 return;
732 }
Ard Biesheuvel2213e9a2016-03-15 14:58:19 -0700733}
734
Paulo Marquesb3dbb4e2005-09-06 15:16:31 -0700735int main(int argc, char **argv)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700736{
Yoshinori Sato41f11a42005-05-01 08:59:06 -0700737 if (argc >= 2) {
738 int i;
739 for (i = 1; i < argc; i++) {
740 if(strcmp(argv[i], "--all-symbols") == 0)
741 all_symbols = 1;
Rusty Russellc6bda7c2014-03-17 14:05:46 +1030742 else if (strcmp(argv[i], "--absolute-percpu") == 0)
743 absolute_percpu = 1;
Masahiro Yamada534c9f22018-05-09 16:23:47 +0900744 else if (strcmp(argv[i], "--base-relative") == 0)
Ard Biesheuvel2213e9a2016-03-15 14:58:19 -0700745 base_relative = 1;
746 else
Yoshinori Sato41f11a42005-05-01 08:59:06 -0700747 usage();
748 }
749 } else if (argc != 1)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700750 usage();
751
752 read_map(stdin);
Masahiro Yamada5e5c4fa2019-11-24 01:04:31 +0900753 shrink_table();
Rusty Russellc6bda7c2014-03-17 14:05:46 +1030754 if (absolute_percpu)
755 make_percpus_absolute();
Masahiro Yamadaf34ea022019-11-24 01:04:32 +0900756 sort_symbols();
Ard Biesheuvel2213e9a2016-03-15 14:58:19 -0700757 if (base_relative)
758 record_relative_base();
Sam Ravnborg2ea03892009-01-14 21:38:20 +0100759 optimize_token_table();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700760 write_src();
761
762 return 0;
763}