Fix: liblttng-ctl comm: lttng_event_field is not packed
[lttng-tools.git] / src / bin / lttng-sessiond / cmd.c
CommitLineData
2f77fc4b 1/*
ab5be9fa
MJ
2 * Copyright (C) 2012 David Goulet <dgoulet@efficios.com>
3 * Copyright (C) 2016 Jérémie Galarneau <jeremie.galarneau@efficios.com>
2f77fc4b 4 *
ab5be9fa 5 * SPDX-License-Identifier: GPL-2.0-only
2f77fc4b 6 *
2f77fc4b
DG
7 */
8
f953b297
JG
9#include "bin/lttng-sessiond/tracker.h"
10#include "lttng/lttng-error.h"
11#include "lttng/tracker.h"
6c1c0768 12#define _LGPL_SOURCE
2f77fc4b 13#include <assert.h>
6dc3064a 14#include <inttypes.h>
2f77fc4b
DG
15#include <urcu/list.h>
16#include <urcu/uatomic.h>
a503e1ef 17#include <sys/stat.h>
d2956687 18#include <stdio.h>
2f77fc4b 19
166fc586 20#include <common/buffer-view.h>
2f77fc4b 21#include <common/common.h>
f5436bfc 22#include <common/compat/string.h>
166fc586 23#include <common/defaults.h>
b0880ae5 24#include <common/dynamic-buffer.h>
166fc586
JR
25#include <common/kernel-ctl/kernel-ctl.h>
26#include <common/relayd/relayd.h>
27#include <common/sessiond-comm/sessiond-comm.h>
28#include <common/string-utils/string-utils.h>
82b69413 29#include <common/trace-chunk.h>
166fc586 30#include <common/utils.h>
b0880ae5
JG
31#include <lttng/action/action.h>
32#include <lttng/channel-internal.h>
166fc586
JR
33#include <lttng/channel.h>
34#include <lttng/condition/condition.h>
35#include <lttng/event-internal.h>
17dd1232 36#include <lttng/location-internal.h>
166fc586
JR
37#include <lttng/rotate-internal.h>
38#include <lttng/session-descriptor-internal.h>
b178f53e 39#include <lttng/session-internal.h>
166fc586 40#include <lttng/trigger/trigger-internal.h>
3c02e545 41#include <lttng/userspace-probe-internal.h>
2f77fc4b
DG
42
43#include "channel.h"
44#include "consumer.h"
45#include "event.h"
8782cc74 46#include "health-sessiond.h"
2f77fc4b
DG
47#include "kernel.h"
48#include "kernel-consumer.h"
49#include "lttng-sessiond.h"
50#include "utils.h"
0dbc2034 51#include "lttng-syscall.h"
7c1d2758 52#include "agent.h"
93ec662e 53#include "buffer-registry.h"
b0880ae5
JG
54#include "notification-thread.h"
55#include "notification-thread-commands.h"
5c408ad8
JD
56#include "rotate.h"
57#include "rotation-thread.h"
8e319828 58#include "timer.h"
f28f9e44 59#include "agent-thread.h"
2f77fc4b
DG
60
61#include "cmd.h"
62
a503e1ef
JG
63/* Sleep for 100ms between each check for the shm path's deletion. */
64#define SESSION_DESTROY_SHM_PATH_CHECK_DELAY_US 100000
65
3e3665b8
JG
66struct cmd_destroy_session_reply_context {
67 int reply_sock_fd;
68 bool implicit_rotation_on_destroy;
3285a971
JG
69 /*
70 * Indicates whether or not an error occurred while launching the
71 * destruction of a session.
72 */
73 enum lttng_error_code destruction_status;
3e3665b8
JG
74};
75
a503e1ef
JG
76static enum lttng_error_code wait_on_path(void *path);
77
78/*
79 * Command completion handler that is used by the destroy command
80 * when a session that has a non-default shm_path is being destroyed.
81 *
82 * See comment in cmd_destroy_session() for the rationale.
83 */
84static struct destroy_completion_handler {
85 struct cmd_completion_handler handler;
86 char shm_path[member_sizeof(struct ltt_session, shm_path)];
87} destroy_completion_handler = {
88 .handler = {
89 .run = wait_on_path,
90 .data = destroy_completion_handler.shm_path
91 },
92 .shm_path = { 0 },
93};
94
95static struct cmd_completion_handler *current_completion_handler;
96
2f77fc4b
DG
97/*
98 * Used to keep a unique index for each relayd socket created where this value
99 * is associated with streams on the consumer so it can match the right relayd
d88aee68
DG
100 * to send to. It must be accessed with the relayd_net_seq_idx_lock
101 * held.
2f77fc4b 102 */
d88aee68
DG
103static pthread_mutex_t relayd_net_seq_idx_lock = PTHREAD_MUTEX_INITIALIZER;
104static uint64_t relayd_net_seq_idx;
2f77fc4b 105
7076b56e
JG
106static int validate_ust_event_name(const char *);
107static int cmd_enable_event_internal(struct ltt_session *session,
df4f5a87 108 const struct lttng_domain *domain,
7076b56e
JG
109 char *channel_name, struct lttng_event *event,
110 char *filter_expression,
111 struct lttng_filter_bytecode *filter,
112 struct lttng_event_exclusion *exclusion,
113 int wpipe);
33b9609d
JR
114static int cmd_enable_channel_internal(struct ltt_session *session,
115 const struct lttng_domain *domain,
116 const struct lttng_channel *_attr,
117 int wpipe);
7076b56e 118
2f77fc4b
DG
119/*
120 * Create a session path used by list_lttng_sessions for the case that the
121 * session consumer is on the network.
122 */
123static int build_network_session_path(char *dst, size_t size,
124 struct ltt_session *session)
125{
126 int ret, kdata_port, udata_port;
127 struct lttng_uri *kuri = NULL, *uuri = NULL, *uri = NULL;
128 char tmp_uurl[PATH_MAX], tmp_urls[PATH_MAX];
129
130 assert(session);
131 assert(dst);
132
133 memset(tmp_urls, 0, sizeof(tmp_urls));
134 memset(tmp_uurl, 0, sizeof(tmp_uurl));
135
136 kdata_port = udata_port = DEFAULT_NETWORK_DATA_PORT;
137
138 if (session->kernel_session && session->kernel_session->consumer) {
139 kuri = &session->kernel_session->consumer->dst.net.control;
140 kdata_port = session->kernel_session->consumer->dst.net.data.port;
141 }
142
143 if (session->ust_session && session->ust_session->consumer) {
144 uuri = &session->ust_session->consumer->dst.net.control;
145 udata_port = session->ust_session->consumer->dst.net.data.port;
146 }
147
148 if (uuri == NULL && kuri == NULL) {
149 uri = &session->consumer->dst.net.control;
150 kdata_port = session->consumer->dst.net.data.port;
151 } else if (kuri && uuri) {
152 ret = uri_compare(kuri, uuri);
153 if (ret) {
154 /* Not Equal */
155 uri = kuri;
156 /* Build uuri URL string */
157 ret = uri_to_str_url(uuri, tmp_uurl, sizeof(tmp_uurl));
158 if (ret < 0) {
159 goto error;
160 }
161 } else {
162 uri = kuri;
163 }
164 } else if (kuri && uuri == NULL) {
165 uri = kuri;
166 } else if (uuri && kuri == NULL) {
167 uri = uuri;
168 }
169
170 ret = uri_to_str_url(uri, tmp_urls, sizeof(tmp_urls));
171 if (ret < 0) {
172 goto error;
173 }
174
9aa9f900
DG
175 /*
176 * Do we have a UST url set. If yes, this means we have both kernel and UST
177 * to print.
178 */
9d035200 179 if (*tmp_uurl != '\0') {
2f77fc4b
DG
180 ret = snprintf(dst, size, "[K]: %s [data: %d] -- [U]: %s [data: %d]",
181 tmp_urls, kdata_port, tmp_uurl, udata_port);
182 } else {
9aa9f900 183 int dport;
bef08707 184 if (kuri || (!kuri && !uuri)) {
9aa9f900
DG
185 dport = kdata_port;
186 } else {
187 /* No kernel URI, use the UST port. */
188 dport = udata_port;
189 }
190 ret = snprintf(dst, size, "%s [data: %d]", tmp_urls, dport);
2f77fc4b
DG
191 }
192
193error:
194 return ret;
195}
196
fb83fe64
JD
197/*
198 * Get run-time attributes if the session has been started (discarded events,
199 * lost packets).
200 */
201static int get_kernel_runtime_stats(struct ltt_session *session,
202 struct ltt_kernel_channel *kchan, uint64_t *discarded_events,
203 uint64_t *lost_packets)
204{
205 int ret;
206
207 if (!session->has_been_started) {
208 ret = 0;
209 *discarded_events = 0;
210 *lost_packets = 0;
211 goto end;
212 }
213
e1f3997a 214 ret = consumer_get_discarded_events(session->id, kchan->key,
fb83fe64
JD
215 session->kernel_session->consumer,
216 discarded_events);
217 if (ret < 0) {
218 goto end;
219 }
220
e1f3997a 221 ret = consumer_get_lost_packets(session->id, kchan->key,
fb83fe64
JD
222 session->kernel_session->consumer,
223 lost_packets);
224 if (ret < 0) {
225 goto end;
226 }
227
228end:
229 return ret;
230}
231
232/*
233 * Get run-time attributes if the session has been started (discarded events,
234 * lost packets).
235 */
236static int get_ust_runtime_stats(struct ltt_session *session,
237 struct ltt_ust_channel *uchan, uint64_t *discarded_events,
238 uint64_t *lost_packets)
239{
240 int ret;
241 struct ltt_ust_session *usess;
242
a91c5803
JG
243 if (!discarded_events || !lost_packets) {
244 ret = -1;
245 goto end;
246 }
247
fb83fe64 248 usess = session->ust_session;
a905c624
JG
249 assert(discarded_events);
250 assert(lost_packets);
fb83fe64
JD
251
252 if (!usess || !session->has_been_started) {
253 *discarded_events = 0;
254 *lost_packets = 0;
255 ret = 0;
256 goto end;
257 }
258
259 if (usess->buffer_type == LTTNG_BUFFER_PER_UID) {
260 ret = ust_app_uid_get_channel_runtime_stats(usess->id,
261 &usess->buffer_reg_uid_list,
262 usess->consumer, uchan->id,
263 uchan->attr.overwrite,
264 discarded_events,
265 lost_packets);
266 } else if (usess->buffer_type == LTTNG_BUFFER_PER_PID) {
267 ret = ust_app_pid_get_channel_runtime_stats(usess,
268 uchan, usess->consumer,
269 uchan->attr.overwrite,
270 discarded_events,
271 lost_packets);
272 if (ret < 0) {
273 goto end;
274 }
275 *discarded_events += uchan->per_pid_closed_app_discarded;
276 *lost_packets += uchan->per_pid_closed_app_lost;
277 } else {
278 ERR("Unsupported buffer type");
967bc289 279 assert(0);
fb83fe64
JD
280 ret = -1;
281 goto end;
282 }
283
284end:
285 return ret;
286}
287
3c6a091f 288/*
022d91ba 289 * Create a list of agent domain events.
3c6a091f
DG
290 *
291 * Return number of events in list on success or else a negative value.
292 */
166fc586
JR
293static enum lttng_error_code list_lttng_agent_events(
294 struct agent *agt, struct lttng_dynamic_buffer *buffer,
295 unsigned int *nb_events)
3c6a091f 296{
166fc586
JR
297 enum lttng_error_code ret_code;
298 int ret = 0;
299 unsigned int local_nb_events = 0;
022d91ba 300 struct agent_event *event;
3c6a091f 301 struct lttng_ht_iter iter;
166fc586 302 unsigned long tmp;
3c6a091f 303
022d91ba 304 assert(agt);
166fc586 305 assert(buffer);
3c6a091f 306
022d91ba 307 DBG3("Listing agent events");
3c6a091f 308
e5bbf678 309 rcu_read_lock();
166fc586
JR
310 tmp = lttng_ht_get_count(agt->events);
311 if (tmp == 0) {
312 /* Early exit. */
313 goto end;
314 }
315
316 if (tmp > UINT_MAX) {
317 ret_code = LTTNG_ERR_OVERFLOW;
3c6a091f
DG
318 goto error;
319 }
320
166fc586 321 local_nb_events = (unsigned int) tmp;
b4e3ceb9 322
b4e3ceb9 323 cds_lfht_for_each_entry(agt->events->ht, &iter.iter, event, node.node) {
166fc586
JR
324 struct lttng_event *tmp = lttng_event_create();
325
326 if (!tmp) {
327 ret_code = LTTNG_ERR_NOMEM;
3c02e545
FD
328 goto error;
329 }
b4e3ceb9 330
166fc586
JR
331 if(lttng_strncpy(tmp->name, event->name, sizeof(tmp->name))) {
332 lttng_event_destroy(tmp);
333 ret_code = LTTNG_ERR_FATAL;
334 goto error;
335 }
336
337 tmp->name[sizeof(tmp->name) - 1] = '\0';
338 tmp->enabled = event->enabled;
339 tmp->loglevel = event->loglevel_value;
340 tmp->loglevel_type = event->loglevel_type;
b4e3ceb9 341
166fc586
JR
342 ret = lttng_event_serialize(tmp, 0, NULL,
343 event->filter_expression, 0, NULL, buffer,
344 NULL);
345 lttng_event_destroy(tmp);
3c02e545 346 if (ret) {
166fc586 347 ret_code = LTTNG_ERR_FATAL;
3c02e545
FD
348 goto error;
349 }
3c6a091f 350 }
3c6a091f 351
47e52862 352end:
166fc586
JR
353 ret_code = LTTNG_OK;
354 *nb_events = local_nb_events;
47e52862 355error:
166fc586
JR
356 rcu_read_unlock();
357 return ret_code;
3c6a091f
DG
358}
359
2f77fc4b
DG
360/*
361 * Create a list of ust global domain events.
362 */
166fc586 363static enum lttng_error_code list_lttng_ust_global_events(char *channel_name,
b4e3ceb9 364 struct ltt_ust_domain_global *ust_global,
166fc586
JR
365 struct lttng_dynamic_buffer *buffer,
366 unsigned int *nb_events)
2f77fc4b 367{
166fc586
JR
368 enum lttng_error_code ret_code;
369 int ret;
2f77fc4b
DG
370 struct lttng_ht_iter iter;
371 struct lttng_ht_node_str *node;
372 struct ltt_ust_channel *uchan;
373 struct ltt_ust_event *uevent;
166fc586
JR
374 unsigned long tmp;
375 unsigned int local_nb_events = 0;
376 char **exclusion_list = NULL;
377 uint32_t i;
378
379 assert(buffer);
380 assert(nb_events);
2f77fc4b
DG
381
382 DBG("Listing UST global events for channel %s", channel_name);
383
384 rcu_read_lock();
385
386 lttng_ht_lookup(ust_global->channels, (void *)channel_name, &iter);
387 node = lttng_ht_iter_get_node_str(&iter);
388 if (node == NULL) {
166fc586 389 ret_code = LTTNG_ERR_UST_CHAN_NOT_FOUND;
d31d3e8c 390 goto end;
2f77fc4b
DG
391 }
392
393 uchan = caa_container_of(&node->node, struct ltt_ust_channel, node.node);
394
166fc586
JR
395 tmp = lttng_ht_get_count(uchan->events);
396 if (tmp == 0) {
397 /* Early exit. */
398 ret_code = LTTNG_OK;
d31d3e8c 399 goto end;
2f77fc4b
DG
400 }
401
166fc586
JR
402 if (tmp > UINT_MAX) {
403 ret_code = LTTNG_ERR_OVERFLOW;
404 goto error;
405 }
406
407 local_nb_events = (unsigned int) tmp;
408
409 DBG3("Listing UST global %d events", *nb_events);
2f77fc4b 410
b4e3ceb9 411 cds_lfht_for_each_entry(uchan->events->ht, &iter.iter, uevent, node.node) {
166fc586
JR
412 struct lttng_event *tmp = NULL;
413
b4e3ceb9 414 if (uevent->internal) {
166fc586
JR
415 /* This event should remain hidden from clients */
416 local_nb_events--;
b4e3ceb9
PP
417 continue;
418 }
419
166fc586
JR
420 /* Prepare exclusion list. */
421 if (uevent->exclusion && uevent->exclusion->count > 0) {
422 exclusion_list = zmalloc(sizeof(char *) * uevent->exclusion->count);
423 if (!exclusion_list) {
424 goto end;
425 }
426 for (i = 0; i < uevent->exclusion->count; i++) {
427 exclusion_list[i] = (char *) &(uevent->exclusion->names[i]);
428 }
3c02e545 429 }
2f77fc4b 430
166fc586
JR
431 tmp = lttng_event_create();
432 if (!tmp) {
433 ret_code = LTTNG_ERR_NOMEM;
434 goto end;
435 }
b4e3ceb9 436
166fc586
JR
437 if (lttng_strncpy(tmp->name, uevent->attr.name,
438 LTTNG_SYMBOL_NAME_LEN)) {
439 ret_code = LTTNG_ERR_FATAL;
440 lttng_event_destroy(tmp);
441 goto end;
3c442be3 442 }
166fc586
JR
443
444 tmp->name[LTTNG_SYMBOL_NAME_LEN - 1] = '\0';
445 tmp->enabled = uevent->enabled;
2f77fc4b
DG
446
447 switch (uevent->attr.instrumentation) {
448 case LTTNG_UST_TRACEPOINT:
166fc586 449 tmp->type = LTTNG_EVENT_TRACEPOINT;
2f77fc4b
DG
450 break;
451 case LTTNG_UST_PROBE:
166fc586 452 tmp->type = LTTNG_EVENT_PROBE;
2f77fc4b
DG
453 break;
454 case LTTNG_UST_FUNCTION:
166fc586 455 tmp->type = LTTNG_EVENT_FUNCTION;
2f77fc4b
DG
456 break;
457 }
458
166fc586 459 tmp->loglevel = uevent->attr.loglevel;
2f77fc4b
DG
460 switch (uevent->attr.loglevel_type) {
461 case LTTNG_UST_LOGLEVEL_ALL:
166fc586 462 tmp->loglevel_type = LTTNG_EVENT_LOGLEVEL_ALL;
2f77fc4b
DG
463 break;
464 case LTTNG_UST_LOGLEVEL_RANGE:
166fc586 465 tmp->loglevel_type = LTTNG_EVENT_LOGLEVEL_RANGE;
2f77fc4b
DG
466 break;
467 case LTTNG_UST_LOGLEVEL_SINGLE:
166fc586 468 tmp->loglevel_type = LTTNG_EVENT_LOGLEVEL_SINGLE;
2f77fc4b
DG
469 break;
470 }
471 if (uevent->filter) {
166fc586 472 tmp->filter = 1;
2f77fc4b 473 }
4634f12e 474 if (uevent->exclusion) {
166fc586 475 tmp->exclusion = 1;
4634f12e 476 }
b4e3ceb9 477
166fc586
JR
478 /*
479 * We do not care about the filter bytecode and the fd from the
480 * userspace_probe_location.
481 */
482 ret = lttng_event_serialize(tmp,
483 exclusion_list ? uevent->exclusion->count : 0,
484 exclusion_list, uevent->filter_expression, 0,
485 NULL, buffer, NULL);
486 lttng_event_destroy(tmp);
487 free(exclusion_list);
488 exclusion_list = NULL;
3c02e545 489 if (ret) {
166fc586
JR
490 ret_code = LTTNG_ERR_FATAL;
491 goto error;
3c02e545 492 }
2f77fc4b
DG
493 }
494
d31d3e8c 495end:
166fc586
JR
496 /* nb_events is already set at this point. */
497 ret_code = LTTNG_OK;
498 *nb_events = local_nb_events;
499error:
500 free(exclusion_list);
2f77fc4b 501 rcu_read_unlock();
166fc586 502 return ret_code;
2f77fc4b
DG
503}
504
505/*
506 * Fill lttng_event array of all kernel events in the channel.
507 */
166fc586 508static enum lttng_error_code list_lttng_kernel_events(char *channel_name,
b4e3ceb9 509 struct ltt_kernel_session *kernel_session,
166fc586
JR
510 struct lttng_dynamic_buffer *payload,
511 unsigned int *nb_events)
2f77fc4b 512{
166fc586
JR
513 enum lttng_error_code ret_code;
514 int ret;
2f77fc4b
DG
515 struct ltt_kernel_event *event;
516 struct ltt_kernel_channel *kchan;
166fc586
JR
517
518 assert(payload);
2f77fc4b
DG
519
520 kchan = trace_kernel_get_channel_by_name(channel_name, kernel_session);
521 if (kchan == NULL) {
166fc586
JR
522 ret_code = LTTNG_ERR_KERN_CHAN_NOT_FOUND;
523 goto end;
2f77fc4b
DG
524 }
525
166fc586 526 *nb_events = kchan->event_count;
2f77fc4b
DG
527
528 DBG("Listing events for channel %s", kchan->channel->name);
529
166fc586
JR
530 if (*nb_events == 0) {
531 ret_code = LTTNG_OK;
db906c12 532 goto end;
2f77fc4b
DG
533 }
534
166fc586
JR
535 /* Kernel channels */
536 cds_list_for_each_entry(event, &kchan->events_list.head , list) {
537 struct lttng_event *tmp = lttng_event_create();
538
539 if (!tmp) {
540 ret_code = LTTNG_ERR_NOMEM;
541 goto end;
3c02e545 542 }
b4e3ceb9 543
166fc586
JR
544 if (lttng_strncpy(tmp->name, event->event->name, LTTNG_SYMBOL_NAME_LEN)) {
545 lttng_event_destroy(tmp);
546 ret_code = LTTNG_ERR_FATAL;
547 goto end;
2f77fc4b 548
166fc586 549 }
b4e3ceb9 550
166fc586
JR
551 tmp->name[LTTNG_SYMBOL_NAME_LEN - 1] = '\0';
552 tmp->enabled = event->enabled;
553 tmp->filter = (unsigned char) !!event->filter_expression;
2f77fc4b
DG
554
555 switch (event->event->instrumentation) {
556 case LTTNG_KERNEL_TRACEPOINT:
166fc586 557 tmp->type = LTTNG_EVENT_TRACEPOINT;
2f77fc4b 558 break;
2f77fc4b 559 case LTTNG_KERNEL_KRETPROBE:
166fc586
JR
560 tmp->type = LTTNG_EVENT_FUNCTION;
561 memcpy(&tmp->attr.probe, &event->event->u.kprobe,
1896972b
DG
562 sizeof(struct lttng_kernel_kprobe));
563 break;
564 case LTTNG_KERNEL_KPROBE:
166fc586
JR
565 tmp->type = LTTNG_EVENT_PROBE;
566 memcpy(&tmp->attr.probe, &event->event->u.kprobe,
2f77fc4b
DG
567 sizeof(struct lttng_kernel_kprobe));
568 break;
b955b4d4 569 case LTTNG_KERNEL_UPROBE:
166fc586 570 tmp->type = LTTNG_EVENT_USERSPACE_PROBE;
b955b4d4 571 break;
2f77fc4b 572 case LTTNG_KERNEL_FUNCTION:
166fc586
JR
573 tmp->type = LTTNG_EVENT_FUNCTION;
574 memcpy(&(tmp->attr.ftrace), &event->event->u.ftrace,
2f77fc4b
DG
575 sizeof(struct lttng_kernel_function));
576 break;
577 case LTTNG_KERNEL_NOOP:
166fc586 578 tmp->type = LTTNG_EVENT_NOOP;
2f77fc4b
DG
579 break;
580 case LTTNG_KERNEL_SYSCALL:
166fc586 581 tmp->type = LTTNG_EVENT_SYSCALL;
2f77fc4b
DG
582 break;
583 case LTTNG_KERNEL_ALL:
1ab8c2ad
FD
584 /* fall-through. */
585 default:
2f77fc4b
DG
586 assert(0);
587 break;
588 }
b4e3ceb9 589
166fc586
JR
590 if (event->userspace_probe_location) {
591 struct lttng_userspace_probe_location *location_copy =
592 lttng_userspace_probe_location_copy(
593 event->userspace_probe_location);
594 if (!location_copy) {
595 lttng_event_destroy(tmp);
596 ret_code = LTTNG_ERR_NOMEM;
597 goto end;
598 }
599 ret = lttng_event_set_userspace_probe_location(
600 tmp, location_copy);
601 if (ret) {
602 lttng_event_destroy(tmp);
603 lttng_userspace_probe_location_destroy(
604 location_copy);
605 ret_code = LTTNG_ERR_INVALID;
606 goto end;
607 }
608 }
609
610 ret = lttng_event_serialize(tmp, 0, NULL,
611 event->filter_expression, 0, NULL, payload,
612 NULL);
613 lttng_event_destroy(tmp);
3c02e545 614 if (ret) {
166fc586
JR
615 ret_code = LTTNG_ERR_FATAL;
616 goto end;
3c02e545 617 }
2f77fc4b
DG
618 }
619
166fc586 620 ret_code = LTTNG_OK;
db906c12 621end:
166fc586 622 return ret_code;
2f77fc4b
DG
623}
624
625/*
626 * Add URI so the consumer output object. Set the correct path depending on the
627 * domain adding the default trace directory.
628 */
b178f53e
JG
629static enum lttng_error_code add_uri_to_consumer(
630 const struct ltt_session *session,
631 struct consumer_output *consumer,
632 struct lttng_uri *uri, enum lttng_domain_type domain)
2f77fc4b 633{
b178f53e
JG
634 int ret;
635 enum lttng_error_code ret_code = LTTNG_OK;
2f77fc4b
DG
636
637 assert(uri);
638
639 if (consumer == NULL) {
640 DBG("No consumer detected. Don't add URI. Stopping.");
b178f53e 641 ret_code = LTTNG_ERR_NO_CONSUMER;
2f77fc4b
DG
642 goto error;
643 }
644
645 switch (domain) {
646 case LTTNG_DOMAIN_KERNEL:
b178f53e
JG
647 ret = lttng_strncpy(consumer->domain_subdir,
648 DEFAULT_KERNEL_TRACE_DIR,
649 sizeof(consumer->domain_subdir));
2f77fc4b
DG
650 break;
651 case LTTNG_DOMAIN_UST:
b178f53e
JG
652 ret = lttng_strncpy(consumer->domain_subdir,
653 DEFAULT_UST_TRACE_DIR,
654 sizeof(consumer->domain_subdir));
2f77fc4b
DG
655 break;
656 default:
657 /*
b178f53e
JG
658 * This case is possible is we try to add the URI to the global
659 * tracing session consumer object which in this case there is
660 * no subdir.
2f77fc4b 661 */
b178f53e
JG
662 memset(consumer->domain_subdir, 0,
663 sizeof(consumer->domain_subdir));
664 ret = 0;
665 }
666 if (ret) {
667 ERR("Failed to initialize consumer output domain subdirectory");
668 ret_code = LTTNG_ERR_FATAL;
669 goto error;
2f77fc4b
DG
670 }
671
672 switch (uri->dtype) {
673 case LTTNG_DST_IPV4:
674 case LTTNG_DST_IPV6:
675 DBG2("Setting network URI to consumer");
676
df75acac
DG
677 if (consumer->type == CONSUMER_DST_NET) {
678 if ((uri->stype == LTTNG_STREAM_CONTROL &&
785d2d0d
DG
679 consumer->dst.net.control_isset) ||
680 (uri->stype == LTTNG_STREAM_DATA &&
681 consumer->dst.net.data_isset)) {
b178f53e 682 ret_code = LTTNG_ERR_URL_EXIST;
df75acac
DG
683 goto error;
684 }
685 } else {
b178f53e 686 memset(&consumer->dst, 0, sizeof(consumer->dst));
785d2d0d
DG
687 }
688
2f77fc4b 689 /* Set URI into consumer output object */
b178f53e 690 ret = consumer_set_network_uri(session, consumer, uri);
2f77fc4b 691 if (ret < 0) {
b178f53e 692 ret_code = -ret;
2f77fc4b
DG
693 goto error;
694 } else if (ret == 1) {
695 /*
696 * URI was the same in the consumer so we do not append the subdir
697 * again so to not duplicate output dir.
698 */
b178f53e 699 ret_code = LTTNG_OK;
2f77fc4b
DG
700 goto error;
701 }
2f77fc4b
DG
702 break;
703 case LTTNG_DST_PATH:
b178f53e
JG
704 if (*uri->dst.path != '/' || strstr(uri->dst.path, "../")) {
705 ret_code = LTTNG_ERR_INVALID;
9ac05d92
MD
706 goto error;
707 }
b178f53e
JG
708 DBG2("Setting trace directory path from URI to %s",
709 uri->dst.path);
710 memset(&consumer->dst, 0, sizeof(consumer->dst));
711
712 ret = lttng_strncpy(consumer->dst.session_root_path,
713 uri->dst.path,
714 sizeof(consumer->dst.session_root_path));
4df41cad
JG
715 if (ret) {
716 ret_code = LTTNG_ERR_FATAL;
717 goto error;
718 }
2f77fc4b
DG
719 consumer->type = CONSUMER_DST_LOCAL;
720 break;
721 }
722
b178f53e 723 ret_code = LTTNG_OK;
2f77fc4b 724error:
b178f53e 725 return ret_code;
2f77fc4b
DG
726}
727
728/*
729 * Init tracing by creating trace directory and sending fds kernel consumer.
730 */
731static int init_kernel_tracing(struct ltt_kernel_session *session)
732{
733 int ret = 0;
734 struct lttng_ht_iter iter;
735 struct consumer_socket *socket;
736
737 assert(session);
738
e7fe706f
DG
739 rcu_read_lock();
740
2f77fc4b
DG
741 if (session->consumer_fds_sent == 0 && session->consumer != NULL) {
742 cds_lfht_for_each_entry(session->consumer->socks->ht, &iter.iter,
743 socket, node.node) {
2f77fc4b 744 pthread_mutex_lock(socket->lock);
f50f23d9 745 ret = kernel_consumer_send_session(socket, session);
2f77fc4b
DG
746 pthread_mutex_unlock(socket->lock);
747 if (ret < 0) {
f73fabfd 748 ret = LTTNG_ERR_KERN_CONSUMER_FAIL;
2f77fc4b
DG
749 goto error;
750 }
751 }
752 }
753
754error:
e7fe706f 755 rcu_read_unlock();
2f77fc4b
DG
756 return ret;
757}
758
759/*
760 * Create a socket to the relayd using the URI.
761 *
762 * On success, the relayd_sock pointer is set to the created socket.
9a654598 763 * Else, it remains untouched and an LTTng error code is returned.
2f77fc4b 764 */
9a654598 765static enum lttng_error_code create_connect_relayd(struct lttng_uri *uri,
b31610f2
JD
766 struct lttcomm_relayd_sock **relayd_sock,
767 struct consumer_output *consumer)
2f77fc4b
DG
768{
769 int ret;
9a654598 770 enum lttng_error_code status = LTTNG_OK;
6151a90f 771 struct lttcomm_relayd_sock *rsock;
2f77fc4b 772
6151a90f
JD
773 rsock = lttcomm_alloc_relayd_sock(uri, RELAYD_VERSION_COMM_MAJOR,
774 RELAYD_VERSION_COMM_MINOR);
775 if (!rsock) {
9a654598 776 status = LTTNG_ERR_FATAL;
2f77fc4b
DG
777 goto error;
778 }
779
ffe60014
DG
780 /*
781 * Connect to relayd so we can proceed with a session creation. This call
782 * can possibly block for an arbitrary amount of time to set the health
783 * state to be in poll execution.
784 */
785 health_poll_entry();
6151a90f 786 ret = relayd_connect(rsock);
ffe60014 787 health_poll_exit();
2f77fc4b
DG
788 if (ret < 0) {
789 ERR("Unable to reach lttng-relayd");
9a654598 790 status = LTTNG_ERR_RELAYD_CONNECT_FAIL;
2f77fc4b
DG
791 goto free_sock;
792 }
793
794 /* Create socket for control stream. */
795 if (uri->stype == LTTNG_STREAM_CONTROL) {
eacb7b6f
MD
796 uint64_t result_flags;
797
2f77fc4b
DG
798 DBG3("Creating relayd stream socket from URI");
799
800 /* Check relayd version */
6151a90f 801 ret = relayd_version_check(rsock);
67d5aa28 802 if (ret == LTTNG_ERR_RELAYD_VERSION_FAIL) {
9a654598 803 status = LTTNG_ERR_RELAYD_VERSION_FAIL;
67d5aa28
JD
804 goto close_sock;
805 } else if (ret < 0) {
806 ERR("Unable to reach lttng-relayd");
9a654598 807 status = LTTNG_ERR_RELAYD_CONNECT_FAIL;
2f77fc4b
DG
808 goto close_sock;
809 }
b31610f2
JD
810 consumer->relay_major_version = rsock->major;
811 consumer->relay_minor_version = rsock->minor;
eacb7b6f
MD
812 ret = relayd_get_configuration(rsock, 0,
813 &result_flags);
814 if (ret < 0) {
815 ERR("Unable to get relayd configuration");
816 status = LTTNG_ERR_RELAYD_CONNECT_FAIL;
817 goto close_sock;
818 }
819 if (result_flags & LTTCOMM_RELAYD_CONFIGURATION_FLAG_CLEAR_ALLOWED) {
820 consumer->relay_allows_clear = true;
821 }
2f77fc4b
DG
822 } else if (uri->stype == LTTNG_STREAM_DATA) {
823 DBG3("Creating relayd data socket from URI");
824 } else {
825 /* Command is not valid */
826 ERR("Relayd invalid stream type: %d", uri->stype);
9a654598 827 status = LTTNG_ERR_INVALID;
2f77fc4b
DG
828 goto close_sock;
829 }
830
6151a90f 831 *relayd_sock = rsock;
2f77fc4b 832
9a654598 833 return status;
2f77fc4b
DG
834
835close_sock:
6151a90f
JD
836 /* The returned value is not useful since we are on an error path. */
837 (void) relayd_close(rsock);
2f77fc4b 838free_sock:
6151a90f 839 free(rsock);
2f77fc4b 840error:
9a654598 841 return status;
2f77fc4b
DG
842}
843
844/*
845 * Connect to the relayd using URI and send the socket to the right consumer.
43fade62
JG
846 *
847 * The consumer socket lock must be held by the caller.
9a654598
JG
848 *
849 * Returns LTTNG_OK on success or an LTTng error code on failure.
2f77fc4b 850 */
9a654598
JG
851static enum lttng_error_code send_consumer_relayd_socket(
852 unsigned int session_id,
3044f922 853 struct lttng_uri *relayd_uri,
56a37563 854 struct consumer_output *consumer,
d3e2ba59 855 struct consumer_socket *consumer_sock,
fb9a95c4 856 const char *session_name, const char *hostname,
6fa5fe7c 857 const char *base_path, int session_live_timer,
db1da059 858 const uint64_t *current_chunk_id,
46ef2188
MD
859 time_t session_creation_time,
860 bool session_name_contains_creation_time)
2f77fc4b
DG
861{
862 int ret;
6151a90f 863 struct lttcomm_relayd_sock *rsock = NULL;
9a654598 864 enum lttng_error_code status;
2f77fc4b 865
ffe60014 866 /* Connect to relayd and make version check if uri is the control. */
9a654598
JG
867 status = create_connect_relayd(relayd_uri, &rsock, consumer);
868 if (status != LTTNG_OK) {
9e218353 869 goto relayd_comm_error;
ffe60014 870 }
6151a90f 871 assert(rsock);
ffe60014 872
2f77fc4b 873 /* Set the network sequence index if not set. */
d88aee68
DG
874 if (consumer->net_seq_index == (uint64_t) -1ULL) {
875 pthread_mutex_lock(&relayd_net_seq_idx_lock);
2f77fc4b
DG
876 /*
877 * Increment net_seq_idx because we are about to transfer the
878 * new relayd socket to the consumer.
d88aee68 879 * Assign unique key so the consumer can match streams.
2f77fc4b 880 */
d88aee68
DG
881 consumer->net_seq_index = ++relayd_net_seq_idx;
882 pthread_mutex_unlock(&relayd_net_seq_idx_lock);
2f77fc4b
DG
883 }
884
2f77fc4b 885 /* Send relayd socket to consumer. */
6151a90f 886 ret = consumer_send_relayd_socket(consumer_sock, rsock, consumer,
d3e2ba59 887 relayd_uri->stype, session_id,
6fa5fe7c
MD
888 session_name, hostname, base_path,
889 session_live_timer, current_chunk_id,
46ef2188 890 session_creation_time, session_name_contains_creation_time);
2f77fc4b 891 if (ret < 0) {
9a654598 892 status = LTTNG_ERR_ENABLE_CONSUMER_FAIL;
2f77fc4b
DG
893 goto close_sock;
894 }
895
c890b720
DG
896 /* Flag that the corresponding socket was sent. */
897 if (relayd_uri->stype == LTTNG_STREAM_CONTROL) {
ffe60014 898 consumer_sock->control_sock_sent = 1;
c890b720 899 } else if (relayd_uri->stype == LTTNG_STREAM_DATA) {
ffe60014 900 consumer_sock->data_sock_sent = 1;
c890b720
DG
901 }
902
2f77fc4b
DG
903 /*
904 * Close socket which was dup on the consumer side. The session daemon does
905 * NOT keep track of the relayd socket(s) once transfer to the consumer.
906 */
907
908close_sock:
9a654598 909 if (status != LTTNG_OK) {
ffe60014 910 /*
d9078d0c
DG
911 * The consumer output for this session should not be used anymore
912 * since the relayd connection failed thus making any tracing or/and
913 * streaming not usable.
ffe60014 914 */
d9078d0c 915 consumer->enabled = 0;
ffe60014 916 }
9e218353
JR
917 (void) relayd_close(rsock);
918 free(rsock);
919
920relayd_comm_error:
9a654598 921 return status;
2f77fc4b
DG
922}
923
924/*
925 * Send both relayd sockets to a specific consumer and domain. This is a
926 * helper function to facilitate sending the information to the consumer for a
927 * session.
43fade62
JG
928 *
929 * The consumer socket lock must be held by the caller.
9a654598
JG
930 *
931 * Returns LTTNG_OK, or an LTTng error code on failure.
2f77fc4b 932 */
9a654598
JG
933static enum lttng_error_code send_consumer_relayd_sockets(
934 enum lttng_domain_type domain,
56a37563 935 unsigned int session_id, struct consumer_output *consumer,
fb9a95c4 936 struct consumer_socket *sock, const char *session_name,
6fa5fe7c 937 const char *hostname, const char *base_path, int session_live_timer,
46ef2188
MD
938 const uint64_t *current_chunk_id, time_t session_creation_time,
939 bool session_name_contains_creation_time)
2f77fc4b 940{
9a654598 941 enum lttng_error_code status = LTTNG_OK;
2f77fc4b 942
2f77fc4b 943 assert(consumer);
6dc3064a 944 assert(sock);
2f77fc4b 945
2f77fc4b 946 /* Sending control relayd socket. */
ffe60014 947 if (!sock->control_sock_sent) {
9a654598 948 status = send_consumer_relayd_socket(session_id,
d3e2ba59 949 &consumer->dst.net.control, consumer, sock,
6fa5fe7c 950 session_name, hostname, base_path, session_live_timer,
46ef2188
MD
951 current_chunk_id, session_creation_time,
952 session_name_contains_creation_time);
9a654598 953 if (status != LTTNG_OK) {
c890b720
DG
954 goto error;
955 }
2f77fc4b
DG
956 }
957
958 /* Sending data relayd socket. */
ffe60014 959 if (!sock->data_sock_sent) {
9a654598 960 status = send_consumer_relayd_socket(session_id,
d3e2ba59 961 &consumer->dst.net.data, consumer, sock,
6fa5fe7c 962 session_name, hostname, base_path, session_live_timer,
46ef2188
MD
963 current_chunk_id, session_creation_time,
964 session_name_contains_creation_time);
9a654598 965 if (status != LTTNG_OK) {
c890b720
DG
966 goto error;
967 }
2f77fc4b
DG
968 }
969
2f77fc4b 970error:
9a654598 971 return status;
2f77fc4b
DG
972}
973
974/*
975 * Setup relayd connections for a tracing session. First creates the socket to
976 * the relayd and send them to the right domain consumer. Consumer type MUST be
977 * network.
978 */
ffe60014 979int cmd_setup_relayd(struct ltt_session *session)
2f77fc4b 980{
f73fabfd 981 int ret = LTTNG_OK;
2f77fc4b
DG
982 struct ltt_ust_session *usess;
983 struct ltt_kernel_session *ksess;
984 struct consumer_socket *socket;
985 struct lttng_ht_iter iter;
1e791a74 986 LTTNG_OPTIONAL(uint64_t) current_chunk_id = {};
2f77fc4b 987
1e791a74 988 assert(session);
2f77fc4b
DG
989
990 usess = session->ust_session;
991 ksess = session->kernel_session;
992
785d2d0d 993 DBG("Setting relayd for session %s", session->name);
2f77fc4b 994
aa997ea3 995 rcu_read_lock();
1e791a74
JG
996 if (session->current_trace_chunk) {
997 enum lttng_trace_chunk_status status = lttng_trace_chunk_get_id(
998 session->current_trace_chunk, &current_chunk_id.value);
999
1000 if (status == LTTNG_TRACE_CHUNK_STATUS_OK) {
1001 current_chunk_id.is_set = true;
1002 } else {
1003 ERR("Failed to get current trace chunk id");
1004 ret = LTTNG_ERR_UNK;
1005 goto error;
1006 }
1007 }
1008
2f77fc4b
DG
1009 if (usess && usess->consumer && usess->consumer->type == CONSUMER_DST_NET
1010 && usess->consumer->enabled) {
1011 /* For each consumer socket, send relayd sockets */
1012 cds_lfht_for_each_entry(usess->consumer->socks->ht, &iter.iter,
1013 socket, node.node) {
2f77fc4b 1014 pthread_mutex_lock(socket->lock);
6dc3064a 1015 ret = send_consumer_relayd_sockets(LTTNG_DOMAIN_UST, session->id,
d3e2ba59
JD
1016 usess->consumer, socket,
1017 session->name, session->hostname,
6fa5fe7c 1018 session->base_path,
1e791a74 1019 session->live_timer,
db1da059 1020 current_chunk_id.is_set ? &current_chunk_id.value : NULL,
46ef2188
MD
1021 session->creation_time,
1022 session->name_contains_creation_time);
2f77fc4b 1023 pthread_mutex_unlock(socket->lock);
f73fabfd 1024 if (ret != LTTNG_OK) {
2f77fc4b
DG
1025 goto error;
1026 }
6dc3064a
DG
1027 /* Session is now ready for network streaming. */
1028 session->net_handle = 1;
2f77fc4b 1029 }
b31610f2
JD
1030 session->consumer->relay_major_version =
1031 usess->consumer->relay_major_version;
1032 session->consumer->relay_minor_version =
1033 usess->consumer->relay_minor_version;
eacb7b6f
MD
1034 session->consumer->relay_allows_clear =
1035 usess->consumer->relay_allows_clear;
2f77fc4b
DG
1036 }
1037
1038 if (ksess && ksess->consumer && ksess->consumer->type == CONSUMER_DST_NET
1039 && ksess->consumer->enabled) {
1040 cds_lfht_for_each_entry(ksess->consumer->socks->ht, &iter.iter,
1041 socket, node.node) {
2f77fc4b 1042 pthread_mutex_lock(socket->lock);
6dc3064a 1043 ret = send_consumer_relayd_sockets(LTTNG_DOMAIN_KERNEL, session->id,
d3e2ba59
JD
1044 ksess->consumer, socket,
1045 session->name, session->hostname,
6fa5fe7c 1046 session->base_path,
1e791a74 1047 session->live_timer,
db1da059 1048 current_chunk_id.is_set ? &current_chunk_id.value : NULL,
46ef2188
MD
1049 session->creation_time,
1050 session->name_contains_creation_time);
2f77fc4b 1051 pthread_mutex_unlock(socket->lock);
f73fabfd 1052 if (ret != LTTNG_OK) {
2f77fc4b
DG
1053 goto error;
1054 }
6dc3064a
DG
1055 /* Session is now ready for network streaming. */
1056 session->net_handle = 1;
2f77fc4b 1057 }
b31610f2
JD
1058 session->consumer->relay_major_version =
1059 ksess->consumer->relay_major_version;
1060 session->consumer->relay_minor_version =
1061 ksess->consumer->relay_minor_version;
eacb7b6f
MD
1062 session->consumer->relay_allows_clear =
1063 ksess->consumer->relay_allows_clear;
2f77fc4b
DG
1064 }
1065
1066error:
e7fe706f 1067 rcu_read_unlock();
2f77fc4b
DG
1068 return ret;
1069}
1070
9b6c7ec5
DG
1071/*
1072 * Start a kernel session by opening all necessary streams.
1073 */
4dbe1875 1074int start_kernel_session(struct ltt_kernel_session *ksess)
9b6c7ec5
DG
1075{
1076 int ret;
1077 struct ltt_kernel_channel *kchan;
1078
1079 /* Open kernel metadata */
07b86b52 1080 if (ksess->metadata == NULL && ksess->output_traces) {
9b6c7ec5
DG
1081 ret = kernel_open_metadata(ksess);
1082 if (ret < 0) {
1083 ret = LTTNG_ERR_KERN_META_FAIL;
1084 goto error;
1085 }
1086 }
1087
1088 /* Open kernel metadata stream */
07b86b52 1089 if (ksess->metadata && ksess->metadata_stream_fd < 0) {
9b6c7ec5
DG
1090 ret = kernel_open_metadata_stream(ksess);
1091 if (ret < 0) {
1092 ERR("Kernel create metadata stream failed");
1093 ret = LTTNG_ERR_KERN_STREAM_FAIL;
1094 goto error;
1095 }
1096 }
1097
1098 /* For each channel */
1099 cds_list_for_each_entry(kchan, &ksess->channel_list.head, list) {
1100 if (kchan->stream_count == 0) {
1101 ret = kernel_open_channel_stream(kchan);
1102 if (ret < 0) {
1103 ret = LTTNG_ERR_KERN_STREAM_FAIL;
1104 goto error;
1105 }
1106 /* Update the stream global counter */
1107 ksess->stream_count_global += ret;
1108 }
1109 }
1110
1111 /* Setup kernel consumer socket and send fds to it */
1112 ret = init_kernel_tracing(ksess);
e43c41c5 1113 if (ret != 0) {
9b6c7ec5
DG
1114 ret = LTTNG_ERR_KERN_START_FAIL;
1115 goto error;
1116 }
1117
1118 /* This start the kernel tracing */
1119 ret = kernel_start_session(ksess);
1120 if (ret < 0) {
1121 ret = LTTNG_ERR_KERN_START_FAIL;
1122 goto error;
1123 }
1124
1125 /* Quiescent wait after starting trace */
7d268848 1126 kernel_wait_quiescent();
9b6c7ec5 1127
14fb1ebe 1128 ksess->active = 1;
9b6c7ec5
DG
1129
1130 ret = LTTNG_OK;
1131
1132error:
1133 return ret;
1134}
1135
4dbe1875
MD
1136int stop_kernel_session(struct ltt_kernel_session *ksess)
1137{
1138 struct ltt_kernel_channel *kchan;
1139 bool error_occurred = false;
1140 int ret;
1141
1142 if (!ksess || !ksess->active) {
1143 return LTTNG_OK;
1144 }
1145 DBG("Stopping kernel tracing");
1146
1147 ret = kernel_stop_session(ksess);
1148 if (ret < 0) {
1149 ret = LTTNG_ERR_KERN_STOP_FAIL;
1150 goto error;
1151 }
1152
1153 kernel_wait_quiescent();
1154
1155 /* Flush metadata after stopping (if exists) */
1156 if (ksess->metadata_stream_fd >= 0) {
1157 ret = kernel_metadata_flush_buffer(ksess->metadata_stream_fd);
1158 if (ret < 0) {
1159 ERR("Kernel metadata flush failed");
1160 error_occurred = true;
1161 }
1162 }
1163
1164 /* Flush all buffers after stopping */
1165 cds_list_for_each_entry(kchan, &ksess->channel_list.head, list) {
1166 ret = kernel_flush_buffer(kchan);
1167 if (ret < 0) {
1168 ERR("Kernel flush buffer error");
1169 error_occurred = true;
1170 }
1171 }
1172
1173 ksess->active = 0;
1174 if (error_occurred) {
1175 ret = LTTNG_ERR_UNK;
1176 } else {
1177 ret = LTTNG_OK;
1178 }
1179error:
1180 return ret;
1181}
1182
2f77fc4b
DG
1183/*
1184 * Command LTTNG_DISABLE_CHANNEL processed by the client thread.
1185 */
56a37563
JG
1186int cmd_disable_channel(struct ltt_session *session,
1187 enum lttng_domain_type domain, char *channel_name)
2f77fc4b
DG
1188{
1189 int ret;
1190 struct ltt_ust_session *usess;
1191
1192 usess = session->ust_session;
1193
2223c96f
DG
1194 rcu_read_lock();
1195
2f77fc4b
DG
1196 switch (domain) {
1197 case LTTNG_DOMAIN_KERNEL:
1198 {
1199 ret = channel_kernel_disable(session->kernel_session,
1200 channel_name);
f73fabfd 1201 if (ret != LTTNG_OK) {
2f77fc4b
DG
1202 goto error;
1203 }
1204
7d268848 1205 kernel_wait_quiescent();
2f77fc4b
DG
1206 break;
1207 }
1208 case LTTNG_DOMAIN_UST:
1209 {
1210 struct ltt_ust_channel *uchan;
1211 struct lttng_ht *chan_ht;
1212
1213 chan_ht = usess->domain_global.channels;
1214
1215 uchan = trace_ust_find_channel_by_name(chan_ht, channel_name);
1216 if (uchan == NULL) {
f73fabfd 1217 ret = LTTNG_ERR_UST_CHAN_NOT_FOUND;
2f77fc4b
DG
1218 goto error;
1219 }
1220
7972aab2 1221 ret = channel_ust_disable(usess, uchan);
f73fabfd 1222 if (ret != LTTNG_OK) {
2f77fc4b
DG
1223 goto error;
1224 }
1225 break;
1226 }
2f77fc4b 1227 default:
f73fabfd 1228 ret = LTTNG_ERR_UNKNOWN_DOMAIN;
2f77fc4b
DG
1229 goto error;
1230 }
1231
f73fabfd 1232 ret = LTTNG_OK;
2f77fc4b
DG
1233
1234error:
2223c96f 1235 rcu_read_unlock();
2f77fc4b
DG
1236 return ret;
1237}
1238
1239/*
1240 * Command LTTNG_ENABLE_CHANNEL processed by the client thread.
1241 *
1242 * The wpipe arguments is used as a notifier for the kernel thread.
1243 */
33b9609d
JR
1244int cmd_enable_channel(struct command_ctx *cmd_ctx, int sock, int wpipe)
1245{
1246 int ret;
1247 size_t channel_len;
1248 ssize_t sock_recv_len;
1249 struct lttng_channel *channel = NULL;
1250 struct lttng_buffer_view view;
1251 struct lttng_dynamic_buffer channel_buffer;
1252
1253 lttng_dynamic_buffer_init(&channel_buffer);
1254 channel_len = (size_t) cmd_ctx->lsm->u.channel.length;
1255 ret = lttng_dynamic_buffer_set_size(&channel_buffer, channel_len);
1256 if (ret) {
1257 ret = LTTNG_ERR_NOMEM;
1258 goto end;
1259 }
1260
1261 sock_recv_len = lttcomm_recv_unix_sock(sock, channel_buffer.data,
1262 channel_len);
1263 if (sock_recv_len < 0 || sock_recv_len != channel_len) {
1264 ERR("Failed to receive \"enable channel\" command payload");
1265 ret = LTTNG_ERR_INVALID;
1266 goto end;
1267 }
1268
1269 view = lttng_buffer_view_from_dynamic_buffer(&channel_buffer, 0, channel_len);
1270 if (!lttng_buffer_view_is_valid(&view)) {
1271 ret = LTTNG_ERR_INVALID;
1272 goto end;
1273 }
1274
1275 if (lttng_channel_create_from_buffer(&view, &channel) != channel_len) {
1276 ERR("Invalid channel payload received in \"enable channel\" command");
1277 ret = LTTNG_ERR_INVALID;
1278 goto end;
1279 }
1280
1281 ret = cmd_enable_channel_internal(cmd_ctx->session,
1282 ALIGNED_CONST_PTR(cmd_ctx->lsm->domain), channel,
1283 wpipe);
1284
1285end:
1286 lttng_dynamic_buffer_reset(&channel_buffer);
1287 lttng_channel_destroy(channel);
1288 return ret;
1289}
1290
1291static int cmd_enable_channel_internal(struct ltt_session *session,
1292 const struct lttng_domain *domain,
1293 const struct lttng_channel *_attr,
1294 int wpipe)
2f77fc4b
DG
1295{
1296 int ret;
1297 struct ltt_ust_session *usess = session->ust_session;
1298 struct lttng_ht *chan_ht;
1f345e94 1299 size_t len;
33b9609d 1300 struct lttng_channel *attr = NULL;
2f77fc4b
DG
1301
1302 assert(session);
df4f5a87 1303 assert(_attr);
7972aab2 1304 assert(domain);
2f77fc4b 1305
33b9609d
JR
1306 attr = lttng_channel_copy(_attr);
1307 if (!attr) {
1308 ret = -LTTNG_ERR_NOMEM;
1309 goto end;
1310 }
1311
1312 len = lttng_strnlen(attr->name, sizeof(attr->name));
1f345e94
PP
1313
1314 /* Validate channel name */
33b9609d
JR
1315 if (attr->name[0] == '.' ||
1316 memchr(attr->name, '/', len) != NULL) {
1f345e94
PP
1317 ret = LTTNG_ERR_INVALID_CHANNEL_NAME;
1318 goto end;
1319 }
1320
33b9609d 1321 DBG("Enabling channel %s for session %s", attr->name, session->name);
2f77fc4b 1322
03b4fdcf
DG
1323 rcu_read_lock();
1324
ecc48a90
JD
1325 /*
1326 * If the session is a live session, remove the switch timer, the
1327 * live timer does the same thing but sends also synchronisation
1328 * beacons for inactive streams.
1329 */
1330 if (session->live_timer > 0) {
33b9609d
JR
1331 attr->attr.live_timer_interval = session->live_timer;
1332 attr->attr.switch_timer_interval = 0;
ecc48a90
JD
1333 }
1334
6e21424e
JR
1335 /* Check for feature support */
1336 switch (domain->type) {
1337 case LTTNG_DOMAIN_KERNEL:
1338 {
7d268848 1339 if (kernel_supports_ring_buffer_snapshot_sample_positions() != 1) {
6e21424e
JR
1340 /* Sampling position of buffer is not supported */
1341 WARN("Kernel tracer does not support buffer monitoring. "
1342 "Setting the monitor interval timer to 0 "
1343 "(disabled) for channel '%s' of session '%s'",
33b9609d
JR
1344 attr->name, session->name);
1345 lttng_channel_set_monitor_timer_interval(attr, 0);
6e21424e
JR
1346 }
1347 break;
1348 }
1349 case LTTNG_DOMAIN_UST:
f28f9e44 1350 break;
6e21424e
JR
1351 case LTTNG_DOMAIN_JUL:
1352 case LTTNG_DOMAIN_LOG4J:
1353 case LTTNG_DOMAIN_PYTHON:
f28f9e44
JG
1354 if (!agent_tracing_is_enabled()) {
1355 DBG("Attempted to enable a channel in an agent domain but the agent thread is not running");
1356 ret = LTTNG_ERR_AGENT_TRACING_DISABLED;
1357 goto error;
1358 }
6e21424e
JR
1359 break;
1360 default:
1361 ret = LTTNG_ERR_UNKNOWN_DOMAIN;
1362 goto error;
1363 }
1364
7972aab2 1365 switch (domain->type) {
2f77fc4b
DG
1366 case LTTNG_DOMAIN_KERNEL:
1367 {
1368 struct ltt_kernel_channel *kchan;
1369
33b9609d
JR
1370 kchan = trace_kernel_get_channel_by_name(
1371 attr->name, session->kernel_session);
2f77fc4b 1372 if (kchan == NULL) {
06671f34
JR
1373 /*
1374 * Don't try to create a channel if the session has been started at
1375 * some point in time before. The tracer does not allow it.
1376 */
1377 if (session->has_been_started) {
1378 ret = LTTNG_ERR_TRACE_ALREADY_STARTED;
1379 goto error;
1380 }
1381
54213acc
JG
1382 if (session->snapshot.nb_output > 0 ||
1383 session->snapshot_mode) {
1384 /* Enforce mmap output for snapshot sessions. */
33b9609d 1385 attr->attr.output = LTTNG_EVENT_MMAP;
54213acc 1386 }
33b9609d
JR
1387 ret = channel_kernel_create(
1388 session->kernel_session, attr, wpipe);
1389 if (attr->name[0] != '\0') {
85076754
MD
1390 session->kernel_session->has_non_default_channel = 1;
1391 }
2f77fc4b
DG
1392 } else {
1393 ret = channel_kernel_enable(session->kernel_session, kchan);
1394 }
1395
f73fabfd 1396 if (ret != LTTNG_OK) {
2f77fc4b
DG
1397 goto error;
1398 }
1399
7d268848 1400 kernel_wait_quiescent();
2f77fc4b
DG
1401 break;
1402 }
1403 case LTTNG_DOMAIN_UST:
9232818f
JG
1404 case LTTNG_DOMAIN_JUL:
1405 case LTTNG_DOMAIN_LOG4J:
1406 case LTTNG_DOMAIN_PYTHON:
2f77fc4b
DG
1407 {
1408 struct ltt_ust_channel *uchan;
1409
9232818f
JG
1410 /*
1411 * FIXME
1412 *
1413 * Current agent implementation limitations force us to allow
1414 * only one channel at once in "agent" subdomains. Each
1415 * subdomain has a default channel name which must be strictly
1416 * adhered to.
1417 */
1418 if (domain->type == LTTNG_DOMAIN_JUL) {
33b9609d 1419 if (strncmp(attr->name, DEFAULT_JUL_CHANNEL_NAME,
9232818f
JG
1420 LTTNG_SYMBOL_NAME_LEN)) {
1421 ret = LTTNG_ERR_INVALID_CHANNEL_NAME;
1422 goto error;
1423 }
1424 } else if (domain->type == LTTNG_DOMAIN_LOG4J) {
33b9609d 1425 if (strncmp(attr->name, DEFAULT_LOG4J_CHANNEL_NAME,
9232818f
JG
1426 LTTNG_SYMBOL_NAME_LEN)) {
1427 ret = LTTNG_ERR_INVALID_CHANNEL_NAME;
1428 goto error;
1429 }
1430 } else if (domain->type == LTTNG_DOMAIN_PYTHON) {
33b9609d 1431 if (strncmp(attr->name, DEFAULT_PYTHON_CHANNEL_NAME,
9232818f
JG
1432 LTTNG_SYMBOL_NAME_LEN)) {
1433 ret = LTTNG_ERR_INVALID_CHANNEL_NAME;
1434 goto error;
1435 }
1436 }
1437
2f77fc4b
DG
1438 chan_ht = usess->domain_global.channels;
1439
33b9609d 1440 uchan = trace_ust_find_channel_by_name(chan_ht, attr->name);
2f77fc4b 1441 if (uchan == NULL) {
06671f34
JR
1442 /*
1443 * Don't try to create a channel if the session has been started at
1444 * some point in time before. The tracer does not allow it.
1445 */
1446 if (session->has_been_started) {
1447 ret = LTTNG_ERR_TRACE_ALREADY_STARTED;
1448 goto error;
1449 }
1450
33b9609d
JR
1451 ret = channel_ust_create(usess, attr, domain->buf_type);
1452 if (attr->name[0] != '\0') {
85076754
MD
1453 usess->has_non_default_channel = 1;
1454 }
2f77fc4b 1455 } else {
7972aab2 1456 ret = channel_ust_enable(usess, uchan);
2f77fc4b
DG
1457 }
1458 break;
1459 }
2f77fc4b 1460 default:
f73fabfd 1461 ret = LTTNG_ERR_UNKNOWN_DOMAIN;
2f77fc4b
DG
1462 goto error;
1463 }
1464
33b9609d 1465 if (ret == LTTNG_OK && attr->attr.output != LTTNG_EVENT_MMAP) {
54213acc
JG
1466 session->has_non_mmap_channel = true;
1467 }
2f77fc4b 1468error:
2223c96f 1469 rcu_read_unlock();
1f345e94 1470end:
33b9609d 1471 lttng_channel_destroy(attr);
2f77fc4b
DG
1472 return ret;
1473}
1474
f953b297
JG
1475enum lttng_error_code cmd_process_attr_tracker_get_tracking_policy(
1476 struct ltt_session *session,
1477 enum lttng_domain_type domain,
1478 enum lttng_process_attr process_attr,
1479 enum lttng_tracking_policy *policy)
1480{
1481 enum lttng_error_code ret_code = LTTNG_OK;
1482 const struct process_attr_tracker *tracker;
1483
1484 switch (domain) {
1485 case LTTNG_DOMAIN_KERNEL:
1486 if (!session->kernel_session) {
1487 ret_code = LTTNG_ERR_INVALID;
1488 goto end;
1489 }
1490 tracker = kernel_get_process_attr_tracker(
1491 session->kernel_session, process_attr);
1492 break;
1493 case LTTNG_DOMAIN_UST:
1494 if (!session->ust_session) {
1495 ret_code = LTTNG_ERR_INVALID;
1496 goto end;
1497 }
1498 tracker = trace_ust_get_process_attr_tracker(
1499 session->ust_session, process_attr);
1500 break;
1501 default:
1502 ret_code = LTTNG_ERR_UNSUPPORTED_DOMAIN;
1503 goto end;
1504 }
1505 if (tracker) {
1506 *policy = process_attr_tracker_get_tracking_policy(tracker);
1507 } else {
1508 ret_code = LTTNG_ERR_INVALID;
1509 }
1510end:
1511 return ret_code;
1512}
1513
1514enum lttng_error_code cmd_process_attr_tracker_set_tracking_policy(
1515 struct ltt_session *session,
1516 enum lttng_domain_type domain,
1517 enum lttng_process_attr process_attr,
1518 enum lttng_tracking_policy policy)
1519{
1520 enum lttng_error_code ret_code = LTTNG_OK;
1521
1522 switch (policy) {
1523 case LTTNG_TRACKING_POLICY_INCLUDE_SET:
1524 case LTTNG_TRACKING_POLICY_EXCLUDE_ALL:
1525 case LTTNG_TRACKING_POLICY_INCLUDE_ALL:
1526 break;
1527 default:
1528 ret_code = LTTNG_ERR_INVALID;
1529 goto end;
1530 }
1531
1532 switch (domain) {
1533 case LTTNG_DOMAIN_KERNEL:
1534 if (!session->kernel_session) {
1535 ret_code = LTTNG_ERR_INVALID;
1536 goto end;
1537 }
1538 ret_code = kernel_process_attr_tracker_set_tracking_policy(
1539 session->kernel_session, process_attr, policy);
1540 break;
1541 case LTTNG_DOMAIN_UST:
1542 if (!session->ust_session) {
1543 ret_code = LTTNG_ERR_INVALID;
1544 goto end;
1545 }
1546 ret_code = trace_ust_process_attr_tracker_set_tracking_policy(
1547 session->ust_session, process_attr, policy);
1548 break;
1549 default:
1550 ret_code = LTTNG_ERR_UNSUPPORTED_DOMAIN;
1551 break;
1552 }
1553end:
1554 return ret_code;
1555}
1556
1557enum lttng_error_code cmd_process_attr_tracker_inclusion_set_add_value(
1558 struct ltt_session *session,
1559 enum lttng_domain_type domain,
1560 enum lttng_process_attr process_attr,
1561 const struct process_attr_value *value)
1562{
1563 enum lttng_error_code ret_code = LTTNG_OK;
1564
1565 switch (domain) {
1566 case LTTNG_DOMAIN_KERNEL:
1567 if (!session->kernel_session) {
1568 ret_code = LTTNG_ERR_INVALID;
1569 goto end;
1570 }
1571 ret_code = kernel_process_attr_tracker_inclusion_set_add_value(
1572 session->kernel_session, process_attr, value);
1573 break;
1574 case LTTNG_DOMAIN_UST:
1575 if (!session->ust_session) {
1576 ret_code = LTTNG_ERR_INVALID;
1577 goto end;
1578 }
1579 ret_code = trace_ust_process_attr_tracker_inclusion_set_add_value(
1580 session->ust_session, process_attr, value);
1581 break;
1582 default:
1583 ret_code = LTTNG_ERR_UNSUPPORTED_DOMAIN;
1584 break;
1585 }
1586end:
1587 return ret_code;
1588}
1589
1590enum lttng_error_code cmd_process_attr_tracker_inclusion_set_remove_value(
1591 struct ltt_session *session,
1592 enum lttng_domain_type domain,
1593 enum lttng_process_attr process_attr,
1594 const struct process_attr_value *value)
1595{
1596 enum lttng_error_code ret_code = LTTNG_OK;
1597
1598 switch (domain) {
1599 case LTTNG_DOMAIN_KERNEL:
1600 if (!session->kernel_session) {
1601 ret_code = LTTNG_ERR_INVALID;
1602 goto end;
1603 }
1604 ret_code = kernel_process_attr_tracker_inclusion_set_remove_value(
1605 session->kernel_session, process_attr, value);
1606 break;
1607 case LTTNG_DOMAIN_UST:
1608 if (!session->ust_session) {
1609 ret_code = LTTNG_ERR_INVALID;
1610 goto end;
1611 }
1612 ret_code = trace_ust_process_attr_tracker_inclusion_set_remove_value(
1613 session->ust_session, process_attr, value);
1614 break;
1615 default:
1616 ret_code = LTTNG_ERR_UNSUPPORTED_DOMAIN;
1617 break;
1618 }
1619end:
1620 return ret_code;
1621}
1622
1623enum lttng_error_code cmd_process_attr_tracker_get_inclusion_set(
1624 struct ltt_session *session,
1625 enum lttng_domain_type domain,
1626 enum lttng_process_attr process_attr,
1627 struct lttng_process_attr_values **values)
1628{
1629 enum lttng_error_code ret_code = LTTNG_OK;
1630 const struct process_attr_tracker *tracker;
1631 enum process_attr_tracker_status status;
1632
1633 switch (domain) {
1634 case LTTNG_DOMAIN_KERNEL:
1635 if (!session->kernel_session) {
1636 ret_code = LTTNG_ERR_INVALID;
1637 goto end;
1638 }
1639 tracker = kernel_get_process_attr_tracker(
1640 session->kernel_session, process_attr);
1641 break;
1642 case LTTNG_DOMAIN_UST:
1643 if (!session->ust_session) {
1644 ret_code = LTTNG_ERR_INVALID;
1645 goto end;
1646 }
1647 tracker = trace_ust_get_process_attr_tracker(
1648 session->ust_session, process_attr);
1649 break;
1650 default:
1651 ret_code = LTTNG_ERR_UNSUPPORTED_DOMAIN;
1652 goto end;
1653 }
1654
1655 if (!tracker) {
1656 ret_code = LTTNG_ERR_INVALID;
1657 goto end;
1658 }
1659
1660 status = process_attr_tracker_get_inclusion_set(tracker, values);
1661 switch (status) {
1662 case PROCESS_ATTR_TRACKER_STATUS_OK:
1663 ret_code = LTTNG_OK;
1664 break;
1665 case PROCESS_ATTR_TRACKER_STATUS_INVALID_TRACKING_POLICY:
1666 ret_code = LTTNG_ERR_PROCESS_ATTR_TRACKER_INVALID_TRACKING_POLICY;
1667 break;
1668 case PROCESS_ATTR_TRACKER_STATUS_ERROR:
1669 ret_code = LTTNG_ERR_NOMEM;
1670 break;
1671 default:
1672 ret_code = LTTNG_ERR_UNK;
1673 break;
1674 }
1675
1676end:
1677 return ret_code;
1678}
1679
2f77fc4b
DG
1680/*
1681 * Command LTTNG_DISABLE_EVENT processed by the client thread.
1682 */
166fc586 1683int cmd_disable_event(struct command_ctx *cmd_ctx, int sock)
2f77fc4b
DG
1684{
1685 int ret;
166fc586 1686 size_t event_len;
df4f5a87 1687 const char *event_name;
166fc586
JR
1688 ssize_t sock_recv_len;
1689 struct lttng_event *event = NULL;
1690 struct lttng_buffer_view view;
1691 struct lttng_dynamic_buffer event_buffer;
1692 struct lttng_event_exclusion *exclusion = NULL;
1693 struct lttng_filter_bytecode *bytecode = NULL;
1694 char *filter_expression = NULL;
1695 unsigned int exclusion_count;
1696 const struct ltt_session *session = cmd_ctx->session;
1697 const char *channel_name = cmd_ctx->lsm->u.disable.channel_name;
1698 enum lttng_domain_type domain = cmd_ctx->lsm->domain.type;
1699
1700 lttng_dynamic_buffer_init(&event_buffer);
1701 event_len = (size_t) cmd_ctx->lsm->u.disable.length;
1702 ret = lttng_dynamic_buffer_set_size(&event_buffer, event_len);
1703 if (ret) {
1704 ret = LTTNG_ERR_NOMEM;
1705 goto error;
1706 }
1707
1708 sock_recv_len = lttcomm_recv_unix_sock(
1709 sock, event_buffer.data, event_len);
1710 if (sock_recv_len < 0 || sock_recv_len != event_len) {
1711 ERR("Failed to receive \"disable event\" command payload");
1712 ret = LTTNG_ERR_INVALID;
1713 goto error;
1714 }
1715
1716 view = lttng_buffer_view_from_dynamic_buffer(&event_buffer, 0, -1);
1717
1718 if (lttng_event_create_from_buffer(&view, &event,
1719 &exclusion, &filter_expression,
1720 &bytecode, sock) != event_len) {
1721 ERR("Invalid event payload received in \"disable event\" command");
1722 ret = LTTNG_ERR_INVALID;
1723 goto error;
1724 }
6e911cad 1725
18a720cd
MD
1726 DBG("Disable event command for event \'%s\'", event->name);
1727
166fc586
JR
1728 /*
1729 * Filter and exclusions are simply not handled by the
1730 * disable event command at this time.
1731 *
1732 * FIXME
1733 */
1734 (void) filter_expression;
1735 (void) exclusion;
1736 (void) exclusion_count;
1737
1738 /* Ignore the presence of filter or exclusion for the event */
1739 event->filter = 0;
1740 event->exclusion = 0;
1741
6e911cad
MD
1742 event_name = event->name;
1743
9b7431cf
JG
1744 /* Error out on unhandled search criteria */
1745 if (event->loglevel_type || event->loglevel != -1 || event->enabled
6e911cad 1746 || event->pid || event->filter || event->exclusion) {
7076b56e
JG
1747 ret = LTTNG_ERR_UNK;
1748 goto error;
6e911cad 1749 }
2f77fc4b 1750
2223c96f
DG
1751 rcu_read_lock();
1752
2f77fc4b
DG
1753 switch (domain) {
1754 case LTTNG_DOMAIN_KERNEL:
1755 {
1756 struct ltt_kernel_channel *kchan;
1757 struct ltt_kernel_session *ksess;
1758
1759 ksess = session->kernel_session;
1760
85076754
MD
1761 /*
1762 * If a non-default channel has been created in the
1763 * session, explicitely require that -c chan_name needs
1764 * to be provided.
1765 */
1766 if (ksess->has_non_default_channel && channel_name[0] == '\0') {
1767 ret = LTTNG_ERR_NEED_CHANNEL_NAME;
7076b56e 1768 goto error_unlock;
85076754
MD
1769 }
1770
2f77fc4b
DG
1771 kchan = trace_kernel_get_channel_by_name(channel_name, ksess);
1772 if (kchan == NULL) {
f73fabfd 1773 ret = LTTNG_ERR_KERN_CHAN_NOT_FOUND;
7076b56e 1774 goto error_unlock;
2f77fc4b
DG
1775 }
1776
6e911cad
MD
1777 switch (event->type) {
1778 case LTTNG_EVENT_ALL:
9550ee81 1779 case LTTNG_EVENT_TRACEPOINT:
d0ae4ea8 1780 case LTTNG_EVENT_SYSCALL:
9550ee81
JR
1781 case LTTNG_EVENT_PROBE:
1782 case LTTNG_EVENT_FUNCTION:
1783 case LTTNG_EVENT_FUNCTION_ENTRY:/* fall-through */
1784 if (event_name[0] == '\0') {
1785 ret = event_kernel_disable_event(kchan,
1786 NULL, event->type);
29c62722 1787 } else {
d0ae4ea8 1788 ret = event_kernel_disable_event(kchan,
9550ee81 1789 event_name, event->type);
29c62722 1790 }
6e911cad 1791 if (ret != LTTNG_OK) {
7076b56e 1792 goto error_unlock;
6e911cad
MD
1793 }
1794 break;
6e911cad
MD
1795 default:
1796 ret = LTTNG_ERR_UNK;
7076b56e 1797 goto error_unlock;
2f77fc4b
DG
1798 }
1799
7d268848 1800 kernel_wait_quiescent();
2f77fc4b
DG
1801 break;
1802 }
1803 case LTTNG_DOMAIN_UST:
1804 {
1805 struct ltt_ust_channel *uchan;
1806 struct ltt_ust_session *usess;
1807
1808 usess = session->ust_session;
1809
7076b56e
JG
1810 if (validate_ust_event_name(event_name)) {
1811 ret = LTTNG_ERR_INVALID_EVENT_NAME;
1812 goto error_unlock;
1813 }
1814
85076754
MD
1815 /*
1816 * If a non-default channel has been created in the
9550ee81 1817 * session, explicitly require that -c chan_name needs
85076754
MD
1818 * to be provided.
1819 */
1820 if (usess->has_non_default_channel && channel_name[0] == '\0') {
1821 ret = LTTNG_ERR_NEED_CHANNEL_NAME;
7076b56e 1822 goto error_unlock;
85076754
MD
1823 }
1824
2f77fc4b
DG
1825 uchan = trace_ust_find_channel_by_name(usess->domain_global.channels,
1826 channel_name);
1827 if (uchan == NULL) {
f73fabfd 1828 ret = LTTNG_ERR_UST_CHAN_NOT_FOUND;
7076b56e 1829 goto error_unlock;
2f77fc4b
DG
1830 }
1831
6e911cad
MD
1832 switch (event->type) {
1833 case LTTNG_EVENT_ALL:
b3639870
JR
1834 /*
1835 * An empty event name means that everything
1836 * should be disabled.
1837 */
1838 if (event->name[0] == '\0') {
1839 ret = event_ust_disable_all_tracepoints(usess, uchan);
77d536b2
JR
1840 } else {
1841 ret = event_ust_disable_tracepoint(usess, uchan,
1842 event_name);
1843 }
6e911cad 1844 if (ret != LTTNG_OK) {
7076b56e 1845 goto error_unlock;
6e911cad
MD
1846 }
1847 break;
1848 default:
1849 ret = LTTNG_ERR_UNK;
7076b56e 1850 goto error_unlock;
2f77fc4b
DG
1851 }
1852
1853 DBG3("Disable UST event %s in channel %s completed", event_name,
1854 channel_name);
1855 break;
1856 }
5cdb6027 1857 case LTTNG_DOMAIN_LOG4J:
f20baf8e 1858 case LTTNG_DOMAIN_JUL:
0e115563 1859 case LTTNG_DOMAIN_PYTHON:
f20baf8e 1860 {
fefd409b 1861 struct agent *agt;
f20baf8e
DG
1862 struct ltt_ust_session *usess = session->ust_session;
1863
1864 assert(usess);
1865
6e911cad
MD
1866 switch (event->type) {
1867 case LTTNG_EVENT_ALL:
1868 break;
1869 default:
1870 ret = LTTNG_ERR_UNK;
7076b56e 1871 goto error_unlock;
6e911cad
MD
1872 }
1873
5cdb6027 1874 agt = trace_ust_find_agent(usess, domain);
fefd409b
DG
1875 if (!agt) {
1876 ret = -LTTNG_ERR_UST_EVENT_NOT_FOUND;
7076b56e 1877 goto error_unlock;
fefd409b 1878 }
b3639870
JR
1879 /*
1880 * An empty event name means that everything
1881 * should be disabled.
1882 */
1883 if (event->name[0] == '\0') {
18a720cd
MD
1884 ret = event_agent_disable_all(usess, agt);
1885 } else {
1886 ret = event_agent_disable(usess, agt, event_name);
1887 }
f20baf8e 1888 if (ret != LTTNG_OK) {
7076b56e 1889 goto error_unlock;
f20baf8e
DG
1890 }
1891
1892 break;
1893 }
2f77fc4b 1894 default:
f73fabfd 1895 ret = LTTNG_ERR_UND;
7076b56e 1896 goto error_unlock;
2f77fc4b
DG
1897 }
1898
f73fabfd 1899 ret = LTTNG_OK;
2f77fc4b 1900
7076b56e 1901error_unlock:
2223c96f 1902 rcu_read_unlock();
7076b56e 1903error:
166fc586
JR
1904 free(exclusion);
1905 free(bytecode);
1906 free(filter_expression);
1907 lttng_event_destroy(event);
1908 lttng_dynamic_buffer_reset(&event_buffer);
1909
2f77fc4b
DG
1910 return ret;
1911}
1912
2f77fc4b
DG
1913/*
1914 * Command LTTNG_ADD_CONTEXT processed by the client thread.
1915 */
b583ad83
JR
1916
1917int cmd_add_context(struct command_ctx *cmd_ctx, int sock, int kwpipe)
2f77fc4b 1918{
b583ad83 1919 struct lttng_event_context *ctx = NULL;
d5979e4a 1920 int ret, chan_kern_created = 0, chan_ust_created = 0;
b583ad83
JR
1921 struct lttng_dynamic_buffer buffer;
1922 struct lttng_buffer_view view;
1923 size_t context_len;
1924 ssize_t sock_recv_len;
1925 enum lttng_domain_type domain = cmd_ctx->lsm->domain.type;
1926 struct ltt_session *session = cmd_ctx->session;
1927 const char *channel_name = cmd_ctx->lsm->u.context.channel_name;
1928
1929 lttng_dynamic_buffer_init(&buffer);
1930
1931 context_len = (size_t) cmd_ctx->lsm->u.context.length;
1932 ret = lttng_dynamic_buffer_set_size(&buffer, context_len);
1933 if (ret) {
1934 ret = LTTNG_ERR_NOMEM;
1935 goto end;
1936 }
1937
1938 sock_recv_len = lttcomm_recv_unix_sock(sock, buffer.data, context_len);
1939 if (sock_recv_len < 0 || sock_recv_len != context_len) {
1940 ERR("Failed to receive \"add context\" command payload");
1941 ret = LTTNG_ERR_INVALID;
1942 goto end;
1943 }
1944
1945 view = lttng_buffer_view_from_dynamic_buffer(&buffer, 0, -1);
1946
1947 if (lttng_event_context_create_from_buffer(&view, &ctx) !=
1948 context_len) {
1949 ERR("Invalid event context payload received in \"add context\" command");
1950 ret = LTTNG_ERR_INVALID;
1951 goto end;
1952 }
bdf64013 1953
9a699f7b
JR
1954 /*
1955 * Don't try to add a context if the session has been started at
1956 * some point in time before. The tracer does not allow it and would
1957 * result in a corrupted trace.
1958 */
b583ad83 1959 if (cmd_ctx->session->has_been_started) {
9a699f7b
JR
1960 ret = LTTNG_ERR_TRACE_ALREADY_STARTED;
1961 goto end;
1962 }
1963
2f77fc4b
DG
1964 switch (domain) {
1965 case LTTNG_DOMAIN_KERNEL:
979e618e
DG
1966 assert(session->kernel_session);
1967
1968 if (session->kernel_session->channel_count == 0) {
1969 /* Create default channel */
1970 ret = channel_kernel_create(session->kernel_session, NULL, kwpipe);
1971 if (ret != LTTNG_OK) {
1972 goto error;
1973 }
d5979e4a 1974 chan_kern_created = 1;
979e618e 1975 }
2f77fc4b 1976 /* Add kernel context to kernel tracer */
601d5acf 1977 ret = context_kernel_add(session->kernel_session, ctx, channel_name);
f73fabfd 1978 if (ret != LTTNG_OK) {
2f77fc4b
DG
1979 goto error;
1980 }
1981 break;
bdf64013
JG
1982 case LTTNG_DOMAIN_JUL:
1983 case LTTNG_DOMAIN_LOG4J:
1984 {
1985 /*
1986 * Validate channel name.
1987 * If no channel name is given and the domain is JUL or LOG4J,
1988 * set it to the appropriate domain-specific channel name. If
1989 * a name is provided but does not match the expexted channel
1990 * name, return an error.
1991 */
1992 if (domain == LTTNG_DOMAIN_JUL && *channel_name &&
1993 strcmp(channel_name,
1994 DEFAULT_JUL_CHANNEL_NAME)) {
1995 ret = LTTNG_ERR_UST_CHAN_NOT_FOUND;
1996 goto error;
1997 } else if (domain == LTTNG_DOMAIN_LOG4J && *channel_name &&
1998 strcmp(channel_name,
1999 DEFAULT_LOG4J_CHANNEL_NAME)) {
2000 ret = LTTNG_ERR_UST_CHAN_NOT_FOUND;
2001 goto error;
2002 }
a93b3916 2003 /* break is _not_ missing here. */
bdf64013 2004 }
2f77fc4b
DG
2005 case LTTNG_DOMAIN_UST:
2006 {
2007 struct ltt_ust_session *usess = session->ust_session;
85076754
MD
2008 unsigned int chan_count;
2009
2f77fc4b
DG
2010 assert(usess);
2011
85076754 2012 chan_count = lttng_ht_get_count(usess->domain_global.channels);
979e618e
DG
2013 if (chan_count == 0) {
2014 struct lttng_channel *attr;
2015 /* Create default channel */
0a9c6494 2016 attr = channel_new_default_attr(domain, usess->buffer_type);
979e618e
DG
2017 if (attr == NULL) {
2018 ret = LTTNG_ERR_FATAL;
2019 goto error;
2020 }
2021
7972aab2 2022 ret = channel_ust_create(usess, attr, usess->buffer_type);
979e618e
DG
2023 if (ret != LTTNG_OK) {
2024 free(attr);
2025 goto error;
2026 }
cf0bcb51 2027 channel_attr_destroy(attr);
d5979e4a 2028 chan_ust_created = 1;
979e618e
DG
2029 }
2030
601d5acf 2031 ret = context_ust_add(usess, domain, ctx, channel_name);
f73fabfd 2032 if (ret != LTTNG_OK) {
2f77fc4b
DG
2033 goto error;
2034 }
2035 break;
2036 }
2f77fc4b 2037 default:
f73fabfd 2038 ret = LTTNG_ERR_UND;
2f77fc4b
DG
2039 goto error;
2040 }
2041
bdf64013
JG
2042 ret = LTTNG_OK;
2043 goto end;
2f77fc4b
DG
2044
2045error:
d5979e4a
DG
2046 if (chan_kern_created) {
2047 struct ltt_kernel_channel *kchan =
2048 trace_kernel_get_channel_by_name(DEFAULT_CHANNEL_NAME,
2049 session->kernel_session);
2050 /* Created previously, this should NOT fail. */
2051 assert(kchan);
2052 kernel_destroy_channel(kchan);
2053 }
2054
2055 if (chan_ust_created) {
2056 struct ltt_ust_channel *uchan =
2057 trace_ust_find_channel_by_name(
2058 session->ust_session->domain_global.channels,
2059 DEFAULT_CHANNEL_NAME);
2060 /* Created previously, this should NOT fail. */
2061 assert(uchan);
2062 /* Remove from the channel list of the session. */
2063 trace_ust_delete_channel(session->ust_session->domain_global.channels,
2064 uchan);
2065 trace_ust_destroy_channel(uchan);
2066 }
bdf64013 2067end:
b583ad83 2068 lttng_event_context_destroy(ctx);
2f77fc4b
DG
2069 return ret;
2070}
2071
dac8e046
JG
2072static inline bool name_starts_with(const char *name, const char *prefix)
2073{
2074 const size_t max_cmp_len = min(strlen(prefix), LTTNG_SYMBOL_NAME_LEN);
2075
2076 return !strncmp(name, prefix, max_cmp_len);
2077}
2078
2079/* Perform userspace-specific event name validation */
2080static int validate_ust_event_name(const char *name)
2081{
2082 int ret = 0;
2083
2084 if (!name) {
2085 ret = -1;
2086 goto end;
2087 }
2088
2089 /*
2090 * Check name against all internal UST event component namespaces used
2091 * by the agents.
2092 */
2093 if (name_starts_with(name, DEFAULT_JUL_EVENT_COMPONENT) ||
2094 name_starts_with(name, DEFAULT_LOG4J_EVENT_COMPONENT) ||
2095 name_starts_with(name, DEFAULT_PYTHON_EVENT_COMPONENT)) {
2096 ret = -1;
2097 }
2098
2099end:
2100 return ret;
2101}
88f06f15 2102
2f77fc4b 2103/*
88f06f15
JG
2104 * Internal version of cmd_enable_event() with a supplemental
2105 * "internal_event" flag which is used to enable internal events which should
2106 * be hidden from clients. Such events are used in the agent implementation to
2107 * enable the events through which all "agent" events are funeled.
2f77fc4b 2108 */
88f06f15 2109static int _cmd_enable_event(struct ltt_session *session,
df4f5a87 2110 const struct lttng_domain *domain,
025faf73 2111 char *channel_name, struct lttng_event *event,
6b453b5e 2112 char *filter_expression,
db8f1377
JI
2113 struct lttng_filter_bytecode *filter,
2114 struct lttng_event_exclusion *exclusion,
88f06f15 2115 int wpipe, bool internal_event)
2f77fc4b 2116{
9f449915 2117 int ret = 0, channel_created = 0;
cfedea03 2118 struct lttng_channel *attr = NULL;
2f77fc4b
DG
2119
2120 assert(session);
2121 assert(event);
2122 assert(channel_name);
2123
2a385866
JG
2124 /* If we have a filter, we must have its filter expression */
2125 assert(!(!!filter_expression ^ !!filter));
2126
9f449915
PP
2127 /* Normalize event name as a globbing pattern */
2128 strutils_normalize_star_glob_pattern(event->name);
18a720cd 2129
9f449915
PP
2130 /* Normalize exclusion names as globbing patterns */
2131 if (exclusion) {
2132 size_t i;
f5ac4bd7 2133
9f449915
PP
2134 for (i = 0; i < exclusion->count; i++) {
2135 char *name = LTTNG_EVENT_EXCLUSION_NAME_AT(exclusion, i);
2136
2137 strutils_normalize_star_glob_pattern(name);
2138 }
930a2e99
JG
2139 }
2140
9f449915
PP
2141 DBG("Enable event command for event \'%s\'", event->name);
2142
2143 rcu_read_lock();
2144
7972aab2 2145 switch (domain->type) {
2f77fc4b
DG
2146 case LTTNG_DOMAIN_KERNEL:
2147 {
2148 struct ltt_kernel_channel *kchan;
2149
85076754
MD
2150 /*
2151 * If a non-default channel has been created in the
2152 * session, explicitely require that -c chan_name needs
2153 * to be provided.
2154 */
2155 if (session->kernel_session->has_non_default_channel
2156 && channel_name[0] == '\0') {
2157 ret = LTTNG_ERR_NEED_CHANNEL_NAME;
2158 goto error;
2159 }
2160
2f77fc4b
DG
2161 kchan = trace_kernel_get_channel_by_name(channel_name,
2162 session->kernel_session);
2163 if (kchan == NULL) {
0a9c6494
DG
2164 attr = channel_new_default_attr(LTTNG_DOMAIN_KERNEL,
2165 LTTNG_BUFFER_GLOBAL);
2f77fc4b 2166 if (attr == NULL) {
f73fabfd 2167 ret = LTTNG_ERR_FATAL;
2f77fc4b
DG
2168 goto error;
2169 }
04c17253
MD
2170 if (lttng_strncpy(attr->name, channel_name,
2171 sizeof(attr->name))) {
2172 ret = LTTNG_ERR_INVALID;
04c17253
MD
2173 goto error;
2174 }
2f77fc4b 2175
33b9609d
JR
2176 ret = cmd_enable_channel_internal(
2177 session, domain, attr, wpipe);
f73fabfd 2178 if (ret != LTTNG_OK) {
2f77fc4b
DG
2179 goto error;
2180 }
e5f5db7f 2181 channel_created = 1;
2f77fc4b
DG
2182 }
2183
2184 /* Get the newly created kernel channel pointer */
2185 kchan = trace_kernel_get_channel_by_name(channel_name,
2186 session->kernel_session);
2187 if (kchan == NULL) {
2188 /* This sould not happen... */
f73fabfd 2189 ret = LTTNG_ERR_FATAL;
2f77fc4b
DG
2190 goto error;
2191 }
2192
6e911cad
MD
2193 switch (event->type) {
2194 case LTTNG_EVENT_ALL:
29c62722 2195 {
00a62084
MD
2196 char *filter_expression_a = NULL;
2197 struct lttng_filter_bytecode *filter_a = NULL;
2198
2199 /*
2200 * We need to duplicate filter_expression and filter,
2201 * because ownership is passed to first enable
2202 * event.
2203 */
2204 if (filter_expression) {
2205 filter_expression_a = strdup(filter_expression);
2206 if (!filter_expression_a) {
2207 ret = LTTNG_ERR_FATAL;
2208 goto error;
2209 }
2210 }
2211 if (filter) {
2212 filter_a = zmalloc(sizeof(*filter_a) + filter->len);
2213 if (!filter_a) {
2214 free(filter_expression_a);
2215 ret = LTTNG_ERR_FATAL;
2216 goto error;
2217 }
2218 memcpy(filter_a, filter, sizeof(*filter_a) + filter->len);
2219 }
29c62722 2220 event->type = LTTNG_EVENT_TRACEPOINT; /* Hack */
00a62084
MD
2221 ret = event_kernel_enable_event(kchan, event,
2222 filter_expression, filter);
a969e101
MD
2223 /* We have passed ownership */
2224 filter_expression = NULL;
2225 filter = NULL;
29c62722
MD
2226 if (ret != LTTNG_OK) {
2227 if (channel_created) {
2228 /* Let's not leak a useless channel. */
2229 kernel_destroy_channel(kchan);
2230 }
00a62084
MD
2231 free(filter_expression_a);
2232 free(filter_a);
29c62722
MD
2233 goto error;
2234 }
2235 event->type = LTTNG_EVENT_SYSCALL; /* Hack */
00a62084
MD
2236 ret = event_kernel_enable_event(kchan, event,
2237 filter_expression_a, filter_a);
60d21fa2
AB
2238 /* We have passed ownership */
2239 filter_expression_a = NULL;
2240 filter_a = NULL;
29c62722
MD
2241 if (ret != LTTNG_OK) {
2242 goto error;
2243 }
2244 break;
2245 }
6e6ef3d7 2246 case LTTNG_EVENT_PROBE:
dcabc190 2247 case LTTNG_EVENT_USERSPACE_PROBE:
6e6ef3d7
DG
2248 case LTTNG_EVENT_FUNCTION:
2249 case LTTNG_EVENT_FUNCTION_ENTRY:
6e911cad 2250 case LTTNG_EVENT_TRACEPOINT:
00a62084
MD
2251 ret = event_kernel_enable_event(kchan, event,
2252 filter_expression, filter);
a969e101
MD
2253 /* We have passed ownership */
2254 filter_expression = NULL;
2255 filter = NULL;
6e911cad
MD
2256 if (ret != LTTNG_OK) {
2257 if (channel_created) {
2258 /* Let's not leak a useless channel. */
2259 kernel_destroy_channel(kchan);
2260 }
2261 goto error;
e5f5db7f 2262 }
6e911cad
MD
2263 break;
2264 case LTTNG_EVENT_SYSCALL:
00a62084
MD
2265 ret = event_kernel_enable_event(kchan, event,
2266 filter_expression, filter);
a969e101
MD
2267 /* We have passed ownership */
2268 filter_expression = NULL;
2269 filter = NULL;
e2b957af
MD
2270 if (ret != LTTNG_OK) {
2271 goto error;
2272 }
6e911cad
MD
2273 break;
2274 default:
2275 ret = LTTNG_ERR_UNK;
2f77fc4b
DG
2276 goto error;
2277 }
2278
7d268848 2279 kernel_wait_quiescent();
2f77fc4b
DG
2280 break;
2281 }
2282 case LTTNG_DOMAIN_UST:
2283 {
2284 struct ltt_ust_channel *uchan;
2285 struct ltt_ust_session *usess = session->ust_session;
2286
2287 assert(usess);
2288
85076754
MD
2289 /*
2290 * If a non-default channel has been created in the
2291 * session, explicitely require that -c chan_name needs
2292 * to be provided.
2293 */
2294 if (usess->has_non_default_channel && channel_name[0] == '\0') {
2295 ret = LTTNG_ERR_NEED_CHANNEL_NAME;
2296 goto error;
2297 }
2298
2f77fc4b
DG
2299 /* Get channel from global UST domain */
2300 uchan = trace_ust_find_channel_by_name(usess->domain_global.channels,
2301 channel_name);
2302 if (uchan == NULL) {
2303 /* Create default channel */
0a9c6494
DG
2304 attr = channel_new_default_attr(LTTNG_DOMAIN_UST,
2305 usess->buffer_type);
2f77fc4b 2306 if (attr == NULL) {
f73fabfd 2307 ret = LTTNG_ERR_FATAL;
2f77fc4b
DG
2308 goto error;
2309 }
04c17253
MD
2310 if (lttng_strncpy(attr->name, channel_name,
2311 sizeof(attr->name))) {
2312 ret = LTTNG_ERR_INVALID;
04c17253
MD
2313 goto error;
2314 }
2f77fc4b 2315
33b9609d
JR
2316 ret = cmd_enable_channel_internal(
2317 session, domain, attr, wpipe);
f73fabfd 2318 if (ret != LTTNG_OK) {
2f77fc4b
DG
2319 goto error;
2320 }
2f77fc4b
DG
2321
2322 /* Get the newly created channel reference back */
2323 uchan = trace_ust_find_channel_by_name(
2324 usess->domain_global.channels, channel_name);
2325 assert(uchan);
2326 }
2327
141feb8c
JG
2328 if (uchan->domain != LTTNG_DOMAIN_UST && !internal_event) {
2329 /*
2330 * Don't allow users to add UST events to channels which
2331 * are assigned to a userspace subdomain (JUL, Log4J,
2332 * Python, etc.).
2333 */
2334 ret = LTTNG_ERR_INVALID_CHANNEL_DOMAIN;
2335 goto error;
2336 }
2337
dac8e046
JG
2338 if (!internal_event) {
2339 /*
2340 * Ensure the event name is not reserved for internal
2341 * use.
2342 */
2343 ret = validate_ust_event_name(event->name);
2344 if (ret) {
2345 WARN("Userspace event name %s failed validation.",
bbcab087 2346 event->name);
dac8e046
JG
2347 ret = LTTNG_ERR_INVALID_EVENT_NAME;
2348 goto error;
2349 }
2350 }
2351
2f77fc4b 2352 /* At this point, the session and channel exist on the tracer */
6b453b5e 2353 ret = event_ust_enable_tracepoint(usess, uchan, event,
88f06f15
JG
2354 filter_expression, filter, exclusion,
2355 internal_event);
49d21f93
MD
2356 /* We have passed ownership */
2357 filter_expression = NULL;
2358 filter = NULL;
2359 exclusion = NULL;
94382e15
JG
2360 if (ret == LTTNG_ERR_UST_EVENT_ENABLED) {
2361 goto already_enabled;
2362 } else if (ret != LTTNG_OK) {
2f77fc4b
DG
2363 goto error;
2364 }
2365 break;
2366 }
5cdb6027 2367 case LTTNG_DOMAIN_LOG4J:
f20baf8e 2368 case LTTNG_DOMAIN_JUL:
0e115563 2369 case LTTNG_DOMAIN_PYTHON:
f20baf8e 2370 {
da6c3a50 2371 const char *default_event_name, *default_chan_name;
fefd409b 2372 struct agent *agt;
f20baf8e
DG
2373 struct lttng_event uevent;
2374 struct lttng_domain tmp_dom;
2375 struct ltt_ust_session *usess = session->ust_session;
2376
2377 assert(usess);
2378
f28f9e44
JG
2379 if (!agent_tracing_is_enabled()) {
2380 DBG("Attempted to enable an event in an agent domain but the agent thread is not running");
2381 ret = LTTNG_ERR_AGENT_TRACING_DISABLED;
2382 goto error;
2383 }
2384
5cdb6027 2385 agt = trace_ust_find_agent(usess, domain->type);
fefd409b 2386 if (!agt) {
5cdb6027 2387 agt = agent_create(domain->type);
fefd409b 2388 if (!agt) {
e5b3c48c 2389 ret = LTTNG_ERR_NOMEM;
fefd409b
DG
2390 goto error;
2391 }
2392 agent_add(agt, usess->agents);
2393 }
2394
022d91ba 2395 /* Create the default tracepoint. */
996de3c7 2396 memset(&uevent, 0, sizeof(uevent));
f20baf8e
DG
2397 uevent.type = LTTNG_EVENT_TRACEPOINT;
2398 uevent.loglevel_type = LTTNG_EVENT_LOGLEVEL_ALL;
51755dc8
JG
2399 default_event_name = event_get_default_agent_ust_name(
2400 domain->type);
da6c3a50 2401 if (!default_event_name) {
e5b3c48c 2402 ret = LTTNG_ERR_FATAL;
da6c3a50 2403 goto error;
f43f95a9 2404 }
da6c3a50 2405 strncpy(uevent.name, default_event_name, sizeof(uevent.name));
f20baf8e
DG
2406 uevent.name[sizeof(uevent.name) - 1] = '\0';
2407
2408 /*
2409 * The domain type is changed because we are about to enable the
2410 * default channel and event for the JUL domain that are hardcoded.
2411 * This happens in the UST domain.
2412 */
2413 memcpy(&tmp_dom, domain, sizeof(tmp_dom));
2414 tmp_dom.type = LTTNG_DOMAIN_UST;
2415
0e115563
DG
2416 switch (domain->type) {
2417 case LTTNG_DOMAIN_LOG4J:
da6c3a50 2418 default_chan_name = DEFAULT_LOG4J_CHANNEL_NAME;
0e115563
DG
2419 break;
2420 case LTTNG_DOMAIN_JUL:
da6c3a50 2421 default_chan_name = DEFAULT_JUL_CHANNEL_NAME;
0e115563
DG
2422 break;
2423 case LTTNG_DOMAIN_PYTHON:
2424 default_chan_name = DEFAULT_PYTHON_CHANNEL_NAME;
2425 break;
2426 default:
e98a44b0 2427 /* The switch/case we are in makes this impossible */
0e115563 2428 assert(0);
da6c3a50
DG
2429 }
2430
971da06a 2431 {
8404118c 2432 char *filter_expression_copy = NULL;
51755dc8 2433 struct lttng_filter_bytecode *filter_copy = NULL;
971da06a
JG
2434
2435 if (filter) {
51755dc8
JG
2436 const size_t filter_size = sizeof(
2437 struct lttng_filter_bytecode)
2438 + filter->len;
2439
2440 filter_copy = zmalloc(filter_size);
971da06a 2441 if (!filter_copy) {
018096a4 2442 ret = LTTNG_ERR_NOMEM;
b742e3e2 2443 goto error;
971da06a 2444 }
51755dc8 2445 memcpy(filter_copy, filter, filter_size);
971da06a 2446
8404118c
JG
2447 filter_expression_copy =
2448 strdup(filter_expression);
2449 if (!filter_expression) {
2450 ret = LTTNG_ERR_NOMEM;
51755dc8
JG
2451 }
2452
2453 if (!filter_expression_copy || !filter_copy) {
2454 free(filter_expression_copy);
2455 free(filter_copy);
2456 goto error;
8404118c 2457 }
971da06a
JG
2458 }
2459
88f06f15 2460 ret = cmd_enable_event_internal(session, &tmp_dom,
971da06a 2461 (char *) default_chan_name,
8404118c
JG
2462 &uevent, filter_expression_copy,
2463 filter_copy, NULL, wpipe);
971da06a
JG
2464 }
2465
94382e15
JG
2466 if (ret == LTTNG_ERR_UST_EVENT_ENABLED) {
2467 goto already_enabled;
2468 } else if (ret != LTTNG_OK) {
f20baf8e
DG
2469 goto error;
2470 }
2471
2472 /* The wild card * means that everything should be enabled. */
2473 if (strncmp(event->name, "*", 1) == 0 && strlen(event->name) == 1) {
8404118c
JG
2474 ret = event_agent_enable_all(usess, agt, event, filter,
2475 filter_expression);
f20baf8e 2476 } else {
8404118c
JG
2477 ret = event_agent_enable(usess, agt, event, filter,
2478 filter_expression);
f20baf8e 2479 }
51755dc8
JG
2480 filter = NULL;
2481 filter_expression = NULL;
f20baf8e
DG
2482 if (ret != LTTNG_OK) {
2483 goto error;
2484 }
2485
2486 break;
2487 }
2f77fc4b 2488 default:
f73fabfd 2489 ret = LTTNG_ERR_UND;
2f77fc4b
DG
2490 goto error;
2491 }
2492
f73fabfd 2493 ret = LTTNG_OK;
2f77fc4b 2494
94382e15 2495already_enabled:
2f77fc4b 2496error:
49d21f93
MD
2497 free(filter_expression);
2498 free(filter);
2499 free(exclusion);
cf0bcb51 2500 channel_attr_destroy(attr);
2223c96f 2501 rcu_read_unlock();
2f77fc4b
DG
2502 return ret;
2503}
2504
88f06f15
JG
2505/*
2506 * Command LTTNG_ENABLE_EVENT processed by the client thread.
2507 * We own filter, exclusion, and filter_expression.
2508 */
166fc586 2509int cmd_enable_event(struct command_ctx *cmd_ctx, int sock, int wpipe)
88f06f15 2510{
166fc586
JR
2511 int ret;
2512 size_t event_len;
2513 ssize_t sock_recv_len;
2514 struct lttng_event *event = NULL;
2515 struct lttng_buffer_view view;
2516 struct lttng_dynamic_buffer event_buffer;
2517 struct lttng_event_exclusion *exclusion = NULL;
2518 struct lttng_filter_bytecode *bytecode = NULL;
2519 char *filter_expression = NULL;
2520
2521 lttng_dynamic_buffer_init(&event_buffer);
2522 event_len = (size_t) cmd_ctx->lsm->u.enable.length;
2523 ret = lttng_dynamic_buffer_set_size(&event_buffer, event_len);
2524 if (ret) {
2525 ret = LTTNG_ERR_NOMEM;
2526 goto end;
2527 }
2528
2529 sock_recv_len = lttcomm_recv_unix_sock(
2530 sock, event_buffer.data, event_len);
2531 if (sock_recv_len < 0 || sock_recv_len != event_len) {
2532 ERR("Failed to receive \"enable event\" command payload");
2533 ret = LTTNG_ERR_INVALID;
2534 goto end;
2535 }
2536
2537 view = lttng_buffer_view_from_dynamic_buffer(&event_buffer, 0, -1);
2538
2539 if (lttng_event_create_from_buffer(&view, &event,
2540 &exclusion, &filter_expression,
2541 &bytecode, sock) != event_len) {
2542 ERR("Invalid event payload received in \"enable event\" command");
2543 ret = LTTNG_ERR_INVALID;
2544 goto end;
2545 }
2546
2547 /*
2548 * The ownership of the following parameters is transferred to
2549 * _cmd_enable_event:
2550 *
2551 * - filter_expression,
2552 * - bytecode,
2553 * - exclusion
2554 */
2555 ret = _cmd_enable_event(cmd_ctx->session,
2556 ALIGNED_CONST_PTR(cmd_ctx->lsm->domain),
2557 cmd_ctx->lsm->u.enable.channel_name, event,
2558 filter_expression, bytecode, exclusion, wpipe, false);
2559 filter_expression = NULL;
2560 bytecode = NULL;
2561 exclusion = NULL;
2562end:
2563 lttng_event_destroy(event);
2564 lttng_dynamic_buffer_reset(&event_buffer);
2565 return ret;
88f06f15
JG
2566}
2567
2568/*
2569 * Enable an event which is internal to LTTng. An internal should
2570 * never be made visible to clients and are immune to checks such as
2571 * reserved names.
2572 */
2573static int cmd_enable_event_internal(struct ltt_session *session,
df4f5a87 2574 const struct lttng_domain *domain,
88f06f15
JG
2575 char *channel_name, struct lttng_event *event,
2576 char *filter_expression,
2577 struct lttng_filter_bytecode *filter,
2578 struct lttng_event_exclusion *exclusion,
2579 int wpipe)
2580{
2581 return _cmd_enable_event(session, domain, channel_name, event,
2582 filter_expression, filter, exclusion, wpipe, true);
2583}
2584
2f77fc4b
DG
2585/*
2586 * Command LTTNG_LIST_TRACEPOINTS processed by the client thread.
2587 */
166fc586
JR
2588enum lttng_error_code cmd_list_tracepoints(enum lttng_domain_type domain,
2589 struct lttng_dynamic_buffer *buffer, unsigned int *nb_tracepoints)
2f77fc4b 2590{
166fc586 2591 enum lttng_error_code ret_code;
2f77fc4b 2592 int ret;
166fc586
JR
2593 ssize_t i, nb_events = 0;
2594 struct lttng_event *events = NULL;
2595
2596 assert(buffer);
2597 assert(nb_tracepoints);
2f77fc4b
DG
2598
2599 switch (domain) {
2600 case LTTNG_DOMAIN_KERNEL:
166fc586 2601 nb_events = kernel_list_events(&events);
2f77fc4b 2602 if (nb_events < 0) {
166fc586 2603 ret_code = LTTNG_ERR_KERN_LIST_FAIL;
2f77fc4b
DG
2604 goto error;
2605 }
2606 break;
2607 case LTTNG_DOMAIN_UST:
166fc586 2608 nb_events = ust_app_list_events(&events);
2f77fc4b 2609 if (nb_events < 0) {
166fc586 2610 ret_code = LTTNG_ERR_UST_LIST_FAIL;
2f77fc4b
DG
2611 goto error;
2612 }
2613 break;
5cdb6027 2614 case LTTNG_DOMAIN_LOG4J:
3c6a091f 2615 case LTTNG_DOMAIN_JUL:
0e115563 2616 case LTTNG_DOMAIN_PYTHON:
166fc586 2617 nb_events = agent_list_events(&events, domain);
3c6a091f 2618 if (nb_events < 0) {
166fc586 2619 ret_code = LTTNG_ERR_UST_LIST_FAIL;
3c6a091f
DG
2620 goto error;
2621 }
2622 break;
2f77fc4b 2623 default:
166fc586 2624 ret_code = LTTNG_ERR_UND;
2f77fc4b
DG
2625 goto error;
2626 }
2627
2f77fc4b 2628
166fc586
JR
2629 for (i = 0; i < nb_events; i++) {
2630 ret = lttng_event_serialize(&events[i], 0, NULL, NULL, 0, NULL,
2631 buffer, NULL);
2632 if (ret) {
2633 ret_code = LTTNG_ERR_NOMEM;
2634 goto error;
2635 }
2636 }
2637
2638 if (nb_events > UINT_MAX) {
2639 ret_code = LTTNG_ERR_OVERFLOW;
2640 goto error;
2641 }
2642
2643 *nb_tracepoints = (unsigned int) nb_events;
2644 ret_code = LTTNG_OK;
2f77fc4b 2645error:
166fc586
JR
2646 free(events);
2647 return ret_code;
2f77fc4b
DG
2648}
2649
2650/*
2651 * Command LTTNG_LIST_TRACEPOINT_FIELDS processed by the client thread.
2652 */
c2afda67
JR
2653enum lttng_error_code cmd_list_tracepoint_fields(enum lttng_domain_type domain,
2654 struct lttng_dynamic_buffer *buffer, unsigned int *nb_fields)
2f77fc4b 2655{
c2afda67 2656 enum lttng_error_code ret_code;
2f77fc4b 2657 int ret;
c2afda67
JR
2658 unsigned int i;
2659 struct lttng_event_field *fields = NULL;
2f77fc4b
DG
2660
2661 switch (domain) {
2662 case LTTNG_DOMAIN_UST:
c2afda67
JR
2663 ret = ust_app_list_event_fields(&fields);
2664 if (ret < 0) {
2665 ret_code = LTTNG_ERR_UST_LIST_FAIL;
2f77fc4b
DG
2666 goto error;
2667 }
2668 break;
2669 case LTTNG_DOMAIN_KERNEL:
2670 default: /* fall-through */
c2afda67 2671 ret_code = LTTNG_ERR_UND;
2f77fc4b
DG
2672 goto error;
2673 }
2674
c2afda67
JR
2675 *nb_fields = ret;
2676
2677 for (i = 0; i < *nb_fields; i++) {
2678 ret = lttng_event_field_serialize(&fields[i], buffer);
2679 if (ret) {
2680 ret_code = -LTTNG_ERR_NOMEM;
2681 goto error;
2682 }
2683 }
2684
2685 ret_code = LTTNG_OK;
2f77fc4b
DG
2686
2687error:
c2afda67
JR
2688 free(fields);
2689 return ret_code;
2f77fc4b
DG
2690}
2691
166fc586
JR
2692enum lttng_error_code cmd_list_syscalls(
2693 struct lttng_dynamic_buffer *buffer, unsigned int *nb_syscalls)
834978fd 2694{
166fc586
JR
2695 enum lttng_error_code ret_code;
2696 ssize_t nb_events, i;
2697 int ret;
2698 struct lttng_event *events = NULL;
2699
2700 assert(buffer);
2701 assert(nb_syscalls);
2702
2703 nb_events = syscall_table_list(&events);
2704 if (nb_events < 0) {
2705 ret_code = (enum lttng_error_code) -nb_events;
2706 goto end;
2707 }
2708
2709 for (i = 0; i < nb_events; i++) {
2710 ret = lttng_event_serialize(&events[i], 0, NULL, NULL, 0, NULL,
2711 buffer, NULL);
2712 if (ret) {
2713 ret_code = LTTNG_ERR_NOMEM;
2714 goto end;
2715 }
2716 }
2717
2718 if (nb_events > UINT_MAX) {
2719 ret_code = LTTNG_ERR_OVERFLOW;
2720 goto end;
2721 }
2722
2723 *nb_syscalls = (uint32_t) nb_events;
2724 ret_code = LTTNG_OK;
2725end:
2726 free(events);
2727 return ret_code;
834978fd
DG
2728}
2729
2f77fc4b
DG
2730/*
2731 * Command LTTNG_START_TRACE processed by the client thread.
a9ad0c8f
MD
2732 *
2733 * Called with session mutex held.
2f77fc4b
DG
2734 */
2735int cmd_start_trace(struct ltt_session *session)
2736{
82b69413 2737 enum lttng_error_code ret;
cde3e505 2738 unsigned long nb_chan = 0;
2f77fc4b
DG
2739 struct ltt_kernel_session *ksession;
2740 struct ltt_ust_session *usess;
1f496244
JG
2741 const bool session_rotated_after_last_stop =
2742 session->rotated_after_last_stop;
b02f5986
MD
2743 const bool session_cleared_after_last_stop =
2744 session->cleared_after_last_stop;
2f77fc4b
DG
2745
2746 assert(session);
2747
2748 /* Ease our life a bit ;) */
2749 ksession = session->kernel_session;
2750 usess = session->ust_session;
2751
8382cf6f
DG
2752 /* Is the session already started? */
2753 if (session->active) {
f73fabfd 2754 ret = LTTNG_ERR_TRACE_ALREADY_STARTED;
7a24ece3
JR
2755 /* Perform nothing */
2756 goto end;
2f77fc4b
DG
2757 }
2758
1f496244
JG
2759 if (session->rotation_state == LTTNG_ROTATION_STATE_ONGOING &&
2760 !session->current_trace_chunk) {
2761 /*
2762 * A rotation was launched while the session was stopped and
2763 * it has not been completed yet. It is not possible to start
2764 * the session since starting the session here would require a
2765 * rotation from "NULL" to a new trace chunk. That rotation
2766 * would overlap with the ongoing rotation, which is not
2767 * supported.
2768 */
2769 WARN("Refusing to start session \"%s\" as a rotation launched after the last \"stop\" is still ongoing",
2770 session->name);
2771 ret = LTTNG_ERR_ROTATION_PENDING;
2772 goto error;
2773 }
2774
cde3e505
DG
2775 /*
2776 * Starting a session without channel is useless since after that it's not
2777 * possible to enable channel thus inform the client.
2778 */
2779 if (usess && usess->domain_global.channels) {
2780 nb_chan += lttng_ht_get_count(usess->domain_global.channels);
2781 }
2782 if (ksession) {
2783 nb_chan += ksession->channel_count;
2784 }
2785 if (!nb_chan) {
2786 ret = LTTNG_ERR_NO_CHANNEL;
2787 goto error;
2788 }
2789
1f496244
JG
2790 session->active = 1;
2791 session->rotated_after_last_stop = false;
b02f5986 2792 session->cleared_after_last_stop = false;
070b6a86 2793 if (session->output_traces && !session->current_trace_chunk) {
1f496244
JG
2794 if (!session->has_been_started) {
2795 struct lttng_trace_chunk *trace_chunk;
2796
2797 DBG("Creating initial trace chunk of session \"%s\"",
2798 session->name);
2799 trace_chunk = session_create_new_trace_chunk(
2800 session, NULL, NULL, NULL);
2801 if (!trace_chunk) {
2802 ret = LTTNG_ERR_CREATE_DIR_FAIL;
2803 goto error;
2804 }
2805 assert(!session->current_trace_chunk);
2806 ret = session_set_trace_chunk(session, trace_chunk,
2807 NULL);
2808 lttng_trace_chunk_put(trace_chunk);
2809 if (ret) {
2810 ret = LTTNG_ERR_CREATE_TRACE_CHUNK_FAIL_CONSUMER;
2811 goto error;
2812 }
2813 } else {
2814 DBG("Rotating session \"%s\" from its current \"NULL\" trace chunk to a new chunk",
2815 session->name);
2816 /*
2817 * Rotate existing streams into the new chunk.
2818 * This is a "quiet" rotation has no client has
2819 * explicitly requested this operation.
2820 *
2821 * There is also no need to wait for the rotation
2822 * to complete as it will happen immediately. No data
2823 * was produced as the session was stopped, so the
2824 * rotation should happen on reception of the command.
2825 */
343defc2
MD
2826 ret = cmd_rotate_session(session, NULL, true,
2827 LTTNG_TRACE_CHUNK_COMMAND_TYPE_NO_OPERATION);
1f496244
JG
2828 if (ret != LTTNG_OK) {
2829 goto error;
2830 }
5c408ad8 2831 }
c996624c
JD
2832 }
2833
2f77fc4b
DG
2834 /* Kernel tracing */
2835 if (ksession != NULL) {
c996624c 2836 DBG("Start kernel tracing session %s", session->name);
7d268848 2837 ret = start_kernel_session(ksession);
9b6c7ec5 2838 if (ret != LTTNG_OK) {
2f77fc4b
DG
2839 goto error;
2840 }
2f77fc4b
DG
2841 }
2842
2843 /* Flag session that trace should start automatically */
2844 if (usess) {
82b69413
JG
2845 int int_ret = ust_app_start_trace_all(usess);
2846
2847 if (int_ret < 0) {
f73fabfd 2848 ret = LTTNG_ERR_UST_START_FAIL;
2f77fc4b
DG
2849 goto error;
2850 }
2851 }
2852
1223361a
JG
2853 /*
2854 * Open a packet in every stream of the session to ensure that viewers
2855 * can correctly identify the boundaries of the periods during which
2856 * tracing was active for this session.
2857 */
2858 ret = session_open_packets(session);
2859 if (ret != LTTNG_OK) {
2860 goto error;
2861 }
2862
5c408ad8
JD
2863 /*
2864 * Clear the flag that indicates that a rotation was done while the
2865 * session was stopped.
2866 */
2867 session->rotated_after_last_stop = false;
2868
259c2674 2869 if (session->rotate_timer_period) {
82b69413
JG
2870 int int_ret = timer_session_rotation_schedule_timer_start(
2871 session, session->rotate_timer_period);
2872
2873 if (int_ret < 0) {
259c2674
JD
2874 ERR("Failed to enable rotate timer");
2875 ret = LTTNG_ERR_UNK;
2876 goto error;
2877 }
2878 }
2879
f73fabfd 2880 ret = LTTNG_OK;
2f77fc4b
DG
2881
2882error:
1f496244
JG
2883 if (ret == LTTNG_OK) {
2884 /* Flag this after a successful start. */
2885 session->has_been_started |= 1;
2886 } else {
2887 session->active = 0;
2888 /* Restore initial state on error. */
2889 session->rotated_after_last_stop =
2890 session_rotated_after_last_stop;
b02f5986
MD
2891 session->cleared_after_last_stop =
2892 session_cleared_after_last_stop;
1f496244 2893 }
7a24ece3 2894end:
2f77fc4b
DG
2895 return ret;
2896}
2897
2898/*
2899 * Command LTTNG_STOP_TRACE processed by the client thread.
2900 */
2901int cmd_stop_trace(struct ltt_session *session)
2902{
2903 int ret;
2f77fc4b
DG
2904 struct ltt_kernel_session *ksession;
2905 struct ltt_ust_session *usess;
2906
2907 assert(session);
2908
4dbe1875 2909 DBG("Begin stop session \"%s\" (id %" PRIu64 ")", session->name, session->id);
2f77fc4b
DG
2910 /* Short cut */
2911 ksession = session->kernel_session;
2912 usess = session->ust_session;
2913
8382cf6f
DG
2914 /* Session is not active. Skip everythong and inform the client. */
2915 if (!session->active) {
f73fabfd 2916 ret = LTTNG_ERR_TRACE_ALREADY_STOPPED;
2f77fc4b
DG
2917 goto error;
2918 }
2919
4dbe1875
MD
2920 ret = stop_kernel_session(ksession);
2921 if (ret != LTTNG_OK) {
2922 goto error;
2f77fc4b
DG
2923 }
2924
14fb1ebe 2925 if (usess && usess->active) {
2f77fc4b
DG
2926 ret = ust_app_stop_trace_all(usess);
2927 if (ret < 0) {
f73fabfd 2928 ret = LTTNG_ERR_UST_STOP_FAIL;
2f77fc4b
DG
2929 goto error;
2930 }
2931 }
2932
4dbe1875
MD
2933 DBG("Completed stop session \"%s\" (id %" PRIu64 ")", session->name,
2934 session->id);
8382cf6f
DG
2935 /* Flag inactive after a successful stop. */
2936 session->active = 0;
4dbe1875 2937 ret = LTTNG_OK;
2f77fc4b
DG
2938
2939error:
2940 return ret;
2941}
2942
2943/*
433f5ba9
JR
2944 * Set the base_path of the session only if subdir of a control uris is set.
2945 * Return LTTNG_OK on success, otherwise LTTNG_ERR_*.
2f77fc4b 2946 */
433f5ba9
JR
2947static int set_session_base_path_from_uris(struct ltt_session *session,
2948 size_t nb_uri,
bda32d56 2949 struct lttng_uri *uris)
2f77fc4b 2950{
433f5ba9
JR
2951 int ret;
2952 size_t i;
2f77fc4b 2953
e3876bf0
JR
2954 for (i = 0; i < nb_uri; i++) {
2955 if (uris[i].stype != LTTNG_STREAM_CONTROL ||
2956 uris[i].subdir[0] == '\0') {
2957 /* Not interested in these URIs */
2958 continue;
2959 }
2960
2961 if (session->base_path != NULL) {
2962 free(session->base_path);
2963 session->base_path = NULL;
2964 }
2965
2966 /* Set session base_path */
2967 session->base_path = strdup(uris[i].subdir);
2968 if (!session->base_path) {
433f5ba9
JR
2969 PERROR("Failed to copy base path \"%s\" to session \"%s\"",
2970 uris[i].subdir, session->name);
2971 ret = LTTNG_ERR_NOMEM;
e3876bf0
JR
2972 goto error;
2973 }
433f5ba9
JR
2974 DBG2("Setting base path \"%s\" for session \"%s\"",
2975 session->base_path, session->name);
2976 }
2977 ret = LTTNG_OK;
2978error:
2979 return ret;
2980}
2981
2982/*
2983 * Command LTTNG_SET_CONSUMER_URI processed by the client thread.
2984 */
2985int cmd_set_consumer_uri(struct ltt_session *session, size_t nb_uri,
2986 struct lttng_uri *uris)
2987{
2988 int ret, i;
2989 struct ltt_kernel_session *ksess = session->kernel_session;
2990 struct ltt_ust_session *usess = session->ust_session;
2991
2992 assert(session);
2993 assert(uris);
2994 assert(nb_uri > 0);
2995
2996 /* Can't set consumer URI if the session is active. */
2997 if (session->active) {
2998 ret = LTTNG_ERR_TRACE_ALREADY_STARTED;
2999 goto error;
3000 }
3001
3002 /*
3003 * Set the session base path if any. This is done inside
3004 * cmd_set_consumer_uri to preserve backward compatibility of the
3005 * previous session creation api vs the session descriptor api.
3006 */
3007 ret = set_session_base_path_from_uris(session, nb_uri, uris);
3008 if (ret != LTTNG_OK) {
3009 goto error;
e3876bf0
JR
3010 }
3011
bda32d56 3012 /* Set the "global" consumer URIs */
2f77fc4b 3013 for (i = 0; i < nb_uri; i++) {
e3876bf0
JR
3014 ret = add_uri_to_consumer(session, session->consumer, &uris[i],
3015 LTTNG_DOMAIN_NONE);
a74934ba 3016 if (ret != LTTNG_OK) {
2f77fc4b
DG
3017 goto error;
3018 }
2f77fc4b
DG
3019 }
3020
bda32d56
JG
3021 /* Set UST session URIs */
3022 if (session->ust_session) {
3023 for (i = 0; i < nb_uri; i++) {
b178f53e 3024 ret = add_uri_to_consumer(session,
bda32d56 3025 session->ust_session->consumer,
b178f53e 3026 &uris[i], LTTNG_DOMAIN_UST);
bda32d56
JG
3027 if (ret != LTTNG_OK) {
3028 goto error;
3029 }
3030 }
3031 }
3032
3033 /* Set kernel session URIs */
3034 if (session->kernel_session) {
3035 for (i = 0; i < nb_uri; i++) {
b178f53e 3036 ret = add_uri_to_consumer(session,
bda32d56 3037 session->kernel_session->consumer,
b178f53e 3038 &uris[i], LTTNG_DOMAIN_KERNEL);
bda32d56
JG
3039 if (ret != LTTNG_OK) {
3040 goto error;
3041 }
3042 }
3043 }
3044
7ab70fe0
DG
3045 /*
3046 * Make sure to set the session in output mode after we set URI since a
3047 * session can be created without URL (thus flagged in no output mode).
3048 */
3049 session->output_traces = 1;
3050 if (ksess) {
3051 ksess->output_traces = 1;
bda32d56
JG
3052 }
3053
3054 if (usess) {
7ab70fe0
DG
3055 usess->output_traces = 1;
3056 }
3057
2f77fc4b 3058 /* All good! */
f73fabfd 3059 ret = LTTNG_OK;
2f77fc4b
DG
3060
3061error:
3062 return ret;
3063}
3064
b178f53e
JG
3065static
3066enum lttng_error_code set_session_output_from_descriptor(
3067 struct ltt_session *session,
3068 const struct lttng_session_descriptor *descriptor)
2f77fc4b
DG
3069{
3070 int ret;
b178f53e
JG
3071 enum lttng_error_code ret_code = LTTNG_OK;
3072 enum lttng_session_descriptor_type session_type =
3073 lttng_session_descriptor_get_type(descriptor);
3074 enum lttng_session_descriptor_output_type output_type =
3075 lttng_session_descriptor_get_output_type(descriptor);
3076 struct lttng_uri uris[2] = {};
3077 size_t uri_count = 0;
3078
3079 switch (output_type) {
3080 case LTTNG_SESSION_DESCRIPTOR_OUTPUT_TYPE_NONE:
3081 goto end;
3082 case LTTNG_SESSION_DESCRIPTOR_OUTPUT_TYPE_LOCAL:
3083 lttng_session_descriptor_get_local_output_uri(descriptor,
3084 &uris[0]);
3085 uri_count = 1;
3086 break;
3087 case LTTNG_SESSION_DESCRIPTOR_OUTPUT_TYPE_NETWORK:
3088 lttng_session_descriptor_get_network_output_uris(descriptor,
3089 &uris[0], &uris[1]);
3090 uri_count = 2;
3091 break;
3092 default:
3093 ret_code = LTTNG_ERR_INVALID;
e32d7f27 3094 goto end;
2f77fc4b
DG
3095 }
3096
b178f53e
JG
3097 switch (session_type) {
3098 case LTTNG_SESSION_DESCRIPTOR_TYPE_SNAPSHOT:
3099 {
3100 struct snapshot_output *new_output = NULL;
3101
3102 new_output = snapshot_output_alloc();
3103 if (!new_output) {
3104 ret_code = LTTNG_ERR_NOMEM;
3105 goto end;
3106 }
3107
3108 ret = snapshot_output_init_with_uri(session,
3109 DEFAULT_SNAPSHOT_MAX_SIZE,
3110 NULL, uris, uri_count, session->consumer,
3111 new_output, &session->snapshot);
3112 if (ret < 0) {
3113 ret_code = (ret == -ENOMEM) ?
3114 LTTNG_ERR_NOMEM : LTTNG_ERR_INVALID;
3115 snapshot_output_destroy(new_output);
3116 goto end;
3117 }
3118 snapshot_add_output(&session->snapshot, new_output);
3119 break;
3120 }
3121 case LTTNG_SESSION_DESCRIPTOR_TYPE_REGULAR:
3122 case LTTNG_SESSION_DESCRIPTOR_TYPE_LIVE:
3123 {
3124 ret_code = cmd_set_consumer_uri(session, uri_count, uris);
3125 break;
3126 }
3127 default:
3128 ret_code = LTTNG_ERR_INVALID;
e32d7f27 3129 goto end;
2f77fc4b 3130 }
b178f53e
JG
3131end:
3132 return ret_code;
3133}
3134
3135static
3136enum lttng_error_code cmd_create_session_from_descriptor(
3137 struct lttng_session_descriptor *descriptor,
3138 const lttng_sock_cred *creds,
3139 const char *home_path)
3140{
3141 int ret;
3142 enum lttng_error_code ret_code;
3143 const char *session_name;
3144 struct ltt_session *new_session = NULL;
3145 enum lttng_session_descriptor_status descriptor_status;
2f77fc4b 3146
e32d7f27 3147 session_lock_list();
b178f53e
JG
3148 if (home_path) {
3149 if (*home_path != '/') {
3150 ERR("Home path provided by client is not absolute");
3151 ret_code = LTTNG_ERR_INVALID;
3152 goto end;
3153 }
3154 }
2f77fc4b 3155
b178f53e
JG
3156 descriptor_status = lttng_session_descriptor_get_session_name(
3157 descriptor, &session_name);
3158 switch (descriptor_status) {
3159 case LTTNG_SESSION_DESCRIPTOR_STATUS_OK:
3160 break;
3161 case LTTNG_SESSION_DESCRIPTOR_STATUS_UNSET:
3162 session_name = NULL;
3163 break;
3164 default:
3165 ret_code = LTTNG_ERR_INVALID;
3166 goto end;
3167 }
e3876bf0 3168
b178f53e 3169 ret_code = session_create(session_name, creds->uid, creds->gid,
e3876bf0 3170 &new_session);
b178f53e 3171 if (ret_code != LTTNG_OK) {
e32d7f27 3172 goto end;
2f77fc4b
DG
3173 }
3174
b178f53e
JG
3175 if (!session_name) {
3176 ret = lttng_session_descriptor_set_session_name(descriptor,
3177 new_session->name);
3178 if (ret) {
3179 ret_code = LTTNG_ERR_SESSION_FAIL;
3180 goto end;
3181 }
3182 }
3183
3184 if (!lttng_session_descriptor_is_output_destination_initialized(
3185 descriptor)) {
3186 /*
3187 * Only include the session's creation time in the output
3188 * destination if the name of the session itself was
3189 * not auto-generated.
3190 */
3191 ret_code = lttng_session_descriptor_set_default_output(
3192 descriptor,
3193 session_name ? &new_session->creation_time : NULL,
3194 home_path);
3195 if (ret_code != LTTNG_OK) {
e32d7f27 3196 goto end;
2bba9e53 3197 }
2bba9e53 3198 } else {
b178f53e
JG
3199 new_session->has_user_specified_directory =
3200 lttng_session_descriptor_has_output_directory(
3201 descriptor);
2f77fc4b
DG
3202 }
3203
b178f53e
JG
3204 switch (lttng_session_descriptor_get_type(descriptor)) {
3205 case LTTNG_SESSION_DESCRIPTOR_TYPE_SNAPSHOT:
3206 new_session->snapshot_mode = 1;
3207 break;
3208 case LTTNG_SESSION_DESCRIPTOR_TYPE_LIVE:
3209 new_session->live_timer =
3210 lttng_session_descriptor_live_get_timer_interval(
3211 descriptor);
3212 break;
3213 default:
3214 break;
3215 }
2f77fc4b 3216
b178f53e
JG
3217 ret_code = set_session_output_from_descriptor(new_session, descriptor);
3218 if (ret_code != LTTNG_OK) {
3219 goto end;
3220 }
3221 new_session->consumer->enabled = 1;
3222 ret_code = LTTNG_OK;
e32d7f27 3223end:
b178f53e
JG
3224 /* Release reference provided by the session_create function. */
3225 session_put(new_session);
3226 if (ret_code != LTTNG_OK && new_session) {
3227 /* Release the global reference on error. */
3228 session_destroy(new_session);
e32d7f27 3229 }
b178f53e
JG
3230 session_unlock_list();
3231 return ret_code;
2f77fc4b
DG
3232}
3233
b178f53e
JG
3234enum lttng_error_code cmd_create_session(struct command_ctx *cmd_ctx, int sock,
3235 struct lttng_session_descriptor **return_descriptor)
27babd3a
DG
3236{
3237 int ret;
b178f53e
JG
3238 size_t payload_size;
3239 struct lttng_dynamic_buffer payload;
3240 struct lttng_buffer_view home_dir_view;
3241 struct lttng_buffer_view session_descriptor_view;
3242 struct lttng_session_descriptor *session_descriptor = NULL;
3243 enum lttng_error_code ret_code;
3244
3245 lttng_dynamic_buffer_init(&payload);
3246 if (cmd_ctx->lsm->u.create_session.home_dir_size >=
3247 LTTNG_PATH_MAX) {
3248 ret_code = LTTNG_ERR_INVALID;
3249 goto error;
27babd3a 3250 }
b178f53e
JG
3251 if (cmd_ctx->lsm->u.create_session.session_descriptor_size >
3252 LTTNG_SESSION_DESCRIPTOR_MAX_LEN) {
3253 ret_code = LTTNG_ERR_INVALID;
3254 goto error;
27babd3a
DG
3255 }
3256
b178f53e
JG
3257 payload_size = cmd_ctx->lsm->u.create_session.home_dir_size +
3258 cmd_ctx->lsm->u.create_session.session_descriptor_size;
3259 ret = lttng_dynamic_buffer_set_size(&payload, payload_size);
3260 if (ret) {
3261 ret_code = LTTNG_ERR_NOMEM;
3262 goto error;
27babd3a
DG
3263 }
3264
b178f53e
JG
3265 ret = lttcomm_recv_unix_sock(sock, payload.data, payload.size);
3266 if (ret <= 0) {
3267 ERR("Reception of session descriptor failed, aborting.");
3268 ret_code = LTTNG_ERR_SESSION_FAIL;
3269 goto error;
27babd3a
DG
3270 }
3271
b178f53e
JG
3272 home_dir_view = lttng_buffer_view_from_dynamic_buffer(
3273 &payload,
3274 0,
3275 cmd_ctx->lsm->u.create_session.home_dir_size);
3276 session_descriptor_view = lttng_buffer_view_from_dynamic_buffer(
3277 &payload,
3278 cmd_ctx->lsm->u.create_session.home_dir_size,
3279 cmd_ctx->lsm->u.create_session.session_descriptor_size);
27babd3a 3280
b178f53e
JG
3281 ret = lttng_session_descriptor_create_from_buffer(
3282 &session_descriptor_view, &session_descriptor);
3283 if (ret < 0) {
3284 ERR("Failed to create session descriptor from payload of \"create session\" command");
3285 ret_code = LTTNG_ERR_INVALID;
3286 goto error;
3287 }
27babd3a 3288
b178f53e
JG
3289 /*
3290 * Sets the descriptor's auto-generated properties (name, output) if
3291 * needed.
3292 */
3293 ret_code = cmd_create_session_from_descriptor(session_descriptor,
3294 &cmd_ctx->creds,
3295 home_dir_view.size ? home_dir_view.data : NULL);
3296 if (ret_code != LTTNG_OK) {
3297 goto error;
e32d7f27 3298 }
b178f53e
JG
3299
3300 ret_code = LTTNG_OK;
3301 *return_descriptor = session_descriptor;
3302 session_descriptor = NULL;
3303error:
3304 lttng_dynamic_buffer_reset(&payload);
3305 lttng_session_descriptor_destroy(session_descriptor);
3306 return ret_code;
27babd3a
DG
3307}
3308
3e3665b8
JG
3309static
3310void cmd_destroy_session_reply(const struct ltt_session *session,
3311 void *_reply_context)
3312{
3313 int ret;
3314 ssize_t comm_ret;
3315 const struct cmd_destroy_session_reply_context *reply_context =
3316 _reply_context;
3317 struct lttng_dynamic_buffer payload;
3318 struct lttcomm_session_destroy_command_header cmd_header;
3319 struct lttng_trace_archive_location *location = NULL;
3320 struct lttcomm_lttng_msg llm = {
3321 .cmd_type = LTTNG_DESTROY_SESSION,
3285a971 3322 .ret_code = reply_context->destruction_status,
3e3665b8
JG
3323 .pid = UINT32_MAX,
3324 .cmd_header_size =
3325 sizeof(struct lttcomm_session_destroy_command_header),
3326 .data_size = 0,
3327 };
3328 size_t payload_size_before_location;
3329
3330 lttng_dynamic_buffer_init(&payload);
3331
3332 ret = lttng_dynamic_buffer_append(&payload, &llm, sizeof(llm));
3333 if (ret) {
3334 ERR("Failed to append session destruction message");
3335 goto error;
3336 }
3337
3338 cmd_header.rotation_state =
3339 (int32_t) (reply_context->implicit_rotation_on_destroy ?
3340 session->rotation_state :
3341 LTTNG_ROTATION_STATE_NO_ROTATION);
3342 ret = lttng_dynamic_buffer_append(&payload, &cmd_header,
3343 sizeof(cmd_header));
3344 if (ret) {
3345 ERR("Failed to append session destruction command header");
3346 goto error;
3347 }
3348
3349 if (!reply_context->implicit_rotation_on_destroy) {
3350 DBG("No implicit rotation performed during the destruction of session \"%s\", sending reply",
3351 session->name);
3352 goto send_reply;
3353 }
3354 if (session->rotation_state != LTTNG_ROTATION_STATE_COMPLETED) {
3355 DBG("Rotation state of session \"%s\" is not \"completed\", sending session destruction reply",
3356 session->name);
3357 goto send_reply;
3358 }
3359
3360 location = session_get_trace_archive_location(session);
3361 if (!location) {
3362 ERR("Failed to get the location of the trace archive produced during the destruction of session \"%s\"",
3363 session->name);
3364 goto error;
3365 }
3366
3367 payload_size_before_location = payload.size;
3368 comm_ret = lttng_trace_archive_location_serialize(location,
3369 &payload);
b0563fed 3370 lttng_trace_archive_location_put(location);
3e3665b8
JG
3371 if (comm_ret < 0) {
3372 ERR("Failed to serialize the location of the trace archive produced during the destruction of session \"%s\"",
3373 session->name);
3374 goto error;
3375 }
3376 /* Update the message to indicate the location's length. */
3377 ((struct lttcomm_lttng_msg *) payload.data)->data_size =
3378 payload.size - payload_size_before_location;
3379send_reply:
3380 comm_ret = lttcomm_send_unix_sock(reply_context->reply_sock_fd,
3381 payload.data, payload.size);
3382 if (comm_ret != (ssize_t) payload.size) {
3383 ERR("Failed to send result of the destruction of session \"%s\" to client",
3384 session->name);
3385 }
3386error:
3387 ret = close(reply_context->reply_sock_fd);
3388 if (ret) {
3389 PERROR("Failed to close client socket in deferred session destroy reply");
3390 }
3391 lttng_dynamic_buffer_reset(&payload);
3392 free(_reply_context);
3393}
3394
2f77fc4b
DG
3395/*
3396 * Command LTTNG_DESTROY_SESSION processed by the client thread.
a9ad0c8f
MD
3397 *
3398 * Called with session lock held.
2f77fc4b 3399 */
e32d7f27 3400int cmd_destroy_session(struct ltt_session *session,
3e3665b8
JG
3401 struct notification_thread_handle *notification_thread_handle,
3402 int *sock_fd)
2f77fc4b
DG
3403{
3404 int ret;
3285a971 3405 enum lttng_error_code destruction_last_error = LTTNG_OK;
3e3665b8
JG
3406 struct cmd_destroy_session_reply_context *reply_context = NULL;
3407
3408 if (sock_fd) {
3409 reply_context = zmalloc(sizeof(*reply_context));
3410 if (!reply_context) {
3411 ret = LTTNG_ERR_NOMEM;
3412 goto end;
3413 }
3414 reply_context->reply_sock_fd = *sock_fd;
3415 }
2f77fc4b
DG
3416
3417 /* Safety net */
3418 assert(session);
3419
3e3665b8
JG
3420 DBG("Begin destroy session %s (id %" PRIu64 ")", session->name,
3421 session->id);
3422 if (session->active) {
3423 DBG("Session \"%s\" is active, attempting to stop it before destroying it",
3424 session->name);
3425 ret = cmd_stop_trace(session);
3426 if (ret != LTTNG_OK && ret != LTTNG_ERR_TRACE_ALREADY_STOPPED) {
3427 /* Carry on with the destruction of the session. */
3428 ERR("Failed to stop session \"%s\" as part of its destruction: %s",
3429 session->name, lttng_strerror(-ret));
3285a971 3430 destruction_last_error = ret;
3e3665b8
JG
3431 }
3432 }
5c408ad8 3433
92816cc3
JG
3434 if (session->rotation_schedule_timer_enabled) {
3435 if (timer_session_rotation_schedule_timer_stop(
3436 session)) {
3437 ERR("Failed to stop the \"rotation schedule\" timer of session %s",
3438 session->name);
3285a971 3439 destruction_last_error = LTTNG_ERR_TIMER_STOP_ERROR;
92816cc3 3440 }
259c2674
JD
3441 }
3442
90936dcf
JD
3443 if (session->rotate_size) {
3444 unsubscribe_session_consumed_size_rotation(session, notification_thread_handle);
3445 session->rotate_size = 0;
3446 }
3447
a7ceb342 3448 if (session->rotated && session->current_trace_chunk && session->output_traces) {
b5893d8e
JG
3449 /*
3450 * Perform a last rotation on destruction if rotations have
3451 * occurred during the session's lifetime.
3452 */
343defc2
MD
3453 ret = cmd_rotate_session(session, NULL, false,
3454 LTTNG_TRACE_CHUNK_COMMAND_TYPE_MOVE_TO_COMPLETED);
d2956687
JG
3455 if (ret != LTTNG_OK) {
3456 ERR("Failed to perform an implicit rotation as part of the destruction of session \"%s\": %s",
3457 session->name, lttng_strerror(-ret));
3285a971 3458 destruction_last_error = -ret;
124473a3 3459 }
3e3665b8
JG
3460 if (reply_context) {
3461 reply_context->implicit_rotation_on_destroy = true;
3462 }
070b6a86 3463 } else if (session->has_been_started && session->current_trace_chunk) {
7fdbed1c
JG
3464 /*
3465 * The user has not triggered a session rotation. However, to
3466 * ensure all data has been consumed, the session is rotated
3467 * to a 'null' trace chunk before it is destroyed.
3468 *
3469 * This is a "quiet" rotation meaning that no notification is
3470 * emitted and no renaming of the current trace chunk takes
3471 * place.
3472 */
343defc2
MD
3473 ret = cmd_rotate_session(session, NULL, true,
3474 LTTNG_TRACE_CHUNK_COMMAND_TYPE_NO_OPERATION);
407d6c7b
JG
3475 /*
3476 * Rotation operations may not be supported by the kernel
3477 * tracer. Hence, do not consider this implicit rotation as
3478 * a session destruction error. The library has already stopped
3479 * the session and waited for pending data; there is nothing
3480 * left to do but complete the destruction of the session.
3481 */
3482 if (ret != LTTNG_OK &&
3483 ret != -LTTNG_ERR_ROTATION_NOT_AVAILABLE_KERNEL) {
7fdbed1c 3484 ERR("Failed to perform a quiet rotation as part of the destruction of session \"%s\": %s",
407d6c7b 3485 session->name, lttng_strerror(ret));
3285a971 3486 destruction_last_error = -ret;
7fdbed1c
JG
3487 }
3488 }
5c408ad8 3489
a503e1ef
JG
3490 if (session->shm_path[0]) {
3491 /*
3492 * When a session is created with an explicit shm_path,
3493 * the consumer daemon will create its shared memory files
3494 * at that location and will *not* unlink them. This is normal
3495 * as the intention of that feature is to make it possible
3496 * to retrieve the content of those files should a crash occur.
3497 *
3498 * To ensure the content of those files can be used, the
3499 * sessiond daemon will replicate the content of the metadata
3500 * cache in a metadata file.
3501 *
3502 * On clean-up, it is expected that the consumer daemon will
3503 * unlink the shared memory files and that the session daemon
3504 * will unlink the metadata file. Then, the session's directory
3505 * in the shm path can be removed.
3506 *
3507 * Unfortunately, a flaw in the design of the sessiond's and
3508 * consumerd's tear down of channels makes it impossible to
3509 * determine when the sessiond _and_ the consumerd have both
3510 * destroyed their representation of a channel. For one, the
3511 * unlinking, close, and rmdir happen in deferred 'call_rcu'
3512 * callbacks in both daemons.
3513 *
3514 * However, it is also impossible for the sessiond to know when
3515 * the consumer daemon is done destroying its channel(s) since
3516 * it occurs as a reaction to the closing of the channel's file
3517 * descriptor. There is no resulting communication initiated
3518 * from the consumerd to the sessiond to confirm that the
3519 * operation is completed (and was successful).
3520 *
3521 * Until this is all fixed, the session daemon checks for the
3522 * removal of the session's shm path which makes it possible
3523 * to safely advertise a session as having been destroyed.
3524 *
3525 * Prior to this fix, it was not possible to reliably save
3526 * a session making use of the --shm-path option, destroy it,
3527 * and load it again. This is because the creation of the
3528 * session would fail upon seeing the session's shm path
3529 * already in existence.
3530 *
3531 * Note that none of the error paths in the check for the
3532 * directory's existence return an error. This is normal
3533 * as there isn't much that can be done. The session will
3534 * be destroyed properly, except that we can't offer the
3535 * guarantee that the same session can be re-created.
3536 */
3537 current_completion_handler = &destroy_completion_handler.handler;
3538 ret = lttng_strncpy(destroy_completion_handler.shm_path,
3539 session->shm_path,
3540 sizeof(destroy_completion_handler.shm_path));
3541 assert(!ret);
3542 }
e32d7f27
JG
3543
3544 /*
3545 * The session is destroyed. However, note that the command context
3546 * still holds a reference to the session, thus delaying its destruction
3547 * _at least_ up to the point when that reference is released.
3548 */
3549 session_destroy(session);
3e3665b8 3550 if (reply_context) {
3285a971 3551 reply_context->destruction_status = destruction_last_error;
3e3665b8
JG
3552 ret = session_add_destroy_notifier(session,
3553 cmd_destroy_session_reply,
3554 (void *) reply_context);
3555 if (ret) {
3556 ret = LTTNG_ERR_FATAL;
3557 goto end;
3558 } else {
3559 *sock_fd = -1;
3560 }
3561 }
3562 ret = LTTNG_OK;
3563end:
2f77fc4b
DG
3564 return ret;
3565}
3566
2f77fc4b
DG
3567/*
3568 * Command LTTNG_REGISTER_CONSUMER processed by the client thread.
3569 */
56a37563
JG
3570int cmd_register_consumer(struct ltt_session *session,
3571 enum lttng_domain_type domain, const char *sock_path,
3572 struct consumer_data *cdata)
2f77fc4b
DG
3573{
3574 int ret, sock;
dd81b457 3575 struct consumer_socket *socket = NULL;
2f77fc4b
DG
3576
3577 assert(session);
3578 assert(cdata);
3579 assert(sock_path);
3580
3581 switch (domain) {
3582 case LTTNG_DOMAIN_KERNEL:
3583 {
3584 struct ltt_kernel_session *ksess = session->kernel_session;
3585
3586 assert(ksess);
3587
3588 /* Can't register a consumer if there is already one */
3589 if (ksess->consumer_fds_sent != 0) {
f73fabfd 3590 ret = LTTNG_ERR_KERN_CONSUMER_FAIL;
2f77fc4b
DG
3591 goto error;
3592 }
3593
3594 sock = lttcomm_connect_unix_sock(sock_path);
3595 if (sock < 0) {
f73fabfd 3596 ret = LTTNG_ERR_CONNECT_FAIL;
2f77fc4b
DG
3597 goto error;
3598 }
4ce514c4 3599 cdata->cmd_sock = sock;
2f77fc4b 3600
4ce514c4 3601 socket = consumer_allocate_socket(&cdata->cmd_sock);
2f77fc4b 3602 if (socket == NULL) {
f66c074c
DG
3603 ret = close(sock);
3604 if (ret < 0) {
3605 PERROR("close register consumer");
3606 }
4ce514c4 3607 cdata->cmd_sock = -1;
f73fabfd 3608 ret = LTTNG_ERR_FATAL;
2f77fc4b
DG
3609 goto error;
3610 }
3611
3612 socket->lock = zmalloc(sizeof(pthread_mutex_t));
3613 if (socket->lock == NULL) {
3614 PERROR("zmalloc pthread mutex");
f73fabfd 3615 ret = LTTNG_ERR_FATAL;
2f77fc4b
DG
3616 goto error;
3617 }
3618 pthread_mutex_init(socket->lock, NULL);
3619 socket->registered = 1;
3620
3621 rcu_read_lock();
3622 consumer_add_socket(socket, ksess->consumer);
3623 rcu_read_unlock();
3624
3625 pthread_mutex_lock(&cdata->pid_mutex);
3626 cdata->pid = -1;
3627 pthread_mutex_unlock(&cdata->pid_mutex);
3628
3629 break;
3630 }
3631 default:
3632 /* TODO: Userspace tracing */
f73fabfd 3633 ret = LTTNG_ERR_UND;
2f77fc4b
DG
3634 goto error;
3635 }
3636
dd81b457 3637 return LTTNG_OK;
2f77fc4b
DG
3638
3639error:
dd81b457
DG
3640 if (socket) {
3641 consumer_destroy_socket(socket);
3642 }
2f77fc4b
DG
3643 return ret;
3644}
3645
3646/*
3647 * Command LTTNG_LIST_DOMAINS processed by the client thread.
3648 */
3649ssize_t cmd_list_domains(struct ltt_session *session,
3650 struct lttng_domain **domains)
3651{
3652 int ret, index = 0;
3653 ssize_t nb_dom = 0;
fefd409b
DG
3654 struct agent *agt;
3655 struct lttng_ht_iter iter;
2f77fc4b
DG
3656
3657 if (session->kernel_session != NULL) {
3658 DBG3("Listing domains found kernel domain");
3659 nb_dom++;
3660 }
3661
3662 if (session->ust_session != NULL) {
3663 DBG3("Listing domains found UST global domain");
3664 nb_dom++;
3c6a091f 3665
e0a74f01 3666 rcu_read_lock();
fefd409b
DG
3667 cds_lfht_for_each_entry(session->ust_session->agents->ht, &iter.iter,
3668 agt, node.node) {
3669 if (agt->being_used) {
3670 nb_dom++;
3671 }
3c6a091f 3672 }
e0a74f01 3673 rcu_read_unlock();
2f77fc4b
DG
3674 }
3675
fa64dfb4
JG
3676 if (!nb_dom) {
3677 goto end;
3678 }
3679
2f77fc4b
DG
3680 *domains = zmalloc(nb_dom * sizeof(struct lttng_domain));
3681 if (*domains == NULL) {
f73fabfd 3682 ret = LTTNG_ERR_FATAL;
2f77fc4b
DG
3683 goto error;
3684 }
3685
3686 if (session->kernel_session != NULL) {
3687 (*domains)[index].type = LTTNG_DOMAIN_KERNEL;
b5edb9e8
PP
3688
3689 /* Kernel session buffer type is always GLOBAL */
3690 (*domains)[index].buf_type = LTTNG_BUFFER_GLOBAL;
3691
2f77fc4b
DG
3692 index++;
3693 }
3694
3695 if (session->ust_session != NULL) {
3696 (*domains)[index].type = LTTNG_DOMAIN_UST;
88c5f0d8 3697 (*domains)[index].buf_type = session->ust_session->buffer_type;
2f77fc4b 3698 index++;
3c6a091f 3699
e0a74f01 3700 rcu_read_lock();
fefd409b
DG
3701 cds_lfht_for_each_entry(session->ust_session->agents->ht, &iter.iter,
3702 agt, node.node) {
3703 if (agt->being_used) {
3704 (*domains)[index].type = agt->domain;
3705 (*domains)[index].buf_type = session->ust_session->buffer_type;
3706 index++;
3707 }
3c6a091f 3708 }
e0a74f01 3709 rcu_read_unlock();
2f77fc4b 3710 }
fa64dfb4 3711end:
2f77fc4b
DG
3712 return nb_dom;
3713
3714error:
f73fabfd
DG
3715 /* Return negative value to differentiate return code */
3716 return -ret;
2f77fc4b
DG
3717}
3718
3719
3720/*
3721 * Command LTTNG_LIST_CHANNELS processed by the client thread.
3722 */
33b9609d
JR
3723enum lttng_error_code cmd_list_channels(enum lttng_domain_type domain,
3724 struct ltt_session *session,
3725 struct lttng_dynamic_buffer *buffer,
3726 uint32_t *nb_channel)
2f77fc4b 3727{
33b9609d
JR
3728 int ret = 0;
3729 uint32_t i = 0;
3730
3731 assert(session);
3732 assert(buffer);
3733 assert(nb_channel);
3734
3735 DBG("Listing channels for session %s", session->name);
2f77fc4b
DG
3736
3737 switch (domain) {
3738 case LTTNG_DOMAIN_KERNEL:
33b9609d
JR
3739 {
3740 /* Kernel channels */
3741 struct ltt_kernel_channel *kchan;
2f77fc4b 3742 if (session->kernel_session != NULL) {
33b9609d
JR
3743 cds_list_for_each_entry(kchan,
3744 &session->kernel_session->channel_list.head, list) {
3745 uint64_t discarded_events, lost_packets;
3746 struct lttng_channel_extended *extended;
3747
3748 extended = (struct lttng_channel_extended *)
3749 kchan->channel->attr.extended.ptr;
3750
3751 ret = get_kernel_runtime_stats(session, kchan,
3752 &discarded_events, &lost_packets);
3753 if (ret < 0) {
3754 goto end;
3755 }
3756
3757 /*
3758 * Update the discarded_events and lost_packets
3759 * count for the channel
3760 */
3761 extended->discarded_events = discarded_events;
3762 extended->lost_packets = lost_packets;
3763
3764 ret = lttng_channel_serialize(
3765 kchan->channel, buffer);
3766 if (ret) {
3767 ret = -1;
3768 goto end;
3769 }
3770
3771 i++;
3772 }
c7d620a2 3773 }
2f77fc4b 3774 break;
2f77fc4b 3775 }
33b9609d
JR
3776 case LTTNG_DOMAIN_UST:
3777 {
3778 struct lttng_ht_iter iter;
3779 struct ltt_ust_channel *uchan;
2f77fc4b 3780
33b9609d
JR
3781 rcu_read_lock();
3782 cds_lfht_for_each_entry(session->ust_session->domain_global.channels->ht,
3783 &iter.iter, uchan, node.node) {
3784 uint64_t discarded_events = 0, lost_packets = 0;
3785 struct lttng_channel *channel = NULL;
3786 struct lttng_channel_extended *extended;
53e367f9 3787
33b9609d
JR
3788 channel = trace_ust_channel_to_lttng_channel(uchan);
3789 if (!channel) {
3790 ret = -1;
3791 break;
3792 }
2f77fc4b 3793
33b9609d
JR
3794 extended = (struct lttng_channel_extended *)
3795 channel->attr.extended.ptr;
3796
3797 ret = get_ust_runtime_stats(session, uchan,
3798 &discarded_events, &lost_packets);
3799 if (ret < 0) {
3800 lttng_channel_destroy(channel);
3801 break;
3802 }
3803
3804 extended->discarded_events = discarded_events;
3805 extended->lost_packets = lost_packets;
3806
3807 ret = lttng_channel_serialize(channel, buffer);
3808 if (ret) {
3809 ret = -1;
3810 break;
3811 }
3812
3813 i++;
d449df4a 3814 }
33b9609d
JR
3815 rcu_read_unlock();
3816 break;
3817 }
3818 default:
3819 break;
2f77fc4b
DG
3820 }
3821
53e367f9 3822end:
33b9609d
JR
3823 if (ret < 0) {
3824 *nb_channel = 0;
3825 return LTTNG_ERR_FATAL;
3826 } else {
3827 *nb_channel = i;
3828 return LTTNG_OK;
3829 }
2f77fc4b
DG
3830}
3831
3832/*
3833 * Command LTTNG_LIST_EVENTS processed by the client thread.
3834 */
166fc586
JR
3835enum lttng_error_code cmd_list_events(enum lttng_domain_type domain,
3836 struct ltt_session *session,
3837 char *channel_name,
3838 struct lttng_dynamic_buffer *payload,
3839 unsigned int *nb_events)
2f77fc4b 3840{
166fc586
JR
3841 enum lttng_error_code ret_code = LTTNG_OK;
3842
3843 assert(nb_events);
2f77fc4b
DG
3844
3845 switch (domain) {
3846 case LTTNG_DOMAIN_KERNEL:
3847 if (session->kernel_session != NULL) {
166fc586
JR
3848 ret_code = list_lttng_kernel_events(channel_name,
3849 session->kernel_session, payload, nb_events);
2f77fc4b
DG
3850 }
3851 break;
3852 case LTTNG_DOMAIN_UST:
3853 {
3854 if (session->ust_session != NULL) {
166fc586
JR
3855 ret_code = list_lttng_ust_global_events(channel_name,
3856 &session->ust_session->domain_global,
3857 payload, nb_events);
2f77fc4b
DG
3858 }
3859 break;
3860 }
5cdb6027 3861 case LTTNG_DOMAIN_LOG4J:
3c6a091f 3862 case LTTNG_DOMAIN_JUL:
0e115563 3863 case LTTNG_DOMAIN_PYTHON:
3c6a091f 3864 if (session->ust_session) {
fefd409b
DG
3865 struct lttng_ht_iter iter;
3866 struct agent *agt;
3867
b11feea5 3868 rcu_read_lock();
fefd409b
DG
3869 cds_lfht_for_each_entry(session->ust_session->agents->ht,
3870 &iter.iter, agt, node.node) {
1dfd9906 3871 if (agt->domain == domain) {
166fc586
JR
3872 ret_code = list_lttng_agent_events(
3873 agt, payload, nb_events);
1dfd9906
JG
3874 break;
3875 }
fefd409b 3876 }
b11feea5 3877 rcu_read_unlock();
3c6a091f
DG
3878 }
3879 break;
2f77fc4b 3880 default:
166fc586
JR
3881 ret_code = LTTNG_ERR_UND;
3882 break;
2f77fc4b
DG
3883 }
3884
166fc586 3885 return ret_code;
2f77fc4b
DG
3886}
3887
3888/*
3889 * Using the session list, filled a lttng_session array to send back to the
3890 * client for session listing.
3891 *
3892 * The session list lock MUST be acquired before calling this function. Use
3893 * session_lock_list() and session_unlock_list().
3894 */
b178f53e
JG
3895void cmd_list_lttng_sessions(struct lttng_session *sessions,
3896 size_t session_count, uid_t uid, gid_t gid)
2f77fc4b
DG
3897{
3898 int ret;
3899 unsigned int i = 0;
3900 struct ltt_session *session;
3901 struct ltt_session_list *list = session_get_list();
b178f53e
JG
3902 struct lttng_session_extended *extended =
3903 (typeof(extended)) (&sessions[session_count]);
2f77fc4b
DG
3904
3905 DBG("Getting all available session for UID %d GID %d",
3906 uid, gid);
3907 /*
3908 * Iterate over session list and append data after the control struct in
3909 * the buffer.
3910 */
3911 cds_list_for_each_entry(session, &list->head, list) {
e32d7f27
JG
3912 if (!session_get(session)) {
3913 continue;
3914 }
2f77fc4b
DG
3915 /*
3916 * Only list the sessions the user can control.
3917 */
e32d7f27
JG
3918 if (!session_access_ok(session, uid, gid) ||
3919 session->destroyed) {
3920 session_put(session);
2f77fc4b
DG
3921 continue;
3922 }
3923
3924 struct ltt_kernel_session *ksess = session->kernel_session;
3925 struct ltt_ust_session *usess = session->ust_session;
3926
3927 if (session->consumer->type == CONSUMER_DST_NET ||
3928 (ksess && ksess->consumer->type == CONSUMER_DST_NET) ||
3929 (usess && usess->consumer->type == CONSUMER_DST_NET)) {
3930 ret = build_network_session_path(sessions[i].path,
dec56f6c 3931 sizeof(sessions[i].path), session);
2f77fc4b 3932 } else {
dec56f6c 3933 ret = snprintf(sessions[i].path, sizeof(sessions[i].path), "%s",
366a9222 3934 session->consumer->dst.session_root_path);
2f77fc4b
DG
3935 }
3936 if (ret < 0) {
3937 PERROR("snprintf session path");
e32d7f27 3938 session_put(session);
2f77fc4b
DG
3939 continue;
3940 }
3941
3942 strncpy(sessions[i].name, session->name, NAME_MAX);
3943 sessions[i].name[NAME_MAX - 1] = '\0';
8382cf6f 3944 sessions[i].enabled = session->active;
2cbf8fed 3945 sessions[i].snapshot_mode = session->snapshot_mode;
8960e9cd 3946 sessions[i].live_timer_interval = session->live_timer;
b178f53e
JG
3947 extended[i].creation_time.value = (uint64_t) session->creation_time;
3948 extended[i].creation_time.is_set = 1;
2f77fc4b 3949 i++;
e32d7f27 3950 session_put(session);
2f77fc4b
DG
3951 }
3952}
3953
806e2684 3954/*
6d805429 3955 * Command LTTNG_DATA_PENDING returning 0 if the data is NOT pending meaning
d3f14b8a 3956 * ready for trace analysis (or any kind of reader) or else 1 for pending data.
806e2684 3957 */
6d805429 3958int cmd_data_pending(struct ltt_session *session)
806e2684
DG
3959{
3960 int ret;
3961 struct ltt_kernel_session *ksess = session->kernel_session;
3962 struct ltt_ust_session *usess = session->ust_session;
3963
3964 assert(session);
3965
5c408ad8
JD
3966 DBG("Data pending for session %s", session->name);
3967
806e2684 3968 /* Session MUST be stopped to ask for data availability. */
8382cf6f 3969 if (session->active) {
806e2684
DG
3970 ret = LTTNG_ERR_SESSION_STARTED;
3971 goto error;
3a89d11a
DG
3972 } else {
3973 /*
3974 * If stopped, just make sure we've started before else the above call
3975 * will always send that there is data pending.
3976 *
3977 * The consumer assumes that when the data pending command is received,
3978 * the trace has been started before or else no output data is written
3979 * by the streams which is a condition for data pending. So, this is
3980 * *VERY* important that we don't ask the consumer before a start
3981 * trace.
3982 */
8382cf6f 3983 if (!session->has_been_started) {
3a89d11a
DG
3984 ret = 0;
3985 goto error;
3986 }
806e2684
DG
3987 }
3988
92816cc3
JG
3989 /* A rotation is still pending, we have to wait. */
3990 if (session->rotation_state == LTTNG_ROTATION_STATE_ONGOING) {
5c408ad8
JD
3991 DBG("Rotate still pending for session %s", session->name);
3992 ret = 1;
3993 goto error;
3994 }
3995
806e2684 3996 if (ksess && ksess->consumer) {
6d805429
DG
3997 ret = consumer_is_data_pending(ksess->id, ksess->consumer);
3998 if (ret == 1) {
806e2684
DG
3999 /* Data is still being extracted for the kernel. */
4000 goto error;
4001 }
4002 }
4003
4004 if (usess && usess->consumer) {
6d805429
DG
4005 ret = consumer_is_data_pending(usess->id, usess->consumer);
4006 if (ret == 1) {
806e2684
DG
4007 /* Data is still being extracted for the kernel. */
4008 goto error;
4009 }
4010 }
4011
4012 /* Data is ready to be read by a viewer */
6d805429 4013 ret = 0;
806e2684
DG
4014
4015error:
4016 return ret;
4017}
4018
6dc3064a
DG
4019/*
4020 * Command LTTNG_SNAPSHOT_ADD_OUTPUT from the lttng ctl library.
4021 *
4022 * Return LTTNG_OK on success or else a LTTNG_ERR code.
4023 */
4024int cmd_snapshot_add_output(struct ltt_session *session,
df4f5a87 4025 const struct lttng_snapshot_output *output, uint32_t *id)
6dc3064a
DG
4026{
4027 int ret;
4028 struct snapshot_output *new_output;
4029
4030 assert(session);
4031 assert(output);
4032
4033 DBG("Cmd snapshot add output for session %s", session->name);
4034
4035 /*
903ef685 4036 * Can't create an output if the session is not set in no-output mode.
6dc3064a
DG
4037 */
4038 if (session->output_traces) {
903ef685 4039 ret = LTTNG_ERR_NOT_SNAPSHOT_SESSION;
6dc3064a
DG
4040 goto error;
4041 }
4042
54213acc
JG
4043 if (session->has_non_mmap_channel) {
4044 ret = LTTNG_ERR_SNAPSHOT_UNSUPPORTED;
4045 goto error;
4046 }
4047
6dc3064a
DG
4048 /* Only one output is allowed until we have the "tee" feature. */
4049 if (session->snapshot.nb_output == 1) {
4050 ret = LTTNG_ERR_SNAPSHOT_OUTPUT_EXIST;
4051 goto error;
4052 }
4053
4054 new_output = snapshot_output_alloc();
4055 if (!new_output) {
4056 ret = LTTNG_ERR_NOMEM;
4057 goto error;
4058 }
4059
b178f53e 4060 ret = snapshot_output_init(session, output->max_size, output->name,
6dc3064a
DG
4061 output->ctrl_url, output->data_url, session->consumer, new_output,
4062 &session->snapshot);
4063 if (ret < 0) {
4064 if (ret == -ENOMEM) {
4065 ret = LTTNG_ERR_NOMEM;
4066 } else {
4067 ret = LTTNG_ERR_INVALID;
4068 }
4069 goto free_error;
4070 }
4071
6dc3064a
DG
4072 rcu_read_lock();
4073 snapshot_add_output(&session->snapshot, new_output);
4074 if (id) {
4075 *id = new_output->id;
4076 }
4077 rcu_read_unlock();
4078
4079 return LTTNG_OK;
4080
4081free_error:
4082 snapshot_output_destroy(new_output);
4083error:
4084 return ret;
4085}
4086
4087/*
4088 * Command LTTNG_SNAPSHOT_DEL_OUTPUT from lib lttng ctl.
4089 *
4090 * Return LTTNG_OK on success or else a LTTNG_ERR code.
4091 */
4092int cmd_snapshot_del_output(struct ltt_session *session,
df4f5a87 4093 const struct lttng_snapshot_output *output)
6dc3064a
DG
4094{
4095 int ret;
eb240553 4096 struct snapshot_output *sout = NULL;
6dc3064a
DG
4097
4098 assert(session);
4099 assert(output);
4100
6dc3064a
DG
4101 rcu_read_lock();
4102
4103 /*
d3f14b8a
MD
4104 * Permission denied to create an output if the session is not
4105 * set in no output mode.
6dc3064a
DG
4106 */
4107 if (session->output_traces) {
903ef685 4108 ret = LTTNG_ERR_NOT_SNAPSHOT_SESSION;
6dc3064a
DG
4109 goto error;
4110 }
4111
eb240553
DG
4112 if (output->id) {
4113 DBG("Cmd snapshot del output id %" PRIu32 " for session %s", output->id,
4114 session->name);
4115 sout = snapshot_find_output_by_id(output->id, &session->snapshot);
4116 } else if (*output->name != '\0') {
4117 DBG("Cmd snapshot del output name %s for session %s", output->name,
4118 session->name);
4119 sout = snapshot_find_output_by_name(output->name, &session->snapshot);
4120 }
6dc3064a
DG
4121 if (!sout) {
4122 ret = LTTNG_ERR_INVALID;
4123 goto error;
4124 }
4125
4126 snapshot_delete_output(&session->snapshot, sout);
4127 snapshot_output_destroy(sout);
4128 ret = LTTNG_OK;
4129
4130error:
4131 rcu_read_unlock();
4132 return ret;
4133}
4134
4135/*
4136 * Command LTTNG_SNAPSHOT_LIST_OUTPUT from lib lttng ctl.
4137 *
4138 * If no output is available, outputs is untouched and 0 is returned.
4139 *
4140 * Return the size of the newly allocated outputs or a negative LTTNG_ERR code.
4141 */
4142ssize_t cmd_snapshot_list_outputs(struct ltt_session *session,
4143 struct lttng_snapshot_output **outputs)
4144{
4145 int ret, idx = 0;
b223ca94 4146 struct lttng_snapshot_output *list = NULL;
6dc3064a
DG
4147 struct lttng_ht_iter iter;
4148 struct snapshot_output *output;
4149
4150 assert(session);
4151 assert(outputs);
4152
4153 DBG("Cmd snapshot list outputs for session %s", session->name);
4154
4155 /*
d3f14b8a
MD
4156 * Permission denied to create an output if the session is not
4157 * set in no output mode.
6dc3064a
DG
4158 */
4159 if (session->output_traces) {
903ef685
JG
4160 ret = -LTTNG_ERR_NOT_SNAPSHOT_SESSION;
4161 goto end;
6dc3064a
DG
4162 }
4163
4164 if (session->snapshot.nb_output == 0) {
4165 ret = 0;
903ef685 4166 goto end;
6dc3064a
DG
4167 }
4168
4169 list = zmalloc(session->snapshot.nb_output * sizeof(*list));
4170 if (!list) {
b223ca94 4171 ret = -LTTNG_ERR_NOMEM;
903ef685 4172 goto end;
6dc3064a
DG
4173 }
4174
4175 /* Copy list from session to the new list object. */
b223ca94 4176 rcu_read_lock();
6dc3064a
DG
4177 cds_lfht_for_each_entry(session->snapshot.output_ht->ht, &iter.iter,
4178 output, node.node) {
4179 assert(output->consumer);
4180 list[idx].id = output->id;
4181 list[idx].max_size = output->max_size;
6ce22875
MD
4182 if (lttng_strncpy(list[idx].name, output->name,
4183 sizeof(list[idx].name))) {
4184 ret = -LTTNG_ERR_INVALID;
903ef685 4185 goto error;
6ce22875 4186 }
6dc3064a 4187 if (output->consumer->type == CONSUMER_DST_LOCAL) {
6ce22875 4188 if (lttng_strncpy(list[idx].ctrl_url,
366a9222 4189 output->consumer->dst.session_root_path,
6ce22875
MD
4190 sizeof(list[idx].ctrl_url))) {
4191 ret = -LTTNG_ERR_INVALID;
903ef685 4192 goto error;
6ce22875 4193 }
6dc3064a
DG
4194 } else {
4195 /* Control URI. */
4196 ret = uri_to_str_url(&output->consumer->dst.net.control,
4197 list[idx].ctrl_url, sizeof(list[idx].ctrl_url));
4198 if (ret < 0) {
b223ca94 4199 ret = -LTTNG_ERR_NOMEM;
903ef685 4200 goto error;
6dc3064a
DG
4201 }
4202
4203 /* Data URI. */
4204 ret = uri_to_str_url(&output->consumer->dst.net.data,
4205 list[idx].data_url, sizeof(list[idx].data_url));
4206 if (ret < 0) {
b223ca94 4207 ret = -LTTNG_ERR_NOMEM;
903ef685 4208 goto error;
6dc3064a
DG
4209 }
4210 }
4211 idx++;
4212 }
4213
4214 *outputs = list;
b223ca94
JG
4215 list = NULL;
4216 ret = session->snapshot.nb_output;
6dc3064a 4217error:
903ef685 4218 rcu_read_unlock();
b223ca94 4219 free(list);
903ef685 4220end:
b223ca94 4221 return ret;
6dc3064a
DG
4222}
4223
93ec662e
JD
4224/*
4225 * Check if we can regenerate the metadata for this session.
4226 * Only kernel, UST per-uid and non-live sessions are supported.
4227 *
4228 * Return 0 if the metadata can be generated, a LTTNG_ERR code otherwise.
4229 */
4230static
eded6438 4231int check_regenerate_metadata_support(struct ltt_session *session)
93ec662e
JD
4232{
4233 int ret;
4234
4235 assert(session);
4236
4237 if (session->live_timer != 0) {
4238 ret = LTTNG_ERR_LIVE_SESSION;
4239 goto end;
4240 }
4241 if (!session->active) {
4242 ret = LTTNG_ERR_SESSION_NOT_STARTED;
4243 goto end;
4244 }
4245 if (session->ust_session) {
4246 switch (session->ust_session->buffer_type) {
4247 case LTTNG_BUFFER_PER_UID:
4248 break;
4249 case LTTNG_BUFFER_PER_PID:
4250 ret = LTTNG_ERR_PER_PID_SESSION;
4251 goto end;
4252 default:
4253 assert(0);
4254 ret = LTTNG_ERR_UNK;
4255 goto end;
4256 }
4257 }
4258 if (session->consumer->type == CONSUMER_DST_NET &&
4259 session->consumer->relay_minor_version < 8) {
4260 ret = LTTNG_ERR_RELAYD_VERSION_FAIL;
4261 goto end;
4262 }
4263 ret = 0;
4264
4265end:
4266 return ret;
4267}
4268
7802bae3
LL
4269static
4270int clear_metadata_file(int fd)
4271{
4272 int ret;
a5df8828 4273 off_t lseek_ret;
7802bae3 4274
a5df8828
GL
4275 lseek_ret = lseek(fd, 0, SEEK_SET);
4276 if (lseek_ret < 0) {
7802bae3 4277 PERROR("lseek");
a5df8828 4278 ret = -1;
7802bae3
LL
4279 goto end;
4280 }
4281
4282 ret = ftruncate(fd, 0);
4283 if (ret < 0) {
4284 PERROR("ftruncate");
4285 goto end;
4286 }
4287
4288end:
4289 return ret;
4290}
4291
93ec662e 4292static
eded6438 4293int ust_regenerate_metadata(struct ltt_ust_session *usess)
93ec662e
JD
4294{
4295 int ret = 0;
4296 struct buffer_reg_uid *uid_reg = NULL;
4297 struct buffer_reg_session *session_reg = NULL;
4298
4299 rcu_read_lock();
4300 cds_list_for_each_entry(uid_reg, &usess->buffer_reg_uid_list, lnode) {
4301 struct ust_registry_session *registry;
4302 struct ust_registry_channel *chan;
4303 struct lttng_ht_iter iter_chan;
4304
4305 session_reg = uid_reg->registry;
4306 registry = session_reg->reg.ust;
4307
4308 pthread_mutex_lock(&registry->lock);
4309 registry->metadata_len_sent = 0;
4310 memset(registry->metadata, 0, registry->metadata_alloc_len);
4311 registry->metadata_len = 0;
4312 registry->metadata_version++;
7802bae3
LL
4313 if (registry->metadata_fd > 0) {
4314 /* Clear the metadata file's content. */
4315 ret = clear_metadata_file(registry->metadata_fd);
4316 if (ret) {
4317 pthread_mutex_unlock(&registry->lock);
4318 goto end;
4319 }
4320 }
4321
93ec662e
JD
4322 ret = ust_metadata_session_statedump(registry, NULL,
4323 registry->major, registry->minor);
4324 if (ret) {
4325 pthread_mutex_unlock(&registry->lock);
4326 ERR("Failed to generate session metadata (err = %d)",
4327 ret);
4328 goto end;
4329 }
4330 cds_lfht_for_each_entry(registry->channels->ht, &iter_chan.iter,
4331 chan, node.node) {
4332 struct ust_registry_event *event;
4333 struct lttng_ht_iter iter_event;
4334
4335 ret = ust_metadata_channel_statedump(registry, chan);
4336 if (ret) {
4337 pthread_mutex_unlock(&registry->lock);
4338 ERR("Failed to generate channel metadata "
4339 "(err = %d)", ret);
4340 goto end;
4341 }
4342 cds_lfht_for_each_entry(chan->ht->ht, &iter_event.iter,
4343 event, node.node) {
4344 ret = ust_metadata_event_statedump(registry,
4345 chan, event);
4346 if (ret) {
4347 pthread_mutex_unlock(&registry->lock);
4348 ERR("Failed to generate event metadata "
4349 "(err = %d)", ret);
4350 goto end;
4351 }
4352 }
4353 }
4354 pthread_mutex_unlock(&registry->lock);
4355 }
4356
4357end:
4358 rcu_read_unlock();
4359 return ret;
4360}
4361
4362/*
eded6438 4363 * Command LTTNG_REGENERATE_METADATA from the lttng-ctl library.
93ec662e
JD
4364 *
4365 * Ask the consumer to truncate the existing metadata file(s) and
4366 * then regenerate the metadata. Live and per-pid sessions are not
4367 * supported and return an error.
4368 *
4369 * Return 0 on success or else a LTTNG_ERR code.
4370 */
eded6438 4371int cmd_regenerate_metadata(struct ltt_session *session)
93ec662e
JD
4372{
4373 int ret;
4374
4375 assert(session);
4376
eded6438 4377 ret = check_regenerate_metadata_support(session);
93ec662e
JD
4378 if (ret) {
4379 goto end;
4380 }
4381
4382 if (session->kernel_session) {
eded6438 4383 ret = kernctl_session_regenerate_metadata(
93ec662e
JD
4384 session->kernel_session->fd);
4385 if (ret < 0) {
4386 ERR("Failed to regenerate the kernel metadata");
4387 goto end;
4388 }
4389 }
4390
4391 if (session->ust_session) {
eded6438 4392 ret = ust_regenerate_metadata(session->ust_session);
93ec662e
JD
4393 if (ret < 0) {
4394 ERR("Failed to regenerate the UST metadata");
4395 goto end;
4396 }
4397 }
4398 DBG("Cmd metadata regenerate for session %s", session->name);
4399 ret = LTTNG_OK;
4400
4401end:
4402 return ret;
4403}
4404
c2561365
JD
4405/*
4406 * Command LTTNG_REGENERATE_STATEDUMP from the lttng-ctl library.
4407 *
4408 * Ask the tracer to regenerate a new statedump.
4409 *
4410 * Return 0 on success or else a LTTNG_ERR code.
4411 */
4412int cmd_regenerate_statedump(struct ltt_session *session)
4413{
4414 int ret;
4415
4416 assert(session);
4417
4418 if (!session->active) {
4419 ret = LTTNG_ERR_SESSION_NOT_STARTED;
4420 goto end;
4421 }
c2561365
JD
4422
4423 if (session->kernel_session) {
4424 ret = kernctl_session_regenerate_statedump(
4425 session->kernel_session->fd);
4426 /*
4427 * Currently, the statedump in kernel can only fail if out
4428 * of memory.
4429 */
4430 if (ret < 0) {
4431 if (ret == -ENOMEM) {
4432 ret = LTTNG_ERR_REGEN_STATEDUMP_NOMEM;
4433 } else {
4434 ret = LTTNG_ERR_REGEN_STATEDUMP_FAIL;
4435 }
4436 ERR("Failed to regenerate the kernel statedump");
4437 goto end;
4438 }
4439 }
4440
4441 if (session->ust_session) {
4442 ret = ust_app_regenerate_statedump_all(session->ust_session);
4443 /*
4444 * Currently, the statedump in UST always returns 0.
4445 */
4446 if (ret < 0) {
4447 ret = LTTNG_ERR_REGEN_STATEDUMP_FAIL;
4448 ERR("Failed to regenerate the UST statedump");
4449 goto end;
4450 }
4451 }
4452 DBG("Cmd regenerate statedump for session %s", session->name);
4453 ret = LTTNG_OK;
4454
4455end:
4456 return ret;
4457}
4458
b0880ae5
JG
4459int cmd_register_trigger(struct command_ctx *cmd_ctx, int sock,
4460 struct notification_thread_handle *notification_thread)
4461{
4462 int ret;
4463 size_t trigger_len;
4464 ssize_t sock_recv_len;
4465 struct lttng_trigger *trigger = NULL;
4466 struct lttng_buffer_view view;
4467 struct lttng_dynamic_buffer trigger_buffer;
4468
4469 lttng_dynamic_buffer_init(&trigger_buffer);
4470 trigger_len = (size_t) cmd_ctx->lsm->u.trigger.length;
4471 ret = lttng_dynamic_buffer_set_size(&trigger_buffer, trigger_len);
4472 if (ret) {
4473 ret = LTTNG_ERR_NOMEM;
4474 goto end;
4475 }
4476
4477 sock_recv_len = lttcomm_recv_unix_sock(sock, trigger_buffer.data,
4478 trigger_len);
4479 if (sock_recv_len < 0 || sock_recv_len != trigger_len) {
4480 ERR("Failed to receive \"register trigger\" command payload");
4481 /* TODO: should this be a new error enum ? */
4482 ret = LTTNG_ERR_INVALID_TRIGGER;
4483 goto end;
4484 }
4485
4486 view = lttng_buffer_view_from_dynamic_buffer(&trigger_buffer, 0, -1);
4487 if (lttng_trigger_create_from_buffer(&view, &trigger) !=
4488 trigger_len) {
4489 ERR("Invalid trigger payload received in \"register trigger\" command");
4490 ret = LTTNG_ERR_INVALID_TRIGGER;
4491 goto end;
4492 }
4493
4494 ret = notification_thread_command_register_trigger(notification_thread,
4495 trigger);
587f9fd0
JG
4496 /* Ownership of trigger was transferred. */
4497 trigger = NULL;
b0880ae5 4498end:
587f9fd0 4499 lttng_trigger_destroy(trigger);
b0880ae5
JG
4500 lttng_dynamic_buffer_reset(&trigger_buffer);
4501 return ret;
4502}
4503
4504int cmd_unregister_trigger(struct command_ctx *cmd_ctx, int sock,
4505 struct notification_thread_handle *notification_thread)
4506{
4507 int ret;
4508 size_t trigger_len;
4509 ssize_t sock_recv_len;
4510 struct lttng_trigger *trigger = NULL;
4511 struct lttng_buffer_view view;
4512 struct lttng_dynamic_buffer trigger_buffer;
4513
4514 lttng_dynamic_buffer_init(&trigger_buffer);
4515 trigger_len = (size_t) cmd_ctx->lsm->u.trigger.length;
4516 ret = lttng_dynamic_buffer_set_size(&trigger_buffer, trigger_len);
4517 if (ret) {
4518 ret = LTTNG_ERR_NOMEM;
4519 goto end;
4520 }
4521
4522 sock_recv_len = lttcomm_recv_unix_sock(sock, trigger_buffer.data,
4523 trigger_len);
4524 if (sock_recv_len < 0 || sock_recv_len != trigger_len) {
4525 ERR("Failed to receive \"unregister trigger\" command payload");
4526 /* TODO: should this be a new error enum ? */
4527 ret = LTTNG_ERR_INVALID_TRIGGER;
4528 goto end;
4529 }
4530
4531 view = lttng_buffer_view_from_dynamic_buffer(&trigger_buffer, 0, -1);
4532 if (lttng_trigger_create_from_buffer(&view, &trigger) !=
4533 trigger_len) {
4534 ERR("Invalid trigger payload received in \"unregister trigger\" command");
4535 ret = LTTNG_ERR_INVALID_TRIGGER;
4536 goto end;
4537 }
4538
4539 ret = notification_thread_command_unregister_trigger(notification_thread,
4540 trigger);
4541end:
587f9fd0 4542 lttng_trigger_destroy(trigger);
b0880ae5
JG
4543 lttng_dynamic_buffer_reset(&trigger_buffer);
4544 return ret;
4545}
4546
6dc3064a
DG
4547/*
4548 * Send relayd sockets from snapshot output to consumer. Ignore request if the
4549 * snapshot output is *not* set with a remote destination.
4550 *
9a654598 4551 * Return LTTNG_OK on success or a LTTNG_ERR code.
6dc3064a 4552 */
9a654598 4553static enum lttng_error_code set_relayd_for_snapshot(
348a81dc 4554 struct consumer_output *output,
fb9a95c4 4555 const struct ltt_session *session)
6dc3064a 4556{
9a654598 4557 enum lttng_error_code status = LTTNG_OK;
6dc3064a
DG
4558 struct lttng_ht_iter iter;
4559 struct consumer_socket *socket;
1e791a74 4560 LTTNG_OPTIONAL(uint64_t) current_chunk_id = {};
6fa5fe7c 4561 const char *base_path;
6dc3064a 4562
348a81dc 4563 assert(output);
6dc3064a
DG
4564 assert(session);
4565
4566 DBG2("Set relayd object from snapshot output");
4567
1e791a74 4568 if (session->current_trace_chunk) {
348a81dc
JG
4569 enum lttng_trace_chunk_status chunk_status =
4570 lttng_trace_chunk_get_id(
4571 session->current_trace_chunk,
4572 &current_chunk_id.value);
1e791a74 4573
348a81dc 4574 if (chunk_status == LTTNG_TRACE_CHUNK_STATUS_OK) {
1e791a74
JG
4575 current_chunk_id.is_set = true;
4576 } else {
4577 ERR("Failed to get current trace chunk id");
4578 status = LTTNG_ERR_UNK;
4579 goto error;
4580 }
4581 }
4582
6dc3064a 4583 /* Ignore if snapshot consumer output is not network. */
348a81dc 4584 if (output->type != CONSUMER_DST_NET) {
6dc3064a
DG
4585 goto error;
4586 }
4587
6fa5fe7c
MD
4588 /*
4589 * The snapshot record URI base path overrides the session
4590 * base path.
4591 */
4592 if (output->dst.net.control.subdir[0] != '\0') {
4593 base_path = output->dst.net.control.subdir;
4594 } else {
4595 base_path = session->base_path;
4596 }
4597
6dc3064a
DG
4598 /*
4599 * For each consumer socket, create and send the relayd object of the
4600 * snapshot output.
4601 */
4602 rcu_read_lock();
348a81dc 4603 cds_lfht_for_each_entry(output->socks->ht, &iter.iter,
5eecee74 4604 socket, node.node) {
ecd0f96d 4605 pthread_mutex_lock(socket->lock);
9a654598 4606 status = send_consumer_relayd_sockets(0, session->id,
348a81dc 4607 output, socket,
d3e2ba59 4608 session->name, session->hostname,
6fa5fe7c 4609 base_path,
1e791a74 4610 session->live_timer,
db1da059 4611 current_chunk_id.is_set ? &current_chunk_id.value : NULL,
46ef2188
MD
4612 session->creation_time,
4613 session->name_contains_creation_time);
ecd0f96d 4614 pthread_mutex_unlock(socket->lock);
9a654598 4615 if (status != LTTNG_OK) {
6dc3064a
DG
4616 rcu_read_unlock();
4617 goto error;
4618 }
4619 }
4620 rcu_read_unlock();
4621
4622error:
9a654598 4623 return status;
6dc3064a
DG
4624}
4625
4626/*
4627 * Record a kernel snapshot.
4628 *
fac41e72 4629 * Return LTTNG_OK on success or a LTTNG_ERR code.
6dc3064a 4630 */
fb9a95c4
JG
4631static enum lttng_error_code record_kernel_snapshot(
4632 struct ltt_kernel_session *ksess,
348a81dc 4633 const struct consumer_output *output,
fb9a95c4 4634 const struct ltt_session *session,
d07ceecd 4635 int wait, uint64_t nb_packets_per_stream)
6dc3064a 4636{
9a654598 4637 enum lttng_error_code status;
6dc3064a
DG
4638
4639 assert(ksess);
4640 assert(output);
4641 assert(session);
4642
348a81dc
JG
4643 status = kernel_snapshot_record(
4644 ksess, output, wait, nb_packets_per_stream);
9a654598 4645 return status;
6dc3064a
DG
4646}
4647
4648/*
4649 * Record a UST snapshot.
4650 *
9a654598 4651 * Returns LTTNG_OK on success or a LTTNG_ERR error code.
6dc3064a 4652 */
9a654598 4653static enum lttng_error_code record_ust_snapshot(struct ltt_ust_session *usess,
348a81dc
JG
4654 const struct consumer_output *output,
4655 const struct ltt_session *session,
4656 int wait, uint64_t nb_packets_per_stream)
6dc3064a 4657{
9a654598 4658 enum lttng_error_code status;
6dc3064a
DG
4659
4660 assert(usess);
4661 assert(output);
4662 assert(session);
4663
348a81dc
JG
4664 status = ust_app_snapshot_record(
4665 usess, output, wait, nb_packets_per_stream);
9a654598 4666 return status;
6dc3064a
DG
4667}
4668
d07ceecd 4669static
fb9a95c4
JG
4670uint64_t get_session_size_one_more_packet_per_stream(
4671 const struct ltt_session *session, uint64_t cur_nr_packets)
68808f4e 4672{
d07ceecd 4673 uint64_t tot_size = 0;
68808f4e
DG
4674
4675 if (session->kernel_session) {
4676 struct ltt_kernel_channel *chan;
fb9a95c4
JG
4677 const struct ltt_kernel_session *ksess =
4678 session->kernel_session;
68808f4e 4679
68808f4e 4680 cds_list_for_each_entry(chan, &ksess->channel_list.head, list) {
d07ceecd
MD
4681 if (cur_nr_packets >= chan->channel->attr.num_subbuf) {
4682 /*
4683 * Don't take channel into account if we
4684 * already grab all its packets.
4685 */
4686 continue;
68808f4e 4687 }
d07ceecd
MD
4688 tot_size += chan->channel->attr.subbuf_size
4689 * chan->stream_count;
68808f4e
DG
4690 }
4691 }
4692
4693 if (session->ust_session) {
fb9a95c4 4694 const struct ltt_ust_session *usess = session->ust_session;
68808f4e 4695
d07ceecd
MD
4696 tot_size += ust_app_get_size_one_more_packet_per_stream(usess,
4697 cur_nr_packets);
68808f4e
DG
4698 }
4699
d07ceecd 4700 return tot_size;
68808f4e
DG
4701}
4702
5c786ded 4703/*
d07ceecd
MD
4704 * Calculate the number of packets we can grab from each stream that
4705 * fits within the overall snapshot max size.
4706 *
4707 * Returns -1 on error, 0 means infinite number of packets, else > 0 is
4708 * the number of packets per stream.
4709 *
4710 * TODO: this approach is not perfect: we consider the worse case
4711 * (packet filling the sub-buffers) as an upper bound, but we could do
4712 * better if we do this calculation while we actually grab the packet
4713 * content: we would know how much padding we don't actually store into
4714 * the file.
4715 *
4716 * This algorithm is currently bounded by the number of packets per
4717 * stream.
4718 *
4719 * Since we call this algorithm before actually grabbing the data, it's
4720 * an approximation: for instance, applications could appear/disappear
4721 * in between this call and actually grabbing data.
5c786ded 4722 */
d07ceecd 4723static
fb9a95c4
JG
4724int64_t get_session_nb_packets_per_stream(const struct ltt_session *session,
4725 uint64_t max_size)
5c786ded 4726{
d07ceecd
MD
4727 int64_t size_left;
4728 uint64_t cur_nb_packets = 0;
5c786ded 4729
d07ceecd
MD
4730 if (!max_size) {
4731 return 0; /* Infinite */
5c786ded
JD
4732 }
4733
d07ceecd
MD
4734 size_left = max_size;
4735 for (;;) {
4736 uint64_t one_more_packet_tot_size;
5c786ded 4737
fb9a95c4
JG
4738 one_more_packet_tot_size = get_session_size_one_more_packet_per_stream(
4739 session, cur_nb_packets);
d07ceecd
MD
4740 if (!one_more_packet_tot_size) {
4741 /* We are already grabbing all packets. */
4742 break;
4743 }
4744 size_left -= one_more_packet_tot_size;
4745 if (size_left < 0) {
4746 break;
4747 }
4748 cur_nb_packets++;
5c786ded 4749 }
aecf2da5 4750 if (!cur_nb_packets && size_left != max_size) {
d07ceecd
MD
4751 /* Not enough room to grab one packet of each stream, error. */
4752 return -1;
4753 }
4754 return cur_nb_packets;
5c786ded
JD
4755}
4756
fb9a95c4 4757static
d2956687 4758enum lttng_error_code snapshot_record(struct ltt_session *session,
fb9a95c4
JG
4759 const struct snapshot_output *snapshot_output, int wait)
4760{
4761 int64_t nb_packets_per_stream;
d2956687 4762 char snapshot_chunk_name[LTTNG_NAME_MAX];
348a81dc
JG
4763 int ret;
4764 enum lttng_error_code ret_code = LTTNG_OK;
d2956687 4765 struct lttng_trace_chunk *snapshot_trace_chunk;
348a81dc
JG
4766 struct consumer_output *original_ust_consumer_output = NULL;
4767 struct consumer_output *original_kernel_consumer_output = NULL;
4768 struct consumer_output *snapshot_ust_consumer_output = NULL;
4769 struct consumer_output *snapshot_kernel_consumer_output = NULL;
d2956687 4770
348a81dc 4771 ret = snprintf(snapshot_chunk_name, sizeof(snapshot_chunk_name),
d2956687
JG
4772 "%s-%s-%" PRIu64,
4773 snapshot_output->name,
4774 snapshot_output->datetime,
4775 snapshot_output->nb_snapshot);
348a81dc 4776 if (ret < 0 || ret >= sizeof(snapshot_chunk_name)) {
d2956687 4777 ERR("Failed to format snapshot name");
348a81dc
JG
4778 ret_code = LTTNG_ERR_INVALID;
4779 goto error;
d2956687
JG
4780 }
4781 DBG("Recording snapshot \"%s\" for session \"%s\" with chunk name \"%s\"",
4782 snapshot_output->name, session->name,
4783 snapshot_chunk_name);
348a81dc
JG
4784 if (!session->kernel_session && !session->ust_session) {
4785 ERR("Failed to record snapshot as no channels exist");
4786 ret_code = LTTNG_ERR_NO_CHANNEL;
4787 goto error;
4788 }
4789
4790 if (session->kernel_session) {
4791 original_kernel_consumer_output =
4792 session->kernel_session->consumer;
4793 snapshot_kernel_consumer_output =
4794 consumer_copy_output(snapshot_output->consumer);
3b967712
MD
4795 strcpy(snapshot_kernel_consumer_output->chunk_path,
4796 snapshot_chunk_name);
06da8843
JR
4797
4798 /* Copy the original domain subdir. */
4799 strcpy(snapshot_kernel_consumer_output->domain_subdir,
4800 original_kernel_consumer_output->domain_subdir);
4801
348a81dc
JG
4802 ret = consumer_copy_sockets(snapshot_kernel_consumer_output,
4803 original_kernel_consumer_output);
4804 if (ret < 0) {
4805 ERR("Failed to copy consumer sockets from snapshot output configuration");
4806 ret_code = LTTNG_ERR_NOMEM;
4807 goto error;
4808 }
4809 ret_code = set_relayd_for_snapshot(
4810 snapshot_kernel_consumer_output, session);
4811 if (ret_code != LTTNG_OK) {
4812 ERR("Failed to setup relay daemon for kernel tracer snapshot");
4813 goto error;
4814 }
4815 session->kernel_session->consumer =
4816 snapshot_kernel_consumer_output;
4817 }
4818 if (session->ust_session) {
4819 original_ust_consumer_output = session->ust_session->consumer;
4820 snapshot_ust_consumer_output =
4821 consumer_copy_output(snapshot_output->consumer);
3b967712
MD
4822 strcpy(snapshot_ust_consumer_output->chunk_path,
4823 snapshot_chunk_name);
06da8843
JR
4824
4825 /* Copy the original domain subdir. */
4826 strcpy(snapshot_ust_consumer_output->domain_subdir,
4827 original_ust_consumer_output->domain_subdir);
4828
348a81dc
JG
4829 ret = consumer_copy_sockets(snapshot_ust_consumer_output,
4830 original_ust_consumer_output);
4831 if (ret < 0) {
4832 ERR("Failed to copy consumer sockets from snapshot output configuration");
4833 ret_code = LTTNG_ERR_NOMEM;
4834 goto error;
4835 }
4836 ret_code = set_relayd_for_snapshot(
4837 snapshot_ust_consumer_output, session);
4838 if (ret_code != LTTNG_OK) {
4839 ERR("Failed to setup relay daemon for userspace tracer snapshot");
4840 goto error;
4841 }
4842 session->ust_session->consumer =
4843 snapshot_ust_consumer_output;
4844 }
4845
d2956687 4846 snapshot_trace_chunk = session_create_new_trace_chunk(session,
348a81dc
JG
4847 snapshot_kernel_consumer_output ?:
4848 snapshot_ust_consumer_output,
4849 consumer_output_get_base_path(
4850 snapshot_output->consumer),
d2956687
JG
4851 snapshot_chunk_name);
4852 if (!snapshot_trace_chunk) {
348a81dc
JG
4853 ERR("Failed to create temporary trace chunk to record a snapshot of session \"%s\"",
4854 session->name);
4855 ret_code = LTTNG_ERR_CREATE_DIR_FAIL;
4856 goto error;
d2956687
JG
4857 }
4858 assert(!session->current_trace_chunk);
4859 ret = session_set_trace_chunk(session, snapshot_trace_chunk, NULL);
4860 lttng_trace_chunk_put(snapshot_trace_chunk);
4861 snapshot_trace_chunk = NULL;
4862 if (ret) {
348a81dc
JG
4863 ERR("Failed to set temporary trace chunk to record a snapshot of session \"%s\"",
4864 session->name);
4865 ret_code = LTTNG_ERR_CREATE_TRACE_CHUNK_FAIL_CONSUMER;
4866 goto error;
d2956687 4867 }
fb9a95c4
JG
4868
4869 nb_packets_per_stream = get_session_nb_packets_per_stream(session,
4870 snapshot_output->max_size);
4871 if (nb_packets_per_stream < 0) {
348a81dc 4872 ret_code = LTTNG_ERR_MAX_SIZE_INVALID;
5151d412 4873 goto error_close_trace_chunk;
fb9a95c4
JG
4874 }
4875
4876 if (session->kernel_session) {
348a81dc
JG
4877 ret_code = record_kernel_snapshot(session->kernel_session,
4878 snapshot_kernel_consumer_output, session,
fb9a95c4 4879 wait, nb_packets_per_stream);
348a81dc 4880 if (ret_code != LTTNG_OK) {
5151d412 4881 goto error_close_trace_chunk;
fb9a95c4
JG
4882 }
4883 }
4884
4885 if (session->ust_session) {
348a81dc
JG
4886 ret_code = record_ust_snapshot(session->ust_session,
4887 snapshot_ust_consumer_output, session,
fb9a95c4 4888 wait, nb_packets_per_stream);
348a81dc 4889 if (ret_code != LTTNG_OK) {
5151d412 4890 goto error_close_trace_chunk;
fb9a95c4
JG
4891 }
4892 }
d2956687 4893
5151d412 4894error_close_trace_chunk:
dbfee52c
MD
4895 if (session_set_trace_chunk(session, NULL, &snapshot_trace_chunk)) {
4896 ERR("Failed to release the current trace chunk of session \"%s\"",
4897 session->name);
4898 ret_code = LTTNG_ERR_UNK;
4899 }
4900
4901 if (session_close_trace_chunk(session, snapshot_trace_chunk,
343defc2 4902 LTTNG_TRACE_CHUNK_COMMAND_TYPE_NO_OPERATION, NULL)) {
d2956687
JG
4903 /*
4904 * Don't goto end; make sure the chunk is closed for the session
4905 * to allow future snapshots.
4906 */
4907 ERR("Failed to close snapshot trace chunk of session \"%s\"",
4908 session->name);
348a81dc 4909 ret_code = LTTNG_ERR_CLOSE_TRACE_CHUNK_FAIL_CONSUMER;
d2956687 4910 }
837c04d6
JG
4911
4912 lttng_trace_chunk_put(snapshot_trace_chunk);
4913 snapshot_trace_chunk = NULL;
348a81dc
JG
4914error:
4915 if (original_ust_consumer_output) {
4916 session->ust_session->consumer = original_ust_consumer_output;
4917 }
4918 if (original_kernel_consumer_output) {
4919 session->kernel_session->consumer =
4920 original_kernel_consumer_output;
4921 }
4922 consumer_output_put(snapshot_ust_consumer_output);
4923 consumer_output_put(snapshot_kernel_consumer_output);
4924 return ret_code;
fb9a95c4
JG
4925}
4926
6dc3064a
DG
4927/*
4928 * Command LTTNG_SNAPSHOT_RECORD from lib lttng ctl.
4929 *
4930 * The wait parameter is ignored so this call always wait for the snapshot to
4931 * complete before returning.
4932 *
4933 * Return LTTNG_OK on success or else a LTTNG_ERR code.
4934 */
4935int cmd_snapshot_record(struct ltt_session *session,
df4f5a87 4936 const struct lttng_snapshot_output *output, int wait)
6dc3064a 4937{
9a654598
JG
4938 enum lttng_error_code cmd_ret = LTTNG_OK;
4939 int ret;
00e1dfc4 4940 unsigned int snapshot_success = 0;
10ba83fe 4941 char datetime[16];
2abe7969 4942 struct snapshot_output *tmp_output = NULL;
6dc3064a
DG
4943
4944 assert(session);
ba45d9f0 4945 assert(output);
6dc3064a
DG
4946
4947 DBG("Cmd snapshot record for session %s", session->name);
4948
10ba83fe
JR
4949 /* Get the datetime for the snapshot output directory. */
4950 ret = utils_get_current_time_str("%Y%m%d-%H%M%S", datetime,
4951 sizeof(datetime));
4952 if (!ret) {
9a654598 4953 cmd_ret = LTTNG_ERR_INVALID;
10ba83fe
JR
4954 goto error;
4955 }
4956
6dc3064a 4957 /*
d3f14b8a
MD
4958 * Permission denied to create an output if the session is not
4959 * set in no output mode.
6dc3064a
DG
4960 */
4961 if (session->output_traces) {
9a654598 4962 cmd_ret = LTTNG_ERR_NOT_SNAPSHOT_SESSION;
6dc3064a
DG
4963 goto error;
4964 }
4965
4966 /* The session needs to be started at least once. */
8382cf6f 4967 if (!session->has_been_started) {
9a654598 4968 cmd_ret = LTTNG_ERR_START_SESSION_ONCE;
6dc3064a
DG
4969 goto error;
4970 }
4971
4972 /* Use temporary output for the session. */
ba45d9f0 4973 if (*output->ctrl_url != '\0') {
2abe7969
JG
4974 tmp_output = snapshot_output_alloc();
4975 if (!tmp_output) {
4976 cmd_ret = LTTNG_ERR_NOMEM;
4977 goto error;
4978 }
4979
b178f53e
JG
4980 ret = snapshot_output_init(session, output->max_size,
4981 output->name,
4982 output->ctrl_url, output->data_url,
4983 session->consumer,
2abe7969 4984 tmp_output, NULL);
6dc3064a
DG
4985 if (ret < 0) {
4986 if (ret == -ENOMEM) {
9a654598 4987 cmd_ret = LTTNG_ERR_NOMEM;
6dc3064a 4988 } else {
9a654598 4989 cmd_ret = LTTNG_ERR_INVALID;
6dc3064a
DG
4990 }
4991 goto error;
4992 }
1bfe7328 4993 /* Use the global session count for the temporary snapshot. */
2abe7969 4994 tmp_output->nb_snapshot = session->snapshot.nb_snapshot;
10ba83fe
JR
4995
4996 /* Use the global datetime */
2abe7969
JG
4997 memcpy(tmp_output->datetime, datetime, sizeof(datetime));
4998 cmd_ret = snapshot_record(session, tmp_output, wait);
fb9a95c4 4999 if (cmd_ret != LTTNG_OK) {
804c90a8
JR
5000 goto error;
5001 }
804c90a8
JR
5002 snapshot_success = 1;
5003 } else {
5004 struct snapshot_output *sout;
5005 struct lttng_ht_iter iter;
68808f4e 5006
804c90a8
JR
5007 rcu_read_lock();
5008 cds_lfht_for_each_entry(session->snapshot.output_ht->ht,
5009 &iter.iter, sout, node.node) {
2abe7969
JG
5010 struct snapshot_output output_copy;
5011
804c90a8 5012 /*
2abe7969
JG
5013 * Make a local copy of the output and override output
5014 * parameters with those provided as part of the
5015 * command.
804c90a8 5016 */
2abe7969 5017 memcpy(&output_copy, sout, sizeof(output_copy));
1bfe7328 5018
804c90a8 5019 if (output->max_size != (uint64_t) -1ULL) {
2abe7969 5020 output_copy.max_size = output->max_size;
6dc3064a 5021 }
d07ceecd 5022
2abe7969
JG
5023 output_copy.nb_snapshot = session->snapshot.nb_snapshot;
5024 memcpy(output_copy.datetime, datetime,
5025 sizeof(datetime));
6dc3064a 5026
804c90a8
JR
5027 /* Use temporary name. */
5028 if (*output->name != '\0') {
2abe7969
JG
5029 if (lttng_strncpy(output_copy.name,
5030 output->name,
5031 sizeof(output_copy.name))) {
9a654598 5032 cmd_ret = LTTNG_ERR_INVALID;
cf3e357d
MD
5033 rcu_read_unlock();
5034 goto error;
5035 }
804c90a8 5036 }
e1986656 5037
2abe7969 5038 cmd_ret = snapshot_record(session, &output_copy, wait);
fb9a95c4
JG
5039 if (cmd_ret != LTTNG_OK) {
5040 rcu_read_unlock();
5041 goto error;
6dc3064a 5042 }
804c90a8 5043 snapshot_success = 1;
6dc3064a 5044 }
804c90a8 5045 rcu_read_unlock();
6dc3064a
DG
5046 }
5047
1bfe7328
DG
5048 if (snapshot_success) {
5049 session->snapshot.nb_snapshot++;
b67578cb 5050 } else {
9a654598 5051 cmd_ret = LTTNG_ERR_SNAPSHOT_FAIL;
1bfe7328
DG
5052 }
5053
6dc3064a 5054error:
2abe7969
JG
5055 if (tmp_output) {
5056 snapshot_output_destroy(tmp_output);
5057 }
9a654598 5058 return cmd_ret;
6dc3064a
DG
5059}
5060
d7ba1388
MD
5061/*
5062 * Command LTTNG_SET_SESSION_SHM_PATH processed by the client thread.
5063 */
5064int cmd_set_session_shm_path(struct ltt_session *session,
5065 const char *shm_path)
5066{
5067 /* Safety net */
5068 assert(session);
5069
5070 /*
5071 * Can only set shm path before session is started.
5072 */
5073 if (session->has_been_started) {
5074 return LTTNG_ERR_SESSION_STARTED;
5075 }
5076
5077 strncpy(session->shm_path, shm_path,
5078 sizeof(session->shm_path));
5079 session->shm_path[sizeof(session->shm_path) - 1] = '\0';
5080
5081 return 0;
5082}
5083
5c408ad8
JD
5084/*
5085 * Command LTTNG_ROTATE_SESSION from the lttng-ctl library.
5086 *
5087 * Ask the consumer to rotate the session output directory.
5088 * The session lock must be held.
5089 *
d5a1b7aa 5090 * Returns LTTNG_OK on success or else a negative LTTng error code.
5c408ad8
JD
5091 */
5092int cmd_rotate_session(struct ltt_session *session,
7fdbed1c 5093 struct lttng_rotate_session_return *rotate_return,
343defc2
MD
5094 bool quiet_rotation,
5095 enum lttng_trace_chunk_command_type command)
5c408ad8
JD
5096{
5097 int ret;
d2956687 5098 uint64_t ongoing_rotation_chunk_id;
d5a1b7aa 5099 enum lttng_error_code cmd_ret = LTTNG_OK;
d2956687
JG
5100 struct lttng_trace_chunk *chunk_being_archived = NULL;
5101 struct lttng_trace_chunk *new_trace_chunk = NULL;
5102 enum lttng_trace_chunk_status chunk_status;
3156892b
JG
5103 bool failed_to_rotate = false;
5104 enum lttng_error_code rotation_fail_code = LTTNG_OK;
5c408ad8
JD
5105
5106 assert(session);
5107
5108 if (!session->has_been_started) {
d5a1b7aa 5109 cmd_ret = LTTNG_ERR_START_SESSION_ONCE;
d68c9a04 5110 goto end;
5c408ad8
JD
5111 }
5112
d48d65e1
MD
5113 /*
5114 * Explicit rotation is not supported for live sessions.
5115 * However, live sessions can perform a quiet rotation on
5116 * destroy.
5117 * Rotation is not supported for snapshot traces (no output).
5118 */
5119 if ((!quiet_rotation && session->live_timer) ||
5120 !session->output_traces) {
d5a1b7aa 5121 cmd_ret = LTTNG_ERR_ROTATION_NOT_AVAILABLE;
d68c9a04 5122 goto end;
5c408ad8
JD
5123 }
5124
d2956687 5125 /* Unsupported feature in lttng-relayd before 2.11. */
070b6a86 5126 if (!quiet_rotation && session->consumer->type == CONSUMER_DST_NET &&
5c408ad8
JD
5127 (session->consumer->relay_major_version == 2 &&
5128 session->consumer->relay_minor_version < 11)) {
d5a1b7aa 5129 cmd_ret = LTTNG_ERR_ROTATION_NOT_AVAILABLE_RELAY;
d68c9a04 5130 goto end;
5c408ad8
JD
5131 }
5132
a40a503f
MD
5133 /* Unsupported feature in lttng-modules before 2.8 (lack of sequence number). */
5134 if (session->kernel_session && !kernel_supports_ring_buffer_packet_sequence_number()) {
5135 cmd_ret = LTTNG_ERR_ROTATION_NOT_AVAILABLE_KERNEL;
5136 goto end;
5137 }
5138
92816cc3 5139 if (session->rotation_state == LTTNG_ROTATION_STATE_ONGOING) {
92816cc3
JG
5140 DBG("Refusing to launch a rotation; a rotation is already in progress for session %s",
5141 session->name);
d5a1b7aa 5142 cmd_ret = LTTNG_ERR_ROTATION_PENDING;
d68c9a04 5143 goto end;
5c408ad8
JD
5144 }
5145
5146 /*
5147 * After a stop, we only allow one rotation to occur, the other ones are
5148 * useless until a new start.
5149 */
5150 if (session->rotated_after_last_stop) {
5151 DBG("Session \"%s\" was already rotated after stop, refusing rotation",
5152 session->name);
d5a1b7aa 5153 cmd_ret = LTTNG_ERR_ROTATION_MULTIPLE_AFTER_STOP;
d68c9a04 5154 goto end;
5c408ad8 5155 }
b02f5986
MD
5156
5157 /*
5158 * After a stop followed by a clear, disallow following rotations a they would
5159 * generate empty chunks.
5160 */
5161 if (session->cleared_after_last_stop) {
5162 DBG("Session \"%s\" was already cleared after stop, refusing rotation",
5163 session->name);
5164 cmd_ret = LTTNG_ERR_ROTATION_AFTER_STOP_CLEAR;
5165 goto end;
5166 }
5167
d2956687 5168 if (session->active) {
348a81dc 5169 new_trace_chunk = session_create_new_trace_chunk(session, NULL,
d2956687
JG
5170 NULL, NULL);
5171 if (!new_trace_chunk) {
5172 cmd_ret = LTTNG_ERR_CREATE_DIR_FAIL;
5173 goto error;
5c408ad8 5174 }
d2956687 5175 }
2961f09e 5176
3156892b
JG
5177 /*
5178 * The current trace chunk becomes the chunk being archived.
5179 *
5180 * After this point, "chunk_being_archived" must absolutely
5181 * be closed on the consumer(s), otherwise it will never be
5182 * cleaned-up, which will result in a leak.
5183 */
d2956687
JG
5184 ret = session_set_trace_chunk(session, new_trace_chunk,
5185 &chunk_being_archived);
5186 if (ret) {
5187 cmd_ret = LTTNG_ERR_CREATE_TRACE_CHUNK_FAIL_CONSUMER;
b178f53e
JG
5188 goto error;
5189 }
5190
5c408ad8 5191 if (session->kernel_session) {
d5a1b7aa
JG
5192 cmd_ret = kernel_rotate_session(session);
5193 if (cmd_ret != LTTNG_OK) {
3156892b
JG
5194 failed_to_rotate = true;
5195 rotation_fail_code = cmd_ret;
5c408ad8
JD
5196 }
5197 }
5198 if (session->ust_session) {
d5a1b7aa
JG
5199 cmd_ret = ust_app_rotate_session(session);
5200 if (cmd_ret != LTTNG_OK) {
3156892b
JG
5201 failed_to_rotate = true;
5202 rotation_fail_code = cmd_ret;
5c408ad8 5203 }
92816cc3 5204 }
17dd1232 5205
3b61d9ee
JG
5206 if (!session->active) {
5207 session->rotated_after_last_stop = true;
5208 }
5209
5210 if (!chunk_being_archived) {
5211 DBG("Rotating session \"%s\" from a \"NULL\" trace chunk to a new trace chunk, skipping completion check",
5212 session->name);
5213 if (failed_to_rotate) {
5214 cmd_ret = rotation_fail_code;
5215 goto error;
5216 }
5217 cmd_ret = LTTNG_OK;
5218 goto end;
5219 }
5220
5221 session->rotation_state = LTTNG_ROTATION_STATE_ONGOING;
5222 chunk_status = lttng_trace_chunk_get_id(chunk_being_archived,
5223 &ongoing_rotation_chunk_id);
5224 assert(chunk_status == LTTNG_TRACE_CHUNK_STATUS_OK);
5225
bbc4768c 5226 ret = session_close_trace_chunk(session, chunk_being_archived,
343defc2 5227 command, session->last_chunk_path);
d2956687
JG
5228 if (ret) {
5229 cmd_ret = LTTNG_ERR_CLOSE_TRACE_CHUNK_FAIL_CONSUMER;
5230 goto error;
5231 }
5232
3156892b
JG
5233 if (failed_to_rotate) {
5234 cmd_ret = rotation_fail_code;
5235 goto error;
5236 }
5237
7fdbed1c 5238 session->quiet_rotation = quiet_rotation;
92816cc3
JG
5239 ret = timer_session_rotation_pending_check_start(session,
5240 DEFAULT_ROTATE_PENDING_TIMER);
5241 if (ret) {
d5a1b7aa 5242 cmd_ret = LTTNG_ERR_UNK;
2961f09e 5243 goto error;
5c408ad8
JD
5244 }
5245
5c408ad8 5246 if (rotate_return) {
d2956687 5247 rotate_return->rotation_id = ongoing_rotation_chunk_id;
5c408ad8
JD
5248 }
5249
d2956687
JG
5250 session->chunk_being_archived = chunk_being_archived;
5251 chunk_being_archived = NULL;
7fdbed1c
JG
5252 if (!quiet_rotation) {
5253 ret = notification_thread_command_session_rotation_ongoing(
5254 notification_thread_handle,
5255 session->name, session->uid, session->gid,
5256 ongoing_rotation_chunk_id);
5257 if (ret != LTTNG_OK) {
5258 ERR("Failed to notify notification thread that a session rotation is ongoing for session %s",
5259 session->name);
5260 cmd_ret = ret;
5261 }
2961f09e
JG
5262 }
5263
92816cc3 5264 DBG("Cmd rotate session %s, archive_id %" PRIu64 " sent",
d2956687 5265 session->name, ongoing_rotation_chunk_id);
5c408ad8 5266end:
d2956687
JG
5267 lttng_trace_chunk_put(new_trace_chunk);
5268 lttng_trace_chunk_put(chunk_being_archived);
d5a1b7aa 5269 ret = (cmd_ret == LTTNG_OK) ? cmd_ret : -((int) cmd_ret);
5c408ad8 5270 return ret;
2961f09e 5271error:
2961f09e 5272 if (session_reset_rotation_state(session,
d2956687 5273 LTTNG_ROTATION_STATE_ERROR)) {
2961f09e
JG
5274 ERR("Failed to reset rotation state of session \"%s\"",
5275 session->name);
5276 }
5277 goto end;
5c408ad8
JD
5278}
5279
5280/*
d68c9a04 5281 * Command LTTNG_ROTATION_GET_INFO from the lttng-ctl library.
5c408ad8
JD
5282 *
5283 * Check if the session has finished its rotation.
5284 *
d2956687 5285 * Return LTTNG_OK on success or else an LTTNG_ERR code.
5c408ad8 5286 */
d68c9a04
JD
5287int cmd_rotate_get_info(struct ltt_session *session,
5288 struct lttng_rotation_get_info_return *info_return,
5289 uint64_t rotation_id)
5c408ad8 5290{
d2956687
JG
5291 enum lttng_error_code cmd_ret = LTTNG_OK;
5292 enum lttng_rotation_state rotation_state;
5c408ad8 5293
d68c9a04 5294 DBG("Cmd rotate_get_info session %s, rotation id %" PRIu64, session->name,
d2956687 5295 session->most_recent_chunk_id.value);
5c408ad8 5296
d2956687
JG
5297 if (session->chunk_being_archived) {
5298 enum lttng_trace_chunk_status chunk_status;
5299 uint64_t chunk_id;
5300
5301 chunk_status = lttng_trace_chunk_get_id(
5302 session->chunk_being_archived,
5303 &chunk_id);
5304 assert(chunk_status == LTTNG_TRACE_CHUNK_STATUS_OK);
5305
5306 rotation_state = rotation_id == chunk_id ?
5307 LTTNG_ROTATION_STATE_ONGOING :
5308 LTTNG_ROTATION_STATE_EXPIRED;
5309 } else {
5310 if (session->last_archived_chunk_id.is_set &&
5311 rotation_id != session->last_archived_chunk_id.value) {
5312 rotation_state = LTTNG_ROTATION_STATE_EXPIRED;
5313 } else {
5314 rotation_state = session->rotation_state;
5315 }
5c408ad8
JD
5316 }
5317
d2956687
JG
5318 switch (rotation_state) {
5319 case LTTNG_ROTATION_STATE_NO_ROTATION:
83ed9e90 5320 DBG("Reporting that no rotation has occurred within the lifetime of session \"%s\"",
d2956687
JG
5321 session->name);
5322 goto end;
5323 case LTTNG_ROTATION_STATE_EXPIRED:
5324 DBG("Reporting that the rotation state of rotation id %" PRIu64 " of session \"%s\" has expired",
5325 rotation_id, session->name);
5326 break;
d68c9a04 5327 case LTTNG_ROTATION_STATE_ONGOING:
d2956687 5328 DBG("Reporting that rotation id %" PRIu64 " of session \"%s\" is still pending",
d68c9a04
JD
5329 rotation_id, session->name);
5330 break;
5331 case LTTNG_ROTATION_STATE_COMPLETED:
dd73d57b 5332 {
d2956687
JG
5333 int fmt_ret;
5334 char *chunk_path;
dd73d57b
JG
5335 char *current_tracing_path_reply;
5336 size_t current_tracing_path_reply_len;
5337
d2956687
JG
5338 DBG("Reporting that rotation id %" PRIu64 " of session \"%s\" is completed",
5339 rotation_id, session->name);
5340
dd73d57b
JG
5341 switch (session_get_consumer_destination_type(session)) {
5342 case CONSUMER_DST_LOCAL:
5343 current_tracing_path_reply =
5344 info_return->location.local.absolute_path;
5345 current_tracing_path_reply_len =
5346 sizeof(info_return->location.local.absolute_path);
5347 info_return->location_type =
05f8afa9 5348 (int8_t) LTTNG_TRACE_ARCHIVE_LOCATION_TYPE_LOCAL;
ecd1a12f
MD
5349 fmt_ret = asprintf(&chunk_path,
5350 "%s/" DEFAULT_ARCHIVED_TRACE_CHUNKS_DIRECTORY "/%s",
5351 session_get_base_path(session),
5352 session->last_archived_chunk_name);
5353 if (fmt_ret == -1) {
5354 PERROR("Failed to format the path of the last archived trace chunk");
5355 info_return->status = LTTNG_ROTATION_STATUS_ERROR;
5356 cmd_ret = LTTNG_ERR_UNK;
5357 goto end;
5358 }
dd73d57b
JG
5359 break;
5360 case CONSUMER_DST_NET:
09cfbe47
JG
5361 {
5362 uint16_t ctrl_port, data_port;
5363
dd73d57b
JG
5364 current_tracing_path_reply =
5365 info_return->location.relay.relative_path;
5366 current_tracing_path_reply_len =
5367 sizeof(info_return->location.relay.relative_path);
5368 /* Currently the only supported relay protocol. */
5369 info_return->location.relay.protocol =
05f8afa9 5370 (int8_t) LTTNG_TRACE_ARCHIVE_LOCATION_RELAY_PROTOCOL_TYPE_TCP;
dd73d57b 5371
d2956687 5372 fmt_ret = lttng_strncpy(info_return->location.relay.host,
dd73d57b
JG
5373 session_get_net_consumer_hostname(session),
5374 sizeof(info_return->location.relay.host));
d2956687
JG
5375 if (fmt_ret) {
5376 ERR("Failed to copy host name to rotate_get_info reply");
dd73d57b 5377 info_return->status = LTTNG_ROTATION_STATUS_ERROR;
d2956687 5378 cmd_ret = LTTNG_ERR_SET_URL;
dd73d57b
JG
5379 goto end;
5380 }
5381
09cfbe47
JG
5382 session_get_net_consumer_ports(session, &ctrl_port, &data_port);
5383 info_return->location.relay.ports.control = ctrl_port;
5384 info_return->location.relay.ports.data = data_port;
dd73d57b 5385 info_return->location_type =
05f8afa9 5386 (int8_t) LTTNG_TRACE_ARCHIVE_LOCATION_TYPE_RELAY;
ecd1a12f
MD
5387 chunk_path = strdup(session->last_chunk_path);
5388 if (!chunk_path) {
5389 ERR("Failed to allocate the path of the last archived trace chunk");
5390 info_return->status = LTTNG_ROTATION_STATUS_ERROR;
5391 cmd_ret = LTTNG_ERR_UNK;
5392 goto end;
5393 }
dd73d57b 5394 break;
09cfbe47 5395 }
dd73d57b
JG
5396 default:
5397 abort();
5398 }
d2956687
JG
5399
5400 fmt_ret = lttng_strncpy(current_tracing_path_reply,
5401 chunk_path, current_tracing_path_reply_len);
5402 free(chunk_path);
5403 if (fmt_ret) {
5404 ERR("Failed to copy path of the last archived trace chunk to rotate_get_info reply");
d68c9a04 5405 info_return->status = LTTNG_ROTATION_STATUS_ERROR;
d2956687 5406 cmd_ret = LTTNG_ERR_UNK;
5c408ad8
JD
5407 goto end;
5408 }
dd73d57b 5409
d68c9a04 5410 break;
dd73d57b 5411 }
d68c9a04 5412 case LTTNG_ROTATION_STATE_ERROR:
d2956687 5413 DBG("Reporting that an error occurred during rotation %" PRIu64 " of session \"%s\"",
d68c9a04
JD
5414 rotation_id, session->name);
5415 break;
5416 default:
5417 abort();
5c408ad8
JD
5418 }
5419
d2956687 5420 cmd_ret = LTTNG_OK;
5c408ad8 5421end:
d2956687
JG
5422 info_return->status = (int32_t) rotation_state;
5423 return cmd_ret;
5c408ad8
JD
5424}
5425
259c2674
JD
5426/*
5427 * Command LTTNG_ROTATION_SET_SCHEDULE from the lttng-ctl library.
5428 *
5429 * Configure the automatic rotation parameters.
66ea93b1
JG
5430 * 'activate' to true means activate the rotation schedule type with 'new_value'.
5431 * 'activate' to false means deactivate the rotation schedule and validate that
5432 * 'new_value' has the same value as the currently active value.
259c2674 5433 *
66ea93b1 5434 * Return 0 on success or else a positive LTTNG_ERR code.
259c2674
JD
5435 */
5436int cmd_rotation_set_schedule(struct ltt_session *session,
66ea93b1
JG
5437 bool activate, enum lttng_rotation_schedule_type schedule_type,
5438 uint64_t new_value,
90936dcf 5439 struct notification_thread_handle *notification_thread_handle)
259c2674
JD
5440{
5441 int ret;
66ea93b1 5442 uint64_t *parameter_value;
259c2674
JD
5443
5444 assert(session);
5445
5446 DBG("Cmd rotate set schedule session %s", session->name);
5447
92fe5ca1 5448 if (session->live_timer || !session->output_traces) {
66ea93b1 5449 DBG("Failing ROTATION_SET_SCHEDULE command as the rotation feature is not available for this session");
259c2674
JD
5450 ret = LTTNG_ERR_ROTATION_NOT_AVAILABLE;
5451 goto end;
5452 }
5453
66ea93b1
JG
5454 switch (schedule_type) {
5455 case LTTNG_ROTATION_SCHEDULE_TYPE_SIZE_THRESHOLD:
5456 parameter_value = &session->rotate_size;
5457 break;
5458 case LTTNG_ROTATION_SCHEDULE_TYPE_PERIODIC:
5459 parameter_value = &session->rotate_timer_period;
5460 if (new_value >= UINT_MAX) {
5461 DBG("Failing ROTATION_SET_SCHEDULE command as the value requested for a periodic rotation schedule is invalid: %" PRIu64 " > %u (UINT_MAX)",
5462 new_value, UINT_MAX);
5463 ret = LTTNG_ERR_INVALID;
5464 goto end;
5465 }
5466 break;
5467 default:
5468 WARN("Failing ROTATION_SET_SCHEDULE command on unknown schedule type");
5469 ret = LTTNG_ERR_INVALID;
259c2674 5470 goto end;
66ea93b1
JG
5471 }
5472
5473 /* Improper use of the API. */
5474 if (new_value == -1ULL) {
5475 WARN("Failing ROTATION_SET_SCHEDULE command as the value requested is -1");
5476 ret = LTTNG_ERR_INVALID;
259c2674
JD
5477 goto end;
5478 }
5479
66ea93b1
JG
5480 /*
5481 * As indicated in struct ltt_session's comments, a value of == 0 means
5482 * this schedule rotation type is not in use.
5483 *
5484 * Reject the command if we were asked to activate a schedule that was
5485 * already active.
5486 */
5487 if (activate && *parameter_value != 0) {
5488 DBG("Failing ROTATION_SET_SCHEDULE (activate) command as the schedule is already active");
5489 ret = LTTNG_ERR_ROTATION_SCHEDULE_SET;
90936dcf 5490 goto end;
66ea93b1
JG
5491 }
5492
5493 /*
5494 * Reject the command if we were asked to deactivate a schedule that was
5495 * not active.
5496 */
5497 if (!activate && *parameter_value == 0) {
5498 DBG("Failing ROTATION_SET_SCHEDULE (deactivate) command as the schedule is already inactive");
5499 ret = LTTNG_ERR_ROTATION_SCHEDULE_NOT_SET;
90936dcf
JD
5500 goto end;
5501 }
5502
66ea93b1
JG
5503 /*
5504 * Reject the command if we were asked to deactivate a schedule that
5505 * doesn't exist.
5506 */
5507 if (!activate && *parameter_value != new_value) {
5508 DBG("Failing ROTATION_SET_SCHEDULE (deactivate) command as an inexistant schedule was provided");
5509 ret = LTTNG_ERR_ROTATION_SCHEDULE_NOT_SET;
5510 goto end;
5511 }
259c2674 5512
66ea93b1
JG
5513 *parameter_value = activate ? new_value : 0;
5514
5515 switch (schedule_type) {
5516 case LTTNG_ROTATION_SCHEDULE_TYPE_PERIODIC:
5517 if (activate && session->active) {
5518 /*
5519 * Only start the timer if the session is active,
5520 * otherwise it will be started when the session starts.
5521 */
92816cc3
JG
5522 ret = timer_session_rotation_schedule_timer_start(
5523 session, new_value);
259c2674 5524 if (ret) {
66ea93b1 5525 ERR("Failed to enable session rotation timer in ROTATION_SET_SCHEDULE command");
259c2674
JD
5526 ret = LTTNG_ERR_UNK;
5527 goto end;
5528 }
66ea93b1 5529 } else {
92816cc3
JG
5530 ret = timer_session_rotation_schedule_timer_stop(
5531 session);
66ea93b1
JG
5532 if (ret) {
5533 ERR("Failed to disable session rotation timer in ROTATION_SET_SCHEDULE command");
5534 ret = LTTNG_ERR_UNK;
f3ce6946 5535 goto end;
66ea93b1 5536 }
259c2674 5537 }
66ea93b1
JG
5538 break;
5539 case LTTNG_ROTATION_SCHEDULE_TYPE_SIZE_THRESHOLD:
5540 if (activate) {
5541 ret = subscribe_session_consumed_size_rotation(session,
5542 new_value, notification_thread_handle);
90936dcf 5543 if (ret) {
66ea93b1 5544 ERR("Failed to enable consumed-size notification in ROTATION_SET_SCHEDULE command");
90936dcf
JD
5545 ret = LTTNG_ERR_UNK;
5546 goto end;
5547 }
90936dcf 5548 } else {
66ea93b1
JG
5549 ret = unsubscribe_session_consumed_size_rotation(session,
5550 notification_thread_handle);
90936dcf 5551 if (ret) {
66ea93b1 5552 ERR("Failed to disable consumed-size notification in ROTATION_SET_SCHEDULE command");
90936dcf
JD
5553 ret = LTTNG_ERR_UNK;
5554 goto end;
5555 }
66ea93b1 5556
90936dcf 5557 }
66ea93b1
JG
5558 break;
5559 default:
5560 /* Would have been caught before. */
5561 abort();
90936dcf
JD
5562 }
5563
259c2674
JD
5564 ret = LTTNG_OK;
5565
5566 goto end;
5567
5568end:
5569 return ret;
5570}
5571
a503e1ef
JG
5572/* Wait for a given path to be removed before continuing. */
5573static enum lttng_error_code wait_on_path(void *path_data)
5574{
5575 const char *shm_path = path_data;
5576
5577 DBG("Waiting for the shm path at %s to be removed before completing session destruction",
5578 shm_path);
5579 while (true) {
5580 int ret;
5581 struct stat st;
5582
5583 ret = stat(shm_path, &st);
5584 if (ret) {
5585 if (errno != ENOENT) {
5586 PERROR("stat() returned an error while checking for the existence of the shm path");
5587 } else {
5588 DBG("shm path no longer exists, completing the destruction of session");
5589 }
5590 break;
5591 } else {
5592 if (!S_ISDIR(st.st_mode)) {
5593 ERR("The type of shm path %s returned by stat() is not a directory; aborting the wait for shm path removal",
5594 shm_path);
5595 break;
5596 }
5597 }
5598 usleep(SESSION_DESTROY_SHM_PATH_CHECK_DELAY_US);
5599 }
5600 return LTTNG_OK;
5601}
5602
5603/*
5604 * Returns a pointer to a handler to run on completion of a command.
5605 * Returns NULL if no handler has to be run for the last command executed.
5606 */
5607const struct cmd_completion_handler *cmd_pop_completion_handler(void)
5608{
5609 struct cmd_completion_handler *handler = current_completion_handler;
5610
5611 current_completion_handler = NULL;
5612 return handler;
5613}
5614
2f77fc4b
DG
5615/*
5616 * Init command subsystem.
5617 */
5618void cmd_init(void)
5619{
5620 /*
d88aee68
DG
5621 * Set network sequence index to 1 for streams to match a relayd
5622 * socket on the consumer side.
2f77fc4b 5623 */
d88aee68
DG
5624 pthread_mutex_lock(&relayd_net_seq_idx_lock);
5625 relayd_net_seq_idx = 1;
5626 pthread_mutex_unlock(&relayd_net_seq_idx_lock);
2f77fc4b
DG
5627
5628 DBG("Command subsystem initialized");
5629}
This page took 0.426981 seconds and 4 git commands to generate.