Commit | Line | Data |
---|---|---|
826d496d | 1 | /* |
eb5c4f4e | 2 | * lttng-ctl.c |
82a3637f DG |
3 | * |
4 | * Linux Trace Toolkit Control Library | |
5 | * | |
90c106c6 | 6 | * Copyright (C) 2011 EfficiOS Inc. |
ab5be9fa | 7 | * Copyright (C) 2016 Jérémie Galarneau <jeremie.galarneau@efficios.com> |
fac6795d | 8 | * |
ab5be9fa | 9 | * SPDX-License-Identifier: LGPL-2.1-only |
82a3637f | 10 | * |
fac6795d DG |
11 | */ |
12 | ||
6c1c0768 | 13 | #define _LGPL_SOURCE |
44a5e5eb | 14 | #include <assert.h> |
fac6795d DG |
15 | #include <grp.h> |
16 | #include <stdio.h> | |
17 | #include <stdlib.h> | |
d72eb77f | 18 | #include <stdint.h> |
fac6795d DG |
19 | #include <string.h> |
20 | #include <unistd.h> | |
21 | ||
0ae3cfc6 | 22 | #include <common/bytecode/bytecode.h> |
990570ed | 23 | #include <common/common.h> |
edf4b93e | 24 | #include <common/compat/errno.h> |
15e37663 | 25 | #include <common/compat/string.h> |
990570ed | 26 | #include <common/defaults.h> |
fe489250 | 27 | #include <common/dynamic-array.h> |
b99a0cb3 | 28 | #include <common/dynamic-buffer.h> |
9e620ea7 | 29 | #include <common/payload-view.h> |
b99a0cb3 | 30 | #include <common/payload.h> |
db758600 | 31 | #include <common/sessiond-comm/sessiond-comm.h> |
159b042f | 32 | #include <common/tracker.h> |
fe489250 | 33 | #include <common/unix.h> |
a4b92340 | 34 | #include <common/uri.h> |
feb0f3e5 | 35 | #include <common/utils.h> |
a58c490f | 36 | #include <lttng/channel-internal.h> |
159b042f JG |
37 | #include <lttng/destruction-handle.h> |
38 | #include <lttng/endpoint.h> | |
b99a0cb3 | 39 | #include <lttng/error-query-internal.h> |
de453daa | 40 | #include <lttng/event-internal.h> |
159b042f | 41 | #include <lttng/health-internal.h> |
b99a0cb3 | 42 | #include <lttng/lttng-error.h> |
159b042f | 43 | #include <lttng/lttng.h> |
b178f53e | 44 | #include <lttng/session-descriptor-internal.h> |
159b042f JG |
45 | #include <lttng/session-internal.h> |
46 | #include <lttng/trigger/trigger-internal.h> | |
47 | #include <lttng/userspace-probe-internal.h> | |
fac6795d | 48 | |
b99a0cb3 | 49 | #include "lttng-ctl-helper.h" |
e4d2f27a JR |
50 | #include <common/filter/filter-ast.h> |
51 | #include <common/filter/filter-parser.h> | |
e4d2f27a | 52 | #include <common/filter/memstream.h> |
53a80697 | 53 | |
60160d2a JG |
54 | #define COPY_DOMAIN_PACKED(dst, src) \ |
55 | do { \ | |
56 | struct lttng_domain _tmp_domain; \ | |
57 | \ | |
58 | lttng_ctl_copy_lttng_domain(&_tmp_domain, &src); \ | |
59 | dst = _tmp_domain; \ | |
60 | } while (0) | |
53a80697 | 61 | |
fac6795d | 62 | /* Socket to session daemon for communication */ |
3e3665b8 | 63 | static int sessiond_socket = -1; |
fac6795d DG |
64 | static char sessiond_sock_path[PATH_MAX]; |
65 | ||
fac6795d DG |
66 | /* Variables */ |
67 | static char *tracing_group; | |
68 | static int connected; | |
69 | ||
97e19046 DG |
70 | /* Global */ |
71 | ||
72 | /* | |
73 | * Those two variables are used by error.h to silent or control the verbosity of | |
74 | * error message. They are global to the library so application linking with it | |
75 | * are able to compile correctly and also control verbosity of the library. | |
97e19046 DG |
76 | */ |
77 | int lttng_opt_quiet; | |
78 | int lttng_opt_verbose; | |
c7e35b03 | 79 | int lttng_opt_mi; |
97e19046 | 80 | |
fac6795d | 81 | /* |
cd80958d | 82 | * Copy domain to lttcomm_session_msg domain. |
fac6795d | 83 | * |
cd80958d DG |
84 | * If domain is unknown, default domain will be the kernel. |
85 | */ | |
cac3069d DG |
86 | LTTNG_HIDDEN |
87 | void lttng_ctl_copy_lttng_domain(struct lttng_domain *dst, | |
88 | struct lttng_domain *src) | |
cd80958d DG |
89 | { |
90 | if (src && dst) { | |
91 | switch (src->type) { | |
00e2e675 DG |
92 | case LTTNG_DOMAIN_KERNEL: |
93 | case LTTNG_DOMAIN_UST: | |
b9dfb167 | 94 | case LTTNG_DOMAIN_JUL: |
5cdb6027 | 95 | case LTTNG_DOMAIN_LOG4J: |
0e115563 | 96 | case LTTNG_DOMAIN_PYTHON: |
00e2e675 DG |
97 | memcpy(dst, src, sizeof(struct lttng_domain)); |
98 | break; | |
99 | default: | |
100 | memset(dst, 0, sizeof(struct lttng_domain)); | |
00e2e675 | 101 | break; |
cd80958d DG |
102 | } |
103 | } | |
104 | } | |
105 | ||
106 | /* | |
107 | * Send lttcomm_session_msg to the session daemon. | |
fac6795d | 108 | * |
1c8d13c8 TD |
109 | * On success, returns the number of bytes sent (>=0) |
110 | * On error, returns -1 | |
fac6795d | 111 | */ |
cd80958d | 112 | static int send_session_msg(struct lttcomm_session_msg *lsm) |
fac6795d DG |
113 | { |
114 | int ret; | |
115 | ||
116 | if (!connected) { | |
2f70b271 | 117 | ret = -LTTNG_ERR_NO_SESSIOND; |
e065084a | 118 | goto end; |
fac6795d DG |
119 | } |
120 | ||
19f912db FD |
121 | DBG("LSM cmd type: '%s' (%d)", lttcomm_sessiond_command_str(lsm->cmd_type), |
122 | lsm->cmd_type); | |
a4b92340 | 123 | |
be040666 | 124 | ret = lttcomm_send_creds_unix_sock(sessiond_socket, lsm, |
cd80958d | 125 | sizeof(struct lttcomm_session_msg)); |
2f70b271 DG |
126 | if (ret < 0) { |
127 | ret = -LTTNG_ERR_FATAL; | |
128 | } | |
e065084a DG |
129 | |
130 | end: | |
131 | return ret; | |
132 | } | |
133 | ||
53a80697 MD |
134 | /* |
135 | * Send var len data to the session daemon. | |
136 | * | |
137 | * On success, returns the number of bytes sent (>=0) | |
138 | * On error, returns -1 | |
139 | */ | |
c2d69327 | 140 | static int send_session_varlen(const void *data, size_t len) |
53a80697 MD |
141 | { |
142 | int ret; | |
143 | ||
144 | if (!connected) { | |
2f70b271 | 145 | ret = -LTTNG_ERR_NO_SESSIOND; |
53a80697 MD |
146 | goto end; |
147 | } | |
a4b92340 | 148 | |
53a80697 MD |
149 | if (!data || !len) { |
150 | ret = 0; | |
151 | goto end; | |
152 | } | |
153 | ||
154 | ret = lttcomm_send_unix_sock(sessiond_socket, data, len); | |
2f70b271 DG |
155 | if (ret < 0) { |
156 | ret = -LTTNG_ERR_FATAL; | |
157 | } | |
53a80697 MD |
158 | |
159 | end: | |
160 | return ret; | |
161 | } | |
162 | ||
a04d53fc FD |
163 | /* |
164 | * Send file descriptors to the session daemon. | |
165 | * | |
166 | * On success, returns the number of bytes sent (>=0) | |
167 | * On error, returns -1 | |
168 | */ | |
169 | static int send_session_fds(const int *fds, size_t nb_fd) | |
170 | { | |
171 | int ret; | |
172 | ||
173 | if (!connected) { | |
174 | ret = -LTTNG_ERR_NO_SESSIOND; | |
175 | goto end; | |
176 | } | |
177 | ||
178 | if (!fds || !nb_fd) { | |
179 | ret = 0; | |
180 | goto end; | |
181 | } | |
182 | ||
183 | ret = lttcomm_send_fds_unix_sock(sessiond_socket, fds, nb_fd); | |
184 | if (ret < 0) { | |
185 | ret = -LTTNG_ERR_FATAL; | |
186 | } | |
187 | ||
188 | end: | |
189 | return ret; | |
190 | } | |
191 | ||
e065084a | 192 | /* |
cd80958d | 193 | * Receive data from the sessiond socket. |
e065084a | 194 | * |
1c8d13c8 | 195 | * On success, returns the number of bytes received (>=0) |
e368fb43 | 196 | * On error, returns a negative lttng_error_code. |
e065084a | 197 | */ |
ca95a216 | 198 | static int recv_data_sessiond(void *buf, size_t len) |
e065084a DG |
199 | { |
200 | int ret; | |
201 | ||
bacc41cc FD |
202 | assert(len > 0); |
203 | ||
e065084a | 204 | if (!connected) { |
2f70b271 | 205 | ret = -LTTNG_ERR_NO_SESSIOND; |
e065084a | 206 | goto end; |
fac6795d DG |
207 | } |
208 | ||
ca95a216 | 209 | ret = lttcomm_recv_unix_sock(sessiond_socket, buf, len); |
2f70b271 DG |
210 | if (ret < 0) { |
211 | ret = -LTTNG_ERR_FATAL; | |
bacc41cc FD |
212 | } else if (ret == 0) { |
213 | ret = -LTTNG_ERR_NO_SESSIOND; | |
2f70b271 | 214 | } |
fac6795d | 215 | |
e065084a | 216 | end: |
fac6795d DG |
217 | return ret; |
218 | } | |
219 | ||
e368fb43 JG |
220 | /* |
221 | * Receive a payload from the session daemon by appending to an existing | |
222 | * payload. | |
223 | * On success, returns the number of bytes received (>=0) | |
224 | * On error, returns a negative lttng_error_code. | |
225 | */ | |
226 | static int recv_payload_sessiond(struct lttng_payload *payload, size_t len) | |
227 | { | |
228 | int ret; | |
229 | const size_t original_payload_size = payload->buffer.size; | |
230 | ||
231 | ret = lttng_dynamic_buffer_set_size( | |
232 | &payload->buffer, payload->buffer.size + len); | |
233 | if (ret) { | |
234 | ret = -LTTNG_ERR_NOMEM; | |
235 | goto end; | |
236 | } | |
237 | ||
238 | ret = recv_data_sessiond( | |
239 | payload->buffer.data + original_payload_size, len); | |
240 | end: | |
241 | return ret; | |
242 | } | |
243 | ||
fac6795d | 244 | /* |
9ae110e2 | 245 | * Check if we are in the specified group. |
65beb5ff | 246 | * |
9ae110e2 | 247 | * If yes return 1, else return -1. |
947308c4 | 248 | */ |
6c71277b MD |
249 | LTTNG_HIDDEN |
250 | int lttng_check_tracing_group(void) | |
947308c4 | 251 | { |
28ab59d0 | 252 | gid_t *grp_list, tracing_gid; |
947308c4 DG |
253 | int grp_list_size, grp_id, i; |
254 | int ret = -1; | |
6c71277b | 255 | const char *grp_name = tracing_group; |
947308c4 DG |
256 | |
257 | /* Get GID of group 'tracing' */ | |
28ab59d0 | 258 | if (utils_get_group_id(grp_name, false, &tracing_gid)) { |
b4d8603b | 259 | /* If grp_tracing is NULL, the group does not exist. */ |
947308c4 DG |
260 | goto end; |
261 | } | |
262 | ||
263 | /* Get number of supplementary group IDs */ | |
264 | grp_list_size = getgroups(0, NULL); | |
265 | if (grp_list_size < 0) { | |
6f04ed72 | 266 | PERROR("getgroups"); |
947308c4 DG |
267 | goto end; |
268 | } | |
269 | ||
270 | /* Alloc group list of the right size */ | |
3f451dc0 | 271 | grp_list = zmalloc(grp_list_size * sizeof(gid_t)); |
00795392 | 272 | if (!grp_list) { |
6f04ed72 | 273 | PERROR("malloc"); |
00795392 MD |
274 | goto end; |
275 | } | |
947308c4 | 276 | grp_id = getgroups(grp_list_size, grp_list); |
1c8d13c8 | 277 | if (grp_id < 0) { |
6f04ed72 | 278 | PERROR("getgroups"); |
947308c4 DG |
279 | goto free_list; |
280 | } | |
281 | ||
282 | for (i = 0; i < grp_list_size; i++) { | |
28ab59d0 | 283 | if (grp_list[i] == tracing_gid) { |
2269e89e | 284 | ret = 1; |
947308c4 DG |
285 | break; |
286 | } | |
287 | } | |
288 | ||
289 | free_list: | |
290 | free(grp_list); | |
291 | ||
292 | end: | |
293 | return ret; | |
294 | } | |
295 | ||
d72eb77f JR |
296 | static enum lttng_error_code check_enough_available_memory( |
297 | uint64_t num_bytes_requested_per_cpu) | |
09b72f7a FD |
298 | { |
299 | int ret; | |
d72eb77f | 300 | enum lttng_error_code ret_code; |
09b72f7a | 301 | long num_cpu; |
d72eb77f JR |
302 | uint64_t best_mem_info; |
303 | uint64_t num_bytes_requested_total; | |
09b72f7a FD |
304 | |
305 | /* | |
306 | * Get the number of CPU currently online to compute the amount of | |
307 | * memory needed to create a buffer for every CPU. | |
308 | */ | |
309 | num_cpu = sysconf(_SC_NPROCESSORS_ONLN); | |
310 | if (num_cpu == -1) { | |
d72eb77f JR |
311 | ret_code = LTTNG_ERR_FATAL; |
312 | goto end; | |
313 | } | |
314 | ||
315 | if (num_bytes_requested_per_cpu > UINT64_MAX / (uint64_t) num_cpu) { | |
316 | /* Overflow */ | |
317 | ret_code = LTTNG_ERR_OVERFLOW; | |
318 | goto end; | |
09b72f7a FD |
319 | } |
320 | ||
d72eb77f JR |
321 | num_bytes_requested_total = |
322 | num_bytes_requested_per_cpu * (uint64_t) num_cpu; | |
09b72f7a FD |
323 | |
324 | /* | |
325 | * Try to get the `MemAvail` field of `/proc/meminfo`. This is the most | |
326 | * reliable estimate we can get but it is only exposed by the kernel | |
327 | * since 3.14. (See Linux kernel commit: | |
328 | * 34e431b0ae398fc54ea69ff85ec700722c9da773) | |
329 | */ | |
330 | ret = utils_get_memory_available(&best_mem_info); | |
331 | if (ret >= 0) { | |
332 | goto success; | |
333 | } | |
334 | ||
335 | /* | |
336 | * As a backup plan, use `MemTotal` field of `/proc/meminfo`. This | |
337 | * is a sanity check for obvious user error. | |
338 | */ | |
339 | ret = utils_get_memory_total(&best_mem_info); | |
340 | if (ret >= 0) { | |
341 | goto success; | |
342 | } | |
343 | ||
d72eb77f JR |
344 | /* No valid source of information. */ |
345 | ret_code = LTTNG_ERR_NOMEM; | |
346 | goto end; | |
347 | ||
09b72f7a | 348 | success: |
d72eb77f JR |
349 | if (best_mem_info >= num_bytes_requested_total) { |
350 | ret_code = LTTNG_OK; | |
351 | } else { | |
352 | ret_code = LTTNG_ERR_NOMEM; | |
353 | } | |
354 | end: | |
355 | return ret_code; | |
09b72f7a FD |
356 | } |
357 | ||
947308c4 | 358 | /* |
2269e89e DG |
359 | * Try connect to session daemon with sock_path. |
360 | * | |
361 | * Return 0 on success, else -1 | |
362 | */ | |
363 | static int try_connect_sessiond(const char *sock_path) | |
364 | { | |
365 | int ret; | |
366 | ||
367 | /* If socket exist, we check if the daemon listens for connect. */ | |
368 | ret = access(sock_path, F_OK); | |
369 | if (ret < 0) { | |
370 | /* Not alive */ | |
2f70b271 | 371 | goto error; |
2269e89e DG |
372 | } |
373 | ||
374 | ret = lttcomm_connect_unix_sock(sock_path); | |
375 | if (ret < 0) { | |
9ae110e2 | 376 | /* Not alive. */ |
2f70b271 | 377 | goto error; |
2269e89e DG |
378 | } |
379 | ||
380 | ret = lttcomm_close_unix_sock(ret); | |
381 | if (ret < 0) { | |
6f04ed72 | 382 | PERROR("lttcomm_close_unix_sock"); |
2269e89e DG |
383 | } |
384 | ||
385 | return 0; | |
2f70b271 DG |
386 | |
387 | error: | |
388 | return -1; | |
2269e89e DG |
389 | } |
390 | ||
391 | /* | |
2f70b271 DG |
392 | * Set sessiond socket path by putting it in the global sessiond_sock_path |
393 | * variable. | |
394 | * | |
395 | * Returns 0 on success, negative value on failure (the sessiond socket path | |
396 | * is somehow too long or ENOMEM). | |
947308c4 DG |
397 | */ |
398 | static int set_session_daemon_path(void) | |
399 | { | |
9ae110e2 | 400 | int in_tgroup = 0; /* In tracing group. */ |
2269e89e DG |
401 | uid_t uid; |
402 | ||
403 | uid = getuid(); | |
947308c4 | 404 | |
2269e89e DG |
405 | if (uid != 0) { |
406 | /* Are we in the tracing group ? */ | |
6c71277b | 407 | in_tgroup = lttng_check_tracing_group(); |
2269e89e DG |
408 | } |
409 | ||
adca10ef | 410 | if ((uid == 0) || in_tgroup == 1) { |
e1b624d0 JG |
411 | const int ret = lttng_strncpy(sessiond_sock_path, |
412 | DEFAULT_GLOBAL_CLIENT_UNIX_SOCK, | |
413 | sizeof(sessiond_sock_path)); | |
414 | ||
415 | if (ret) { | |
416 | goto error; | |
417 | } | |
08a9c49f | 418 | } |
2269e89e | 419 | |
08a9c49f | 420 | if (uid != 0) { |
c617c0c6 MD |
421 | int ret; |
422 | ||
08a9c49f | 423 | if (in_tgroup) { |
9ae110e2 | 424 | /* Tracing group. */ |
08a9c49f TD |
425 | ret = try_connect_sessiond(sessiond_sock_path); |
426 | if (ret >= 0) { | |
427 | goto end; | |
2269e89e | 428 | } |
08a9c49f | 429 | /* Global session daemon not available... */ |
2269e89e | 430 | } |
08a9c49f TD |
431 | /* ...or not in tracing group (and not root), default */ |
432 | ||
433 | /* | |
9ae110e2 JG |
434 | * With GNU C < 2.1, snprintf returns -1 if the target buffer |
435 | * is too small; | |
436 | * With GNU C >= 2.1, snprintf returns the required size | |
437 | * (excluding closing null) | |
08a9c49f TD |
438 | */ |
439 | ret = snprintf(sessiond_sock_path, sizeof(sessiond_sock_path), | |
feb0f3e5 | 440 | DEFAULT_HOME_CLIENT_UNIX_SOCK, utils_get_home_dir()); |
08a9c49f | 441 | if ((ret < 0) || (ret >= sizeof(sessiond_sock_path))) { |
2f70b271 | 442 | goto error; |
947308c4 | 443 | } |
947308c4 | 444 | } |
08a9c49f | 445 | end: |
947308c4 | 446 | return 0; |
2f70b271 DG |
447 | |
448 | error: | |
449 | return -1; | |
947308c4 DG |
450 | } |
451 | ||
65beb5ff | 452 | /* |
9ae110e2 | 453 | * Connect to the LTTng session daemon. |
65beb5ff | 454 | * |
3e3665b8 | 455 | * On success, return the socket's file descriptor. On error, return -1. |
65beb5ff | 456 | */ |
3e3665b8 | 457 | LTTNG_HIDDEN int connect_sessiond(void) |
65beb5ff DG |
458 | { |
459 | int ret; | |
460 | ||
461 | ret = set_session_daemon_path(); | |
462 | if (ret < 0) { | |
2f70b271 | 463 | goto error; |
65beb5ff DG |
464 | } |
465 | ||
9ae110e2 | 466 | /* Connect to the sesssion daemon. */ |
65beb5ff DG |
467 | ret = lttcomm_connect_unix_sock(sessiond_sock_path); |
468 | if (ret < 0) { | |
2f70b271 | 469 | goto error; |
65beb5ff DG |
470 | } |
471 | ||
3e3665b8 | 472 | return ret; |
2f70b271 DG |
473 | |
474 | error: | |
475 | return -1; | |
65beb5ff DG |
476 | } |
477 | ||
3e3665b8 JG |
478 | static void reset_global_sessiond_connection_state(void) |
479 | { | |
480 | sessiond_socket = -1; | |
481 | connected = 0; | |
482 | } | |
483 | ||
65beb5ff | 484 | /* |
1c8d13c8 | 485 | * Clean disconnect from the session daemon. |
9ae110e2 | 486 | * |
1c8d13c8 | 487 | * On success, return 0. On error, return -1. |
65beb5ff DG |
488 | */ |
489 | static int disconnect_sessiond(void) | |
490 | { | |
491 | int ret = 0; | |
492 | ||
493 | if (connected) { | |
494 | ret = lttcomm_close_unix_sock(sessiond_socket); | |
3e3665b8 | 495 | reset_global_sessiond_connection_state(); |
65beb5ff DG |
496 | } |
497 | ||
498 | return ret; | |
499 | } | |
500 | ||
795a978d PP |
501 | static int recv_sessiond_optional_data(size_t len, void **user_buf, |
502 | size_t *user_len) | |
503 | { | |
504 | int ret = 0; | |
505 | void *buf = NULL; | |
506 | ||
507 | if (len) { | |
508 | if (!user_len) { | |
509 | ret = -LTTNG_ERR_INVALID; | |
510 | goto end; | |
511 | } | |
512 | ||
513 | buf = zmalloc(len); | |
514 | if (!buf) { | |
515 | ret = -ENOMEM; | |
516 | goto end; | |
517 | } | |
518 | ||
519 | ret = recv_data_sessiond(buf, len); | |
520 | if (ret < 0) { | |
521 | goto end; | |
522 | } | |
523 | ||
524 | if (!user_buf) { | |
525 | ret = -LTTNG_ERR_INVALID; | |
526 | goto end; | |
527 | } | |
528 | ||
529 | /* Move ownership of command header buffer to user. */ | |
530 | *user_buf = buf; | |
531 | buf = NULL; | |
532 | *user_len = len; | |
533 | } else { | |
534 | /* No command header. */ | |
535 | if (user_len) { | |
536 | *user_len = 0; | |
537 | } | |
538 | ||
539 | if (user_buf) { | |
540 | *user_buf = NULL; | |
541 | } | |
542 | } | |
543 | ||
544 | end: | |
545 | free(buf); | |
546 | return ret; | |
547 | } | |
548 | ||
35a6fdb7 | 549 | /* |
cd80958d | 550 | * Ask the session daemon a specific command and put the data into buf. |
a04d53fc FD |
551 | * Takes extra var. len. data and file descriptors as input to send to the |
552 | * session daemon. | |
65beb5ff | 553 | * |
af87c45a | 554 | * Return size of data (only payload, not header) or a negative error code. |
65beb5ff | 555 | */ |
cac3069d | 556 | LTTNG_HIDDEN |
a04d53fc FD |
557 | int lttng_ctl_ask_sessiond_fds_varlen(struct lttcomm_session_msg *lsm, |
558 | const int *fds, size_t nb_fd, const void *vardata, | |
559 | size_t vardata_len, void **user_payload_buf, | |
560 | void **user_cmd_header_buf, size_t *user_cmd_header_len) | |
65beb5ff DG |
561 | { |
562 | int ret; | |
795a978d | 563 | size_t payload_len; |
cd80958d | 564 | struct lttcomm_lttng_msg llm; |
65beb5ff DG |
565 | |
566 | ret = connect_sessiond(); | |
567 | if (ret < 0) { | |
2f70b271 | 568 | ret = -LTTNG_ERR_NO_SESSIOND; |
65beb5ff | 569 | goto end; |
3e3665b8 JG |
570 | } else { |
571 | sessiond_socket = ret; | |
572 | connected = 1; | |
65beb5ff DG |
573 | } |
574 | ||
cd80958d | 575 | ret = send_session_msg(lsm); |
65beb5ff | 576 | if (ret < 0) { |
2f70b271 | 577 | /* Ret value is a valid lttng error code. */ |
65beb5ff DG |
578 | goto end; |
579 | } | |
53a80697 | 580 | /* Send var len data */ |
795a978d | 581 | ret = send_session_varlen(vardata, vardata_len); |
53a80697 | 582 | if (ret < 0) { |
2f70b271 | 583 | /* Ret value is a valid lttng error code. */ |
53a80697 MD |
584 | goto end; |
585 | } | |
65beb5ff | 586 | |
a04d53fc FD |
587 | /* Send fds */ |
588 | ret = send_session_fds(fds, nb_fd); | |
589 | if (ret < 0) { | |
590 | /* Ret value is a valid lttng error code. */ | |
591 | goto end; | |
592 | } | |
593 | ||
65beb5ff DG |
594 | /* Get header from data transmission */ |
595 | ret = recv_data_sessiond(&llm, sizeof(llm)); | |
596 | if (ret < 0) { | |
2f70b271 | 597 | /* Ret value is a valid lttng error code. */ |
65beb5ff DG |
598 | goto end; |
599 | } | |
600 | ||
601 | /* Check error code if OK */ | |
f73fabfd | 602 | if (llm.ret_code != LTTNG_OK) { |
65beb5ff DG |
603 | ret = -llm.ret_code; |
604 | goto end; | |
605 | } | |
606 | ||
795a978d PP |
607 | /* Get command header from data transmission */ |
608 | ret = recv_sessiond_optional_data(llm.cmd_header_size, | |
609 | user_cmd_header_buf, user_cmd_header_len); | |
65beb5ff | 610 | if (ret < 0) { |
65beb5ff DG |
611 | goto end; |
612 | } | |
613 | ||
795a978d PP |
614 | /* Get payload from data transmission */ |
615 | ret = recv_sessiond_optional_data(llm.data_size, user_payload_buf, | |
616 | &payload_len); | |
617 | if (ret < 0) { | |
83009e5e DG |
618 | goto end; |
619 | } | |
620 | ||
795a978d | 621 | ret = llm.data_size; |
65beb5ff DG |
622 | |
623 | end: | |
624 | disconnect_sessiond(); | |
625 | return ret; | |
626 | } | |
627 | ||
e368fb43 JG |
628 | LTTNG_HIDDEN |
629 | int lttng_ctl_ask_sessiond_payload(struct lttng_payload_view *message, | |
630 | struct lttng_payload *reply) | |
631 | { | |
632 | int ret; | |
633 | struct lttcomm_lttng_msg llm; | |
fe489250 | 634 | const int fd_count = lttng_payload_view_get_fd_handle_count(message); |
e368fb43 JG |
635 | |
636 | assert(reply->buffer.size == 0); | |
fe489250 | 637 | assert(lttng_dynamic_pointer_array_get_count(&reply->_fd_handles) == 0); |
e368fb43 JG |
638 | |
639 | ret = connect_sessiond(); | |
640 | if (ret < 0) { | |
641 | ret = -LTTNG_ERR_NO_SESSIOND; | |
642 | goto end; | |
643 | } else { | |
644 | sessiond_socket = ret; | |
645 | connected = 1; | |
646 | } | |
647 | ||
648 | /* Send command to session daemon */ | |
649 | ret = lttcomm_send_creds_unix_sock(sessiond_socket, message->buffer.data, | |
650 | message->buffer.size); | |
651 | if (ret < 0) { | |
652 | ret = -LTTNG_ERR_FATAL; | |
653 | goto end; | |
654 | } | |
655 | ||
fe489250 JG |
656 | if (fd_count > 0) { |
657 | ret = lttcomm_send_payload_view_fds_unix_sock(sessiond_socket, | |
658 | message); | |
659 | if (ret < 0) { | |
660 | ret = -LTTNG_ERR_FATAL; | |
661 | goto end; | |
662 | } | |
e368fb43 JG |
663 | } |
664 | ||
665 | /* Get header from data transmission */ | |
666 | ret = recv_payload_sessiond(reply, sizeof(llm)); | |
667 | if (ret < 0) { | |
668 | /* Ret value is a valid lttng error code. */ | |
669 | goto end; | |
670 | } | |
671 | ||
672 | llm = *((typeof(llm) *) reply->buffer.data); | |
673 | ||
674 | /* Check error code if OK */ | |
675 | if (llm.ret_code != LTTNG_OK) { | |
eb441106 JG |
676 | if (llm.ret_code < LTTNG_OK || llm.ret_code >= LTTNG_ERR_NR) { |
677 | /* Invalid error code received. */ | |
678 | ret = -LTTNG_ERR_UNK; | |
679 | } else { | |
680 | ret = -llm.ret_code; | |
681 | } | |
e368fb43 JG |
682 | goto end; |
683 | } | |
684 | ||
685 | if (llm.cmd_header_size > 0) { | |
686 | ret = recv_payload_sessiond(reply, llm.cmd_header_size); | |
687 | if (ret < 0) { | |
688 | goto end; | |
689 | } | |
690 | } | |
691 | ||
692 | /* Get command header from data transmission */ | |
693 | if (llm.data_size > 0) { | |
694 | ret = recv_payload_sessiond(reply, llm.data_size); | |
695 | if (ret < 0) { | |
696 | goto end; | |
697 | } | |
698 | } | |
699 | ||
700 | if (llm.fd_count > 0) { | |
fe489250 JG |
701 | ret = lttcomm_recv_payload_fds_unix_sock( |
702 | sessiond_socket, llm.fd_count, reply); | |
703 | if (ret < 0) { | |
e368fb43 JG |
704 | goto end; |
705 | } | |
706 | } | |
707 | ||
708 | /* Don't return the llm header to the caller. */ | |
709 | memmove(reply->buffer.data, reply->buffer.data + sizeof(llm), | |
710 | reply->buffer.size - sizeof(llm)); | |
711 | ret = lttng_dynamic_buffer_set_size( | |
712 | &reply->buffer, reply->buffer.size - sizeof(llm)); | |
713 | if (ret) { | |
714 | /* Can't happen as size is reduced. */ | |
715 | abort(); | |
716 | } | |
717 | ||
718 | ret = reply->buffer.size; | |
719 | ||
720 | end: | |
721 | disconnect_sessiond(); | |
722 | return ret; | |
723 | } | |
724 | ||
9f19cc17 | 725 | /* |
cd80958d | 726 | * Create lttng handle and return pointer. |
9ae110e2 | 727 | * |
1c8d13c8 | 728 | * The returned pointer will be NULL in case of malloc() error. |
9f19cc17 | 729 | */ |
cd80958d DG |
730 | struct lttng_handle *lttng_create_handle(const char *session_name, |
731 | struct lttng_domain *domain) | |
9f19cc17 | 732 | { |
e1b624d0 | 733 | int ret; |
2f70b271 DG |
734 | struct lttng_handle *handle = NULL; |
735 | ||
3f451dc0 | 736 | handle = zmalloc(sizeof(struct lttng_handle)); |
cd80958d | 737 | if (handle == NULL) { |
2f70b271 | 738 | PERROR("malloc handle"); |
cd80958d DG |
739 | goto end; |
740 | } | |
741 | ||
742 | /* Copy session name */ | |
e1b624d0 JG |
743 | ret = lttng_strncpy(handle->session_name, session_name ? : "", |
744 | sizeof(handle->session_name)); | |
745 | if (ret) { | |
746 | goto error; | |
747 | } | |
cd80958d | 748 | |
95681498 JG |
749 | /* Copy lttng domain or leave initialized to 0. */ |
750 | if (domain) { | |
751 | lttng_ctl_copy_lttng_domain(&handle->domain, domain); | |
752 | } | |
cd80958d DG |
753 | |
754 | end: | |
755 | return handle; | |
e1b624d0 JG |
756 | error: |
757 | free(handle); | |
758 | return NULL; | |
cd80958d DG |
759 | } |
760 | ||
761 | /* | |
762 | * Destroy handle by free(3) the pointer. | |
763 | */ | |
764 | void lttng_destroy_handle(struct lttng_handle *handle) | |
765 | { | |
0e428499 | 766 | free(handle); |
eb354453 DG |
767 | } |
768 | ||
d9800920 DG |
769 | /* |
770 | * Register an outside consumer. | |
9ae110e2 | 771 | * |
1c8d13c8 | 772 | * Returns size of returned session payload data or a negative error code. |
d9800920 DG |
773 | */ |
774 | int lttng_register_consumer(struct lttng_handle *handle, | |
775 | const char *socket_path) | |
776 | { | |
e1b624d0 | 777 | int ret; |
d9800920 DG |
778 | struct lttcomm_session_msg lsm; |
779 | ||
2f70b271 | 780 | if (handle == NULL || socket_path == NULL) { |
e1b624d0 JG |
781 | ret = -LTTNG_ERR_INVALID; |
782 | goto end; | |
2f70b271 DG |
783 | } |
784 | ||
53efb85a | 785 | memset(&lsm, 0, sizeof(lsm)); |
d9800920 | 786 | lsm.cmd_type = LTTNG_REGISTER_CONSUMER; |
e1b624d0 | 787 | ret = lttng_strncpy(lsm.session.name, handle->session_name, |
d9800920 | 788 | sizeof(lsm.session.name)); |
e1b624d0 JG |
789 | if (ret) { |
790 | ret = -LTTNG_ERR_INVALID; | |
791 | goto end; | |
792 | } | |
793 | ||
60160d2a | 794 | COPY_DOMAIN_PACKED(lsm.domain, handle->domain); |
d9800920 | 795 | |
e1b624d0 JG |
796 | ret = lttng_strncpy(lsm.u.reg.path, socket_path, |
797 | sizeof(lsm.u.reg.path)); | |
798 | if (ret) { | |
799 | ret = -LTTNG_ERR_INVALID; | |
800 | goto end; | |
801 | } | |
d9800920 | 802 | |
e1b624d0 JG |
803 | ret = lttng_ctl_ask_sessiond(&lsm, NULL); |
804 | end: | |
805 | return ret; | |
d9800920 DG |
806 | } |
807 | ||
1df4dedd | 808 | /* |
9ae110e2 JG |
809 | * Start tracing for all traces of the session. |
810 | * | |
811 | * Returns size of returned session payload data or a negative error code. | |
1df4dedd | 812 | */ |
6a4f824d | 813 | int lttng_start_tracing(const char *session_name) |
f3ed775e | 814 | { |
e1b624d0 | 815 | int ret; |
cd80958d DG |
816 | struct lttcomm_session_msg lsm; |
817 | ||
6a4f824d | 818 | if (session_name == NULL) { |
e1b624d0 JG |
819 | ret = -LTTNG_ERR_INVALID; |
820 | goto end; | |
cd80958d DG |
821 | } |
822 | ||
53efb85a | 823 | memset(&lsm, 0, sizeof(lsm)); |
cd80958d | 824 | lsm.cmd_type = LTTNG_START_TRACE; |
6a4f824d | 825 | |
e1b624d0 JG |
826 | ret = lttng_strncpy(lsm.session.name, session_name, |
827 | sizeof(lsm.session.name)); | |
828 | if (ret) { | |
829 | ret = -LTTNG_ERR_INVALID; | |
830 | goto end; | |
831 | } | |
cd80958d | 832 | |
e1b624d0 JG |
833 | ret = lttng_ctl_ask_sessiond(&lsm, NULL); |
834 | end: | |
835 | return ret; | |
f3ed775e | 836 | } |
1df4dedd DG |
837 | |
838 | /* | |
38ee087f | 839 | * Stop tracing for all traces of the session. |
f3ed775e | 840 | */ |
38ee087f | 841 | static int _lttng_stop_tracing(const char *session_name, int wait) |
f3ed775e | 842 | { |
38ee087f | 843 | int ret, data_ret; |
cd80958d DG |
844 | struct lttcomm_session_msg lsm; |
845 | ||
6a4f824d | 846 | if (session_name == NULL) { |
e1b624d0 JG |
847 | ret = -LTTNG_ERR_INVALID; |
848 | goto error; | |
6a4f824d DG |
849 | } |
850 | ||
53efb85a | 851 | memset(&lsm, 0, sizeof(lsm)); |
cd80958d | 852 | lsm.cmd_type = LTTNG_STOP_TRACE; |
6a4f824d | 853 | |
e1b624d0 JG |
854 | ret = lttng_strncpy(lsm.session.name, session_name, |
855 | sizeof(lsm.session.name)); | |
856 | if (ret) { | |
857 | ret = -LTTNG_ERR_INVALID; | |
858 | goto error; | |
859 | } | |
cd80958d | 860 | |
cac3069d | 861 | ret = lttng_ctl_ask_sessiond(&lsm, NULL); |
38ee087f DG |
862 | if (ret < 0 && ret != -LTTNG_ERR_TRACE_ALREADY_STOPPED) { |
863 | goto error; | |
864 | } | |
865 | ||
866 | if (!wait) { | |
867 | goto end; | |
868 | } | |
869 | ||
38ee087f DG |
870 | /* Check for data availability */ |
871 | do { | |
6d805429 | 872 | data_ret = lttng_data_pending(session_name); |
38ee087f DG |
873 | if (data_ret < 0) { |
874 | /* Return the data available call error. */ | |
875 | ret = data_ret; | |
876 | goto error; | |
877 | } | |
878 | ||
879 | /* | |
9ae110e2 JG |
880 | * Data sleep time before retrying (in usec). Don't sleep if the |
881 | * call returned value indicates availability. | |
38ee087f | 882 | */ |
6d805429 | 883 | if (data_ret) { |
c8f61fd4 | 884 | usleep(DEFAULT_DATA_AVAILABILITY_WAIT_TIME_US); |
38ee087f | 885 | } |
6d805429 | 886 | } while (data_ret != 0); |
38ee087f | 887 | |
38ee087f DG |
888 | end: |
889 | error: | |
890 | return ret; | |
891 | } | |
892 | ||
893 | /* | |
894 | * Stop tracing and wait for data availability. | |
895 | */ | |
896 | int lttng_stop_tracing(const char *session_name) | |
897 | { | |
898 | return _lttng_stop_tracing(session_name, 1); | |
899 | } | |
900 | ||
901 | /* | |
902 | * Stop tracing but _don't_ wait for data availability. | |
903 | */ | |
904 | int lttng_stop_tracing_no_wait(const char *session_name) | |
905 | { | |
906 | return _lttng_stop_tracing(session_name, 0); | |
f3ed775e DG |
907 | } |
908 | ||
909 | /* | |
601d5acf DG |
910 | * Add context to a channel. |
911 | * | |
912 | * If the given channel is NULL, add the contexts to all channels. | |
913 | * The event_name param is ignored. | |
af87c45a DG |
914 | * |
915 | * Returns the size of the returned payload data or a negative error code. | |
1df4dedd | 916 | */ |
cd80958d | 917 | int lttng_add_context(struct lttng_handle *handle, |
38057ed1 DG |
918 | struct lttng_event_context *ctx, const char *event_name, |
919 | const char *channel_name) | |
d65106b1 | 920 | { |
2001793c JG |
921 | int ret; |
922 | size_t len = 0; | |
923 | char *buf = NULL; | |
cd80958d DG |
924 | struct lttcomm_session_msg lsm; |
925 | ||
9ae110e2 | 926 | /* Safety check. Both are mandatory. */ |
9d697d3d | 927 | if (handle == NULL || ctx == NULL) { |
2001793c JG |
928 | ret = -LTTNG_ERR_INVALID; |
929 | goto end; | |
cd80958d DG |
930 | } |
931 | ||
441c16a7 | 932 | memset(&lsm, 0, sizeof(lsm)); |
cd80958d DG |
933 | lsm.cmd_type = LTTNG_ADD_CONTEXT; |
934 | ||
85076754 | 935 | /* If no channel name, send empty string. */ |
e1b624d0 JG |
936 | ret = lttng_strncpy(lsm.u.context.channel_name, channel_name ?: "", |
937 | sizeof(lsm.u.context.channel_name)); | |
938 | if (ret) { | |
939 | ret = -LTTNG_ERR_INVALID; | |
940 | goto end; | |
85076754 | 941 | } |
cd80958d | 942 | |
60160d2a | 943 | COPY_DOMAIN_PACKED(lsm.domain, handle->domain); |
e1b624d0 | 944 | ret = lttng_strncpy(lsm.session.name, handle->session_name, |
cd80958d | 945 | sizeof(lsm.session.name)); |
e1b624d0 JG |
946 | if (ret) { |
947 | ret = -LTTNG_ERR_INVALID; | |
948 | goto end; | |
949 | } | |
cd80958d | 950 | |
2001793c JG |
951 | if (ctx->ctx == LTTNG_EVENT_CONTEXT_APP_CONTEXT) { |
952 | size_t provider_len, ctx_len; | |
953 | const char *provider_name = ctx->u.app_ctx.provider_name; | |
954 | const char *ctx_name = ctx->u.app_ctx.ctx_name; | |
955 | ||
956 | if (!provider_name || !ctx_name) { | |
957 | ret = -LTTNG_ERR_INVALID; | |
958 | goto end; | |
959 | } | |
960 | ||
961 | provider_len = strlen(provider_name); | |
962 | if (provider_len == 0) { | |
963 | ret = -LTTNG_ERR_INVALID; | |
964 | goto end; | |
965 | } | |
966 | lsm.u.context.provider_name_len = provider_len; | |
967 | ||
968 | ctx_len = strlen(ctx_name); | |
969 | if (ctx_len == 0) { | |
970 | ret = -LTTNG_ERR_INVALID; | |
971 | goto end; | |
972 | } | |
973 | lsm.u.context.context_name_len = ctx_len; | |
974 | ||
975 | len = provider_len + ctx_len; | |
976 | buf = zmalloc(len); | |
977 | if (!buf) { | |
978 | ret = -LTTNG_ERR_NOMEM; | |
979 | goto end; | |
980 | } | |
981 | ||
982 | memcpy(buf, provider_name, provider_len); | |
983 | memcpy(buf + provider_len, ctx_name, ctx_len); | |
984 | } | |
985 | memcpy(&lsm.u.context.ctx, ctx, sizeof(struct lttng_event_context)); | |
46f44e2a JR |
986 | |
987 | if (ctx->ctx == LTTNG_EVENT_CONTEXT_APP_CONTEXT) { | |
988 | /* | |
989 | * Don't leak application addresses to the sessiond. | |
990 | * This is only necessary when ctx is for an app ctx otherwise | |
991 | * the values inside the union (type & config) are overwritten. | |
992 | */ | |
993 | lsm.u.context.ctx.u.app_ctx.provider_name = NULL; | |
994 | lsm.u.context.ctx.u.app_ctx.ctx_name = NULL; | |
995 | } | |
2001793c | 996 | |
795a978d | 997 | ret = lttng_ctl_ask_sessiond_varlen_no_cmd_header(&lsm, buf, len, NULL); |
2001793c JG |
998 | end: |
999 | free(buf); | |
1000 | return ret; | |
d65106b1 DG |
1001 | } |
1002 | ||
f3ed775e | 1003 | /* |
9ae110e2 JG |
1004 | * Enable event(s) for a channel. |
1005 | * | |
1006 | * If no event name is specified, all events are enabled. | |
1007 | * If no channel name is specified, the default 'channel0' is used. | |
1008 | * | |
1009 | * Returns size of returned session payload data or a negative error code. | |
f3ed775e | 1010 | */ |
cd80958d | 1011 | int lttng_enable_event(struct lttng_handle *handle, |
38057ed1 | 1012 | struct lttng_event *ev, const char *channel_name) |
1df4dedd | 1013 | { |
f8a96544 JI |
1014 | return lttng_enable_event_with_exclusions(handle, ev, channel_name, |
1015 | NULL, 0, NULL); | |
1df4dedd DG |
1016 | } |
1017 | ||
53a80697 | 1018 | /* |
025faf73 | 1019 | * Create or enable an event with a filter expression. |
178191b3 | 1020 | * |
53a80697 MD |
1021 | * Return negative error value on error. |
1022 | * Return size of returned session payload data if OK. | |
1023 | */ | |
025faf73 | 1024 | int lttng_enable_event_with_filter(struct lttng_handle *handle, |
178191b3 | 1025 | struct lttng_event *event, const char *channel_name, |
53a80697 MD |
1026 | const char *filter_expression) |
1027 | { | |
f8a96544 JI |
1028 | return lttng_enable_event_with_exclusions(handle, event, channel_name, |
1029 | filter_expression, 0, NULL); | |
53a80697 MD |
1030 | } |
1031 | ||
347c5ab5 | 1032 | /* |
0e115563 | 1033 | * Depending on the event, return a newly allocated agent filter expression or |
347c5ab5 DG |
1034 | * NULL if not applicable. |
1035 | * | |
1036 | * An event with NO loglevel and the name is * will return NULL. | |
1037 | */ | |
0e115563 | 1038 | static char *set_agent_filter(const char *filter, struct lttng_event *ev) |
347c5ab5 DG |
1039 | { |
1040 | int err; | |
0e115563 | 1041 | char *agent_filter = NULL; |
347c5ab5 DG |
1042 | |
1043 | assert(ev); | |
1044 | ||
1045 | /* Don't add filter for the '*' event. */ | |
9f449915 | 1046 | if (strcmp(ev->name, "*") != 0) { |
347c5ab5 | 1047 | if (filter) { |
0e115563 | 1048 | err = asprintf(&agent_filter, "(%s) && (logger_name == \"%s\")", filter, |
347c5ab5 DG |
1049 | ev->name); |
1050 | } else { | |
0e115563 | 1051 | err = asprintf(&agent_filter, "logger_name == \"%s\"", ev->name); |
347c5ab5 DG |
1052 | } |
1053 | if (err < 0) { | |
1054 | PERROR("asprintf"); | |
6a556f7b | 1055 | goto error; |
347c5ab5 DG |
1056 | } |
1057 | } | |
1058 | ||
1059 | /* Add loglevel filtering if any for the JUL domain. */ | |
1060 | if (ev->loglevel_type != LTTNG_EVENT_LOGLEVEL_ALL) { | |
b53d4e59 | 1061 | const char *op; |
347c5ab5 DG |
1062 | |
1063 | if (ev->loglevel_type == LTTNG_EVENT_LOGLEVEL_RANGE) { | |
1064 | op = ">="; | |
1065 | } else { | |
1066 | op = "=="; | |
1067 | } | |
1068 | ||
0e115563 | 1069 | if (filter || agent_filter) { |
6a556f7b JG |
1070 | char *new_filter; |
1071 | ||
fb0edb23 | 1072 | err = asprintf(&new_filter, "(%s) && (int_loglevel %s %d)", |
0e115563 | 1073 | agent_filter ? agent_filter : filter, op, |
347c5ab5 | 1074 | ev->loglevel); |
0e115563 DG |
1075 | if (agent_filter) { |
1076 | free(agent_filter); | |
6a556f7b | 1077 | } |
0e115563 | 1078 | agent_filter = new_filter; |
347c5ab5 | 1079 | } else { |
0e115563 | 1080 | err = asprintf(&agent_filter, "int_loglevel %s %d", op, |
347c5ab5 DG |
1081 | ev->loglevel); |
1082 | } | |
1083 | if (err < 0) { | |
1084 | PERROR("asprintf"); | |
6a556f7b | 1085 | goto error; |
347c5ab5 DG |
1086 | } |
1087 | } | |
1088 | ||
0e115563 | 1089 | return agent_filter; |
6a556f7b | 1090 | error: |
0e115563 | 1091 | free(agent_filter); |
6a556f7b | 1092 | return NULL; |
347c5ab5 DG |
1093 | } |
1094 | ||
93deb080 JI |
1095 | /* |
1096 | * Enable event(s) for a channel, possibly with exclusions and a filter. | |
1097 | * If no event name is specified, all events are enabled. | |
1098 | * If no channel name is specified, the default name is used. | |
1099 | * If filter expression is not NULL, the filter is set for the event. | |
1100 | * If exclusion count is not zero, the exclusions are set for the event. | |
1101 | * Returns size of returned session payload data or a negative error code. | |
1102 | */ | |
1103 | int lttng_enable_event_with_exclusions(struct lttng_handle *handle, | |
1104 | struct lttng_event *ev, const char *channel_name, | |
e9efbcd3 | 1105 | const char *original_filter_expression, |
93deb080 JI |
1106 | int exclusion_count, char **exclusion_list) |
1107 | { | |
1108 | struct lttcomm_session_msg lsm; | |
e368fb43 JG |
1109 | struct lttng_payload payload; |
1110 | int ret = 0, i; | |
137b9942 | 1111 | unsigned int free_filter_expression = 0; |
93deb080 | 1112 | struct filter_parser_ctx *ctx = NULL; |
ec005ec6 | 1113 | |
6a0838b7 YL |
1114 | /* |
1115 | * We have either a filter or some exclusions, so we need to set up | |
e368fb43 | 1116 | * a variable-length payload from where to send the data. |
6a0838b7 | 1117 | */ |
e368fb43 | 1118 | lttng_payload_init(&payload); |
ec005ec6 | 1119 | |
e9efbcd3 JG |
1120 | /* |
1121 | * Cast as non-const since we may replace the filter expression | |
1122 | * by a dynamically allocated string. Otherwise, the original | |
1123 | * string is not modified. | |
1124 | */ | |
1125 | char *filter_expression = (char *) original_filter_expression; | |
93deb080 JI |
1126 | |
1127 | if (handle == NULL || ev == NULL) { | |
137b9942 DG |
1128 | ret = -LTTNG_ERR_INVALID; |
1129 | goto error; | |
93deb080 JI |
1130 | } |
1131 | ||
9ae110e2 JG |
1132 | /* |
1133 | * Empty filter string will always be rejected by the parser | |
93deb080 JI |
1134 | * anyway, so treat this corner-case early to eliminate |
1135 | * lttng_fmemopen error for 0-byte allocation. | |
1136 | */ | |
1137 | if (filter_expression && filter_expression[0] == '\0') { | |
137b9942 DG |
1138 | ret = -LTTNG_ERR_INVALID; |
1139 | goto error; | |
93deb080 JI |
1140 | } |
1141 | ||
1142 | memset(&lsm, 0, sizeof(lsm)); | |
1143 | ||
1144 | /* If no channel name, send empty string. */ | |
e1b624d0 JG |
1145 | ret = lttng_strncpy(lsm.u.enable.channel_name, channel_name ?: "", |
1146 | sizeof(lsm.u.enable.channel_name)); | |
1147 | if (ret) { | |
1148 | ret = -LTTNG_ERR_INVALID; | |
1149 | goto error; | |
93deb080 JI |
1150 | } |
1151 | ||
18a720cd MD |
1152 | lsm.cmd_type = LTTNG_ENABLE_EVENT; |
1153 | if (ev->name[0] == '\0') { | |
e1b624d0 JG |
1154 | /* Enable all events. */ |
1155 | ret = lttng_strncpy(ev->name, "*", sizeof(ev->name)); | |
1156 | assert(ret == 0); | |
6565421f | 1157 | } |
93deb080 | 1158 | |
60160d2a | 1159 | COPY_DOMAIN_PACKED(lsm.domain, handle->domain); |
93deb080 JI |
1160 | memcpy(&lsm.u.enable.event, ev, sizeof(lsm.u.enable.event)); |
1161 | ||
e1b624d0 | 1162 | ret = lttng_strncpy(lsm.session.name, handle->session_name, |
93deb080 | 1163 | sizeof(lsm.session.name)); |
e1b624d0 JG |
1164 | if (ret) { |
1165 | ret = -LTTNG_ERR_INVALID; | |
1166 | goto error; | |
1167 | } | |
1168 | ||
93deb080 JI |
1169 | lsm.u.enable.exclusion_count = exclusion_count; |
1170 | lsm.u.enable.bytecode_len = 0; | |
1171 | ||
9ae110e2 | 1172 | /* Parse filter expression. */ |
5cdb6027 | 1173 | if (filter_expression != NULL || handle->domain.type == LTTNG_DOMAIN_JUL |
0e115563 DG |
1174 | || handle->domain.type == LTTNG_DOMAIN_LOG4J |
1175 | || handle->domain.type == LTTNG_DOMAIN_PYTHON) { | |
5cdb6027 | 1176 | if (handle->domain.type == LTTNG_DOMAIN_JUL || |
0e115563 DG |
1177 | handle->domain.type == LTTNG_DOMAIN_LOG4J || |
1178 | handle->domain.type == LTTNG_DOMAIN_PYTHON) { | |
1179 | char *agent_filter; | |
64226865 | 1180 | |
347c5ab5 | 1181 | /* Setup JUL filter if needed. */ |
0e115563 DG |
1182 | agent_filter = set_agent_filter(filter_expression, ev); |
1183 | if (!agent_filter) { | |
137b9942 | 1184 | if (!filter_expression) { |
9ae110e2 JG |
1185 | /* |
1186 | * No JUL and no filter, just skip | |
1187 | * everything below. | |
1188 | */ | |
137b9942 DG |
1189 | goto ask_sessiond; |
1190 | } | |
64226865 DG |
1191 | } else { |
1192 | /* | |
9ae110e2 JG |
1193 | * With an agent filter, the original filter has |
1194 | * been added to it thus replace the filter | |
1195 | * expression. | |
64226865 | 1196 | */ |
0e115563 | 1197 | filter_expression = agent_filter; |
e9efbcd3 | 1198 | free_filter_expression = 1; |
9b21e6d5 | 1199 | } |
9b21e6d5 | 1200 | } |
93deb080 | 1201 | |
e4d2f27a | 1202 | ret = filter_parser_ctx_create_from_filter_expression(filter_expression, &ctx); |
93deb080 | 1203 | if (ret) { |
137b9942 | 1204 | goto filter_error; |
93deb080 | 1205 | } |
e4d2f27a JR |
1206 | |
1207 | lsm.u.enable.bytecode_len = sizeof(ctx->bytecode->b) | |
1208 | + bytecode_get_len(&ctx->bytecode->b); | |
1209 | lsm.u.enable.expression_len = strlen(filter_expression) + 1; | |
6b453b5e JG |
1210 | } |
1211 | ||
e368fb43 JG |
1212 | ret = lttng_dynamic_buffer_set_capacity(&payload.buffer, |
1213 | lsm.u.enable.bytecode_len + | |
1214 | lsm.u.enable.expression_len + | |
1215 | LTTNG_SYMBOL_NAME_LEN * | |
1216 | exclusion_count); | |
15e37663 | 1217 | if (ret) { |
6b453b5e | 1218 | ret = -LTTNG_ERR_EXCLUSION_NOMEM; |
7ca1dc6f | 1219 | goto mem_error; |
6b453b5e | 1220 | } |
137b9942 | 1221 | |
9ae110e2 | 1222 | /* Put exclusion names first in the data. */ |
15e37663 JG |
1223 | for (i = 0; i < exclusion_count; i++) { |
1224 | size_t exclusion_len; | |
1225 | ||
1085f5ea | 1226 | exclusion_len = lttng_strnlen(exclusion_list[i], |
15e37663 JG |
1227 | LTTNG_SYMBOL_NAME_LEN); |
1228 | if (exclusion_len == LTTNG_SYMBOL_NAME_LEN) { | |
1229 | /* Exclusion is not NULL-terminated. */ | |
1230 | ret = -LTTNG_ERR_INVALID; | |
1231 | goto mem_error; | |
1232 | } | |
1233 | ||
e368fb43 | 1234 | ret = lttng_dynamic_buffer_append(&payload.buffer, |
1085f5ea FD |
1235 | exclusion_list[i], exclusion_len); |
1236 | if (ret) { | |
1237 | goto mem_error; | |
1238 | } | |
1239 | ||
1240 | /* | |
1241 | * Padding the rest of the entry with zeros. Every exclusion | |
1242 | * entries take LTTNG_SYMBOL_NAME_LEN bytes in the buffer. | |
1243 | */ | |
1244 | ret = lttng_dynamic_buffer_set_size(&payload.buffer, | |
1245 | LTTNG_SYMBOL_NAME_LEN * (i + 1)); | |
15e37663 JG |
1246 | if (ret) { |
1247 | goto mem_error; | |
1248 | } | |
6b453b5e | 1249 | } |
15e37663 | 1250 | |
9ae110e2 | 1251 | /* Add filter expression next. */ |
15e37663 | 1252 | if (filter_expression) { |
e368fb43 | 1253 | ret = lttng_dynamic_buffer_append(&payload.buffer, |
15e37663 JG |
1254 | filter_expression, lsm.u.enable.expression_len); |
1255 | if (ret) { | |
1256 | goto mem_error; | |
1257 | } | |
6b453b5e | 1258 | } |
9ae110e2 | 1259 | /* Add filter bytecode next. */ |
137b9942 | 1260 | if (ctx && lsm.u.enable.bytecode_len != 0) { |
e368fb43 | 1261 | ret = lttng_dynamic_buffer_append(&payload.buffer, |
15e37663 JG |
1262 | &ctx->bytecode->b, lsm.u.enable.bytecode_len); |
1263 | if (ret) { | |
1264 | goto mem_error; | |
1265 | } | |
1266 | } | |
1267 | if (ev->extended.ptr) { | |
1268 | struct lttng_event_extended *ev_ext = | |
1269 | (struct lttng_event_extended *) ev->extended.ptr; | |
1270 | ||
1271 | if (ev_ext->probe_location) { | |
1272 | /* | |
1273 | * lttng_userspace_probe_location_serialize returns the | |
1274 | * number of bytes that was appended to the buffer. | |
1275 | */ | |
1276 | ret = lttng_userspace_probe_location_serialize( | |
e368fb43 | 1277 | ev_ext->probe_location, &payload); |
56f0bc67 | 1278 | if (ret < 0) { |
15e37663 JG |
1279 | goto mem_error; |
1280 | } | |
1281 | ||
15e37663 JG |
1282 | /* |
1283 | * Set the size of the userspace probe location element | |
1284 | * of the buffer so that the receiving side knows where | |
1285 | * to split it. | |
1286 | */ | |
1287 | lsm.u.enable.userspace_probe_location_len = ret; | |
1288 | } | |
93deb080 JI |
1289 | } |
1290 | ||
e368fb43 JG |
1291 | { |
1292 | struct lttng_payload_view view = lttng_payload_view_from_payload( | |
1293 | &payload, 0, -1); | |
fe489250 | 1294 | int fd_count = lttng_payload_view_get_fd_handle_count(&view); |
e368fb43 JG |
1295 | int fd_to_send; |
1296 | ||
1297 | if (fd_count < 0) { | |
1298 | goto mem_error; | |
1299 | } | |
1300 | ||
1301 | assert(fd_count == 0 || fd_count == 1); | |
1302 | if (fd_count == 1) { | |
e2fc8e9d | 1303 | struct fd_handle *h = |
fe489250 JG |
1304 | lttng_payload_view_pop_fd_handle(&view); |
1305 | ||
e2fc8e9d | 1306 | if (!h) { |
e368fb43 JG |
1307 | goto mem_error; |
1308 | } | |
1309 | ||
e2fc8e9d SM |
1310 | fd_to_send = fd_handle_get_fd(h); |
1311 | fd_handle_put(h); | |
e368fb43 JG |
1312 | } |
1313 | ||
1314 | ret = lttng_ctl_ask_sessiond_fds_varlen(&lsm, | |
1315 | fd_count ? &fd_to_send : NULL, fd_count, | |
1316 | view.buffer.size ? view.buffer.data : NULL, | |
1317 | view.buffer.size, NULL, NULL, 0); | |
1318 | } | |
93deb080 | 1319 | |
7ca1dc6f DG |
1320 | mem_error: |
1321 | if (filter_expression && ctx) { | |
93deb080 JI |
1322 | filter_bytecode_free(ctx); |
1323 | filter_ir_free(ctx); | |
1324 | filter_parser_ctx_free(ctx); | |
7ca1dc6f DG |
1325 | } |
1326 | filter_error: | |
1327 | if (free_filter_expression) { | |
1328 | /* | |
9ae110e2 JG |
1329 | * The filter expression has been replaced and must be freed as |
1330 | * it is not the original filter expression received as a | |
1331 | * parameter. | |
7ca1dc6f DG |
1332 | */ |
1333 | free(filter_expression); | |
93deb080 | 1334 | } |
137b9942 DG |
1335 | error: |
1336 | /* | |
9ae110e2 JG |
1337 | * Return directly to the caller and don't ask the sessiond since |
1338 | * something went wrong in the parsing of data above. | |
137b9942 | 1339 | */ |
e368fb43 | 1340 | lttng_payload_reset(&payload); |
93deb080 | 1341 | return ret; |
3e1c9ff7 DG |
1342 | |
1343 | ask_sessiond: | |
1344 | ret = lttng_ctl_ask_sessiond(&lsm, NULL); | |
1345 | return ret; | |
93deb080 JI |
1346 | } |
1347 | ||
6e911cad MD |
1348 | int lttng_disable_event_ext(struct lttng_handle *handle, |
1349 | struct lttng_event *ev, const char *channel_name, | |
1350 | const char *original_filter_expression) | |
1df4dedd | 1351 | { |
cd80958d | 1352 | struct lttcomm_session_msg lsm; |
6e911cad MD |
1353 | char *varlen_data; |
1354 | int ret = 0; | |
1355 | unsigned int free_filter_expression = 0; | |
1356 | struct filter_parser_ctx *ctx = NULL; | |
1357 | /* | |
1358 | * Cast as non-const since we may replace the filter expression | |
1359 | * by a dynamically allocated string. Otherwise, the original | |
1360 | * string is not modified. | |
1361 | */ | |
1362 | char *filter_expression = (char *) original_filter_expression; | |
1df4dedd | 1363 | |
6e911cad MD |
1364 | if (handle == NULL || ev == NULL) { |
1365 | ret = -LTTNG_ERR_INVALID; | |
1366 | goto error; | |
1367 | } | |
1368 | ||
9ae110e2 JG |
1369 | /* |
1370 | * Empty filter string will always be rejected by the parser | |
6e911cad MD |
1371 | * anyway, so treat this corner-case early to eliminate |
1372 | * lttng_fmemopen error for 0-byte allocation. | |
1373 | */ | |
1374 | if (filter_expression && filter_expression[0] == '\0') { | |
1375 | ret = -LTTNG_ERR_INVALID; | |
1376 | goto error; | |
cd80958d DG |
1377 | } |
1378 | ||
441c16a7 MD |
1379 | memset(&lsm, 0, sizeof(lsm)); |
1380 | ||
85076754 | 1381 | /* If no channel name, send empty string. */ |
e1b624d0 JG |
1382 | ret = lttng_strncpy(lsm.u.disable.channel_name, channel_name ?: "", |
1383 | sizeof(lsm.u.disable.channel_name)); | |
1384 | if (ret) { | |
1385 | ret = -LTTNG_ERR_INVALID; | |
1386 | goto error; | |
eb354453 DG |
1387 | } |
1388 | ||
18a720cd | 1389 | lsm.cmd_type = LTTNG_DISABLE_EVENT; |
f3ed775e | 1390 | |
60160d2a | 1391 | COPY_DOMAIN_PACKED(lsm.domain, handle->domain); |
6e911cad MD |
1392 | memcpy(&lsm.u.disable.event, ev, sizeof(lsm.u.disable.event)); |
1393 | ||
e1b624d0 | 1394 | ret = lttng_strncpy(lsm.session.name, handle->session_name, |
cd80958d | 1395 | sizeof(lsm.session.name)); |
e1b624d0 JG |
1396 | if (ret) { |
1397 | ret = -LTTNG_ERR_INVALID; | |
1398 | goto error; | |
1399 | } | |
1400 | ||
6e911cad | 1401 | lsm.u.disable.bytecode_len = 0; |
cd80958d | 1402 | |
6e911cad MD |
1403 | /* |
1404 | * For the JUL domain, a filter is enforced except for the | |
1405 | * disable all event. This is done to avoid having the event in | |
1406 | * all sessions thus filtering by logger name. | |
1407 | */ | |
1408 | if (filter_expression == NULL && | |
1409 | (handle->domain.type != LTTNG_DOMAIN_JUL && | |
0e115563 DG |
1410 | handle->domain.type != LTTNG_DOMAIN_LOG4J && |
1411 | handle->domain.type != LTTNG_DOMAIN_PYTHON)) { | |
6e911cad MD |
1412 | goto ask_sessiond; |
1413 | } | |
1414 | ||
1415 | /* | |
1416 | * We have a filter, so we need to set up a variable-length | |
1417 | * memory block from where to send the data. | |
1418 | */ | |
1419 | ||
1420 | /* Parse filter expression */ | |
1421 | if (filter_expression != NULL || handle->domain.type == LTTNG_DOMAIN_JUL | |
0e115563 DG |
1422 | || handle->domain.type == LTTNG_DOMAIN_LOG4J |
1423 | || handle->domain.type == LTTNG_DOMAIN_PYTHON) { | |
6e911cad | 1424 | if (handle->domain.type == LTTNG_DOMAIN_JUL || |
0e115563 DG |
1425 | handle->domain.type == LTTNG_DOMAIN_LOG4J || |
1426 | handle->domain.type == LTTNG_DOMAIN_PYTHON) { | |
1427 | char *agent_filter; | |
6e911cad MD |
1428 | |
1429 | /* Setup JUL filter if needed. */ | |
0e115563 DG |
1430 | agent_filter = set_agent_filter(filter_expression, ev); |
1431 | if (!agent_filter) { | |
6e911cad | 1432 | if (!filter_expression) { |
9ae110e2 JG |
1433 | /* |
1434 | * No JUL and no filter, just skip | |
1435 | * everything below. | |
1436 | */ | |
6e911cad MD |
1437 | goto ask_sessiond; |
1438 | } | |
1439 | } else { | |
1440 | /* | |
9ae110e2 JG |
1441 | * With a JUL filter, the original filter has |
1442 | * been added to it thus replace the filter | |
1443 | * expression. | |
6e911cad | 1444 | */ |
0e115563 | 1445 | filter_expression = agent_filter; |
6e911cad MD |
1446 | free_filter_expression = 1; |
1447 | } | |
1448 | } | |
1449 | ||
e4d2f27a | 1450 | ret = filter_parser_ctx_create_from_filter_expression(filter_expression, &ctx); |
6e911cad MD |
1451 | if (ret) { |
1452 | goto filter_error; | |
1453 | } | |
e4d2f27a JR |
1454 | |
1455 | lsm.u.enable.bytecode_len = sizeof(ctx->bytecode->b) | |
1456 | + bytecode_get_len(&ctx->bytecode->b); | |
1457 | lsm.u.enable.expression_len = strlen(filter_expression) + 1; | |
6e911cad MD |
1458 | } |
1459 | ||
1460 | varlen_data = zmalloc(lsm.u.disable.bytecode_len | |
1461 | + lsm.u.disable.expression_len); | |
1462 | if (!varlen_data) { | |
1463 | ret = -LTTNG_ERR_EXCLUSION_NOMEM; | |
1464 | goto mem_error; | |
1465 | } | |
1466 | ||
9ae110e2 | 1467 | /* Add filter expression. */ |
6e911cad MD |
1468 | if (lsm.u.disable.expression_len != 0) { |
1469 | memcpy(varlen_data, | |
1470 | filter_expression, | |
1471 | lsm.u.disable.expression_len); | |
1472 | } | |
9ae110e2 | 1473 | /* Add filter bytecode next. */ |
6e911cad MD |
1474 | if (ctx && lsm.u.disable.bytecode_len != 0) { |
1475 | memcpy(varlen_data | |
1476 | + lsm.u.disable.expression_len, | |
1477 | &ctx->bytecode->b, | |
1478 | lsm.u.disable.bytecode_len); | |
1479 | } | |
1480 | ||
795a978d | 1481 | ret = lttng_ctl_ask_sessiond_varlen_no_cmd_header(&lsm, varlen_data, |
6e911cad MD |
1482 | lsm.u.disable.bytecode_len + lsm.u.disable.expression_len, NULL); |
1483 | free(varlen_data); | |
1484 | ||
1485 | mem_error: | |
1486 | if (filter_expression && ctx) { | |
1487 | filter_bytecode_free(ctx); | |
1488 | filter_ir_free(ctx); | |
1489 | filter_parser_ctx_free(ctx); | |
1490 | } | |
1491 | filter_error: | |
1492 | if (free_filter_expression) { | |
1493 | /* | |
9ae110e2 JG |
1494 | * The filter expression has been replaced and must be freed as |
1495 | * it is not the original filter expression received as a | |
1496 | * parameter. | |
6e911cad MD |
1497 | */ |
1498 | free(filter_expression); | |
1499 | } | |
1500 | error: | |
1501 | /* | |
9ae110e2 JG |
1502 | * Return directly to the caller and don't ask the sessiond since |
1503 | * something went wrong in the parsing of data above. | |
6e911cad MD |
1504 | */ |
1505 | return ret; | |
1506 | ||
1507 | ask_sessiond: | |
1508 | ret = lttng_ctl_ask_sessiond(&lsm, NULL); | |
1509 | return ret; | |
1510 | } | |
1511 | ||
1512 | /* | |
9ae110e2 JG |
1513 | * Disable event(s) of a channel and domain. |
1514 | * If no event name is specified, all events are disabled. | |
1515 | * If no channel name is specified, the default 'channel0' is used. | |
1516 | * Returns size of returned session payload data or a negative error code. | |
6e911cad MD |
1517 | */ |
1518 | int lttng_disable_event(struct lttng_handle *handle, const char *name, | |
1519 | const char *channel_name) | |
1520 | { | |
e1b624d0 | 1521 | int ret; |
6e911cad MD |
1522 | struct lttng_event ev; |
1523 | ||
1524 | memset(&ev, 0, sizeof(ev)); | |
9b7431cf | 1525 | ev.loglevel = -1; |
6e911cad | 1526 | ev.type = LTTNG_EVENT_ALL; |
e1b624d0 JG |
1527 | ret = lttng_strncpy(ev.name, name ?: "", sizeof(ev.name)); |
1528 | if (ret) { | |
1529 | ret = -LTTNG_ERR_INVALID; | |
1530 | goto end; | |
1531 | } | |
1532 | ||
1533 | ret = lttng_disable_event_ext(handle, &ev, channel_name, NULL); | |
1534 | end: | |
1535 | return ret; | |
1df4dedd DG |
1536 | } |
1537 | ||
cf0bcb51 JG |
1538 | struct lttng_channel *lttng_channel_create(struct lttng_domain *domain) |
1539 | { | |
1540 | struct lttng_channel *channel = NULL; | |
cf0bcb51 JG |
1541 | |
1542 | if (!domain) { | |
714363d3 | 1543 | goto end; |
cf0bcb51 JG |
1544 | } |
1545 | ||
1546 | /* Validate domain. */ | |
1547 | switch (domain->type) { | |
1548 | case LTTNG_DOMAIN_UST: | |
1549 | switch (domain->buf_type) { | |
1550 | case LTTNG_BUFFER_PER_UID: | |
1551 | case LTTNG_BUFFER_PER_PID: | |
1552 | break; | |
1553 | default: | |
714363d3 | 1554 | goto end; |
cf0bcb51 JG |
1555 | } |
1556 | break; | |
1557 | case LTTNG_DOMAIN_KERNEL: | |
1558 | if (domain->buf_type != LTTNG_BUFFER_GLOBAL) { | |
714363d3 | 1559 | goto end; |
cf0bcb51 JG |
1560 | } |
1561 | break; | |
1562 | default: | |
714363d3 | 1563 | goto end; |
cf0bcb51 JG |
1564 | } |
1565 | ||
714363d3 | 1566 | channel = lttng_channel_create_internal(); |
cf0bcb51 | 1567 | if (!channel) { |
714363d3 | 1568 | goto end; |
cf0bcb51 JG |
1569 | } |
1570 | ||
cf0bcb51 | 1571 | lttng_channel_set_default_attr(domain, &channel->attr); |
714363d3 | 1572 | end: |
cf0bcb51 | 1573 | return channel; |
cf0bcb51 JG |
1574 | } |
1575 | ||
1576 | void lttng_channel_destroy(struct lttng_channel *channel) | |
1577 | { | |
1578 | if (!channel) { | |
1579 | return; | |
1580 | } | |
1581 | ||
1582 | if (channel->attr.extended.ptr) { | |
1583 | free(channel->attr.extended.ptr); | |
1584 | } | |
1585 | free(channel); | |
1586 | } | |
1587 | ||
1df4dedd | 1588 | /* |
9ae110e2 JG |
1589 | * Enable channel per domain |
1590 | * Returns size of returned session payload data or a negative error code. | |
a5c5a2bd | 1591 | */ |
cd80958d | 1592 | int lttng_enable_channel(struct lttng_handle *handle, |
cf0bcb51 | 1593 | struct lttng_channel *in_chan) |
a5c5a2bd | 1594 | { |
d72eb77f | 1595 | enum lttng_error_code ret_code; |
e1b624d0 | 1596 | int ret; |
714363d3 | 1597 | struct lttng_dynamic_buffer buffer; |
cd80958d | 1598 | struct lttcomm_session_msg lsm; |
d72eb77f | 1599 | uint64_t total_buffer_size_needed_per_cpu = 0; |
714363d3 JR |
1600 | struct lttng_channel *channel = NULL; |
1601 | ||
1602 | lttng_dynamic_buffer_init(&buffer); | |
cd80958d | 1603 | |
9ae110e2 | 1604 | /* NULL arguments are forbidden. No default values. */ |
cf0bcb51 | 1605 | if (handle == NULL || in_chan == NULL) { |
714363d3 JR |
1606 | ret = -LTTNG_ERR_INVALID; |
1607 | goto end; | |
cf0bcb51 | 1608 | } |
cd80958d | 1609 | |
09b72f7a FD |
1610 | /* |
1611 | * Verify that the amount of memory required to create the requested | |
1612 | * buffer is available on the system at the moment. | |
1613 | */ | |
714363d3 JR |
1614 | if (in_chan->attr.num_subbuf > |
1615 | UINT64_MAX / in_chan->attr.subbuf_size) { | |
d72eb77f JR |
1616 | /* Overflow */ |
1617 | ret = -LTTNG_ERR_OVERFLOW; | |
1618 | goto end; | |
1619 | } | |
1620 | ||
714363d3 JR |
1621 | total_buffer_size_needed_per_cpu = |
1622 | in_chan->attr.num_subbuf * in_chan->attr.subbuf_size; | |
d72eb77f JR |
1623 | ret_code = check_enough_available_memory( |
1624 | total_buffer_size_needed_per_cpu); | |
1625 | if (ret_code != LTTNG_OK) { | |
1626 | ret = -ret_code; | |
1627 | goto end; | |
09b72f7a FD |
1628 | } |
1629 | ||
714363d3 JR |
1630 | /* Copy the channel for easier manipulation. */ |
1631 | channel = lttng_channel_copy(in_chan); | |
1632 | if (!channel) { | |
1633 | ret = -LTTNG_ERR_NOMEM; | |
1634 | goto end; | |
1635 | } | |
1636 | ||
1637 | /* Populate the channel extended attribute if necessary. */ | |
1638 | if (!channel->attr.extended.ptr) { | |
1639 | struct lttng_channel_extended *extended = | |
1640 | (struct lttng_channel_extended *) zmalloc( | |
1641 | sizeof(*extended)); | |
1642 | ||
1643 | if (!extended) { | |
1644 | ret = -LTTNG_ERR_NOMEM; | |
1645 | goto end; | |
1646 | } | |
1647 | lttng_channel_set_default_extended_attr( | |
1648 | &handle->domain, extended); | |
1649 | channel->attr.extended.ptr = extended; | |
1650 | } | |
1651 | ||
1652 | /* Prepare the payload */ | |
1653 | memset(&lsm, 0, sizeof(lsm)); | |
1654 | ||
cf0bcb51 | 1655 | lsm.cmd_type = LTTNG_ENABLE_CHANNEL; |
60160d2a | 1656 | COPY_DOMAIN_PACKED(lsm.domain, handle->domain); |
7d29a247 | 1657 | |
e1b624d0 JG |
1658 | ret = lttng_strncpy(lsm.session.name, handle->session_name, |
1659 | sizeof(lsm.session.name)); | |
1660 | if (ret) { | |
1661 | ret = -LTTNG_ERR_INVALID; | |
1662 | goto end; | |
1663 | } | |
cd80958d | 1664 | |
714363d3 JR |
1665 | ret = lttng_channel_serialize(channel, &buffer); |
1666 | if (ret) { | |
1667 | ret = -LTTNG_ERR_FATAL; | |
1668 | goto end; | |
1669 | } | |
1670 | ||
1671 | lsm.u.channel.length = buffer.size; | |
1672 | ||
1673 | ret = lttng_ctl_ask_sessiond_varlen_no_cmd_header( | |
1674 | &lsm, buffer.data, buffer.size, NULL); | |
e1b624d0 | 1675 | end: |
714363d3 JR |
1676 | lttng_channel_destroy(channel); |
1677 | lttng_dynamic_buffer_reset(&buffer); | |
e1b624d0 | 1678 | return ret; |
8c0faa1d | 1679 | } |
1df4dedd | 1680 | |
2ef84c95 | 1681 | /* |
9ae110e2 JG |
1682 | * All tracing will be stopped for registered events of the channel. |
1683 | * Returns size of returned session payload data or a negative error code. | |
2ef84c95 | 1684 | */ |
cd80958d | 1685 | int lttng_disable_channel(struct lttng_handle *handle, const char *name) |
2ef84c95 | 1686 | { |
e1b624d0 | 1687 | int ret; |
cd80958d DG |
1688 | struct lttcomm_session_msg lsm; |
1689 | ||
9ae110e2 | 1690 | /* Safety check. Both are mandatory. */ |
9d697d3d | 1691 | if (handle == NULL || name == NULL) { |
2f70b271 | 1692 | return -LTTNG_ERR_INVALID; |
cd80958d DG |
1693 | } |
1694 | ||
441c16a7 MD |
1695 | memset(&lsm, 0, sizeof(lsm)); |
1696 | ||
cd80958d | 1697 | lsm.cmd_type = LTTNG_DISABLE_CHANNEL; |
1df4dedd | 1698 | |
e1b624d0 | 1699 | ret = lttng_strncpy(lsm.u.disable.channel_name, name, |
9d697d3d | 1700 | sizeof(lsm.u.disable.channel_name)); |
e1b624d0 JG |
1701 | if (ret) { |
1702 | ret = -LTTNG_ERR_INVALID; | |
1703 | goto end; | |
1704 | } | |
9d697d3d | 1705 | |
60160d2a | 1706 | COPY_DOMAIN_PACKED(lsm.domain, handle->domain); |
cd80958d | 1707 | |
e1b624d0 JG |
1708 | ret = lttng_strncpy(lsm.session.name, handle->session_name, |
1709 | sizeof(lsm.session.name)); | |
1710 | if (ret) { | |
1711 | ret = -LTTNG_ERR_INVALID; | |
1712 | goto end; | |
1713 | } | |
cd80958d | 1714 | |
e1b624d0 JG |
1715 | ret = lttng_ctl_ask_sessiond(&lsm, NULL); |
1716 | end: | |
1717 | return ret; | |
ca95a216 DG |
1718 | } |
1719 | ||
fac6795d | 1720 | /* |
9ae110e2 JG |
1721 | * Lists all available tracepoints of domain. |
1722 | * Sets the contents of the events array. | |
1723 | * Returns the number of lttng_event entries in events; | |
1724 | * on error, returns a negative value. | |
fac6795d | 1725 | */ |
cd80958d | 1726 | int lttng_list_tracepoints(struct lttng_handle *handle, |
2a71efd5 | 1727 | struct lttng_event **events) |
fac6795d | 1728 | { |
052da939 | 1729 | int ret; |
cd80958d DG |
1730 | struct lttcomm_session_msg lsm; |
1731 | ||
9d697d3d | 1732 | if (handle == NULL) { |
2f70b271 | 1733 | return -LTTNG_ERR_INVALID; |
cd80958d | 1734 | } |
fac6795d | 1735 | |
53efb85a | 1736 | memset(&lsm, 0, sizeof(lsm)); |
cd80958d | 1737 | lsm.cmd_type = LTTNG_LIST_TRACEPOINTS; |
60160d2a | 1738 | COPY_DOMAIN_PACKED(lsm.domain, handle->domain); |
2a71efd5 | 1739 | |
cac3069d | 1740 | ret = lttng_ctl_ask_sessiond(&lsm, (void **) events); |
052da939 DG |
1741 | if (ret < 0) { |
1742 | return ret; | |
eb354453 | 1743 | } |
fac6795d | 1744 | |
9f19cc17 | 1745 | return ret / sizeof(struct lttng_event); |
fac6795d DG |
1746 | } |
1747 | ||
f37d259d | 1748 | /* |
9ae110e2 JG |
1749 | * Lists all available tracepoint fields of domain. |
1750 | * Sets the contents of the event field array. | |
1751 | * Returns the number of lttng_event_field entries in events; | |
1752 | * on error, returns a negative value. | |
f37d259d MD |
1753 | */ |
1754 | int lttng_list_tracepoint_fields(struct lttng_handle *handle, | |
1755 | struct lttng_event_field **fields) | |
1756 | { | |
1757 | int ret; | |
1758 | struct lttcomm_session_msg lsm; | |
1759 | ||
1760 | if (handle == NULL) { | |
2f70b271 | 1761 | return -LTTNG_ERR_INVALID; |
f37d259d MD |
1762 | } |
1763 | ||
53efb85a | 1764 | memset(&lsm, 0, sizeof(lsm)); |
f37d259d | 1765 | lsm.cmd_type = LTTNG_LIST_TRACEPOINT_FIELDS; |
60160d2a | 1766 | COPY_DOMAIN_PACKED(lsm.domain, handle->domain); |
f37d259d | 1767 | |
cac3069d | 1768 | ret = lttng_ctl_ask_sessiond(&lsm, (void **) fields); |
f37d259d MD |
1769 | if (ret < 0) { |
1770 | return ret; | |
1771 | } | |
1772 | ||
1773 | return ret / sizeof(struct lttng_event_field); | |
1774 | } | |
1775 | ||
834978fd | 1776 | /* |
9ae110e2 JG |
1777 | * Lists all available kernel system calls. Allocates and sets the contents of |
1778 | * the events array. | |
834978fd | 1779 | * |
9ae110e2 JG |
1780 | * Returns the number of lttng_event entries in events; on error, returns a |
1781 | * negative value. | |
834978fd DG |
1782 | */ |
1783 | int lttng_list_syscalls(struct lttng_event **events) | |
1784 | { | |
1785 | int ret; | |
1786 | struct lttcomm_session_msg lsm; | |
1787 | ||
1788 | if (!events) { | |
1789 | return -LTTNG_ERR_INVALID; | |
1790 | } | |
1791 | ||
1792 | memset(&lsm, 0, sizeof(lsm)); | |
1793 | lsm.cmd_type = LTTNG_LIST_SYSCALLS; | |
1794 | /* Force kernel domain for system calls. */ | |
1795 | lsm.domain.type = LTTNG_DOMAIN_KERNEL; | |
1796 | ||
1797 | ret = lttng_ctl_ask_sessiond(&lsm, (void **) events); | |
1798 | if (ret < 0) { | |
1799 | return ret; | |
1800 | } | |
1801 | ||
1802 | return ret / sizeof(struct lttng_event); | |
1803 | } | |
1804 | ||
1657e9bb | 1805 | /* |
9ae110e2 JG |
1806 | * Returns a human readable string describing |
1807 | * the error code (a negative value). | |
1657e9bb | 1808 | */ |
9a745bc7 | 1809 | const char *lttng_strerror(int code) |
1657e9bb | 1810 | { |
f73fabfd | 1811 | return error_get_str(code); |
1657e9bb DG |
1812 | } |
1813 | ||
b178f53e JG |
1814 | enum lttng_error_code lttng_create_session_ext( |
1815 | struct lttng_session_descriptor *session_descriptor) | |
1816 | { | |
1817 | enum lttng_error_code ret_code; | |
1818 | struct lttcomm_session_msg lsm = { | |
1819 | .cmd_type = LTTNG_CREATE_SESSION_EXT, | |
1820 | }; | |
1821 | void *reply = NULL; | |
1822 | struct lttng_buffer_view reply_view; | |
1823 | int reply_ret; | |
1824 | bool sessiond_must_generate_ouput; | |
1825 | struct lttng_dynamic_buffer payload; | |
1826 | int ret; | |
1827 | size_t descriptor_size; | |
1828 | struct lttng_session_descriptor *descriptor_reply = NULL; | |
1829 | ||
1830 | lttng_dynamic_buffer_init(&payload); | |
1831 | if (!session_descriptor) { | |
1832 | ret_code = LTTNG_ERR_INVALID; | |
1833 | goto end; | |
1834 | } | |
1835 | ||
1836 | sessiond_must_generate_ouput = | |
1837 | !lttng_session_descriptor_is_output_destination_initialized( | |
1838 | session_descriptor); | |
1839 | if (sessiond_must_generate_ouput) { | |
1840 | const char *home_dir = utils_get_home_dir(); | |
1841 | size_t home_dir_len = home_dir ? strlen(home_dir) + 1 : 0; | |
1842 | ||
1843 | if (!home_dir || home_dir_len > LTTNG_PATH_MAX) { | |
1844 | ret_code = LTTNG_ERR_FATAL; | |
1845 | goto end; | |
1846 | } | |
1847 | ||
1848 | lsm.u.create_session.home_dir_size = (uint16_t) home_dir_len; | |
1849 | ret = lttng_dynamic_buffer_append(&payload, home_dir, | |
1850 | home_dir_len); | |
1851 | if (ret) { | |
1852 | ret_code = LTTNG_ERR_NOMEM; | |
1853 | goto end; | |
1854 | } | |
1855 | } | |
1856 | ||
1857 | descriptor_size = payload.size; | |
1858 | ret = lttng_session_descriptor_serialize(session_descriptor, | |
1859 | &payload); | |
1860 | if (ret) { | |
1861 | ret_code = LTTNG_ERR_INVALID; | |
1862 | goto end; | |
1863 | } | |
1864 | descriptor_size = payload.size - descriptor_size; | |
1865 | lsm.u.create_session.session_descriptor_size = descriptor_size; | |
1866 | ||
1867 | /* Command returns a session descriptor on success. */ | |
1868 | reply_ret = lttng_ctl_ask_sessiond_varlen_no_cmd_header(&lsm, payload.data, | |
1869 | payload.size, &reply); | |
1870 | if (reply_ret < 0) { | |
1871 | ret_code = -reply_ret; | |
1872 | goto end; | |
1873 | } else if (reply_ret == 0) { | |
1874 | /* Socket unexpectedly closed by the session daemon. */ | |
1875 | ret_code = LTTNG_ERR_FATAL; | |
1876 | goto end; | |
1877 | } | |
1878 | ||
1879 | reply_view = lttng_buffer_view_init(reply, 0, reply_ret); | |
1880 | ret = lttng_session_descriptor_create_from_buffer(&reply_view, | |
1881 | &descriptor_reply); | |
1882 | if (ret < 0) { | |
1883 | ret_code = LTTNG_ERR_FATAL; | |
1884 | goto end; | |
1885 | } | |
1886 | ret_code = LTTNG_OK; | |
1887 | lttng_session_descriptor_assign(session_descriptor, descriptor_reply); | |
1888 | end: | |
1889 | free(reply); | |
1890 | lttng_dynamic_buffer_reset(&payload); | |
1891 | lttng_session_descriptor_destroy(descriptor_reply); | |
1892 | return ret_code; | |
1893 | } | |
1894 | ||
aaf97519 | 1895 | /* |
b178f53e | 1896 | * Create a new session using name and url for destination. |
a4b92340 | 1897 | * |
780d4bb8 | 1898 | * Return 0 on success else a negative LTTng error code. |
00e2e675 | 1899 | */ |
a4b92340 | 1900 | int lttng_create_session(const char *name, const char *url) |
00e2e675 | 1901 | { |
3dd05a85 | 1902 | int ret; |
a4b92340 | 1903 | ssize_t size; |
a4b92340 | 1904 | struct lttng_uri *uris = NULL; |
b178f53e JG |
1905 | struct lttng_session_descriptor *descriptor = NULL; |
1906 | enum lttng_error_code ret_code; | |
00e2e675 | 1907 | |
b178f53e JG |
1908 | if (!name) { |
1909 | ret = -LTTNG_ERR_INVALID; | |
1910 | goto end; | |
00e2e675 DG |
1911 | } |
1912 | ||
bc894455 | 1913 | size = uri_parse_str_urls(url, NULL, &uris); |
a4b92340 | 1914 | if (size < 0) { |
b178f53e JG |
1915 | ret = -LTTNG_ERR_INVALID; |
1916 | goto end; | |
1917 | } | |
1918 | switch (size) { | |
1919 | case 0: | |
1920 | descriptor = lttng_session_descriptor_create(name); | |
1921 | break; | |
1922 | case 1: | |
1923 | if (uris[0].dtype != LTTNG_DST_PATH) { | |
1924 | ret = -LTTNG_ERR_INVALID; | |
1925 | goto end; | |
1926 | } | |
1927 | descriptor = lttng_session_descriptor_local_create(name, | |
1928 | uris[0].dst.path); | |
1929 | break; | |
1930 | case 2: | |
1931 | descriptor = lttng_session_descriptor_network_create(name, url, | |
1932 | NULL); | |
1933 | break; | |
1934 | default: | |
1935 | ret = -LTTNG_ERR_INVALID; | |
1936 | goto end; | |
1937 | } | |
1938 | if (!descriptor) { | |
1939 | ret = -LTTNG_ERR_INVALID; | |
1940 | goto end; | |
00e2e675 | 1941 | } |
b178f53e JG |
1942 | ret_code = lttng_create_session_ext(descriptor); |
1943 | ret = ret_code == LTTNG_OK ? 0 : -ret_code; | |
1944 | end: | |
1945 | lttng_session_descriptor_destroy(descriptor); | |
1946 | free(uris); | |
1947 | return ret; | |
1948 | } | |
00e2e675 | 1949 | |
b178f53e JG |
1950 | /* |
1951 | * Create a session exclusively used for snapshot. | |
1952 | * | |
780d4bb8 | 1953 | * Return 0 on success else a negative LTTng error code. |
b178f53e JG |
1954 | */ |
1955 | int lttng_create_session_snapshot(const char *name, const char *snapshot_url) | |
1956 | { | |
1957 | int ret; | |
1958 | enum lttng_error_code ret_code; | |
1959 | ssize_t size; | |
1960 | struct lttng_uri *uris = NULL; | |
1961 | struct lttng_session_descriptor *descriptor = NULL; | |
a4b92340 | 1962 | |
b178f53e JG |
1963 | if (!name) { |
1964 | ret = -LTTNG_ERR_INVALID; | |
1965 | goto end; | |
1966 | } | |
1967 | ||
1968 | size = uri_parse_str_urls(snapshot_url, NULL, &uris); | |
1969 | if (size < 0) { | |
1970 | ret = -LTTNG_ERR_INVALID; | |
1971 | goto end; | |
1972 | } | |
1973 | /* | |
1974 | * If the user does not specify a custom subdir, use the session name. | |
1975 | */ | |
1976 | if (size > 0 && uris[0].dtype != LTTNG_DST_PATH && | |
1977 | strlen(uris[0].subdir) == 0) { | |
1978 | ret = snprintf(uris[0].subdir, sizeof(uris[0].subdir), "%s", | |
1979 | name); | |
1980 | if (ret < 0) { | |
1981 | PERROR("Failed to set session name as network destination sub-directory"); | |
1982 | ret = -LTTNG_ERR_FATAL; | |
1983 | goto end; | |
1984 | } else if (ret >= sizeof(uris[0].subdir)) { | |
1985 | /* Truncated output. */ | |
1986 | ret = -LTTNG_ERR_INVALID; | |
1987 | goto end; | |
1988 | } | |
1989 | } | |
3dd05a85 | 1990 | |
b178f53e JG |
1991 | switch (size) { |
1992 | case 0: | |
1993 | descriptor = lttng_session_descriptor_snapshot_create(name); | |
1994 | break; | |
1995 | case 1: | |
1996 | if (uris[0].dtype != LTTNG_DST_PATH) { | |
1997 | ret = -LTTNG_ERR_INVALID; | |
1998 | goto end; | |
1999 | } | |
2000 | descriptor = lttng_session_descriptor_snapshot_local_create( | |
2001 | name, | |
2002 | uris[0].dst.path); | |
2003 | break; | |
2004 | case 2: | |
2005 | descriptor = lttng_session_descriptor_snapshot_network_create( | |
2006 | name, | |
2007 | snapshot_url, | |
2008 | NULL); | |
2009 | break; | |
2010 | default: | |
2011 | ret = -LTTNG_ERR_INVALID; | |
2012 | goto end; | |
2013 | } | |
2014 | if (!descriptor) { | |
2015 | ret = -LTTNG_ERR_INVALID; | |
2016 | goto end; | |
2017 | } | |
2018 | ret_code = lttng_create_session_ext(descriptor); | |
2019 | ret = ret_code == LTTNG_OK ? 0 : -ret_code; | |
2020 | end: | |
2021 | lttng_session_descriptor_destroy(descriptor); | |
3dd05a85 DG |
2022 | free(uris); |
2023 | return ret; | |
00e2e675 DG |
2024 | } |
2025 | ||
b178f53e JG |
2026 | /* |
2027 | * Create a session exclusively used for live. | |
2028 | * | |
780d4bb8 | 2029 | * Return 0 on success else a negative LTTng error code. |
b178f53e JG |
2030 | */ |
2031 | int lttng_create_session_live(const char *name, const char *url, | |
2032 | unsigned int timer_interval) | |
2033 | { | |
2034 | int ret; | |
2035 | enum lttng_error_code ret_code; | |
2036 | struct lttng_session_descriptor *descriptor = NULL; | |
2037 | ||
2038 | if (!name) { | |
2039 | ret = -LTTNG_ERR_INVALID; | |
2040 | goto end; | |
2041 | } | |
2042 | ||
2043 | if (url) { | |
2044 | descriptor = lttng_session_descriptor_live_network_create( | |
2045 | name, url, NULL, timer_interval); | |
2046 | } else { | |
2047 | descriptor = lttng_session_descriptor_live_create( | |
2048 | name, timer_interval); | |
2049 | } | |
2050 | if (!descriptor) { | |
2051 | ret = -LTTNG_ERR_INVALID; | |
2052 | goto end; | |
2053 | } | |
2054 | ret_code = lttng_create_session_ext(descriptor); | |
2055 | ret = ret_code == LTTNG_OK ? 0 : -ret_code; | |
2056 | end: | |
2057 | lttng_session_descriptor_destroy(descriptor); | |
2058 | return ret; | |
2059 | } | |
2060 | ||
e20ee7c2 JD |
2061 | /* |
2062 | * Stop the session and wait for the data before destroying it | |
780d4bb8 MD |
2063 | * |
2064 | * Return 0 on success else a negative LTTng error code. | |
e20ee7c2 JD |
2065 | */ |
2066 | int lttng_destroy_session(const char *session_name) | |
2067 | { | |
2068 | int ret; | |
3e3665b8 JG |
2069 | enum lttng_error_code ret_code; |
2070 | enum lttng_destruction_handle_status status; | |
2071 | struct lttng_destruction_handle *handle = NULL; | |
e20ee7c2 JD |
2072 | |
2073 | /* | |
3e3665b8 JG |
2074 | * Stop the tracing and wait for the data to be |
2075 | * consumed. | |
e20ee7c2 JD |
2076 | */ |
2077 | ret = _lttng_stop_tracing(session_name, 1); | |
2078 | if (ret && ret != -LTTNG_ERR_TRACE_ALREADY_STOPPED) { | |
2079 | goto end; | |
2080 | } | |
2081 | ||
3e3665b8 JG |
2082 | ret_code = lttng_destroy_session_ext(session_name, &handle); |
2083 | if (ret_code != LTTNG_OK) { | |
2084 | ret = (int) -ret_code; | |
2085 | goto end; | |
2086 | } | |
2087 | assert(handle); | |
2088 | ||
2089 | /* Block until the completion of the destruction of the session. */ | |
2090 | status = lttng_destruction_handle_wait_for_completion(handle, -1); | |
2091 | if (status != LTTNG_DESTRUCTION_HANDLE_STATUS_COMPLETED) { | |
2092 | ret = -LTTNG_ERR_UNK; | |
2093 | goto end; | |
2094 | } | |
2095 | ||
2096 | status = lttng_destruction_handle_get_result(handle, &ret_code); | |
2097 | if (status != LTTNG_DESTRUCTION_HANDLE_STATUS_OK) { | |
2098 | ret = -LTTNG_ERR_UNK; | |
2099 | goto end; | |
2100 | } | |
780d4bb8 | 2101 | ret = ret_code == LTTNG_OK ? 0 : -ret_code; |
e20ee7c2 | 2102 | end: |
3e3665b8 | 2103 | lttng_destruction_handle_destroy(handle); |
e20ee7c2 JD |
2104 | return ret; |
2105 | } | |
2106 | ||
2107 | /* | |
2108 | * Destroy the session without waiting for the data. | |
2109 | */ | |
2110 | int lttng_destroy_session_no_wait(const char *session_name) | |
2111 | { | |
3e3665b8 | 2112 | enum lttng_error_code ret_code; |
e20ee7c2 | 2113 | |
3e3665b8 | 2114 | ret_code = lttng_destroy_session_ext(session_name, NULL); |
3204017e | 2115 | return ret_code == LTTNG_OK ? 0 : -ret_code; |
e20ee7c2 JD |
2116 | } |
2117 | ||
57167058 | 2118 | /* |
9ae110e2 JG |
2119 | * Ask the session daemon for all available sessions. |
2120 | * Sets the contents of the sessions array. | |
2121 | * Returns the number of lttng_session entries in sessions; | |
2122 | * on error, returns a negative value. | |
57167058 | 2123 | */ |
b178f53e | 2124 | int lttng_list_sessions(struct lttng_session **out_sessions) |
57167058 | 2125 | { |
ca95a216 | 2126 | int ret; |
cd80958d | 2127 | struct lttcomm_session_msg lsm; |
b178f53e JG |
2128 | const size_t session_size = sizeof(struct lttng_session) + |
2129 | sizeof(struct lttng_session_extended); | |
2130 | size_t session_count, i; | |
2131 | struct lttng_session_extended *sessions_extended_begin; | |
2132 | struct lttng_session *sessions = NULL; | |
57167058 | 2133 | |
53efb85a | 2134 | memset(&lsm, 0, sizeof(lsm)); |
cd80958d | 2135 | lsm.cmd_type = LTTNG_LIST_SESSIONS; |
e8a09c09 MD |
2136 | /* |
2137 | * Initialize out_sessions to NULL so it is initialized when | |
2138 | * lttng_list_sessions returns 0, thus allowing *out_sessions to | |
2139 | * be subsequently freed. | |
2140 | */ | |
2141 | *out_sessions = NULL; | |
b178f53e JG |
2142 | ret = lttng_ctl_ask_sessiond(&lsm, (void**) &sessions); |
2143 | if (ret <= 0) { | |
b178f53e JG |
2144 | goto end; |
2145 | } | |
2146 | if (!sessions) { | |
2147 | ret = -LTTNG_ERR_FATAL; | |
2148 | goto end; | |
2149 | } | |
2150 | ||
2151 | if (ret % session_size) { | |
2152 | ret = -LTTNG_ERR_UNK; | |
2153 | free(sessions); | |
b178f53e | 2154 | goto end; |
57167058 | 2155 | } |
b178f53e JG |
2156 | session_count = (size_t) ret / session_size; |
2157 | sessions_extended_begin = (struct lttng_session_extended *) | |
2158 | (&sessions[session_count]); | |
57167058 | 2159 | |
b178f53e JG |
2160 | /* Set extended session info pointers. */ |
2161 | for (i = 0; i < session_count; i++) { | |
2162 | struct lttng_session *session = &sessions[i]; | |
2163 | struct lttng_session_extended *extended = | |
2164 | &(sessions_extended_begin[i]); | |
2165 | ||
2166 | session->extended.ptr = extended; | |
2167 | } | |
2168 | ||
2169 | ret = (int) session_count; | |
2170 | *out_sessions = sessions; | |
2171 | end: | |
2172 | return ret; | |
2173 | } | |
2174 | ||
2175 | enum lttng_error_code lttng_session_get_creation_time( | |
2176 | const struct lttng_session *session, uint64_t *creation_time) | |
2177 | { | |
2178 | enum lttng_error_code ret = LTTNG_OK; | |
2179 | struct lttng_session_extended *extended; | |
2180 | ||
2181 | if (!session || !creation_time || !session->extended.ptr) { | |
2182 | ret = LTTNG_ERR_INVALID; | |
2183 | goto end; | |
2184 | } | |
2185 | ||
2186 | extended = session->extended.ptr; | |
2187 | if (!extended->creation_time.is_set) { | |
2188 | /* Not created on the session daemon yet. */ | |
2189 | ret = LTTNG_ERR_SESSION_NOT_EXIST; | |
2190 | goto end; | |
2191 | } | |
2192 | *creation_time = extended->creation_time.value; | |
2193 | end: | |
2194 | return ret; | |
57167058 DG |
2195 | } |
2196 | ||
d7ba1388 MD |
2197 | int lttng_set_session_shm_path(const char *session_name, |
2198 | const char *shm_path) | |
2199 | { | |
e1b624d0 | 2200 | int ret; |
d7ba1388 MD |
2201 | struct lttcomm_session_msg lsm; |
2202 | ||
2203 | if (session_name == NULL) { | |
2204 | return -LTTNG_ERR_INVALID; | |
2205 | } | |
2206 | ||
2207 | memset(&lsm, 0, sizeof(lsm)); | |
2208 | lsm.cmd_type = LTTNG_SET_SESSION_SHM_PATH; | |
2209 | ||
e1b624d0 | 2210 | ret = lttng_strncpy(lsm.session.name, session_name, |
d7ba1388 | 2211 | sizeof(lsm.session.name)); |
e1b624d0 JG |
2212 | if (ret) { |
2213 | ret = -LTTNG_ERR_INVALID; | |
2214 | goto end; | |
2215 | } | |
2216 | ||
2217 | ret = lttng_strncpy(lsm.u.set_shm_path.shm_path, shm_path ?: "", | |
d7ba1388 | 2218 | sizeof(lsm.u.set_shm_path.shm_path)); |
e1b624d0 JG |
2219 | if (ret) { |
2220 | ret = -LTTNG_ERR_INVALID; | |
2221 | goto end; | |
2222 | } | |
d7ba1388 | 2223 | |
e1b624d0 JG |
2224 | ret = lttng_ctl_ask_sessiond(&lsm, NULL); |
2225 | end: | |
2226 | return ret; | |
d7ba1388 MD |
2227 | } |
2228 | ||
9f19cc17 | 2229 | /* |
9ae110e2 JG |
2230 | * Ask the session daemon for all available domains of a session. |
2231 | * Sets the contents of the domains array. | |
2232 | * Returns the number of lttng_domain entries in domains; | |
2233 | * on error, returns a negative value. | |
9f19cc17 | 2234 | */ |
330be774 | 2235 | int lttng_list_domains(const char *session_name, |
cd80958d | 2236 | struct lttng_domain **domains) |
9f19cc17 DG |
2237 | { |
2238 | int ret; | |
cd80958d DG |
2239 | struct lttcomm_session_msg lsm; |
2240 | ||
330be774 | 2241 | if (session_name == NULL) { |
e1b624d0 JG |
2242 | ret = -LTTNG_ERR_INVALID; |
2243 | goto error; | |
cd80958d | 2244 | } |
9f19cc17 | 2245 | |
53efb85a | 2246 | memset(&lsm, 0, sizeof(lsm)); |
cd80958d DG |
2247 | lsm.cmd_type = LTTNG_LIST_DOMAINS; |
2248 | ||
e1b624d0 | 2249 | ret = lttng_strncpy(lsm.session.name, session_name, |
cac3069d | 2250 | sizeof(lsm.session.name)); |
e1b624d0 JG |
2251 | if (ret) { |
2252 | ret = -LTTNG_ERR_INVALID; | |
2253 | goto error; | |
2254 | } | |
cd80958d | 2255 | |
cac3069d | 2256 | ret = lttng_ctl_ask_sessiond(&lsm, (void**) domains); |
9f19cc17 | 2257 | if (ret < 0) { |
e1b624d0 | 2258 | goto error; |
9f19cc17 DG |
2259 | } |
2260 | ||
2261 | return ret / sizeof(struct lttng_domain); | |
e1b624d0 JG |
2262 | error: |
2263 | return ret; | |
9f19cc17 DG |
2264 | } |
2265 | ||
2266 | /* | |
9ae110e2 JG |
2267 | * Ask the session daemon for all available channels of a session. |
2268 | * Sets the contents of the channels array. | |
2269 | * Returns the number of lttng_channel entries in channels; | |
2270 | * on error, returns a negative value. | |
9f19cc17 | 2271 | */ |
cd80958d DG |
2272 | int lttng_list_channels(struct lttng_handle *handle, |
2273 | struct lttng_channel **channels) | |
9f19cc17 | 2274 | { |
714363d3 | 2275 | int ret, total_payload_received; |
cd80958d | 2276 | struct lttcomm_session_msg lsm; |
714363d3 JR |
2277 | char *reception_buffer = NULL; |
2278 | size_t cmd_header_len = 0; | |
2279 | struct lttcomm_list_command_header *cmd_header = NULL; | |
2280 | struct lttng_dynamic_buffer tmp_buffer; | |
2281 | ||
2282 | lttng_dynamic_buffer_init(&tmp_buffer); | |
cd80958d | 2283 | |
9d697d3d | 2284 | if (handle == NULL) { |
53e367f9 JG |
2285 | ret = -LTTNG_ERR_INVALID; |
2286 | goto end; | |
cd80958d DG |
2287 | } |
2288 | ||
53efb85a | 2289 | memset(&lsm, 0, sizeof(lsm)); |
cd80958d | 2290 | lsm.cmd_type = LTTNG_LIST_CHANNELS; |
e1b624d0 | 2291 | ret = lttng_strncpy(lsm.session.name, handle->session_name, |
cd80958d | 2292 | sizeof(lsm.session.name)); |
e1b624d0 JG |
2293 | if (ret) { |
2294 | ret = -LTTNG_ERR_INVALID; | |
2295 | goto end; | |
2296 | } | |
9f19cc17 | 2297 | |
60160d2a | 2298 | COPY_DOMAIN_PACKED(lsm.domain, handle->domain); |
9f19cc17 | 2299 | |
714363d3 JR |
2300 | ret = lttng_ctl_ask_sessiond_fds_varlen(&lsm, NULL, 0, NULL, 0, |
2301 | (void **) &reception_buffer, (void **) &cmd_header, | |
2302 | &cmd_header_len); | |
9f19cc17 | 2303 | if (ret < 0) { |
53e367f9 JG |
2304 | goto end; |
2305 | } | |
2306 | ||
714363d3 JR |
2307 | total_payload_received = ret; |
2308 | ||
2309 | if (cmd_header_len != sizeof(*cmd_header)) { | |
2310 | ret = -LTTNG_ERR_FATAL; | |
53e367f9 | 2311 | goto end; |
9f19cc17 DG |
2312 | } |
2313 | ||
714363d3 JR |
2314 | if (!cmd_header) { |
2315 | ret = LTTNG_ERR_UNK; | |
2316 | goto end; | |
2317 | } | |
2318 | ||
2319 | if (cmd_header->count > INT_MAX) { | |
2320 | ret = -LTTNG_ERR_OVERFLOW; | |
2321 | goto end; | |
2322 | } | |
53e367f9 | 2323 | |
714363d3 JR |
2324 | { |
2325 | enum lttng_error_code ret_code; | |
2326 | const struct lttng_buffer_view events_view = | |
2327 | lttng_buffer_view_init(reception_buffer, 0, | |
2328 | total_payload_received); | |
2329 | ||
2330 | ret_code = lttng_channels_create_and_flatten_from_buffer( | |
2331 | &events_view, cmd_header->count, channels); | |
2332 | if (ret_code != LTTNG_OK) { | |
2333 | ret = -ret_code; | |
2334 | goto end; | |
2335 | } | |
53e367f9 JG |
2336 | } |
2337 | ||
714363d3 | 2338 | ret = (int) cmd_header->count; |
53e367f9 | 2339 | end: |
714363d3 JR |
2340 | free(cmd_header); |
2341 | free(reception_buffer); | |
53e367f9 | 2342 | return ret; |
9f19cc17 DG |
2343 | } |
2344 | ||
2345 | /* | |
9ae110e2 JG |
2346 | * Ask the session daemon for all available events of a session channel. |
2347 | * Sets the contents of the events array. | |
2348 | * Returns the number of lttng_event entries in events; | |
2349 | * on error, returns a negative value. | |
9f19cc17 | 2350 | */ |
cd80958d DG |
2351 | int lttng_list_events(struct lttng_handle *handle, |
2352 | const char *channel_name, struct lttng_event **events) | |
9f19cc17 DG |
2353 | { |
2354 | int ret; | |
e368fb43 JG |
2355 | struct lttcomm_session_msg lsm = {}; |
2356 | const struct lttcomm_event_command_header *cmd_header = NULL; | |
b4e3ceb9 | 2357 | uint32_t nb_events, i; |
e368fb43 | 2358 | const void *comm_ext_at; |
56f0bc67 | 2359 | struct lttng_dynamic_buffer listing; |
de453daa | 2360 | size_t storage_req; |
e368fb43 JG |
2361 | struct lttng_payload payload; |
2362 | struct lttng_payload payload_copy; | |
2363 | struct lttng_payload_view lsm_view = | |
2364 | lttng_payload_view_init_from_buffer( | |
2365 | (const char *) &lsm, 0, sizeof(lsm)); | |
2366 | struct lttng_buffer_view cmd_header_view; | |
2367 | struct lttng_buffer_view cmd_payload_view; | |
2368 | struct lttng_buffer_view flat_events_view; | |
2369 | struct lttng_buffer_view ext_view; | |
9f19cc17 | 2370 | |
9d697d3d DG |
2371 | /* Safety check. An handle and channel name are mandatory */ |
2372 | if (handle == NULL || channel_name == NULL) { | |
e368fb43 JG |
2373 | ret = -LTTNG_ERR_INVALID; |
2374 | goto end; | |
cd80958d DG |
2375 | } |
2376 | ||
e368fb43 JG |
2377 | lttng_payload_init(&payload); |
2378 | lttng_payload_init(&payload_copy); | |
2379 | ||
cd80958d | 2380 | lsm.cmd_type = LTTNG_LIST_EVENTS; |
e1b624d0 | 2381 | ret = lttng_strncpy(lsm.session.name, handle->session_name, |
cd80958d | 2382 | sizeof(lsm.session.name)); |
e1b624d0 JG |
2383 | if (ret) { |
2384 | ret = -LTTNG_ERR_INVALID; | |
2385 | goto end; | |
2386 | } | |
2387 | ||
2388 | ret = lttng_strncpy(lsm.u.list.channel_name, channel_name, | |
cd80958d | 2389 | sizeof(lsm.u.list.channel_name)); |
e1b624d0 JG |
2390 | if (ret) { |
2391 | ret = -LTTNG_ERR_INVALID; | |
2392 | goto end; | |
2393 | } | |
2394 | ||
60160d2a | 2395 | COPY_DOMAIN_PACKED(lsm.domain, handle->domain); |
9f19cc17 | 2396 | |
e368fb43 | 2397 | ret = lttng_ctl_ask_sessiond_payload(&lsm_view, &payload); |
9f19cc17 | 2398 | if (ret < 0) { |
de453daa | 2399 | goto end; |
9f19cc17 DG |
2400 | } |
2401 | ||
e368fb43 JG |
2402 | /* |
2403 | * A copy of the payload is performed since it will be | |
2404 | * consumed twice. Consuming the same payload twice is invalid since | |
2405 | * it will cause any received file descriptor to become "shared" | |
2406 | * between different instances of the resulting objects. | |
2407 | */ | |
2408 | ret = lttng_payload_copy(&payload, &payload_copy); | |
2409 | if (ret) { | |
2410 | ret = -LTTNG_ERR_NOMEM; | |
2411 | goto end; | |
2412 | } | |
2413 | ||
2414 | cmd_header_view = lttng_buffer_view_from_dynamic_buffer( | |
2415 | &payload.buffer, 0, sizeof(*cmd_header)); | |
3e6e0df2 | 2416 | if (!lttng_buffer_view_is_valid(&cmd_header_view)) { |
e368fb43 | 2417 | ret = -LTTNG_ERR_INVALID_PROTOCOL; |
d9f484bc JG |
2418 | goto end; |
2419 | } | |
2420 | ||
e368fb43 JG |
2421 | cmd_header = (typeof(cmd_header)) cmd_header_view.data; |
2422 | ||
b4e3ceb9 PP |
2423 | /* Set number of events and free command header */ |
2424 | nb_events = cmd_header->nb_events; | |
2425 | if (nb_events > INT_MAX) { | |
55c9e7ca | 2426 | ret = -LTTNG_ERR_OVERFLOW; |
de453daa | 2427 | goto end; |
b4e3ceb9 | 2428 | } |
e368fb43 JG |
2429 | |
2430 | cmd_payload_view = lttng_buffer_view_from_dynamic_buffer( | |
2431 | &payload.buffer, sizeof(*cmd_header), -1); | |
b4e3ceb9 | 2432 | |
de453daa JG |
2433 | /* |
2434 | * The buffer that is returned must contain a "flat" version of | |
2435 | * the events that are returned. In other words, all pointers | |
2436 | * within an lttng_event must point to a location within the returned | |
56f0bc67 JG |
2437 | * buffer so that the user may free everything by simply calling free() |
2438 | * on the returned buffer. This is needed in order to maintain API | |
de453daa JG |
2439 | * compatibility. |
2440 | * | |
56f0bc67 JG |
2441 | * A first pass is performed to compute the size of the buffer that |
2442 | * must be allocated. A second pass is then performed to setup | |
de453daa JG |
2443 | * the returned events so that their members always point within the |
2444 | * buffer. | |
2445 | * | |
2446 | * The layout of the returned buffer is as follows: | |
2447 | * - struct lttng_event[nb_events], | |
2448 | * - nb_events times the following: | |
2449 | * - struct lttng_event_extended, | |
2450 | * - flattened version of userspace_probe_location | |
2451 | * - filter_expression | |
2452 | * - exclusions | |
2453 | * - padding to align to 64-bits | |
2454 | */ | |
e368fb43 JG |
2455 | ext_view = lttng_buffer_view_from_view(&cmd_payload_view, |
2456 | nb_events * sizeof(struct lttng_event), -1); | |
2457 | comm_ext_at = ext_view.data; | |
de453daa | 2458 | storage_req = nb_events * sizeof(struct lttng_event); |
e368fb43 JG |
2459 | { |
2460 | struct lttng_payload_view payload_view = | |
2461 | lttng_payload_view_from_payload(&payload, 0, -1); | |
b4e3ceb9 | 2462 | |
e368fb43 JG |
2463 | for (i = 0; i < nb_events; i++) { |
2464 | const struct lttcomm_event_extended_header *ext_comm = | |
2465 | (struct lttcomm_event_extended_header *) | |
2466 | comm_ext_at; | |
2467 | int probe_storage_req = 0; | |
b4e3ceb9 | 2468 | |
e368fb43 JG |
2469 | comm_ext_at += sizeof(*ext_comm); |
2470 | comm_ext_at += ext_comm->filter_len; | |
2471 | comm_ext_at += ext_comm->nb_exclusions * | |
2472 | LTTNG_SYMBOL_NAME_LEN; | |
2473 | ||
2474 | if (ext_comm->userspace_probe_location_len) { | |
2475 | struct lttng_userspace_probe_location | |
2476 | *probe_location = NULL; | |
2477 | struct lttng_payload_view probe_location_view = lttng_payload_view_from_view( | |
2478 | &payload_view, | |
2479 | (const char *) comm_ext_at - | |
2480 | payload_view.buffer.data, | |
2481 | ext_comm->userspace_probe_location_len); | |
56f0bc67 | 2482 | |
3e6e0df2 JG |
2483 | if (!lttng_payload_view_is_valid(&probe_location_view)) { |
2484 | ret = -LTTNG_ERR_PROBE_LOCATION_INVAL; | |
2485 | goto end; | |
2486 | } | |
2487 | ||
e368fb43 JG |
2488 | /* |
2489 | * Create a temporary userspace probe location | |
2490 | * to determine the size needed by a "flattened" | |
2491 | * version of that same probe location. | |
2492 | */ | |
2493 | ret = lttng_userspace_probe_location_create_from_payload( | |
2494 | &probe_location_view, | |
2495 | &probe_location); | |
2496 | if (ret < 0) { | |
2497 | ret = -LTTNG_ERR_PROBE_LOCATION_INVAL; | |
2498 | goto end; | |
2499 | } | |
56f0bc67 | 2500 | |
e368fb43 JG |
2501 | ret = lttng_userspace_probe_location_flatten( |
2502 | probe_location, NULL); | |
2503 | lttng_userspace_probe_location_destroy( | |
2504 | probe_location); | |
2505 | if (ret < 0) { | |
2506 | ret = -LTTNG_ERR_PROBE_LOCATION_INVAL; | |
2507 | goto end; | |
2508 | } | |
56f0bc67 | 2509 | |
e368fb43 JG |
2510 | probe_storage_req = ret; |
2511 | comm_ext_at += ext_comm->userspace_probe_location_len; | |
56f0bc67 JG |
2512 | } |
2513 | ||
e368fb43 JG |
2514 | storage_req += sizeof(struct lttng_event_extended); |
2515 | storage_req += ext_comm->filter_len; | |
2516 | storage_req += ext_comm->nb_exclusions * | |
2517 | LTTNG_SYMBOL_NAME_LEN; | |
2518 | /* Padding to ensure the flat probe is aligned. */ | |
2519 | storage_req = ALIGN_TO(storage_req, sizeof(uint64_t)); | |
2520 | storage_req += probe_storage_req; | |
56f0bc67 | 2521 | } |
b4e3ceb9 PP |
2522 | } |
2523 | ||
56f0bc67 JG |
2524 | lttng_dynamic_buffer_init(&listing); |
2525 | /* | |
2526 | * We must ensure that "listing" is never resized so as to preserve | |
2527 | * the validity of the flattened objects. | |
2528 | */ | |
2529 | ret = lttng_dynamic_buffer_set_capacity(&listing, storage_req); | |
2530 | if (ret) { | |
2531 | ret = -LTTNG_ERR_NOMEM; | |
de453daa JG |
2532 | goto end; |
2533 | } | |
56f0bc67 | 2534 | |
e368fb43 JG |
2535 | cmd_payload_view = lttng_buffer_view_from_dynamic_buffer( |
2536 | &payload_copy.buffer, sizeof(*cmd_header), -1); | |
2537 | flat_events_view = lttng_buffer_view_from_view(&cmd_payload_view, 0, | |
56f0bc67 | 2538 | nb_events * sizeof(struct lttng_event)); |
e368fb43 | 2539 | ret = lttng_dynamic_buffer_append_view(&listing, &flat_events_view); |
56f0bc67 JG |
2540 | if (ret) { |
2541 | ret = -LTTNG_ERR_NOMEM; | |
2542 | goto free_dynamic_buffer; | |
2543 | } | |
de453daa | 2544 | |
e368fb43 JG |
2545 | ext_view = lttng_buffer_view_from_view(&cmd_payload_view, |
2546 | nb_events * sizeof(struct lttng_event), -1); | |
2547 | comm_ext_at = ext_view.data; | |
2548 | ||
2549 | { | |
2550 | struct lttng_payload_view payload_copy_view = | |
2551 | lttng_payload_view_from_payload( | |
2552 | &payload_copy, 0, -1); | |
2553 | ||
2554 | for (i = 0; i < nb_events; i++) { | |
2555 | struct lttng_event *event = (typeof(event))( | |
2556 | listing.data + | |
2557 | (sizeof(struct lttng_event) * i)); | |
2558 | const struct lttcomm_event_extended_header *ext_comm = | |
2559 | (typeof(ext_comm)) comm_ext_at; | |
2560 | struct lttng_event_extended *event_extended = | |
2561 | (typeof(event_extended))(listing.data + | |
2562 | listing.size); | |
2563 | ||
2564 | /* Insert struct lttng_event_extended. */ | |
2565 | ret = lttng_dynamic_buffer_set_size(&listing, | |
2566 | listing.size + sizeof(*event_extended)); | |
56f0bc67 JG |
2567 | if (ret) { |
2568 | ret = -LTTNG_ERR_NOMEM; | |
2569 | goto free_dynamic_buffer; | |
2570 | } | |
e368fb43 JG |
2571 | event->extended.ptr = event_extended; |
2572 | ||
2573 | comm_ext_at += sizeof(*ext_comm); | |
2574 | ||
2575 | /* Insert filter expression. */ | |
2576 | if (ext_comm->filter_len) { | |
2577 | event_extended->filter_expression = | |
2578 | listing.data + listing.size; | |
2579 | ret = lttng_dynamic_buffer_append(&listing, | |
2580 | comm_ext_at, | |
2581 | ext_comm->filter_len); | |
2582 | if (ret) { | |
2583 | ret = -LTTNG_ERR_NOMEM; | |
2584 | goto free_dynamic_buffer; | |
2585 | } | |
2586 | comm_ext_at += ext_comm->filter_len; | |
2587 | } | |
56f0bc67 | 2588 | |
e368fb43 JG |
2589 | /* Insert exclusions. */ |
2590 | if (ext_comm->nb_exclusions) { | |
2591 | event_extended->exclusions.count = | |
2592 | ext_comm->nb_exclusions; | |
2593 | event_extended->exclusions.strings = | |
2594 | listing.data + listing.size; | |
2595 | ||
2596 | ret = lttng_dynamic_buffer_append(&listing, | |
2597 | comm_ext_at, | |
2598 | ext_comm->nb_exclusions * | |
2599 | LTTNG_SYMBOL_NAME_LEN); | |
2600 | if (ret) { | |
2601 | ret = -LTTNG_ERR_NOMEM; | |
2602 | goto free_dynamic_buffer; | |
2603 | } | |
2604 | comm_ext_at += ext_comm->nb_exclusions * | |
2605 | LTTNG_SYMBOL_NAME_LEN; | |
2606 | } | |
56f0bc67 | 2607 | |
e368fb43 JG |
2608 | /* Insert padding to align to 64-bits. */ |
2609 | ret = lttng_dynamic_buffer_set_size(&listing, | |
2610 | ALIGN_TO(listing.size, | |
2611 | sizeof(uint64_t))); | |
56f0bc67 JG |
2612 | if (ret) { |
2613 | ret = -LTTNG_ERR_NOMEM; | |
5e4f4898 | 2614 | goto free_dynamic_buffer; |
56f0bc67 | 2615 | } |
56f0bc67 | 2616 | |
e368fb43 JG |
2617 | /* Insert flattened userspace probe location. */ |
2618 | if (ext_comm->userspace_probe_location_len) { | |
2619 | struct lttng_userspace_probe_location | |
2620 | *probe_location = NULL; | |
2621 | struct lttng_payload_view probe_location_view = lttng_payload_view_from_view( | |
2622 | &payload_copy_view, | |
2623 | (const char *) comm_ext_at - | |
2624 | payload_copy_view.buffer.data, | |
2625 | ext_comm->userspace_probe_location_len); | |
2626 | ||
3e6e0df2 JG |
2627 | if (!lttng_payload_view_is_valid(&probe_location_view)) { |
2628 | ret = -LTTNG_ERR_PROBE_LOCATION_INVAL; | |
2629 | goto free_dynamic_buffer; | |
2630 | } | |
2631 | ||
e368fb43 JG |
2632 | ret = lttng_userspace_probe_location_create_from_payload( |
2633 | &probe_location_view, | |
2634 | &probe_location); | |
2635 | if (ret < 0) { | |
2636 | ret = -LTTNG_ERR_PROBE_LOCATION_INVAL; | |
2637 | goto free_dynamic_buffer; | |
2638 | } | |
de453daa | 2639 | |
e368fb43 JG |
2640 | event_extended->probe_location = (struct lttng_userspace_probe_location |
2641 | *) (listing.data + | |
2642 | listing.size); | |
2643 | ret = lttng_userspace_probe_location_flatten( | |
2644 | probe_location, &listing); | |
2645 | lttng_userspace_probe_location_destroy( | |
2646 | probe_location); | |
2647 | if (ret < 0) { | |
2648 | ret = -LTTNG_ERR_PROBE_LOCATION_INVAL; | |
2649 | goto free_dynamic_buffer; | |
2650 | } | |
56f0bc67 | 2651 | |
e368fb43 | 2652 | comm_ext_at += ext_comm->userspace_probe_location_len; |
56f0bc67 | 2653 | } |
56f0bc67 | 2654 | } |
de453daa JG |
2655 | } |
2656 | ||
56f0bc67 JG |
2657 | /* Don't reset listing buffer as we return its content. */ |
2658 | *events = (struct lttng_event *) listing.data; | |
2659 | lttng_dynamic_buffer_init(&listing); | |
de453daa | 2660 | ret = (int) nb_events; |
56f0bc67 JG |
2661 | free_dynamic_buffer: |
2662 | lttng_dynamic_buffer_reset(&listing); | |
de453daa | 2663 | end: |
e368fb43 JG |
2664 | lttng_payload_reset(&payload); |
2665 | lttng_payload_reset(&payload_copy); | |
b4e3ceb9 | 2666 | return ret; |
9f19cc17 DG |
2667 | } |
2668 | ||
fac6795d | 2669 | /* |
1c8d13c8 TD |
2670 | * Sets the tracing_group variable with name. |
2671 | * This function allocates memory pointed to by tracing_group. | |
2672 | * On success, returns 0, on error, returns -1 (null name) or -ENOMEM. | |
fac6795d DG |
2673 | */ |
2674 | int lttng_set_tracing_group(const char *name) | |
2675 | { | |
d1892e1a | 2676 | char *new_group; |
9d697d3d | 2677 | if (name == NULL) { |
2f70b271 | 2678 | return -LTTNG_ERR_INVALID; |
9d697d3d DG |
2679 | } |
2680 | ||
d1892e1a | 2681 | if (asprintf(&new_group, "%s", name) < 0) { |
2f70b271 | 2682 | return -LTTNG_ERR_FATAL; |
fac6795d DG |
2683 | } |
2684 | ||
d1892e1a JR |
2685 | free(tracing_group); |
2686 | tracing_group = new_group; | |
2687 | new_group = NULL; | |
2688 | ||
fac6795d DG |
2689 | return 0; |
2690 | } | |
2691 | ||
cd80958d | 2692 | int lttng_calibrate(struct lttng_handle *handle, |
d0254c7c MD |
2693 | struct lttng_calibrate *calibrate) |
2694 | { | |
b812e5ca PP |
2695 | /* |
2696 | * This command was removed in LTTng 2.9. | |
2697 | */ | |
2698 | return -LTTNG_ERR_UND; | |
d0254c7c MD |
2699 | } |
2700 | ||
5edd7e09 DG |
2701 | /* |
2702 | * Set default channel attributes. | |
441c16a7 | 2703 | * If either or both of the arguments are null, attr content is zeroe'd. |
5edd7e09 DG |
2704 | */ |
2705 | void lttng_channel_set_default_attr(struct lttng_domain *domain, | |
2706 | struct lttng_channel_attr *attr) | |
2707 | { | |
294851b0 | 2708 | struct lttng_channel_extended *extended; |
cf0bcb51 | 2709 | |
5edd7e09 DG |
2710 | /* Safety check */ |
2711 | if (attr == NULL || domain == NULL) { | |
2712 | return; | |
2713 | } | |
2714 | ||
714363d3 | 2715 | /* Save the pointer for later use */ |
294851b0 | 2716 | extended = (struct lttng_channel_extended *) attr->extended.ptr; |
eacaa7a6 DS |
2717 | memset(attr, 0, sizeof(struct lttng_channel_attr)); |
2718 | ||
0a9c6494 DG |
2719 | /* Same for all domains. */ |
2720 | attr->overwrite = DEFAULT_CHANNEL_OVERWRITE; | |
2721 | attr->tracefile_size = DEFAULT_CHANNEL_TRACEFILE_SIZE; | |
2722 | attr->tracefile_count = DEFAULT_CHANNEL_TRACEFILE_COUNT; | |
2723 | ||
5edd7e09 DG |
2724 | switch (domain->type) { |
2725 | case LTTNG_DOMAIN_KERNEL: | |
9ae110e2 JG |
2726 | attr->switch_timer_interval = |
2727 | DEFAULT_KERNEL_CHANNEL_SWITCH_TIMER; | |
d92ff3ef | 2728 | attr->read_timer_interval = DEFAULT_KERNEL_CHANNEL_READ_TIMER; |
3e230f92 | 2729 | attr->subbuf_size = default_get_kernel_channel_subbuf_size(); |
5edd7e09 DG |
2730 | attr->num_subbuf = DEFAULT_KERNEL_CHANNEL_SUBBUF_NUM; |
2731 | attr->output = DEFAULT_KERNEL_CHANNEL_OUTPUT; | |
2732 | break; | |
2733 | case LTTNG_DOMAIN_UST: | |
0a9c6494 DG |
2734 | switch (domain->buf_type) { |
2735 | case LTTNG_BUFFER_PER_UID: | |
2736 | attr->subbuf_size = default_get_ust_uid_channel_subbuf_size(); | |
2737 | attr->num_subbuf = DEFAULT_UST_UID_CHANNEL_SUBBUF_NUM; | |
2738 | attr->output = DEFAULT_UST_UID_CHANNEL_OUTPUT; | |
9ae110e2 JG |
2739 | attr->switch_timer_interval = |
2740 | DEFAULT_UST_UID_CHANNEL_SWITCH_TIMER; | |
2741 | attr->read_timer_interval = | |
2742 | DEFAULT_UST_UID_CHANNEL_READ_TIMER; | |
0a9c6494 DG |
2743 | break; |
2744 | case LTTNG_BUFFER_PER_PID: | |
2745 | default: | |
2746 | attr->subbuf_size = default_get_ust_pid_channel_subbuf_size(); | |
2747 | attr->num_subbuf = DEFAULT_UST_PID_CHANNEL_SUBBUF_NUM; | |
2748 | attr->output = DEFAULT_UST_PID_CHANNEL_OUTPUT; | |
9ae110e2 JG |
2749 | attr->switch_timer_interval = |
2750 | DEFAULT_UST_PID_CHANNEL_SWITCH_TIMER; | |
2751 | attr->read_timer_interval = | |
2752 | DEFAULT_UST_PID_CHANNEL_READ_TIMER; | |
0a9c6494 DG |
2753 | break; |
2754 | } | |
5edd7e09 | 2755 | default: |
441c16a7 | 2756 | /* Default behavior: leave set to 0. */ |
5edd7e09 DG |
2757 | break; |
2758 | } | |
cf0bcb51 | 2759 | |
714363d3 JR |
2760 | if (extended) { |
2761 | lttng_channel_set_default_extended_attr(domain, extended); | |
2762 | } | |
2763 | ||
2764 | /* Reassign the extended pointer. */ | |
cf0bcb51 | 2765 | attr->extended.ptr = extended; |
5edd7e09 DG |
2766 | } |
2767 | ||
5ba3702f JG |
2768 | int lttng_channel_get_discarded_event_count(struct lttng_channel *channel, |
2769 | uint64_t *discarded_events) | |
2770 | { | |
2771 | int ret = 0; | |
cf0bcb51 | 2772 | struct lttng_channel_extended *chan_ext; |
5ba3702f JG |
2773 | |
2774 | if (!channel || !discarded_events) { | |
2775 | ret = -LTTNG_ERR_INVALID; | |
2776 | goto end; | |
2777 | } | |
2778 | ||
2779 | chan_ext = channel->attr.extended.ptr; | |
2780 | if (!chan_ext) { | |
2781 | /* | |
2782 | * This can happen since the lttng_channel structure is | |
2783 | * used for other tasks where this pointer is never set. | |
2784 | */ | |
2785 | *discarded_events = 0; | |
2786 | goto end; | |
2787 | } | |
2788 | ||
2789 | *discarded_events = chan_ext->discarded_events; | |
2790 | end: | |
2791 | return ret; | |
2792 | } | |
2793 | ||
2794 | int lttng_channel_get_lost_packet_count(struct lttng_channel *channel, | |
2795 | uint64_t *lost_packets) | |
2796 | { | |
2797 | int ret = 0; | |
cf0bcb51 | 2798 | struct lttng_channel_extended *chan_ext; |
5ba3702f JG |
2799 | |
2800 | if (!channel || !lost_packets) { | |
2801 | ret = -LTTNG_ERR_INVALID; | |
2802 | goto end; | |
2803 | } | |
2804 | ||
2805 | chan_ext = channel->attr.extended.ptr; | |
2806 | if (!chan_ext) { | |
2807 | /* | |
2808 | * This can happen since the lttng_channel structure is | |
2809 | * used for other tasks where this pointer is never set. | |
2810 | */ | |
2811 | *lost_packets = 0; | |
2812 | goto end; | |
2813 | } | |
2814 | ||
2815 | *lost_packets = chan_ext->lost_packets; | |
2816 | end: | |
2817 | return ret; | |
2818 | } | |
2819 | ||
cf0bcb51 JG |
2820 | int lttng_channel_get_monitor_timer_interval(struct lttng_channel *chan, |
2821 | uint64_t *monitor_timer_interval) | |
2822 | { | |
2823 | int ret = 0; | |
2824 | ||
2825 | if (!chan || !monitor_timer_interval) { | |
2826 | ret = -LTTNG_ERR_INVALID; | |
2827 | goto end; | |
2828 | } | |
2829 | ||
2830 | if (!chan->attr.extended.ptr) { | |
2831 | ret = -LTTNG_ERR_INVALID; | |
2832 | goto end; | |
2833 | } | |
2834 | ||
2835 | *monitor_timer_interval = ((struct lttng_channel_extended *) | |
2836 | chan->attr.extended.ptr)->monitor_timer_interval; | |
2837 | end: | |
2838 | return ret; | |
2839 | } | |
2840 | ||
2841 | int lttng_channel_set_monitor_timer_interval(struct lttng_channel *chan, | |
2842 | uint64_t monitor_timer_interval) | |
2843 | { | |
2844 | int ret = 0; | |
2845 | ||
2846 | if (!chan || !chan->attr.extended.ptr) { | |
2847 | ret = -LTTNG_ERR_INVALID; | |
2848 | goto end; | |
2849 | } | |
2850 | ||
2851 | ((struct lttng_channel_extended *) | |
2852 | chan->attr.extended.ptr)->monitor_timer_interval = | |
2853 | monitor_timer_interval; | |
2854 | end: | |
2855 | return ret; | |
2856 | } | |
2857 | ||
491d1539 MD |
2858 | int lttng_channel_get_blocking_timeout(struct lttng_channel *chan, |
2859 | int64_t *blocking_timeout) | |
2860 | { | |
2861 | int ret = 0; | |
2862 | ||
2863 | if (!chan || !blocking_timeout) { | |
2864 | ret = -LTTNG_ERR_INVALID; | |
2865 | goto end; | |
2866 | } | |
2867 | ||
2868 | if (!chan->attr.extended.ptr) { | |
2869 | ret = -LTTNG_ERR_INVALID; | |
2870 | goto end; | |
2871 | } | |
2872 | ||
2873 | *blocking_timeout = ((struct lttng_channel_extended *) | |
2874 | chan->attr.extended.ptr)->blocking_timeout; | |
2875 | end: | |
2876 | return ret; | |
2877 | } | |
2878 | ||
2879 | int lttng_channel_set_blocking_timeout(struct lttng_channel *chan, | |
2880 | int64_t blocking_timeout) | |
2881 | { | |
2882 | int ret = 0; | |
2883 | int64_t msec_timeout; | |
2884 | ||
2885 | if (!chan || !chan->attr.extended.ptr) { | |
2886 | ret = -LTTNG_ERR_INVALID; | |
2887 | goto end; | |
2888 | } | |
2889 | ||
2890 | if (blocking_timeout < 0 && blocking_timeout != -1) { | |
2891 | ret = -LTTNG_ERR_INVALID; | |
2892 | goto end; | |
2893 | } | |
2894 | ||
2895 | /* | |
2896 | * LTTng-ust's use of poll() to implement this timeout mechanism forces | |
2897 | * us to accept a narrower range of values (msecs expressed as a signed | |
2898 | * 32-bit integer). | |
2899 | */ | |
2900 | msec_timeout = blocking_timeout / 1000; | |
2901 | if (msec_timeout != (int32_t) msec_timeout) { | |
2902 | ret = -LTTNG_ERR_INVALID; | |
2903 | goto end; | |
2904 | } | |
2905 | ||
2906 | ((struct lttng_channel_extended *) | |
2907 | chan->attr.extended.ptr)->blocking_timeout = | |
2908 | blocking_timeout; | |
2909 | end: | |
2910 | return ret; | |
2911 | } | |
2912 | ||
fac6795d | 2913 | /* |
2269e89e | 2914 | * Check if session daemon is alive. |
fac6795d | 2915 | * |
2269e89e | 2916 | * Return 1 if alive or 0 if not. |
1c8d13c8 | 2917 | * On error returns a negative value. |
fac6795d | 2918 | */ |
947308c4 | 2919 | int lttng_session_daemon_alive(void) |
fac6795d DG |
2920 | { |
2921 | int ret; | |
2922 | ||
2923 | ret = set_session_daemon_path(); | |
2924 | if (ret < 0) { | |
9ae110e2 | 2925 | /* Error. */ |
fac6795d DG |
2926 | return ret; |
2927 | } | |
2928 | ||
9d035200 | 2929 | if (*sessiond_sock_path == '\0') { |
2f70b271 | 2930 | /* |
9ae110e2 JG |
2931 | * No socket path set. Weird error which means the constructor |
2932 | * was not called. | |
2f70b271 DG |
2933 | */ |
2934 | assert(0); | |
fac6795d DG |
2935 | } |
2936 | ||
2269e89e | 2937 | ret = try_connect_sessiond(sessiond_sock_path); |
7d8234d9 | 2938 | if (ret < 0) { |
9ae110e2 | 2939 | /* Not alive. */ |
7d8234d9 MD |
2940 | return 0; |
2941 | } | |
7d8234d9 | 2942 | |
9ae110e2 | 2943 | /* Is alive. */ |
947308c4 | 2944 | return 1; |
fac6795d DG |
2945 | } |
2946 | ||
00e2e675 | 2947 | /* |
a4b92340 | 2948 | * Set URL for a consumer for a session and domain. |
00e2e675 DG |
2949 | * |
2950 | * Return 0 on success, else a negative value. | |
2951 | */ | |
a4b92340 DG |
2952 | int lttng_set_consumer_url(struct lttng_handle *handle, |
2953 | const char *control_url, const char *data_url) | |
00e2e675 | 2954 | { |
3dd05a85 | 2955 | int ret; |
a4b92340 | 2956 | ssize_t size; |
00e2e675 | 2957 | struct lttcomm_session_msg lsm; |
a4b92340 | 2958 | struct lttng_uri *uris = NULL; |
00e2e675 | 2959 | |
a4b92340 | 2960 | if (handle == NULL || (control_url == NULL && data_url == NULL)) { |
e1b624d0 JG |
2961 | ret = -LTTNG_ERR_INVALID; |
2962 | goto error; | |
00e2e675 DG |
2963 | } |
2964 | ||
a4b92340 DG |
2965 | memset(&lsm, 0, sizeof(lsm)); |
2966 | ||
00e2e675 DG |
2967 | lsm.cmd_type = LTTNG_SET_CONSUMER_URI; |
2968 | ||
e1b624d0 | 2969 | ret = lttng_strncpy(lsm.session.name, handle->session_name, |
00e2e675 | 2970 | sizeof(lsm.session.name)); |
e1b624d0 JG |
2971 | if (ret) { |
2972 | ret = -LTTNG_ERR_INVALID; | |
2973 | goto error; | |
2974 | } | |
2975 | ||
60160d2a | 2976 | COPY_DOMAIN_PACKED(lsm.domain, handle->domain); |
00e2e675 | 2977 | |
bc894455 | 2978 | size = uri_parse_str_urls(control_url, data_url, &uris); |
a4b92340 | 2979 | if (size < 0) { |
e1b624d0 JG |
2980 | ret = -LTTNG_ERR_INVALID; |
2981 | goto error; | |
a4b92340 DG |
2982 | } |
2983 | ||
2984 | lsm.u.uri.size = size; | |
00e2e675 | 2985 | |
795a978d | 2986 | ret = lttng_ctl_ask_sessiond_varlen_no_cmd_header(&lsm, uris, |
cac3069d | 2987 | sizeof(struct lttng_uri) * size, NULL); |
3dd05a85 DG |
2988 | |
2989 | free(uris); | |
e1b624d0 | 2990 | error: |
3dd05a85 | 2991 | return ret; |
00e2e675 DG |
2992 | } |
2993 | ||
2994 | /* | |
9c6bda17 | 2995 | * [OBSOLETE] |
00e2e675 | 2996 | */ |
2ec40111 | 2997 | int lttng_enable_consumer(struct lttng_handle *handle); |
00e2e675 DG |
2998 | int lttng_enable_consumer(struct lttng_handle *handle) |
2999 | { | |
785d2d0d | 3000 | return -ENOSYS; |
00e2e675 DG |
3001 | } |
3002 | ||
3003 | /* | |
9c6bda17 | 3004 | * [OBSOLETE] |
00e2e675 | 3005 | */ |
2ec40111 | 3006 | int lttng_disable_consumer(struct lttng_handle *handle); |
00e2e675 DG |
3007 | int lttng_disable_consumer(struct lttng_handle *handle) |
3008 | { | |
785d2d0d | 3009 | return -ENOSYS; |
00e2e675 DG |
3010 | } |
3011 | ||
07424f16 | 3012 | /* |
b178f53e | 3013 | * [OBSOLETE] |
07424f16 | 3014 | */ |
2ec40111 SM |
3015 | int _lttng_create_session_ext(const char *name, const char *url, |
3016 | const char *datetime); | |
07424f16 DG |
3017 | int _lttng_create_session_ext(const char *name, const char *url, |
3018 | const char *datetime) | |
3019 | { | |
b178f53e | 3020 | return -ENOSYS; |
07424f16 DG |
3021 | } |
3022 | ||
806e2684 DG |
3023 | /* |
3024 | * For a given session name, this call checks if the data is ready to be read | |
3025 | * or is still being extracted by the consumer(s) hence not ready to be used by | |
3026 | * any readers. | |
3027 | */ | |
6d805429 | 3028 | int lttng_data_pending(const char *session_name) |
806e2684 DG |
3029 | { |
3030 | int ret; | |
3031 | struct lttcomm_session_msg lsm; | |
f6151c55 | 3032 | uint8_t *pending = NULL; |
806e2684 DG |
3033 | |
3034 | if (session_name == NULL) { | |
3035 | return -LTTNG_ERR_INVALID; | |
3036 | } | |
3037 | ||
53efb85a | 3038 | memset(&lsm, 0, sizeof(lsm)); |
6d805429 | 3039 | lsm.cmd_type = LTTNG_DATA_PENDING; |
806e2684 | 3040 | |
e1b624d0 | 3041 | ret = lttng_strncpy(lsm.session.name, session_name, |
cac3069d | 3042 | sizeof(lsm.session.name)); |
e1b624d0 JG |
3043 | if (ret) { |
3044 | ret = -LTTNG_ERR_INVALID; | |
3045 | goto end; | |
3046 | } | |
806e2684 | 3047 | |
f6151c55 JG |
3048 | ret = lttng_ctl_ask_sessiond(&lsm, (void **) &pending); |
3049 | if (ret < 0) { | |
3050 | goto end; | |
3051 | } else if (ret != 1) { | |
3052 | /* Unexpected payload size */ | |
3053 | ret = -LTTNG_ERR_INVALID; | |
3054 | goto end; | |
e848d36d JG |
3055 | } else if (!pending) { |
3056 | /* Internal error. */ | |
3057 | ret = -LTTNG_ERR_UNK; | |
3058 | goto end; | |
806e2684 DG |
3059 | } |
3060 | ||
f6151c55 JG |
3061 | ret = (int) *pending; |
3062 | end: | |
3063 | free(pending); | |
806e2684 DG |
3064 | return ret; |
3065 | } | |
3066 | ||
93ec662e JD |
3067 | /* |
3068 | * Regenerate the metadata for a session. | |
3069 | * Return 0 on success, a negative error code on error. | |
3070 | */ | |
eded6438 | 3071 | int lttng_regenerate_metadata(const char *session_name) |
93ec662e JD |
3072 | { |
3073 | int ret; | |
3074 | struct lttcomm_session_msg lsm; | |
3075 | ||
3076 | if (!session_name) { | |
3077 | ret = -LTTNG_ERR_INVALID; | |
3078 | goto end; | |
3079 | } | |
3080 | ||
3081 | memset(&lsm, 0, sizeof(lsm)); | |
eded6438 | 3082 | lsm.cmd_type = LTTNG_REGENERATE_METADATA; |
93ec662e | 3083 | |
e1b624d0 | 3084 | ret = lttng_strncpy(lsm.session.name, session_name, |
93ec662e | 3085 | sizeof(lsm.session.name)); |
e1b624d0 JG |
3086 | if (ret) { |
3087 | ret = -LTTNG_ERR_INVALID; | |
3088 | goto end; | |
3089 | } | |
93ec662e JD |
3090 | |
3091 | ret = lttng_ctl_ask_sessiond(&lsm, NULL); | |
3092 | if (ret < 0) { | |
3093 | goto end; | |
3094 | } | |
3095 | ||
3096 | ret = 0; | |
3097 | end: | |
3098 | return ret; | |
3099 | } | |
3100 | ||
eded6438 JD |
3101 | /* |
3102 | * Deprecated, replaced by lttng_regenerate_metadata. | |
3103 | */ | |
3104 | int lttng_metadata_regenerate(const char *session_name) | |
3105 | { | |
3106 | return lttng_regenerate_metadata(session_name); | |
3107 | } | |
3108 | ||
c2561365 JD |
3109 | /* |
3110 | * Regenerate the statedump of a session. | |
3111 | * Return 0 on success, a negative error code on error. | |
3112 | */ | |
3113 | int lttng_regenerate_statedump(const char *session_name) | |
3114 | { | |
3115 | int ret; | |
3116 | struct lttcomm_session_msg lsm; | |
3117 | ||
3118 | if (!session_name) { | |
3119 | ret = -LTTNG_ERR_INVALID; | |
3120 | goto end; | |
3121 | } | |
3122 | ||
3123 | memset(&lsm, 0, sizeof(lsm)); | |
3124 | lsm.cmd_type = LTTNG_REGENERATE_STATEDUMP; | |
3125 | ||
e1b624d0 | 3126 | ret = lttng_strncpy(lsm.session.name, session_name, |
c2561365 | 3127 | sizeof(lsm.session.name)); |
e1b624d0 JG |
3128 | if (ret) { |
3129 | ret = -LTTNG_ERR_INVALID; | |
3130 | goto end; | |
3131 | } | |
c2561365 JD |
3132 | |
3133 | ret = lttng_ctl_ask_sessiond(&lsm, NULL); | |
3134 | if (ret < 0) { | |
3135 | goto end; | |
3136 | } | |
3137 | ||
3138 | ret = 0; | |
3139 | end: | |
3140 | return ret; | |
3141 | } | |
3142 | ||
a5c2d2a7 JG |
3143 | static |
3144 | int _lttng_register_trigger(struct lttng_trigger *trigger, const char *name, | |
3145 | bool generate_name) | |
a58c490f JG |
3146 | { |
3147 | int ret; | |
99608320 JR |
3148 | struct lttcomm_session_msg lsm = { |
3149 | .cmd_type = LTTNG_REGISTER_TRIGGER, | |
a5c2d2a7 | 3150 | .u.trigger.is_trigger_anonymous = !name && !generate_name, |
99608320 JR |
3151 | }; |
3152 | struct lttcomm_session_msg *message_lsm; | |
3153 | struct lttng_payload message; | |
3154 | struct lttng_payload reply; | |
242388e4 | 3155 | struct lttng_trigger *reply_trigger = NULL; |
9124c630 | 3156 | enum lttng_domain_type domain_type; |
64eafdf6 JR |
3157 | const struct lttng_credentials user_creds = { |
3158 | .uid = LTTNG_OPTIONAL_INIT_VALUE(geteuid()), | |
3159 | .gid = LTTNG_OPTIONAL_INIT_UNSET, | |
3160 | }; | |
a5c2d2a7 JG |
3161 | const char *unused_trigger_name = NULL; |
3162 | enum lttng_trigger_status trigger_status; | |
99608320 JR |
3163 | |
3164 | lttng_payload_init(&message); | |
3165 | lttng_payload_init(&reply); | |
a58c490f JG |
3166 | |
3167 | if (!trigger) { | |
3168 | ret = -LTTNG_ERR_INVALID; | |
3169 | goto end; | |
3170 | } | |
3171 | ||
a5c2d2a7 JG |
3172 | trigger_status = lttng_trigger_get_name(trigger, &unused_trigger_name); |
3173 | if (trigger_status != LTTNG_TRIGGER_STATUS_UNSET) { | |
3174 | /* Re-using already registered trigger. */ | |
3175 | ret = -LTTNG_ERR_INVALID; | |
3176 | goto end; | |
3177 | } | |
3178 | ||
3179 | if (name) { | |
3180 | trigger_status = lttng_trigger_set_name(trigger, name); | |
3181 | if (trigger_status != LTTNG_TRIGGER_STATUS_OK) { | |
3182 | ret = -LTTNG_ERR_NOMEM; | |
3183 | goto end; | |
3184 | } | |
3185 | } | |
3186 | ||
64eafdf6 JR |
3187 | if (!trigger->creds.uid.is_set) { |
3188 | /* Use the client's credentials as the trigger credentials. */ | |
3189 | lttng_trigger_set_credentials(trigger, &user_creds); | |
3190 | } else { | |
3191 | /* | |
3192 | * Validate that either the current trigger credentials and the | |
3193 | * client credentials are identical or that the current user is | |
3194 | * root. The root user can register, unregister triggers for | |
3195 | * himself and other users. | |
3196 | * | |
3197 | * This check is also present on the sessiond side, using the | |
3198 | * credentials passed on the socket. These check are all | |
3199 | * "safety" checks. | |
3200 | */ | |
3201 | const struct lttng_credentials *trigger_creds = | |
3202 | lttng_trigger_get_credentials(trigger); | |
3203 | ||
3204 | if (!lttng_credentials_is_equal_uid(trigger_creds, &user_creds)) { | |
3205 | if (lttng_credentials_get_uid(&user_creds) != 0) { | |
3206 | ret = -LTTNG_ERR_EPERM; | |
a5c2d2a7 | 3207 | goto end_unset_name; |
64eafdf6 JR |
3208 | } |
3209 | } | |
3210 | } | |
3211 | ||
a58c490f | 3212 | if (!lttng_trigger_validate(trigger)) { |
eac4828d | 3213 | ret = -LTTNG_ERR_INVALID_TRIGGER; |
a5c2d2a7 | 3214 | goto end_unset_name; |
a58c490f JG |
3215 | } |
3216 | ||
9124c630 JR |
3217 | domain_type = lttng_trigger_get_underlying_domain_type_restriction( |
3218 | trigger); | |
3219 | ||
3220 | lsm.domain.type = domain_type; | |
3221 | ||
97285430 JG |
3222 | ret = lttng_dynamic_buffer_append(&message.buffer, &lsm, sizeof(lsm)); |
3223 | if (ret) { | |
3224 | ret = -LTTNG_ERR_NOMEM; | |
a5c2d2a7 | 3225 | goto end_unset_name; |
97285430 | 3226 | } |
99608320 | 3227 | |
99608320 | 3228 | ret = lttng_trigger_serialize(trigger, &message); |
3647288f | 3229 | if (ret < 0) { |
a58c490f | 3230 | ret = -LTTNG_ERR_UNK; |
a5c2d2a7 | 3231 | goto end_unset_name; |
a58c490f JG |
3232 | } |
3233 | ||
b22f4f54 JG |
3234 | /* |
3235 | * This is needed to populate the trigger object size for the command | |
3236 | * header. | |
3237 | */ | |
3238 | message_lsm = (struct lttcomm_session_msg *) message.buffer.data; | |
3239 | ||
99608320 JR |
3240 | message_lsm->u.trigger.length = (uint32_t) message.buffer.size - sizeof(lsm); |
3241 | ||
3242 | { | |
3243 | struct lttng_payload_view message_view = | |
3244 | lttng_payload_view_from_payload( | |
3245 | &message, 0, -1); | |
3246 | ||
3247 | message_lsm->fd_count = lttng_payload_view_get_fd_handle_count( | |
3248 | &message_view); | |
3249 | ret = lttng_ctl_ask_sessiond_payload(&message_view, &reply); | |
3250 | if (ret < 0) { | |
a5c2d2a7 | 3251 | goto end_unset_name; |
99608320 JR |
3252 | } |
3253 | } | |
3254 | ||
242388e4 JR |
3255 | { |
3256 | struct lttng_payload_view reply_view = | |
3257 | lttng_payload_view_from_payload( | |
3258 | &reply, 0, reply.buffer.size); | |
3259 | ||
3260 | ret = lttng_trigger_create_from_payload( | |
3261 | &reply_view, &reply_trigger); | |
3262 | if (ret < 0) { | |
a5c2d2a7 JG |
3263 | ret = -LTTNG_ERR_INVALID_PROTOCOL; |
3264 | goto end_unset_name; | |
242388e4 JR |
3265 | } |
3266 | } | |
3267 | ||
a5c2d2a7 JG |
3268 | if (name || generate_name) { |
3269 | ret = lttng_trigger_assign_name(trigger, reply_trigger); | |
3270 | if (ret < 0) { | |
3271 | ret = -LTTNG_ERR_NOMEM; | |
3272 | goto end; | |
3273 | } | |
242388e4 JR |
3274 | } |
3275 | ||
99608320 | 3276 | ret = 0; |
a5c2d2a7 JG |
3277 | goto end; |
3278 | ||
3279 | end_unset_name: | |
3280 | trigger_status = lttng_trigger_set_name(trigger, NULL); | |
3281 | if (trigger_status != LTTNG_TRIGGER_STATUS_OK) { | |
3282 | ret = -LTTNG_ERR_UNK; | |
3283 | } | |
a58c490f | 3284 | end: |
99608320 JR |
3285 | lttng_payload_reset(&message); |
3286 | lttng_payload_reset(&reply); | |
242388e4 | 3287 | lttng_trigger_destroy(reply_trigger); |
a58c490f JG |
3288 | return ret; |
3289 | } | |
3290 | ||
a5c2d2a7 JG |
3291 | int lttng_register_trigger(struct lttng_trigger *trigger) |
3292 | { | |
3293 | /* Register an anonymous trigger. */ | |
3294 | return _lttng_register_trigger(trigger, NULL, false); | |
3295 | } | |
3296 | ||
3297 | enum lttng_error_code lttng_register_trigger_with_name( | |
3298 | struct lttng_trigger *trigger, const char *name) | |
3299 | { | |
3300 | const int ret = _lttng_register_trigger(trigger, name, false); | |
3301 | ||
3302 | return ret == 0 ? LTTNG_OK : (enum lttng_error_code) -ret; | |
3303 | } | |
3304 | ||
3305 | enum lttng_error_code lttng_register_trigger_with_automatic_name( | |
3306 | struct lttng_trigger *trigger) | |
3307 | { | |
3308 | const int ret = _lttng_register_trigger(trigger, false, true); | |
3309 | ||
3310 | return ret == 0 ? LTTNG_OK : (enum lttng_error_code) -ret; | |
3311 | } | |
3312 | ||
b99a0cb3 JG |
3313 | enum lttng_error_code lttng_error_query_execute( |
3314 | const struct lttng_error_query *query, | |
3315 | const struct lttng_endpoint *endpoint, | |
3316 | struct lttng_error_query_results **results) | |
3317 | { | |
3318 | int ret; | |
3319 | enum lttng_error_code ret_code; | |
3320 | struct lttcomm_session_msg lsm = { | |
3321 | .cmd_type = LTTNG_EXECUTE_ERROR_QUERY, | |
3322 | }; | |
3323 | struct lttng_payload message; | |
3324 | struct lttng_payload reply; | |
3325 | struct lttcomm_session_msg *message_lsm; | |
3326 | ||
3327 | lttng_payload_init(&message); | |
3328 | lttng_payload_init(&reply); | |
3329 | ||
3330 | if (!query || !results) { | |
3331 | ret_code = LTTNG_ERR_INVALID; | |
3332 | goto end; | |
3333 | } | |
3334 | ||
3335 | if (endpoint != lttng_session_daemon_command_endpoint) { | |
3336 | ret_code = LTTNG_ERR_INVALID_ERROR_QUERY_TARGET; | |
3337 | goto end; | |
3338 | } | |
3339 | ||
3340 | ret = lttng_dynamic_buffer_append(&message.buffer, &lsm, sizeof(lsm)); | |
3341 | if (ret) { | |
3342 | ret_code = LTTNG_ERR_NOMEM; | |
3343 | goto end; | |
3344 | } | |
3345 | ||
3346 | ret = lttng_error_query_serialize(query, &message); | |
3347 | if (ret) { | |
3348 | ret_code = LTTNG_ERR_UNK; | |
3349 | goto end; | |
3350 | } | |
3351 | ||
3352 | message_lsm = (struct lttcomm_session_msg *) message.buffer.data; | |
3353 | message_lsm->u.error_query.length = | |
3354 | (uint32_t) message.buffer.size - sizeof(lsm); | |
3355 | ||
3356 | { | |
3357 | struct lttng_payload_view message_view = | |
3358 | lttng_payload_view_from_payload( | |
3359 | &message, 0, -1); | |
3360 | ||
3361 | message_lsm->fd_count = lttng_payload_view_get_fd_handle_count( | |
3362 | &message_view); | |
3363 | ret = lttng_ctl_ask_sessiond_payload(&message_view, &reply); | |
3364 | if (ret < 0) { | |
3365 | ret_code = -ret; | |
3366 | goto end; | |
3367 | } | |
3368 | } | |
3369 | ||
3370 | { | |
3371 | ssize_t reply_create_ret; | |
3372 | struct lttng_payload_view reply_view = | |
3373 | lttng_payload_view_from_payload( | |
3374 | &reply, 0, reply.buffer.size); | |
3375 | ||
3376 | reply_create_ret = lttng_error_query_results_create_from_payload( | |
3377 | &reply_view, results); | |
3378 | if (reply_create_ret < 0) { | |
3379 | ret_code = LTTNG_ERR_INVALID_PROTOCOL; | |
3380 | goto end; | |
3381 | } | |
3382 | } | |
3383 | ||
3384 | ret_code = LTTNG_OK; | |
3385 | end: | |
3386 | lttng_payload_reset(&message); | |
3387 | lttng_payload_reset(&reply); | |
3388 | return ret_code; | |
3389 | } | |
3390 | ||
b61776fb | 3391 | int lttng_unregister_trigger(const struct lttng_trigger *trigger) |
a58c490f JG |
3392 | { |
3393 | int ret; | |
3394 | struct lttcomm_session_msg lsm; | |
99608320 JR |
3395 | struct lttcomm_session_msg *message_lsm; |
3396 | struct lttng_payload message; | |
3397 | struct lttng_payload reply; | |
b61776fb | 3398 | struct lttng_trigger *copy = NULL; |
64eafdf6 JR |
3399 | const struct lttng_credentials user_creds = { |
3400 | .uid = LTTNG_OPTIONAL_INIT_VALUE(geteuid()), | |
3401 | .gid = LTTNG_OPTIONAL_INIT_UNSET, | |
3402 | }; | |
99608320 JR |
3403 | |
3404 | lttng_payload_init(&message); | |
3405 | lttng_payload_init(&reply); | |
a58c490f JG |
3406 | |
3407 | if (!trigger) { | |
3408 | ret = -LTTNG_ERR_INVALID; | |
3409 | goto end; | |
3410 | } | |
3411 | ||
b61776fb SM |
3412 | copy = lttng_trigger_copy(trigger); |
3413 | if (!copy) { | |
3414 | ret = -LTTNG_ERR_UNK; | |
3415 | goto end; | |
3416 | } | |
3417 | ||
3418 | if (!copy->creds.uid.is_set) { | |
3419 | /* Use the client credentials as the trigger credentials */ | |
3420 | lttng_trigger_set_credentials(copy, &user_creds); | |
64eafdf6 JR |
3421 | } else { |
3422 | /* | |
3423 | * Validate that either the current trigger credentials and the | |
3424 | * client credentials are identical or that the current user is | |
3425 | * root. The root user can register, unregister triggers for | |
3426 | * himself and other users. | |
3427 | * | |
3428 | * This check is also present on the sessiond side, using the | |
3429 | * credentials passed on the socket. These check are all | |
3430 | * "safety" checks. | |
3431 | */ | |
3432 | const struct lttng_credentials *trigger_creds = | |
b61776fb | 3433 | lttng_trigger_get_credentials(copy); |
64eafdf6 JR |
3434 | if (!lttng_credentials_is_equal_uid(trigger_creds, &user_creds)) { |
3435 | if (lttng_credentials_get_uid(&user_creds) != 0) { | |
3436 | ret = -LTTNG_ERR_EPERM; | |
3437 | goto end; | |
3438 | } | |
3439 | } | |
3440 | } | |
3441 | ||
b61776fb | 3442 | if (!lttng_trigger_validate(copy)) { |
3647288f | 3443 | ret = -LTTNG_ERR_INVALID_TRIGGER; |
a58c490f JG |
3444 | goto end; |
3445 | } | |
3446 | ||
99608320 JR |
3447 | memset(&lsm, 0, sizeof(lsm)); |
3448 | lsm.cmd_type = LTTNG_UNREGISTER_TRIGGER; | |
3449 | ||
97285430 JG |
3450 | ret = lttng_dynamic_buffer_append(&message.buffer, &lsm, sizeof(lsm)); |
3451 | if (ret) { | |
3452 | ret = -LTTNG_ERR_NOMEM; | |
3453 | goto end; | |
3454 | } | |
99608320 | 3455 | |
b61776fb | 3456 | ret = lttng_trigger_serialize(copy, &message); |
3647288f | 3457 | if (ret < 0) { |
a58c490f JG |
3458 | ret = -LTTNG_ERR_UNK; |
3459 | goto end; | |
3460 | } | |
3461 | ||
b0a79813 FD |
3462 | /* |
3463 | * This is needed to populate the trigger object size for the command | |
3464 | * header and number of fds sent. | |
3465 | */ | |
3466 | message_lsm = (struct lttcomm_session_msg *) message.buffer.data; | |
3467 | ||
99608320 JR |
3468 | message_lsm->u.trigger.length = (uint32_t) message.buffer.size - sizeof(lsm); |
3469 | ||
3470 | { | |
3471 | struct lttng_payload_view message_view = | |
3472 | lttng_payload_view_from_payload( | |
3473 | &message, 0, -1); | |
3474 | ||
3475 | /* | |
3476 | * Update the message header with the number of fd that will be | |
3477 | * sent. | |
3478 | */ | |
3479 | message_lsm->fd_count = lttng_payload_view_get_fd_handle_count( | |
3480 | &message_view); | |
3481 | ||
3482 | ret = lttng_ctl_ask_sessiond_payload(&message_view, &reply); | |
3483 | if (ret < 0) { | |
3484 | goto end; | |
3485 | } | |
3486 | } | |
3487 | ||
3488 | ret = 0; | |
a58c490f | 3489 | end: |
b61776fb | 3490 | lttng_trigger_destroy(copy); |
99608320 JR |
3491 | lttng_payload_reset(&message); |
3492 | lttng_payload_reset(&reply); | |
a58c490f JG |
3493 | return ret; |
3494 | } | |
3495 | ||
fbc9f37d JR |
3496 | /* |
3497 | * Ask the session daemon for all registered triggers for the current user. | |
3498 | * | |
3499 | * Allocates and return an lttng_triggers set. | |
3500 | * On error, returns a suitable lttng_error_code. | |
3501 | */ | |
3502 | enum lttng_error_code lttng_list_triggers(struct lttng_triggers **triggers) | |
3503 | { | |
3504 | int ret; | |
3505 | enum lttng_error_code ret_code = LTTNG_OK; | |
3506 | struct lttcomm_session_msg lsm = { .cmd_type = LTTNG_LIST_TRIGGERS }; | |
3507 | struct lttng_triggers *local_triggers = NULL; | |
3508 | struct lttng_payload reply; | |
3509 | struct lttng_payload_view lsm_view = | |
3510 | lttng_payload_view_init_from_buffer( | |
3511 | (const char *) &lsm, 0, sizeof(lsm)); | |
3512 | ||
3513 | lttng_payload_init(&reply); | |
3514 | ||
3515 | ret = lttng_ctl_ask_sessiond_payload(&lsm_view, &reply); | |
3516 | if (ret < 0) { | |
3517 | ret_code = (enum lttng_error_code) -ret; | |
3518 | goto end; | |
3519 | } | |
3520 | ||
3521 | { | |
3522 | struct lttng_payload_view reply_view = | |
3523 | lttng_payload_view_from_payload( | |
3524 | &reply, 0, reply.buffer.size); | |
3525 | ||
3526 | ret = lttng_triggers_create_from_payload( | |
3527 | &reply_view, &local_triggers); | |
3528 | if (ret < 0) { | |
3529 | ret_code = LTTNG_ERR_FATAL; | |
3530 | goto end; | |
3531 | } | |
3532 | } | |
3533 | ||
3534 | *triggers = local_triggers; | |
3535 | local_triggers = NULL; | |
3536 | end: | |
3537 | lttng_payload_reset(&reply); | |
3538 | lttng_triggers_destroy(local_triggers); | |
3539 | return ret_code; | |
3540 | } | |
3541 | ||
fac6795d | 3542 | /* |
9ae110e2 | 3543 | * lib constructor. |
fac6795d | 3544 | */ |
b2b89e8a | 3545 | static void __attribute__((constructor)) init(void) |
fac6795d DG |
3546 | { |
3547 | /* Set default session group */ | |
bbccc3d2 | 3548 | lttng_set_tracing_group(DEFAULT_TRACING_GROUP); |
fac6795d | 3549 | } |
49cca668 DG |
3550 | |
3551 | /* | |
9ae110e2 | 3552 | * lib destructor. |
49cca668 | 3553 | */ |
b2b89e8a | 3554 | static void __attribute__((destructor)) lttng_ctl_exit(void) |
49cca668 DG |
3555 | { |
3556 | free(tracing_group); | |
3557 | } |