Snapshot: record: use same datetime for snapshot folder output
[lttng-tools.git] / src / bin / lttng-sessiond / cmd.c
CommitLineData
2f77fc4b
DG
1/*
2 * Copyright (C) 2012 - David Goulet <dgoulet@efficios.com>
3 *
4 * This program is free software; you can redistribute it and/or modify it
5 * under the terms of the GNU General Public License, version 2 only, as
6 * published by the Free Software Foundation.
7 *
8 * This program is distributed in the hope that it will be useful, but WITHOUT
9 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
10 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
11 * more details.
12 *
13 * You should have received a copy of the GNU General Public License along with
14 * this program; if not, write to the Free Software Foundation, Inc., 51
15 * Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
16 */
17
18#define _GNU_SOURCE
6c1c0768 19#define _LGPL_SOURCE
2f77fc4b 20#include <assert.h>
1f345e94 21#include <string.h>
6dc3064a 22#include <inttypes.h>
2f77fc4b
DG
23#include <urcu/list.h>
24#include <urcu/uatomic.h>
25
26#include <common/defaults.h>
27#include <common/common.h>
28#include <common/sessiond-comm/sessiond-comm.h>
29#include <common/relayd/relayd.h>
10a50311 30#include <common/utils.h>
2f77fc4b
DG
31
32#include "channel.h"
33#include "consumer.h"
34#include "event.h"
8782cc74 35#include "health-sessiond.h"
2f77fc4b
DG
36#include "kernel.h"
37#include "kernel-consumer.h"
38#include "lttng-sessiond.h"
39#include "utils.h"
834978fd 40#include "syscall.h"
2f77fc4b
DG
41
42#include "cmd.h"
43
44/*
45 * Used to keep a unique index for each relayd socket created where this value
46 * is associated with streams on the consumer so it can match the right relayd
d88aee68
DG
47 * to send to. It must be accessed with the relayd_net_seq_idx_lock
48 * held.
2f77fc4b 49 */
d88aee68
DG
50static pthread_mutex_t relayd_net_seq_idx_lock = PTHREAD_MUTEX_INITIALIZER;
51static uint64_t relayd_net_seq_idx;
2f77fc4b 52
1290b5d8
JG
53static int validate_event_name(const char *);
54static int validate_ust_event_name(const char *);
55static int cmd_enable_event_internal(struct ltt_session *session,
56 struct lttng_domain *domain,
57 char *channel_name, struct lttng_event *event,
58 char *filter_expression,
59 struct lttng_filter_bytecode *filter,
60 struct lttng_event_exclusion *exclusion,
61 int wpipe);
62
2f77fc4b
DG
63/*
64 * Create a session path used by list_lttng_sessions for the case that the
65 * session consumer is on the network.
66 */
67static int build_network_session_path(char *dst, size_t size,
68 struct ltt_session *session)
69{
70 int ret, kdata_port, udata_port;
71 struct lttng_uri *kuri = NULL, *uuri = NULL, *uri = NULL;
72 char tmp_uurl[PATH_MAX], tmp_urls[PATH_MAX];
73
74 assert(session);
75 assert(dst);
76
77 memset(tmp_urls, 0, sizeof(tmp_urls));
78 memset(tmp_uurl, 0, sizeof(tmp_uurl));
79
80 kdata_port = udata_port = DEFAULT_NETWORK_DATA_PORT;
81
82 if (session->kernel_session && session->kernel_session->consumer) {
83 kuri = &session->kernel_session->consumer->dst.net.control;
84 kdata_port = session->kernel_session->consumer->dst.net.data.port;
85 }
86
87 if (session->ust_session && session->ust_session->consumer) {
88 uuri = &session->ust_session->consumer->dst.net.control;
89 udata_port = session->ust_session->consumer->dst.net.data.port;
90 }
91
92 if (uuri == NULL && kuri == NULL) {
93 uri = &session->consumer->dst.net.control;
94 kdata_port = session->consumer->dst.net.data.port;
95 } else if (kuri && uuri) {
96 ret = uri_compare(kuri, uuri);
97 if (ret) {
98 /* Not Equal */
99 uri = kuri;
100 /* Build uuri URL string */
101 ret = uri_to_str_url(uuri, tmp_uurl, sizeof(tmp_uurl));
102 if (ret < 0) {
103 goto error;
104 }
105 } else {
106 uri = kuri;
107 }
108 } else if (kuri && uuri == NULL) {
109 uri = kuri;
110 } else if (uuri && kuri == NULL) {
111 uri = uuri;
112 }
113
114 ret = uri_to_str_url(uri, tmp_urls, sizeof(tmp_urls));
115 if (ret < 0) {
116 goto error;
117 }
118
9aa9f900
DG
119 /*
120 * Do we have a UST url set. If yes, this means we have both kernel and UST
121 * to print.
122 */
9d035200 123 if (*tmp_uurl != '\0') {
2f77fc4b
DG
124 ret = snprintf(dst, size, "[K]: %s [data: %d] -- [U]: %s [data: %d]",
125 tmp_urls, kdata_port, tmp_uurl, udata_port);
126 } else {
9aa9f900 127 int dport;
bef08707 128 if (kuri || (!kuri && !uuri)) {
9aa9f900
DG
129 dport = kdata_port;
130 } else {
131 /* No kernel URI, use the UST port. */
132 dport = udata_port;
133 }
134 ret = snprintf(dst, size, "%s [data: %d]", tmp_urls, dport);
2f77fc4b
DG
135 }
136
137error:
138 return ret;
139}
140
141/*
142 * Fill lttng_channel array of all channels.
143 */
144static void list_lttng_channels(int domain, struct ltt_session *session,
145 struct lttng_channel *channels)
146{
147 int i = 0;
148 struct ltt_kernel_channel *kchan;
149
150 DBG("Listing channels for session %s", session->name);
151
152 switch (domain) {
153 case LTTNG_DOMAIN_KERNEL:
154 /* Kernel channels */
155 if (session->kernel_session != NULL) {
156 cds_list_for_each_entry(kchan,
157 &session->kernel_session->channel_list.head, list) {
158 /* Copy lttng_channel struct to array */
159 memcpy(&channels[i], kchan->channel, sizeof(struct lttng_channel));
160 channels[i].enabled = kchan->enabled;
161 i++;
162 }
163 }
164 break;
165 case LTTNG_DOMAIN_UST:
166 {
167 struct lttng_ht_iter iter;
168 struct ltt_ust_channel *uchan;
169
e7fe706f 170 rcu_read_lock();
2f77fc4b
DG
171 cds_lfht_for_each_entry(session->ust_session->domain_global.channels->ht,
172 &iter.iter, uchan, node.node) {
173 strncpy(channels[i].name, uchan->name, LTTNG_SYMBOL_NAME_LEN);
174 channels[i].attr.overwrite = uchan->attr.overwrite;
175 channels[i].attr.subbuf_size = uchan->attr.subbuf_size;
176 channels[i].attr.num_subbuf = uchan->attr.num_subbuf;
177 channels[i].attr.switch_timer_interval =
178 uchan->attr.switch_timer_interval;
179 channels[i].attr.read_timer_interval =
180 uchan->attr.read_timer_interval;
181 channels[i].enabled = uchan->enabled;
2f785fe7
DG
182 channels[i].attr.tracefile_size = uchan->tracefile_size;
183 channels[i].attr.tracefile_count = uchan->tracefile_count;
2f77fc4b
DG
184 switch (uchan->attr.output) {
185 case LTTNG_UST_MMAP:
186 default:
187 channels[i].attr.output = LTTNG_EVENT_MMAP;
188 break;
189 }
190 i++;
191 }
e7fe706f 192 rcu_read_unlock();
2f77fc4b
DG
193 break;
194 }
195 default:
196 break;
197 }
198}
199
3c6a091f 200/*
022d91ba 201 * Create a list of agent domain events.
3c6a091f
DG
202 *
203 * Return number of events in list on success or else a negative value.
204 */
022d91ba 205static int list_lttng_agent_events(struct agent *agt,
3c6a091f
DG
206 struct lttng_event **events)
207{
208 int i = 0, ret = 0;
209 unsigned int nb_event = 0;
022d91ba 210 struct agent_event *event;
3c6a091f
DG
211 struct lttng_event *tmp_events;
212 struct lttng_ht_iter iter;
213
022d91ba 214 assert(agt);
3c6a091f
DG
215 assert(events);
216
022d91ba 217 DBG3("Listing agent events");
3c6a091f 218
e5bbf678 219 rcu_read_lock();
022d91ba 220 nb_event = lttng_ht_get_count(agt->events);
e5bbf678 221 rcu_read_unlock();
3c6a091f
DG
222 if (nb_event == 0) {
223 ret = nb_event;
224 goto error;
225 }
226
227 tmp_events = zmalloc(nb_event * sizeof(*tmp_events));
228 if (!tmp_events) {
022d91ba 229 PERROR("zmalloc agent events session");
3c6a091f
DG
230 ret = -LTTNG_ERR_FATAL;
231 goto error;
232 }
233
234 rcu_read_lock();
022d91ba 235 cds_lfht_for_each_entry(agt->events->ht, &iter.iter, event, node.node) {
3c6a091f
DG
236 strncpy(tmp_events[i].name, event->name, sizeof(tmp_events[i].name));
237 tmp_events[i].name[sizeof(tmp_events[i].name) - 1] = '\0';
238 tmp_events[i].enabled = event->enabled;
79a065a0 239 tmp_events[i].loglevel = event->loglevel_value;
ff94328f 240 tmp_events[i].loglevel_type = event->loglevel_type;
3c6a091f
DG
241 i++;
242 }
243 rcu_read_unlock();
244
245 *events = tmp_events;
246 ret = nb_event;
247
248error:
249 assert(nb_event == i);
250 return ret;
251}
252
2f77fc4b
DG
253/*
254 * Create a list of ust global domain events.
255 */
256static int list_lttng_ust_global_events(char *channel_name,
257 struct ltt_ust_domain_global *ust_global, struct lttng_event **events)
258{
259 int i = 0, ret = 0;
260 unsigned int nb_event = 0;
261 struct lttng_ht_iter iter;
262 struct lttng_ht_node_str *node;
263 struct ltt_ust_channel *uchan;
264 struct ltt_ust_event *uevent;
265 struct lttng_event *tmp;
266
267 DBG("Listing UST global events for channel %s", channel_name);
268
269 rcu_read_lock();
270
271 lttng_ht_lookup(ust_global->channels, (void *)channel_name, &iter);
272 node = lttng_ht_iter_get_node_str(&iter);
273 if (node == NULL) {
f73fabfd 274 ret = LTTNG_ERR_UST_CHAN_NOT_FOUND;
2f77fc4b
DG
275 goto error;
276 }
277
278 uchan = caa_container_of(&node->node, struct ltt_ust_channel, node.node);
279
8040687e 280 nb_event = lttng_ht_get_count(uchan->events);
2f77fc4b
DG
281 if (nb_event == 0) {
282 ret = nb_event;
283 goto error;
284 }
285
286 DBG3("Listing UST global %d events", nb_event);
287
288 tmp = zmalloc(nb_event * sizeof(struct lttng_event));
289 if (tmp == NULL) {
f73fabfd 290 ret = LTTNG_ERR_FATAL;
2f77fc4b
DG
291 goto error;
292 }
293
294 cds_lfht_for_each_entry(uchan->events->ht, &iter.iter, uevent, node.node) {
8040687e
JG
295 if (uevent->internal) {
296 /* This event should remain hidden from clients */
297 nb_event--;
298 continue;
299 }
2f77fc4b
DG
300 strncpy(tmp[i].name, uevent->attr.name, LTTNG_SYMBOL_NAME_LEN);
301 tmp[i].name[LTTNG_SYMBOL_NAME_LEN - 1] = '\0';
302 tmp[i].enabled = uevent->enabled;
303
304 switch (uevent->attr.instrumentation) {
305 case LTTNG_UST_TRACEPOINT:
306 tmp[i].type = LTTNG_EVENT_TRACEPOINT;
307 break;
308 case LTTNG_UST_PROBE:
309 tmp[i].type = LTTNG_EVENT_PROBE;
310 break;
311 case LTTNG_UST_FUNCTION:
312 tmp[i].type = LTTNG_EVENT_FUNCTION;
313 break;
314 }
315
316 tmp[i].loglevel = uevent->attr.loglevel;
317 switch (uevent->attr.loglevel_type) {
318 case LTTNG_UST_LOGLEVEL_ALL:
319 tmp[i].loglevel_type = LTTNG_EVENT_LOGLEVEL_ALL;
320 break;
321 case LTTNG_UST_LOGLEVEL_RANGE:
322 tmp[i].loglevel_type = LTTNG_EVENT_LOGLEVEL_RANGE;
323 break;
324 case LTTNG_UST_LOGLEVEL_SINGLE:
325 tmp[i].loglevel_type = LTTNG_EVENT_LOGLEVEL_SINGLE;
326 break;
327 }
328 if (uevent->filter) {
329 tmp[i].filter = 1;
330 }
4634f12e
JI
331 if (uevent->exclusion) {
332 tmp[i].exclusion = 1;
333 }
2f77fc4b
DG
334 i++;
335 }
336
337 ret = nb_event;
338 *events = tmp;
339
340error:
341 rcu_read_unlock();
342 return ret;
343}
344
345/*
346 * Fill lttng_event array of all kernel events in the channel.
347 */
348static int list_lttng_kernel_events(char *channel_name,
349 struct ltt_kernel_session *kernel_session, struct lttng_event **events)
350{
351 int i = 0, ret;
352 unsigned int nb_event;
353 struct ltt_kernel_event *event;
354 struct ltt_kernel_channel *kchan;
355
356 kchan = trace_kernel_get_channel_by_name(channel_name, kernel_session);
357 if (kchan == NULL) {
f73fabfd 358 ret = LTTNG_ERR_KERN_CHAN_NOT_FOUND;
2f77fc4b
DG
359 goto error;
360 }
361
362 nb_event = kchan->event_count;
363
364 DBG("Listing events for channel %s", kchan->channel->name);
365
366 if (nb_event == 0) {
834978fd 367 *events = NULL;
9ac243ac 368 goto end;
2f77fc4b
DG
369 }
370
371 *events = zmalloc(nb_event * sizeof(struct lttng_event));
372 if (*events == NULL) {
f73fabfd 373 ret = LTTNG_ERR_FATAL;
2f77fc4b
DG
374 goto error;
375 }
376
377 /* Kernel channels */
378 cds_list_for_each_entry(event, &kchan->events_list.head , list) {
379 strncpy((*events)[i].name, event->event->name, LTTNG_SYMBOL_NAME_LEN);
380 (*events)[i].name[LTTNG_SYMBOL_NAME_LEN - 1] = '\0';
381 (*events)[i].enabled = event->enabled;
1d515f95
JG
382 (*events)[i].filter =
383 (unsigned char) !!event->filter_expression;
2f77fc4b
DG
384
385 switch (event->event->instrumentation) {
386 case LTTNG_KERNEL_TRACEPOINT:
387 (*events)[i].type = LTTNG_EVENT_TRACEPOINT;
388 break;
2f77fc4b 389 case LTTNG_KERNEL_KRETPROBE:
1896972b
DG
390 (*events)[i].type = LTTNG_EVENT_FUNCTION;
391 memcpy(&(*events)[i].attr.probe, &event->event->u.kprobe,
392 sizeof(struct lttng_kernel_kprobe));
393 break;
394 case LTTNG_KERNEL_KPROBE:
2f77fc4b
DG
395 (*events)[i].type = LTTNG_EVENT_PROBE;
396 memcpy(&(*events)[i].attr.probe, &event->event->u.kprobe,
397 sizeof(struct lttng_kernel_kprobe));
398 break;
399 case LTTNG_KERNEL_FUNCTION:
400 (*events)[i].type = LTTNG_EVENT_FUNCTION;
401 memcpy(&((*events)[i].attr.ftrace), &event->event->u.ftrace,
402 sizeof(struct lttng_kernel_function));
403 break;
404 case LTTNG_KERNEL_NOOP:
405 (*events)[i].type = LTTNG_EVENT_NOOP;
406 break;
407 case LTTNG_KERNEL_SYSCALL:
408 (*events)[i].type = LTTNG_EVENT_SYSCALL;
409 break;
410 case LTTNG_KERNEL_ALL:
411 assert(0);
412 break;
413 }
414 i++;
415 }
416
9ac243ac 417end:
2f77fc4b
DG
418 return nb_event;
419
420error:
f73fabfd
DG
421 /* Negate the error code to differentiate the size from an error */
422 return -ret;
2f77fc4b
DG
423}
424
425/*
426 * Add URI so the consumer output object. Set the correct path depending on the
427 * domain adding the default trace directory.
428 */
429static int add_uri_to_consumer(struct consumer_output *consumer,
430 struct lttng_uri *uri, int domain, const char *session_name)
431{
f73fabfd 432 int ret = LTTNG_OK;
2f77fc4b
DG
433 const char *default_trace_dir;
434
435 assert(uri);
436
437 if (consumer == NULL) {
438 DBG("No consumer detected. Don't add URI. Stopping.");
f73fabfd 439 ret = LTTNG_ERR_NO_CONSUMER;
2f77fc4b
DG
440 goto error;
441 }
442
443 switch (domain) {
444 case LTTNG_DOMAIN_KERNEL:
445 default_trace_dir = DEFAULT_KERNEL_TRACE_DIR;
446 break;
447 case LTTNG_DOMAIN_UST:
448 default_trace_dir = DEFAULT_UST_TRACE_DIR;
449 break;
450 default:
451 /*
452 * This case is possible is we try to add the URI to the global tracing
453 * session consumer object which in this case there is no subdir.
454 */
455 default_trace_dir = "";
456 }
457
458 switch (uri->dtype) {
459 case LTTNG_DST_IPV4:
460 case LTTNG_DST_IPV6:
461 DBG2("Setting network URI to consumer");
462
df75acac
DG
463 if (consumer->type == CONSUMER_DST_NET) {
464 if ((uri->stype == LTTNG_STREAM_CONTROL &&
785d2d0d
DG
465 consumer->dst.net.control_isset) ||
466 (uri->stype == LTTNG_STREAM_DATA &&
467 consumer->dst.net.data_isset)) {
df75acac
DG
468 ret = LTTNG_ERR_URL_EXIST;
469 goto error;
470 }
471 } else {
472 memset(&consumer->dst.net, 0, sizeof(consumer->dst.net));
785d2d0d
DG
473 }
474
df75acac
DG
475 consumer->type = CONSUMER_DST_NET;
476
2f77fc4b
DG
477 /* Set URI into consumer output object */
478 ret = consumer_set_network_uri(consumer, uri);
479 if (ret < 0) {
a74934ba 480 ret = -ret;
2f77fc4b
DG
481 goto error;
482 } else if (ret == 1) {
483 /*
484 * URI was the same in the consumer so we do not append the subdir
485 * again so to not duplicate output dir.
486 */
f86c9f4e 487 ret = LTTNG_OK;
2f77fc4b
DG
488 goto error;
489 }
490
491 if (uri->stype == LTTNG_STREAM_CONTROL && strlen(uri->subdir) == 0) {
492 ret = consumer_set_subdir(consumer, session_name);
493 if (ret < 0) {
f73fabfd 494 ret = LTTNG_ERR_FATAL;
2f77fc4b
DG
495 goto error;
496 }
497 }
498
499 if (uri->stype == LTTNG_STREAM_CONTROL) {
500 /* On a new subdir, reappend the default trace dir. */
c30ce0b3
CB
501 strncat(consumer->subdir, default_trace_dir,
502 sizeof(consumer->subdir) - strlen(consumer->subdir) - 1);
2f77fc4b
DG
503 DBG3("Append domain trace name to subdir %s", consumer->subdir);
504 }
505
506 break;
507 case LTTNG_DST_PATH:
508 DBG2("Setting trace directory path from URI to %s", uri->dst.path);
509 memset(consumer->dst.trace_path, 0,
510 sizeof(consumer->dst.trace_path));
511 strncpy(consumer->dst.trace_path, uri->dst.path,
512 sizeof(consumer->dst.trace_path));
513 /* Append default trace dir */
514 strncat(consumer->dst.trace_path, default_trace_dir,
c30ce0b3
CB
515 sizeof(consumer->dst.trace_path) -
516 strlen(consumer->dst.trace_path) - 1);
2f77fc4b
DG
517 /* Flag consumer as local. */
518 consumer->type = CONSUMER_DST_LOCAL;
519 break;
520 }
521
a74934ba
DG
522 ret = LTTNG_OK;
523
2f77fc4b
DG
524error:
525 return ret;
526}
527
528/*
529 * Init tracing by creating trace directory and sending fds kernel consumer.
530 */
531static int init_kernel_tracing(struct ltt_kernel_session *session)
532{
533 int ret = 0;
534 struct lttng_ht_iter iter;
535 struct consumer_socket *socket;
536
537 assert(session);
538
e7fe706f
DG
539 rcu_read_lock();
540
2f77fc4b
DG
541 if (session->consumer_fds_sent == 0 && session->consumer != NULL) {
542 cds_lfht_for_each_entry(session->consumer->socks->ht, &iter.iter,
543 socket, node.node) {
2f77fc4b 544 pthread_mutex_lock(socket->lock);
f50f23d9 545 ret = kernel_consumer_send_session(socket, session);
2f77fc4b
DG
546 pthread_mutex_unlock(socket->lock);
547 if (ret < 0) {
f73fabfd 548 ret = LTTNG_ERR_KERN_CONSUMER_FAIL;
2f77fc4b
DG
549 goto error;
550 }
551 }
552 }
553
554error:
e7fe706f 555 rcu_read_unlock();
2f77fc4b
DG
556 return ret;
557}
558
559/*
560 * Create a socket to the relayd using the URI.
561 *
562 * On success, the relayd_sock pointer is set to the created socket.
563 * Else, it's stays untouched and a lttcomm error code is returned.
564 */
6151a90f
JD
565static int create_connect_relayd(struct lttng_uri *uri,
566 struct lttcomm_relayd_sock **relayd_sock)
2f77fc4b
DG
567{
568 int ret;
6151a90f 569 struct lttcomm_relayd_sock *rsock;
2f77fc4b 570
6151a90f
JD
571 rsock = lttcomm_alloc_relayd_sock(uri, RELAYD_VERSION_COMM_MAJOR,
572 RELAYD_VERSION_COMM_MINOR);
573 if (!rsock) {
f73fabfd 574 ret = LTTNG_ERR_FATAL;
2f77fc4b
DG
575 goto error;
576 }
577
ffe60014
DG
578 /*
579 * Connect to relayd so we can proceed with a session creation. This call
580 * can possibly block for an arbitrary amount of time to set the health
581 * state to be in poll execution.
582 */
583 health_poll_entry();
6151a90f 584 ret = relayd_connect(rsock);
ffe60014 585 health_poll_exit();
2f77fc4b
DG
586 if (ret < 0) {
587 ERR("Unable to reach lttng-relayd");
f73fabfd 588 ret = LTTNG_ERR_RELAYD_CONNECT_FAIL;
2f77fc4b
DG
589 goto free_sock;
590 }
591
592 /* Create socket for control stream. */
593 if (uri->stype == LTTNG_STREAM_CONTROL) {
594 DBG3("Creating relayd stream socket from URI");
595
596 /* Check relayd version */
6151a90f 597 ret = relayd_version_check(rsock);
2f77fc4b 598 if (ret < 0) {
f73fabfd 599 ret = LTTNG_ERR_RELAYD_VERSION_FAIL;
2f77fc4b
DG
600 goto close_sock;
601 }
602 } else if (uri->stype == LTTNG_STREAM_DATA) {
603 DBG3("Creating relayd data socket from URI");
604 } else {
605 /* Command is not valid */
606 ERR("Relayd invalid stream type: %d", uri->stype);
f73fabfd 607 ret = LTTNG_ERR_INVALID;
2f77fc4b
DG
608 goto close_sock;
609 }
610
6151a90f 611 *relayd_sock = rsock;
2f77fc4b 612
f73fabfd 613 return LTTNG_OK;
2f77fc4b
DG
614
615close_sock:
6151a90f
JD
616 /* The returned value is not useful since we are on an error path. */
617 (void) relayd_close(rsock);
2f77fc4b 618free_sock:
6151a90f 619 free(rsock);
2f77fc4b
DG
620error:
621 return ret;
622}
623
624/*
625 * Connect to the relayd using URI and send the socket to the right consumer.
626 */
6dc3064a 627static int send_consumer_relayd_socket(int domain, unsigned int session_id,
2f77fc4b 628 struct lttng_uri *relayd_uri, struct consumer_output *consumer,
d3e2ba59
JD
629 struct consumer_socket *consumer_sock,
630 char *session_name, char *hostname, int session_live_timer)
2f77fc4b
DG
631{
632 int ret;
6151a90f 633 struct lttcomm_relayd_sock *rsock = NULL;
2f77fc4b 634
ffe60014 635 /* Connect to relayd and make version check if uri is the control. */
6151a90f 636 ret = create_connect_relayd(relayd_uri, &rsock);
ffe60014 637 if (ret != LTTNG_OK) {
6151a90f 638 goto error;
ffe60014 639 }
6151a90f 640 assert(rsock);
ffe60014 641
2f77fc4b 642 /* Set the network sequence index if not set. */
d88aee68
DG
643 if (consumer->net_seq_index == (uint64_t) -1ULL) {
644 pthread_mutex_lock(&relayd_net_seq_idx_lock);
2f77fc4b
DG
645 /*
646 * Increment net_seq_idx because we are about to transfer the
647 * new relayd socket to the consumer.
d88aee68 648 * Assign unique key so the consumer can match streams.
2f77fc4b 649 */
d88aee68
DG
650 consumer->net_seq_index = ++relayd_net_seq_idx;
651 pthread_mutex_unlock(&relayd_net_seq_idx_lock);
2f77fc4b
DG
652 }
653
2f77fc4b 654 /* Send relayd socket to consumer. */
6151a90f 655 ret = consumer_send_relayd_socket(consumer_sock, rsock, consumer,
d3e2ba59
JD
656 relayd_uri->stype, session_id,
657 session_name, hostname, session_live_timer);
2f77fc4b 658 if (ret < 0) {
f73fabfd 659 ret = LTTNG_ERR_ENABLE_CONSUMER_FAIL;
2f77fc4b
DG
660 goto close_sock;
661 }
662
c890b720
DG
663 /* Flag that the corresponding socket was sent. */
664 if (relayd_uri->stype == LTTNG_STREAM_CONTROL) {
ffe60014 665 consumer_sock->control_sock_sent = 1;
c890b720 666 } else if (relayd_uri->stype == LTTNG_STREAM_DATA) {
ffe60014 667 consumer_sock->data_sock_sent = 1;
c890b720
DG
668 }
669
f73fabfd 670 ret = LTTNG_OK;
2f77fc4b
DG
671
672 /*
673 * Close socket which was dup on the consumer side. The session daemon does
674 * NOT keep track of the relayd socket(s) once transfer to the consumer.
675 */
676
677close_sock:
6151a90f
JD
678 (void) relayd_close(rsock);
679 free(rsock);
2f77fc4b 680
6151a90f 681error:
ffe60014
DG
682 if (ret != LTTNG_OK) {
683 /*
d9078d0c
DG
684 * The consumer output for this session should not be used anymore
685 * since the relayd connection failed thus making any tracing or/and
686 * streaming not usable.
ffe60014 687 */
d9078d0c 688 consumer->enabled = 0;
ffe60014 689 }
2f77fc4b
DG
690 return ret;
691}
692
693/*
694 * Send both relayd sockets to a specific consumer and domain. This is a
695 * helper function to facilitate sending the information to the consumer for a
696 * session.
697 */
6dc3064a 698static int send_consumer_relayd_sockets(int domain, unsigned int session_id,
d3e2ba59
JD
699 struct consumer_output *consumer, struct consumer_socket *sock,
700 char *session_name, char *hostname, int session_live_timer)
2f77fc4b 701{
dda67f6c 702 int ret = LTTNG_OK;
2f77fc4b 703
2f77fc4b 704 assert(consumer);
6dc3064a 705 assert(sock);
2f77fc4b 706
2f77fc4b 707 /* Sending control relayd socket. */
ffe60014 708 if (!sock->control_sock_sent) {
6dc3064a 709 ret = send_consumer_relayd_socket(domain, session_id,
d3e2ba59
JD
710 &consumer->dst.net.control, consumer, sock,
711 session_name, hostname, session_live_timer);
c890b720
DG
712 if (ret != LTTNG_OK) {
713 goto error;
714 }
2f77fc4b
DG
715 }
716
717 /* Sending data relayd socket. */
ffe60014 718 if (!sock->data_sock_sent) {
6dc3064a 719 ret = send_consumer_relayd_socket(domain, session_id,
d3e2ba59
JD
720 &consumer->dst.net.data, consumer, sock,
721 session_name, hostname, session_live_timer);
c890b720
DG
722 if (ret != LTTNG_OK) {
723 goto error;
724 }
2f77fc4b
DG
725 }
726
2f77fc4b
DG
727error:
728 return ret;
729}
730
731/*
732 * Setup relayd connections for a tracing session. First creates the socket to
733 * the relayd and send them to the right domain consumer. Consumer type MUST be
734 * network.
735 */
ffe60014 736int cmd_setup_relayd(struct ltt_session *session)
2f77fc4b 737{
f73fabfd 738 int ret = LTTNG_OK;
2f77fc4b
DG
739 struct ltt_ust_session *usess;
740 struct ltt_kernel_session *ksess;
741 struct consumer_socket *socket;
742 struct lttng_ht_iter iter;
743
744 assert(session);
745
746 usess = session->ust_session;
747 ksess = session->kernel_session;
748
785d2d0d 749 DBG("Setting relayd for session %s", session->name);
2f77fc4b 750
e7fe706f
DG
751 rcu_read_lock();
752
2f77fc4b
DG
753 if (usess && usess->consumer && usess->consumer->type == CONSUMER_DST_NET
754 && usess->consumer->enabled) {
755 /* For each consumer socket, send relayd sockets */
756 cds_lfht_for_each_entry(usess->consumer->socks->ht, &iter.iter,
757 socket, node.node) {
2f77fc4b 758 pthread_mutex_lock(socket->lock);
6dc3064a 759 ret = send_consumer_relayd_sockets(LTTNG_DOMAIN_UST, session->id,
d3e2ba59
JD
760 usess->consumer, socket,
761 session->name, session->hostname,
762 session->live_timer);
2f77fc4b 763 pthread_mutex_unlock(socket->lock);
f73fabfd 764 if (ret != LTTNG_OK) {
2f77fc4b
DG
765 goto error;
766 }
6dc3064a
DG
767 /* Session is now ready for network streaming. */
768 session->net_handle = 1;
2f77fc4b
DG
769 }
770 }
771
772 if (ksess && ksess->consumer && ksess->consumer->type == CONSUMER_DST_NET
773 && ksess->consumer->enabled) {
774 cds_lfht_for_each_entry(ksess->consumer->socks->ht, &iter.iter,
775 socket, node.node) {
2f77fc4b 776 pthread_mutex_lock(socket->lock);
6dc3064a 777 ret = send_consumer_relayd_sockets(LTTNG_DOMAIN_KERNEL, session->id,
d3e2ba59
JD
778 ksess->consumer, socket,
779 session->name, session->hostname,
780 session->live_timer);
2f77fc4b 781 pthread_mutex_unlock(socket->lock);
f73fabfd 782 if (ret != LTTNG_OK) {
2f77fc4b
DG
783 goto error;
784 }
6dc3064a
DG
785 /* Session is now ready for network streaming. */
786 session->net_handle = 1;
2f77fc4b
DG
787 }
788 }
789
790error:
e7fe706f 791 rcu_read_unlock();
2f77fc4b
DG
792 return ret;
793}
794
9b6c7ec5
DG
795/*
796 * Start a kernel session by opening all necessary streams.
797 */
798static int start_kernel_session(struct ltt_kernel_session *ksess, int wpipe)
799{
800 int ret;
801 struct ltt_kernel_channel *kchan;
802
803 /* Open kernel metadata */
07b86b52 804 if (ksess->metadata == NULL && ksess->output_traces) {
9b6c7ec5
DG
805 ret = kernel_open_metadata(ksess);
806 if (ret < 0) {
807 ret = LTTNG_ERR_KERN_META_FAIL;
808 goto error;
809 }
810 }
811
812 /* Open kernel metadata stream */
07b86b52 813 if (ksess->metadata && ksess->metadata_stream_fd < 0) {
9b6c7ec5
DG
814 ret = kernel_open_metadata_stream(ksess);
815 if (ret < 0) {
816 ERR("Kernel create metadata stream failed");
817 ret = LTTNG_ERR_KERN_STREAM_FAIL;
818 goto error;
819 }
820 }
821
822 /* For each channel */
823 cds_list_for_each_entry(kchan, &ksess->channel_list.head, list) {
824 if (kchan->stream_count == 0) {
825 ret = kernel_open_channel_stream(kchan);
826 if (ret < 0) {
827 ret = LTTNG_ERR_KERN_STREAM_FAIL;
828 goto error;
829 }
830 /* Update the stream global counter */
831 ksess->stream_count_global += ret;
832 }
833 }
834
835 /* Setup kernel consumer socket and send fds to it */
836 ret = init_kernel_tracing(ksess);
e43c41c5 837 if (ret != 0) {
9b6c7ec5
DG
838 ret = LTTNG_ERR_KERN_START_FAIL;
839 goto error;
840 }
841
842 /* This start the kernel tracing */
843 ret = kernel_start_session(ksess);
844 if (ret < 0) {
845 ret = LTTNG_ERR_KERN_START_FAIL;
846 goto error;
847 }
848
849 /* Quiescent wait after starting trace */
784303b0 850 kernel_wait_quiescent(kernel_tracer_fd);
9b6c7ec5 851
14fb1ebe 852 ksess->active = 1;
9b6c7ec5
DG
853
854 ret = LTTNG_OK;
855
856error:
857 return ret;
858}
859
2f77fc4b
DG
860/*
861 * Command LTTNG_DISABLE_CHANNEL processed by the client thread.
862 */
863int cmd_disable_channel(struct ltt_session *session, int domain,
864 char *channel_name)
865{
866 int ret;
867 struct ltt_ust_session *usess;
868
869 usess = session->ust_session;
870
2223c96f
DG
871 rcu_read_lock();
872
2f77fc4b
DG
873 switch (domain) {
874 case LTTNG_DOMAIN_KERNEL:
875 {
876 ret = channel_kernel_disable(session->kernel_session,
877 channel_name);
f73fabfd 878 if (ret != LTTNG_OK) {
2f77fc4b
DG
879 goto error;
880 }
881
882 kernel_wait_quiescent(kernel_tracer_fd);
883 break;
884 }
885 case LTTNG_DOMAIN_UST:
886 {
887 struct ltt_ust_channel *uchan;
888 struct lttng_ht *chan_ht;
889
890 chan_ht = usess->domain_global.channels;
891
892 uchan = trace_ust_find_channel_by_name(chan_ht, channel_name);
893 if (uchan == NULL) {
f73fabfd 894 ret = LTTNG_ERR_UST_CHAN_NOT_FOUND;
2f77fc4b
DG
895 goto error;
896 }
897
7972aab2 898 ret = channel_ust_disable(usess, uchan);
f73fabfd 899 if (ret != LTTNG_OK) {
2f77fc4b
DG
900 goto error;
901 }
902 break;
903 }
2f77fc4b 904 default:
f73fabfd 905 ret = LTTNG_ERR_UNKNOWN_DOMAIN;
2f77fc4b
DG
906 goto error;
907 }
908
f73fabfd 909 ret = LTTNG_OK;
2f77fc4b
DG
910
911error:
2223c96f 912 rcu_read_unlock();
2f77fc4b
DG
913 return ret;
914}
915
ccf10263
MD
916/*
917 * Command LTTNG_TRACK_PID processed by the client thread.
a9ad0c8f
MD
918 *
919 * Called with session lock held.
ccf10263
MD
920 */
921int cmd_track_pid(struct ltt_session *session, int domain, int pid)
922{
923 int ret;
924
925 rcu_read_lock();
926
927 switch (domain) {
928 case LTTNG_DOMAIN_KERNEL:
929 {
930 struct ltt_kernel_session *ksess;
931
932 ksess = session->kernel_session;
933
934 ret = kernel_track_pid(ksess, pid);
935 if (ret != LTTNG_OK) {
936 goto error;
937 }
938
939 kernel_wait_quiescent(kernel_tracer_fd);
940 break;
941 }
ccf10263 942 case LTTNG_DOMAIN_UST:
a9ad0c8f
MD
943 {
944 struct ltt_ust_session *usess;
945
946 usess = session->ust_session;
947
948 ret = trace_ust_track_pid(usess, pid);
949 if (ret != LTTNG_OK) {
950 goto error;
951 }
952 break;
953 }
ccf10263
MD
954 default:
955 ret = LTTNG_ERR_UNKNOWN_DOMAIN;
956 goto error;
957 }
958
959 ret = LTTNG_OK;
960
961error:
962 rcu_read_unlock();
963 return ret;
964}
965
966/*
967 * Command LTTNG_UNTRACK_PID processed by the client thread.
a9ad0c8f
MD
968 *
969 * Called with session lock held.
ccf10263
MD
970 */
971int cmd_untrack_pid(struct ltt_session *session, int domain, int pid)
972{
973 int ret;
974
975 rcu_read_lock();
976
977 switch (domain) {
978 case LTTNG_DOMAIN_KERNEL:
979 {
980 struct ltt_kernel_session *ksess;
981
982 ksess = session->kernel_session;
983
984 ret = kernel_untrack_pid(ksess, pid);
985 if (ret != LTTNG_OK) {
986 goto error;
987 }
988
989 kernel_wait_quiescent(kernel_tracer_fd);
990 break;
991 }
ccf10263 992 case LTTNG_DOMAIN_UST:
a9ad0c8f
MD
993 {
994 struct ltt_ust_session *usess;
995
996 usess = session->ust_session;
997
998 ret = trace_ust_untrack_pid(usess, pid);
999 if (ret != LTTNG_OK) {
1000 goto error;
1001 }
1002 break;
1003 }
ccf10263
MD
1004 default:
1005 ret = LTTNG_ERR_UNKNOWN_DOMAIN;
1006 goto error;
1007 }
1008
1009 ret = LTTNG_OK;
1010
1011error:
1012 rcu_read_unlock();
1013 return ret;
1014}
1015
2f77fc4b
DG
1016/*
1017 * Command LTTNG_ENABLE_CHANNEL processed by the client thread.
1018 *
1019 * The wpipe arguments is used as a notifier for the kernel thread.
1020 */
1021int cmd_enable_channel(struct ltt_session *session,
7972aab2 1022 struct lttng_domain *domain, struct lttng_channel *attr, int wpipe)
2f77fc4b
DG
1023{
1024 int ret;
1025 struct ltt_ust_session *usess = session->ust_session;
1026 struct lttng_ht *chan_ht;
1f345e94 1027 size_t len;
2f77fc4b
DG
1028
1029 assert(session);
1030 assert(attr);
7972aab2 1031 assert(domain);
2f77fc4b 1032
1f345e94
PP
1033 len = strnlen(attr->name, sizeof(attr->name));
1034
1035 /* Validate channel name */
1036 if (attr->name[0] == '.' ||
1037 memchr(attr->name, '/', len) != NULL) {
1038 ret = LTTNG_ERR_INVALID_CHANNEL_NAME;
1039 goto end;
1040 }
1041
2f77fc4b
DG
1042 DBG("Enabling channel %s for session %s", attr->name, session->name);
1043
03b4fdcf
DG
1044 rcu_read_lock();
1045
ecc48a90
JD
1046 /*
1047 * Don't try to enable a channel if the session has been started at
1048 * some point in time before. The tracer does not allow it.
1049 */
8382cf6f 1050 if (session->has_been_started) {
ecc48a90
JD
1051 ret = LTTNG_ERR_TRACE_ALREADY_STARTED;
1052 goto error;
1053 }
1054
1055 /*
1056 * If the session is a live session, remove the switch timer, the
1057 * live timer does the same thing but sends also synchronisation
1058 * beacons for inactive streams.
1059 */
1060 if (session->live_timer > 0) {
1061 attr->attr.live_timer_interval = session->live_timer;
1062 attr->attr.switch_timer_interval = 0;
1063 }
1064
33fbd469
DG
1065 /*
1066 * The ringbuffer (both in user space and kernel) behave badly in overwrite
1067 * mode and with less than 2 subbuf so block it right away and send back an
1068 * invalid attribute error.
1069 */
1070 if (attr->attr.overwrite && attr->attr.num_subbuf < 2) {
1071 ret = LTTNG_ERR_INVALID;
1072 goto error;
1073 }
1074
7972aab2 1075 switch (domain->type) {
2f77fc4b
DG
1076 case LTTNG_DOMAIN_KERNEL:
1077 {
1078 struct ltt_kernel_channel *kchan;
1079
2f77fc4b
DG
1080 kchan = trace_kernel_get_channel_by_name(attr->name,
1081 session->kernel_session);
1082 if (kchan == NULL) {
1083 ret = channel_kernel_create(session->kernel_session, attr, wpipe);
85076754
MD
1084 if (attr->name[0] != '\0') {
1085 session->kernel_session->has_non_default_channel = 1;
1086 }
2f77fc4b
DG
1087 } else {
1088 ret = channel_kernel_enable(session->kernel_session, kchan);
1089 }
1090
f73fabfd 1091 if (ret != LTTNG_OK) {
2f77fc4b
DG
1092 goto error;
1093 }
1094
784303b0 1095 kernel_wait_quiescent(kernel_tracer_fd);
2f77fc4b
DG
1096 break;
1097 }
1098 case LTTNG_DOMAIN_UST:
ab24e525
JG
1099 case LTTNG_DOMAIN_JUL:
1100 case LTTNG_DOMAIN_LOG4J:
1101 case LTTNG_DOMAIN_PYTHON:
2f77fc4b
DG
1102 {
1103 struct ltt_ust_channel *uchan;
1104
ab24e525
JG
1105 /*
1106 * FIXME
1107 *
1108 * Current agent implementation limitations force us to allow
1109 * only one channel at once in "agent" subdomains. Each
1110 * subdomain has a default channel name which must be strictly
1111 * adhered to.
1112 */
1113 if (domain->type == LTTNG_DOMAIN_JUL) {
1114 if (strncmp(attr->name, DEFAULT_JUL_CHANNEL_NAME,
1115 LTTNG_SYMBOL_NAME_LEN)) {
1116 ret = LTTNG_ERR_INVALID_CHANNEL_NAME;
1117 goto error;
1118 }
1119 } else if (domain->type == LTTNG_DOMAIN_LOG4J) {
1120 if (strncmp(attr->name, DEFAULT_LOG4J_CHANNEL_NAME,
1121 LTTNG_SYMBOL_NAME_LEN)) {
1122 ret = LTTNG_ERR_INVALID_CHANNEL_NAME;
1123 goto error;
1124 }
1125 } else if (domain->type == LTTNG_DOMAIN_PYTHON) {
1126 if (strncmp(attr->name, DEFAULT_PYTHON_CHANNEL_NAME,
1127 LTTNG_SYMBOL_NAME_LEN)) {
1128 ret = LTTNG_ERR_INVALID_CHANNEL_NAME;
1129 goto error;
1130 }
1131 }
1132
2f77fc4b
DG
1133 chan_ht = usess->domain_global.channels;
1134
1135 uchan = trace_ust_find_channel_by_name(chan_ht, attr->name);
1136 if (uchan == NULL) {
7972aab2 1137 ret = channel_ust_create(usess, attr, domain->buf_type);
85076754
MD
1138 if (attr->name[0] != '\0') {
1139 usess->has_non_default_channel = 1;
1140 }
2f77fc4b 1141 } else {
7972aab2 1142 ret = channel_ust_enable(usess, uchan);
2f77fc4b
DG
1143 }
1144 break;
1145 }
2f77fc4b 1146 default:
f73fabfd 1147 ret = LTTNG_ERR_UNKNOWN_DOMAIN;
2f77fc4b
DG
1148 goto error;
1149 }
1150
1151error:
2223c96f 1152 rcu_read_unlock();
1f345e94 1153end:
2f77fc4b
DG
1154 return ret;
1155}
1156
2f77fc4b
DG
1157/*
1158 * Command LTTNG_DISABLE_EVENT processed by the client thread.
1159 */
1160int cmd_disable_event(struct ltt_session *session, int domain,
6e911cad
MD
1161 char *channel_name,
1162 struct lttng_event *event)
2f77fc4b
DG
1163{
1164 int ret;
6e911cad
MD
1165 char *event_name;
1166
18a720cd
MD
1167 DBG("Disable event command for event \'%s\'", event->name);
1168
6e911cad 1169 event_name = event->name;
1290b5d8
JG
1170 if (validate_event_name(event_name)) {
1171 ret = LTTNG_ERR_INVALID_EVENT_NAME;
1172 goto error;
1173 }
6e911cad 1174
9b7431cf
JG
1175 /* Error out on unhandled search criteria */
1176 if (event->loglevel_type || event->loglevel != -1 || event->enabled
6e911cad 1177 || event->pid || event->filter || event->exclusion) {
1290b5d8
JG
1178 ret = LTTNG_ERR_UNK;
1179 goto error;
6e911cad 1180 }
2f77fc4b 1181
2223c96f
DG
1182 rcu_read_lock();
1183
2f77fc4b
DG
1184 switch (domain) {
1185 case LTTNG_DOMAIN_KERNEL:
1186 {
1187 struct ltt_kernel_channel *kchan;
1188 struct ltt_kernel_session *ksess;
1189
1190 ksess = session->kernel_session;
1191
85076754
MD
1192 /*
1193 * If a non-default channel has been created in the
1194 * session, explicitely require that -c chan_name needs
1195 * to be provided.
1196 */
1197 if (ksess->has_non_default_channel && channel_name[0] == '\0') {
1198 ret = LTTNG_ERR_NEED_CHANNEL_NAME;
1290b5d8 1199 goto error_unlock;
85076754
MD
1200 }
1201
2f77fc4b
DG
1202 kchan = trace_kernel_get_channel_by_name(channel_name, ksess);
1203 if (kchan == NULL) {
f73fabfd 1204 ret = LTTNG_ERR_KERN_CHAN_NOT_FOUND;
1290b5d8 1205 goto error_unlock;
2f77fc4b
DG
1206 }
1207
6e911cad
MD
1208 switch (event->type) {
1209 case LTTNG_EVENT_ALL:
6ed2fd39 1210 case LTTNG_EVENT_TRACEPOINT:
d0ae4ea8 1211 case LTTNG_EVENT_SYSCALL:
6ed2fd39
JR
1212 case LTTNG_EVENT_PROBE:
1213 case LTTNG_EVENT_FUNCTION:
1214 case LTTNG_EVENT_FUNCTION_ENTRY:/* fall-through */
1215 if (event_name[0] == '\0') {
1216 ret = event_kernel_disable_event(kchan,
1217 NULL, event->type);
29c62722 1218 } else {
d0ae4ea8 1219 ret = event_kernel_disable_event(kchan,
6ed2fd39 1220 event_name, event->type);
29c62722 1221 }
6e911cad 1222 if (ret != LTTNG_OK) {
1290b5d8 1223 goto error_unlock;
6e911cad
MD
1224 }
1225 break;
6e911cad
MD
1226 default:
1227 ret = LTTNG_ERR_UNK;
1290b5d8 1228 goto error_unlock;
2f77fc4b
DG
1229 }
1230
1231 kernel_wait_quiescent(kernel_tracer_fd);
1232 break;
1233 }
1234 case LTTNG_DOMAIN_UST:
1235 {
1236 struct ltt_ust_channel *uchan;
1237 struct ltt_ust_session *usess;
1238
1239 usess = session->ust_session;
1240
1290b5d8
JG
1241 if (validate_ust_event_name(event_name)) {
1242 ret = LTTNG_ERR_INVALID_EVENT_NAME;
1243 goto error_unlock;
1244 }
1245
85076754
MD
1246 /*
1247 * If a non-default channel has been created in the
6ed2fd39 1248 * session, explicitly require that -c chan_name needs
85076754
MD
1249 * to be provided.
1250 */
1251 if (usess->has_non_default_channel && channel_name[0] == '\0') {
1252 ret = LTTNG_ERR_NEED_CHANNEL_NAME;
1290b5d8 1253 goto error_unlock;
85076754
MD
1254 }
1255
2f77fc4b
DG
1256 uchan = trace_ust_find_channel_by_name(usess->domain_global.channels,
1257 channel_name);
1258 if (uchan == NULL) {
f73fabfd 1259 ret = LTTNG_ERR_UST_CHAN_NOT_FOUND;
1290b5d8 1260 goto error_unlock;
2f77fc4b
DG
1261 }
1262
6e911cad
MD
1263 switch (event->type) {
1264 case LTTNG_EVENT_ALL:
82ba26e9
JR
1265 /*
1266 * An empty event name means that everything
1267 * should be disabled.
1268 */
1269 if (event->name[0] == '\0') {
1270 ret = event_ust_disable_all_tracepoints(usess, uchan);
8bee8347
JR
1271 } else {
1272 ret = event_ust_disable_tracepoint(usess, uchan,
1273 event_name);
1274 }
6e911cad 1275 if (ret != LTTNG_OK) {
1290b5d8 1276 goto error_unlock;
6e911cad
MD
1277 }
1278 break;
1279 default:
1280 ret = LTTNG_ERR_UNK;
1290b5d8 1281 goto error_unlock;
2f77fc4b
DG
1282 }
1283
1284 DBG3("Disable UST event %s in channel %s completed", event_name,
1285 channel_name);
1286 break;
1287 }
5cdb6027 1288 case LTTNG_DOMAIN_LOG4J:
f20baf8e 1289 case LTTNG_DOMAIN_JUL:
0e115563 1290 case LTTNG_DOMAIN_PYTHON:
f20baf8e 1291 {
fefd409b 1292 struct agent *agt;
f20baf8e
DG
1293 struct ltt_ust_session *usess = session->ust_session;
1294
1295 assert(usess);
1296
6e911cad
MD
1297 switch (event->type) {
1298 case LTTNG_EVENT_ALL:
1299 break;
1300 default:
1301 ret = LTTNG_ERR_UNK;
1290b5d8 1302 goto error_unlock;
6e911cad
MD
1303 }
1304
5cdb6027 1305 agt = trace_ust_find_agent(usess, domain);
fefd409b
DG
1306 if (!agt) {
1307 ret = -LTTNG_ERR_UST_EVENT_NOT_FOUND;
1290b5d8 1308 goto error_unlock;
fefd409b 1309 }
82ba26e9
JR
1310 /*
1311 * An empty event name means that everything
1312 * should be disabled.
1313 */
1314 if (event->name[0] == '\0') {
18a720cd
MD
1315 ret = event_agent_disable_all(usess, agt);
1316 } else {
1317 ret = event_agent_disable(usess, agt, event_name);
1318 }
f20baf8e 1319 if (ret != LTTNG_OK) {
1290b5d8 1320 goto error_unlock;
f20baf8e
DG
1321 }
1322
1323 break;
1324 }
2f77fc4b 1325 default:
f73fabfd 1326 ret = LTTNG_ERR_UND;
1290b5d8 1327 goto error_unlock;
2f77fc4b
DG
1328 }
1329
f73fabfd 1330 ret = LTTNG_OK;
2f77fc4b 1331
1290b5d8 1332error_unlock:
2223c96f 1333 rcu_read_unlock();
1290b5d8 1334error:
2f77fc4b
DG
1335 return ret;
1336}
1337
2f77fc4b
DG
1338/*
1339 * Command LTTNG_ADD_CONTEXT processed by the client thread.
1340 */
1341int cmd_add_context(struct ltt_session *session, int domain,
601d5acf 1342 char *channel_name, struct lttng_event_context *ctx, int kwpipe)
2f77fc4b 1343{
d5979e4a 1344 int ret, chan_kern_created = 0, chan_ust_created = 0;
2f77fc4b
DG
1345
1346 switch (domain) {
1347 case LTTNG_DOMAIN_KERNEL:
979e618e
DG
1348 assert(session->kernel_session);
1349
1350 if (session->kernel_session->channel_count == 0) {
1351 /* Create default channel */
1352 ret = channel_kernel_create(session->kernel_session, NULL, kwpipe);
1353 if (ret != LTTNG_OK) {
1354 goto error;
1355 }
d5979e4a 1356 chan_kern_created = 1;
979e618e 1357 }
2f77fc4b 1358 /* Add kernel context to kernel tracer */
601d5acf 1359 ret = context_kernel_add(session->kernel_session, ctx, channel_name);
f73fabfd 1360 if (ret != LTTNG_OK) {
2f77fc4b
DG
1361 goto error;
1362 }
1363 break;
1364 case LTTNG_DOMAIN_UST:
1365 {
1366 struct ltt_ust_session *usess = session->ust_session;
85076754
MD
1367 unsigned int chan_count;
1368
2f77fc4b
DG
1369 assert(usess);
1370
85076754 1371 chan_count = lttng_ht_get_count(usess->domain_global.channels);
979e618e
DG
1372 if (chan_count == 0) {
1373 struct lttng_channel *attr;
1374 /* Create default channel */
0a9c6494 1375 attr = channel_new_default_attr(domain, usess->buffer_type);
979e618e
DG
1376 if (attr == NULL) {
1377 ret = LTTNG_ERR_FATAL;
1378 goto error;
1379 }
1380
7972aab2 1381 ret = channel_ust_create(usess, attr, usess->buffer_type);
979e618e
DG
1382 if (ret != LTTNG_OK) {
1383 free(attr);
1384 goto error;
1385 }
1386 free(attr);
d5979e4a 1387 chan_ust_created = 1;
979e618e
DG
1388 }
1389
601d5acf 1390 ret = context_ust_add(usess, domain, ctx, channel_name);
f73fabfd 1391 if (ret != LTTNG_OK) {
2f77fc4b
DG
1392 goto error;
1393 }
1394 break;
1395 }
2f77fc4b 1396 default:
f73fabfd 1397 ret = LTTNG_ERR_UND;
2f77fc4b
DG
1398 goto error;
1399 }
1400
d5979e4a 1401 return LTTNG_OK;
2f77fc4b
DG
1402
1403error:
d5979e4a
DG
1404 if (chan_kern_created) {
1405 struct ltt_kernel_channel *kchan =
1406 trace_kernel_get_channel_by_name(DEFAULT_CHANNEL_NAME,
1407 session->kernel_session);
1408 /* Created previously, this should NOT fail. */
1409 assert(kchan);
1410 kernel_destroy_channel(kchan);
1411 }
1412
1413 if (chan_ust_created) {
1414 struct ltt_ust_channel *uchan =
1415 trace_ust_find_channel_by_name(
1416 session->ust_session->domain_global.channels,
1417 DEFAULT_CHANNEL_NAME);
1418 /* Created previously, this should NOT fail. */
1419 assert(uchan);
1420 /* Remove from the channel list of the session. */
1421 trace_ust_delete_channel(session->ust_session->domain_global.channels,
1422 uchan);
1423 trace_ust_destroy_channel(uchan);
1424 }
2f77fc4b
DG
1425 return ret;
1426}
1427
930a2e99
JG
1428static int validate_event_name(const char *name)
1429{
1430 int ret = 0;
1431 const char *c = name;
1432 const char *event_name_end = c + LTTNG_SYMBOL_NAME_LEN;
1433
1434 /*
1435 * Make sure that unescaped wildcards are only used as the last
1436 * character of the event name.
1437 */
1438 while (c < event_name_end) {
1439 switch (*c) {
1440 case '\0':
1441 goto end;
1442 case '\\':
1443 c++;
1444 break;
1445 case '*':
1446 if ((c + 1) < event_name_end && *(c + 1)) {
1447 /* Wildcard is not the last character */
1448 ret = LTTNG_ERR_INVALID_EVENT_NAME;
1449 goto end;
1450 }
1451 default:
1452 break;
1453 }
1454 c++;
1455 }
1456end:
1457 return ret;
1458}
1459
c8100299
JG
1460static inline bool name_starts_with(const char *name, const char *prefix)
1461{
1462 const size_t max_cmp_len = min(strlen(prefix), LTTNG_SYMBOL_NAME_LEN);
1463
1464 return !strncmp(name, prefix, max_cmp_len);
1465}
1466
1467/* Perform userspace-specific event name validation */
1468static int validate_ust_event_name(const char *name)
1469{
1470 int ret = 0;
1471
1472 if (!name) {
1473 ret = -1;
1474 goto end;
1475 }
1476
1477 /*
1478 * Check name against all internal UST event component namespaces used
1479 * by the agents.
1480 */
1481 if (name_starts_with(name, DEFAULT_JUL_EVENT_COMPONENT) ||
1482 name_starts_with(name, DEFAULT_LOG4J_EVENT_COMPONENT) ||
1483 name_starts_with(name, DEFAULT_PYTHON_EVENT_COMPONENT)) {
1484 ret = -1;
1485 }
1486
1487end:
1488 return ret;
1489}
9732459c 1490
2f77fc4b 1491/*
9732459c
JG
1492 * Internal version of cmd_enable_event() with a supplemental
1493 * "internal_event" flag which is used to enable internal events which should
1494 * be hidden from clients. Such events are used in the agent implementation to
1495 * enable the events through which all "agent" events are funeled.
2f77fc4b 1496 */
9732459c
JG
1497static int _cmd_enable_event(struct ltt_session *session,
1498 struct lttng_domain *domain,
025faf73 1499 char *channel_name, struct lttng_event *event,
6b453b5e 1500 char *filter_expression,
db8f1377
JI
1501 struct lttng_filter_bytecode *filter,
1502 struct lttng_event_exclusion *exclusion,
9732459c 1503 int wpipe, bool internal_event)
2f77fc4b 1504{
e5f5db7f 1505 int ret, channel_created = 0;
2f77fc4b
DG
1506 struct lttng_channel *attr;
1507
1508 assert(session);
1509 assert(event);
1510 assert(channel_name);
1511
18a720cd
MD
1512 DBG("Enable event command for event \'%s\'", event->name);
1513
57dc4ef3
MD
1514 rcu_read_lock();
1515
930a2e99
JG
1516 ret = validate_event_name(event->name);
1517 if (ret) {
1518 goto error;
1519 }
1520
7972aab2 1521 switch (domain->type) {
2f77fc4b
DG
1522 case LTTNG_DOMAIN_KERNEL:
1523 {
1524 struct ltt_kernel_channel *kchan;
1525
85076754
MD
1526 /*
1527 * If a non-default channel has been created in the
1528 * session, explicitely require that -c chan_name needs
1529 * to be provided.
1530 */
1531 if (session->kernel_session->has_non_default_channel
1532 && channel_name[0] == '\0') {
1533 ret = LTTNG_ERR_NEED_CHANNEL_NAME;
1534 goto error;
1535 }
1536
2f77fc4b
DG
1537 kchan = trace_kernel_get_channel_by_name(channel_name,
1538 session->kernel_session);
1539 if (kchan == NULL) {
0a9c6494
DG
1540 attr = channel_new_default_attr(LTTNG_DOMAIN_KERNEL,
1541 LTTNG_BUFFER_GLOBAL);
2f77fc4b 1542 if (attr == NULL) {
f73fabfd 1543 ret = LTTNG_ERR_FATAL;
2f77fc4b
DG
1544 goto error;
1545 }
1546 strncpy(attr->name, channel_name, sizeof(attr->name));
1547
1548 ret = cmd_enable_channel(session, domain, attr, wpipe);
f73fabfd 1549 if (ret != LTTNG_OK) {
2f77fc4b
DG
1550 free(attr);
1551 goto error;
1552 }
1553 free(attr);
e5f5db7f
DG
1554
1555 channel_created = 1;
2f77fc4b
DG
1556 }
1557
1558 /* Get the newly created kernel channel pointer */
1559 kchan = trace_kernel_get_channel_by_name(channel_name,
1560 session->kernel_session);
1561 if (kchan == NULL) {
1562 /* This sould not happen... */
f73fabfd 1563 ret = LTTNG_ERR_FATAL;
2f77fc4b
DG
1564 goto error;
1565 }
1566
6e911cad
MD
1567 switch (event->type) {
1568 case LTTNG_EVENT_ALL:
29c62722 1569 {
00a62084
MD
1570 char *filter_expression_a = NULL;
1571 struct lttng_filter_bytecode *filter_a = NULL;
1572
1573 /*
1574 * We need to duplicate filter_expression and filter,
1575 * because ownership is passed to first enable
1576 * event.
1577 */
1578 if (filter_expression) {
1579 filter_expression_a = strdup(filter_expression);
1580 if (!filter_expression_a) {
1581 ret = LTTNG_ERR_FATAL;
1582 goto error;
1583 }
1584 }
1585 if (filter) {
1586 filter_a = zmalloc(sizeof(*filter_a) + filter->len);
1587 if (!filter_a) {
1588 free(filter_expression_a);
1589 ret = LTTNG_ERR_FATAL;
1590 goto error;
1591 }
1592 memcpy(filter_a, filter, sizeof(*filter_a) + filter->len);
1593 }
29c62722 1594 event->type = LTTNG_EVENT_TRACEPOINT; /* Hack */
00a62084
MD
1595 ret = event_kernel_enable_event(kchan, event,
1596 filter_expression, filter);
a969e101
MD
1597 /* We have passed ownership */
1598 filter_expression = NULL;
1599 filter = NULL;
29c62722
MD
1600 if (ret != LTTNG_OK) {
1601 if (channel_created) {
1602 /* Let's not leak a useless channel. */
1603 kernel_destroy_channel(kchan);
1604 }
00a62084
MD
1605 free(filter_expression_a);
1606 free(filter_a);
29c62722
MD
1607 goto error;
1608 }
1609 event->type = LTTNG_EVENT_SYSCALL; /* Hack */
00a62084
MD
1610 ret = event_kernel_enable_event(kchan, event,
1611 filter_expression_a, filter_a);
0217a5a1
AB
1612 /* We have passed ownership */
1613 filter_expression_a = NULL;
1614 filter_a = NULL;
29c62722
MD
1615 if (ret != LTTNG_OK) {
1616 goto error;
1617 }
1618 break;
1619 }
6e6ef3d7
DG
1620 case LTTNG_EVENT_PROBE:
1621 case LTTNG_EVENT_FUNCTION:
1622 case LTTNG_EVENT_FUNCTION_ENTRY:
6e911cad 1623 case LTTNG_EVENT_TRACEPOINT:
00a62084
MD
1624 ret = event_kernel_enable_event(kchan, event,
1625 filter_expression, filter);
a969e101
MD
1626 /* We have passed ownership */
1627 filter_expression = NULL;
1628 filter = NULL;
6e911cad
MD
1629 if (ret != LTTNG_OK) {
1630 if (channel_created) {
1631 /* Let's not leak a useless channel. */
1632 kernel_destroy_channel(kchan);
1633 }
1634 goto error;
e5f5db7f 1635 }
6e911cad
MD
1636 break;
1637 case LTTNG_EVENT_SYSCALL:
00a62084
MD
1638 ret = event_kernel_enable_event(kchan, event,
1639 filter_expression, filter);
a969e101
MD
1640 /* We have passed ownership */
1641 filter_expression = NULL;
1642 filter = NULL;
e2b957af
MD
1643 if (ret != LTTNG_OK) {
1644 goto error;
1645 }
6e911cad
MD
1646 break;
1647 default:
1648 ret = LTTNG_ERR_UNK;
2f77fc4b
DG
1649 goto error;
1650 }
1651
1652 kernel_wait_quiescent(kernel_tracer_fd);
1653 break;
1654 }
1655 case LTTNG_DOMAIN_UST:
1656 {
1657 struct ltt_ust_channel *uchan;
1658 struct ltt_ust_session *usess = session->ust_session;
1659
1660 assert(usess);
1661
85076754
MD
1662 /*
1663 * If a non-default channel has been created in the
1664 * session, explicitely require that -c chan_name needs
1665 * to be provided.
1666 */
1667 if (usess->has_non_default_channel && channel_name[0] == '\0') {
1668 ret = LTTNG_ERR_NEED_CHANNEL_NAME;
1669 goto error;
1670 }
1671
2f77fc4b
DG
1672 /* Get channel from global UST domain */
1673 uchan = trace_ust_find_channel_by_name(usess->domain_global.channels,
1674 channel_name);
1675 if (uchan == NULL) {
1676 /* Create default channel */
0a9c6494
DG
1677 attr = channel_new_default_attr(LTTNG_DOMAIN_UST,
1678 usess->buffer_type);
2f77fc4b 1679 if (attr == NULL) {
f73fabfd 1680 ret = LTTNG_ERR_FATAL;
2f77fc4b
DG
1681 goto error;
1682 }
1683 strncpy(attr->name, channel_name, sizeof(attr->name));
1684
1685 ret = cmd_enable_channel(session, domain, attr, wpipe);
f73fabfd 1686 if (ret != LTTNG_OK) {
2f77fc4b
DG
1687 free(attr);
1688 goto error;
1689 }
1690 free(attr);
1691
1692 /* Get the newly created channel reference back */
1693 uchan = trace_ust_find_channel_by_name(
1694 usess->domain_global.channels, channel_name);
1695 assert(uchan);
1696 }
1697
9ab6d7ea
JG
1698 if (uchan->domain != LTTNG_DOMAIN_UST && !internal_event) {
1699 /*
1700 * Don't allow users to add UST events to channels which
1701 * are assigned to a userspace subdomain (JUL, Log4J,
1702 * Python, etc.).
1703 */
1704 ret = LTTNG_ERR_INVALID_CHANNEL_DOMAIN;
1705 goto error;
1706 }
1707
c8100299
JG
1708 if (!internal_event) {
1709 /*
1710 * Ensure the event name is not reserved for internal
1711 * use.
1712 */
1713 ret = validate_ust_event_name(event->name);
1714 if (ret) {
1715 WARN("Userspace event name %s failed validation.",
1716 event->name ?
1717 event->name : "NULL");
1718 ret = LTTNG_ERR_INVALID_EVENT_NAME;
1719 goto error;
1720 }
1721 }
1722
2f77fc4b 1723 /* At this point, the session and channel exist on the tracer */
6b453b5e 1724 ret = event_ust_enable_tracepoint(usess, uchan, event,
9732459c
JG
1725 filter_expression, filter, exclusion,
1726 internal_event);
49d21f93
MD
1727 /* We have passed ownership */
1728 filter_expression = NULL;
1729 filter = NULL;
1730 exclusion = NULL;
85f2f68c
JG
1731 if (ret == LTTNG_ERR_UST_EVENT_ENABLED) {
1732 goto already_enabled;
1733 } else if (ret != LTTNG_OK) {
2f77fc4b
DG
1734 goto error;
1735 }
1736 break;
1737 }
5cdb6027 1738 case LTTNG_DOMAIN_LOG4J:
f20baf8e 1739 case LTTNG_DOMAIN_JUL:
0e115563 1740 case LTTNG_DOMAIN_PYTHON:
f20baf8e 1741 {
da6c3a50 1742 const char *default_event_name, *default_chan_name;
fefd409b 1743 struct agent *agt;
f20baf8e
DG
1744 struct lttng_event uevent;
1745 struct lttng_domain tmp_dom;
1746 struct ltt_ust_session *usess = session->ust_session;
1747
1748 assert(usess);
1749
5cdb6027 1750 agt = trace_ust_find_agent(usess, domain->type);
fefd409b 1751 if (!agt) {
5cdb6027 1752 agt = agent_create(domain->type);
fefd409b 1753 if (!agt) {
948f8adb 1754 ret = LTTNG_ERR_NOMEM;
fefd409b
DG
1755 goto error;
1756 }
1757 agent_add(agt, usess->agents);
1758 }
1759
022d91ba 1760 /* Create the default tracepoint. */
996de3c7 1761 memset(&uevent, 0, sizeof(uevent));
f20baf8e
DG
1762 uevent.type = LTTNG_EVENT_TRACEPOINT;
1763 uevent.loglevel_type = LTTNG_EVENT_LOGLEVEL_ALL;
0a3fca4d
JG
1764 default_event_name = event_get_default_agent_ust_name(
1765 domain->type);
da6c3a50 1766 if (!default_event_name) {
948f8adb 1767 ret = LTTNG_ERR_FATAL;
da6c3a50 1768 goto error;
f43f95a9 1769 }
da6c3a50 1770 strncpy(uevent.name, default_event_name, sizeof(uevent.name));
f20baf8e
DG
1771 uevent.name[sizeof(uevent.name) - 1] = '\0';
1772
1773 /*
1774 * The domain type is changed because we are about to enable the
1775 * default channel and event for the JUL domain that are hardcoded.
1776 * This happens in the UST domain.
1777 */
1778 memcpy(&tmp_dom, domain, sizeof(tmp_dom));
1779 tmp_dom.type = LTTNG_DOMAIN_UST;
1780
0e115563
DG
1781 switch (domain->type) {
1782 case LTTNG_DOMAIN_LOG4J:
da6c3a50 1783 default_chan_name = DEFAULT_LOG4J_CHANNEL_NAME;
0e115563
DG
1784 break;
1785 case LTTNG_DOMAIN_JUL:
da6c3a50 1786 default_chan_name = DEFAULT_JUL_CHANNEL_NAME;
0e115563
DG
1787 break;
1788 case LTTNG_DOMAIN_PYTHON:
1789 default_chan_name = DEFAULT_PYTHON_CHANNEL_NAME;
1790 break;
1791 default:
1792 /* The switch/case we are in should avoid this else big problem */
1793 assert(0);
da6c3a50
DG
1794 }
1795
971da06a 1796 {
d75bffee 1797 char *filter_expression_copy = NULL;
0a3fca4d 1798 struct lttng_filter_bytecode *filter_copy = NULL;
971da06a
JG
1799
1800 if (filter) {
0a3fca4d
JG
1801 const size_t filter_size = sizeof(
1802 struct lttng_filter_bytecode)
1803 + filter->len;
1804
1805 filter_copy = zmalloc(filter_size);
971da06a 1806 if (!filter_copy) {
a745883a 1807 ret = LTTNG_ERR_NOMEM;
4c579b1f 1808 goto error;
971da06a 1809 }
0a3fca4d 1810 memcpy(filter_copy, filter, filter_size);
971da06a 1811
d75bffee
JG
1812 filter_expression_copy =
1813 strdup(filter_expression);
1814 if (!filter_expression) {
1815 ret = LTTNG_ERR_NOMEM;
0a3fca4d
JG
1816 }
1817
1818 if (!filter_expression_copy || !filter_copy) {
1819 free(filter_expression_copy);
1820 free(filter_copy);
1821 goto error;
d75bffee 1822 }
971da06a
JG
1823 }
1824
9732459c 1825 ret = cmd_enable_event_internal(session, &tmp_dom,
971da06a 1826 (char *) default_chan_name,
d75bffee
JG
1827 &uevent, filter_expression_copy,
1828 filter_copy, NULL, wpipe);
971da06a
JG
1829 }
1830
85f2f68c
JG
1831 if (ret == LTTNG_ERR_UST_EVENT_ENABLED) {
1832 goto already_enabled;
1833 } else if (ret != LTTNG_OK) {
f20baf8e
DG
1834 goto error;
1835 }
1836
1837 /* The wild card * means that everything should be enabled. */
1838 if (strncmp(event->name, "*", 1) == 0 && strlen(event->name) == 1) {
d75bffee
JG
1839 ret = event_agent_enable_all(usess, agt, event, filter,
1840 filter_expression);
f20baf8e 1841 } else {
d75bffee
JG
1842 ret = event_agent_enable(usess, agt, event, filter,
1843 filter_expression);
f20baf8e 1844 }
0a3fca4d
JG
1845 filter = NULL;
1846 filter_expression = NULL;
f20baf8e
DG
1847 if (ret != LTTNG_OK) {
1848 goto error;
1849 }
1850
1851 break;
1852 }
2f77fc4b 1853 default:
f73fabfd 1854 ret = LTTNG_ERR_UND;
2f77fc4b
DG
1855 goto error;
1856 }
1857
f73fabfd 1858 ret = LTTNG_OK;
2f77fc4b 1859
85f2f68c 1860already_enabled:
2f77fc4b 1861error:
49d21f93
MD
1862 free(filter_expression);
1863 free(filter);
1864 free(exclusion);
2223c96f 1865 rcu_read_unlock();
2f77fc4b
DG
1866 return ret;
1867}
1868
9732459c
JG
1869/*
1870 * Command LTTNG_ENABLE_EVENT processed by the client thread.
1871 * We own filter, exclusion, and filter_expression.
1872 */
1873int cmd_enable_event(struct ltt_session *session, struct lttng_domain *domain,
1874 char *channel_name, struct lttng_event *event,
1875 char *filter_expression,
1876 struct lttng_filter_bytecode *filter,
1877 struct lttng_event_exclusion *exclusion,
1878 int wpipe)
1879{
1880 return _cmd_enable_event(session, domain, channel_name, event,
1881 filter_expression, filter, exclusion, wpipe, false);
1882}
1883
1884/*
1885 * Enable an event which is internal to LTTng. An internal should
1886 * never be made visible to clients and are immune to checks such as
1887 * reserved names.
1888 */
1889static int cmd_enable_event_internal(struct ltt_session *session,
1890 struct lttng_domain *domain,
1891 char *channel_name, struct lttng_event *event,
1892 char *filter_expression,
1893 struct lttng_filter_bytecode *filter,
1894 struct lttng_event_exclusion *exclusion,
1895 int wpipe)
1896{
1897 return _cmd_enable_event(session, domain, channel_name, event,
1898 filter_expression, filter, exclusion, wpipe, true);
1899}
1900
2f77fc4b
DG
1901/*
1902 * Command LTTNG_LIST_TRACEPOINTS processed by the client thread.
1903 */
1904ssize_t cmd_list_tracepoints(int domain, struct lttng_event **events)
1905{
1906 int ret;
1907 ssize_t nb_events = 0;
1908
1909 switch (domain) {
1910 case LTTNG_DOMAIN_KERNEL:
1911 nb_events = kernel_list_events(kernel_tracer_fd, events);
1912 if (nb_events < 0) {
f73fabfd 1913 ret = LTTNG_ERR_KERN_LIST_FAIL;
2f77fc4b
DG
1914 goto error;
1915 }
1916 break;
1917 case LTTNG_DOMAIN_UST:
1918 nb_events = ust_app_list_events(events);
1919 if (nb_events < 0) {
f73fabfd 1920 ret = LTTNG_ERR_UST_LIST_FAIL;
2f77fc4b
DG
1921 goto error;
1922 }
1923 break;
5cdb6027 1924 case LTTNG_DOMAIN_LOG4J:
3c6a091f 1925 case LTTNG_DOMAIN_JUL:
0e115563 1926 case LTTNG_DOMAIN_PYTHON:
f60140a1 1927 nb_events = agent_list_events(events, domain);
3c6a091f
DG
1928 if (nb_events < 0) {
1929 ret = LTTNG_ERR_UST_LIST_FAIL;
1930 goto error;
1931 }
1932 break;
2f77fc4b 1933 default:
f73fabfd 1934 ret = LTTNG_ERR_UND;
2f77fc4b
DG
1935 goto error;
1936 }
1937
1938 return nb_events;
1939
1940error:
1941 /* Return negative value to differentiate return code */
1942 return -ret;
1943}
1944
1945/*
1946 * Command LTTNG_LIST_TRACEPOINT_FIELDS processed by the client thread.
1947 */
1948ssize_t cmd_list_tracepoint_fields(int domain,
1949 struct lttng_event_field **fields)
1950{
1951 int ret;
1952 ssize_t nb_fields = 0;
1953
1954 switch (domain) {
1955 case LTTNG_DOMAIN_UST:
1956 nb_fields = ust_app_list_event_fields(fields);
1957 if (nb_fields < 0) {
f73fabfd 1958 ret = LTTNG_ERR_UST_LIST_FAIL;
2f77fc4b
DG
1959 goto error;
1960 }
1961 break;
1962 case LTTNG_DOMAIN_KERNEL:
1963 default: /* fall-through */
f73fabfd 1964 ret = LTTNG_ERR_UND;
2f77fc4b
DG
1965 goto error;
1966 }
1967
1968 return nb_fields;
1969
1970error:
1971 /* Return negative value to differentiate return code */
1972 return -ret;
1973}
1974
834978fd
DG
1975ssize_t cmd_list_syscalls(struct lttng_event **events)
1976{
1977 return syscall_table_list(events);
1978}
1979
a5dfbb9d
MD
1980/*
1981 * Command LTTNG_LIST_TRACKER_PIDS processed by the client thread.
1982 *
1983 * Called with session lock held.
1984 */
1985ssize_t cmd_list_tracker_pids(struct ltt_session *session,
1986 int domain, int32_t **pids)
1987{
1988 int ret;
1989 ssize_t nr_pids = 0;
1990
1991 switch (domain) {
1992 case LTTNG_DOMAIN_KERNEL:
1993 {
1994 struct ltt_kernel_session *ksess;
1995
1996 ksess = session->kernel_session;
1997 nr_pids = kernel_list_tracker_pids(ksess, pids);
1998 if (nr_pids < 0) {
1999 ret = LTTNG_ERR_KERN_LIST_FAIL;
2000 goto error;
2001 }
2002 break;
2003 }
2004 case LTTNG_DOMAIN_UST:
2005 {
2006 struct ltt_ust_session *usess;
2007
2008 usess = session->ust_session;
2009 nr_pids = trace_ust_list_tracker_pids(usess, pids);
2010 if (nr_pids < 0) {
2011 ret = LTTNG_ERR_UST_LIST_FAIL;
2012 goto error;
2013 }
2014 break;
2015 }
2016 case LTTNG_DOMAIN_LOG4J:
2017 case LTTNG_DOMAIN_JUL:
2018 case LTTNG_DOMAIN_PYTHON:
2019 default:
2020 ret = LTTNG_ERR_UND;
2021 goto error;
2022 }
2023
2024 return nr_pids;
2025
2026error:
2027 /* Return negative value to differentiate return code */
2028 return -ret;
2029}
2030
2f77fc4b
DG
2031/*
2032 * Command LTTNG_START_TRACE processed by the client thread.
a9ad0c8f
MD
2033 *
2034 * Called with session mutex held.
2f77fc4b
DG
2035 */
2036int cmd_start_trace(struct ltt_session *session)
2037{
2038 int ret;
cde3e505 2039 unsigned long nb_chan = 0;
2f77fc4b
DG
2040 struct ltt_kernel_session *ksession;
2041 struct ltt_ust_session *usess;
2f77fc4b
DG
2042
2043 assert(session);
2044
2045 /* Ease our life a bit ;) */
2046 ksession = session->kernel_session;
2047 usess = session->ust_session;
2048
8382cf6f
DG
2049 /* Is the session already started? */
2050 if (session->active) {
f73fabfd 2051 ret = LTTNG_ERR_TRACE_ALREADY_STARTED;
2f77fc4b
DG
2052 goto error;
2053 }
2054
cde3e505
DG
2055 /*
2056 * Starting a session without channel is useless since after that it's not
2057 * possible to enable channel thus inform the client.
2058 */
2059 if (usess && usess->domain_global.channels) {
a9e41044 2060 rcu_read_lock();
cde3e505 2061 nb_chan += lttng_ht_get_count(usess->domain_global.channels);
a9e41044 2062 rcu_read_unlock();
cde3e505
DG
2063 }
2064 if (ksession) {
2065 nb_chan += ksession->channel_count;
2066 }
2067 if (!nb_chan) {
2068 ret = LTTNG_ERR_NO_CHANNEL;
2069 goto error;
2070 }
2071
2f77fc4b
DG
2072 /* Kernel tracing */
2073 if (ksession != NULL) {
9b6c7ec5
DG
2074 ret = start_kernel_session(ksession, kernel_tracer_fd);
2075 if (ret != LTTNG_OK) {
2f77fc4b
DG
2076 goto error;
2077 }
2f77fc4b
DG
2078 }
2079
2080 /* Flag session that trace should start automatically */
2081 if (usess) {
14fb1ebe
DG
2082 /*
2083 * Even though the start trace might fail, flag this session active so
2084 * other application coming in are started by default.
2085 */
2086 usess->active = 1;
2f77fc4b
DG
2087
2088 ret = ust_app_start_trace_all(usess);
2089 if (ret < 0) {
f73fabfd 2090 ret = LTTNG_ERR_UST_START_FAIL;
2f77fc4b
DG
2091 goto error;
2092 }
2093 }
2094
8382cf6f
DG
2095 /* Flag this after a successful start. */
2096 session->has_been_started = 1;
2097 session->active = 1;
9b6c7ec5 2098
f73fabfd 2099 ret = LTTNG_OK;
2f77fc4b
DG
2100
2101error:
2102 return ret;
2103}
2104
2105/*
2106 * Command LTTNG_STOP_TRACE processed by the client thread.
2107 */
2108int cmd_stop_trace(struct ltt_session *session)
2109{
2110 int ret;
2111 struct ltt_kernel_channel *kchan;
2112 struct ltt_kernel_session *ksession;
2113 struct ltt_ust_session *usess;
2114
2115 assert(session);
2116
2117 /* Short cut */
2118 ksession = session->kernel_session;
2119 usess = session->ust_session;
2120
8382cf6f
DG
2121 /* Session is not active. Skip everythong and inform the client. */
2122 if (!session->active) {
f73fabfd 2123 ret = LTTNG_ERR_TRACE_ALREADY_STOPPED;
2f77fc4b
DG
2124 goto error;
2125 }
2126
2f77fc4b 2127 /* Kernel tracer */
14fb1ebe 2128 if (ksession && ksession->active) {
2f77fc4b
DG
2129 DBG("Stop kernel tracing");
2130
2131 /* Flush metadata if exist */
2132 if (ksession->metadata_stream_fd >= 0) {
2133 ret = kernel_metadata_flush_buffer(ksession->metadata_stream_fd);
2134 if (ret < 0) {
2135 ERR("Kernel metadata flush failed");
2136 }
2137 }
2138
2139 /* Flush all buffers before stopping */
2140 cds_list_for_each_entry(kchan, &ksession->channel_list.head, list) {
2141 ret = kernel_flush_buffer(kchan);
2142 if (ret < 0) {
2143 ERR("Kernel flush buffer error");
2144 }
2145 }
2146
2147 ret = kernel_stop_session(ksession);
2148 if (ret < 0) {
f73fabfd 2149 ret = LTTNG_ERR_KERN_STOP_FAIL;
2f77fc4b
DG
2150 goto error;
2151 }
2152
2153 kernel_wait_quiescent(kernel_tracer_fd);
9b6c7ec5 2154
14fb1ebe 2155 ksession->active = 0;
2f77fc4b
DG
2156 }
2157
14fb1ebe
DG
2158 if (usess && usess->active) {
2159 /*
2160 * Even though the stop trace might fail, flag this session inactive so
2161 * other application coming in are not started by default.
2162 */
2163 usess->active = 0;
2f77fc4b
DG
2164
2165 ret = ust_app_stop_trace_all(usess);
2166 if (ret < 0) {
f73fabfd 2167 ret = LTTNG_ERR_UST_STOP_FAIL;
2f77fc4b
DG
2168 goto error;
2169 }
2170 }
2171
8382cf6f
DG
2172 /* Flag inactive after a successful stop. */
2173 session->active = 0;
f73fabfd 2174 ret = LTTNG_OK;
2f77fc4b
DG
2175
2176error:
2177 return ret;
2178}
2179
2180/*
2181 * Command LTTNG_SET_CONSUMER_URI processed by the client thread.
2182 */
bda32d56
JG
2183int cmd_set_consumer_uri(struct ltt_session *session, size_t nb_uri,
2184 struct lttng_uri *uris)
2f77fc4b
DG
2185{
2186 int ret, i;
2187 struct ltt_kernel_session *ksess = session->kernel_session;
2188 struct ltt_ust_session *usess = session->ust_session;
2f77fc4b
DG
2189
2190 assert(session);
2191 assert(uris);
2192 assert(nb_uri > 0);
2193
8382cf6f
DG
2194 /* Can't set consumer URI if the session is active. */
2195 if (session->active) {
f73fabfd 2196 ret = LTTNG_ERR_TRACE_ALREADY_STARTED;
2f77fc4b
DG
2197 goto error;
2198 }
2199
bda32d56 2200 /* Set the "global" consumer URIs */
2f77fc4b 2201 for (i = 0; i < nb_uri; i++) {
bda32d56
JG
2202 ret = add_uri_to_consumer(session->consumer,
2203 &uris[i], 0, session->name);
a74934ba 2204 if (ret != LTTNG_OK) {
2f77fc4b
DG
2205 goto error;
2206 }
2f77fc4b
DG
2207 }
2208
bda32d56
JG
2209 /* Set UST session URIs */
2210 if (session->ust_session) {
2211 for (i = 0; i < nb_uri; i++) {
2212 ret = add_uri_to_consumer(
2213 session->ust_session->consumer,
2214 &uris[i], LTTNG_DOMAIN_UST,
2215 session->name);
2216 if (ret != LTTNG_OK) {
2217 goto error;
2218 }
2219 }
2220 }
2221
2222 /* Set kernel session URIs */
2223 if (session->kernel_session) {
2224 for (i = 0; i < nb_uri; i++) {
2225 ret = add_uri_to_consumer(
2226 session->kernel_session->consumer,
2227 &uris[i], LTTNG_DOMAIN_KERNEL,
2228 session->name);
2229 if (ret != LTTNG_OK) {
2230 goto error;
2231 }
2232 }
2233 }
2234
7ab70fe0
DG
2235 /*
2236 * Make sure to set the session in output mode after we set URI since a
2237 * session can be created without URL (thus flagged in no output mode).
2238 */
2239 session->output_traces = 1;
2240 if (ksess) {
2241 ksess->output_traces = 1;
bda32d56
JG
2242 }
2243
2244 if (usess) {
7ab70fe0
DG
2245 usess->output_traces = 1;
2246 }
2247
2f77fc4b 2248 /* All good! */
f73fabfd 2249 ret = LTTNG_OK;
2f77fc4b
DG
2250
2251error:
2252 return ret;
2253}
2254
2255/*
2256 * Command LTTNG_CREATE_SESSION processed by the client thread.
2257 */
2258int cmd_create_session_uri(char *name, struct lttng_uri *uris,
ecc48a90 2259 size_t nb_uri, lttng_sock_cred *creds, unsigned int live_timer)
2f77fc4b
DG
2260{
2261 int ret;
2f77fc4b
DG
2262 struct ltt_session *session;
2263
2264 assert(name);
2bba9e53 2265 assert(creds);
785d2d0d 2266
2f77fc4b
DG
2267 /*
2268 * Verify if the session already exist
2269 *
2270 * XXX: There is no need for the session lock list here since the caller
2271 * (process_client_msg) is holding it. We might want to change that so a
2272 * single command does not lock the entire session list.
2273 */
2274 session = session_find_by_name(name);
2275 if (session != NULL) {
f73fabfd 2276 ret = LTTNG_ERR_EXIST_SESS;
2f77fc4b
DG
2277 goto find_error;
2278 }
2279
2280 /* Create tracing session in the registry */
dec56f6c 2281 ret = session_create(name, LTTNG_SOCK_GET_UID_CRED(creds),
2f77fc4b 2282 LTTNG_SOCK_GET_GID_CRED(creds));
f73fabfd 2283 if (ret != LTTNG_OK) {
2f77fc4b
DG
2284 goto session_error;
2285 }
2286
2287 /*
2288 * Get the newly created session pointer back
2289 *
2290 * XXX: There is no need for the session lock list here since the caller
2291 * (process_client_msg) is holding it. We might want to change that so a
2292 * single command does not lock the entire session list.
2293 */
2294 session = session_find_by_name(name);
2295 assert(session);
2296
ecc48a90 2297 session->live_timer = live_timer;
2f77fc4b
DG
2298 /* Create default consumer output for the session not yet created. */
2299 session->consumer = consumer_create_output(CONSUMER_DST_LOCAL);
2300 if (session->consumer == NULL) {
f73fabfd 2301 ret = LTTNG_ERR_FATAL;
2f77fc4b
DG
2302 goto consumer_error;
2303 }
2304
2bba9e53 2305 if (uris) {
bda32d56 2306 ret = cmd_set_consumer_uri(session, nb_uri, uris);
2bba9e53
DG
2307 if (ret != LTTNG_OK) {
2308 goto consumer_error;
2309 }
2310 session->output_traces = 1;
2311 } else {
2312 session->output_traces = 0;
2313 DBG2("Session %s created with no output", session->name);
2f77fc4b
DG
2314 }
2315
2316 session->consumer->enabled = 1;
2317
f73fabfd 2318 return LTTNG_OK;
2f77fc4b
DG
2319
2320consumer_error:
2321 session_destroy(session);
2322session_error:
2323find_error:
2324 return ret;
2325}
2326
27babd3a
DG
2327/*
2328 * Command LTTNG_CREATE_SESSION_SNAPSHOT processed by the client thread.
2329 */
2330int cmd_create_session_snapshot(char *name, struct lttng_uri *uris,
2331 size_t nb_uri, lttng_sock_cred *creds)
2332{
2333 int ret;
2334 struct ltt_session *session;
2335 struct snapshot_output *new_output = NULL;
2336
2337 assert(name);
2338 assert(creds);
2339
2340 /*
2341 * Create session in no output mode with URIs set to NULL. The uris we've
2342 * received are for a default snapshot output if one.
2343 */
bfaba83f 2344 ret = cmd_create_session_uri(name, NULL, 0, creds, 0);
27babd3a
DG
2345 if (ret != LTTNG_OK) {
2346 goto error;
2347 }
2348
2349 /* Get the newly created session pointer back. This should NEVER fail. */
2350 session = session_find_by_name(name);
2351 assert(session);
2352
2353 /* Flag session for snapshot mode. */
2354 session->snapshot_mode = 1;
2355
2356 /* Skip snapshot output creation if no URI is given. */
2357 if (nb_uri == 0) {
2358 goto end;
2359 }
2360
2361 new_output = snapshot_output_alloc();
2362 if (!new_output) {
2363 ret = LTTNG_ERR_NOMEM;
2364 goto error_snapshot_alloc;
2365 }
2366
2367 ret = snapshot_output_init_with_uri(DEFAULT_SNAPSHOT_MAX_SIZE, NULL,
2368 uris, nb_uri, session->consumer, new_output, &session->snapshot);
2369 if (ret < 0) {
2370 if (ret == -ENOMEM) {
2371 ret = LTTNG_ERR_NOMEM;
2372 } else {
2373 ret = LTTNG_ERR_INVALID;
2374 }
2375 goto error_snapshot;
2376 }
2377
2378 rcu_read_lock();
2379 snapshot_add_output(&session->snapshot, new_output);
2380 rcu_read_unlock();
2381
2382end:
2383 return LTTNG_OK;
2384
2385error_snapshot:
2386 snapshot_output_destroy(new_output);
2387error_snapshot_alloc:
2388 session_destroy(session);
2389error:
2390 return ret;
2391}
2392
2f77fc4b
DG
2393/*
2394 * Command LTTNG_DESTROY_SESSION processed by the client thread.
a9ad0c8f
MD
2395 *
2396 * Called with session lock held.
2f77fc4b
DG
2397 */
2398int cmd_destroy_session(struct ltt_session *session, int wpipe)
2399{
2400 int ret;
2401 struct ltt_ust_session *usess;
2402 struct ltt_kernel_session *ksess;
2403
2404 /* Safety net */
2405 assert(session);
2406
2407 usess = session->ust_session;
2408 ksess = session->kernel_session;
2409
2410 /* Clean kernel session teardown */
2411 kernel_destroy_session(ksess);
2412
2413 /* UST session teardown */
2414 if (usess) {
2415 /* Close any relayd session */
2416 consumer_output_send_destroy_relayd(usess->consumer);
2417
2418 /* Destroy every UST application related to this session. */
2419 ret = ust_app_destroy_trace_all(usess);
2420 if (ret) {
2421 ERR("Error in ust_app_destroy_trace_all");
2422 }
2423
2424 /* Clean up the rest. */
2425 trace_ust_destroy_session(usess);
2426 }
2427
2428 /*
2429 * Must notify the kernel thread here to update it's poll set in order to
2430 * remove the channel(s)' fd just destroyed.
2431 */
2432 ret = notify_thread_pipe(wpipe);
2433 if (ret < 0) {
2434 PERROR("write kernel poll pipe");
2435 }
2436
2437 ret = session_destroy(session);
2438
2439 return ret;
2440}
2441
2442/*
2443 * Command LTTNG_CALIBRATE processed by the client thread.
2444 */
2445int cmd_calibrate(int domain, struct lttng_calibrate *calibrate)
2446{
2447 int ret;
2448
2449 switch (domain) {
2450 case LTTNG_DOMAIN_KERNEL:
2451 {
2452 struct lttng_kernel_calibrate kcalibrate;
2453
2e84128e
DG
2454 switch (calibrate->type) {
2455 case LTTNG_CALIBRATE_FUNCTION:
2456 default:
2457 /* Default and only possible calibrate option. */
2458 kcalibrate.type = LTTNG_KERNEL_CALIBRATE_KRETPROBE;
2459 break;
2460 }
2461
2f77fc4b
DG
2462 ret = kernel_calibrate(kernel_tracer_fd, &kcalibrate);
2463 if (ret < 0) {
f73fabfd 2464 ret = LTTNG_ERR_KERN_ENABLE_FAIL;
2f77fc4b
DG
2465 goto error;
2466 }
2467 break;
2468 }
2469 case LTTNG_DOMAIN_UST:
2470 {
2471 struct lttng_ust_calibrate ucalibrate;
2472
2e84128e
DG
2473 switch (calibrate->type) {
2474 case LTTNG_CALIBRATE_FUNCTION:
2475 default:
2476 /* Default and only possible calibrate option. */
2477 ucalibrate.type = LTTNG_UST_CALIBRATE_TRACEPOINT;
2478 break;
2479 }
2480
2f77fc4b
DG
2481 ret = ust_app_calibrate_glb(&ucalibrate);
2482 if (ret < 0) {
f73fabfd 2483 ret = LTTNG_ERR_UST_CALIBRATE_FAIL;
2f77fc4b
DG
2484 goto error;
2485 }
2486 break;
2487 }
2488 default:
f73fabfd 2489 ret = LTTNG_ERR_UND;
2f77fc4b
DG
2490 goto error;
2491 }
2492
f73fabfd 2493 ret = LTTNG_OK;
2f77fc4b
DG
2494
2495error:
2496 return ret;
2497}
2498
2499/*
2500 * Command LTTNG_REGISTER_CONSUMER processed by the client thread.
2501 */
2502int cmd_register_consumer(struct ltt_session *session, int domain,
2503 const char *sock_path, struct consumer_data *cdata)
2504{
2505 int ret, sock;
dd81b457 2506 struct consumer_socket *socket = NULL;
2f77fc4b
DG
2507
2508 assert(session);
2509 assert(cdata);
2510 assert(sock_path);
2511
2512 switch (domain) {
2513 case LTTNG_DOMAIN_KERNEL:
2514 {
2515 struct ltt_kernel_session *ksess = session->kernel_session;
2516
2517 assert(ksess);
2518
2519 /* Can't register a consumer if there is already one */
2520 if (ksess->consumer_fds_sent != 0) {
f73fabfd 2521 ret = LTTNG_ERR_KERN_CONSUMER_FAIL;
2f77fc4b
DG
2522 goto error;
2523 }
2524
2525 sock = lttcomm_connect_unix_sock(sock_path);
2526 if (sock < 0) {
f73fabfd 2527 ret = LTTNG_ERR_CONNECT_FAIL;
2f77fc4b
DG
2528 goto error;
2529 }
4ce514c4 2530 cdata->cmd_sock = sock;
2f77fc4b 2531
4ce514c4 2532 socket = consumer_allocate_socket(&cdata->cmd_sock);
2f77fc4b 2533 if (socket == NULL) {
f66c074c
DG
2534 ret = close(sock);
2535 if (ret < 0) {
2536 PERROR("close register consumer");
2537 }
4ce514c4 2538 cdata->cmd_sock = -1;
f73fabfd 2539 ret = LTTNG_ERR_FATAL;
2f77fc4b
DG
2540 goto error;
2541 }
2542
2543 socket->lock = zmalloc(sizeof(pthread_mutex_t));
2544 if (socket->lock == NULL) {
2545 PERROR("zmalloc pthread mutex");
f73fabfd 2546 ret = LTTNG_ERR_FATAL;
2f77fc4b
DG
2547 goto error;
2548 }
2549 pthread_mutex_init(socket->lock, NULL);
2550 socket->registered = 1;
2551
2552 rcu_read_lock();
2553 consumer_add_socket(socket, ksess->consumer);
2554 rcu_read_unlock();
2555
2556 pthread_mutex_lock(&cdata->pid_mutex);
2557 cdata->pid = -1;
2558 pthread_mutex_unlock(&cdata->pid_mutex);
2559
2560 break;
2561 }
2562 default:
2563 /* TODO: Userspace tracing */
f73fabfd 2564 ret = LTTNG_ERR_UND;
2f77fc4b
DG
2565 goto error;
2566 }
2567
dd81b457 2568 return LTTNG_OK;
2f77fc4b
DG
2569
2570error:
dd81b457
DG
2571 if (socket) {
2572 consumer_destroy_socket(socket);
2573 }
2f77fc4b
DG
2574 return ret;
2575}
2576
2577/*
2578 * Command LTTNG_LIST_DOMAINS processed by the client thread.
2579 */
2580ssize_t cmd_list_domains(struct ltt_session *session,
2581 struct lttng_domain **domains)
2582{
2583 int ret, index = 0;
2584 ssize_t nb_dom = 0;
fefd409b
DG
2585 struct agent *agt;
2586 struct lttng_ht_iter iter;
2f77fc4b
DG
2587
2588 if (session->kernel_session != NULL) {
2589 DBG3("Listing domains found kernel domain");
2590 nb_dom++;
2591 }
2592
2593 if (session->ust_session != NULL) {
2594 DBG3("Listing domains found UST global domain");
2595 nb_dom++;
3c6a091f 2596
e0a74f01 2597 rcu_read_lock();
fefd409b
DG
2598 cds_lfht_for_each_entry(session->ust_session->agents->ht, &iter.iter,
2599 agt, node.node) {
2600 if (agt->being_used) {
2601 nb_dom++;
2602 }
3c6a091f 2603 }
e0a74f01 2604 rcu_read_unlock();
2f77fc4b
DG
2605 }
2606
fa64dfb4
JG
2607 if (!nb_dom) {
2608 goto end;
2609 }
2610
2f77fc4b
DG
2611 *domains = zmalloc(nb_dom * sizeof(struct lttng_domain));
2612 if (*domains == NULL) {
f73fabfd 2613 ret = LTTNG_ERR_FATAL;
2f77fc4b
DG
2614 goto error;
2615 }
2616
2617 if (session->kernel_session != NULL) {
2618 (*domains)[index].type = LTTNG_DOMAIN_KERNEL;
bd3381e3
PP
2619
2620 /* Kernel session buffer type is always GLOBAL */
2621 (*domains)[index].buf_type = LTTNG_BUFFER_GLOBAL;
2622
2f77fc4b
DG
2623 index++;
2624 }
2625
2626 if (session->ust_session != NULL) {
2627 (*domains)[index].type = LTTNG_DOMAIN_UST;
88c5f0d8 2628 (*domains)[index].buf_type = session->ust_session->buffer_type;
2f77fc4b 2629 index++;
3c6a091f 2630
e0a74f01 2631 rcu_read_lock();
fefd409b
DG
2632 cds_lfht_for_each_entry(session->ust_session->agents->ht, &iter.iter,
2633 agt, node.node) {
2634 if (agt->being_used) {
2635 (*domains)[index].type = agt->domain;
2636 (*domains)[index].buf_type = session->ust_session->buffer_type;
2637 index++;
2638 }
3c6a091f 2639 }
e0a74f01 2640 rcu_read_unlock();
2f77fc4b 2641 }
fa64dfb4 2642end:
2f77fc4b
DG
2643 return nb_dom;
2644
2645error:
f73fabfd
DG
2646 /* Return negative value to differentiate return code */
2647 return -ret;
2f77fc4b
DG
2648}
2649
2650
2651/*
2652 * Command LTTNG_LIST_CHANNELS processed by the client thread.
2653 */
2654ssize_t cmd_list_channels(int domain, struct ltt_session *session,
2655 struct lttng_channel **channels)
2656{
2657 int ret;
2658 ssize_t nb_chan = 0;
2659
2660 switch (domain) {
2661 case LTTNG_DOMAIN_KERNEL:
2662 if (session->kernel_session != NULL) {
2663 nb_chan = session->kernel_session->channel_count;
2664 }
2665 DBG3("Number of kernel channels %zd", nb_chan);
c7d620a2
DG
2666 if (nb_chan <= 0) {
2667 ret = LTTNG_ERR_KERN_CHAN_NOT_FOUND;
2668 }
2f77fc4b
DG
2669 break;
2670 case LTTNG_DOMAIN_UST:
2671 if (session->ust_session != NULL) {
7ffc31a2 2672 rcu_read_lock();
2f77fc4b 2673 nb_chan = lttng_ht_get_count(
7ffc31a2
JG
2674 session->ust_session->domain_global.channels);
2675 rcu_read_unlock();
2f77fc4b
DG
2676 }
2677 DBG3("Number of UST global channels %zd", nb_chan);
ade7ce52 2678 if (nb_chan < 0) {
c7d620a2 2679 ret = LTTNG_ERR_UST_CHAN_NOT_FOUND;
ade7ce52 2680 goto error;
c7d620a2 2681 }
2f77fc4b
DG
2682 break;
2683 default:
f73fabfd 2684 ret = LTTNG_ERR_UND;
2f77fc4b
DG
2685 goto error;
2686 }
2687
2688 if (nb_chan > 0) {
2689 *channels = zmalloc(nb_chan * sizeof(struct lttng_channel));
2690 if (*channels == NULL) {
f73fabfd 2691 ret = LTTNG_ERR_FATAL;
2f77fc4b
DG
2692 goto error;
2693 }
2694
2695 list_lttng_channels(domain, session, *channels);
2f77fc4b
DG
2696 }
2697
2698 return nb_chan;
2699
2700error:
f73fabfd
DG
2701 /* Return negative value to differentiate return code */
2702 return -ret;
2f77fc4b
DG
2703}
2704
2705/*
2706 * Command LTTNG_LIST_EVENTS processed by the client thread.
2707 */
2708ssize_t cmd_list_events(int domain, struct ltt_session *session,
2709 char *channel_name, struct lttng_event **events)
2710{
2711 int ret = 0;
2712 ssize_t nb_event = 0;
2713
2714 switch (domain) {
2715 case LTTNG_DOMAIN_KERNEL:
2716 if (session->kernel_session != NULL) {
2717 nb_event = list_lttng_kernel_events(channel_name,
2718 session->kernel_session, events);
2719 }
2720 break;
2721 case LTTNG_DOMAIN_UST:
2722 {
2723 if (session->ust_session != NULL) {
2724 nb_event = list_lttng_ust_global_events(channel_name,
2725 &session->ust_session->domain_global, events);
2726 }
2727 break;
2728 }
5cdb6027 2729 case LTTNG_DOMAIN_LOG4J:
3c6a091f 2730 case LTTNG_DOMAIN_JUL:
0e115563 2731 case LTTNG_DOMAIN_PYTHON:
3c6a091f 2732 if (session->ust_session) {
fefd409b
DG
2733 struct lttng_ht_iter iter;
2734 struct agent *agt;
2735
b11feea5 2736 rcu_read_lock();
fefd409b
DG
2737 cds_lfht_for_each_entry(session->ust_session->agents->ht,
2738 &iter.iter, agt, node.node) {
d8366880
JG
2739 if (agt->domain == domain) {
2740 nb_event = list_lttng_agent_events(
2741 agt, events);
2742 break;
2743 }
fefd409b 2744 }
b11feea5 2745 rcu_read_unlock();
3c6a091f
DG
2746 }
2747 break;
2f77fc4b 2748 default:
f73fabfd 2749 ret = LTTNG_ERR_UND;
2f77fc4b
DG
2750 goto error;
2751 }
2752
f73fabfd 2753 return nb_event;
2f77fc4b
DG
2754
2755error:
f73fabfd
DG
2756 /* Return negative value to differentiate return code */
2757 return -ret;
2f77fc4b
DG
2758}
2759
2760/*
2761 * Using the session list, filled a lttng_session array to send back to the
2762 * client for session listing.
2763 *
2764 * The session list lock MUST be acquired before calling this function. Use
2765 * session_lock_list() and session_unlock_list().
2766 */
2767void cmd_list_lttng_sessions(struct lttng_session *sessions, uid_t uid,
2768 gid_t gid)
2769{
2770 int ret;
2771 unsigned int i = 0;
2772 struct ltt_session *session;
2773 struct ltt_session_list *list = session_get_list();
2774
2775 DBG("Getting all available session for UID %d GID %d",
2776 uid, gid);
2777 /*
2778 * Iterate over session list and append data after the control struct in
2779 * the buffer.
2780 */
2781 cds_list_for_each_entry(session, &list->head, list) {
2782 /*
2783 * Only list the sessions the user can control.
2784 */
2785 if (!session_access_ok(session, uid, gid)) {
2786 continue;
2787 }
2788
2789 struct ltt_kernel_session *ksess = session->kernel_session;
2790 struct ltt_ust_session *usess = session->ust_session;
2791
2792 if (session->consumer->type == CONSUMER_DST_NET ||
2793 (ksess && ksess->consumer->type == CONSUMER_DST_NET) ||
2794 (usess && usess->consumer->type == CONSUMER_DST_NET)) {
2795 ret = build_network_session_path(sessions[i].path,
dec56f6c 2796 sizeof(sessions[i].path), session);
2f77fc4b 2797 } else {
dec56f6c 2798 ret = snprintf(sessions[i].path, sizeof(sessions[i].path), "%s",
2f77fc4b
DG
2799 session->consumer->dst.trace_path);
2800 }
2801 if (ret < 0) {
2802 PERROR("snprintf session path");
2803 continue;
2804 }
2805
2806 strncpy(sessions[i].name, session->name, NAME_MAX);
2807 sessions[i].name[NAME_MAX - 1] = '\0';
8382cf6f 2808 sessions[i].enabled = session->active;
2cbf8fed 2809 sessions[i].snapshot_mode = session->snapshot_mode;
8960e9cd 2810 sessions[i].live_timer_interval = session->live_timer;
2f77fc4b
DG
2811 i++;
2812 }
2813}
2814
806e2684 2815/*
6d805429 2816 * Command LTTNG_DATA_PENDING returning 0 if the data is NOT pending meaning
d3f14b8a 2817 * ready for trace analysis (or any kind of reader) or else 1 for pending data.
806e2684 2818 */
6d805429 2819int cmd_data_pending(struct ltt_session *session)
806e2684
DG
2820{
2821 int ret;
2822 struct ltt_kernel_session *ksess = session->kernel_session;
2823 struct ltt_ust_session *usess = session->ust_session;
2824
2825 assert(session);
2826
2827 /* Session MUST be stopped to ask for data availability. */
8382cf6f 2828 if (session->active) {
806e2684
DG
2829 ret = LTTNG_ERR_SESSION_STARTED;
2830 goto error;
3a89d11a
DG
2831 } else {
2832 /*
2833 * If stopped, just make sure we've started before else the above call
2834 * will always send that there is data pending.
2835 *
2836 * The consumer assumes that when the data pending command is received,
2837 * the trace has been started before or else no output data is written
2838 * by the streams which is a condition for data pending. So, this is
2839 * *VERY* important that we don't ask the consumer before a start
2840 * trace.
2841 */
8382cf6f 2842 if (!session->has_been_started) {
3a89d11a
DG
2843 ret = 0;
2844 goto error;
2845 }
806e2684
DG
2846 }
2847
2848 if (ksess && ksess->consumer) {
6d805429
DG
2849 ret = consumer_is_data_pending(ksess->id, ksess->consumer);
2850 if (ret == 1) {
806e2684
DG
2851 /* Data is still being extracted for the kernel. */
2852 goto error;
2853 }
2854 }
2855
2856 if (usess && usess->consumer) {
6d805429
DG
2857 ret = consumer_is_data_pending(usess->id, usess->consumer);
2858 if (ret == 1) {
806e2684
DG
2859 /* Data is still being extracted for the kernel. */
2860 goto error;
2861 }
2862 }
2863
2864 /* Data is ready to be read by a viewer */
6d805429 2865 ret = 0;
806e2684
DG
2866
2867error:
2868 return ret;
2869}
2870
6dc3064a
DG
2871/*
2872 * Command LTTNG_SNAPSHOT_ADD_OUTPUT from the lttng ctl library.
2873 *
2874 * Return LTTNG_OK on success or else a LTTNG_ERR code.
2875 */
2876int cmd_snapshot_add_output(struct ltt_session *session,
2877 struct lttng_snapshot_output *output, uint32_t *id)
2878{
2879 int ret;
2880 struct snapshot_output *new_output;
2881
2882 assert(session);
2883 assert(output);
2884
2885 DBG("Cmd snapshot add output for session %s", session->name);
2886
2887 /*
d3f14b8a
MD
2888 * Permission denied to create an output if the session is not
2889 * set in no output mode.
6dc3064a
DG
2890 */
2891 if (session->output_traces) {
2892 ret = LTTNG_ERR_EPERM;
2893 goto error;
2894 }
2895
2896 /* Only one output is allowed until we have the "tee" feature. */
2897 if (session->snapshot.nb_output == 1) {
2898 ret = LTTNG_ERR_SNAPSHOT_OUTPUT_EXIST;
2899 goto error;
2900 }
2901
2902 new_output = snapshot_output_alloc();
2903 if (!new_output) {
2904 ret = LTTNG_ERR_NOMEM;
2905 goto error;
2906 }
2907
2908 ret = snapshot_output_init(output->max_size, output->name,
2909 output->ctrl_url, output->data_url, session->consumer, new_output,
2910 &session->snapshot);
2911 if (ret < 0) {
2912 if (ret == -ENOMEM) {
2913 ret = LTTNG_ERR_NOMEM;
2914 } else {
2915 ret = LTTNG_ERR_INVALID;
2916 }
2917 goto free_error;
2918 }
2919
6dc3064a
DG
2920 rcu_read_lock();
2921 snapshot_add_output(&session->snapshot, new_output);
2922 if (id) {
2923 *id = new_output->id;
2924 }
2925 rcu_read_unlock();
2926
2927 return LTTNG_OK;
2928
2929free_error:
2930 snapshot_output_destroy(new_output);
2931error:
2932 return ret;
2933}
2934
2935/*
2936 * Command LTTNG_SNAPSHOT_DEL_OUTPUT from lib lttng ctl.
2937 *
2938 * Return LTTNG_OK on success or else a LTTNG_ERR code.
2939 */
2940int cmd_snapshot_del_output(struct ltt_session *session,
2941 struct lttng_snapshot_output *output)
2942{
2943 int ret;
eb240553 2944 struct snapshot_output *sout = NULL;
6dc3064a
DG
2945
2946 assert(session);
2947 assert(output);
2948
6dc3064a
DG
2949 rcu_read_lock();
2950
2951 /*
d3f14b8a
MD
2952 * Permission denied to create an output if the session is not
2953 * set in no output mode.
6dc3064a
DG
2954 */
2955 if (session->output_traces) {
2956 ret = LTTNG_ERR_EPERM;
2957 goto error;
2958 }
2959
eb240553
DG
2960 if (output->id) {
2961 DBG("Cmd snapshot del output id %" PRIu32 " for session %s", output->id,
2962 session->name);
2963 sout = snapshot_find_output_by_id(output->id, &session->snapshot);
2964 } else if (*output->name != '\0') {
2965 DBG("Cmd snapshot del output name %s for session %s", output->name,
2966 session->name);
2967 sout = snapshot_find_output_by_name(output->name, &session->snapshot);
2968 }
6dc3064a
DG
2969 if (!sout) {
2970 ret = LTTNG_ERR_INVALID;
2971 goto error;
2972 }
2973
2974 snapshot_delete_output(&session->snapshot, sout);
2975 snapshot_output_destroy(sout);
2976 ret = LTTNG_OK;
2977
2978error:
2979 rcu_read_unlock();
2980 return ret;
2981}
2982
2983/*
2984 * Command LTTNG_SNAPSHOT_LIST_OUTPUT from lib lttng ctl.
2985 *
2986 * If no output is available, outputs is untouched and 0 is returned.
2987 *
2988 * Return the size of the newly allocated outputs or a negative LTTNG_ERR code.
2989 */
2990ssize_t cmd_snapshot_list_outputs(struct ltt_session *session,
2991 struct lttng_snapshot_output **outputs)
2992{
2993 int ret, idx = 0;
b223ca94 2994 struct lttng_snapshot_output *list = NULL;
6dc3064a
DG
2995 struct lttng_ht_iter iter;
2996 struct snapshot_output *output;
2997
2998 assert(session);
2999 assert(outputs);
3000
3001 DBG("Cmd snapshot list outputs for session %s", session->name);
3002
3003 /*
d3f14b8a
MD
3004 * Permission denied to create an output if the session is not
3005 * set in no output mode.
6dc3064a
DG
3006 */
3007 if (session->output_traces) {
b223ca94 3008 ret = -LTTNG_ERR_EPERM;
6dc3064a
DG
3009 goto error;
3010 }
3011
3012 if (session->snapshot.nb_output == 0) {
3013 ret = 0;
3014 goto error;
3015 }
3016
3017 list = zmalloc(session->snapshot.nb_output * sizeof(*list));
3018 if (!list) {
b223ca94 3019 ret = -LTTNG_ERR_NOMEM;
6dc3064a
DG
3020 goto error;
3021 }
3022
3023 /* Copy list from session to the new list object. */
b223ca94 3024 rcu_read_lock();
6dc3064a
DG
3025 cds_lfht_for_each_entry(session->snapshot.output_ht->ht, &iter.iter,
3026 output, node.node) {
3027 assert(output->consumer);
3028 list[idx].id = output->id;
3029 list[idx].max_size = output->max_size;
3030 strncpy(list[idx].name, output->name, sizeof(list[idx].name));
3031 if (output->consumer->type == CONSUMER_DST_LOCAL) {
3032 strncpy(list[idx].ctrl_url, output->consumer->dst.trace_path,
3033 sizeof(list[idx].ctrl_url));
3034 } else {
3035 /* Control URI. */
3036 ret = uri_to_str_url(&output->consumer->dst.net.control,
3037 list[idx].ctrl_url, sizeof(list[idx].ctrl_url));
3038 if (ret < 0) {
b223ca94
JG
3039 ret = -LTTNG_ERR_NOMEM;
3040 goto error;
6dc3064a
DG
3041 }
3042
3043 /* Data URI. */
3044 ret = uri_to_str_url(&output->consumer->dst.net.data,
3045 list[idx].data_url, sizeof(list[idx].data_url));
3046 if (ret < 0) {
b223ca94
JG
3047 ret = -LTTNG_ERR_NOMEM;
3048 goto error;
6dc3064a
DG
3049 }
3050 }
3051 idx++;
3052 }
3053
3054 *outputs = list;
b223ca94
JG
3055 list = NULL;
3056 ret = session->snapshot.nb_output;
6dc3064a 3057error:
b223ca94
JG
3058 free(list);
3059 rcu_read_unlock();
3060 return ret;
6dc3064a
DG
3061}
3062
3063/*
3064 * Send relayd sockets from snapshot output to consumer. Ignore request if the
3065 * snapshot output is *not* set with a remote destination.
3066 *
a934f4af 3067 * Return 0 on success or a LTTNG_ERR code.
6dc3064a
DG
3068 */
3069static int set_relayd_for_snapshot(struct consumer_output *consumer,
3070 struct snapshot_output *snap_output, struct ltt_session *session)
3071{
a934f4af 3072 int ret = LTTNG_OK;
6dc3064a
DG
3073 struct lttng_ht_iter iter;
3074 struct consumer_socket *socket;
3075
3076 assert(consumer);
3077 assert(snap_output);
3078 assert(session);
3079
3080 DBG2("Set relayd object from snapshot output");
3081
3082 /* Ignore if snapshot consumer output is not network. */
3083 if (snap_output->consumer->type != CONSUMER_DST_NET) {
3084 goto error;
3085 }
3086
3087 /*
3088 * For each consumer socket, create and send the relayd object of the
3089 * snapshot output.
3090 */
3091 rcu_read_lock();
5eecee74
DG
3092 cds_lfht_for_each_entry(snap_output->consumer->socks->ht, &iter.iter,
3093 socket, node.node) {
6dc3064a 3094 ret = send_consumer_relayd_sockets(0, session->id,
d3e2ba59
JD
3095 snap_output->consumer, socket,
3096 session->name, session->hostname,
3097 session->live_timer);
a934f4af 3098 if (ret != LTTNG_OK) {
6dc3064a
DG
3099 rcu_read_unlock();
3100 goto error;
3101 }
3102 }
3103 rcu_read_unlock();
3104
3105error:
3106 return ret;
3107}
3108
3109/*
3110 * Record a kernel snapshot.
3111 *
fac41e72 3112 * Return LTTNG_OK on success or a LTTNG_ERR code.
6dc3064a
DG
3113 */
3114static int record_kernel_snapshot(struct ltt_kernel_session *ksess,
5c786ded 3115 struct snapshot_output *output, struct ltt_session *session,
d07ceecd 3116 int wait, uint64_t nb_packets_per_stream)
6dc3064a
DG
3117{
3118 int ret;
3119
3120 assert(ksess);
3121 assert(output);
3122 assert(session);
3123
10a50311 3124
af706bb7
DG
3125 /*
3126 * Copy kernel session sockets so we can communicate with the right
3127 * consumer for the snapshot record command.
3128 */
3129 ret = consumer_copy_sockets(output->consumer, ksess->consumer);
3130 if (ret < 0) {
a934f4af 3131 ret = LTTNG_ERR_NOMEM;
af706bb7 3132 goto error;
6dc3064a
DG
3133 }
3134
3135 ret = set_relayd_for_snapshot(ksess->consumer, output, session);
a934f4af 3136 if (ret != LTTNG_OK) {
af706bb7 3137 goto error_snapshot;
6dc3064a
DG
3138 }
3139
d07ceecd 3140 ret = kernel_snapshot_record(ksess, output, wait, nb_packets_per_stream);
2a06df8d 3141 if (ret != LTTNG_OK) {
af706bb7 3142 goto error_snapshot;
6dc3064a
DG
3143 }
3144
a934f4af 3145 ret = LTTNG_OK;
1371fc12 3146 goto end;
a934f4af 3147
af706bb7
DG
3148error_snapshot:
3149 /* Clean up copied sockets so this output can use some other later on. */
3150 consumer_destroy_output_sockets(output->consumer);
6dc3064a 3151error:
1371fc12 3152end:
6dc3064a
DG
3153 return ret;
3154}
3155
3156/*
3157 * Record a UST snapshot.
3158 *
a934f4af 3159 * Return 0 on success or a LTTNG_ERR error code.
6dc3064a
DG
3160 */
3161static int record_ust_snapshot(struct ltt_ust_session *usess,
5c786ded 3162 struct snapshot_output *output, struct ltt_session *session,
d07ceecd 3163 int wait, uint64_t nb_packets_per_stream)
6dc3064a
DG
3164{
3165 int ret;
3166
3167 assert(usess);
3168 assert(output);
3169 assert(session);
3170
af706bb7 3171 /*
d3f14b8a 3172 * Copy UST session sockets so we can communicate with the right
af706bb7
DG
3173 * consumer for the snapshot record command.
3174 */
3175 ret = consumer_copy_sockets(output->consumer, usess->consumer);
3176 if (ret < 0) {
a934f4af 3177 ret = LTTNG_ERR_NOMEM;
af706bb7 3178 goto error;
6dc3064a
DG
3179 }
3180
3181 ret = set_relayd_for_snapshot(usess->consumer, output, session);
a934f4af 3182 if (ret != LTTNG_OK) {
af706bb7 3183 goto error_snapshot;
6dc3064a
DG
3184 }
3185
d07ceecd 3186 ret = ust_app_snapshot_record(usess, output, wait, nb_packets_per_stream);
6dc3064a 3187 if (ret < 0) {
7badf927
DG
3188 switch (-ret) {
3189 case EINVAL:
a934f4af 3190 ret = LTTNG_ERR_INVALID;
7badf927
DG
3191 break;
3192 case ENODATA:
3193 ret = LTTNG_ERR_SNAPSHOT_NODATA;
3194 break;
3195 default:
3196 ret = LTTNG_ERR_SNAPSHOT_FAIL;
3197 break;
5c786ded 3198 }
af706bb7 3199 goto error_snapshot;
6dc3064a
DG
3200 }
3201
a934f4af
DG
3202 ret = LTTNG_OK;
3203
af706bb7
DG
3204error_snapshot:
3205 /* Clean up copied sockets so this output can use some other later on. */
3206 consumer_destroy_output_sockets(output->consumer);
6dc3064a
DG
3207error:
3208 return ret;
3209}
3210
d07ceecd
MD
3211static
3212uint64_t get_session_size_one_more_packet_per_stream(struct ltt_session *session,
3213 uint64_t cur_nr_packets)
68808f4e 3214{
d07ceecd 3215 uint64_t tot_size = 0;
68808f4e
DG
3216
3217 if (session->kernel_session) {
3218 struct ltt_kernel_channel *chan;
3219 struct ltt_kernel_session *ksess = session->kernel_session;
3220
68808f4e 3221 cds_list_for_each_entry(chan, &ksess->channel_list.head, list) {
d07ceecd
MD
3222 if (cur_nr_packets >= chan->channel->attr.num_subbuf) {
3223 /*
3224 * Don't take channel into account if we
3225 * already grab all its packets.
3226 */
3227 continue;
68808f4e 3228 }
d07ceecd
MD
3229 tot_size += chan->channel->attr.subbuf_size
3230 * chan->stream_count;
68808f4e
DG
3231 }
3232 }
3233
3234 if (session->ust_session) {
68808f4e
DG
3235 struct ltt_ust_session *usess = session->ust_session;
3236
d07ceecd
MD
3237 tot_size += ust_app_get_size_one_more_packet_per_stream(usess,
3238 cur_nr_packets);
68808f4e
DG
3239 }
3240
d07ceecd 3241 return tot_size;
68808f4e
DG
3242}
3243
5c786ded 3244/*
d07ceecd
MD
3245 * Calculate the number of packets we can grab from each stream that
3246 * fits within the overall snapshot max size.
3247 *
3248 * Returns -1 on error, 0 means infinite number of packets, else > 0 is
3249 * the number of packets per stream.
3250 *
3251 * TODO: this approach is not perfect: we consider the worse case
3252 * (packet filling the sub-buffers) as an upper bound, but we could do
3253 * better if we do this calculation while we actually grab the packet
3254 * content: we would know how much padding we don't actually store into
3255 * the file.
3256 *
3257 * This algorithm is currently bounded by the number of packets per
3258 * stream.
3259 *
3260 * Since we call this algorithm before actually grabbing the data, it's
3261 * an approximation: for instance, applications could appear/disappear
3262 * in between this call and actually grabbing data.
5c786ded 3263 */
d07ceecd
MD
3264static
3265int64_t get_session_nb_packets_per_stream(struct ltt_session *session, uint64_t max_size)
5c786ded 3266{
d07ceecd
MD
3267 int64_t size_left;
3268 uint64_t cur_nb_packets = 0;
5c786ded 3269
d07ceecd
MD
3270 if (!max_size) {
3271 return 0; /* Infinite */
5c786ded
JD
3272 }
3273
d07ceecd
MD
3274 size_left = max_size;
3275 for (;;) {
3276 uint64_t one_more_packet_tot_size;
5c786ded 3277
d07ceecd
MD
3278 one_more_packet_tot_size = get_session_size_one_more_packet_per_stream(session,
3279 cur_nb_packets);
3280 if (!one_more_packet_tot_size) {
3281 /* We are already grabbing all packets. */
3282 break;
3283 }
3284 size_left -= one_more_packet_tot_size;
3285 if (size_left < 0) {
3286 break;
3287 }
3288 cur_nb_packets++;
5c786ded 3289 }
d07ceecd
MD
3290 if (!cur_nb_packets) {
3291 /* Not enough room to grab one packet of each stream, error. */
3292 return -1;
3293 }
3294 return cur_nb_packets;
5c786ded
JD
3295}
3296
6dc3064a
DG
3297/*
3298 * Command LTTNG_SNAPSHOT_RECORD from lib lttng ctl.
3299 *
3300 * The wait parameter is ignored so this call always wait for the snapshot to
3301 * complete before returning.
3302 *
3303 * Return LTTNG_OK on success or else a LTTNG_ERR code.
3304 */
3305int cmd_snapshot_record(struct ltt_session *session,
3306 struct lttng_snapshot_output *output, int wait)
3307{
3308 int ret = LTTNG_OK;
e1986656
DG
3309 unsigned int use_tmp_output = 0;
3310 struct snapshot_output tmp_output;
00e1dfc4 3311 unsigned int snapshot_success = 0;
02208dd5 3312 char datetime[16];
6dc3064a
DG
3313
3314 assert(session);
ba45d9f0 3315 assert(output);
6dc3064a
DG
3316
3317 DBG("Cmd snapshot record for session %s", session->name);
3318
02208dd5
JR
3319 /* Get the datetime for the snapshot output directory. */
3320 ret = utils_get_current_time_str("%Y%m%d-%H%M%S", datetime,
3321 sizeof(datetime));
3322 if (!ret) {
3323 ret = LTTNG_ERR_INVALID;
3324 goto error;
3325 }
3326
6dc3064a 3327 /*
d3f14b8a
MD
3328 * Permission denied to create an output if the session is not
3329 * set in no output mode.
6dc3064a
DG
3330 */
3331 if (session->output_traces) {
3332 ret = LTTNG_ERR_EPERM;
3333 goto error;
3334 }
3335
3336 /* The session needs to be started at least once. */
8382cf6f 3337 if (!session->has_been_started) {
6dc3064a
DG
3338 ret = LTTNG_ERR_START_SESSION_ONCE;
3339 goto error;
3340 }
3341
3342 /* Use temporary output for the session. */
ba45d9f0 3343 if (*output->ctrl_url != '\0') {
6dc3064a
DG
3344 ret = snapshot_output_init(output->max_size, output->name,
3345 output->ctrl_url, output->data_url, session->consumer,
e1986656 3346 &tmp_output, NULL);
6dc3064a
DG
3347 if (ret < 0) {
3348 if (ret == -ENOMEM) {
3349 ret = LTTNG_ERR_NOMEM;
3350 } else {
3351 ret = LTTNG_ERR_INVALID;
3352 }
3353 goto error;
3354 }
1bfe7328
DG
3355 /* Use the global session count for the temporary snapshot. */
3356 tmp_output.nb_snapshot = session->snapshot.nb_snapshot;
02208dd5
JR
3357
3358 /* Use the global datetime */
3359 memcpy(tmp_output.datetime, datetime, sizeof(datetime));
e1986656 3360 use_tmp_output = 1;
6dc3064a
DG
3361 }
3362
b7bd3009
JR
3363 if (use_tmp_output) {
3364 int64_t nb_packets_per_stream;
6dc3064a 3365
b7bd3009
JR
3366 nb_packets_per_stream = get_session_nb_packets_per_stream(session,
3367 tmp_output.max_size);
3368 if (nb_packets_per_stream < 0) {
3369 ret = LTTNG_ERR_MAX_SIZE_INVALID;
3370 goto error;
3371 }
d07ceecd 3372
b7bd3009
JR
3373 if (session->kernel_session) {
3374 ret = record_kernel_snapshot(session->kernel_session,
3375 &tmp_output, session,
3376 wait, nb_packets_per_stream);
3377 if (ret != LTTNG_OK) {
d07ceecd
MD
3378 goto error;
3379 }
b7bd3009
JR
3380 }
3381
3382 if (session->ust_session) {
3383 ret = record_ust_snapshot(session->ust_session,
3384 &tmp_output, session,
d07ceecd 3385 wait, nb_packets_per_stream);
a934f4af 3386 if (ret != LTTNG_OK) {
6dc3064a
DG
3387 goto error;
3388 }
b7bd3009 3389 }
e1986656 3390
b7bd3009
JR
3391 snapshot_success = 1;
3392 } else {
3393 struct snapshot_output *sout;
3394 struct lttng_ht_iter iter;
68808f4e 3395
b7bd3009
JR
3396 rcu_read_lock();
3397 cds_lfht_for_each_entry(session->snapshot.output_ht->ht,
3398 &iter.iter, sout, node.node) {
3399 int64_t nb_packets_per_stream;
e1986656 3400
b7bd3009
JR
3401 /*
3402 * Make a local copy of the output and assign the possible
3403 * temporary value given by the caller.
3404 */
3405 memset(&tmp_output, 0, sizeof(tmp_output));
3406 memcpy(&tmp_output, sout, sizeof(tmp_output));
1bfe7328 3407
b7bd3009
JR
3408 if (output->max_size != (uint64_t) -1ULL) {
3409 tmp_output.max_size = output->max_size;
6dc3064a 3410 }
d07ceecd
MD
3411
3412 nb_packets_per_stream = get_session_nb_packets_per_stream(session,
3413 tmp_output.max_size);
3414 if (nb_packets_per_stream < 0) {
3415 ret = LTTNG_ERR_MAX_SIZE_INVALID;
b7bd3009 3416 rcu_read_unlock();
d07ceecd
MD
3417 goto error;
3418 }
6dc3064a 3419
b7bd3009
JR
3420 /* Use temporary name. */
3421 if (*output->name != '\0') {
3422 strncpy(tmp_output.name, output->name,
3423 sizeof(tmp_output.name));
3424 }
e1986656 3425
b7bd3009 3426 tmp_output.nb_snapshot = session->snapshot.nb_snapshot;
02208dd5 3427 memcpy(tmp_output.datetime, datetime, sizeof(datetime));
e1986656 3428
b7bd3009
JR
3429 if (session->kernel_session) {
3430 ret = record_kernel_snapshot(session->kernel_session,
3431 &tmp_output, session,
3432 wait, nb_packets_per_stream);
3433 if (ret != LTTNG_OK) {
d07ceecd 3434 rcu_read_unlock();
68808f4e
DG
3435 goto error;
3436 }
b7bd3009 3437 }
68808f4e 3438
b7bd3009
JR
3439 if (session->ust_session) {
3440 ret = record_ust_snapshot(session->ust_session,
3441 &tmp_output, session,
d07ceecd 3442 wait, nb_packets_per_stream);
a934f4af 3443 if (ret != LTTNG_OK) {
6dc3064a
DG
3444 rcu_read_unlock();
3445 goto error;
3446 }
3447 }
b7bd3009 3448 snapshot_success = 1;
6dc3064a 3449 }
b7bd3009 3450 rcu_read_unlock();
6dc3064a
DG
3451 }
3452
1bfe7328
DG
3453 if (snapshot_success) {
3454 session->snapshot.nb_snapshot++;
b67578cb
MD
3455 } else {
3456 ret = LTTNG_ERR_SNAPSHOT_FAIL;
1bfe7328
DG
3457 }
3458
6dc3064a 3459error:
6dc3064a
DG
3460 return ret;
3461}
3462
d7ba1388
MD
3463/*
3464 * Command LTTNG_SET_SESSION_SHM_PATH processed by the client thread.
3465 */
3466int cmd_set_session_shm_path(struct ltt_session *session,
3467 const char *shm_path)
3468{
3469 /* Safety net */
3470 assert(session);
3471
3472 /*
3473 * Can only set shm path before session is started.
3474 */
3475 if (session->has_been_started) {
3476 return LTTNG_ERR_SESSION_STARTED;
3477 }
3478
3479 strncpy(session->shm_path, shm_path,
3480 sizeof(session->shm_path));
3481 session->shm_path[sizeof(session->shm_path) - 1] = '\0';
3482
3483 return 0;
3484}
3485
2f77fc4b
DG
3486/*
3487 * Init command subsystem.
3488 */
3489void cmd_init(void)
3490{
3491 /*
d88aee68
DG
3492 * Set network sequence index to 1 for streams to match a relayd
3493 * socket on the consumer side.
2f77fc4b 3494 */
d88aee68
DG
3495 pthread_mutex_lock(&relayd_net_seq_idx_lock);
3496 relayd_net_seq_idx = 1;
3497 pthread_mutex_unlock(&relayd_net_seq_idx_lock);
2f77fc4b
DG
3498
3499 DBG("Command subsystem initialized");
3500}
This page took 0.230989 seconds and 4 git commands to generate.