Commit | Line | Data |
---|---|---|
cf73e0fe AB |
1 | /* |
2 | * Copyright (C) 2013 Paul Woegerer <paul_woegerer@mentor.com> | |
3 | * Copyright (C) 2015 Antoine Busque <abusque@efficios.com> | |
97c7c238 | 4 | * Copyright (C) 2016 Mathieu Desnoyers <mathieu.desnoyers@efficios.com> |
cf73e0fe AB |
5 | * |
6 | * This library is free software; you can redistribute it and/or | |
7 | * modify it under the terms of the GNU Lesser General Public | |
8 | * License as published by the Free Software Foundation; either | |
9 | * version 2.1 of the License, or (at your option) any later version. | |
10 | * | |
11 | * This library is distributed in the hope that it will be useful, | |
12 | * but WITHOUT ANY WARRANTY; without even the implied warranty of | |
13 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | |
14 | * Lesser General Public License for more details. | |
15 | * | |
16 | * You should have received a copy of the GNU Lesser General Public | |
17 | * License along with this library; if not, write to the Free Software | |
18 | * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA | |
19 | */ | |
20 | ||
cf73e0fe | 21 | #define _GNU_SOURCE |
1ddceb36 | 22 | #define _LGPL_SOURCE |
8e2aed3f | 23 | #include <link.h> |
cf73e0fe | 24 | #include <limits.h> |
cf73e0fe | 25 | #include <stdio.h> |
8e2aed3f AB |
26 | #include <stdint.h> |
27 | #include <stdlib.h> | |
97c7c238 | 28 | #include <stdbool.h> |
8e2aed3f AB |
29 | #include <sys/types.h> |
30 | #include <unistd.h> | |
cf73e0fe | 31 | |
8e2aed3f | 32 | #include <lttng/ust-elf.h> |
97c7c238 | 33 | #include <helper.h> |
cf73e0fe AB |
34 | #include "lttng-tracer-core.h" |
35 | #include "lttng-ust-statedump.h" | |
97c7c238 | 36 | #include "jhash.h" |
49254388 | 37 | #include "getenv.h" |
cf73e0fe AB |
38 | |
39 | #define TRACEPOINT_DEFINE | |
97c7c238 MD |
40 | #include "ust_lib.h" /* Only define. */ |
41 | ||
cf73e0fe AB |
42 | #define TRACEPOINT_CREATE_PROBES |
43 | #define TP_SESSION_CHECK | |
97c7c238 | 44 | #include "lttng-ust-statedump-provider.h" /* Define and create probes. */ |
cf73e0fe AB |
45 | |
46 | struct dl_iterate_data { | |
cf73e0fe | 47 | int exec_found; |
97c7c238 MD |
48 | bool first; |
49 | bool cancel; | |
cf73e0fe AB |
50 | }; |
51 | ||
f60e49df | 52 | struct bin_info_data { |
cf73e0fe | 53 | void *base_addr_ptr; |
97c7c238 | 54 | char resolved_path[PATH_MAX]; |
8e2aed3f AB |
55 | char *dbg_file; |
56 | uint8_t *build_id; | |
57 | uint64_t memsz; | |
58 | size_t build_id_len; | |
cf73e0fe | 59 | int vdso; |
8e2aed3f | 60 | uint32_t crc; |
f5eb039d | 61 | uint8_t is_pic; |
c5c4fd82 MD |
62 | uint8_t has_build_id; |
63 | uint8_t has_debug_link; | |
cf73e0fe AB |
64 | }; |
65 | ||
97c7c238 MD |
66 | struct lttng_ust_dl_node { |
67 | struct bin_info_data bin_data; | |
68 | struct cds_hlist_node node; | |
69 | bool traced; | |
70 | bool marked; | |
71 | }; | |
72 | ||
73 | #define UST_DL_STATE_HASH_BITS 8 | |
74 | #define UST_DL_STATE_TABLE_SIZE (1 << UST_DL_STATE_HASH_BITS) | |
75 | struct cds_hlist_head dl_state_table[UST_DL_STATE_TABLE_SIZE]; | |
76 | ||
cf73e0fe AB |
77 | typedef void (*tracepoint_cb)(struct lttng_session *session, void *priv); |
78 | ||
97c7c238 MD |
79 | static |
80 | struct lttng_ust_dl_node *alloc_dl_node(const struct bin_info_data *bin_data) | |
81 | { | |
82 | struct lttng_ust_dl_node *e; | |
83 | ||
84 | e = zmalloc(sizeof(struct lttng_ust_dl_node)); | |
85 | if (!e) | |
86 | return NULL; | |
87 | if (bin_data->dbg_file) { | |
88 | e->bin_data.dbg_file = strdup(bin_data->dbg_file); | |
89 | if (!e->bin_data.dbg_file) | |
90 | goto error; | |
91 | } | |
92 | if (bin_data->build_id) { | |
93 | e->bin_data.build_id = zmalloc(bin_data->build_id_len); | |
94 | if (!e->bin_data.build_id) | |
95 | goto error; | |
96 | memcpy(e->bin_data.build_id, bin_data->build_id, | |
97 | bin_data->build_id_len); | |
98 | } | |
99 | e->bin_data.base_addr_ptr = bin_data->base_addr_ptr; | |
100 | memcpy(e->bin_data.resolved_path, bin_data->resolved_path, PATH_MAX); | |
101 | e->bin_data.memsz = bin_data->memsz; | |
102 | e->bin_data.build_id_len = bin_data->build_id_len; | |
103 | e->bin_data.vdso = bin_data->vdso; | |
104 | e->bin_data.crc = bin_data->crc; | |
105 | e->bin_data.is_pic = bin_data->is_pic; | |
106 | e->bin_data.has_build_id = bin_data->has_build_id; | |
107 | e->bin_data.has_debug_link = bin_data->has_debug_link; | |
108 | return e; | |
109 | ||
110 | error: | |
111 | free(e->bin_data.build_id); | |
112 | free(e->bin_data.dbg_file); | |
113 | free(e); | |
114 | return NULL; | |
115 | } | |
116 | ||
117 | static | |
118 | void free_dl_node(struct lttng_ust_dl_node *e) | |
119 | { | |
120 | free(e->bin_data.build_id); | |
121 | free(e->bin_data.dbg_file); | |
122 | free(e); | |
123 | } | |
124 | ||
125 | /* Return 0 if same, nonzero if not. */ | |
126 | static | |
127 | int compare_bin_data(const struct bin_info_data *a, | |
128 | const struct bin_info_data *b) | |
129 | { | |
130 | if (a->base_addr_ptr != b->base_addr_ptr) | |
131 | return -1; | |
132 | if (strcmp(a->resolved_path, b->resolved_path) != 0) | |
133 | return -1; | |
134 | if (a->dbg_file && !b->dbg_file) | |
135 | return -1; | |
136 | if (!a->dbg_file && b->dbg_file) | |
137 | return -1; | |
138 | if (a->dbg_file && strcmp(a->dbg_file, b->dbg_file) != 0) | |
139 | return -1; | |
140 | if (a->build_id && !b->build_id) | |
141 | return -1; | |
142 | if (!a->build_id && b->build_id) | |
143 | return -1; | |
144 | if (a->build_id_len != b->build_id_len) | |
145 | return -1; | |
146 | if (a->build_id && | |
147 | memcmp(a->build_id, b->build_id, a->build_id_len) != 0) | |
148 | return -1; | |
149 | if (a->memsz != b->memsz) | |
150 | return -1; | |
151 | if (a->vdso != b->vdso) | |
152 | return -1; | |
153 | if (a->crc != b->crc) | |
154 | return -1; | |
155 | if (a->is_pic != b->is_pic) | |
156 | return -1; | |
157 | if (a->has_build_id != b->has_build_id) | |
158 | return -1; | |
159 | if (a->has_debug_link != b->has_debug_link) | |
160 | return -1; | |
161 | return 0; | |
162 | } | |
163 | ||
164 | static | |
165 | struct lttng_ust_dl_node *find_or_create_dl_node(struct bin_info_data *bin_data) | |
166 | { | |
167 | struct cds_hlist_head *head; | |
168 | struct lttng_ust_dl_node *e; | |
169 | unsigned int hash; | |
170 | bool found = false; | |
171 | ||
172 | hash = jhash(&bin_data->base_addr_ptr, | |
173 | sizeof(bin_data->base_addr_ptr), 0); | |
174 | head = &dl_state_table[hash & (UST_DL_STATE_TABLE_SIZE - 1)]; | |
175 | cds_hlist_for_each_entry_2(e, head, node) { | |
176 | if (compare_bin_data(&e->bin_data, bin_data) != 0) | |
177 | continue; | |
178 | found = true; | |
179 | break; | |
180 | } | |
181 | if (!found) { | |
182 | /* Create */ | |
183 | e = alloc_dl_node(bin_data); | |
184 | if (!e) | |
185 | return NULL; | |
186 | cds_hlist_add_head(&e->node, head); | |
187 | } | |
188 | return e; | |
189 | } | |
190 | ||
191 | static | |
192 | void remove_dl_node(struct lttng_ust_dl_node *e) | |
193 | { | |
194 | cds_hlist_del(&e->node); | |
195 | } | |
196 | ||
cf73e0fe AB |
197 | /* |
198 | * Trace statedump event into all sessions owned by the caller thread | |
199 | * for which statedump is pending. | |
200 | */ | |
201 | static | |
97c7c238 | 202 | void trace_statedump_event(tracepoint_cb tp_cb, void *owner, void *priv) |
cf73e0fe AB |
203 | { |
204 | struct cds_list_head *sessionsp; | |
205 | struct lttng_session *session; | |
206 | ||
cf73e0fe AB |
207 | sessionsp = _lttng_get_sessions(); |
208 | cds_list_for_each_entry(session, sessionsp, node) { | |
209 | if (session->owner != owner) | |
210 | continue; | |
211 | if (!session->statedump_pending) | |
212 | continue; | |
213 | tp_cb(session, priv); | |
214 | } | |
cf73e0fe AB |
215 | } |
216 | ||
217 | static | |
f60e49df | 218 | void trace_bin_info_cb(struct lttng_session *session, void *priv) |
cf73e0fe | 219 | { |
f60e49df | 220 | struct bin_info_data *bin_data = (struct bin_info_data *) priv; |
cf73e0fe | 221 | |
f60e49df AB |
222 | tracepoint(lttng_ust_statedump, bin_info, |
223 | session, bin_data->base_addr_ptr, | |
c5c4fd82 MD |
224 | bin_data->resolved_path, bin_data->memsz, |
225 | bin_data->is_pic, bin_data->has_build_id, | |
226 | bin_data->has_debug_link); | |
8e2aed3f AB |
227 | } |
228 | ||
229 | static | |
230 | void trace_build_id_cb(struct lttng_session *session, void *priv) | |
231 | { | |
f60e49df | 232 | struct bin_info_data *bin_data = (struct bin_info_data *) priv; |
8e2aed3f AB |
233 | |
234 | tracepoint(lttng_ust_statedump, build_id, | |
f60e49df AB |
235 | session, bin_data->base_addr_ptr, |
236 | bin_data->build_id, bin_data->build_id_len); | |
8e2aed3f AB |
237 | } |
238 | ||
239 | static | |
240 | void trace_debug_link_cb(struct lttng_session *session, void *priv) | |
241 | { | |
f60e49df | 242 | struct bin_info_data *bin_data = (struct bin_info_data *) priv; |
8e2aed3f AB |
243 | |
244 | tracepoint(lttng_ust_statedump, debug_link, | |
f60e49df AB |
245 | session, bin_data->base_addr_ptr, |
246 | bin_data->dbg_file, bin_data->crc); | |
cf73e0fe AB |
247 | } |
248 | ||
249 | static | |
250 | void trace_start_cb(struct lttng_session *session, void *priv) | |
251 | { | |
252 | tracepoint(lttng_ust_statedump, start, session); | |
253 | } | |
254 | ||
255 | static | |
256 | void trace_end_cb(struct lttng_session *session, void *priv) | |
257 | { | |
258 | tracepoint(lttng_ust_statedump, end, session); | |
259 | } | |
260 | ||
8e2aed3f | 261 | static |
c5c4fd82 MD |
262 | int get_elf_info(struct bin_info_data *bin_data) |
263 | { | |
8e2aed3f | 264 | struct lttng_ust_elf *elf; |
c5c4fd82 | 265 | int ret = 0, found; |
8e2aed3f | 266 | |
f60e49df | 267 | elf = lttng_ust_elf_create(bin_data->resolved_path); |
8e2aed3f AB |
268 | if (!elf) { |
269 | ret = -1; | |
270 | goto end; | |
271 | } | |
272 | ||
f60e49df | 273 | ret = lttng_ust_elf_get_memsz(elf, &bin_data->memsz); |
8e2aed3f AB |
274 | if (ret) { |
275 | goto end; | |
276 | } | |
277 | ||
c5c4fd82 | 278 | found = 0; |
f60e49df | 279 | ret = lttng_ust_elf_get_build_id(elf, &bin_data->build_id, |
c5c4fd82 MD |
280 | &bin_data->build_id_len, |
281 | &found); | |
8e2aed3f AB |
282 | if (ret) { |
283 | goto end; | |
284 | } | |
c5c4fd82 MD |
285 | bin_data->has_build_id = !!found; |
286 | found = 0; | |
f60e49df | 287 | ret = lttng_ust_elf_get_debug_link(elf, &bin_data->dbg_file, |
c5c4fd82 MD |
288 | &bin_data->crc, |
289 | &found); | |
8e2aed3f AB |
290 | if (ret) { |
291 | goto end; | |
292 | } | |
c5c4fd82 | 293 | bin_data->has_debug_link = !!found; |
8e2aed3f | 294 | |
f60e49df | 295 | bin_data->is_pic = lttng_ust_elf_is_pic(elf); |
f5eb039d | 296 | |
8e2aed3f AB |
297 | end: |
298 | lttng_ust_elf_destroy(elf); | |
299 | return ret; | |
300 | } | |
301 | ||
cf73e0fe | 302 | static |
97c7c238 MD |
303 | void trace_baddr(struct bin_info_data *bin_data, void *owner) |
304 | { | |
305 | trace_statedump_event(trace_bin_info_cb, owner, bin_data); | |
306 | ||
307 | if (bin_data->has_build_id) | |
308 | trace_statedump_event(trace_build_id_cb, owner, bin_data); | |
309 | ||
310 | if (bin_data->has_debug_link) | |
311 | trace_statedump_event(trace_debug_link_cb, owner, bin_data); | |
312 | } | |
313 | ||
314 | static | |
315 | int extract_baddr(struct bin_info_data *bin_data) | |
cf73e0fe | 316 | { |
c5c4fd82 | 317 | int ret = 0; |
97c7c238 | 318 | struct lttng_ust_dl_node *e; |
8e2aed3f | 319 | |
f60e49df | 320 | if (!bin_data->vdso) { |
c5c4fd82 | 321 | ret = get_elf_info(bin_data); |
8e2aed3f AB |
322 | if (ret) { |
323 | goto end; | |
324 | } | |
325 | } else { | |
f60e49df | 326 | bin_data->memsz = 0; |
fd783031 MD |
327 | bin_data->has_build_id = 0; |
328 | bin_data->has_debug_link = 0; | |
8e2aed3f AB |
329 | } |
330 | ||
97c7c238 MD |
331 | e = find_or_create_dl_node(bin_data); |
332 | if (!e) { | |
333 | ret = -1; | |
8e2aed3f AB |
334 | goto end; |
335 | } | |
97c7c238 | 336 | e->marked = true; |
8e2aed3f | 337 | end: |
97c7c238 MD |
338 | free(bin_data->build_id); |
339 | bin_data->build_id = NULL; | |
340 | free(bin_data->dbg_file); | |
341 | bin_data->dbg_file = NULL; | |
8e2aed3f | 342 | return ret; |
cf73e0fe AB |
343 | } |
344 | ||
345 | static | |
97c7c238 | 346 | void trace_statedump_start(void *owner) |
cf73e0fe | 347 | { |
97c7c238 | 348 | trace_statedump_event(trace_start_cb, owner, NULL); |
cf73e0fe AB |
349 | } |
350 | ||
351 | static | |
97c7c238 | 352 | void trace_statedump_end(void *owner) |
cf73e0fe | 353 | { |
97c7c238 | 354 | trace_statedump_event(trace_end_cb, owner, NULL); |
cf73e0fe AB |
355 | } |
356 | ||
357 | static | |
97c7c238 | 358 | void iter_begin(struct dl_iterate_data *data) |
cf73e0fe | 359 | { |
97c7c238 | 360 | unsigned int i; |
cf73e0fe | 361 | |
d34e6761 MD |
362 | /* |
363 | * UST lock nests within dynamic loader lock. | |
364 | * | |
97c7c238 | 365 | * Hold this lock across handling of the module listing to |
d34e6761 MD |
366 | * protect memory allocation at early process start, due to |
367 | * interactions with libc-wrapper lttng malloc instrumentation. | |
368 | */ | |
369 | if (ust_lock()) { | |
97c7c238 MD |
370 | data->cancel = true; |
371 | return; | |
d34e6761 MD |
372 | } |
373 | ||
97c7c238 MD |
374 | /* Ensure all entries are unmarked. */ |
375 | for (i = 0; i < UST_DL_STATE_TABLE_SIZE; i++) { | |
376 | struct cds_hlist_head *head; | |
377 | struct lttng_ust_dl_node *e; | |
378 | ||
379 | head = &dl_state_table[i]; | |
380 | cds_hlist_for_each_entry_2(e, head, node) | |
381 | assert(!e->marked); | |
382 | } | |
383 | } | |
384 | ||
385 | static | |
386 | void trace_lib_load(const struct bin_info_data *bin_data, void *ip) | |
387 | { | |
388 | tracepoint(lttng_ust_lib, load, | |
389 | ip, bin_data->base_addr_ptr, bin_data->resolved_path, | |
390 | bin_data->memsz, bin_data->has_build_id, | |
391 | bin_data->has_debug_link); | |
392 | ||
393 | if (bin_data->has_build_id) { | |
394 | tracepoint(lttng_ust_lib, build_id, | |
395 | ip, bin_data->base_addr_ptr, bin_data->build_id, | |
396 | bin_data->build_id_len); | |
397 | } | |
398 | ||
399 | if (bin_data->has_debug_link) { | |
400 | tracepoint(lttng_ust_lib, debug_link, | |
401 | ip, bin_data->base_addr_ptr, bin_data->dbg_file, | |
402 | bin_data->crc); | |
403 | } | |
404 | } | |
405 | ||
406 | static | |
407 | void trace_lib_unload(const struct bin_info_data *bin_data, void *ip) | |
408 | { | |
409 | tracepoint(lttng_ust_lib, unload, ip, bin_data->base_addr_ptr); | |
410 | } | |
411 | ||
412 | static | |
413 | void iter_end(struct dl_iterate_data *data, void *ip) | |
414 | { | |
415 | unsigned int i; | |
416 | ||
417 | /* | |
418 | * Iterate on hash table. | |
419 | * For each marked, traced, do nothing. | |
420 | * For each marked, not traced, trace lib open event. traced = true. | |
421 | * For each unmarked, traced, trace lib close event. remove node. | |
422 | * For each unmarked, not traced, remove node. | |
423 | */ | |
424 | for (i = 0; i < UST_DL_STATE_TABLE_SIZE; i++) { | |
425 | struct cds_hlist_head *head; | |
426 | struct lttng_ust_dl_node *e; | |
427 | ||
428 | head = &dl_state_table[i]; | |
429 | cds_hlist_for_each_entry_2(e, head, node) { | |
430 | if (e->marked) { | |
431 | if (!e->traced) { | |
432 | trace_lib_load(&e->bin_data, ip); | |
433 | e->traced = true; | |
434 | } | |
b891574e | 435 | e->marked = false; |
97c7c238 MD |
436 | } else { |
437 | if (e->traced) | |
438 | trace_lib_unload(&e->bin_data, ip); | |
439 | remove_dl_node(e); | |
440 | free_dl_node(e); | |
441 | } | |
97c7c238 MD |
442 | } |
443 | } | |
444 | ust_unlock(); | |
445 | } | |
446 | ||
447 | static | |
448 | int extract_bin_info_events(struct dl_phdr_info *info, size_t size, void *_data) | |
449 | { | |
450 | int j, ret = 0; | |
451 | struct dl_iterate_data *data = _data; | |
452 | ||
453 | if (data->first) { | |
454 | iter_begin(data); | |
455 | data->first = false; | |
456 | } | |
457 | ||
458 | if (data->cancel) | |
459 | goto end; | |
460 | ||
cf73e0fe | 461 | for (j = 0; j < info->dlpi_phnum; j++) { |
f60e49df | 462 | struct bin_info_data bin_data; |
cf73e0fe AB |
463 | |
464 | if (info->dlpi_phdr[j].p_type != PT_LOAD) | |
465 | continue; | |
466 | ||
97c7c238 MD |
467 | memset(&bin_data, 0, sizeof(bin_data)); |
468 | ||
cf73e0fe | 469 | /* Calculate virtual memory address of the loadable segment */ |
97c7c238 | 470 | bin_data.base_addr_ptr = (void *) info->dlpi_addr + |
cf73e0fe AB |
471 | info->dlpi_phdr[j].p_vaddr; |
472 | ||
473 | if ((info->dlpi_name == NULL || info->dlpi_name[0] == 0)) { | |
474 | /* | |
475 | * Only the first phdr without a dlpi_name | |
476 | * encountered is considered as the program | |
477 | * executable. The rest are vdsos. | |
478 | */ | |
479 | if (!data->exec_found) { | |
480 | ssize_t path_len; | |
481 | data->exec_found = 1; | |
482 | ||
483 | /* | |
484 | * Use /proc/self/exe to resolve the | |
485 | * executable's full path. | |
486 | */ | |
487 | path_len = readlink("/proc/self/exe", | |
97c7c238 | 488 | bin_data.resolved_path, |
cf73e0fe AB |
489 | PATH_MAX - 1); |
490 | if (path_len <= 0) | |
491 | break; | |
492 | ||
97c7c238 | 493 | bin_data.resolved_path[path_len] = '\0'; |
f60e49df | 494 | bin_data.vdso = 0; |
cf73e0fe | 495 | } else { |
97c7c238 MD |
496 | snprintf(bin_data.resolved_path, |
497 | PATH_MAX - 1, "[vdso]"); | |
f60e49df | 498 | bin_data.vdso = 1; |
cf73e0fe AB |
499 | } |
500 | } else { | |
501 | /* | |
502 | * For regular dl_phdr_info entries check if | |
f60e49df | 503 | * the path to the binary really exists. If not, |
cf73e0fe AB |
504 | * treat as vdso and use dlpi_name as 'path'. |
505 | */ | |
97c7c238 MD |
506 | if (!realpath(info->dlpi_name, |
507 | bin_data.resolved_path)) { | |
508 | snprintf(bin_data.resolved_path, | |
509 | PATH_MAX - 1, "[%s]", | |
cf73e0fe | 510 | info->dlpi_name); |
f60e49df | 511 | bin_data.vdso = 1; |
89be5359 | 512 | } else { |
f60e49df | 513 | bin_data.vdso = 0; |
cf73e0fe AB |
514 | } |
515 | } | |
516 | ||
97c7c238 | 517 | ret = extract_baddr(&bin_data); |
d34e6761 | 518 | break; |
cf73e0fe | 519 | } |
d34e6761 | 520 | end: |
d34e6761 | 521 | return ret; |
cf73e0fe AB |
522 | } |
523 | ||
cf73e0fe | 524 | static |
97c7c238 MD |
525 | void ust_dl_table_statedump(void *owner) |
526 | { | |
527 | unsigned int i; | |
528 | ||
529 | if (ust_lock()) | |
530 | goto end; | |
531 | ||
532 | /* Statedump each traced table entry into session for owner. */ | |
533 | for (i = 0; i < UST_DL_STATE_TABLE_SIZE; i++) { | |
534 | struct cds_hlist_head *head; | |
535 | struct lttng_ust_dl_node *e; | |
536 | ||
537 | head = &dl_state_table[i]; | |
538 | cds_hlist_for_each_entry_2(e, head, node) { | |
539 | if (e->traced) | |
540 | trace_baddr(&e->bin_data, owner); | |
541 | } | |
542 | } | |
543 | ||
544 | end: | |
545 | ust_unlock(); | |
546 | } | |
547 | ||
548 | void lttng_ust_dl_update(void *ip) | |
cf73e0fe AB |
549 | { |
550 | struct dl_iterate_data data; | |
551 | ||
49254388 | 552 | if (lttng_getenv("LTTNG_UST_WITHOUT_BADDR_STATEDUMP")) |
97c7c238 | 553 | return; |
cf73e0fe | 554 | |
c362addf MD |
555 | /* |
556 | * Fixup lttng-ust TLS when called from dlopen/dlclose | |
557 | * instrumentation. | |
558 | */ | |
559 | lttng_ust_fixup_tls(); | |
560 | ||
cf73e0fe | 561 | data.exec_found = 0; |
97c7c238 MD |
562 | data.first = true; |
563 | data.cancel = false; | |
cf73e0fe AB |
564 | /* |
565 | * Iterate through the list of currently loaded shared objects and | |
97c7c238 | 566 | * generate tables entries for loadable segments using |
f60e49df | 567 | * extract_bin_info_events. |
97c7c238 MD |
568 | * Removed libraries are detected by mark-and-sweep: marking is |
569 | * done in the iteration over libraries, and sweeping is | |
570 | * performed by iter_end(). | |
cf73e0fe | 571 | */ |
f60e49df | 572 | dl_iterate_phdr(extract_bin_info_events, &data); |
97c7c238 MD |
573 | if (data.first) |
574 | iter_begin(&data); | |
575 | iter_end(&data, ip); | |
576 | } | |
cf73e0fe | 577 | |
97c7c238 MD |
578 | /* |
579 | * Generate a statedump of base addresses of all shared objects loaded | |
580 | * by the traced application, as well as for the application's | |
581 | * executable itself. | |
582 | */ | |
583 | static | |
584 | int do_baddr_statedump(void *owner) | |
585 | { | |
49254388 | 586 | if (lttng_getenv("LTTNG_UST_WITHOUT_BADDR_STATEDUMP")) |
97c7c238 MD |
587 | return 0; |
588 | lttng_ust_dl_update(LTTNG_UST_CALLER_IP()); | |
589 | ust_dl_table_statedump(owner); | |
cf73e0fe AB |
590 | return 0; |
591 | } | |
592 | ||
593 | /* | |
594 | * Generate a statedump of a given traced application. A statedump is | |
595 | * delimited by start and end events. For a given (process, session) | |
596 | * pair, begin/end events are serialized and will match. However, in a | |
597 | * session, statedumps from different processes may be | |
598 | * interleaved. The vpid context should be used to identify which | |
599 | * events belong to which process. | |
8002ea62 MD |
600 | * |
601 | * Grab the ust_lock outside of the RCU read-side lock because we | |
602 | * perform synchronize_rcu with the ust_lock held, which can trigger | |
603 | * deadlocks otherwise. | |
cf73e0fe AB |
604 | */ |
605 | int do_lttng_ust_statedump(void *owner) | |
606 | { | |
8002ea62 | 607 | ust_lock_nocheck(); |
cf73e0fe | 608 | trace_statedump_start(owner); |
8002ea62 MD |
609 | ust_unlock(); |
610 | ||
cf73e0fe | 611 | do_baddr_statedump(owner); |
8002ea62 MD |
612 | |
613 | ust_lock_nocheck(); | |
cf73e0fe | 614 | trace_statedump_end(owner); |
8002ea62 | 615 | ust_unlock(); |
cf73e0fe AB |
616 | |
617 | return 0; | |
618 | } | |
619 | ||
620 | void lttng_ust_statedump_init(void) | |
621 | { | |
622 | __tracepoints__init(); | |
623 | __tracepoints__ptrs_init(); | |
624 | __lttng_events_init__lttng_ust_statedump(); | |
97c7c238 MD |
625 | lttng_ust_dl_update(LTTNG_UST_CALLER_IP()); |
626 | } | |
627 | ||
628 | static | |
629 | void ust_dl_state_destroy(void) | |
630 | { | |
631 | unsigned int i; | |
632 | ||
633 | for (i = 0; i < UST_DL_STATE_TABLE_SIZE; i++) { | |
634 | struct cds_hlist_head *head; | |
635 | struct lttng_ust_dl_node *e, *tmp; | |
636 | ||
637 | head = &dl_state_table[i]; | |
638 | cds_hlist_for_each_entry_safe_2(e, tmp, head, node) | |
639 | free_dl_node(e); | |
640 | CDS_INIT_HLIST_HEAD(head); | |
641 | } | |
cf73e0fe AB |
642 | } |
643 | ||
644 | void lttng_ust_statedump_destroy(void) | |
645 | { | |
646 | __lttng_events_exit__lttng_ust_statedump(); | |
647 | __tracepoints__ptrs_destroy(); | |
648 | __tracepoints__destroy(); | |
97c7c238 | 649 | ust_dl_state_destroy(); |
cf73e0fe | 650 | } |