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