Lynx framebuffers multidomain implementation.
[linux/elbrus.git] / scripts / kallsyms.c
blobd2627803a88b98a725e2a95e93446e0c91bda87f
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 * 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%.
21 #include <stdio.h>
22 #include <stdlib.h>
23 #include <string.h>
24 #include <ctype.h>
26 #ifndef ARRAY_SIZE
27 #define ARRAY_SIZE(arr) (sizeof(arr) / sizeof(arr[0]))
28 #endif
30 #define KSYM_NAME_LEN 128
32 struct sym_entry {
33 unsigned long long addr;
34 unsigned int len;
35 unsigned int start_pos;
36 unsigned char *sym;
39 struct text_range {
40 const char *stext, *etext;
41 unsigned long long start, end;
44 static unsigned long long _text;
45 static struct text_range text_ranges[] = {
46 { "_stext", "_etext" },
47 { "_sinittext", "_einittext" },
48 { "_stext_l1", "_etext_l1" }, /* Blackfin on-chip L1 inst SRAM */
49 { "_stext_l2", "_etext_l2" }, /* Blackfin on-chip L2 SRAM */
51 #define text_range_text (&text_ranges[0])
52 #define text_range_inittext (&text_ranges[1])
54 static struct sym_entry *table;
55 static unsigned int table_size, table_cnt;
56 static int all_symbols = 0;
57 static char symbol_prefix_char = '\0';
58 static unsigned long long kernel_start_addr = 0;
60 int token_profit[0x10000];
62 /* the table that holds the result of the compression */
63 unsigned char best_table[256][2];
64 unsigned char best_table_len[256];
67 static void usage(void)
69 fprintf(stderr, "Usage: kallsyms [--all-symbols] "
70 "[--symbol-prefix=<prefix char>] "
71 "[--page-offset=<CONFIG_PAGE_OFFSET>] "
72 "< in.map > out.S\n");
73 exit(1);
77 * This ignores the intensely annoying "mapping symbols" found
78 * in ARM ELF files: $a, $t and $d.
80 static inline int is_arm_mapping_symbol(const char *str)
82 return str[0] == '$' && strchr("atd", str[1])
83 && (str[2] == '\0' || str[2] == '.');
86 static int read_symbol_tr(const char *sym, unsigned long long addr)
88 size_t i;
89 struct text_range *tr;
91 for (i = 0; i < ARRAY_SIZE(text_ranges); ++i) {
92 tr = &text_ranges[i];
94 if (strcmp(sym, tr->stext) == 0) {
95 tr->start = addr;
96 return 0;
97 } else if (strcmp(sym, tr->etext) == 0) {
98 tr->end = addr;
99 return 0;
103 return 1;
106 static int read_symbol(FILE *in, struct sym_entry *s)
108 char str[500];
109 char *sym, stype;
110 int rc;
112 rc = fscanf(in, "%llx %c %499s\n", &s->addr, &stype, str);
113 if (rc != 3) {
114 if (rc != EOF && fgets(str, 500, in) == NULL)
115 fprintf(stderr, "Read error or end of file.\n");
116 return -1;
118 if (strlen(str) > KSYM_NAME_LEN) {
119 fprintf(stderr, "Symbol %s too long for kallsyms (%zu vs %d).\n"
120 "Please increase KSYM_NAME_LEN both in kernel and kallsyms.c\n",
121 str, strlen(str), KSYM_NAME_LEN);
122 return -1;
125 sym = str;
126 /* skip prefix char */
127 if (symbol_prefix_char && str[0] == symbol_prefix_char)
128 sym++;
130 /* Ignore most absolute/undefined (?) symbols. */
131 if (strcmp(sym, "_text") == 0)
132 _text = s->addr;
133 else if (read_symbol_tr(sym, s->addr) == 0)
134 /* nothing to do */;
135 else if (toupper(stype) == 'A')
137 /* Keep these useful absolute symbols */
138 if (strcmp(sym, "__kernel_syscall_via_break") &&
139 strcmp(sym, "__kernel_syscall_via_epc") &&
140 strcmp(sym, "__kernel_sigtramp") &&
141 strcmp(sym, "__gp"))
142 return -1;
145 else if (toupper(stype) == 'U' ||
146 is_arm_mapping_symbol(sym))
147 return -1;
148 /* exclude also MIPS ELF local symbols ($L123 instead of .L123) */
149 else if (str[0] == '$')
150 return -1;
151 /* exclude debugging symbols */
152 else if (stype == 'N')
153 return -1;
155 /* include the type field in the symbol name, so that it gets
156 * compressed together */
157 s->len = strlen(str) + 1;
158 s->sym = malloc(s->len + 1);
159 if (!s->sym) {
160 fprintf(stderr, "kallsyms failure: "
161 "unable to allocate required amount of memory\n");
162 exit(EXIT_FAILURE);
164 strcpy((char *)s->sym + 1, str);
165 s->sym[0] = stype;
167 return 0;
170 static int symbol_valid_tr(struct sym_entry *s)
172 size_t i;
173 struct text_range *tr;
175 for (i = 0; i < ARRAY_SIZE(text_ranges); ++i) {
176 tr = &text_ranges[i];
178 if (s->addr >= tr->start && s->addr <= tr->end)
179 return 1;
182 return 0;
185 static int symbol_valid(struct sym_entry *s)
187 /* Symbols which vary between passes. Passes 1 and 2 must have
188 * identical symbol lists. The kallsyms_* symbols below are only added
189 * after pass 1, they would be included in pass 2 when --all-symbols is
190 * specified so exclude them to get a stable symbol list.
192 static char *special_symbols[] = {
193 "kallsyms_addresses",
194 "kallsyms_num_syms",
195 "kallsyms_names",
196 "kallsyms_markers",
197 "kallsyms_token_table",
198 "kallsyms_token_index",
200 /* Exclude linker generated symbols which vary between passes */
201 "_SDA_BASE_", /* ppc */
202 "_SDA2_BASE_", /* ppc */
203 NULL };
204 int i;
205 int offset = 1;
207 if (s->addr < kernel_start_addr)
208 return 0;
210 /* skip prefix char */
211 if (symbol_prefix_char && *(s->sym + 1) == symbol_prefix_char)
212 offset++;
214 /* if --all-symbols is not specified, then symbols outside the text
215 * and inittext sections are discarded */
216 if (!all_symbols) {
217 if (symbol_valid_tr(s) == 0)
218 return 0;
219 #if 0
221 * "Bug 69021 - Nondeterministic output from kallsyms ... maybe?
222 * Cause for inconsistent kallsyms data"
224 * https://bugzilla.kernel.org/show_bug.cgi?id=69021
226 * Dropping of a symbol " __stop___modver" in stage 2 causes
227 * reduction of 'kallsyms_addresses' structure size by 8 bytes,
228 * and the following comparison of stage 2 and stage 3 outputs
229 * changes. Workaround by removing the check.
231 * MCST
233 /* Corner case. Discard any symbols with the same value as
234 * _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.
239 if ((s->addr == text_range_text->end &&
240 strcmp((char *)s->sym + offset, text_range_text->etext)) ||
241 (s->addr == text_range_inittext->end &&
242 strcmp((char *)s->sym + offset, text_range_inittext->etext)))
243 return 0;
244 #endif
247 /* Exclude symbols which vary between passes. */
248 if (strstr((char *)s->sym + offset, "_compiled."))
249 return 0;
251 for (i = 0; special_symbols[i]; i++)
252 if( strcmp((char *)s->sym + offset, special_symbols[i]) == 0 )
253 return 0;
255 return 1;
258 static void read_map(FILE *in)
260 while (!feof(in)) {
261 if (table_cnt >= table_size) {
262 table_size += 10000;
263 table = realloc(table, sizeof(*table) * table_size);
264 if (!table) {
265 fprintf(stderr, "out of memory\n");
266 exit (1);
269 if (read_symbol(in, &table[table_cnt]) == 0) {
270 table[table_cnt].start_pos = table_cnt;
271 table_cnt++;
276 static void output_label(char *label)
278 if (symbol_prefix_char)
279 printf(".globl %c%s\n", symbol_prefix_char, label);
280 else
281 printf(".globl %s\n", label);
282 printf("\tALGN\n");
283 if (symbol_prefix_char)
284 printf("%c%s:\n", symbol_prefix_char, label);
285 else
286 printf("%s:\n", label);
289 /* uncompress a compressed symbol. When this function is called, the best table
290 * might still be compressed itself, so the function needs to be recursive */
291 static int expand_symbol(unsigned char *data, int len, char *result)
293 int c, rlen, total=0;
295 while (len) {
296 c = *data;
297 /* if the table holds a single char that is the same as the one
298 * we are looking for, then end the search */
299 if (best_table[c][0]==c && best_table_len[c]==1) {
300 *result++ = c;
301 total++;
302 } else {
303 /* if not, recurse and expand */
304 rlen = expand_symbol(best_table[c], best_table_len[c], result);
305 total += rlen;
306 result += rlen;
308 data++;
309 len--;
311 *result=0;
313 return total;
316 static void write_src(void)
318 unsigned int i, k, off;
319 unsigned int best_idx[256];
320 unsigned int *markers;
321 char buf[KSYM_NAME_LEN];
323 printf("#include <asm/types.h>\n");
324 printf("#if BITS_PER_LONG == 64\n");
325 printf("#define PTR .quad\n");
326 printf("#define ALGN .align 8\n");
327 printf("#else\n");
328 printf("#define PTR .long\n");
329 printf("#define ALGN .align 4\n");
330 printf("#endif\n");
332 printf("\t.section .rodata, \"a\"\n");
334 /* Provide proper symbols relocatability by their '_text'
335 * relativeness. The symbol names cannot be used to construct
336 * normal symbol references as the list of symbols contains
337 * symbols that are declared static and are private to their
338 * .o files. This prevents .tmp_kallsyms.o or any other
339 * object from referencing them.
341 output_label("kallsyms_addresses");
342 for (i = 0; i < table_cnt; i++) {
343 if (toupper(table[i].sym[0]) != 'A') {
344 if (_text <= table[i].addr)
345 printf("\tPTR\t_text + %#llx\n",
346 table[i].addr - _text);
347 else
348 printf("\tPTR\t_text - %#llx\n",
349 _text - table[i].addr);
350 } else {
351 printf("\tPTR\t%#llx\n", table[i].addr);
354 printf("\n");
356 output_label("kallsyms_num_syms");
357 printf("\tPTR\t%d\n", table_cnt);
358 printf("\n");
360 /* table of offset markers, that give the offset in the compressed stream
361 * every 256 symbols */
362 markers = malloc(sizeof(unsigned int) * ((table_cnt + 255) / 256));
363 if (!markers) {
364 fprintf(stderr, "kallsyms failure: "
365 "unable to allocate required memory\n");
366 exit(EXIT_FAILURE);
369 output_label("kallsyms_names");
370 off = 0;
371 for (i = 0; i < table_cnt; i++) {
372 if ((i & 0xFF) == 0)
373 markers[i >> 8] = off;
375 printf("\t.byte 0x%02x", table[i].len);
376 for (k = 0; k < table[i].len; k++)
377 printf(", 0x%02x", table[i].sym[k]);
378 printf("\n");
380 off += table[i].len + 1;
382 printf("\n");
384 output_label("kallsyms_markers");
385 for (i = 0; i < ((table_cnt + 255) >> 8); i++)
386 printf("\tPTR\t%d\n", markers[i]);
387 printf("\n");
389 free(markers);
391 output_label("kallsyms_token_table");
392 off = 0;
393 for (i = 0; i < 256; i++) {
394 best_idx[i] = off;
395 expand_symbol(best_table[i], best_table_len[i], buf);
396 printf("\t.asciz\t\"%s\"\n", buf);
397 off += strlen(buf) + 1;
399 printf("\n");
401 output_label("kallsyms_token_index");
402 for (i = 0; i < 256; i++)
403 printf("\t.short\t%d\n", best_idx[i]);
404 printf("\n");
408 /* table lookup compression functions */
410 /* count all the possible tokens in a symbol */
411 static void learn_symbol(unsigned char *symbol, int len)
413 int i;
415 for (i = 0; i < len - 1; i++)
416 token_profit[ symbol[i] + (symbol[i + 1] << 8) ]++;
419 /* decrease the count for all the possible tokens in a symbol */
420 static void forget_symbol(unsigned char *symbol, int len)
422 int i;
424 for (i = 0; i < len - 1; i++)
425 token_profit[ symbol[i] + (symbol[i + 1] << 8) ]--;
428 /* remove all the invalid symbols from the table and do the initial token count */
429 static void build_initial_tok_table(void)
431 unsigned int i, pos;
433 pos = 0;
434 for (i = 0; i < table_cnt; i++) {
435 if ( symbol_valid(&table[i]) ) {
436 if (pos != i)
437 table[pos] = table[i];
438 learn_symbol(table[pos].sym, table[pos].len);
439 pos++;
442 table_cnt = pos;
445 static void *find_token(unsigned char *str, int len, unsigned char *token)
447 int i;
449 for (i = 0; i < len - 1; i++) {
450 if (str[i] == token[0] && str[i+1] == token[1])
451 return &str[i];
453 return NULL;
456 /* replace a given token in all the valid symbols. Use the sampled symbols
457 * to update the counts */
458 static void compress_symbols(unsigned char *str, int idx)
460 unsigned int i, len, size;
461 unsigned char *p1, *p2;
463 for (i = 0; i < table_cnt; i++) {
465 len = table[i].len;
466 p1 = table[i].sym;
468 /* find the token on the symbol */
469 p2 = find_token(p1, len, str);
470 if (!p2) continue;
472 /* decrease the counts for this symbol's tokens */
473 forget_symbol(table[i].sym, len);
475 size = len;
477 do {
478 *p2 = idx;
479 p2++;
480 size -= (p2 - p1);
481 memmove(p2, p2 + 1, size);
482 p1 = p2;
483 len--;
485 if (size < 2) break;
487 /* find the token on the symbol */
488 p2 = find_token(p1, size, str);
490 } while (p2);
492 table[i].len = len;
494 /* increase the counts for this symbol's new tokens */
495 learn_symbol(table[i].sym, len);
499 /* search the token with the maximum profit */
500 static int find_best_token(void)
502 int i, best, bestprofit;
504 bestprofit=-10000;
505 best = 0;
507 for (i = 0; i < 0x10000; i++) {
508 if (token_profit[i] > bestprofit) {
509 best = i;
510 bestprofit = token_profit[i];
513 return best;
516 /* this is the core of the algorithm: calculate the "best" table */
517 static void optimize_result(void)
519 int i, best;
521 /* using the '\0' symbol last allows compress_symbols to use standard
522 * fast string functions */
523 for (i = 255; i >= 0; i--) {
525 /* if this table slot is empty (it is not used by an actual
526 * original char code */
527 if (!best_table_len[i]) {
529 /* find the token with the breates profit value */
530 best = find_best_token();
531 if (token_profit[best] == 0)
532 break;
534 /* place it in the "best" table */
535 best_table_len[i] = 2;
536 best_table[i][0] = best & 0xFF;
537 best_table[i][1] = (best >> 8) & 0xFF;
539 /* replace this token in all the valid symbols */
540 compress_symbols(best_table[i], i);
545 /* start by placing the symbols that are actually used on the table */
546 static void insert_real_symbols_in_table(void)
548 unsigned int i, j, c;
550 memset(best_table, 0, sizeof(best_table));
551 memset(best_table_len, 0, sizeof(best_table_len));
553 for (i = 0; i < table_cnt; i++) {
554 for (j = 0; j < table[i].len; j++) {
555 c = table[i].sym[j];
556 best_table[c][0]=c;
557 best_table_len[c]=1;
562 static void optimize_token_table(void)
564 build_initial_tok_table();
566 insert_real_symbols_in_table();
568 /* When valid symbol is not registered, exit to error */
569 if (!table_cnt) {
570 fprintf(stderr, "No valid symbol.\n");
571 exit(1);
574 optimize_result();
577 /* guess for "linker script provide" symbol */
578 static int may_be_linker_script_provide_symbol(const struct sym_entry *se)
580 const char *symbol = (char *)se->sym + 1;
581 int len = se->len - 1;
583 if (len < 8)
584 return 0;
586 if (symbol[0] != '_' || symbol[1] != '_')
587 return 0;
589 /* __start_XXXXX */
590 if (!memcmp(symbol + 2, "start_", 6))
591 return 1;
593 /* __stop_XXXXX */
594 if (!memcmp(symbol + 2, "stop_", 5))
595 return 1;
597 /* __end_XXXXX */
598 if (!memcmp(symbol + 2, "end_", 4))
599 return 1;
601 /* __XXXXX_start */
602 if (!memcmp(symbol + len - 6, "_start", 6))
603 return 1;
605 /* __XXXXX_end */
606 if (!memcmp(symbol + len - 4, "_end", 4))
607 return 1;
609 return 0;
612 static int prefix_underscores_count(const char *str)
614 const char *tail = str;
616 while (*tail == '_')
617 tail++;
619 return tail - str;
622 static int compare_symbols(const void *a, const void *b)
624 const struct sym_entry *sa;
625 const struct sym_entry *sb;
626 int wa, wb;
628 sa = a;
629 sb = b;
631 /* sort by address first */
632 if (sa->addr > sb->addr)
633 return 1;
634 if (sa->addr < sb->addr)
635 return -1;
637 /* sort by "weakness" type */
638 wa = (sa->sym[0] == 'w') || (sa->sym[0] == 'W');
639 wb = (sb->sym[0] == 'w') || (sb->sym[0] == 'W');
640 if (wa != wb)
641 return wa - wb;
643 /* sort by "linker script provide" type */
644 wa = may_be_linker_script_provide_symbol(sa);
645 wb = may_be_linker_script_provide_symbol(sb);
646 if (wa != wb)
647 return wa - wb;
649 /* sort by the number of prefix underscores */
650 wa = prefix_underscores_count((const char *)sa->sym + 1);
651 wb = prefix_underscores_count((const char *)sb->sym + 1);
652 if (wa != wb)
653 return wa - wb;
655 /* sort by initial order, so that other symbols are left undisturbed */
656 return sa->start_pos - sb->start_pos;
659 static void sort_symbols(void)
661 qsort(table, table_cnt, sizeof(struct sym_entry), compare_symbols);
664 int main(int argc, char **argv)
666 if (argc >= 2) {
667 int i;
668 for (i = 1; i < argc; i++) {
669 if(strcmp(argv[i], "--all-symbols") == 0)
670 all_symbols = 1;
671 else if (strncmp(argv[i], "--symbol-prefix=", 16) == 0) {
672 char *p = &argv[i][16];
673 /* skip quote */
674 if ((*p == '"' && *(p+2) == '"') || (*p == '\'' && *(p+2) == '\''))
675 p++;
676 symbol_prefix_char = *p;
677 } else if (strncmp(argv[i], "--page-offset=", 14) == 0) {
678 const char *p = &argv[i][14];
679 kernel_start_addr = strtoull(p, NULL, 16);
680 } else
681 usage();
683 } else if (argc != 1)
684 usage();
686 read_map(stdin);
687 sort_symbols();
688 optimize_token_table();
689 write_src();
691 return 0;