Tests: Replace prove by autotools tap runner
[lttng-ust.git] / liblttng-ust / lttng-ust-statedump.c
CommitLineData
cf73e0fe
AB
1/*
2 * Copyright (C) 2013 Paul Woegerer <paul_woegerer@mentor.com>
3 * Copyright (C) 2015 Antoine Busque <abusque@efficios.com>
4 *
5 * This library is free software; you can redistribute it and/or
6 * modify it under the terms of the GNU Lesser General Public
7 * License as published by the Free Software Foundation; either
8 * version 2.1 of the License, or (at your option) any later version.
9 *
10 * This library is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13 * Lesser General Public License for more details.
14 *
15 * You should have received a copy of the GNU Lesser General Public
16 * License along with this library; if not, write to the Free Software
17 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
18 */
19
20#define _LGPL_SOURCE
21#define _GNU_SOURCE
cf73e0fe 22
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>
28#include <sys/types.h>
29#include <unistd.h>
cf73e0fe 30
8e2aed3f 31#include <lttng/ust-elf.h>
cf73e0fe
AB
32#include "lttng-tracer-core.h"
33#include "lttng-ust-statedump.h"
34
35#define TRACEPOINT_DEFINE
36#define TRACEPOINT_CREATE_PROBES
37#define TP_SESSION_CHECK
38#include "lttng-ust-statedump-provider.h"
39
40struct dl_iterate_data {
41 void *owner;
42 int exec_found;
43};
44
f60e49df 45struct bin_info_data {
cf73e0fe
AB
46 void *owner;
47 void *base_addr_ptr;
48 const char *resolved_path;
8e2aed3f
AB
49 char *dbg_file;
50 uint8_t *build_id;
51 uint64_t memsz;
52 size_t build_id_len;
cf73e0fe 53 int vdso;
8e2aed3f 54 uint32_t crc;
f5eb039d 55 uint8_t is_pic;
cf73e0fe
AB
56};
57
58typedef void (*tracepoint_cb)(struct lttng_session *session, void *priv);
59
60/*
61 * Trace statedump event into all sessions owned by the caller thread
62 * for which statedump is pending.
63 */
64static
65int trace_statedump_event(tracepoint_cb tp_cb, void *owner, void *priv)
66{
67 struct cds_list_head *sessionsp;
68 struct lttng_session *session;
69
cf73e0fe
AB
70 sessionsp = _lttng_get_sessions();
71 cds_list_for_each_entry(session, sessionsp, node) {
72 if (session->owner != owner)
73 continue;
74 if (!session->statedump_pending)
75 continue;
76 tp_cb(session, priv);
77 }
cf73e0fe
AB
78 return 0;
79}
80
81static
f60e49df 82void trace_bin_info_cb(struct lttng_session *session, void *priv)
cf73e0fe 83{
f60e49df 84 struct bin_info_data *bin_data = (struct bin_info_data *) priv;
cf73e0fe 85
f60e49df
AB
86 tracepoint(lttng_ust_statedump, bin_info,
87 session, bin_data->base_addr_ptr,
88 bin_data->resolved_path, bin_data->memsz, bin_data->is_pic);
8e2aed3f
AB
89}
90
91static
92void trace_build_id_cb(struct lttng_session *session, void *priv)
93{
f60e49df 94 struct bin_info_data *bin_data = (struct bin_info_data *) priv;
8e2aed3f
AB
95
96 tracepoint(lttng_ust_statedump, build_id,
f60e49df
AB
97 session, bin_data->base_addr_ptr,
98 bin_data->build_id, bin_data->build_id_len);
8e2aed3f
AB
99}
100
101static
102void trace_debug_link_cb(struct lttng_session *session, void *priv)
103{
f60e49df 104 struct bin_info_data *bin_data = (struct bin_info_data *) priv;
8e2aed3f
AB
105
106 tracepoint(lttng_ust_statedump, debug_link,
f60e49df
AB
107 session, bin_data->base_addr_ptr,
108 bin_data->dbg_file, bin_data->crc);
cf73e0fe
AB
109}
110
111static
112void trace_start_cb(struct lttng_session *session, void *priv)
113{
114 tracepoint(lttng_ust_statedump, start, session);
115}
116
117static
118void trace_end_cb(struct lttng_session *session, void *priv)
119{
120 tracepoint(lttng_ust_statedump, end, session);
121}
122
8e2aed3f 123static
f60e49df 124int get_elf_info(struct bin_info_data *bin_data, int *has_build_id,
8e2aed3f
AB
125 int *has_debug_link) {
126 struct lttng_ust_elf *elf;
127 int ret = 0;
128
f60e49df 129 elf = lttng_ust_elf_create(bin_data->resolved_path);
8e2aed3f
AB
130 if (!elf) {
131 ret = -1;
132 goto end;
133 }
134
f60e49df 135 ret = lttng_ust_elf_get_memsz(elf, &bin_data->memsz);
8e2aed3f
AB
136 if (ret) {
137 goto end;
138 }
139
f60e49df
AB
140 ret = lttng_ust_elf_get_build_id(elf, &bin_data->build_id,
141 &bin_data->build_id_len, has_build_id);
8e2aed3f
AB
142 if (ret) {
143 goto end;
144 }
f60e49df
AB
145 ret = lttng_ust_elf_get_debug_link(elf, &bin_data->dbg_file,
146 &bin_data->crc, has_debug_link);
8e2aed3f
AB
147 if (ret) {
148 goto end;
149 }
150
f60e49df 151 bin_data->is_pic = lttng_ust_elf_is_pic(elf);
f5eb039d 152
8e2aed3f
AB
153end:
154 lttng_ust_elf_destroy(elf);
155 return ret;
156}
157
cf73e0fe 158static
f60e49df 159int trace_baddr(struct bin_info_data *bin_data)
cf73e0fe 160{
8e2aed3f
AB
161 int ret = 0, has_build_id = 0, has_debug_link = 0;
162
f60e49df
AB
163 if (!bin_data->vdso) {
164 ret = get_elf_info(bin_data, &has_build_id, &has_debug_link);
8e2aed3f
AB
165 if (ret) {
166 goto end;
167 }
168 } else {
f60e49df 169 bin_data->memsz = 0;
8e2aed3f
AB
170 }
171
f60e49df
AB
172 ret = trace_statedump_event(trace_bin_info_cb, bin_data->owner,
173 bin_data);
8e2aed3f
AB
174 if (ret) {
175 goto end;
176 }
cf73e0fe 177
8e2aed3f
AB
178 if (has_build_id) {
179 ret = trace_statedump_event(
f60e49df
AB
180 trace_build_id_cb, bin_data->owner, bin_data);
181 free(bin_data->build_id);
8e2aed3f
AB
182 if (ret) {
183 goto end;
184 }
cf73e0fe
AB
185 }
186
8e2aed3f
AB
187 if (has_debug_link) {
188 ret = trace_statedump_event(
f60e49df
AB
189 trace_debug_link_cb, bin_data->owner, bin_data);
190 free(bin_data->dbg_file);
8e2aed3f
AB
191 if (ret) {
192 goto end;
193 }
194 }
cf73e0fe 195
8e2aed3f
AB
196end:
197 return ret;
cf73e0fe
AB
198}
199
200static
201int trace_statedump_start(void *owner)
202{
203 return trace_statedump_event(trace_start_cb, owner, NULL);
204}
205
206static
207int trace_statedump_end(void *owner)
208{
209 return trace_statedump_event(trace_end_cb, owner, NULL);
210}
211
212static
f60e49df 213int extract_bin_info_events(struct dl_phdr_info *info, size_t size, void *_data)
cf73e0fe 214{
d34e6761 215 int j, ret = 0;
cf73e0fe
AB
216 struct dl_iterate_data *data = _data;
217
d34e6761
MD
218 /*
219 * UST lock nests within dynamic loader lock.
220 *
221 * Hold this lock across handling of the entire module to
222 * protect memory allocation at early process start, due to
223 * interactions with libc-wrapper lttng malloc instrumentation.
224 */
225 if (ust_lock()) {
226 goto end;
227 }
228
cf73e0fe 229 for (j = 0; j < info->dlpi_phnum; j++) {
f60e49df 230 struct bin_info_data bin_data;
cf73e0fe
AB
231 char resolved_path[PATH_MAX];
232 void *base_addr_ptr;
233
234 if (info->dlpi_phdr[j].p_type != PT_LOAD)
235 continue;
236
237 /* Calculate virtual memory address of the loadable segment */
238 base_addr_ptr = (void *) info->dlpi_addr +
239 info->dlpi_phdr[j].p_vaddr;
240
241 if ((info->dlpi_name == NULL || info->dlpi_name[0] == 0)) {
242 /*
243 * Only the first phdr without a dlpi_name
244 * encountered is considered as the program
245 * executable. The rest are vdsos.
246 */
247 if (!data->exec_found) {
248 ssize_t path_len;
249 data->exec_found = 1;
250
251 /*
252 * Use /proc/self/exe to resolve the
253 * executable's full path.
254 */
255 path_len = readlink("/proc/self/exe",
256 resolved_path,
257 PATH_MAX - 1);
258 if (path_len <= 0)
259 break;
260
261 resolved_path[path_len] = '\0';
f60e49df 262 bin_data.vdso = 0;
cf73e0fe
AB
263 } else {
264 snprintf(resolved_path, PATH_MAX - 1, "[vdso]");
f60e49df 265 bin_data.vdso = 1;
cf73e0fe
AB
266 }
267 } else {
268 /*
269 * For regular dl_phdr_info entries check if
f60e49df 270 * the path to the binary really exists. If not,
cf73e0fe
AB
271 * treat as vdso and use dlpi_name as 'path'.
272 */
273 if (!realpath(info->dlpi_name, resolved_path)) {
274 snprintf(resolved_path, PATH_MAX - 1, "[%s]",
275 info->dlpi_name);
f60e49df 276 bin_data.vdso = 1;
89be5359 277 } else {
f60e49df 278 bin_data.vdso = 0;
cf73e0fe
AB
279 }
280 }
281
f60e49df
AB
282 bin_data.owner = data->owner;
283 bin_data.base_addr_ptr = base_addr_ptr;
284 bin_data.resolved_path = resolved_path;
285 ret = trace_baddr(&bin_data);
d34e6761 286 break;
cf73e0fe 287 }
d34e6761
MD
288end:
289 ust_unlock();
290 return ret;
cf73e0fe
AB
291}
292
293/*
294 * Generate a statedump of base addresses of all shared objects loaded
295 * by the traced application, as well as for the application's
296 * executable itself.
297 */
298static
299int do_baddr_statedump(void *owner)
300{
301 struct dl_iterate_data data;
302
303 if (getenv("LTTNG_UST_WITHOUT_BADDR_STATEDUMP"))
304 return 0;
305
306 data.owner = owner;
307 data.exec_found = 0;
308 /*
309 * Iterate through the list of currently loaded shared objects and
310 * generate events for loadable segments using
f60e49df 311 * extract_bin_info_events.
cf73e0fe 312 */
f60e49df 313 dl_iterate_phdr(extract_bin_info_events, &data);
cf73e0fe
AB
314
315 return 0;
316}
317
318/*
319 * Generate a statedump of a given traced application. A statedump is
320 * delimited by start and end events. For a given (process, session)
321 * pair, begin/end events are serialized and will match. However, in a
322 * session, statedumps from different processes may be
323 * interleaved. The vpid context should be used to identify which
324 * events belong to which process.
325 */
326int do_lttng_ust_statedump(void *owner)
327{
328 trace_statedump_start(owner);
329 do_baddr_statedump(owner);
330 trace_statedump_end(owner);
331
332 return 0;
333}
334
335void lttng_ust_statedump_init(void)
336{
337 __tracepoints__init();
338 __tracepoints__ptrs_init();
339 __lttng_events_init__lttng_ust_statedump();
340}
341
342void lttng_ust_statedump_destroy(void)
343{
344 __lttng_events_exit__lttng_ust_statedump();
345 __tracepoints__ptrs_destroy();
346 __tracepoints__destroy();
347}
This page took 0.037454 seconds and 4 git commands to generate.