Save filter expression as part of agent events and save them
[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;
ff94328f
DG
239 tmp_events[i].loglevel = event->loglevel;
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:
1111 {
1112 struct ltt_ust_channel *uchan;
1113
1114 chan_ht = usess->domain_global.channels;
1115
1116 uchan = trace_ust_find_channel_by_name(chan_ht, attr->name);
1117 if (uchan == NULL) {
7972aab2 1118 ret = channel_ust_create(usess, attr, domain->buf_type);
85076754
MD
1119 if (attr->name[0] != '\0') {
1120 usess->has_non_default_channel = 1;
1121 }
2f77fc4b 1122 } else {
7972aab2 1123 ret = channel_ust_enable(usess, uchan);
2f77fc4b
DG
1124 }
1125 break;
1126 }
2f77fc4b 1127 default:
f73fabfd 1128 ret = LTTNG_ERR_UNKNOWN_DOMAIN;
2f77fc4b
DG
1129 goto error;
1130 }
1131
1132error:
2223c96f 1133 rcu_read_unlock();
1f345e94 1134end:
2f77fc4b
DG
1135 return ret;
1136}
1137
2f77fc4b
DG
1138/*
1139 * Command LTTNG_DISABLE_EVENT processed by the client thread.
1140 */
1141int cmd_disable_event(struct ltt_session *session, int domain,
6e911cad
MD
1142 char *channel_name,
1143 struct lttng_event *event)
2f77fc4b
DG
1144{
1145 int ret;
6e911cad
MD
1146 char *event_name;
1147
18a720cd
MD
1148 DBG("Disable event command for event \'%s\'", event->name);
1149
6e911cad 1150 event_name = event->name;
1290b5d8
JG
1151 if (validate_event_name(event_name)) {
1152 ret = LTTNG_ERR_INVALID_EVENT_NAME;
1153 goto error;
1154 }
6e911cad 1155
9b7431cf
JG
1156 /* Error out on unhandled search criteria */
1157 if (event->loglevel_type || event->loglevel != -1 || event->enabled
6e911cad 1158 || event->pid || event->filter || event->exclusion) {
1290b5d8
JG
1159 ret = LTTNG_ERR_UNK;
1160 goto error;
6e911cad 1161 }
2f77fc4b 1162
2223c96f
DG
1163 rcu_read_lock();
1164
2f77fc4b
DG
1165 switch (domain) {
1166 case LTTNG_DOMAIN_KERNEL:
1167 {
1168 struct ltt_kernel_channel *kchan;
1169 struct ltt_kernel_session *ksess;
1170
1171 ksess = session->kernel_session;
1172
85076754
MD
1173 /*
1174 * If a non-default channel has been created in the
1175 * session, explicitely require that -c chan_name needs
1176 * to be provided.
1177 */
1178 if (ksess->has_non_default_channel && channel_name[0] == '\0') {
1179 ret = LTTNG_ERR_NEED_CHANNEL_NAME;
1290b5d8 1180 goto error_unlock;
85076754
MD
1181 }
1182
2f77fc4b
DG
1183 kchan = trace_kernel_get_channel_by_name(channel_name, ksess);
1184 if (kchan == NULL) {
f73fabfd 1185 ret = LTTNG_ERR_KERN_CHAN_NOT_FOUND;
1290b5d8 1186 goto error_unlock;
2f77fc4b
DG
1187 }
1188
6e911cad
MD
1189 switch (event->type) {
1190 case LTTNG_EVENT_ALL:
d0ae4ea8 1191 ret = event_kernel_disable_event_all(kchan);
29c62722 1192 if (ret != LTTNG_OK) {
1290b5d8 1193 goto error_unlock;
29c62722
MD
1194 }
1195 break;
d0ae4ea8
MD
1196 case LTTNG_EVENT_TRACEPOINT: /* fall-through */
1197 case LTTNG_EVENT_SYSCALL:
29c62722 1198 if (!strcmp(event_name, "*")) {
d0ae4ea8
MD
1199 ret = event_kernel_disable_event_type(kchan,
1200 event->type);
29c62722 1201 } else {
d0ae4ea8
MD
1202 ret = event_kernel_disable_event(kchan,
1203 event_name);
29c62722 1204 }
6e911cad 1205 if (ret != LTTNG_OK) {
1290b5d8 1206 goto error_unlock;
6e911cad
MD
1207 }
1208 break;
d0ae4ea8
MD
1209 case LTTNG_EVENT_PROBE:
1210 case LTTNG_EVENT_FUNCTION:
1211 case LTTNG_EVENT_FUNCTION_ENTRY:
1212 ret = event_kernel_disable_event(kchan, event_name);
e2b957af 1213 if (ret != LTTNG_OK) {
1290b5d8 1214 goto error_unlock;
e2b957af 1215 }
6e911cad
MD
1216 break;
1217 default:
1218 ret = LTTNG_ERR_UNK;
1290b5d8 1219 goto error_unlock;
2f77fc4b
DG
1220 }
1221
1222 kernel_wait_quiescent(kernel_tracer_fd);
1223 break;
1224 }
1225 case LTTNG_DOMAIN_UST:
1226 {
1227 struct ltt_ust_channel *uchan;
1228 struct ltt_ust_session *usess;
1229
1230 usess = session->ust_session;
1231
1290b5d8
JG
1232 if (validate_ust_event_name(event_name)) {
1233 ret = LTTNG_ERR_INVALID_EVENT_NAME;
1234 goto error_unlock;
1235 }
1236
85076754
MD
1237 /*
1238 * If a non-default channel has been created in the
1239 * session, explicitely require that -c chan_name needs
1240 * to be provided.
1241 */
1242 if (usess->has_non_default_channel && channel_name[0] == '\0') {
1243 ret = LTTNG_ERR_NEED_CHANNEL_NAME;
1290b5d8 1244 goto error_unlock;
85076754
MD
1245 }
1246
2f77fc4b
DG
1247 uchan = trace_ust_find_channel_by_name(usess->domain_global.channels,
1248 channel_name);
1249 if (uchan == NULL) {
f73fabfd 1250 ret = LTTNG_ERR_UST_CHAN_NOT_FOUND;
1290b5d8 1251 goto error_unlock;
2f77fc4b
DG
1252 }
1253
6e911cad
MD
1254 switch (event->type) {
1255 case LTTNG_EVENT_ALL:
1256 ret = event_ust_disable_tracepoint(usess, uchan, event_name);
1257 if (ret != LTTNG_OK) {
1290b5d8 1258 goto error_unlock;
6e911cad
MD
1259 }
1260 break;
1261 default:
1262 ret = LTTNG_ERR_UNK;
1290b5d8 1263 goto error_unlock;
2f77fc4b
DG
1264 }
1265
1266 DBG3("Disable UST event %s in channel %s completed", event_name,
1267 channel_name);
1268 break;
1269 }
5cdb6027 1270 case LTTNG_DOMAIN_LOG4J:
f20baf8e 1271 case LTTNG_DOMAIN_JUL:
0e115563 1272 case LTTNG_DOMAIN_PYTHON:
f20baf8e 1273 {
fefd409b 1274 struct agent *agt;
f20baf8e
DG
1275 struct ltt_ust_session *usess = session->ust_session;
1276
1277 assert(usess);
1278
6e911cad
MD
1279 switch (event->type) {
1280 case LTTNG_EVENT_ALL:
1281 break;
1282 default:
1283 ret = LTTNG_ERR_UNK;
1290b5d8 1284 goto error_unlock;
6e911cad
MD
1285 }
1286
5cdb6027 1287 agt = trace_ust_find_agent(usess, domain);
fefd409b
DG
1288 if (!agt) {
1289 ret = -LTTNG_ERR_UST_EVENT_NOT_FOUND;
1290b5d8 1290 goto error_unlock;
fefd409b 1291 }
18a720cd
MD
1292 /* The wild card * means that everything should be disabled. */
1293 if (strncmp(event->name, "*", 1) == 0 && strlen(event->name) == 1) {
1294 ret = event_agent_disable_all(usess, agt);
1295 } else {
1296 ret = event_agent_disable(usess, agt, event_name);
1297 }
f20baf8e 1298 if (ret != LTTNG_OK) {
1290b5d8 1299 goto error_unlock;
f20baf8e
DG
1300 }
1301
1302 break;
1303 }
2f77fc4b 1304 default:
f73fabfd 1305 ret = LTTNG_ERR_UND;
1290b5d8 1306 goto error_unlock;
2f77fc4b
DG
1307 }
1308
f73fabfd 1309 ret = LTTNG_OK;
2f77fc4b 1310
1290b5d8 1311error_unlock:
2223c96f 1312 rcu_read_unlock();
1290b5d8 1313error:
2f77fc4b
DG
1314 return ret;
1315}
1316
2f77fc4b
DG
1317/*
1318 * Command LTTNG_ADD_CONTEXT processed by the client thread.
1319 */
1320int cmd_add_context(struct ltt_session *session, int domain,
601d5acf 1321 char *channel_name, struct lttng_event_context *ctx, int kwpipe)
2f77fc4b 1322{
d5979e4a 1323 int ret, chan_kern_created = 0, chan_ust_created = 0;
2f77fc4b
DG
1324
1325 switch (domain) {
1326 case LTTNG_DOMAIN_KERNEL:
979e618e
DG
1327 assert(session->kernel_session);
1328
1329 if (session->kernel_session->channel_count == 0) {
1330 /* Create default channel */
1331 ret = channel_kernel_create(session->kernel_session, NULL, kwpipe);
1332 if (ret != LTTNG_OK) {
1333 goto error;
1334 }
d5979e4a 1335 chan_kern_created = 1;
979e618e 1336 }
2f77fc4b 1337 /* Add kernel context to kernel tracer */
601d5acf 1338 ret = context_kernel_add(session->kernel_session, ctx, channel_name);
f73fabfd 1339 if (ret != LTTNG_OK) {
2f77fc4b
DG
1340 goto error;
1341 }
1342 break;
1343 case LTTNG_DOMAIN_UST:
1344 {
1345 struct ltt_ust_session *usess = session->ust_session;
85076754
MD
1346 unsigned int chan_count;
1347
2f77fc4b
DG
1348 assert(usess);
1349
85076754 1350 chan_count = lttng_ht_get_count(usess->domain_global.channels);
979e618e
DG
1351 if (chan_count == 0) {
1352 struct lttng_channel *attr;
1353 /* Create default channel */
0a9c6494 1354 attr = channel_new_default_attr(domain, usess->buffer_type);
979e618e
DG
1355 if (attr == NULL) {
1356 ret = LTTNG_ERR_FATAL;
1357 goto error;
1358 }
1359
7972aab2 1360 ret = channel_ust_create(usess, attr, usess->buffer_type);
979e618e
DG
1361 if (ret != LTTNG_OK) {
1362 free(attr);
1363 goto error;
1364 }
1365 free(attr);
d5979e4a 1366 chan_ust_created = 1;
979e618e
DG
1367 }
1368
601d5acf 1369 ret = context_ust_add(usess, domain, ctx, channel_name);
f73fabfd 1370 if (ret != LTTNG_OK) {
2f77fc4b
DG
1371 goto error;
1372 }
1373 break;
1374 }
2f77fc4b 1375 default:
f73fabfd 1376 ret = LTTNG_ERR_UND;
2f77fc4b
DG
1377 goto error;
1378 }
1379
d5979e4a 1380 return LTTNG_OK;
2f77fc4b
DG
1381
1382error:
d5979e4a
DG
1383 if (chan_kern_created) {
1384 struct ltt_kernel_channel *kchan =
1385 trace_kernel_get_channel_by_name(DEFAULT_CHANNEL_NAME,
1386 session->kernel_session);
1387 /* Created previously, this should NOT fail. */
1388 assert(kchan);
1389 kernel_destroy_channel(kchan);
1390 }
1391
1392 if (chan_ust_created) {
1393 struct ltt_ust_channel *uchan =
1394 trace_ust_find_channel_by_name(
1395 session->ust_session->domain_global.channels,
1396 DEFAULT_CHANNEL_NAME);
1397 /* Created previously, this should NOT fail. */
1398 assert(uchan);
1399 /* Remove from the channel list of the session. */
1400 trace_ust_delete_channel(session->ust_session->domain_global.channels,
1401 uchan);
1402 trace_ust_destroy_channel(uchan);
1403 }
2f77fc4b
DG
1404 return ret;
1405}
1406
930a2e99
JG
1407static int validate_event_name(const char *name)
1408{
1409 int ret = 0;
1410 const char *c = name;
1411 const char *event_name_end = c + LTTNG_SYMBOL_NAME_LEN;
1412
1413 /*
1414 * Make sure that unescaped wildcards are only used as the last
1415 * character of the event name.
1416 */
1417 while (c < event_name_end) {
1418 switch (*c) {
1419 case '\0':
1420 goto end;
1421 case '\\':
1422 c++;
1423 break;
1424 case '*':
1425 if ((c + 1) < event_name_end && *(c + 1)) {
1426 /* Wildcard is not the last character */
1427 ret = LTTNG_ERR_INVALID_EVENT_NAME;
1428 goto end;
1429 }
1430 default:
1431 break;
1432 }
1433 c++;
1434 }
1435end:
1436 return ret;
1437}
1438
c8100299
JG
1439static inline bool name_starts_with(const char *name, const char *prefix)
1440{
1441 const size_t max_cmp_len = min(strlen(prefix), LTTNG_SYMBOL_NAME_LEN);
1442
1443 return !strncmp(name, prefix, max_cmp_len);
1444}
1445
1446/* Perform userspace-specific event name validation */
1447static int validate_ust_event_name(const char *name)
1448{
1449 int ret = 0;
1450
1451 if (!name) {
1452 ret = -1;
1453 goto end;
1454 }
1455
1456 /*
1457 * Check name against all internal UST event component namespaces used
1458 * by the agents.
1459 */
1460 if (name_starts_with(name, DEFAULT_JUL_EVENT_COMPONENT) ||
1461 name_starts_with(name, DEFAULT_LOG4J_EVENT_COMPONENT) ||
1462 name_starts_with(name, DEFAULT_PYTHON_EVENT_COMPONENT)) {
1463 ret = -1;
1464 }
1465
1466end:
1467 return ret;
1468}
9732459c 1469
2f77fc4b 1470/*
9732459c
JG
1471 * Internal version of cmd_enable_event() with a supplemental
1472 * "internal_event" flag which is used to enable internal events which should
1473 * be hidden from clients. Such events are used in the agent implementation to
1474 * enable the events through which all "agent" events are funeled.
2f77fc4b 1475 */
9732459c
JG
1476static int _cmd_enable_event(struct ltt_session *session,
1477 struct lttng_domain *domain,
025faf73 1478 char *channel_name, struct lttng_event *event,
6b453b5e 1479 char *filter_expression,
db8f1377
JI
1480 struct lttng_filter_bytecode *filter,
1481 struct lttng_event_exclusion *exclusion,
9732459c 1482 int wpipe, bool internal_event)
2f77fc4b 1483{
e5f5db7f 1484 int ret, channel_created = 0;
2f77fc4b
DG
1485 struct lttng_channel *attr;
1486
1487 assert(session);
1488 assert(event);
1489 assert(channel_name);
1490
18a720cd
MD
1491 DBG("Enable event command for event \'%s\'", event->name);
1492
930a2e99
JG
1493 ret = validate_event_name(event->name);
1494 if (ret) {
1495 goto error;
1496 }
1497
2223c96f
DG
1498 rcu_read_lock();
1499
7972aab2 1500 switch (domain->type) {
2f77fc4b
DG
1501 case LTTNG_DOMAIN_KERNEL:
1502 {
1503 struct ltt_kernel_channel *kchan;
1504
85076754
MD
1505 /*
1506 * If a non-default channel has been created in the
1507 * session, explicitely require that -c chan_name needs
1508 * to be provided.
1509 */
1510 if (session->kernel_session->has_non_default_channel
1511 && channel_name[0] == '\0') {
1512 ret = LTTNG_ERR_NEED_CHANNEL_NAME;
1513 goto error;
1514 }
1515
2f77fc4b
DG
1516 kchan = trace_kernel_get_channel_by_name(channel_name,
1517 session->kernel_session);
1518 if (kchan == NULL) {
0a9c6494
DG
1519 attr = channel_new_default_attr(LTTNG_DOMAIN_KERNEL,
1520 LTTNG_BUFFER_GLOBAL);
2f77fc4b 1521 if (attr == NULL) {
f73fabfd 1522 ret = LTTNG_ERR_FATAL;
2f77fc4b
DG
1523 goto error;
1524 }
1525 strncpy(attr->name, channel_name, sizeof(attr->name));
1526
1527 ret = cmd_enable_channel(session, domain, attr, wpipe);
f73fabfd 1528 if (ret != LTTNG_OK) {
2f77fc4b
DG
1529 free(attr);
1530 goto error;
1531 }
1532 free(attr);
e5f5db7f
DG
1533
1534 channel_created = 1;
2f77fc4b
DG
1535 }
1536
1537 /* Get the newly created kernel channel pointer */
1538 kchan = trace_kernel_get_channel_by_name(channel_name,
1539 session->kernel_session);
1540 if (kchan == NULL) {
1541 /* This sould not happen... */
f73fabfd 1542 ret = LTTNG_ERR_FATAL;
2f77fc4b
DG
1543 goto error;
1544 }
1545
6e911cad
MD
1546 switch (event->type) {
1547 case LTTNG_EVENT_ALL:
29c62722 1548 {
00a62084
MD
1549 char *filter_expression_a = NULL;
1550 struct lttng_filter_bytecode *filter_a = NULL;
1551
1552 /*
1553 * We need to duplicate filter_expression and filter,
1554 * because ownership is passed to first enable
1555 * event.
1556 */
1557 if (filter_expression) {
1558 filter_expression_a = strdup(filter_expression);
1559 if (!filter_expression_a) {
1560 ret = LTTNG_ERR_FATAL;
1561 goto error;
1562 }
1563 }
1564 if (filter) {
1565 filter_a = zmalloc(sizeof(*filter_a) + filter->len);
1566 if (!filter_a) {
1567 free(filter_expression_a);
1568 ret = LTTNG_ERR_FATAL;
1569 goto error;
1570 }
1571 memcpy(filter_a, filter, sizeof(*filter_a) + filter->len);
1572 }
29c62722 1573 event->type = LTTNG_EVENT_TRACEPOINT; /* Hack */
00a62084
MD
1574 ret = event_kernel_enable_event(kchan, event,
1575 filter_expression, filter);
a969e101
MD
1576 /* We have passed ownership */
1577 filter_expression = NULL;
1578 filter = NULL;
29c62722
MD
1579 if (ret != LTTNG_OK) {
1580 if (channel_created) {
1581 /* Let's not leak a useless channel. */
1582 kernel_destroy_channel(kchan);
1583 }
00a62084
MD
1584 free(filter_expression_a);
1585 free(filter_a);
29c62722
MD
1586 goto error;
1587 }
1588 event->type = LTTNG_EVENT_SYSCALL; /* Hack */
00a62084
MD
1589 ret = event_kernel_enable_event(kchan, event,
1590 filter_expression_a, filter_a);
29c62722 1591 if (ret != LTTNG_OK) {
00a62084
MD
1592 free(filter_expression_a);
1593 free(filter_a);
29c62722
MD
1594 goto error;
1595 }
1596 break;
1597 }
6e6ef3d7
DG
1598 case LTTNG_EVENT_PROBE:
1599 case LTTNG_EVENT_FUNCTION:
1600 case LTTNG_EVENT_FUNCTION_ENTRY:
6e911cad 1601 case LTTNG_EVENT_TRACEPOINT:
00a62084
MD
1602 ret = event_kernel_enable_event(kchan, event,
1603 filter_expression, filter);
a969e101
MD
1604 /* We have passed ownership */
1605 filter_expression = NULL;
1606 filter = NULL;
6e911cad
MD
1607 if (ret != LTTNG_OK) {
1608 if (channel_created) {
1609 /* Let's not leak a useless channel. */
1610 kernel_destroy_channel(kchan);
1611 }
1612 goto error;
e5f5db7f 1613 }
6e911cad
MD
1614 break;
1615 case LTTNG_EVENT_SYSCALL:
00a62084
MD
1616 ret = event_kernel_enable_event(kchan, event,
1617 filter_expression, filter);
a969e101
MD
1618 /* We have passed ownership */
1619 filter_expression = NULL;
1620 filter = NULL;
e2b957af
MD
1621 if (ret != LTTNG_OK) {
1622 goto error;
1623 }
6e911cad
MD
1624 break;
1625 default:
1626 ret = LTTNG_ERR_UNK;
2f77fc4b
DG
1627 goto error;
1628 }
1629
1630 kernel_wait_quiescent(kernel_tracer_fd);
1631 break;
1632 }
1633 case LTTNG_DOMAIN_UST:
1634 {
1635 struct ltt_ust_channel *uchan;
1636 struct ltt_ust_session *usess = session->ust_session;
1637
1638 assert(usess);
1639
85076754
MD
1640 /*
1641 * If a non-default channel has been created in the
1642 * session, explicitely require that -c chan_name needs
1643 * to be provided.
1644 */
1645 if (usess->has_non_default_channel && channel_name[0] == '\0') {
1646 ret = LTTNG_ERR_NEED_CHANNEL_NAME;
1647 goto error;
1648 }
1649
2f77fc4b
DG
1650 /* Get channel from global UST domain */
1651 uchan = trace_ust_find_channel_by_name(usess->domain_global.channels,
1652 channel_name);
1653 if (uchan == NULL) {
1654 /* Create default channel */
0a9c6494
DG
1655 attr = channel_new_default_attr(LTTNG_DOMAIN_UST,
1656 usess->buffer_type);
2f77fc4b 1657 if (attr == NULL) {
f73fabfd 1658 ret = LTTNG_ERR_FATAL;
2f77fc4b
DG
1659 goto error;
1660 }
1661 strncpy(attr->name, channel_name, sizeof(attr->name));
1662
1663 ret = cmd_enable_channel(session, domain, attr, wpipe);
f73fabfd 1664 if (ret != LTTNG_OK) {
2f77fc4b
DG
1665 free(attr);
1666 goto error;
1667 }
1668 free(attr);
1669
1670 /* Get the newly created channel reference back */
1671 uchan = trace_ust_find_channel_by_name(
1672 usess->domain_global.channels, channel_name);
1673 assert(uchan);
1674 }
1675
9ab6d7ea
JG
1676 if (uchan->domain != LTTNG_DOMAIN_UST && !internal_event) {
1677 /*
1678 * Don't allow users to add UST events to channels which
1679 * are assigned to a userspace subdomain (JUL, Log4J,
1680 * Python, etc.).
1681 */
1682 ret = LTTNG_ERR_INVALID_CHANNEL_DOMAIN;
1683 goto error;
1684 }
1685
c8100299
JG
1686 if (!internal_event) {
1687 /*
1688 * Ensure the event name is not reserved for internal
1689 * use.
1690 */
1691 ret = validate_ust_event_name(event->name);
1692 if (ret) {
1693 WARN("Userspace event name %s failed validation.",
1694 event->name ?
1695 event->name : "NULL");
1696 ret = LTTNG_ERR_INVALID_EVENT_NAME;
1697 goto error;
1698 }
1699 }
1700
2f77fc4b 1701 /* At this point, the session and channel exist on the tracer */
6b453b5e 1702 ret = event_ust_enable_tracepoint(usess, uchan, event,
9732459c
JG
1703 filter_expression, filter, exclusion,
1704 internal_event);
49d21f93
MD
1705 /* We have passed ownership */
1706 filter_expression = NULL;
1707 filter = NULL;
1708 exclusion = NULL;
f73fabfd 1709 if (ret != LTTNG_OK) {
2f77fc4b
DG
1710 goto error;
1711 }
1712 break;
1713 }
5cdb6027 1714 case LTTNG_DOMAIN_LOG4J:
f20baf8e 1715 case LTTNG_DOMAIN_JUL:
0e115563 1716 case LTTNG_DOMAIN_PYTHON:
f20baf8e 1717 {
da6c3a50 1718 const char *default_event_name, *default_chan_name;
fefd409b 1719 struct agent *agt;
f20baf8e
DG
1720 struct lttng_event uevent;
1721 struct lttng_domain tmp_dom;
1722 struct ltt_ust_session *usess = session->ust_session;
1723
1724 assert(usess);
1725
5cdb6027 1726 agt = trace_ust_find_agent(usess, domain->type);
fefd409b 1727 if (!agt) {
5cdb6027 1728 agt = agent_create(domain->type);
fefd409b 1729 if (!agt) {
948f8adb 1730 ret = LTTNG_ERR_NOMEM;
fefd409b
DG
1731 goto error;
1732 }
1733 agent_add(agt, usess->agents);
1734 }
1735
022d91ba 1736 /* Create the default tracepoint. */
996de3c7 1737 memset(&uevent, 0, sizeof(uevent));
f20baf8e
DG
1738 uevent.type = LTTNG_EVENT_TRACEPOINT;
1739 uevent.loglevel_type = LTTNG_EVENT_LOGLEVEL_ALL;
0a3fca4d
JG
1740 default_event_name = event_get_default_agent_ust_name(
1741 domain->type);
da6c3a50 1742 if (!default_event_name) {
948f8adb 1743 ret = LTTNG_ERR_FATAL;
da6c3a50 1744 goto error;
f43f95a9 1745 }
da6c3a50 1746 strncpy(uevent.name, default_event_name, sizeof(uevent.name));
f20baf8e
DG
1747 uevent.name[sizeof(uevent.name) - 1] = '\0';
1748
1749 /*
1750 * The domain type is changed because we are about to enable the
1751 * default channel and event for the JUL domain that are hardcoded.
1752 * This happens in the UST domain.
1753 */
1754 memcpy(&tmp_dom, domain, sizeof(tmp_dom));
1755 tmp_dom.type = LTTNG_DOMAIN_UST;
1756
0e115563
DG
1757 switch (domain->type) {
1758 case LTTNG_DOMAIN_LOG4J:
da6c3a50 1759 default_chan_name = DEFAULT_LOG4J_CHANNEL_NAME;
0e115563
DG
1760 break;
1761 case LTTNG_DOMAIN_JUL:
da6c3a50 1762 default_chan_name = DEFAULT_JUL_CHANNEL_NAME;
0e115563
DG
1763 break;
1764 case LTTNG_DOMAIN_PYTHON:
1765 default_chan_name = DEFAULT_PYTHON_CHANNEL_NAME;
1766 break;
1767 default:
1768 /* The switch/case we are in should avoid this else big problem */
1769 assert(0);
da6c3a50
DG
1770 }
1771
971da06a 1772 {
d75bffee 1773 char *filter_expression_copy = NULL;
0a3fca4d 1774 struct lttng_filter_bytecode *filter_copy = NULL;
971da06a
JG
1775
1776 if (filter) {
0a3fca4d
JG
1777 const size_t filter_size = sizeof(
1778 struct lttng_filter_bytecode)
1779 + filter->len;
1780
1781 filter_copy = zmalloc(filter_size);
971da06a 1782 if (!filter_copy) {
a745883a 1783 ret = LTTNG_ERR_NOMEM;
971da06a 1784 }
0a3fca4d 1785 memcpy(filter_copy, filter, filter_size);
971da06a 1786
d75bffee
JG
1787 filter_expression_copy =
1788 strdup(filter_expression);
1789 if (!filter_expression) {
1790 ret = LTTNG_ERR_NOMEM;
0a3fca4d
JG
1791 }
1792
1793 if (!filter_expression_copy || !filter_copy) {
1794 free(filter_expression_copy);
1795 free(filter_copy);
1796 goto error;
d75bffee 1797 }
971da06a
JG
1798 }
1799
9732459c 1800 ret = cmd_enable_event_internal(session, &tmp_dom,
971da06a 1801 (char *) default_chan_name,
d75bffee
JG
1802 &uevent, filter_expression_copy,
1803 filter_copy, NULL, wpipe);
971da06a
JG
1804 }
1805
f20baf8e
DG
1806 if (ret != LTTNG_OK && ret != LTTNG_ERR_UST_EVENT_ENABLED) {
1807 goto error;
1808 }
1809
1810 /* The wild card * means that everything should be enabled. */
1811 if (strncmp(event->name, "*", 1) == 0 && strlen(event->name) == 1) {
d75bffee
JG
1812 ret = event_agent_enable_all(usess, agt, event, filter,
1813 filter_expression);
f20baf8e 1814 } else {
d75bffee
JG
1815 ret = event_agent_enable(usess, agt, event, filter,
1816 filter_expression);
f20baf8e 1817 }
0a3fca4d
JG
1818 filter = NULL;
1819 filter_expression = NULL;
f20baf8e
DG
1820 if (ret != LTTNG_OK) {
1821 goto error;
1822 }
1823
1824 break;
1825 }
2f77fc4b 1826 default:
f73fabfd 1827 ret = LTTNG_ERR_UND;
2f77fc4b
DG
1828 goto error;
1829 }
1830
f73fabfd 1831 ret = LTTNG_OK;
2f77fc4b
DG
1832
1833error:
49d21f93
MD
1834 free(filter_expression);
1835 free(filter);
1836 free(exclusion);
2223c96f 1837 rcu_read_unlock();
2f77fc4b
DG
1838 return ret;
1839}
1840
9732459c
JG
1841/*
1842 * Command LTTNG_ENABLE_EVENT processed by the client thread.
1843 * We own filter, exclusion, and filter_expression.
1844 */
1845int cmd_enable_event(struct ltt_session *session, struct lttng_domain *domain,
1846 char *channel_name, struct lttng_event *event,
1847 char *filter_expression,
1848 struct lttng_filter_bytecode *filter,
1849 struct lttng_event_exclusion *exclusion,
1850 int wpipe)
1851{
1852 return _cmd_enable_event(session, domain, channel_name, event,
1853 filter_expression, filter, exclusion, wpipe, false);
1854}
1855
1856/*
1857 * Enable an event which is internal to LTTng. An internal should
1858 * never be made visible to clients and are immune to checks such as
1859 * reserved names.
1860 */
1861static int cmd_enable_event_internal(struct ltt_session *session,
1862 struct lttng_domain *domain,
1863 char *channel_name, struct lttng_event *event,
1864 char *filter_expression,
1865 struct lttng_filter_bytecode *filter,
1866 struct lttng_event_exclusion *exclusion,
1867 int wpipe)
1868{
1869 return _cmd_enable_event(session, domain, channel_name, event,
1870 filter_expression, filter, exclusion, wpipe, true);
1871}
1872
2f77fc4b
DG
1873/*
1874 * Command LTTNG_LIST_TRACEPOINTS processed by the client thread.
1875 */
1876ssize_t cmd_list_tracepoints(int domain, struct lttng_event **events)
1877{
1878 int ret;
1879 ssize_t nb_events = 0;
1880
1881 switch (domain) {
1882 case LTTNG_DOMAIN_KERNEL:
1883 nb_events = kernel_list_events(kernel_tracer_fd, events);
1884 if (nb_events < 0) {
f73fabfd 1885 ret = LTTNG_ERR_KERN_LIST_FAIL;
2f77fc4b
DG
1886 goto error;
1887 }
1888 break;
1889 case LTTNG_DOMAIN_UST:
1890 nb_events = ust_app_list_events(events);
1891 if (nb_events < 0) {
f73fabfd 1892 ret = LTTNG_ERR_UST_LIST_FAIL;
2f77fc4b
DG
1893 goto error;
1894 }
1895 break;
5cdb6027 1896 case LTTNG_DOMAIN_LOG4J:
3c6a091f 1897 case LTTNG_DOMAIN_JUL:
0e115563 1898 case LTTNG_DOMAIN_PYTHON:
f60140a1 1899 nb_events = agent_list_events(events, domain);
3c6a091f
DG
1900 if (nb_events < 0) {
1901 ret = LTTNG_ERR_UST_LIST_FAIL;
1902 goto error;
1903 }
1904 break;
2f77fc4b 1905 default:
f73fabfd 1906 ret = LTTNG_ERR_UND;
2f77fc4b
DG
1907 goto error;
1908 }
1909
1910 return nb_events;
1911
1912error:
1913 /* Return negative value to differentiate return code */
1914 return -ret;
1915}
1916
1917/*
1918 * Command LTTNG_LIST_TRACEPOINT_FIELDS processed by the client thread.
1919 */
1920ssize_t cmd_list_tracepoint_fields(int domain,
1921 struct lttng_event_field **fields)
1922{
1923 int ret;
1924 ssize_t nb_fields = 0;
1925
1926 switch (domain) {
1927 case LTTNG_DOMAIN_UST:
1928 nb_fields = ust_app_list_event_fields(fields);
1929 if (nb_fields < 0) {
f73fabfd 1930 ret = LTTNG_ERR_UST_LIST_FAIL;
2f77fc4b
DG
1931 goto error;
1932 }
1933 break;
1934 case LTTNG_DOMAIN_KERNEL:
1935 default: /* fall-through */
f73fabfd 1936 ret = LTTNG_ERR_UND;
2f77fc4b
DG
1937 goto error;
1938 }
1939
1940 return nb_fields;
1941
1942error:
1943 /* Return negative value to differentiate return code */
1944 return -ret;
1945}
1946
834978fd
DG
1947ssize_t cmd_list_syscalls(struct lttng_event **events)
1948{
1949 return syscall_table_list(events);
1950}
1951
a5dfbb9d
MD
1952/*
1953 * Command LTTNG_LIST_TRACKER_PIDS processed by the client thread.
1954 *
1955 * Called with session lock held.
1956 */
1957ssize_t cmd_list_tracker_pids(struct ltt_session *session,
1958 int domain, int32_t **pids)
1959{
1960 int ret;
1961 ssize_t nr_pids = 0;
1962
1963 switch (domain) {
1964 case LTTNG_DOMAIN_KERNEL:
1965 {
1966 struct ltt_kernel_session *ksess;
1967
1968 ksess = session->kernel_session;
1969 nr_pids = kernel_list_tracker_pids(ksess, pids);
1970 if (nr_pids < 0) {
1971 ret = LTTNG_ERR_KERN_LIST_FAIL;
1972 goto error;
1973 }
1974 break;
1975 }
1976 case LTTNG_DOMAIN_UST:
1977 {
1978 struct ltt_ust_session *usess;
1979
1980 usess = session->ust_session;
1981 nr_pids = trace_ust_list_tracker_pids(usess, pids);
1982 if (nr_pids < 0) {
1983 ret = LTTNG_ERR_UST_LIST_FAIL;
1984 goto error;
1985 }
1986 break;
1987 }
1988 case LTTNG_DOMAIN_LOG4J:
1989 case LTTNG_DOMAIN_JUL:
1990 case LTTNG_DOMAIN_PYTHON:
1991 default:
1992 ret = LTTNG_ERR_UND;
1993 goto error;
1994 }
1995
1996 return nr_pids;
1997
1998error:
1999 /* Return negative value to differentiate return code */
2000 return -ret;
2001}
2002
2f77fc4b
DG
2003/*
2004 * Command LTTNG_START_TRACE processed by the client thread.
a9ad0c8f
MD
2005 *
2006 * Called with session mutex held.
2f77fc4b
DG
2007 */
2008int cmd_start_trace(struct ltt_session *session)
2009{
2010 int ret;
cde3e505 2011 unsigned long nb_chan = 0;
2f77fc4b
DG
2012 struct ltt_kernel_session *ksession;
2013 struct ltt_ust_session *usess;
2f77fc4b
DG
2014
2015 assert(session);
2016
2017 /* Ease our life a bit ;) */
2018 ksession = session->kernel_session;
2019 usess = session->ust_session;
2020
8382cf6f
DG
2021 /* Is the session already started? */
2022 if (session->active) {
f73fabfd 2023 ret = LTTNG_ERR_TRACE_ALREADY_STARTED;
2f77fc4b
DG
2024 goto error;
2025 }
2026
cde3e505
DG
2027 /*
2028 * Starting a session without channel is useless since after that it's not
2029 * possible to enable channel thus inform the client.
2030 */
2031 if (usess && usess->domain_global.channels) {
a9e41044 2032 rcu_read_lock();
cde3e505 2033 nb_chan += lttng_ht_get_count(usess->domain_global.channels);
a9e41044 2034 rcu_read_unlock();
cde3e505
DG
2035 }
2036 if (ksession) {
2037 nb_chan += ksession->channel_count;
2038 }
2039 if (!nb_chan) {
2040 ret = LTTNG_ERR_NO_CHANNEL;
2041 goto error;
2042 }
2043
2f77fc4b
DG
2044 /* Kernel tracing */
2045 if (ksession != NULL) {
9b6c7ec5
DG
2046 ret = start_kernel_session(ksession, kernel_tracer_fd);
2047 if (ret != LTTNG_OK) {
2f77fc4b
DG
2048 goto error;
2049 }
2f77fc4b
DG
2050 }
2051
2052 /* Flag session that trace should start automatically */
2053 if (usess) {
14fb1ebe
DG
2054 /*
2055 * Even though the start trace might fail, flag this session active so
2056 * other application coming in are started by default.
2057 */
2058 usess->active = 1;
2f77fc4b
DG
2059
2060 ret = ust_app_start_trace_all(usess);
2061 if (ret < 0) {
f73fabfd 2062 ret = LTTNG_ERR_UST_START_FAIL;
2f77fc4b
DG
2063 goto error;
2064 }
2065 }
2066
8382cf6f
DG
2067 /* Flag this after a successful start. */
2068 session->has_been_started = 1;
2069 session->active = 1;
9b6c7ec5 2070
f73fabfd 2071 ret = LTTNG_OK;
2f77fc4b
DG
2072
2073error:
2074 return ret;
2075}
2076
2077/*
2078 * Command LTTNG_STOP_TRACE processed by the client thread.
2079 */
2080int cmd_stop_trace(struct ltt_session *session)
2081{
2082 int ret;
2083 struct ltt_kernel_channel *kchan;
2084 struct ltt_kernel_session *ksession;
2085 struct ltt_ust_session *usess;
2086
2087 assert(session);
2088
2089 /* Short cut */
2090 ksession = session->kernel_session;
2091 usess = session->ust_session;
2092
8382cf6f
DG
2093 /* Session is not active. Skip everythong and inform the client. */
2094 if (!session->active) {
f73fabfd 2095 ret = LTTNG_ERR_TRACE_ALREADY_STOPPED;
2f77fc4b
DG
2096 goto error;
2097 }
2098
2f77fc4b 2099 /* Kernel tracer */
14fb1ebe 2100 if (ksession && ksession->active) {
2f77fc4b
DG
2101 DBG("Stop kernel tracing");
2102
2103 /* Flush metadata if exist */
2104 if (ksession->metadata_stream_fd >= 0) {
2105 ret = kernel_metadata_flush_buffer(ksession->metadata_stream_fd);
2106 if (ret < 0) {
2107 ERR("Kernel metadata flush failed");
2108 }
2109 }
2110
2111 /* Flush all buffers before stopping */
2112 cds_list_for_each_entry(kchan, &ksession->channel_list.head, list) {
2113 ret = kernel_flush_buffer(kchan);
2114 if (ret < 0) {
2115 ERR("Kernel flush buffer error");
2116 }
2117 }
2118
2119 ret = kernel_stop_session(ksession);
2120 if (ret < 0) {
f73fabfd 2121 ret = LTTNG_ERR_KERN_STOP_FAIL;
2f77fc4b
DG
2122 goto error;
2123 }
2124
2125 kernel_wait_quiescent(kernel_tracer_fd);
9b6c7ec5 2126
14fb1ebe 2127 ksession->active = 0;
2f77fc4b
DG
2128 }
2129
14fb1ebe
DG
2130 if (usess && usess->active) {
2131 /*
2132 * Even though the stop trace might fail, flag this session inactive so
2133 * other application coming in are not started by default.
2134 */
2135 usess->active = 0;
2f77fc4b
DG
2136
2137 ret = ust_app_stop_trace_all(usess);
2138 if (ret < 0) {
f73fabfd 2139 ret = LTTNG_ERR_UST_STOP_FAIL;
2f77fc4b
DG
2140 goto error;
2141 }
2142 }
2143
8382cf6f
DG
2144 /* Flag inactive after a successful stop. */
2145 session->active = 0;
f73fabfd 2146 ret = LTTNG_OK;
2f77fc4b
DG
2147
2148error:
2149 return ret;
2150}
2151
2152/*
2153 * Command LTTNG_SET_CONSUMER_URI processed by the client thread.
2154 */
bda32d56
JG
2155int cmd_set_consumer_uri(struct ltt_session *session, size_t nb_uri,
2156 struct lttng_uri *uris)
2f77fc4b
DG
2157{
2158 int ret, i;
2159 struct ltt_kernel_session *ksess = session->kernel_session;
2160 struct ltt_ust_session *usess = session->ust_session;
2f77fc4b
DG
2161
2162 assert(session);
2163 assert(uris);
2164 assert(nb_uri > 0);
2165
8382cf6f
DG
2166 /* Can't set consumer URI if the session is active. */
2167 if (session->active) {
f73fabfd 2168 ret = LTTNG_ERR_TRACE_ALREADY_STARTED;
2f77fc4b
DG
2169 goto error;
2170 }
2171
bda32d56 2172 /* Set the "global" consumer URIs */
2f77fc4b 2173 for (i = 0; i < nb_uri; i++) {
bda32d56
JG
2174 ret = add_uri_to_consumer(session->consumer,
2175 &uris[i], 0, session->name);
a74934ba 2176 if (ret != LTTNG_OK) {
2f77fc4b
DG
2177 goto error;
2178 }
2f77fc4b
DG
2179 }
2180
bda32d56
JG
2181 /* Set UST session URIs */
2182 if (session->ust_session) {
2183 for (i = 0; i < nb_uri; i++) {
2184 ret = add_uri_to_consumer(
2185 session->ust_session->consumer,
2186 &uris[i], LTTNG_DOMAIN_UST,
2187 session->name);
2188 if (ret != LTTNG_OK) {
2189 goto error;
2190 }
2191 }
2192 }
2193
2194 /* Set kernel session URIs */
2195 if (session->kernel_session) {
2196 for (i = 0; i < nb_uri; i++) {
2197 ret = add_uri_to_consumer(
2198 session->kernel_session->consumer,
2199 &uris[i], LTTNG_DOMAIN_KERNEL,
2200 session->name);
2201 if (ret != LTTNG_OK) {
2202 goto error;
2203 }
2204 }
2205 }
2206
7ab70fe0
DG
2207 /*
2208 * Make sure to set the session in output mode after we set URI since a
2209 * session can be created without URL (thus flagged in no output mode).
2210 */
2211 session->output_traces = 1;
2212 if (ksess) {
2213 ksess->output_traces = 1;
bda32d56
JG
2214 }
2215
2216 if (usess) {
7ab70fe0
DG
2217 usess->output_traces = 1;
2218 }
2219
2f77fc4b 2220 /* All good! */
f73fabfd 2221 ret = LTTNG_OK;
2f77fc4b
DG
2222
2223error:
2224 return ret;
2225}
2226
2227/*
2228 * Command LTTNG_CREATE_SESSION processed by the client thread.
2229 */
2230int cmd_create_session_uri(char *name, struct lttng_uri *uris,
ecc48a90 2231 size_t nb_uri, lttng_sock_cred *creds, unsigned int live_timer)
2f77fc4b
DG
2232{
2233 int ret;
2f77fc4b
DG
2234 struct ltt_session *session;
2235
2236 assert(name);
2bba9e53 2237 assert(creds);
785d2d0d 2238
2f77fc4b
DG
2239 /*
2240 * Verify if the session already exist
2241 *
2242 * XXX: There is no need for the session lock list here since the caller
2243 * (process_client_msg) is holding it. We might want to change that so a
2244 * single command does not lock the entire session list.
2245 */
2246 session = session_find_by_name(name);
2247 if (session != NULL) {
f73fabfd 2248 ret = LTTNG_ERR_EXIST_SESS;
2f77fc4b
DG
2249 goto find_error;
2250 }
2251
2252 /* Create tracing session in the registry */
dec56f6c 2253 ret = session_create(name, LTTNG_SOCK_GET_UID_CRED(creds),
2f77fc4b 2254 LTTNG_SOCK_GET_GID_CRED(creds));
f73fabfd 2255 if (ret != LTTNG_OK) {
2f77fc4b
DG
2256 goto session_error;
2257 }
2258
2259 /*
2260 * Get the newly created session pointer back
2261 *
2262 * XXX: There is no need for the session lock list here since the caller
2263 * (process_client_msg) is holding it. We might want to change that so a
2264 * single command does not lock the entire session list.
2265 */
2266 session = session_find_by_name(name);
2267 assert(session);
2268
ecc48a90 2269 session->live_timer = live_timer;
2f77fc4b
DG
2270 /* Create default consumer output for the session not yet created. */
2271 session->consumer = consumer_create_output(CONSUMER_DST_LOCAL);
2272 if (session->consumer == NULL) {
f73fabfd 2273 ret = LTTNG_ERR_FATAL;
2f77fc4b
DG
2274 goto consumer_error;
2275 }
2276
2bba9e53 2277 if (uris) {
bda32d56 2278 ret = cmd_set_consumer_uri(session, nb_uri, uris);
2bba9e53
DG
2279 if (ret != LTTNG_OK) {
2280 goto consumer_error;
2281 }
2282 session->output_traces = 1;
2283 } else {
2284 session->output_traces = 0;
2285 DBG2("Session %s created with no output", session->name);
2f77fc4b
DG
2286 }
2287
2288 session->consumer->enabled = 1;
2289
f73fabfd 2290 return LTTNG_OK;
2f77fc4b
DG
2291
2292consumer_error:
2293 session_destroy(session);
2294session_error:
2295find_error:
2296 return ret;
2297}
2298
27babd3a
DG
2299/*
2300 * Command LTTNG_CREATE_SESSION_SNAPSHOT processed by the client thread.
2301 */
2302int cmd_create_session_snapshot(char *name, struct lttng_uri *uris,
2303 size_t nb_uri, lttng_sock_cred *creds)
2304{
2305 int ret;
2306 struct ltt_session *session;
2307 struct snapshot_output *new_output = NULL;
2308
2309 assert(name);
2310 assert(creds);
2311
2312 /*
2313 * Create session in no output mode with URIs set to NULL. The uris we've
2314 * received are for a default snapshot output if one.
2315 */
ecc48a90 2316 ret = cmd_create_session_uri(name, NULL, 0, creds, -1);
27babd3a
DG
2317 if (ret != LTTNG_OK) {
2318 goto error;
2319 }
2320
2321 /* Get the newly created session pointer back. This should NEVER fail. */
2322 session = session_find_by_name(name);
2323 assert(session);
2324
2325 /* Flag session for snapshot mode. */
2326 session->snapshot_mode = 1;
2327
2328 /* Skip snapshot output creation if no URI is given. */
2329 if (nb_uri == 0) {
2330 goto end;
2331 }
2332
2333 new_output = snapshot_output_alloc();
2334 if (!new_output) {
2335 ret = LTTNG_ERR_NOMEM;
2336 goto error_snapshot_alloc;
2337 }
2338
2339 ret = snapshot_output_init_with_uri(DEFAULT_SNAPSHOT_MAX_SIZE, NULL,
2340 uris, nb_uri, session->consumer, new_output, &session->snapshot);
2341 if (ret < 0) {
2342 if (ret == -ENOMEM) {
2343 ret = LTTNG_ERR_NOMEM;
2344 } else {
2345 ret = LTTNG_ERR_INVALID;
2346 }
2347 goto error_snapshot;
2348 }
2349
2350 rcu_read_lock();
2351 snapshot_add_output(&session->snapshot, new_output);
2352 rcu_read_unlock();
2353
2354end:
2355 return LTTNG_OK;
2356
2357error_snapshot:
2358 snapshot_output_destroy(new_output);
2359error_snapshot_alloc:
2360 session_destroy(session);
2361error:
2362 return ret;
2363}
2364
2f77fc4b
DG
2365/*
2366 * Command LTTNG_DESTROY_SESSION processed by the client thread.
a9ad0c8f
MD
2367 *
2368 * Called with session lock held.
2f77fc4b
DG
2369 */
2370int cmd_destroy_session(struct ltt_session *session, int wpipe)
2371{
2372 int ret;
2373 struct ltt_ust_session *usess;
2374 struct ltt_kernel_session *ksess;
2375
2376 /* Safety net */
2377 assert(session);
2378
2379 usess = session->ust_session;
2380 ksess = session->kernel_session;
2381
2382 /* Clean kernel session teardown */
2383 kernel_destroy_session(ksess);
2384
2385 /* UST session teardown */
2386 if (usess) {
2387 /* Close any relayd session */
2388 consumer_output_send_destroy_relayd(usess->consumer);
2389
2390 /* Destroy every UST application related to this session. */
2391 ret = ust_app_destroy_trace_all(usess);
2392 if (ret) {
2393 ERR("Error in ust_app_destroy_trace_all");
2394 }
2395
2396 /* Clean up the rest. */
2397 trace_ust_destroy_session(usess);
2398 }
2399
2400 /*
2401 * Must notify the kernel thread here to update it's poll set in order to
2402 * remove the channel(s)' fd just destroyed.
2403 */
2404 ret = notify_thread_pipe(wpipe);
2405 if (ret < 0) {
2406 PERROR("write kernel poll pipe");
2407 }
2408
2409 ret = session_destroy(session);
2410
2411 return ret;
2412}
2413
2414/*
2415 * Command LTTNG_CALIBRATE processed by the client thread.
2416 */
2417int cmd_calibrate(int domain, struct lttng_calibrate *calibrate)
2418{
2419 int ret;
2420
2421 switch (domain) {
2422 case LTTNG_DOMAIN_KERNEL:
2423 {
2424 struct lttng_kernel_calibrate kcalibrate;
2425
2e84128e
DG
2426 switch (calibrate->type) {
2427 case LTTNG_CALIBRATE_FUNCTION:
2428 default:
2429 /* Default and only possible calibrate option. */
2430 kcalibrate.type = LTTNG_KERNEL_CALIBRATE_KRETPROBE;
2431 break;
2432 }
2433
2f77fc4b
DG
2434 ret = kernel_calibrate(kernel_tracer_fd, &kcalibrate);
2435 if (ret < 0) {
f73fabfd 2436 ret = LTTNG_ERR_KERN_ENABLE_FAIL;
2f77fc4b
DG
2437 goto error;
2438 }
2439 break;
2440 }
2441 case LTTNG_DOMAIN_UST:
2442 {
2443 struct lttng_ust_calibrate ucalibrate;
2444
2e84128e
DG
2445 switch (calibrate->type) {
2446 case LTTNG_CALIBRATE_FUNCTION:
2447 default:
2448 /* Default and only possible calibrate option. */
2449 ucalibrate.type = LTTNG_UST_CALIBRATE_TRACEPOINT;
2450 break;
2451 }
2452
2f77fc4b
DG
2453 ret = ust_app_calibrate_glb(&ucalibrate);
2454 if (ret < 0) {
f73fabfd 2455 ret = LTTNG_ERR_UST_CALIBRATE_FAIL;
2f77fc4b
DG
2456 goto error;
2457 }
2458 break;
2459 }
2460 default:
f73fabfd 2461 ret = LTTNG_ERR_UND;
2f77fc4b
DG
2462 goto error;
2463 }
2464
f73fabfd 2465 ret = LTTNG_OK;
2f77fc4b
DG
2466
2467error:
2468 return ret;
2469}
2470
2471/*
2472 * Command LTTNG_REGISTER_CONSUMER processed by the client thread.
2473 */
2474int cmd_register_consumer(struct ltt_session *session, int domain,
2475 const char *sock_path, struct consumer_data *cdata)
2476{
2477 int ret, sock;
dd81b457 2478 struct consumer_socket *socket = NULL;
2f77fc4b
DG
2479
2480 assert(session);
2481 assert(cdata);
2482 assert(sock_path);
2483
2484 switch (domain) {
2485 case LTTNG_DOMAIN_KERNEL:
2486 {
2487 struct ltt_kernel_session *ksess = session->kernel_session;
2488
2489 assert(ksess);
2490
2491 /* Can't register a consumer if there is already one */
2492 if (ksess->consumer_fds_sent != 0) {
f73fabfd 2493 ret = LTTNG_ERR_KERN_CONSUMER_FAIL;
2f77fc4b
DG
2494 goto error;
2495 }
2496
2497 sock = lttcomm_connect_unix_sock(sock_path);
2498 if (sock < 0) {
f73fabfd 2499 ret = LTTNG_ERR_CONNECT_FAIL;
2f77fc4b
DG
2500 goto error;
2501 }
4ce514c4 2502 cdata->cmd_sock = sock;
2f77fc4b 2503
4ce514c4 2504 socket = consumer_allocate_socket(&cdata->cmd_sock);
2f77fc4b 2505 if (socket == NULL) {
f66c074c
DG
2506 ret = close(sock);
2507 if (ret < 0) {
2508 PERROR("close register consumer");
2509 }
4ce514c4 2510 cdata->cmd_sock = -1;
f73fabfd 2511 ret = LTTNG_ERR_FATAL;
2f77fc4b
DG
2512 goto error;
2513 }
2514
2515 socket->lock = zmalloc(sizeof(pthread_mutex_t));
2516 if (socket->lock == NULL) {
2517 PERROR("zmalloc pthread mutex");
f73fabfd 2518 ret = LTTNG_ERR_FATAL;
2f77fc4b
DG
2519 goto error;
2520 }
2521 pthread_mutex_init(socket->lock, NULL);
2522 socket->registered = 1;
2523
2524 rcu_read_lock();
2525 consumer_add_socket(socket, ksess->consumer);
2526 rcu_read_unlock();
2527
2528 pthread_mutex_lock(&cdata->pid_mutex);
2529 cdata->pid = -1;
2530 pthread_mutex_unlock(&cdata->pid_mutex);
2531
2532 break;
2533 }
2534 default:
2535 /* TODO: Userspace tracing */
f73fabfd 2536 ret = LTTNG_ERR_UND;
2f77fc4b
DG
2537 goto error;
2538 }
2539
dd81b457 2540 return LTTNG_OK;
2f77fc4b
DG
2541
2542error:
dd81b457
DG
2543 if (socket) {
2544 consumer_destroy_socket(socket);
2545 }
2f77fc4b
DG
2546 return ret;
2547}
2548
2549/*
2550 * Command LTTNG_LIST_DOMAINS processed by the client thread.
2551 */
2552ssize_t cmd_list_domains(struct ltt_session *session,
2553 struct lttng_domain **domains)
2554{
2555 int ret, index = 0;
2556 ssize_t nb_dom = 0;
fefd409b
DG
2557 struct agent *agt;
2558 struct lttng_ht_iter iter;
2f77fc4b
DG
2559
2560 if (session->kernel_session != NULL) {
2561 DBG3("Listing domains found kernel domain");
2562 nb_dom++;
2563 }
2564
2565 if (session->ust_session != NULL) {
2566 DBG3("Listing domains found UST global domain");
2567 nb_dom++;
3c6a091f 2568
e0a74f01 2569 rcu_read_lock();
fefd409b
DG
2570 cds_lfht_for_each_entry(session->ust_session->agents->ht, &iter.iter,
2571 agt, node.node) {
2572 if (agt->being_used) {
2573 nb_dom++;
2574 }
3c6a091f 2575 }
e0a74f01 2576 rcu_read_unlock();
2f77fc4b
DG
2577 }
2578
fa64dfb4
JG
2579 if (!nb_dom) {
2580 goto end;
2581 }
2582
2f77fc4b
DG
2583 *domains = zmalloc(nb_dom * sizeof(struct lttng_domain));
2584 if (*domains == NULL) {
f73fabfd 2585 ret = LTTNG_ERR_FATAL;
2f77fc4b
DG
2586 goto error;
2587 }
2588
2589 if (session->kernel_session != NULL) {
2590 (*domains)[index].type = LTTNG_DOMAIN_KERNEL;
bd3381e3
PP
2591
2592 /* Kernel session buffer type is always GLOBAL */
2593 (*domains)[index].buf_type = LTTNG_BUFFER_GLOBAL;
2594
2f77fc4b
DG
2595 index++;
2596 }
2597
2598 if (session->ust_session != NULL) {
2599 (*domains)[index].type = LTTNG_DOMAIN_UST;
88c5f0d8 2600 (*domains)[index].buf_type = session->ust_session->buffer_type;
2f77fc4b 2601 index++;
3c6a091f 2602
e0a74f01 2603 rcu_read_lock();
fefd409b
DG
2604 cds_lfht_for_each_entry(session->ust_session->agents->ht, &iter.iter,
2605 agt, node.node) {
2606 if (agt->being_used) {
2607 (*domains)[index].type = agt->domain;
2608 (*domains)[index].buf_type = session->ust_session->buffer_type;
2609 index++;
2610 }
3c6a091f 2611 }
e0a74f01 2612 rcu_read_unlock();
2f77fc4b 2613 }
fa64dfb4 2614end:
2f77fc4b
DG
2615 return nb_dom;
2616
2617error:
f73fabfd
DG
2618 /* Return negative value to differentiate return code */
2619 return -ret;
2f77fc4b
DG
2620}
2621
2622
2623/*
2624 * Command LTTNG_LIST_CHANNELS processed by the client thread.
2625 */
2626ssize_t cmd_list_channels(int domain, struct ltt_session *session,
2627 struct lttng_channel **channels)
2628{
2629 int ret;
2630 ssize_t nb_chan = 0;
2631
2632 switch (domain) {
2633 case LTTNG_DOMAIN_KERNEL:
2634 if (session->kernel_session != NULL) {
2635 nb_chan = session->kernel_session->channel_count;
2636 }
2637 DBG3("Number of kernel channels %zd", nb_chan);
c7d620a2
DG
2638 if (nb_chan <= 0) {
2639 ret = LTTNG_ERR_KERN_CHAN_NOT_FOUND;
2640 }
2f77fc4b
DG
2641 break;
2642 case LTTNG_DOMAIN_UST:
2643 if (session->ust_session != NULL) {
7ffc31a2 2644 rcu_read_lock();
2f77fc4b 2645 nb_chan = lttng_ht_get_count(
7ffc31a2
JG
2646 session->ust_session->domain_global.channels);
2647 rcu_read_unlock();
2f77fc4b
DG
2648 }
2649 DBG3("Number of UST global channels %zd", nb_chan);
ade7ce52 2650 if (nb_chan < 0) {
c7d620a2 2651 ret = LTTNG_ERR_UST_CHAN_NOT_FOUND;
ade7ce52 2652 goto error;
c7d620a2 2653 }
2f77fc4b
DG
2654 break;
2655 default:
f73fabfd 2656 ret = LTTNG_ERR_UND;
2f77fc4b
DG
2657 goto error;
2658 }
2659
2660 if (nb_chan > 0) {
2661 *channels = zmalloc(nb_chan * sizeof(struct lttng_channel));
2662 if (*channels == NULL) {
f73fabfd 2663 ret = LTTNG_ERR_FATAL;
2f77fc4b
DG
2664 goto error;
2665 }
2666
2667 list_lttng_channels(domain, session, *channels);
2f77fc4b
DG
2668 }
2669
2670 return nb_chan;
2671
2672error:
f73fabfd
DG
2673 /* Return negative value to differentiate return code */
2674 return -ret;
2f77fc4b
DG
2675}
2676
2677/*
2678 * Command LTTNG_LIST_EVENTS processed by the client thread.
2679 */
2680ssize_t cmd_list_events(int domain, struct ltt_session *session,
2681 char *channel_name, struct lttng_event **events)
2682{
2683 int ret = 0;
2684 ssize_t nb_event = 0;
2685
2686 switch (domain) {
2687 case LTTNG_DOMAIN_KERNEL:
2688 if (session->kernel_session != NULL) {
2689 nb_event = list_lttng_kernel_events(channel_name,
2690 session->kernel_session, events);
2691 }
2692 break;
2693 case LTTNG_DOMAIN_UST:
2694 {
2695 if (session->ust_session != NULL) {
2696 nb_event = list_lttng_ust_global_events(channel_name,
2697 &session->ust_session->domain_global, events);
2698 }
2699 break;
2700 }
5cdb6027 2701 case LTTNG_DOMAIN_LOG4J:
3c6a091f 2702 case LTTNG_DOMAIN_JUL:
0e115563 2703 case LTTNG_DOMAIN_PYTHON:
3c6a091f 2704 if (session->ust_session) {
fefd409b
DG
2705 struct lttng_ht_iter iter;
2706 struct agent *agt;
2707
b11feea5 2708 rcu_read_lock();
fefd409b
DG
2709 cds_lfht_for_each_entry(session->ust_session->agents->ht,
2710 &iter.iter, agt, node.node) {
2711 nb_event = list_lttng_agent_events(agt, events);
2712 }
b11feea5 2713 rcu_read_unlock();
3c6a091f
DG
2714 }
2715 break;
2f77fc4b 2716 default:
f73fabfd 2717 ret = LTTNG_ERR_UND;
2f77fc4b
DG
2718 goto error;
2719 }
2720
f73fabfd 2721 return nb_event;
2f77fc4b
DG
2722
2723error:
f73fabfd
DG
2724 /* Return negative value to differentiate return code */
2725 return -ret;
2f77fc4b
DG
2726}
2727
2728/*
2729 * Using the session list, filled a lttng_session array to send back to the
2730 * client for session listing.
2731 *
2732 * The session list lock MUST be acquired before calling this function. Use
2733 * session_lock_list() and session_unlock_list().
2734 */
2735void cmd_list_lttng_sessions(struct lttng_session *sessions, uid_t uid,
2736 gid_t gid)
2737{
2738 int ret;
2739 unsigned int i = 0;
2740 struct ltt_session *session;
2741 struct ltt_session_list *list = session_get_list();
2742
2743 DBG("Getting all available session for UID %d GID %d",
2744 uid, gid);
2745 /*
2746 * Iterate over session list and append data after the control struct in
2747 * the buffer.
2748 */
2749 cds_list_for_each_entry(session, &list->head, list) {
2750 /*
2751 * Only list the sessions the user can control.
2752 */
2753 if (!session_access_ok(session, uid, gid)) {
2754 continue;
2755 }
2756
2757 struct ltt_kernel_session *ksess = session->kernel_session;
2758 struct ltt_ust_session *usess = session->ust_session;
2759
2760 if (session->consumer->type == CONSUMER_DST_NET ||
2761 (ksess && ksess->consumer->type == CONSUMER_DST_NET) ||
2762 (usess && usess->consumer->type == CONSUMER_DST_NET)) {
2763 ret = build_network_session_path(sessions[i].path,
dec56f6c 2764 sizeof(sessions[i].path), session);
2f77fc4b 2765 } else {
dec56f6c 2766 ret = snprintf(sessions[i].path, sizeof(sessions[i].path), "%s",
2f77fc4b
DG
2767 session->consumer->dst.trace_path);
2768 }
2769 if (ret < 0) {
2770 PERROR("snprintf session path");
2771 continue;
2772 }
2773
2774 strncpy(sessions[i].name, session->name, NAME_MAX);
2775 sessions[i].name[NAME_MAX - 1] = '\0';
8382cf6f 2776 sessions[i].enabled = session->active;
2cbf8fed 2777 sessions[i].snapshot_mode = session->snapshot_mode;
8960e9cd 2778 sessions[i].live_timer_interval = session->live_timer;
2f77fc4b
DG
2779 i++;
2780 }
2781}
2782
806e2684 2783/*
6d805429 2784 * Command LTTNG_DATA_PENDING returning 0 if the data is NOT pending meaning
d3f14b8a 2785 * ready for trace analysis (or any kind of reader) or else 1 for pending data.
806e2684 2786 */
6d805429 2787int cmd_data_pending(struct ltt_session *session)
806e2684
DG
2788{
2789 int ret;
2790 struct ltt_kernel_session *ksess = session->kernel_session;
2791 struct ltt_ust_session *usess = session->ust_session;
2792
2793 assert(session);
2794
2795 /* Session MUST be stopped to ask for data availability. */
8382cf6f 2796 if (session->active) {
806e2684
DG
2797 ret = LTTNG_ERR_SESSION_STARTED;
2798 goto error;
3a89d11a
DG
2799 } else {
2800 /*
2801 * If stopped, just make sure we've started before else the above call
2802 * will always send that there is data pending.
2803 *
2804 * The consumer assumes that when the data pending command is received,
2805 * the trace has been started before or else no output data is written
2806 * by the streams which is a condition for data pending. So, this is
2807 * *VERY* important that we don't ask the consumer before a start
2808 * trace.
2809 */
8382cf6f 2810 if (!session->has_been_started) {
3a89d11a
DG
2811 ret = 0;
2812 goto error;
2813 }
806e2684
DG
2814 }
2815
2816 if (ksess && ksess->consumer) {
6d805429
DG
2817 ret = consumer_is_data_pending(ksess->id, ksess->consumer);
2818 if (ret == 1) {
806e2684
DG
2819 /* Data is still being extracted for the kernel. */
2820 goto error;
2821 }
2822 }
2823
2824 if (usess && usess->consumer) {
6d805429
DG
2825 ret = consumer_is_data_pending(usess->id, usess->consumer);
2826 if (ret == 1) {
806e2684
DG
2827 /* Data is still being extracted for the kernel. */
2828 goto error;
2829 }
2830 }
2831
2832 /* Data is ready to be read by a viewer */
6d805429 2833 ret = 0;
806e2684
DG
2834
2835error:
2836 return ret;
2837}
2838
6dc3064a
DG
2839/*
2840 * Command LTTNG_SNAPSHOT_ADD_OUTPUT from the lttng ctl library.
2841 *
2842 * Return LTTNG_OK on success or else a LTTNG_ERR code.
2843 */
2844int cmd_snapshot_add_output(struct ltt_session *session,
2845 struct lttng_snapshot_output *output, uint32_t *id)
2846{
2847 int ret;
2848 struct snapshot_output *new_output;
2849
2850 assert(session);
2851 assert(output);
2852
2853 DBG("Cmd snapshot add output for session %s", session->name);
2854
2855 /*
d3f14b8a
MD
2856 * Permission denied to create an output if the session is not
2857 * set in no output mode.
6dc3064a
DG
2858 */
2859 if (session->output_traces) {
2860 ret = LTTNG_ERR_EPERM;
2861 goto error;
2862 }
2863
2864 /* Only one output is allowed until we have the "tee" feature. */
2865 if (session->snapshot.nb_output == 1) {
2866 ret = LTTNG_ERR_SNAPSHOT_OUTPUT_EXIST;
2867 goto error;
2868 }
2869
2870 new_output = snapshot_output_alloc();
2871 if (!new_output) {
2872 ret = LTTNG_ERR_NOMEM;
2873 goto error;
2874 }
2875
2876 ret = snapshot_output_init(output->max_size, output->name,
2877 output->ctrl_url, output->data_url, session->consumer, new_output,
2878 &session->snapshot);
2879 if (ret < 0) {
2880 if (ret == -ENOMEM) {
2881 ret = LTTNG_ERR_NOMEM;
2882 } else {
2883 ret = LTTNG_ERR_INVALID;
2884 }
2885 goto free_error;
2886 }
2887
6dc3064a
DG
2888 rcu_read_lock();
2889 snapshot_add_output(&session->snapshot, new_output);
2890 if (id) {
2891 *id = new_output->id;
2892 }
2893 rcu_read_unlock();
2894
2895 return LTTNG_OK;
2896
2897free_error:
2898 snapshot_output_destroy(new_output);
2899error:
2900 return ret;
2901}
2902
2903/*
2904 * Command LTTNG_SNAPSHOT_DEL_OUTPUT from lib lttng ctl.
2905 *
2906 * Return LTTNG_OK on success or else a LTTNG_ERR code.
2907 */
2908int cmd_snapshot_del_output(struct ltt_session *session,
2909 struct lttng_snapshot_output *output)
2910{
2911 int ret;
eb240553 2912 struct snapshot_output *sout = NULL;
6dc3064a
DG
2913
2914 assert(session);
2915 assert(output);
2916
6dc3064a
DG
2917 rcu_read_lock();
2918
2919 /*
d3f14b8a
MD
2920 * Permission denied to create an output if the session is not
2921 * set in no output mode.
6dc3064a
DG
2922 */
2923 if (session->output_traces) {
2924 ret = LTTNG_ERR_EPERM;
2925 goto error;
2926 }
2927
eb240553
DG
2928 if (output->id) {
2929 DBG("Cmd snapshot del output id %" PRIu32 " for session %s", output->id,
2930 session->name);
2931 sout = snapshot_find_output_by_id(output->id, &session->snapshot);
2932 } else if (*output->name != '\0') {
2933 DBG("Cmd snapshot del output name %s for session %s", output->name,
2934 session->name);
2935 sout = snapshot_find_output_by_name(output->name, &session->snapshot);
2936 }
6dc3064a
DG
2937 if (!sout) {
2938 ret = LTTNG_ERR_INVALID;
2939 goto error;
2940 }
2941
2942 snapshot_delete_output(&session->snapshot, sout);
2943 snapshot_output_destroy(sout);
2944 ret = LTTNG_OK;
2945
2946error:
2947 rcu_read_unlock();
2948 return ret;
2949}
2950
2951/*
2952 * Command LTTNG_SNAPSHOT_LIST_OUTPUT from lib lttng ctl.
2953 *
2954 * If no output is available, outputs is untouched and 0 is returned.
2955 *
2956 * Return the size of the newly allocated outputs or a negative LTTNG_ERR code.
2957 */
2958ssize_t cmd_snapshot_list_outputs(struct ltt_session *session,
2959 struct lttng_snapshot_output **outputs)
2960{
2961 int ret, idx = 0;
b223ca94 2962 struct lttng_snapshot_output *list = NULL;
6dc3064a
DG
2963 struct lttng_ht_iter iter;
2964 struct snapshot_output *output;
2965
2966 assert(session);
2967 assert(outputs);
2968
2969 DBG("Cmd snapshot list outputs for session %s", session->name);
2970
2971 /*
d3f14b8a
MD
2972 * Permission denied to create an output if the session is not
2973 * set in no output mode.
6dc3064a
DG
2974 */
2975 if (session->output_traces) {
b223ca94 2976 ret = -LTTNG_ERR_EPERM;
6dc3064a
DG
2977 goto error;
2978 }
2979
2980 if (session->snapshot.nb_output == 0) {
2981 ret = 0;
2982 goto error;
2983 }
2984
2985 list = zmalloc(session->snapshot.nb_output * sizeof(*list));
2986 if (!list) {
b223ca94 2987 ret = -LTTNG_ERR_NOMEM;
6dc3064a
DG
2988 goto error;
2989 }
2990
2991 /* Copy list from session to the new list object. */
b223ca94 2992 rcu_read_lock();
6dc3064a
DG
2993 cds_lfht_for_each_entry(session->snapshot.output_ht->ht, &iter.iter,
2994 output, node.node) {
2995 assert(output->consumer);
2996 list[idx].id = output->id;
2997 list[idx].max_size = output->max_size;
2998 strncpy(list[idx].name, output->name, sizeof(list[idx].name));
2999 if (output->consumer->type == CONSUMER_DST_LOCAL) {
3000 strncpy(list[idx].ctrl_url, output->consumer->dst.trace_path,
3001 sizeof(list[idx].ctrl_url));
3002 } else {
3003 /* Control URI. */
3004 ret = uri_to_str_url(&output->consumer->dst.net.control,
3005 list[idx].ctrl_url, sizeof(list[idx].ctrl_url));
3006 if (ret < 0) {
b223ca94
JG
3007 ret = -LTTNG_ERR_NOMEM;
3008 goto error;
6dc3064a
DG
3009 }
3010
3011 /* Data URI. */
3012 ret = uri_to_str_url(&output->consumer->dst.net.data,
3013 list[idx].data_url, sizeof(list[idx].data_url));
3014 if (ret < 0) {
b223ca94
JG
3015 ret = -LTTNG_ERR_NOMEM;
3016 goto error;
6dc3064a
DG
3017 }
3018 }
3019 idx++;
3020 }
3021
3022 *outputs = list;
b223ca94
JG
3023 list = NULL;
3024 ret = session->snapshot.nb_output;
6dc3064a 3025error:
b223ca94
JG
3026 free(list);
3027 rcu_read_unlock();
3028 return ret;
6dc3064a
DG
3029}
3030
3031/*
3032 * Send relayd sockets from snapshot output to consumer. Ignore request if the
3033 * snapshot output is *not* set with a remote destination.
3034 *
a934f4af 3035 * Return 0 on success or a LTTNG_ERR code.
6dc3064a
DG
3036 */
3037static int set_relayd_for_snapshot(struct consumer_output *consumer,
3038 struct snapshot_output *snap_output, struct ltt_session *session)
3039{
a934f4af 3040 int ret = LTTNG_OK;
6dc3064a
DG
3041 struct lttng_ht_iter iter;
3042 struct consumer_socket *socket;
3043
3044 assert(consumer);
3045 assert(snap_output);
3046 assert(session);
3047
3048 DBG2("Set relayd object from snapshot output");
3049
3050 /* Ignore if snapshot consumer output is not network. */
3051 if (snap_output->consumer->type != CONSUMER_DST_NET) {
3052 goto error;
3053 }
3054
3055 /*
3056 * For each consumer socket, create and send the relayd object of the
3057 * snapshot output.
3058 */
3059 rcu_read_lock();
5eecee74
DG
3060 cds_lfht_for_each_entry(snap_output->consumer->socks->ht, &iter.iter,
3061 socket, node.node) {
6dc3064a 3062 ret = send_consumer_relayd_sockets(0, session->id,
d3e2ba59
JD
3063 snap_output->consumer, socket,
3064 session->name, session->hostname,
3065 session->live_timer);
a934f4af 3066 if (ret != LTTNG_OK) {
6dc3064a
DG
3067 rcu_read_unlock();
3068 goto error;
3069 }
3070 }
3071 rcu_read_unlock();
3072
3073error:
3074 return ret;
3075}
3076
3077/*
3078 * Record a kernel snapshot.
3079 *
fac41e72 3080 * Return LTTNG_OK on success or a LTTNG_ERR code.
6dc3064a
DG
3081 */
3082static int record_kernel_snapshot(struct ltt_kernel_session *ksess,
5c786ded 3083 struct snapshot_output *output, struct ltt_session *session,
d07ceecd 3084 int wait, uint64_t nb_packets_per_stream)
6dc3064a
DG
3085{
3086 int ret;
3087
3088 assert(ksess);
3089 assert(output);
3090 assert(session);
3091
10a50311
JD
3092 /* Get the datetime for the snapshot output directory. */
3093 ret = utils_get_current_time_str("%Y%m%d-%H%M%S", output->datetime,
3094 sizeof(output->datetime));
3095 if (!ret) {
a934f4af 3096 ret = LTTNG_ERR_INVALID;
10a50311
JD
3097 goto error;
3098 }
3099
af706bb7
DG
3100 /*
3101 * Copy kernel session sockets so we can communicate with the right
3102 * consumer for the snapshot record command.
3103 */
3104 ret = consumer_copy_sockets(output->consumer, ksess->consumer);
3105 if (ret < 0) {
a934f4af 3106 ret = LTTNG_ERR_NOMEM;
af706bb7 3107 goto error;
6dc3064a
DG
3108 }
3109
3110 ret = set_relayd_for_snapshot(ksess->consumer, output, session);
a934f4af 3111 if (ret != LTTNG_OK) {
af706bb7 3112 goto error_snapshot;
6dc3064a
DG
3113 }
3114
d07ceecd 3115 ret = kernel_snapshot_record(ksess, output, wait, nb_packets_per_stream);
2a06df8d 3116 if (ret != LTTNG_OK) {
af706bb7 3117 goto error_snapshot;
6dc3064a
DG
3118 }
3119
a934f4af 3120 ret = LTTNG_OK;
1371fc12 3121 goto end;
a934f4af 3122
af706bb7
DG
3123error_snapshot:
3124 /* Clean up copied sockets so this output can use some other later on. */
3125 consumer_destroy_output_sockets(output->consumer);
6dc3064a 3126error:
1371fc12 3127end:
6dc3064a
DG
3128 return ret;
3129}
3130
3131/*
3132 * Record a UST snapshot.
3133 *
a934f4af 3134 * Return 0 on success or a LTTNG_ERR error code.
6dc3064a
DG
3135 */
3136static int record_ust_snapshot(struct ltt_ust_session *usess,
5c786ded 3137 struct snapshot_output *output, struct ltt_session *session,
d07ceecd 3138 int wait, uint64_t nb_packets_per_stream)
6dc3064a
DG
3139{
3140 int ret;
3141
3142 assert(usess);
3143 assert(output);
3144 assert(session);
3145
10a50311
JD
3146 /* Get the datetime for the snapshot output directory. */
3147 ret = utils_get_current_time_str("%Y%m%d-%H%M%S", output->datetime,
3148 sizeof(output->datetime));
3149 if (!ret) {
a934f4af 3150 ret = LTTNG_ERR_INVALID;
10a50311
JD
3151 goto error;
3152 }
3153
af706bb7 3154 /*
d3f14b8a 3155 * Copy UST session sockets so we can communicate with the right
af706bb7
DG
3156 * consumer for the snapshot record command.
3157 */
3158 ret = consumer_copy_sockets(output->consumer, usess->consumer);
3159 if (ret < 0) {
a934f4af 3160 ret = LTTNG_ERR_NOMEM;
af706bb7 3161 goto error;
6dc3064a
DG
3162 }
3163
3164 ret = set_relayd_for_snapshot(usess->consumer, output, session);
a934f4af 3165 if (ret != LTTNG_OK) {
af706bb7 3166 goto error_snapshot;
6dc3064a
DG
3167 }
3168
d07ceecd 3169 ret = ust_app_snapshot_record(usess, output, wait, nb_packets_per_stream);
6dc3064a 3170 if (ret < 0) {
7badf927
DG
3171 switch (-ret) {
3172 case EINVAL:
a934f4af 3173 ret = LTTNG_ERR_INVALID;
7badf927
DG
3174 break;
3175 case ENODATA:
3176 ret = LTTNG_ERR_SNAPSHOT_NODATA;
3177 break;
3178 default:
3179 ret = LTTNG_ERR_SNAPSHOT_FAIL;
3180 break;
5c786ded 3181 }
af706bb7 3182 goto error_snapshot;
6dc3064a
DG
3183 }
3184
a934f4af
DG
3185 ret = LTTNG_OK;
3186
af706bb7
DG
3187error_snapshot:
3188 /* Clean up copied sockets so this output can use some other later on. */
3189 consumer_destroy_output_sockets(output->consumer);
6dc3064a
DG
3190error:
3191 return ret;
3192}
3193
d07ceecd
MD
3194static
3195uint64_t get_session_size_one_more_packet_per_stream(struct ltt_session *session,
3196 uint64_t cur_nr_packets)
68808f4e 3197{
d07ceecd 3198 uint64_t tot_size = 0;
68808f4e
DG
3199
3200 if (session->kernel_session) {
3201 struct ltt_kernel_channel *chan;
3202 struct ltt_kernel_session *ksess = session->kernel_session;
3203
68808f4e 3204 cds_list_for_each_entry(chan, &ksess->channel_list.head, list) {
d07ceecd
MD
3205 if (cur_nr_packets >= chan->channel->attr.num_subbuf) {
3206 /*
3207 * Don't take channel into account if we
3208 * already grab all its packets.
3209 */
3210 continue;
68808f4e 3211 }
d07ceecd
MD
3212 tot_size += chan->channel->attr.subbuf_size
3213 * chan->stream_count;
68808f4e
DG
3214 }
3215 }
3216
3217 if (session->ust_session) {
68808f4e
DG
3218 struct ltt_ust_session *usess = session->ust_session;
3219
d07ceecd
MD
3220 tot_size += ust_app_get_size_one_more_packet_per_stream(usess,
3221 cur_nr_packets);
68808f4e
DG
3222 }
3223
d07ceecd 3224 return tot_size;
68808f4e
DG
3225}
3226
5c786ded 3227/*
d07ceecd
MD
3228 * Calculate the number of packets we can grab from each stream that
3229 * fits within the overall snapshot max size.
3230 *
3231 * Returns -1 on error, 0 means infinite number of packets, else > 0 is
3232 * the number of packets per stream.
3233 *
3234 * TODO: this approach is not perfect: we consider the worse case
3235 * (packet filling the sub-buffers) as an upper bound, but we could do
3236 * better if we do this calculation while we actually grab the packet
3237 * content: we would know how much padding we don't actually store into
3238 * the file.
3239 *
3240 * This algorithm is currently bounded by the number of packets per
3241 * stream.
3242 *
3243 * Since we call this algorithm before actually grabbing the data, it's
3244 * an approximation: for instance, applications could appear/disappear
3245 * in between this call and actually grabbing data.
5c786ded 3246 */
d07ceecd
MD
3247static
3248int64_t get_session_nb_packets_per_stream(struct ltt_session *session, uint64_t max_size)
5c786ded 3249{
d07ceecd
MD
3250 int64_t size_left;
3251 uint64_t cur_nb_packets = 0;
5c786ded 3252
d07ceecd
MD
3253 if (!max_size) {
3254 return 0; /* Infinite */
5c786ded
JD
3255 }
3256
d07ceecd
MD
3257 size_left = max_size;
3258 for (;;) {
3259 uint64_t one_more_packet_tot_size;
5c786ded 3260
d07ceecd
MD
3261 one_more_packet_tot_size = get_session_size_one_more_packet_per_stream(session,
3262 cur_nb_packets);
3263 if (!one_more_packet_tot_size) {
3264 /* We are already grabbing all packets. */
3265 break;
3266 }
3267 size_left -= one_more_packet_tot_size;
3268 if (size_left < 0) {
3269 break;
3270 }
3271 cur_nb_packets++;
5c786ded 3272 }
d07ceecd
MD
3273 if (!cur_nb_packets) {
3274 /* Not enough room to grab one packet of each stream, error. */
3275 return -1;
3276 }
3277 return cur_nb_packets;
5c786ded
JD
3278}
3279
6dc3064a
DG
3280/*
3281 * Command LTTNG_SNAPSHOT_RECORD from lib lttng ctl.
3282 *
3283 * The wait parameter is ignored so this call always wait for the snapshot to
3284 * complete before returning.
3285 *
3286 * Return LTTNG_OK on success or else a LTTNG_ERR code.
3287 */
3288int cmd_snapshot_record(struct ltt_session *session,
3289 struct lttng_snapshot_output *output, int wait)
3290{
3291 int ret = LTTNG_OK;
e1986656
DG
3292 unsigned int use_tmp_output = 0;
3293 struct snapshot_output tmp_output;
00e1dfc4 3294 unsigned int snapshot_success = 0;
6dc3064a
DG
3295
3296 assert(session);
ba45d9f0 3297 assert(output);
6dc3064a
DG
3298
3299 DBG("Cmd snapshot record for session %s", session->name);
3300
3301 /*
d3f14b8a
MD
3302 * Permission denied to create an output if the session is not
3303 * set in no output mode.
6dc3064a
DG
3304 */
3305 if (session->output_traces) {
3306 ret = LTTNG_ERR_EPERM;
3307 goto error;
3308 }
3309
3310 /* The session needs to be started at least once. */
8382cf6f 3311 if (!session->has_been_started) {
6dc3064a
DG
3312 ret = LTTNG_ERR_START_SESSION_ONCE;
3313 goto error;
3314 }
3315
3316 /* Use temporary output for the session. */
ba45d9f0 3317 if (*output->ctrl_url != '\0') {
6dc3064a
DG
3318 ret = snapshot_output_init(output->max_size, output->name,
3319 output->ctrl_url, output->data_url, session->consumer,
e1986656 3320 &tmp_output, NULL);
6dc3064a
DG
3321 if (ret < 0) {
3322 if (ret == -ENOMEM) {
3323 ret = LTTNG_ERR_NOMEM;
3324 } else {
3325 ret = LTTNG_ERR_INVALID;
3326 }
3327 goto error;
3328 }
1bfe7328
DG
3329 /* Use the global session count for the temporary snapshot. */
3330 tmp_output.nb_snapshot = session->snapshot.nb_snapshot;
e1986656 3331 use_tmp_output = 1;
6dc3064a
DG
3332 }
3333
3334 if (session->kernel_session) {
3335 struct ltt_kernel_session *ksess = session->kernel_session;
3336
e1986656 3337 if (use_tmp_output) {
d07ceecd
MD
3338 int64_t nb_packets_per_stream;
3339
3340 nb_packets_per_stream = get_session_nb_packets_per_stream(session,
3341 tmp_output.max_size);
3342 if (nb_packets_per_stream < 0) {
3343 ret = LTTNG_ERR_MAX_SIZE_INVALID;
3344 goto error;
3345 }
e1986656 3346 ret = record_kernel_snapshot(ksess, &tmp_output, session,
d07ceecd 3347 wait, nb_packets_per_stream);
a934f4af 3348 if (ret != LTTNG_OK) {
6dc3064a
DG
3349 goto error;
3350 }
1bfe7328 3351 snapshot_success = 1;
6dc3064a
DG
3352 } else {
3353 struct snapshot_output *sout;
3354 struct lttng_ht_iter iter;
3355
3356 rcu_read_lock();
3357 cds_lfht_for_each_entry(session->snapshot.output_ht->ht,
3358 &iter.iter, sout, node.node) {
d07ceecd
MD
3359 int64_t nb_packets_per_stream;
3360
e1986656
DG
3361 /*
3362 * Make a local copy of the output and assign the possible
3363 * temporary value given by the caller.
3364 */
3365 memset(&tmp_output, 0, sizeof(tmp_output));
3366 memcpy(&tmp_output, sout, sizeof(tmp_output));
3367
e1986656
DG
3368 if (output->max_size != (uint64_t) -1ULL) {
3369 tmp_output.max_size = output->max_size;
3370 }
3371
d07ceecd
MD
3372 nb_packets_per_stream = get_session_nb_packets_per_stream(session,
3373 tmp_output.max_size);
3374 if (nb_packets_per_stream < 0) {
68808f4e
DG
3375 ret = LTTNG_ERR_MAX_SIZE_INVALID;
3376 goto error;
3377 }
3378
e1986656
DG
3379 /* Use temporary name. */
3380 if (*output->name != '\0') {
3381 strncpy(tmp_output.name, output->name,
3382 sizeof(tmp_output.name));
3383 }
3384
1bfe7328
DG
3385 tmp_output.nb_snapshot = session->snapshot.nb_snapshot;
3386
e1986656 3387 ret = record_kernel_snapshot(ksess, &tmp_output,
d07ceecd 3388 session, wait, nb_packets_per_stream);
a934f4af 3389 if (ret != LTTNG_OK) {
6dc3064a
DG
3390 rcu_read_unlock();
3391 goto error;
3392 }
1bfe7328 3393 snapshot_success = 1;
6dc3064a
DG
3394 }
3395 rcu_read_unlock();
3396 }
3397 }
3398
3399 if (session->ust_session) {
3400 struct ltt_ust_session *usess = session->ust_session;
3401
e1986656 3402 if (use_tmp_output) {
d07ceecd
MD
3403 int64_t nb_packets_per_stream;
3404
3405 nb_packets_per_stream = get_session_nb_packets_per_stream(session,
3406 tmp_output.max_size);
3407 if (nb_packets_per_stream < 0) {
3408 ret = LTTNG_ERR_MAX_SIZE_INVALID;
3409 goto error;
3410 }
e1986656 3411 ret = record_ust_snapshot(usess, &tmp_output, session,
d07ceecd 3412 wait, nb_packets_per_stream);
a934f4af 3413 if (ret != LTTNG_OK) {
6dc3064a
DG
3414 goto error;
3415 }
1bfe7328 3416 snapshot_success = 1;
6dc3064a
DG
3417 } else {
3418 struct snapshot_output *sout;
3419 struct lttng_ht_iter iter;
3420
3421 rcu_read_lock();
3422 cds_lfht_for_each_entry(session->snapshot.output_ht->ht,
3423 &iter.iter, sout, node.node) {
d07ceecd
MD
3424 int64_t nb_packets_per_stream;
3425
e1986656
DG
3426 /*
3427 * Make a local copy of the output and assign the possible
3428 * temporary value given by the caller.
3429 */
3430 memset(&tmp_output, 0, sizeof(tmp_output));
3431 memcpy(&tmp_output, sout, sizeof(tmp_output));
3432
e1986656
DG
3433 if (output->max_size != (uint64_t) -1ULL) {
3434 tmp_output.max_size = output->max_size;
3435 }
3436
d07ceecd
MD
3437 nb_packets_per_stream = get_session_nb_packets_per_stream(session,
3438 tmp_output.max_size);
3439 if (nb_packets_per_stream < 0) {
68808f4e 3440 ret = LTTNG_ERR_MAX_SIZE_INVALID;
d07ceecd 3441 rcu_read_unlock();
68808f4e
DG
3442 goto error;
3443 }
3444
e1986656
DG
3445 /* Use temporary name. */
3446 if (*output->name != '\0') {
3447 strncpy(tmp_output.name, output->name,
3448 sizeof(tmp_output.name));
3449 }
3450
1bfe7328
DG
3451 tmp_output.nb_snapshot = session->snapshot.nb_snapshot;
3452
e1986656 3453 ret = record_ust_snapshot(usess, &tmp_output, session,
d07ceecd 3454 wait, nb_packets_per_stream);
a934f4af 3455 if (ret != LTTNG_OK) {
6dc3064a
DG
3456 rcu_read_unlock();
3457 goto error;
3458 }
1bfe7328 3459 snapshot_success = 1;
6dc3064a
DG
3460 }
3461 rcu_read_unlock();
3462 }
3463 }
3464
1bfe7328
DG
3465 if (snapshot_success) {
3466 session->snapshot.nb_snapshot++;
b67578cb
MD
3467 } else {
3468 ret = LTTNG_ERR_SNAPSHOT_FAIL;
1bfe7328
DG
3469 }
3470
6dc3064a 3471error:
6dc3064a
DG
3472 return ret;
3473}
3474
d7ba1388
MD
3475/*
3476 * Command LTTNG_SET_SESSION_SHM_PATH processed by the client thread.
3477 */
3478int cmd_set_session_shm_path(struct ltt_session *session,
3479 const char *shm_path)
3480{
3481 /* Safety net */
3482 assert(session);
3483
3484 /*
3485 * Can only set shm path before session is started.
3486 */
3487 if (session->has_been_started) {
3488 return LTTNG_ERR_SESSION_STARTED;
3489 }
3490
3491 strncpy(session->shm_path, shm_path,
3492 sizeof(session->shm_path));
3493 session->shm_path[sizeof(session->shm_path) - 1] = '\0';
3494
3495 return 0;
3496}
3497
2f77fc4b
DG
3498/*
3499 * Init command subsystem.
3500 */
3501void cmd_init(void)
3502{
3503 /*
d88aee68
DG
3504 * Set network sequence index to 1 for streams to match a relayd
3505 * socket on the consumer side.
2f77fc4b 3506 */
d88aee68
DG
3507 pthread_mutex_lock(&relayd_net_seq_idx_lock);
3508 relayd_net_seq_idx = 1;
3509 pthread_mutex_unlock(&relayd_net_seq_idx_lock);
2f77fc4b
DG
3510
3511 DBG("Command subsystem initialized");
3512}
This page took 0.347791 seconds and 4 git commands to generate.