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