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