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