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