Kbuild: kallsyms: ignore veneers emitted by the ARM linker
[firefly-linux-kernel-4.4.55.git] / scripts / kallsyms.c
1 /* 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  *
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%.
18  *
19  */
20
21 #include <stdio.h>
22 #include <stdlib.h>
23 #include <string.h>
24 #include <ctype.h>
25
26 #ifndef ARRAY_SIZE
27 #define ARRAY_SIZE(arr) (sizeof(arr) / sizeof(arr[0]))
28 #endif
29
30 #define KSYM_NAME_LEN           128
31
32 struct sym_entry {
33         unsigned long long addr;
34         unsigned int len;
35         unsigned int start_pos;
36         unsigned char *sym;
37 };
38
39 struct addr_range {
40         const char *start_sym, *end_sym;
41         unsigned long long start, end;
42 };
43
44 static unsigned long long _text;
45 static struct addr_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 */
50 };
51 #define text_range_text     (&text_ranges[0])
52 #define text_range_inittext (&text_ranges[1])
53
54 static struct addr_range percpu_range = {
55         "__per_cpu_start", "__per_cpu_end", -1ULL, 0
56 };
57
58 static struct sym_entry *table;
59 static unsigned int table_size, table_cnt;
60 static int all_symbols = 0;
61 static int absolute_percpu = 0;
62 static char symbol_prefix_char = '\0';
63 static unsigned long long kernel_start_addr = 0;
64
65 int token_profit[0x10000];
66
67 /* the table that holds the result of the compression */
68 unsigned char best_table[256][2];
69 unsigned char best_table_len[256];
70
71
72 static void usage(void)
73 {
74         fprintf(stderr, "Usage: kallsyms [--all-symbols] "
75                         "[--symbol-prefix=<prefix char>] "
76                         "[--page-offset=<CONFIG_PAGE_OFFSET>] "
77                         "< in.map > out.S\n");
78         exit(1);
79 }
80
81 /*
82  * This ignores the intensely annoying "mapping symbols" found
83  * in ARM ELF files: $a, $t and $d.
84  */
85 static inline int is_arm_mapping_symbol(const char *str)
86 {
87         return str[0] == '$' && strchr("axtd", str[1])
88                && (str[2] == '\0' || str[2] == '.');
89 }
90
91 static int check_symbol_range(const char *sym, unsigned long long addr,
92                               struct addr_range *ranges, int entries)
93 {
94         size_t i;
95         struct addr_range *ar;
96
97         for (i = 0; i < entries; ++i) {
98                 ar = &ranges[i];
99
100                 if (strcmp(sym, ar->start_sym) == 0) {
101                         ar->start = addr;
102                         return 0;
103                 } else if (strcmp(sym, ar->end_sym) == 0) {
104                         ar->end = addr;
105                         return 0;
106                 }
107         }
108
109         return 1;
110 }
111
112 static int read_symbol(FILE *in, struct sym_entry *s)
113 {
114         char str[500];
115         char *sym, stype;
116         int rc;
117
118         rc = fscanf(in, "%llx %c %499s\n", &s->addr, &stype, str);
119         if (rc != 3) {
120                 if (rc != EOF && fgets(str, 500, in) == NULL)
121                         fprintf(stderr, "Read error or end of file.\n");
122                 return -1;
123         }
124         if (strlen(str) > KSYM_NAME_LEN) {
125                 fprintf(stderr, "Symbol %s too long for kallsyms (%zu vs %d).\n"
126                                 "Please increase KSYM_NAME_LEN both in kernel and kallsyms.c\n",
127                         str, strlen(str), KSYM_NAME_LEN);
128                 return -1;
129         }
130
131         sym = str;
132         /* skip prefix char */
133         if (symbol_prefix_char && str[0] == symbol_prefix_char)
134                 sym++;
135
136         /* Ignore most absolute/undefined (?) symbols. */
137         if (strcmp(sym, "_text") == 0)
138                 _text = s->addr;
139         else if (check_symbol_range(sym, s->addr, text_ranges,
140                                     ARRAY_SIZE(text_ranges)) == 0)
141                 /* nothing to do */;
142         else if (toupper(stype) == 'A')
143         {
144                 /* Keep these useful absolute symbols */
145                 if (strcmp(sym, "__kernel_syscall_via_break") &&
146                     strcmp(sym, "__kernel_syscall_via_epc") &&
147                     strcmp(sym, "__kernel_sigtramp") &&
148                     strcmp(sym, "__gp"))
149                         return -1;
150
151         }
152         else if (toupper(stype) == 'U' ||
153                  is_arm_mapping_symbol(sym))
154                 return -1;
155         /* exclude also MIPS ELF local symbols ($L123 instead of .L123) */
156         else if (str[0] == '$')
157                 return -1;
158         /* exclude debugging symbols */
159         else if (stype == 'N')
160                 return -1;
161
162         /* include the type field in the symbol name, so that it gets
163          * compressed together */
164         s->len = strlen(str) + 1;
165         s->sym = malloc(s->len + 1);
166         if (!s->sym) {
167                 fprintf(stderr, "kallsyms failure: "
168                         "unable to allocate required amount of memory\n");
169                 exit(EXIT_FAILURE);
170         }
171         strcpy((char *)s->sym + 1, str);
172         s->sym[0] = stype;
173
174         /* Record if we've found __per_cpu_start/end. */
175         check_symbol_range(sym, s->addr, &percpu_range, 1);
176
177         return 0;
178 }
179
180 static int symbol_in_range(struct sym_entry *s, struct addr_range *ranges,
181                            int entries)
182 {
183         size_t i;
184         struct addr_range *ar;
185
186         for (i = 0; i < entries; ++i) {
187                 ar = &ranges[i];
188
189                 if (s->addr >= ar->start && s->addr <= ar->end)
190                         return 1;
191         }
192
193         return 0;
194 }
195
196 static int symbol_valid(struct sym_entry *s)
197 {
198         /* Symbols which vary between passes.  Passes 1 and 2 must have
199          * identical symbol lists.  The kallsyms_* symbols below are only added
200          * after pass 1, they would be included in pass 2 when --all-symbols is
201          * specified so exclude them to get a stable symbol list.
202          */
203         static char *special_symbols[] = {
204                 "kallsyms_addresses",
205                 "kallsyms_num_syms",
206                 "kallsyms_names",
207                 "kallsyms_markers",
208                 "kallsyms_token_table",
209                 "kallsyms_token_index",
210
211         /* Exclude linker generated symbols which vary between passes */
212                 "_SDA_BASE_",           /* ppc */
213                 "_SDA2_BASE_",          /* ppc */
214                 NULL };
215
216         static char *special_suffixes[] = {
217                 "_compiled.",           /* gcc < 3.0: "gcc[0-9]_compiled." */
218                 "_veneer",              /* arm */
219                 NULL };
220
221         int i;
222         char *sym_name = (char *)s->sym + 1;
223
224
225         if (s->addr < kernel_start_addr)
226                 return 0;
227
228         /* skip prefix char */
229         if (symbol_prefix_char && *sym_name == symbol_prefix_char)
230                 sym_name++;
231
232
233         /* if --all-symbols is not specified, then symbols outside the text
234          * and inittext sections are discarded */
235         if (!all_symbols) {
236                 if (symbol_in_range(s, text_ranges,
237                                     ARRAY_SIZE(text_ranges)) == 0)
238                         return 0;
239                 /* Corner case.  Discard any symbols with the same value as
240                  * _etext _einittext; they can move between pass 1 and 2 when
241                  * the kallsyms data are added.  If these symbols move then
242                  * they may get dropped in pass 2, which breaks the kallsyms
243                  * rules.
244                  */
245                 if ((s->addr == text_range_text->end &&
246                                 strcmp(sym_name,
247                                        text_range_text->end_sym)) ||
248                     (s->addr == text_range_inittext->end &&
249                                 strcmp(sym_name,
250                                        text_range_inittext->end_sym)))
251                         return 0;
252         }
253
254         /* Exclude symbols which vary between passes. */
255         for (i = 0; special_symbols[i]; i++)
256                 if (strcmp(sym_name, special_symbols[i]) == 0)
257                         return 0;
258
259         for (i = 0; special_suffixes[i]; i++) {
260                 int l = strlen(sym_name) - strlen(special_suffixes[i]);
261
262                 if (l >= 0 && strcmp(sym_name + l, special_suffixes[i]) == 0)
263                         return 0;
264         }
265
266         return 1;
267 }
268
269 static void read_map(FILE *in)
270 {
271         while (!feof(in)) {
272                 if (table_cnt >= table_size) {
273                         table_size += 10000;
274                         table = realloc(table, sizeof(*table) * table_size);
275                         if (!table) {
276                                 fprintf(stderr, "out of memory\n");
277                                 exit (1);
278                         }
279                 }
280                 if (read_symbol(in, &table[table_cnt]) == 0) {
281                         table[table_cnt].start_pos = table_cnt;
282                         table_cnt++;
283                 }
284         }
285 }
286
287 static void output_label(char *label)
288 {
289         if (symbol_prefix_char)
290                 printf(".globl %c%s\n", symbol_prefix_char, label);
291         else
292                 printf(".globl %s\n", label);
293         printf("\tALGN\n");
294         if (symbol_prefix_char)
295                 printf("%c%s:\n", symbol_prefix_char, label);
296         else
297                 printf("%s:\n", label);
298 }
299
300 /* uncompress a compressed symbol. When this function is called, the best table
301  * might still be compressed itself, so the function needs to be recursive */
302 static int expand_symbol(unsigned char *data, int len, char *result)
303 {
304         int c, rlen, total=0;
305
306         while (len) {
307                 c = *data;
308                 /* if the table holds a single char that is the same as the one
309                  * we are looking for, then end the search */
310                 if (best_table[c][0]==c && best_table_len[c]==1) {
311                         *result++ = c;
312                         total++;
313                 } else {
314                         /* if not, recurse and expand */
315                         rlen = expand_symbol(best_table[c], best_table_len[c], result);
316                         total += rlen;
317                         result += rlen;
318                 }
319                 data++;
320                 len--;
321         }
322         *result=0;
323
324         return total;
325 }
326
327 static int symbol_absolute(struct sym_entry *s)
328 {
329         return toupper(s->sym[0]) == 'A';
330 }
331
332 static void write_src(void)
333 {
334         unsigned int i, k, off;
335         unsigned int best_idx[256];
336         unsigned int *markers;
337         char buf[KSYM_NAME_LEN];
338
339         printf("#include <asm/types.h>\n");
340         printf("#if BITS_PER_LONG == 64\n");
341         printf("#define PTR .quad\n");
342         printf("#define ALGN .align 8\n");
343         printf("#else\n");
344         printf("#define PTR .long\n");
345         printf("#define ALGN .align 4\n");
346         printf("#endif\n");
347
348         printf("\t.section .rodata, \"a\"\n");
349
350         /* Provide proper symbols relocatability by their '_text'
351          * relativeness.  The symbol names cannot be used to construct
352          * normal symbol references as the list of symbols contains
353          * symbols that are declared static and are private to their
354          * .o files.  This prevents .tmp_kallsyms.o or any other
355          * object from referencing them.
356          */
357         output_label("kallsyms_addresses");
358         for (i = 0; i < table_cnt; i++) {
359                 if (!symbol_absolute(&table[i])) {
360                         if (_text <= table[i].addr)
361                                 printf("\tPTR\t_text + %#llx\n",
362                                         table[i].addr - _text);
363                         else
364                                 printf("\tPTR\t_text - %#llx\n",
365                                         _text - table[i].addr);
366                 } else {
367                         printf("\tPTR\t%#llx\n", table[i].addr);
368                 }
369         }
370         printf("\n");
371
372         output_label("kallsyms_num_syms");
373         printf("\tPTR\t%d\n", table_cnt);
374         printf("\n");
375
376         /* table of offset markers, that give the offset in the compressed stream
377          * every 256 symbols */
378         markers = malloc(sizeof(unsigned int) * ((table_cnt + 255) / 256));
379         if (!markers) {
380                 fprintf(stderr, "kallsyms failure: "
381                         "unable to allocate required memory\n");
382                 exit(EXIT_FAILURE);
383         }
384
385         output_label("kallsyms_names");
386         off = 0;
387         for (i = 0; i < table_cnt; i++) {
388                 if ((i & 0xFF) == 0)
389                         markers[i >> 8] = off;
390
391                 printf("\t.byte 0x%02x", table[i].len);
392                 for (k = 0; k < table[i].len; k++)
393                         printf(", 0x%02x", table[i].sym[k]);
394                 printf("\n");
395
396                 off += table[i].len + 1;
397         }
398         printf("\n");
399
400         output_label("kallsyms_markers");
401         for (i = 0; i < ((table_cnt + 255) >> 8); i++)
402                 printf("\tPTR\t%d\n", markers[i]);
403         printf("\n");
404
405         free(markers);
406
407         output_label("kallsyms_token_table");
408         off = 0;
409         for (i = 0; i < 256; i++) {
410                 best_idx[i] = off;
411                 expand_symbol(best_table[i], best_table_len[i], buf);
412                 printf("\t.asciz\t\"%s\"\n", buf);
413                 off += strlen(buf) + 1;
414         }
415         printf("\n");
416
417         output_label("kallsyms_token_index");
418         for (i = 0; i < 256; i++)
419                 printf("\t.short\t%d\n", best_idx[i]);
420         printf("\n");
421 }
422
423
424 /* table lookup compression functions */
425
426 /* count all the possible tokens in a symbol */
427 static void learn_symbol(unsigned char *symbol, int len)
428 {
429         int i;
430
431         for (i = 0; i < len - 1; i++)
432                 token_profit[ symbol[i] + (symbol[i + 1] << 8) ]++;
433 }
434
435 /* decrease the count for all the possible tokens in a symbol */
436 static void forget_symbol(unsigned char *symbol, int len)
437 {
438         int i;
439
440         for (i = 0; i < len - 1; i++)
441                 token_profit[ symbol[i] + (symbol[i + 1] << 8) ]--;
442 }
443
444 /* remove all the invalid symbols from the table and do the initial token count */
445 static void build_initial_tok_table(void)
446 {
447         unsigned int i, pos;
448
449         pos = 0;
450         for (i = 0; i < table_cnt; i++) {
451                 if ( symbol_valid(&table[i]) ) {
452                         if (pos != i)
453                                 table[pos] = table[i];
454                         learn_symbol(table[pos].sym, table[pos].len);
455                         pos++;
456                 }
457         }
458         table_cnt = pos;
459 }
460
461 static void *find_token(unsigned char *str, int len, unsigned char *token)
462 {
463         int i;
464
465         for (i = 0; i < len - 1; i++) {
466                 if (str[i] == token[0] && str[i+1] == token[1])
467                         return &str[i];
468         }
469         return NULL;
470 }
471
472 /* replace a given token in all the valid symbols. Use the sampled symbols
473  * to update the counts */
474 static void compress_symbols(unsigned char *str, int idx)
475 {
476         unsigned int i, len, size;
477         unsigned char *p1, *p2;
478
479         for (i = 0; i < table_cnt; i++) {
480
481                 len = table[i].len;
482                 p1 = table[i].sym;
483
484                 /* find the token on the symbol */
485                 p2 = find_token(p1, len, str);
486                 if (!p2) continue;
487
488                 /* decrease the counts for this symbol's tokens */
489                 forget_symbol(table[i].sym, len);
490
491                 size = len;
492
493                 do {
494                         *p2 = idx;
495                         p2++;
496                         size -= (p2 - p1);
497                         memmove(p2, p2 + 1, size);
498                         p1 = p2;
499                         len--;
500
501                         if (size < 2) break;
502
503                         /* find the token on the symbol */
504                         p2 = find_token(p1, size, str);
505
506                 } while (p2);
507
508                 table[i].len = len;
509
510                 /* increase the counts for this symbol's new tokens */
511                 learn_symbol(table[i].sym, len);
512         }
513 }
514
515 /* search the token with the maximum profit */
516 static int find_best_token(void)
517 {
518         int i, best, bestprofit;
519
520         bestprofit=-10000;
521         best = 0;
522
523         for (i = 0; i < 0x10000; i++) {
524                 if (token_profit[i] > bestprofit) {
525                         best = i;
526                         bestprofit = token_profit[i];
527                 }
528         }
529         return best;
530 }
531
532 /* this is the core of the algorithm: calculate the "best" table */
533 static void optimize_result(void)
534 {
535         int i, best;
536
537         /* using the '\0' symbol last allows compress_symbols to use standard
538          * fast string functions */
539         for (i = 255; i >= 0; i--) {
540
541                 /* if this table slot is empty (it is not used by an actual
542                  * original char code */
543                 if (!best_table_len[i]) {
544
545                         /* find the token with the breates profit value */
546                         best = find_best_token();
547                         if (token_profit[best] == 0)
548                                 break;
549
550                         /* place it in the "best" table */
551                         best_table_len[i] = 2;
552                         best_table[i][0] = best & 0xFF;
553                         best_table[i][1] = (best >> 8) & 0xFF;
554
555                         /* replace this token in all the valid symbols */
556                         compress_symbols(best_table[i], i);
557                 }
558         }
559 }
560
561 /* start by placing the symbols that are actually used on the table */
562 static void insert_real_symbols_in_table(void)
563 {
564         unsigned int i, j, c;
565
566         memset(best_table, 0, sizeof(best_table));
567         memset(best_table_len, 0, sizeof(best_table_len));
568
569         for (i = 0; i < table_cnt; i++) {
570                 for (j = 0; j < table[i].len; j++) {
571                         c = table[i].sym[j];
572                         best_table[c][0]=c;
573                         best_table_len[c]=1;
574                 }
575         }
576 }
577
578 static void optimize_token_table(void)
579 {
580         build_initial_tok_table();
581
582         insert_real_symbols_in_table();
583
584         /* When valid symbol is not registered, exit to error */
585         if (!table_cnt) {
586                 fprintf(stderr, "No valid symbol.\n");
587                 exit(1);
588         }
589
590         optimize_result();
591 }
592
593 /* guess for "linker script provide" symbol */
594 static int may_be_linker_script_provide_symbol(const struct sym_entry *se)
595 {
596         const char *symbol = (char *)se->sym + 1;
597         int len = se->len - 1;
598
599         if (len < 8)
600                 return 0;
601
602         if (symbol[0] != '_' || symbol[1] != '_')
603                 return 0;
604
605         /* __start_XXXXX */
606         if (!memcmp(symbol + 2, "start_", 6))
607                 return 1;
608
609         /* __stop_XXXXX */
610         if (!memcmp(symbol + 2, "stop_", 5))
611                 return 1;
612
613         /* __end_XXXXX */
614         if (!memcmp(symbol + 2, "end_", 4))
615                 return 1;
616
617         /* __XXXXX_start */
618         if (!memcmp(symbol + len - 6, "_start", 6))
619                 return 1;
620
621         /* __XXXXX_end */
622         if (!memcmp(symbol + len - 4, "_end", 4))
623                 return 1;
624
625         return 0;
626 }
627
628 static int prefix_underscores_count(const char *str)
629 {
630         const char *tail = str;
631
632         while (*tail == '_')
633                 tail++;
634
635         return tail - str;
636 }
637
638 static int compare_symbols(const void *a, const void *b)
639 {
640         const struct sym_entry *sa;
641         const struct sym_entry *sb;
642         int wa, wb;
643
644         sa = a;
645         sb = b;
646
647         /* sort by address first */
648         if (sa->addr > sb->addr)
649                 return 1;
650         if (sa->addr < sb->addr)
651                 return -1;
652
653         /* sort by "weakness" type */
654         wa = (sa->sym[0] == 'w') || (sa->sym[0] == 'W');
655         wb = (sb->sym[0] == 'w') || (sb->sym[0] == 'W');
656         if (wa != wb)
657                 return wa - wb;
658
659         /* sort by "linker script provide" type */
660         wa = may_be_linker_script_provide_symbol(sa);
661         wb = may_be_linker_script_provide_symbol(sb);
662         if (wa != wb)
663                 return wa - wb;
664
665         /* sort by the number of prefix underscores */
666         wa = prefix_underscores_count((const char *)sa->sym + 1);
667         wb = prefix_underscores_count((const char *)sb->sym + 1);
668         if (wa != wb)
669                 return wa - wb;
670
671         /* sort by initial order, so that other symbols are left undisturbed */
672         return sa->start_pos - sb->start_pos;
673 }
674
675 static void sort_symbols(void)
676 {
677         qsort(table, table_cnt, sizeof(struct sym_entry), compare_symbols);
678 }
679
680 static void make_percpus_absolute(void)
681 {
682         unsigned int i;
683
684         for (i = 0; i < table_cnt; i++)
685                 if (symbol_in_range(&table[i], &percpu_range, 1))
686                         table[i].sym[0] = 'A';
687 }
688
689 int main(int argc, char **argv)
690 {
691         if (argc >= 2) {
692                 int i;
693                 for (i = 1; i < argc; i++) {
694                         if(strcmp(argv[i], "--all-symbols") == 0)
695                                 all_symbols = 1;
696                         else if (strcmp(argv[i], "--absolute-percpu") == 0)
697                                 absolute_percpu = 1;
698                         else if (strncmp(argv[i], "--symbol-prefix=", 16) == 0) {
699                                 char *p = &argv[i][16];
700                                 /* skip quote */
701                                 if ((*p == '"' && *(p+2) == '"') || (*p == '\'' && *(p+2) == '\''))
702                                         p++;
703                                 symbol_prefix_char = *p;
704                         } else if (strncmp(argv[i], "--page-offset=", 14) == 0) {
705                                 const char *p = &argv[i][14];
706                                 kernel_start_addr = strtoull(p, NULL, 16);
707                         } else
708                                 usage();
709                 }
710         } else if (argc != 1)
711                 usage();
712
713         read_map(stdin);
714         if (absolute_percpu)
715                 make_percpus_absolute();
716         sort_symbols();
717         optimize_token_table();
718         write_src();
719
720         return 0;
721 }