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