Fix: channels can be _enabled_ after tracing is started, but not created
[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>
20#include <urcu/list.h>
21#include <urcu/uatomic.h>
22
23#include <common/defaults.h>
24#include <common/common.h>
25#include <common/sessiond-comm/sessiond-comm.h>
26#include <common/relayd/relayd.h>
27
28#include "channel.h"
29#include "consumer.h"
30#include "event.h"
7972aab2 31#include "health.h"
2f77fc4b
DG
32#include "kernel.h"
33#include "kernel-consumer.h"
34#include "lttng-sessiond.h"
35#include "utils.h"
36
37#include "cmd.h"
38
39/*
40 * Used to keep a unique index for each relayd socket created where this value
41 * is associated with streams on the consumer so it can match the right relayd
d88aee68
DG
42 * to send to. It must be accessed with the relayd_net_seq_idx_lock
43 * held.
2f77fc4b 44 */
d88aee68
DG
45static pthread_mutex_t relayd_net_seq_idx_lock = PTHREAD_MUTEX_INITIALIZER;
46static uint64_t relayd_net_seq_idx;
2f77fc4b
DG
47
48/*
49 * Create a session path used by list_lttng_sessions for the case that the
50 * session consumer is on the network.
51 */
52static int build_network_session_path(char *dst, size_t size,
53 struct ltt_session *session)
54{
55 int ret, kdata_port, udata_port;
56 struct lttng_uri *kuri = NULL, *uuri = NULL, *uri = NULL;
57 char tmp_uurl[PATH_MAX], tmp_urls[PATH_MAX];
58
59 assert(session);
60 assert(dst);
61
62 memset(tmp_urls, 0, sizeof(tmp_urls));
63 memset(tmp_uurl, 0, sizeof(tmp_uurl));
64
65 kdata_port = udata_port = DEFAULT_NETWORK_DATA_PORT;
66
67 if (session->kernel_session && session->kernel_session->consumer) {
68 kuri = &session->kernel_session->consumer->dst.net.control;
69 kdata_port = session->kernel_session->consumer->dst.net.data.port;
70 }
71
72 if (session->ust_session && session->ust_session->consumer) {
73 uuri = &session->ust_session->consumer->dst.net.control;
74 udata_port = session->ust_session->consumer->dst.net.data.port;
75 }
76
77 if (uuri == NULL && kuri == NULL) {
78 uri = &session->consumer->dst.net.control;
79 kdata_port = session->consumer->dst.net.data.port;
80 } else if (kuri && uuri) {
81 ret = uri_compare(kuri, uuri);
82 if (ret) {
83 /* Not Equal */
84 uri = kuri;
85 /* Build uuri URL string */
86 ret = uri_to_str_url(uuri, tmp_uurl, sizeof(tmp_uurl));
87 if (ret < 0) {
88 goto error;
89 }
90 } else {
91 uri = kuri;
92 }
93 } else if (kuri && uuri == NULL) {
94 uri = kuri;
95 } else if (uuri && kuri == NULL) {
96 uri = uuri;
97 }
98
99 ret = uri_to_str_url(uri, tmp_urls, sizeof(tmp_urls));
100 if (ret < 0) {
101 goto error;
102 }
103
9aa9f900
DG
104 /*
105 * Do we have a UST url set. If yes, this means we have both kernel and UST
106 * to print.
107 */
9d035200 108 if (*tmp_uurl != '\0') {
2f77fc4b
DG
109 ret = snprintf(dst, size, "[K]: %s [data: %d] -- [U]: %s [data: %d]",
110 tmp_urls, kdata_port, tmp_uurl, udata_port);
111 } else {
9aa9f900 112 int dport;
bef08707 113 if (kuri || (!kuri && !uuri)) {
9aa9f900
DG
114 dport = kdata_port;
115 } else {
116 /* No kernel URI, use the UST port. */
117 dport = udata_port;
118 }
119 ret = snprintf(dst, size, "%s [data: %d]", tmp_urls, dport);
2f77fc4b
DG
120 }
121
122error:
123 return ret;
124}
125
126/*
127 * Fill lttng_channel array of all channels.
128 */
129static void list_lttng_channels(int domain, struct ltt_session *session,
130 struct lttng_channel *channels)
131{
132 int i = 0;
133 struct ltt_kernel_channel *kchan;
134
135 DBG("Listing channels for session %s", session->name);
136
137 switch (domain) {
138 case LTTNG_DOMAIN_KERNEL:
139 /* Kernel channels */
140 if (session->kernel_session != NULL) {
141 cds_list_for_each_entry(kchan,
142 &session->kernel_session->channel_list.head, list) {
143 /* Copy lttng_channel struct to array */
144 memcpy(&channels[i], kchan->channel, sizeof(struct lttng_channel));
145 channels[i].enabled = kchan->enabled;
146 i++;
147 }
148 }
149 break;
150 case LTTNG_DOMAIN_UST:
151 {
152 struct lttng_ht_iter iter;
153 struct ltt_ust_channel *uchan;
154
e7fe706f 155 rcu_read_lock();
2f77fc4b
DG
156 cds_lfht_for_each_entry(session->ust_session->domain_global.channels->ht,
157 &iter.iter, uchan, node.node) {
158 strncpy(channels[i].name, uchan->name, LTTNG_SYMBOL_NAME_LEN);
159 channels[i].attr.overwrite = uchan->attr.overwrite;
160 channels[i].attr.subbuf_size = uchan->attr.subbuf_size;
161 channels[i].attr.num_subbuf = uchan->attr.num_subbuf;
162 channels[i].attr.switch_timer_interval =
163 uchan->attr.switch_timer_interval;
164 channels[i].attr.read_timer_interval =
165 uchan->attr.read_timer_interval;
166 channels[i].enabled = uchan->enabled;
167 switch (uchan->attr.output) {
168 case LTTNG_UST_MMAP:
169 default:
170 channels[i].attr.output = LTTNG_EVENT_MMAP;
171 break;
172 }
173 i++;
174 }
e7fe706f 175 rcu_read_unlock();
2f77fc4b
DG
176 break;
177 }
178 default:
179 break;
180 }
181}
182
183/*
184 * Create a list of ust global domain events.
185 */
186static int list_lttng_ust_global_events(char *channel_name,
187 struct ltt_ust_domain_global *ust_global, struct lttng_event **events)
188{
189 int i = 0, ret = 0;
190 unsigned int nb_event = 0;
191 struct lttng_ht_iter iter;
192 struct lttng_ht_node_str *node;
193 struct ltt_ust_channel *uchan;
194 struct ltt_ust_event *uevent;
195 struct lttng_event *tmp;
196
197 DBG("Listing UST global events for channel %s", channel_name);
198
199 rcu_read_lock();
200
201 lttng_ht_lookup(ust_global->channels, (void *)channel_name, &iter);
202 node = lttng_ht_iter_get_node_str(&iter);
203 if (node == NULL) {
f73fabfd 204 ret = LTTNG_ERR_UST_CHAN_NOT_FOUND;
2f77fc4b
DG
205 goto error;
206 }
207
208 uchan = caa_container_of(&node->node, struct ltt_ust_channel, node.node);
209
210 nb_event += lttng_ht_get_count(uchan->events);
211
212 if (nb_event == 0) {
213 ret = nb_event;
214 goto error;
215 }
216
217 DBG3("Listing UST global %d events", nb_event);
218
219 tmp = zmalloc(nb_event * sizeof(struct lttng_event));
220 if (tmp == NULL) {
f73fabfd 221 ret = LTTNG_ERR_FATAL;
2f77fc4b
DG
222 goto error;
223 }
224
225 cds_lfht_for_each_entry(uchan->events->ht, &iter.iter, uevent, node.node) {
226 strncpy(tmp[i].name, uevent->attr.name, LTTNG_SYMBOL_NAME_LEN);
227 tmp[i].name[LTTNG_SYMBOL_NAME_LEN - 1] = '\0';
228 tmp[i].enabled = uevent->enabled;
229
230 switch (uevent->attr.instrumentation) {
231 case LTTNG_UST_TRACEPOINT:
232 tmp[i].type = LTTNG_EVENT_TRACEPOINT;
233 break;
234 case LTTNG_UST_PROBE:
235 tmp[i].type = LTTNG_EVENT_PROBE;
236 break;
237 case LTTNG_UST_FUNCTION:
238 tmp[i].type = LTTNG_EVENT_FUNCTION;
239 break;
240 }
241
242 tmp[i].loglevel = uevent->attr.loglevel;
243 switch (uevent->attr.loglevel_type) {
244 case LTTNG_UST_LOGLEVEL_ALL:
245 tmp[i].loglevel_type = LTTNG_EVENT_LOGLEVEL_ALL;
246 break;
247 case LTTNG_UST_LOGLEVEL_RANGE:
248 tmp[i].loglevel_type = LTTNG_EVENT_LOGLEVEL_RANGE;
249 break;
250 case LTTNG_UST_LOGLEVEL_SINGLE:
251 tmp[i].loglevel_type = LTTNG_EVENT_LOGLEVEL_SINGLE;
252 break;
253 }
254 if (uevent->filter) {
255 tmp[i].filter = 1;
256 }
257 i++;
258 }
259
260 ret = nb_event;
261 *events = tmp;
262
263error:
264 rcu_read_unlock();
265 return ret;
266}
267
268/*
269 * Fill lttng_event array of all kernel events in the channel.
270 */
271static int list_lttng_kernel_events(char *channel_name,
272 struct ltt_kernel_session *kernel_session, struct lttng_event **events)
273{
274 int i = 0, ret;
275 unsigned int nb_event;
276 struct ltt_kernel_event *event;
277 struct ltt_kernel_channel *kchan;
278
279 kchan = trace_kernel_get_channel_by_name(channel_name, kernel_session);
280 if (kchan == NULL) {
f73fabfd 281 ret = LTTNG_ERR_KERN_CHAN_NOT_FOUND;
2f77fc4b
DG
282 goto error;
283 }
284
285 nb_event = kchan->event_count;
286
287 DBG("Listing events for channel %s", kchan->channel->name);
288
289 if (nb_event == 0) {
f73fabfd 290 goto end;
2f77fc4b
DG
291 }
292
293 *events = zmalloc(nb_event * sizeof(struct lttng_event));
294 if (*events == NULL) {
f73fabfd 295 ret = LTTNG_ERR_FATAL;
2f77fc4b
DG
296 goto error;
297 }
298
299 /* Kernel channels */
300 cds_list_for_each_entry(event, &kchan->events_list.head , list) {
301 strncpy((*events)[i].name, event->event->name, LTTNG_SYMBOL_NAME_LEN);
302 (*events)[i].name[LTTNG_SYMBOL_NAME_LEN - 1] = '\0';
303 (*events)[i].enabled = event->enabled;
304
305 switch (event->event->instrumentation) {
306 case LTTNG_KERNEL_TRACEPOINT:
307 (*events)[i].type = LTTNG_EVENT_TRACEPOINT;
308 break;
2f77fc4b 309 case LTTNG_KERNEL_KRETPROBE:
1896972b
DG
310 (*events)[i].type = LTTNG_EVENT_FUNCTION;
311 memcpy(&(*events)[i].attr.probe, &event->event->u.kprobe,
312 sizeof(struct lttng_kernel_kprobe));
313 break;
314 case LTTNG_KERNEL_KPROBE:
2f77fc4b
DG
315 (*events)[i].type = LTTNG_EVENT_PROBE;
316 memcpy(&(*events)[i].attr.probe, &event->event->u.kprobe,
317 sizeof(struct lttng_kernel_kprobe));
318 break;
319 case LTTNG_KERNEL_FUNCTION:
320 (*events)[i].type = LTTNG_EVENT_FUNCTION;
321 memcpy(&((*events)[i].attr.ftrace), &event->event->u.ftrace,
322 sizeof(struct lttng_kernel_function));
323 break;
324 case LTTNG_KERNEL_NOOP:
325 (*events)[i].type = LTTNG_EVENT_NOOP;
326 break;
327 case LTTNG_KERNEL_SYSCALL:
328 (*events)[i].type = LTTNG_EVENT_SYSCALL;
329 break;
330 case LTTNG_KERNEL_ALL:
331 assert(0);
332 break;
333 }
334 i++;
335 }
336
f73fabfd 337end:
2f77fc4b
DG
338 return nb_event;
339
340error:
f73fabfd
DG
341 /* Negate the error code to differentiate the size from an error */
342 return -ret;
2f77fc4b
DG
343}
344
345/*
346 * Add URI so the consumer output object. Set the correct path depending on the
347 * domain adding the default trace directory.
348 */
349static int add_uri_to_consumer(struct consumer_output *consumer,
350 struct lttng_uri *uri, int domain, const char *session_name)
351{
f73fabfd 352 int ret = LTTNG_OK;
2f77fc4b
DG
353 const char *default_trace_dir;
354
355 assert(uri);
356
357 if (consumer == NULL) {
358 DBG("No consumer detected. Don't add URI. Stopping.");
f73fabfd 359 ret = LTTNG_ERR_NO_CONSUMER;
2f77fc4b
DG
360 goto error;
361 }
362
363 switch (domain) {
364 case LTTNG_DOMAIN_KERNEL:
365 default_trace_dir = DEFAULT_KERNEL_TRACE_DIR;
366 break;
367 case LTTNG_DOMAIN_UST:
368 default_trace_dir = DEFAULT_UST_TRACE_DIR;
369 break;
370 default:
371 /*
372 * This case is possible is we try to add the URI to the global tracing
373 * session consumer object which in this case there is no subdir.
374 */
375 default_trace_dir = "";
376 }
377
378 switch (uri->dtype) {
379 case LTTNG_DST_IPV4:
380 case LTTNG_DST_IPV6:
381 DBG2("Setting network URI to consumer");
382
df75acac
DG
383 if (consumer->type == CONSUMER_DST_NET) {
384 if ((uri->stype == LTTNG_STREAM_CONTROL &&
785d2d0d
DG
385 consumer->dst.net.control_isset) ||
386 (uri->stype == LTTNG_STREAM_DATA &&
387 consumer->dst.net.data_isset)) {
df75acac
DG
388 ret = LTTNG_ERR_URL_EXIST;
389 goto error;
390 }
391 } else {
392 memset(&consumer->dst.net, 0, sizeof(consumer->dst.net));
785d2d0d
DG
393 }
394
df75acac
DG
395 consumer->type = CONSUMER_DST_NET;
396
2f77fc4b
DG
397 /* Set URI into consumer output object */
398 ret = consumer_set_network_uri(consumer, uri);
399 if (ret < 0) {
a74934ba 400 ret = -ret;
2f77fc4b
DG
401 goto error;
402 } else if (ret == 1) {
403 /*
404 * URI was the same in the consumer so we do not append the subdir
405 * again so to not duplicate output dir.
406 */
407 goto error;
408 }
409
410 if (uri->stype == LTTNG_STREAM_CONTROL && strlen(uri->subdir) == 0) {
411 ret = consumer_set_subdir(consumer, session_name);
412 if (ret < 0) {
f73fabfd 413 ret = LTTNG_ERR_FATAL;
2f77fc4b
DG
414 goto error;
415 }
416 }
417
418 if (uri->stype == LTTNG_STREAM_CONTROL) {
419 /* On a new subdir, reappend the default trace dir. */
c30ce0b3
CB
420 strncat(consumer->subdir, default_trace_dir,
421 sizeof(consumer->subdir) - strlen(consumer->subdir) - 1);
2f77fc4b
DG
422 DBG3("Append domain trace name to subdir %s", consumer->subdir);
423 }
424
425 break;
426 case LTTNG_DST_PATH:
427 DBG2("Setting trace directory path from URI to %s", uri->dst.path);
428 memset(consumer->dst.trace_path, 0,
429 sizeof(consumer->dst.trace_path));
430 strncpy(consumer->dst.trace_path, uri->dst.path,
431 sizeof(consumer->dst.trace_path));
432 /* Append default trace dir */
433 strncat(consumer->dst.trace_path, default_trace_dir,
c30ce0b3
CB
434 sizeof(consumer->dst.trace_path) -
435 strlen(consumer->dst.trace_path) - 1);
2f77fc4b
DG
436 /* Flag consumer as local. */
437 consumer->type = CONSUMER_DST_LOCAL;
438 break;
439 }
440
a74934ba
DG
441 ret = LTTNG_OK;
442
2f77fc4b
DG
443error:
444 return ret;
445}
446
447/*
448 * Init tracing by creating trace directory and sending fds kernel consumer.
449 */
450static int init_kernel_tracing(struct ltt_kernel_session *session)
451{
452 int ret = 0;
453 struct lttng_ht_iter iter;
454 struct consumer_socket *socket;
455
456 assert(session);
457
e7fe706f
DG
458 rcu_read_lock();
459
2f77fc4b
DG
460 if (session->consumer_fds_sent == 0 && session->consumer != NULL) {
461 cds_lfht_for_each_entry(session->consumer->socks->ht, &iter.iter,
462 socket, node.node) {
463 /* Code flow error */
464 assert(socket->fd >= 0);
465
466 pthread_mutex_lock(socket->lock);
f50f23d9 467 ret = kernel_consumer_send_session(socket, session);
2f77fc4b
DG
468 pthread_mutex_unlock(socket->lock);
469 if (ret < 0) {
f73fabfd 470 ret = LTTNG_ERR_KERN_CONSUMER_FAIL;
2f77fc4b
DG
471 goto error;
472 }
473 }
474 }
475
476error:
e7fe706f 477 rcu_read_unlock();
2f77fc4b
DG
478 return ret;
479}
480
481/*
482 * Create a socket to the relayd using the URI.
483 *
484 * On success, the relayd_sock pointer is set to the created socket.
485 * Else, it's stays untouched and a lttcomm error code is returned.
486 */
6151a90f
JD
487static int create_connect_relayd(struct lttng_uri *uri,
488 struct lttcomm_relayd_sock **relayd_sock)
2f77fc4b
DG
489{
490 int ret;
6151a90f 491 struct lttcomm_relayd_sock *rsock;
2f77fc4b 492
6151a90f
JD
493 rsock = lttcomm_alloc_relayd_sock(uri, RELAYD_VERSION_COMM_MAJOR,
494 RELAYD_VERSION_COMM_MINOR);
495 if (!rsock) {
f73fabfd 496 ret = LTTNG_ERR_FATAL;
2f77fc4b
DG
497 goto error;
498 }
499
ffe60014
DG
500 /*
501 * Connect to relayd so we can proceed with a session creation. This call
502 * can possibly block for an arbitrary amount of time to set the health
503 * state to be in poll execution.
504 */
505 health_poll_entry();
6151a90f 506 ret = relayd_connect(rsock);
ffe60014 507 health_poll_exit();
2f77fc4b
DG
508 if (ret < 0) {
509 ERR("Unable to reach lttng-relayd");
f73fabfd 510 ret = LTTNG_ERR_RELAYD_CONNECT_FAIL;
2f77fc4b
DG
511 goto free_sock;
512 }
513
514 /* Create socket for control stream. */
515 if (uri->stype == LTTNG_STREAM_CONTROL) {
516 DBG3("Creating relayd stream socket from URI");
517
518 /* Check relayd version */
6151a90f 519 ret = relayd_version_check(rsock);
2f77fc4b 520 if (ret < 0) {
f73fabfd 521 ret = LTTNG_ERR_RELAYD_VERSION_FAIL;
2f77fc4b
DG
522 goto close_sock;
523 }
524 } else if (uri->stype == LTTNG_STREAM_DATA) {
525 DBG3("Creating relayd data socket from URI");
526 } else {
527 /* Command is not valid */
528 ERR("Relayd invalid stream type: %d", uri->stype);
f73fabfd 529 ret = LTTNG_ERR_INVALID;
2f77fc4b
DG
530 goto close_sock;
531 }
532
6151a90f 533 *relayd_sock = rsock;
2f77fc4b 534
f73fabfd 535 return LTTNG_OK;
2f77fc4b
DG
536
537close_sock:
6151a90f
JD
538 /* The returned value is not useful since we are on an error path. */
539 (void) relayd_close(rsock);
2f77fc4b 540free_sock:
6151a90f 541 free(rsock);
2f77fc4b
DG
542error:
543 return ret;
544}
545
546/*
547 * Connect to the relayd using URI and send the socket to the right consumer.
548 */
549static int send_consumer_relayd_socket(int domain, struct ltt_session *session,
550 struct lttng_uri *relayd_uri, struct consumer_output *consumer,
f50f23d9 551 struct consumer_socket *consumer_sock)
2f77fc4b
DG
552{
553 int ret;
6151a90f 554 struct lttcomm_relayd_sock *rsock = NULL;
2f77fc4b 555
ffe60014 556 /* Connect to relayd and make version check if uri is the control. */
6151a90f 557 ret = create_connect_relayd(relayd_uri, &rsock);
ffe60014 558 if (ret != LTTNG_OK) {
6151a90f 559 goto error;
ffe60014 560 }
6151a90f 561 assert(rsock);
ffe60014
DG
562
563 /* If the control socket is connected, network session is ready */
564 if (relayd_uri->stype == LTTNG_STREAM_CONTROL) {
565 session->net_handle = 1;
566 }
567
2f77fc4b 568 /* Set the network sequence index if not set. */
d88aee68
DG
569 if (consumer->net_seq_index == (uint64_t) -1ULL) {
570 pthread_mutex_lock(&relayd_net_seq_idx_lock);
2f77fc4b
DG
571 /*
572 * Increment net_seq_idx because we are about to transfer the
573 * new relayd socket to the consumer.
d88aee68 574 * Assign unique key so the consumer can match streams.
2f77fc4b 575 */
d88aee68
DG
576 consumer->net_seq_index = ++relayd_net_seq_idx;
577 pthread_mutex_unlock(&relayd_net_seq_idx_lock);
2f77fc4b
DG
578 }
579
2f77fc4b 580 /* Send relayd socket to consumer. */
6151a90f
JD
581 ret = consumer_send_relayd_socket(consumer_sock, rsock, consumer,
582 relayd_uri->stype, session->id);
2f77fc4b 583 if (ret < 0) {
f73fabfd 584 ret = LTTNG_ERR_ENABLE_CONSUMER_FAIL;
2f77fc4b
DG
585 goto close_sock;
586 }
587
c890b720
DG
588 /* Flag that the corresponding socket was sent. */
589 if (relayd_uri->stype == LTTNG_STREAM_CONTROL) {
ffe60014 590 consumer_sock->control_sock_sent = 1;
c890b720 591 } else if (relayd_uri->stype == LTTNG_STREAM_DATA) {
ffe60014 592 consumer_sock->data_sock_sent = 1;
c890b720
DG
593 }
594
f73fabfd 595 ret = LTTNG_OK;
2f77fc4b
DG
596
597 /*
598 * Close socket which was dup on the consumer side. The session daemon does
599 * NOT keep track of the relayd socket(s) once transfer to the consumer.
600 */
601
602close_sock:
6151a90f
JD
603 (void) relayd_close(rsock);
604 free(rsock);
2f77fc4b 605
6151a90f 606error:
ffe60014
DG
607 if (ret != LTTNG_OK) {
608 /*
d9078d0c
DG
609 * The consumer output for this session should not be used anymore
610 * since the relayd connection failed thus making any tracing or/and
611 * streaming not usable.
ffe60014 612 */
d9078d0c 613 consumer->enabled = 0;
ffe60014 614 }
2f77fc4b
DG
615 return ret;
616}
617
618/*
619 * Send both relayd sockets to a specific consumer and domain. This is a
620 * helper function to facilitate sending the information to the consumer for a
621 * session.
622 */
623static int send_consumer_relayd_sockets(int domain,
f50f23d9
DG
624 struct ltt_session *session, struct consumer_output *consumer,
625 struct consumer_socket *sock)
2f77fc4b 626{
dda67f6c 627 int ret = LTTNG_OK;
2f77fc4b
DG
628
629 assert(session);
630 assert(consumer);
631
2f77fc4b 632 /* Sending control relayd socket. */
ffe60014 633 if (!sock->control_sock_sent) {
c890b720 634 ret = send_consumer_relayd_socket(domain, session,
f50f23d9 635 &consumer->dst.net.control, consumer, sock);
c890b720
DG
636 if (ret != LTTNG_OK) {
637 goto error;
638 }
2f77fc4b
DG
639 }
640
641 /* Sending data relayd socket. */
ffe60014 642 if (!sock->data_sock_sent) {
c890b720 643 ret = send_consumer_relayd_socket(domain, session,
f50f23d9 644 &consumer->dst.net.data, consumer, sock);
c890b720
DG
645 if (ret != LTTNG_OK) {
646 goto error;
647 }
2f77fc4b
DG
648 }
649
2f77fc4b
DG
650error:
651 return ret;
652}
653
654/*
655 * Setup relayd connections for a tracing session. First creates the socket to
656 * the relayd and send them to the right domain consumer. Consumer type MUST be
657 * network.
658 */
ffe60014 659int cmd_setup_relayd(struct ltt_session *session)
2f77fc4b 660{
f73fabfd 661 int ret = LTTNG_OK;
2f77fc4b
DG
662 struct ltt_ust_session *usess;
663 struct ltt_kernel_session *ksess;
664 struct consumer_socket *socket;
665 struct lttng_ht_iter iter;
666
667 assert(session);
668
669 usess = session->ust_session;
670 ksess = session->kernel_session;
671
785d2d0d 672 DBG("Setting relayd for session %s", session->name);
2f77fc4b 673
e7fe706f
DG
674 rcu_read_lock();
675
2f77fc4b
DG
676 if (usess && usess->consumer && usess->consumer->type == CONSUMER_DST_NET
677 && usess->consumer->enabled) {
678 /* For each consumer socket, send relayd sockets */
679 cds_lfht_for_each_entry(usess->consumer->socks->ht, &iter.iter,
680 socket, node.node) {
681 /* Code flow error */
682 assert(socket->fd >= 0);
683
684 pthread_mutex_lock(socket->lock);
dda67f6c 685 ret = send_consumer_relayd_sockets(LTTNG_DOMAIN_UST, session,
f50f23d9 686 usess->consumer, socket);
2f77fc4b 687 pthread_mutex_unlock(socket->lock);
f73fabfd 688 if (ret != LTTNG_OK) {
2f77fc4b
DG
689 goto error;
690 }
691 }
692 }
693
694 if (ksess && ksess->consumer && ksess->consumer->type == CONSUMER_DST_NET
695 && ksess->consumer->enabled) {
696 cds_lfht_for_each_entry(ksess->consumer->socks->ht, &iter.iter,
697 socket, node.node) {
698 /* Code flow error */
699 assert(socket->fd >= 0);
700
701 pthread_mutex_lock(socket->lock);
dda67f6c 702 ret = send_consumer_relayd_sockets(LTTNG_DOMAIN_KERNEL, session,
f50f23d9 703 ksess->consumer, socket);
2f77fc4b 704 pthread_mutex_unlock(socket->lock);
f73fabfd 705 if (ret != LTTNG_OK) {
2f77fc4b
DG
706 goto error;
707 }
708 }
709 }
710
711error:
e7fe706f 712 rcu_read_unlock();
2f77fc4b
DG
713 return ret;
714}
715
9b6c7ec5
DG
716/*
717 * Start a kernel session by opening all necessary streams.
718 */
719static int start_kernel_session(struct ltt_kernel_session *ksess, int wpipe)
720{
721 int ret;
722 struct ltt_kernel_channel *kchan;
723
724 /* Open kernel metadata */
725 if (ksess->metadata == NULL) {
726 ret = kernel_open_metadata(ksess);
727 if (ret < 0) {
728 ret = LTTNG_ERR_KERN_META_FAIL;
729 goto error;
730 }
731 }
732
733 /* Open kernel metadata stream */
734 if (ksess->metadata_stream_fd < 0) {
735 ret = kernel_open_metadata_stream(ksess);
736 if (ret < 0) {
737 ERR("Kernel create metadata stream failed");
738 ret = LTTNG_ERR_KERN_STREAM_FAIL;
739 goto error;
740 }
741 }
742
743 /* For each channel */
744 cds_list_for_each_entry(kchan, &ksess->channel_list.head, list) {
745 if (kchan->stream_count == 0) {
746 ret = kernel_open_channel_stream(kchan);
747 if (ret < 0) {
748 ret = LTTNG_ERR_KERN_STREAM_FAIL;
749 goto error;
750 }
751 /* Update the stream global counter */
752 ksess->stream_count_global += ret;
753 }
754 }
755
756 /* Setup kernel consumer socket and send fds to it */
757 ret = init_kernel_tracing(ksess);
e43c41c5 758 if (ret != 0) {
9b6c7ec5
DG
759 ret = LTTNG_ERR_KERN_START_FAIL;
760 goto error;
761 }
762
763 /* This start the kernel tracing */
764 ret = kernel_start_session(ksess);
765 if (ret < 0) {
766 ret = LTTNG_ERR_KERN_START_FAIL;
767 goto error;
768 }
769
770 /* Quiescent wait after starting trace */
784303b0 771 kernel_wait_quiescent(kernel_tracer_fd);
9b6c7ec5
DG
772
773 ksess->started = 1;
774
775 ret = LTTNG_OK;
776
777error:
778 return ret;
779}
780
2f77fc4b
DG
781/*
782 * Command LTTNG_DISABLE_CHANNEL processed by the client thread.
783 */
784int cmd_disable_channel(struct ltt_session *session, int domain,
785 char *channel_name)
786{
787 int ret;
788 struct ltt_ust_session *usess;
789
790 usess = session->ust_session;
791
2223c96f
DG
792 rcu_read_lock();
793
2f77fc4b
DG
794 switch (domain) {
795 case LTTNG_DOMAIN_KERNEL:
796 {
797 ret = channel_kernel_disable(session->kernel_session,
798 channel_name);
f73fabfd 799 if (ret != LTTNG_OK) {
2f77fc4b
DG
800 goto error;
801 }
802
803 kernel_wait_quiescent(kernel_tracer_fd);
804 break;
805 }
806 case LTTNG_DOMAIN_UST:
807 {
808 struct ltt_ust_channel *uchan;
809 struct lttng_ht *chan_ht;
810
811 chan_ht = usess->domain_global.channels;
812
813 uchan = trace_ust_find_channel_by_name(chan_ht, channel_name);
814 if (uchan == NULL) {
f73fabfd 815 ret = LTTNG_ERR_UST_CHAN_NOT_FOUND;
2f77fc4b
DG
816 goto error;
817 }
818
7972aab2 819 ret = channel_ust_disable(usess, uchan);
f73fabfd 820 if (ret != LTTNG_OK) {
2f77fc4b
DG
821 goto error;
822 }
823 break;
824 }
825#if 0
826 case LTTNG_DOMAIN_UST_PID_FOLLOW_CHILDREN:
827 case LTTNG_DOMAIN_UST_EXEC_NAME:
828 case LTTNG_DOMAIN_UST_PID:
829#endif
830 default:
f73fabfd 831 ret = LTTNG_ERR_UNKNOWN_DOMAIN;
2f77fc4b
DG
832 goto error;
833 }
834
f73fabfd 835 ret = LTTNG_OK;
2f77fc4b
DG
836
837error:
2223c96f 838 rcu_read_unlock();
2f77fc4b
DG
839 return ret;
840}
841
842/*
843 * Command LTTNG_ENABLE_CHANNEL processed by the client thread.
844 *
845 * The wpipe arguments is used as a notifier for the kernel thread.
846 */
847int cmd_enable_channel(struct ltt_session *session,
7972aab2 848 struct lttng_domain *domain, struct lttng_channel *attr, int wpipe)
2f77fc4b
DG
849{
850 int ret;
851 struct ltt_ust_session *usess = session->ust_session;
852 struct lttng_ht *chan_ht;
853
854 assert(session);
855 assert(attr);
7972aab2 856 assert(domain);
2f77fc4b
DG
857
858 DBG("Enabling channel %s for session %s", attr->name, session->name);
859
46d0fbbc
DG
860 rcu_read_lock();
861
7972aab2 862 switch (domain->type) {
2f77fc4b
DG
863 case LTTNG_DOMAIN_KERNEL:
864 {
865 struct ltt_kernel_channel *kchan;
866
2f77fc4b
DG
867 kchan = trace_kernel_get_channel_by_name(attr->name,
868 session->kernel_session);
869 if (kchan == NULL) {
8e1e3fac
MD
870 /*
871 * Don't try to create a channel if the session
872 * has been started at some point in time
873 * before. The tracer does not allow it.
874 */
875 if (session->started) {
876 ret = LTTNG_ERR_TRACE_ALREADY_STARTED;
877 goto error;
878 }
2f77fc4b
DG
879 ret = channel_kernel_create(session->kernel_session, attr, wpipe);
880 } else {
881 ret = channel_kernel_enable(session->kernel_session, kchan);
882 }
883
f73fabfd 884 if (ret != LTTNG_OK) {
2f77fc4b
DG
885 goto error;
886 }
887
784303b0 888 kernel_wait_quiescent(kernel_tracer_fd);
2f77fc4b
DG
889 break;
890 }
891 case LTTNG_DOMAIN_UST:
892 {
893 struct ltt_ust_channel *uchan;
894
895 chan_ht = usess->domain_global.channels;
896
897 uchan = trace_ust_find_channel_by_name(chan_ht, attr->name);
898 if (uchan == NULL) {
8e1e3fac
MD
899 /*
900 * Don't try to create a channel if the session
901 * has been started at some point in time
902 * before. The tracer does not allow it.
903 */
904 if (session->started) {
905 ret = LTTNG_ERR_TRACE_ALREADY_STARTED;
906 goto error;
907 }
7972aab2 908 ret = channel_ust_create(usess, attr, domain->buf_type);
2f77fc4b 909 } else {
7972aab2 910 ret = channel_ust_enable(usess, uchan);
2f77fc4b
DG
911 }
912 break;
913 }
2f77fc4b 914 default:
f73fabfd 915 ret = LTTNG_ERR_UNKNOWN_DOMAIN;
2f77fc4b
DG
916 goto error;
917 }
918
919error:
2223c96f 920 rcu_read_unlock();
2f77fc4b
DG
921 return ret;
922}
923
924
925/*
926 * Command LTTNG_DISABLE_EVENT processed by the client thread.
927 */
928int cmd_disable_event(struct ltt_session *session, int domain,
929 char *channel_name, char *event_name)
930{
931 int ret;
932
2223c96f
DG
933 rcu_read_lock();
934
2f77fc4b
DG
935 switch (domain) {
936 case LTTNG_DOMAIN_KERNEL:
937 {
938 struct ltt_kernel_channel *kchan;
939 struct ltt_kernel_session *ksess;
940
941 ksess = session->kernel_session;
942
943 kchan = trace_kernel_get_channel_by_name(channel_name, ksess);
944 if (kchan == NULL) {
f73fabfd 945 ret = LTTNG_ERR_KERN_CHAN_NOT_FOUND;
2f77fc4b
DG
946 goto error;
947 }
948
d3a56674 949 ret = event_kernel_disable_tracepoint(kchan, event_name);
f73fabfd 950 if (ret != LTTNG_OK) {
2f77fc4b
DG
951 goto error;
952 }
953
954 kernel_wait_quiescent(kernel_tracer_fd);
955 break;
956 }
957 case LTTNG_DOMAIN_UST:
958 {
959 struct ltt_ust_channel *uchan;
960 struct ltt_ust_session *usess;
961
962 usess = session->ust_session;
963
964 uchan = trace_ust_find_channel_by_name(usess->domain_global.channels,
965 channel_name);
966 if (uchan == NULL) {
f73fabfd 967 ret = LTTNG_ERR_UST_CHAN_NOT_FOUND;
2f77fc4b
DG
968 goto error;
969 }
970
7972aab2 971 ret = event_ust_disable_tracepoint(usess, uchan, event_name);
f73fabfd 972 if (ret != LTTNG_OK) {
2f77fc4b
DG
973 goto error;
974 }
975
976 DBG3("Disable UST event %s in channel %s completed", event_name,
977 channel_name);
978 break;
979 }
980#if 0
981 case LTTNG_DOMAIN_UST_EXEC_NAME:
982 case LTTNG_DOMAIN_UST_PID:
983 case LTTNG_DOMAIN_UST_PID_FOLLOW_CHILDREN:
984#endif
985 default:
f73fabfd 986 ret = LTTNG_ERR_UND;
2f77fc4b
DG
987 goto error;
988 }
989
f73fabfd 990 ret = LTTNG_OK;
2f77fc4b
DG
991
992error:
2223c96f 993 rcu_read_unlock();
2f77fc4b
DG
994 return ret;
995}
996
997/*
998 * Command LTTNG_DISABLE_ALL_EVENT processed by the client thread.
999 */
1000int cmd_disable_event_all(struct ltt_session *session, int domain,
1001 char *channel_name)
1002{
1003 int ret;
1004
2223c96f
DG
1005 rcu_read_lock();
1006
2f77fc4b
DG
1007 switch (domain) {
1008 case LTTNG_DOMAIN_KERNEL:
1009 {
1010 struct ltt_kernel_session *ksess;
1011 struct ltt_kernel_channel *kchan;
1012
1013 ksess = session->kernel_session;
1014
1015 kchan = trace_kernel_get_channel_by_name(channel_name, ksess);
1016 if (kchan == NULL) {
f73fabfd 1017 ret = LTTNG_ERR_KERN_CHAN_NOT_FOUND;
2f77fc4b
DG
1018 goto error;
1019 }
1020
d3a56674 1021 ret = event_kernel_disable_all(kchan);
f73fabfd 1022 if (ret != LTTNG_OK) {
2f77fc4b
DG
1023 goto error;
1024 }
1025
1026 kernel_wait_quiescent(kernel_tracer_fd);
1027 break;
1028 }
1029 case LTTNG_DOMAIN_UST:
1030 {
1031 struct ltt_ust_session *usess;
1032 struct ltt_ust_channel *uchan;
1033
1034 usess = session->ust_session;
1035
1036 uchan = trace_ust_find_channel_by_name(usess->domain_global.channels,
1037 channel_name);
1038 if (uchan == NULL) {
f73fabfd 1039 ret = LTTNG_ERR_UST_CHAN_NOT_FOUND;
2f77fc4b
DG
1040 goto error;
1041 }
1042
7972aab2 1043 ret = event_ust_disable_all_tracepoints(usess, uchan);
2f77fc4b
DG
1044 if (ret != 0) {
1045 goto error;
1046 }
1047
1048 DBG3("Disable all UST events in channel %s completed", channel_name);
1049
1050 break;
1051 }
1052#if 0
1053 case LTTNG_DOMAIN_UST_EXEC_NAME:
1054 case LTTNG_DOMAIN_UST_PID:
1055 case LTTNG_DOMAIN_UST_PID_FOLLOW_CHILDREN:
1056#endif
1057 default:
f73fabfd 1058 ret = LTTNG_ERR_UND;
2f77fc4b
DG
1059 goto error;
1060 }
1061
f73fabfd 1062 ret = LTTNG_OK;
2f77fc4b
DG
1063
1064error:
2223c96f 1065 rcu_read_unlock();
2f77fc4b
DG
1066 return ret;
1067}
1068
1069/*
1070 * Command LTTNG_ADD_CONTEXT processed by the client thread.
1071 */
1072int cmd_add_context(struct ltt_session *session, int domain,
601d5acf 1073 char *channel_name, struct lttng_event_context *ctx, int kwpipe)
2f77fc4b 1074{
d5979e4a 1075 int ret, chan_kern_created = 0, chan_ust_created = 0;
2f77fc4b
DG
1076
1077 switch (domain) {
1078 case LTTNG_DOMAIN_KERNEL:
979e618e
DG
1079 assert(session->kernel_session);
1080
1081 if (session->kernel_session->channel_count == 0) {
1082 /* Create default channel */
1083 ret = channel_kernel_create(session->kernel_session, NULL, kwpipe);
1084 if (ret != LTTNG_OK) {
1085 goto error;
1086 }
d5979e4a 1087 chan_kern_created = 1;
979e618e
DG
1088 }
1089
2f77fc4b 1090 /* Add kernel context to kernel tracer */
601d5acf 1091 ret = context_kernel_add(session->kernel_session, ctx, channel_name);
f73fabfd 1092 if (ret != LTTNG_OK) {
2f77fc4b
DG
1093 goto error;
1094 }
1095 break;
1096 case LTTNG_DOMAIN_UST:
1097 {
1098 struct ltt_ust_session *usess = session->ust_session;
2f77fc4b
DG
1099 assert(usess);
1100
979e618e
DG
1101 unsigned int chan_count =
1102 lttng_ht_get_count(usess->domain_global.channels);
1103 if (chan_count == 0) {
1104 struct lttng_channel *attr;
1105 /* Create default channel */
0a9c6494 1106 attr = channel_new_default_attr(domain, usess->buffer_type);
979e618e
DG
1107 if (attr == NULL) {
1108 ret = LTTNG_ERR_FATAL;
1109 goto error;
1110 }
1111
7972aab2 1112 ret = channel_ust_create(usess, attr, usess->buffer_type);
979e618e
DG
1113 if (ret != LTTNG_OK) {
1114 free(attr);
1115 goto error;
1116 }
1117 free(attr);
d5979e4a 1118 chan_ust_created = 1;
979e618e
DG
1119 }
1120
601d5acf 1121 ret = context_ust_add(usess, domain, ctx, channel_name);
f73fabfd 1122 if (ret != LTTNG_OK) {
2f77fc4b
DG
1123 goto error;
1124 }
1125 break;
1126 }
1127#if 0
1128 case LTTNG_DOMAIN_UST_EXEC_NAME:
1129 case LTTNG_DOMAIN_UST_PID:
1130 case LTTNG_DOMAIN_UST_PID_FOLLOW_CHILDREN:
1131#endif
1132 default:
f73fabfd 1133 ret = LTTNG_ERR_UND;
2f77fc4b
DG
1134 goto error;
1135 }
1136
d5979e4a 1137 return LTTNG_OK;
2f77fc4b
DG
1138
1139error:
d5979e4a
DG
1140 if (chan_kern_created) {
1141 struct ltt_kernel_channel *kchan =
1142 trace_kernel_get_channel_by_name(DEFAULT_CHANNEL_NAME,
1143 session->kernel_session);
1144 /* Created previously, this should NOT fail. */
1145 assert(kchan);
1146 kernel_destroy_channel(kchan);
1147 }
1148
1149 if (chan_ust_created) {
1150 struct ltt_ust_channel *uchan =
1151 trace_ust_find_channel_by_name(
1152 session->ust_session->domain_global.channels,
1153 DEFAULT_CHANNEL_NAME);
1154 /* Created previously, this should NOT fail. */
1155 assert(uchan);
1156 /* Remove from the channel list of the session. */
1157 trace_ust_delete_channel(session->ust_session->domain_global.channels,
1158 uchan);
1159 trace_ust_destroy_channel(uchan);
1160 }
2f77fc4b
DG
1161 return ret;
1162}
1163
2f77fc4b
DG
1164/*
1165 * Command LTTNG_ENABLE_EVENT processed by the client thread.
1166 */
7972aab2 1167int cmd_enable_event(struct ltt_session *session, struct lttng_domain *domain,
025faf73
DG
1168 char *channel_name, struct lttng_event *event,
1169 struct lttng_filter_bytecode *filter, int wpipe)
2f77fc4b 1170{
e5f5db7f 1171 int ret, channel_created = 0;
2f77fc4b
DG
1172 struct lttng_channel *attr;
1173
1174 assert(session);
1175 assert(event);
1176 assert(channel_name);
1177
2223c96f
DG
1178 rcu_read_lock();
1179
7972aab2 1180 switch (domain->type) {
2f77fc4b
DG
1181 case LTTNG_DOMAIN_KERNEL:
1182 {
1183 struct ltt_kernel_channel *kchan;
1184
1185 kchan = trace_kernel_get_channel_by_name(channel_name,
1186 session->kernel_session);
1187 if (kchan == NULL) {
0a9c6494
DG
1188 attr = channel_new_default_attr(LTTNG_DOMAIN_KERNEL,
1189 LTTNG_BUFFER_GLOBAL);
2f77fc4b 1190 if (attr == NULL) {
f73fabfd 1191 ret = LTTNG_ERR_FATAL;
2f77fc4b
DG
1192 goto error;
1193 }
1194 strncpy(attr->name, channel_name, sizeof(attr->name));
1195
1196 ret = cmd_enable_channel(session, domain, attr, wpipe);
f73fabfd 1197 if (ret != LTTNG_OK) {
2f77fc4b
DG
1198 free(attr);
1199 goto error;
1200 }
1201 free(attr);
e5f5db7f
DG
1202
1203 channel_created = 1;
2f77fc4b
DG
1204 }
1205
1206 /* Get the newly created kernel channel pointer */
1207 kchan = trace_kernel_get_channel_by_name(channel_name,
1208 session->kernel_session);
1209 if (kchan == NULL) {
1210 /* This sould not happen... */
f73fabfd 1211 ret = LTTNG_ERR_FATAL;
2f77fc4b
DG
1212 goto error;
1213 }
1214
d3a56674 1215 ret = event_kernel_enable_tracepoint(kchan, event);
f73fabfd 1216 if (ret != LTTNG_OK) {
e5f5db7f
DG
1217 if (channel_created) {
1218 /* Let's not leak a useless channel. */
1219 kernel_destroy_channel(kchan);
1220 }
2f77fc4b
DG
1221 goto error;
1222 }
1223
1224 kernel_wait_quiescent(kernel_tracer_fd);
1225 break;
1226 }
1227 case LTTNG_DOMAIN_UST:
1228 {
1229 struct ltt_ust_channel *uchan;
1230 struct ltt_ust_session *usess = session->ust_session;
1231
1232 assert(usess);
1233
1234 /* Get channel from global UST domain */
1235 uchan = trace_ust_find_channel_by_name(usess->domain_global.channels,
1236 channel_name);
1237 if (uchan == NULL) {
1238 /* Create default channel */
0a9c6494
DG
1239 attr = channel_new_default_attr(LTTNG_DOMAIN_UST,
1240 usess->buffer_type);
2f77fc4b 1241 if (attr == NULL) {
f73fabfd 1242 ret = LTTNG_ERR_FATAL;
2f77fc4b
DG
1243 goto error;
1244 }
1245 strncpy(attr->name, channel_name, sizeof(attr->name));
1246
1247 ret = cmd_enable_channel(session, domain, attr, wpipe);
f73fabfd 1248 if (ret != LTTNG_OK) {
2f77fc4b
DG
1249 free(attr);
1250 goto error;
1251 }
1252 free(attr);
1253
1254 /* Get the newly created channel reference back */
1255 uchan = trace_ust_find_channel_by_name(
1256 usess->domain_global.channels, channel_name);
1257 assert(uchan);
1258 }
1259
1260 /* At this point, the session and channel exist on the tracer */
7972aab2 1261 ret = event_ust_enable_tracepoint(usess, uchan, event, filter);
f73fabfd 1262 if (ret != LTTNG_OK) {
2f77fc4b
DG
1263 goto error;
1264 }
1265 break;
1266 }
1267#if 0
1268 case LTTNG_DOMAIN_UST_EXEC_NAME:
1269 case LTTNG_DOMAIN_UST_PID:
1270 case LTTNG_DOMAIN_UST_PID_FOLLOW_CHILDREN:
1271#endif
1272 default:
f73fabfd 1273 ret = LTTNG_ERR_UND;
2f77fc4b
DG
1274 goto error;
1275 }
1276
f73fabfd 1277 ret = LTTNG_OK;
2f77fc4b
DG
1278
1279error:
2223c96f 1280 rcu_read_unlock();
2f77fc4b
DG
1281 return ret;
1282}
1283
1284/*
1285 * Command LTTNG_ENABLE_ALL_EVENT processed by the client thread.
1286 */
7972aab2
DG
1287int cmd_enable_event_all(struct ltt_session *session,
1288 struct lttng_domain *domain, char *channel_name, int event_type,
025faf73 1289 struct lttng_filter_bytecode *filter, int wpipe)
2f77fc4b
DG
1290{
1291 int ret;
1292 struct lttng_channel *attr;
1293
1294 assert(session);
1295 assert(channel_name);
1296
2223c96f
DG
1297 rcu_read_lock();
1298
7972aab2 1299 switch (domain->type) {
2f77fc4b
DG
1300 case LTTNG_DOMAIN_KERNEL:
1301 {
1302 struct ltt_kernel_channel *kchan;
1303
1304 assert(session->kernel_session);
1305
1306 kchan = trace_kernel_get_channel_by_name(channel_name,
1307 session->kernel_session);
1308 if (kchan == NULL) {
1309 /* Create default channel */
0a9c6494
DG
1310 attr = channel_new_default_attr(LTTNG_DOMAIN_KERNEL,
1311 LTTNG_BUFFER_GLOBAL);
2f77fc4b 1312 if (attr == NULL) {
f73fabfd 1313 ret = LTTNG_ERR_FATAL;
2f77fc4b
DG
1314 goto error;
1315 }
1316 strncpy(attr->name, channel_name, sizeof(attr->name));
1317
1318 ret = cmd_enable_channel(session, domain, attr, wpipe);
f73fabfd 1319 if (ret != LTTNG_OK) {
2f77fc4b
DG
1320 free(attr);
1321 goto error;
1322 }
1323 free(attr);
1324
1325 /* Get the newly created kernel channel pointer */
1326 kchan = trace_kernel_get_channel_by_name(channel_name,
1327 session->kernel_session);
1328 assert(kchan);
1329 }
1330
1331 switch (event_type) {
1332 case LTTNG_EVENT_SYSCALL:
d3a56674 1333 ret = event_kernel_enable_all_syscalls(kchan, kernel_tracer_fd);
2f77fc4b
DG
1334 break;
1335 case LTTNG_EVENT_TRACEPOINT:
1336 /*
1337 * This call enables all LTTNG_KERNEL_TRACEPOINTS and
1338 * events already registered to the channel.
1339 */
d3a56674 1340 ret = event_kernel_enable_all_tracepoints(kchan, kernel_tracer_fd);
2f77fc4b
DG
1341 break;
1342 case LTTNG_EVENT_ALL:
1343 /* Enable syscalls and tracepoints */
d3a56674 1344 ret = event_kernel_enable_all(kchan, kernel_tracer_fd);
2f77fc4b
DG
1345 break;
1346 default:
f73fabfd 1347 ret = LTTNG_ERR_KERN_ENABLE_FAIL;
2f77fc4b
DG
1348 goto error;
1349 }
1350
1351 /* Manage return value */
f73fabfd 1352 if (ret != LTTNG_OK) {
e5f5db7f
DG
1353 /*
1354 * On error, cmd_enable_channel call will take care of destroying
1355 * the created channel if it was needed.
1356 */
2f77fc4b
DG
1357 goto error;
1358 }
1359
1360 kernel_wait_quiescent(kernel_tracer_fd);
1361 break;
1362 }
1363 case LTTNG_DOMAIN_UST:
1364 {
1365 struct ltt_ust_channel *uchan;
1366 struct ltt_ust_session *usess = session->ust_session;
1367
1368 assert(usess);
1369
1370 /* Get channel from global UST domain */
1371 uchan = trace_ust_find_channel_by_name(usess->domain_global.channels,
1372 channel_name);
1373 if (uchan == NULL) {
1374 /* Create default channel */
0a9c6494
DG
1375 attr = channel_new_default_attr(LTTNG_DOMAIN_UST,
1376 usess->buffer_type);
2f77fc4b 1377 if (attr == NULL) {
f73fabfd 1378 ret = LTTNG_ERR_FATAL;
2f77fc4b
DG
1379 goto error;
1380 }
1381 strncpy(attr->name, channel_name, sizeof(attr->name));
1382
1383 ret = cmd_enable_channel(session, domain, attr, wpipe);
f73fabfd 1384 if (ret != LTTNG_OK) {
2f77fc4b
DG
1385 free(attr);
1386 goto error;
1387 }
1388 free(attr);
1389
1390 /* Get the newly created channel reference back */
1391 uchan = trace_ust_find_channel_by_name(
1392 usess->domain_global.channels, channel_name);
1393 assert(uchan);
1394 }
1395
1396 /* At this point, the session and channel exist on the tracer */
1397
1398 switch (event_type) {
1399 case LTTNG_EVENT_ALL:
1400 case LTTNG_EVENT_TRACEPOINT:
7972aab2 1401 ret = event_ust_enable_all_tracepoints(usess, uchan, filter);
f73fabfd 1402 if (ret != LTTNG_OK) {
2f77fc4b
DG
1403 goto error;
1404 }
1405 break;
1406 default:
f73fabfd 1407 ret = LTTNG_ERR_UST_ENABLE_FAIL;
2f77fc4b
DG
1408 goto error;
1409 }
1410
1411 /* Manage return value */
f73fabfd 1412 if (ret != LTTNG_OK) {
2f77fc4b
DG
1413 goto error;
1414 }
1415
1416 break;
1417 }
1418#if 0
1419 case LTTNG_DOMAIN_UST_EXEC_NAME:
1420 case LTTNG_DOMAIN_UST_PID:
1421 case LTTNG_DOMAIN_UST_PID_FOLLOW_CHILDREN:
1422#endif
1423 default:
f73fabfd 1424 ret = LTTNG_ERR_UND;
2f77fc4b
DG
1425 goto error;
1426 }
1427
f73fabfd 1428 ret = LTTNG_OK;
2f77fc4b
DG
1429
1430error:
2223c96f 1431 rcu_read_unlock();
2f77fc4b
DG
1432 return ret;
1433}
1434
1435
1436/*
1437 * Command LTTNG_LIST_TRACEPOINTS processed by the client thread.
1438 */
1439ssize_t cmd_list_tracepoints(int domain, struct lttng_event **events)
1440{
1441 int ret;
1442 ssize_t nb_events = 0;
1443
1444 switch (domain) {
1445 case LTTNG_DOMAIN_KERNEL:
1446 nb_events = kernel_list_events(kernel_tracer_fd, events);
1447 if (nb_events < 0) {
f73fabfd 1448 ret = LTTNG_ERR_KERN_LIST_FAIL;
2f77fc4b
DG
1449 goto error;
1450 }
1451 break;
1452 case LTTNG_DOMAIN_UST:
1453 nb_events = ust_app_list_events(events);
1454 if (nb_events < 0) {
f73fabfd 1455 ret = LTTNG_ERR_UST_LIST_FAIL;
2f77fc4b
DG
1456 goto error;
1457 }
1458 break;
1459 default:
f73fabfd 1460 ret = LTTNG_ERR_UND;
2f77fc4b
DG
1461 goto error;
1462 }
1463
1464 return nb_events;
1465
1466error:
1467 /* Return negative value to differentiate return code */
1468 return -ret;
1469}
1470
1471/*
1472 * Command LTTNG_LIST_TRACEPOINT_FIELDS processed by the client thread.
1473 */
1474ssize_t cmd_list_tracepoint_fields(int domain,
1475 struct lttng_event_field **fields)
1476{
1477 int ret;
1478 ssize_t nb_fields = 0;
1479
1480 switch (domain) {
1481 case LTTNG_DOMAIN_UST:
1482 nb_fields = ust_app_list_event_fields(fields);
1483 if (nb_fields < 0) {
f73fabfd 1484 ret = LTTNG_ERR_UST_LIST_FAIL;
2f77fc4b
DG
1485 goto error;
1486 }
1487 break;
1488 case LTTNG_DOMAIN_KERNEL:
1489 default: /* fall-through */
f73fabfd 1490 ret = LTTNG_ERR_UND;
2f77fc4b
DG
1491 goto error;
1492 }
1493
1494 return nb_fields;
1495
1496error:
1497 /* Return negative value to differentiate return code */
1498 return -ret;
1499}
1500
1501/*
1502 * Command LTTNG_START_TRACE processed by the client thread.
1503 */
1504int cmd_start_trace(struct ltt_session *session)
1505{
1506 int ret;
1507 struct ltt_kernel_session *ksession;
1508 struct ltt_ust_session *usess;
2f77fc4b
DG
1509
1510 assert(session);
1511
1512 /* Ease our life a bit ;) */
1513 ksession = session->kernel_session;
1514 usess = session->ust_session;
1515
1516 if (session->enabled) {
1517 /* Already started. */
f73fabfd 1518 ret = LTTNG_ERR_TRACE_ALREADY_STARTED;
2f77fc4b
DG
1519 goto error;
1520 }
1521
1522 session->enabled = 1;
1523
2f77fc4b
DG
1524 /* Kernel tracing */
1525 if (ksession != NULL) {
9b6c7ec5
DG
1526 ret = start_kernel_session(ksession, kernel_tracer_fd);
1527 if (ret != LTTNG_OK) {
2f77fc4b
DG
1528 goto error;
1529 }
2f77fc4b
DG
1530 }
1531
1532 /* Flag session that trace should start automatically */
1533 if (usess) {
1534 usess->start_trace = 1;
1535
1536 ret = ust_app_start_trace_all(usess);
1537 if (ret < 0) {
f73fabfd 1538 ret = LTTNG_ERR_UST_START_FAIL;
2f77fc4b
DG
1539 goto error;
1540 }
1541 }
1542
9b6c7ec5
DG
1543 session->started = 1;
1544
f73fabfd 1545 ret = LTTNG_OK;
2f77fc4b
DG
1546
1547error:
1548 return ret;
1549}
1550
1551/*
1552 * Command LTTNG_STOP_TRACE processed by the client thread.
1553 */
1554int cmd_stop_trace(struct ltt_session *session)
1555{
1556 int ret;
1557 struct ltt_kernel_channel *kchan;
1558 struct ltt_kernel_session *ksession;
1559 struct ltt_ust_session *usess;
1560
1561 assert(session);
1562
1563 /* Short cut */
1564 ksession = session->kernel_session;
1565 usess = session->ust_session;
1566
1567 if (!session->enabled) {
f73fabfd 1568 ret = LTTNG_ERR_TRACE_ALREADY_STOPPED;
2f77fc4b
DG
1569 goto error;
1570 }
1571
1572 session->enabled = 0;
1573
1574 /* Kernel tracer */
d39829a1 1575 if (ksession && ksession->started) {
2f77fc4b
DG
1576 DBG("Stop kernel tracing");
1577
1578 /* Flush metadata if exist */
1579 if (ksession->metadata_stream_fd >= 0) {
1580 ret = kernel_metadata_flush_buffer(ksession->metadata_stream_fd);
1581 if (ret < 0) {
1582 ERR("Kernel metadata flush failed");
1583 }
1584 }
1585
1586 /* Flush all buffers before stopping */
1587 cds_list_for_each_entry(kchan, &ksession->channel_list.head, list) {
1588 ret = kernel_flush_buffer(kchan);
1589 if (ret < 0) {
1590 ERR("Kernel flush buffer error");
1591 }
1592 }
1593
1594 ret = kernel_stop_session(ksession);
1595 if (ret < 0) {
f73fabfd 1596 ret = LTTNG_ERR_KERN_STOP_FAIL;
2f77fc4b
DG
1597 goto error;
1598 }
1599
1600 kernel_wait_quiescent(kernel_tracer_fd);
9b6c7ec5
DG
1601
1602 ksession->started = 0;
2f77fc4b
DG
1603 }
1604
d39829a1 1605 if (usess && usess->start_trace) {
2f77fc4b
DG
1606 usess->start_trace = 0;
1607
1608 ret = ust_app_stop_trace_all(usess);
1609 if (ret < 0) {
f73fabfd 1610 ret = LTTNG_ERR_UST_STOP_FAIL;
2f77fc4b
DG
1611 goto error;
1612 }
1613 }
1614
f73fabfd 1615 ret = LTTNG_OK;
2f77fc4b
DG
1616
1617error:
1618 return ret;
1619}
1620
1621/*
1622 * Command LTTNG_SET_CONSUMER_URI processed by the client thread.
1623 */
1624int cmd_set_consumer_uri(int domain, struct ltt_session *session,
1625 size_t nb_uri, struct lttng_uri *uris)
1626{
1627 int ret, i;
1628 struct ltt_kernel_session *ksess = session->kernel_session;
1629 struct ltt_ust_session *usess = session->ust_session;
1630 struct consumer_output *consumer = NULL;
1631
1632 assert(session);
1633 assert(uris);
1634 assert(nb_uri > 0);
1635
1636 /* Can't enable consumer after session started. */
1637 if (session->enabled) {
f73fabfd 1638 ret = LTTNG_ERR_TRACE_ALREADY_STARTED;
2f77fc4b
DG
1639 goto error;
1640 }
1641
2f77fc4b
DG
1642 /*
1643 * This case switch makes sure the domain session has a temporary consumer
1644 * so the URL can be set.
1645 */
1646 switch (domain) {
1647 case 0:
1648 /* Code flow error. A session MUST always have a consumer object */
1649 assert(session->consumer);
1650 /*
1651 * The URL will be added to the tracing session consumer instead of a
1652 * specific domain consumer.
1653 */
1654 consumer = session->consumer;
1655 break;
1656 case LTTNG_DOMAIN_KERNEL:
1657 /* Code flow error if we don't have a kernel session here. */
1658 assert(ksess);
785d2d0d
DG
1659 assert(ksess->consumer);
1660 consumer = ksess->consumer;
2f77fc4b
DG
1661 break;
1662 case LTTNG_DOMAIN_UST:
1663 /* Code flow error if we don't have a kernel session here. */
1664 assert(usess);
785d2d0d
DG
1665 assert(usess->consumer);
1666 consumer = usess->consumer;
2f77fc4b
DG
1667 break;
1668 }
1669
1670 for (i = 0; i < nb_uri; i++) {
2f77fc4b 1671 ret = add_uri_to_consumer(consumer, &uris[i], domain, session->name);
a74934ba 1672 if (ret != LTTNG_OK) {
2f77fc4b
DG
1673 goto error;
1674 }
2f77fc4b
DG
1675 }
1676
1677 /* All good! */
f73fabfd 1678 ret = LTTNG_OK;
2f77fc4b
DG
1679
1680error:
1681 return ret;
1682}
1683
1684/*
1685 * Command LTTNG_CREATE_SESSION processed by the client thread.
1686 */
1687int cmd_create_session_uri(char *name, struct lttng_uri *uris,
1688 size_t nb_uri, lttng_sock_cred *creds)
1689{
1690 int ret;
2f77fc4b
DG
1691 struct ltt_session *session;
1692
1693 assert(name);
1694
785d2d0d
DG
1695 /* No URIs is not possible. */
1696 if (uris == NULL) {
1697 ret = LTTNG_ERR_SESSION_FAIL;
1698 goto session_error;
1699 }
1700
2f77fc4b
DG
1701 /*
1702 * Verify if the session already exist
1703 *
1704 * XXX: There is no need for the session lock list here since the caller
1705 * (process_client_msg) is holding it. We might want to change that so a
1706 * single command does not lock the entire session list.
1707 */
1708 session = session_find_by_name(name);
1709 if (session != NULL) {
f73fabfd 1710 ret = LTTNG_ERR_EXIST_SESS;
2f77fc4b
DG
1711 goto find_error;
1712 }
1713
1714 /* Create tracing session in the registry */
dec56f6c 1715 ret = session_create(name, LTTNG_SOCK_GET_UID_CRED(creds),
2f77fc4b 1716 LTTNG_SOCK_GET_GID_CRED(creds));
f73fabfd 1717 if (ret != LTTNG_OK) {
2f77fc4b
DG
1718 goto session_error;
1719 }
1720
1721 /*
1722 * Get the newly created session pointer back
1723 *
1724 * XXX: There is no need for the session lock list here since the caller
1725 * (process_client_msg) is holding it. We might want to change that so a
1726 * single command does not lock the entire session list.
1727 */
1728 session = session_find_by_name(name);
1729 assert(session);
1730
1731 /* Create default consumer output for the session not yet created. */
1732 session->consumer = consumer_create_output(CONSUMER_DST_LOCAL);
1733 if (session->consumer == NULL) {
f73fabfd 1734 ret = LTTNG_ERR_FATAL;
2f77fc4b
DG
1735 goto consumer_error;
1736 }
1737
2f77fc4b 1738 ret = cmd_set_consumer_uri(0, session, nb_uri, uris);
f73fabfd 1739 if (ret != LTTNG_OK) {
2f77fc4b
DG
1740 goto consumer_error;
1741 }
1742
1743 session->consumer->enabled = 1;
1744
f73fabfd 1745 return LTTNG_OK;
2f77fc4b
DG
1746
1747consumer_error:
1748 session_destroy(session);
1749session_error:
1750find_error:
1751 return ret;
1752}
1753
1754/*
1755 * Command LTTNG_DESTROY_SESSION processed by the client thread.
1756 */
1757int cmd_destroy_session(struct ltt_session *session, int wpipe)
1758{
1759 int ret;
1760 struct ltt_ust_session *usess;
1761 struct ltt_kernel_session *ksess;
1762
1763 /* Safety net */
1764 assert(session);
1765
1766 usess = session->ust_session;
1767 ksess = session->kernel_session;
1768
1769 /* Clean kernel session teardown */
1770 kernel_destroy_session(ksess);
1771
1772 /* UST session teardown */
1773 if (usess) {
1774 /* Close any relayd session */
1775 consumer_output_send_destroy_relayd(usess->consumer);
1776
1777 /* Destroy every UST application related to this session. */
1778 ret = ust_app_destroy_trace_all(usess);
1779 if (ret) {
1780 ERR("Error in ust_app_destroy_trace_all");
1781 }
1782
1783 /* Clean up the rest. */
1784 trace_ust_destroy_session(usess);
1785 }
1786
1787 /*
1788 * Must notify the kernel thread here to update it's poll set in order to
1789 * remove the channel(s)' fd just destroyed.
1790 */
1791 ret = notify_thread_pipe(wpipe);
1792 if (ret < 0) {
1793 PERROR("write kernel poll pipe");
1794 }
1795
1796 ret = session_destroy(session);
1797
1798 return ret;
1799}
1800
1801/*
1802 * Command LTTNG_CALIBRATE processed by the client thread.
1803 */
1804int cmd_calibrate(int domain, struct lttng_calibrate *calibrate)
1805{
1806 int ret;
1807
1808 switch (domain) {
1809 case LTTNG_DOMAIN_KERNEL:
1810 {
1811 struct lttng_kernel_calibrate kcalibrate;
1812
1813 kcalibrate.type = calibrate->type;
1814 ret = kernel_calibrate(kernel_tracer_fd, &kcalibrate);
1815 if (ret < 0) {
f73fabfd 1816 ret = LTTNG_ERR_KERN_ENABLE_FAIL;
2f77fc4b
DG
1817 goto error;
1818 }
1819 break;
1820 }
1821 case LTTNG_DOMAIN_UST:
1822 {
1823 struct lttng_ust_calibrate ucalibrate;
1824
1825 ucalibrate.type = calibrate->type;
1826 ret = ust_app_calibrate_glb(&ucalibrate);
1827 if (ret < 0) {
f73fabfd 1828 ret = LTTNG_ERR_UST_CALIBRATE_FAIL;
2f77fc4b
DG
1829 goto error;
1830 }
1831 break;
1832 }
1833 default:
f73fabfd 1834 ret = LTTNG_ERR_UND;
2f77fc4b
DG
1835 goto error;
1836 }
1837
f73fabfd 1838 ret = LTTNG_OK;
2f77fc4b
DG
1839
1840error:
1841 return ret;
1842}
1843
1844/*
1845 * Command LTTNG_REGISTER_CONSUMER processed by the client thread.
1846 */
1847int cmd_register_consumer(struct ltt_session *session, int domain,
1848 const char *sock_path, struct consumer_data *cdata)
1849{
1850 int ret, sock;
dd81b457 1851 struct consumer_socket *socket = NULL;
2f77fc4b
DG
1852
1853 assert(session);
1854 assert(cdata);
1855 assert(sock_path);
1856
1857 switch (domain) {
1858 case LTTNG_DOMAIN_KERNEL:
1859 {
1860 struct ltt_kernel_session *ksess = session->kernel_session;
1861
1862 assert(ksess);
1863
1864 /* Can't register a consumer if there is already one */
1865 if (ksess->consumer_fds_sent != 0) {
f73fabfd 1866 ret = LTTNG_ERR_KERN_CONSUMER_FAIL;
2f77fc4b
DG
1867 goto error;
1868 }
1869
1870 sock = lttcomm_connect_unix_sock(sock_path);
1871 if (sock < 0) {
f73fabfd 1872 ret = LTTNG_ERR_CONNECT_FAIL;
2f77fc4b
DG
1873 goto error;
1874 }
1875
1876 socket = consumer_allocate_socket(sock);
1877 if (socket == NULL) {
f66c074c
DG
1878 ret = close(sock);
1879 if (ret < 0) {
1880 PERROR("close register consumer");
1881 }
f73fabfd 1882 ret = LTTNG_ERR_FATAL;
2f77fc4b
DG
1883 goto error;
1884 }
1885
1886 socket->lock = zmalloc(sizeof(pthread_mutex_t));
1887 if (socket->lock == NULL) {
1888 PERROR("zmalloc pthread mutex");
f73fabfd 1889 ret = LTTNG_ERR_FATAL;
2f77fc4b
DG
1890 goto error;
1891 }
1892 pthread_mutex_init(socket->lock, NULL);
1893 socket->registered = 1;
1894
1895 rcu_read_lock();
1896 consumer_add_socket(socket, ksess->consumer);
1897 rcu_read_unlock();
1898
1899 pthread_mutex_lock(&cdata->pid_mutex);
1900 cdata->pid = -1;
1901 pthread_mutex_unlock(&cdata->pid_mutex);
1902
1903 break;
1904 }
1905 default:
1906 /* TODO: Userspace tracing */
f73fabfd 1907 ret = LTTNG_ERR_UND;
2f77fc4b
DG
1908 goto error;
1909 }
1910
dd81b457 1911 return LTTNG_OK;
2f77fc4b
DG
1912
1913error:
dd81b457
DG
1914 if (socket) {
1915 consumer_destroy_socket(socket);
1916 }
2f77fc4b
DG
1917 return ret;
1918}
1919
1920/*
1921 * Command LTTNG_LIST_DOMAINS processed by the client thread.
1922 */
1923ssize_t cmd_list_domains(struct ltt_session *session,
1924 struct lttng_domain **domains)
1925{
1926 int ret, index = 0;
1927 ssize_t nb_dom = 0;
1928
1929 if (session->kernel_session != NULL) {
1930 DBG3("Listing domains found kernel domain");
1931 nb_dom++;
1932 }
1933
1934 if (session->ust_session != NULL) {
1935 DBG3("Listing domains found UST global domain");
1936 nb_dom++;
1937 }
1938
1939 *domains = zmalloc(nb_dom * sizeof(struct lttng_domain));
1940 if (*domains == NULL) {
f73fabfd 1941 ret = LTTNG_ERR_FATAL;
2f77fc4b
DG
1942 goto error;
1943 }
1944
1945 if (session->kernel_session != NULL) {
1946 (*domains)[index].type = LTTNG_DOMAIN_KERNEL;
1947 index++;
1948 }
1949
1950 if (session->ust_session != NULL) {
1951 (*domains)[index].type = LTTNG_DOMAIN_UST;
88c5f0d8 1952 (*domains)[index].buf_type = session->ust_session->buffer_type;
2f77fc4b
DG
1953 index++;
1954 }
1955
1956 return nb_dom;
1957
1958error:
f73fabfd
DG
1959 /* Return negative value to differentiate return code */
1960 return -ret;
2f77fc4b
DG
1961}
1962
1963
1964/*
1965 * Command LTTNG_LIST_CHANNELS processed by the client thread.
1966 */
1967ssize_t cmd_list_channels(int domain, struct ltt_session *session,
1968 struct lttng_channel **channels)
1969{
1970 int ret;
1971 ssize_t nb_chan = 0;
1972
1973 switch (domain) {
1974 case LTTNG_DOMAIN_KERNEL:
1975 if (session->kernel_session != NULL) {
1976 nb_chan = session->kernel_session->channel_count;
1977 }
1978 DBG3("Number of kernel channels %zd", nb_chan);
c7d620a2
DG
1979 if (nb_chan <= 0) {
1980 ret = LTTNG_ERR_KERN_CHAN_NOT_FOUND;
1981 }
2f77fc4b
DG
1982 break;
1983 case LTTNG_DOMAIN_UST:
1984 if (session->ust_session != NULL) {
1985 nb_chan = lttng_ht_get_count(
1986 session->ust_session->domain_global.channels);
1987 }
1988 DBG3("Number of UST global channels %zd", nb_chan);
c7d620a2
DG
1989 if (nb_chan <= 0) {
1990 ret = LTTNG_ERR_UST_CHAN_NOT_FOUND;
1991 }
2f77fc4b
DG
1992 break;
1993 default:
1994 *channels = NULL;
f73fabfd 1995 ret = LTTNG_ERR_UND;
2f77fc4b
DG
1996 goto error;
1997 }
1998
1999 if (nb_chan > 0) {
2000 *channels = zmalloc(nb_chan * sizeof(struct lttng_channel));
2001 if (*channels == NULL) {
f73fabfd 2002 ret = LTTNG_ERR_FATAL;
2f77fc4b
DG
2003 goto error;
2004 }
2005
2006 list_lttng_channels(domain, session, *channels);
2007 } else {
2008 *channels = NULL;
c7d620a2
DG
2009 /* Ret value was set in the domain switch case */
2010 goto error;
2f77fc4b
DG
2011 }
2012
2013 return nb_chan;
2014
2015error:
f73fabfd
DG
2016 /* Return negative value to differentiate return code */
2017 return -ret;
2f77fc4b
DG
2018}
2019
2020/*
2021 * Command LTTNG_LIST_EVENTS processed by the client thread.
2022 */
2023ssize_t cmd_list_events(int domain, struct ltt_session *session,
2024 char *channel_name, struct lttng_event **events)
2025{
2026 int ret = 0;
2027 ssize_t nb_event = 0;
2028
2029 switch (domain) {
2030 case LTTNG_DOMAIN_KERNEL:
2031 if (session->kernel_session != NULL) {
2032 nb_event = list_lttng_kernel_events(channel_name,
2033 session->kernel_session, events);
2034 }
2035 break;
2036 case LTTNG_DOMAIN_UST:
2037 {
2038 if (session->ust_session != NULL) {
2039 nb_event = list_lttng_ust_global_events(channel_name,
2040 &session->ust_session->domain_global, events);
2041 }
2042 break;
2043 }
2044 default:
f73fabfd 2045 ret = LTTNG_ERR_UND;
2f77fc4b
DG
2046 goto error;
2047 }
2048
f73fabfd 2049 return nb_event;
2f77fc4b
DG
2050
2051error:
f73fabfd
DG
2052 /* Return negative value to differentiate return code */
2053 return -ret;
2f77fc4b
DG
2054}
2055
2056/*
2057 * Using the session list, filled a lttng_session array to send back to the
2058 * client for session listing.
2059 *
2060 * The session list lock MUST be acquired before calling this function. Use
2061 * session_lock_list() and session_unlock_list().
2062 */
2063void cmd_list_lttng_sessions(struct lttng_session *sessions, uid_t uid,
2064 gid_t gid)
2065{
2066 int ret;
2067 unsigned int i = 0;
2068 struct ltt_session *session;
2069 struct ltt_session_list *list = session_get_list();
2070
2071 DBG("Getting all available session for UID %d GID %d",
2072 uid, gid);
2073 /*
2074 * Iterate over session list and append data after the control struct in
2075 * the buffer.
2076 */
2077 cds_list_for_each_entry(session, &list->head, list) {
2078 /*
2079 * Only list the sessions the user can control.
2080 */
2081 if (!session_access_ok(session, uid, gid)) {
2082 continue;
2083 }
2084
2085 struct ltt_kernel_session *ksess = session->kernel_session;
2086 struct ltt_ust_session *usess = session->ust_session;
2087
2088 if (session->consumer->type == CONSUMER_DST_NET ||
2089 (ksess && ksess->consumer->type == CONSUMER_DST_NET) ||
2090 (usess && usess->consumer->type == CONSUMER_DST_NET)) {
2091 ret = build_network_session_path(sessions[i].path,
dec56f6c 2092 sizeof(sessions[i].path), session);
2f77fc4b 2093 } else {
dec56f6c 2094 ret = snprintf(sessions[i].path, sizeof(sessions[i].path), "%s",
2f77fc4b
DG
2095 session->consumer->dst.trace_path);
2096 }
2097 if (ret < 0) {
2098 PERROR("snprintf session path");
2099 continue;
2100 }
2101
2102 strncpy(sessions[i].name, session->name, NAME_MAX);
2103 sessions[i].name[NAME_MAX - 1] = '\0';
2104 sessions[i].enabled = session->enabled;
2105 i++;
2106 }
2107}
2108
806e2684 2109/*
6d805429
DG
2110 * Command LTTNG_DATA_PENDING returning 0 if the data is NOT pending meaning
2111 * ready for trace analysis (or anykind of reader) or else 1 for pending data.
806e2684 2112 */
6d805429 2113int cmd_data_pending(struct ltt_session *session)
806e2684
DG
2114{
2115 int ret;
2116 struct ltt_kernel_session *ksess = session->kernel_session;
2117 struct ltt_ust_session *usess = session->ust_session;
2118
2119 assert(session);
2120
2121 /* Session MUST be stopped to ask for data availability. */
2122 if (session->enabled) {
2123 ret = LTTNG_ERR_SESSION_STARTED;
2124 goto error;
2125 }
2126
2127 if (ksess && ksess->consumer) {
6d805429
DG
2128 ret = consumer_is_data_pending(ksess->id, ksess->consumer);
2129 if (ret == 1) {
806e2684
DG
2130 /* Data is still being extracted for the kernel. */
2131 goto error;
2132 }
2133 }
2134
2135 if (usess && usess->consumer) {
6d805429
DG
2136 ret = consumer_is_data_pending(usess->id, usess->consumer);
2137 if (ret == 1) {
806e2684
DG
2138 /* Data is still being extracted for the kernel. */
2139 goto error;
2140 }
2141 }
2142
2143 /* Data is ready to be read by a viewer */
6d805429 2144 ret = 0;
806e2684
DG
2145
2146error:
2147 return ret;
2148}
2149
2f77fc4b
DG
2150/*
2151 * Init command subsystem.
2152 */
2153void cmd_init(void)
2154{
2155 /*
d88aee68
DG
2156 * Set network sequence index to 1 for streams to match a relayd
2157 * socket on the consumer side.
2f77fc4b 2158 */
d88aee68
DG
2159 pthread_mutex_lock(&relayd_net_seq_idx_lock);
2160 relayd_net_seq_idx = 1;
2161 pthread_mutex_unlock(&relayd_net_seq_idx_lock);
2f77fc4b
DG
2162
2163 DBG("Command subsystem initialized");
2164}
This page took 0.145517 seconds and 4 git commands to generate.