builtin-buildid-list.c 3.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120
  1. // SPDX-License-Identifier: GPL-2.0
  2. /*
  3. * builtin-buildid-list.c
  4. *
  5. * Builtin buildid-list command: list buildids in perf.data, in the running
  6. * kernel and in ELF files.
  7. *
  8. * Copyright (C) 2009, Red Hat Inc.
  9. * Copyright (C) 2009, Arnaldo Carvalho de Melo <acme@redhat.com>
  10. */
  11. #include "builtin.h"
  12. #include "perf.h"
  13. #include "util/build-id.h"
  14. #include "util/cache.h"
  15. #include "util/debug.h"
  16. #include <subcmd/parse-options.h>
  17. #include "util/session.h"
  18. #include "util/symbol.h"
  19. #include "util/data.h"
  20. #include <errno.h>
  21. static int sysfs__fprintf_build_id(FILE *fp)
  22. {
  23. char sbuild_id[SBUILD_ID_SIZE];
  24. int ret;
  25. ret = sysfs__sprintf_build_id("/", sbuild_id);
  26. if (ret != sizeof(sbuild_id))
  27. return ret < 0 ? ret : -EINVAL;
  28. return fprintf(fp, "%s\n", sbuild_id);
  29. }
  30. static int filename__fprintf_build_id(const char *name, FILE *fp)
  31. {
  32. char sbuild_id[SBUILD_ID_SIZE];
  33. int ret;
  34. ret = filename__sprintf_build_id(name, sbuild_id);
  35. if (ret != sizeof(sbuild_id))
  36. return ret < 0 ? ret : -EINVAL;
  37. return fprintf(fp, "%s\n", sbuild_id);
  38. }
  39. static bool dso__skip_buildid(struct dso *dso, int with_hits)
  40. {
  41. return with_hits && !dso->hit;
  42. }
  43. static int perf_session__list_build_ids(bool force, bool with_hits)
  44. {
  45. struct perf_session *session;
  46. struct perf_data data = {
  47. .file = {
  48. .path = input_name,
  49. },
  50. .mode = PERF_DATA_MODE_READ,
  51. .force = force,
  52. };
  53. symbol__elf_init();
  54. /*
  55. * See if this is an ELF file first:
  56. */
  57. if (filename__fprintf_build_id(input_name, stdout) > 0)
  58. goto out;
  59. session = perf_session__new(&data, false, &build_id__mark_dso_hit_ops);
  60. if (session == NULL)
  61. return -1;
  62. /*
  63. * We take all buildids when the file contains AUX area tracing data
  64. * because we do not decode the trace because it would take too long.
  65. */
  66. if (!perf_data__is_pipe(&data) &&
  67. perf_header__has_feat(&session->header, HEADER_AUXTRACE))
  68. with_hits = false;
  69. /*
  70. * in pipe-mode, the only way to get the buildids is to parse
  71. * the record stream. Buildids are stored as RECORD_HEADER_BUILD_ID
  72. */
  73. if (with_hits || perf_data__is_pipe(&data))
  74. perf_session__process_events(session);
  75. perf_session__fprintf_dsos_buildid(session, stdout, dso__skip_buildid, with_hits);
  76. perf_session__delete(session);
  77. out:
  78. return 0;
  79. }
  80. int cmd_buildid_list(int argc, const char **argv)
  81. {
  82. bool show_kernel = false;
  83. bool with_hits = false;
  84. bool force = false;
  85. const struct option options[] = {
  86. OPT_BOOLEAN('H', "with-hits", &with_hits, "Show only DSOs with hits"),
  87. OPT_STRING('i', "input", &input_name, "file", "input file name"),
  88. OPT_BOOLEAN('f', "force", &force, "don't complain, do it"),
  89. OPT_BOOLEAN('k', "kernel", &show_kernel, "Show current kernel build id"),
  90. OPT_INCR('v', "verbose", &verbose, "be more verbose"),
  91. OPT_END()
  92. };
  93. const char * const buildid_list_usage[] = {
  94. "perf buildid-list [<options>]",
  95. NULL
  96. };
  97. argc = parse_options(argc, argv, options, buildid_list_usage, 0);
  98. setup_pager();
  99. if (show_kernel)
  100. return !(sysfs__fprintf_build_id(stdout) > 0);
  101. return perf_session__list_build_ids(force, with_hits);
  102. }