blob: c9efb67c6ecb7616c78659c2a8e177ec75acd5ed [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
77/*
78 * This ignores the intensely annoying "mapping symbols" found
79 * in ARM ELF files: $a, $t and $d.
80 */
Masahiro Yamadaf43e9da2019-02-04 10:53:16 +090081static int is_arm_mapping_symbol(const char *str)
Linus Torvalds1da177e2005-04-16 15:20:36 -070082{
Kyle McMartin6c34f1f2014-09-16 22:37:18 +010083 return str[0] == '$' && strchr("axtd", str[1])
Linus Torvalds1da177e2005-04-16 15:20:36 -070084 && (str[2] == '\0' || str[2] == '.');
85}
86
Kees Cook78eb7152014-03-17 13:18:27 +103087static int check_symbol_range(const char *sym, unsigned long long addr,
88 struct addr_range *ranges, int entries)
Mike Frysinger17b1f0d2009-06-08 19:12:13 -040089{
90 size_t i;
Kees Cook78eb7152014-03-17 13:18:27 +103091 struct addr_range *ar;
Mike Frysinger17b1f0d2009-06-08 19:12:13 -040092
Kees Cook78eb7152014-03-17 13:18:27 +103093 for (i = 0; i < entries; ++i) {
94 ar = &ranges[i];
Mike Frysinger17b1f0d2009-06-08 19:12:13 -040095
Kees Cook78eb7152014-03-17 13:18:27 +103096 if (strcmp(sym, ar->start_sym) == 0) {
97 ar->start = addr;
Mike Frysinger17b1f0d2009-06-08 19:12:13 -040098 return 0;
Kees Cook78eb7152014-03-17 13:18:27 +103099 } else if (strcmp(sym, ar->end_sym) == 0) {
100 ar->end = addr;
Mike Frysinger17b1f0d2009-06-08 19:12:13 -0400101 return 0;
102 }
103 }
104
105 return 1;
106}
107
Paulo Marquesb3dbb4e2005-09-06 15:16:31 -0700108static int read_symbol(FILE *in, struct sym_entry *s)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700109{
Masahiro Yamada534c9f22018-05-09 16:23:47 +0900110 char sym[500], stype;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700111 int rc;
112
Masahiro Yamada534c9f22018-05-09 16:23:47 +0900113 rc = fscanf(in, "%llx %c %499s\n", &s->addr, &stype, sym);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700114 if (rc != 3) {
Masahiro Yamada534c9f22018-05-09 16:23:47 +0900115 if (rc != EOF && fgets(sym, 500, in) == NULL)
Jean Sacrenef894872010-09-10 23:13:33 -0600116 fprintf(stderr, "Read error or end of file.\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700117 return -1;
118 }
Eugene Loh6db29832019-01-17 14:46:00 -0800119 if (strlen(sym) >= KSYM_NAME_LEN) {
120 fprintf(stderr, "Symbol %s too long for kallsyms (%zu >= %d).\n"
Masahiro Yamadabb66fc62014-06-10 19:08:13 +0900121 "Please increase KSYM_NAME_LEN both in kernel and kallsyms.c\n",
Masahiro Yamada534c9f22018-05-09 16:23:47 +0900122 sym, strlen(sym), KSYM_NAME_LEN);
Andi Kleenf3462aa2013-10-23 15:07:53 +0200123 return -1;
124 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700125
126 /* Ignore most absolute/undefined (?) symbols. */
Eric W. Biedermanfd593d12006-12-07 02:14:04 +0100127 if (strcmp(sym, "_text") == 0)
128 _text = s->addr;
Kees Cook78eb7152014-03-17 13:18:27 +1030129 else if (check_symbol_range(sym, s->addr, text_ranges,
130 ARRAY_SIZE(text_ranges)) == 0)
Mike Frysinger17b1f0d2009-06-08 19:12:13 -0400131 /* nothing to do */;
Paulo Marquesb3dbb4e2005-09-06 15:16:31 -0700132 else if (toupper(stype) == 'A')
Linus Torvalds1da177e2005-04-16 15:20:36 -0700133 {
134 /* Keep these useful absolute symbols */
Yoshinori Sato41f11a42005-05-01 08:59:06 -0700135 if (strcmp(sym, "__kernel_syscall_via_break") &&
136 strcmp(sym, "__kernel_syscall_via_epc") &&
137 strcmp(sym, "__kernel_sigtramp") &&
138 strcmp(sym, "__gp"))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700139 return -1;
140
141 }
Paulo Marquesb3dbb4e2005-09-06 15:16:31 -0700142 else if (toupper(stype) == 'U' ||
Yoshinori Sato41f11a42005-05-01 08:59:06 -0700143 is_arm_mapping_symbol(sym))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700144 return -1;
Ralf Baechle6f00df22005-09-06 15:16:41 -0700145 /* exclude also MIPS ELF local symbols ($L123 instead of .L123) */
Masahiro Yamada534c9f22018-05-09 16:23:47 +0900146 else if (sym[0] == '$')
Ralf Baechle6f00df22005-09-06 15:16:41 -0700147 return -1;
Sam Ravnborgaab34ac2008-05-19 20:07:58 +0200148 /* exclude debugging symbols */
Guenter Roeck51962a92017-10-13 15:57:58 -0700149 else if (stype == 'N' || stype == 'n')
Sam Ravnborgaab34ac2008-05-19 20:07:58 +0200150 return -1;
Vasily Gorbik33177f012019-06-28 19:22:47 +0200151 /* exclude s390 kasan local symbols */
152 else if (!strncmp(sym, ".LASANPC", 8))
153 return -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700154
155 /* include the type field in the symbol name, so that it gets
156 * compressed together */
Masahiro Yamada534c9f22018-05-09 16:23:47 +0900157 s->len = strlen(sym) + 1;
Paulo Marquesb3dbb4e2005-09-06 15:16:31 -0700158 s->sym = malloc(s->len + 1);
Jesper Juhlf1a136e2006-03-25 03:07:46 -0800159 if (!s->sym) {
160 fprintf(stderr, "kallsyms failure: "
161 "unable to allocate required amount of memory\n");
162 exit(EXIT_FAILURE);
163 }
Masahiro Yamada534c9f22018-05-09 16:23:47 +0900164 strcpy((char *)s->sym + 1, sym);
Paulo Marquesb3dbb4e2005-09-06 15:16:31 -0700165 s->sym[0] = stype;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700166
Ard Biesheuvel8c996942016-03-15 14:58:15 -0700167 s->percpu_absolute = 0;
168
Rusty Russellc6bda7c2014-03-17 14:05:46 +1030169 /* Record if we've found __per_cpu_start/end. */
170 check_symbol_range(sym, s->addr, &percpu_range, 1);
171
Linus Torvalds1da177e2005-04-16 15:20:36 -0700172 return 0;
173}
174
Kees Cook78eb7152014-03-17 13:18:27 +1030175static int symbol_in_range(struct sym_entry *s, struct addr_range *ranges,
176 int entries)
Mike Frysinger17b1f0d2009-06-08 19:12:13 -0400177{
178 size_t i;
Kees Cook78eb7152014-03-17 13:18:27 +1030179 struct addr_range *ar;
Mike Frysinger17b1f0d2009-06-08 19:12:13 -0400180
Kees Cook78eb7152014-03-17 13:18:27 +1030181 for (i = 0; i < entries; ++i) {
182 ar = &ranges[i];
Mike Frysinger17b1f0d2009-06-08 19:12:13 -0400183
Kees Cook78eb7152014-03-17 13:18:27 +1030184 if (s->addr >= ar->start && s->addr <= ar->end)
Mike Frysingerac6ca5c2009-06-15 07:52:48 -0400185 return 1;
Mike Frysinger17b1f0d2009-06-08 19:12:13 -0400186 }
187
Mike Frysingerac6ca5c2009-06-15 07:52:48 -0400188 return 0;
Mike Frysinger17b1f0d2009-06-08 19:12:13 -0400189}
190
Paulo Marquesb3dbb4e2005-09-06 15:16:31 -0700191static int symbol_valid(struct sym_entry *s)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700192{
193 /* Symbols which vary between passes. Passes 1 and 2 must have
Sam Ravnborg2ea03892009-01-14 21:38:20 +0100194 * identical symbol lists. The kallsyms_* symbols below are only added
195 * after pass 1, they would be included in pass 2 when --all-symbols is
196 * specified so exclude them to get a stable symbol list.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700197 */
198 static char *special_symbols[] = {
Sam Ravnborg2ea03892009-01-14 21:38:20 +0100199 "kallsyms_addresses",
Ard Biesheuvel2213e9a2016-03-15 14:58:19 -0700200 "kallsyms_offsets",
201 "kallsyms_relative_base",
Sam Ravnborg2ea03892009-01-14 21:38:20 +0100202 "kallsyms_num_syms",
203 "kallsyms_names",
204 "kallsyms_markers",
205 "kallsyms_token_table",
206 "kallsyms_token_index",
207
Linus Torvalds1da177e2005-04-16 15:20:36 -0700208 /* Exclude linker generated symbols which vary between passes */
209 "_SDA_BASE_", /* ppc */
210 "_SDA2_BASE_", /* ppc */
211 NULL };
Ard Biesheuvelbd8b22d2015-03-30 15:20:31 +0200212
Ard Biesheuvel56067812017-02-03 09:54:05 +0000213 static char *special_prefixes[] = {
214 "__crc_", /* modversions */
Ard Biesheuvel1212f7a2018-03-01 17:19:01 +0000215 "__efistub_", /* arm64 EFI stub namespace */
Ard Biesheuvel56067812017-02-03 09:54:05 +0000216 NULL };
217
Ard Biesheuvelbd8b22d2015-03-30 15:20:31 +0200218 static char *special_suffixes[] = {
Ard Biesheuvelbd8b22d2015-03-30 15:20:31 +0200219 "_veneer", /* arm */
Ard Biesheuvelb9b74be2016-04-01 14:33:48 +0100220 "_from_arm", /* arm */
221 "_from_thumb", /* arm */
Ard Biesheuvelbd8b22d2015-03-30 15:20:31 +0200222 NULL };
223
Linus Torvalds1da177e2005-04-16 15:20:36 -0700224 int i;
Ard Biesheuvelbd8b22d2015-03-30 15:20:31 +0200225 char *sym_name = (char *)s->sym + 1;
226
Linus Torvalds1da177e2005-04-16 15:20:36 -0700227 /* if --all-symbols is not specified, then symbols outside the text
228 * and inittext sections are discarded */
229 if (!all_symbols) {
Kees Cook78eb7152014-03-17 13:18:27 +1030230 if (symbol_in_range(s, text_ranges,
231 ARRAY_SIZE(text_ranges)) == 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700232 return 0;
233 /* Corner case. Discard any symbols with the same value as
Robin Getza3b81112008-02-06 01:36:26 -0800234 * _etext _einittext; they can move between pass 1 and 2 when
235 * the kallsyms data are added. If these symbols move then
236 * they may get dropped in pass 2, which breaks the kallsyms
237 * rules.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700238 */
Mike Frysinger17b1f0d2009-06-08 19:12:13 -0400239 if ((s->addr == text_range_text->end &&
Ard Biesheuvelbd8b22d2015-03-30 15:20:31 +0200240 strcmp(sym_name,
Kees Cook78eb7152014-03-17 13:18:27 +1030241 text_range_text->end_sym)) ||
Mike Frysinger17b1f0d2009-06-08 19:12:13 -0400242 (s->addr == text_range_inittext->end &&
Ard Biesheuvelbd8b22d2015-03-30 15:20:31 +0200243 strcmp(sym_name,
Kees Cook78eb7152014-03-17 13:18:27 +1030244 text_range_inittext->end_sym)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700245 return 0;
246 }
247
248 /* Exclude symbols which vary between passes. */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700249 for (i = 0; special_symbols[i]; i++)
Ard Biesheuvelbd8b22d2015-03-30 15:20:31 +0200250 if (strcmp(sym_name, special_symbols[i]) == 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700251 return 0;
252
Ard Biesheuvel56067812017-02-03 09:54:05 +0000253 for (i = 0; special_prefixes[i]; i++) {
254 int l = strlen(special_prefixes[i]);
255
256 if (l <= strlen(sym_name) &&
257 strncmp(sym_name, special_prefixes[i], l) == 0)
258 return 0;
259 }
260
Ard Biesheuvelbd8b22d2015-03-30 15:20:31 +0200261 for (i = 0; special_suffixes[i]; i++) {
262 int l = strlen(sym_name) - strlen(special_suffixes[i]);
263
264 if (l >= 0 && strcmp(sym_name + l, special_suffixes[i]) == 0)
265 return 0;
266 }
267
Linus Torvalds1da177e2005-04-16 15:20:36 -0700268 return 1;
269}
270
Masahiro Yamada5e5c4fa2019-11-24 01:04:31 +0900271/* remove all the invalid symbols from the table */
272static void shrink_table(void)
273{
274 unsigned int i, pos;
275
276 pos = 0;
277 for (i = 0; i < table_cnt; i++) {
278 if (symbol_valid(&table[i])) {
279 if (pos != i)
280 table[pos] = table[i];
281 pos++;
282 } else {
283 free(table[i].sym);
284 }
285 }
286 table_cnt = pos;
287
288 /* When valid symbol is not registered, exit to error */
289 if (!table_cnt) {
290 fprintf(stderr, "No valid symbol.\n");
291 exit(1);
292 }
293}
294
Paulo Marquesb3dbb4e2005-09-06 15:16:31 -0700295static void read_map(FILE *in)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700296{
297 while (!feof(in)) {
Paulo Marquesb3dbb4e2005-09-06 15:16:31 -0700298 if (table_cnt >= table_size) {
299 table_size += 10000;
300 table = realloc(table, sizeof(*table) * table_size);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700301 if (!table) {
302 fprintf(stderr, "out of memory\n");
303 exit (1);
304 }
305 }
Paulo Marquesf2df3f62008-02-06 01:37:33 -0800306 if (read_symbol(in, &table[table_cnt]) == 0) {
307 table[table_cnt].start_pos = table_cnt;
Paulo Marquesb3dbb4e2005-09-06 15:16:31 -0700308 table_cnt++;
Paulo Marquesf2df3f62008-02-06 01:37:33 -0800309 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700310 }
311}
312
313static void output_label(char *label)
314{
Masahiro Yamada534c9f22018-05-09 16:23:47 +0900315 printf(".globl %s\n", label);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700316 printf("\tALGN\n");
Masahiro Yamada534c9f22018-05-09 16:23:47 +0900317 printf("%s:\n", label);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700318}
319
320/* uncompress a compressed symbol. When this function is called, the best table
321 * might still be compressed itself, so the function needs to be recursive */
322static int expand_symbol(unsigned char *data, int len, char *result)
323{
324 int c, rlen, total=0;
325
326 while (len) {
327 c = *data;
328 /* if the table holds a single char that is the same as the one
329 * we are looking for, then end the search */
330 if (best_table[c][0]==c && best_table_len[c]==1) {
331 *result++ = c;
332 total++;
333 } else {
334 /* if not, recurse and expand */
335 rlen = expand_symbol(best_table[c], best_table_len[c], result);
336 total += rlen;
337 result += rlen;
338 }
339 data++;
340 len--;
341 }
342 *result=0;
343
344 return total;
345}
346
Kees Cook78eb7152014-03-17 13:18:27 +1030347static int symbol_absolute(struct sym_entry *s)
348{
Ard Biesheuvel8c996942016-03-15 14:58:15 -0700349 return s->percpu_absolute;
Kees Cook78eb7152014-03-17 13:18:27 +1030350}
351
Paulo Marquesb3dbb4e2005-09-06 15:16:31 -0700352static void write_src(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700353{
Paulo Marquesb3dbb4e2005-09-06 15:16:31 -0700354 unsigned int i, k, off;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700355 unsigned int best_idx[256];
356 unsigned int *markers;
Tejun Heo9281ace2007-07-17 04:03:51 -0700357 char buf[KSYM_NAME_LEN];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700358
Masahiro Yamada500193e2019-02-04 10:53:18 +0900359 printf("#include <asm/bitsperlong.h>\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700360 printf("#if BITS_PER_LONG == 64\n");
361 printf("#define PTR .quad\n");
Mathias Krause72d3ebb2018-12-30 13:36:00 +0100362 printf("#define ALGN .balign 8\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700363 printf("#else\n");
364 printf("#define PTR .long\n");
Mathias Krause72d3ebb2018-12-30 13:36:00 +0100365 printf("#define ALGN .balign 4\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700366 printf("#endif\n");
367
Jan Beulichaad09472006-12-08 02:35:57 -0800368 printf("\t.section .rodata, \"a\"\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700369
Ard Biesheuvel2213e9a2016-03-15 14:58:19 -0700370 /* Provide proper symbols relocatability by their relativeness
371 * to a fixed anchor point in the runtime image, either '_text'
372 * for absolute address tables, in which case the linker will
373 * emit the final addresses at build time. Otherwise, use the
374 * offset relative to the lowest value encountered of all relative
375 * symbols, and emit non-relocatable fixed offsets that will be fixed
376 * up at runtime.
377 *
378 * The symbol names cannot be used to construct normal symbol
379 * references as the list of symbols contains symbols that are
380 * declared static and are private to their .o files. This prevents
381 * .tmp_kallsyms.o or any other object from referencing them.
Eric W. Biedermanfd593d12006-12-07 02:14:04 +0100382 */
Ard Biesheuvel2213e9a2016-03-15 14:58:19 -0700383 if (!base_relative)
384 output_label("kallsyms_addresses");
385 else
386 output_label("kallsyms_offsets");
387
Paulo Marquesb3dbb4e2005-09-06 15:16:31 -0700388 for (i = 0; i < table_cnt; i++) {
Ard Biesheuvel2213e9a2016-03-15 14:58:19 -0700389 if (base_relative) {
390 long long offset;
391 int overflow;
392
393 if (!absolute_percpu) {
394 offset = table[i].addr - relative_base;
395 overflow = (offset < 0 || offset > UINT_MAX);
396 } else if (symbol_absolute(&table[i])) {
397 offset = table[i].addr;
398 overflow = (offset < 0 || offset > INT_MAX);
399 } else {
400 offset = relative_base - table[i].addr - 1;
401 overflow = (offset < INT_MIN || offset >= 0);
402 }
403 if (overflow) {
404 fprintf(stderr, "kallsyms failure: "
405 "%s symbol value %#llx out of range in relative mode\n",
406 symbol_absolute(&table[i]) ? "absolute" : "relative",
407 table[i].addr);
408 exit(EXIT_FAILURE);
409 }
410 printf("\t.long\t%#x\n", (int)offset);
411 } else if (!symbol_absolute(&table[i])) {
Vivek Goyal2c22d8b2006-12-07 02:14:10 +0100412 if (_text <= table[i].addr)
413 printf("\tPTR\t_text + %#llx\n",
414 table[i].addr - _text);
415 else
Andrew Morton2930ffc2014-03-10 15:49:48 -0700416 printf("\tPTR\t_text - %#llx\n",
417 _text - table[i].addr);
Eric W. Biedermanfd593d12006-12-07 02:14:04 +0100418 } else {
419 printf("\tPTR\t%#llx\n", table[i].addr);
420 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700421 }
422 printf("\n");
423
Ard Biesheuvel2213e9a2016-03-15 14:58:19 -0700424 if (base_relative) {
425 output_label("kallsyms_relative_base");
426 printf("\tPTR\t_text - %#llx\n", _text - relative_base);
427 printf("\n");
428 }
429
Linus Torvalds1da177e2005-04-16 15:20:36 -0700430 output_label("kallsyms_num_syms");
Jan Beulich80ffbaa2018-09-03 06:09:34 -0600431 printf("\t.long\t%u\n", table_cnt);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700432 printf("\n");
433
434 /* table of offset markers, that give the offset in the compressed stream
435 * every 256 symbols */
Jesper Juhlf1a136e2006-03-25 03:07:46 -0800436 markers = malloc(sizeof(unsigned int) * ((table_cnt + 255) / 256));
437 if (!markers) {
438 fprintf(stderr, "kallsyms failure: "
439 "unable to allocate required memory\n");
440 exit(EXIT_FAILURE);
441 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700442
443 output_label("kallsyms_names");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700444 off = 0;
Paulo Marquesb3dbb4e2005-09-06 15:16:31 -0700445 for (i = 0; i < table_cnt; i++) {
446 if ((i & 0xFF) == 0)
447 markers[i >> 8] = off;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700448
449 printf("\t.byte 0x%02x", table[i].len);
450 for (k = 0; k < table[i].len; k++)
451 printf(", 0x%02x", table[i].sym[k]);
452 printf("\n");
453
454 off += table[i].len + 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700455 }
456 printf("\n");
457
458 output_label("kallsyms_markers");
Paulo Marquesb3dbb4e2005-09-06 15:16:31 -0700459 for (i = 0; i < ((table_cnt + 255) >> 8); i++)
Jan Beulich80ffbaa2018-09-03 06:09:34 -0600460 printf("\t.long\t%u\n", markers[i]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700461 printf("\n");
462
463 free(markers);
464
465 output_label("kallsyms_token_table");
466 off = 0;
467 for (i = 0; i < 256; i++) {
468 best_idx[i] = off;
Paulo Marquesb3dbb4e2005-09-06 15:16:31 -0700469 expand_symbol(best_table[i], best_table_len[i], buf);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700470 printf("\t.asciz\t\"%s\"\n", buf);
471 off += strlen(buf) + 1;
472 }
473 printf("\n");
474
475 output_label("kallsyms_token_index");
476 for (i = 0; i < 256; i++)
477 printf("\t.short\t%d\n", best_idx[i]);
478 printf("\n");
479}
480
481
482/* table lookup compression functions */
483
Linus Torvalds1da177e2005-04-16 15:20:36 -0700484/* count all the possible tokens in a symbol */
485static void learn_symbol(unsigned char *symbol, int len)
486{
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
493/* decrease the count for all the possible tokens in a symbol */
494static void forget_symbol(unsigned char *symbol, int len)
495{
496 int i;
497
498 for (i = 0; i < len - 1; i++)
Paulo Marquesb3dbb4e2005-09-06 15:16:31 -0700499 token_profit[ symbol[i] + (symbol[i + 1] << 8) ]--;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700500}
501
Masahiro Yamada5e5c4fa2019-11-24 01:04:31 +0900502/* do the initial token count */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700503static void build_initial_tok_table(void)
504{
Masahiro Yamada5e5c4fa2019-11-24 01:04:31 +0900505 unsigned int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700506
Masahiro Yamada5e5c4fa2019-11-24 01:04:31 +0900507 for (i = 0; i < table_cnt; i++)
508 learn_symbol(table[i].sym, table[i].len);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700509}
510
Paulo Marques7c5d2492007-06-20 18:09:00 +0100511static void *find_token(unsigned char *str, int len, unsigned char *token)
512{
513 int i;
514
515 for (i = 0; i < len - 1; i++) {
516 if (str[i] == token[0] && str[i+1] == token[1])
517 return &str[i];
518 }
519 return NULL;
520}
521
Linus Torvalds1da177e2005-04-16 15:20:36 -0700522/* replace a given token in all the valid symbols. Use the sampled symbols
523 * to update the counts */
Paulo Marquesb3dbb4e2005-09-06 15:16:31 -0700524static void compress_symbols(unsigned char *str, int idx)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700525{
Paulo Marquesb3dbb4e2005-09-06 15:16:31 -0700526 unsigned int i, len, size;
527 unsigned char *p1, *p2;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700528
Paulo Marquesb3dbb4e2005-09-06 15:16:31 -0700529 for (i = 0; i < table_cnt; i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700530
531 len = table[i].len;
Paulo Marquesb3dbb4e2005-09-06 15:16:31 -0700532 p1 = table[i].sym;
533
534 /* find the token on the symbol */
Paulo Marques7c5d2492007-06-20 18:09:00 +0100535 p2 = find_token(p1, len, str);
Paulo Marquesb3dbb4e2005-09-06 15:16:31 -0700536 if (!p2) continue;
537
538 /* decrease the counts for this symbol's tokens */
539 forget_symbol(table[i].sym, len);
540
541 size = len;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700542
543 do {
Paulo Marquesb3dbb4e2005-09-06 15:16:31 -0700544 *p2 = idx;
545 p2++;
546 size -= (p2 - p1);
547 memmove(p2, p2 + 1, size);
548 p1 = p2;
549 len--;
550
551 if (size < 2) break;
552
Linus Torvalds1da177e2005-04-16 15:20:36 -0700553 /* find the token on the symbol */
Paulo Marques7c5d2492007-06-20 18:09:00 +0100554 p2 = find_token(p1, size, str);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700555
Paulo Marquesb3dbb4e2005-09-06 15:16:31 -0700556 } while (p2);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700557
Paulo Marquesb3dbb4e2005-09-06 15:16:31 -0700558 table[i].len = len;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700559
Paulo Marquesb3dbb4e2005-09-06 15:16:31 -0700560 /* increase the counts for this symbol's new tokens */
561 learn_symbol(table[i].sym, len);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700562 }
563}
564
565/* search the token with the maximum profit */
Paulo Marquesb3dbb4e2005-09-06 15:16:31 -0700566static int find_best_token(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700567{
Paulo Marquesb3dbb4e2005-09-06 15:16:31 -0700568 int i, best, bestprofit;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700569
570 bestprofit=-10000;
Paulo Marquesb3dbb4e2005-09-06 15:16:31 -0700571 best = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700572
Paulo Marquesb3dbb4e2005-09-06 15:16:31 -0700573 for (i = 0; i < 0x10000; i++) {
574 if (token_profit[i] > bestprofit) {
575 best = i;
576 bestprofit = token_profit[i];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700577 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700578 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700579 return best;
580}
581
582/* this is the core of the algorithm: calculate the "best" table */
583static void optimize_result(void)
584{
Paulo Marquesb3dbb4e2005-09-06 15:16:31 -0700585 int i, best;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700586
587 /* using the '\0' symbol last allows compress_symbols to use standard
588 * fast string functions */
589 for (i = 255; i >= 0; i--) {
590
591 /* if this table slot is empty (it is not used by an actual
592 * original char code */
593 if (!best_table_len[i]) {
594
Cao jincbf7a902018-02-27 16:16:19 +0800595 /* find the token with the best profit value */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700596 best = find_best_token();
Xiaochen Wange0a04b12011-05-01 11:41:41 +0800597 if (token_profit[best] == 0)
598 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700599
600 /* place it in the "best" table */
Paulo Marquesb3dbb4e2005-09-06 15:16:31 -0700601 best_table_len[i] = 2;
602 best_table[i][0] = best & 0xFF;
603 best_table[i][1] = (best >> 8) & 0xFF;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700604
605 /* replace this token in all the valid symbols */
Paulo Marquesb3dbb4e2005-09-06 15:16:31 -0700606 compress_symbols(best_table[i], i);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700607 }
608 }
609}
610
611/* start by placing the symbols that are actually used on the table */
612static void insert_real_symbols_in_table(void)
613{
Paulo Marquesb3dbb4e2005-09-06 15:16:31 -0700614 unsigned int i, j, c;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700615
Paulo Marquesb3dbb4e2005-09-06 15:16:31 -0700616 for (i = 0; i < table_cnt; i++) {
617 for (j = 0; j < table[i].len; j++) {
618 c = table[i].sym[j];
619 best_table[c][0]=c;
620 best_table_len[c]=1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700621 }
622 }
623}
624
625static void optimize_token_table(void)
626{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700627 build_initial_tok_table();
628
629 insert_real_symbols_in_table();
630
631 optimize_result();
632}
633
Lai Jiangshanb478b782009-03-13 15:10:26 +0800634/* guess for "linker script provide" symbol */
635static int may_be_linker_script_provide_symbol(const struct sym_entry *se)
636{
637 const char *symbol = (char *)se->sym + 1;
638 int len = se->len - 1;
639
640 if (len < 8)
641 return 0;
642
643 if (symbol[0] != '_' || symbol[1] != '_')
644 return 0;
645
646 /* __start_XXXXX */
647 if (!memcmp(symbol + 2, "start_", 6))
648 return 1;
649
650 /* __stop_XXXXX */
651 if (!memcmp(symbol + 2, "stop_", 5))
652 return 1;
653
654 /* __end_XXXXX */
655 if (!memcmp(symbol + 2, "end_", 4))
656 return 1;
657
658 /* __XXXXX_start */
659 if (!memcmp(symbol + len - 6, "_start", 6))
660 return 1;
661
662 /* __XXXXX_end */
663 if (!memcmp(symbol + len - 4, "_end", 4))
664 return 1;
665
666 return 0;
667}
668
669static int prefix_underscores_count(const char *str)
670{
671 const char *tail = str;
672
Paul Mundta9ece532009-09-22 16:44:12 -0700673 while (*tail == '_')
Lai Jiangshanb478b782009-03-13 15:10:26 +0800674 tail++;
675
676 return tail - str;
677}
678
Paulo Marquesf2df3f62008-02-06 01:37:33 -0800679static int compare_symbols(const void *a, const void *b)
680{
681 const struct sym_entry *sa;
682 const struct sym_entry *sb;
683 int wa, wb;
684
685 sa = a;
686 sb = b;
687
688 /* sort by address first */
689 if (sa->addr > sb->addr)
690 return 1;
691 if (sa->addr < sb->addr)
692 return -1;
693
694 /* sort by "weakness" type */
695 wa = (sa->sym[0] == 'w') || (sa->sym[0] == 'W');
696 wb = (sb->sym[0] == 'w') || (sb->sym[0] == 'W');
697 if (wa != wb)
698 return wa - wb;
699
Lai Jiangshanb478b782009-03-13 15:10:26 +0800700 /* sort by "linker script provide" type */
701 wa = may_be_linker_script_provide_symbol(sa);
702 wb = may_be_linker_script_provide_symbol(sb);
703 if (wa != wb)
704 return wa - wb;
705
706 /* sort by the number of prefix underscores */
707 wa = prefix_underscores_count((const char *)sa->sym + 1);
708 wb = prefix_underscores_count((const char *)sb->sym + 1);
709 if (wa != wb)
710 return wa - wb;
711
Paulo Marquesf2df3f62008-02-06 01:37:33 -0800712 /* sort by initial order, so that other symbols are left undisturbed */
713 return sa->start_pos - sb->start_pos;
714}
715
716static void sort_symbols(void)
717{
718 qsort(table, table_cnt, sizeof(struct sym_entry), compare_symbols);
719}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700720
Rusty Russellc6bda7c2014-03-17 14:05:46 +1030721static void make_percpus_absolute(void)
722{
723 unsigned int i;
724
725 for (i = 0; i < table_cnt; i++)
Ard Biesheuvel8c996942016-03-15 14:58:15 -0700726 if (symbol_in_range(&table[i], &percpu_range, 1)) {
727 /*
728 * Keep the 'A' override for percpu symbols to
729 * ensure consistent behavior compared to older
730 * versions of this tool.
731 */
Rusty Russellc6bda7c2014-03-17 14:05:46 +1030732 table[i].sym[0] = 'A';
Ard Biesheuvel8c996942016-03-15 14:58:15 -0700733 table[i].percpu_absolute = 1;
734 }
Rusty Russellc6bda7c2014-03-17 14:05:46 +1030735}
736
Ard Biesheuvel2213e9a2016-03-15 14:58:19 -0700737/* find the minimum non-absolute symbol address */
738static void record_relative_base(void)
739{
740 unsigned int i;
741
Ard Biesheuvel2213e9a2016-03-15 14:58:19 -0700742 for (i = 0; i < table_cnt; i++)
Masahiro Yamadaf34ea022019-11-24 01:04:32 +0900743 if (!symbol_absolute(&table[i])) {
744 /*
745 * The table is sorted by address.
746 * Take the first non-absolute symbol value.
747 */
Ard Biesheuvel2213e9a2016-03-15 14:58:19 -0700748 relative_base = table[i].addr;
Masahiro Yamadaf34ea022019-11-24 01:04:32 +0900749 return;
750 }
Ard Biesheuvel2213e9a2016-03-15 14:58:19 -0700751}
752
Paulo Marquesb3dbb4e2005-09-06 15:16:31 -0700753int main(int argc, char **argv)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700754{
Yoshinori Sato41f11a42005-05-01 08:59:06 -0700755 if (argc >= 2) {
756 int i;
757 for (i = 1; i < argc; i++) {
758 if(strcmp(argv[i], "--all-symbols") == 0)
759 all_symbols = 1;
Rusty Russellc6bda7c2014-03-17 14:05:46 +1030760 else if (strcmp(argv[i], "--absolute-percpu") == 0)
761 absolute_percpu = 1;
Masahiro Yamada534c9f22018-05-09 16:23:47 +0900762 else if (strcmp(argv[i], "--base-relative") == 0)
Ard Biesheuvel2213e9a2016-03-15 14:58:19 -0700763 base_relative = 1;
764 else
Yoshinori Sato41f11a42005-05-01 08:59:06 -0700765 usage();
766 }
767 } else if (argc != 1)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700768 usage();
769
770 read_map(stdin);
Masahiro Yamada5e5c4fa2019-11-24 01:04:31 +0900771 shrink_table();
Rusty Russellc6bda7c2014-03-17 14:05:46 +1030772 if (absolute_percpu)
773 make_percpus_absolute();
Masahiro Yamadaf34ea022019-11-24 01:04:32 +0900774 sort_symbols();
Ard Biesheuvel2213e9a2016-03-15 14:58:19 -0700775 if (base_relative)
776 record_relative_base();
Sam Ravnborg2ea03892009-01-14 21:38:20 +0100777 optimize_token_table();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700778 write_src();
779
780 return 0;
781}