map.h 6.8 KB
Newer Older
1
/* SPDX-License-Identifier: GPL-2.0 */
2 3 4
#ifndef __PERF_MAP_H
#define __PERF_MAP_H

5
#include <linux/refcount.h>
6 7 8
#include <linux/compiler.h>
#include <linux/list.h>
#include <linux/rbtree.h>
9
#include <pthread.h>
10
#include <stdio.h>
11
#include <string.h>
12
#include <stdbool.h>
B
Borislav Petkov 已提交
13
#include <linux/types.h>
14
#include "rwsem.h"
15 16

struct dso;
17
struct ip_callchain;
18 19
struct ref_reloc_sym;
struct map_groups;
20
struct machine;
21
struct perf_evsel;
22 23 24 25 26 27

struct map {
	union {
		struct rb_node	rb_node;
		struct list_head node;
	};
28
	struct rb_node          rb_node_name;
29 30
	u64			start;
	u64			end;
31
	bool			erange_warned;
32
	u32			priv;
33 34
	u32			prot;
	u32			flags;
35
	u64			pgoff;
36
	u64			reloc;
37 38 39
	u32			maj, min; /* only valid for MMAP2 record */
	u64			ino;      /* only valid for MMAP2 record */
	u64			ino_generation;/* only valid for MMAP2 record */
40 41

	/* ip -> dso rip */
42
	u64			(*map_ip)(struct map *, u64);
43
	/* dso rip -> ip */
44
	u64			(*unmap_ip)(struct map *, u64);
45

46
	struct dso		*dso;
47
	struct map_groups	*groups;
48
	refcount_t		refcnt;
49 50
};

51 52
#define KMAP_NAME_LEN 256

53 54 55
struct kmap {
	struct ref_reloc_sym	*ref_reloc_sym;
	struct map_groups	*kmaps;
56
	char			name[KMAP_NAME_LEN];
57 58
};

59 60
struct maps {
	struct rb_root	 entries;
61
	struct rb_root	 names;
62
	struct rw_semaphore lock;
63 64
};

65
struct map_groups {
66
	struct maps	 maps;
67
	struct machine	 *machine;
68
	refcount_t	 refcnt;
69 70
};

71
struct map_groups *map_groups__new(struct machine *machine);
72
void map_groups__delete(struct map_groups *mg);
73
bool map_groups__empty(struct map_groups *mg);
74

75 76
static inline struct map_groups *map_groups__get(struct map_groups *mg)
{
77
	if (mg)
78
		refcount_inc(&mg->refcnt);
79 80 81 82 83
	return mg;
}

void map_groups__put(struct map_groups *mg);

84
struct kmap *__map__kmap(struct map *map);
85 86
struct kmap *map__kmap(struct map *map);
struct map_groups *map__kmaps(struct map *map);
87

88 89 90 91 92 93 94 95 96 97
static inline u64 map__map_ip(struct map *map, u64 ip)
{
	return ip - map->start + map->pgoff;
}

static inline u64 map__unmap_ip(struct map *map, u64 ip)
{
	return ip + map->start - map->pgoff;
}

98
static inline u64 identity__map_ip(struct map *map __maybe_unused, u64 ip)
99 100 101 102
{
	return ip;
}

103 104 105 106
static inline size_t map__size(const struct map *map)
{
	return map->end - map->start;
}
107

108
/* rip/ip <-> addr suitable for passing to `objdump --start-address=` */
109 110
u64 map__rip_2objdump(struct map *map, u64 rip);

111 112 113
/* objdump address -> memory address */
u64 map__objdump_2mem(struct map *map, u64 ip);

114
struct symbol;
115
struct thread;
116

117 118 119 120 121 122 123 124
/* map__for_each_symbol - iterate over the symbols in the given map
 *
 * @map: the 'struct map *' in which symbols itereated
 * @pos: the 'struct symbol *' to use as a loop cursor
 * @n: the 'struct rb_node *' to use as a temporary storage
 * Note: caller must ensure map->dso is not NULL (map is loaded).
 */
#define map__for_each_symbol(map, pos, n)	\
125
	dso__for_each_symbol(map->dso, pos, n)
126

127 128 129 130 131 132 133
/* map__for_each_symbol_with_name - iterate over the symbols in the given map
 *                                  that have the given name
 *
 * @map: the 'struct map *' in which symbols itereated
 * @sym_name: the symbol name
 * @pos: the 'struct symbol *' to use as a loop cursor
 */
134 135
#define __map__for_each_symbol_by_name(map, sym_name, pos)	\
	for (pos = map__find_symbol_by_name(map, sym_name);	\
136 137 138
	     pos &&						\
	     !symbol__match_symbol_name(pos->name, sym_name,	\
					SYMBOL_TAG_INCLUDE__DEFAULT_ONLY); \
139 140 141
	     pos = symbol__next_by_name(pos))

#define map__for_each_symbol_by_name(map, sym_name, pos)		\
142
	__map__for_each_symbol_by_name(map, sym_name, (pos))
143

144
void map__init(struct map *map,
145
	       u64 start, u64 end, u64 pgoff, struct dso *dso);
146
struct map *map__new(struct machine *machine, u64 start, u64 len,
147
		     u64 pgoff, u32 d_maj, u32 d_min, u64 ino,
148
		     u64 ino_gen, u32 prot, u32 flags,
149 150
		     char *filename, struct thread *thread);
struct map *map__new2(u64 start, struct dso *dso);
151 152
void map__delete(struct map *map);
struct map *map__clone(struct map *map);
153 154 155 156

static inline struct map *map__get(struct map *map)
{
	if (map)
157
		refcount_inc(&map->refcnt);
158 159 160 161 162
	return map;
}

void map__put(struct map *map);

163 164 165 166 167 168 169 170
static inline void __map__zput(struct map **map)
{
	map__put(*map);
	*map = NULL;
}

#define map__zput(map) __map__zput(&map)

171
size_t map__fprintf(struct map *map, FILE *fp);
172
size_t map__fprintf_dsoname(struct map *map, FILE *fp);
173
char *map__srcline(struct map *map, u64 addr, struct symbol *sym);
174 175
int map__fprintf_srcline(struct map *map, u64 addr, const char *prefix,
			 FILE *fp);
176

177 178 179
int map__load(struct map *map);
struct symbol *map__find_symbol(struct map *map, u64 addr);
struct symbol *map__find_symbol_by_name(struct map *map, const char *name);
180 181
void map__fixup_start(struct map *map);
void map__fixup_end(struct map *map);
182

183
void map__reloc_vmlinux(struct map *map);
184

185 186 187 188
void maps__insert(struct maps *maps, struct map *map);
void maps__remove(struct maps *maps, struct map *map);
struct map *maps__find(struct maps *maps, u64 addr);
struct map *maps__first(struct maps *maps);
189
struct map *map__next(struct map *map);
190
struct symbol *maps__find_symbol_by_name(struct maps *maps, const char *name,
191
                                         struct map **mapp);
192
void map_groups__init(struct map_groups *mg, struct machine *machine);
193
void map_groups__exit(struct map_groups *mg);
194
int map_groups__clone(struct thread *thread,
195
		      struct map_groups *parent);
196
size_t map_groups__fprintf(struct map_groups *mg, FILE *fp);
197

198 199
int map__set_kallsyms_ref_reloc_sym(struct map *map, const char *symbol_name,
				    u64 addr);
200

201
static inline void map_groups__insert(struct map_groups *mg, struct map *map)
202
{
203
	maps__insert(&mg->maps, map);
204
	map->groups = mg;
205 206
}

207
static inline void map_groups__remove(struct map_groups *mg, struct map *map)
208
{
209
	maps__remove(&mg->maps, map);
210 211
}

212 213
static inline struct map *map_groups__find(struct map_groups *mg, u64 addr)
{
214
	return maps__find(&mg->maps, addr);
215 216
}

217
struct map *map_groups__first(struct map_groups *mg);
218 219 220

static inline struct map *map_groups__next(struct map *map)
{
221
	return map__next(map);
222 223
}

224
struct symbol *map_groups__find_symbol(struct map_groups *mg,
225
				       u64 addr, struct map **mapp);
226

227
struct symbol *map_groups__find_symbol_by_name(struct map_groups *mg,
228
					       const char *name,
229
					       struct map **mapp);
230

231 232
struct addr_map_symbol;

233
int map_groups__find_ams(struct addr_map_symbol *ams);
234

235
int map_groups__fixup_overlappings(struct map_groups *mg, struct map *map,
236
				   FILE *fp);
237

238
struct map *map_groups__find_by_name(struct map_groups *mg, const char *name);
239

240
bool __map__is_kernel(const struct map *map);
241
bool __map__is_extra_kernel_map(const struct map *map);
242 243 244

static inline bool __map__is_kmodule(const struct map *map)
{
245
	return !__map__is_kernel(map) && !__map__is_extra_kernel_map(map);
246 247
}

248 249
bool map__has_symbols(const struct map *map);

250 251 252 253 254 255 256
#define ENTRY_TRAMPOLINE_NAME "__entry_SYSCALL_64_trampoline"

static inline bool is_entry_trampoline(const char *name)
{
	return !strcmp(name, ENTRY_TRAMPOLINE_NAME);
}

257
#endif /* __PERF_MAP_H */