Committer: Michael Beasley <mike@snafu.setup>
[mikesnafu-overlay.git] / scripts / kallsyms.c
blobc912137f80e247d0b8076e32f7386005127889a0
1 /* Generate assembler source containing symbol information
3 * Copyright 2002 by Kai Germaschewski
5 * This software may be used and distributed according to the terms
6 * of the GNU General Public License, incorporated herein by reference.
8 * Usage: nm -n vmlinux | scripts/kallsyms [--all-symbols] > symbols.S
10 * ChangeLog:
12 * (25/Aug/2004) Paulo Marques <pmarques@grupopie.com>
13 * Changed the compression method from stem compression to "table lookup"
14 * compression
16 * Table compression uses all the unused char codes on the symbols and
17 * maps these to the most used substrings (tokens). For instance, it might
18 * map char code 0xF7 to represent "write_" and then in every symbol where
19 * "write_" appears it can be replaced by 0xF7, saving 5 bytes.
20 * The used codes themselves are also placed in the table so that the
21 * decompresion can work without "special cases".
22 * Applied to kernel symbols, this usually produces a compression ratio
23 * of about 50%.
27 #include <stdio.h>
28 #include <stdlib.h>
29 #include <string.h>
30 #include <ctype.h>
32 #define KSYM_NAME_LEN 128
34 struct sym_entry {
35 unsigned long long addr;
36 unsigned int len;
37 unsigned int start_pos;
38 unsigned char *sym;
41 static struct sym_entry *table;
42 static unsigned int table_size, table_cnt;
43 static unsigned long long _text, _stext, _etext, _sinittext, _einittext;
44 static int all_symbols = 0;
45 static char symbol_prefix_char = '\0';
47 int token_profit[0x10000];
49 /* the table that holds the result of the compression */
50 unsigned char best_table[256][2];
51 unsigned char best_table_len[256];
54 static void usage(void)
56 fprintf(stderr, "Usage: kallsyms [--all-symbols] [--symbol-prefix=<prefix char>] < in.map > out.S\n");
57 exit(1);
61 * This ignores the intensely annoying "mapping symbols" found
62 * in ARM ELF files: $a, $t and $d.
64 static inline int is_arm_mapping_symbol(const char *str)
66 return str[0] == '$' && strchr("atd", str[1])
67 && (str[2] == '\0' || str[2] == '.');
70 static int read_symbol(FILE *in, struct sym_entry *s)
72 char str[500];
73 char *sym, stype;
74 int rc;
76 rc = fscanf(in, "%llx %c %499s\n", &s->addr, &stype, str);
77 if (rc != 3) {
78 if (rc != EOF) {
79 /* skip line */
80 fgets(str, 500, in);
82 return -1;
85 sym = str;
86 /* skip prefix char */
87 if (symbol_prefix_char && str[0] == symbol_prefix_char)
88 sym++;
90 /* Ignore most absolute/undefined (?) symbols. */
91 if (strcmp(sym, "_text") == 0)
92 _text = s->addr;
93 else if (strcmp(sym, "_stext") == 0)
94 _stext = s->addr;
95 else if (strcmp(sym, "_etext") == 0)
96 _etext = s->addr;
97 else if (strcmp(sym, "_sinittext") == 0)
98 _sinittext = s->addr;
99 else if (strcmp(sym, "_einittext") == 0)
100 _einittext = s->addr;
101 else if (toupper(stype) == 'A')
103 /* Keep these useful absolute symbols */
104 if (strcmp(sym, "__kernel_syscall_via_break") &&
105 strcmp(sym, "__kernel_syscall_via_epc") &&
106 strcmp(sym, "__kernel_sigtramp") &&
107 strcmp(sym, "__gp"))
108 return -1;
111 else if (toupper(stype) == 'U' ||
112 is_arm_mapping_symbol(sym))
113 return -1;
114 /* exclude also MIPS ELF local symbols ($L123 instead of .L123) */
115 else if (str[0] == '$')
116 return -1;
118 /* include the type field in the symbol name, so that it gets
119 * compressed together */
120 s->len = strlen(str) + 1;
121 s->sym = malloc(s->len + 1);
122 if (!s->sym) {
123 fprintf(stderr, "kallsyms failure: "
124 "unable to allocate required amount of memory\n");
125 exit(EXIT_FAILURE);
127 strcpy((char *)s->sym + 1, str);
128 s->sym[0] = stype;
130 return 0;
133 static int symbol_valid(struct sym_entry *s)
135 /* Symbols which vary between passes. Passes 1 and 2 must have
136 * identical symbol lists. The kallsyms_* symbols below are only added
137 * after pass 1, they would be included in pass 2 when --all-symbols is
138 * specified so exclude them to get a stable symbol list.
140 static char *special_symbols[] = {
141 "kallsyms_addresses",
142 "kallsyms_num_syms",
143 "kallsyms_names",
144 "kallsyms_markers",
145 "kallsyms_token_table",
146 "kallsyms_token_index",
148 /* Exclude linker generated symbols which vary between passes */
149 "_SDA_BASE_", /* ppc */
150 "_SDA2_BASE_", /* ppc */
151 NULL };
152 int i;
153 int offset = 1;
155 /* skip prefix char */
156 if (symbol_prefix_char && *(s->sym + 1) == symbol_prefix_char)
157 offset++;
159 /* if --all-symbols is not specified, then symbols outside the text
160 * and inittext sections are discarded */
161 if (!all_symbols) {
162 if ((s->addr < _stext || s->addr > _etext)
163 && (s->addr < _sinittext || s->addr > _einittext))
164 return 0;
165 /* Corner case. Discard any symbols with the same value as
166 * _etext _einittext; they can move between pass 1 and 2 when
167 * the kallsyms data are added. If these symbols move then
168 * they may get dropped in pass 2, which breaks the kallsyms
169 * rules.
171 if ((s->addr == _etext &&
172 strcmp((char *)s->sym + offset, "_etext")) ||
173 (s->addr == _einittext &&
174 strcmp((char *)s->sym + offset, "_einittext")))
175 return 0;
178 /* Exclude symbols which vary between passes. */
179 if (strstr((char *)s->sym + offset, "_compiled."))
180 return 0;
182 for (i = 0; special_symbols[i]; i++)
183 if( strcmp((char *)s->sym + offset, special_symbols[i]) == 0 )
184 return 0;
186 return 1;
189 static void read_map(FILE *in)
191 while (!feof(in)) {
192 if (table_cnt >= table_size) {
193 table_size += 10000;
194 table = realloc(table, sizeof(*table) * table_size);
195 if (!table) {
196 fprintf(stderr, "out of memory\n");
197 exit (1);
200 if (read_symbol(in, &table[table_cnt]) == 0) {
201 table[table_cnt].start_pos = table_cnt;
202 table_cnt++;
207 static void output_label(char *label)
209 if (symbol_prefix_char)
210 printf(".globl %c%s\n", symbol_prefix_char, label);
211 else
212 printf(".globl %s\n", label);
213 printf("\tALGN\n");
214 if (symbol_prefix_char)
215 printf("%c%s:\n", symbol_prefix_char, label);
216 else
217 printf("%s:\n", label);
220 /* uncompress a compressed symbol. When this function is called, the best table
221 * might still be compressed itself, so the function needs to be recursive */
222 static int expand_symbol(unsigned char *data, int len, char *result)
224 int c, rlen, total=0;
226 while (len) {
227 c = *data;
228 /* if the table holds a single char that is the same as the one
229 * we are looking for, then end the search */
230 if (best_table[c][0]==c && best_table_len[c]==1) {
231 *result++ = c;
232 total++;
233 } else {
234 /* if not, recurse and expand */
235 rlen = expand_symbol(best_table[c], best_table_len[c], result);
236 total += rlen;
237 result += rlen;
239 data++;
240 len--;
242 *result=0;
244 return total;
247 static void write_src(void)
249 unsigned int i, k, off;
250 unsigned int best_idx[256];
251 unsigned int *markers;
252 char buf[KSYM_NAME_LEN];
254 printf("#include <asm/types.h>\n");
255 printf("#if BITS_PER_LONG == 64\n");
256 printf("#define PTR .quad\n");
257 printf("#define ALGN .align 8\n");
258 printf("#else\n");
259 printf("#define PTR .long\n");
260 printf("#define ALGN .align 4\n");
261 printf("#endif\n");
263 printf("\t.section .rodata, \"a\"\n");
265 /* Provide proper symbols relocatability by their '_text'
266 * relativeness. The symbol names cannot be used to construct
267 * normal symbol references as the list of symbols contains
268 * symbols that are declared static and are private to their
269 * .o files. This prevents .tmp_kallsyms.o or any other
270 * object from referencing them.
272 output_label("kallsyms_addresses");
273 for (i = 0; i < table_cnt; i++) {
274 if (toupper(table[i].sym[0]) != 'A') {
275 if (_text <= table[i].addr)
276 printf("\tPTR\t_text + %#llx\n",
277 table[i].addr - _text);
278 else
279 printf("\tPTR\t_text - %#llx\n",
280 _text - table[i].addr);
281 } else {
282 printf("\tPTR\t%#llx\n", table[i].addr);
285 printf("\n");
287 output_label("kallsyms_num_syms");
288 printf("\tPTR\t%d\n", table_cnt);
289 printf("\n");
291 /* table of offset markers, that give the offset in the compressed stream
292 * every 256 symbols */
293 markers = malloc(sizeof(unsigned int) * ((table_cnt + 255) / 256));
294 if (!markers) {
295 fprintf(stderr, "kallsyms failure: "
296 "unable to allocate required memory\n");
297 exit(EXIT_FAILURE);
300 output_label("kallsyms_names");
301 off = 0;
302 for (i = 0; i < table_cnt; i++) {
303 if ((i & 0xFF) == 0)
304 markers[i >> 8] = off;
306 printf("\t.byte 0x%02x", table[i].len);
307 for (k = 0; k < table[i].len; k++)
308 printf(", 0x%02x", table[i].sym[k]);
309 printf("\n");
311 off += table[i].len + 1;
313 printf("\n");
315 output_label("kallsyms_markers");
316 for (i = 0; i < ((table_cnt + 255) >> 8); i++)
317 printf("\tPTR\t%d\n", markers[i]);
318 printf("\n");
320 free(markers);
322 output_label("kallsyms_token_table");
323 off = 0;
324 for (i = 0; i < 256; i++) {
325 best_idx[i] = off;
326 expand_symbol(best_table[i], best_table_len[i], buf);
327 printf("\t.asciz\t\"%s\"\n", buf);
328 off += strlen(buf) + 1;
330 printf("\n");
332 output_label("kallsyms_token_index");
333 for (i = 0; i < 256; i++)
334 printf("\t.short\t%d\n", best_idx[i]);
335 printf("\n");
339 /* table lookup compression functions */
341 /* count all the possible tokens in a symbol */
342 static void learn_symbol(unsigned char *symbol, int len)
344 int i;
346 for (i = 0; i < len - 1; i++)
347 token_profit[ symbol[i] + (symbol[i + 1] << 8) ]++;
350 /* decrease the count for all the possible tokens in a symbol */
351 static void forget_symbol(unsigned char *symbol, int len)
353 int i;
355 for (i = 0; i < len - 1; i++)
356 token_profit[ symbol[i] + (symbol[i + 1] << 8) ]--;
359 /* remove all the invalid symbols from the table and do the initial token count */
360 static void build_initial_tok_table(void)
362 unsigned int i, pos;
364 pos = 0;
365 for (i = 0; i < table_cnt; i++) {
366 if ( symbol_valid(&table[i]) ) {
367 if (pos != i)
368 table[pos] = table[i];
369 learn_symbol(table[pos].sym, table[pos].len);
370 pos++;
373 table_cnt = pos;
376 static void *find_token(unsigned char *str, int len, unsigned char *token)
378 int i;
380 for (i = 0; i < len - 1; i++) {
381 if (str[i] == token[0] && str[i+1] == token[1])
382 return &str[i];
384 return NULL;
387 /* replace a given token in all the valid symbols. Use the sampled symbols
388 * to update the counts */
389 static void compress_symbols(unsigned char *str, int idx)
391 unsigned int i, len, size;
392 unsigned char *p1, *p2;
394 for (i = 0; i < table_cnt; i++) {
396 len = table[i].len;
397 p1 = table[i].sym;
399 /* find the token on the symbol */
400 p2 = find_token(p1, len, str);
401 if (!p2) continue;
403 /* decrease the counts for this symbol's tokens */
404 forget_symbol(table[i].sym, len);
406 size = len;
408 do {
409 *p2 = idx;
410 p2++;
411 size -= (p2 - p1);
412 memmove(p2, p2 + 1, size);
413 p1 = p2;
414 len--;
416 if (size < 2) break;
418 /* find the token on the symbol */
419 p2 = find_token(p1, size, str);
421 } while (p2);
423 table[i].len = len;
425 /* increase the counts for this symbol's new tokens */
426 learn_symbol(table[i].sym, len);
430 /* search the token with the maximum profit */
431 static int find_best_token(void)
433 int i, best, bestprofit;
435 bestprofit=-10000;
436 best = 0;
438 for (i = 0; i < 0x10000; i++) {
439 if (token_profit[i] > bestprofit) {
440 best = i;
441 bestprofit = token_profit[i];
444 return best;
447 /* this is the core of the algorithm: calculate the "best" table */
448 static void optimize_result(void)
450 int i, best;
452 /* using the '\0' symbol last allows compress_symbols to use standard
453 * fast string functions */
454 for (i = 255; i >= 0; i--) {
456 /* if this table slot is empty (it is not used by an actual
457 * original char code */
458 if (!best_table_len[i]) {
460 /* find the token with the breates profit value */
461 best = find_best_token();
463 /* place it in the "best" table */
464 best_table_len[i] = 2;
465 best_table[i][0] = best & 0xFF;
466 best_table[i][1] = (best >> 8) & 0xFF;
468 /* replace this token in all the valid symbols */
469 compress_symbols(best_table[i], i);
474 /* start by placing the symbols that are actually used on the table */
475 static void insert_real_symbols_in_table(void)
477 unsigned int i, j, c;
479 memset(best_table, 0, sizeof(best_table));
480 memset(best_table_len, 0, sizeof(best_table_len));
482 for (i = 0; i < table_cnt; i++) {
483 for (j = 0; j < table[i].len; j++) {
484 c = table[i].sym[j];
485 best_table[c][0]=c;
486 best_table_len[c]=1;
491 static void optimize_token_table(void)
493 build_initial_tok_table();
495 insert_real_symbols_in_table();
497 /* When valid symbol is not registered, exit to error */
498 if (!table_cnt) {
499 fprintf(stderr, "No valid symbol.\n");
500 exit(1);
503 optimize_result();
506 static int compare_symbols(const void *a, const void *b)
508 const struct sym_entry *sa;
509 const struct sym_entry *sb;
510 int wa, wb;
512 sa = a;
513 sb = b;
515 /* sort by address first */
516 if (sa->addr > sb->addr)
517 return 1;
518 if (sa->addr < sb->addr)
519 return -1;
521 /* sort by "weakness" type */
522 wa = (sa->sym[0] == 'w') || (sa->sym[0] == 'W');
523 wb = (sb->sym[0] == 'w') || (sb->sym[0] == 'W');
524 if (wa != wb)
525 return wa - wb;
527 /* sort by initial order, so that other symbols are left undisturbed */
528 return sa->start_pos - sb->start_pos;
531 static void sort_symbols(void)
533 qsort(table, table_cnt, sizeof(struct sym_entry), compare_symbols);
536 int main(int argc, char **argv)
538 if (argc >= 2) {
539 int i;
540 for (i = 1; i < argc; i++) {
541 if(strcmp(argv[i], "--all-symbols") == 0)
542 all_symbols = 1;
543 else if (strncmp(argv[i], "--symbol-prefix=", 16) == 0) {
544 char *p = &argv[i][16];
545 /* skip quote */
546 if ((*p == '"' && *(p+2) == '"') || (*p == '\'' && *(p+2) == '\''))
547 p++;
548 symbol_prefix_char = *p;
549 } else
550 usage();
552 } else if (argc != 1)
553 usage();
555 read_map(stdin);
556 sort_symbols();
557 optimize_token_table();
558 write_src();
560 return 0;