Commit | Line | Data |
---|---|---|
826d496d | 1 | /* |
82a3637f DG |
2 | * liblttngctl.c |
3 | * | |
4 | * Linux Trace Toolkit Control Library | |
5 | * | |
826d496d | 6 | * Copyright (C) 2011 David Goulet <david.goulet@polymtl.ca> |
fac6795d | 7 | * |
d14d33bf AM |
8 | * This library is free software; you can redistribute it and/or modify it |
9 | * under the terms of the GNU Lesser General Public License, version 2.1 only, | |
10 | * as published by the Free Software Foundation. | |
82a3637f DG |
11 | * |
12 | * This library is distributed in the hope that it will be useful, | |
fac6795d | 13 | * but WITHOUT ANY WARRANTY; without even the implied warranty of |
82a3637f DG |
14 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU |
15 | * Lesser General Public License for more details. | |
16 | * | |
d14d33bf AM |
17 | * You should have received a copy of the GNU Lesser General Public License |
18 | * along with this library; if not, write to the Free Software Foundation, | |
19 | * Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA | |
fac6795d DG |
20 | */ |
21 | ||
22 | #define _GNU_SOURCE | |
44a5e5eb | 23 | #include <assert.h> |
fac6795d | 24 | #include <grp.h> |
1e307fab | 25 | #include <errno.h> |
fac6795d DG |
26 | #include <stdio.h> |
27 | #include <stdlib.h> | |
28 | #include <string.h> | |
29 | #include <unistd.h> | |
30 | ||
990570ed DG |
31 | #include <common/common.h> |
32 | #include <common/defaults.h> | |
db758600 | 33 | #include <common/sessiond-comm/sessiond-comm.h> |
a4b92340 | 34 | #include <common/uri.h> |
1e307fab | 35 | #include <lttng/lttng.h> |
fac6795d | 36 | |
d00c599e DG |
37 | #include "filter/filter-ast.h" |
38 | #include "filter/filter-parser.h" | |
39 | #include "filter/filter-bytecode.h" | |
40 | #include "filter/memstream.h" | |
53a80697 MD |
41 | |
42 | #ifdef DEBUG | |
d00c599e | 43 | static const int print_xml = 1; |
53a80697 MD |
44 | #define dbg_printf(fmt, args...) \ |
45 | printf("[debug liblttng-ctl] " fmt, ## args) | |
46 | #else | |
d00c599e | 47 | static const int print_xml = 0; |
53a80697 MD |
48 | #define dbg_printf(fmt, args...) \ |
49 | do { \ | |
50 | /* do nothing but check printf format */ \ | |
51 | if (0) \ | |
52 | printf("[debug liblttnctl] " fmt, ## args); \ | |
53 | } while (0) | |
54 | #endif | |
55 | ||
56 | ||
fac6795d DG |
57 | /* Socket to session daemon for communication */ |
58 | static int sessiond_socket; | |
59 | static char sessiond_sock_path[PATH_MAX]; | |
44a5e5eb | 60 | static char health_sock_path[PATH_MAX]; |
fac6795d | 61 | |
fac6795d DG |
62 | /* Variables */ |
63 | static char *tracing_group; | |
64 | static int connected; | |
65 | ||
97e19046 DG |
66 | /* Global */ |
67 | ||
68 | /* | |
69 | * Those two variables are used by error.h to silent or control the verbosity of | |
70 | * error message. They are global to the library so application linking with it | |
71 | * are able to compile correctly and also control verbosity of the library. | |
97e19046 DG |
72 | */ |
73 | int lttng_opt_quiet; | |
74 | int lttng_opt_verbose; | |
75 | ||
a4b92340 DG |
76 | static void set_default_url_attr(struct lttng_uri *uri, |
77 | enum lttng_stream_type stype) | |
78 | { | |
79 | uri->stype = stype; | |
80 | if (uri->dtype != LTTNG_DST_PATH && uri->port == 0) { | |
81 | uri->port = (stype == LTTNG_STREAM_CONTROL) ? | |
82 | DEFAULT_NETWORK_CONTROL_PORT : DEFAULT_NETWORK_DATA_PORT; | |
83 | } | |
84 | } | |
85 | ||
86 | /* | |
87 | * Parse a string URL and creates URI(s) returning the size of the populated | |
88 | * array. | |
89 | */ | |
90 | static ssize_t parse_str_urls_to_uri(const char *ctrl_url, const char *data_url, | |
91 | struct lttng_uri **uris) | |
92 | { | |
93 | int ret; | |
94 | unsigned int equal = 1, idx = 0; | |
95 | /* Add the "file://" size to the URL maximum size */ | |
96 | char url[PATH_MAX + 7]; | |
97 | ssize_t size_ctrl = 0, size_data = 0, size; | |
98 | struct lttng_uri *ctrl_uris = NULL, *data_uris = NULL; | |
99 | struct lttng_uri *tmp_uris = NULL; | |
100 | ||
101 | /* No URL(s) is allowed. This means that the consumer will be disabled. */ | |
102 | if (ctrl_url == NULL && data_url == NULL) { | |
103 | return 0; | |
104 | } | |
105 | ||
106 | /* Check if URLs are equal and if so, only use the control URL */ | |
107 | if (ctrl_url && data_url) { | |
108 | equal = !strcmp(ctrl_url, data_url); | |
109 | } | |
110 | ||
111 | /* | |
112 | * Since we allow the str_url to be a full local filesystem path, we are | |
113 | * going to create a valid file:// URL if it's the case. | |
114 | * | |
115 | * Check if first character is a '/' or else reject the URL. | |
116 | */ | |
117 | if (ctrl_url && ctrl_url[0] == '/') { | |
118 | ret = snprintf(url, sizeof(url), "file://%s", ctrl_url); | |
119 | if (ret < 0) { | |
120 | PERROR("snprintf file url"); | |
121 | goto parse_error; | |
122 | } | |
123 | ctrl_url = url; | |
124 | } | |
125 | ||
126 | /* Parse the control URL if there is one */ | |
127 | if (ctrl_url) { | |
128 | size_ctrl = uri_parse(ctrl_url, &ctrl_uris); | |
129 | if (size_ctrl < 1) { | |
130 | ERR("Unable to parse the URL %s", ctrl_url); | |
131 | goto parse_error; | |
132 | } | |
133 | ||
134 | /* At this point, we know there is at least one URI in the array */ | |
135 | set_default_url_attr(&ctrl_uris[0], LTTNG_STREAM_CONTROL); | |
136 | ||
137 | if (ctrl_uris[0].dtype == LTTNG_DST_PATH && data_url) { | |
138 | ERR("Can not have a data URL when destination is file://"); | |
139 | goto error; | |
140 | } | |
141 | ||
142 | /* URL are not equal but the control URL uses a net:// protocol */ | |
143 | if (size_ctrl == 2) { | |
144 | if (!equal) { | |
145 | ERR("Control URL uses the net:// protocol and the data URL is " | |
146 | "different. Not allowed."); | |
147 | goto error; | |
148 | } else { | |
149 | set_default_url_attr(&ctrl_uris[1], LTTNG_STREAM_DATA); | |
150 | /* | |
151 | * The data_url and ctrl_url are equal and the ctrl_url | |
152 | * contains a net:// protocol so we just skip the data part. | |
153 | */ | |
154 | data_url = NULL; | |
155 | } | |
156 | } | |
157 | } | |
158 | ||
159 | if (data_url) { | |
160 | /* We have to parse the data URL in this case */ | |
161 | size_data = uri_parse(data_url, &data_uris); | |
162 | if (size_data < 1) { | |
163 | ERR("Unable to parse the URL %s", data_url); | |
164 | goto error; | |
165 | } else if (size_data == 2) { | |
166 | ERR("Data URL can not be set with the net[4|6]:// protocol"); | |
167 | goto error; | |
168 | } | |
169 | ||
170 | set_default_url_attr(&data_uris[0], LTTNG_STREAM_DATA); | |
171 | } | |
172 | ||
173 | /* Compute total size */ | |
174 | size = size_ctrl + size_data; | |
175 | ||
176 | tmp_uris = zmalloc(sizeof(struct lttng_uri) * size); | |
177 | if (tmp_uris == NULL) { | |
178 | PERROR("zmalloc uris"); | |
179 | goto error; | |
180 | } | |
181 | ||
182 | if (ctrl_uris) { | |
183 | /* It's possible the control URIs array contains more than one URI */ | |
184 | memcpy(tmp_uris, ctrl_uris, sizeof(struct lttng_uri) * size_ctrl); | |
185 | ++idx; | |
186 | } | |
187 | ||
188 | if (data_uris) { | |
189 | memcpy(&tmp_uris[idx], data_uris, sizeof(struct lttng_uri)); | |
190 | } | |
191 | ||
192 | *uris = tmp_uris; | |
193 | ||
194 | return size; | |
195 | ||
196 | error: | |
197 | free(ctrl_uris); | |
198 | free(data_uris); | |
199 | free(tmp_uris); | |
200 | parse_error: | |
201 | return -1; | |
202 | } | |
203 | ||
99497cd0 MD |
204 | /* |
205 | * Copy string from src to dst and enforce null terminated byte. | |
206 | */ | |
207 | static void copy_string(char *dst, const char *src, size_t len) | |
208 | { | |
e7d6716d | 209 | if (src && dst) { |
99497cd0 MD |
210 | strncpy(dst, src, len); |
211 | /* Enforce the NULL terminated byte */ | |
212 | dst[len - 1] = '\0'; | |
cd80958d DG |
213 | } else if (dst) { |
214 | dst[0] = '\0'; | |
99497cd0 MD |
215 | } |
216 | } | |
217 | ||
fac6795d | 218 | /* |
cd80958d | 219 | * Copy domain to lttcomm_session_msg domain. |
fac6795d | 220 | * |
cd80958d DG |
221 | * If domain is unknown, default domain will be the kernel. |
222 | */ | |
223 | static void copy_lttng_domain(struct lttng_domain *dst, struct lttng_domain *src) | |
224 | { | |
225 | if (src && dst) { | |
226 | switch (src->type) { | |
00e2e675 DG |
227 | case LTTNG_DOMAIN_KERNEL: |
228 | case LTTNG_DOMAIN_UST: | |
229 | /* | |
230 | case LTTNG_DOMAIN_UST_EXEC_NAME: | |
231 | case LTTNG_DOMAIN_UST_PID: | |
232 | case LTTNG_DOMAIN_UST_PID_FOLLOW_CHILDREN: | |
233 | */ | |
234 | memcpy(dst, src, sizeof(struct lttng_domain)); | |
235 | break; | |
236 | default: | |
237 | memset(dst, 0, sizeof(struct lttng_domain)); | |
00e2e675 | 238 | break; |
cd80958d DG |
239 | } |
240 | } | |
241 | } | |
242 | ||
243 | /* | |
244 | * Send lttcomm_session_msg to the session daemon. | |
fac6795d | 245 | * |
1c8d13c8 TD |
246 | * On success, returns the number of bytes sent (>=0) |
247 | * On error, returns -1 | |
fac6795d | 248 | */ |
cd80958d | 249 | static int send_session_msg(struct lttcomm_session_msg *lsm) |
fac6795d DG |
250 | { |
251 | int ret; | |
252 | ||
253 | if (!connected) { | |
2f70b271 | 254 | ret = -LTTNG_ERR_NO_SESSIOND; |
e065084a | 255 | goto end; |
fac6795d DG |
256 | } |
257 | ||
a4b92340 DG |
258 | DBG("LSM cmd type : %d", lsm->cmd_type); |
259 | ||
be040666 | 260 | ret = lttcomm_send_creds_unix_sock(sessiond_socket, lsm, |
cd80958d | 261 | sizeof(struct lttcomm_session_msg)); |
2f70b271 DG |
262 | if (ret < 0) { |
263 | ret = -LTTNG_ERR_FATAL; | |
264 | } | |
e065084a DG |
265 | |
266 | end: | |
267 | return ret; | |
268 | } | |
269 | ||
53a80697 MD |
270 | /* |
271 | * Send var len data to the session daemon. | |
272 | * | |
273 | * On success, returns the number of bytes sent (>=0) | |
274 | * On error, returns -1 | |
275 | */ | |
276 | static int send_session_varlen(void *data, size_t len) | |
277 | { | |
278 | int ret; | |
279 | ||
280 | if (!connected) { | |
2f70b271 | 281 | ret = -LTTNG_ERR_NO_SESSIOND; |
53a80697 MD |
282 | goto end; |
283 | } | |
a4b92340 | 284 | |
53a80697 MD |
285 | if (!data || !len) { |
286 | ret = 0; | |
287 | goto end; | |
288 | } | |
289 | ||
290 | ret = lttcomm_send_unix_sock(sessiond_socket, data, len); | |
2f70b271 DG |
291 | if (ret < 0) { |
292 | ret = -LTTNG_ERR_FATAL; | |
293 | } | |
53a80697 MD |
294 | |
295 | end: | |
296 | return ret; | |
297 | } | |
298 | ||
e065084a | 299 | /* |
cd80958d | 300 | * Receive data from the sessiond socket. |
e065084a | 301 | * |
1c8d13c8 TD |
302 | * On success, returns the number of bytes received (>=0) |
303 | * On error, returns -1 (recvmsg() error) or -ENOTCONN | |
e065084a | 304 | */ |
ca95a216 | 305 | static int recv_data_sessiond(void *buf, size_t len) |
e065084a DG |
306 | { |
307 | int ret; | |
308 | ||
309 | if (!connected) { | |
2f70b271 | 310 | ret = -LTTNG_ERR_NO_SESSIOND; |
e065084a | 311 | goto end; |
fac6795d DG |
312 | } |
313 | ||
ca95a216 | 314 | ret = lttcomm_recv_unix_sock(sessiond_socket, buf, len); |
2f70b271 DG |
315 | if (ret < 0) { |
316 | ret = -LTTNG_ERR_FATAL; | |
317 | } | |
fac6795d | 318 | |
e065084a | 319 | end: |
fac6795d DG |
320 | return ret; |
321 | } | |
322 | ||
323 | /* | |
1c8d13c8 | 324 | * Check if we are in the specified group. |
65beb5ff | 325 | * |
2269e89e | 326 | * If yes return 1, else return -1. |
947308c4 DG |
327 | */ |
328 | static int check_tracing_group(const char *grp_name) | |
329 | { | |
330 | struct group *grp_tracing; /* no free(). See getgrnam(3) */ | |
331 | gid_t *grp_list; | |
332 | int grp_list_size, grp_id, i; | |
333 | int ret = -1; | |
334 | ||
335 | /* Get GID of group 'tracing' */ | |
336 | grp_tracing = getgrnam(grp_name); | |
b4d8603b MD |
337 | if (!grp_tracing) { |
338 | /* If grp_tracing is NULL, the group does not exist. */ | |
947308c4 DG |
339 | goto end; |
340 | } | |
341 | ||
342 | /* Get number of supplementary group IDs */ | |
343 | grp_list_size = getgroups(0, NULL); | |
344 | if (grp_list_size < 0) { | |
345 | perror("getgroups"); | |
346 | goto end; | |
347 | } | |
348 | ||
349 | /* Alloc group list of the right size */ | |
350 | grp_list = malloc(grp_list_size * sizeof(gid_t)); | |
00795392 | 351 | if (!grp_list) { |
1c8d13c8 | 352 | perror("malloc"); |
00795392 MD |
353 | goto end; |
354 | } | |
947308c4 | 355 | grp_id = getgroups(grp_list_size, grp_list); |
1c8d13c8 | 356 | if (grp_id < 0) { |
947308c4 DG |
357 | perror("getgroups"); |
358 | goto free_list; | |
359 | } | |
360 | ||
361 | for (i = 0; i < grp_list_size; i++) { | |
362 | if (grp_list[i] == grp_tracing->gr_gid) { | |
2269e89e | 363 | ret = 1; |
947308c4 DG |
364 | break; |
365 | } | |
366 | } | |
367 | ||
368 | free_list: | |
369 | free(grp_list); | |
370 | ||
371 | end: | |
372 | return ret; | |
373 | } | |
374 | ||
375 | /* | |
2269e89e DG |
376 | * Try connect to session daemon with sock_path. |
377 | * | |
378 | * Return 0 on success, else -1 | |
379 | */ | |
380 | static int try_connect_sessiond(const char *sock_path) | |
381 | { | |
382 | int ret; | |
383 | ||
384 | /* If socket exist, we check if the daemon listens for connect. */ | |
385 | ret = access(sock_path, F_OK); | |
386 | if (ret < 0) { | |
387 | /* Not alive */ | |
2f70b271 | 388 | goto error; |
2269e89e DG |
389 | } |
390 | ||
391 | ret = lttcomm_connect_unix_sock(sock_path); | |
392 | if (ret < 0) { | |
393 | /* Not alive */ | |
2f70b271 | 394 | goto error; |
2269e89e DG |
395 | } |
396 | ||
397 | ret = lttcomm_close_unix_sock(ret); | |
398 | if (ret < 0) { | |
399 | perror("lttcomm_close_unix_sock"); | |
400 | } | |
401 | ||
402 | return 0; | |
2f70b271 DG |
403 | |
404 | error: | |
405 | return -1; | |
2269e89e DG |
406 | } |
407 | ||
408 | /* | |
2f70b271 DG |
409 | * Set sessiond socket path by putting it in the global sessiond_sock_path |
410 | * variable. | |
411 | * | |
412 | * Returns 0 on success, negative value on failure (the sessiond socket path | |
413 | * is somehow too long or ENOMEM). | |
947308c4 DG |
414 | */ |
415 | static int set_session_daemon_path(void) | |
416 | { | |
417 | int ret; | |
2269e89e DG |
418 | int in_tgroup = 0; /* In tracing group */ |
419 | uid_t uid; | |
420 | ||
421 | uid = getuid(); | |
947308c4 | 422 | |
2269e89e DG |
423 | if (uid != 0) { |
424 | /* Are we in the tracing group ? */ | |
425 | in_tgroup = check_tracing_group(tracing_group); | |
426 | } | |
427 | ||
08a9c49f TD |
428 | if ((uid == 0) || in_tgroup) { |
429 | copy_string(sessiond_sock_path, DEFAULT_GLOBAL_CLIENT_UNIX_SOCK, | |
2269e89e | 430 | sizeof(sessiond_sock_path)); |
08a9c49f | 431 | } |
2269e89e | 432 | |
08a9c49f TD |
433 | if (uid != 0) { |
434 | if (in_tgroup) { | |
435 | /* Tracing group */ | |
436 | ret = try_connect_sessiond(sessiond_sock_path); | |
437 | if (ret >= 0) { | |
438 | goto end; | |
2269e89e | 439 | } |
08a9c49f | 440 | /* Global session daemon not available... */ |
2269e89e | 441 | } |
08a9c49f TD |
442 | /* ...or not in tracing group (and not root), default */ |
443 | ||
444 | /* | |
445 | * With GNU C < 2.1, snprintf returns -1 if the target buffer is too small; | |
446 | * With GNU C >= 2.1, snprintf returns the required size (excluding closing null) | |
447 | */ | |
448 | ret = snprintf(sessiond_sock_path, sizeof(sessiond_sock_path), | |
449 | DEFAULT_HOME_CLIENT_UNIX_SOCK, getenv("HOME")); | |
450 | if ((ret < 0) || (ret >= sizeof(sessiond_sock_path))) { | |
2f70b271 | 451 | goto error; |
947308c4 | 452 | } |
947308c4 | 453 | } |
08a9c49f | 454 | end: |
947308c4 | 455 | return 0; |
2f70b271 DG |
456 | |
457 | error: | |
458 | return -1; | |
947308c4 DG |
459 | } |
460 | ||
65beb5ff DG |
461 | /* |
462 | * Connect to the LTTng session daemon. | |
463 | * | |
464 | * On success, return 0. On error, return -1. | |
465 | */ | |
466 | static int connect_sessiond(void) | |
467 | { | |
468 | int ret; | |
469 | ||
470 | ret = set_session_daemon_path(); | |
471 | if (ret < 0) { | |
2f70b271 | 472 | goto error; |
65beb5ff DG |
473 | } |
474 | ||
475 | /* Connect to the sesssion daemon */ | |
476 | ret = lttcomm_connect_unix_sock(sessiond_sock_path); | |
477 | if (ret < 0) { | |
2f70b271 | 478 | goto error; |
65beb5ff DG |
479 | } |
480 | ||
481 | sessiond_socket = ret; | |
482 | connected = 1; | |
483 | ||
484 | return 0; | |
2f70b271 DG |
485 | |
486 | error: | |
487 | return -1; | |
65beb5ff DG |
488 | } |
489 | ||
490 | /* | |
1c8d13c8 TD |
491 | * Clean disconnect from the session daemon. |
492 | * On success, return 0. On error, return -1. | |
65beb5ff DG |
493 | */ |
494 | static int disconnect_sessiond(void) | |
495 | { | |
496 | int ret = 0; | |
497 | ||
498 | if (connected) { | |
499 | ret = lttcomm_close_unix_sock(sessiond_socket); | |
500 | sessiond_socket = 0; | |
501 | connected = 0; | |
502 | } | |
503 | ||
504 | return ret; | |
505 | } | |
506 | ||
35a6fdb7 | 507 | /* |
cd80958d | 508 | * Ask the session daemon a specific command and put the data into buf. |
53a80697 | 509 | * Takes extra var. len. data as input to send to the session daemon. |
65beb5ff | 510 | * |
af87c45a | 511 | * Return size of data (only payload, not header) or a negative error code. |
65beb5ff | 512 | */ |
53a80697 | 513 | static int ask_sessiond_varlen(struct lttcomm_session_msg *lsm, |
a4b92340 | 514 | void *vardata, size_t varlen, void **buf) |
65beb5ff DG |
515 | { |
516 | int ret; | |
517 | size_t size; | |
518 | void *data = NULL; | |
cd80958d | 519 | struct lttcomm_lttng_msg llm; |
65beb5ff DG |
520 | |
521 | ret = connect_sessiond(); | |
522 | if (ret < 0) { | |
2f70b271 | 523 | ret = -LTTNG_ERR_NO_SESSIOND; |
65beb5ff DG |
524 | goto end; |
525 | } | |
526 | ||
65beb5ff | 527 | /* Send command to session daemon */ |
cd80958d | 528 | ret = send_session_msg(lsm); |
65beb5ff | 529 | if (ret < 0) { |
2f70b271 | 530 | /* Ret value is a valid lttng error code. */ |
65beb5ff DG |
531 | goto end; |
532 | } | |
53a80697 MD |
533 | /* Send var len data */ |
534 | ret = send_session_varlen(vardata, varlen); | |
535 | if (ret < 0) { | |
2f70b271 | 536 | /* Ret value is a valid lttng error code. */ |
53a80697 MD |
537 | goto end; |
538 | } | |
65beb5ff DG |
539 | |
540 | /* Get header from data transmission */ | |
541 | ret = recv_data_sessiond(&llm, sizeof(llm)); | |
542 | if (ret < 0) { | |
2f70b271 | 543 | /* Ret value is a valid lttng error code. */ |
65beb5ff DG |
544 | goto end; |
545 | } | |
546 | ||
547 | /* Check error code if OK */ | |
f73fabfd | 548 | if (llm.ret_code != LTTNG_OK) { |
65beb5ff DG |
549 | ret = -llm.ret_code; |
550 | goto end; | |
551 | } | |
552 | ||
553 | size = llm.data_size; | |
554 | if (size == 0) { | |
874d3f84 | 555 | /* If client free with size 0 */ |
a45d5536 DG |
556 | if (buf != NULL) { |
557 | *buf = NULL; | |
558 | } | |
7d29a247 | 559 | ret = 0; |
65beb5ff DG |
560 | goto end; |
561 | } | |
562 | ||
563 | data = (void*) malloc(size); | |
564 | ||
565 | /* Get payload data */ | |
566 | ret = recv_data_sessiond(data, size); | |
567 | if (ret < 0) { | |
568 | free(data); | |
569 | goto end; | |
570 | } | |
571 | ||
83009e5e DG |
572 | /* |
573 | * Extra protection not to dereference a NULL pointer. If buf is NULL at | |
574 | * this point, an error is returned and data is freed. | |
575 | */ | |
576 | if (buf == NULL) { | |
2f70b271 | 577 | ret = -LTTNG_ERR_INVALID; |
83009e5e DG |
578 | free(data); |
579 | goto end; | |
580 | } | |
581 | ||
65beb5ff DG |
582 | *buf = data; |
583 | ret = size; | |
584 | ||
585 | end: | |
586 | disconnect_sessiond(); | |
587 | return ret; | |
588 | } | |
589 | ||
53a80697 MD |
590 | /* |
591 | * Ask the session daemon a specific command and put the data into buf. | |
592 | * | |
593 | * Return size of data (only payload, not header) or a negative error code. | |
594 | */ | |
595 | static int ask_sessiond(struct lttcomm_session_msg *lsm, void **buf) | |
596 | { | |
597 | return ask_sessiond_varlen(lsm, NULL, 0, buf); | |
598 | } | |
599 | ||
9f19cc17 | 600 | /* |
cd80958d | 601 | * Create lttng handle and return pointer. |
1c8d13c8 | 602 | * The returned pointer will be NULL in case of malloc() error. |
9f19cc17 | 603 | */ |
cd80958d DG |
604 | struct lttng_handle *lttng_create_handle(const char *session_name, |
605 | struct lttng_domain *domain) | |
9f19cc17 | 606 | { |
2f70b271 DG |
607 | struct lttng_handle *handle = NULL; |
608 | ||
609 | if (domain == NULL) { | |
610 | goto end; | |
611 | } | |
cd80958d DG |
612 | |
613 | handle = malloc(sizeof(struct lttng_handle)); | |
614 | if (handle == NULL) { | |
2f70b271 | 615 | PERROR("malloc handle"); |
cd80958d DG |
616 | goto end; |
617 | } | |
618 | ||
619 | /* Copy session name */ | |
620 | copy_string(handle->session_name, session_name, | |
621 | sizeof(handle->session_name)); | |
622 | ||
623 | /* Copy lttng domain */ | |
624 | copy_lttng_domain(&handle->domain, domain); | |
625 | ||
626 | end: | |
627 | return handle; | |
628 | } | |
629 | ||
630 | /* | |
631 | * Destroy handle by free(3) the pointer. | |
632 | */ | |
633 | void lttng_destroy_handle(struct lttng_handle *handle) | |
634 | { | |
635 | if (handle) { | |
636 | free(handle); | |
eb354453 DG |
637 | } |
638 | } | |
639 | ||
d9800920 DG |
640 | /* |
641 | * Register an outside consumer. | |
1c8d13c8 | 642 | * Returns size of returned session payload data or a negative error code. |
d9800920 DG |
643 | */ |
644 | int lttng_register_consumer(struct lttng_handle *handle, | |
645 | const char *socket_path) | |
646 | { | |
647 | struct lttcomm_session_msg lsm; | |
648 | ||
2f70b271 DG |
649 | if (handle == NULL || socket_path == NULL) { |
650 | return -LTTNG_ERR_INVALID; | |
651 | } | |
652 | ||
d9800920 DG |
653 | lsm.cmd_type = LTTNG_REGISTER_CONSUMER; |
654 | copy_string(lsm.session.name, handle->session_name, | |
655 | sizeof(lsm.session.name)); | |
656 | copy_lttng_domain(&lsm.domain, &handle->domain); | |
657 | ||
658 | copy_string(lsm.u.reg.path, socket_path, sizeof(lsm.u.reg.path)); | |
659 | ||
660 | return ask_sessiond(&lsm, NULL); | |
661 | } | |
662 | ||
1df4dedd | 663 | /* |
1c8d13c8 TD |
664 | * Start tracing for all traces of the session. |
665 | * Returns size of returned session payload data or a negative error code. | |
1df4dedd | 666 | */ |
6a4f824d | 667 | int lttng_start_tracing(const char *session_name) |
f3ed775e | 668 | { |
cd80958d DG |
669 | struct lttcomm_session_msg lsm; |
670 | ||
6a4f824d | 671 | if (session_name == NULL) { |
2f70b271 | 672 | return -LTTNG_ERR_INVALID; |
cd80958d DG |
673 | } |
674 | ||
675 | lsm.cmd_type = LTTNG_START_TRACE; | |
6a4f824d DG |
676 | |
677 | copy_string(lsm.session.name, session_name, sizeof(lsm.session.name)); | |
cd80958d DG |
678 | |
679 | return ask_sessiond(&lsm, NULL); | |
f3ed775e | 680 | } |
1df4dedd DG |
681 | |
682 | /* | |
38ee087f | 683 | * Stop tracing for all traces of the session. |
f3ed775e | 684 | */ |
38ee087f | 685 | static int _lttng_stop_tracing(const char *session_name, int wait) |
f3ed775e | 686 | { |
38ee087f | 687 | int ret, data_ret; |
cd80958d DG |
688 | struct lttcomm_session_msg lsm; |
689 | ||
6a4f824d | 690 | if (session_name == NULL) { |
2f70b271 | 691 | return -LTTNG_ERR_INVALID; |
6a4f824d DG |
692 | } |
693 | ||
cd80958d | 694 | lsm.cmd_type = LTTNG_STOP_TRACE; |
6a4f824d DG |
695 | |
696 | copy_string(lsm.session.name, session_name, sizeof(lsm.session.name)); | |
cd80958d | 697 | |
38ee087f DG |
698 | ret = ask_sessiond(&lsm, NULL); |
699 | if (ret < 0 && ret != -LTTNG_ERR_TRACE_ALREADY_STOPPED) { | |
700 | goto error; | |
701 | } | |
702 | ||
703 | if (!wait) { | |
704 | goto end; | |
705 | } | |
706 | ||
707 | _MSG("Waiting for data availability"); | |
708 | ||
709 | /* Check for data availability */ | |
710 | do { | |
6d805429 | 711 | data_ret = lttng_data_pending(session_name); |
38ee087f DG |
712 | if (data_ret < 0) { |
713 | /* Return the data available call error. */ | |
714 | ret = data_ret; | |
715 | goto error; | |
716 | } | |
717 | ||
718 | /* | |
719 | * Data sleep time before retrying (in usec). Don't sleep if the call | |
720 | * returned value indicates availability. | |
721 | */ | |
6d805429 | 722 | if (data_ret) { |
38ee087f DG |
723 | usleep(DEFAULT_DATA_AVAILABILITY_WAIT_TIME); |
724 | _MSG("."); | |
725 | } | |
6d805429 | 726 | } while (data_ret != 0); |
38ee087f DG |
727 | |
728 | MSG(""); | |
729 | ||
730 | end: | |
731 | error: | |
732 | return ret; | |
733 | } | |
734 | ||
735 | /* | |
736 | * Stop tracing and wait for data availability. | |
737 | */ | |
738 | int lttng_stop_tracing(const char *session_name) | |
739 | { | |
740 | return _lttng_stop_tracing(session_name, 1); | |
741 | } | |
742 | ||
743 | /* | |
744 | * Stop tracing but _don't_ wait for data availability. | |
745 | */ | |
746 | int lttng_stop_tracing_no_wait(const char *session_name) | |
747 | { | |
748 | return _lttng_stop_tracing(session_name, 0); | |
f3ed775e DG |
749 | } |
750 | ||
751 | /* | |
1e46a50f TD |
752 | * Add context to event and/or channel. |
753 | * If event_name is NULL, the context is applied to all events of the channel. | |
754 | * If channel_name is NULL, a lookup of the event's channel is done. | |
755 | * If both are NULL, the context is applied to all events of all channels. | |
af87c45a DG |
756 | * |
757 | * Returns the size of the returned payload data or a negative error code. | |
1df4dedd | 758 | */ |
cd80958d | 759 | int lttng_add_context(struct lttng_handle *handle, |
38057ed1 DG |
760 | struct lttng_event_context *ctx, const char *event_name, |
761 | const char *channel_name) | |
d65106b1 | 762 | { |
cd80958d DG |
763 | struct lttcomm_session_msg lsm; |
764 | ||
9d697d3d DG |
765 | /* Safety check. Both are mandatory */ |
766 | if (handle == NULL || ctx == NULL) { | |
2f70b271 | 767 | return -LTTNG_ERR_INVALID; |
cd80958d DG |
768 | } |
769 | ||
441c16a7 MD |
770 | memset(&lsm, 0, sizeof(lsm)); |
771 | ||
cd80958d DG |
772 | lsm.cmd_type = LTTNG_ADD_CONTEXT; |
773 | ||
774 | /* Copy channel name */ | |
775 | copy_string(lsm.u.context.channel_name, channel_name, | |
776 | sizeof(lsm.u.context.channel_name)); | |
777 | /* Copy event name */ | |
778 | copy_string(lsm.u.context.event_name, event_name, | |
779 | sizeof(lsm.u.context.event_name)); | |
780 | ||
781 | copy_lttng_domain(&lsm.domain, &handle->domain); | |
d65106b1 | 782 | |
9d697d3d | 783 | memcpy(&lsm.u.context.ctx, ctx, sizeof(struct lttng_event_context)); |
d65106b1 | 784 | |
cd80958d DG |
785 | copy_string(lsm.session.name, handle->session_name, |
786 | sizeof(lsm.session.name)); | |
787 | ||
788 | return ask_sessiond(&lsm, NULL); | |
d65106b1 DG |
789 | } |
790 | ||
f3ed775e | 791 | /* |
1c8d13c8 TD |
792 | * Enable event(s) for a channel. |
793 | * If no event name is specified, all events are enabled. | |
794 | * If no channel name is specified, the default 'channel0' is used. | |
795 | * Returns size of returned session payload data or a negative error code. | |
f3ed775e | 796 | */ |
cd80958d | 797 | int lttng_enable_event(struct lttng_handle *handle, |
38057ed1 | 798 | struct lttng_event *ev, const char *channel_name) |
1df4dedd | 799 | { |
cd80958d DG |
800 | struct lttcomm_session_msg lsm; |
801 | ||
5117eeec | 802 | if (handle == NULL || ev == NULL) { |
2f70b271 | 803 | return -LTTNG_ERR_INVALID; |
cd80958d | 804 | } |
33a2b854 | 805 | |
441c16a7 MD |
806 | memset(&lsm, 0, sizeof(lsm)); |
807 | ||
5117eeec | 808 | /* If no channel name, we put the default name */ |
94cf3c47 | 809 | if (channel_name == NULL) { |
cd80958d DG |
810 | copy_string(lsm.u.enable.channel_name, DEFAULT_CHANNEL_NAME, |
811 | sizeof(lsm.u.enable.channel_name)); | |
33a2b854 | 812 | } else { |
cd80958d DG |
813 | copy_string(lsm.u.enable.channel_name, channel_name, |
814 | sizeof(lsm.u.enable.channel_name)); | |
eb354453 DG |
815 | } |
816 | ||
cd80958d | 817 | copy_lttng_domain(&lsm.domain, &handle->domain); |
0d0c377a | 818 | |
8c9ae521 | 819 | if (ev->name[0] != '\0') { |
cd80958d | 820 | lsm.cmd_type = LTTNG_ENABLE_EVENT; |
0d0c377a | 821 | } else { |
cd80958d | 822 | lsm.cmd_type = LTTNG_ENABLE_ALL_EVENT; |
f3ed775e | 823 | } |
8c9ae521 | 824 | memcpy(&lsm.u.enable.event, ev, sizeof(lsm.u.enable.event)); |
f3ed775e | 825 | |
cd80958d DG |
826 | copy_string(lsm.session.name, handle->session_name, |
827 | sizeof(lsm.session.name)); | |
828 | ||
829 | return ask_sessiond(&lsm, NULL); | |
1df4dedd DG |
830 | } |
831 | ||
53a80697 MD |
832 | /* |
833 | * set filter for an event | |
834 | * Return negative error value on error. | |
835 | * Return size of returned session payload data if OK. | |
836 | */ | |
837 | ||
838 | int lttng_set_event_filter(struct lttng_handle *handle, | |
839 | const char *event_name, const char *channel_name, | |
840 | const char *filter_expression) | |
841 | { | |
842 | struct lttcomm_session_msg lsm; | |
843 | struct filter_parser_ctx *ctx; | |
844 | FILE *fmem; | |
845 | int ret = 0; | |
846 | ||
847 | /* Safety check. */ | |
848 | if (handle == NULL) { | |
2f70b271 | 849 | return -LTTNG_ERR_INVALID; |
53a80697 MD |
850 | } |
851 | ||
852 | if (!filter_expression) { | |
853 | return 0; | |
854 | } | |
855 | ||
856 | /* | |
857 | * casting const to non-const, as the underlying function will | |
858 | * use it in read-only mode. | |
859 | */ | |
860 | fmem = lttng_fmemopen((void *) filter_expression, | |
861 | strlen(filter_expression), "r"); | |
862 | if (!fmem) { | |
863 | fprintf(stderr, "Error opening memory as stream\n"); | |
ff7ef7b8 | 864 | return -LTTNG_ERR_FILTER_NOMEM; |
53a80697 MD |
865 | } |
866 | ctx = filter_parser_ctx_alloc(fmem); | |
867 | if (!ctx) { | |
868 | fprintf(stderr, "Error allocating parser\n"); | |
ff7ef7b8 | 869 | ret = -LTTNG_ERR_FILTER_NOMEM; |
53a80697 MD |
870 | goto alloc_error; |
871 | } | |
872 | ret = filter_parser_ctx_append_ast(ctx); | |
873 | if (ret) { | |
874 | fprintf(stderr, "Parse error\n"); | |
ff7ef7b8 | 875 | ret = -LTTNG_ERR_FILTER_INVAL; |
53a80697 MD |
876 | goto parse_error; |
877 | } | |
878 | ret = filter_visitor_set_parent(ctx); | |
879 | if (ret) { | |
880 | fprintf(stderr, "Set parent error\n"); | |
ff7ef7b8 | 881 | ret = -LTTNG_ERR_FILTER_INVAL; |
53a80697 MD |
882 | goto parse_error; |
883 | } | |
884 | if (print_xml) { | |
885 | ret = filter_visitor_print_xml(ctx, stdout, 0); | |
886 | if (ret) { | |
887 | fflush(stdout); | |
888 | fprintf(stderr, "XML print error\n"); | |
ff7ef7b8 | 889 | ret = -LTTNG_ERR_FILTER_INVAL; |
53a80697 MD |
890 | goto parse_error; |
891 | } | |
892 | } | |
893 | ||
894 | dbg_printf("Generating IR... "); | |
895 | fflush(stdout); | |
896 | ret = filter_visitor_ir_generate(ctx); | |
897 | if (ret) { | |
898 | fprintf(stderr, "Generate IR error\n"); | |
ff7ef7b8 | 899 | ret = -LTTNG_ERR_FILTER_INVAL; |
53a80697 MD |
900 | goto parse_error; |
901 | } | |
902 | dbg_printf("done\n"); | |
903 | ||
904 | dbg_printf("Validating IR... "); | |
905 | fflush(stdout); | |
906 | ret = filter_visitor_ir_check_binary_op_nesting(ctx); | |
907 | if (ret) { | |
ff7ef7b8 | 908 | ret = -LTTNG_ERR_FILTER_INVAL; |
53a80697 MD |
909 | goto parse_error; |
910 | } | |
911 | dbg_printf("done\n"); | |
912 | ||
913 | dbg_printf("Generating bytecode... "); | |
914 | fflush(stdout); | |
915 | ret = filter_visitor_bytecode_generate(ctx); | |
916 | if (ret) { | |
917 | fprintf(stderr, "Generate bytecode error\n"); | |
ff7ef7b8 | 918 | ret = -LTTNG_ERR_FILTER_INVAL; |
53a80697 MD |
919 | goto parse_error; |
920 | } | |
921 | dbg_printf("done\n"); | |
922 | dbg_printf("Size of bytecode generated: %u bytes.\n", | |
923 | bytecode_get_len(&ctx->bytecode->b)); | |
924 | ||
925 | memset(&lsm, 0, sizeof(lsm)); | |
926 | ||
927 | lsm.cmd_type = LTTNG_SET_FILTER; | |
928 | ||
929 | /* Copy channel name */ | |
930 | copy_string(lsm.u.filter.channel_name, channel_name, | |
931 | sizeof(lsm.u.filter.channel_name)); | |
932 | /* Copy event name */ | |
933 | copy_string(lsm.u.filter.event_name, event_name, | |
934 | sizeof(lsm.u.filter.event_name)); | |
935 | lsm.u.filter.bytecode_len = sizeof(ctx->bytecode->b) | |
936 | + bytecode_get_len(&ctx->bytecode->b); | |
937 | ||
938 | copy_lttng_domain(&lsm.domain, &handle->domain); | |
939 | ||
940 | copy_string(lsm.session.name, handle->session_name, | |
941 | sizeof(lsm.session.name)); | |
942 | ||
943 | ret = ask_sessiond_varlen(&lsm, &ctx->bytecode->b, | |
944 | lsm.u.filter.bytecode_len, NULL); | |
945 | ||
946 | filter_bytecode_free(ctx); | |
947 | filter_ir_free(ctx); | |
948 | filter_parser_ctx_free(ctx); | |
949 | if (fclose(fmem) != 0) { | |
950 | perror("fclose"); | |
951 | } | |
952 | return ret; | |
953 | ||
954 | parse_error: | |
955 | filter_bytecode_free(ctx); | |
956 | filter_ir_free(ctx); | |
957 | filter_parser_ctx_free(ctx); | |
958 | alloc_error: | |
959 | if (fclose(fmem) != 0) { | |
960 | perror("fclose"); | |
961 | } | |
962 | return ret; | |
963 | } | |
964 | ||
1df4dedd | 965 | /* |
1c8d13c8 TD |
966 | * Disable event(s) of a channel and domain. |
967 | * If no event name is specified, all events are disabled. | |
968 | * If no channel name is specified, the default 'channel0' is used. | |
969 | * Returns size of returned session payload data or a negative error code. | |
1df4dedd | 970 | */ |
cd80958d | 971 | int lttng_disable_event(struct lttng_handle *handle, const char *name, |
38057ed1 | 972 | const char *channel_name) |
1df4dedd | 973 | { |
cd80958d | 974 | struct lttcomm_session_msg lsm; |
1df4dedd | 975 | |
9d697d3d | 976 | if (handle == NULL) { |
2f70b271 | 977 | return -LTTNG_ERR_INVALID; |
cd80958d DG |
978 | } |
979 | ||
441c16a7 MD |
980 | memset(&lsm, 0, sizeof(lsm)); |
981 | ||
cd80958d DG |
982 | if (channel_name) { |
983 | copy_string(lsm.u.disable.channel_name, channel_name, | |
984 | sizeof(lsm.u.disable.channel_name)); | |
f3ed775e | 985 | } else { |
cd80958d DG |
986 | copy_string(lsm.u.disable.channel_name, DEFAULT_CHANNEL_NAME, |
987 | sizeof(lsm.u.disable.channel_name)); | |
eb354453 DG |
988 | } |
989 | ||
cd80958d | 990 | copy_lttng_domain(&lsm.domain, &handle->domain); |
f5177a38 | 991 | |
f84efadf | 992 | if (name != NULL) { |
cd80958d DG |
993 | copy_string(lsm.u.disable.name, name, sizeof(lsm.u.disable.name)); |
994 | lsm.cmd_type = LTTNG_DISABLE_EVENT; | |
f5177a38 | 995 | } else { |
cd80958d | 996 | lsm.cmd_type = LTTNG_DISABLE_ALL_EVENT; |
f3ed775e DG |
997 | } |
998 | ||
cd80958d DG |
999 | copy_string(lsm.session.name, handle->session_name, |
1000 | sizeof(lsm.session.name)); | |
1001 | ||
1002 | return ask_sessiond(&lsm, NULL); | |
1df4dedd DG |
1003 | } |
1004 | ||
1005 | /* | |
1c8d13c8 TD |
1006 | * Enable channel per domain |
1007 | * Returns size of returned session payload data or a negative error code. | |
a5c5a2bd | 1008 | */ |
cd80958d | 1009 | int lttng_enable_channel(struct lttng_handle *handle, |
38057ed1 | 1010 | struct lttng_channel *chan) |
a5c5a2bd | 1011 | { |
cd80958d DG |
1012 | struct lttcomm_session_msg lsm; |
1013 | ||
5117eeec DG |
1014 | /* |
1015 | * NULL arguments are forbidden. No default values. | |
1016 | */ | |
1017 | if (handle == NULL || chan == NULL) { | |
2f70b271 | 1018 | return -LTTNG_ERR_INVALID; |
cd80958d DG |
1019 | } |
1020 | ||
441c16a7 MD |
1021 | memset(&lsm, 0, sizeof(lsm)); |
1022 | ||
5117eeec | 1023 | memcpy(&lsm.u.channel.chan, chan, sizeof(lsm.u.channel.chan)); |
7d29a247 | 1024 | |
cd80958d DG |
1025 | lsm.cmd_type = LTTNG_ENABLE_CHANNEL; |
1026 | ||
1027 | copy_lttng_domain(&lsm.domain, &handle->domain); | |
7d29a247 | 1028 | |
cd80958d DG |
1029 | copy_string(lsm.session.name, handle->session_name, |
1030 | sizeof(lsm.session.name)); | |
1031 | ||
1032 | return ask_sessiond(&lsm, NULL); | |
8c0faa1d | 1033 | } |
1df4dedd | 1034 | |
2ef84c95 | 1035 | /* |
1c8d13c8 TD |
1036 | * All tracing will be stopped for registered events of the channel. |
1037 | * Returns size of returned session payload data or a negative error code. | |
2ef84c95 | 1038 | */ |
cd80958d | 1039 | int lttng_disable_channel(struct lttng_handle *handle, const char *name) |
2ef84c95 | 1040 | { |
cd80958d DG |
1041 | struct lttcomm_session_msg lsm; |
1042 | ||
9d697d3d DG |
1043 | /* Safety check. Both are mandatory */ |
1044 | if (handle == NULL || name == NULL) { | |
2f70b271 | 1045 | return -LTTNG_ERR_INVALID; |
cd80958d DG |
1046 | } |
1047 | ||
441c16a7 MD |
1048 | memset(&lsm, 0, sizeof(lsm)); |
1049 | ||
cd80958d | 1050 | lsm.cmd_type = LTTNG_DISABLE_CHANNEL; |
1df4dedd | 1051 | |
9d697d3d DG |
1052 | copy_string(lsm.u.disable.channel_name, name, |
1053 | sizeof(lsm.u.disable.channel_name)); | |
1054 | ||
cd80958d DG |
1055 | copy_lttng_domain(&lsm.domain, &handle->domain); |
1056 | ||
1057 | copy_string(lsm.session.name, handle->session_name, | |
1058 | sizeof(lsm.session.name)); | |
1059 | ||
1060 | return ask_sessiond(&lsm, NULL); | |
ca95a216 DG |
1061 | } |
1062 | ||
fac6795d | 1063 | /* |
1c8d13c8 TD |
1064 | * Lists all available tracepoints of domain. |
1065 | * Sets the contents of the events array. | |
1066 | * Returns the number of lttng_event entries in events; | |
1067 | * on error, returns a negative value. | |
fac6795d | 1068 | */ |
cd80958d | 1069 | int lttng_list_tracepoints(struct lttng_handle *handle, |
2a71efd5 | 1070 | struct lttng_event **events) |
fac6795d | 1071 | { |
052da939 | 1072 | int ret; |
cd80958d DG |
1073 | struct lttcomm_session_msg lsm; |
1074 | ||
9d697d3d | 1075 | if (handle == NULL) { |
2f70b271 | 1076 | return -LTTNG_ERR_INVALID; |
cd80958d | 1077 | } |
fac6795d | 1078 | |
cd80958d DG |
1079 | lsm.cmd_type = LTTNG_LIST_TRACEPOINTS; |
1080 | copy_lttng_domain(&lsm.domain, &handle->domain); | |
2a71efd5 | 1081 | |
cd80958d | 1082 | ret = ask_sessiond(&lsm, (void **) events); |
052da939 DG |
1083 | if (ret < 0) { |
1084 | return ret; | |
eb354453 | 1085 | } |
fac6795d | 1086 | |
9f19cc17 | 1087 | return ret / sizeof(struct lttng_event); |
fac6795d DG |
1088 | } |
1089 | ||
f37d259d MD |
1090 | /* |
1091 | * Lists all available tracepoint fields of domain. | |
1092 | * Sets the contents of the event field array. | |
1093 | * Returns the number of lttng_event_field entries in events; | |
1094 | * on error, returns a negative value. | |
1095 | */ | |
1096 | int lttng_list_tracepoint_fields(struct lttng_handle *handle, | |
1097 | struct lttng_event_field **fields) | |
1098 | { | |
1099 | int ret; | |
1100 | struct lttcomm_session_msg lsm; | |
1101 | ||
1102 | if (handle == NULL) { | |
2f70b271 | 1103 | return -LTTNG_ERR_INVALID; |
f37d259d MD |
1104 | } |
1105 | ||
1106 | lsm.cmd_type = LTTNG_LIST_TRACEPOINT_FIELDS; | |
1107 | copy_lttng_domain(&lsm.domain, &handle->domain); | |
1108 | ||
1109 | ret = ask_sessiond(&lsm, (void **) fields); | |
1110 | if (ret < 0) { | |
1111 | return ret; | |
1112 | } | |
1113 | ||
1114 | return ret / sizeof(struct lttng_event_field); | |
1115 | } | |
1116 | ||
1657e9bb | 1117 | /* |
1c8d13c8 TD |
1118 | * Returns a human readable string describing |
1119 | * the error code (a negative value). | |
1657e9bb | 1120 | */ |
9a745bc7 | 1121 | const char *lttng_strerror(int code) |
1657e9bb | 1122 | { |
f73fabfd | 1123 | return error_get_str(code); |
1657e9bb DG |
1124 | } |
1125 | ||
aaf97519 | 1126 | /* |
a4b92340 DG |
1127 | * Create a brand new session using name and url for destination. |
1128 | * | |
f73fabfd | 1129 | * Returns LTTNG_OK on success or a negative error code. |
00e2e675 | 1130 | */ |
a4b92340 | 1131 | int lttng_create_session(const char *name, const char *url) |
00e2e675 | 1132 | { |
a4b92340 | 1133 | ssize_t size; |
00e2e675 | 1134 | struct lttcomm_session_msg lsm; |
a4b92340 | 1135 | struct lttng_uri *uris = NULL; |
00e2e675 | 1136 | |
a4b92340 | 1137 | if (name == NULL) { |
2f70b271 | 1138 | return -LTTNG_ERR_INVALID; |
00e2e675 DG |
1139 | } |
1140 | ||
a4b92340 | 1141 | memset(&lsm, 0, sizeof(lsm)); |
00e2e675 | 1142 | |
a4b92340 | 1143 | lsm.cmd_type = LTTNG_CREATE_SESSION; |
00e2e675 | 1144 | copy_string(lsm.session.name, name, sizeof(lsm.session.name)); |
a4b92340 DG |
1145 | |
1146 | /* There should never be a data URL */ | |
1147 | size = parse_str_urls_to_uri(url, NULL, &uris); | |
1148 | if (size < 0) { | |
2f70b271 | 1149 | return -LTTNG_ERR_INVALID; |
00e2e675 DG |
1150 | } |
1151 | ||
a4b92340 DG |
1152 | lsm.u.uri.size = size; |
1153 | ||
1154 | return ask_sessiond_varlen(&lsm, uris, sizeof(struct lttng_uri) * size, | |
1155 | NULL); | |
00e2e675 DG |
1156 | } |
1157 | ||
8028d920 | 1158 | /* |
8028d920 | 1159 | * Destroy session using name. |
1c8d13c8 | 1160 | * Returns size of returned session payload data or a negative error code. |
8028d920 | 1161 | */ |
843f5df9 | 1162 | int lttng_destroy_session(const char *session_name) |
8028d920 | 1163 | { |
cd80958d DG |
1164 | struct lttcomm_session_msg lsm; |
1165 | ||
843f5df9 | 1166 | if (session_name == NULL) { |
2f70b271 | 1167 | return -LTTNG_ERR_INVALID; |
cd80958d DG |
1168 | } |
1169 | ||
1170 | lsm.cmd_type = LTTNG_DESTROY_SESSION; | |
843f5df9 DG |
1171 | |
1172 | copy_string(lsm.session.name, session_name, sizeof(lsm.session.name)); | |
cd80958d DG |
1173 | |
1174 | return ask_sessiond(&lsm, NULL); | |
aaf97519 DG |
1175 | } |
1176 | ||
57167058 | 1177 | /* |
57167058 | 1178 | * Ask the session daemon for all available sessions. |
1c8d13c8 TD |
1179 | * Sets the contents of the sessions array. |
1180 | * Returns the number of lttng_session entries in sessions; | |
1181 | * on error, returns a negative value. | |
57167058 | 1182 | */ |
ca95a216 | 1183 | int lttng_list_sessions(struct lttng_session **sessions) |
57167058 | 1184 | { |
ca95a216 | 1185 | int ret; |
cd80958d | 1186 | struct lttcomm_session_msg lsm; |
57167058 | 1187 | |
cd80958d DG |
1188 | lsm.cmd_type = LTTNG_LIST_SESSIONS; |
1189 | ret = ask_sessiond(&lsm, (void**) sessions); | |
57167058 | 1190 | if (ret < 0) { |
ca95a216 | 1191 | return ret; |
57167058 DG |
1192 | } |
1193 | ||
ca95a216 | 1194 | return ret / sizeof(struct lttng_session); |
57167058 DG |
1195 | } |
1196 | ||
9f19cc17 | 1197 | /* |
1c8d13c8 TD |
1198 | * Ask the session daemon for all available domains of a session. |
1199 | * Sets the contents of the domains array. | |
1200 | * Returns the number of lttng_domain entries in domains; | |
1201 | * on error, returns a negative value. | |
9f19cc17 | 1202 | */ |
330be774 | 1203 | int lttng_list_domains(const char *session_name, |
cd80958d | 1204 | struct lttng_domain **domains) |
9f19cc17 DG |
1205 | { |
1206 | int ret; | |
cd80958d DG |
1207 | struct lttcomm_session_msg lsm; |
1208 | ||
330be774 | 1209 | if (session_name == NULL) { |
2f70b271 | 1210 | return -LTTNG_ERR_INVALID; |
cd80958d | 1211 | } |
9f19cc17 | 1212 | |
cd80958d DG |
1213 | lsm.cmd_type = LTTNG_LIST_DOMAINS; |
1214 | ||
330be774 | 1215 | copy_string(lsm.session.name, session_name, sizeof(lsm.session.name)); |
cd80958d DG |
1216 | |
1217 | ret = ask_sessiond(&lsm, (void**) domains); | |
9f19cc17 DG |
1218 | if (ret < 0) { |
1219 | return ret; | |
1220 | } | |
1221 | ||
1222 | return ret / sizeof(struct lttng_domain); | |
1223 | } | |
1224 | ||
1225 | /* | |
1c8d13c8 TD |
1226 | * Ask the session daemon for all available channels of a session. |
1227 | * Sets the contents of the channels array. | |
1228 | * Returns the number of lttng_channel entries in channels; | |
1229 | * on error, returns a negative value. | |
9f19cc17 | 1230 | */ |
cd80958d DG |
1231 | int lttng_list_channels(struct lttng_handle *handle, |
1232 | struct lttng_channel **channels) | |
9f19cc17 DG |
1233 | { |
1234 | int ret; | |
cd80958d DG |
1235 | struct lttcomm_session_msg lsm; |
1236 | ||
9d697d3d | 1237 | if (handle == NULL) { |
2f70b271 | 1238 | return -LTTNG_ERR_INVALID; |
cd80958d DG |
1239 | } |
1240 | ||
1241 | lsm.cmd_type = LTTNG_LIST_CHANNELS; | |
1242 | copy_string(lsm.session.name, handle->session_name, | |
1243 | sizeof(lsm.session.name)); | |
9f19cc17 | 1244 | |
cd80958d | 1245 | copy_lttng_domain(&lsm.domain, &handle->domain); |
9f19cc17 | 1246 | |
cd80958d | 1247 | ret = ask_sessiond(&lsm, (void**) channels); |
9f19cc17 DG |
1248 | if (ret < 0) { |
1249 | return ret; | |
1250 | } | |
1251 | ||
1252 | return ret / sizeof(struct lttng_channel); | |
1253 | } | |
1254 | ||
1255 | /* | |
1c8d13c8 TD |
1256 | * Ask the session daemon for all available events of a session channel. |
1257 | * Sets the contents of the events array. | |
1258 | * Returns the number of lttng_event entries in events; | |
1259 | * on error, returns a negative value. | |
9f19cc17 | 1260 | */ |
cd80958d DG |
1261 | int lttng_list_events(struct lttng_handle *handle, |
1262 | const char *channel_name, struct lttng_event **events) | |
9f19cc17 DG |
1263 | { |
1264 | int ret; | |
cd80958d | 1265 | struct lttcomm_session_msg lsm; |
9f19cc17 | 1266 | |
9d697d3d DG |
1267 | /* Safety check. An handle and channel name are mandatory */ |
1268 | if (handle == NULL || channel_name == NULL) { | |
2f70b271 | 1269 | return -LTTNG_ERR_INVALID; |
cd80958d DG |
1270 | } |
1271 | ||
1272 | lsm.cmd_type = LTTNG_LIST_EVENTS; | |
1273 | copy_string(lsm.session.name, handle->session_name, | |
1274 | sizeof(lsm.session.name)); | |
1275 | copy_string(lsm.u.list.channel_name, channel_name, | |
1276 | sizeof(lsm.u.list.channel_name)); | |
1277 | ||
1278 | copy_lttng_domain(&lsm.domain, &handle->domain); | |
9f19cc17 | 1279 | |
cd80958d | 1280 | ret = ask_sessiond(&lsm, (void**) events); |
9f19cc17 DG |
1281 | if (ret < 0) { |
1282 | return ret; | |
1283 | } | |
1284 | ||
1285 | return ret / sizeof(struct lttng_event); | |
1286 | } | |
1287 | ||
fac6795d | 1288 | /* |
1c8d13c8 TD |
1289 | * Sets the tracing_group variable with name. |
1290 | * This function allocates memory pointed to by tracing_group. | |
1291 | * On success, returns 0, on error, returns -1 (null name) or -ENOMEM. | |
fac6795d DG |
1292 | */ |
1293 | int lttng_set_tracing_group(const char *name) | |
1294 | { | |
9d697d3d | 1295 | if (name == NULL) { |
2f70b271 | 1296 | return -LTTNG_ERR_INVALID; |
9d697d3d DG |
1297 | } |
1298 | ||
fac6795d | 1299 | if (asprintf(&tracing_group, "%s", name) < 0) { |
2f70b271 | 1300 | return -LTTNG_ERR_FATAL; |
fac6795d DG |
1301 | } |
1302 | ||
1303 | return 0; | |
1304 | } | |
1305 | ||
d0254c7c | 1306 | /* |
af87c45a | 1307 | * Returns size of returned session payload data or a negative error code. |
d0254c7c | 1308 | */ |
cd80958d | 1309 | int lttng_calibrate(struct lttng_handle *handle, |
d0254c7c MD |
1310 | struct lttng_calibrate *calibrate) |
1311 | { | |
cd80958d | 1312 | struct lttcomm_session_msg lsm; |
d0254c7c | 1313 | |
9d697d3d DG |
1314 | /* Safety check. NULL pointer are forbidden */ |
1315 | if (handle == NULL || calibrate == NULL) { | |
2f70b271 | 1316 | return -LTTNG_ERR_INVALID; |
cd80958d | 1317 | } |
d0254c7c | 1318 | |
cd80958d DG |
1319 | lsm.cmd_type = LTTNG_CALIBRATE; |
1320 | copy_lttng_domain(&lsm.domain, &handle->domain); | |
d0254c7c | 1321 | |
cd80958d DG |
1322 | memcpy(&lsm.u.calibrate, calibrate, sizeof(lsm.u.calibrate)); |
1323 | ||
1324 | return ask_sessiond(&lsm, NULL); | |
d0254c7c MD |
1325 | } |
1326 | ||
5edd7e09 DG |
1327 | /* |
1328 | * Set default channel attributes. | |
441c16a7 | 1329 | * If either or both of the arguments are null, attr content is zeroe'd. |
5edd7e09 DG |
1330 | */ |
1331 | void lttng_channel_set_default_attr(struct lttng_domain *domain, | |
1332 | struct lttng_channel_attr *attr) | |
1333 | { | |
1334 | /* Safety check */ | |
1335 | if (attr == NULL || domain == NULL) { | |
1336 | return; | |
1337 | } | |
1338 | ||
eacaa7a6 DS |
1339 | memset(attr, 0, sizeof(struct lttng_channel_attr)); |
1340 | ||
5edd7e09 DG |
1341 | switch (domain->type) { |
1342 | case LTTNG_DOMAIN_KERNEL: | |
1343 | attr->overwrite = DEFAULT_CHANNEL_OVERWRITE; | |
1344 | attr->switch_timer_interval = DEFAULT_CHANNEL_SWITCH_TIMER; | |
1345 | attr->read_timer_interval = DEFAULT_CHANNEL_READ_TIMER; | |
1346 | ||
3e230f92 | 1347 | attr->subbuf_size = default_get_kernel_channel_subbuf_size(); |
5edd7e09 DG |
1348 | attr->num_subbuf = DEFAULT_KERNEL_CHANNEL_SUBBUF_NUM; |
1349 | attr->output = DEFAULT_KERNEL_CHANNEL_OUTPUT; | |
1350 | break; | |
1351 | case LTTNG_DOMAIN_UST: | |
d78d6610 | 1352 | #if 0 |
5edd7e09 DG |
1353 | case LTTNG_DOMAIN_UST_EXEC_NAME: |
1354 | case LTTNG_DOMAIN_UST_PID: | |
1355 | case LTTNG_DOMAIN_UST_PID_FOLLOW_CHILDREN: | |
d78d6610 | 1356 | #endif |
5edd7e09 DG |
1357 | attr->overwrite = DEFAULT_CHANNEL_OVERWRITE; |
1358 | attr->switch_timer_interval = DEFAULT_CHANNEL_SWITCH_TIMER; | |
1359 | attr->read_timer_interval = DEFAULT_CHANNEL_READ_TIMER; | |
1360 | ||
3e230f92 | 1361 | attr->subbuf_size = default_get_ust_channel_subbuf_size(); |
5edd7e09 DG |
1362 | attr->num_subbuf = DEFAULT_UST_CHANNEL_SUBBUF_NUM; |
1363 | attr->output = DEFAULT_UST_CHANNEL_OUTPUT; | |
1364 | break; | |
1365 | default: | |
441c16a7 | 1366 | /* Default behavior: leave set to 0. */ |
5edd7e09 DG |
1367 | break; |
1368 | } | |
1369 | } | |
1370 | ||
fac6795d | 1371 | /* |
2269e89e | 1372 | * Check if session daemon is alive. |
fac6795d | 1373 | * |
2269e89e | 1374 | * Return 1 if alive or 0 if not. |
1c8d13c8 | 1375 | * On error returns a negative value. |
fac6795d | 1376 | */ |
947308c4 | 1377 | int lttng_session_daemon_alive(void) |
fac6795d DG |
1378 | { |
1379 | int ret; | |
1380 | ||
1381 | ret = set_session_daemon_path(); | |
1382 | if (ret < 0) { | |
947308c4 | 1383 | /* Error */ |
fac6795d DG |
1384 | return ret; |
1385 | } | |
1386 | ||
2269e89e | 1387 | if (strlen(sessiond_sock_path) == 0) { |
2f70b271 DG |
1388 | /* |
1389 | * No socket path set. Weird error which means the constructor was not | |
1390 | * called. | |
1391 | */ | |
1392 | assert(0); | |
fac6795d DG |
1393 | } |
1394 | ||
2269e89e | 1395 | ret = try_connect_sessiond(sessiond_sock_path); |
7d8234d9 MD |
1396 | if (ret < 0) { |
1397 | /* Not alive */ | |
1398 | return 0; | |
1399 | } | |
7d8234d9 | 1400 | |
947308c4 DG |
1401 | /* Is alive */ |
1402 | return 1; | |
fac6795d DG |
1403 | } |
1404 | ||
00e2e675 | 1405 | /* |
a4b92340 | 1406 | * Set URL for a consumer for a session and domain. |
00e2e675 DG |
1407 | * |
1408 | * Return 0 on success, else a negative value. | |
1409 | */ | |
a4b92340 DG |
1410 | int lttng_set_consumer_url(struct lttng_handle *handle, |
1411 | const char *control_url, const char *data_url) | |
00e2e675 | 1412 | { |
a4b92340 | 1413 | ssize_t size; |
00e2e675 | 1414 | struct lttcomm_session_msg lsm; |
a4b92340 | 1415 | struct lttng_uri *uris = NULL; |
00e2e675 | 1416 | |
a4b92340 | 1417 | if (handle == NULL || (control_url == NULL && data_url == NULL)) { |
2f70b271 | 1418 | return -LTTNG_ERR_INVALID; |
00e2e675 DG |
1419 | } |
1420 | ||
a4b92340 DG |
1421 | memset(&lsm, 0, sizeof(lsm)); |
1422 | ||
00e2e675 DG |
1423 | lsm.cmd_type = LTTNG_SET_CONSUMER_URI; |
1424 | ||
1425 | copy_string(lsm.session.name, handle->session_name, | |
1426 | sizeof(lsm.session.name)); | |
1427 | copy_lttng_domain(&lsm.domain, &handle->domain); | |
1428 | ||
a4b92340 DG |
1429 | size = parse_str_urls_to_uri(control_url, data_url, &uris); |
1430 | if (size < 0) { | |
2f70b271 | 1431 | return -LTTNG_ERR_INVALID; |
a4b92340 DG |
1432 | } |
1433 | ||
1434 | lsm.u.uri.size = size; | |
00e2e675 | 1435 | |
a4b92340 DG |
1436 | return ask_sessiond_varlen(&lsm, uris, sizeof(struct lttng_uri) * size, |
1437 | NULL); | |
00e2e675 DG |
1438 | } |
1439 | ||
1440 | /* | |
1441 | * Enable consumer for a session and domain. | |
1442 | * | |
1443 | * Return 0 on success, else a negative value. | |
1444 | */ | |
1445 | int lttng_enable_consumer(struct lttng_handle *handle) | |
1446 | { | |
1447 | struct lttcomm_session_msg lsm; | |
1448 | ||
1449 | if (handle == NULL) { | |
2f70b271 | 1450 | return -LTTNG_ERR_INVALID; |
00e2e675 DG |
1451 | } |
1452 | ||
1453 | lsm.cmd_type = LTTNG_ENABLE_CONSUMER; | |
1454 | ||
1455 | copy_string(lsm.session.name, handle->session_name, | |
1456 | sizeof(lsm.session.name)); | |
1457 | copy_lttng_domain(&lsm.domain, &handle->domain); | |
1458 | ||
1459 | return ask_sessiond(&lsm, NULL); | |
1460 | } | |
1461 | ||
1462 | /* | |
1463 | * Disable consumer for a session and domain. | |
1464 | * | |
1465 | * Return 0 on success, else a negative value. | |
1466 | */ | |
1467 | int lttng_disable_consumer(struct lttng_handle *handle) | |
1468 | { | |
1469 | struct lttcomm_session_msg lsm; | |
1470 | ||
1471 | if (handle == NULL) { | |
2f70b271 | 1472 | return -LTTNG_ERR_INVALID; |
00e2e675 DG |
1473 | } |
1474 | ||
1475 | lsm.cmd_type = LTTNG_DISABLE_CONSUMER; | |
1476 | ||
1477 | copy_string(lsm.session.name, handle->session_name, | |
1478 | sizeof(lsm.session.name)); | |
1479 | copy_lttng_domain(&lsm.domain, &handle->domain); | |
1480 | ||
1481 | return ask_sessiond(&lsm, NULL); | |
1482 | } | |
1483 | ||
44a5e5eb DG |
1484 | /* |
1485 | * Set health socket path by putting it in the global health_sock_path | |
1486 | * variable. | |
1487 | * | |
1488 | * Returns 0 on success or assert(0) on ENOMEM. | |
1489 | */ | |
1490 | static int set_health_socket_path(void) | |
1491 | { | |
1492 | int ret; | |
1493 | int in_tgroup = 0; /* In tracing group */ | |
1494 | uid_t uid; | |
1495 | const char *home; | |
1496 | ||
1497 | uid = getuid(); | |
1498 | ||
1499 | if (uid != 0) { | |
1500 | /* Are we in the tracing group ? */ | |
1501 | in_tgroup = check_tracing_group(tracing_group); | |
1502 | } | |
1503 | ||
1504 | if ((uid == 0) || in_tgroup) { | |
1505 | copy_string(health_sock_path, DEFAULT_GLOBAL_HEALTH_UNIX_SOCK, | |
1506 | sizeof(health_sock_path)); | |
1507 | } | |
1508 | ||
1509 | if (uid != 0) { | |
1510 | /* | |
1511 | * With GNU C < 2.1, snprintf returns -1 if the target buffer is too small; | |
1512 | * With GNU C >= 2.1, snprintf returns the required size (excluding closing null) | |
1513 | */ | |
1514 | home = getenv("HOME"); | |
1515 | if (home == NULL) { | |
1516 | /* Fallback in /tmp .. */ | |
1517 | home = "/tmp"; | |
1518 | } | |
1519 | ||
1520 | ret = snprintf(health_sock_path, sizeof(health_sock_path), | |
1521 | DEFAULT_HOME_HEALTH_UNIX_SOCK, home); | |
1522 | if ((ret < 0) || (ret >= sizeof(health_sock_path))) { | |
1523 | /* ENOMEM at this point... just kill the control lib. */ | |
1524 | assert(0); | |
1525 | } | |
1526 | } | |
1527 | ||
1528 | return 0; | |
1529 | } | |
1530 | ||
1531 | /* | |
1532 | * Check session daemon health for a specific health component. | |
1533 | * | |
2f70b271 | 1534 | * Return 0 if health is OK or else 1 if BAD. |
44a5e5eb | 1535 | * |
2f70b271 | 1536 | * Any other negative value is a lttng error code which can be translated with |
44a5e5eb DG |
1537 | * lttng_strerror(). |
1538 | */ | |
1539 | int lttng_health_check(enum lttng_health_component c) | |
1540 | { | |
1541 | int sock, ret; | |
1542 | struct lttcomm_health_msg msg; | |
1543 | struct lttcomm_health_data reply; | |
1544 | ||
1545 | /* Connect to the sesssion daemon */ | |
1546 | sock = lttcomm_connect_unix_sock(health_sock_path); | |
1547 | if (sock < 0) { | |
2f70b271 | 1548 | ret = -LTTNG_ERR_NO_SESSIOND; |
44a5e5eb DG |
1549 | goto error; |
1550 | } | |
1551 | ||
1552 | msg.cmd = LTTNG_HEALTH_CHECK; | |
1553 | msg.component = c; | |
1554 | ||
1555 | ret = lttcomm_send_unix_sock(sock, (void *)&msg, sizeof(msg)); | |
1556 | if (ret < 0) { | |
2f70b271 | 1557 | ret = -LTTNG_ERR_FATAL; |
44a5e5eb DG |
1558 | goto close_error; |
1559 | } | |
1560 | ||
1561 | ret = lttcomm_recv_unix_sock(sock, (void *)&reply, sizeof(reply)); | |
1562 | if (ret < 0) { | |
2f70b271 | 1563 | ret = -LTTNG_ERR_FATAL; |
44a5e5eb DG |
1564 | goto close_error; |
1565 | } | |
1566 | ||
1567 | ret = reply.ret_code; | |
1568 | ||
1569 | close_error: | |
1570 | close(sock); | |
1571 | ||
1572 | error: | |
1573 | return ret; | |
1574 | } | |
1575 | ||
07424f16 DG |
1576 | /* |
1577 | * This is an extension of create session that is ONLY and SHOULD only be used | |
1578 | * by the lttng command line program. It exists to avoid using URI parsing in | |
1579 | * the lttng client. | |
1580 | * | |
1581 | * We need the date and time for the trace path subdirectory for the case where | |
1582 | * the user does NOT define one using either -o or -U. Using the normal | |
1583 | * lttng_create_session API call, we have no clue on the session daemon side if | |
1584 | * the URL was generated automatically by the client or define by the user. | |
1585 | * | |
1586 | * So this function "wrapper" is hidden from the public API, takes the datetime | |
1587 | * string and appends it if necessary to the URI subdirectory before sending it | |
1588 | * to the session daemon. | |
1589 | * | |
1590 | * With this extra function, the lttng_create_session call behavior is not | |
1591 | * changed and the timestamp is appended to the URI on the session daemon side | |
1592 | * if necessary. | |
1593 | */ | |
1594 | int _lttng_create_session_ext(const char *name, const char *url, | |
1595 | const char *datetime) | |
1596 | { | |
1597 | int ret; | |
1598 | ssize_t size; | |
1599 | struct lttcomm_session_msg lsm; | |
1600 | struct lttng_uri *uris = NULL; | |
1601 | ||
1602 | if (name == NULL || datetime == NULL) { | |
2f70b271 | 1603 | return -LTTNG_ERR_INVALID; |
07424f16 DG |
1604 | } |
1605 | ||
1606 | memset(&lsm, 0, sizeof(lsm)); | |
1607 | ||
1608 | lsm.cmd_type = LTTNG_CREATE_SESSION; | |
04965770 | 1609 | copy_string(lsm.session.name, name, sizeof(lsm.session.name)); |
07424f16 DG |
1610 | |
1611 | /* There should never be a data URL */ | |
1612 | size = parse_str_urls_to_uri(url, NULL, &uris); | |
1613 | if (size < 0) { | |
2f70b271 | 1614 | return -LTTNG_ERR_INVALID; |
07424f16 DG |
1615 | } |
1616 | ||
1617 | lsm.u.uri.size = size; | |
1618 | ||
4b35a6b3 | 1619 | if (size > 0 && uris[0].dtype != LTTNG_DST_PATH && strlen(uris[0].subdir) == 0) { |
ad20f474 | 1620 | ret = snprintf(uris[0].subdir, sizeof(uris[0].subdir), "%s-%s", name, |
07424f16 DG |
1621 | datetime); |
1622 | if (ret < 0) { | |
1623 | PERROR("snprintf uri subdir"); | |
2f70b271 | 1624 | return -LTTNG_ERR_FATAL; |
07424f16 DG |
1625 | } |
1626 | } | |
1627 | ||
1628 | return ask_sessiond_varlen(&lsm, uris, sizeof(struct lttng_uri) * size, | |
1629 | NULL); | |
1630 | } | |
1631 | ||
806e2684 DG |
1632 | /* |
1633 | * For a given session name, this call checks if the data is ready to be read | |
1634 | * or is still being extracted by the consumer(s) hence not ready to be used by | |
1635 | * any readers. | |
1636 | */ | |
6d805429 | 1637 | int lttng_data_pending(const char *session_name) |
806e2684 DG |
1638 | { |
1639 | int ret; | |
1640 | struct lttcomm_session_msg lsm; | |
1641 | ||
1642 | if (session_name == NULL) { | |
1643 | return -LTTNG_ERR_INVALID; | |
1644 | } | |
1645 | ||
6d805429 | 1646 | lsm.cmd_type = LTTNG_DATA_PENDING; |
806e2684 DG |
1647 | |
1648 | copy_string(lsm.session.name, session_name, sizeof(lsm.session.name)); | |
1649 | ||
1650 | ret = ask_sessiond(&lsm, NULL); | |
1651 | ||
1652 | /* | |
1653 | * The ask_sessiond function negate the return code if it's not LTTNG_OK so | |
1654 | * getting -1 means that the reply ret_code was 1 thus meaning that the | |
1655 | * data is available. Yes it is hackish but for now this is the only way. | |
1656 | */ | |
1657 | if (ret == -1) { | |
1658 | ret = 1; | |
1659 | } | |
1660 | ||
1661 | return ret; | |
1662 | } | |
1663 | ||
fac6795d DG |
1664 | /* |
1665 | * lib constructor | |
1666 | */ | |
1667 | static void __attribute__((constructor)) init() | |
1668 | { | |
1669 | /* Set default session group */ | |
bbccc3d2 | 1670 | lttng_set_tracing_group(DEFAULT_TRACING_GROUP); |
44a5e5eb DG |
1671 | /* Set socket for health check */ |
1672 | (void) set_health_socket_path(); | |
fac6795d | 1673 | } |
49cca668 DG |
1674 | |
1675 | /* | |
1676 | * lib destructor | |
1677 | */ | |
1678 | static void __attribute__((destructor)) lttng_ctl_exit() | |
1679 | { | |
1680 | free(tracing_group); | |
1681 | } |