dso.h 6.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232
  1. #ifndef __PERF_DSO
  2. #define __PERF_DSO
  3. #include <linux/types.h>
  4. #include <linux/rbtree.h>
  5. #include <stdbool.h>
  6. #include <linux/types.h>
  7. #include "map.h"
  8. #include "build-id.h"
  9. enum dso_binary_type {
  10. DSO_BINARY_TYPE__KALLSYMS = 0,
  11. DSO_BINARY_TYPE__GUEST_KALLSYMS,
  12. DSO_BINARY_TYPE__VMLINUX,
  13. DSO_BINARY_TYPE__GUEST_VMLINUX,
  14. DSO_BINARY_TYPE__JAVA_JIT,
  15. DSO_BINARY_TYPE__DEBUGLINK,
  16. DSO_BINARY_TYPE__BUILD_ID_CACHE,
  17. DSO_BINARY_TYPE__FEDORA_DEBUGINFO,
  18. DSO_BINARY_TYPE__UBUNTU_DEBUGINFO,
  19. DSO_BINARY_TYPE__BUILDID_DEBUGINFO,
  20. DSO_BINARY_TYPE__SYSTEM_PATH_DSO,
  21. DSO_BINARY_TYPE__GUEST_KMODULE,
  22. DSO_BINARY_TYPE__SYSTEM_PATH_KMODULE,
  23. DSO_BINARY_TYPE__KCORE,
  24. DSO_BINARY_TYPE__GUEST_KCORE,
  25. DSO_BINARY_TYPE__OPENEMBEDDED_DEBUGINFO,
  26. DSO_BINARY_TYPE__NOT_FOUND,
  27. };
  28. enum dso_kernel_type {
  29. DSO_TYPE_USER = 0,
  30. DSO_TYPE_KERNEL,
  31. DSO_TYPE_GUEST_KERNEL
  32. };
  33. enum dso_swap_type {
  34. DSO_SWAP__UNSET,
  35. DSO_SWAP__NO,
  36. DSO_SWAP__YES,
  37. };
  38. #define DSO__SWAP(dso, type, val) \
  39. ({ \
  40. type ____r = val; \
  41. BUG_ON(dso->needs_swap == DSO_SWAP__UNSET); \
  42. if (dso->needs_swap == DSO_SWAP__YES) { \
  43. switch (sizeof(____r)) { \
  44. case 2: \
  45. ____r = bswap_16(val); \
  46. break; \
  47. case 4: \
  48. ____r = bswap_32(val); \
  49. break; \
  50. case 8: \
  51. ____r = bswap_64(val); \
  52. break; \
  53. default: \
  54. BUG_ON(1); \
  55. } \
  56. } \
  57. ____r; \
  58. })
  59. #define DSO__DATA_CACHE_SIZE 4096
  60. #define DSO__DATA_CACHE_MASK ~(DSO__DATA_CACHE_SIZE - 1)
  61. struct dso_cache {
  62. struct rb_node rb_node;
  63. u64 offset;
  64. u64 size;
  65. char data[0];
  66. };
  67. struct dso {
  68. struct list_head node;
  69. struct rb_root symbols[MAP__NR_TYPES];
  70. struct rb_root symbol_names[MAP__NR_TYPES];
  71. void *a2l;
  72. char *symsrc_filename;
  73. unsigned int a2l_fails;
  74. enum dso_kernel_type kernel;
  75. enum dso_swap_type needs_swap;
  76. enum dso_binary_type symtab_type;
  77. enum dso_binary_type binary_type;
  78. u8 adjust_symbols:1;
  79. u8 has_build_id:1;
  80. u8 has_srcline:1;
  81. u8 hit:1;
  82. u8 annotate_warned:1;
  83. u8 short_name_allocated:1;
  84. u8 long_name_allocated:1;
  85. u8 sorted_by_name;
  86. u8 loaded;
  87. u8 rel;
  88. u8 build_id[BUILD_ID_SIZE];
  89. const char *short_name;
  90. const char *long_name;
  91. u16 long_name_len;
  92. u16 short_name_len;
  93. /* dso data file */
  94. struct {
  95. struct rb_root cache;
  96. int fd;
  97. size_t file_size;
  98. struct list_head open_entry;
  99. } data;
  100. char name[0];
  101. };
  102. /* dso__for_each_symbol - iterate over the symbols of given type
  103. *
  104. * @dso: the 'struct dso *' in which symbols itereated
  105. * @pos: the 'struct symbol *' to use as a loop cursor
  106. * @n: the 'struct rb_node *' to use as a temporary storage
  107. * @type: the 'enum map_type' type of symbols
  108. */
  109. #define dso__for_each_symbol(dso, pos, n, type) \
  110. symbols__for_each_entry(&(dso)->symbols[(type)], pos, n)
  111. static inline void dso__set_loaded(struct dso *dso, enum map_type type)
  112. {
  113. dso->loaded |= (1 << type);
  114. }
  115. struct dso *dso__new(const char *name);
  116. void dso__delete(struct dso *dso);
  117. void dso__set_short_name(struct dso *dso, const char *name, bool name_allocated);
  118. void dso__set_long_name(struct dso *dso, const char *name, bool name_allocated);
  119. int dso__name_len(const struct dso *dso);
  120. bool dso__loaded(const struct dso *dso, enum map_type type);
  121. bool dso__sorted_by_name(const struct dso *dso, enum map_type type);
  122. void dso__set_sorted_by_name(struct dso *dso, enum map_type type);
  123. void dso__sort_by_name(struct dso *dso, enum map_type type);
  124. void dso__set_build_id(struct dso *dso, void *build_id);
  125. bool dso__build_id_equal(const struct dso *dso, u8 *build_id);
  126. void dso__read_running_kernel_build_id(struct dso *dso,
  127. struct machine *machine);
  128. int dso__kernel_module_get_build_id(struct dso *dso, const char *root_dir);
  129. char dso__symtab_origin(const struct dso *dso);
  130. int dso__read_binary_type_filename(const struct dso *dso, enum dso_binary_type type,
  131. char *root_dir, char *filename, size_t size);
  132. /*
  133. * The dso__data_* external interface provides following functions:
  134. * dso__data_fd
  135. * dso__data_close
  136. * dso__data_read_offset
  137. * dso__data_read_addr
  138. *
  139. * Please refer to the dso.c object code for each function and
  140. * arguments documentation. Following text tries to explain the
  141. * dso file descriptor caching.
  142. *
  143. * The dso__data* interface allows caching of opened file descriptors
  144. * to speed up the dso data accesses. The idea is to leave the file
  145. * descriptor opened ideally for the whole life of the dso object.
  146. *
  147. * The current usage of the dso__data_* interface is as follows:
  148. *
  149. * Get DSO's fd:
  150. * int fd = dso__data_fd(dso, machine);
  151. * USE 'fd' SOMEHOW
  152. *
  153. * Read DSO's data:
  154. * n = dso__data_read_offset(dso_0, &machine, 0, buf, BUFSIZE);
  155. * n = dso__data_read_addr(dso_0, &machine, 0, buf, BUFSIZE);
  156. *
  157. * Eventually close DSO's fd:
  158. * dso__data_close(dso);
  159. *
  160. * It is not necessary to close the DSO object data file. Each time new
  161. * DSO data file is opened, the limit (RLIMIT_NOFILE/2) is checked. Once
  162. * it is crossed, the oldest opened DSO object is closed.
  163. *
  164. * The dso__delete function calls close_dso function to ensure the
  165. * data file descriptor gets closed/unmapped before the dso object
  166. * is freed.
  167. *
  168. * TODO
  169. */
  170. int dso__data_fd(struct dso *dso, struct machine *machine);
  171. void dso__data_close(struct dso *dso);
  172. ssize_t dso__data_read_offset(struct dso *dso, struct machine *machine,
  173. u64 offset, u8 *data, ssize_t size);
  174. ssize_t dso__data_read_addr(struct dso *dso, struct map *map,
  175. struct machine *machine, u64 addr,
  176. u8 *data, ssize_t size);
  177. struct map *dso__new_map(const char *name);
  178. struct dso *dso__kernel_findnew(struct machine *machine, const char *name,
  179. const char *short_name, int dso_type);
  180. void dsos__add(struct list_head *head, struct dso *dso);
  181. struct dso *dsos__find(const struct list_head *head, const char *name,
  182. bool cmp_short);
  183. struct dso *__dsos__findnew(struct list_head *head, const char *name);
  184. bool __dsos__read_build_ids(struct list_head *head, bool with_hits);
  185. size_t __dsos__fprintf_buildid(struct list_head *head, FILE *fp,
  186. bool (skip)(struct dso *dso, int parm), int parm);
  187. size_t __dsos__fprintf(struct list_head *head, FILE *fp);
  188. size_t dso__fprintf_buildid(struct dso *dso, FILE *fp);
  189. size_t dso__fprintf_symbols_by_name(struct dso *dso,
  190. enum map_type type, FILE *fp);
  191. size_t dso__fprintf(struct dso *dso, enum map_type type, FILE *fp);
  192. static inline bool dso__is_vmlinux(struct dso *dso)
  193. {
  194. return dso->binary_type == DSO_BINARY_TYPE__VMLINUX ||
  195. dso->binary_type == DSO_BINARY_TYPE__GUEST_VMLINUX;
  196. }
  197. static inline bool dso__is_kcore(struct dso *dso)
  198. {
  199. return dso->binary_type == DSO_BINARY_TYPE__KCORE ||
  200. dso->binary_type == DSO_BINARY_TYPE__GUEST_KCORE;
  201. }
  202. void dso__free_a2l(struct dso *dso);
  203. #endif /* __PERF_DSO */