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