Add snapshot output init call that uses URIs
[lttng-tools.git] / src / bin / lttng-sessiond / cmd.c
CommitLineData
2f77fc4b
DG
1/*
2 * Copyright (C) 2012 - David Goulet <dgoulet@efficios.com>
3 *
4 * This program is free software; you can redistribute it and/or modify it
5 * under the terms of the GNU General Public License, version 2 only, as
6 * published by the Free Software Foundation.
7 *
8 * This program is distributed in the hope that it will be useful, but WITHOUT
9 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
10 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
11 * more details.
12 *
13 * You should have received a copy of the GNU General Public License along with
14 * this program; if not, write to the Free Software Foundation, Inc., 51
15 * Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
16 */
17
18#define _GNU_SOURCE
19#include <assert.h>
6dc3064a 20#include <inttypes.h>
2f77fc4b
DG
21#include <urcu/list.h>
22#include <urcu/uatomic.h>
23
24#include <common/defaults.h>
25#include <common/common.h>
26#include <common/sessiond-comm/sessiond-comm.h>
27#include <common/relayd/relayd.h>
10a50311 28#include <common/utils.h>
2f77fc4b
DG
29
30#include "channel.h"
31#include "consumer.h"
32#include "event.h"
7972aab2 33#include "health.h"
2f77fc4b
DG
34#include "kernel.h"
35#include "kernel-consumer.h"
36#include "lttng-sessiond.h"
37#include "utils.h"
38
39#include "cmd.h"
40
41/*
42 * Used to keep a unique index for each relayd socket created where this value
43 * is associated with streams on the consumer so it can match the right relayd
d88aee68
DG
44 * to send to. It must be accessed with the relayd_net_seq_idx_lock
45 * held.
2f77fc4b 46 */
d88aee68
DG
47static pthread_mutex_t relayd_net_seq_idx_lock = PTHREAD_MUTEX_INITIALIZER;
48static uint64_t relayd_net_seq_idx;
2f77fc4b
DG
49
50/*
51 * Create a session path used by list_lttng_sessions for the case that the
52 * session consumer is on the network.
53 */
54static int build_network_session_path(char *dst, size_t size,
55 struct ltt_session *session)
56{
57 int ret, kdata_port, udata_port;
58 struct lttng_uri *kuri = NULL, *uuri = NULL, *uri = NULL;
59 char tmp_uurl[PATH_MAX], tmp_urls[PATH_MAX];
60
61 assert(session);
62 assert(dst);
63
64 memset(tmp_urls, 0, sizeof(tmp_urls));
65 memset(tmp_uurl, 0, sizeof(tmp_uurl));
66
67 kdata_port = udata_port = DEFAULT_NETWORK_DATA_PORT;
68
69 if (session->kernel_session && session->kernel_session->consumer) {
70 kuri = &session->kernel_session->consumer->dst.net.control;
71 kdata_port = session->kernel_session->consumer->dst.net.data.port;
72 }
73
74 if (session->ust_session && session->ust_session->consumer) {
75 uuri = &session->ust_session->consumer->dst.net.control;
76 udata_port = session->ust_session->consumer->dst.net.data.port;
77 }
78
79 if (uuri == NULL && kuri == NULL) {
80 uri = &session->consumer->dst.net.control;
81 kdata_port = session->consumer->dst.net.data.port;
82 } else if (kuri && uuri) {
83 ret = uri_compare(kuri, uuri);
84 if (ret) {
85 /* Not Equal */
86 uri = kuri;
87 /* Build uuri URL string */
88 ret = uri_to_str_url(uuri, tmp_uurl, sizeof(tmp_uurl));
89 if (ret < 0) {
90 goto error;
91 }
92 } else {
93 uri = kuri;
94 }
95 } else if (kuri && uuri == NULL) {
96 uri = kuri;
97 } else if (uuri && kuri == NULL) {
98 uri = uuri;
99 }
100
101 ret = uri_to_str_url(uri, tmp_urls, sizeof(tmp_urls));
102 if (ret < 0) {
103 goto error;
104 }
105
9aa9f900
DG
106 /*
107 * Do we have a UST url set. If yes, this means we have both kernel and UST
108 * to print.
109 */
9d035200 110 if (*tmp_uurl != '\0') {
2f77fc4b
DG
111 ret = snprintf(dst, size, "[K]: %s [data: %d] -- [U]: %s [data: %d]",
112 tmp_urls, kdata_port, tmp_uurl, udata_port);
113 } else {
9aa9f900 114 int dport;
bef08707 115 if (kuri || (!kuri && !uuri)) {
9aa9f900
DG
116 dport = kdata_port;
117 } else {
118 /* No kernel URI, use the UST port. */
119 dport = udata_port;
120 }
121 ret = snprintf(dst, size, "%s [data: %d]", tmp_urls, dport);
2f77fc4b
DG
122 }
123
124error:
125 return ret;
126}
127
128/*
129 * Fill lttng_channel array of all channels.
130 */
131static void list_lttng_channels(int domain, struct ltt_session *session,
132 struct lttng_channel *channels)
133{
134 int i = 0;
135 struct ltt_kernel_channel *kchan;
136
137 DBG("Listing channels for session %s", session->name);
138
139 switch (domain) {
140 case LTTNG_DOMAIN_KERNEL:
141 /* Kernel channels */
142 if (session->kernel_session != NULL) {
143 cds_list_for_each_entry(kchan,
144 &session->kernel_session->channel_list.head, list) {
145 /* Copy lttng_channel struct to array */
146 memcpy(&channels[i], kchan->channel, sizeof(struct lttng_channel));
147 channels[i].enabled = kchan->enabled;
148 i++;
149 }
150 }
151 break;
152 case LTTNG_DOMAIN_UST:
153 {
154 struct lttng_ht_iter iter;
155 struct ltt_ust_channel *uchan;
156
e7fe706f 157 rcu_read_lock();
2f77fc4b
DG
158 cds_lfht_for_each_entry(session->ust_session->domain_global.channels->ht,
159 &iter.iter, uchan, node.node) {
160 strncpy(channels[i].name, uchan->name, LTTNG_SYMBOL_NAME_LEN);
161 channels[i].attr.overwrite = uchan->attr.overwrite;
162 channels[i].attr.subbuf_size = uchan->attr.subbuf_size;
163 channels[i].attr.num_subbuf = uchan->attr.num_subbuf;
164 channels[i].attr.switch_timer_interval =
165 uchan->attr.switch_timer_interval;
166 channels[i].attr.read_timer_interval =
167 uchan->attr.read_timer_interval;
168 channels[i].enabled = uchan->enabled;
169 switch (uchan->attr.output) {
170 case LTTNG_UST_MMAP:
171 default:
172 channels[i].attr.output = LTTNG_EVENT_MMAP;
173 break;
174 }
175 i++;
176 }
e7fe706f 177 rcu_read_unlock();
2f77fc4b
DG
178 break;
179 }
180 default:
181 break;
182 }
183}
184
185/*
186 * Create a list of ust global domain events.
187 */
188static int list_lttng_ust_global_events(char *channel_name,
189 struct ltt_ust_domain_global *ust_global, struct lttng_event **events)
190{
191 int i = 0, ret = 0;
192 unsigned int nb_event = 0;
193 struct lttng_ht_iter iter;
194 struct lttng_ht_node_str *node;
195 struct ltt_ust_channel *uchan;
196 struct ltt_ust_event *uevent;
197 struct lttng_event *tmp;
198
199 DBG("Listing UST global events for channel %s", channel_name);
200
201 rcu_read_lock();
202
203 lttng_ht_lookup(ust_global->channels, (void *)channel_name, &iter);
204 node = lttng_ht_iter_get_node_str(&iter);
205 if (node == NULL) {
f73fabfd 206 ret = LTTNG_ERR_UST_CHAN_NOT_FOUND;
2f77fc4b
DG
207 goto error;
208 }
209
210 uchan = caa_container_of(&node->node, struct ltt_ust_channel, node.node);
211
212 nb_event += lttng_ht_get_count(uchan->events);
213
214 if (nb_event == 0) {
215 ret = nb_event;
216 goto error;
217 }
218
219 DBG3("Listing UST global %d events", nb_event);
220
221 tmp = zmalloc(nb_event * sizeof(struct lttng_event));
222 if (tmp == NULL) {
f73fabfd 223 ret = LTTNG_ERR_FATAL;
2f77fc4b
DG
224 goto error;
225 }
226
227 cds_lfht_for_each_entry(uchan->events->ht, &iter.iter, uevent, node.node) {
228 strncpy(tmp[i].name, uevent->attr.name, LTTNG_SYMBOL_NAME_LEN);
229 tmp[i].name[LTTNG_SYMBOL_NAME_LEN - 1] = '\0';
230 tmp[i].enabled = uevent->enabled;
231
232 switch (uevent->attr.instrumentation) {
233 case LTTNG_UST_TRACEPOINT:
234 tmp[i].type = LTTNG_EVENT_TRACEPOINT;
235 break;
236 case LTTNG_UST_PROBE:
237 tmp[i].type = LTTNG_EVENT_PROBE;
238 break;
239 case LTTNG_UST_FUNCTION:
240 tmp[i].type = LTTNG_EVENT_FUNCTION;
241 break;
242 }
243
244 tmp[i].loglevel = uevent->attr.loglevel;
245 switch (uevent->attr.loglevel_type) {
246 case LTTNG_UST_LOGLEVEL_ALL:
247 tmp[i].loglevel_type = LTTNG_EVENT_LOGLEVEL_ALL;
248 break;
249 case LTTNG_UST_LOGLEVEL_RANGE:
250 tmp[i].loglevel_type = LTTNG_EVENT_LOGLEVEL_RANGE;
251 break;
252 case LTTNG_UST_LOGLEVEL_SINGLE:
253 tmp[i].loglevel_type = LTTNG_EVENT_LOGLEVEL_SINGLE;
254 break;
255 }
256 if (uevent->filter) {
257 tmp[i].filter = 1;
258 }
259 i++;
260 }
261
262 ret = nb_event;
263 *events = tmp;
264
265error:
266 rcu_read_unlock();
267 return ret;
268}
269
270/*
271 * Fill lttng_event array of all kernel events in the channel.
272 */
273static int list_lttng_kernel_events(char *channel_name,
274 struct ltt_kernel_session *kernel_session, struct lttng_event **events)
275{
276 int i = 0, ret;
277 unsigned int nb_event;
278 struct ltt_kernel_event *event;
279 struct ltt_kernel_channel *kchan;
280
281 kchan = trace_kernel_get_channel_by_name(channel_name, kernel_session);
282 if (kchan == NULL) {
f73fabfd 283 ret = LTTNG_ERR_KERN_CHAN_NOT_FOUND;
2f77fc4b
DG
284 goto error;
285 }
286
287 nb_event = kchan->event_count;
288
289 DBG("Listing events for channel %s", kchan->channel->name);
290
291 if (nb_event == 0) {
f73fabfd 292 goto end;
2f77fc4b
DG
293 }
294
295 *events = zmalloc(nb_event * sizeof(struct lttng_event));
296 if (*events == NULL) {
f73fabfd 297 ret = LTTNG_ERR_FATAL;
2f77fc4b
DG
298 goto error;
299 }
300
301 /* Kernel channels */
302 cds_list_for_each_entry(event, &kchan->events_list.head , list) {
303 strncpy((*events)[i].name, event->event->name, LTTNG_SYMBOL_NAME_LEN);
304 (*events)[i].name[LTTNG_SYMBOL_NAME_LEN - 1] = '\0';
305 (*events)[i].enabled = event->enabled;
306
307 switch (event->event->instrumentation) {
308 case LTTNG_KERNEL_TRACEPOINT:
309 (*events)[i].type = LTTNG_EVENT_TRACEPOINT;
310 break;
2f77fc4b 311 case LTTNG_KERNEL_KRETPROBE:
1896972b
DG
312 (*events)[i].type = LTTNG_EVENT_FUNCTION;
313 memcpy(&(*events)[i].attr.probe, &event->event->u.kprobe,
314 sizeof(struct lttng_kernel_kprobe));
315 break;
316 case LTTNG_KERNEL_KPROBE:
2f77fc4b
DG
317 (*events)[i].type = LTTNG_EVENT_PROBE;
318 memcpy(&(*events)[i].attr.probe, &event->event->u.kprobe,
319 sizeof(struct lttng_kernel_kprobe));
320 break;
321 case LTTNG_KERNEL_FUNCTION:
322 (*events)[i].type = LTTNG_EVENT_FUNCTION;
323 memcpy(&((*events)[i].attr.ftrace), &event->event->u.ftrace,
324 sizeof(struct lttng_kernel_function));
325 break;
326 case LTTNG_KERNEL_NOOP:
327 (*events)[i].type = LTTNG_EVENT_NOOP;
328 break;
329 case LTTNG_KERNEL_SYSCALL:
330 (*events)[i].type = LTTNG_EVENT_SYSCALL;
331 break;
332 case LTTNG_KERNEL_ALL:
333 assert(0);
334 break;
335 }
336 i++;
337 }
338
f73fabfd 339end:
2f77fc4b
DG
340 return nb_event;
341
342error:
f73fabfd
DG
343 /* Negate the error code to differentiate the size from an error */
344 return -ret;
2f77fc4b
DG
345}
346
347/*
348 * Add URI so the consumer output object. Set the correct path depending on the
349 * domain adding the default trace directory.
350 */
351static int add_uri_to_consumer(struct consumer_output *consumer,
352 struct lttng_uri *uri, int domain, const char *session_name)
353{
f73fabfd 354 int ret = LTTNG_OK;
2f77fc4b
DG
355 const char *default_trace_dir;
356
357 assert(uri);
358
359 if (consumer == NULL) {
360 DBG("No consumer detected. Don't add URI. Stopping.");
f73fabfd 361 ret = LTTNG_ERR_NO_CONSUMER;
2f77fc4b
DG
362 goto error;
363 }
364
365 switch (domain) {
366 case LTTNG_DOMAIN_KERNEL:
367 default_trace_dir = DEFAULT_KERNEL_TRACE_DIR;
368 break;
369 case LTTNG_DOMAIN_UST:
370 default_trace_dir = DEFAULT_UST_TRACE_DIR;
371 break;
372 default:
373 /*
374 * This case is possible is we try to add the URI to the global tracing
375 * session consumer object which in this case there is no subdir.
376 */
377 default_trace_dir = "";
378 }
379
380 switch (uri->dtype) {
381 case LTTNG_DST_IPV4:
382 case LTTNG_DST_IPV6:
383 DBG2("Setting network URI to consumer");
384
df75acac
DG
385 if (consumer->type == CONSUMER_DST_NET) {
386 if ((uri->stype == LTTNG_STREAM_CONTROL &&
785d2d0d
DG
387 consumer->dst.net.control_isset) ||
388 (uri->stype == LTTNG_STREAM_DATA &&
389 consumer->dst.net.data_isset)) {
df75acac
DG
390 ret = LTTNG_ERR_URL_EXIST;
391 goto error;
392 }
393 } else {
394 memset(&consumer->dst.net, 0, sizeof(consumer->dst.net));
785d2d0d
DG
395 }
396
df75acac
DG
397 consumer->type = CONSUMER_DST_NET;
398
2f77fc4b
DG
399 /* Set URI into consumer output object */
400 ret = consumer_set_network_uri(consumer, uri);
401 if (ret < 0) {
a74934ba 402 ret = -ret;
2f77fc4b
DG
403 goto error;
404 } else if (ret == 1) {
405 /*
406 * URI was the same in the consumer so we do not append the subdir
407 * again so to not duplicate output dir.
408 */
409 goto error;
410 }
411
412 if (uri->stype == LTTNG_STREAM_CONTROL && strlen(uri->subdir) == 0) {
413 ret = consumer_set_subdir(consumer, session_name);
414 if (ret < 0) {
f73fabfd 415 ret = LTTNG_ERR_FATAL;
2f77fc4b
DG
416 goto error;
417 }
418 }
419
420 if (uri->stype == LTTNG_STREAM_CONTROL) {
421 /* On a new subdir, reappend the default trace dir. */
c30ce0b3
CB
422 strncat(consumer->subdir, default_trace_dir,
423 sizeof(consumer->subdir) - strlen(consumer->subdir) - 1);
2f77fc4b
DG
424 DBG3("Append domain trace name to subdir %s", consumer->subdir);
425 }
426
427 break;
428 case LTTNG_DST_PATH:
429 DBG2("Setting trace directory path from URI to %s", uri->dst.path);
430 memset(consumer->dst.trace_path, 0,
431 sizeof(consumer->dst.trace_path));
432 strncpy(consumer->dst.trace_path, uri->dst.path,
433 sizeof(consumer->dst.trace_path));
434 /* Append default trace dir */
435 strncat(consumer->dst.trace_path, default_trace_dir,
c30ce0b3
CB
436 sizeof(consumer->dst.trace_path) -
437 strlen(consumer->dst.trace_path) - 1);
2f77fc4b
DG
438 /* Flag consumer as local. */
439 consumer->type = CONSUMER_DST_LOCAL;
440 break;
441 }
442
a74934ba
DG
443 ret = LTTNG_OK;
444
2f77fc4b
DG
445error:
446 return ret;
447}
448
449/*
450 * Init tracing by creating trace directory and sending fds kernel consumer.
451 */
452static int init_kernel_tracing(struct ltt_kernel_session *session)
453{
454 int ret = 0;
455 struct lttng_ht_iter iter;
456 struct consumer_socket *socket;
457
458 assert(session);
459
e7fe706f
DG
460 rcu_read_lock();
461
2f77fc4b
DG
462 if (session->consumer_fds_sent == 0 && session->consumer != NULL) {
463 cds_lfht_for_each_entry(session->consumer->socks->ht, &iter.iter,
464 socket, node.node) {
465 /* Code flow error */
466 assert(socket->fd >= 0);
467
468 pthread_mutex_lock(socket->lock);
f50f23d9 469 ret = kernel_consumer_send_session(socket, session);
2f77fc4b
DG
470 pthread_mutex_unlock(socket->lock);
471 if (ret < 0) {
f73fabfd 472 ret = LTTNG_ERR_KERN_CONSUMER_FAIL;
2f77fc4b
DG
473 goto error;
474 }
475 }
476 }
477
478error:
e7fe706f 479 rcu_read_unlock();
2f77fc4b
DG
480 return ret;
481}
482
483/*
484 * Create a socket to the relayd using the URI.
485 *
486 * On success, the relayd_sock pointer is set to the created socket.
487 * Else, it's stays untouched and a lttcomm error code is returned.
488 */
6151a90f
JD
489static int create_connect_relayd(struct lttng_uri *uri,
490 struct lttcomm_relayd_sock **relayd_sock)
2f77fc4b
DG
491{
492 int ret;
6151a90f 493 struct lttcomm_relayd_sock *rsock;
2f77fc4b 494
6151a90f
JD
495 rsock = lttcomm_alloc_relayd_sock(uri, RELAYD_VERSION_COMM_MAJOR,
496 RELAYD_VERSION_COMM_MINOR);
497 if (!rsock) {
f73fabfd 498 ret = LTTNG_ERR_FATAL;
2f77fc4b
DG
499 goto error;
500 }
501
ffe60014
DG
502 /*
503 * Connect to relayd so we can proceed with a session creation. This call
504 * can possibly block for an arbitrary amount of time to set the health
505 * state to be in poll execution.
506 */
507 health_poll_entry();
6151a90f 508 ret = relayd_connect(rsock);
ffe60014 509 health_poll_exit();
2f77fc4b
DG
510 if (ret < 0) {
511 ERR("Unable to reach lttng-relayd");
f73fabfd 512 ret = LTTNG_ERR_RELAYD_CONNECT_FAIL;
2f77fc4b
DG
513 goto free_sock;
514 }
515
516 /* Create socket for control stream. */
517 if (uri->stype == LTTNG_STREAM_CONTROL) {
518 DBG3("Creating relayd stream socket from URI");
519
520 /* Check relayd version */
6151a90f 521 ret = relayd_version_check(rsock);
2f77fc4b 522 if (ret < 0) {
f73fabfd 523 ret = LTTNG_ERR_RELAYD_VERSION_FAIL;
2f77fc4b
DG
524 goto close_sock;
525 }
526 } else if (uri->stype == LTTNG_STREAM_DATA) {
527 DBG3("Creating relayd data socket from URI");
528 } else {
529 /* Command is not valid */
530 ERR("Relayd invalid stream type: %d", uri->stype);
f73fabfd 531 ret = LTTNG_ERR_INVALID;
2f77fc4b
DG
532 goto close_sock;
533 }
534
6151a90f 535 *relayd_sock = rsock;
2f77fc4b 536
f73fabfd 537 return LTTNG_OK;
2f77fc4b
DG
538
539close_sock:
6151a90f
JD
540 /* The returned value is not useful since we are on an error path. */
541 (void) relayd_close(rsock);
2f77fc4b 542free_sock:
6151a90f 543 free(rsock);
2f77fc4b
DG
544error:
545 return ret;
546}
547
548/*
549 * Connect to the relayd using URI and send the socket to the right consumer.
550 */
6dc3064a 551static int send_consumer_relayd_socket(int domain, unsigned int session_id,
2f77fc4b 552 struct lttng_uri *relayd_uri, struct consumer_output *consumer,
f50f23d9 553 struct consumer_socket *consumer_sock)
2f77fc4b
DG
554{
555 int ret;
6151a90f 556 struct lttcomm_relayd_sock *rsock = NULL;
2f77fc4b 557
ffe60014 558 /* Connect to relayd and make version check if uri is the control. */
6151a90f 559 ret = create_connect_relayd(relayd_uri, &rsock);
ffe60014 560 if (ret != LTTNG_OK) {
6151a90f 561 goto error;
ffe60014 562 }
6151a90f 563 assert(rsock);
ffe60014 564
2f77fc4b 565 /* Set the network sequence index if not set. */
d88aee68
DG
566 if (consumer->net_seq_index == (uint64_t) -1ULL) {
567 pthread_mutex_lock(&relayd_net_seq_idx_lock);
2f77fc4b
DG
568 /*
569 * Increment net_seq_idx because we are about to transfer the
570 * new relayd socket to the consumer.
d88aee68 571 * Assign unique key so the consumer can match streams.
2f77fc4b 572 */
d88aee68
DG
573 consumer->net_seq_index = ++relayd_net_seq_idx;
574 pthread_mutex_unlock(&relayd_net_seq_idx_lock);
2f77fc4b
DG
575 }
576
2f77fc4b 577 /* Send relayd socket to consumer. */
6151a90f 578 ret = consumer_send_relayd_socket(consumer_sock, rsock, consumer,
6dc3064a 579 relayd_uri->stype, session_id);
2f77fc4b 580 if (ret < 0) {
f73fabfd 581 ret = LTTNG_ERR_ENABLE_CONSUMER_FAIL;
2f77fc4b
DG
582 goto close_sock;
583 }
584
c890b720
DG
585 /* Flag that the corresponding socket was sent. */
586 if (relayd_uri->stype == LTTNG_STREAM_CONTROL) {
ffe60014 587 consumer_sock->control_sock_sent = 1;
c890b720 588 } else if (relayd_uri->stype == LTTNG_STREAM_DATA) {
ffe60014 589 consumer_sock->data_sock_sent = 1;
c890b720
DG
590 }
591
f73fabfd 592 ret = LTTNG_OK;
2f77fc4b
DG
593
594 /*
595 * Close socket which was dup on the consumer side. The session daemon does
596 * NOT keep track of the relayd socket(s) once transfer to the consumer.
597 */
598
599close_sock:
6151a90f
JD
600 (void) relayd_close(rsock);
601 free(rsock);
2f77fc4b 602
6151a90f 603error:
ffe60014
DG
604 if (ret != LTTNG_OK) {
605 /*
d9078d0c
DG
606 * The consumer output for this session should not be used anymore
607 * since the relayd connection failed thus making any tracing or/and
608 * streaming not usable.
ffe60014 609 */
d9078d0c 610 consumer->enabled = 0;
ffe60014 611 }
2f77fc4b
DG
612 return ret;
613}
614
615/*
616 * Send both relayd sockets to a specific consumer and domain. This is a
617 * helper function to facilitate sending the information to the consumer for a
618 * session.
619 */
6dc3064a
DG
620static int send_consumer_relayd_sockets(int domain, unsigned int session_id,
621 struct consumer_output *consumer, struct consumer_socket *sock)
2f77fc4b 622{
dda67f6c 623 int ret = LTTNG_OK;
2f77fc4b 624
2f77fc4b 625 assert(consumer);
6dc3064a 626 assert(sock);
2f77fc4b 627
2f77fc4b 628 /* Sending control relayd socket. */
ffe60014 629 if (!sock->control_sock_sent) {
6dc3064a 630 ret = send_consumer_relayd_socket(domain, session_id,
f50f23d9 631 &consumer->dst.net.control, consumer, sock);
c890b720
DG
632 if (ret != LTTNG_OK) {
633 goto error;
634 }
2f77fc4b
DG
635 }
636
637 /* Sending data relayd socket. */
ffe60014 638 if (!sock->data_sock_sent) {
6dc3064a 639 ret = send_consumer_relayd_socket(domain, session_id,
f50f23d9 640 &consumer->dst.net.data, consumer, sock);
c890b720
DG
641 if (ret != LTTNG_OK) {
642 goto error;
643 }
2f77fc4b
DG
644 }
645
2f77fc4b
DG
646error:
647 return ret;
648}
649
650/*
651 * Setup relayd connections for a tracing session. First creates the socket to
652 * the relayd and send them to the right domain consumer. Consumer type MUST be
653 * network.
654 */
ffe60014 655int cmd_setup_relayd(struct ltt_session *session)
2f77fc4b 656{
f73fabfd 657 int ret = LTTNG_OK;
2f77fc4b
DG
658 struct ltt_ust_session *usess;
659 struct ltt_kernel_session *ksess;
660 struct consumer_socket *socket;
661 struct lttng_ht_iter iter;
662
663 assert(session);
664
665 usess = session->ust_session;
666 ksess = session->kernel_session;
667
785d2d0d 668 DBG("Setting relayd for session %s", session->name);
2f77fc4b 669
e7fe706f
DG
670 rcu_read_lock();
671
2f77fc4b
DG
672 if (usess && usess->consumer && usess->consumer->type == CONSUMER_DST_NET
673 && usess->consumer->enabled) {
674 /* For each consumer socket, send relayd sockets */
675 cds_lfht_for_each_entry(usess->consumer->socks->ht, &iter.iter,
676 socket, node.node) {
677 /* Code flow error */
678 assert(socket->fd >= 0);
679
680 pthread_mutex_lock(socket->lock);
6dc3064a 681 ret = send_consumer_relayd_sockets(LTTNG_DOMAIN_UST, session->id,
f50f23d9 682 usess->consumer, socket);
2f77fc4b 683 pthread_mutex_unlock(socket->lock);
f73fabfd 684 if (ret != LTTNG_OK) {
2f77fc4b
DG
685 goto error;
686 }
6dc3064a
DG
687 /* Session is now ready for network streaming. */
688 session->net_handle = 1;
2f77fc4b
DG
689 }
690 }
691
692 if (ksess && ksess->consumer && ksess->consumer->type == CONSUMER_DST_NET
693 && ksess->consumer->enabled) {
694 cds_lfht_for_each_entry(ksess->consumer->socks->ht, &iter.iter,
695 socket, node.node) {
696 /* Code flow error */
697 assert(socket->fd >= 0);
698
699 pthread_mutex_lock(socket->lock);
6dc3064a 700 ret = send_consumer_relayd_sockets(LTTNG_DOMAIN_KERNEL, session->id,
f50f23d9 701 ksess->consumer, socket);
2f77fc4b 702 pthread_mutex_unlock(socket->lock);
f73fabfd 703 if (ret != LTTNG_OK) {
2f77fc4b
DG
704 goto error;
705 }
6dc3064a
DG
706 /* Session is now ready for network streaming. */
707 session->net_handle = 1;
2f77fc4b
DG
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 */
07b86b52 725 if (ksess->metadata == NULL && ksess->output_traces) {
9b6c7ec5
DG
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 */
07b86b52 734 if (ksess->metadata && ksess->metadata_stream_fd < 0) {
9b6c7ec5
DG
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
d2f11c4a
DG
860 /*
861 * Don't try to enable a channel if the session has been started at
862 * some point in time before. The tracer does not allow it.
863 */
864 if (session->started) {
865 ret = LTTNG_ERR_TRACE_ALREADY_STARTED;
866 goto error;
867 }
868
2223c96f
DG
869 rcu_read_lock();
870
7972aab2 871 switch (domain->type) {
2f77fc4b
DG
872 case LTTNG_DOMAIN_KERNEL:
873 {
874 struct ltt_kernel_channel *kchan;
875
2f77fc4b
DG
876 kchan = trace_kernel_get_channel_by_name(attr->name,
877 session->kernel_session);
878 if (kchan == NULL) {
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) {
7972aab2 899 ret = channel_ust_create(usess, attr, domain->buf_type);
2f77fc4b 900 } else {
7972aab2 901 ret = channel_ust_enable(usess, uchan);
2f77fc4b
DG
902 }
903 break;
904 }
2f77fc4b 905 default:
f73fabfd 906 ret = LTTNG_ERR_UNKNOWN_DOMAIN;
2f77fc4b
DG
907 goto error;
908 }
909
910error:
2223c96f 911 rcu_read_unlock();
2f77fc4b
DG
912 return ret;
913}
914
915
916/*
917 * Command LTTNG_DISABLE_EVENT processed by the client thread.
918 */
919int cmd_disable_event(struct ltt_session *session, int domain,
920 char *channel_name, char *event_name)
921{
922 int ret;
923
2223c96f
DG
924 rcu_read_lock();
925
2f77fc4b
DG
926 switch (domain) {
927 case LTTNG_DOMAIN_KERNEL:
928 {
929 struct ltt_kernel_channel *kchan;
930 struct ltt_kernel_session *ksess;
931
932 ksess = session->kernel_session;
933
934 kchan = trace_kernel_get_channel_by_name(channel_name, ksess);
935 if (kchan == NULL) {
f73fabfd 936 ret = LTTNG_ERR_KERN_CHAN_NOT_FOUND;
2f77fc4b
DG
937 goto error;
938 }
939
d3a56674 940 ret = event_kernel_disable_tracepoint(kchan, event_name);
f73fabfd 941 if (ret != LTTNG_OK) {
2f77fc4b
DG
942 goto error;
943 }
944
945 kernel_wait_quiescent(kernel_tracer_fd);
946 break;
947 }
948 case LTTNG_DOMAIN_UST:
949 {
950 struct ltt_ust_channel *uchan;
951 struct ltt_ust_session *usess;
952
953 usess = session->ust_session;
954
955 uchan = trace_ust_find_channel_by_name(usess->domain_global.channels,
956 channel_name);
957 if (uchan == NULL) {
f73fabfd 958 ret = LTTNG_ERR_UST_CHAN_NOT_FOUND;
2f77fc4b
DG
959 goto error;
960 }
961
7972aab2 962 ret = event_ust_disable_tracepoint(usess, uchan, event_name);
f73fabfd 963 if (ret != LTTNG_OK) {
2f77fc4b
DG
964 goto error;
965 }
966
967 DBG3("Disable UST event %s in channel %s completed", event_name,
968 channel_name);
969 break;
970 }
971#if 0
972 case LTTNG_DOMAIN_UST_EXEC_NAME:
973 case LTTNG_DOMAIN_UST_PID:
974 case LTTNG_DOMAIN_UST_PID_FOLLOW_CHILDREN:
975#endif
976 default:
f73fabfd 977 ret = LTTNG_ERR_UND;
2f77fc4b
DG
978 goto error;
979 }
980
f73fabfd 981 ret = LTTNG_OK;
2f77fc4b
DG
982
983error:
2223c96f 984 rcu_read_unlock();
2f77fc4b
DG
985 return ret;
986}
987
988/*
989 * Command LTTNG_DISABLE_ALL_EVENT processed by the client thread.
990 */
991int cmd_disable_event_all(struct ltt_session *session, int domain,
992 char *channel_name)
993{
994 int ret;
995
2223c96f
DG
996 rcu_read_lock();
997
2f77fc4b
DG
998 switch (domain) {
999 case LTTNG_DOMAIN_KERNEL:
1000 {
1001 struct ltt_kernel_session *ksess;
1002 struct ltt_kernel_channel *kchan;
1003
1004 ksess = session->kernel_session;
1005
1006 kchan = trace_kernel_get_channel_by_name(channel_name, ksess);
1007 if (kchan == NULL) {
f73fabfd 1008 ret = LTTNG_ERR_KERN_CHAN_NOT_FOUND;
2f77fc4b
DG
1009 goto error;
1010 }
1011
d3a56674 1012 ret = event_kernel_disable_all(kchan);
f73fabfd 1013 if (ret != LTTNG_OK) {
2f77fc4b
DG
1014 goto error;
1015 }
1016
1017 kernel_wait_quiescent(kernel_tracer_fd);
1018 break;
1019 }
1020 case LTTNG_DOMAIN_UST:
1021 {
1022 struct ltt_ust_session *usess;
1023 struct ltt_ust_channel *uchan;
1024
1025 usess = session->ust_session;
1026
1027 uchan = trace_ust_find_channel_by_name(usess->domain_global.channels,
1028 channel_name);
1029 if (uchan == NULL) {
f73fabfd 1030 ret = LTTNG_ERR_UST_CHAN_NOT_FOUND;
2f77fc4b
DG
1031 goto error;
1032 }
1033
7972aab2 1034 ret = event_ust_disable_all_tracepoints(usess, uchan);
2f77fc4b
DG
1035 if (ret != 0) {
1036 goto error;
1037 }
1038
1039 DBG3("Disable all UST events in channel %s completed", channel_name);
1040
1041 break;
1042 }
1043#if 0
1044 case LTTNG_DOMAIN_UST_EXEC_NAME:
1045 case LTTNG_DOMAIN_UST_PID:
1046 case LTTNG_DOMAIN_UST_PID_FOLLOW_CHILDREN:
1047#endif
1048 default:
f73fabfd 1049 ret = LTTNG_ERR_UND;
2f77fc4b
DG
1050 goto error;
1051 }
1052
f73fabfd 1053 ret = LTTNG_OK;
2f77fc4b
DG
1054
1055error:
2223c96f 1056 rcu_read_unlock();
2f77fc4b
DG
1057 return ret;
1058}
1059
1060/*
1061 * Command LTTNG_ADD_CONTEXT processed by the client thread.
1062 */
1063int cmd_add_context(struct ltt_session *session, int domain,
601d5acf 1064 char *channel_name, struct lttng_event_context *ctx, int kwpipe)
2f77fc4b 1065{
d5979e4a 1066 int ret, chan_kern_created = 0, chan_ust_created = 0;
2f77fc4b
DG
1067
1068 switch (domain) {
1069 case LTTNG_DOMAIN_KERNEL:
979e618e
DG
1070 assert(session->kernel_session);
1071
1072 if (session->kernel_session->channel_count == 0) {
1073 /* Create default channel */
1074 ret = channel_kernel_create(session->kernel_session, NULL, kwpipe);
1075 if (ret != LTTNG_OK) {
1076 goto error;
1077 }
d5979e4a 1078 chan_kern_created = 1;
979e618e
DG
1079 }
1080
2f77fc4b 1081 /* Add kernel context to kernel tracer */
601d5acf 1082 ret = context_kernel_add(session->kernel_session, ctx, channel_name);
f73fabfd 1083 if (ret != LTTNG_OK) {
2f77fc4b
DG
1084 goto error;
1085 }
1086 break;
1087 case LTTNG_DOMAIN_UST:
1088 {
1089 struct ltt_ust_session *usess = session->ust_session;
2f77fc4b
DG
1090 assert(usess);
1091
979e618e
DG
1092 unsigned int chan_count =
1093 lttng_ht_get_count(usess->domain_global.channels);
1094 if (chan_count == 0) {
1095 struct lttng_channel *attr;
1096 /* Create default channel */
0a9c6494 1097 attr = channel_new_default_attr(domain, usess->buffer_type);
979e618e
DG
1098 if (attr == NULL) {
1099 ret = LTTNG_ERR_FATAL;
1100 goto error;
1101 }
1102
7972aab2 1103 ret = channel_ust_create(usess, attr, usess->buffer_type);
979e618e
DG
1104 if (ret != LTTNG_OK) {
1105 free(attr);
1106 goto error;
1107 }
1108 free(attr);
d5979e4a 1109 chan_ust_created = 1;
979e618e
DG
1110 }
1111
601d5acf 1112 ret = context_ust_add(usess, domain, ctx, channel_name);
f73fabfd 1113 if (ret != LTTNG_OK) {
2f77fc4b
DG
1114 goto error;
1115 }
1116 break;
1117 }
1118#if 0
1119 case LTTNG_DOMAIN_UST_EXEC_NAME:
1120 case LTTNG_DOMAIN_UST_PID:
1121 case LTTNG_DOMAIN_UST_PID_FOLLOW_CHILDREN:
1122#endif
1123 default:
f73fabfd 1124 ret = LTTNG_ERR_UND;
2f77fc4b
DG
1125 goto error;
1126 }
1127
d5979e4a 1128 return LTTNG_OK;
2f77fc4b
DG
1129
1130error:
d5979e4a
DG
1131 if (chan_kern_created) {
1132 struct ltt_kernel_channel *kchan =
1133 trace_kernel_get_channel_by_name(DEFAULT_CHANNEL_NAME,
1134 session->kernel_session);
1135 /* Created previously, this should NOT fail. */
1136 assert(kchan);
1137 kernel_destroy_channel(kchan);
1138 }
1139
1140 if (chan_ust_created) {
1141 struct ltt_ust_channel *uchan =
1142 trace_ust_find_channel_by_name(
1143 session->ust_session->domain_global.channels,
1144 DEFAULT_CHANNEL_NAME);
1145 /* Created previously, this should NOT fail. */
1146 assert(uchan);
1147 /* Remove from the channel list of the session. */
1148 trace_ust_delete_channel(session->ust_session->domain_global.channels,
1149 uchan);
1150 trace_ust_destroy_channel(uchan);
1151 }
2f77fc4b
DG
1152 return ret;
1153}
1154
2f77fc4b
DG
1155/*
1156 * Command LTTNG_ENABLE_EVENT processed by the client thread.
1157 */
7972aab2 1158int cmd_enable_event(struct ltt_session *session, struct lttng_domain *domain,
025faf73
DG
1159 char *channel_name, struct lttng_event *event,
1160 struct lttng_filter_bytecode *filter, int wpipe)
2f77fc4b 1161{
e5f5db7f 1162 int ret, channel_created = 0;
2f77fc4b
DG
1163 struct lttng_channel *attr;
1164
1165 assert(session);
1166 assert(event);
1167 assert(channel_name);
1168
2223c96f
DG
1169 rcu_read_lock();
1170
7972aab2 1171 switch (domain->type) {
2f77fc4b
DG
1172 case LTTNG_DOMAIN_KERNEL:
1173 {
1174 struct ltt_kernel_channel *kchan;
1175
1176 kchan = trace_kernel_get_channel_by_name(channel_name,
1177 session->kernel_session);
1178 if (kchan == NULL) {
0a9c6494
DG
1179 attr = channel_new_default_attr(LTTNG_DOMAIN_KERNEL,
1180 LTTNG_BUFFER_GLOBAL);
2f77fc4b 1181 if (attr == NULL) {
f73fabfd 1182 ret = LTTNG_ERR_FATAL;
2f77fc4b
DG
1183 goto error;
1184 }
1185 strncpy(attr->name, channel_name, sizeof(attr->name));
1186
1187 ret = cmd_enable_channel(session, domain, attr, wpipe);
f73fabfd 1188 if (ret != LTTNG_OK) {
2f77fc4b
DG
1189 free(attr);
1190 goto error;
1191 }
1192 free(attr);
e5f5db7f
DG
1193
1194 channel_created = 1;
2f77fc4b
DG
1195 }
1196
1197 /* Get the newly created kernel channel pointer */
1198 kchan = trace_kernel_get_channel_by_name(channel_name,
1199 session->kernel_session);
1200 if (kchan == NULL) {
1201 /* This sould not happen... */
f73fabfd 1202 ret = LTTNG_ERR_FATAL;
2f77fc4b
DG
1203 goto error;
1204 }
1205
d3a56674 1206 ret = event_kernel_enable_tracepoint(kchan, event);
f73fabfd 1207 if (ret != LTTNG_OK) {
e5f5db7f
DG
1208 if (channel_created) {
1209 /* Let's not leak a useless channel. */
1210 kernel_destroy_channel(kchan);
1211 }
2f77fc4b
DG
1212 goto error;
1213 }
1214
1215 kernel_wait_quiescent(kernel_tracer_fd);
1216 break;
1217 }
1218 case LTTNG_DOMAIN_UST:
1219 {
1220 struct ltt_ust_channel *uchan;
1221 struct ltt_ust_session *usess = session->ust_session;
1222
1223 assert(usess);
1224
1225 /* Get channel from global UST domain */
1226 uchan = trace_ust_find_channel_by_name(usess->domain_global.channels,
1227 channel_name);
1228 if (uchan == NULL) {
1229 /* Create default channel */
0a9c6494
DG
1230 attr = channel_new_default_attr(LTTNG_DOMAIN_UST,
1231 usess->buffer_type);
2f77fc4b 1232 if (attr == NULL) {
f73fabfd 1233 ret = LTTNG_ERR_FATAL;
2f77fc4b
DG
1234 goto error;
1235 }
1236 strncpy(attr->name, channel_name, sizeof(attr->name));
1237
1238 ret = cmd_enable_channel(session, domain, attr, wpipe);
f73fabfd 1239 if (ret != LTTNG_OK) {
2f77fc4b
DG
1240 free(attr);
1241 goto error;
1242 }
1243 free(attr);
1244
1245 /* Get the newly created channel reference back */
1246 uchan = trace_ust_find_channel_by_name(
1247 usess->domain_global.channels, channel_name);
1248 assert(uchan);
1249 }
1250
1251 /* At this point, the session and channel exist on the tracer */
7972aab2 1252 ret = event_ust_enable_tracepoint(usess, uchan, event, filter);
f73fabfd 1253 if (ret != LTTNG_OK) {
2f77fc4b
DG
1254 goto error;
1255 }
1256 break;
1257 }
1258#if 0
1259 case LTTNG_DOMAIN_UST_EXEC_NAME:
1260 case LTTNG_DOMAIN_UST_PID:
1261 case LTTNG_DOMAIN_UST_PID_FOLLOW_CHILDREN:
1262#endif
1263 default:
f73fabfd 1264 ret = LTTNG_ERR_UND;
2f77fc4b
DG
1265 goto error;
1266 }
1267
f73fabfd 1268 ret = LTTNG_OK;
2f77fc4b
DG
1269
1270error:
2223c96f 1271 rcu_read_unlock();
2f77fc4b
DG
1272 return ret;
1273}
1274
1275/*
1276 * Command LTTNG_ENABLE_ALL_EVENT processed by the client thread.
1277 */
7972aab2
DG
1278int cmd_enable_event_all(struct ltt_session *session,
1279 struct lttng_domain *domain, char *channel_name, int event_type,
025faf73 1280 struct lttng_filter_bytecode *filter, int wpipe)
2f77fc4b
DG
1281{
1282 int ret;
1283 struct lttng_channel *attr;
1284
1285 assert(session);
1286 assert(channel_name);
1287
2223c96f
DG
1288 rcu_read_lock();
1289
7972aab2 1290 switch (domain->type) {
2f77fc4b
DG
1291 case LTTNG_DOMAIN_KERNEL:
1292 {
1293 struct ltt_kernel_channel *kchan;
1294
1295 assert(session->kernel_session);
1296
1297 kchan = trace_kernel_get_channel_by_name(channel_name,
1298 session->kernel_session);
1299 if (kchan == NULL) {
1300 /* Create default channel */
0a9c6494
DG
1301 attr = channel_new_default_attr(LTTNG_DOMAIN_KERNEL,
1302 LTTNG_BUFFER_GLOBAL);
2f77fc4b 1303 if (attr == NULL) {
f73fabfd 1304 ret = LTTNG_ERR_FATAL;
2f77fc4b
DG
1305 goto error;
1306 }
1307 strncpy(attr->name, channel_name, sizeof(attr->name));
1308
1309 ret = cmd_enable_channel(session, domain, attr, wpipe);
f73fabfd 1310 if (ret != LTTNG_OK) {
2f77fc4b
DG
1311 free(attr);
1312 goto error;
1313 }
1314 free(attr);
1315
1316 /* Get the newly created kernel channel pointer */
1317 kchan = trace_kernel_get_channel_by_name(channel_name,
1318 session->kernel_session);
1319 assert(kchan);
1320 }
1321
1322 switch (event_type) {
1323 case LTTNG_EVENT_SYSCALL:
d3a56674 1324 ret = event_kernel_enable_all_syscalls(kchan, kernel_tracer_fd);
2f77fc4b
DG
1325 break;
1326 case LTTNG_EVENT_TRACEPOINT:
1327 /*
1328 * This call enables all LTTNG_KERNEL_TRACEPOINTS and
1329 * events already registered to the channel.
1330 */
d3a56674 1331 ret = event_kernel_enable_all_tracepoints(kchan, kernel_tracer_fd);
2f77fc4b
DG
1332 break;
1333 case LTTNG_EVENT_ALL:
1334 /* Enable syscalls and tracepoints */
d3a56674 1335 ret = event_kernel_enable_all(kchan, kernel_tracer_fd);
2f77fc4b
DG
1336 break;
1337 default:
f73fabfd 1338 ret = LTTNG_ERR_KERN_ENABLE_FAIL;
2f77fc4b
DG
1339 goto error;
1340 }
1341
1342 /* Manage return value */
f73fabfd 1343 if (ret != LTTNG_OK) {
e5f5db7f
DG
1344 /*
1345 * On error, cmd_enable_channel call will take care of destroying
1346 * the created channel if it was needed.
1347 */
2f77fc4b
DG
1348 goto error;
1349 }
1350
1351 kernel_wait_quiescent(kernel_tracer_fd);
1352 break;
1353 }
1354 case LTTNG_DOMAIN_UST:
1355 {
1356 struct ltt_ust_channel *uchan;
1357 struct ltt_ust_session *usess = session->ust_session;
1358
1359 assert(usess);
1360
1361 /* Get channel from global UST domain */
1362 uchan = trace_ust_find_channel_by_name(usess->domain_global.channels,
1363 channel_name);
1364 if (uchan == NULL) {
1365 /* Create default channel */
0a9c6494
DG
1366 attr = channel_new_default_attr(LTTNG_DOMAIN_UST,
1367 usess->buffer_type);
2f77fc4b 1368 if (attr == NULL) {
f73fabfd 1369 ret = LTTNG_ERR_FATAL;
2f77fc4b
DG
1370 goto error;
1371 }
1372 strncpy(attr->name, channel_name, sizeof(attr->name));
1373
1374 ret = cmd_enable_channel(session, domain, attr, wpipe);
f73fabfd 1375 if (ret != LTTNG_OK) {
2f77fc4b
DG
1376 free(attr);
1377 goto error;
1378 }
1379 free(attr);
1380
1381 /* Get the newly created channel reference back */
1382 uchan = trace_ust_find_channel_by_name(
1383 usess->domain_global.channels, channel_name);
1384 assert(uchan);
1385 }
1386
1387 /* At this point, the session and channel exist on the tracer */
1388
1389 switch (event_type) {
1390 case LTTNG_EVENT_ALL:
1391 case LTTNG_EVENT_TRACEPOINT:
7972aab2 1392 ret = event_ust_enable_all_tracepoints(usess, uchan, filter);
f73fabfd 1393 if (ret != LTTNG_OK) {
2f77fc4b
DG
1394 goto error;
1395 }
1396 break;
1397 default:
f73fabfd 1398 ret = LTTNG_ERR_UST_ENABLE_FAIL;
2f77fc4b
DG
1399 goto error;
1400 }
1401
1402 /* Manage return value */
f73fabfd 1403 if (ret != LTTNG_OK) {
2f77fc4b
DG
1404 goto error;
1405 }
1406
1407 break;
1408 }
1409#if 0
1410 case LTTNG_DOMAIN_UST_EXEC_NAME:
1411 case LTTNG_DOMAIN_UST_PID:
1412 case LTTNG_DOMAIN_UST_PID_FOLLOW_CHILDREN:
1413#endif
1414 default:
f73fabfd 1415 ret = LTTNG_ERR_UND;
2f77fc4b
DG
1416 goto error;
1417 }
1418
f73fabfd 1419 ret = LTTNG_OK;
2f77fc4b
DG
1420
1421error:
2223c96f 1422 rcu_read_unlock();
2f77fc4b
DG
1423 return ret;
1424}
1425
1426
1427/*
1428 * Command LTTNG_LIST_TRACEPOINTS processed by the client thread.
1429 */
1430ssize_t cmd_list_tracepoints(int domain, struct lttng_event **events)
1431{
1432 int ret;
1433 ssize_t nb_events = 0;
1434
1435 switch (domain) {
1436 case LTTNG_DOMAIN_KERNEL:
1437 nb_events = kernel_list_events(kernel_tracer_fd, events);
1438 if (nb_events < 0) {
f73fabfd 1439 ret = LTTNG_ERR_KERN_LIST_FAIL;
2f77fc4b
DG
1440 goto error;
1441 }
1442 break;
1443 case LTTNG_DOMAIN_UST:
1444 nb_events = ust_app_list_events(events);
1445 if (nb_events < 0) {
f73fabfd 1446 ret = LTTNG_ERR_UST_LIST_FAIL;
2f77fc4b
DG
1447 goto error;
1448 }
1449 break;
1450 default:
f73fabfd 1451 ret = LTTNG_ERR_UND;
2f77fc4b
DG
1452 goto error;
1453 }
1454
1455 return nb_events;
1456
1457error:
1458 /* Return negative value to differentiate return code */
1459 return -ret;
1460}
1461
1462/*
1463 * Command LTTNG_LIST_TRACEPOINT_FIELDS processed by the client thread.
1464 */
1465ssize_t cmd_list_tracepoint_fields(int domain,
1466 struct lttng_event_field **fields)
1467{
1468 int ret;
1469 ssize_t nb_fields = 0;
1470
1471 switch (domain) {
1472 case LTTNG_DOMAIN_UST:
1473 nb_fields = ust_app_list_event_fields(fields);
1474 if (nb_fields < 0) {
f73fabfd 1475 ret = LTTNG_ERR_UST_LIST_FAIL;
2f77fc4b
DG
1476 goto error;
1477 }
1478 break;
1479 case LTTNG_DOMAIN_KERNEL:
1480 default: /* fall-through */
f73fabfd 1481 ret = LTTNG_ERR_UND;
2f77fc4b
DG
1482 goto error;
1483 }
1484
1485 return nb_fields;
1486
1487error:
1488 /* Return negative value to differentiate return code */
1489 return -ret;
1490}
1491
1492/*
1493 * Command LTTNG_START_TRACE processed by the client thread.
1494 */
1495int cmd_start_trace(struct ltt_session *session)
1496{
1497 int ret;
1498 struct ltt_kernel_session *ksession;
1499 struct ltt_ust_session *usess;
2f77fc4b
DG
1500
1501 assert(session);
1502
1503 /* Ease our life a bit ;) */
1504 ksession = session->kernel_session;
1505 usess = session->ust_session;
1506
1507 if (session->enabled) {
1508 /* Already started. */
f73fabfd 1509 ret = LTTNG_ERR_TRACE_ALREADY_STARTED;
2f77fc4b
DG
1510 goto error;
1511 }
1512
1513 session->enabled = 1;
1514
2f77fc4b
DG
1515 /* Kernel tracing */
1516 if (ksession != NULL) {
9b6c7ec5
DG
1517 ret = start_kernel_session(ksession, kernel_tracer_fd);
1518 if (ret != LTTNG_OK) {
2f77fc4b
DG
1519 goto error;
1520 }
2f77fc4b
DG
1521 }
1522
1523 /* Flag session that trace should start automatically */
1524 if (usess) {
1525 usess->start_trace = 1;
1526
1527 ret = ust_app_start_trace_all(usess);
1528 if (ret < 0) {
f73fabfd 1529 ret = LTTNG_ERR_UST_START_FAIL;
2f77fc4b
DG
1530 goto error;
1531 }
1532 }
1533
9b6c7ec5
DG
1534 session->started = 1;
1535
f73fabfd 1536 ret = LTTNG_OK;
2f77fc4b
DG
1537
1538error:
1539 return ret;
1540}
1541
1542/*
1543 * Command LTTNG_STOP_TRACE processed by the client thread.
1544 */
1545int cmd_stop_trace(struct ltt_session *session)
1546{
1547 int ret;
1548 struct ltt_kernel_channel *kchan;
1549 struct ltt_kernel_session *ksession;
1550 struct ltt_ust_session *usess;
1551
1552 assert(session);
1553
1554 /* Short cut */
1555 ksession = session->kernel_session;
1556 usess = session->ust_session;
1557
1558 if (!session->enabled) {
f73fabfd 1559 ret = LTTNG_ERR_TRACE_ALREADY_STOPPED;
2f77fc4b
DG
1560 goto error;
1561 }
1562
1563 session->enabled = 0;
1564
1565 /* Kernel tracer */
d39829a1 1566 if (ksession && ksession->started) {
2f77fc4b
DG
1567 DBG("Stop kernel tracing");
1568
1569 /* Flush metadata if exist */
1570 if (ksession->metadata_stream_fd >= 0) {
1571 ret = kernel_metadata_flush_buffer(ksession->metadata_stream_fd);
1572 if (ret < 0) {
1573 ERR("Kernel metadata flush failed");
1574 }
1575 }
1576
1577 /* Flush all buffers before stopping */
1578 cds_list_for_each_entry(kchan, &ksession->channel_list.head, list) {
1579 ret = kernel_flush_buffer(kchan);
1580 if (ret < 0) {
1581 ERR("Kernel flush buffer error");
1582 }
1583 }
1584
1585 ret = kernel_stop_session(ksession);
1586 if (ret < 0) {
f73fabfd 1587 ret = LTTNG_ERR_KERN_STOP_FAIL;
2f77fc4b
DG
1588 goto error;
1589 }
1590
1591 kernel_wait_quiescent(kernel_tracer_fd);
9b6c7ec5
DG
1592
1593 ksession->started = 0;
2f77fc4b
DG
1594 }
1595
d39829a1 1596 if (usess && usess->start_trace) {
2f77fc4b
DG
1597 usess->start_trace = 0;
1598
1599 ret = ust_app_stop_trace_all(usess);
1600 if (ret < 0) {
f73fabfd 1601 ret = LTTNG_ERR_UST_STOP_FAIL;
2f77fc4b
DG
1602 goto error;
1603 }
1604 }
1605
f73fabfd 1606 ret = LTTNG_OK;
2f77fc4b
DG
1607
1608error:
1609 return ret;
1610}
1611
1612/*
1613 * Command LTTNG_SET_CONSUMER_URI processed by the client thread.
1614 */
1615int cmd_set_consumer_uri(int domain, struct ltt_session *session,
1616 size_t nb_uri, struct lttng_uri *uris)
1617{
1618 int ret, i;
1619 struct ltt_kernel_session *ksess = session->kernel_session;
1620 struct ltt_ust_session *usess = session->ust_session;
1621 struct consumer_output *consumer = NULL;
1622
1623 assert(session);
1624 assert(uris);
1625 assert(nb_uri > 0);
1626
1627 /* Can't enable consumer after session started. */
1628 if (session->enabled) {
f73fabfd 1629 ret = LTTNG_ERR_TRACE_ALREADY_STARTED;
2f77fc4b
DG
1630 goto error;
1631 }
1632
2f77fc4b
DG
1633 /*
1634 * This case switch makes sure the domain session has a temporary consumer
1635 * so the URL can be set.
1636 */
1637 switch (domain) {
1638 case 0:
1639 /* Code flow error. A session MUST always have a consumer object */
1640 assert(session->consumer);
1641 /*
1642 * The URL will be added to the tracing session consumer instead of a
1643 * specific domain consumer.
1644 */
1645 consumer = session->consumer;
1646 break;
1647 case LTTNG_DOMAIN_KERNEL:
1648 /* Code flow error if we don't have a kernel session here. */
1649 assert(ksess);
785d2d0d
DG
1650 assert(ksess->consumer);
1651 consumer = ksess->consumer;
2f77fc4b
DG
1652 break;
1653 case LTTNG_DOMAIN_UST:
1654 /* Code flow error if we don't have a kernel session here. */
1655 assert(usess);
785d2d0d
DG
1656 assert(usess->consumer);
1657 consumer = usess->consumer;
2f77fc4b
DG
1658 break;
1659 }
1660
1661 for (i = 0; i < nb_uri; i++) {
2f77fc4b 1662 ret = add_uri_to_consumer(consumer, &uris[i], domain, session->name);
a74934ba 1663 if (ret != LTTNG_OK) {
2f77fc4b
DG
1664 goto error;
1665 }
2f77fc4b
DG
1666 }
1667
1668 /* All good! */
f73fabfd 1669 ret = LTTNG_OK;
2f77fc4b
DG
1670
1671error:
1672 return ret;
1673}
1674
1675/*
1676 * Command LTTNG_CREATE_SESSION processed by the client thread.
1677 */
1678int cmd_create_session_uri(char *name, struct lttng_uri *uris,
1679 size_t nb_uri, lttng_sock_cred *creds)
1680{
1681 int ret;
2f77fc4b
DG
1682 struct ltt_session *session;
1683
1684 assert(name);
2bba9e53 1685 assert(creds);
785d2d0d 1686
2f77fc4b
DG
1687 /*
1688 * Verify if the session already exist
1689 *
1690 * XXX: There is no need for the session lock list here since the caller
1691 * (process_client_msg) is holding it. We might want to change that so a
1692 * single command does not lock the entire session list.
1693 */
1694 session = session_find_by_name(name);
1695 if (session != NULL) {
f73fabfd 1696 ret = LTTNG_ERR_EXIST_SESS;
2f77fc4b
DG
1697 goto find_error;
1698 }
1699
1700 /* Create tracing session in the registry */
dec56f6c 1701 ret = session_create(name, LTTNG_SOCK_GET_UID_CRED(creds),
2f77fc4b 1702 LTTNG_SOCK_GET_GID_CRED(creds));
f73fabfd 1703 if (ret != LTTNG_OK) {
2f77fc4b
DG
1704 goto session_error;
1705 }
1706
1707 /*
1708 * Get the newly created session pointer back
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 assert(session);
1716
1717 /* Create default consumer output for the session not yet created. */
1718 session->consumer = consumer_create_output(CONSUMER_DST_LOCAL);
1719 if (session->consumer == NULL) {
f73fabfd 1720 ret = LTTNG_ERR_FATAL;
2f77fc4b
DG
1721 goto consumer_error;
1722 }
1723
2bba9e53
DG
1724 if (uris) {
1725 ret = cmd_set_consumer_uri(0, session, nb_uri, uris);
1726 if (ret != LTTNG_OK) {
1727 goto consumer_error;
1728 }
1729 session->output_traces = 1;
1730 } else {
1731 session->output_traces = 0;
1732 DBG2("Session %s created with no output", session->name);
2f77fc4b
DG
1733 }
1734
1735 session->consumer->enabled = 1;
1736
f73fabfd 1737 return LTTNG_OK;
2f77fc4b
DG
1738
1739consumer_error:
1740 session_destroy(session);
1741session_error:
1742find_error:
1743 return ret;
1744}
1745
1746/*
1747 * Command LTTNG_DESTROY_SESSION processed by the client thread.
1748 */
1749int cmd_destroy_session(struct ltt_session *session, int wpipe)
1750{
1751 int ret;
1752 struct ltt_ust_session *usess;
1753 struct ltt_kernel_session *ksess;
1754
1755 /* Safety net */
1756 assert(session);
1757
1758 usess = session->ust_session;
1759 ksess = session->kernel_session;
1760
1761 /* Clean kernel session teardown */
1762 kernel_destroy_session(ksess);
1763
1764 /* UST session teardown */
1765 if (usess) {
1766 /* Close any relayd session */
1767 consumer_output_send_destroy_relayd(usess->consumer);
1768
1769 /* Destroy every UST application related to this session. */
1770 ret = ust_app_destroy_trace_all(usess);
1771 if (ret) {
1772 ERR("Error in ust_app_destroy_trace_all");
1773 }
1774
1775 /* Clean up the rest. */
1776 trace_ust_destroy_session(usess);
1777 }
1778
1779 /*
1780 * Must notify the kernel thread here to update it's poll set in order to
1781 * remove the channel(s)' fd just destroyed.
1782 */
1783 ret = notify_thread_pipe(wpipe);
1784 if (ret < 0) {
1785 PERROR("write kernel poll pipe");
1786 }
1787
1788 ret = session_destroy(session);
1789
1790 return ret;
1791}
1792
1793/*
1794 * Command LTTNG_CALIBRATE processed by the client thread.
1795 */
1796int cmd_calibrate(int domain, struct lttng_calibrate *calibrate)
1797{
1798 int ret;
1799
1800 switch (domain) {
1801 case LTTNG_DOMAIN_KERNEL:
1802 {
1803 struct lttng_kernel_calibrate kcalibrate;
1804
1805 kcalibrate.type = calibrate->type;
1806 ret = kernel_calibrate(kernel_tracer_fd, &kcalibrate);
1807 if (ret < 0) {
f73fabfd 1808 ret = LTTNG_ERR_KERN_ENABLE_FAIL;
2f77fc4b
DG
1809 goto error;
1810 }
1811 break;
1812 }
1813 case LTTNG_DOMAIN_UST:
1814 {
1815 struct lttng_ust_calibrate ucalibrate;
1816
1817 ucalibrate.type = calibrate->type;
1818 ret = ust_app_calibrate_glb(&ucalibrate);
1819 if (ret < 0) {
f73fabfd 1820 ret = LTTNG_ERR_UST_CALIBRATE_FAIL;
2f77fc4b
DG
1821 goto error;
1822 }
1823 break;
1824 }
1825 default:
f73fabfd 1826 ret = LTTNG_ERR_UND;
2f77fc4b
DG
1827 goto error;
1828 }
1829
f73fabfd 1830 ret = LTTNG_OK;
2f77fc4b
DG
1831
1832error:
1833 return ret;
1834}
1835
1836/*
1837 * Command LTTNG_REGISTER_CONSUMER processed by the client thread.
1838 */
1839int cmd_register_consumer(struct ltt_session *session, int domain,
1840 const char *sock_path, struct consumer_data *cdata)
1841{
1842 int ret, sock;
dd81b457 1843 struct consumer_socket *socket = NULL;
2f77fc4b
DG
1844
1845 assert(session);
1846 assert(cdata);
1847 assert(sock_path);
1848
1849 switch (domain) {
1850 case LTTNG_DOMAIN_KERNEL:
1851 {
1852 struct ltt_kernel_session *ksess = session->kernel_session;
1853
1854 assert(ksess);
1855
1856 /* Can't register a consumer if there is already one */
1857 if (ksess->consumer_fds_sent != 0) {
f73fabfd 1858 ret = LTTNG_ERR_KERN_CONSUMER_FAIL;
2f77fc4b
DG
1859 goto error;
1860 }
1861
1862 sock = lttcomm_connect_unix_sock(sock_path);
1863 if (sock < 0) {
f73fabfd 1864 ret = LTTNG_ERR_CONNECT_FAIL;
2f77fc4b
DG
1865 goto error;
1866 }
1867
1868 socket = consumer_allocate_socket(sock);
1869 if (socket == NULL) {
f66c074c
DG
1870 ret = close(sock);
1871 if (ret < 0) {
1872 PERROR("close register consumer");
1873 }
f73fabfd 1874 ret = LTTNG_ERR_FATAL;
2f77fc4b
DG
1875 goto error;
1876 }
1877
1878 socket->lock = zmalloc(sizeof(pthread_mutex_t));
1879 if (socket->lock == NULL) {
1880 PERROR("zmalloc pthread mutex");
f73fabfd 1881 ret = LTTNG_ERR_FATAL;
2f77fc4b
DG
1882 goto error;
1883 }
1884 pthread_mutex_init(socket->lock, NULL);
1885 socket->registered = 1;
1886
1887 rcu_read_lock();
1888 consumer_add_socket(socket, ksess->consumer);
1889 rcu_read_unlock();
1890
1891 pthread_mutex_lock(&cdata->pid_mutex);
1892 cdata->pid = -1;
1893 pthread_mutex_unlock(&cdata->pid_mutex);
1894
1895 break;
1896 }
1897 default:
1898 /* TODO: Userspace tracing */
f73fabfd 1899 ret = LTTNG_ERR_UND;
2f77fc4b
DG
1900 goto error;
1901 }
1902
dd81b457 1903 return LTTNG_OK;
2f77fc4b
DG
1904
1905error:
dd81b457
DG
1906 if (socket) {
1907 consumer_destroy_socket(socket);
1908 }
2f77fc4b
DG
1909 return ret;
1910}
1911
1912/*
1913 * Command LTTNG_LIST_DOMAINS processed by the client thread.
1914 */
1915ssize_t cmd_list_domains(struct ltt_session *session,
1916 struct lttng_domain **domains)
1917{
1918 int ret, index = 0;
1919 ssize_t nb_dom = 0;
1920
1921 if (session->kernel_session != NULL) {
1922 DBG3("Listing domains found kernel domain");
1923 nb_dom++;
1924 }
1925
1926 if (session->ust_session != NULL) {
1927 DBG3("Listing domains found UST global domain");
1928 nb_dom++;
1929 }
1930
1931 *domains = zmalloc(nb_dom * sizeof(struct lttng_domain));
1932 if (*domains == NULL) {
f73fabfd 1933 ret = LTTNG_ERR_FATAL;
2f77fc4b
DG
1934 goto error;
1935 }
1936
1937 if (session->kernel_session != NULL) {
1938 (*domains)[index].type = LTTNG_DOMAIN_KERNEL;
1939 index++;
1940 }
1941
1942 if (session->ust_session != NULL) {
1943 (*domains)[index].type = LTTNG_DOMAIN_UST;
88c5f0d8 1944 (*domains)[index].buf_type = session->ust_session->buffer_type;
2f77fc4b
DG
1945 index++;
1946 }
1947
1948 return nb_dom;
1949
1950error:
f73fabfd
DG
1951 /* Return negative value to differentiate return code */
1952 return -ret;
2f77fc4b
DG
1953}
1954
1955
1956/*
1957 * Command LTTNG_LIST_CHANNELS processed by the client thread.
1958 */
1959ssize_t cmd_list_channels(int domain, struct ltt_session *session,
1960 struct lttng_channel **channels)
1961{
1962 int ret;
1963 ssize_t nb_chan = 0;
1964
1965 switch (domain) {
1966 case LTTNG_DOMAIN_KERNEL:
1967 if (session->kernel_session != NULL) {
1968 nb_chan = session->kernel_session->channel_count;
1969 }
1970 DBG3("Number of kernel channels %zd", nb_chan);
c7d620a2
DG
1971 if (nb_chan <= 0) {
1972 ret = LTTNG_ERR_KERN_CHAN_NOT_FOUND;
1973 }
2f77fc4b
DG
1974 break;
1975 case LTTNG_DOMAIN_UST:
1976 if (session->ust_session != NULL) {
1977 nb_chan = lttng_ht_get_count(
1978 session->ust_session->domain_global.channels);
1979 }
1980 DBG3("Number of UST global channels %zd", nb_chan);
c7d620a2
DG
1981 if (nb_chan <= 0) {
1982 ret = LTTNG_ERR_UST_CHAN_NOT_FOUND;
1983 }
2f77fc4b
DG
1984 break;
1985 default:
1986 *channels = NULL;
f73fabfd 1987 ret = LTTNG_ERR_UND;
2f77fc4b
DG
1988 goto error;
1989 }
1990
1991 if (nb_chan > 0) {
1992 *channels = zmalloc(nb_chan * sizeof(struct lttng_channel));
1993 if (*channels == NULL) {
f73fabfd 1994 ret = LTTNG_ERR_FATAL;
2f77fc4b
DG
1995 goto error;
1996 }
1997
1998 list_lttng_channels(domain, session, *channels);
1999 } else {
2000 *channels = NULL;
c7d620a2
DG
2001 /* Ret value was set in the domain switch case */
2002 goto error;
2f77fc4b
DG
2003 }
2004
2005 return nb_chan;
2006
2007error:
f73fabfd
DG
2008 /* Return negative value to differentiate return code */
2009 return -ret;
2f77fc4b
DG
2010}
2011
2012/*
2013 * Command LTTNG_LIST_EVENTS processed by the client thread.
2014 */
2015ssize_t cmd_list_events(int domain, struct ltt_session *session,
2016 char *channel_name, struct lttng_event **events)
2017{
2018 int ret = 0;
2019 ssize_t nb_event = 0;
2020
2021 switch (domain) {
2022 case LTTNG_DOMAIN_KERNEL:
2023 if (session->kernel_session != NULL) {
2024 nb_event = list_lttng_kernel_events(channel_name,
2025 session->kernel_session, events);
2026 }
2027 break;
2028 case LTTNG_DOMAIN_UST:
2029 {
2030 if (session->ust_session != NULL) {
2031 nb_event = list_lttng_ust_global_events(channel_name,
2032 &session->ust_session->domain_global, events);
2033 }
2034 break;
2035 }
2036 default:
f73fabfd 2037 ret = LTTNG_ERR_UND;
2f77fc4b
DG
2038 goto error;
2039 }
2040
f73fabfd 2041 return nb_event;
2f77fc4b
DG
2042
2043error:
f73fabfd
DG
2044 /* Return negative value to differentiate return code */
2045 return -ret;
2f77fc4b
DG
2046}
2047
2048/*
2049 * Using the session list, filled a lttng_session array to send back to the
2050 * client for session listing.
2051 *
2052 * The session list lock MUST be acquired before calling this function. Use
2053 * session_lock_list() and session_unlock_list().
2054 */
2055void cmd_list_lttng_sessions(struct lttng_session *sessions, uid_t uid,
2056 gid_t gid)
2057{
2058 int ret;
2059 unsigned int i = 0;
2060 struct ltt_session *session;
2061 struct ltt_session_list *list = session_get_list();
2062
2063 DBG("Getting all available session for UID %d GID %d",
2064 uid, gid);
2065 /*
2066 * Iterate over session list and append data after the control struct in
2067 * the buffer.
2068 */
2069 cds_list_for_each_entry(session, &list->head, list) {
2070 /*
2071 * Only list the sessions the user can control.
2072 */
2073 if (!session_access_ok(session, uid, gid)) {
2074 continue;
2075 }
2076
2077 struct ltt_kernel_session *ksess = session->kernel_session;
2078 struct ltt_ust_session *usess = session->ust_session;
2079
2080 if (session->consumer->type == CONSUMER_DST_NET ||
2081 (ksess && ksess->consumer->type == CONSUMER_DST_NET) ||
2082 (usess && usess->consumer->type == CONSUMER_DST_NET)) {
2083 ret = build_network_session_path(sessions[i].path,
dec56f6c 2084 sizeof(sessions[i].path), session);
2f77fc4b 2085 } else {
dec56f6c 2086 ret = snprintf(sessions[i].path, sizeof(sessions[i].path), "%s",
2f77fc4b
DG
2087 session->consumer->dst.trace_path);
2088 }
2089 if (ret < 0) {
2090 PERROR("snprintf session path");
2091 continue;
2092 }
2093
2094 strncpy(sessions[i].name, session->name, NAME_MAX);
2095 sessions[i].name[NAME_MAX - 1] = '\0';
2096 sessions[i].enabled = session->enabled;
2097 i++;
2098 }
2099}
2100
806e2684 2101/*
6d805429
DG
2102 * Command LTTNG_DATA_PENDING returning 0 if the data is NOT pending meaning
2103 * ready for trace analysis (or anykind of reader) or else 1 for pending data.
806e2684 2104 */
6d805429 2105int cmd_data_pending(struct ltt_session *session)
806e2684
DG
2106{
2107 int ret;
2108 struct ltt_kernel_session *ksess = session->kernel_session;
2109 struct ltt_ust_session *usess = session->ust_session;
2110
2111 assert(session);
2112
2113 /* Session MUST be stopped to ask for data availability. */
2114 if (session->enabled) {
2115 ret = LTTNG_ERR_SESSION_STARTED;
2116 goto error;
2117 }
2118
2119 if (ksess && ksess->consumer) {
6d805429
DG
2120 ret = consumer_is_data_pending(ksess->id, ksess->consumer);
2121 if (ret == 1) {
806e2684
DG
2122 /* Data is still being extracted for the kernel. */
2123 goto error;
2124 }
2125 }
2126
2127 if (usess && usess->consumer) {
6d805429
DG
2128 ret = consumer_is_data_pending(usess->id, usess->consumer);
2129 if (ret == 1) {
806e2684
DG
2130 /* Data is still being extracted for the kernel. */
2131 goto error;
2132 }
2133 }
2134
2135 /* Data is ready to be read by a viewer */
6d805429 2136 ret = 0;
806e2684
DG
2137
2138error:
2139 return ret;
2140}
2141
6dc3064a
DG
2142/*
2143 * Command LTTNG_SNAPSHOT_ADD_OUTPUT from the lttng ctl library.
2144 *
2145 * Return LTTNG_OK on success or else a LTTNG_ERR code.
2146 */
2147int cmd_snapshot_add_output(struct ltt_session *session,
2148 struct lttng_snapshot_output *output, uint32_t *id)
2149{
2150 int ret;
2151 struct snapshot_output *new_output;
2152
2153 assert(session);
2154 assert(output);
2155
2156 DBG("Cmd snapshot add output for session %s", session->name);
2157
2158 /*
2159 * Persmission denied to create an output if the session is not set in no
2160 * output mode.
2161 */
2162 if (session->output_traces) {
2163 ret = LTTNG_ERR_EPERM;
2164 goto error;
2165 }
2166
2167 /* Only one output is allowed until we have the "tee" feature. */
2168 if (session->snapshot.nb_output == 1) {
2169 ret = LTTNG_ERR_SNAPSHOT_OUTPUT_EXIST;
2170 goto error;
2171 }
2172
2173 new_output = snapshot_output_alloc();
2174 if (!new_output) {
2175 ret = LTTNG_ERR_NOMEM;
2176 goto error;
2177 }
2178
2179 ret = snapshot_output_init(output->max_size, output->name,
2180 output->ctrl_url, output->data_url, session->consumer, new_output,
2181 &session->snapshot);
2182 if (ret < 0) {
2183 if (ret == -ENOMEM) {
2184 ret = LTTNG_ERR_NOMEM;
2185 } else {
2186 ret = LTTNG_ERR_INVALID;
2187 }
2188 goto free_error;
2189 }
2190
2191 /*
2192 * Copy sockets so the snapshot output can use them on destroy.
2193 */
2194
2195 if (session->ust_session) {
2196 ret = consumer_copy_sockets(new_output->consumer,
2197 session->ust_session->consumer);
2198 if (ret < 0) {
2199 goto free_error;
2200 }
2201 new_output->ust_sockets_copied = 1;
2202 }
2203 if (session->kernel_session) {
2204 ret = consumer_copy_sockets(new_output->consumer,
2205 session->kernel_session->consumer);
2206 if (ret < 0) {
2207 goto free_error;
2208 }
2209 new_output->kernel_sockets_copied = 1;
2210 }
2211
2212 rcu_read_lock();
2213 snapshot_add_output(&session->snapshot, new_output);
2214 if (id) {
2215 *id = new_output->id;
2216 }
2217 rcu_read_unlock();
2218
2219 return LTTNG_OK;
2220
2221free_error:
2222 snapshot_output_destroy(new_output);
2223error:
2224 return ret;
2225}
2226
2227/*
2228 * Command LTTNG_SNAPSHOT_DEL_OUTPUT from lib lttng ctl.
2229 *
2230 * Return LTTNG_OK on success or else a LTTNG_ERR code.
2231 */
2232int cmd_snapshot_del_output(struct ltt_session *session,
2233 struct lttng_snapshot_output *output)
2234{
2235 int ret;
2236 struct snapshot_output *sout;
2237
2238 assert(session);
2239 assert(output);
2240
2241 DBG("Cmd snapshot del output id %" PRIu32 " for session %s", output->id,
2242 session->name);
2243
2244 rcu_read_lock();
2245
2246 /*
2247 * Persmission denied to create an output if the session is not set in no
2248 * output mode.
2249 */
2250 if (session->output_traces) {
2251 ret = LTTNG_ERR_EPERM;
2252 goto error;
2253 }
2254
2255 sout = snapshot_find_output_by_id(output->id, &session->snapshot);
2256 if (!sout) {
2257 ret = LTTNG_ERR_INVALID;
2258 goto error;
2259 }
2260
2261 snapshot_delete_output(&session->snapshot, sout);
2262 snapshot_output_destroy(sout);
2263 ret = LTTNG_OK;
2264
2265error:
2266 rcu_read_unlock();
2267 return ret;
2268}
2269
2270/*
2271 * Command LTTNG_SNAPSHOT_LIST_OUTPUT from lib lttng ctl.
2272 *
2273 * If no output is available, outputs is untouched and 0 is returned.
2274 *
2275 * Return the size of the newly allocated outputs or a negative LTTNG_ERR code.
2276 */
2277ssize_t cmd_snapshot_list_outputs(struct ltt_session *session,
2278 struct lttng_snapshot_output **outputs)
2279{
2280 int ret, idx = 0;
2281 struct lttng_snapshot_output *list;
2282 struct lttng_ht_iter iter;
2283 struct snapshot_output *output;
2284
2285 assert(session);
2286 assert(outputs);
2287
2288 DBG("Cmd snapshot list outputs for session %s", session->name);
2289
2290 /*
2291 * Persmission denied to create an output if the session is not set in no
2292 * output mode.
2293 */
2294 if (session->output_traces) {
2295 ret = LTTNG_ERR_EPERM;
2296 goto error;
2297 }
2298
2299 if (session->snapshot.nb_output == 0) {
2300 ret = 0;
2301 goto error;
2302 }
2303
2304 list = zmalloc(session->snapshot.nb_output * sizeof(*list));
2305 if (!list) {
2306 ret = LTTNG_ERR_NOMEM;
2307 goto error;
2308 }
2309
2310 /* Copy list from session to the new list object. */
2311 cds_lfht_for_each_entry(session->snapshot.output_ht->ht, &iter.iter,
2312 output, node.node) {
2313 assert(output->consumer);
2314 list[idx].id = output->id;
2315 list[idx].max_size = output->max_size;
2316 strncpy(list[idx].name, output->name, sizeof(list[idx].name));
2317 if (output->consumer->type == CONSUMER_DST_LOCAL) {
2318 strncpy(list[idx].ctrl_url, output->consumer->dst.trace_path,
2319 sizeof(list[idx].ctrl_url));
2320 } else {
2321 /* Control URI. */
2322 ret = uri_to_str_url(&output->consumer->dst.net.control,
2323 list[idx].ctrl_url, sizeof(list[idx].ctrl_url));
2324 if (ret < 0) {
2325 ret = LTTNG_ERR_NOMEM;
2326 goto free_error;
2327 }
2328
2329 /* Data URI. */
2330 ret = uri_to_str_url(&output->consumer->dst.net.data,
2331 list[idx].data_url, sizeof(list[idx].data_url));
2332 if (ret < 0) {
2333 ret = LTTNG_ERR_NOMEM;
2334 goto free_error;
2335 }
2336 }
2337 idx++;
2338 }
2339
2340 *outputs = list;
2341 return session->snapshot.nb_output;
2342
2343free_error:
2344 free(list);
2345error:
2346 return -ret;
2347}
2348
2349/*
2350 * Send relayd sockets from snapshot output to consumer. Ignore request if the
2351 * snapshot output is *not* set with a remote destination.
2352 *
2353 * Return 0 on success or else a negative value.
2354 */
2355static int set_relayd_for_snapshot(struct consumer_output *consumer,
2356 struct snapshot_output *snap_output, struct ltt_session *session)
2357{
2358 int ret = 0;
2359 struct lttng_ht_iter iter;
2360 struct consumer_socket *socket;
2361
2362 assert(consumer);
2363 assert(snap_output);
2364 assert(session);
2365
2366 DBG2("Set relayd object from snapshot output");
2367
2368 /* Ignore if snapshot consumer output is not network. */
2369 if (snap_output->consumer->type != CONSUMER_DST_NET) {
2370 goto error;
2371 }
2372
2373 /*
2374 * For each consumer socket, create and send the relayd object of the
2375 * snapshot output.
2376 */
2377 rcu_read_lock();
5eecee74
DG
2378 cds_lfht_for_each_entry(snap_output->consumer->socks->ht, &iter.iter,
2379 socket, node.node) {
6dc3064a
DG
2380 ret = send_consumer_relayd_sockets(0, session->id,
2381 snap_output->consumer, socket);
2382 if (ret < 0) {
2383 rcu_read_unlock();
2384 goto error;
2385 }
2386 }
2387 rcu_read_unlock();
2388
2389error:
2390 return ret;
2391}
2392
2393/*
2394 * Record a kernel snapshot.
2395 *
2396 * Return 0 on success or else a negative value.
2397 */
2398static int record_kernel_snapshot(struct ltt_kernel_session *ksess,
2399 struct snapshot_output *output, struct ltt_session *session, int wait)
2400{
2401 int ret;
2402
2403 assert(ksess);
2404 assert(output);
2405 assert(session);
2406
10a50311
JD
2407 /* Get the datetime for the snapshot output directory. */
2408 ret = utils_get_current_time_str("%Y%m%d-%H%M%S", output->datetime,
2409 sizeof(output->datetime));
2410 if (!ret) {
2411 ret = -EINVAL;
2412 goto error;
2413 }
2414
6dc3064a
DG
2415 if (!output->kernel_sockets_copied) {
2416 ret = consumer_copy_sockets(output->consumer, ksess->consumer);
2417 if (ret < 0) {
2418 goto error;
2419 }
2420 output->kernel_sockets_copied = 1;
2421 }
2422
2423 ret = set_relayd_for_snapshot(ksess->consumer, output, session);
2424 if (ret < 0) {
2425 goto error;
2426 }
2427
2428 ret = kernel_snapshot_record(ksess, output, wait);
2429 if (ret < 0) {
2430 goto error;
2431 }
2432
2433error:
2434 return ret;
2435}
2436
2437/*
2438 * Record a UST snapshot.
2439 *
2440 * Return 0 on success or else a negative value.
2441 */
2442static int record_ust_snapshot(struct ltt_ust_session *usess,
2443 struct snapshot_output *output, struct ltt_session *session, int wait)
2444{
2445 int ret;
2446
2447 assert(usess);
2448 assert(output);
2449 assert(session);
2450
10a50311
JD
2451 /* Get the datetime for the snapshot output directory. */
2452 ret = utils_get_current_time_str("%Y%m%d-%H%M%S", output->datetime,
2453 sizeof(output->datetime));
2454 if (!ret) {
2455 ret = -EINVAL;
2456 goto error;
2457 }
2458
6dc3064a
DG
2459 if (!output->ust_sockets_copied) {
2460 ret = consumer_copy_sockets(output->consumer, usess->consumer);
2461 if (ret < 0) {
2462 goto error;
2463 }
2464 output->ust_sockets_copied = 1;
2465 }
2466
2467 ret = set_relayd_for_snapshot(usess->consumer, output, session);
2468 if (ret < 0) {
2469 goto error;
2470 }
2471
2472 ret = ust_app_snapshot_record(usess, output, wait);
2473 if (ret < 0) {
2474 goto error;
2475 }
2476
2477error:
2478 return ret;
2479}
2480
2481/*
2482 * Command LTTNG_SNAPSHOT_RECORD from lib lttng ctl.
2483 *
2484 * The wait parameter is ignored so this call always wait for the snapshot to
2485 * complete before returning.
2486 *
2487 * Return LTTNG_OK on success or else a LTTNG_ERR code.
2488 */
2489int cmd_snapshot_record(struct ltt_session *session,
2490 struct lttng_snapshot_output *output, int wait)
2491{
2492 int ret = LTTNG_OK;
2493 struct snapshot_output *tmp_sout = NULL;
2494
2495 assert(session);
2496
2497 DBG("Cmd snapshot record for session %s", session->name);
2498
2499 /*
2500 * Persmission denied to create an output if the session is not set in no
2501 * output mode.
2502 */
2503 if (session->output_traces) {
2504 ret = LTTNG_ERR_EPERM;
2505 goto error;
2506 }
2507
2508 /* The session needs to be started at least once. */
2509 if (!session->started) {
2510 ret = LTTNG_ERR_START_SESSION_ONCE;
2511 goto error;
2512 }
2513
2514 /* Use temporary output for the session. */
2515 if (output && *output->ctrl_url != '\0') {
2516 tmp_sout = snapshot_output_alloc();
2517 if (!tmp_sout) {
2518 ret = LTTNG_ERR_NOMEM;
2519 goto error;
2520 }
2521
2522 ret = snapshot_output_init(output->max_size, output->name,
2523 output->ctrl_url, output->data_url, session->consumer,
2524 tmp_sout, NULL);
2525 if (ret < 0) {
2526 if (ret == -ENOMEM) {
2527 ret = LTTNG_ERR_NOMEM;
2528 } else {
2529 ret = LTTNG_ERR_INVALID;
2530 }
2531 goto error;
2532 }
2533 }
2534
2535 if (session->kernel_session) {
2536 struct ltt_kernel_session *ksess = session->kernel_session;
2537
2538 if (tmp_sout) {
2539 ret = record_kernel_snapshot(ksess, tmp_sout, session, wait);
2540 if (ret < 0) {
2541 goto error;
2542 }
2543 } else {
2544 struct snapshot_output *sout;
2545 struct lttng_ht_iter iter;
2546
2547 rcu_read_lock();
2548 cds_lfht_for_each_entry(session->snapshot.output_ht->ht,
2549 &iter.iter, sout, node.node) {
2550 ret = record_kernel_snapshot(ksess, sout, session, wait);
2551 if (ret < 0) {
2552 rcu_read_unlock();
2553 goto error;
2554 }
2555 }
2556 rcu_read_unlock();
2557 }
2558 }
2559
2560 if (session->ust_session) {
2561 struct ltt_ust_session *usess = session->ust_session;
2562
2563 if (tmp_sout) {
2564 ret = record_ust_snapshot(usess, tmp_sout, session, wait);
2565 if (ret < 0) {
2566 goto error;
2567 }
2568 } else {
2569 struct snapshot_output *sout;
2570 struct lttng_ht_iter iter;
2571
2572 rcu_read_lock();
2573 cds_lfht_for_each_entry(session->snapshot.output_ht->ht,
2574 &iter.iter, sout, node.node) {
10a50311 2575 ret = record_ust_snapshot(usess, sout, session, wait);
6dc3064a
DG
2576 if (ret < 0) {
2577 rcu_read_unlock();
2578 goto error;
2579 }
2580 }
2581 rcu_read_unlock();
2582 }
2583 }
2584
2585error:
2586 if (tmp_sout) {
2587 snapshot_output_destroy(tmp_sout);
2588 }
2589 return ret;
2590}
2591
2f77fc4b
DG
2592/*
2593 * Init command subsystem.
2594 */
2595void cmd_init(void)
2596{
2597 /*
d88aee68
DG
2598 * Set network sequence index to 1 for streams to match a relayd
2599 * socket on the consumer side.
2f77fc4b 2600 */
d88aee68
DG
2601 pthread_mutex_lock(&relayd_net_seq_idx_lock);
2602 relayd_net_seq_idx = 1;
2603 pthread_mutex_unlock(&relayd_net_seq_idx_lock);
2f77fc4b
DG
2604
2605 DBG("Command subsystem initialized");
2606}
This page took 0.145559 seconds and 5 git commands to generate.