blob: 1dd24c5b9b47406c7e9759272e07c90fdd3ec2ab [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#ifndef ARRAY_SIZE
28#define ARRAY_SIZE(arr) (sizeof(arr) / sizeof(arr[0]))
29#endif
30
Tejun Heo9281ace2007-07-17 04:03:51 -070031#define KSYM_NAME_LEN 128
Linus Torvalds1da177e2005-04-16 15:20:36 -070032
Linus Torvalds1da177e2005-04-16 15:20:36 -070033struct sym_entry {
34 unsigned long long addr;
Paulo Marquesb3dbb4e2005-09-06 15:16:31 -070035 unsigned int len;
Paulo Marquesf2df3f62008-02-06 01:37:33 -080036 unsigned int start_pos;
Linus Torvalds1da177e2005-04-16 15:20:36 -070037 unsigned char *sym;
Ard Biesheuvel8c996942016-03-15 14:58:15 -070038 unsigned int percpu_absolute;
Linus Torvalds1da177e2005-04-16 15:20:36 -070039};
40
Kees Cook78eb7152014-03-17 13:18:27 +103041struct addr_range {
42 const char *start_sym, *end_sym;
Mike Frysinger17b1f0d2009-06-08 19:12:13 -040043 unsigned long long start, end;
44};
45
46static unsigned long long _text;
Ard Biesheuvel2213e9a2016-03-15 14:58:19 -070047static unsigned long long relative_base;
Kees Cook78eb7152014-03-17 13:18:27 +103048static struct addr_range text_ranges[] = {
Mike Frysinger17b1f0d2009-06-08 19:12:13 -040049 { "_stext", "_etext" },
50 { "_sinittext", "_einittext" },
51 { "_stext_l1", "_etext_l1" }, /* Blackfin on-chip L1 inst SRAM */
52 { "_stext_l2", "_etext_l2" }, /* Blackfin on-chip L2 SRAM */
53};
54#define text_range_text (&text_ranges[0])
55#define text_range_inittext (&text_ranges[1])
56
Rusty Russellc6bda7c2014-03-17 14:05:46 +103057static struct addr_range percpu_range = {
58 "__per_cpu_start", "__per_cpu_end", -1ULL, 0
59};
60
Linus Torvalds1da177e2005-04-16 15:20:36 -070061static struct sym_entry *table;
Paulo Marquesb3dbb4e2005-09-06 15:16:31 -070062static unsigned int table_size, table_cnt;
Linus Torvalds1da177e2005-04-16 15:20:36 -070063static int all_symbols = 0;
Rusty Russellc6bda7c2014-03-17 14:05:46 +103064static int absolute_percpu = 0;
Yoshinori Sato41f11a42005-05-01 08:59:06 -070065static char symbol_prefix_char = '\0';
Ard Biesheuvel2213e9a2016-03-15 14:58:19 -070066static int base_relative = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -070067
Paulo Marquesb3dbb4e2005-09-06 15:16:31 -070068int token_profit[0x10000];
Linus Torvalds1da177e2005-04-16 15:20:36 -070069
70/* the table that holds the result of the compression */
Paulo Marquesb3dbb4e2005-09-06 15:16:31 -070071unsigned char best_table[256][2];
Linus Torvalds1da177e2005-04-16 15:20:36 -070072unsigned char best_table_len[256];
73
74
Paulo Marquesb3dbb4e2005-09-06 15:16:31 -070075static void usage(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -070076{
Ming Leif6537f22013-11-02 09:11:33 +103077 fprintf(stderr, "Usage: kallsyms [--all-symbols] "
78 "[--symbol-prefix=<prefix char>] "
Ard Biesheuvel2213e9a2016-03-15 14:58:19 -070079 "[--base-relative] < in.map > out.S\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -070080 exit(1);
81}
82
83/*
84 * This ignores the intensely annoying "mapping symbols" found
85 * in ARM ELF files: $a, $t and $d.
86 */
Paulo Marquesb3dbb4e2005-09-06 15:16:31 -070087static inline int is_arm_mapping_symbol(const char *str)
Linus Torvalds1da177e2005-04-16 15:20:36 -070088{
Kyle McMartin6c34f1f2014-09-16 22:37:18 +010089 return str[0] == '$' && strchr("axtd", str[1])
Linus Torvalds1da177e2005-04-16 15:20:36 -070090 && (str[2] == '\0' || str[2] == '.');
91}
92
Kees Cook78eb7152014-03-17 13:18:27 +103093static int check_symbol_range(const char *sym, unsigned long long addr,
94 struct addr_range *ranges, int entries)
Mike Frysinger17b1f0d2009-06-08 19:12:13 -040095{
96 size_t i;
Kees Cook78eb7152014-03-17 13:18:27 +103097 struct addr_range *ar;
Mike Frysinger17b1f0d2009-06-08 19:12:13 -040098
Kees Cook78eb7152014-03-17 13:18:27 +103099 for (i = 0; i < entries; ++i) {
100 ar = &ranges[i];
Mike Frysinger17b1f0d2009-06-08 19:12:13 -0400101
Kees Cook78eb7152014-03-17 13:18:27 +1030102 if (strcmp(sym, ar->start_sym) == 0) {
103 ar->start = addr;
Mike Frysinger17b1f0d2009-06-08 19:12:13 -0400104 return 0;
Kees Cook78eb7152014-03-17 13:18:27 +1030105 } else if (strcmp(sym, ar->end_sym) == 0) {
106 ar->end = addr;
Mike Frysinger17b1f0d2009-06-08 19:12:13 -0400107 return 0;
108 }
109 }
110
111 return 1;
112}
113
Paulo Marquesb3dbb4e2005-09-06 15:16:31 -0700114static int read_symbol(FILE *in, struct sym_entry *s)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700115{
116 char str[500];
Paulo Marquesb3dbb4e2005-09-06 15:16:31 -0700117 char *sym, stype;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700118 int rc;
119
Paulo Marquesb3dbb4e2005-09-06 15:16:31 -0700120 rc = fscanf(in, "%llx %c %499s\n", &s->addr, &stype, str);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700121 if (rc != 3) {
Jean Sacrenef894872010-09-10 23:13:33 -0600122 if (rc != EOF && fgets(str, 500, in) == NULL)
123 fprintf(stderr, "Read error or end of file.\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700124 return -1;
125 }
Andi Kleenf3462aa2013-10-23 15:07:53 +0200126 if (strlen(str) > KSYM_NAME_LEN) {
Fabio Estevam6f622592013-11-08 00:45:01 -0200127 fprintf(stderr, "Symbol %s too long for kallsyms (%zu vs %d).\n"
Masahiro Yamadabb66fc62014-06-10 19:08:13 +0900128 "Please increase KSYM_NAME_LEN both in kernel and kallsyms.c\n",
Andi Kleenf3462aa2013-10-23 15:07:53 +0200129 str, strlen(str), KSYM_NAME_LEN);
130 return -1;
131 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700132
Yoshinori Sato41f11a42005-05-01 08:59:06 -0700133 sym = str;
134 /* skip prefix char */
135 if (symbol_prefix_char && str[0] == symbol_prefix_char)
136 sym++;
137
Linus Torvalds1da177e2005-04-16 15:20:36 -0700138 /* Ignore most absolute/undefined (?) symbols. */
Eric W. Biedermanfd593d12006-12-07 02:14:04 +0100139 if (strcmp(sym, "_text") == 0)
140 _text = s->addr;
Kees Cook78eb7152014-03-17 13:18:27 +1030141 else if (check_symbol_range(sym, s->addr, text_ranges,
142 ARRAY_SIZE(text_ranges)) == 0)
Mike Frysinger17b1f0d2009-06-08 19:12:13 -0400143 /* nothing to do */;
Paulo Marquesb3dbb4e2005-09-06 15:16:31 -0700144 else if (toupper(stype) == 'A')
Linus Torvalds1da177e2005-04-16 15:20:36 -0700145 {
146 /* Keep these useful absolute symbols */
Yoshinori Sato41f11a42005-05-01 08:59:06 -0700147 if (strcmp(sym, "__kernel_syscall_via_break") &&
148 strcmp(sym, "__kernel_syscall_via_epc") &&
149 strcmp(sym, "__kernel_sigtramp") &&
150 strcmp(sym, "__gp"))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700151 return -1;
152
153 }
Paulo Marquesb3dbb4e2005-09-06 15:16:31 -0700154 else if (toupper(stype) == 'U' ||
Yoshinori Sato41f11a42005-05-01 08:59:06 -0700155 is_arm_mapping_symbol(sym))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700156 return -1;
Ralf Baechle6f00df22005-09-06 15:16:41 -0700157 /* exclude also MIPS ELF local symbols ($L123 instead of .L123) */
158 else if (str[0] == '$')
159 return -1;
Sam Ravnborgaab34ac2008-05-19 20:07:58 +0200160 /* exclude debugging symbols */
Guenter Roeck51962a92017-10-13 15:57:58 -0700161 else if (stype == 'N' || stype == 'n')
Sam Ravnborgaab34ac2008-05-19 20:07:58 +0200162 return -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700163
164 /* include the type field in the symbol name, so that it gets
165 * compressed together */
166 s->len = strlen(str) + 1;
Paulo Marquesb3dbb4e2005-09-06 15:16:31 -0700167 s->sym = malloc(s->len + 1);
Jesper Juhlf1a136e2006-03-25 03:07:46 -0800168 if (!s->sym) {
169 fprintf(stderr, "kallsyms failure: "
170 "unable to allocate required amount of memory\n");
171 exit(EXIT_FAILURE);
172 }
Paulo Marquesb3dbb4e2005-09-06 15:16:31 -0700173 strcpy((char *)s->sym + 1, str);
174 s->sym[0] = stype;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700175
Ard Biesheuvel8c996942016-03-15 14:58:15 -0700176 s->percpu_absolute = 0;
177
Rusty Russellc6bda7c2014-03-17 14:05:46 +1030178 /* Record if we've found __per_cpu_start/end. */
179 check_symbol_range(sym, s->addr, &percpu_range, 1);
180
Linus Torvalds1da177e2005-04-16 15:20:36 -0700181 return 0;
182}
183
Kees Cook78eb7152014-03-17 13:18:27 +1030184static int symbol_in_range(struct sym_entry *s, struct addr_range *ranges,
185 int entries)
Mike Frysinger17b1f0d2009-06-08 19:12:13 -0400186{
187 size_t i;
Kees Cook78eb7152014-03-17 13:18:27 +1030188 struct addr_range *ar;
Mike Frysinger17b1f0d2009-06-08 19:12:13 -0400189
Kees Cook78eb7152014-03-17 13:18:27 +1030190 for (i = 0; i < entries; ++i) {
191 ar = &ranges[i];
Mike Frysinger17b1f0d2009-06-08 19:12:13 -0400192
Kees Cook78eb7152014-03-17 13:18:27 +1030193 if (s->addr >= ar->start && s->addr <= ar->end)
Mike Frysingerac6ca5c2009-06-15 07:52:48 -0400194 return 1;
Mike Frysinger17b1f0d2009-06-08 19:12:13 -0400195 }
196
Mike Frysingerac6ca5c2009-06-15 07:52:48 -0400197 return 0;
Mike Frysinger17b1f0d2009-06-08 19:12:13 -0400198}
199
Paulo Marquesb3dbb4e2005-09-06 15:16:31 -0700200static int symbol_valid(struct sym_entry *s)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700201{
202 /* Symbols which vary between passes. Passes 1 and 2 must have
Sam Ravnborg2ea03892009-01-14 21:38:20 +0100203 * identical symbol lists. The kallsyms_* symbols below are only added
204 * after pass 1, they would be included in pass 2 when --all-symbols is
205 * specified so exclude them to get a stable symbol list.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700206 */
207 static char *special_symbols[] = {
Sam Ravnborg2ea03892009-01-14 21:38:20 +0100208 "kallsyms_addresses",
Ard Biesheuvel2213e9a2016-03-15 14:58:19 -0700209 "kallsyms_offsets",
210 "kallsyms_relative_base",
Sam Ravnborg2ea03892009-01-14 21:38:20 +0100211 "kallsyms_num_syms",
212 "kallsyms_names",
213 "kallsyms_markers",
214 "kallsyms_token_table",
215 "kallsyms_token_index",
216
Linus Torvalds1da177e2005-04-16 15:20:36 -0700217 /* Exclude linker generated symbols which vary between passes */
218 "_SDA_BASE_", /* ppc */
219 "_SDA2_BASE_", /* ppc */
220 NULL };
Ard Biesheuvelbd8b22d2015-03-30 15:20:31 +0200221
Ard Biesheuvel56067812017-02-03 09:54:05 +0000222 static char *special_prefixes[] = {
223 "__crc_", /* modversions */
Ard Biesheuvel1212f7a2018-03-01 17:19:01 +0000224 "__efistub_", /* arm64 EFI stub namespace */
Ard Biesheuvel56067812017-02-03 09:54:05 +0000225 NULL };
226
Ard Biesheuvelbd8b22d2015-03-30 15:20:31 +0200227 static char *special_suffixes[] = {
Ard Biesheuvelbd8b22d2015-03-30 15:20:31 +0200228 "_veneer", /* arm */
Ard Biesheuvelb9b74be2016-04-01 14:33:48 +0100229 "_from_arm", /* arm */
230 "_from_thumb", /* arm */
Ard Biesheuvelbd8b22d2015-03-30 15:20:31 +0200231 NULL };
232
Linus Torvalds1da177e2005-04-16 15:20:36 -0700233 int i;
Ard Biesheuvelbd8b22d2015-03-30 15:20:31 +0200234 char *sym_name = (char *)s->sym + 1;
235
Yoshinori Sato41f11a42005-05-01 08:59:06 -0700236 /* skip prefix char */
Ard Biesheuvelbd8b22d2015-03-30 15:20:31 +0200237 if (symbol_prefix_char && *sym_name == symbol_prefix_char)
238 sym_name++;
239
Linus Torvalds1da177e2005-04-16 15:20:36 -0700240
241 /* if --all-symbols is not specified, then symbols outside the text
242 * and inittext sections are discarded */
243 if (!all_symbols) {
Kees Cook78eb7152014-03-17 13:18:27 +1030244 if (symbol_in_range(s, text_ranges,
245 ARRAY_SIZE(text_ranges)) == 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700246 return 0;
247 /* Corner case. Discard any symbols with the same value as
Robin Getza3b81112008-02-06 01:36:26 -0800248 * _etext _einittext; they can move between pass 1 and 2 when
249 * the kallsyms data are added. If these symbols move then
250 * they may get dropped in pass 2, which breaks the kallsyms
251 * rules.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700252 */
Mike Frysinger17b1f0d2009-06-08 19:12:13 -0400253 if ((s->addr == text_range_text->end &&
Ard Biesheuvelbd8b22d2015-03-30 15:20:31 +0200254 strcmp(sym_name,
Kees Cook78eb7152014-03-17 13:18:27 +1030255 text_range_text->end_sym)) ||
Mike Frysinger17b1f0d2009-06-08 19:12:13 -0400256 (s->addr == text_range_inittext->end &&
Ard Biesheuvelbd8b22d2015-03-30 15:20:31 +0200257 strcmp(sym_name,
Kees Cook78eb7152014-03-17 13:18:27 +1030258 text_range_inittext->end_sym)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700259 return 0;
260 }
261
262 /* Exclude symbols which vary between passes. */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700263 for (i = 0; special_symbols[i]; i++)
Ard Biesheuvelbd8b22d2015-03-30 15:20:31 +0200264 if (strcmp(sym_name, special_symbols[i]) == 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700265 return 0;
266
Ard Biesheuvel56067812017-02-03 09:54:05 +0000267 for (i = 0; special_prefixes[i]; i++) {
268 int l = strlen(special_prefixes[i]);
269
270 if (l <= strlen(sym_name) &&
271 strncmp(sym_name, special_prefixes[i], l) == 0)
272 return 0;
273 }
274
Ard Biesheuvelbd8b22d2015-03-30 15:20:31 +0200275 for (i = 0; special_suffixes[i]; i++) {
276 int l = strlen(sym_name) - strlen(special_suffixes[i]);
277
278 if (l >= 0 && strcmp(sym_name + l, special_suffixes[i]) == 0)
279 return 0;
280 }
281
Linus Torvalds1da177e2005-04-16 15:20:36 -0700282 return 1;
283}
284
Paulo Marquesb3dbb4e2005-09-06 15:16:31 -0700285static void read_map(FILE *in)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700286{
287 while (!feof(in)) {
Paulo Marquesb3dbb4e2005-09-06 15:16:31 -0700288 if (table_cnt >= table_size) {
289 table_size += 10000;
290 table = realloc(table, sizeof(*table) * table_size);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700291 if (!table) {
292 fprintf(stderr, "out of memory\n");
293 exit (1);
294 }
295 }
Paulo Marquesf2df3f62008-02-06 01:37:33 -0800296 if (read_symbol(in, &table[table_cnt]) == 0) {
297 table[table_cnt].start_pos = table_cnt;
Paulo Marquesb3dbb4e2005-09-06 15:16:31 -0700298 table_cnt++;
Paulo Marquesf2df3f62008-02-06 01:37:33 -0800299 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700300 }
301}
302
303static void output_label(char *label)
304{
Yoshinori Sato41f11a42005-05-01 08:59:06 -0700305 if (symbol_prefix_char)
306 printf(".globl %c%s\n", symbol_prefix_char, label);
307 else
308 printf(".globl %s\n", label);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700309 printf("\tALGN\n");
Yoshinori Sato41f11a42005-05-01 08:59:06 -0700310 if (symbol_prefix_char)
311 printf("%c%s:\n", symbol_prefix_char, label);
312 else
313 printf("%s:\n", label);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700314}
315
316/* uncompress a compressed symbol. When this function is called, the best table
317 * might still be compressed itself, so the function needs to be recursive */
318static int expand_symbol(unsigned char *data, int len, char *result)
319{
320 int c, rlen, total=0;
321
322 while (len) {
323 c = *data;
324 /* if the table holds a single char that is the same as the one
325 * we are looking for, then end the search */
326 if (best_table[c][0]==c && best_table_len[c]==1) {
327 *result++ = c;
328 total++;
329 } else {
330 /* if not, recurse and expand */
331 rlen = expand_symbol(best_table[c], best_table_len[c], result);
332 total += rlen;
333 result += rlen;
334 }
335 data++;
336 len--;
337 }
338 *result=0;
339
340 return total;
341}
342
Kees Cook78eb7152014-03-17 13:18:27 +1030343static int symbol_absolute(struct sym_entry *s)
344{
Ard Biesheuvel8c996942016-03-15 14:58:15 -0700345 return s->percpu_absolute;
Kees Cook78eb7152014-03-17 13:18:27 +1030346}
347
Paulo Marquesb3dbb4e2005-09-06 15:16:31 -0700348static void write_src(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700349{
Paulo Marquesb3dbb4e2005-09-06 15:16:31 -0700350 unsigned int i, k, off;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700351 unsigned int best_idx[256];
352 unsigned int *markers;
Tejun Heo9281ace2007-07-17 04:03:51 -0700353 char buf[KSYM_NAME_LEN];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700354
355 printf("#include <asm/types.h>\n");
356 printf("#if BITS_PER_LONG == 64\n");
357 printf("#define PTR .quad\n");
358 printf("#define ALGN .align 8\n");
359 printf("#else\n");
360 printf("#define PTR .long\n");
361 printf("#define ALGN .align 4\n");
362 printf("#endif\n");
363
Jan Beulichaad09472006-12-08 02:35:57 -0800364 printf("\t.section .rodata, \"a\"\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700365
Ard Biesheuvel2213e9a2016-03-15 14:58:19 -0700366 /* Provide proper symbols relocatability by their relativeness
367 * to a fixed anchor point in the runtime image, either '_text'
368 * for absolute address tables, in which case the linker will
369 * emit the final addresses at build time. Otherwise, use the
370 * offset relative to the lowest value encountered of all relative
371 * symbols, and emit non-relocatable fixed offsets that will be fixed
372 * up at runtime.
373 *
374 * The symbol names cannot be used to construct normal symbol
375 * references as the list of symbols contains symbols that are
376 * declared static and are private to their .o files. This prevents
377 * .tmp_kallsyms.o or any other object from referencing them.
Eric W. Biedermanfd593d12006-12-07 02:14:04 +0100378 */
Ard Biesheuvel2213e9a2016-03-15 14:58:19 -0700379 if (!base_relative)
380 output_label("kallsyms_addresses");
381 else
382 output_label("kallsyms_offsets");
383
Paulo Marquesb3dbb4e2005-09-06 15:16:31 -0700384 for (i = 0; i < table_cnt; i++) {
Ard Biesheuvel2213e9a2016-03-15 14:58:19 -0700385 if (base_relative) {
386 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])) {
Vivek Goyal2c22d8b2006-12-07 02:14:10 +0100408 if (_text <= table[i].addr)
409 printf("\tPTR\t_text + %#llx\n",
410 table[i].addr - _text);
411 else
Andrew Morton2930ffc2014-03-10 15:49:48 -0700412 printf("\tPTR\t_text - %#llx\n",
413 _text - table[i].addr);
Eric W. Biedermanfd593d12006-12-07 02:14:04 +0100414 } else {
415 printf("\tPTR\t%#llx\n", table[i].addr);
416 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700417 }
418 printf("\n");
419
Ard Biesheuvel2213e9a2016-03-15 14:58:19 -0700420 if (base_relative) {
421 output_label("kallsyms_relative_base");
422 printf("\tPTR\t_text - %#llx\n", _text - relative_base);
423 printf("\n");
424 }
425
Linus Torvalds1da177e2005-04-16 15:20:36 -0700426 output_label("kallsyms_num_syms");
Paulo Marquesb3dbb4e2005-09-06 15:16:31 -0700427 printf("\tPTR\t%d\n", table_cnt);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700428 printf("\n");
429
430 /* table of offset markers, that give the offset in the compressed stream
431 * every 256 symbols */
Jesper Juhlf1a136e2006-03-25 03:07:46 -0800432 markers = malloc(sizeof(unsigned int) * ((table_cnt + 255) / 256));
433 if (!markers) {
434 fprintf(stderr, "kallsyms failure: "
435 "unable to allocate required memory\n");
436 exit(EXIT_FAILURE);
437 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700438
439 output_label("kallsyms_names");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700440 off = 0;
Paulo Marquesb3dbb4e2005-09-06 15:16:31 -0700441 for (i = 0; i < table_cnt; i++) {
442 if ((i & 0xFF) == 0)
443 markers[i >> 8] = off;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700444
445 printf("\t.byte 0x%02x", table[i].len);
446 for (k = 0; k < table[i].len; k++)
447 printf(", 0x%02x", table[i].sym[k]);
448 printf("\n");
449
450 off += table[i].len + 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700451 }
452 printf("\n");
453
454 output_label("kallsyms_markers");
Paulo Marquesb3dbb4e2005-09-06 15:16:31 -0700455 for (i = 0; i < ((table_cnt + 255) >> 8); i++)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700456 printf("\tPTR\t%d\n", markers[i]);
457 printf("\n");
458
459 free(markers);
460
461 output_label("kallsyms_token_table");
462 off = 0;
463 for (i = 0; i < 256; i++) {
464 best_idx[i] = off;
Paulo Marquesb3dbb4e2005-09-06 15:16:31 -0700465 expand_symbol(best_table[i], best_table_len[i], buf);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700466 printf("\t.asciz\t\"%s\"\n", buf);
467 off += strlen(buf) + 1;
468 }
469 printf("\n");
470
471 output_label("kallsyms_token_index");
472 for (i = 0; i < 256; i++)
473 printf("\t.short\t%d\n", best_idx[i]);
474 printf("\n");
475}
476
477
478/* table lookup compression functions */
479
Linus Torvalds1da177e2005-04-16 15:20:36 -0700480/* count all the possible tokens in a symbol */
481static void learn_symbol(unsigned char *symbol, int len)
482{
483 int i;
484
485 for (i = 0; i < len - 1; i++)
Paulo Marquesb3dbb4e2005-09-06 15:16:31 -0700486 token_profit[ symbol[i] + (symbol[i + 1] << 8) ]++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700487}
488
489/* decrease the count for all the possible tokens in a symbol */
490static void forget_symbol(unsigned char *symbol, int len)
491{
492 int i;
493
494 for (i = 0; i < len - 1; i++)
Paulo Marquesb3dbb4e2005-09-06 15:16:31 -0700495 token_profit[ symbol[i] + (symbol[i + 1] << 8) ]--;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700496}
497
Paulo Marquesb3dbb4e2005-09-06 15:16:31 -0700498/* remove all the invalid symbols from the table and do the initial token count */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700499static void build_initial_tok_table(void)
500{
Paulo Marquesb3dbb4e2005-09-06 15:16:31 -0700501 unsigned int i, pos;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700502
Paulo Marquesb3dbb4e2005-09-06 15:16:31 -0700503 pos = 0;
504 for (i = 0; i < table_cnt; i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700505 if ( symbol_valid(&table[i]) ) {
Paulo Marquesb3dbb4e2005-09-06 15:16:31 -0700506 if (pos != i)
507 table[pos] = table[i];
508 learn_symbol(table[pos].sym, table[pos].len);
509 pos++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700510 }
511 }
Paulo Marquesb3dbb4e2005-09-06 15:16:31 -0700512 table_cnt = pos;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700513}
514
Paulo Marques7c5d2492007-06-20 18:09:00 +0100515static void *find_token(unsigned char *str, int len, unsigned char *token)
516{
517 int i;
518
519 for (i = 0; i < len - 1; i++) {
520 if (str[i] == token[0] && str[i+1] == token[1])
521 return &str[i];
522 }
523 return NULL;
524}
525
Linus Torvalds1da177e2005-04-16 15:20:36 -0700526/* replace a given token in all the valid symbols. Use the sampled symbols
527 * to update the counts */
Paulo Marquesb3dbb4e2005-09-06 15:16:31 -0700528static void compress_symbols(unsigned char *str, int idx)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700529{
Paulo Marquesb3dbb4e2005-09-06 15:16:31 -0700530 unsigned int i, len, size;
531 unsigned char *p1, *p2;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700532
Paulo Marquesb3dbb4e2005-09-06 15:16:31 -0700533 for (i = 0; i < table_cnt; i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700534
535 len = table[i].len;
Paulo Marquesb3dbb4e2005-09-06 15:16:31 -0700536 p1 = table[i].sym;
537
538 /* find the token on the symbol */
Paulo Marques7c5d2492007-06-20 18:09:00 +0100539 p2 = find_token(p1, len, str);
Paulo Marquesb3dbb4e2005-09-06 15:16:31 -0700540 if (!p2) continue;
541
542 /* decrease the counts for this symbol's tokens */
543 forget_symbol(table[i].sym, len);
544
545 size = len;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700546
547 do {
Paulo Marquesb3dbb4e2005-09-06 15:16:31 -0700548 *p2 = idx;
549 p2++;
550 size -= (p2 - p1);
551 memmove(p2, p2 + 1, size);
552 p1 = p2;
553 len--;
554
555 if (size < 2) break;
556
Linus Torvalds1da177e2005-04-16 15:20:36 -0700557 /* find the token on the symbol */
Paulo Marques7c5d2492007-06-20 18:09:00 +0100558 p2 = find_token(p1, size, str);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700559
Paulo Marquesb3dbb4e2005-09-06 15:16:31 -0700560 } while (p2);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700561
Paulo Marquesb3dbb4e2005-09-06 15:16:31 -0700562 table[i].len = len;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700563
Paulo Marquesb3dbb4e2005-09-06 15:16:31 -0700564 /* increase the counts for this symbol's new tokens */
565 learn_symbol(table[i].sym, len);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700566 }
567}
568
569/* search the token with the maximum profit */
Paulo Marquesb3dbb4e2005-09-06 15:16:31 -0700570static int find_best_token(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700571{
Paulo Marquesb3dbb4e2005-09-06 15:16:31 -0700572 int i, best, bestprofit;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700573
574 bestprofit=-10000;
Paulo Marquesb3dbb4e2005-09-06 15:16:31 -0700575 best = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700576
Paulo Marquesb3dbb4e2005-09-06 15:16:31 -0700577 for (i = 0; i < 0x10000; i++) {
578 if (token_profit[i] > bestprofit) {
579 best = i;
580 bestprofit = token_profit[i];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700581 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700582 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700583 return best;
584}
585
586/* this is the core of the algorithm: calculate the "best" table */
587static void optimize_result(void)
588{
Paulo Marquesb3dbb4e2005-09-06 15:16:31 -0700589 int i, best;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700590
591 /* using the '\0' symbol last allows compress_symbols to use standard
592 * fast string functions */
593 for (i = 255; i >= 0; i--) {
594
595 /* if this table slot is empty (it is not used by an actual
596 * original char code */
597 if (!best_table_len[i]) {
598
599 /* find the token with the breates profit value */
600 best = find_best_token();
Xiaochen Wange0a04b12011-05-01 11:41:41 +0800601 if (token_profit[best] == 0)
602 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700603
604 /* place it in the "best" table */
Paulo Marquesb3dbb4e2005-09-06 15:16:31 -0700605 best_table_len[i] = 2;
606 best_table[i][0] = best & 0xFF;
607 best_table[i][1] = (best >> 8) & 0xFF;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700608
609 /* replace this token in all the valid symbols */
Paulo Marquesb3dbb4e2005-09-06 15:16:31 -0700610 compress_symbols(best_table[i], i);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700611 }
612 }
613}
614
615/* start by placing the symbols that are actually used on the table */
616static void insert_real_symbols_in_table(void)
617{
Paulo Marquesb3dbb4e2005-09-06 15:16:31 -0700618 unsigned int i, j, c;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700619
620 memset(best_table, 0, sizeof(best_table));
621 memset(best_table_len, 0, sizeof(best_table_len));
622
Paulo Marquesb3dbb4e2005-09-06 15:16:31 -0700623 for (i = 0; i < table_cnt; i++) {
624 for (j = 0; j < table[i].len; j++) {
625 c = table[i].sym[j];
626 best_table[c][0]=c;
627 best_table_len[c]=1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700628 }
629 }
630}
631
632static void optimize_token_table(void)
633{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700634 build_initial_tok_table();
635
636 insert_real_symbols_in_table();
637
Yoshinori Sato41f11a42005-05-01 08:59:06 -0700638 /* When valid symbol is not registered, exit to error */
Paulo Marquesb3dbb4e2005-09-06 15:16:31 -0700639 if (!table_cnt) {
Yoshinori Sato41f11a42005-05-01 08:59:06 -0700640 fprintf(stderr, "No valid symbol.\n");
641 exit(1);
642 }
643
Linus Torvalds1da177e2005-04-16 15:20:36 -0700644 optimize_result();
645}
646
Lai Jiangshanb478b7822009-03-13 15:10:26 +0800647/* guess for "linker script provide" symbol */
648static int may_be_linker_script_provide_symbol(const struct sym_entry *se)
649{
650 const char *symbol = (char *)se->sym + 1;
651 int len = se->len - 1;
652
653 if (len < 8)
654 return 0;
655
656 if (symbol[0] != '_' || symbol[1] != '_')
657 return 0;
658
659 /* __start_XXXXX */
660 if (!memcmp(symbol + 2, "start_", 6))
661 return 1;
662
663 /* __stop_XXXXX */
664 if (!memcmp(symbol + 2, "stop_", 5))
665 return 1;
666
667 /* __end_XXXXX */
668 if (!memcmp(symbol + 2, "end_", 4))
669 return 1;
670
671 /* __XXXXX_start */
672 if (!memcmp(symbol + len - 6, "_start", 6))
673 return 1;
674
675 /* __XXXXX_end */
676 if (!memcmp(symbol + len - 4, "_end", 4))
677 return 1;
678
679 return 0;
680}
681
682static int prefix_underscores_count(const char *str)
683{
684 const char *tail = str;
685
Paul Mundta9ece532009-09-22 16:44:12 -0700686 while (*tail == '_')
Lai Jiangshanb478b7822009-03-13 15:10:26 +0800687 tail++;
688
689 return tail - str;
690}
691
Paulo Marquesf2df3f62008-02-06 01:37:33 -0800692static int compare_symbols(const void *a, const void *b)
693{
694 const struct sym_entry *sa;
695 const struct sym_entry *sb;
696 int wa, wb;
697
698 sa = a;
699 sb = b;
700
701 /* sort by address first */
702 if (sa->addr > sb->addr)
703 return 1;
704 if (sa->addr < sb->addr)
705 return -1;
706
707 /* sort by "weakness" type */
708 wa = (sa->sym[0] == 'w') || (sa->sym[0] == 'W');
709 wb = (sb->sym[0] == 'w') || (sb->sym[0] == 'W');
710 if (wa != wb)
711 return wa - wb;
712
Lai Jiangshanb478b7822009-03-13 15:10:26 +0800713 /* sort by "linker script provide" type */
714 wa = may_be_linker_script_provide_symbol(sa);
715 wb = may_be_linker_script_provide_symbol(sb);
716 if (wa != wb)
717 return wa - wb;
718
719 /* sort by the number of prefix underscores */
720 wa = prefix_underscores_count((const char *)sa->sym + 1);
721 wb = prefix_underscores_count((const char *)sb->sym + 1);
722 if (wa != wb)
723 return wa - wb;
724
Paulo Marquesf2df3f62008-02-06 01:37:33 -0800725 /* sort by initial order, so that other symbols are left undisturbed */
726 return sa->start_pos - sb->start_pos;
727}
728
729static void sort_symbols(void)
730{
731 qsort(table, table_cnt, sizeof(struct sym_entry), compare_symbols);
732}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700733
Rusty Russellc6bda7c2014-03-17 14:05:46 +1030734static void make_percpus_absolute(void)
735{
736 unsigned int i;
737
738 for (i = 0; i < table_cnt; i++)
Ard Biesheuvel8c996942016-03-15 14:58:15 -0700739 if (symbol_in_range(&table[i], &percpu_range, 1)) {
740 /*
741 * Keep the 'A' override for percpu symbols to
742 * ensure consistent behavior compared to older
743 * versions of this tool.
744 */
Rusty Russellc6bda7c2014-03-17 14:05:46 +1030745 table[i].sym[0] = 'A';
Ard Biesheuvel8c996942016-03-15 14:58:15 -0700746 table[i].percpu_absolute = 1;
747 }
Rusty Russellc6bda7c2014-03-17 14:05:46 +1030748}
749
Ard Biesheuvel2213e9a2016-03-15 14:58:19 -0700750/* find the minimum non-absolute symbol address */
751static void record_relative_base(void)
752{
753 unsigned int i;
754
755 relative_base = -1ULL;
756 for (i = 0; i < table_cnt; i++)
757 if (!symbol_absolute(&table[i]) &&
758 table[i].addr < relative_base)
759 relative_base = table[i].addr;
760}
761
Paulo Marquesb3dbb4e2005-09-06 15:16:31 -0700762int main(int argc, char **argv)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700763{
Yoshinori Sato41f11a42005-05-01 08:59:06 -0700764 if (argc >= 2) {
765 int i;
766 for (i = 1; i < argc; i++) {
767 if(strcmp(argv[i], "--all-symbols") == 0)
768 all_symbols = 1;
Rusty Russellc6bda7c2014-03-17 14:05:46 +1030769 else if (strcmp(argv[i], "--absolute-percpu") == 0)
770 absolute_percpu = 1;
Yoshinori Sato41f11a42005-05-01 08:59:06 -0700771 else if (strncmp(argv[i], "--symbol-prefix=", 16) == 0) {
772 char *p = &argv[i][16];
773 /* skip quote */
774 if ((*p == '"' && *(p+2) == '"') || (*p == '\'' && *(p+2) == '\''))
775 p++;
776 symbol_prefix_char = *p;
Ard Biesheuvel2213e9a2016-03-15 14:58:19 -0700777 } else if (strcmp(argv[i], "--base-relative") == 0)
778 base_relative = 1;
779 else
Yoshinori Sato41f11a42005-05-01 08:59:06 -0700780 usage();
781 }
782 } else if (argc != 1)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700783 usage();
784
785 read_map(stdin);
Rusty Russellc6bda7c2014-03-17 14:05:46 +1030786 if (absolute_percpu)
787 make_percpus_absolute();
Ard Biesheuvel2213e9a2016-03-15 14:58:19 -0700788 if (base_relative)
789 record_relative_base();
Sam Ravnborg2ea03892009-01-14 21:38:20 +0100790 sort_symbols();
791 optimize_token_table();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700792 write_src();
793
794 return 0;
795}