cmd.c: fix typos in snapshot commands
[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
03b4fdcf
DG
860 rcu_read_lock();
861
d2f11c4a
DG
862 /*
863 * Don't try to enable a channel if the session has been started at
864 * some point in time before. The tracer does not allow it.
865 */
866 if (session->started) {
867 ret = LTTNG_ERR_TRACE_ALREADY_STARTED;
868 goto error;
869 }
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
27babd3a
DG
1746/*
1747 * Command LTTNG_CREATE_SESSION_SNAPSHOT processed by the client thread.
1748 */
1749int cmd_create_session_snapshot(char *name, struct lttng_uri *uris,
1750 size_t nb_uri, lttng_sock_cred *creds)
1751{
1752 int ret;
1753 struct ltt_session *session;
1754 struct snapshot_output *new_output = NULL;
1755
1756 assert(name);
1757 assert(creds);
1758
1759 /*
1760 * Create session in no output mode with URIs set to NULL. The uris we've
1761 * received are for a default snapshot output if one.
1762 */
1763 ret = cmd_create_session_uri(name, NULL, 0, creds);
1764 if (ret != LTTNG_OK) {
1765 goto error;
1766 }
1767
1768 /* Get the newly created session pointer back. This should NEVER fail. */
1769 session = session_find_by_name(name);
1770 assert(session);
1771
1772 /* Flag session for snapshot mode. */
1773 session->snapshot_mode = 1;
1774
1775 /* Skip snapshot output creation if no URI is given. */
1776 if (nb_uri == 0) {
1777 goto end;
1778 }
1779
1780 new_output = snapshot_output_alloc();
1781 if (!new_output) {
1782 ret = LTTNG_ERR_NOMEM;
1783 goto error_snapshot_alloc;
1784 }
1785
1786 ret = snapshot_output_init_with_uri(DEFAULT_SNAPSHOT_MAX_SIZE, NULL,
1787 uris, nb_uri, session->consumer, new_output, &session->snapshot);
1788 if (ret < 0) {
1789 if (ret == -ENOMEM) {
1790 ret = LTTNG_ERR_NOMEM;
1791 } else {
1792 ret = LTTNG_ERR_INVALID;
1793 }
1794 goto error_snapshot;
1795 }
1796
1797 rcu_read_lock();
1798 snapshot_add_output(&session->snapshot, new_output);
1799 rcu_read_unlock();
1800
1801end:
1802 return LTTNG_OK;
1803
1804error_snapshot:
1805 snapshot_output_destroy(new_output);
1806error_snapshot_alloc:
1807 session_destroy(session);
1808error:
1809 return ret;
1810}
1811
2f77fc4b
DG
1812/*
1813 * Command LTTNG_DESTROY_SESSION processed by the client thread.
1814 */
1815int cmd_destroy_session(struct ltt_session *session, int wpipe)
1816{
1817 int ret;
1818 struct ltt_ust_session *usess;
1819 struct ltt_kernel_session *ksess;
1820
1821 /* Safety net */
1822 assert(session);
1823
1824 usess = session->ust_session;
1825 ksess = session->kernel_session;
1826
1827 /* Clean kernel session teardown */
1828 kernel_destroy_session(ksess);
1829
1830 /* UST session teardown */
1831 if (usess) {
1832 /* Close any relayd session */
1833 consumer_output_send_destroy_relayd(usess->consumer);
1834
1835 /* Destroy every UST application related to this session. */
1836 ret = ust_app_destroy_trace_all(usess);
1837 if (ret) {
1838 ERR("Error in ust_app_destroy_trace_all");
1839 }
1840
1841 /* Clean up the rest. */
1842 trace_ust_destroy_session(usess);
1843 }
1844
1845 /*
1846 * Must notify the kernel thread here to update it's poll set in order to
1847 * remove the channel(s)' fd just destroyed.
1848 */
1849 ret = notify_thread_pipe(wpipe);
1850 if (ret < 0) {
1851 PERROR("write kernel poll pipe");
1852 }
1853
1854 ret = session_destroy(session);
1855
1856 return ret;
1857}
1858
1859/*
1860 * Command LTTNG_CALIBRATE processed by the client thread.
1861 */
1862int cmd_calibrate(int domain, struct lttng_calibrate *calibrate)
1863{
1864 int ret;
1865
1866 switch (domain) {
1867 case LTTNG_DOMAIN_KERNEL:
1868 {
1869 struct lttng_kernel_calibrate kcalibrate;
1870
1871 kcalibrate.type = calibrate->type;
1872 ret = kernel_calibrate(kernel_tracer_fd, &kcalibrate);
1873 if (ret < 0) {
f73fabfd 1874 ret = LTTNG_ERR_KERN_ENABLE_FAIL;
2f77fc4b
DG
1875 goto error;
1876 }
1877 break;
1878 }
1879 case LTTNG_DOMAIN_UST:
1880 {
1881 struct lttng_ust_calibrate ucalibrate;
1882
1883 ucalibrate.type = calibrate->type;
1884 ret = ust_app_calibrate_glb(&ucalibrate);
1885 if (ret < 0) {
f73fabfd 1886 ret = LTTNG_ERR_UST_CALIBRATE_FAIL;
2f77fc4b
DG
1887 goto error;
1888 }
1889 break;
1890 }
1891 default:
f73fabfd 1892 ret = LTTNG_ERR_UND;
2f77fc4b
DG
1893 goto error;
1894 }
1895
f73fabfd 1896 ret = LTTNG_OK;
2f77fc4b
DG
1897
1898error:
1899 return ret;
1900}
1901
1902/*
1903 * Command LTTNG_REGISTER_CONSUMER processed by the client thread.
1904 */
1905int cmd_register_consumer(struct ltt_session *session, int domain,
1906 const char *sock_path, struct consumer_data *cdata)
1907{
1908 int ret, sock;
dd81b457 1909 struct consumer_socket *socket = NULL;
2f77fc4b
DG
1910
1911 assert(session);
1912 assert(cdata);
1913 assert(sock_path);
1914
1915 switch (domain) {
1916 case LTTNG_DOMAIN_KERNEL:
1917 {
1918 struct ltt_kernel_session *ksess = session->kernel_session;
1919
1920 assert(ksess);
1921
1922 /* Can't register a consumer if there is already one */
1923 if (ksess->consumer_fds_sent != 0) {
f73fabfd 1924 ret = LTTNG_ERR_KERN_CONSUMER_FAIL;
2f77fc4b
DG
1925 goto error;
1926 }
1927
1928 sock = lttcomm_connect_unix_sock(sock_path);
1929 if (sock < 0) {
f73fabfd 1930 ret = LTTNG_ERR_CONNECT_FAIL;
2f77fc4b
DG
1931 goto error;
1932 }
1933
1934 socket = consumer_allocate_socket(sock);
1935 if (socket == NULL) {
f66c074c
DG
1936 ret = close(sock);
1937 if (ret < 0) {
1938 PERROR("close register consumer");
1939 }
f73fabfd 1940 ret = LTTNG_ERR_FATAL;
2f77fc4b
DG
1941 goto error;
1942 }
1943
1944 socket->lock = zmalloc(sizeof(pthread_mutex_t));
1945 if (socket->lock == NULL) {
1946 PERROR("zmalloc pthread mutex");
f73fabfd 1947 ret = LTTNG_ERR_FATAL;
2f77fc4b
DG
1948 goto error;
1949 }
1950 pthread_mutex_init(socket->lock, NULL);
1951 socket->registered = 1;
1952
1953 rcu_read_lock();
1954 consumer_add_socket(socket, ksess->consumer);
1955 rcu_read_unlock();
1956
1957 pthread_mutex_lock(&cdata->pid_mutex);
1958 cdata->pid = -1;
1959 pthread_mutex_unlock(&cdata->pid_mutex);
1960
1961 break;
1962 }
1963 default:
1964 /* TODO: Userspace tracing */
f73fabfd 1965 ret = LTTNG_ERR_UND;
2f77fc4b
DG
1966 goto error;
1967 }
1968
dd81b457 1969 return LTTNG_OK;
2f77fc4b
DG
1970
1971error:
dd81b457
DG
1972 if (socket) {
1973 consumer_destroy_socket(socket);
1974 }
2f77fc4b
DG
1975 return ret;
1976}
1977
1978/*
1979 * Command LTTNG_LIST_DOMAINS processed by the client thread.
1980 */
1981ssize_t cmd_list_domains(struct ltt_session *session,
1982 struct lttng_domain **domains)
1983{
1984 int ret, index = 0;
1985 ssize_t nb_dom = 0;
1986
1987 if (session->kernel_session != NULL) {
1988 DBG3("Listing domains found kernel domain");
1989 nb_dom++;
1990 }
1991
1992 if (session->ust_session != NULL) {
1993 DBG3("Listing domains found UST global domain");
1994 nb_dom++;
1995 }
1996
1997 *domains = zmalloc(nb_dom * sizeof(struct lttng_domain));
1998 if (*domains == NULL) {
f73fabfd 1999 ret = LTTNG_ERR_FATAL;
2f77fc4b
DG
2000 goto error;
2001 }
2002
2003 if (session->kernel_session != NULL) {
2004 (*domains)[index].type = LTTNG_DOMAIN_KERNEL;
2005 index++;
2006 }
2007
2008 if (session->ust_session != NULL) {
2009 (*domains)[index].type = LTTNG_DOMAIN_UST;
88c5f0d8 2010 (*domains)[index].buf_type = session->ust_session->buffer_type;
2f77fc4b
DG
2011 index++;
2012 }
2013
2014 return nb_dom;
2015
2016error:
f73fabfd
DG
2017 /* Return negative value to differentiate return code */
2018 return -ret;
2f77fc4b
DG
2019}
2020
2021
2022/*
2023 * Command LTTNG_LIST_CHANNELS processed by the client thread.
2024 */
2025ssize_t cmd_list_channels(int domain, struct ltt_session *session,
2026 struct lttng_channel **channels)
2027{
2028 int ret;
2029 ssize_t nb_chan = 0;
2030
2031 switch (domain) {
2032 case LTTNG_DOMAIN_KERNEL:
2033 if (session->kernel_session != NULL) {
2034 nb_chan = session->kernel_session->channel_count;
2035 }
2036 DBG3("Number of kernel channels %zd", nb_chan);
c7d620a2
DG
2037 if (nb_chan <= 0) {
2038 ret = LTTNG_ERR_KERN_CHAN_NOT_FOUND;
2039 }
2f77fc4b
DG
2040 break;
2041 case LTTNG_DOMAIN_UST:
2042 if (session->ust_session != NULL) {
2043 nb_chan = lttng_ht_get_count(
2044 session->ust_session->domain_global.channels);
2045 }
2046 DBG3("Number of UST global channels %zd", nb_chan);
c7d620a2
DG
2047 if (nb_chan <= 0) {
2048 ret = LTTNG_ERR_UST_CHAN_NOT_FOUND;
2049 }
2f77fc4b
DG
2050 break;
2051 default:
2052 *channels = NULL;
f73fabfd 2053 ret = LTTNG_ERR_UND;
2f77fc4b
DG
2054 goto error;
2055 }
2056
2057 if (nb_chan > 0) {
2058 *channels = zmalloc(nb_chan * sizeof(struct lttng_channel));
2059 if (*channels == NULL) {
f73fabfd 2060 ret = LTTNG_ERR_FATAL;
2f77fc4b
DG
2061 goto error;
2062 }
2063
2064 list_lttng_channels(domain, session, *channels);
2065 } else {
2066 *channels = NULL;
c7d620a2
DG
2067 /* Ret value was set in the domain switch case */
2068 goto error;
2f77fc4b
DG
2069 }
2070
2071 return nb_chan;
2072
2073error:
f73fabfd
DG
2074 /* Return negative value to differentiate return code */
2075 return -ret;
2f77fc4b
DG
2076}
2077
2078/*
2079 * Command LTTNG_LIST_EVENTS processed by the client thread.
2080 */
2081ssize_t cmd_list_events(int domain, struct ltt_session *session,
2082 char *channel_name, struct lttng_event **events)
2083{
2084 int ret = 0;
2085 ssize_t nb_event = 0;
2086
2087 switch (domain) {
2088 case LTTNG_DOMAIN_KERNEL:
2089 if (session->kernel_session != NULL) {
2090 nb_event = list_lttng_kernel_events(channel_name,
2091 session->kernel_session, events);
2092 }
2093 break;
2094 case LTTNG_DOMAIN_UST:
2095 {
2096 if (session->ust_session != NULL) {
2097 nb_event = list_lttng_ust_global_events(channel_name,
2098 &session->ust_session->domain_global, events);
2099 }
2100 break;
2101 }
2102 default:
f73fabfd 2103 ret = LTTNG_ERR_UND;
2f77fc4b
DG
2104 goto error;
2105 }
2106
f73fabfd 2107 return nb_event;
2f77fc4b
DG
2108
2109error:
f73fabfd
DG
2110 /* Return negative value to differentiate return code */
2111 return -ret;
2f77fc4b
DG
2112}
2113
2114/*
2115 * Using the session list, filled a lttng_session array to send back to the
2116 * client for session listing.
2117 *
2118 * The session list lock MUST be acquired before calling this function. Use
2119 * session_lock_list() and session_unlock_list().
2120 */
2121void cmd_list_lttng_sessions(struct lttng_session *sessions, uid_t uid,
2122 gid_t gid)
2123{
2124 int ret;
2125 unsigned int i = 0;
2126 struct ltt_session *session;
2127 struct ltt_session_list *list = session_get_list();
2128
2129 DBG("Getting all available session for UID %d GID %d",
2130 uid, gid);
2131 /*
2132 * Iterate over session list and append data after the control struct in
2133 * the buffer.
2134 */
2135 cds_list_for_each_entry(session, &list->head, list) {
2136 /*
2137 * Only list the sessions the user can control.
2138 */
2139 if (!session_access_ok(session, uid, gid)) {
2140 continue;
2141 }
2142
2143 struct ltt_kernel_session *ksess = session->kernel_session;
2144 struct ltt_ust_session *usess = session->ust_session;
2145
2146 if (session->consumer->type == CONSUMER_DST_NET ||
2147 (ksess && ksess->consumer->type == CONSUMER_DST_NET) ||
2148 (usess && usess->consumer->type == CONSUMER_DST_NET)) {
2149 ret = build_network_session_path(sessions[i].path,
dec56f6c 2150 sizeof(sessions[i].path), session);
2f77fc4b 2151 } else {
dec56f6c 2152 ret = snprintf(sessions[i].path, sizeof(sessions[i].path), "%s",
2f77fc4b
DG
2153 session->consumer->dst.trace_path);
2154 }
2155 if (ret < 0) {
2156 PERROR("snprintf session path");
2157 continue;
2158 }
2159
2160 strncpy(sessions[i].name, session->name, NAME_MAX);
2161 sessions[i].name[NAME_MAX - 1] = '\0';
2162 sessions[i].enabled = session->enabled;
2cbf8fed 2163 sessions[i].snapshot_mode = session->snapshot_mode;
2f77fc4b
DG
2164 i++;
2165 }
2166}
2167
806e2684 2168/*
6d805429 2169 * Command LTTNG_DATA_PENDING returning 0 if the data is NOT pending meaning
d3f14b8a 2170 * ready for trace analysis (or any kind of reader) or else 1 for pending data.
806e2684 2171 */
6d805429 2172int cmd_data_pending(struct ltt_session *session)
806e2684
DG
2173{
2174 int ret;
2175 struct ltt_kernel_session *ksess = session->kernel_session;
2176 struct ltt_ust_session *usess = session->ust_session;
2177
2178 assert(session);
2179
2180 /* Session MUST be stopped to ask for data availability. */
2181 if (session->enabled) {
2182 ret = LTTNG_ERR_SESSION_STARTED;
2183 goto error;
2184 }
2185
2186 if (ksess && ksess->consumer) {
6d805429
DG
2187 ret = consumer_is_data_pending(ksess->id, ksess->consumer);
2188 if (ret == 1) {
806e2684
DG
2189 /* Data is still being extracted for the kernel. */
2190 goto error;
2191 }
2192 }
2193
2194 if (usess && usess->consumer) {
6d805429
DG
2195 ret = consumer_is_data_pending(usess->id, usess->consumer);
2196 if (ret == 1) {
806e2684
DG
2197 /* Data is still being extracted for the kernel. */
2198 goto error;
2199 }
2200 }
2201
2202 /* Data is ready to be read by a viewer */
6d805429 2203 ret = 0;
806e2684
DG
2204
2205error:
2206 return ret;
2207}
2208
6dc3064a
DG
2209/*
2210 * Command LTTNG_SNAPSHOT_ADD_OUTPUT from the lttng ctl library.
2211 *
2212 * Return LTTNG_OK on success or else a LTTNG_ERR code.
2213 */
2214int cmd_snapshot_add_output(struct ltt_session *session,
2215 struct lttng_snapshot_output *output, uint32_t *id)
2216{
2217 int ret;
2218 struct snapshot_output *new_output;
2219
2220 assert(session);
2221 assert(output);
2222
2223 DBG("Cmd snapshot add output for session %s", session->name);
2224
2225 /*
d3f14b8a
MD
2226 * Permission denied to create an output if the session is not
2227 * set in no output mode.
6dc3064a
DG
2228 */
2229 if (session->output_traces) {
2230 ret = LTTNG_ERR_EPERM;
2231 goto error;
2232 }
2233
2234 /* Only one output is allowed until we have the "tee" feature. */
2235 if (session->snapshot.nb_output == 1) {
2236 ret = LTTNG_ERR_SNAPSHOT_OUTPUT_EXIST;
2237 goto error;
2238 }
2239
2240 new_output = snapshot_output_alloc();
2241 if (!new_output) {
2242 ret = LTTNG_ERR_NOMEM;
2243 goto error;
2244 }
2245
2246 ret = snapshot_output_init(output->max_size, output->name,
2247 output->ctrl_url, output->data_url, session->consumer, new_output,
2248 &session->snapshot);
2249 if (ret < 0) {
2250 if (ret == -ENOMEM) {
2251 ret = LTTNG_ERR_NOMEM;
2252 } else {
2253 ret = LTTNG_ERR_INVALID;
2254 }
2255 goto free_error;
2256 }
2257
6dc3064a
DG
2258 rcu_read_lock();
2259 snapshot_add_output(&session->snapshot, new_output);
2260 if (id) {
2261 *id = new_output->id;
2262 }
2263 rcu_read_unlock();
2264
2265 return LTTNG_OK;
2266
2267free_error:
2268 snapshot_output_destroy(new_output);
2269error:
2270 return ret;
2271}
2272
2273/*
2274 * Command LTTNG_SNAPSHOT_DEL_OUTPUT from lib lttng ctl.
2275 *
2276 * Return LTTNG_OK on success or else a LTTNG_ERR code.
2277 */
2278int cmd_snapshot_del_output(struct ltt_session *session,
2279 struct lttng_snapshot_output *output)
2280{
2281 int ret;
eb240553 2282 struct snapshot_output *sout = NULL;
6dc3064a
DG
2283
2284 assert(session);
2285 assert(output);
2286
6dc3064a
DG
2287 rcu_read_lock();
2288
2289 /*
d3f14b8a
MD
2290 * Permission denied to create an output if the session is not
2291 * set in no output mode.
6dc3064a
DG
2292 */
2293 if (session->output_traces) {
2294 ret = LTTNG_ERR_EPERM;
2295 goto error;
2296 }
2297
eb240553
DG
2298 if (output->id) {
2299 DBG("Cmd snapshot del output id %" PRIu32 " for session %s", output->id,
2300 session->name);
2301 sout = snapshot_find_output_by_id(output->id, &session->snapshot);
2302 } else if (*output->name != '\0') {
2303 DBG("Cmd snapshot del output name %s for session %s", output->name,
2304 session->name);
2305 sout = snapshot_find_output_by_name(output->name, &session->snapshot);
2306 }
6dc3064a
DG
2307 if (!sout) {
2308 ret = LTTNG_ERR_INVALID;
2309 goto error;
2310 }
2311
2312 snapshot_delete_output(&session->snapshot, sout);
2313 snapshot_output_destroy(sout);
2314 ret = LTTNG_OK;
2315
2316error:
2317 rcu_read_unlock();
2318 return ret;
2319}
2320
2321/*
2322 * Command LTTNG_SNAPSHOT_LIST_OUTPUT from lib lttng ctl.
2323 *
2324 * If no output is available, outputs is untouched and 0 is returned.
2325 *
2326 * Return the size of the newly allocated outputs or a negative LTTNG_ERR code.
2327 */
2328ssize_t cmd_snapshot_list_outputs(struct ltt_session *session,
2329 struct lttng_snapshot_output **outputs)
2330{
2331 int ret, idx = 0;
2332 struct lttng_snapshot_output *list;
2333 struct lttng_ht_iter iter;
2334 struct snapshot_output *output;
2335
2336 assert(session);
2337 assert(outputs);
2338
2339 DBG("Cmd snapshot list outputs for session %s", session->name);
2340
2341 /*
d3f14b8a
MD
2342 * Permission denied to create an output if the session is not
2343 * set in no output mode.
6dc3064a
DG
2344 */
2345 if (session->output_traces) {
2346 ret = LTTNG_ERR_EPERM;
2347 goto error;
2348 }
2349
2350 if (session->snapshot.nb_output == 0) {
2351 ret = 0;
2352 goto error;
2353 }
2354
2355 list = zmalloc(session->snapshot.nb_output * sizeof(*list));
2356 if (!list) {
2357 ret = LTTNG_ERR_NOMEM;
2358 goto error;
2359 }
2360
2361 /* Copy list from session to the new list object. */
2362 cds_lfht_for_each_entry(session->snapshot.output_ht->ht, &iter.iter,
2363 output, node.node) {
2364 assert(output->consumer);
2365 list[idx].id = output->id;
2366 list[idx].max_size = output->max_size;
2367 strncpy(list[idx].name, output->name, sizeof(list[idx].name));
2368 if (output->consumer->type == CONSUMER_DST_LOCAL) {
2369 strncpy(list[idx].ctrl_url, output->consumer->dst.trace_path,
2370 sizeof(list[idx].ctrl_url));
2371 } else {
2372 /* Control URI. */
2373 ret = uri_to_str_url(&output->consumer->dst.net.control,
2374 list[idx].ctrl_url, sizeof(list[idx].ctrl_url));
2375 if (ret < 0) {
2376 ret = LTTNG_ERR_NOMEM;
2377 goto free_error;
2378 }
2379
2380 /* Data URI. */
2381 ret = uri_to_str_url(&output->consumer->dst.net.data,
2382 list[idx].data_url, sizeof(list[idx].data_url));
2383 if (ret < 0) {
2384 ret = LTTNG_ERR_NOMEM;
2385 goto free_error;
2386 }
2387 }
2388 idx++;
2389 }
2390
2391 *outputs = list;
2392 return session->snapshot.nb_output;
2393
2394free_error:
2395 free(list);
2396error:
2397 return -ret;
2398}
2399
2400/*
2401 * Send relayd sockets from snapshot output to consumer. Ignore request if the
2402 * snapshot output is *not* set with a remote destination.
2403 *
a934f4af 2404 * Return 0 on success or a LTTNG_ERR code.
6dc3064a
DG
2405 */
2406static int set_relayd_for_snapshot(struct consumer_output *consumer,
2407 struct snapshot_output *snap_output, struct ltt_session *session)
2408{
a934f4af 2409 int ret = LTTNG_OK;
6dc3064a
DG
2410 struct lttng_ht_iter iter;
2411 struct consumer_socket *socket;
2412
2413 assert(consumer);
2414 assert(snap_output);
2415 assert(session);
2416
2417 DBG2("Set relayd object from snapshot output");
2418
2419 /* Ignore if snapshot consumer output is not network. */
2420 if (snap_output->consumer->type != CONSUMER_DST_NET) {
2421 goto error;
2422 }
2423
2424 /*
2425 * For each consumer socket, create and send the relayd object of the
2426 * snapshot output.
2427 */
2428 rcu_read_lock();
5eecee74
DG
2429 cds_lfht_for_each_entry(snap_output->consumer->socks->ht, &iter.iter,
2430 socket, node.node) {
6dc3064a
DG
2431 ret = send_consumer_relayd_sockets(0, session->id,
2432 snap_output->consumer, socket);
a934f4af 2433 if (ret != LTTNG_OK) {
6dc3064a
DG
2434 rcu_read_unlock();
2435 goto error;
2436 }
2437 }
2438 rcu_read_unlock();
2439
2440error:
2441 return ret;
2442}
2443
2444/*
2445 * Record a kernel snapshot.
2446 *
a934f4af 2447 * Return 0 on success or a LTTNG_ERR code.
6dc3064a
DG
2448 */
2449static int record_kernel_snapshot(struct ltt_kernel_session *ksess,
5c786ded
JD
2450 struct snapshot_output *output, struct ltt_session *session,
2451 int wait, int nb_streams)
6dc3064a
DG
2452{
2453 int ret;
2454
2455 assert(ksess);
2456 assert(output);
2457 assert(session);
2458
10a50311
JD
2459 /* Get the datetime for the snapshot output directory. */
2460 ret = utils_get_current_time_str("%Y%m%d-%H%M%S", output->datetime,
2461 sizeof(output->datetime));
2462 if (!ret) {
a934f4af 2463 ret = LTTNG_ERR_INVALID;
10a50311
JD
2464 goto error;
2465 }
2466
af706bb7
DG
2467 /*
2468 * Copy kernel session sockets so we can communicate with the right
2469 * consumer for the snapshot record command.
2470 */
2471 ret = consumer_copy_sockets(output->consumer, ksess->consumer);
2472 if (ret < 0) {
a934f4af 2473 ret = LTTNG_ERR_NOMEM;
af706bb7 2474 goto error;
6dc3064a
DG
2475 }
2476
2477 ret = set_relayd_for_snapshot(ksess->consumer, output, session);
a934f4af 2478 if (ret != LTTNG_OK) {
af706bb7 2479 goto error_snapshot;
6dc3064a
DG
2480 }
2481
5c786ded 2482 ret = kernel_snapshot_record(ksess, output, wait, nb_streams);
6dc3064a 2483 if (ret < 0) {
a934f4af 2484 ret = LTTNG_ERR_SNAPSHOT_FAIL;
5c786ded 2485 if (ret == -EINVAL) {
a934f4af 2486 ret = LTTNG_ERR_INVALID;
5c786ded 2487 }
af706bb7 2488 goto error_snapshot;
6dc3064a
DG
2489 }
2490
a934f4af
DG
2491 ret = LTTNG_OK;
2492
af706bb7
DG
2493error_snapshot:
2494 /* Clean up copied sockets so this output can use some other later on. */
2495 consumer_destroy_output_sockets(output->consumer);
6dc3064a
DG
2496error:
2497 return ret;
2498}
2499
2500/*
2501 * Record a UST snapshot.
2502 *
a934f4af 2503 * Return 0 on success or a LTTNG_ERR error code.
6dc3064a
DG
2504 */
2505static int record_ust_snapshot(struct ltt_ust_session *usess,
5c786ded
JD
2506 struct snapshot_output *output, struct ltt_session *session,
2507 int wait, int nb_streams)
6dc3064a
DG
2508{
2509 int ret;
2510
2511 assert(usess);
2512 assert(output);
2513 assert(session);
2514
10a50311
JD
2515 /* Get the datetime for the snapshot output directory. */
2516 ret = utils_get_current_time_str("%Y%m%d-%H%M%S", output->datetime,
2517 sizeof(output->datetime));
2518 if (!ret) {
a934f4af 2519 ret = LTTNG_ERR_INVALID;
10a50311
JD
2520 goto error;
2521 }
2522
af706bb7 2523 /*
d3f14b8a 2524 * Copy UST session sockets so we can communicate with the right
af706bb7
DG
2525 * consumer for the snapshot record command.
2526 */
2527 ret = consumer_copy_sockets(output->consumer, usess->consumer);
2528 if (ret < 0) {
a934f4af 2529 ret = LTTNG_ERR_NOMEM;
af706bb7 2530 goto error;
6dc3064a
DG
2531 }
2532
2533 ret = set_relayd_for_snapshot(usess->consumer, output, session);
a934f4af 2534 if (ret != LTTNG_OK) {
af706bb7 2535 goto error_snapshot;
6dc3064a
DG
2536 }
2537
5c786ded 2538 ret = ust_app_snapshot_record(usess, output, wait, nb_streams);
6dc3064a 2539 if (ret < 0) {
a934f4af 2540 ret = LTTNG_ERR_SNAPSHOT_FAIL;
5c786ded 2541 if (ret == -EINVAL) {
a934f4af 2542 ret = LTTNG_ERR_INVALID;
5c786ded 2543 }
af706bb7 2544 goto error_snapshot;
6dc3064a
DG
2545 }
2546
a934f4af
DG
2547 ret = LTTNG_OK;
2548
af706bb7
DG
2549error_snapshot:
2550 /* Clean up copied sockets so this output can use some other later on. */
2551 consumer_destroy_output_sockets(output->consumer);
6dc3064a
DG
2552error:
2553 return ret;
2554}
2555
5c786ded
JD
2556/*
2557 * Returns the total number of streams for a session or a negative value
2558 * on error.
2559 */
2560static unsigned int get_total_nb_stream(struct ltt_session *session)
2561{
2562 unsigned int total_streams = 0;
2563
2564 if (session->kernel_session) {
2565 struct ltt_kernel_session *ksess = session->kernel_session;
2566
2567 total_streams += ksess->stream_count_global;
2568 }
2569
2570 if (session->ust_session) {
2571 struct ltt_ust_session *usess = session->ust_session;
2572
2573 total_streams += ust_app_get_nb_stream(usess);
2574 }
2575
2576 return total_streams;
2577}
2578
6dc3064a
DG
2579/*
2580 * Command LTTNG_SNAPSHOT_RECORD from lib lttng ctl.
2581 *
2582 * The wait parameter is ignored so this call always wait for the snapshot to
2583 * complete before returning.
2584 *
2585 * Return LTTNG_OK on success or else a LTTNG_ERR code.
2586 */
2587int cmd_snapshot_record(struct ltt_session *session,
2588 struct lttng_snapshot_output *output, int wait)
2589{
2590 int ret = LTTNG_OK;
e1986656
DG
2591 unsigned int use_tmp_output = 0;
2592 struct snapshot_output tmp_output;
1bfe7328 2593 unsigned int nb_streams, snapshot_success = 0;
6dc3064a
DG
2594
2595 assert(session);
2596
2597 DBG("Cmd snapshot record for session %s", session->name);
2598
2599 /*
d3f14b8a
MD
2600 * Permission denied to create an output if the session is not
2601 * set in no output mode.
6dc3064a
DG
2602 */
2603 if (session->output_traces) {
2604 ret = LTTNG_ERR_EPERM;
2605 goto error;
2606 }
2607
2608 /* The session needs to be started at least once. */
2609 if (!session->started) {
2610 ret = LTTNG_ERR_START_SESSION_ONCE;
2611 goto error;
2612 }
2613
2614 /* Use temporary output for the session. */
2615 if (output && *output->ctrl_url != '\0') {
6dc3064a
DG
2616 ret = snapshot_output_init(output->max_size, output->name,
2617 output->ctrl_url, output->data_url, session->consumer,
e1986656 2618 &tmp_output, NULL);
6dc3064a
DG
2619 if (ret < 0) {
2620 if (ret == -ENOMEM) {
2621 ret = LTTNG_ERR_NOMEM;
2622 } else {
2623 ret = LTTNG_ERR_INVALID;
2624 }
2625 goto error;
2626 }
1bfe7328
DG
2627 /* Use the global session count for the temporary snapshot. */
2628 tmp_output.nb_snapshot = session->snapshot.nb_snapshot;
e1986656 2629 use_tmp_output = 1;
6dc3064a
DG
2630 }
2631
5c786ded
JD
2632 /*
2633 * Get the total number of stream of that session which is used by the
2634 * maximum size of the snapshot feature.
2635 */
2636 nb_streams = get_total_nb_stream(session);
2637
6dc3064a
DG
2638 if (session->kernel_session) {
2639 struct ltt_kernel_session *ksess = session->kernel_session;
2640
e1986656
DG
2641 if (use_tmp_output) {
2642 ret = record_kernel_snapshot(ksess, &tmp_output, session,
5c786ded 2643 wait, nb_streams);
a934f4af 2644 if (ret != LTTNG_OK) {
6dc3064a
DG
2645 goto error;
2646 }
1bfe7328 2647 snapshot_success = 1;
6dc3064a
DG
2648 } else {
2649 struct snapshot_output *sout;
2650 struct lttng_ht_iter iter;
2651
2652 rcu_read_lock();
2653 cds_lfht_for_each_entry(session->snapshot.output_ht->ht,
2654 &iter.iter, sout, node.node) {
e1986656
DG
2655 /*
2656 * Make a local copy of the output and assign the possible
2657 * temporary value given by the caller.
2658 */
2659 memset(&tmp_output, 0, sizeof(tmp_output));
2660 memcpy(&tmp_output, sout, sizeof(tmp_output));
2661
2662 /* Use temporary max size. */
2663 if (output->max_size != (uint64_t) -1ULL) {
2664 tmp_output.max_size = output->max_size;
2665 }
2666
2667 /* Use temporary name. */
2668 if (*output->name != '\0') {
2669 strncpy(tmp_output.name, output->name,
2670 sizeof(tmp_output.name));
2671 }
2672
1bfe7328
DG
2673 tmp_output.nb_snapshot = session->snapshot.nb_snapshot;
2674
e1986656 2675 ret = record_kernel_snapshot(ksess, &tmp_output,
5c786ded 2676 session, wait, nb_streams);
a934f4af 2677 if (ret != LTTNG_OK) {
6dc3064a
DG
2678 rcu_read_unlock();
2679 goto error;
2680 }
1bfe7328 2681 snapshot_success = 1;
6dc3064a
DG
2682 }
2683 rcu_read_unlock();
2684 }
2685 }
2686
2687 if (session->ust_session) {
2688 struct ltt_ust_session *usess = session->ust_session;
2689
e1986656
DG
2690 if (use_tmp_output) {
2691 ret = record_ust_snapshot(usess, &tmp_output, session,
5c786ded 2692 wait, nb_streams);
a934f4af 2693 if (ret != LTTNG_OK) {
6dc3064a
DG
2694 goto error;
2695 }
1bfe7328 2696 snapshot_success = 1;
6dc3064a
DG
2697 } else {
2698 struct snapshot_output *sout;
2699 struct lttng_ht_iter iter;
2700
2701 rcu_read_lock();
2702 cds_lfht_for_each_entry(session->snapshot.output_ht->ht,
2703 &iter.iter, sout, node.node) {
e1986656
DG
2704 /*
2705 * Make a local copy of the output and assign the possible
2706 * temporary value given by the caller.
2707 */
2708 memset(&tmp_output, 0, sizeof(tmp_output));
2709 memcpy(&tmp_output, sout, sizeof(tmp_output));
2710
e1986656
DG
2711 /* Use temporary max size. */
2712 if (output->max_size != (uint64_t) -1ULL) {
2713 tmp_output.max_size = output->max_size;
2714 }
2715
2716 /* Use temporary name. */
2717 if (*output->name != '\0') {
2718 strncpy(tmp_output.name, output->name,
2719 sizeof(tmp_output.name));
2720 }
2721
1bfe7328
DG
2722 tmp_output.nb_snapshot = session->snapshot.nb_snapshot;
2723
e1986656 2724 ret = record_ust_snapshot(usess, &tmp_output, session,
5c786ded 2725 wait, nb_streams);
a934f4af 2726 if (ret != LTTNG_OK) {
6dc3064a
DG
2727 rcu_read_unlock();
2728 goto error;
2729 }
1bfe7328 2730 snapshot_success = 1;
6dc3064a
DG
2731 }
2732 rcu_read_unlock();
2733 }
2734 }
2735
1bfe7328
DG
2736 if (snapshot_success) {
2737 session->snapshot.nb_snapshot++;
2738 }
2739
6dc3064a 2740error:
6dc3064a
DG
2741 return ret;
2742}
2743
2f77fc4b
DG
2744/*
2745 * Init command subsystem.
2746 */
2747void cmd_init(void)
2748{
2749 /*
d88aee68
DG
2750 * Set network sequence index to 1 for streams to match a relayd
2751 * socket on the consumer side.
2f77fc4b 2752 */
d88aee68
DG
2753 pthread_mutex_lock(&relayd_net_seq_idx_lock);
2754 relayd_net_seq_idx = 1;
2755 pthread_mutex_unlock(&relayd_net_seq_idx_lock);
2f77fc4b
DG
2756
2757 DBG("Command subsystem initialized");
2758}
This page took 0.160278 seconds and 4 git commands to generate.