builtin-kallsyms.c 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869
  1. /*
  2. * builtin-kallsyms.c
  3. *
  4. * Builtin command: Look for a symbol in the running kernel and its modules
  5. *
  6. * Copyright (C) 2017, Red Hat Inc, Arnaldo Carvalho de Melo <acme@redhat.com>
  7. *
  8. * Released under the GPL v2. (and only v2, not any later version)
  9. */
  10. #include <inttypes.h>
  11. #include "builtin.h"
  12. #include <linux/compiler.h>
  13. #include <subcmd/parse-options.h>
  14. #include "debug.h"
  15. #include "machine.h"
  16. #include "symbol.h"
  17. static int __cmd_kallsyms(int argc, const char **argv)
  18. {
  19. int i;
  20. struct machine *machine = machine__new_kallsyms();
  21. if (machine == NULL) {
  22. pr_err("Couldn't read /proc/kallsyms\n");
  23. return -1;
  24. }
  25. for (i = 0; i < argc; ++i) {
  26. struct map *map;
  27. struct symbol *symbol = machine__find_kernel_function_by_name(machine, argv[i], &map);
  28. if (symbol == NULL) {
  29. printf("%s: not found\n", argv[i]);
  30. continue;
  31. }
  32. printf("%s: %s %s %#" PRIx64 "-%#" PRIx64 " (%#" PRIx64 "-%#" PRIx64")\n",
  33. symbol->name, map->dso->short_name, map->dso->long_name,
  34. map->unmap_ip(map, symbol->start), map->unmap_ip(map, symbol->end),
  35. symbol->start, symbol->end);
  36. }
  37. machine__delete(machine);
  38. return 0;
  39. }
  40. int cmd_kallsyms(int argc, const char **argv)
  41. {
  42. const struct option options[] = {
  43. OPT_INCR('v', "verbose", &verbose, "be more verbose (show counter open errors, etc)"),
  44. OPT_END()
  45. };
  46. const char * const kallsyms_usage[] = {
  47. "perf kallsyms [<options>] symbol_name",
  48. NULL
  49. };
  50. argc = parse_options(argc, argv, options, kallsyms_usage, 0);
  51. if (argc < 1)
  52. usage_with_options(kallsyms_usage, options);
  53. symbol_conf.sort_by_name = true;
  54. symbol_conf.try_vmlinux_path = (symbol_conf.vmlinux_name == NULL);
  55. if (symbol__init(NULL) < 0)
  56. return -1;
  57. return __cmd_kallsyms(argc, argv);
  58. }