perf/x86: Add perf text poke events for kprobes
[linux-block.git] / kernel / kallsyms.c
CommitLineData
457c8996 1// SPDX-License-Identifier: GPL-2.0-only
1da177e4
LT
2/*
3 * kallsyms.c: in-kernel printing of symbolic oopses and stack traces.
4 *
5 * Rewritten and vastly simplified by Rusty Russell for in-kernel
6 * module loader:
7 * Copyright 2002 Rusty Russell <rusty@rustcorp.com.au> IBM Corporation
8 *
9 * ChangeLog:
10 *
11 * (25/Aug/2004) Paulo Marques <pmarques@grupopie.com>
12 * Changed the compression method from stem compression to "table lookup"
13 * compression (see scripts/kallsyms.c for a more complete description)
14 */
15#include <linux/kallsyms.h>
1da177e4
LT
16#include <linux/init.h>
17#include <linux/seq_file.h>
18#include <linux/fs.h>
67fc4e0c 19#include <linux/kdb.h>
1da177e4
LT
20#include <linux/err.h>
21#include <linux/proc_fs.h>
4e57b681 22#include <linux/sched.h> /* for cond_resched */
07354a00 23#include <linux/ctype.h>
5a0e3ad6 24#include <linux/slab.h>
74451e66 25#include <linux/filter.h>
aba4b5c2 26#include <linux/ftrace.h>
d002b8bc 27#include <linux/kprobes.h>
52f5684c 28#include <linux/compiler.h>
1da177e4 29
ad6ccfad
MK
30/*
31 * These will be re-linked against their real values
32 * during the second link stage.
33 */
52f5684c 34extern const unsigned long kallsyms_addresses[] __weak;
2213e9a6 35extern const int kallsyms_offsets[] __weak;
52f5684c 36extern const u8 kallsyms_names[] __weak;
1da177e4 37
ad6ccfad
MK
38/*
39 * Tell the compiler that the count isn't in the small data section if the arch
40 * has one (eg: FRV).
9e6c1e63 41 */
80ffbaa5 42extern const unsigned int kallsyms_num_syms
2ea03891 43__attribute__((weak, section(".rodata")));
9e6c1e63 44
2213e9a6
AB
45extern const unsigned long kallsyms_relative_base
46__attribute__((weak, section(".rodata")));
47
cde26a6e 48extern const char kallsyms_token_table[] __weak;
52f5684c 49extern const u16 kallsyms_token_index[] __weak;
1da177e4 50
80ffbaa5 51extern const unsigned int kallsyms_markers[] __weak;
1da177e4 52
ad6ccfad
MK
53/*
54 * Expand a compressed symbol data into the resulting uncompressed string,
e3f26752 55 * if uncompressed string is too long (>= maxlen), it will be truncated,
ad6ccfad
MK
56 * given the offset to where the symbol is in the compressed stream.
57 */
e3f26752
CG
58static unsigned int kallsyms_expand_symbol(unsigned int off,
59 char *result, size_t maxlen)
1da177e4
LT
60{
61 int len, skipped_first = 0;
cde26a6e
MY
62 const char *tptr;
63 const u8 *data;
1da177e4 64
ad6ccfad 65 /* Get the compressed symbol length from the first symbol byte. */
1da177e4
LT
66 data = &kallsyms_names[off];
67 len = *data;
68 data++;
69
ad6ccfad
MK
70 /*
71 * Update the offset to return the offset for the next symbol on
72 * the compressed stream.
73 */
1da177e4
LT
74 off += len + 1;
75
ad6ccfad
MK
76 /*
77 * For every byte on the compressed symbol data, copy the table
78 * entry for that byte.
79 */
80 while (len) {
81 tptr = &kallsyms_token_table[kallsyms_token_index[*data]];
1da177e4
LT
82 data++;
83 len--;
84
85 while (*tptr) {
ad6ccfad 86 if (skipped_first) {
e3f26752
CG
87 if (maxlen <= 1)
88 goto tail;
1da177e4
LT
89 *result = *tptr;
90 result++;
e3f26752 91 maxlen--;
1da177e4
LT
92 } else
93 skipped_first = 1;
94 tptr++;
95 }
96 }
97
e3f26752
CG
98tail:
99 if (maxlen)
100 *result = '\0';
1da177e4 101
ad6ccfad 102 /* Return to offset to the next symbol. */
1da177e4
LT
103 return off;
104}
105
ad6ccfad
MK
106/*
107 * Get symbol type information. This is encoded as a single char at the
108 * beginning of the symbol name.
109 */
1da177e4
LT
110static char kallsyms_get_symbol_type(unsigned int off)
111{
ad6ccfad
MK
112 /*
113 * Get just the first code, look it up in the token table,
114 * and return the first char from this token.
115 */
116 return kallsyms_token_table[kallsyms_token_index[kallsyms_names[off + 1]]];
1da177e4
LT
117}
118
119
ad6ccfad
MK
120/*
121 * Find the offset on the compressed stream given and index in the
122 * kallsyms array.
123 */
1da177e4
LT
124static unsigned int get_symbol_offset(unsigned long pos)
125{
aad09470 126 const u8 *name;
1da177e4
LT
127 int i;
128
ad6ccfad
MK
129 /*
130 * Use the closest marker we have. We have markers every 256 positions,
131 * so that should be close enough.
132 */
133 name = &kallsyms_names[kallsyms_markers[pos >> 8]];
1da177e4 134
ad6ccfad
MK
135 /*
136 * Sequentially scan all the symbols up to the point we're searching
137 * for. Every symbol is stored in a [<len>][<len> bytes of data] format,
138 * so we just need to add the len to the current pointer for every
139 * symbol we wish to skip.
140 */
141 for (i = 0; i < (pos & 0xFF); i++)
1da177e4
LT
142 name = name + (*name) + 1;
143
144 return name - kallsyms_names;
145}
146
2213e9a6
AB
147static unsigned long kallsyms_sym_address(int idx)
148{
149 if (!IS_ENABLED(CONFIG_KALLSYMS_BASE_RELATIVE))
150 return kallsyms_addresses[idx];
151
152 /* values are unsigned offsets if --absolute-percpu is not in effect */
153 if (!IS_ENABLED(CONFIG_KALLSYMS_ABSOLUTE_PERCPU))
154 return kallsyms_relative_base + (u32)kallsyms_offsets[idx];
155
156 /* ...otherwise, positive offsets are absolute values */
157 if (kallsyms_offsets[idx] >= 0)
158 return kallsyms_offsets[idx];
159
160 /* ...and negative offsets are relative to kallsyms_relative_base - 1 */
161 return kallsyms_relative_base - 1 - kallsyms_offsets[idx];
162}
163
1da177e4
LT
164/* Lookup the address for this symbol. Returns 0 if not found. */
165unsigned long kallsyms_lookup_name(const char *name)
166{
9281acea 167 char namebuf[KSYM_NAME_LEN];
1da177e4
LT
168 unsigned long i;
169 unsigned int off;
170
171 for (i = 0, off = 0; i < kallsyms_num_syms; i++) {
e3f26752 172 off = kallsyms_expand_symbol(off, namebuf, ARRAY_SIZE(namebuf));
1da177e4
LT
173
174 if (strcmp(namebuf, name) == 0)
2213e9a6 175 return kallsyms_sym_address(i);
1da177e4
LT
176 }
177 return module_kallsyms_lookup_name(name);
178}
1da177e4 179
75a66614
AK
180int kallsyms_on_each_symbol(int (*fn)(void *, const char *, struct module *,
181 unsigned long),
182 void *data)
183{
184 char namebuf[KSYM_NAME_LEN];
185 unsigned long i;
186 unsigned int off;
187 int ret;
188
189 for (i = 0, off = 0; i < kallsyms_num_syms; i++) {
e3f26752 190 off = kallsyms_expand_symbol(off, namebuf, ARRAY_SIZE(namebuf));
2213e9a6 191 ret = fn(data, namebuf, NULL, kallsyms_sym_address(i));
75a66614
AK
192 if (ret != 0)
193 return ret;
194 }
195 return module_kallsyms_on_each_symbol(fn, data);
196}
75a66614 197
ffc50891
FBH
198static unsigned long get_symbol_pos(unsigned long addr,
199 unsigned long *symbolsize,
200 unsigned long *offset)
201{
202 unsigned long symbol_start = 0, symbol_end = 0;
203 unsigned long i, low, high, mid;
204
2ea03891 205 /* This kernel should never had been booted. */
2213e9a6
AB
206 if (!IS_ENABLED(CONFIG_KALLSYMS_BASE_RELATIVE))
207 BUG_ON(!kallsyms_addresses);
208 else
209 BUG_ON(!kallsyms_offsets);
2ea03891 210
ad6ccfad 211 /* Do a binary search on the sorted kallsyms_addresses array. */
ffc50891
FBH
212 low = 0;
213 high = kallsyms_num_syms;
214
215 while (high - low > 1) {
2fc9c4e1 216 mid = low + (high - low) / 2;
2213e9a6 217 if (kallsyms_sym_address(mid) <= addr)
ffc50891
FBH
218 low = mid;
219 else
220 high = mid;
221 }
222
223 /*
ad6ccfad
MK
224 * Search for the first aliased symbol. Aliased
225 * symbols are symbols with the same address.
ffc50891 226 */
2213e9a6 227 while (low && kallsyms_sym_address(low-1) == kallsyms_sym_address(low))
ffc50891
FBH
228 --low;
229
2213e9a6 230 symbol_start = kallsyms_sym_address(low);
ffc50891 231
ad6ccfad 232 /* Search for next non-aliased symbol. */
ffc50891 233 for (i = low + 1; i < kallsyms_num_syms; i++) {
2213e9a6
AB
234 if (kallsyms_sym_address(i) > symbol_start) {
235 symbol_end = kallsyms_sym_address(i);
ffc50891
FBH
236 break;
237 }
238 }
239
ad6ccfad 240 /* If we found no next symbol, we use the end of the section. */
ffc50891
FBH
241 if (!symbol_end) {
242 if (is_kernel_inittext(addr))
243 symbol_end = (unsigned long)_einittext;
63b23e2c 244 else if (IS_ENABLED(CONFIG_KALLSYMS_ALL))
ffc50891
FBH
245 symbol_end = (unsigned long)_end;
246 else
247 symbol_end = (unsigned long)_etext;
248 }
249
ffb45122
AD
250 if (symbolsize)
251 *symbolsize = symbol_end - symbol_start;
252 if (offset)
253 *offset = addr - symbol_start;
ffc50891
FBH
254
255 return low;
256}
257
258/*
259 * Lookup an address but don't bother to find any names.
260 */
261int kallsyms_lookup_size_offset(unsigned long addr, unsigned long *symbolsize,
262 unsigned long *offset)
263{
6dd06c9f 264 char namebuf[KSYM_NAME_LEN];
74451e66 265
2a1a3fa0
MZ
266 if (is_ksym_addr(addr)) {
267 get_symbol_pos(addr, symbolsize, offset);
268 return 1;
269 }
74451e66
DB
270 return !!module_address_lookup(addr, symbolsize, offset, NULL, namebuf) ||
271 !!__bpf_address_lookup(addr, symbolsize, offset, namebuf);
ffc50891
FBH
272}
273
1da177e4
LT
274/*
275 * Lookup an address
ad6ccfad
MK
276 * - modname is set to NULL if it's in the kernel.
277 * - We guarantee that the returned name is valid until we reschedule even if.
278 * It resides in a module.
279 * - We also guarantee that modname will be valid until rescheduled.
1da177e4
LT
280 */
281const char *kallsyms_lookup(unsigned long addr,
282 unsigned long *symbolsize,
283 unsigned long *offset,
284 char **modname, char *namebuf)
285{
74451e66
DB
286 const char *ret;
287
9281acea 288 namebuf[KSYM_NAME_LEN - 1] = 0;
1da177e4
LT
289 namebuf[0] = 0;
290
ffc50891
FBH
291 if (is_ksym_addr(addr)) {
292 unsigned long pos;
1da177e4 293
ffc50891 294 pos = get_symbol_pos(addr, symbolsize, offset);
1da177e4 295 /* Grab name */
e3f26752
CG
296 kallsyms_expand_symbol(get_symbol_offset(pos),
297 namebuf, KSYM_NAME_LEN);
7a74fc49
KM
298 if (modname)
299 *modname = NULL;
1da177e4
LT
300 return namebuf;
301 }
302
74451e66
DB
303 /* See if it's in a module or a BPF JITed image. */
304 ret = module_address_lookup(addr, symbolsize, offset,
305 modname, namebuf);
306 if (!ret)
307 ret = bpf_address_lookup(addr, symbolsize,
308 offset, modname, namebuf);
aba4b5c2
SRV
309
310 if (!ret)
311 ret = ftrace_mod_address_lookup(addr, symbolsize,
312 offset, modname, namebuf);
74451e66 313 return ret;
1da177e4
LT
314}
315
9d65cb4a
AD
316int lookup_symbol_name(unsigned long addr, char *symname)
317{
318 symname[0] = '\0';
9281acea 319 symname[KSYM_NAME_LEN - 1] = '\0';
9d65cb4a
AD
320
321 if (is_ksym_addr(addr)) {
322 unsigned long pos;
323
324 pos = get_symbol_pos(addr, NULL, NULL);
325 /* Grab name */
e3f26752
CG
326 kallsyms_expand_symbol(get_symbol_offset(pos),
327 symname, KSYM_NAME_LEN);
9d65cb4a
AD
328 return 0;
329 }
ad6ccfad 330 /* See if it's in a module. */
9d65cb4a
AD
331 return lookup_module_symbol_name(addr, symname);
332}
333
a5c43dae
AD
334int lookup_symbol_attrs(unsigned long addr, unsigned long *size,
335 unsigned long *offset, char *modname, char *name)
336{
337 name[0] = '\0';
9281acea 338 name[KSYM_NAME_LEN - 1] = '\0';
a5c43dae
AD
339
340 if (is_ksym_addr(addr)) {
341 unsigned long pos;
342
343 pos = get_symbol_pos(addr, size, offset);
344 /* Grab name */
e3f26752
CG
345 kallsyms_expand_symbol(get_symbol_offset(pos),
346 name, KSYM_NAME_LEN);
a5c43dae
AD
347 modname[0] = '\0';
348 return 0;
349 }
ad6ccfad 350 /* See if it's in a module. */
a5c43dae
AD
351 return lookup_module_symbol_attrs(addr, size, offset, modname, name);
352}
353
42e38083 354/* Look up a kernel symbol and return it in a text buffer. */
0f77a8d3 355static int __sprint_symbol(char *buffer, unsigned long address,
4796dd20 356 int symbol_offset, int add_offset)
1da177e4
LT
357{
358 char *modname;
359 const char *name;
360 unsigned long offset, size;
966c8c12 361 int len;
1da177e4 362
0f77a8d3 363 address += symbol_offset;
966c8c12 364 name = kallsyms_lookup(address, &size, &offset, &modname, buffer);
1da177e4 365 if (!name)
b86280aa 366 return sprintf(buffer, "0x%lx", address - symbol_offset);
19769b76 367
966c8c12
HD
368 if (name != buffer)
369 strcpy(buffer, name);
370 len = strlen(buffer);
0f77a8d3 371 offset -= symbol_offset;
966c8c12 372
4796dd20
SB
373 if (add_offset)
374 len += sprintf(buffer + len, "+%#lx/%#lx", offset, size);
375
19769b76 376 if (modname)
4796dd20 377 len += sprintf(buffer + len, " [%s]", modname);
966c8c12
HD
378
379 return len;
42e38083 380}
0f77a8d3
NK
381
382/**
383 * sprint_symbol - Look up a kernel symbol and return it in a text buffer
384 * @buffer: buffer to be stored
385 * @address: address to lookup
386 *
387 * This function looks up a kernel symbol with @address and stores its name,
388 * offset, size and module name to @buffer if possible. If no symbol was found,
389 * just saves its @address as is.
390 *
391 * This function returns the number of bytes stored in @buffer.
392 */
393int sprint_symbol(char *buffer, unsigned long address)
394{
4796dd20 395 return __sprint_symbol(buffer, address, 0, 1);
0f77a8d3 396}
ad6ccfad 397EXPORT_SYMBOL_GPL(sprint_symbol);
42e38083 398
4796dd20
SB
399/**
400 * sprint_symbol_no_offset - Look up a kernel symbol and return it in a text buffer
401 * @buffer: buffer to be stored
402 * @address: address to lookup
403 *
404 * This function looks up a kernel symbol with @address and stores its name
405 * and module name to @buffer if possible. If no symbol was found, just saves
406 * its @address as is.
407 *
408 * This function returns the number of bytes stored in @buffer.
409 */
410int sprint_symbol_no_offset(char *buffer, unsigned long address)
411{
412 return __sprint_symbol(buffer, address, 0, 0);
413}
414EXPORT_SYMBOL_GPL(sprint_symbol_no_offset);
415
0f77a8d3
NK
416/**
417 * sprint_backtrace - Look up a backtrace symbol and return it in a text buffer
418 * @buffer: buffer to be stored
419 * @address: address to lookup
420 *
421 * This function is for stack backtrace and does the same thing as
422 * sprint_symbol() but with modified/decreased @address. If there is a
423 * tail-call to the function marked "noreturn", gcc optimized out code after
424 * the call so that the stack-saved return address could point outside of the
425 * caller. This function ensures that kallsyms will find the original caller
426 * by decreasing @address.
427 *
428 * This function returns the number of bytes stored in @buffer.
429 */
430int sprint_backtrace(char *buffer, unsigned long address)
431{
4796dd20 432 return __sprint_symbol(buffer, address, -1, 1);
0f77a8d3
NK
433}
434
1da177e4 435/* To avoid using get_symbol_offset for every symbol, we carry prefix along. */
ad6ccfad 436struct kallsym_iter {
1da177e4 437 loff_t pos;
d83212d5 438 loff_t pos_arch_end;
74451e66 439 loff_t pos_mod_end;
6171a031 440 loff_t pos_ftrace_mod_end;
d002b8bc 441 loff_t pos_bpf_end;
1da177e4 442 unsigned long value;
ad6ccfad 443 unsigned int nameoff; /* If iterating in core kernel symbols. */
1da177e4 444 char type;
9281acea
TH
445 char name[KSYM_NAME_LEN];
446 char module_name[MODULE_NAME_LEN];
ea07890a 447 int exported;
c0f3ea15 448 int show_value;
1da177e4
LT
449};
450
d83212d5
AS
451int __weak arch_get_kallsym(unsigned int symnum, unsigned long *value,
452 char *type, char *name)
453{
454 return -EINVAL;
455}
456
457static int get_ksymbol_arch(struct kallsym_iter *iter)
458{
459 int ret = arch_get_kallsym(iter->pos - kallsyms_num_syms,
460 &iter->value, &iter->type,
461 iter->name);
462
463 if (ret < 0) {
464 iter->pos_arch_end = iter->pos;
465 return 0;
466 }
467
468 return 1;
469}
470
1da177e4
LT
471static int get_ksymbol_mod(struct kallsym_iter *iter)
472{
d83212d5 473 int ret = module_get_kallsym(iter->pos - iter->pos_arch_end,
74451e66
DB
474 &iter->value, &iter->type,
475 iter->name, iter->module_name,
476 &iter->exported);
477 if (ret < 0) {
478 iter->pos_mod_end = iter->pos;
1da177e4 479 return 0;
74451e66
DB
480 }
481
1da177e4
LT
482 return 1;
483}
484
6171a031
SRV
485static int get_ksymbol_ftrace_mod(struct kallsym_iter *iter)
486{
487 int ret = ftrace_mod_get_kallsym(iter->pos - iter->pos_mod_end,
488 &iter->value, &iter->type,
489 iter->name, iter->module_name,
490 &iter->exported);
491 if (ret < 0) {
492 iter->pos_ftrace_mod_end = iter->pos;
493 return 0;
494 }
495
496 return 1;
497}
498
74451e66
DB
499static int get_ksymbol_bpf(struct kallsym_iter *iter)
500{
d002b8bc
AH
501 int ret;
502
6934058d 503 strlcpy(iter->module_name, "bpf", MODULE_NAME_LEN);
74451e66 504 iter->exported = 0;
d002b8bc
AH
505 ret = bpf_get_kallsym(iter->pos - iter->pos_ftrace_mod_end,
506 &iter->value, &iter->type,
507 iter->name);
508 if (ret < 0) {
509 iter->pos_bpf_end = iter->pos;
510 return 0;
511 }
512
513 return 1;
514}
515
516/*
517 * This uses "__builtin__kprobes" as a module name for symbols for pages
518 * allocated for kprobes' purposes, even though "__builtin__kprobes" is not a
519 * module.
520 */
521static int get_ksymbol_kprobe(struct kallsym_iter *iter)
522{
523 strlcpy(iter->module_name, "__builtin__kprobes", MODULE_NAME_LEN);
524 iter->exported = 0;
525 return kprobe_get_kallsym(iter->pos - iter->pos_bpf_end,
526 &iter->value, &iter->type,
527 iter->name) < 0 ? 0 : 1;
74451e66
DB
528}
529
1da177e4
LT
530/* Returns space to next name. */
531static unsigned long get_ksymbol_core(struct kallsym_iter *iter)
532{
533 unsigned off = iter->nameoff;
534
ea07890a 535 iter->module_name[0] = '\0';
2213e9a6 536 iter->value = kallsyms_sym_address(iter->pos);
1da177e4
LT
537
538 iter->type = kallsyms_get_symbol_type(off);
539
e3f26752 540 off = kallsyms_expand_symbol(off, iter->name, ARRAY_SIZE(iter->name));
1da177e4
LT
541
542 return off - iter->nameoff;
543}
544
545static void reset_iter(struct kallsym_iter *iter, loff_t new_pos)
546{
547 iter->name[0] = '\0';
548 iter->nameoff = get_symbol_offset(new_pos);
549 iter->pos = new_pos;
6171a031 550 if (new_pos == 0) {
d83212d5 551 iter->pos_arch_end = 0;
74451e66 552 iter->pos_mod_end = 0;
6171a031 553 iter->pos_ftrace_mod_end = 0;
d002b8bc 554 iter->pos_bpf_end = 0;
6171a031 555 }
74451e66
DB
556}
557
b9667942
AH
558/*
559 * The end position (last + 1) of each additional kallsyms section is recorded
560 * in iter->pos_..._end as each section is added, and so can be used to
561 * determine which get_ksymbol_...() function to call next.
562 */
74451e66
DB
563static int update_iter_mod(struct kallsym_iter *iter, loff_t pos)
564{
565 iter->pos = pos;
566
d83212d5
AS
567 if ((!iter->pos_arch_end || iter->pos_arch_end > pos) &&
568 get_ksymbol_arch(iter))
569 return 1;
570
b9667942
AH
571 if ((!iter->pos_mod_end || iter->pos_mod_end > pos) &&
572 get_ksymbol_mod(iter))
6171a031 573 return 1;
6171a031 574
b9667942
AH
575 if ((!iter->pos_ftrace_mod_end || iter->pos_ftrace_mod_end > pos) &&
576 get_ksymbol_ftrace_mod(iter))
577 return 1;
74451e66 578
d002b8bc
AH
579 if ((!iter->pos_bpf_end || iter->pos_bpf_end > pos) &&
580 get_ksymbol_bpf(iter))
581 return 1;
582
583 return get_ksymbol_kprobe(iter);
1da177e4
LT
584}
585
586/* Returns false if pos at or past end of file. */
587static int update_iter(struct kallsym_iter *iter, loff_t pos)
588{
589 /* Module symbols can be accessed randomly. */
74451e66
DB
590 if (pos >= kallsyms_num_syms)
591 return update_iter_mod(iter, pos);
ad6ccfad 592
1da177e4
LT
593 /* If we're not on the desired position, reset to new position. */
594 if (pos != iter->pos)
595 reset_iter(iter, pos);
596
597 iter->nameoff += get_ksymbol_core(iter);
598 iter->pos++;
599
600 return 1;
601}
602
603static void *s_next(struct seq_file *m, void *p, loff_t *pos)
604{
605 (*pos)++;
606
607 if (!update_iter(m->private, *pos))
608 return NULL;
609 return p;
610}
611
612static void *s_start(struct seq_file *m, loff_t *pos)
613{
614 if (!update_iter(m->private, *pos))
615 return NULL;
616 return m->private;
617}
618
619static void s_stop(struct seq_file *m, void *p)
620{
621}
622
623static int s_show(struct seq_file *m, void *p)
624{
668533dc 625 void *value;
1da177e4
LT
626 struct kallsym_iter *iter = m->private;
627
ad6ccfad 628 /* Some debugging symbols have no name. Ignore them. */
1da177e4
LT
629 if (!iter->name[0])
630 return 0;
631
668533dc 632 value = iter->show_value ? (void *)iter->value : NULL;
c0f3ea15 633
ea07890a
AD
634 if (iter->module_name[0]) {
635 char type;
636
ad6ccfad
MK
637 /*
638 * Label it "global" if it is exported,
639 * "local" if not exported.
640 */
ea07890a
AD
641 type = iter->exported ? toupper(iter->type) :
642 tolower(iter->type);
668533dc 643 seq_printf(m, "%px %c %s\t[%s]\n", value,
9f36e2c4 644 type, iter->name, iter->module_name);
ea07890a 645 } else
668533dc 646 seq_printf(m, "%px %c %s\n", value,
9f36e2c4 647 iter->type, iter->name);
1da177e4
LT
648 return 0;
649}
650
15ad7cdc 651static const struct seq_operations kallsyms_op = {
1da177e4
LT
652 .start = s_start,
653 .next = s_next,
654 .stop = s_stop,
655 .show = s_show
656};
657
c0f3ea15
LT
658static inline int kallsyms_for_perf(void)
659{
660#ifdef CONFIG_PERF_EVENTS
661 extern int sysctl_perf_event_paranoid;
662 if (sysctl_perf_event_paranoid <= 1)
663 return 1;
664#endif
665 return 0;
666}
667
668/*
669 * We show kallsyms information even to normal users if we've enabled
670 * kernel profiling and are explicitly not paranoid (so kptr_restrict
671 * is clear, and sysctl_perf_event_paranoid isn't set).
672 *
673 * Otherwise, require CAP_SYSLOG (assuming kptr_restrict isn't set to
674 * block even that).
675 */
516fb7f2 676int kallsyms_show_value(void)
c0f3ea15
LT
677{
678 switch (kptr_restrict) {
679 case 0:
680 if (kallsyms_for_perf())
681 return 1;
682 /* fallthrough */
683 case 1:
684 if (has_capability_noaudit(current, CAP_SYSLOG))
685 return 1;
686 /* fallthrough */
687 default:
688 return 0;
689 }
690}
691
1da177e4
LT
692static int kallsyms_open(struct inode *inode, struct file *file)
693{
ad6ccfad
MK
694 /*
695 * We keep iterator in m->private, since normal case is to
1da177e4 696 * s_start from where we left off, so we avoid doing
ad6ccfad
MK
697 * using get_symbol_offset for every symbol.
698 */
1da177e4 699 struct kallsym_iter *iter;
0049f26a 700 iter = __seq_open_private(file, &kallsyms_op, sizeof(*iter));
1da177e4
LT
701 if (!iter)
702 return -ENOMEM;
703 reset_iter(iter, 0);
704
c0f3ea15 705 iter->show_value = kallsyms_show_value();
0049f26a 706 return 0;
1da177e4
LT
707}
708
67fc4e0c
JW
709#ifdef CONFIG_KGDB_KDB
710const char *kdb_walk_kallsyms(loff_t *pos)
711{
712 static struct kallsym_iter kdb_walk_kallsyms_iter;
713 if (*pos == 0) {
714 memset(&kdb_walk_kallsyms_iter, 0,
715 sizeof(kdb_walk_kallsyms_iter));
716 reset_iter(&kdb_walk_kallsyms_iter, 0);
717 }
718 while (1) {
719 if (!update_iter(&kdb_walk_kallsyms_iter, *pos))
720 return NULL;
721 ++*pos;
722 /* Some debugging symbols have no name. Ignore them. */
723 if (kdb_walk_kallsyms_iter.name[0])
724 return kdb_walk_kallsyms_iter.name;
725 }
726}
727#endif /* CONFIG_KGDB_KDB */
728
97a32539
AD
729static const struct proc_ops kallsyms_proc_ops = {
730 .proc_open = kallsyms_open,
731 .proc_read = seq_read,
732 .proc_lseek = seq_lseek,
733 .proc_release = seq_release_private,
1da177e4
LT
734};
735
736static int __init kallsyms_init(void)
737{
97a32539 738 proc_create("kallsyms", 0444, NULL, &kallsyms_proc_ops);
1da177e4
LT
739 return 0;
740}
ad6ccfad 741device_initcall(kallsyms_init);