1 // SPDX-License-Identifier: GPL-2.0-only
5 * Builtin command: Look for a symbol in the running kernel and its modules
7 * Copyright (C) 2017, Red Hat Inc, Arnaldo Carvalho de Melo <acme@redhat.com>
11 #include <linux/compiler.h>
12 #include <subcmd/parse-options.h>
19 static int __cmd_kallsyms(int argc, const char **argv)
22 struct machine *machine = machine__new_kallsyms();
24 if (machine == NULL) {
25 pr_err("Couldn't read /proc/kallsyms\n");
29 for (i = 0; i < argc; ++i) {
31 struct symbol *symbol = machine__find_kernel_symbol_by_name(machine, argv[i], &map);
34 printf("%s: not found\n", argv[i]);
38 printf("%s: %s %s %#" PRIx64 "-%#" PRIx64 " (%#" PRIx64 "-%#" PRIx64")\n",
39 symbol->name, map->dso->short_name, map->dso->long_name,
40 map->unmap_ip(map, symbol->start), map->unmap_ip(map, symbol->end),
41 symbol->start, symbol->end);
44 machine__delete(machine);
48 int cmd_kallsyms(int argc, const char **argv)
50 const struct option options[] = {
51 OPT_INCR('v', "verbose", &verbose, "be more verbose (show counter open errors, etc)"),
54 const char * const kallsyms_usage[] = {
55 "perf kallsyms [<options>] symbol_name",
59 argc = parse_options(argc, argv, options, kallsyms_usage, 0);
61 usage_with_options(kallsyms_usage, options);
63 symbol_conf.sort_by_name = true;
64 symbol_conf.try_vmlinux_path = (symbol_conf.vmlinux_name == NULL);
65 if (symbol__init(NULL) < 0)
68 return __cmd_kallsyms(argc, argv);