blob: 299b92ca1ae092d82e9a0e3bffaec45988ebcc37 [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 */
161 else if (stype == 'N')
162 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
222 static char *special_suffixes[] = {
Ard Biesheuvelbd8b22d2015-03-30 15:20:31 +0200223 "_veneer", /* arm */
Ard Biesheuvelb9b74be2016-04-01 14:33:48 +0100224 "_from_arm", /* arm */
225 "_from_thumb", /* arm */
Ard Biesheuvelbd8b22d2015-03-30 15:20:31 +0200226 NULL };
227
Linus Torvalds1da177e2005-04-16 15:20:36 -0700228 int i;
Ard Biesheuvelbd8b22d2015-03-30 15:20:31 +0200229 char *sym_name = (char *)s->sym + 1;
230
Yoshinori Sato41f11a42005-05-01 08:59:06 -0700231 /* skip prefix char */
Ard Biesheuvelbd8b22d2015-03-30 15:20:31 +0200232 if (symbol_prefix_char && *sym_name == symbol_prefix_char)
233 sym_name++;
234
Linus Torvalds1da177e2005-04-16 15:20:36 -0700235
236 /* if --all-symbols is not specified, then symbols outside the text
237 * and inittext sections are discarded */
238 if (!all_symbols) {
Kees Cook78eb7152014-03-17 13:18:27 +1030239 if (symbol_in_range(s, text_ranges,
240 ARRAY_SIZE(text_ranges)) == 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700241 return 0;
242 /* Corner case. Discard any symbols with the same value as
Robin Getza3b81112008-02-06 01:36:26 -0800243 * _etext _einittext; they can move between pass 1 and 2 when
244 * the kallsyms data are added. If these symbols move then
245 * they may get dropped in pass 2, which breaks the kallsyms
246 * rules.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700247 */
Mike Frysinger17b1f0d2009-06-08 19:12:13 -0400248 if ((s->addr == text_range_text->end &&
Ard Biesheuvelbd8b22d2015-03-30 15:20:31 +0200249 strcmp(sym_name,
Kees Cook78eb7152014-03-17 13:18:27 +1030250 text_range_text->end_sym)) ||
Mike Frysinger17b1f0d2009-06-08 19:12:13 -0400251 (s->addr == text_range_inittext->end &&
Ard Biesheuvelbd8b22d2015-03-30 15:20:31 +0200252 strcmp(sym_name,
Kees Cook78eb7152014-03-17 13:18:27 +1030253 text_range_inittext->end_sym)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700254 return 0;
255 }
256
257 /* Exclude symbols which vary between passes. */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700258 for (i = 0; special_symbols[i]; i++)
Ard Biesheuvelbd8b22d2015-03-30 15:20:31 +0200259 if (strcmp(sym_name, special_symbols[i]) == 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700260 return 0;
261
Ard Biesheuvelbd8b22d2015-03-30 15:20:31 +0200262 for (i = 0; special_suffixes[i]; i++) {
263 int l = strlen(sym_name) - strlen(special_suffixes[i]);
264
265 if (l >= 0 && strcmp(sym_name + l, special_suffixes[i]) == 0)
266 return 0;
267 }
268
Linus Torvalds1da177e2005-04-16 15:20:36 -0700269 return 1;
270}
271
Paulo Marquesb3dbb4e2005-09-06 15:16:31 -0700272static void read_map(FILE *in)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700273{
274 while (!feof(in)) {
Paulo Marquesb3dbb4e2005-09-06 15:16:31 -0700275 if (table_cnt >= table_size) {
276 table_size += 10000;
277 table = realloc(table, sizeof(*table) * table_size);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700278 if (!table) {
279 fprintf(stderr, "out of memory\n");
280 exit (1);
281 }
282 }
Paulo Marquesf2df3f62008-02-06 01:37:33 -0800283 if (read_symbol(in, &table[table_cnt]) == 0) {
284 table[table_cnt].start_pos = table_cnt;
Paulo Marquesb3dbb4e2005-09-06 15:16:31 -0700285 table_cnt++;
Paulo Marquesf2df3f62008-02-06 01:37:33 -0800286 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700287 }
288}
289
290static void output_label(char *label)
291{
Yoshinori Sato41f11a42005-05-01 08:59:06 -0700292 if (symbol_prefix_char)
293 printf(".globl %c%s\n", symbol_prefix_char, label);
294 else
295 printf(".globl %s\n", label);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700296 printf("\tALGN\n");
Yoshinori Sato41f11a42005-05-01 08:59:06 -0700297 if (symbol_prefix_char)
298 printf("%c%s:\n", symbol_prefix_char, label);
299 else
300 printf("%s:\n", label);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700301}
302
303/* uncompress a compressed symbol. When this function is called, the best table
304 * might still be compressed itself, so the function needs to be recursive */
305static int expand_symbol(unsigned char *data, int len, char *result)
306{
307 int c, rlen, total=0;
308
309 while (len) {
310 c = *data;
311 /* if the table holds a single char that is the same as the one
312 * we are looking for, then end the search */
313 if (best_table[c][0]==c && best_table_len[c]==1) {
314 *result++ = c;
315 total++;
316 } else {
317 /* if not, recurse and expand */
318 rlen = expand_symbol(best_table[c], best_table_len[c], result);
319 total += rlen;
320 result += rlen;
321 }
322 data++;
323 len--;
324 }
325 *result=0;
326
327 return total;
328}
329
Kees Cook78eb7152014-03-17 13:18:27 +1030330static int symbol_absolute(struct sym_entry *s)
331{
Ard Biesheuvel8c996942016-03-15 14:58:15 -0700332 return s->percpu_absolute;
Kees Cook78eb7152014-03-17 13:18:27 +1030333}
334
Paulo Marquesb3dbb4e2005-09-06 15:16:31 -0700335static void write_src(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700336{
Paulo Marquesb3dbb4e2005-09-06 15:16:31 -0700337 unsigned int i, k, off;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700338 unsigned int best_idx[256];
339 unsigned int *markers;
Tejun Heo9281ace2007-07-17 04:03:51 -0700340 char buf[KSYM_NAME_LEN];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700341
342 printf("#include <asm/types.h>\n");
343 printf("#if BITS_PER_LONG == 64\n");
344 printf("#define PTR .quad\n");
345 printf("#define ALGN .align 8\n");
346 printf("#else\n");
347 printf("#define PTR .long\n");
348 printf("#define ALGN .align 4\n");
349 printf("#endif\n");
350
Jan Beulichaad09472006-12-08 02:35:57 -0800351 printf("\t.section .rodata, \"a\"\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700352
Ard Biesheuvel2213e9a2016-03-15 14:58:19 -0700353 /* Provide proper symbols relocatability by their relativeness
354 * to a fixed anchor point in the runtime image, either '_text'
355 * for absolute address tables, in which case the linker will
356 * emit the final addresses at build time. Otherwise, use the
357 * offset relative to the lowest value encountered of all relative
358 * symbols, and emit non-relocatable fixed offsets that will be fixed
359 * up at runtime.
360 *
361 * The symbol names cannot be used to construct normal symbol
362 * references as the list of symbols contains symbols that are
363 * declared static and are private to their .o files. This prevents
364 * .tmp_kallsyms.o or any other object from referencing them.
Eric W. Biedermanfd593d12006-12-07 02:14:04 +0100365 */
Ard Biesheuvel2213e9a2016-03-15 14:58:19 -0700366 if (!base_relative)
367 output_label("kallsyms_addresses");
368 else
369 output_label("kallsyms_offsets");
370
Paulo Marquesb3dbb4e2005-09-06 15:16:31 -0700371 for (i = 0; i < table_cnt; i++) {
Ard Biesheuvel2213e9a2016-03-15 14:58:19 -0700372 if (base_relative) {
373 long long offset;
374 int overflow;
375
376 if (!absolute_percpu) {
377 offset = table[i].addr - relative_base;
378 overflow = (offset < 0 || offset > UINT_MAX);
379 } else if (symbol_absolute(&table[i])) {
380 offset = table[i].addr;
381 overflow = (offset < 0 || offset > INT_MAX);
382 } else {
383 offset = relative_base - table[i].addr - 1;
384 overflow = (offset < INT_MIN || offset >= 0);
385 }
386 if (overflow) {
387 fprintf(stderr, "kallsyms failure: "
388 "%s symbol value %#llx out of range in relative mode\n",
389 symbol_absolute(&table[i]) ? "absolute" : "relative",
390 table[i].addr);
391 exit(EXIT_FAILURE);
392 }
393 printf("\t.long\t%#x\n", (int)offset);
394 } else if (!symbol_absolute(&table[i])) {
Vivek Goyal2c22d8b2006-12-07 02:14:10 +0100395 if (_text <= table[i].addr)
396 printf("\tPTR\t_text + %#llx\n",
397 table[i].addr - _text);
398 else
Andrew Morton2930ffc2014-03-10 15:49:48 -0700399 printf("\tPTR\t_text - %#llx\n",
400 _text - table[i].addr);
Eric W. Biedermanfd593d12006-12-07 02:14:04 +0100401 } else {
402 printf("\tPTR\t%#llx\n", table[i].addr);
403 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700404 }
405 printf("\n");
406
Ard Biesheuvel2213e9a2016-03-15 14:58:19 -0700407 if (base_relative) {
408 output_label("kallsyms_relative_base");
409 printf("\tPTR\t_text - %#llx\n", _text - relative_base);
410 printf("\n");
411 }
412
Linus Torvalds1da177e2005-04-16 15:20:36 -0700413 output_label("kallsyms_num_syms");
Paulo Marquesb3dbb4e2005-09-06 15:16:31 -0700414 printf("\tPTR\t%d\n", table_cnt);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700415 printf("\n");
416
417 /* table of offset markers, that give the offset in the compressed stream
418 * every 256 symbols */
Jesper Juhlf1a136e2006-03-25 03:07:46 -0800419 markers = malloc(sizeof(unsigned int) * ((table_cnt + 255) / 256));
420 if (!markers) {
421 fprintf(stderr, "kallsyms failure: "
422 "unable to allocate required memory\n");
423 exit(EXIT_FAILURE);
424 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700425
426 output_label("kallsyms_names");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700427 off = 0;
Paulo Marquesb3dbb4e2005-09-06 15:16:31 -0700428 for (i = 0; i < table_cnt; i++) {
429 if ((i & 0xFF) == 0)
430 markers[i >> 8] = off;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700431
432 printf("\t.byte 0x%02x", table[i].len);
433 for (k = 0; k < table[i].len; k++)
434 printf(", 0x%02x", table[i].sym[k]);
435 printf("\n");
436
437 off += table[i].len + 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700438 }
439 printf("\n");
440
441 output_label("kallsyms_markers");
Paulo Marquesb3dbb4e2005-09-06 15:16:31 -0700442 for (i = 0; i < ((table_cnt + 255) >> 8); i++)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700443 printf("\tPTR\t%d\n", markers[i]);
444 printf("\n");
445
446 free(markers);
447
448 output_label("kallsyms_token_table");
449 off = 0;
450 for (i = 0; i < 256; i++) {
451 best_idx[i] = off;
Paulo Marquesb3dbb4e2005-09-06 15:16:31 -0700452 expand_symbol(best_table[i], best_table_len[i], buf);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700453 printf("\t.asciz\t\"%s\"\n", buf);
454 off += strlen(buf) + 1;
455 }
456 printf("\n");
457
458 output_label("kallsyms_token_index");
459 for (i = 0; i < 256; i++)
460 printf("\t.short\t%d\n", best_idx[i]);
461 printf("\n");
462}
463
464
465/* table lookup compression functions */
466
Linus Torvalds1da177e2005-04-16 15:20:36 -0700467/* count all the possible tokens in a symbol */
468static void learn_symbol(unsigned char *symbol, int len)
469{
470 int i;
471
472 for (i = 0; i < len - 1; i++)
Paulo Marquesb3dbb4e2005-09-06 15:16:31 -0700473 token_profit[ symbol[i] + (symbol[i + 1] << 8) ]++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700474}
475
476/* decrease the count for all the possible tokens in a symbol */
477static void forget_symbol(unsigned char *symbol, int len)
478{
479 int i;
480
481 for (i = 0; i < len - 1; i++)
Paulo Marquesb3dbb4e2005-09-06 15:16:31 -0700482 token_profit[ symbol[i] + (symbol[i + 1] << 8) ]--;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700483}
484
Paulo Marquesb3dbb4e2005-09-06 15:16:31 -0700485/* remove all the invalid symbols from the table and do the initial token count */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700486static void build_initial_tok_table(void)
487{
Paulo Marquesb3dbb4e2005-09-06 15:16:31 -0700488 unsigned int i, pos;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700489
Paulo Marquesb3dbb4e2005-09-06 15:16:31 -0700490 pos = 0;
491 for (i = 0; i < table_cnt; i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700492 if ( symbol_valid(&table[i]) ) {
Paulo Marquesb3dbb4e2005-09-06 15:16:31 -0700493 if (pos != i)
494 table[pos] = table[i];
495 learn_symbol(table[pos].sym, table[pos].len);
496 pos++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700497 }
498 }
Paulo Marquesb3dbb4e2005-09-06 15:16:31 -0700499 table_cnt = pos;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700500}
501
Paulo Marques7c5d2492007-06-20 18:09:00 +0100502static void *find_token(unsigned char *str, int len, unsigned char *token)
503{
504 int i;
505
506 for (i = 0; i < len - 1; i++) {
507 if (str[i] == token[0] && str[i+1] == token[1])
508 return &str[i];
509 }
510 return NULL;
511}
512
Linus Torvalds1da177e2005-04-16 15:20:36 -0700513/* replace a given token in all the valid symbols. Use the sampled symbols
514 * to update the counts */
Paulo Marquesb3dbb4e2005-09-06 15:16:31 -0700515static void compress_symbols(unsigned char *str, int idx)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700516{
Paulo Marquesb3dbb4e2005-09-06 15:16:31 -0700517 unsigned int i, len, size;
518 unsigned char *p1, *p2;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700519
Paulo Marquesb3dbb4e2005-09-06 15:16:31 -0700520 for (i = 0; i < table_cnt; i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700521
522 len = table[i].len;
Paulo Marquesb3dbb4e2005-09-06 15:16:31 -0700523 p1 = table[i].sym;
524
525 /* find the token on the symbol */
Paulo Marques7c5d2492007-06-20 18:09:00 +0100526 p2 = find_token(p1, len, str);
Paulo Marquesb3dbb4e2005-09-06 15:16:31 -0700527 if (!p2) continue;
528
529 /* decrease the counts for this symbol's tokens */
530 forget_symbol(table[i].sym, len);
531
532 size = len;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700533
534 do {
Paulo Marquesb3dbb4e2005-09-06 15:16:31 -0700535 *p2 = idx;
536 p2++;
537 size -= (p2 - p1);
538 memmove(p2, p2 + 1, size);
539 p1 = p2;
540 len--;
541
542 if (size < 2) break;
543
Linus Torvalds1da177e2005-04-16 15:20:36 -0700544 /* find the token on the symbol */
Paulo Marques7c5d2492007-06-20 18:09:00 +0100545 p2 = find_token(p1, size, str);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700546
Paulo Marquesb3dbb4e2005-09-06 15:16:31 -0700547 } while (p2);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700548
Paulo Marquesb3dbb4e2005-09-06 15:16:31 -0700549 table[i].len = len;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700550
Paulo Marquesb3dbb4e2005-09-06 15:16:31 -0700551 /* increase the counts for this symbol's new tokens */
552 learn_symbol(table[i].sym, len);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700553 }
554}
555
556/* search the token with the maximum profit */
Paulo Marquesb3dbb4e2005-09-06 15:16:31 -0700557static int find_best_token(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700558{
Paulo Marquesb3dbb4e2005-09-06 15:16:31 -0700559 int i, best, bestprofit;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700560
561 bestprofit=-10000;
Paulo Marquesb3dbb4e2005-09-06 15:16:31 -0700562 best = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700563
Paulo Marquesb3dbb4e2005-09-06 15:16:31 -0700564 for (i = 0; i < 0x10000; i++) {
565 if (token_profit[i] > bestprofit) {
566 best = i;
567 bestprofit = token_profit[i];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700568 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700569 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700570 return best;
571}
572
573/* this is the core of the algorithm: calculate the "best" table */
574static void optimize_result(void)
575{
Paulo Marquesb3dbb4e2005-09-06 15:16:31 -0700576 int i, best;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700577
578 /* using the '\0' symbol last allows compress_symbols to use standard
579 * fast string functions */
580 for (i = 255; i >= 0; i--) {
581
582 /* if this table slot is empty (it is not used by an actual
583 * original char code */
584 if (!best_table_len[i]) {
585
586 /* find the token with the breates profit value */
587 best = find_best_token();
Xiaochen Wange0a04b12011-05-01 11:41:41 +0800588 if (token_profit[best] == 0)
589 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700590
591 /* place it in the "best" table */
Paulo Marquesb3dbb4e2005-09-06 15:16:31 -0700592 best_table_len[i] = 2;
593 best_table[i][0] = best & 0xFF;
594 best_table[i][1] = (best >> 8) & 0xFF;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700595
596 /* replace this token in all the valid symbols */
Paulo Marquesb3dbb4e2005-09-06 15:16:31 -0700597 compress_symbols(best_table[i], i);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700598 }
599 }
600}
601
602/* start by placing the symbols that are actually used on the table */
603static void insert_real_symbols_in_table(void)
604{
Paulo Marquesb3dbb4e2005-09-06 15:16:31 -0700605 unsigned int i, j, c;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700606
607 memset(best_table, 0, sizeof(best_table));
608 memset(best_table_len, 0, sizeof(best_table_len));
609
Paulo Marquesb3dbb4e2005-09-06 15:16:31 -0700610 for (i = 0; i < table_cnt; i++) {
611 for (j = 0; j < table[i].len; j++) {
612 c = table[i].sym[j];
613 best_table[c][0]=c;
614 best_table_len[c]=1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700615 }
616 }
617}
618
619static void optimize_token_table(void)
620{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700621 build_initial_tok_table();
622
623 insert_real_symbols_in_table();
624
Yoshinori Sato41f11a42005-05-01 08:59:06 -0700625 /* When valid symbol is not registered, exit to error */
Paulo Marquesb3dbb4e2005-09-06 15:16:31 -0700626 if (!table_cnt) {
Yoshinori Sato41f11a42005-05-01 08:59:06 -0700627 fprintf(stderr, "No valid symbol.\n");
628 exit(1);
629 }
630
Linus Torvalds1da177e2005-04-16 15:20:36 -0700631 optimize_result();
632}
633
Lai Jiangshanb478b7822009-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 Jiangshanb478b7822009-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 Jiangshanb478b7822009-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
742 relative_base = -1ULL;
743 for (i = 0; i < table_cnt; i++)
744 if (!symbol_absolute(&table[i]) &&
745 table[i].addr < relative_base)
746 relative_base = table[i].addr;
747}
748
Paulo Marquesb3dbb4e2005-09-06 15:16:31 -0700749int main(int argc, char **argv)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700750{
Yoshinori Sato41f11a42005-05-01 08:59:06 -0700751 if (argc >= 2) {
752 int i;
753 for (i = 1; i < argc; i++) {
754 if(strcmp(argv[i], "--all-symbols") == 0)
755 all_symbols = 1;
Rusty Russellc6bda7c2014-03-17 14:05:46 +1030756 else if (strcmp(argv[i], "--absolute-percpu") == 0)
757 absolute_percpu = 1;
Yoshinori Sato41f11a42005-05-01 08:59:06 -0700758 else if (strncmp(argv[i], "--symbol-prefix=", 16) == 0) {
759 char *p = &argv[i][16];
760 /* skip quote */
761 if ((*p == '"' && *(p+2) == '"') || (*p == '\'' && *(p+2) == '\''))
762 p++;
763 symbol_prefix_char = *p;
Ard Biesheuvel2213e9a2016-03-15 14:58:19 -0700764 } else if (strcmp(argv[i], "--base-relative") == 0)
765 base_relative = 1;
766 else
Yoshinori Sato41f11a42005-05-01 08:59:06 -0700767 usage();
768 }
769 } else if (argc != 1)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700770 usage();
771
772 read_map(stdin);
Rusty Russellc6bda7c2014-03-17 14:05:46 +1030773 if (absolute_percpu)
774 make_percpus_absolute();
Ard Biesheuvel2213e9a2016-03-15 14:58:19 -0700775 if (base_relative)
776 record_relative_base();
Sam Ravnborg2ea03892009-01-14 21:38:20 +0100777 sort_symbols();
778 optimize_token_table();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700779 write_src();
780
781 return 0;
782}