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