Fix: bad type for the relayd id
[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 /*
609 * On error, nullify the consumer sequence index so streams are not
610 * associated with it once sent to the consumer.
611 */
612 uatomic_set(&consumer->net_seq_index, -1);
613 }
2f77fc4b
DG
614 return ret;
615}
616
617/*
618 * Send both relayd sockets to a specific consumer and domain. This is a
619 * helper function to facilitate sending the information to the consumer for a
620 * session.
621 */
622static int send_consumer_relayd_sockets(int domain,
f50f23d9
DG
623 struct ltt_session *session, struct consumer_output *consumer,
624 struct consumer_socket *sock)
2f77fc4b 625{
dda67f6c 626 int ret = LTTNG_OK;
2f77fc4b
DG
627
628 assert(session);
629 assert(consumer);
630
2f77fc4b 631 /* Sending control relayd socket. */
ffe60014 632 if (!sock->control_sock_sent) {
c890b720 633 ret = send_consumer_relayd_socket(domain, session,
f50f23d9 634 &consumer->dst.net.control, consumer, sock);
c890b720
DG
635 if (ret != LTTNG_OK) {
636 goto error;
637 }
2f77fc4b
DG
638 }
639
640 /* Sending data relayd socket. */
ffe60014 641 if (!sock->data_sock_sent) {
c890b720 642 ret = send_consumer_relayd_socket(domain, session,
f50f23d9 643 &consumer->dst.net.data, consumer, sock);
c890b720
DG
644 if (ret != LTTNG_OK) {
645 goto error;
646 }
2f77fc4b
DG
647 }
648
2f77fc4b
DG
649error:
650 return ret;
651}
652
653/*
654 * Setup relayd connections for a tracing session. First creates the socket to
655 * the relayd and send them to the right domain consumer. Consumer type MUST be
656 * network.
657 */
ffe60014 658int cmd_setup_relayd(struct ltt_session *session)
2f77fc4b 659{
f73fabfd 660 int ret = LTTNG_OK;
2f77fc4b
DG
661 struct ltt_ust_session *usess;
662 struct ltt_kernel_session *ksess;
663 struct consumer_socket *socket;
664 struct lttng_ht_iter iter;
665
666 assert(session);
667
668 usess = session->ust_session;
669 ksess = session->kernel_session;
670
785d2d0d 671 DBG("Setting relayd for session %s", session->name);
2f77fc4b 672
e7fe706f
DG
673 rcu_read_lock();
674
2f77fc4b
DG
675 if (usess && usess->consumer && usess->consumer->type == CONSUMER_DST_NET
676 && usess->consumer->enabled) {
677 /* For each consumer socket, send relayd sockets */
678 cds_lfht_for_each_entry(usess->consumer->socks->ht, &iter.iter,
679 socket, node.node) {
680 /* Code flow error */
681 assert(socket->fd >= 0);
682
683 pthread_mutex_lock(socket->lock);
dda67f6c 684 ret = send_consumer_relayd_sockets(LTTNG_DOMAIN_UST, session,
f50f23d9 685 usess->consumer, socket);
2f77fc4b 686 pthread_mutex_unlock(socket->lock);
f73fabfd 687 if (ret != LTTNG_OK) {
2f77fc4b
DG
688 goto error;
689 }
690 }
691 }
692
693 if (ksess && ksess->consumer && ksess->consumer->type == CONSUMER_DST_NET
694 && ksess->consumer->enabled) {
695 cds_lfht_for_each_entry(ksess->consumer->socks->ht, &iter.iter,
696 socket, node.node) {
697 /* Code flow error */
698 assert(socket->fd >= 0);
699
700 pthread_mutex_lock(socket->lock);
dda67f6c 701 ret = send_consumer_relayd_sockets(LTTNG_DOMAIN_KERNEL, session,
f50f23d9 702 ksess->consumer, socket);
2f77fc4b 703 pthread_mutex_unlock(socket->lock);
f73fabfd 704 if (ret != LTTNG_OK) {
2f77fc4b
DG
705 goto error;
706 }
707 }
708 }
709
710error:
e7fe706f 711 rcu_read_unlock();
2f77fc4b
DG
712 return ret;
713}
714
9b6c7ec5
DG
715/*
716 * Start a kernel session by opening all necessary streams.
717 */
718static int start_kernel_session(struct ltt_kernel_session *ksess, int wpipe)
719{
720 int ret;
721 struct ltt_kernel_channel *kchan;
722
723 /* Open kernel metadata */
724 if (ksess->metadata == NULL) {
725 ret = kernel_open_metadata(ksess);
726 if (ret < 0) {
727 ret = LTTNG_ERR_KERN_META_FAIL;
728 goto error;
729 }
730 }
731
732 /* Open kernel metadata stream */
733 if (ksess->metadata_stream_fd < 0) {
734 ret = kernel_open_metadata_stream(ksess);
735 if (ret < 0) {
736 ERR("Kernel create metadata stream failed");
737 ret = LTTNG_ERR_KERN_STREAM_FAIL;
738 goto error;
739 }
740 }
741
742 /* For each channel */
743 cds_list_for_each_entry(kchan, &ksess->channel_list.head, list) {
744 if (kchan->stream_count == 0) {
745 ret = kernel_open_channel_stream(kchan);
746 if (ret < 0) {
747 ret = LTTNG_ERR_KERN_STREAM_FAIL;
748 goto error;
749 }
750 /* Update the stream global counter */
751 ksess->stream_count_global += ret;
752 }
753 }
754
755 /* Setup kernel consumer socket and send fds to it */
756 ret = init_kernel_tracing(ksess);
e43c41c5 757 if (ret != 0) {
9b6c7ec5
DG
758 ret = LTTNG_ERR_KERN_START_FAIL;
759 goto error;
760 }
761
762 /* This start the kernel tracing */
763 ret = kernel_start_session(ksess);
764 if (ret < 0) {
765 ret = LTTNG_ERR_KERN_START_FAIL;
766 goto error;
767 }
768
769 /* Quiescent wait after starting trace */
784303b0 770 kernel_wait_quiescent(kernel_tracer_fd);
9b6c7ec5
DG
771
772 ksess->started = 1;
773
774 ret = LTTNG_OK;
775
776error:
777 return ret;
778}
779
2f77fc4b
DG
780/*
781 * Command LTTNG_DISABLE_CHANNEL processed by the client thread.
782 */
783int cmd_disable_channel(struct ltt_session *session, int domain,
784 char *channel_name)
785{
786 int ret;
787 struct ltt_ust_session *usess;
788
789 usess = session->ust_session;
790
2223c96f
DG
791 rcu_read_lock();
792
2f77fc4b
DG
793 switch (domain) {
794 case LTTNG_DOMAIN_KERNEL:
795 {
796 ret = channel_kernel_disable(session->kernel_session,
797 channel_name);
f73fabfd 798 if (ret != LTTNG_OK) {
2f77fc4b
DG
799 goto error;
800 }
801
802 kernel_wait_quiescent(kernel_tracer_fd);
803 break;
804 }
805 case LTTNG_DOMAIN_UST:
806 {
807 struct ltt_ust_channel *uchan;
808 struct lttng_ht *chan_ht;
809
810 chan_ht = usess->domain_global.channels;
811
812 uchan = trace_ust_find_channel_by_name(chan_ht, channel_name);
813 if (uchan == NULL) {
f73fabfd 814 ret = LTTNG_ERR_UST_CHAN_NOT_FOUND;
2f77fc4b
DG
815 goto error;
816 }
817
7972aab2 818 ret = channel_ust_disable(usess, uchan);
f73fabfd 819 if (ret != LTTNG_OK) {
2f77fc4b
DG
820 goto error;
821 }
822 break;
823 }
824#if 0
825 case LTTNG_DOMAIN_UST_PID_FOLLOW_CHILDREN:
826 case LTTNG_DOMAIN_UST_EXEC_NAME:
827 case LTTNG_DOMAIN_UST_PID:
828#endif
829 default:
f73fabfd 830 ret = LTTNG_ERR_UNKNOWN_DOMAIN;
2f77fc4b
DG
831 goto error;
832 }
833
f73fabfd 834 ret = LTTNG_OK;
2f77fc4b
DG
835
836error:
2223c96f 837 rcu_read_unlock();
2f77fc4b
DG
838 return ret;
839}
840
841/*
842 * Command LTTNG_ENABLE_CHANNEL processed by the client thread.
843 *
844 * The wpipe arguments is used as a notifier for the kernel thread.
845 */
846int cmd_enable_channel(struct ltt_session *session,
7972aab2 847 struct lttng_domain *domain, struct lttng_channel *attr, int wpipe)
2f77fc4b
DG
848{
849 int ret;
850 struct ltt_ust_session *usess = session->ust_session;
851 struct lttng_ht *chan_ht;
852
853 assert(session);
854 assert(attr);
7972aab2 855 assert(domain);
2f77fc4b
DG
856
857 DBG("Enabling channel %s for session %s", attr->name, session->name);
858
2223c96f
DG
859 rcu_read_lock();
860
7972aab2 861 switch (domain->type) {
2f77fc4b
DG
862 case LTTNG_DOMAIN_KERNEL:
863 {
864 struct ltt_kernel_channel *kchan;
865
2f77fc4b
DG
866 kchan = trace_kernel_get_channel_by_name(attr->name,
867 session->kernel_session);
868 if (kchan == NULL) {
869 ret = channel_kernel_create(session->kernel_session, attr, wpipe);
870 } else {
871 ret = channel_kernel_enable(session->kernel_session, kchan);
872 }
873
f73fabfd 874 if (ret != LTTNG_OK) {
2f77fc4b
DG
875 goto error;
876 }
877
784303b0 878 kernel_wait_quiescent(kernel_tracer_fd);
9b6c7ec5
DG
879
880 /*
881 * If the session was previously started, start as well this newly
882 * created kernel session so the events/channels enabled *after* the
883 * start actually work.
884 */
885 if (session->started && !session->kernel_session->started) {
886 ret = start_kernel_session(session->kernel_session, wpipe);
887 if (ret != LTTNG_OK) {
888 goto error;
889 }
890 }
2f77fc4b
DG
891 break;
892 }
893 case LTTNG_DOMAIN_UST:
894 {
895 struct ltt_ust_channel *uchan;
896
897 chan_ht = usess->domain_global.channels;
898
899 uchan = trace_ust_find_channel_by_name(chan_ht, attr->name);
900 if (uchan == NULL) {
7972aab2 901 ret = channel_ust_create(usess, attr, domain->buf_type);
2f77fc4b 902 } else {
7972aab2 903 ret = channel_ust_enable(usess, uchan);
2f77fc4b 904 }
9b6c7ec5
DG
905
906 /* Start the UST session if the session was already started. */
907 if (session->started && !usess->start_trace) {
908 ret = ust_app_start_trace_all(usess);
909 if (ret < 0) {
910 ret = LTTNG_ERR_UST_START_FAIL;
911 goto error;
912 }
913 ret = LTTNG_OK;
914 usess->start_trace = 1;
915 }
2f77fc4b
DG
916 break;
917 }
2f77fc4b 918 default:
f73fabfd 919 ret = LTTNG_ERR_UNKNOWN_DOMAIN;
2f77fc4b
DG
920 goto error;
921 }
922
923error:
2223c96f 924 rcu_read_unlock();
2f77fc4b
DG
925 return ret;
926}
927
928
929/*
930 * Command LTTNG_DISABLE_EVENT processed by the client thread.
931 */
932int cmd_disable_event(struct ltt_session *session, int domain,
933 char *channel_name, char *event_name)
934{
935 int ret;
936
2223c96f
DG
937 rcu_read_lock();
938
2f77fc4b
DG
939 switch (domain) {
940 case LTTNG_DOMAIN_KERNEL:
941 {
942 struct ltt_kernel_channel *kchan;
943 struct ltt_kernel_session *ksess;
944
945 ksess = session->kernel_session;
946
947 kchan = trace_kernel_get_channel_by_name(channel_name, ksess);
948 if (kchan == NULL) {
f73fabfd 949 ret = LTTNG_ERR_KERN_CHAN_NOT_FOUND;
2f77fc4b
DG
950 goto error;
951 }
952
d3a56674 953 ret = event_kernel_disable_tracepoint(kchan, event_name);
f73fabfd 954 if (ret != LTTNG_OK) {
2f77fc4b
DG
955 goto error;
956 }
957
958 kernel_wait_quiescent(kernel_tracer_fd);
959 break;
960 }
961 case LTTNG_DOMAIN_UST:
962 {
963 struct ltt_ust_channel *uchan;
964 struct ltt_ust_session *usess;
965
966 usess = session->ust_session;
967
968 uchan = trace_ust_find_channel_by_name(usess->domain_global.channels,
969 channel_name);
970 if (uchan == NULL) {
f73fabfd 971 ret = LTTNG_ERR_UST_CHAN_NOT_FOUND;
2f77fc4b
DG
972 goto error;
973 }
974
7972aab2 975 ret = event_ust_disable_tracepoint(usess, uchan, event_name);
f73fabfd 976 if (ret != LTTNG_OK) {
2f77fc4b
DG
977 goto error;
978 }
979
980 DBG3("Disable UST event %s in channel %s completed", event_name,
981 channel_name);
982 break;
983 }
984#if 0
985 case LTTNG_DOMAIN_UST_EXEC_NAME:
986 case LTTNG_DOMAIN_UST_PID:
987 case LTTNG_DOMAIN_UST_PID_FOLLOW_CHILDREN:
988#endif
989 default:
f73fabfd 990 ret = LTTNG_ERR_UND;
2f77fc4b
DG
991 goto error;
992 }
993
f73fabfd 994 ret = LTTNG_OK;
2f77fc4b
DG
995
996error:
2223c96f 997 rcu_read_unlock();
2f77fc4b
DG
998 return ret;
999}
1000
1001/*
1002 * Command LTTNG_DISABLE_ALL_EVENT processed by the client thread.
1003 */
1004int cmd_disable_event_all(struct ltt_session *session, int domain,
1005 char *channel_name)
1006{
1007 int ret;
1008
2223c96f
DG
1009 rcu_read_lock();
1010
2f77fc4b
DG
1011 switch (domain) {
1012 case LTTNG_DOMAIN_KERNEL:
1013 {
1014 struct ltt_kernel_session *ksess;
1015 struct ltt_kernel_channel *kchan;
1016
1017 ksess = session->kernel_session;
1018
1019 kchan = trace_kernel_get_channel_by_name(channel_name, ksess);
1020 if (kchan == NULL) {
f73fabfd 1021 ret = LTTNG_ERR_KERN_CHAN_NOT_FOUND;
2f77fc4b
DG
1022 goto error;
1023 }
1024
d3a56674 1025 ret = event_kernel_disable_all(kchan);
f73fabfd 1026 if (ret != LTTNG_OK) {
2f77fc4b
DG
1027 goto error;
1028 }
1029
1030 kernel_wait_quiescent(kernel_tracer_fd);
1031 break;
1032 }
1033 case LTTNG_DOMAIN_UST:
1034 {
1035 struct ltt_ust_session *usess;
1036 struct ltt_ust_channel *uchan;
1037
1038 usess = session->ust_session;
1039
1040 uchan = trace_ust_find_channel_by_name(usess->domain_global.channels,
1041 channel_name);
1042 if (uchan == NULL) {
f73fabfd 1043 ret = LTTNG_ERR_UST_CHAN_NOT_FOUND;
2f77fc4b
DG
1044 goto error;
1045 }
1046
7972aab2 1047 ret = event_ust_disable_all_tracepoints(usess, uchan);
2f77fc4b
DG
1048 if (ret != 0) {
1049 goto error;
1050 }
1051
1052 DBG3("Disable all UST events in channel %s completed", channel_name);
1053
1054 break;
1055 }
1056#if 0
1057 case LTTNG_DOMAIN_UST_EXEC_NAME:
1058 case LTTNG_DOMAIN_UST_PID:
1059 case LTTNG_DOMAIN_UST_PID_FOLLOW_CHILDREN:
1060#endif
1061 default:
f73fabfd 1062 ret = LTTNG_ERR_UND;
2f77fc4b
DG
1063 goto error;
1064 }
1065
f73fabfd 1066 ret = LTTNG_OK;
2f77fc4b
DG
1067
1068error:
2223c96f 1069 rcu_read_unlock();
2f77fc4b
DG
1070 return ret;
1071}
1072
1073/*
1074 * Command LTTNG_ADD_CONTEXT processed by the client thread.
1075 */
1076int cmd_add_context(struct ltt_session *session, int domain,
601d5acf 1077 char *channel_name, struct lttng_event_context *ctx, int kwpipe)
2f77fc4b 1078{
d5979e4a 1079 int ret, chan_kern_created = 0, chan_ust_created = 0;
2f77fc4b
DG
1080
1081 switch (domain) {
1082 case LTTNG_DOMAIN_KERNEL:
979e618e
DG
1083 assert(session->kernel_session);
1084
1085 if (session->kernel_session->channel_count == 0) {
1086 /* Create default channel */
1087 ret = channel_kernel_create(session->kernel_session, NULL, kwpipe);
1088 if (ret != LTTNG_OK) {
1089 goto error;
1090 }
d5979e4a 1091 chan_kern_created = 1;
979e618e
DG
1092 }
1093
2f77fc4b 1094 /* Add kernel context to kernel tracer */
601d5acf 1095 ret = context_kernel_add(session->kernel_session, ctx, channel_name);
f73fabfd 1096 if (ret != LTTNG_OK) {
2f77fc4b
DG
1097 goto error;
1098 }
1099 break;
1100 case LTTNG_DOMAIN_UST:
1101 {
1102 struct ltt_ust_session *usess = session->ust_session;
2f77fc4b
DG
1103 assert(usess);
1104
979e618e
DG
1105 unsigned int chan_count =
1106 lttng_ht_get_count(usess->domain_global.channels);
1107 if (chan_count == 0) {
1108 struct lttng_channel *attr;
1109 /* Create default channel */
0a9c6494 1110 attr = channel_new_default_attr(domain, usess->buffer_type);
979e618e
DG
1111 if (attr == NULL) {
1112 ret = LTTNG_ERR_FATAL;
1113 goto error;
1114 }
1115
7972aab2 1116 ret = channel_ust_create(usess, attr, usess->buffer_type);
979e618e
DG
1117 if (ret != LTTNG_OK) {
1118 free(attr);
1119 goto error;
1120 }
1121 free(attr);
d5979e4a 1122 chan_ust_created = 1;
979e618e
DG
1123 }
1124
601d5acf 1125 ret = context_ust_add(usess, domain, ctx, channel_name);
f73fabfd 1126 if (ret != LTTNG_OK) {
2f77fc4b
DG
1127 goto error;
1128 }
1129 break;
1130 }
1131#if 0
1132 case LTTNG_DOMAIN_UST_EXEC_NAME:
1133 case LTTNG_DOMAIN_UST_PID:
1134 case LTTNG_DOMAIN_UST_PID_FOLLOW_CHILDREN:
1135#endif
1136 default:
f73fabfd 1137 ret = LTTNG_ERR_UND;
2f77fc4b
DG
1138 goto error;
1139 }
1140
d5979e4a 1141 return LTTNG_OK;
2f77fc4b
DG
1142
1143error:
d5979e4a
DG
1144 if (chan_kern_created) {
1145 struct ltt_kernel_channel *kchan =
1146 trace_kernel_get_channel_by_name(DEFAULT_CHANNEL_NAME,
1147 session->kernel_session);
1148 /* Created previously, this should NOT fail. */
1149 assert(kchan);
1150 kernel_destroy_channel(kchan);
1151 }
1152
1153 if (chan_ust_created) {
1154 struct ltt_ust_channel *uchan =
1155 trace_ust_find_channel_by_name(
1156 session->ust_session->domain_global.channels,
1157 DEFAULT_CHANNEL_NAME);
1158 /* Created previously, this should NOT fail. */
1159 assert(uchan);
1160 /* Remove from the channel list of the session. */
1161 trace_ust_delete_channel(session->ust_session->domain_global.channels,
1162 uchan);
1163 trace_ust_destroy_channel(uchan);
1164 }
2f77fc4b
DG
1165 return ret;
1166}
1167
2f77fc4b
DG
1168/*
1169 * Command LTTNG_ENABLE_EVENT processed by the client thread.
1170 */
7972aab2 1171int cmd_enable_event(struct ltt_session *session, struct lttng_domain *domain,
025faf73
DG
1172 char *channel_name, struct lttng_event *event,
1173 struct lttng_filter_bytecode *filter, int wpipe)
2f77fc4b 1174{
e5f5db7f 1175 int ret, channel_created = 0;
2f77fc4b
DG
1176 struct lttng_channel *attr;
1177
1178 assert(session);
1179 assert(event);
1180 assert(channel_name);
1181
2223c96f
DG
1182 rcu_read_lock();
1183
7972aab2 1184 switch (domain->type) {
2f77fc4b
DG
1185 case LTTNG_DOMAIN_KERNEL:
1186 {
1187 struct ltt_kernel_channel *kchan;
1188
1189 kchan = trace_kernel_get_channel_by_name(channel_name,
1190 session->kernel_session);
1191 if (kchan == NULL) {
0a9c6494
DG
1192 attr = channel_new_default_attr(LTTNG_DOMAIN_KERNEL,
1193 LTTNG_BUFFER_GLOBAL);
2f77fc4b 1194 if (attr == NULL) {
f73fabfd 1195 ret = LTTNG_ERR_FATAL;
2f77fc4b
DG
1196 goto error;
1197 }
1198 strncpy(attr->name, channel_name, sizeof(attr->name));
1199
1200 ret = cmd_enable_channel(session, domain, attr, wpipe);
f73fabfd 1201 if (ret != LTTNG_OK) {
2f77fc4b
DG
1202 free(attr);
1203 goto error;
1204 }
1205 free(attr);
e5f5db7f
DG
1206
1207 channel_created = 1;
2f77fc4b
DG
1208 }
1209
1210 /* Get the newly created kernel channel pointer */
1211 kchan = trace_kernel_get_channel_by_name(channel_name,
1212 session->kernel_session);
1213 if (kchan == NULL) {
1214 /* This sould not happen... */
f73fabfd 1215 ret = LTTNG_ERR_FATAL;
2f77fc4b
DG
1216 goto error;
1217 }
1218
d3a56674 1219 ret = event_kernel_enable_tracepoint(kchan, event);
f73fabfd 1220 if (ret != LTTNG_OK) {
e5f5db7f
DG
1221 if (channel_created) {
1222 /* Let's not leak a useless channel. */
1223 kernel_destroy_channel(kchan);
1224 }
2f77fc4b
DG
1225 goto error;
1226 }
1227
1228 kernel_wait_quiescent(kernel_tracer_fd);
1229 break;
1230 }
1231 case LTTNG_DOMAIN_UST:
1232 {
1233 struct ltt_ust_channel *uchan;
1234 struct ltt_ust_session *usess = session->ust_session;
1235
1236 assert(usess);
1237
1238 /* Get channel from global UST domain */
1239 uchan = trace_ust_find_channel_by_name(usess->domain_global.channels,
1240 channel_name);
1241 if (uchan == NULL) {
1242 /* Create default channel */
0a9c6494
DG
1243 attr = channel_new_default_attr(LTTNG_DOMAIN_UST,
1244 usess->buffer_type);
2f77fc4b 1245 if (attr == NULL) {
f73fabfd 1246 ret = LTTNG_ERR_FATAL;
2f77fc4b
DG
1247 goto error;
1248 }
1249 strncpy(attr->name, channel_name, sizeof(attr->name));
1250
1251 ret = cmd_enable_channel(session, domain, attr, wpipe);
f73fabfd 1252 if (ret != LTTNG_OK) {
2f77fc4b
DG
1253 free(attr);
1254 goto error;
1255 }
1256 free(attr);
1257
1258 /* Get the newly created channel reference back */
1259 uchan = trace_ust_find_channel_by_name(
1260 usess->domain_global.channels, channel_name);
1261 assert(uchan);
1262 }
1263
1264 /* At this point, the session and channel exist on the tracer */
7972aab2 1265 ret = event_ust_enable_tracepoint(usess, uchan, event, filter);
f73fabfd 1266 if (ret != LTTNG_OK) {
2f77fc4b
DG
1267 goto error;
1268 }
1269 break;
1270 }
1271#if 0
1272 case LTTNG_DOMAIN_UST_EXEC_NAME:
1273 case LTTNG_DOMAIN_UST_PID:
1274 case LTTNG_DOMAIN_UST_PID_FOLLOW_CHILDREN:
1275#endif
1276 default:
f73fabfd 1277 ret = LTTNG_ERR_UND;
2f77fc4b
DG
1278 goto error;
1279 }
1280
f73fabfd 1281 ret = LTTNG_OK;
2f77fc4b
DG
1282
1283error:
2223c96f 1284 rcu_read_unlock();
2f77fc4b
DG
1285 return ret;
1286}
1287
1288/*
1289 * Command LTTNG_ENABLE_ALL_EVENT processed by the client thread.
1290 */
7972aab2
DG
1291int cmd_enable_event_all(struct ltt_session *session,
1292 struct lttng_domain *domain, char *channel_name, int event_type,
025faf73 1293 struct lttng_filter_bytecode *filter, int wpipe)
2f77fc4b
DG
1294{
1295 int ret;
1296 struct lttng_channel *attr;
1297
1298 assert(session);
1299 assert(channel_name);
1300
2223c96f
DG
1301 rcu_read_lock();
1302
7972aab2 1303 switch (domain->type) {
2f77fc4b
DG
1304 case LTTNG_DOMAIN_KERNEL:
1305 {
1306 struct ltt_kernel_channel *kchan;
1307
1308 assert(session->kernel_session);
1309
1310 kchan = trace_kernel_get_channel_by_name(channel_name,
1311 session->kernel_session);
1312 if (kchan == NULL) {
1313 /* Create default channel */
0a9c6494
DG
1314 attr = channel_new_default_attr(LTTNG_DOMAIN_KERNEL,
1315 LTTNG_BUFFER_GLOBAL);
2f77fc4b 1316 if (attr == NULL) {
f73fabfd 1317 ret = LTTNG_ERR_FATAL;
2f77fc4b
DG
1318 goto error;
1319 }
1320 strncpy(attr->name, channel_name, sizeof(attr->name));
1321
1322 ret = cmd_enable_channel(session, domain, attr, wpipe);
f73fabfd 1323 if (ret != LTTNG_OK) {
2f77fc4b
DG
1324 free(attr);
1325 goto error;
1326 }
1327 free(attr);
1328
1329 /* Get the newly created kernel channel pointer */
1330 kchan = trace_kernel_get_channel_by_name(channel_name,
1331 session->kernel_session);
1332 assert(kchan);
1333 }
1334
1335 switch (event_type) {
1336 case LTTNG_EVENT_SYSCALL:
d3a56674 1337 ret = event_kernel_enable_all_syscalls(kchan, kernel_tracer_fd);
2f77fc4b
DG
1338 break;
1339 case LTTNG_EVENT_TRACEPOINT:
1340 /*
1341 * This call enables all LTTNG_KERNEL_TRACEPOINTS and
1342 * events already registered to the channel.
1343 */
d3a56674 1344 ret = event_kernel_enable_all_tracepoints(kchan, kernel_tracer_fd);
2f77fc4b
DG
1345 break;
1346 case LTTNG_EVENT_ALL:
1347 /* Enable syscalls and tracepoints */
d3a56674 1348 ret = event_kernel_enable_all(kchan, kernel_tracer_fd);
2f77fc4b
DG
1349 break;
1350 default:
f73fabfd 1351 ret = LTTNG_ERR_KERN_ENABLE_FAIL;
2f77fc4b
DG
1352 goto error;
1353 }
1354
1355 /* Manage return value */
f73fabfd 1356 if (ret != LTTNG_OK) {
e5f5db7f
DG
1357 /*
1358 * On error, cmd_enable_channel call will take care of destroying
1359 * the created channel if it was needed.
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
1374 /* Get channel from global UST domain */
1375 uchan = trace_ust_find_channel_by_name(usess->domain_global.channels,
1376 channel_name);
1377 if (uchan == NULL) {
1378 /* Create default channel */
0a9c6494
DG
1379 attr = channel_new_default_attr(LTTNG_DOMAIN_UST,
1380 usess->buffer_type);
2f77fc4b 1381 if (attr == NULL) {
f73fabfd 1382 ret = LTTNG_ERR_FATAL;
2f77fc4b
DG
1383 goto error;
1384 }
1385 strncpy(attr->name, channel_name, sizeof(attr->name));
1386
1387 ret = cmd_enable_channel(session, domain, attr, wpipe);
f73fabfd 1388 if (ret != LTTNG_OK) {
2f77fc4b
DG
1389 free(attr);
1390 goto error;
1391 }
1392 free(attr);
1393
1394 /* Get the newly created channel reference back */
1395 uchan = trace_ust_find_channel_by_name(
1396 usess->domain_global.channels, channel_name);
1397 assert(uchan);
1398 }
1399
1400 /* At this point, the session and channel exist on the tracer */
1401
1402 switch (event_type) {
1403 case LTTNG_EVENT_ALL:
1404 case LTTNG_EVENT_TRACEPOINT:
7972aab2 1405 ret = event_ust_enable_all_tracepoints(usess, uchan, filter);
f73fabfd 1406 if (ret != LTTNG_OK) {
2f77fc4b
DG
1407 goto error;
1408 }
1409 break;
1410 default:
f73fabfd 1411 ret = LTTNG_ERR_UST_ENABLE_FAIL;
2f77fc4b
DG
1412 goto error;
1413 }
1414
1415 /* Manage return value */
f73fabfd 1416 if (ret != LTTNG_OK) {
2f77fc4b
DG
1417 goto error;
1418 }
1419
1420 break;
1421 }
1422#if 0
1423 case LTTNG_DOMAIN_UST_EXEC_NAME:
1424 case LTTNG_DOMAIN_UST_PID:
1425 case LTTNG_DOMAIN_UST_PID_FOLLOW_CHILDREN:
1426#endif
1427 default:
f73fabfd 1428 ret = LTTNG_ERR_UND;
2f77fc4b
DG
1429 goto error;
1430 }
1431
f73fabfd 1432 ret = LTTNG_OK;
2f77fc4b
DG
1433
1434error:
2223c96f 1435 rcu_read_unlock();
2f77fc4b
DG
1436 return ret;
1437}
1438
1439
1440/*
1441 * Command LTTNG_LIST_TRACEPOINTS processed by the client thread.
1442 */
1443ssize_t cmd_list_tracepoints(int domain, struct lttng_event **events)
1444{
1445 int ret;
1446 ssize_t nb_events = 0;
1447
1448 switch (domain) {
1449 case LTTNG_DOMAIN_KERNEL:
1450 nb_events = kernel_list_events(kernel_tracer_fd, events);
1451 if (nb_events < 0) {
f73fabfd 1452 ret = LTTNG_ERR_KERN_LIST_FAIL;
2f77fc4b
DG
1453 goto error;
1454 }
1455 break;
1456 case LTTNG_DOMAIN_UST:
1457 nb_events = ust_app_list_events(events);
1458 if (nb_events < 0) {
f73fabfd 1459 ret = LTTNG_ERR_UST_LIST_FAIL;
2f77fc4b
DG
1460 goto error;
1461 }
1462 break;
1463 default:
f73fabfd 1464 ret = LTTNG_ERR_UND;
2f77fc4b
DG
1465 goto error;
1466 }
1467
1468 return nb_events;
1469
1470error:
1471 /* Return negative value to differentiate return code */
1472 return -ret;
1473}
1474
1475/*
1476 * Command LTTNG_LIST_TRACEPOINT_FIELDS processed by the client thread.
1477 */
1478ssize_t cmd_list_tracepoint_fields(int domain,
1479 struct lttng_event_field **fields)
1480{
1481 int ret;
1482 ssize_t nb_fields = 0;
1483
1484 switch (domain) {
1485 case LTTNG_DOMAIN_UST:
1486 nb_fields = ust_app_list_event_fields(fields);
1487 if (nb_fields < 0) {
f73fabfd 1488 ret = LTTNG_ERR_UST_LIST_FAIL;
2f77fc4b
DG
1489 goto error;
1490 }
1491 break;
1492 case LTTNG_DOMAIN_KERNEL:
1493 default: /* fall-through */
f73fabfd 1494 ret = LTTNG_ERR_UND;
2f77fc4b
DG
1495 goto error;
1496 }
1497
1498 return nb_fields;
1499
1500error:
1501 /* Return negative value to differentiate return code */
1502 return -ret;
1503}
1504
1505/*
1506 * Command LTTNG_START_TRACE processed by the client thread.
1507 */
1508int cmd_start_trace(struct ltt_session *session)
1509{
1510 int ret;
1511 struct ltt_kernel_session *ksession;
1512 struct ltt_ust_session *usess;
2f77fc4b
DG
1513
1514 assert(session);
1515
1516 /* Ease our life a bit ;) */
1517 ksession = session->kernel_session;
1518 usess = session->ust_session;
1519
1520 if (session->enabled) {
1521 /* Already started. */
f73fabfd 1522 ret = LTTNG_ERR_TRACE_ALREADY_STARTED;
2f77fc4b
DG
1523 goto error;
1524 }
1525
1526 session->enabled = 1;
1527
2f77fc4b
DG
1528 /* Kernel tracing */
1529 if (ksession != NULL) {
9b6c7ec5
DG
1530 ret = start_kernel_session(ksession, kernel_tracer_fd);
1531 if (ret != LTTNG_OK) {
2f77fc4b
DG
1532 goto error;
1533 }
2f77fc4b
DG
1534 }
1535
1536 /* Flag session that trace should start automatically */
1537 if (usess) {
1538 usess->start_trace = 1;
1539
1540 ret = ust_app_start_trace_all(usess);
1541 if (ret < 0) {
f73fabfd 1542 ret = LTTNG_ERR_UST_START_FAIL;
2f77fc4b
DG
1543 goto error;
1544 }
1545 }
1546
9b6c7ec5
DG
1547 session->started = 1;
1548
f73fabfd 1549 ret = LTTNG_OK;
2f77fc4b
DG
1550
1551error:
1552 return ret;
1553}
1554
1555/*
1556 * Command LTTNG_STOP_TRACE processed by the client thread.
1557 */
1558int cmd_stop_trace(struct ltt_session *session)
1559{
1560 int ret;
1561 struct ltt_kernel_channel *kchan;
1562 struct ltt_kernel_session *ksession;
1563 struct ltt_ust_session *usess;
1564
1565 assert(session);
1566
1567 /* Short cut */
1568 ksession = session->kernel_session;
1569 usess = session->ust_session;
1570
1571 if (!session->enabled) {
f73fabfd 1572 ret = LTTNG_ERR_TRACE_ALREADY_STOPPED;
2f77fc4b
DG
1573 goto error;
1574 }
1575
1576 session->enabled = 0;
1577
1578 /* Kernel tracer */
d39829a1 1579 if (ksession && ksession->started) {
2f77fc4b
DG
1580 DBG("Stop kernel tracing");
1581
1582 /* Flush metadata if exist */
1583 if (ksession->metadata_stream_fd >= 0) {
1584 ret = kernel_metadata_flush_buffer(ksession->metadata_stream_fd);
1585 if (ret < 0) {
1586 ERR("Kernel metadata flush failed");
1587 }
1588 }
1589
1590 /* Flush all buffers before stopping */
1591 cds_list_for_each_entry(kchan, &ksession->channel_list.head, list) {
1592 ret = kernel_flush_buffer(kchan);
1593 if (ret < 0) {
1594 ERR("Kernel flush buffer error");
1595 }
1596 }
1597
1598 ret = kernel_stop_session(ksession);
1599 if (ret < 0) {
f73fabfd 1600 ret = LTTNG_ERR_KERN_STOP_FAIL;
2f77fc4b
DG
1601 goto error;
1602 }
1603
1604 kernel_wait_quiescent(kernel_tracer_fd);
9b6c7ec5
DG
1605
1606 ksession->started = 0;
2f77fc4b
DG
1607 }
1608
d39829a1 1609 if (usess && usess->start_trace) {
2f77fc4b
DG
1610 usess->start_trace = 0;
1611
1612 ret = ust_app_stop_trace_all(usess);
1613 if (ret < 0) {
f73fabfd 1614 ret = LTTNG_ERR_UST_STOP_FAIL;
2f77fc4b
DG
1615 goto error;
1616 }
1617 }
1618
9b6c7ec5
DG
1619 session->started = 0;
1620
f73fabfd 1621 ret = LTTNG_OK;
2f77fc4b
DG
1622
1623error:
1624 return ret;
1625}
1626
1627/*
1628 * Command LTTNG_SET_CONSUMER_URI processed by the client thread.
1629 */
1630int cmd_set_consumer_uri(int domain, struct ltt_session *session,
1631 size_t nb_uri, struct lttng_uri *uris)
1632{
1633 int ret, i;
1634 struct ltt_kernel_session *ksess = session->kernel_session;
1635 struct ltt_ust_session *usess = session->ust_session;
1636 struct consumer_output *consumer = NULL;
1637
1638 assert(session);
1639 assert(uris);
1640 assert(nb_uri > 0);
1641
1642 /* Can't enable consumer after session started. */
1643 if (session->enabled) {
f73fabfd 1644 ret = LTTNG_ERR_TRACE_ALREADY_STARTED;
2f77fc4b
DG
1645 goto error;
1646 }
1647
2f77fc4b
DG
1648 /*
1649 * This case switch makes sure the domain session has a temporary consumer
1650 * so the URL can be set.
1651 */
1652 switch (domain) {
1653 case 0:
1654 /* Code flow error. A session MUST always have a consumer object */
1655 assert(session->consumer);
1656 /*
1657 * The URL will be added to the tracing session consumer instead of a
1658 * specific domain consumer.
1659 */
1660 consumer = session->consumer;
1661 break;
1662 case LTTNG_DOMAIN_KERNEL:
1663 /* Code flow error if we don't have a kernel session here. */
1664 assert(ksess);
785d2d0d
DG
1665 assert(ksess->consumer);
1666 consumer = ksess->consumer;
2f77fc4b
DG
1667 break;
1668 case LTTNG_DOMAIN_UST:
1669 /* Code flow error if we don't have a kernel session here. */
1670 assert(usess);
785d2d0d
DG
1671 assert(usess->consumer);
1672 consumer = usess->consumer;
2f77fc4b
DG
1673 break;
1674 }
1675
1676 for (i = 0; i < nb_uri; i++) {
2f77fc4b 1677 ret = add_uri_to_consumer(consumer, &uris[i], domain, session->name);
a74934ba 1678 if (ret != LTTNG_OK) {
2f77fc4b
DG
1679 goto error;
1680 }
2f77fc4b
DG
1681 }
1682
1683 /* All good! */
f73fabfd 1684 ret = LTTNG_OK;
2f77fc4b
DG
1685
1686error:
1687 return ret;
1688}
1689
1690/*
1691 * Command LTTNG_CREATE_SESSION processed by the client thread.
1692 */
1693int cmd_create_session_uri(char *name, struct lttng_uri *uris,
1694 size_t nb_uri, lttng_sock_cred *creds)
1695{
1696 int ret;
2f77fc4b
DG
1697 struct ltt_session *session;
1698
1699 assert(name);
1700
785d2d0d
DG
1701 /* No URIs is not possible. */
1702 if (uris == NULL) {
1703 ret = LTTNG_ERR_SESSION_FAIL;
1704 goto session_error;
1705 }
1706
2f77fc4b
DG
1707 /*
1708 * Verify if the session already exist
1709 *
1710 * XXX: There is no need for the session lock list here since the caller
1711 * (process_client_msg) is holding it. We might want to change that so a
1712 * single command does not lock the entire session list.
1713 */
1714 session = session_find_by_name(name);
1715 if (session != NULL) {
f73fabfd 1716 ret = LTTNG_ERR_EXIST_SESS;
2f77fc4b
DG
1717 goto find_error;
1718 }
1719
1720 /* Create tracing session in the registry */
dec56f6c 1721 ret = session_create(name, LTTNG_SOCK_GET_UID_CRED(creds),
2f77fc4b 1722 LTTNG_SOCK_GET_GID_CRED(creds));
f73fabfd 1723 if (ret != LTTNG_OK) {
2f77fc4b
DG
1724 goto session_error;
1725 }
1726
1727 /*
1728 * Get the newly created session pointer back
1729 *
1730 * XXX: There is no need for the session lock list here since the caller
1731 * (process_client_msg) is holding it. We might want to change that so a
1732 * single command does not lock the entire session list.
1733 */
1734 session = session_find_by_name(name);
1735 assert(session);
1736
1737 /* Create default consumer output for the session not yet created. */
1738 session->consumer = consumer_create_output(CONSUMER_DST_LOCAL);
1739 if (session->consumer == NULL) {
f73fabfd 1740 ret = LTTNG_ERR_FATAL;
2f77fc4b
DG
1741 goto consumer_error;
1742 }
1743
2f77fc4b 1744 ret = cmd_set_consumer_uri(0, session, nb_uri, uris);
f73fabfd 1745 if (ret != LTTNG_OK) {
2f77fc4b
DG
1746 goto consumer_error;
1747 }
1748
1749 session->consumer->enabled = 1;
1750
f73fabfd 1751 return LTTNG_OK;
2f77fc4b
DG
1752
1753consumer_error:
1754 session_destroy(session);
1755session_error:
1756find_error:
1757 return ret;
1758}
1759
1760/*
1761 * Command LTTNG_DESTROY_SESSION processed by the client thread.
1762 */
1763int cmd_destroy_session(struct ltt_session *session, int wpipe)
1764{
1765 int ret;
1766 struct ltt_ust_session *usess;
1767 struct ltt_kernel_session *ksess;
1768
1769 /* Safety net */
1770 assert(session);
1771
1772 usess = session->ust_session;
1773 ksess = session->kernel_session;
1774
1775 /* Clean kernel session teardown */
1776 kernel_destroy_session(ksess);
1777
1778 /* UST session teardown */
1779 if (usess) {
1780 /* Close any relayd session */
1781 consumer_output_send_destroy_relayd(usess->consumer);
1782
1783 /* Destroy every UST application related to this session. */
1784 ret = ust_app_destroy_trace_all(usess);
1785 if (ret) {
1786 ERR("Error in ust_app_destroy_trace_all");
1787 }
1788
1789 /* Clean up the rest. */
1790 trace_ust_destroy_session(usess);
1791 }
1792
1793 /*
1794 * Must notify the kernel thread here to update it's poll set in order to
1795 * remove the channel(s)' fd just destroyed.
1796 */
1797 ret = notify_thread_pipe(wpipe);
1798 if (ret < 0) {
1799 PERROR("write kernel poll pipe");
1800 }
1801
1802 ret = session_destroy(session);
1803
1804 return ret;
1805}
1806
1807/*
1808 * Command LTTNG_CALIBRATE processed by the client thread.
1809 */
1810int cmd_calibrate(int domain, struct lttng_calibrate *calibrate)
1811{
1812 int ret;
1813
1814 switch (domain) {
1815 case LTTNG_DOMAIN_KERNEL:
1816 {
1817 struct lttng_kernel_calibrate kcalibrate;
1818
1819 kcalibrate.type = calibrate->type;
1820 ret = kernel_calibrate(kernel_tracer_fd, &kcalibrate);
1821 if (ret < 0) {
f73fabfd 1822 ret = LTTNG_ERR_KERN_ENABLE_FAIL;
2f77fc4b
DG
1823 goto error;
1824 }
1825 break;
1826 }
1827 case LTTNG_DOMAIN_UST:
1828 {
1829 struct lttng_ust_calibrate ucalibrate;
1830
1831 ucalibrate.type = calibrate->type;
1832 ret = ust_app_calibrate_glb(&ucalibrate);
1833 if (ret < 0) {
f73fabfd 1834 ret = LTTNG_ERR_UST_CALIBRATE_FAIL;
2f77fc4b
DG
1835 goto error;
1836 }
1837 break;
1838 }
1839 default:
f73fabfd 1840 ret = LTTNG_ERR_UND;
2f77fc4b
DG
1841 goto error;
1842 }
1843
f73fabfd 1844 ret = LTTNG_OK;
2f77fc4b
DG
1845
1846error:
1847 return ret;
1848}
1849
1850/*
1851 * Command LTTNG_REGISTER_CONSUMER processed by the client thread.
1852 */
1853int cmd_register_consumer(struct ltt_session *session, int domain,
1854 const char *sock_path, struct consumer_data *cdata)
1855{
1856 int ret, sock;
dd81b457 1857 struct consumer_socket *socket = NULL;
2f77fc4b
DG
1858
1859 assert(session);
1860 assert(cdata);
1861 assert(sock_path);
1862
1863 switch (domain) {
1864 case LTTNG_DOMAIN_KERNEL:
1865 {
1866 struct ltt_kernel_session *ksess = session->kernel_session;
1867
1868 assert(ksess);
1869
1870 /* Can't register a consumer if there is already one */
1871 if (ksess->consumer_fds_sent != 0) {
f73fabfd 1872 ret = LTTNG_ERR_KERN_CONSUMER_FAIL;
2f77fc4b
DG
1873 goto error;
1874 }
1875
1876 sock = lttcomm_connect_unix_sock(sock_path);
1877 if (sock < 0) {
f73fabfd 1878 ret = LTTNG_ERR_CONNECT_FAIL;
2f77fc4b
DG
1879 goto error;
1880 }
1881
1882 socket = consumer_allocate_socket(sock);
1883 if (socket == NULL) {
f66c074c
DG
1884 ret = close(sock);
1885 if (ret < 0) {
1886 PERROR("close register consumer");
1887 }
f73fabfd 1888 ret = LTTNG_ERR_FATAL;
2f77fc4b
DG
1889 goto error;
1890 }
1891
1892 socket->lock = zmalloc(sizeof(pthread_mutex_t));
1893 if (socket->lock == NULL) {
1894 PERROR("zmalloc pthread mutex");
f73fabfd 1895 ret = LTTNG_ERR_FATAL;
2f77fc4b
DG
1896 goto error;
1897 }
1898 pthread_mutex_init(socket->lock, NULL);
1899 socket->registered = 1;
1900
1901 rcu_read_lock();
1902 consumer_add_socket(socket, ksess->consumer);
1903 rcu_read_unlock();
1904
1905 pthread_mutex_lock(&cdata->pid_mutex);
1906 cdata->pid = -1;
1907 pthread_mutex_unlock(&cdata->pid_mutex);
1908
1909 break;
1910 }
1911 default:
1912 /* TODO: Userspace tracing */
f73fabfd 1913 ret = LTTNG_ERR_UND;
2f77fc4b
DG
1914 goto error;
1915 }
1916
dd81b457 1917 return LTTNG_OK;
2f77fc4b
DG
1918
1919error:
dd81b457
DG
1920 if (socket) {
1921 consumer_destroy_socket(socket);
1922 }
2f77fc4b
DG
1923 return ret;
1924}
1925
1926/*
1927 * Command LTTNG_LIST_DOMAINS processed by the client thread.
1928 */
1929ssize_t cmd_list_domains(struct ltt_session *session,
1930 struct lttng_domain **domains)
1931{
1932 int ret, index = 0;
1933 ssize_t nb_dom = 0;
1934
1935 if (session->kernel_session != NULL) {
1936 DBG3("Listing domains found kernel domain");
1937 nb_dom++;
1938 }
1939
1940 if (session->ust_session != NULL) {
1941 DBG3("Listing domains found UST global domain");
1942 nb_dom++;
1943 }
1944
1945 *domains = zmalloc(nb_dom * sizeof(struct lttng_domain));
1946 if (*domains == NULL) {
f73fabfd 1947 ret = LTTNG_ERR_FATAL;
2f77fc4b
DG
1948 goto error;
1949 }
1950
1951 if (session->kernel_session != NULL) {
1952 (*domains)[index].type = LTTNG_DOMAIN_KERNEL;
1953 index++;
1954 }
1955
1956 if (session->ust_session != NULL) {
1957 (*domains)[index].type = LTTNG_DOMAIN_UST;
88c5f0d8 1958 (*domains)[index].buf_type = session->ust_session->buffer_type;
2f77fc4b
DG
1959 index++;
1960 }
1961
1962 return nb_dom;
1963
1964error:
f73fabfd
DG
1965 /* Return negative value to differentiate return code */
1966 return -ret;
2f77fc4b
DG
1967}
1968
1969
1970/*
1971 * Command LTTNG_LIST_CHANNELS processed by the client thread.
1972 */
1973ssize_t cmd_list_channels(int domain, struct ltt_session *session,
1974 struct lttng_channel **channels)
1975{
1976 int ret;
1977 ssize_t nb_chan = 0;
1978
1979 switch (domain) {
1980 case LTTNG_DOMAIN_KERNEL:
1981 if (session->kernel_session != NULL) {
1982 nb_chan = session->kernel_session->channel_count;
1983 }
1984 DBG3("Number of kernel channels %zd", nb_chan);
c7d620a2
DG
1985 if (nb_chan <= 0) {
1986 ret = LTTNG_ERR_KERN_CHAN_NOT_FOUND;
1987 }
2f77fc4b
DG
1988 break;
1989 case LTTNG_DOMAIN_UST:
1990 if (session->ust_session != NULL) {
1991 nb_chan = lttng_ht_get_count(
1992 session->ust_session->domain_global.channels);
1993 }
1994 DBG3("Number of UST global channels %zd", nb_chan);
c7d620a2
DG
1995 if (nb_chan <= 0) {
1996 ret = LTTNG_ERR_UST_CHAN_NOT_FOUND;
1997 }
2f77fc4b
DG
1998 break;
1999 default:
2000 *channels = NULL;
f73fabfd 2001 ret = LTTNG_ERR_UND;
2f77fc4b
DG
2002 goto error;
2003 }
2004
2005 if (nb_chan > 0) {
2006 *channels = zmalloc(nb_chan * sizeof(struct lttng_channel));
2007 if (*channels == NULL) {
f73fabfd 2008 ret = LTTNG_ERR_FATAL;
2f77fc4b
DG
2009 goto error;
2010 }
2011
2012 list_lttng_channels(domain, session, *channels);
2013 } else {
2014 *channels = NULL;
c7d620a2
DG
2015 /* Ret value was set in the domain switch case */
2016 goto error;
2f77fc4b
DG
2017 }
2018
2019 return nb_chan;
2020
2021error:
f73fabfd
DG
2022 /* Return negative value to differentiate return code */
2023 return -ret;
2f77fc4b
DG
2024}
2025
2026/*
2027 * Command LTTNG_LIST_EVENTS processed by the client thread.
2028 */
2029ssize_t cmd_list_events(int domain, struct ltt_session *session,
2030 char *channel_name, struct lttng_event **events)
2031{
2032 int ret = 0;
2033 ssize_t nb_event = 0;
2034
2035 switch (domain) {
2036 case LTTNG_DOMAIN_KERNEL:
2037 if (session->kernel_session != NULL) {
2038 nb_event = list_lttng_kernel_events(channel_name,
2039 session->kernel_session, events);
2040 }
2041 break;
2042 case LTTNG_DOMAIN_UST:
2043 {
2044 if (session->ust_session != NULL) {
2045 nb_event = list_lttng_ust_global_events(channel_name,
2046 &session->ust_session->domain_global, events);
2047 }
2048 break;
2049 }
2050 default:
f73fabfd 2051 ret = LTTNG_ERR_UND;
2f77fc4b
DG
2052 goto error;
2053 }
2054
f73fabfd 2055 return nb_event;
2f77fc4b
DG
2056
2057error:
f73fabfd
DG
2058 /* Return negative value to differentiate return code */
2059 return -ret;
2f77fc4b
DG
2060}
2061
2062/*
2063 * Using the session list, filled a lttng_session array to send back to the
2064 * client for session listing.
2065 *
2066 * The session list lock MUST be acquired before calling this function. Use
2067 * session_lock_list() and session_unlock_list().
2068 */
2069void cmd_list_lttng_sessions(struct lttng_session *sessions, uid_t uid,
2070 gid_t gid)
2071{
2072 int ret;
2073 unsigned int i = 0;
2074 struct ltt_session *session;
2075 struct ltt_session_list *list = session_get_list();
2076
2077 DBG("Getting all available session for UID %d GID %d",
2078 uid, gid);
2079 /*
2080 * Iterate over session list and append data after the control struct in
2081 * the buffer.
2082 */
2083 cds_list_for_each_entry(session, &list->head, list) {
2084 /*
2085 * Only list the sessions the user can control.
2086 */
2087 if (!session_access_ok(session, uid, gid)) {
2088 continue;
2089 }
2090
2091 struct ltt_kernel_session *ksess = session->kernel_session;
2092 struct ltt_ust_session *usess = session->ust_session;
2093
2094 if (session->consumer->type == CONSUMER_DST_NET ||
2095 (ksess && ksess->consumer->type == CONSUMER_DST_NET) ||
2096 (usess && usess->consumer->type == CONSUMER_DST_NET)) {
2097 ret = build_network_session_path(sessions[i].path,
dec56f6c 2098 sizeof(sessions[i].path), session);
2f77fc4b 2099 } else {
dec56f6c 2100 ret = snprintf(sessions[i].path, sizeof(sessions[i].path), "%s",
2f77fc4b
DG
2101 session->consumer->dst.trace_path);
2102 }
2103 if (ret < 0) {
2104 PERROR("snprintf session path");
2105 continue;
2106 }
2107
2108 strncpy(sessions[i].name, session->name, NAME_MAX);
2109 sessions[i].name[NAME_MAX - 1] = '\0';
2110 sessions[i].enabled = session->enabled;
2111 i++;
2112 }
2113}
2114
806e2684 2115/*
6d805429
DG
2116 * Command LTTNG_DATA_PENDING returning 0 if the data is NOT pending meaning
2117 * ready for trace analysis (or anykind of reader) or else 1 for pending data.
806e2684 2118 */
6d805429 2119int cmd_data_pending(struct ltt_session *session)
806e2684
DG
2120{
2121 int ret;
2122 struct ltt_kernel_session *ksess = session->kernel_session;
2123 struct ltt_ust_session *usess = session->ust_session;
2124
2125 assert(session);
2126
2127 /* Session MUST be stopped to ask for data availability. */
2128 if (session->enabled) {
2129 ret = LTTNG_ERR_SESSION_STARTED;
2130 goto error;
2131 }
2132
2133 if (ksess && ksess->consumer) {
6d805429
DG
2134 ret = consumer_is_data_pending(ksess->id, ksess->consumer);
2135 if (ret == 1) {
806e2684
DG
2136 /* Data is still being extracted for the kernel. */
2137 goto error;
2138 }
2139 }
2140
2141 if (usess && usess->consumer) {
6d805429
DG
2142 ret = consumer_is_data_pending(usess->id, usess->consumer);
2143 if (ret == 1) {
806e2684
DG
2144 /* Data is still being extracted for the kernel. */
2145 goto error;
2146 }
2147 }
2148
2149 /* Data is ready to be read by a viewer */
6d805429 2150 ret = 0;
806e2684
DG
2151
2152error:
2153 return ret;
2154}
2155
2f77fc4b
DG
2156/*
2157 * Init command subsystem.
2158 */
2159void cmd_init(void)
2160{
2161 /*
d88aee68
DG
2162 * Set network sequence index to 1 for streams to match a relayd
2163 * socket on the consumer side.
2f77fc4b 2164 */
d88aee68
DG
2165 pthread_mutex_lock(&relayd_net_seq_idx_lock);
2166 relayd_net_seq_idx = 1;
2167 pthread_mutex_unlock(&relayd_net_seq_idx_lock);
2f77fc4b
DG
2168
2169 DBG("Command subsystem initialized");
2170}
This page took 0.130471 seconds and 5 git commands to generate.