1 /* SPDX-License-Identifier: GPL-2.0 */
5 #include <linux/refcount.h>
6 #include <linux/compiler.h>
7 #include <linux/list.h>
8 #include <linux/rbtree.h>
12 #include <linux/types.h>
13 #include <internal/rc_check.h>
19 DECLARE_RC_STRUCT(map) {
29 u64 (*map_ip)(const struct map *, u64);
31 u64 (*unmap_ip)(const struct map *, u64);
40 struct kmap *__map__kmap(struct map *map);
41 struct kmap *map__kmap(struct map *map);
42 struct maps *map__kmaps(struct map *map);
45 u64 map__dso_map_ip(const struct map *map, u64 ip);
47 u64 map__dso_unmap_ip(const struct map *map, u64 ip);
49 u64 identity__map_ip(const struct map *map __maybe_unused, u64 ip);
51 static inline struct dso *map__dso(const struct map *map)
53 return RC_CHK_ACCESS(map)->dso;
56 static inline u64 map__map_ip(const struct map *map, u64 ip)
58 return RC_CHK_ACCESS(map)->map_ip(map, ip);
61 static inline u64 map__unmap_ip(const struct map *map, u64 ip)
63 return RC_CHK_ACCESS(map)->unmap_ip(map, ip);
66 static inline void *map__map_ip_ptr(struct map *map)
68 return RC_CHK_ACCESS(map)->map_ip;
71 static inline void* map__unmap_ip_ptr(struct map *map)
73 return RC_CHK_ACCESS(map)->unmap_ip;
76 static inline u64 map__start(const struct map *map)
78 return RC_CHK_ACCESS(map)->start;
81 static inline u64 map__end(const struct map *map)
83 return RC_CHK_ACCESS(map)->end;
86 static inline u64 map__pgoff(const struct map *map)
88 return RC_CHK_ACCESS(map)->pgoff;
91 static inline u64 map__reloc(const struct map *map)
93 return RC_CHK_ACCESS(map)->reloc;
96 static inline u32 map__flags(const struct map *map)
98 return RC_CHK_ACCESS(map)->flags;
101 static inline u32 map__prot(const struct map *map)
103 return RC_CHK_ACCESS(map)->prot;
106 static inline bool map__priv(const struct map *map)
108 return RC_CHK_ACCESS(map)->priv;
111 static inline refcount_t *map__refcnt(struct map *map)
113 return &RC_CHK_ACCESS(map)->refcnt;
116 static inline bool map__erange_warned(struct map *map)
118 return RC_CHK_ACCESS(map)->erange_warned;
121 static inline size_t map__size(const struct map *map)
123 return map__end(map) - map__start(map);
126 /* rip/ip <-> addr suitable for passing to `objdump --start-address=` */
127 u64 map__rip_2objdump(struct map *map, u64 rip);
129 /* objdump address -> memory address */
130 u64 map__objdump_2mem(struct map *map, u64 ip);
135 /* map__for_each_symbol - iterate over the symbols in the given map
137 * @map: the 'struct map *' in which symbols are iterated
138 * @pos: the 'struct symbol *' to use as a loop cursor
139 * @n: the 'struct rb_node *' to use as a temporary storage
140 * Note: caller must ensure map->dso is not NULL (map is loaded).
142 #define map__for_each_symbol(map, pos, n) \
143 dso__for_each_symbol(map__dso(map), pos, n)
145 /* map__for_each_symbol_with_name - iterate over the symbols in the given map
146 * that have the given name
148 * @map: the 'struct map *' in which symbols are iterated
149 * @sym_name: the symbol name
150 * @pos: the 'struct symbol *' to use as a loop cursor
152 #define __map__for_each_symbol_by_name(map, sym_name, pos) \
153 for (pos = map__find_symbol_by_name(map, sym_name); \
155 !symbol__match_symbol_name(pos->name, sym_name, \
156 SYMBOL_TAG_INCLUDE__DEFAULT_ONLY); \
157 pos = symbol__next_by_name(pos))
159 #define map__for_each_symbol_by_name(map, sym_name, pos) \
160 __map__for_each_symbol_by_name(map, sym_name, (pos))
162 void map__init(struct map *map,
163 u64 start, u64 end, u64 pgoff, struct dso *dso);
168 struct map *map__new(struct machine *machine, u64 start, u64 len,
169 u64 pgoff, struct dso_id *id, u32 prot, u32 flags,
170 struct build_id *bid, char *filename, struct thread *thread);
171 struct map *map__new2(u64 start, struct dso *dso);
172 void map__delete(struct map *map);
173 struct map *map__clone(struct map *map);
175 static inline struct map *map__get(struct map *map)
179 if (RC_CHK_GET(result, map))
180 refcount_inc(map__refcnt(map));
185 void map__put(struct map *map);
187 static inline void __map__zput(struct map **map)
193 #define map__zput(map) __map__zput(&map)
195 size_t map__fprintf(struct map *map, FILE *fp);
196 size_t map__fprintf_dsoname(struct map *map, FILE *fp);
197 char *map__srcline(struct map *map, u64 addr, struct symbol *sym);
198 int map__fprintf_srcline(struct map *map, u64 addr, const char *prefix,
201 int map__load(struct map *map);
202 struct symbol *map__find_symbol(struct map *map, u64 addr);
203 struct symbol *map__find_symbol_by_name(struct map *map, const char *name);
204 void map__fixup_start(struct map *map);
205 void map__fixup_end(struct map *map);
207 int map__set_kallsyms_ref_reloc_sym(struct map *map, const char *symbol_name,
210 bool __map__is_kernel(const struct map *map);
211 bool __map__is_extra_kernel_map(const struct map *map);
212 bool __map__is_bpf_prog(const struct map *map);
213 bool __map__is_bpf_image(const struct map *map);
214 bool __map__is_ool(const struct map *map);
216 static inline bool __map__is_kmodule(const struct map *map)
218 return !__map__is_kernel(map) && !__map__is_extra_kernel_map(map) &&
219 !__map__is_bpf_prog(map) && !__map__is_ool(map) &&
220 !__map__is_bpf_image(map);
223 bool map__has_symbols(const struct map *map);
225 bool map__contains_symbol(const struct map *map, const struct symbol *sym);
227 #define ENTRY_TRAMPOLINE_NAME "__entry_SYSCALL_64_trampoline"
229 static inline bool is_entry_trampoline(const char *name)
231 return !strcmp(name, ENTRY_TRAMPOLINE_NAME);
234 static inline bool is_bpf_image(const char *name)
236 return strncmp(name, "bpf_trampoline_", sizeof("bpf_trampoline_") - 1) == 0 ||
237 strncmp(name, "bpf_dispatcher_", sizeof("bpf_dispatcher_") - 1) == 0;
240 static inline int is_anon_memory(const char *filename)
242 return !strcmp(filename, "//anon") ||
243 !strncmp(filename, "/dev/zero", sizeof("/dev/zero") - 1) ||
244 !strncmp(filename, "/anon_hugepage", sizeof("/anon_hugepage") - 1);
247 static inline int is_no_dso_memory(const char *filename)
249 return !strncmp(filename, "[stack", 6) ||
250 !strncmp(filename, "/SYSV", 5) ||
251 !strcmp(filename, "[heap]");
254 static inline void map__set_start(struct map *map, u64 start)
256 RC_CHK_ACCESS(map)->start = start;
259 static inline void map__set_end(struct map *map, u64 end)
261 RC_CHK_ACCESS(map)->end = end;
264 static inline void map__set_pgoff(struct map *map, u64 pgoff)
266 RC_CHK_ACCESS(map)->pgoff = pgoff;
269 static inline void map__add_pgoff(struct map *map, u64 inc)
271 RC_CHK_ACCESS(map)->pgoff += inc;
274 static inline void map__set_reloc(struct map *map, u64 reloc)
276 RC_CHK_ACCESS(map)->reloc = reloc;
279 static inline void map__set_priv(struct map *map, int priv)
281 RC_CHK_ACCESS(map)->priv = priv;
284 static inline void map__set_erange_warned(struct map *map, bool erange_warned)
286 RC_CHK_ACCESS(map)->erange_warned = erange_warned;
289 static inline void map__set_dso(struct map *map, struct dso *dso)
291 RC_CHK_ACCESS(map)->dso = dso;
294 static inline void map__set_map_ip(struct map *map, u64 (*map_ip)(const struct map *map, u64 ip))
296 RC_CHK_ACCESS(map)->map_ip = map_ip;
299 static inline void map__set_unmap_ip(struct map *map, u64 (*unmap_ip)(const struct map *map, u64 rip))
301 RC_CHK_ACCESS(map)->unmap_ip = unmap_ip;
303 #endif /* __PERF_MAP_H */