Fix: empty indexes_ht before destroying it.
[lttng-tools.git] / src / bin / lttng-sessiond / ust-app.c
CommitLineData
91d76f53
DG
1/*
2 * Copyright (C) 2011 - David Goulet <david.goulet@polymtl.ca>
3 *
d14d33bf
AM
4 * This program is free software; you can redistribute it and/or modify
5 * it under the terms of the GNU General Public License, version 2 only,
6 * as published by the Free Software Foundation.
91d76f53
DG
7 *
8 * This program is distributed in the hope that it will be useful,
9 * but WITHOUT ANY WARRANTY; without even the implied warranty of
10 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
11 * GNU General Public License for more details.
12 *
d14d33bf
AM
13 * You should have received a copy of the GNU General Public License along
14 * with this program; if not, write to the Free Software Foundation, Inc.,
15 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
91d76f53
DG
16 */
17
18#define _GNU_SOURCE
19#include <errno.h>
7972aab2 20#include <inttypes.h>
91d76f53
DG
21#include <pthread.h>
22#include <stdio.h>
23#include <stdlib.h>
099e26bd 24#include <string.h>
aba8e916
DG
25#include <sys/stat.h>
26#include <sys/types.h>
099e26bd 27#include <unistd.h>
0df502fd 28#include <urcu/compiler.h>
fb54cdbf 29#include <lttng/ust-error.h>
331744e3 30#include <signal.h>
bec39940 31
990570ed 32#include <common/common.h>
86acf0da 33#include <common/sessiond-comm/sessiond-comm.h>
1e307fab 34
7972aab2 35#include "buffer-registry.h"
86acf0da 36#include "fd-limit.h"
8782cc74 37#include "health-sessiond.h"
56fff090 38#include "ust-app.h"
48842b30 39#include "ust-consumer.h"
d80a6244 40#include "ust-ctl.h"
0b2dc8df 41#include "utils.h"
d80a6244 42
d9bf3ca4
MD
43/* Next available channel key. Access under next_channel_key_lock. */
44static uint64_t _next_channel_key;
45static pthread_mutex_t next_channel_key_lock = PTHREAD_MUTEX_INITIALIZER;
46
47/* Next available session ID. Access under next_session_id_lock. */
48static uint64_t _next_session_id;
49static pthread_mutex_t next_session_id_lock = PTHREAD_MUTEX_INITIALIZER;
ffe60014
DG
50
51/*
d9bf3ca4 52 * Return the incremented value of next_channel_key.
ffe60014 53 */
d9bf3ca4 54static uint64_t get_next_channel_key(void)
ffe60014 55{
d9bf3ca4
MD
56 uint64_t ret;
57
58 pthread_mutex_lock(&next_channel_key_lock);
59 ret = ++_next_channel_key;
60 pthread_mutex_unlock(&next_channel_key_lock);
61 return ret;
ffe60014
DG
62}
63
64/*
7972aab2 65 * Return the atomically incremented value of next_session_id.
ffe60014 66 */
d9bf3ca4 67static uint64_t get_next_session_id(void)
ffe60014 68{
d9bf3ca4
MD
69 uint64_t ret;
70
71 pthread_mutex_lock(&next_session_id_lock);
72 ret = ++_next_session_id;
73 pthread_mutex_unlock(&next_session_id_lock);
74 return ret;
ffe60014
DG
75}
76
d65d2de8
DG
77static void copy_channel_attr_to_ustctl(
78 struct ustctl_consumer_channel_attr *attr,
79 struct lttng_ust_channel_attr *uattr)
80{
81 /* Copy event attributes since the layout is different. */
82 attr->subbuf_size = uattr->subbuf_size;
83 attr->num_subbuf = uattr->num_subbuf;
84 attr->overwrite = uattr->overwrite;
85 attr->switch_timer_interval = uattr->switch_timer_interval;
86 attr->read_timer_interval = uattr->read_timer_interval;
87 attr->output = uattr->output;
88}
89
025faf73
DG
90/*
91 * Match function for the hash table lookup.
92 *
93 * It matches an ust app event based on three attributes which are the event
94 * name, the filter bytecode and the loglevel.
95 */
18eace3b
DG
96static int ht_match_ust_app_event(struct cds_lfht_node *node, const void *_key)
97{
98 struct ust_app_event *event;
99 const struct ust_app_ht_key *key;
100
101 assert(node);
102 assert(_key);
103
104 event = caa_container_of(node, struct ust_app_event, node.node);
105 key = _key;
106
1af53eb5 107 /* Match the 4 elements of the key: name, filter, loglevel, exclusions */
18eace3b
DG
108
109 /* Event name */
110 if (strncmp(event->attr.name, key->name, sizeof(event->attr.name)) != 0) {
111 goto no_match;
112 }
113
114 /* Event loglevel. */
115 if (event->attr.loglevel != key->loglevel) {
025faf73
DG
116 if (event->attr.loglevel_type == LTTNG_UST_LOGLEVEL_ALL
117 && key->loglevel == 0 && event->attr.loglevel == -1) {
118 /*
119 * Match is accepted. This is because on event creation, the
120 * loglevel is set to -1 if the event loglevel type is ALL so 0 and
121 * -1 are accepted for this loglevel type since 0 is the one set by
122 * the API when receiving an enable event.
123 */
124 } else {
125 goto no_match;
126 }
18eace3b
DG
127 }
128
129 /* One of the filters is NULL, fail. */
130 if ((key->filter && !event->filter) || (!key->filter && event->filter)) {
131 goto no_match;
132 }
133
025faf73
DG
134 if (key->filter && event->filter) {
135 /* Both filters exists, check length followed by the bytecode. */
136 if (event->filter->len != key->filter->len ||
137 memcmp(event->filter->data, key->filter->data,
138 event->filter->len) != 0) {
139 goto no_match;
140 }
18eace3b
DG
141 }
142
1af53eb5
JI
143 /* One of the exclusions is NULL, fail. */
144 if ((key->exclusion && !event->exclusion) || (!key->exclusion && event->exclusion)) {
145 goto no_match;
146 }
147
148 if (key->exclusion && event->exclusion) {
149 /* Both exclusions exists, check count followed by the names. */
150 if (event->exclusion->count != key->exclusion->count ||
151 memcmp(event->exclusion->names, key->exclusion->names,
152 event->exclusion->count * LTTNG_UST_SYM_NAME_LEN) != 0) {
153 goto no_match;
154 }
155 }
156
157
025faf73 158 /* Match. */
18eace3b
DG
159 return 1;
160
161no_match:
162 return 0;
18eace3b
DG
163}
164
025faf73
DG
165/*
166 * Unique add of an ust app event in the given ht. This uses the custom
167 * ht_match_ust_app_event match function and the event name as hash.
168 */
d0b96690 169static void add_unique_ust_app_event(struct ust_app_channel *ua_chan,
18eace3b
DG
170 struct ust_app_event *event)
171{
172 struct cds_lfht_node *node_ptr;
173 struct ust_app_ht_key key;
d0b96690 174 struct lttng_ht *ht;
18eace3b 175
d0b96690
DG
176 assert(ua_chan);
177 assert(ua_chan->events);
18eace3b
DG
178 assert(event);
179
d0b96690 180 ht = ua_chan->events;
18eace3b
DG
181 key.name = event->attr.name;
182 key.filter = event->filter;
183 key.loglevel = event->attr.loglevel;
91c89f23 184 key.exclusion = event->exclusion;
18eace3b
DG
185
186 node_ptr = cds_lfht_add_unique(ht->ht,
187 ht->hash_fct(event->node.key, lttng_ht_seed),
188 ht_match_ust_app_event, &key, &event->node.node);
189 assert(node_ptr == &event->node.node);
190}
191
d88aee68
DG
192/*
193 * Close the notify socket from the given RCU head object. This MUST be called
194 * through a call_rcu().
195 */
196static void close_notify_sock_rcu(struct rcu_head *head)
197{
198 int ret;
199 struct ust_app_notify_sock_obj *obj =
200 caa_container_of(head, struct ust_app_notify_sock_obj, head);
201
202 /* Must have a valid fd here. */
203 assert(obj->fd >= 0);
204
205 ret = close(obj->fd);
206 if (ret) {
207 ERR("close notify sock %d RCU", obj->fd);
208 }
209 lttng_fd_put(LTTNG_FD_APPS, 1);
210
211 free(obj);
212}
213
7972aab2
DG
214/*
215 * Return the session registry according to the buffer type of the given
216 * session.
217 *
218 * A registry per UID object MUST exists before calling this function or else
219 * it assert() if not found. RCU read side lock must be acquired.
220 */
221static struct ust_registry_session *get_session_registry(
222 struct ust_app_session *ua_sess)
223{
224 struct ust_registry_session *registry = NULL;
225
226 assert(ua_sess);
227
228 switch (ua_sess->buffer_type) {
229 case LTTNG_BUFFER_PER_PID:
230 {
231 struct buffer_reg_pid *reg_pid = buffer_reg_pid_find(ua_sess->id);
232 if (!reg_pid) {
233 goto error;
234 }
235 registry = reg_pid->registry->reg.ust;
236 break;
237 }
238 case LTTNG_BUFFER_PER_UID:
239 {
240 struct buffer_reg_uid *reg_uid = buffer_reg_uid_find(
241 ua_sess->tracing_id, ua_sess->bits_per_long, ua_sess->uid);
242 if (!reg_uid) {
243 goto error;
244 }
245 registry = reg_uid->registry->reg.ust;
246 break;
247 }
248 default:
249 assert(0);
250 };
251
252error:
253 return registry;
254}
255
55cc08a6
DG
256/*
257 * Delete ust context safely. RCU read lock must be held before calling
258 * this function.
259 */
260static
261void delete_ust_app_ctx(int sock, struct ust_app_ctx *ua_ctx)
262{
ffe60014
DG
263 int ret;
264
265 assert(ua_ctx);
266
55cc08a6 267 if (ua_ctx->obj) {
ffe60014 268 ret = ustctl_release_object(sock, ua_ctx->obj);
d0b96690
DG
269 if (ret < 0 && ret != -EPIPE && ret != -LTTNG_UST_ERR_EXITING) {
270 ERR("UST app sock %d release ctx obj handle %d failed with ret %d",
271 sock, ua_ctx->obj->handle, ret);
ffe60014 272 }
55cc08a6
DG
273 free(ua_ctx->obj);
274 }
275 free(ua_ctx);
276}
277
d80a6244
DG
278/*
279 * Delete ust app event safely. RCU read lock must be held before calling
280 * this function.
281 */
8b366481
DG
282static
283void delete_ust_app_event(int sock, struct ust_app_event *ua_event)
d80a6244 284{
ffe60014
DG
285 int ret;
286
287 assert(ua_event);
288
53a80697 289 free(ua_event->filter);
951f0b71
JI
290 if (ua_event->exclusion != NULL)
291 free(ua_event->exclusion);
edb67388 292 if (ua_event->obj != NULL) {
ffe60014
DG
293 ret = ustctl_release_object(sock, ua_event->obj);
294 if (ret < 0 && ret != -EPIPE && ret != -LTTNG_UST_ERR_EXITING) {
295 ERR("UST app sock %d release event obj failed with ret %d",
296 sock, ret);
297 }
edb67388
DG
298 free(ua_event->obj);
299 }
d80a6244
DG
300 free(ua_event);
301}
302
303/*
7972aab2
DG
304 * Release ust data object of the given stream.
305 *
306 * Return 0 on success or else a negative value.
d80a6244 307 */
7972aab2 308static int release_ust_app_stream(int sock, struct ust_app_stream *stream)
d80a6244 309{
7972aab2 310 int ret = 0;
ffe60014
DG
311
312 assert(stream);
313
8b366481 314 if (stream->obj) {
ffe60014
DG
315 ret = ustctl_release_object(sock, stream->obj);
316 if (ret < 0 && ret != -EPIPE && ret != -LTTNG_UST_ERR_EXITING) {
317 ERR("UST app sock %d release stream obj failed with ret %d",
318 sock, ret);
319 }
4063050c 320 lttng_fd_put(LTTNG_FD_APPS, 2);
8b366481
DG
321 free(stream->obj);
322 }
7972aab2
DG
323
324 return ret;
325}
326
327/*
328 * Delete ust app stream safely. RCU read lock must be held before calling
329 * this function.
330 */
331static
332void delete_ust_app_stream(int sock, struct ust_app_stream *stream)
333{
334 assert(stream);
335
336 (void) release_ust_app_stream(sock, stream);
84cd17c6 337 free(stream);
d80a6244
DG
338}
339
36b588ed
MD
340/*
341 * We need to execute ht_destroy outside of RCU read-side critical
0b2dc8df
MD
342 * section and outside of call_rcu thread, so we postpone its execution
343 * using ht_cleanup_push. It is simpler than to change the semantic of
344 * the many callers of delete_ust_app_session().
36b588ed
MD
345 */
346static
347void delete_ust_app_channel_rcu(struct rcu_head *head)
348{
349 struct ust_app_channel *ua_chan =
350 caa_container_of(head, struct ust_app_channel, rcu_head);
351
0b2dc8df
MD
352 ht_cleanup_push(ua_chan->ctx);
353 ht_cleanup_push(ua_chan->events);
36b588ed
MD
354 free(ua_chan);
355}
356
d80a6244
DG
357/*
358 * Delete ust app channel safely. RCU read lock must be held before calling
359 * this function.
360 */
8b366481 361static
d0b96690
DG
362void delete_ust_app_channel(int sock, struct ust_app_channel *ua_chan,
363 struct ust_app *app)
d80a6244
DG
364{
365 int ret;
bec39940 366 struct lttng_ht_iter iter;
d80a6244 367 struct ust_app_event *ua_event;
55cc08a6 368 struct ust_app_ctx *ua_ctx;
030a66fa 369 struct ust_app_stream *stream, *stmp;
7972aab2 370 struct ust_registry_session *registry;
d80a6244 371
ffe60014
DG
372 assert(ua_chan);
373
374 DBG3("UST app deleting channel %s", ua_chan->name);
375
55cc08a6 376 /* Wipe stream */
d80a6244 377 cds_list_for_each_entry_safe(stream, stmp, &ua_chan->streams.head, list) {
84cd17c6 378 cds_list_del(&stream->list);
d80a6244
DG
379 delete_ust_app_stream(sock, stream);
380 }
381
55cc08a6 382 /* Wipe context */
bec39940 383 cds_lfht_for_each_entry(ua_chan->ctx->ht, &iter.iter, ua_ctx, node.node) {
31746f93 384 cds_list_del(&ua_ctx->list);
bec39940 385 ret = lttng_ht_del(ua_chan->ctx, &iter);
55cc08a6
DG
386 assert(!ret);
387 delete_ust_app_ctx(sock, ua_ctx);
388 }
d80a6244 389
55cc08a6 390 /* Wipe events */
bec39940
DG
391 cds_lfht_for_each_entry(ua_chan->events->ht, &iter.iter, ua_event,
392 node.node) {
393 ret = lttng_ht_del(ua_chan->events, &iter);
525b0740 394 assert(!ret);
d80a6244
DG
395 delete_ust_app_event(sock, ua_event);
396 }
edb67388 397
c8335706
MD
398 if (ua_chan->session->buffer_type == LTTNG_BUFFER_PER_PID) {
399 /* Wipe and free registry from session registry. */
400 registry = get_session_registry(ua_chan->session);
401 if (registry) {
402 ust_registry_channel_del_free(registry, ua_chan->key);
403 }
7972aab2 404 }
d0b96690 405
edb67388 406 if (ua_chan->obj != NULL) {
d0b96690
DG
407 /* Remove channel from application UST object descriptor. */
408 iter.iter.node = &ua_chan->ust_objd_node.node;
c6e62271
DG
409 ret = lttng_ht_del(app->ust_objd, &iter);
410 assert(!ret);
ffe60014
DG
411 ret = ustctl_release_object(sock, ua_chan->obj);
412 if (ret < 0 && ret != -EPIPE && ret != -LTTNG_UST_ERR_EXITING) {
413 ERR("UST app sock %d release channel obj failed with ret %d",
414 sock, ret);
415 }
7972aab2 416 lttng_fd_put(LTTNG_FD_APPS, 1);
edb67388
DG
417 free(ua_chan->obj);
418 }
36b588ed 419 call_rcu(&ua_chan->rcu_head, delete_ust_app_channel_rcu);
d80a6244
DG
420}
421
331744e3 422/*
1b532a60
DG
423 * Push metadata to consumer socket.
424 *
425 * The socket lock MUST be acquired.
426 * The ust app session lock MUST be acquired.
331744e3
JD
427 *
428 * On success, return the len of metadata pushed or else a negative value.
429 */
430ssize_t ust_app_push_metadata(struct ust_registry_session *registry,
431 struct consumer_socket *socket, int send_zero_data)
432{
433 int ret;
434 char *metadata_str = NULL;
435 size_t len, offset;
436 ssize_t ret_val;
437
438 assert(registry);
439 assert(socket);
1b532a60
DG
440
441 /*
442 * On a push metadata error either the consumer is dead or the metadata
443 * channel has been destroyed because its endpoint might have died (e.g:
444 * relayd). If so, the metadata closed flag is set to 1 so we deny pushing
445 * metadata again which is not valid anymore on the consumer side.
446 *
447 * The ust app session mutex locked allows us to make this check without
448 * the registry lock.
449 */
450 if (registry->metadata_closed) {
451 return -EPIPE;
452 }
331744e3
JD
453
454 pthread_mutex_lock(&registry->lock);
455
456 offset = registry->metadata_len_sent;
457 len = registry->metadata_len - registry->metadata_len_sent;
458 if (len == 0) {
459 DBG3("No metadata to push for metadata key %" PRIu64,
460 registry->metadata_key);
461 ret_val = len;
462 if (send_zero_data) {
463 DBG("No metadata to push");
464 goto push_data;
465 }
466 goto end;
467 }
468
469 /* Allocate only what we have to send. */
470 metadata_str = zmalloc(len);
471 if (!metadata_str) {
472 PERROR("zmalloc ust app metadata string");
473 ret_val = -ENOMEM;
474 goto error;
475 }
476 /* Copy what we haven't send out. */
477 memcpy(metadata_str, registry->metadata + offset, len);
478 registry->metadata_len_sent += len;
479
480push_data:
481 pthread_mutex_unlock(&registry->lock);
482 ret = consumer_push_metadata(socket, registry->metadata_key,
483 metadata_str, len, offset);
484 if (ret < 0) {
000baf6a
DG
485 /*
486 * There is an acceptable race here between the registry metadata key
487 * assignment and the creation on the consumer. The session daemon can
488 * concurrently push metadata for this registry while being created on
489 * the consumer since the metadata key of the registry is assigned
490 * *before* it is setup to avoid the consumer to ask for metadata that
491 * could possibly be not found in the session daemon.
492 *
493 * The metadata will get pushed either by the session being stopped or
494 * the consumer requesting metadata if that race is triggered.
495 */
496 if (ret == -LTTCOMM_CONSUMERD_CHANNEL_FAIL) {
497 ret = 0;
498 }
ffa3f245
DG
499
500 /* Update back the actual metadata len sent since it failed here. */
501 pthread_mutex_lock(&registry->lock);
502 registry->metadata_len_sent -= len;
503 pthread_mutex_unlock(&registry->lock);
331744e3
JD
504 ret_val = ret;
505 goto error_push;
506 }
507
508 free(metadata_str);
509 return len;
510
511end:
512error:
513 pthread_mutex_unlock(&registry->lock);
514error_push:
515 free(metadata_str);
516 return ret_val;
517}
518
d88aee68
DG
519/*
520 * For a given application and session, push metadata to consumer. The session
521 * lock MUST be acquired here before calling this.
331744e3
JD
522 * Either sock or consumer is required : if sock is NULL, the default
523 * socket to send the metadata is retrieved from consumer, if sock
524 * is not NULL we use it to send the metadata.
d88aee68
DG
525 *
526 * Return 0 on success else a negative error.
527 */
7972aab2
DG
528static int push_metadata(struct ust_registry_session *registry,
529 struct consumer_output *consumer)
d88aee68 530{
331744e3
JD
531 int ret_val;
532 ssize_t ret;
d88aee68
DG
533 struct consumer_socket *socket;
534
7972aab2
DG
535 assert(registry);
536 assert(consumer);
537
538 rcu_read_lock();
d88aee68 539
7972aab2
DG
540 /*
541 * Means that no metadata was assigned to the session. This can happens if
542 * no start has been done previously.
543 */
544 if (!registry->metadata_key) {
331744e3 545 ret_val = 0;
1b532a60 546 goto end_rcu_unlock;
d88aee68
DG
547 }
548
d88aee68 549 /* Get consumer socket to use to push the metadata.*/
7972aab2
DG
550 socket = consumer_find_socket_by_bitness(registry->bits_per_long,
551 consumer);
d88aee68 552 if (!socket) {
331744e3 553 ret_val = -1;
d88aee68
DG
554 goto error_rcu_unlock;
555 }
556
557 /*
558 * TODO: Currently, we hold the socket lock around sampling of the next
559 * metadata segment to ensure we send metadata over the consumer socket in
560 * the correct order. This makes the registry lock nest inside the socket
561 * lock.
562 *
563 * Please note that this is a temporary measure: we should move this lock
564 * back into ust_consumer_push_metadata() when the consumer gets the
565 * ability to reorder the metadata it receives.
566 */
567 pthread_mutex_lock(socket->lock);
331744e3
JD
568 ret = ust_app_push_metadata(registry, socket, 0);
569 pthread_mutex_unlock(socket->lock);
d88aee68 570 if (ret < 0) {
331744e3 571 ret_val = ret;
d88aee68
DG
572 goto error_rcu_unlock;
573 }
574
d88aee68 575 rcu_read_unlock();
d88aee68
DG
576 return 0;
577
d88aee68 578error_rcu_unlock:
1b532a60
DG
579 /*
580 * On error, flag the registry that the metadata is closed. We were unable
581 * to push anything and this means that either the consumer is not
582 * responding or the metadata cache has been destroyed on the consumer.
583 */
584 registry->metadata_closed = 1;
585end_rcu_unlock:
d88aee68 586 rcu_read_unlock();
331744e3 587 return ret_val;
d88aee68
DG
588}
589
590/*
591 * Send to the consumer a close metadata command for the given session. Once
592 * done, the metadata channel is deleted and the session metadata pointer is
593 * nullified. The session lock MUST be acquired here unless the application is
594 * in the destroy path.
595 *
596 * Return 0 on success else a negative value.
597 */
7972aab2
DG
598static int close_metadata(struct ust_registry_session *registry,
599 struct consumer_output *consumer)
d88aee68
DG
600{
601 int ret;
602 struct consumer_socket *socket;
603
7972aab2
DG
604 assert(registry);
605 assert(consumer);
d88aee68 606
7972aab2
DG
607 rcu_read_lock();
608
609 if (!registry->metadata_key || registry->metadata_closed) {
d88aee68 610 ret = 0;
1b532a60 611 goto end;
d88aee68
DG
612 }
613
d88aee68 614 /* Get consumer socket to use to push the metadata.*/
7972aab2
DG
615 socket = consumer_find_socket_by_bitness(registry->bits_per_long,
616 consumer);
d88aee68
DG
617 if (!socket) {
618 ret = -1;
7972aab2 619 goto error;
d88aee68
DG
620 }
621
7972aab2 622 ret = consumer_close_metadata(socket, registry->metadata_key);
d88aee68 623 if (ret < 0) {
7972aab2 624 goto error;
d88aee68
DG
625 }
626
d88aee68 627error:
1b532a60
DG
628 /*
629 * Metadata closed. Even on error this means that the consumer is not
630 * responding or not found so either way a second close should NOT be emit
631 * for this registry.
632 */
633 registry->metadata_closed = 1;
634end:
7972aab2 635 rcu_read_unlock();
d88aee68
DG
636 return ret;
637}
638
36b588ed
MD
639/*
640 * We need to execute ht_destroy outside of RCU read-side critical
0b2dc8df
MD
641 * section and outside of call_rcu thread, so we postpone its execution
642 * using ht_cleanup_push. It is simpler than to change the semantic of
643 * the many callers of delete_ust_app_session().
36b588ed
MD
644 */
645static
646void delete_ust_app_session_rcu(struct rcu_head *head)
647{
648 struct ust_app_session *ua_sess =
649 caa_container_of(head, struct ust_app_session, rcu_head);
650
0b2dc8df 651 ht_cleanup_push(ua_sess->channels);
36b588ed
MD
652 free(ua_sess);
653}
654
d80a6244
DG
655/*
656 * Delete ust app session safely. RCU read lock must be held before calling
657 * this function.
658 */
8b366481 659static
d0b96690
DG
660void delete_ust_app_session(int sock, struct ust_app_session *ua_sess,
661 struct ust_app *app)
d80a6244
DG
662{
663 int ret;
bec39940 664 struct lttng_ht_iter iter;
d80a6244 665 struct ust_app_channel *ua_chan;
7972aab2 666 struct ust_registry_session *registry;
d80a6244 667
d88aee68
DG
668 assert(ua_sess);
669
1b532a60
DG
670 pthread_mutex_lock(&ua_sess->lock);
671
7972aab2 672 registry = get_session_registry(ua_sess);
1b532a60 673 if (registry && !registry->metadata_closed) {
d88aee68 674 /* Push metadata for application before freeing the application. */
7972aab2 675 (void) push_metadata(registry, ua_sess->consumer);
d88aee68 676
7972aab2
DG
677 /*
678 * Don't ask to close metadata for global per UID buffers. Close
1b532a60
DG
679 * metadata only on destroy trace session in this case. Also, the
680 * previous push metadata could have flag the metadata registry to
681 * close so don't send a close command if closed.
7972aab2 682 */
1b532a60
DG
683 if (ua_sess->buffer_type != LTTNG_BUFFER_PER_UID &&
684 !registry->metadata_closed) {
7972aab2
DG
685 /* And ask to close it for this session registry. */
686 (void) close_metadata(registry, ua_sess->consumer);
687 }
d80a6244
DG
688 }
689
bec39940
DG
690 cds_lfht_for_each_entry(ua_sess->channels->ht, &iter.iter, ua_chan,
691 node.node) {
692 ret = lttng_ht_del(ua_sess->channels, &iter);
525b0740 693 assert(!ret);
d0b96690 694 delete_ust_app_channel(sock, ua_chan, app);
d80a6244 695 }
d80a6244 696
7972aab2
DG
697 /* In case of per PID, the registry is kept in the session. */
698 if (ua_sess->buffer_type == LTTNG_BUFFER_PER_PID) {
699 struct buffer_reg_pid *reg_pid = buffer_reg_pid_find(ua_sess->id);
700 if (reg_pid) {
701 buffer_reg_pid_remove(reg_pid);
702 buffer_reg_pid_destroy(reg_pid);
703 }
704 }
d0b96690 705
aee6bafd 706 if (ua_sess->handle != -1) {
ffe60014
DG
707 ret = ustctl_release_handle(sock, ua_sess->handle);
708 if (ret < 0 && ret != -EPIPE && ret != -LTTNG_UST_ERR_EXITING) {
709 ERR("UST app sock %d release session handle failed with ret %d",
710 sock, ret);
711 }
aee6bafd 712 }
1b532a60
DG
713 pthread_mutex_unlock(&ua_sess->lock);
714
36b588ed 715 call_rcu(&ua_sess->rcu_head, delete_ust_app_session_rcu);
d80a6244 716}
91d76f53
DG
717
718/*
284d8f55
DG
719 * Delete a traceable application structure from the global list. Never call
720 * this function outside of a call_rcu call.
36b588ed
MD
721 *
722 * RCU read side lock should _NOT_ be held when calling this function.
91d76f53 723 */
8b366481
DG
724static
725void delete_ust_app(struct ust_app *app)
91d76f53 726{
8b366481 727 int ret, sock;
d42f20df 728 struct ust_app_session *ua_sess, *tmp_ua_sess;
44d3bd01 729
d80a6244 730 /* Delete ust app sessions info */
852d0037
DG
731 sock = app->sock;
732 app->sock = -1;
d80a6244 733
8b366481 734 /* Wipe sessions */
d42f20df
DG
735 cds_list_for_each_entry_safe(ua_sess, tmp_ua_sess, &app->teardown_head,
736 teardown_node) {
737 /* Free every object in the session and the session. */
36b588ed 738 rcu_read_lock();
d0b96690 739 delete_ust_app_session(sock, ua_sess, app);
36b588ed 740 rcu_read_unlock();
d80a6244 741 }
36b588ed 742
0b2dc8df
MD
743 ht_cleanup_push(app->sessions);
744 ht_cleanup_push(app->ust_objd);
d80a6244 745
6414a713 746 /*
852d0037
DG
747 * Wait until we have deleted the application from the sock hash table
748 * before closing this socket, otherwise an application could re-use the
749 * socket ID and race with the teardown, using the same hash table entry.
750 *
751 * It's OK to leave the close in call_rcu. We want it to stay unique for
752 * all RCU readers that could run concurrently with unregister app,
753 * therefore we _need_ to only close that socket after a grace period. So
754 * it should stay in this RCU callback.
755 *
756 * This close() is a very important step of the synchronization model so
757 * every modification to this function must be carefully reviewed.
6414a713 758 */
799e2c4f
MD
759 ret = close(sock);
760 if (ret) {
761 PERROR("close");
762 }
4063050c 763 lttng_fd_put(LTTNG_FD_APPS, 1);
d80a6244 764
852d0037 765 DBG2("UST app pid %d deleted", app->pid);
284d8f55 766 free(app);
099e26bd
DG
767}
768
769/*
f6a9efaa 770 * URCU intermediate call to delete an UST app.
099e26bd 771 */
8b366481
DG
772static
773void delete_ust_app_rcu(struct rcu_head *head)
099e26bd 774{
bec39940
DG
775 struct lttng_ht_node_ulong *node =
776 caa_container_of(head, struct lttng_ht_node_ulong, head);
f6a9efaa 777 struct ust_app *app =
852d0037 778 caa_container_of(node, struct ust_app, pid_n);
f6a9efaa 779
852d0037 780 DBG3("Call RCU deleting app PID %d", app->pid);
f6a9efaa 781 delete_ust_app(app);
099e26bd
DG
782}
783
ffe60014
DG
784/*
785 * Delete the session from the application ht and delete the data structure by
786 * freeing every object inside and releasing them.
787 */
d0b96690 788static void destroy_app_session(struct ust_app *app,
ffe60014
DG
789 struct ust_app_session *ua_sess)
790{
791 int ret;
792 struct lttng_ht_iter iter;
793
794 assert(app);
795 assert(ua_sess);
796
797 iter.iter.node = &ua_sess->node.node;
798 ret = lttng_ht_del(app->sessions, &iter);
799 if (ret) {
800 /* Already scheduled for teardown. */
801 goto end;
802 }
803
804 /* Once deleted, free the data structure. */
d0b96690 805 delete_ust_app_session(app->sock, ua_sess, app);
ffe60014
DG
806
807end:
808 return;
809}
810
8b366481
DG
811/*
812 * Alloc new UST app session.
813 */
814static
d0b96690 815struct ust_app_session *alloc_ust_app_session(struct ust_app *app)
8b366481
DG
816{
817 struct ust_app_session *ua_sess;
818
819 /* Init most of the default value by allocating and zeroing */
820 ua_sess = zmalloc(sizeof(struct ust_app_session));
821 if (ua_sess == NULL) {
822 PERROR("malloc");
ffe60014 823 goto error_free;
8b366481
DG
824 }
825
826 ua_sess->handle = -1;
bec39940 827 ua_sess->channels = lttng_ht_new(0, LTTNG_HT_TYPE_STRING);
ad7a9107 828 ua_sess->metadata_attr.type = LTTNG_UST_CHAN_METADATA;
84ad93e8 829 pthread_mutex_init(&ua_sess->lock, NULL);
ad7a9107 830
8b366481
DG
831 return ua_sess;
832
ffe60014 833error_free:
8b366481
DG
834 return NULL;
835}
836
837/*
838 * Alloc new UST app channel.
839 */
840static
841struct ust_app_channel *alloc_ust_app_channel(char *name,
d0b96690 842 struct ust_app_session *ua_sess,
ffe60014 843 struct lttng_ust_channel_attr *attr)
8b366481
DG
844{
845 struct ust_app_channel *ua_chan;
846
847 /* Init most of the default value by allocating and zeroing */
848 ua_chan = zmalloc(sizeof(struct ust_app_channel));
849 if (ua_chan == NULL) {
850 PERROR("malloc");
851 goto error;
852 }
853
854 /* Setup channel name */
855 strncpy(ua_chan->name, name, sizeof(ua_chan->name));
856 ua_chan->name[sizeof(ua_chan->name) - 1] = '\0';
857
858 ua_chan->enabled = 1;
859 ua_chan->handle = -1;
45893984 860 ua_chan->session = ua_sess;
ffe60014 861 ua_chan->key = get_next_channel_key();
bec39940
DG
862 ua_chan->ctx = lttng_ht_new(0, LTTNG_HT_TYPE_ULONG);
863 ua_chan->events = lttng_ht_new(0, LTTNG_HT_TYPE_STRING);
864 lttng_ht_node_init_str(&ua_chan->node, ua_chan->name);
8b366481
DG
865
866 CDS_INIT_LIST_HEAD(&ua_chan->streams.head);
31746f93 867 CDS_INIT_LIST_HEAD(&ua_chan->ctx_list);
8b366481
DG
868
869 /* Copy attributes */
870 if (attr) {
ffe60014 871 /* Translate from lttng_ust_channel to ustctl_consumer_channel_attr. */
2fe6e7f5
DG
872 ua_chan->attr.subbuf_size = attr->subbuf_size;
873 ua_chan->attr.num_subbuf = attr->num_subbuf;
874 ua_chan->attr.overwrite = attr->overwrite;
875 ua_chan->attr.switch_timer_interval = attr->switch_timer_interval;
876 ua_chan->attr.read_timer_interval = attr->read_timer_interval;
877 ua_chan->attr.output = attr->output;
8b366481 878 }
ffe60014
DG
879 /* By default, the channel is a per cpu channel. */
880 ua_chan->attr.type = LTTNG_UST_CHAN_PER_CPU;
8b366481
DG
881
882 DBG3("UST app channel %s allocated", ua_chan->name);
883
884 return ua_chan;
885
886error:
887 return NULL;
888}
889
37f1c236
DG
890/*
891 * Allocate and initialize a UST app stream.
892 *
893 * Return newly allocated stream pointer or NULL on error.
894 */
ffe60014 895struct ust_app_stream *ust_app_alloc_stream(void)
37f1c236
DG
896{
897 struct ust_app_stream *stream = NULL;
898
899 stream = zmalloc(sizeof(*stream));
900 if (stream == NULL) {
901 PERROR("zmalloc ust app stream");
902 goto error;
903 }
904
905 /* Zero could be a valid value for a handle so flag it to -1. */
906 stream->handle = -1;
907
908error:
909 return stream;
910}
911
8b366481
DG
912/*
913 * Alloc new UST app event.
914 */
915static
916struct ust_app_event *alloc_ust_app_event(char *name,
917 struct lttng_ust_event *attr)
918{
919 struct ust_app_event *ua_event;
920
921 /* Init most of the default value by allocating and zeroing */
922 ua_event = zmalloc(sizeof(struct ust_app_event));
923 if (ua_event == NULL) {
924 PERROR("malloc");
925 goto error;
926 }
927
928 ua_event->enabled = 1;
929 strncpy(ua_event->name, name, sizeof(ua_event->name));
930 ua_event->name[sizeof(ua_event->name) - 1] = '\0';
bec39940 931 lttng_ht_node_init_str(&ua_event->node, ua_event->name);
8b366481
DG
932
933 /* Copy attributes */
934 if (attr) {
935 memcpy(&ua_event->attr, attr, sizeof(ua_event->attr));
936 }
937
938 DBG3("UST app event %s allocated", ua_event->name);
939
940 return ua_event;
941
942error:
943 return NULL;
944}
945
946/*
947 * Alloc new UST app context.
948 */
949static
950struct ust_app_ctx *alloc_ust_app_ctx(struct lttng_ust_context *uctx)
951{
952 struct ust_app_ctx *ua_ctx;
953
954 ua_ctx = zmalloc(sizeof(struct ust_app_ctx));
955 if (ua_ctx == NULL) {
956 goto error;
957 }
958
31746f93
DG
959 CDS_INIT_LIST_HEAD(&ua_ctx->list);
960
8b366481
DG
961 if (uctx) {
962 memcpy(&ua_ctx->ctx, uctx, sizeof(ua_ctx->ctx));
963 }
964
965 DBG3("UST app context %d allocated", ua_ctx->ctx.ctx);
966
967error:
968 return ua_ctx;
969}
970
025faf73
DG
971/*
972 * Allocate a filter and copy the given original filter.
973 *
974 * Return allocated filter or NULL on error.
975 */
976static struct lttng_ust_filter_bytecode *alloc_copy_ust_app_filter(
977 struct lttng_ust_filter_bytecode *orig_f)
978{
979 struct lttng_ust_filter_bytecode *filter = NULL;
980
981 /* Copy filter bytecode */
982 filter = zmalloc(sizeof(*filter) + orig_f->len);
983 if (!filter) {
984 PERROR("zmalloc alloc ust app filter");
985 goto error;
986 }
987
988 memcpy(filter, orig_f, sizeof(*filter) + orig_f->len);
989
990error:
991 return filter;
992}
993
099e26bd 994/*
421cb601
DG
995 * Find an ust_app using the sock and return it. RCU read side lock must be
996 * held before calling this helper function.
099e26bd 997 */
f20baf8e 998struct ust_app *ust_app_find_by_sock(int sock)
099e26bd 999{
bec39940 1000 struct lttng_ht_node_ulong *node;
bec39940 1001 struct lttng_ht_iter iter;
f6a9efaa 1002
852d0037 1003 lttng_ht_lookup(ust_app_ht_by_sock, (void *)((unsigned long) sock), &iter);
bec39940 1004 node = lttng_ht_iter_get_node_ulong(&iter);
f6a9efaa
DG
1005 if (node == NULL) {
1006 DBG2("UST app find by sock %d not found", sock);
f6a9efaa
DG
1007 goto error;
1008 }
852d0037
DG
1009
1010 return caa_container_of(node, struct ust_app, sock_n);
f6a9efaa
DG
1011
1012error:
1013 return NULL;
099e26bd
DG
1014}
1015
d0b96690
DG
1016/*
1017 * Find an ust_app using the notify sock and return it. RCU read side lock must
1018 * be held before calling this helper function.
1019 */
1020static struct ust_app *find_app_by_notify_sock(int sock)
1021{
1022 struct lttng_ht_node_ulong *node;
1023 struct lttng_ht_iter iter;
1024
1025 lttng_ht_lookup(ust_app_ht_by_notify_sock, (void *)((unsigned long) sock),
1026 &iter);
1027 node = lttng_ht_iter_get_node_ulong(&iter);
1028 if (node == NULL) {
1029 DBG2("UST app find by notify sock %d not found", sock);
1030 goto error;
1031 }
1032
1033 return caa_container_of(node, struct ust_app, notify_sock_n);
1034
1035error:
1036 return NULL;
1037}
1038
025faf73
DG
1039/*
1040 * Lookup for an ust app event based on event name, filter bytecode and the
1041 * event loglevel.
1042 *
1043 * Return an ust_app_event object or NULL on error.
1044 */
18eace3b 1045static struct ust_app_event *find_ust_app_event(struct lttng_ht *ht,
39c5a3a7
JI
1046 char *name, struct lttng_ust_filter_bytecode *filter, int loglevel,
1047 const struct lttng_event_exclusion *exclusion)
18eace3b
DG
1048{
1049 struct lttng_ht_iter iter;
1050 struct lttng_ht_node_str *node;
1051 struct ust_app_event *event = NULL;
1052 struct ust_app_ht_key key;
18eace3b
DG
1053
1054 assert(name);
1055 assert(ht);
1056
1057 /* Setup key for event lookup. */
1058 key.name = name;
1059 key.filter = filter;
1060 key.loglevel = loglevel;
39c5a3a7
JI
1061 /* lttng_event_exclusion and lttng_ust_event_exclusion structures are similar */
1062 key.exclusion = (struct lttng_ust_event_exclusion *)exclusion;
18eace3b 1063
025faf73
DG
1064 /* Lookup using the event name as hash and a custom match fct. */
1065 cds_lfht_lookup(ht->ht, ht->hash_fct((void *) name, lttng_ht_seed),
1066 ht_match_ust_app_event, &key, &iter.iter);
18eace3b
DG
1067 node = lttng_ht_iter_get_node_str(&iter);
1068 if (node == NULL) {
1069 goto end;
1070 }
1071
1072 event = caa_container_of(node, struct ust_app_event, node);
1073
1074end:
18eace3b
DG
1075 return event;
1076}
1077
55cc08a6
DG
1078/*
1079 * Create the channel context on the tracer.
d0b96690
DG
1080 *
1081 * Called with UST app session lock held.
55cc08a6
DG
1082 */
1083static
1084int create_ust_channel_context(struct ust_app_channel *ua_chan,
1085 struct ust_app_ctx *ua_ctx, struct ust_app *app)
1086{
1087 int ret;
1088
840cb59c 1089 health_code_update();
86acf0da 1090
852d0037 1091 ret = ustctl_add_context(app->sock, &ua_ctx->ctx,
55cc08a6
DG
1092 ua_chan->obj, &ua_ctx->obj);
1093 if (ret < 0) {
ffe60014
DG
1094 if (ret != -EPIPE && ret != -LTTNG_UST_ERR_EXITING) {
1095 ERR("UST app create channel context failed for app (pid: %d) "
1096 "with ret %d", app->pid, ret);
1097 } else {
3757b385
DG
1098 /*
1099 * This is normal behavior, an application can die during the
1100 * creation process. Don't report an error so the execution can
1101 * continue normally.
1102 */
1103 ret = 0;
ffe60014
DG
1104 DBG3("UST app disable event failed. Application is dead.");
1105 }
55cc08a6
DG
1106 goto error;
1107 }
1108
1109 ua_ctx->handle = ua_ctx->obj->handle;
1110
d0b96690
DG
1111 DBG2("UST app context handle %d created successfully for channel %s",
1112 ua_ctx->handle, ua_chan->name);
55cc08a6
DG
1113
1114error:
840cb59c 1115 health_code_update();
55cc08a6
DG
1116 return ret;
1117}
1118
53a80697
MD
1119/*
1120 * Set the filter on the tracer.
1121 */
1122static
1123int set_ust_event_filter(struct ust_app_event *ua_event,
1124 struct ust_app *app)
1125{
1126 int ret;
1127
840cb59c 1128 health_code_update();
86acf0da 1129
53a80697 1130 if (!ua_event->filter) {
86acf0da
DG
1131 ret = 0;
1132 goto error;
53a80697
MD
1133 }
1134
1135 ret = ustctl_set_filter(app->sock, ua_event->filter,
1136 ua_event->obj);
1137 if (ret < 0) {
ffe60014
DG
1138 if (ret != -EPIPE && ret != -LTTNG_UST_ERR_EXITING) {
1139 ERR("UST app event %s filter failed for app (pid: %d) "
1140 "with ret %d", ua_event->attr.name, app->pid, ret);
1141 } else {
3757b385
DG
1142 /*
1143 * This is normal behavior, an application can die during the
1144 * creation process. Don't report an error so the execution can
1145 * continue normally.
1146 */
1147 ret = 0;
ffe60014
DG
1148 DBG3("UST app filter event failed. Application is dead.");
1149 }
53a80697
MD
1150 goto error;
1151 }
1152
1153 DBG2("UST filter set successfully for event %s", ua_event->name);
1154
1155error:
840cb59c 1156 health_code_update();
53a80697
MD
1157 return ret;
1158}
1159
7cc9a73c
JI
1160/*
1161 * Set event exclusions on the tracer.
1162 */
1163static
1164int set_ust_event_exclusion(struct ust_app_event *ua_event,
1165 struct ust_app *app)
1166{
1167 int ret;
1168
1169 health_code_update();
1170
1171 if (!ua_event->exclusion || !ua_event->exclusion->count) {
1172 ret = 0;
1173 goto error;
1174 }
1175
1176 ret = ustctl_set_exclusion(app->sock, ua_event->exclusion,
1177 ua_event->obj);
1178 if (ret < 0) {
1179 if (ret != -EPIPE && ret != -LTTNG_UST_ERR_EXITING) {
1180 ERR("UST app event %s exclusions failed for app (pid: %d) "
1181 "with ret %d", ua_event->attr.name, app->pid, ret);
1182 } else {
1183 /*
1184 * This is normal behavior, an application can die during the
1185 * creation process. Don't report an error so the execution can
1186 * continue normally.
1187 */
1188 ret = 0;
1189 DBG3("UST app event exclusion failed. Application is dead.");
1190 }
1191 goto error;
1192 }
1193
1194 DBG2("UST exclusion set successfully for event %s", ua_event->name);
1195
1196error:
1197 health_code_update();
1198 return ret;
1199}
1200
9730260e
DG
1201/*
1202 * Disable the specified event on to UST tracer for the UST session.
1203 */
1204static int disable_ust_event(struct ust_app *app,
1205 struct ust_app_session *ua_sess, struct ust_app_event *ua_event)
1206{
1207 int ret;
1208
840cb59c 1209 health_code_update();
86acf0da 1210
852d0037 1211 ret = ustctl_disable(app->sock, ua_event->obj);
9730260e 1212 if (ret < 0) {
ffe60014
DG
1213 if (ret != -EPIPE && ret != -LTTNG_UST_ERR_EXITING) {
1214 ERR("UST app event %s disable failed for app (pid: %d) "
1215 "and session handle %d with ret %d",
1216 ua_event->attr.name, app->pid, ua_sess->handle, ret);
1217 } else {
3757b385
DG
1218 /*
1219 * This is normal behavior, an application can die during the
1220 * creation process. Don't report an error so the execution can
1221 * continue normally.
1222 */
1223 ret = 0;
ffe60014
DG
1224 DBG3("UST app disable event failed. Application is dead.");
1225 }
9730260e
DG
1226 goto error;
1227 }
1228
1229 DBG2("UST app event %s disabled successfully for app (pid: %d)",
852d0037 1230 ua_event->attr.name, app->pid);
9730260e
DG
1231
1232error:
840cb59c 1233 health_code_update();
9730260e
DG
1234 return ret;
1235}
1236
78f0bacd
DG
1237/*
1238 * Disable the specified channel on to UST tracer for the UST session.
1239 */
1240static int disable_ust_channel(struct ust_app *app,
1241 struct ust_app_session *ua_sess, struct ust_app_channel *ua_chan)
1242{
1243 int ret;
1244
840cb59c 1245 health_code_update();
86acf0da 1246
852d0037 1247 ret = ustctl_disable(app->sock, ua_chan->obj);
78f0bacd 1248 if (ret < 0) {
ffe60014
DG
1249 if (ret != -EPIPE && ret != -LTTNG_UST_ERR_EXITING) {
1250 ERR("UST app channel %s disable failed for app (pid: %d) "
1251 "and session handle %d with ret %d",
1252 ua_chan->name, app->pid, ua_sess->handle, ret);
1253 } else {
3757b385
DG
1254 /*
1255 * This is normal behavior, an application can die during the
1256 * creation process. Don't report an error so the execution can
1257 * continue normally.
1258 */
1259 ret = 0;
ffe60014
DG
1260 DBG3("UST app disable channel failed. Application is dead.");
1261 }
78f0bacd
DG
1262 goto error;
1263 }
1264
78f0bacd 1265 DBG2("UST app channel %s disabled successfully for app (pid: %d)",
852d0037 1266 ua_chan->name, app->pid);
78f0bacd
DG
1267
1268error:
840cb59c 1269 health_code_update();
78f0bacd
DG
1270 return ret;
1271}
1272
1273/*
1274 * Enable the specified channel on to UST tracer for the UST session.
1275 */
1276static int enable_ust_channel(struct ust_app *app,
1277 struct ust_app_session *ua_sess, struct ust_app_channel *ua_chan)
1278{
1279 int ret;
1280
840cb59c 1281 health_code_update();
86acf0da 1282
852d0037 1283 ret = ustctl_enable(app->sock, ua_chan->obj);
78f0bacd 1284 if (ret < 0) {
ffe60014
DG
1285 if (ret != -EPIPE && ret != -LTTNG_UST_ERR_EXITING) {
1286 ERR("UST app channel %s enable failed for app (pid: %d) "
1287 "and session handle %d with ret %d",
1288 ua_chan->name, app->pid, ua_sess->handle, ret);
1289 } else {
3757b385
DG
1290 /*
1291 * This is normal behavior, an application can die during the
1292 * creation process. Don't report an error so the execution can
1293 * continue normally.
1294 */
1295 ret = 0;
ffe60014
DG
1296 DBG3("UST app enable channel failed. Application is dead.");
1297 }
78f0bacd
DG
1298 goto error;
1299 }
1300
1301 ua_chan->enabled = 1;
1302
1303 DBG2("UST app channel %s enabled successfully for app (pid: %d)",
852d0037 1304 ua_chan->name, app->pid);
78f0bacd
DG
1305
1306error:
840cb59c 1307 health_code_update();
78f0bacd
DG
1308 return ret;
1309}
1310
edb67388
DG
1311/*
1312 * Enable the specified event on to UST tracer for the UST session.
1313 */
1314static int enable_ust_event(struct ust_app *app,
1315 struct ust_app_session *ua_sess, struct ust_app_event *ua_event)
1316{
1317 int ret;
1318
840cb59c 1319 health_code_update();
86acf0da 1320
852d0037 1321 ret = ustctl_enable(app->sock, ua_event->obj);
edb67388 1322 if (ret < 0) {
ffe60014
DG
1323 if (ret != -EPIPE && ret != -LTTNG_UST_ERR_EXITING) {
1324 ERR("UST app event %s enable failed for app (pid: %d) "
1325 "and session handle %d with ret %d",
1326 ua_event->attr.name, app->pid, ua_sess->handle, ret);
1327 } else {
3757b385
DG
1328 /*
1329 * This is normal behavior, an application can die during the
1330 * creation process. Don't report an error so the execution can
1331 * continue normally.
1332 */
1333 ret = 0;
ffe60014
DG
1334 DBG3("UST app enable event failed. Application is dead.");
1335 }
edb67388
DG
1336 goto error;
1337 }
1338
1339 DBG2("UST app event %s enabled successfully for app (pid: %d)",
852d0037 1340 ua_event->attr.name, app->pid);
edb67388
DG
1341
1342error:
840cb59c 1343 health_code_update();
edb67388
DG
1344 return ret;
1345}
1346
099e26bd 1347/*
7972aab2 1348 * Send channel and stream buffer to application.
4f3ab6ee 1349 *
ffe60014 1350 * Return 0 on success. On error, a negative value is returned.
4f3ab6ee 1351 */
7972aab2
DG
1352static int send_channel_pid_to_ust(struct ust_app *app,
1353 struct ust_app_session *ua_sess, struct ust_app_channel *ua_chan)
4f3ab6ee
DG
1354{
1355 int ret;
ffe60014 1356 struct ust_app_stream *stream, *stmp;
4f3ab6ee
DG
1357
1358 assert(app);
ffe60014 1359 assert(ua_sess);
4f3ab6ee 1360 assert(ua_chan);
4f3ab6ee 1361
840cb59c 1362 health_code_update();
4f3ab6ee 1363
7972aab2
DG
1364 DBG("UST app sending channel %s to UST app sock %d", ua_chan->name,
1365 app->sock);
86acf0da 1366
ffe60014
DG
1367 /* Send channel to the application. */
1368 ret = ust_consumer_send_channel_to_ust(app, ua_sess, ua_chan);
5b4a0ec0 1369 if (ret < 0) {
b551a063
DG
1370 goto error;
1371 }
1372
d88aee68
DG
1373 health_code_update();
1374
ffe60014
DG
1375 /* Send all streams to application. */
1376 cds_list_for_each_entry_safe(stream, stmp, &ua_chan->streams.head, list) {
1377 ret = ust_consumer_send_stream_to_ust(app, ua_chan, stream);
1378 if (ret < 0) {
1379 goto error;
1380 }
1381 /* We don't need the stream anymore once sent to the tracer. */
1382 cds_list_del(&stream->list);
1383 delete_ust_app_stream(-1, stream);
1384 }
ffe60014
DG
1385 /* Flag the channel that it is sent to the application. */
1386 ua_chan->is_sent = 1;
ffe60014 1387
b551a063 1388error:
840cb59c 1389 health_code_update();
b551a063
DG
1390 return ret;
1391}
1392
91d76f53 1393/*
5b4a0ec0 1394 * Create the specified event onto the UST tracer for a UST session.
d0b96690
DG
1395 *
1396 * Should be called with session mutex held.
91d76f53 1397 */
edb67388
DG
1398static
1399int create_ust_event(struct ust_app *app, struct ust_app_session *ua_sess,
1400 struct ust_app_channel *ua_chan, struct ust_app_event *ua_event)
91d76f53 1401{
5b4a0ec0 1402 int ret = 0;
284d8f55 1403
840cb59c 1404 health_code_update();
86acf0da 1405
5b4a0ec0 1406 /* Create UST event on tracer */
852d0037 1407 ret = ustctl_create_event(app->sock, &ua_event->attr, ua_chan->obj,
5b4a0ec0
DG
1408 &ua_event->obj);
1409 if (ret < 0) {
ffe60014
DG
1410 if (ret != -EPIPE && ret != -LTTNG_UST_ERR_EXITING) {
1411 ERR("Error ustctl create event %s for app pid: %d with ret %d",
1412 ua_event->attr.name, app->pid, ret);
1413 } else {
3757b385
DG
1414 /*
1415 * This is normal behavior, an application can die during the
1416 * creation process. Don't report an error so the execution can
1417 * continue normally.
1418 */
1419 ret = 0;
ffe60014
DG
1420 DBG3("UST app create event failed. Application is dead.");
1421 }
5b4a0ec0 1422 goto error;
91d76f53 1423 }
f6a9efaa 1424
5b4a0ec0 1425 ua_event->handle = ua_event->obj->handle;
284d8f55 1426
5b4a0ec0 1427 DBG2("UST app event %s created successfully for pid:%d",
852d0037 1428 ua_event->attr.name, app->pid);
f6a9efaa 1429
840cb59c 1430 health_code_update();
86acf0da 1431
025faf73
DG
1432 /* Set filter if one is present. */
1433 if (ua_event->filter) {
1434 ret = set_ust_event_filter(ua_event, app);
1435 if (ret < 0) {
1436 goto error;
1437 }
1438 }
1439
7cc9a73c
JI
1440 /* Set exclusions for the event */
1441 if (ua_event->exclusion) {
1442 ret = set_ust_event_exclusion(ua_event, app);
1443 if (ret < 0) {
1444 goto error;
1445 }
1446 }
1447
8535a6d9 1448 /* If event not enabled, disable it on the tracer */
3a400966
MD
1449 if (ua_event->enabled) {
1450 /*
1451 * We now need to explicitly enable the event, since it
1452 * is now disabled at creation.
1453 */
1454 ret = enable_ust_event(app, ua_sess, ua_event);
1455 if (ret < 0) {
1456 /*
1457 * If we hit an EPERM, something is wrong with our enable call. If
1458 * we get an EEXIST, there is a problem on the tracer side since we
1459 * just created it.
1460 */
1461 switch (ret) {
1462 case -LTTNG_UST_ERR_PERM:
1463 /* Code flow problem */
1464 assert(0);
1465 case -LTTNG_UST_ERR_EXIST:
1466 /* It's OK for our use case. */
1467 ret = 0;
1468 break;
1469 default:
1470 break;
1471 }
1472 goto error;
1473 }
1474 } else {
8535a6d9
DG
1475 ret = disable_ust_event(app, ua_sess, ua_event);
1476 if (ret < 0) {
fc34caaa
DG
1477 /*
1478 * If we hit an EPERM, something is wrong with our disable call. If
1479 * we get an EEXIST, there is a problem on the tracer side since we
1480 * just created it.
1481 */
1482 switch (ret) {
49c336c1 1483 case -LTTNG_UST_ERR_PERM:
fc34caaa
DG
1484 /* Code flow problem */
1485 assert(0);
49c336c1 1486 case -LTTNG_UST_ERR_EXIST:
fc34caaa
DG
1487 /* It's OK for our use case. */
1488 ret = 0;
1489 break;
1490 default:
1491 break;
1492 }
8535a6d9
DG
1493 goto error;
1494 }
1495 }
1496
5b4a0ec0 1497error:
840cb59c 1498 health_code_update();
5b4a0ec0 1499 return ret;
91d76f53 1500}
48842b30 1501
5b4a0ec0
DG
1502/*
1503 * Copy data between an UST app event and a LTT event.
1504 */
421cb601 1505static void shadow_copy_event(struct ust_app_event *ua_event,
48842b30
DG
1506 struct ltt_ust_event *uevent)
1507{
b4ffad32
JI
1508 size_t exclusion_alloc_size;
1509
48842b30
DG
1510 strncpy(ua_event->name, uevent->attr.name, sizeof(ua_event->name));
1511 ua_event->name[sizeof(ua_event->name) - 1] = '\0';
1512
fc34caaa
DG
1513 ua_event->enabled = uevent->enabled;
1514
5b4a0ec0
DG
1515 /* Copy event attributes */
1516 memcpy(&ua_event->attr, &uevent->attr, sizeof(ua_event->attr));
1517
53a80697
MD
1518 /* Copy filter bytecode */
1519 if (uevent->filter) {
025faf73
DG
1520 ua_event->filter = alloc_copy_ust_app_filter(uevent->filter);
1521 /* Filter might be NULL here in case of ENONEM. */
53a80697 1522 }
b4ffad32
JI
1523
1524 /* Copy exclusion data */
1525 if (uevent->exclusion) {
1526 exclusion_alloc_size = sizeof(struct lttng_ust_event_exclusion) +
1527 LTTNG_UST_SYM_NAME_LEN * uevent->exclusion->count;
1528 ua_event->exclusion = zmalloc(exclusion_alloc_size);
5f8df26c
JI
1529 if (ua_event->exclusion == NULL) {
1530 PERROR("malloc");
1531 } else {
1532 memcpy(ua_event->exclusion, uevent->exclusion,
1533 exclusion_alloc_size);
b4ffad32
JI
1534 }
1535 }
48842b30
DG
1536}
1537
5b4a0ec0
DG
1538/*
1539 * Copy data between an UST app channel and a LTT channel.
1540 */
421cb601 1541static void shadow_copy_channel(struct ust_app_channel *ua_chan,
48842b30
DG
1542 struct ltt_ust_channel *uchan)
1543{
bec39940 1544 struct lttng_ht_iter iter;
48842b30 1545 struct ltt_ust_event *uevent;
55cc08a6 1546 struct ltt_ust_context *uctx;
48842b30 1547 struct ust_app_event *ua_event;
55cc08a6 1548 struct ust_app_ctx *ua_ctx;
48842b30 1549
fc34caaa 1550 DBG2("UST app shadow copy of channel %s started", ua_chan->name);
48842b30
DG
1551
1552 strncpy(ua_chan->name, uchan->name, sizeof(ua_chan->name));
1553 ua_chan->name[sizeof(ua_chan->name) - 1] = '\0';
ffe60014 1554
1624d5b7
JD
1555 ua_chan->tracefile_size = uchan->tracefile_size;
1556 ua_chan->tracefile_count = uchan->tracefile_count;
1557
ffe60014
DG
1558 /* Copy event attributes since the layout is different. */
1559 ua_chan->attr.subbuf_size = uchan->attr.subbuf_size;
1560 ua_chan->attr.num_subbuf = uchan->attr.num_subbuf;
1561 ua_chan->attr.overwrite = uchan->attr.overwrite;
1562 ua_chan->attr.switch_timer_interval = uchan->attr.switch_timer_interval;
1563 ua_chan->attr.read_timer_interval = uchan->attr.read_timer_interval;
1564 ua_chan->attr.output = uchan->attr.output;
1565 /*
1566 * Note that the attribute channel type is not set since the channel on the
1567 * tracing registry side does not have this information.
1568 */
48842b30 1569
fc34caaa 1570 ua_chan->enabled = uchan->enabled;
7972aab2 1571 ua_chan->tracing_channel_id = uchan->id;
fc34caaa 1572
31746f93 1573 cds_list_for_each_entry(uctx, &uchan->ctx_list, list) {
55cc08a6
DG
1574 ua_ctx = alloc_ust_app_ctx(&uctx->ctx);
1575 if (ua_ctx == NULL) {
1576 continue;
1577 }
bec39940
DG
1578 lttng_ht_node_init_ulong(&ua_ctx->node,
1579 (unsigned long) ua_ctx->ctx.ctx);
aa3514e9 1580 lttng_ht_add_ulong(ua_chan->ctx, &ua_ctx->node);
31746f93 1581 cds_list_add_tail(&ua_ctx->list, &ua_chan->ctx_list);
55cc08a6 1582 }
48842b30 1583
421cb601 1584 /* Copy all events from ltt ust channel to ust app channel */
bec39940 1585 cds_lfht_for_each_entry(uchan->events->ht, &iter.iter, uevent, node.node) {
18eace3b 1586 ua_event = find_ust_app_event(ua_chan->events, uevent->attr.name,
39c5a3a7 1587 uevent->filter, uevent->attr.loglevel, uevent->exclusion);
18eace3b 1588 if (ua_event == NULL) {
421cb601 1589 DBG2("UST event %s not found on shadow copy channel",
48842b30 1590 uevent->attr.name);
284d8f55 1591 ua_event = alloc_ust_app_event(uevent->attr.name, &uevent->attr);
48842b30 1592 if (ua_event == NULL) {
5b4a0ec0 1593 continue;
48842b30 1594 }
421cb601 1595 shadow_copy_event(ua_event, uevent);
d0b96690 1596 add_unique_ust_app_event(ua_chan, ua_event);
48842b30 1597 }
48842b30
DG
1598 }
1599
fc34caaa 1600 DBG3("UST app shadow copy of channel %s done", ua_chan->name);
48842b30
DG
1601}
1602
5b4a0ec0
DG
1603/*
1604 * Copy data between a UST app session and a regular LTT session.
1605 */
421cb601 1606static void shadow_copy_session(struct ust_app_session *ua_sess,
bec39940 1607 struct ltt_ust_session *usess, struct ust_app *app)
48842b30 1608{
bec39940
DG
1609 struct lttng_ht_node_str *ua_chan_node;
1610 struct lttng_ht_iter iter;
48842b30
DG
1611 struct ltt_ust_channel *uchan;
1612 struct ust_app_channel *ua_chan;
477d7741
MD
1613 time_t rawtime;
1614 struct tm *timeinfo;
1615 char datetime[16];
1616 int ret;
1617
1618 /* Get date and time for unique app path */
1619 time(&rawtime);
1620 timeinfo = localtime(&rawtime);
1621 strftime(datetime, sizeof(datetime), "%Y%m%d-%H%M%S", timeinfo);
48842b30 1622
421cb601 1623 DBG2("Shadow copy of session handle %d", ua_sess->handle);
48842b30 1624
7972aab2
DG
1625 ua_sess->tracing_id = usess->id;
1626 ua_sess->id = get_next_session_id();
1627 ua_sess->uid = app->uid;
1628 ua_sess->gid = app->gid;
1629 ua_sess->euid = usess->uid;
1630 ua_sess->egid = usess->gid;
1631 ua_sess->buffer_type = usess->buffer_type;
1632 ua_sess->bits_per_long = app->bits_per_long;
1633 /* There is only one consumer object per session possible. */
1634 ua_sess->consumer = usess->consumer;
2bba9e53 1635 ua_sess->output_traces = usess->output_traces;
ecc48a90 1636 ua_sess->live_timer_interval = usess->live_timer_interval;
84ad93e8
DG
1637 copy_channel_attr_to_ustctl(&ua_sess->metadata_attr,
1638 &usess->metadata_attr);
7972aab2
DG
1639
1640 switch (ua_sess->buffer_type) {
1641 case LTTNG_BUFFER_PER_PID:
1642 ret = snprintf(ua_sess->path, sizeof(ua_sess->path),
dec56f6c 1643 DEFAULT_UST_TRACE_PID_PATH "/%s-%d-%s", app->name, app->pid,
7972aab2
DG
1644 datetime);
1645 break;
1646 case LTTNG_BUFFER_PER_UID:
1647 ret = snprintf(ua_sess->path, sizeof(ua_sess->path),
1648 DEFAULT_UST_TRACE_UID_PATH, ua_sess->uid, app->bits_per_long);
1649 break;
1650 default:
1651 assert(0);
1652 goto error;
1653 }
477d7741
MD
1654 if (ret < 0) {
1655 PERROR("asprintf UST shadow copy session");
477d7741 1656 assert(0);
7972aab2 1657 goto error;
477d7741
MD
1658 }
1659
48842b30 1660 /* Iterate over all channels in global domain. */
bec39940
DG
1661 cds_lfht_for_each_entry(usess->domain_global.channels->ht, &iter.iter,
1662 uchan, node.node) {
1663 struct lttng_ht_iter uiter;
ba767faf 1664
bec39940
DG
1665 lttng_ht_lookup(ua_sess->channels, (void *)uchan->name, &uiter);
1666 ua_chan_node = lttng_ht_iter_get_node_str(&uiter);
5b4a0ec0 1667 if (ua_chan_node != NULL) {
fc34caaa 1668 /* Session exist. Contiuing. */
5b4a0ec0
DG
1669 continue;
1670 }
421cb601 1671
5b4a0ec0
DG
1672 DBG2("Channel %s not found on shadow session copy, creating it",
1673 uchan->name);
d0b96690 1674 ua_chan = alloc_ust_app_channel(uchan->name, ua_sess, &uchan->attr);
5b4a0ec0 1675 if (ua_chan == NULL) {
fc34caaa 1676 /* malloc failed FIXME: Might want to do handle ENOMEM .. */
5b4a0ec0 1677 continue;
48842b30 1678 }
5b4a0ec0 1679 shadow_copy_channel(ua_chan, uchan);
ffe60014
DG
1680 /*
1681 * The concept of metadata channel does not exist on the tracing
1682 * registry side of the session daemon so this can only be a per CPU
1683 * channel and not metadata.
1684 */
1685 ua_chan->attr.type = LTTNG_UST_CHAN_PER_CPU;
1686
bec39940 1687 lttng_ht_add_unique_str(ua_sess->channels, &ua_chan->node);
48842b30 1688 }
7972aab2
DG
1689
1690error:
1691 return;
48842b30
DG
1692}
1693
78f0bacd
DG
1694/*
1695 * Lookup sesison wrapper.
1696 */
84cd17c6
MD
1697static
1698void __lookup_session_by_app(struct ltt_ust_session *usess,
bec39940 1699 struct ust_app *app, struct lttng_ht_iter *iter)
84cd17c6
MD
1700{
1701 /* Get right UST app session from app */
d9bf3ca4 1702 lttng_ht_lookup(app->sessions, &usess->id, iter);
84cd17c6
MD
1703}
1704
421cb601
DG
1705/*
1706 * Return ust app session from the app session hashtable using the UST session
a991f516 1707 * id.
421cb601 1708 */
48842b30
DG
1709static struct ust_app_session *lookup_session_by_app(
1710 struct ltt_ust_session *usess, struct ust_app *app)
1711{
bec39940 1712 struct lttng_ht_iter iter;
d9bf3ca4 1713 struct lttng_ht_node_u64 *node;
48842b30 1714
84cd17c6 1715 __lookup_session_by_app(usess, app, &iter);
d9bf3ca4 1716 node = lttng_ht_iter_get_node_u64(&iter);
48842b30
DG
1717 if (node == NULL) {
1718 goto error;
1719 }
1720
1721 return caa_container_of(node, struct ust_app_session, node);
1722
1723error:
1724 return NULL;
1725}
1726
7972aab2
DG
1727/*
1728 * Setup buffer registry per PID for the given session and application. If none
1729 * is found, a new one is created, added to the global registry and
1730 * initialized. If regp is valid, it's set with the newly created object.
1731 *
1732 * Return 0 on success or else a negative value.
1733 */
1734static int setup_buffer_reg_pid(struct ust_app_session *ua_sess,
1735 struct ust_app *app, struct buffer_reg_pid **regp)
1736{
1737 int ret = 0;
1738 struct buffer_reg_pid *reg_pid;
1739
1740 assert(ua_sess);
1741 assert(app);
1742
1743 rcu_read_lock();
1744
1745 reg_pid = buffer_reg_pid_find(ua_sess->id);
1746 if (!reg_pid) {
1747 /*
1748 * This is the create channel path meaning that if there is NO
1749 * registry available, we have to create one for this session.
1750 */
1751 ret = buffer_reg_pid_create(ua_sess->id, &reg_pid);
1752 if (ret < 0) {
1753 goto error;
1754 }
1755 buffer_reg_pid_add(reg_pid);
1756 } else {
1757 goto end;
1758 }
1759
1760 /* Initialize registry. */
1761 ret = ust_registry_session_init(&reg_pid->registry->reg.ust, app,
1762 app->bits_per_long, app->uint8_t_alignment,
1763 app->uint16_t_alignment, app->uint32_t_alignment,
af6142cf
MD
1764 app->uint64_t_alignment, app->long_alignment,
1765 app->byte_order, app->version.major,
1766 app->version.minor);
7972aab2
DG
1767 if (ret < 0) {
1768 goto error;
1769 }
1770
1771 DBG3("UST app buffer registry per PID created successfully");
1772
1773end:
1774 if (regp) {
1775 *regp = reg_pid;
1776 }
1777error:
1778 rcu_read_unlock();
1779 return ret;
1780}
1781
1782/*
1783 * Setup buffer registry per UID for the given session and application. If none
1784 * is found, a new one is created, added to the global registry and
1785 * initialized. If regp is valid, it's set with the newly created object.
1786 *
1787 * Return 0 on success or else a negative value.
1788 */
1789static int setup_buffer_reg_uid(struct ltt_ust_session *usess,
1790 struct ust_app *app, struct buffer_reg_uid **regp)
1791{
1792 int ret = 0;
1793 struct buffer_reg_uid *reg_uid;
1794
1795 assert(usess);
1796 assert(app);
1797
1798 rcu_read_lock();
1799
1800 reg_uid = buffer_reg_uid_find(usess->id, app->bits_per_long, app->uid);
1801 if (!reg_uid) {
1802 /*
1803 * This is the create channel path meaning that if there is NO
1804 * registry available, we have to create one for this session.
1805 */
1806 ret = buffer_reg_uid_create(usess->id, app->bits_per_long, app->uid,
1807 LTTNG_DOMAIN_UST, &reg_uid);
1808 if (ret < 0) {
1809 goto error;
1810 }
1811 buffer_reg_uid_add(reg_uid);
1812 } else {
1813 goto end;
1814 }
1815
1816 /* Initialize registry. */
af6142cf 1817 ret = ust_registry_session_init(&reg_uid->registry->reg.ust, NULL,
7972aab2
DG
1818 app->bits_per_long, app->uint8_t_alignment,
1819 app->uint16_t_alignment, app->uint32_t_alignment,
af6142cf
MD
1820 app->uint64_t_alignment, app->long_alignment,
1821 app->byte_order, app->version.major,
1822 app->version.minor);
7972aab2
DG
1823 if (ret < 0) {
1824 goto error;
1825 }
1826 /* Add node to teardown list of the session. */
1827 cds_list_add(&reg_uid->lnode, &usess->buffer_reg_uid_list);
1828
1829 DBG3("UST app buffer registry per UID created successfully");
1830
1831end:
1832 if (regp) {
1833 *regp = reg_uid;
1834 }
1835error:
1836 rcu_read_unlock();
1837 return ret;
1838}
1839
421cb601 1840/*
3d8ca23b 1841 * Create a session on the tracer side for the given app.
421cb601 1842 *
3d8ca23b
DG
1843 * On success, ua_sess_ptr is populated with the session pointer or else left
1844 * untouched. If the session was created, is_created is set to 1. On error,
1845 * it's left untouched. Note that ua_sess_ptr is mandatory but is_created can
1846 * be NULL.
1847 *
1848 * Returns 0 on success or else a negative code which is either -ENOMEM or
1849 * -ENOTCONN which is the default code if the ustctl_create_session fails.
421cb601 1850 */
3d8ca23b
DG
1851static int create_ust_app_session(struct ltt_ust_session *usess,
1852 struct ust_app *app, struct ust_app_session **ua_sess_ptr,
1853 int *is_created)
421cb601 1854{
3d8ca23b 1855 int ret, created = 0;
421cb601
DG
1856 struct ust_app_session *ua_sess;
1857
3d8ca23b
DG
1858 assert(usess);
1859 assert(app);
1860 assert(ua_sess_ptr);
1861
840cb59c 1862 health_code_update();
86acf0da 1863
421cb601
DG
1864 ua_sess = lookup_session_by_app(usess, app);
1865 if (ua_sess == NULL) {
d9bf3ca4 1866 DBG2("UST app pid: %d session id %" PRIu64 " not found, creating it",
852d0037 1867 app->pid, usess->id);
d0b96690 1868 ua_sess = alloc_ust_app_session(app);
421cb601
DG
1869 if (ua_sess == NULL) {
1870 /* Only malloc can failed so something is really wrong */
3d8ca23b
DG
1871 ret = -ENOMEM;
1872 goto error;
421cb601 1873 }
477d7741 1874 shadow_copy_session(ua_sess, usess, app);
3d8ca23b 1875 created = 1;
421cb601
DG
1876 }
1877
7972aab2
DG
1878 switch (usess->buffer_type) {
1879 case LTTNG_BUFFER_PER_PID:
1880 /* Init local registry. */
1881 ret = setup_buffer_reg_pid(ua_sess, app, NULL);
421cb601 1882 if (ret < 0) {
7972aab2
DG
1883 goto error;
1884 }
1885 break;
1886 case LTTNG_BUFFER_PER_UID:
1887 /* Look for a global registry. If none exists, create one. */
1888 ret = setup_buffer_reg_uid(usess, app, NULL);
1889 if (ret < 0) {
1890 goto error;
1891 }
1892 break;
1893 default:
1894 assert(0);
1895 ret = -EINVAL;
1896 goto error;
1897 }
1898
1899 health_code_update();
1900
1901 if (ua_sess->handle == -1) {
1902 ret = ustctl_create_session(app->sock);
1903 if (ret < 0) {
1904 if (ret != -EPIPE && ret != -LTTNG_UST_ERR_EXITING) {
1905 ERR("Creating session for app pid %d with ret %d",
ffe60014
DG
1906 app->pid, ret);
1907 } else {
1908 DBG("UST app creating session failed. Application is dead");
3757b385
DG
1909 /*
1910 * This is normal behavior, an application can die during the
1911 * creation process. Don't report an error so the execution can
1912 * continue normally. This will get flagged ENOTCONN and the
1913 * caller will handle it.
1914 */
1915 ret = 0;
ffe60014 1916 }
d0b96690 1917 delete_ust_app_session(-1, ua_sess, app);
3d8ca23b
DG
1918 if (ret != -ENOMEM) {
1919 /*
1920 * Tracer is probably gone or got an internal error so let's
1921 * behave like it will soon unregister or not usable.
1922 */
1923 ret = -ENOTCONN;
1924 }
1925 goto error;
421cb601
DG
1926 }
1927
7972aab2
DG
1928 ua_sess->handle = ret;
1929
1930 /* Add ust app session to app's HT */
d9bf3ca4
MD
1931 lttng_ht_node_init_u64(&ua_sess->node,
1932 ua_sess->tracing_id);
1933 lttng_ht_add_unique_u64(app->sessions, &ua_sess->node);
7972aab2
DG
1934
1935 DBG2("UST app session created successfully with handle %d", ret);
1936 }
1937
1938 *ua_sess_ptr = ua_sess;
1939 if (is_created) {
1940 *is_created = created;
1941 }
1942
1943 /* Everything went well. */
1944 ret = 0;
1945
1946error:
1947 health_code_update();
1948 return ret;
1949}
1950
1951/*
1952 * Create a context for the channel on the tracer.
1953 *
1954 * Called with UST app session lock held and a RCU read side lock.
1955 */
1956static
1957int create_ust_app_channel_context(struct ust_app_session *ua_sess,
1958 struct ust_app_channel *ua_chan, struct lttng_ust_context *uctx,
1959 struct ust_app *app)
1960{
1961 int ret = 0;
1962 struct lttng_ht_iter iter;
1963 struct lttng_ht_node_ulong *node;
1964 struct ust_app_ctx *ua_ctx;
1965
1966 DBG2("UST app adding context to channel %s", ua_chan->name);
1967
1968 lttng_ht_lookup(ua_chan->ctx, (void *)((unsigned long)uctx->ctx), &iter);
1969 node = lttng_ht_iter_get_node_ulong(&iter);
1970 if (node != NULL) {
1971 ret = -EEXIST;
1972 goto error;
1973 }
1974
1975 ua_ctx = alloc_ust_app_ctx(uctx);
1976 if (ua_ctx == NULL) {
1977 /* malloc failed */
1978 ret = -1;
1979 goto error;
1980 }
1981
1982 lttng_ht_node_init_ulong(&ua_ctx->node, (unsigned long) ua_ctx->ctx.ctx);
aa3514e9 1983 lttng_ht_add_ulong(ua_chan->ctx, &ua_ctx->node);
31746f93 1984 cds_list_add_tail(&ua_ctx->list, &ua_chan->ctx_list);
7972aab2
DG
1985
1986 ret = create_ust_channel_context(ua_chan, ua_ctx, app);
1987 if (ret < 0) {
1988 goto error;
1989 }
1990
1991error:
1992 return ret;
1993}
1994
1995/*
1996 * Enable on the tracer side a ust app event for the session and channel.
1997 *
1998 * Called with UST app session lock held.
1999 */
2000static
2001int enable_ust_app_event(struct ust_app_session *ua_sess,
2002 struct ust_app_event *ua_event, struct ust_app *app)
2003{
2004 int ret;
2005
2006 ret = enable_ust_event(app, ua_sess, ua_event);
2007 if (ret < 0) {
2008 goto error;
2009 }
2010
2011 ua_event->enabled = 1;
2012
2013error:
2014 return ret;
2015}
2016
2017/*
2018 * Disable on the tracer side a ust app event for the session and channel.
2019 */
2020static int disable_ust_app_event(struct ust_app_session *ua_sess,
2021 struct ust_app_event *ua_event, struct ust_app *app)
2022{
2023 int ret;
2024
2025 ret = disable_ust_event(app, ua_sess, ua_event);
2026 if (ret < 0) {
2027 goto error;
2028 }
2029
2030 ua_event->enabled = 0;
2031
2032error:
2033 return ret;
2034}
2035
2036/*
2037 * Lookup ust app channel for session and disable it on the tracer side.
2038 */
2039static
2040int disable_ust_app_channel(struct ust_app_session *ua_sess,
2041 struct ust_app_channel *ua_chan, struct ust_app *app)
2042{
2043 int ret;
2044
2045 ret = disable_ust_channel(app, ua_sess, ua_chan);
2046 if (ret < 0) {
2047 goto error;
2048 }
2049
2050 ua_chan->enabled = 0;
2051
2052error:
2053 return ret;
2054}
2055
2056/*
2057 * Lookup ust app channel for session and enable it on the tracer side. This
2058 * MUST be called with a RCU read side lock acquired.
2059 */
2060static int enable_ust_app_channel(struct ust_app_session *ua_sess,
2061 struct ltt_ust_channel *uchan, struct ust_app *app)
2062{
2063 int ret = 0;
2064 struct lttng_ht_iter iter;
2065 struct lttng_ht_node_str *ua_chan_node;
2066 struct ust_app_channel *ua_chan;
2067
2068 lttng_ht_lookup(ua_sess->channels, (void *)uchan->name, &iter);
2069 ua_chan_node = lttng_ht_iter_get_node_str(&iter);
2070 if (ua_chan_node == NULL) {
d9bf3ca4 2071 DBG2("Unable to find channel %s in ust session id %" PRIu64,
7972aab2
DG
2072 uchan->name, ua_sess->tracing_id);
2073 goto error;
2074 }
2075
2076 ua_chan = caa_container_of(ua_chan_node, struct ust_app_channel, node);
2077
2078 ret = enable_ust_channel(app, ua_sess, ua_chan);
2079 if (ret < 0) {
2080 goto error;
2081 }
2082
2083error:
2084 return ret;
2085}
2086
2087/*
2088 * Ask the consumer to create a channel and get it if successful.
2089 *
2090 * Return 0 on success or else a negative value.
2091 */
2092static int do_consumer_create_channel(struct ltt_ust_session *usess,
2093 struct ust_app_session *ua_sess, struct ust_app_channel *ua_chan,
2094 int bitness, struct ust_registry_session *registry)
2095{
2096 int ret;
2097 unsigned int nb_fd = 0;
2098 struct consumer_socket *socket;
2099
2100 assert(usess);
2101 assert(ua_sess);
2102 assert(ua_chan);
2103 assert(registry);
2104
2105 rcu_read_lock();
2106 health_code_update();
2107
2108 /* Get the right consumer socket for the application. */
2109 socket = consumer_find_socket_by_bitness(bitness, usess->consumer);
2110 if (!socket) {
2111 ret = -EINVAL;
2112 goto error;
2113 }
2114
2115 health_code_update();
2116
2117 /* Need one fd for the channel. */
2118 ret = lttng_fd_get(LTTNG_FD_APPS, 1);
2119 if (ret < 0) {
2120 ERR("Exhausted number of available FD upon create channel");
2121 goto error;
2122 }
2123
2124 /*
2125 * Ask consumer to create channel. The consumer will return the number of
2126 * stream we have to expect.
2127 */
2128 ret = ust_consumer_ask_channel(ua_sess, ua_chan, usess->consumer, socket,
2129 registry);
2130 if (ret < 0) {
2131 goto error_ask;
2132 }
2133
2134 /*
2135 * Compute the number of fd needed before receiving them. It must be 2 per
2136 * stream (2 being the default value here).
2137 */
2138 nb_fd = DEFAULT_UST_STREAM_FD_NUM * ua_chan->expected_stream_count;
2139
2140 /* Reserve the amount of file descriptor we need. */
2141 ret = lttng_fd_get(LTTNG_FD_APPS, nb_fd);
2142 if (ret < 0) {
2143 ERR("Exhausted number of available FD upon create channel");
2144 goto error_fd_get_stream;
2145 }
2146
2147 health_code_update();
2148
2149 /*
2150 * Now get the channel from the consumer. This call wil populate the stream
2151 * list of that channel and set the ust objects.
2152 */
d9078d0c
DG
2153 if (usess->consumer->enabled) {
2154 ret = ust_consumer_get_channel(socket, ua_chan);
2155 if (ret < 0) {
2156 goto error_destroy;
2157 }
7972aab2
DG
2158 }
2159
2160 rcu_read_unlock();
2161 return 0;
2162
2163error_destroy:
2164 lttng_fd_put(LTTNG_FD_APPS, nb_fd);
2165error_fd_get_stream:
2166 /*
2167 * Initiate a destroy channel on the consumer since we had an error
2168 * handling it on our side. The return value is of no importance since we
2169 * already have a ret value set by the previous error that we need to
2170 * return.
2171 */
2172 (void) ust_consumer_destroy_channel(socket, ua_chan);
2173error_ask:
2174 lttng_fd_put(LTTNG_FD_APPS, 1);
2175error:
2176 health_code_update();
2177 rcu_read_unlock();
2178 return ret;
2179}
2180
2181/*
2182 * Duplicate the ust data object of the ust app stream and save it in the
2183 * buffer registry stream.
2184 *
2185 * Return 0 on success or else a negative value.
2186 */
2187static int duplicate_stream_object(struct buffer_reg_stream *reg_stream,
2188 struct ust_app_stream *stream)
2189{
2190 int ret;
2191
2192 assert(reg_stream);
2193 assert(stream);
2194
2195 /* Reserve the amount of file descriptor we need. */
2196 ret = lttng_fd_get(LTTNG_FD_APPS, 2);
2197 if (ret < 0) {
2198 ERR("Exhausted number of available FD upon duplicate stream");
2199 goto error;
2200 }
2201
2202 /* Duplicate object for stream once the original is in the registry. */
2203 ret = ustctl_duplicate_ust_object_data(&stream->obj,
2204 reg_stream->obj.ust);
2205 if (ret < 0) {
2206 ERR("Duplicate stream obj from %p to %p failed with ret %d",
2207 reg_stream->obj.ust, stream->obj, ret);
2208 lttng_fd_put(LTTNG_FD_APPS, 2);
2209 goto error;
2210 }
2211 stream->handle = stream->obj->handle;
2212
2213error:
2214 return ret;
2215}
2216
2217/*
2218 * Duplicate the ust data object of the ust app. channel and save it in the
2219 * buffer registry channel.
2220 *
2221 * Return 0 on success or else a negative value.
2222 */
2223static int duplicate_channel_object(struct buffer_reg_channel *reg_chan,
2224 struct ust_app_channel *ua_chan)
2225{
2226 int ret;
2227
2228 assert(reg_chan);
2229 assert(ua_chan);
2230
2231 /* Need two fds for the channel. */
2232 ret = lttng_fd_get(LTTNG_FD_APPS, 1);
2233 if (ret < 0) {
2234 ERR("Exhausted number of available FD upon duplicate channel");
2235 goto error_fd_get;
2236 }
2237
2238 /* Duplicate object for stream once the original is in the registry. */
2239 ret = ustctl_duplicate_ust_object_data(&ua_chan->obj, reg_chan->obj.ust);
2240 if (ret < 0) {
2241 ERR("Duplicate channel obj from %p to %p failed with ret: %d",
2242 reg_chan->obj.ust, ua_chan->obj, ret);
2243 goto error;
2244 }
2245 ua_chan->handle = ua_chan->obj->handle;
2246
2247 return 0;
2248
2249error:
2250 lttng_fd_put(LTTNG_FD_APPS, 1);
2251error_fd_get:
2252 return ret;
2253}
2254
2255/*
2256 * For a given channel buffer registry, setup all streams of the given ust
2257 * application channel.
2258 *
2259 * Return 0 on success or else a negative value.
2260 */
2261static int setup_buffer_reg_streams(struct buffer_reg_channel *reg_chan,
2262 struct ust_app_channel *ua_chan)
2263{
2264 int ret = 0;
2265 struct ust_app_stream *stream, *stmp;
2266
2267 assert(reg_chan);
2268 assert(ua_chan);
2269
2270 DBG2("UST app setup buffer registry stream");
2271
2272 /* Send all streams to application. */
2273 cds_list_for_each_entry_safe(stream, stmp, &ua_chan->streams.head, list) {
2274 struct buffer_reg_stream *reg_stream;
2275
2276 ret = buffer_reg_stream_create(&reg_stream);
2277 if (ret < 0) {
2278 goto error;
2279 }
2280
2281 /*
2282 * Keep original pointer and nullify it in the stream so the delete
2283 * stream call does not release the object.
2284 */
2285 reg_stream->obj.ust = stream->obj;
2286 stream->obj = NULL;
2287 buffer_reg_stream_add(reg_stream, reg_chan);
421cb601 2288
7972aab2
DG
2289 /* We don't need the streams anymore. */
2290 cds_list_del(&stream->list);
2291 delete_ust_app_stream(-1, stream);
2292 }
421cb601 2293
7972aab2
DG
2294error:
2295 return ret;
2296}
2297
2298/*
2299 * Create a buffer registry channel for the given session registry and
2300 * application channel object. If regp pointer is valid, it's set with the
2301 * created object. Important, the created object is NOT added to the session
2302 * registry hash table.
2303 *
2304 * Return 0 on success else a negative value.
2305 */
2306static int create_buffer_reg_channel(struct buffer_reg_session *reg_sess,
2307 struct ust_app_channel *ua_chan, struct buffer_reg_channel **regp)
2308{
2309 int ret;
2310 struct buffer_reg_channel *reg_chan = NULL;
2311
2312 assert(reg_sess);
2313 assert(ua_chan);
2314
2315 DBG2("UST app creating buffer registry channel for %s", ua_chan->name);
2316
2317 /* Create buffer registry channel. */
2318 ret = buffer_reg_channel_create(ua_chan->tracing_channel_id, &reg_chan);
2319 if (ret < 0) {
2320 goto error_create;
421cb601 2321 }
7972aab2
DG
2322 assert(reg_chan);
2323 reg_chan->consumer_key = ua_chan->key;
8c924c7b 2324 reg_chan->subbuf_size = ua_chan->attr.subbuf_size;
421cb601 2325
7972aab2
DG
2326 /* Create and add a channel registry to session. */
2327 ret = ust_registry_channel_add(reg_sess->reg.ust,
2328 ua_chan->tracing_channel_id);
2329 if (ret < 0) {
2330 goto error;
d88aee68 2331 }
7972aab2 2332 buffer_reg_channel_add(reg_sess, reg_chan);
d88aee68 2333
7972aab2
DG
2334 if (regp) {
2335 *regp = reg_chan;
3d8ca23b 2336 }
d88aee68 2337
7972aab2 2338 return 0;
3d8ca23b
DG
2339
2340error:
7972aab2
DG
2341 /* Safe because the registry channel object was not added to any HT. */
2342 buffer_reg_channel_destroy(reg_chan, LTTNG_DOMAIN_UST);
2343error_create:
3d8ca23b 2344 return ret;
421cb601
DG
2345}
2346
55cc08a6 2347/*
7972aab2
DG
2348 * Setup buffer registry channel for the given session registry and application
2349 * channel object. If regp pointer is valid, it's set with the created object.
d0b96690 2350 *
7972aab2 2351 * Return 0 on success else a negative value.
55cc08a6 2352 */
7972aab2
DG
2353static int setup_buffer_reg_channel(struct buffer_reg_session *reg_sess,
2354 struct ust_app_channel *ua_chan, struct buffer_reg_channel *reg_chan)
55cc08a6 2355{
7972aab2 2356 int ret;
55cc08a6 2357
7972aab2
DG
2358 assert(reg_sess);
2359 assert(reg_chan);
2360 assert(ua_chan);
2361 assert(ua_chan->obj);
55cc08a6 2362
7972aab2 2363 DBG2("UST app setup buffer registry channel for %s", ua_chan->name);
55cc08a6 2364
7972aab2
DG
2365 /* Setup all streams for the registry. */
2366 ret = setup_buffer_reg_streams(reg_chan, ua_chan);
2367 if (ret < 0) {
55cc08a6
DG
2368 goto error;
2369 }
2370
7972aab2
DG
2371 reg_chan->obj.ust = ua_chan->obj;
2372 ua_chan->obj = NULL;
55cc08a6 2373
7972aab2 2374 return 0;
55cc08a6
DG
2375
2376error:
7972aab2
DG
2377 buffer_reg_channel_remove(reg_sess, reg_chan);
2378 buffer_reg_channel_destroy(reg_chan, LTTNG_DOMAIN_UST);
55cc08a6
DG
2379 return ret;
2380}
2381
edb67388 2382/*
7972aab2 2383 * Send buffer registry channel to the application.
d0b96690 2384 *
7972aab2 2385 * Return 0 on success else a negative value.
edb67388 2386 */
7972aab2
DG
2387static int send_channel_uid_to_ust(struct buffer_reg_channel *reg_chan,
2388 struct ust_app *app, struct ust_app_session *ua_sess,
2389 struct ust_app_channel *ua_chan)
edb67388
DG
2390{
2391 int ret;
7972aab2 2392 struct buffer_reg_stream *reg_stream;
edb67388 2393
7972aab2
DG
2394 assert(reg_chan);
2395 assert(app);
2396 assert(ua_sess);
2397 assert(ua_chan);
2398
2399 DBG("UST app sending buffer registry channel to ust sock %d", app->sock);
2400
2401 ret = duplicate_channel_object(reg_chan, ua_chan);
edb67388
DG
2402 if (ret < 0) {
2403 goto error;
2404 }
2405
7972aab2
DG
2406 /* Send channel to the application. */
2407 ret = ust_consumer_send_channel_to_ust(app, ua_sess, ua_chan);
2408 if (ret < 0) {
2409 goto error;
2410 }
2411
2412 health_code_update();
2413
2414 /* Send all streams to application. */
2415 pthread_mutex_lock(&reg_chan->stream_list_lock);
2416 cds_list_for_each_entry(reg_stream, &reg_chan->streams, lnode) {
2417 struct ust_app_stream stream;
2418
2419 ret = duplicate_stream_object(reg_stream, &stream);
2420 if (ret < 0) {
2421 goto error_stream_unlock;
2422 }
2423
2424 ret = ust_consumer_send_stream_to_ust(app, ua_chan, &stream);
2425 if (ret < 0) {
8c067051 2426 (void) release_ust_app_stream(-1, &stream);
7972aab2
DG
2427 goto error_stream_unlock;
2428 }
edb67388 2429
7972aab2
DG
2430 /*
2431 * The return value is not important here. This function will output an
2432 * error if needed.
2433 */
2434 (void) release_ust_app_stream(-1, &stream);
2435 }
2436 ua_chan->is_sent = 1;
2437
2438error_stream_unlock:
2439 pthread_mutex_unlock(&reg_chan->stream_list_lock);
edb67388
DG
2440error:
2441 return ret;
2442}
2443
9730260e 2444/*
7972aab2
DG
2445 * Create and send to the application the created buffers with per UID buffers.
2446 *
2447 * Return 0 on success else a negative value.
9730260e 2448 */
7972aab2
DG
2449static int create_channel_per_uid(struct ust_app *app,
2450 struct ltt_ust_session *usess, struct ust_app_session *ua_sess,
2451 struct ust_app_channel *ua_chan)
9730260e
DG
2452{
2453 int ret;
7972aab2
DG
2454 struct buffer_reg_uid *reg_uid;
2455 struct buffer_reg_channel *reg_chan;
9730260e 2456
7972aab2
DG
2457 assert(app);
2458 assert(usess);
2459 assert(ua_sess);
2460 assert(ua_chan);
2461
2462 DBG("UST app creating channel %s with per UID buffers", ua_chan->name);
2463
2464 reg_uid = buffer_reg_uid_find(usess->id, app->bits_per_long, app->uid);
2465 /*
2466 * The session creation handles the creation of this global registry
2467 * object. If none can be find, there is a code flow problem or a
2468 * teardown race.
2469 */
2470 assert(reg_uid);
2471
2472 reg_chan = buffer_reg_channel_find(ua_chan->tracing_channel_id,
2473 reg_uid);
2474 if (!reg_chan) {
2475 /* Create the buffer registry channel object. */
2476 ret = create_buffer_reg_channel(reg_uid->registry, ua_chan, &reg_chan);
2477 if (ret < 0) {
f14256d6
MD
2478 ERR("Error creating the UST channel \"%s\" registry instance",
2479 ua_chan->name);
7972aab2
DG
2480 goto error;
2481 }
2482 assert(reg_chan);
2483
2484 /*
2485 * Create the buffers on the consumer side. This call populates the
2486 * ust app channel object with all streams and data object.
2487 */
2488 ret = do_consumer_create_channel(usess, ua_sess, ua_chan,
2489 app->bits_per_long, reg_uid->registry->reg.ust);
2490 if (ret < 0) {
f14256d6
MD
2491 ERR("Error creating UST channel \"%s\" on the consumer daemon",
2492 ua_chan->name);
2493
07d2ae95
DG
2494 /*
2495 * Let's remove the previously created buffer registry channel so
2496 * it's not visible anymore in the session registry.
2497 */
2498 ust_registry_channel_del_free(reg_uid->registry->reg.ust,
2499 ua_chan->tracing_channel_id);
2500 buffer_reg_channel_remove(reg_uid->registry, reg_chan);
2501 buffer_reg_channel_destroy(reg_chan, LTTNG_DOMAIN_UST);
7972aab2
DG
2502 goto error;
2503 }
2504
2505 /*
2506 * Setup the streams and add it to the session registry.
2507 */
2508 ret = setup_buffer_reg_channel(reg_uid->registry, ua_chan, reg_chan);
2509 if (ret < 0) {
f14256d6
MD
2510 ERR("Error setting up UST channel \"%s\"",
2511 ua_chan->name);
7972aab2
DG
2512 goto error;
2513 }
2514
2515 }
2516
2517 /* Send buffers to the application. */
2518 ret = send_channel_uid_to_ust(reg_chan, app, ua_sess, ua_chan);
9730260e 2519 if (ret < 0) {
f14256d6
MD
2520 /*
2521 * Don't report error to the console, since it may be
2522 * caused by application concurrently exiting.
2523 */
9730260e
DG
2524 goto error;
2525 }
2526
9730260e
DG
2527error:
2528 return ret;
2529}
2530
78f0bacd 2531/*
7972aab2
DG
2532 * Create and send to the application the created buffers with per PID buffers.
2533 *
2534 * Return 0 on success else a negative value.
78f0bacd 2535 */
7972aab2
DG
2536static int create_channel_per_pid(struct ust_app *app,
2537 struct ltt_ust_session *usess, struct ust_app_session *ua_sess,
2538 struct ust_app_channel *ua_chan)
78f0bacd 2539{
8535a6d9 2540 int ret;
7972aab2 2541 struct ust_registry_session *registry;
78f0bacd 2542
7972aab2
DG
2543 assert(app);
2544 assert(usess);
2545 assert(ua_sess);
2546 assert(ua_chan);
2547
2548 DBG("UST app creating channel %s with per PID buffers", ua_chan->name);
2549
2550 rcu_read_lock();
2551
2552 registry = get_session_registry(ua_sess);
2553 assert(registry);
2554
2555 /* Create and add a new channel registry to session. */
2556 ret = ust_registry_channel_add(registry, ua_chan->key);
78f0bacd 2557 if (ret < 0) {
f14256d6
MD
2558 ERR("Error creating the UST channel \"%s\" registry instance",
2559 ua_chan->name);
78f0bacd
DG
2560 goto error;
2561 }
2562
7972aab2
DG
2563 /* Create and get channel on the consumer side. */
2564 ret = do_consumer_create_channel(usess, ua_sess, ua_chan,
2565 app->bits_per_long, registry);
2566 if (ret < 0) {
f14256d6
MD
2567 ERR("Error creating UST channel \"%s\" on the consumer daemon",
2568 ua_chan->name);
7972aab2
DG
2569 goto error;
2570 }
2571
2572 ret = send_channel_pid_to_ust(app, ua_sess, ua_chan);
2573 if (ret < 0) {
f14256d6
MD
2574 /*
2575 * Don't report error to the console, since it may be
2576 * caused by application concurrently exiting.
2577 */
7972aab2
DG
2578 goto error;
2579 }
8535a6d9 2580
78f0bacd 2581error:
7972aab2 2582 rcu_read_unlock();
78f0bacd
DG
2583 return ret;
2584}
2585
2586/*
7972aab2
DG
2587 * From an already allocated ust app channel, create the channel buffers if
2588 * need and send it to the application. This MUST be called with a RCU read
2589 * side lock acquired.
2590 *
2591 * Return 0 on success or else a negative value.
78f0bacd 2592 */
7972aab2
DG
2593static int do_create_channel(struct ust_app *app,
2594 struct ltt_ust_session *usess, struct ust_app_session *ua_sess,
2595 struct ust_app_channel *ua_chan)
78f0bacd 2596{
7972aab2 2597 int ret;
78f0bacd 2598
7972aab2
DG
2599 assert(app);
2600 assert(usess);
2601 assert(ua_sess);
2602 assert(ua_chan);
2603
2604 /* Handle buffer type before sending the channel to the application. */
2605 switch (usess->buffer_type) {
2606 case LTTNG_BUFFER_PER_UID:
2607 {
2608 ret = create_channel_per_uid(app, usess, ua_sess, ua_chan);
2609 if (ret < 0) {
2610 goto error;
2611 }
2612 break;
2613 }
2614 case LTTNG_BUFFER_PER_PID:
2615 {
2616 ret = create_channel_per_pid(app, usess, ua_sess, ua_chan);
2617 if (ret < 0) {
2618 goto error;
2619 }
2620 break;
2621 }
2622 default:
2623 assert(0);
2624 ret = -EINVAL;
78f0bacd
DG
2625 goto error;
2626 }
2627
7972aab2
DG
2628 /* Initialize ust objd object using the received handle and add it. */
2629 lttng_ht_node_init_ulong(&ua_chan->ust_objd_node, ua_chan->handle);
2630 lttng_ht_add_unique_ulong(app->ust_objd, &ua_chan->ust_objd_node);
78f0bacd 2631
7972aab2
DG
2632 /* If channel is not enabled, disable it on the tracer */
2633 if (!ua_chan->enabled) {
2634 ret = disable_ust_channel(app, ua_sess, ua_chan);
2635 if (ret < 0) {
2636 goto error;
2637 }
78f0bacd
DG
2638 }
2639
2640error:
2641 return ret;
2642}
2643
284d8f55 2644/*
4d710ac2
DG
2645 * Create UST app channel and create it on the tracer. Set ua_chanp of the
2646 * newly created channel if not NULL.
d0b96690 2647 *
36b588ed 2648 * Called with UST app session lock and RCU read-side lock held.
7972aab2
DG
2649 *
2650 * Return 0 on success or else a negative value.
284d8f55 2651 */
4d710ac2
DG
2652static int create_ust_app_channel(struct ust_app_session *ua_sess,
2653 struct ltt_ust_channel *uchan, struct ust_app *app,
7972aab2 2654 enum lttng_ust_chan_type type, struct ltt_ust_session *usess,
4d710ac2 2655 struct ust_app_channel **ua_chanp)
5b4a0ec0
DG
2656{
2657 int ret = 0;
bec39940
DG
2658 struct lttng_ht_iter iter;
2659 struct lttng_ht_node_str *ua_chan_node;
5b4a0ec0
DG
2660 struct ust_app_channel *ua_chan;
2661
2662 /* Lookup channel in the ust app session */
bec39940
DG
2663 lttng_ht_lookup(ua_sess->channels, (void *)uchan->name, &iter);
2664 ua_chan_node = lttng_ht_iter_get_node_str(&iter);
fc34caaa 2665 if (ua_chan_node != NULL) {
5b4a0ec0 2666 ua_chan = caa_container_of(ua_chan_node, struct ust_app_channel, node);
fc34caaa 2667 goto end;
5b4a0ec0
DG
2668 }
2669
d0b96690 2670 ua_chan = alloc_ust_app_channel(uchan->name, ua_sess, &uchan->attr);
fc34caaa
DG
2671 if (ua_chan == NULL) {
2672 /* Only malloc can fail here */
4d710ac2 2673 ret = -ENOMEM;
094d1690 2674 goto error_alloc;
fc34caaa
DG
2675 }
2676 shadow_copy_channel(ua_chan, uchan);
2677
ffe60014
DG
2678 /* Set channel type. */
2679 ua_chan->attr.type = type;
2680
7972aab2 2681 ret = do_create_channel(app, usess, ua_sess, ua_chan);
5b4a0ec0
DG
2682 if (ret < 0) {
2683 goto error;
2684 }
2685
fc34caaa 2686 DBG2("UST app create channel %s for PID %d completed", ua_chan->name,
852d0037 2687 app->pid);
fc34caaa 2688
d0b96690
DG
2689 /* Only add the channel if successful on the tracer side. */
2690 lttng_ht_add_unique_str(ua_sess->channels, &ua_chan->node);
2691
fc34caaa 2692end:
4d710ac2
DG
2693 if (ua_chanp) {
2694 *ua_chanp = ua_chan;
2695 }
2696
2697 /* Everything went well. */
2698 return 0;
5b4a0ec0
DG
2699
2700error:
d0b96690 2701 delete_ust_app_channel(ua_chan->is_sent ? app->sock : -1, ua_chan, app);
094d1690 2702error_alloc:
4d710ac2 2703 return ret;
5b4a0ec0
DG
2704}
2705
2706/*
2707 * Create UST app event and create it on the tracer side.
d0b96690
DG
2708 *
2709 * Called with ust app session mutex held.
5b4a0ec0 2710 */
edb67388
DG
2711static
2712int create_ust_app_event(struct ust_app_session *ua_sess,
2713 struct ust_app_channel *ua_chan, struct ltt_ust_event *uevent,
2714 struct ust_app *app)
284d8f55 2715{
edb67388 2716 int ret = 0;
5b4a0ec0 2717 struct ust_app_event *ua_event;
284d8f55 2718
5b4a0ec0 2719 /* Get event node */
18eace3b 2720 ua_event = find_ust_app_event(ua_chan->events, uevent->attr.name,
39c5a3a7 2721 uevent->filter, uevent->attr.loglevel, uevent->exclusion);
18eace3b 2722 if (ua_event != NULL) {
fc34caaa 2723 ret = -EEXIST;
edb67388
DG
2724 goto end;
2725 }
5b4a0ec0 2726
edb67388
DG
2727 /* Does not exist so create one */
2728 ua_event = alloc_ust_app_event(uevent->attr.name, &uevent->attr);
2729 if (ua_event == NULL) {
2730 /* Only malloc can failed so something is really wrong */
2731 ret = -ENOMEM;
fc34caaa 2732 goto end;
5b4a0ec0 2733 }
edb67388 2734 shadow_copy_event(ua_event, uevent);
5b4a0ec0 2735
edb67388 2736 /* Create it on the tracer side */
5b4a0ec0 2737 ret = create_ust_event(app, ua_sess, ua_chan, ua_event);
284d8f55 2738 if (ret < 0) {
fc34caaa 2739 /* Not found previously means that it does not exist on the tracer */
76f66f63 2740 assert(ret != -LTTNG_UST_ERR_EXIST);
284d8f55
DG
2741 goto error;
2742 }
2743
d0b96690 2744 add_unique_ust_app_event(ua_chan, ua_event);
284d8f55 2745
fc34caaa 2746 DBG2("UST app create event %s for PID %d completed", ua_event->name,
852d0037 2747 app->pid);
7f79d3a1 2748
edb67388 2749end:
fc34caaa
DG
2750 return ret;
2751
5b4a0ec0 2752error:
fc34caaa
DG
2753 /* Valid. Calling here is already in a read side lock */
2754 delete_ust_app_event(-1, ua_event);
edb67388 2755 return ret;
5b4a0ec0
DG
2756}
2757
2758/*
2759 * Create UST metadata and open it on the tracer side.
d0b96690 2760 *
7972aab2 2761 * Called with UST app session lock held and RCU read side lock.
5b4a0ec0
DG
2762 */
2763static int create_ust_app_metadata(struct ust_app_session *ua_sess,
ad7a9107 2764 struct ust_app *app, struct consumer_output *consumer)
5b4a0ec0
DG
2765{
2766 int ret = 0;
ffe60014 2767 struct ust_app_channel *metadata;
d88aee68 2768 struct consumer_socket *socket;
7972aab2 2769 struct ust_registry_session *registry;
5b4a0ec0 2770
ffe60014
DG
2771 assert(ua_sess);
2772 assert(app);
d88aee68 2773 assert(consumer);
5b4a0ec0 2774
7972aab2
DG
2775 registry = get_session_registry(ua_sess);
2776 assert(registry);
2777
1b532a60
DG
2778 /* Metadata already exists for this registry or it was closed previously */
2779 if (registry->metadata_key || registry->metadata_closed) {
7972aab2
DG
2780 ret = 0;
2781 goto error;
5b4a0ec0
DG
2782 }
2783
ffe60014 2784 /* Allocate UST metadata */
d0b96690 2785 metadata = alloc_ust_app_channel(DEFAULT_METADATA_NAME, ua_sess, NULL);
ffe60014
DG
2786 if (!metadata) {
2787 /* malloc() failed */
2788 ret = -ENOMEM;
2789 goto error;
2790 }
5b4a0ec0 2791
ad7a9107 2792 memcpy(&metadata->attr, &ua_sess->metadata_attr, sizeof(metadata->attr));
5b4a0ec0 2793
7972aab2
DG
2794 /* Need one fd for the channel. */
2795 ret = lttng_fd_get(LTTNG_FD_APPS, 1);
2796 if (ret < 0) {
2797 ERR("Exhausted number of available FD upon create metadata");
2798 goto error;
2799 }
2800
4dc3dfc5
DG
2801 /* Get the right consumer socket for the application. */
2802 socket = consumer_find_socket_by_bitness(app->bits_per_long, consumer);
2803 if (!socket) {
2804 ret = -EINVAL;
2805 goto error_consumer;
2806 }
2807
331744e3
JD
2808 /*
2809 * Keep metadata key so we can identify it on the consumer side. Assign it
2810 * to the registry *before* we ask the consumer so we avoid the race of the
2811 * consumer requesting the metadata and the ask_channel call on our side
2812 * did not returned yet.
2813 */
2814 registry->metadata_key = metadata->key;
2815
d88aee68
DG
2816 /*
2817 * Ask the metadata channel creation to the consumer. The metadata object
2818 * will be created by the consumer and kept their. However, the stream is
2819 * never added or monitored until we do a first push metadata to the
2820 * consumer.
2821 */
7972aab2
DG
2822 ret = ust_consumer_ask_channel(ua_sess, metadata, consumer, socket,
2823 registry);
d88aee68 2824 if (ret < 0) {
f2a444f1
DG
2825 /* Nullify the metadata key so we don't try to close it later on. */
2826 registry->metadata_key = 0;
d88aee68
DG
2827 goto error_consumer;
2828 }
2829
2830 /*
2831 * The setup command will make the metadata stream be sent to the relayd,
2832 * if applicable, and the thread managing the metadatas. This is important
2833 * because after this point, if an error occurs, the only way the stream
2834 * can be deleted is to be monitored in the consumer.
2835 */
7972aab2 2836 ret = consumer_setup_metadata(socket, metadata->key);
ffe60014 2837 if (ret < 0) {
f2a444f1
DG
2838 /* Nullify the metadata key so we don't try to close it later on. */
2839 registry->metadata_key = 0;
d88aee68 2840 goto error_consumer;
5b4a0ec0
DG
2841 }
2842
7972aab2
DG
2843 DBG2("UST metadata with key %" PRIu64 " created for app pid %d",
2844 metadata->key, app->pid);
5b4a0ec0 2845
d88aee68 2846error_consumer:
b80f0b6c 2847 lttng_fd_put(LTTNG_FD_APPS, 1);
d88aee68 2848 delete_ust_app_channel(-1, metadata, app);
5b4a0ec0 2849error:
ffe60014 2850 return ret;
5b4a0ec0
DG
2851}
2852
5b4a0ec0 2853/*
d88aee68
DG
2854 * Return ust app pointer or NULL if not found. RCU read side lock MUST be
2855 * acquired before calling this function.
5b4a0ec0
DG
2856 */
2857struct ust_app *ust_app_find_by_pid(pid_t pid)
2858{
d88aee68 2859 struct ust_app *app = NULL;
bec39940
DG
2860 struct lttng_ht_node_ulong *node;
2861 struct lttng_ht_iter iter;
5b4a0ec0 2862
bec39940
DG
2863 lttng_ht_lookup(ust_app_ht, (void *)((unsigned long) pid), &iter);
2864 node = lttng_ht_iter_get_node_ulong(&iter);
5b4a0ec0
DG
2865 if (node == NULL) {
2866 DBG2("UST app no found with pid %d", pid);
2867 goto error;
2868 }
5b4a0ec0
DG
2869
2870 DBG2("Found UST app by pid %d", pid);
2871
d88aee68 2872 app = caa_container_of(node, struct ust_app, pid_n);
5b4a0ec0
DG
2873
2874error:
d88aee68 2875 return app;
5b4a0ec0
DG
2876}
2877
d88aee68
DG
2878/*
2879 * Allocate and init an UST app object using the registration information and
2880 * the command socket. This is called when the command socket connects to the
2881 * session daemon.
2882 *
2883 * The object is returned on success or else NULL.
2884 */
d0b96690 2885struct ust_app *ust_app_create(struct ust_register_msg *msg, int sock)
5b4a0ec0 2886{
d0b96690
DG
2887 struct ust_app *lta = NULL;
2888
2889 assert(msg);
2890 assert(sock >= 0);
2891
2892 DBG3("UST app creating application for socket %d", sock);
5b4a0ec0 2893
173af62f
DG
2894 if ((msg->bits_per_long == 64 &&
2895 (uatomic_read(&ust_consumerd64_fd) == -EINVAL))
2896 || (msg->bits_per_long == 32 &&
2897 (uatomic_read(&ust_consumerd32_fd) == -EINVAL))) {
f943b0fb 2898 ERR("Registration failed: application \"%s\" (pid: %d) has "
d0b96690
DG
2899 "%d-bit long, but no consumerd for this size is available.\n",
2900 msg->name, msg->pid, msg->bits_per_long);
2901 goto error;
3f2c5fcc 2902 }
d0b96690 2903
5b4a0ec0
DG
2904 lta = zmalloc(sizeof(struct ust_app));
2905 if (lta == NULL) {
2906 PERROR("malloc");
d0b96690 2907 goto error;
5b4a0ec0
DG
2908 }
2909
2910 lta->ppid = msg->ppid;
2911 lta->uid = msg->uid;
2912 lta->gid = msg->gid;
d0b96690 2913
7753dea8 2914 lta->bits_per_long = msg->bits_per_long;
d0b96690
DG
2915 lta->uint8_t_alignment = msg->uint8_t_alignment;
2916 lta->uint16_t_alignment = msg->uint16_t_alignment;
2917 lta->uint32_t_alignment = msg->uint32_t_alignment;
2918 lta->uint64_t_alignment = msg->uint64_t_alignment;
2919 lta->long_alignment = msg->long_alignment;
2920 lta->byte_order = msg->byte_order;
2921
5b4a0ec0
DG
2922 lta->v_major = msg->major;
2923 lta->v_minor = msg->minor;
d9bf3ca4 2924 lta->sessions = lttng_ht_new(0, LTTNG_HT_TYPE_U64);
d0b96690
DG
2925 lta->ust_objd = lttng_ht_new(0, LTTNG_HT_TYPE_ULONG);
2926 lta->notify_sock = -1;
d88aee68
DG
2927
2928 /* Copy name and make sure it's NULL terminated. */
2929 strncpy(lta->name, msg->name, sizeof(lta->name));
2930 lta->name[UST_APP_PROCNAME_LEN] = '\0';
2931
2932 /*
2933 * Before this can be called, when receiving the registration information,
2934 * the application compatibility is checked. So, at this point, the
2935 * application can work with this session daemon.
2936 */
d0b96690 2937 lta->compatible = 1;
5b4a0ec0 2938
852d0037 2939 lta->pid = msg->pid;
d0b96690 2940 lttng_ht_node_init_ulong(&lta->pid_n, (unsigned long) lta->pid);
852d0037 2941 lta->sock = sock;
d0b96690 2942 lttng_ht_node_init_ulong(&lta->sock_n, (unsigned long) lta->sock);
5b4a0ec0 2943
d42f20df
DG
2944 CDS_INIT_LIST_HEAD(&lta->teardown_head);
2945
d0b96690
DG
2946error:
2947 return lta;
2948}
2949
d88aee68
DG
2950/*
2951 * For a given application object, add it to every hash table.
2952 */
d0b96690
DG
2953void ust_app_add(struct ust_app *app)
2954{
2955 assert(app);
2956 assert(app->notify_sock >= 0);
2957
5b4a0ec0 2958 rcu_read_lock();
852d0037
DG
2959
2960 /*
2961 * On a re-registration, we want to kick out the previous registration of
2962 * that pid
2963 */
d0b96690 2964 lttng_ht_add_replace_ulong(ust_app_ht, &app->pid_n);
852d0037
DG
2965
2966 /*
2967 * The socket _should_ be unique until _we_ call close. So, a add_unique
2968 * for the ust_app_ht_by_sock is used which asserts fail if the entry was
2969 * already in the table.
2970 */
d0b96690 2971 lttng_ht_add_unique_ulong(ust_app_ht_by_sock, &app->sock_n);
852d0037 2972
d0b96690
DG
2973 /* Add application to the notify socket hash table. */
2974 lttng_ht_node_init_ulong(&app->notify_sock_n, app->notify_sock);
2975 lttng_ht_add_unique_ulong(ust_app_ht_by_notify_sock, &app->notify_sock_n);
5b4a0ec0 2976
d0b96690 2977 DBG("App registered with pid:%d ppid:%d uid:%d gid:%d sock:%d name:%s "
d88aee68
DG
2978 "notify_sock:%d (version %d.%d)", app->pid, app->ppid, app->uid,
2979 app->gid, app->sock, app->name, app->notify_sock, app->v_major,
2980 app->v_minor);
5b4a0ec0 2981
d0b96690
DG
2982 rcu_read_unlock();
2983}
2984
d88aee68
DG
2985/*
2986 * Set the application version into the object.
2987 *
2988 * Return 0 on success else a negative value either an errno code or a
2989 * LTTng-UST error code.
2990 */
d0b96690
DG
2991int ust_app_version(struct ust_app *app)
2992{
d88aee68
DG
2993 int ret;
2994
d0b96690 2995 assert(app);
d88aee68
DG
2996
2997 ret = ustctl_tracer_version(app->sock, &app->version);
2998 if (ret < 0) {
2999 if (ret != -LTTNG_UST_ERR_EXITING && ret != -EPIPE) {
5368d366 3000 ERR("UST app %d version failed with ret %d", app->sock, ret);
d88aee68 3001 } else {
5368d366 3002 DBG3("UST app %d version failed. Application is dead", app->sock);
d88aee68
DG
3003 }
3004 }
3005
3006 return ret;
5b4a0ec0
DG
3007}
3008
3009/*
3010 * Unregister app by removing it from the global traceable app list and freeing
3011 * the data struct.
3012 *
3013 * The socket is already closed at this point so no close to sock.
3014 */
3015void ust_app_unregister(int sock)
3016{
3017 struct ust_app *lta;
bec39940
DG
3018 struct lttng_ht_node_ulong *node;
3019 struct lttng_ht_iter iter;
d42f20df 3020 struct ust_app_session *ua_sess;
525b0740 3021 int ret;
5b4a0ec0
DG
3022
3023 rcu_read_lock();
886459c6 3024
5b4a0ec0 3025 /* Get the node reference for a call_rcu */
852d0037 3026 lttng_ht_lookup(ust_app_ht_by_sock, (void *)((unsigned long) sock), &iter);
bec39940 3027 node = lttng_ht_iter_get_node_ulong(&iter);
d0b96690 3028 assert(node);
284d8f55 3029
852d0037 3030 lta = caa_container_of(node, struct ust_app, sock_n);
852d0037
DG
3031 DBG("PID %d unregistering with sock %d", lta->pid, sock);
3032
886459c6 3033 /* Remove application from PID hash table */
852d0037
DG
3034 ret = lttng_ht_del(ust_app_ht_by_sock, &iter);
3035 assert(!ret);
3036
d88aee68
DG
3037 /*
3038 * Remove application from notify hash table. The thread handling the
3039 * notify socket could have deleted the node so ignore on error because
3040 * either way it's valid. The close of that socket is handled by the other
3041 * thread.
3042 */
d0b96690 3043 iter.iter.node = &lta->notify_sock_n.node;
d88aee68 3044 (void) lttng_ht_del(ust_app_ht_by_notify_sock, &iter);
852d0037 3045
5b98a774
DG
3046 /*
3047 * Ignore return value since the node might have been removed before by an
3048 * add replace during app registration because the PID can be reassigned by
3049 * the OS.
3050 */
d0b96690 3051 iter.iter.node = &lta->pid_n.node;
bec39940 3052 ret = lttng_ht_del(ust_app_ht, &iter);
5b98a774
DG
3053 if (ret) {
3054 DBG3("Unregister app by PID %d failed. This can happen on pid reuse",
3055 lta->pid);
3056 }
852d0037 3057
d42f20df
DG
3058 /* Remove sessions so they are not visible during deletion.*/
3059 cds_lfht_for_each_entry(lta->sessions->ht, &iter.iter, ua_sess,
3060 node.node) {
7972aab2
DG
3061 struct ust_registry_session *registry;
3062
d42f20df
DG
3063 ret = lttng_ht_del(lta->sessions, &iter);
3064 if (ret) {
3065 /* The session was already removed so scheduled for teardown. */
3066 continue;
3067 }
3068
3069 /*
3070 * Add session to list for teardown. This is safe since at this point we
3071 * are the only one using this list.
3072 */
d88aee68
DG
3073 pthread_mutex_lock(&ua_sess->lock);
3074
3075 /*
3076 * Normally, this is done in the delete session process which is
3077 * executed in the call rcu below. However, upon registration we can't
3078 * afford to wait for the grace period before pushing data or else the
3079 * data pending feature can race between the unregistration and stop
3080 * command where the data pending command is sent *before* the grace
3081 * period ended.
3082 *
3083 * The close metadata below nullifies the metadata pointer in the
3084 * session so the delete session will NOT push/close a second time.
3085 */
7972aab2 3086 registry = get_session_registry(ua_sess);
1b532a60 3087 if (registry && !registry->metadata_closed) {
7972aab2
DG
3088 /* Push metadata for application before freeing the application. */
3089 (void) push_metadata(registry, ua_sess->consumer);
3090
3091 /*
3092 * Don't ask to close metadata for global per UID buffers. Close
1b532a60
DG
3093 * metadata only on destroy trace session in this case. Also, the
3094 * previous push metadata could have flag the metadata registry to
3095 * close so don't send a close command if closed.
7972aab2 3096 */
1b532a60
DG
3097 if (ua_sess->buffer_type != LTTNG_BUFFER_PER_UID &&
3098 !registry->metadata_closed) {
7972aab2
DG
3099 /* And ask to close it for this session registry. */
3100 (void) close_metadata(registry, ua_sess->consumer);
3101 }
3102 }
d88aee68 3103
d42f20df 3104 cds_list_add(&ua_sess->teardown_node, &lta->teardown_head);
d88aee68 3105 pthread_mutex_unlock(&ua_sess->lock);
d42f20df
DG
3106 }
3107
852d0037
DG
3108 /* Free memory */
3109 call_rcu(&lta->pid_n.head, delete_ust_app_rcu);
3110
5b4a0ec0
DG
3111 rcu_read_unlock();
3112 return;
284d8f55
DG
3113}
3114
5b4a0ec0
DG
3115/*
3116 * Fill events array with all events name of all registered apps.
3117 */
3118int ust_app_list_events(struct lttng_event **events)
421cb601 3119{
5b4a0ec0
DG
3120 int ret, handle;
3121 size_t nbmem, count = 0;
bec39940 3122 struct lttng_ht_iter iter;
5b4a0ec0 3123 struct ust_app *app;
c617c0c6 3124 struct lttng_event *tmp_event;
421cb601 3125
5b4a0ec0 3126 nbmem = UST_APP_EVENT_LIST_SIZE;
c617c0c6
MD
3127 tmp_event = zmalloc(nbmem * sizeof(struct lttng_event));
3128 if (tmp_event == NULL) {
5b4a0ec0
DG
3129 PERROR("zmalloc ust app events");
3130 ret = -ENOMEM;
421cb601
DG
3131 goto error;
3132 }
3133
5b4a0ec0 3134 rcu_read_lock();
421cb601 3135
852d0037 3136 cds_lfht_for_each_entry(ust_app_ht->ht, &iter.iter, app, pid_n.node) {
90eaa0d2 3137 struct lttng_ust_tracepoint_iter uiter;
ac3bd9c0 3138
840cb59c 3139 health_code_update();
86acf0da 3140
e0c7ec2b
DG
3141 if (!app->compatible) {
3142 /*
3143 * TODO: In time, we should notice the caller of this error by
3144 * telling him that this is a version error.
3145 */
3146 continue;
3147 }
852d0037 3148 handle = ustctl_tracepoint_list(app->sock);
5b4a0ec0 3149 if (handle < 0) {
ffe60014
DG
3150 if (handle != -EPIPE && handle != -LTTNG_UST_ERR_EXITING) {
3151 ERR("UST app list events getting handle failed for app pid %d",
3152 app->pid);
3153 }
5b4a0ec0
DG
3154 continue;
3155 }
421cb601 3156
852d0037 3157 while ((ret = ustctl_tracepoint_list_get(app->sock, handle,
fb54cdbf 3158 &uiter)) != -LTTNG_UST_ERR_NOENT) {
ffe60014
DG
3159 /* Handle ustctl error. */
3160 if (ret < 0) {
a2ba1ab0 3161 if (ret != -LTTNG_UST_ERR_EXITING && ret != -EPIPE) {
ffe60014
DG
3162 ERR("UST app tp list get failed for app %d with ret %d",
3163 app->sock, ret);
3164 } else {
3165 DBG3("UST app tp list get failed. Application is dead");
3757b385
DG
3166 /*
3167 * This is normal behavior, an application can die during the
3168 * creation process. Don't report an error so the execution can
3169 * continue normally. Continue normal execution.
3170 */
3171 break;
ffe60014 3172 }
98f595d4 3173 free(tmp_event);
ffe60014
DG
3174 goto rcu_error;
3175 }
3176
840cb59c 3177 health_code_update();
815564d8 3178 if (count >= nbmem) {
d7b3776f 3179 /* In case the realloc fails, we free the memory */
53efb85a
MD
3180 struct lttng_event *new_tmp_event;
3181 size_t new_nbmem;
3182
3183 new_nbmem = nbmem << 1;
3184 DBG2("Reallocating event list from %zu to %zu entries",
3185 nbmem, new_nbmem);
3186 new_tmp_event = realloc(tmp_event,
3187 new_nbmem * sizeof(struct lttng_event));
3188 if (new_tmp_event == NULL) {
5b4a0ec0 3189 PERROR("realloc ust app events");
c617c0c6 3190 free(tmp_event);
5b4a0ec0
DG
3191 ret = -ENOMEM;
3192 goto rcu_error;
3193 }
53efb85a
MD
3194 /* Zero the new memory */
3195 memset(new_tmp_event + nbmem, 0,
3196 (new_nbmem - nbmem) * sizeof(struct lttng_event));
3197 nbmem = new_nbmem;
3198 tmp_event = new_tmp_event;
5b4a0ec0 3199 }
c617c0c6
MD
3200 memcpy(tmp_event[count].name, uiter.name, LTTNG_UST_SYM_NAME_LEN);
3201 tmp_event[count].loglevel = uiter.loglevel;
3202 tmp_event[count].type = (enum lttng_event_type) LTTNG_UST_TRACEPOINT;
3203 tmp_event[count].pid = app->pid;
3204 tmp_event[count].enabled = -1;
5b4a0ec0 3205 count++;
421cb601 3206 }
421cb601
DG
3207 }
3208
5b4a0ec0 3209 ret = count;
c617c0c6 3210 *events = tmp_event;
421cb601 3211
5b4a0ec0 3212 DBG2("UST app list events done (%zu events)", count);
421cb601 3213
5b4a0ec0
DG
3214rcu_error:
3215 rcu_read_unlock();
421cb601 3216error:
840cb59c 3217 health_code_update();
5b4a0ec0 3218 return ret;
421cb601
DG
3219}
3220
f37d259d
MD
3221/*
3222 * Fill events array with all events name of all registered apps.
3223 */
3224int ust_app_list_event_fields(struct lttng_event_field **fields)
3225{
3226 int ret, handle;
3227 size_t nbmem, count = 0;
3228 struct lttng_ht_iter iter;
3229 struct ust_app *app;
c617c0c6 3230 struct lttng_event_field *tmp_event;
f37d259d
MD
3231
3232 nbmem = UST_APP_EVENT_LIST_SIZE;
c617c0c6
MD
3233 tmp_event = zmalloc(nbmem * sizeof(struct lttng_event_field));
3234 if (tmp_event == NULL) {
f37d259d
MD
3235 PERROR("zmalloc ust app event fields");
3236 ret = -ENOMEM;
3237 goto error;
3238 }
3239
3240 rcu_read_lock();
3241
3242 cds_lfht_for_each_entry(ust_app_ht->ht, &iter.iter, app, pid_n.node) {
3243 struct lttng_ust_field_iter uiter;
3244
840cb59c 3245 health_code_update();
86acf0da 3246
f37d259d
MD
3247 if (!app->compatible) {
3248 /*
3249 * TODO: In time, we should notice the caller of this error by
3250 * telling him that this is a version error.
3251 */
3252 continue;
3253 }
3254 handle = ustctl_tracepoint_field_list(app->sock);
3255 if (handle < 0) {
ffe60014
DG
3256 if (handle != -EPIPE && handle != -LTTNG_UST_ERR_EXITING) {
3257 ERR("UST app list field getting handle failed for app pid %d",
3258 app->pid);
3259 }
f37d259d
MD
3260 continue;
3261 }
3262
3263 while ((ret = ustctl_tracepoint_field_list_get(app->sock, handle,
fb54cdbf 3264 &uiter)) != -LTTNG_UST_ERR_NOENT) {
ffe60014
DG
3265 /* Handle ustctl error. */
3266 if (ret < 0) {
a2ba1ab0 3267 if (ret != -LTTNG_UST_ERR_EXITING && ret != -EPIPE) {
ffe60014
DG
3268 ERR("UST app tp list field failed for app %d with ret %d",
3269 app->sock, ret);
3270 } else {
3271 DBG3("UST app tp list field failed. Application is dead");
3757b385
DG
3272 /*
3273 * This is normal behavior, an application can die during the
3274 * creation process. Don't report an error so the execution can
98f595d4 3275 * continue normally. Reset list and count for next app.
3757b385
DG
3276 */
3277 break;
ffe60014 3278 }
98f595d4 3279 free(tmp_event);
ffe60014
DG
3280 goto rcu_error;
3281 }
3282
840cb59c 3283 health_code_update();
f37d259d 3284 if (count >= nbmem) {
d7b3776f 3285 /* In case the realloc fails, we free the memory */
53efb85a
MD
3286 struct lttng_event_field *new_tmp_event;
3287 size_t new_nbmem;
3288
3289 new_nbmem = nbmem << 1;
3290 DBG2("Reallocating event field list from %zu to %zu entries",
3291 nbmem, new_nbmem);
3292 new_tmp_event = realloc(tmp_event,
3293 new_nbmem * sizeof(struct lttng_event_field));
3294 if (new_tmp_event == NULL) {
f37d259d 3295 PERROR("realloc ust app event fields");
c617c0c6 3296 free(tmp_event);
f37d259d
MD
3297 ret = -ENOMEM;
3298 goto rcu_error;
3299 }
53efb85a
MD
3300 /* Zero the new memory */
3301 memset(new_tmp_event + nbmem, 0,
3302 (new_nbmem - nbmem) * sizeof(struct lttng_event_field));
3303 nbmem = new_nbmem;
3304 tmp_event = new_tmp_event;
f37d259d 3305 }
f37d259d 3306
c617c0c6 3307 memcpy(tmp_event[count].field_name, uiter.field_name, LTTNG_UST_SYM_NAME_LEN);
2e84128e
DG
3308 /* Mapping between these enums matches 1 to 1. */
3309 tmp_event[count].type = (enum lttng_event_field_type) uiter.type;
c617c0c6 3310 tmp_event[count].nowrite = uiter.nowrite;
f37d259d 3311
c617c0c6
MD
3312 memcpy(tmp_event[count].event.name, uiter.event_name, LTTNG_UST_SYM_NAME_LEN);
3313 tmp_event[count].event.loglevel = uiter.loglevel;
2e84128e 3314 tmp_event[count].event.type = LTTNG_EVENT_TRACEPOINT;
c617c0c6
MD
3315 tmp_event[count].event.pid = app->pid;
3316 tmp_event[count].event.enabled = -1;
f37d259d
MD
3317 count++;
3318 }
3319 }
3320
3321 ret = count;
c617c0c6 3322 *fields = tmp_event;
f37d259d
MD
3323
3324 DBG2("UST app list event fields done (%zu events)", count);
3325
3326rcu_error:
3327 rcu_read_unlock();
3328error:
840cb59c 3329 health_code_update();
f37d259d
MD
3330 return ret;
3331}
3332
5b4a0ec0
DG
3333/*
3334 * Free and clean all traceable apps of the global list.
36b588ed
MD
3335 *
3336 * Should _NOT_ be called with RCU read-side lock held.
5b4a0ec0
DG
3337 */
3338void ust_app_clean_list(void)
421cb601 3339{
5b4a0ec0 3340 int ret;
659ed79f 3341 struct ust_app *app;
bec39940 3342 struct lttng_ht_iter iter;
421cb601 3343
5b4a0ec0 3344 DBG2("UST app cleaning registered apps hash table");
421cb601 3345
5b4a0ec0 3346 rcu_read_lock();
421cb601 3347
659ed79f 3348 cds_lfht_for_each_entry(ust_app_ht->ht, &iter.iter, app, pid_n.node) {
bec39940 3349 ret = lttng_ht_del(ust_app_ht, &iter);
525b0740 3350 assert(!ret);
659ed79f 3351 call_rcu(&app->pid_n.head, delete_ust_app_rcu);
421cb601
DG
3352 }
3353
852d0037 3354 /* Cleanup socket hash table */
659ed79f
DG
3355 cds_lfht_for_each_entry(ust_app_ht_by_sock->ht, &iter.iter, app,
3356 sock_n.node) {
852d0037 3357 ret = lttng_ht_del(ust_app_ht_by_sock, &iter);
bec39940
DG
3358 assert(!ret);
3359 }
852d0037 3360
d88aee68
DG
3361 /* Cleanup notify socket hash table */
3362 cds_lfht_for_each_entry(ust_app_ht_by_notify_sock->ht, &iter.iter, app,
3363 notify_sock_n.node) {
3364 ret = lttng_ht_del(ust_app_ht_by_notify_sock, &iter);
3365 assert(!ret);
3366 }
36b588ed 3367 rcu_read_unlock();
d88aee68 3368
bec39940 3369 /* Destroy is done only when the ht is empty */
0b2dc8df
MD
3370 ht_cleanup_push(ust_app_ht);
3371 ht_cleanup_push(ust_app_ht_by_sock);
3372 ht_cleanup_push(ust_app_ht_by_notify_sock);
5b4a0ec0
DG
3373}
3374
3375/*
3376 * Init UST app hash table.
3377 */
3378void ust_app_ht_alloc(void)
3379{
bec39940 3380 ust_app_ht = lttng_ht_new(0, LTTNG_HT_TYPE_ULONG);
852d0037 3381 ust_app_ht_by_sock = lttng_ht_new(0, LTTNG_HT_TYPE_ULONG);
d0b96690 3382 ust_app_ht_by_notify_sock = lttng_ht_new(0, LTTNG_HT_TYPE_ULONG);
421cb601
DG
3383}
3384
78f0bacd
DG
3385/*
3386 * For a specific UST session, disable the channel for all registered apps.
3387 */
35a9059d 3388int ust_app_disable_channel_glb(struct ltt_ust_session *usess,
78f0bacd
DG
3389 struct ltt_ust_channel *uchan)
3390{
3391 int ret = 0;
bec39940
DG
3392 struct lttng_ht_iter iter;
3393 struct lttng_ht_node_str *ua_chan_node;
78f0bacd
DG
3394 struct ust_app *app;
3395 struct ust_app_session *ua_sess;
8535a6d9 3396 struct ust_app_channel *ua_chan;
78f0bacd
DG
3397
3398 if (usess == NULL || uchan == NULL) {
3399 ERR("Disabling UST global channel with NULL values");
3400 ret = -1;
3401 goto error;
3402 }
3403
d9bf3ca4 3404 DBG2("UST app disabling channel %s from global domain for session id %" PRIu64,
a991f516 3405 uchan->name, usess->id);
78f0bacd
DG
3406
3407 rcu_read_lock();
3408
3409 /* For every registered applications */
852d0037 3410 cds_lfht_for_each_entry(ust_app_ht->ht, &iter.iter, app, pid_n.node) {
bec39940 3411 struct lttng_ht_iter uiter;
e0c7ec2b
DG
3412 if (!app->compatible) {
3413 /*
3414 * TODO: In time, we should notice the caller of this error by
3415 * telling him that this is a version error.
3416 */
3417 continue;
3418 }
78f0bacd
DG
3419 ua_sess = lookup_session_by_app(usess, app);
3420 if (ua_sess == NULL) {
3421 continue;
3422 }
3423
8535a6d9 3424 /* Get channel */
bec39940
DG
3425 lttng_ht_lookup(ua_sess->channels, (void *)uchan->name, &uiter);
3426 ua_chan_node = lttng_ht_iter_get_node_str(&uiter);
8535a6d9
DG
3427 /* If the session if found for the app, the channel must be there */
3428 assert(ua_chan_node);
3429
3430 ua_chan = caa_container_of(ua_chan_node, struct ust_app_channel, node);
3431 /* The channel must not be already disabled */
3432 assert(ua_chan->enabled == 1);
3433
3434 /* Disable channel onto application */
3435 ret = disable_ust_app_channel(ua_sess, ua_chan, app);
78f0bacd
DG
3436 if (ret < 0) {
3437 /* XXX: We might want to report this error at some point... */
3438 continue;
3439 }
3440 }
3441
3442 rcu_read_unlock();
3443
3444error:
3445 return ret;
3446}
3447
3448/*
3449 * For a specific UST session, enable the channel for all registered apps.
3450 */
35a9059d 3451int ust_app_enable_channel_glb(struct ltt_ust_session *usess,
78f0bacd
DG
3452 struct ltt_ust_channel *uchan)
3453{
3454 int ret = 0;
bec39940 3455 struct lttng_ht_iter iter;
78f0bacd
DG
3456 struct ust_app *app;
3457 struct ust_app_session *ua_sess;
3458
3459 if (usess == NULL || uchan == NULL) {
3460 ERR("Adding UST global channel to NULL values");
3461 ret = -1;
3462 goto error;
3463 }
3464
d9bf3ca4 3465 DBG2("UST app enabling channel %s to global domain for session id %" PRIu64,
a991f516 3466 uchan->name, usess->id);
78f0bacd
DG
3467
3468 rcu_read_lock();
3469
3470 /* For every registered applications */
852d0037 3471 cds_lfht_for_each_entry(ust_app_ht->ht, &iter.iter, app, pid_n.node) {
e0c7ec2b
DG
3472 if (!app->compatible) {
3473 /*
3474 * TODO: In time, we should notice the caller of this error by
3475 * telling him that this is a version error.
3476 */
3477 continue;
3478 }
78f0bacd
DG
3479 ua_sess = lookup_session_by_app(usess, app);
3480 if (ua_sess == NULL) {
3481 continue;
3482 }
3483
3484 /* Enable channel onto application */
3485 ret = enable_ust_app_channel(ua_sess, uchan, app);
3486 if (ret < 0) {
3487 /* XXX: We might want to report this error at some point... */
3488 continue;
3489 }
3490 }
3491
3492 rcu_read_unlock();
3493
3494error:
3495 return ret;
3496}
3497
b0a40d28
DG
3498/*
3499 * Disable an event in a channel and for a specific session.
3500 */
35a9059d
DG
3501int ust_app_disable_event_glb(struct ltt_ust_session *usess,
3502 struct ltt_ust_channel *uchan, struct ltt_ust_event *uevent)
b0a40d28
DG
3503{
3504 int ret = 0;
bec39940
DG
3505 struct lttng_ht_iter iter, uiter;
3506 struct lttng_ht_node_str *ua_chan_node, *ua_event_node;
b0a40d28
DG
3507 struct ust_app *app;
3508 struct ust_app_session *ua_sess;
3509 struct ust_app_channel *ua_chan;
3510 struct ust_app_event *ua_event;
3511
3512 DBG("UST app disabling event %s for all apps in channel "
d9bf3ca4
MD
3513 "%s for session id %" PRIu64,
3514 uevent->attr.name, uchan->name, usess->id);
b0a40d28
DG
3515
3516 rcu_read_lock();
3517
3518 /* For all registered applications */
852d0037 3519 cds_lfht_for_each_entry(ust_app_ht->ht, &iter.iter, app, pid_n.node) {
e0c7ec2b
DG
3520 if (!app->compatible) {
3521 /*
3522 * TODO: In time, we should notice the caller of this error by
3523 * telling him that this is a version error.
3524 */
3525 continue;
3526 }
b0a40d28
DG
3527 ua_sess = lookup_session_by_app(usess, app);
3528 if (ua_sess == NULL) {
3529 /* Next app */
3530 continue;
3531 }
3532
3533 /* Lookup channel in the ust app session */
bec39940
DG
3534 lttng_ht_lookup(ua_sess->channels, (void *)uchan->name, &uiter);
3535 ua_chan_node = lttng_ht_iter_get_node_str(&uiter);
b0a40d28 3536 if (ua_chan_node == NULL) {
d9bf3ca4 3537 DBG2("Channel %s not found in session id %" PRIu64 " for app pid %d."
852d0037 3538 "Skipping", uchan->name, usess->id, app->pid);
b0a40d28
DG
3539 continue;
3540 }
3541 ua_chan = caa_container_of(ua_chan_node, struct ust_app_channel, node);
3542
bec39940
DG
3543 lttng_ht_lookup(ua_chan->events, (void *)uevent->attr.name, &uiter);
3544 ua_event_node = lttng_ht_iter_get_node_str(&uiter);
b0a40d28
DG
3545 if (ua_event_node == NULL) {
3546 DBG2("Event %s not found in channel %s for app pid %d."
852d0037 3547 "Skipping", uevent->attr.name, uchan->name, app->pid);
b0a40d28
DG
3548 continue;
3549 }
3550 ua_event = caa_container_of(ua_event_node, struct ust_app_event, node);
3551
7f79d3a1 3552 ret = disable_ust_app_event(ua_sess, ua_event, app);
b0a40d28
DG
3553 if (ret < 0) {
3554 /* XXX: Report error someday... */
3555 continue;
3556 }
3557 }
3558
3559 rcu_read_unlock();
3560
3561 return ret;
3562}
3563
421cb601 3564/*
5b4a0ec0 3565 * For a specific UST session, create the channel for all registered apps.
421cb601 3566 */
35a9059d 3567int ust_app_create_channel_glb(struct ltt_ust_session *usess,
48842b30
DG
3568 struct ltt_ust_channel *uchan)
3569{
3d8ca23b 3570 int ret = 0, created;
bec39940 3571 struct lttng_ht_iter iter;
48842b30 3572 struct ust_app *app;
3d8ca23b 3573 struct ust_app_session *ua_sess = NULL;
48842b30 3574
fc34caaa
DG
3575 /* Very wrong code flow */
3576 assert(usess);
3577 assert(uchan);
421cb601 3578
d9bf3ca4 3579 DBG2("UST app adding channel %s to UST domain for session id %" PRIu64,
a991f516 3580 uchan->name, usess->id);
48842b30
DG
3581
3582 rcu_read_lock();
421cb601 3583
5b4a0ec0 3584 /* For every registered applications */
852d0037 3585 cds_lfht_for_each_entry(ust_app_ht->ht, &iter.iter, app, pid_n.node) {
e0c7ec2b
DG
3586 if (!app->compatible) {
3587 /*
3588 * TODO: In time, we should notice the caller of this error by
3589 * telling him that this is a version error.
3590 */
3591 continue;
3592 }
edb67388
DG
3593 /*
3594 * Create session on the tracer side and add it to app session HT. Note
3595 * that if session exist, it will simply return a pointer to the ust
3596 * app session.
3597 */
3d8ca23b
DG
3598 ret = create_ust_app_session(usess, app, &ua_sess, &created);
3599 if (ret < 0) {
3600 switch (ret) {
3601 case -ENOTCONN:
3602 /*
3603 * The application's socket is not valid. Either a bad socket
3604 * or a timeout on it. We can't inform the caller that for a
3605 * specific app, the session failed so lets continue here.
3606 */
3607 continue;
3608 case -ENOMEM:
3609 default:
3610 goto error_rcu_unlock;
3611 }
48842b30 3612 }
3d8ca23b 3613 assert(ua_sess);
48842b30 3614
d0b96690 3615 pthread_mutex_lock(&ua_sess->lock);
d65d2de8
DG
3616 if (!strncmp(uchan->name, DEFAULT_METADATA_NAME,
3617 sizeof(uchan->name))) {
ad7a9107
DG
3618 copy_channel_attr_to_ustctl(&ua_sess->metadata_attr, &uchan->attr);
3619 ret = 0;
d65d2de8
DG
3620 } else {
3621 /* Create channel onto application. We don't need the chan ref. */
3622 ret = create_ust_app_channel(ua_sess, uchan, app,
3623 LTTNG_UST_CHAN_PER_CPU, usess, NULL);
3624 }
d0b96690 3625 pthread_mutex_unlock(&ua_sess->lock);
3d8ca23b
DG
3626 if (ret < 0) {
3627 if (ret == -ENOMEM) {
3628 /* No more memory is a fatal error. Stop right now. */
3629 goto error_rcu_unlock;
3630 }
3631 /* Cleanup the created session if it's the case. */
3632 if (created) {
d0b96690 3633 destroy_app_session(app, ua_sess);
3d8ca23b 3634 }
48842b30 3635 }
48842b30 3636 }
5b4a0ec0 3637
95e047ff 3638error_rcu_unlock:
48842b30 3639 rcu_read_unlock();
3c14c33f 3640 return ret;
48842b30
DG
3641}
3642
5b4a0ec0 3643/*
edb67388 3644 * Enable event for a specific session and channel on the tracer.
5b4a0ec0 3645 */
35a9059d 3646int ust_app_enable_event_glb(struct ltt_ust_session *usess,
48842b30
DG
3647 struct ltt_ust_channel *uchan, struct ltt_ust_event *uevent)
3648{
3649 int ret = 0;
bec39940 3650 struct lttng_ht_iter iter, uiter;
18eace3b 3651 struct lttng_ht_node_str *ua_chan_node;
48842b30
DG
3652 struct ust_app *app;
3653 struct ust_app_session *ua_sess;
3654 struct ust_app_channel *ua_chan;
3655 struct ust_app_event *ua_event;
48842b30 3656
d9bf3ca4 3657 DBG("UST app enabling event %s for all apps for session id %" PRIu64,
a991f516 3658 uevent->attr.name, usess->id);
48842b30 3659
edb67388
DG
3660 /*
3661 * NOTE: At this point, this function is called only if the session and
3662 * channel passed are already created for all apps. and enabled on the
3663 * tracer also.
3664 */
3665
48842b30 3666 rcu_read_lock();
421cb601
DG
3667
3668 /* For all registered applications */
852d0037 3669 cds_lfht_for_each_entry(ust_app_ht->ht, &iter.iter, app, pid_n.node) {
e0c7ec2b
DG
3670 if (!app->compatible) {
3671 /*
3672 * TODO: In time, we should notice the caller of this error by
3673 * telling him that this is a version error.
3674 */
3675 continue;
3676 }
edb67388 3677 ua_sess = lookup_session_by_app(usess, app);
c4a1715b
DG
3678 if (!ua_sess) {
3679 /* The application has problem or is probably dead. */
3680 continue;
3681 }
ba767faf 3682
d0b96690
DG
3683 pthread_mutex_lock(&ua_sess->lock);
3684
edb67388 3685 /* Lookup channel in the ust app session */
bec39940
DG
3686 lttng_ht_lookup(ua_sess->channels, (void *)uchan->name, &uiter);
3687 ua_chan_node = lttng_ht_iter_get_node_str(&uiter);
edb67388
DG
3688 /* If the channel is not found, there is a code flow error */
3689 assert(ua_chan_node);
3690
3691 ua_chan = caa_container_of(ua_chan_node, struct ust_app_channel, node);
3692
18eace3b
DG
3693 /* Get event node */
3694 ua_event = find_ust_app_event(ua_chan->events, uevent->attr.name,
39c5a3a7 3695 uevent->filter, uevent->attr.loglevel, uevent->exclusion);
18eace3b 3696 if (ua_event == NULL) {
7f79d3a1 3697 DBG3("UST app enable event %s not found for app PID %d."
852d0037 3698 "Skipping app", uevent->attr.name, app->pid);
d0b96690 3699 goto next_app;
35a9059d 3700 }
35a9059d
DG
3701
3702 ret = enable_ust_app_event(ua_sess, ua_event, app);
3703 if (ret < 0) {
d0b96690 3704 pthread_mutex_unlock(&ua_sess->lock);
7f79d3a1 3705 goto error;
48842b30 3706 }
d0b96690
DG
3707 next_app:
3708 pthread_mutex_unlock(&ua_sess->lock);
edb67388
DG
3709 }
3710
7f79d3a1 3711error:
edb67388 3712 rcu_read_unlock();
edb67388
DG
3713 return ret;
3714}
3715
3716/*
3717 * For a specific existing UST session and UST channel, creates the event for
3718 * all registered apps.
3719 */
35a9059d 3720int ust_app_create_event_glb(struct ltt_ust_session *usess,
edb67388
DG
3721 struct ltt_ust_channel *uchan, struct ltt_ust_event *uevent)
3722{
3723 int ret = 0;
bec39940
DG
3724 struct lttng_ht_iter iter, uiter;
3725 struct lttng_ht_node_str *ua_chan_node;
edb67388
DG
3726 struct ust_app *app;
3727 struct ust_app_session *ua_sess;
3728 struct ust_app_channel *ua_chan;
3729
d9bf3ca4 3730 DBG("UST app creating event %s for all apps for session id %" PRIu64,
a991f516 3731 uevent->attr.name, usess->id);
edb67388 3732
edb67388
DG
3733 rcu_read_lock();
3734
3735 /* For all registered applications */
852d0037 3736 cds_lfht_for_each_entry(ust_app_ht->ht, &iter.iter, app, pid_n.node) {
e0c7ec2b
DG
3737 if (!app->compatible) {
3738 /*
3739 * TODO: In time, we should notice the caller of this error by
3740 * telling him that this is a version error.
3741 */
3742 continue;
3743 }
edb67388 3744 ua_sess = lookup_session_by_app(usess, app);
c4a1715b
DG
3745 if (!ua_sess) {
3746 /* The application has problem or is probably dead. */
3747 continue;
3748 }
48842b30 3749
d0b96690 3750 pthread_mutex_lock(&ua_sess->lock);
48842b30 3751 /* Lookup channel in the ust app session */
bec39940
DG
3752 lttng_ht_lookup(ua_sess->channels, (void *)uchan->name, &uiter);
3753 ua_chan_node = lttng_ht_iter_get_node_str(&uiter);
edb67388
DG
3754 /* If the channel is not found, there is a code flow error */
3755 assert(ua_chan_node);
3756
48842b30
DG
3757 ua_chan = caa_container_of(ua_chan_node, struct ust_app_channel, node);
3758
edb67388 3759 ret = create_ust_app_event(ua_sess, ua_chan, uevent, app);
d0b96690 3760 pthread_mutex_unlock(&ua_sess->lock);
edb67388 3761 if (ret < 0) {
49c336c1 3762 if (ret != -LTTNG_UST_ERR_EXIST) {
fc34caaa
DG
3763 /* Possible value at this point: -ENOMEM. If so, we stop! */
3764 break;
3765 }
3766 DBG2("UST app event %s already exist on app PID %d",
852d0037 3767 uevent->attr.name, app->pid);
5b4a0ec0 3768 continue;
48842b30 3769 }
48842b30 3770 }
5b4a0ec0 3771
48842b30
DG
3772 rcu_read_unlock();
3773
3774 return ret;
3775}
3776
5b4a0ec0
DG
3777/*
3778 * Start tracing for a specific UST session and app.
3779 */
b34cbebf 3780static
421cb601 3781int ust_app_start_trace(struct ltt_ust_session *usess, struct ust_app *app)
48842b30
DG
3782{
3783 int ret = 0;
48842b30 3784 struct ust_app_session *ua_sess;
48842b30 3785
852d0037 3786 DBG("Starting tracing for ust app pid %d", app->pid);
5cf5d0e7 3787
509cbaf8
MD
3788 rcu_read_lock();
3789
e0c7ec2b
DG
3790 if (!app->compatible) {
3791 goto end;
3792 }
3793
421cb601
DG
3794 ua_sess = lookup_session_by_app(usess, app);
3795 if (ua_sess == NULL) {
d42f20df
DG
3796 /* The session is in teardown process. Ignore and continue. */
3797 goto end;
421cb601 3798 }
48842b30 3799
d0b96690
DG
3800 pthread_mutex_lock(&ua_sess->lock);
3801
aea829b3
DG
3802 /* Upon restart, we skip the setup, already done */
3803 if (ua_sess->started) {
8be98f9a 3804 goto skip_setup;
aea829b3 3805 }
8be98f9a 3806
a4b92340
DG
3807 /* Create directories if consumer is LOCAL and has a path defined. */
3808 if (usess->consumer->type == CONSUMER_DST_LOCAL &&
3809 strlen(usess->consumer->dst.trace_path) > 0) {
3810 ret = run_as_mkdir_recursive(usess->consumer->dst.trace_path,
7972aab2 3811 S_IRWXU | S_IRWXG, ua_sess->euid, ua_sess->egid);
a4b92340
DG
3812 if (ret < 0) {
3813 if (ret != -EEXIST) {
3814 ERR("Trace directory creation error");
d0b96690 3815 goto error_unlock;
421cb601 3816 }
173af62f 3817 }
7753dea8 3818 }
aea829b3 3819
d65d2de8
DG
3820 /*
3821 * Create the metadata for the application. This returns gracefully if a
3822 * metadata was already set for the session.
3823 */
ad7a9107 3824 ret = create_ust_app_metadata(ua_sess, app, usess->consumer);
421cb601 3825 if (ret < 0) {
d0b96690 3826 goto error_unlock;
421cb601 3827 }
48842b30 3828
840cb59c 3829 health_code_update();
86acf0da 3830
8be98f9a 3831skip_setup:
421cb601 3832 /* This start the UST tracing */
852d0037 3833 ret = ustctl_start_session(app->sock, ua_sess->handle);
421cb601 3834 if (ret < 0) {
ffe60014
DG
3835 if (ret != -EPIPE && ret != -LTTNG_UST_ERR_EXITING) {
3836 ERR("Error starting tracing for app pid: %d (ret: %d)",
3837 app->pid, ret);
3838 } else {
3839 DBG("UST app start session failed. Application is dead.");
3757b385
DG
3840 /*
3841 * This is normal behavior, an application can die during the
3842 * creation process. Don't report an error so the execution can
3843 * continue normally.
3844 */
3845 pthread_mutex_unlock(&ua_sess->lock);
3846 goto end;
ffe60014 3847 }
d0b96690 3848 goto error_unlock;
421cb601 3849 }
5b4a0ec0 3850
55c3953d
DG
3851 /* Indicate that the session has been started once */
3852 ua_sess->started = 1;
3853
d0b96690
DG
3854 pthread_mutex_unlock(&ua_sess->lock);
3855
840cb59c 3856 health_code_update();
86acf0da 3857
421cb601 3858 /* Quiescent wait after starting trace */
ffe60014
DG
3859 ret = ustctl_wait_quiescent(app->sock);
3860 if (ret < 0 && ret != -EPIPE && ret != -LTTNG_UST_ERR_EXITING) {
3861 ERR("UST app wait quiescent failed for app pid %d ret %d",
3862 app->pid, ret);
3863 }
48842b30 3864
e0c7ec2b
DG
3865end:
3866 rcu_read_unlock();
840cb59c 3867 health_code_update();
421cb601 3868 return 0;
48842b30 3869
d0b96690
DG
3870error_unlock:
3871 pthread_mutex_unlock(&ua_sess->lock);
509cbaf8 3872 rcu_read_unlock();
840cb59c 3873 health_code_update();
421cb601
DG
3874 return -1;
3875}
48842b30 3876
8be98f9a
MD
3877/*
3878 * Stop tracing for a specific UST session and app.
3879 */
b34cbebf 3880static
8be98f9a
MD
3881int ust_app_stop_trace(struct ltt_ust_session *usess, struct ust_app *app)
3882{
3883 int ret = 0;
3884 struct ust_app_session *ua_sess;
7972aab2 3885 struct ust_registry_session *registry;
8be98f9a 3886
852d0037 3887 DBG("Stopping tracing for ust app pid %d", app->pid);
8be98f9a
MD
3888
3889 rcu_read_lock();
3890
e0c7ec2b 3891 if (!app->compatible) {
d88aee68 3892 goto end_no_session;
e0c7ec2b
DG
3893 }
3894
8be98f9a
MD
3895 ua_sess = lookup_session_by_app(usess, app);
3896 if (ua_sess == NULL) {
d88aee68 3897 goto end_no_session;
8be98f9a
MD
3898 }
3899
d88aee68
DG
3900 pthread_mutex_lock(&ua_sess->lock);
3901
9bc07046
DG
3902 /*
3903 * If started = 0, it means that stop trace has been called for a session
c45536e1
DG
3904 * that was never started. It's possible since we can have a fail start
3905 * from either the application manager thread or the command thread. Simply
3906 * indicate that this is a stop error.
9bc07046 3907 */
f9dfc3d9 3908 if (!ua_sess->started) {
c45536e1
DG
3909 goto error_rcu_unlock;
3910 }
7db205b5 3911
840cb59c 3912 health_code_update();
86acf0da 3913
9d6c7d3f 3914 /* This inhibits UST tracing */
852d0037 3915 ret = ustctl_stop_session(app->sock, ua_sess->handle);
9d6c7d3f 3916 if (ret < 0) {
ffe60014
DG
3917 if (ret != -EPIPE && ret != -LTTNG_UST_ERR_EXITING) {
3918 ERR("Error stopping tracing for app pid: %d (ret: %d)",
3919 app->pid, ret);
3920 } else {
3921 DBG("UST app stop session failed. Application is dead.");
3757b385
DG
3922 /*
3923 * This is normal behavior, an application can die during the
3924 * creation process. Don't report an error so the execution can
3925 * continue normally.
3926 */
3927 goto end_unlock;
ffe60014 3928 }
9d6c7d3f
DG
3929 goto error_rcu_unlock;
3930 }
3931
840cb59c 3932 health_code_update();
86acf0da 3933
9d6c7d3f 3934 /* Quiescent wait after stopping trace */
ffe60014
DG
3935 ret = ustctl_wait_quiescent(app->sock);
3936 if (ret < 0 && ret != -EPIPE && ret != -LTTNG_UST_ERR_EXITING) {
3937 ERR("UST app wait quiescent failed for app pid %d ret %d",
3938 app->pid, ret);
3939 }
9d6c7d3f 3940
840cb59c 3941 health_code_update();
86acf0da 3942
b34cbebf
MD
3943 registry = get_session_registry(ua_sess);
3944 assert(registry);
1b532a60
DG
3945
3946 if (!registry->metadata_closed) {
3947 /* Push metadata for application before freeing the application. */
3948 (void) push_metadata(registry, ua_sess->consumer);
3949 }
b34cbebf 3950
3757b385 3951end_unlock:
b34cbebf
MD
3952 pthread_mutex_unlock(&ua_sess->lock);
3953end_no_session:
3954 rcu_read_unlock();
3955 health_code_update();
3956 return 0;
3957
3958error_rcu_unlock:
3959 pthread_mutex_unlock(&ua_sess->lock);
3960 rcu_read_unlock();
3961 health_code_update();
3962 return -1;
3963}
3964
3965/*
3966 * Flush buffers for a specific UST session and app.
3967 */
3968static
3969int ust_app_flush_trace(struct ltt_ust_session *usess, struct ust_app *app)
3970{
3971 int ret = 0;
3972 struct lttng_ht_iter iter;
3973 struct ust_app_session *ua_sess;
3974 struct ust_app_channel *ua_chan;
3975
3976 DBG("Flushing buffers for ust app pid %d", app->pid);
3977
3978 rcu_read_lock();
3979
3980 if (!app->compatible) {
3981 goto end_no_session;
3982 }
3983
3984 ua_sess = lookup_session_by_app(usess, app);
3985 if (ua_sess == NULL) {
3986 goto end_no_session;
3987 }
3988
3989 pthread_mutex_lock(&ua_sess->lock);
3990
3991 health_code_update();
3992
9d6c7d3f 3993 /* Flushing buffers */
bec39940
DG
3994 cds_lfht_for_each_entry(ua_sess->channels->ht, &iter.iter, ua_chan,
3995 node.node) {
840cb59c 3996 health_code_update();
ffe60014 3997 assert(ua_chan->is_sent);
852d0037 3998 ret = ustctl_sock_flush_buffer(app->sock, ua_chan->obj);
8be98f9a 3999 if (ret < 0) {
ffe60014
DG
4000 if (ret != -EPIPE && ret != -LTTNG_UST_ERR_EXITING) {
4001 ERR("UST app PID %d channel %s flush failed with ret %d",
4002 app->pid, ua_chan->name, ret);
4003 } else {
4004 DBG3("UST app failed to flush %s. Application is dead.",
4005 ua_chan->name);
3757b385
DG
4006 /*
4007 * This is normal behavior, an application can die during the
4008 * creation process. Don't report an error so the execution can
4009 * continue normally.
4010 */
ffe60014 4011 }
6d3686da
DG
4012 /* Continuing flushing all buffers */
4013 continue;
8be98f9a
MD
4014 }
4015 }
8be98f9a 4016
840cb59c 4017 health_code_update();
86acf0da 4018
d88aee68
DG
4019 pthread_mutex_unlock(&ua_sess->lock);
4020end_no_session:
7db205b5 4021 rcu_read_unlock();
840cb59c 4022 health_code_update();
8be98f9a 4023 return 0;
8be98f9a
MD
4024}
4025
84cd17c6
MD
4026/*
4027 * Destroy a specific UST session in apps.
4028 */
3353de95 4029static int destroy_trace(struct ltt_ust_session *usess, struct ust_app *app)
84cd17c6 4030{
ffe60014 4031 int ret;
84cd17c6 4032 struct ust_app_session *ua_sess;
bec39940 4033 struct lttng_ht_iter iter;
d9bf3ca4 4034 struct lttng_ht_node_u64 *node;
84cd17c6 4035
852d0037 4036 DBG("Destroy tracing for ust app pid %d", app->pid);
84cd17c6
MD
4037
4038 rcu_read_lock();
4039
e0c7ec2b
DG
4040 if (!app->compatible) {
4041 goto end;
4042 }
4043
84cd17c6 4044 __lookup_session_by_app(usess, app, &iter);
d9bf3ca4 4045 node = lttng_ht_iter_get_node_u64(&iter);
84cd17c6 4046 if (node == NULL) {
d42f20df
DG
4047 /* Session is being or is deleted. */
4048 goto end;
84cd17c6
MD
4049 }
4050 ua_sess = caa_container_of(node, struct ust_app_session, node);
c4a1715b 4051
840cb59c 4052 health_code_update();
d0b96690 4053 destroy_app_session(app, ua_sess);
84cd17c6 4054
840cb59c 4055 health_code_update();
7db205b5 4056
84cd17c6 4057 /* Quiescent wait after stopping trace */
ffe60014
DG
4058 ret = ustctl_wait_quiescent(app->sock);
4059 if (ret < 0 && ret != -EPIPE && ret != -LTTNG_UST_ERR_EXITING) {
4060 ERR("UST app wait quiescent failed for app pid %d ret %d",
4061 app->pid, ret);
4062 }
e0c7ec2b
DG
4063end:
4064 rcu_read_unlock();
840cb59c 4065 health_code_update();
84cd17c6 4066 return 0;
84cd17c6
MD
4067}
4068
5b4a0ec0
DG
4069/*
4070 * Start tracing for the UST session.
4071 */
421cb601
DG
4072int ust_app_start_trace_all(struct ltt_ust_session *usess)
4073{
4074 int ret = 0;
bec39940 4075 struct lttng_ht_iter iter;
421cb601 4076 struct ust_app *app;
48842b30 4077
421cb601
DG
4078 DBG("Starting all UST traces");
4079
4080 rcu_read_lock();
421cb601 4081
852d0037 4082 cds_lfht_for_each_entry(ust_app_ht->ht, &iter.iter, app, pid_n.node) {
421cb601 4083 ret = ust_app_start_trace(usess, app);
48842b30 4084 if (ret < 0) {
5b4a0ec0
DG
4085 /* Continue to next apps even on error */
4086 continue;
48842b30 4087 }
48842b30 4088 }
5b4a0ec0 4089
48842b30
DG
4090 rcu_read_unlock();
4091
4092 return 0;
4093}
487cf67c 4094
8be98f9a
MD
4095/*
4096 * Start tracing for the UST session.
4097 */
4098int ust_app_stop_trace_all(struct ltt_ust_session *usess)
4099{
4100 int ret = 0;
bec39940 4101 struct lttng_ht_iter iter;
8be98f9a
MD
4102 struct ust_app *app;
4103
4104 DBG("Stopping all UST traces");
4105
4106 rcu_read_lock();
4107
b34cbebf
MD
4108 cds_lfht_for_each_entry(ust_app_ht->ht, &iter.iter, app, pid_n.node) {
4109 ret = ust_app_stop_trace(usess, app);
4110 if (ret < 0) {
4111 /* Continue to next apps even on error */
4112 continue;
4113 }
4114 }
4115
b0a5f0fb 4116 /* Flush buffers and push metadata (for UID buffers). */
b34cbebf
MD
4117 switch (usess->buffer_type) {
4118 case LTTNG_BUFFER_PER_UID:
4119 {
7972aab2 4120 struct buffer_reg_uid *reg;
b34cbebf
MD
4121
4122 /* Flush all per UID buffers associated to that session. */
7972aab2 4123 cds_list_for_each_entry(reg, &usess->buffer_reg_uid_list, lnode) {
b0a5f0fb 4124 struct ust_registry_session *ust_session_reg;
7972aab2
DG
4125 struct buffer_reg_channel *reg_chan;
4126 struct consumer_socket *socket;
4127
4128 /* Get consumer socket to use to push the metadata.*/
4129 socket = consumer_find_socket_by_bitness(reg->bits_per_long,
4130 usess->consumer);
4131 if (!socket) {
4132 /* Ignore request if no consumer is found for the session. */
4133 continue;
4134 }
4135
4136 cds_lfht_for_each_entry(reg->registry->channels->ht, &iter.iter,
4137 reg_chan, node.node) {
4138 /*
4139 * The following call will print error values so the return
4140 * code is of little importance because whatever happens, we
4141 * have to try them all.
4142 */
4143 (void) consumer_flush_channel(socket, reg_chan->consumer_key);
4144 }
b0a5f0fb
MD
4145
4146 ust_session_reg = reg->registry->reg.ust;
4147 if (!ust_session_reg->metadata_closed) {
4148 /* Push metadata. */
4149 (void) push_metadata(ust_session_reg, usess->consumer);
4150 }
7972aab2 4151 }
b0a5f0fb 4152
b34cbebf 4153 break;
7972aab2 4154 }
b34cbebf
MD
4155 case LTTNG_BUFFER_PER_PID:
4156 cds_lfht_for_each_entry(ust_app_ht->ht, &iter.iter, app, pid_n.node) {
4157 ret = ust_app_flush_trace(usess, app);
4158 if (ret < 0) {
4159 /* Continue to next apps even on error */
4160 continue;
4161 }
8be98f9a 4162 }
b34cbebf
MD
4163 break;
4164 default:
4165 assert(0);
4166 break;
8be98f9a
MD
4167 }
4168
4169 rcu_read_unlock();
4170
4171 return 0;
4172}
4173
84cd17c6
MD
4174/*
4175 * Destroy app UST session.
4176 */
4177int ust_app_destroy_trace_all(struct ltt_ust_session *usess)
4178{
4179 int ret = 0;
bec39940 4180 struct lttng_ht_iter iter;
84cd17c6
MD
4181 struct ust_app *app;
4182
4183 DBG("Destroy all UST traces");
4184
4185 rcu_read_lock();
4186
852d0037 4187 cds_lfht_for_each_entry(ust_app_ht->ht, &iter.iter, app, pid_n.node) {
3353de95 4188 ret = destroy_trace(usess, app);
84cd17c6
MD
4189 if (ret < 0) {
4190 /* Continue to next apps even on error */
4191 continue;
4192 }
4193 }
4194
4195 rcu_read_unlock();
4196
4197 return 0;
4198}
4199
5b4a0ec0
DG
4200/*
4201 * Add channels/events from UST global domain to registered apps at sock.
4202 */
487cf67c
DG
4203void ust_app_global_update(struct ltt_ust_session *usess, int sock)
4204{
55c54cce 4205 int ret = 0;
31746f93 4206 struct lttng_ht_iter iter, uiter;
487cf67c 4207 struct ust_app *app;
3d8ca23b 4208 struct ust_app_session *ua_sess = NULL;
487cf67c
DG
4209 struct ust_app_channel *ua_chan;
4210 struct ust_app_event *ua_event;
727d5404 4211 struct ust_app_ctx *ua_ctx;
1f3580c7 4212
95e047ff 4213 assert(usess);
ffe60014 4214 assert(sock >= 0);
1f3580c7 4215
d9bf3ca4 4216 DBG2("UST app global update for app sock %d for session id %" PRIu64, sock,
a991f516 4217 usess->id);
487cf67c 4218
284d8f55
DG
4219 rcu_read_lock();
4220
f20baf8e 4221 app = ust_app_find_by_sock(sock);
487cf67c 4222 if (app == NULL) {
d88aee68
DG
4223 /*
4224 * Application can be unregistered before so this is possible hence
4225 * simply stopping the update.
4226 */
4227 DBG3("UST app update failed to find app sock %d", sock);
487cf67c
DG
4228 goto error;
4229 }
4230
e0c7ec2b
DG
4231 if (!app->compatible) {
4232 goto error;
4233 }
4234
3d8ca23b
DG
4235 ret = create_ust_app_session(usess, app, &ua_sess, NULL);
4236 if (ret < 0) {
4237 /* Tracer is probably gone or ENOMEM. */
487cf67c
DG
4238 goto error;
4239 }
3d8ca23b 4240 assert(ua_sess);
487cf67c 4241
d0b96690
DG
4242 pthread_mutex_lock(&ua_sess->lock);
4243
284d8f55 4244 /*
d0b96690 4245 * We can iterate safely here over all UST app session since the create ust
284d8f55
DG
4246 * app session above made a shadow copy of the UST global domain from the
4247 * ltt ust session.
4248 */
bec39940
DG
4249 cds_lfht_for_each_entry(ua_sess->channels->ht, &iter.iter, ua_chan,
4250 node.node) {
ad7a9107
DG
4251 ret = do_create_channel(app, usess, ua_sess, ua_chan);
4252 if (ret < 0) {
4253 /*
4254 * Stop everything. On error, the application failed, no more
4255 * file descriptor are available or ENOMEM so stopping here is
4256 * the only thing we can do for now.
4257 */
4258 goto error_unlock;
487cf67c
DG
4259 }
4260
31746f93
DG
4261 /*
4262 * Add context using the list so they are enabled in the same order the
4263 * user added them.
4264 */
4265 cds_list_for_each_entry(ua_ctx, &ua_chan->ctx_list, list) {
727d5404
DG
4266 ret = create_ust_channel_context(ua_chan, ua_ctx, app);
4267 if (ret < 0) {
d0b96690 4268 goto error_unlock;
727d5404
DG
4269 }
4270 }
4271
4272
284d8f55 4273 /* For each events */
bec39940
DG
4274 cds_lfht_for_each_entry(ua_chan->events->ht, &uiter.iter, ua_event,
4275 node.node) {
284d8f55
DG
4276 ret = create_ust_event(app, ua_sess, ua_chan, ua_event);
4277 if (ret < 0) {
d0b96690 4278 goto error_unlock;
487cf67c 4279 }
36dc12cc 4280 }
487cf67c
DG
4281 }
4282
d0b96690
DG
4283 pthread_mutex_unlock(&ua_sess->lock);
4284
14fb1ebe 4285 if (usess->active) {
421cb601 4286 ret = ust_app_start_trace(usess, app);
36dc12cc 4287 if (ret < 0) {
36dc12cc
DG
4288 goto error;
4289 }
4290
852d0037 4291 DBG2("UST trace started for app pid %d", app->pid);
36dc12cc
DG
4292 }
4293
ffe60014
DG
4294 /* Everything went well at this point. */
4295 rcu_read_unlock();
4296 return;
4297
d0b96690
DG
4298error_unlock:
4299 pthread_mutex_unlock(&ua_sess->lock);
487cf67c 4300error:
ffe60014 4301 if (ua_sess) {
d0b96690 4302 destroy_app_session(app, ua_sess);
ffe60014 4303 }
487cf67c
DG
4304 rcu_read_unlock();
4305 return;
4306}
55cc08a6
DG
4307
4308/*
4309 * Add context to a specific channel for global UST domain.
4310 */
4311int ust_app_add_ctx_channel_glb(struct ltt_ust_session *usess,
4312 struct ltt_ust_channel *uchan, struct ltt_ust_context *uctx)
4313{
4314 int ret = 0;
bec39940
DG
4315 struct lttng_ht_node_str *ua_chan_node;
4316 struct lttng_ht_iter iter, uiter;
55cc08a6
DG
4317 struct ust_app_channel *ua_chan = NULL;
4318 struct ust_app_session *ua_sess;
4319 struct ust_app *app;
4320
4321 rcu_read_lock();
4322
852d0037 4323 cds_lfht_for_each_entry(ust_app_ht->ht, &iter.iter, app, pid_n.node) {
e0c7ec2b
DG
4324 if (!app->compatible) {
4325 /*
4326 * TODO: In time, we should notice the caller of this error by
4327 * telling him that this is a version error.
4328 */
4329 continue;
4330 }
55cc08a6
DG
4331 ua_sess = lookup_session_by_app(usess, app);
4332 if (ua_sess == NULL) {
4333 continue;
4334 }
4335
d0b96690 4336 pthread_mutex_lock(&ua_sess->lock);
55cc08a6 4337 /* Lookup channel in the ust app session */
bec39940
DG
4338 lttng_ht_lookup(ua_sess->channels, (void *)uchan->name, &uiter);
4339 ua_chan_node = lttng_ht_iter_get_node_str(&uiter);
55cc08a6 4340 if (ua_chan_node == NULL) {
d0b96690 4341 goto next_app;
55cc08a6
DG
4342 }
4343 ua_chan = caa_container_of(ua_chan_node, struct ust_app_channel,
4344 node);
55cc08a6
DG
4345 ret = create_ust_app_channel_context(ua_sess, ua_chan, &uctx->ctx, app);
4346 if (ret < 0) {
d0b96690 4347 goto next_app;
55cc08a6 4348 }
d0b96690
DG
4349 next_app:
4350 pthread_mutex_unlock(&ua_sess->lock);
55cc08a6
DG
4351 }
4352
55cc08a6
DG
4353 rcu_read_unlock();
4354 return ret;
4355}
4356
76d45b40
DG
4357/*
4358 * Enable event for a channel from a UST session for a specific PID.
4359 */
4360int ust_app_enable_event_pid(struct ltt_ust_session *usess,
4361 struct ltt_ust_channel *uchan, struct ltt_ust_event *uevent, pid_t pid)
4362{
4363 int ret = 0;
bec39940 4364 struct lttng_ht_iter iter;
18eace3b 4365 struct lttng_ht_node_str *ua_chan_node;
76d45b40
DG
4366 struct ust_app *app;
4367 struct ust_app_session *ua_sess;
4368 struct ust_app_channel *ua_chan;
4369 struct ust_app_event *ua_event;
4370
4371 DBG("UST app enabling event %s for PID %d", uevent->attr.name, pid);
4372
4373 rcu_read_lock();
4374
4375 app = ust_app_find_by_pid(pid);
4376 if (app == NULL) {
4377 ERR("UST app enable event per PID %d not found", pid);
4378 ret = -1;
d0b96690 4379 goto end;
76d45b40
DG
4380 }
4381
e0c7ec2b
DG
4382 if (!app->compatible) {
4383 ret = 0;
d0b96690 4384 goto end;
e0c7ec2b
DG
4385 }
4386
76d45b40 4387 ua_sess = lookup_session_by_app(usess, app);
c4a1715b
DG
4388 if (!ua_sess) {
4389 /* The application has problem or is probably dead. */
d0b96690
DG
4390 ret = 0;
4391 goto end;
c4a1715b 4392 }
76d45b40 4393
d0b96690 4394 pthread_mutex_lock(&ua_sess->lock);
76d45b40 4395 /* Lookup channel in the ust app session */
bec39940
DG
4396 lttng_ht_lookup(ua_sess->channels, (void *)uchan->name, &iter);
4397 ua_chan_node = lttng_ht_iter_get_node_str(&iter);
76d45b40
DG
4398 /* If the channel is not found, there is a code flow error */
4399 assert(ua_chan_node);
4400
4401 ua_chan = caa_container_of(ua_chan_node, struct ust_app_channel, node);
4402
18eace3b 4403 ua_event = find_ust_app_event(ua_chan->events, uevent->attr.name,
39c5a3a7 4404 uevent->filter, uevent->attr.loglevel, uevent->exclusion);
18eace3b 4405 if (ua_event == NULL) {
76d45b40
DG
4406 ret = create_ust_app_event(ua_sess, ua_chan, uevent, app);
4407 if (ret < 0) {
d0b96690 4408 goto end_unlock;
76d45b40
DG
4409 }
4410 } else {
76d45b40
DG
4411 ret = enable_ust_app_event(ua_sess, ua_event, app);
4412 if (ret < 0) {
d0b96690 4413 goto end_unlock;
76d45b40
DG
4414 }
4415 }
4416
d0b96690
DG
4417end_unlock:
4418 pthread_mutex_unlock(&ua_sess->lock);
4419end:
76d45b40
DG
4420 rcu_read_unlock();
4421 return ret;
4422}
7f79d3a1 4423
4466912f
DG
4424/*
4425 * Calibrate registered applications.
4426 */
4427int ust_app_calibrate_glb(struct lttng_ust_calibrate *calibrate)
4428{
4429 int ret = 0;
4430 struct lttng_ht_iter iter;
4431 struct ust_app *app;
4432
4433 rcu_read_lock();
4434
852d0037 4435 cds_lfht_for_each_entry(ust_app_ht->ht, &iter.iter, app, pid_n.node) {
4466912f
DG
4436 if (!app->compatible) {
4437 /*
4438 * TODO: In time, we should notice the caller of this error by
4439 * telling him that this is a version error.
4440 */
4441 continue;
4442 }
4443
840cb59c 4444 health_code_update();
86acf0da 4445
852d0037 4446 ret = ustctl_calibrate(app->sock, calibrate);
4466912f
DG
4447 if (ret < 0) {
4448 switch (ret) {
4449 case -ENOSYS:
4450 /* Means that it's not implemented on the tracer side. */
4451 ret = 0;
4452 break;
4453 default:
4466912f 4454 DBG2("Calibrate app PID %d returned with error %d",
852d0037 4455 app->pid, ret);
4466912f
DG
4456 break;
4457 }
4458 }
4459 }
4460
4461 DBG("UST app global domain calibration finished");
4462
4463 rcu_read_unlock();
4464
840cb59c 4465 health_code_update();
86acf0da 4466
4466912f
DG
4467 return ret;
4468}
d0b96690
DG
4469
4470/*
4471 * Receive registration and populate the given msg structure.
4472 *
4473 * On success return 0 else a negative value returned by the ustctl call.
4474 */
4475int ust_app_recv_registration(int sock, struct ust_register_msg *msg)
4476{
4477 int ret;
4478 uint32_t pid, ppid, uid, gid;
4479
4480 assert(msg);
4481
4482 ret = ustctl_recv_reg_msg(sock, &msg->type, &msg->major, &msg->minor,
4483 &pid, &ppid, &uid, &gid,
4484 &msg->bits_per_long,
4485 &msg->uint8_t_alignment,
4486 &msg->uint16_t_alignment,
4487 &msg->uint32_t_alignment,
4488 &msg->uint64_t_alignment,
4489 &msg->long_alignment,
4490 &msg->byte_order,
4491 msg->name);
4492 if (ret < 0) {
4493 switch (-ret) {
4494 case EPIPE:
4495 case ECONNRESET:
4496 case LTTNG_UST_ERR_EXITING:
4497 DBG3("UST app recv reg message failed. Application died");
4498 break;
4499 case LTTNG_UST_ERR_UNSUP_MAJOR:
4500 ERR("UST app recv reg unsupported version %d.%d. Supporting %d.%d",
4501 msg->major, msg->minor, LTTNG_UST_ABI_MAJOR_VERSION,
4502 LTTNG_UST_ABI_MINOR_VERSION);
4503 break;
4504 default:
4505 ERR("UST app recv reg message failed with ret %d", ret);
4506 break;
4507 }
4508 goto error;
4509 }
4510 msg->pid = (pid_t) pid;
4511 msg->ppid = (pid_t) ppid;
4512 msg->uid = (uid_t) uid;
4513 msg->gid = (gid_t) gid;
4514
4515error:
4516 return ret;
4517}
4518
d88aee68
DG
4519/*
4520 * Return a ust app channel object using the application object and the channel
4521 * object descriptor has a key. If not found, NULL is returned. A RCU read side
4522 * lock MUST be acquired before calling this function.
4523 */
d0b96690
DG
4524static struct ust_app_channel *find_channel_by_objd(struct ust_app *app,
4525 int objd)
4526{
4527 struct lttng_ht_node_ulong *node;
4528 struct lttng_ht_iter iter;
4529 struct ust_app_channel *ua_chan = NULL;
4530
4531 assert(app);
4532
4533 lttng_ht_lookup(app->ust_objd, (void *)((unsigned long) objd), &iter);
4534 node = lttng_ht_iter_get_node_ulong(&iter);
4535 if (node == NULL) {
4536 DBG2("UST app channel find by objd %d not found", objd);
4537 goto error;
4538 }
4539
4540 ua_chan = caa_container_of(node, struct ust_app_channel, ust_objd_node);
4541
4542error:
4543 return ua_chan;
4544}
4545
d88aee68
DG
4546/*
4547 * Reply to a register channel notification from an application on the notify
4548 * socket. The channel metadata is also created.
4549 *
4550 * The session UST registry lock is acquired in this function.
4551 *
4552 * On success 0 is returned else a negative value.
4553 */
d0b96690
DG
4554static int reply_ust_register_channel(int sock, int sobjd, int cobjd,
4555 size_t nr_fields, struct ustctl_field *fields)
4556{
4557 int ret, ret_code = 0;
4558 uint32_t chan_id, reg_count;
7972aab2 4559 uint64_t chan_reg_key;
d0b96690
DG
4560 enum ustctl_channel_header type;
4561 struct ust_app *app;
4562 struct ust_app_channel *ua_chan;
4563 struct ust_app_session *ua_sess;
7972aab2 4564 struct ust_registry_session *registry;
45893984 4565 struct ust_registry_channel *chan_reg;
d0b96690
DG
4566
4567 rcu_read_lock();
4568
4569 /* Lookup application. If not found, there is a code flow error. */
4570 app = find_app_by_notify_sock(sock);
d88aee68
DG
4571 if (!app) {
4572 DBG("Application socket %d is being teardown. Abort event notify",
4573 sock);
4574 ret = 0;
d5d629b5 4575 free(fields);
d88aee68
DG
4576 goto error_rcu_unlock;
4577 }
d0b96690 4578
4950b860 4579 /* Lookup channel by UST object descriptor. */
d0b96690 4580 ua_chan = find_channel_by_objd(app, cobjd);
4950b860
MD
4581 if (!ua_chan) {
4582 DBG("Application channel is being teardown. Abort event notify");
4583 ret = 0;
d5d629b5 4584 free(fields);
4950b860
MD
4585 goto error_rcu_unlock;
4586 }
4587
d0b96690
DG
4588 assert(ua_chan->session);
4589 ua_sess = ua_chan->session;
d0b96690 4590
7972aab2
DG
4591 /* Get right session registry depending on the session buffer type. */
4592 registry = get_session_registry(ua_sess);
4593 assert(registry);
45893984 4594
7972aab2
DG
4595 /* Depending on the buffer type, a different channel key is used. */
4596 if (ua_sess->buffer_type == LTTNG_BUFFER_PER_UID) {
4597 chan_reg_key = ua_chan->tracing_channel_id;
d0b96690 4598 } else {
7972aab2 4599 chan_reg_key = ua_chan->key;
d0b96690
DG
4600 }
4601
7972aab2
DG
4602 pthread_mutex_lock(&registry->lock);
4603
4604 chan_reg = ust_registry_channel_find(registry, chan_reg_key);
4605 assert(chan_reg);
4606
4607 if (!chan_reg->register_done) {
4608 reg_count = ust_registry_get_event_count(chan_reg);
4609 if (reg_count < 31) {
4610 type = USTCTL_CHANNEL_HEADER_COMPACT;
4611 } else {
4612 type = USTCTL_CHANNEL_HEADER_LARGE;
4613 }
4614
4615 chan_reg->nr_ctx_fields = nr_fields;
4616 chan_reg->ctx_fields = fields;
4617 chan_reg->header_type = type;
d0b96690 4618 } else {
7972aab2
DG
4619 /* Get current already assigned values. */
4620 type = chan_reg->header_type;
d5d629b5
DG
4621 free(fields);
4622 /* Set to NULL so the error path does not do a double free. */
4623 fields = NULL;
d0b96690 4624 }
7972aab2
DG
4625 /* Channel id is set during the object creation. */
4626 chan_id = chan_reg->chan_id;
d0b96690
DG
4627
4628 /* Append to metadata */
7972aab2
DG
4629 if (!chan_reg->metadata_dumped) {
4630 ret_code = ust_metadata_channel_statedump(registry, chan_reg);
d0b96690
DG
4631 if (ret_code) {
4632 ERR("Error appending channel metadata (errno = %d)", ret_code);
4633 goto reply;
4634 }
4635 }
4636
4637reply:
7972aab2
DG
4638 DBG3("UST app replying to register channel key %" PRIu64
4639 " with id %u, type: %d, ret: %d", chan_reg_key, chan_id, type,
4640 ret_code);
d0b96690
DG
4641
4642 ret = ustctl_reply_register_channel(sock, chan_id, type, ret_code);
4643 if (ret < 0) {
4644 if (ret != -EPIPE && ret != -LTTNG_UST_ERR_EXITING) {
4645 ERR("UST app reply channel failed with ret %d", ret);
4646 } else {
4647 DBG3("UST app reply channel failed. Application died");
4648 }
4649 goto error;
4650 }
4651
7972aab2
DG
4652 /* This channel registry registration is completed. */
4653 chan_reg->register_done = 1;
4654
d0b96690 4655error:
7972aab2 4656 pthread_mutex_unlock(&registry->lock);
d88aee68 4657error_rcu_unlock:
d0b96690 4658 rcu_read_unlock();
d5d629b5
DG
4659 if (ret) {
4660 free(fields);
4661 }
d0b96690
DG
4662 return ret;
4663}
4664
d88aee68
DG
4665/*
4666 * Add event to the UST channel registry. When the event is added to the
4667 * registry, the metadata is also created. Once done, this replies to the
4668 * application with the appropriate error code.
4669 *
4670 * The session UST registry lock is acquired in the function.
4671 *
4672 * On success 0 is returned else a negative value.
4673 */
d0b96690
DG
4674static int add_event_ust_registry(int sock, int sobjd, int cobjd, char *name,
4675 char *sig, size_t nr_fields, struct ustctl_field *fields, int loglevel,
4676 char *model_emf_uri)
4677{
4678 int ret, ret_code;
4679 uint32_t event_id = 0;
7972aab2 4680 uint64_t chan_reg_key;
d0b96690
DG
4681 struct ust_app *app;
4682 struct ust_app_channel *ua_chan;
4683 struct ust_app_session *ua_sess;
7972aab2 4684 struct ust_registry_session *registry;
d0b96690
DG
4685
4686 rcu_read_lock();
4687
4688 /* Lookup application. If not found, there is a code flow error. */
4689 app = find_app_by_notify_sock(sock);
d88aee68
DG
4690 if (!app) {
4691 DBG("Application socket %d is being teardown. Abort event notify",
4692 sock);
4693 ret = 0;
d5d629b5
DG
4694 free(sig);
4695 free(fields);
4696 free(model_emf_uri);
d88aee68
DG
4697 goto error_rcu_unlock;
4698 }
d0b96690 4699
4950b860 4700 /* Lookup channel by UST object descriptor. */
d0b96690 4701 ua_chan = find_channel_by_objd(app, cobjd);
4950b860
MD
4702 if (!ua_chan) {
4703 DBG("Application channel is being teardown. Abort event notify");
4704 ret = 0;
d5d629b5
DG
4705 free(sig);
4706 free(fields);
4707 free(model_emf_uri);
4950b860
MD
4708 goto error_rcu_unlock;
4709 }
4710
d0b96690
DG
4711 assert(ua_chan->session);
4712 ua_sess = ua_chan->session;
4713
7972aab2
DG
4714 registry = get_session_registry(ua_sess);
4715 assert(registry);
4716
4717 if (ua_sess->buffer_type == LTTNG_BUFFER_PER_UID) {
4718 chan_reg_key = ua_chan->tracing_channel_id;
4719 } else {
4720 chan_reg_key = ua_chan->key;
4721 }
4722
4723 pthread_mutex_lock(&registry->lock);
d0b96690 4724
d5d629b5
DG
4725 /*
4726 * From this point on, this call acquires the ownership of the sig, fields
4727 * and model_emf_uri meaning any free are done inside it if needed. These
4728 * three variables MUST NOT be read/write after this.
4729 */
7972aab2 4730 ret_code = ust_registry_create_event(registry, chan_reg_key,
45893984 4731 sobjd, cobjd, name, sig, nr_fields, fields, loglevel,
8494bda5
MD
4732 model_emf_uri, ua_sess->buffer_type, &event_id,
4733 app);
d0b96690
DG
4734
4735 /*
4736 * The return value is returned to ustctl so in case of an error, the
4737 * application can be notified. In case of an error, it's important not to
4738 * return a negative error or else the application will get closed.
4739 */
4740 ret = ustctl_reply_register_event(sock, event_id, ret_code);
4741 if (ret < 0) {
4742 if (ret != -EPIPE && ret != -LTTNG_UST_ERR_EXITING) {
4743 ERR("UST app reply event failed with ret %d", ret);
4744 } else {
4745 DBG3("UST app reply event failed. Application died");
4746 }
4747 /*
4748 * No need to wipe the create event since the application socket will
4749 * get close on error hence cleaning up everything by itself.
4750 */
4751 goto error;
4752 }
4753
7972aab2
DG
4754 DBG3("UST registry event %s with id %" PRId32 " added successfully",
4755 name, event_id);
d88aee68 4756
d0b96690 4757error:
7972aab2 4758 pthread_mutex_unlock(&registry->lock);
d88aee68 4759error_rcu_unlock:
d0b96690
DG
4760 rcu_read_unlock();
4761 return ret;
4762}
4763
d88aee68
DG
4764/*
4765 * Handle application notification through the given notify socket.
4766 *
4767 * Return 0 on success or else a negative value.
4768 */
d0b96690
DG
4769int ust_app_recv_notify(int sock)
4770{
4771 int ret;
4772 enum ustctl_notify_cmd cmd;
4773
4774 DBG3("UST app receiving notify from sock %d", sock);
4775
4776 ret = ustctl_recv_notify(sock, &cmd);
4777 if (ret < 0) {
4778 if (ret != -EPIPE && ret != -LTTNG_UST_ERR_EXITING) {
4779 ERR("UST app recv notify failed with ret %d", ret);
4780 } else {
4781 DBG3("UST app recv notify failed. Application died");
4782 }
4783 goto error;
4784 }
4785
4786 switch (cmd) {
4787 case USTCTL_NOTIFY_CMD_EVENT:
4788 {
4789 int sobjd, cobjd, loglevel;
4790 char name[LTTNG_UST_SYM_NAME_LEN], *sig, *model_emf_uri;
4791 size_t nr_fields;
4792 struct ustctl_field *fields;
4793
4794 DBG2("UST app ustctl register event received");
4795
4796 ret = ustctl_recv_register_event(sock, &sobjd, &cobjd, name, &loglevel,
4797 &sig, &nr_fields, &fields, &model_emf_uri);
4798 if (ret < 0) {
4799 if (ret != -EPIPE && ret != -LTTNG_UST_ERR_EXITING) {
4800 ERR("UST app recv event failed with ret %d", ret);
4801 } else {
4802 DBG3("UST app recv event failed. Application died");
4803 }
4804 goto error;
4805 }
4806
d5d629b5
DG
4807 /*
4808 * Add event to the UST registry coming from the notify socket. This
4809 * call will free if needed the sig, fields and model_emf_uri. This
4810 * code path loses the ownsership of these variables and transfer them
4811 * to the this function.
4812 */
d0b96690
DG
4813 ret = add_event_ust_registry(sock, sobjd, cobjd, name, sig, nr_fields,
4814 fields, loglevel, model_emf_uri);
4815 if (ret < 0) {
4816 goto error;
4817 }
4818
4819 break;
4820 }
4821 case USTCTL_NOTIFY_CMD_CHANNEL:
4822 {
4823 int sobjd, cobjd;
4824 size_t nr_fields;
4825 struct ustctl_field *fields;
4826
4827 DBG2("UST app ustctl register channel received");
4828
4829 ret = ustctl_recv_register_channel(sock, &sobjd, &cobjd, &nr_fields,
4830 &fields);
4831 if (ret < 0) {
4832 if (ret != -EPIPE && ret != -LTTNG_UST_ERR_EXITING) {
4833 ERR("UST app recv channel failed with ret %d", ret);
4834 } else {
4835 DBG3("UST app recv channel failed. Application died");
4836 }
4837 goto error;
4838 }
4839
d5d629b5
DG
4840 /*
4841 * The fields ownership are transfered to this function call meaning
4842 * that if needed it will be freed. After this, it's invalid to access
4843 * fields or clean it up.
4844 */
d0b96690
DG
4845 ret = reply_ust_register_channel(sock, sobjd, cobjd, nr_fields,
4846 fields);
4847 if (ret < 0) {
4848 goto error;
4849 }
4850
4851 break;
4852 }
4853 default:
4854 /* Should NEVER happen. */
4855 assert(0);
4856 }
4857
4858error:
4859 return ret;
4860}
d88aee68
DG
4861
4862/*
4863 * Once the notify socket hangs up, this is called. First, it tries to find the
4864 * corresponding application. On failure, the call_rcu to close the socket is
4865 * executed. If an application is found, it tries to delete it from the notify
4866 * socket hash table. Whathever the result, it proceeds to the call_rcu.
4867 *
4868 * Note that an object needs to be allocated here so on ENOMEM failure, the
4869 * call RCU is not done but the rest of the cleanup is.
4870 */
4871void ust_app_notify_sock_unregister(int sock)
4872{
4873 int err_enomem = 0;
4874 struct lttng_ht_iter iter;
4875 struct ust_app *app;
4876 struct ust_app_notify_sock_obj *obj;
4877
4878 assert(sock >= 0);
4879
4880 rcu_read_lock();
4881
4882 obj = zmalloc(sizeof(*obj));
4883 if (!obj) {
4884 /*
4885 * An ENOMEM is kind of uncool. If this strikes we continue the
4886 * procedure but the call_rcu will not be called. In this case, we
4887 * accept the fd leak rather than possibly creating an unsynchronized
4888 * state between threads.
4889 *
4890 * TODO: The notify object should be created once the notify socket is
4891 * registered and stored independantely from the ust app object. The
4892 * tricky part is to synchronize the teardown of the application and
4893 * this notify object. Let's keep that in mind so we can avoid this
4894 * kind of shenanigans with ENOMEM in the teardown path.
4895 */
4896 err_enomem = 1;
4897 } else {
4898 obj->fd = sock;
4899 }
4900
4901 DBG("UST app notify socket unregister %d", sock);
4902
4903 /*
4904 * Lookup application by notify socket. If this fails, this means that the
4905 * hash table delete has already been done by the application
4906 * unregistration process so we can safely close the notify socket in a
4907 * call RCU.
4908 */
4909 app = find_app_by_notify_sock(sock);
4910 if (!app) {
4911 goto close_socket;
4912 }
4913
4914 iter.iter.node = &app->notify_sock_n.node;
4915
4916 /*
4917 * Whatever happens here either we fail or succeed, in both cases we have
4918 * to close the socket after a grace period to continue to the call RCU
4919 * here. If the deletion is successful, the application is not visible
4920 * anymore by other threads and is it fails it means that it was already
4921 * deleted from the hash table so either way we just have to close the
4922 * socket.
4923 */
4924 (void) lttng_ht_del(ust_app_ht_by_notify_sock, &iter);
4925
4926close_socket:
4927 rcu_read_unlock();
4928
4929 /*
4930 * Close socket after a grace period to avoid for the socket to be reused
4931 * before the application object is freed creating potential race between
4932 * threads trying to add unique in the global hash table.
4933 */
4934 if (!err_enomem) {
4935 call_rcu(&obj->head, close_notify_sock_rcu);
4936 }
4937}
f45e313d
DG
4938
4939/*
4940 * Destroy a ust app data structure and free its memory.
4941 */
4942void ust_app_destroy(struct ust_app *app)
4943{
4944 if (!app) {
4945 return;
4946 }
4947
4948 call_rcu(&app->pid_n.head, delete_ust_app_rcu);
4949}
6dc3064a
DG
4950
4951/*
4952 * Take a snapshot for a given UST session. The snapshot is sent to the given
4953 * output.
4954 *
4955 * Return 0 on success or else a negative value.
4956 */
4957int ust_app_snapshot_record(struct ltt_ust_session *usess,
68808f4e 4958 struct snapshot_output *output, int wait, uint64_t max_stream_size)
6dc3064a
DG
4959{
4960 int ret = 0;
7badf927 4961 unsigned int snapshot_done = 0;
6dc3064a
DG
4962 struct lttng_ht_iter iter;
4963 struct ust_app *app;
af706bb7 4964 char pathname[PATH_MAX];
6dc3064a
DG
4965
4966 assert(usess);
4967 assert(output);
4968
4969 rcu_read_lock();
4970
8c924c7b
MD
4971 switch (usess->buffer_type) {
4972 case LTTNG_BUFFER_PER_UID:
4973 {
4974 struct buffer_reg_uid *reg;
6dc3064a 4975
8c924c7b
MD
4976 cds_list_for_each_entry(reg, &usess->buffer_reg_uid_list, lnode) {
4977 struct buffer_reg_channel *reg_chan;
4978 struct consumer_socket *socket;
6dc3064a 4979
8c924c7b
MD
4980 /* Get consumer socket to use to push the metadata.*/
4981 socket = consumer_find_socket_by_bitness(reg->bits_per_long,
4982 usess->consumer);
4983 if (!socket) {
4984 ret = -EINVAL;
4985 goto error;
4986 }
6dc3064a 4987
8c924c7b
MD
4988 memset(pathname, 0, sizeof(pathname));
4989 ret = snprintf(pathname, sizeof(pathname),
4990 DEFAULT_UST_TRACE_DIR "/" DEFAULT_UST_TRACE_UID_PATH,
4991 reg->uid, reg->bits_per_long);
4992 if (ret < 0) {
4993 PERROR("snprintf snapshot path");
4994 goto error;
4995 }
4996
4997 /* Add the UST default trace dir to path. */
4998 cds_lfht_for_each_entry(reg->registry->channels->ht, &iter.iter,
4999 reg_chan, node.node) {
68808f4e
DG
5000 ret = consumer_snapshot_channel(socket, reg_chan->consumer_key,
5001 output, 0, usess->uid, usess->gid, pathname, wait,
8c924c7b
MD
5002 max_stream_size);
5003 if (ret < 0) {
5004 goto error;
5005 }
5006 }
68808f4e
DG
5007 ret = consumer_snapshot_channel(socket,
5008 reg->registry->reg.ust->metadata_key, output, 1,
5009 usess->uid, usess->gid, pathname, wait, max_stream_size);
8c924c7b
MD
5010 if (ret < 0) {
5011 goto error;
5012 }
7badf927 5013 snapshot_done = 1;
af706bb7 5014 }
8c924c7b
MD
5015 break;
5016 }
5017 case LTTNG_BUFFER_PER_PID:
5018 {
5019 cds_lfht_for_each_entry(ust_app_ht->ht, &iter.iter, app, pid_n.node) {
5020 struct consumer_socket *socket;
5021 struct lttng_ht_iter chan_iter;
5022 struct ust_app_channel *ua_chan;
5023 struct ust_app_session *ua_sess;
5024 struct ust_registry_session *registry;
5025
5026 ua_sess = lookup_session_by_app(usess, app);
5027 if (!ua_sess) {
5028 /* Session not associated with this app. */
5029 continue;
5030 }
af706bb7 5031
8c924c7b
MD
5032 /* Get the right consumer socket for the application. */
5033 socket = consumer_find_socket_by_bitness(app->bits_per_long,
5034 output->consumer);
5035 if (!socket) {
5c786ded 5036 ret = -EINVAL;
5c786ded
JD
5037 goto error;
5038 }
5039
8c924c7b
MD
5040 /* Add the UST default trace dir to path. */
5041 memset(pathname, 0, sizeof(pathname));
5042 ret = snprintf(pathname, sizeof(pathname), DEFAULT_UST_TRACE_DIR "/%s",
5043 ua_sess->path);
6dc3064a 5044 if (ret < 0) {
8c924c7b 5045 PERROR("snprintf snapshot path");
6dc3064a
DG
5046 goto error;
5047 }
6dc3064a 5048
8c924c7b
MD
5049 cds_lfht_for_each_entry(ua_sess->channels->ht, &chan_iter.iter,
5050 ua_chan, node.node) {
68808f4e
DG
5051 ret = consumer_snapshot_channel(socket, ua_chan->key, output,
5052 0, ua_sess->euid, ua_sess->egid, pathname, wait,
8c924c7b
MD
5053 max_stream_size);
5054 if (ret < 0) {
5055 goto error;
5056 }
5057 }
5058
5059 registry = get_session_registry(ua_sess);
5060 assert(registry);
5061 ret = consumer_snapshot_channel(socket, registry->metadata_key, output,
5062 1, ua_sess->euid, ua_sess->egid, pathname, wait,
5063 max_stream_size);
5064 if (ret < 0) {
5065 goto error;
5066 }
7badf927 5067 snapshot_done = 1;
8c924c7b
MD
5068 }
5069 break;
5070 }
5071 default:
5072 assert(0);
5073 break;
6dc3064a
DG
5074 }
5075
7badf927
DG
5076 if (!snapshot_done) {
5077 /*
5078 * If no snapshot was made and we are not in the error path, this means
5079 * that there are no buffers thus no (prior) application to snapshot
5080 * data from so we have simply NO data.
5081 */
5082 ret = -ENODATA;
5083 }
5084
6dc3064a
DG
5085error:
5086 rcu_read_unlock();
5087 return ret;
5088}
5c786ded
JD
5089
5090/*
5091 * Return the number of streams for a UST session.
5092 */
5093unsigned int ust_app_get_nb_stream(struct ltt_ust_session *usess)
5094{
5095 unsigned int ret = 0;
5096 struct ust_app *app;
5097 struct lttng_ht_iter iter;
5098
5099 assert(usess);
5100
5101 switch (usess->buffer_type) {
5102 case LTTNG_BUFFER_PER_UID:
5103 {
5104 struct buffer_reg_uid *reg;
5105
5106 cds_list_for_each_entry(reg, &usess->buffer_reg_uid_list, lnode) {
5107 struct buffer_reg_channel *reg_chan;
5108
5109 cds_lfht_for_each_entry(reg->registry->channels->ht, &iter.iter,
5110 reg_chan, node.node) {
5111 ret += reg_chan->stream_count;
5112 }
5113 }
5114 break;
5115 }
5116 case LTTNG_BUFFER_PER_PID:
5117 {
5118 rcu_read_lock();
5119 cds_lfht_for_each_entry(ust_app_ht->ht, &iter.iter, app, pid_n.node) {
5120 struct ust_app_channel *ua_chan;
5121 struct ust_app_session *ua_sess;
5122 struct lttng_ht_iter chan_iter;
5123
5124 ua_sess = lookup_session_by_app(usess, app);
5125 if (!ua_sess) {
5126 /* Session not associated with this app. */
5127 continue;
5128 }
5129
5130 cds_lfht_for_each_entry(ua_sess->channels->ht, &chan_iter.iter,
5131 ua_chan, node.node) {
5132 ret += ua_chan->streams.count;
5133 }
5134 }
5135 rcu_read_unlock();
5136 break;
5137 }
5138 default:
5139 assert(0);
5140 break;
5141 }
5142
5143 return ret;
5144}
This page took 0.330175 seconds and 4 git commands to generate.