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