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