8807aac261583e164d14cd98b7bf7ed26c2ab45e
[lttng-tools.git] / src / bin / lttng-sessiond / ust-app.c
1 /*
2 * Copyright (C) 2011 David Goulet <david.goulet@polymtl.ca>
3 * Copyright (C) 2016 Jérémie Galarneau <jeremie.galarneau@efficios.com>
4 *
5 * SPDX-License-Identifier: GPL-2.0-only
6 *
7 */
8
9 #define _LGPL_SOURCE
10 #include <inttypes.h>
11 #include <pthread.h>
12 #include <stdio.h>
13 #include <stdlib.h>
14 #include <string.h>
15 #include <sys/stat.h>
16 #include <sys/types.h>
17 #include <unistd.h>
18 #include <urcu/compiler.h>
19 #include <signal.h>
20
21 #include <common/compat/errno.h>
22 #include <common/common.h>
23 #include <common/sessiond-comm/sessiond-comm.h>
24
25 #include "buffer-registry.h"
26 #include "fd-limit.h"
27 #include "health-sessiond.h"
28 #include "ust-app.h"
29 #include "ust-consumer.h"
30 #include "lttng-ust-ctl.h"
31 #include "lttng-ust-error.h"
32 #include "utils.h"
33 #include "session.h"
34 #include "lttng-sessiond.h"
35 #include "notification-thread-commands.h"
36 #include "rotate.h"
37
38 struct lttng_ht *ust_app_ht;
39 struct lttng_ht *ust_app_ht_by_sock;
40 struct lttng_ht *ust_app_ht_by_notify_sock;
41
42 static
43 int ust_app_flush_app_session(struct ust_app *app, struct ust_app_session *ua_sess);
44
45 /* Next available channel key. Access under next_channel_key_lock. */
46 static uint64_t _next_channel_key;
47 static pthread_mutex_t next_channel_key_lock = PTHREAD_MUTEX_INITIALIZER;
48
49 /* Next available session ID. Access under next_session_id_lock. */
50 static uint64_t _next_session_id;
51 static pthread_mutex_t next_session_id_lock = PTHREAD_MUTEX_INITIALIZER;
52
53 /*
54 * Return the incremented value of next_channel_key.
55 */
56 static uint64_t get_next_channel_key(void)
57 {
58 uint64_t ret;
59
60 pthread_mutex_lock(&next_channel_key_lock);
61 ret = ++_next_channel_key;
62 pthread_mutex_unlock(&next_channel_key_lock);
63 return ret;
64 }
65
66 /*
67 * Return the atomically incremented value of next_session_id.
68 */
69 static uint64_t get_next_session_id(void)
70 {
71 uint64_t ret;
72
73 pthread_mutex_lock(&next_session_id_lock);
74 ret = ++_next_session_id;
75 pthread_mutex_unlock(&next_session_id_lock);
76 return ret;
77 }
78
79 static void copy_channel_attr_to_ustctl(
80 struct ustctl_consumer_channel_attr *attr,
81 struct lttng_ust_channel_attr *uattr)
82 {
83 /* Copy event attributes since the layout is different. */
84 attr->subbuf_size = uattr->subbuf_size;
85 attr->num_subbuf = uattr->num_subbuf;
86 attr->overwrite = uattr->overwrite;
87 attr->switch_timer_interval = uattr->switch_timer_interval;
88 attr->read_timer_interval = uattr->read_timer_interval;
89 attr->output = uattr->output;
90 attr->blocking_timeout = uattr->u.s.blocking_timeout;
91 }
92
93 /*
94 * Match function for the hash table lookup.
95 *
96 * It matches an ust app event based on three attributes which are the event
97 * name, the filter bytecode and the loglevel.
98 */
99 static int ht_match_ust_app_event(struct cds_lfht_node *node, const void *_key)
100 {
101 struct ust_app_event *event;
102 const struct ust_app_ht_key *key;
103 int ev_loglevel_value;
104
105 assert(node);
106 assert(_key);
107
108 event = caa_container_of(node, struct ust_app_event, node.node);
109 key = _key;
110 ev_loglevel_value = event->attr.loglevel;
111
112 /* Match the 4 elements of the key: name, filter, loglevel, exclusions */
113
114 /* Event name */
115 if (strncmp(event->attr.name, key->name, sizeof(event->attr.name)) != 0) {
116 goto no_match;
117 }
118
119 /* Event loglevel. */
120 if (ev_loglevel_value != key->loglevel_type) {
121 if (event->attr.loglevel_type == LTTNG_UST_LOGLEVEL_ALL
122 && key->loglevel_type == 0 &&
123 ev_loglevel_value == -1) {
124 /*
125 * Match is accepted. This is because on event creation, the
126 * loglevel is set to -1 if the event loglevel type is ALL so 0 and
127 * -1 are accepted for this loglevel type since 0 is the one set by
128 * the API when receiving an enable event.
129 */
130 } else {
131 goto no_match;
132 }
133 }
134
135 /* One of the filters is NULL, fail. */
136 if ((key->filter && !event->filter) || (!key->filter && event->filter)) {
137 goto no_match;
138 }
139
140 if (key->filter && event->filter) {
141 /* Both filters exists, check length followed by the bytecode. */
142 if (event->filter->len != key->filter->len ||
143 memcmp(event->filter->data, key->filter->data,
144 event->filter->len) != 0) {
145 goto no_match;
146 }
147 }
148
149 /* One of the exclusions is NULL, fail. */
150 if ((key->exclusion && !event->exclusion) || (!key->exclusion && event->exclusion)) {
151 goto no_match;
152 }
153
154 if (key->exclusion && event->exclusion) {
155 /* Both exclusions exists, check count followed by the names. */
156 if (event->exclusion->count != key->exclusion->count ||
157 memcmp(event->exclusion->names, key->exclusion->names,
158 event->exclusion->count * LTTNG_UST_SYM_NAME_LEN) != 0) {
159 goto no_match;
160 }
161 }
162
163
164 /* Match. */
165 return 1;
166
167 no_match:
168 return 0;
169 }
170
171 /*
172 * Unique add of an ust app event in the given ht. This uses the custom
173 * ht_match_ust_app_event match function and the event name as hash.
174 */
175 static void add_unique_ust_app_event(struct ust_app_channel *ua_chan,
176 struct ust_app_event *event)
177 {
178 struct cds_lfht_node *node_ptr;
179 struct ust_app_ht_key key;
180 struct lttng_ht *ht;
181
182 assert(ua_chan);
183 assert(ua_chan->events);
184 assert(event);
185
186 ht = ua_chan->events;
187 key.name = event->attr.name;
188 key.filter = event->filter;
189 key.loglevel_type = event->attr.loglevel;
190 key.exclusion = event->exclusion;
191
192 node_ptr = cds_lfht_add_unique(ht->ht,
193 ht->hash_fct(event->node.key, lttng_ht_seed),
194 ht_match_ust_app_event, &key, &event->node.node);
195 assert(node_ptr == &event->node.node);
196 }
197
198 /*
199 * Close the notify socket from the given RCU head object. This MUST be called
200 * through a call_rcu().
201 */
202 static void close_notify_sock_rcu(struct rcu_head *head)
203 {
204 int ret;
205 struct ust_app_notify_sock_obj *obj =
206 caa_container_of(head, struct ust_app_notify_sock_obj, head);
207
208 /* Must have a valid fd here. */
209 assert(obj->fd >= 0);
210
211 ret = close(obj->fd);
212 if (ret) {
213 ERR("close notify sock %d RCU", obj->fd);
214 }
215 lttng_fd_put(LTTNG_FD_APPS, 1);
216
217 free(obj);
218 }
219
220 /*
221 * Return the session registry according to the buffer type of the given
222 * session.
223 *
224 * A registry per UID object MUST exists before calling this function or else
225 * it assert() if not found. RCU read side lock must be acquired.
226 */
227 static struct ust_registry_session *get_session_registry(
228 struct ust_app_session *ua_sess)
229 {
230 struct ust_registry_session *registry = NULL;
231
232 assert(ua_sess);
233
234 switch (ua_sess->buffer_type) {
235 case LTTNG_BUFFER_PER_PID:
236 {
237 struct buffer_reg_pid *reg_pid = buffer_reg_pid_find(ua_sess->id);
238 if (!reg_pid) {
239 goto error;
240 }
241 registry = reg_pid->registry->reg.ust;
242 break;
243 }
244 case LTTNG_BUFFER_PER_UID:
245 {
246 struct buffer_reg_uid *reg_uid = buffer_reg_uid_find(
247 ua_sess->tracing_id, ua_sess->bits_per_long,
248 lttng_credentials_get_uid(&ua_sess->real_credentials));
249 if (!reg_uid) {
250 goto error;
251 }
252 registry = reg_uid->registry->reg.ust;
253 break;
254 }
255 default:
256 assert(0);
257 };
258
259 error:
260 return registry;
261 }
262
263 /*
264 * Delete ust context safely. RCU read lock must be held before calling
265 * this function.
266 */
267 static
268 void delete_ust_app_ctx(int sock, struct ust_app_ctx *ua_ctx,
269 struct ust_app *app)
270 {
271 int ret;
272
273 assert(ua_ctx);
274
275 if (ua_ctx->obj) {
276 pthread_mutex_lock(&app->sock_lock);
277 ret = ustctl_release_object(sock, ua_ctx->obj);
278 pthread_mutex_unlock(&app->sock_lock);
279 if (ret < 0 && ret != -EPIPE && ret != -LTTNG_UST_ERR_EXITING) {
280 ERR("UST app sock %d release ctx obj handle %d failed with ret %d",
281 sock, ua_ctx->obj->handle, ret);
282 }
283 free(ua_ctx->obj);
284 }
285 free(ua_ctx);
286 }
287
288 /*
289 * Delete ust app event safely. RCU read lock must be held before calling
290 * this function.
291 */
292 static
293 void delete_ust_app_event(int sock, struct ust_app_event *ua_event,
294 struct ust_app *app)
295 {
296 int ret;
297
298 assert(ua_event);
299
300 free(ua_event->filter);
301 if (ua_event->exclusion != NULL)
302 free(ua_event->exclusion);
303 if (ua_event->obj != NULL) {
304 pthread_mutex_lock(&app->sock_lock);
305 ret = ustctl_release_object(sock, ua_event->obj);
306 pthread_mutex_unlock(&app->sock_lock);
307 if (ret < 0 && ret != -EPIPE && ret != -LTTNG_UST_ERR_EXITING) {
308 ERR("UST app sock %d release event obj failed with ret %d",
309 sock, ret);
310 }
311 free(ua_event->obj);
312 }
313 free(ua_event);
314 }
315
316 /*
317 * Release ust data object of the given stream.
318 *
319 * Return 0 on success or else a negative value.
320 */
321 static int release_ust_app_stream(int sock, struct ust_app_stream *stream,
322 struct ust_app *app)
323 {
324 int ret = 0;
325
326 assert(stream);
327
328 if (stream->obj) {
329 pthread_mutex_lock(&app->sock_lock);
330 ret = ustctl_release_object(sock, stream->obj);
331 pthread_mutex_unlock(&app->sock_lock);
332 if (ret < 0 && ret != -EPIPE && ret != -LTTNG_UST_ERR_EXITING) {
333 ERR("UST app sock %d release stream obj failed with ret %d",
334 sock, ret);
335 }
336 lttng_fd_put(LTTNG_FD_APPS, 2);
337 free(stream->obj);
338 }
339
340 return ret;
341 }
342
343 /*
344 * Delete ust app stream safely. RCU read lock must be held before calling
345 * this function.
346 */
347 static
348 void delete_ust_app_stream(int sock, struct ust_app_stream *stream,
349 struct ust_app *app)
350 {
351 assert(stream);
352
353 (void) release_ust_app_stream(sock, stream, app);
354 free(stream);
355 }
356
357 /*
358 * We need to execute ht_destroy outside of RCU read-side critical
359 * section and outside of call_rcu thread, so we postpone its execution
360 * using ht_cleanup_push. It is simpler than to change the semantic of
361 * the many callers of delete_ust_app_session().
362 */
363 static
364 void delete_ust_app_channel_rcu(struct rcu_head *head)
365 {
366 struct ust_app_channel *ua_chan =
367 caa_container_of(head, struct ust_app_channel, rcu_head);
368
369 ht_cleanup_push(ua_chan->ctx);
370 ht_cleanup_push(ua_chan->events);
371 free(ua_chan);
372 }
373
374 /*
375 * Extract the lost packet or discarded events counter when the channel is
376 * being deleted and store the value in the parent channel so we can
377 * access it from lttng list and at stop/destroy.
378 *
379 * The session list lock must be held by the caller.
380 */
381 static
382 void save_per_pid_lost_discarded_counters(struct ust_app_channel *ua_chan)
383 {
384 uint64_t discarded = 0, lost = 0;
385 struct ltt_session *session;
386 struct ltt_ust_channel *uchan;
387
388 if (ua_chan->attr.type != LTTNG_UST_CHAN_PER_CPU) {
389 return;
390 }
391
392 rcu_read_lock();
393 session = session_find_by_id(ua_chan->session->tracing_id);
394 if (!session || !session->ust_session) {
395 /*
396 * Not finding the session is not an error because there are
397 * multiple ways the channels can be torn down.
398 *
399 * 1) The session daemon can initiate the destruction of the
400 * ust app session after receiving a destroy command or
401 * during its shutdown/teardown.
402 * 2) The application, since we are in per-pid tracing, is
403 * unregistering and tearing down its ust app session.
404 *
405 * Both paths are protected by the session list lock which
406 * ensures that the accounting of lost packets and discarded
407 * events is done exactly once. The session is then unpublished
408 * from the session list, resulting in this condition.
409 */
410 goto end;
411 }
412
413 if (ua_chan->attr.overwrite) {
414 consumer_get_lost_packets(ua_chan->session->tracing_id,
415 ua_chan->key, session->ust_session->consumer,
416 &lost);
417 } else {
418 consumer_get_discarded_events(ua_chan->session->tracing_id,
419 ua_chan->key, session->ust_session->consumer,
420 &discarded);
421 }
422 uchan = trace_ust_find_channel_by_name(
423 session->ust_session->domain_global.channels,
424 ua_chan->name);
425 if (!uchan) {
426 ERR("Missing UST channel to store discarded counters");
427 goto end;
428 }
429
430 uchan->per_pid_closed_app_discarded += discarded;
431 uchan->per_pid_closed_app_lost += lost;
432
433 end:
434 rcu_read_unlock();
435 if (session) {
436 session_put(session);
437 }
438 }
439
440 /*
441 * Delete ust app channel safely. RCU read lock must be held before calling
442 * this function.
443 *
444 * The session list lock must be held by the caller.
445 */
446 static
447 void delete_ust_app_channel(int sock, struct ust_app_channel *ua_chan,
448 struct ust_app *app)
449 {
450 int ret;
451 struct lttng_ht_iter iter;
452 struct ust_app_event *ua_event;
453 struct ust_app_ctx *ua_ctx;
454 struct ust_app_stream *stream, *stmp;
455 struct ust_registry_session *registry;
456
457 assert(ua_chan);
458
459 DBG3("UST app deleting channel %s", ua_chan->name);
460
461 /* Wipe stream */
462 cds_list_for_each_entry_safe(stream, stmp, &ua_chan->streams.head, list) {
463 cds_list_del(&stream->list);
464 delete_ust_app_stream(sock, stream, app);
465 }
466
467 /* Wipe context */
468 cds_lfht_for_each_entry(ua_chan->ctx->ht, &iter.iter, ua_ctx, node.node) {
469 cds_list_del(&ua_ctx->list);
470 ret = lttng_ht_del(ua_chan->ctx, &iter);
471 assert(!ret);
472 delete_ust_app_ctx(sock, ua_ctx, app);
473 }
474
475 /* Wipe events */
476 cds_lfht_for_each_entry(ua_chan->events->ht, &iter.iter, ua_event,
477 node.node) {
478 ret = lttng_ht_del(ua_chan->events, &iter);
479 assert(!ret);
480 delete_ust_app_event(sock, ua_event, app);
481 }
482
483 if (ua_chan->session->buffer_type == LTTNG_BUFFER_PER_PID) {
484 /* Wipe and free registry from session registry. */
485 registry = get_session_registry(ua_chan->session);
486 if (registry) {
487 ust_registry_channel_del_free(registry, ua_chan->key,
488 sock >= 0);
489 }
490 /*
491 * A negative socket can be used by the caller when
492 * cleaning-up a ua_chan in an error path. Skip the
493 * accounting in this case.
494 */
495 if (sock >= 0) {
496 save_per_pid_lost_discarded_counters(ua_chan);
497 }
498 }
499
500 if (ua_chan->obj != NULL) {
501 /* Remove channel from application UST object descriptor. */
502 iter.iter.node = &ua_chan->ust_objd_node.node;
503 ret = lttng_ht_del(app->ust_objd, &iter);
504 assert(!ret);
505 pthread_mutex_lock(&app->sock_lock);
506 ret = ustctl_release_object(sock, ua_chan->obj);
507 pthread_mutex_unlock(&app->sock_lock);
508 if (ret < 0 && ret != -EPIPE && ret != -LTTNG_UST_ERR_EXITING) {
509 ERR("UST app sock %d release channel obj failed with ret %d",
510 sock, ret);
511 }
512 lttng_fd_put(LTTNG_FD_APPS, 1);
513 free(ua_chan->obj);
514 }
515 call_rcu(&ua_chan->rcu_head, delete_ust_app_channel_rcu);
516 }
517
518 int ust_app_register_done(struct ust_app *app)
519 {
520 int ret;
521
522 pthread_mutex_lock(&app->sock_lock);
523 ret = ustctl_register_done(app->sock);
524 pthread_mutex_unlock(&app->sock_lock);
525 return ret;
526 }
527
528 int ust_app_release_object(struct ust_app *app, struct lttng_ust_object_data *data)
529 {
530 int ret, sock;
531
532 if (app) {
533 pthread_mutex_lock(&app->sock_lock);
534 sock = app->sock;
535 } else {
536 sock = -1;
537 }
538 ret = ustctl_release_object(sock, data);
539 if (app) {
540 pthread_mutex_unlock(&app->sock_lock);
541 }
542 return ret;
543 }
544
545 /*
546 * Push metadata to consumer socket.
547 *
548 * RCU read-side lock must be held to guarantee existance of socket.
549 * Must be called with the ust app session lock held.
550 * Must be called with the registry lock held.
551 *
552 * On success, return the len of metadata pushed or else a negative value.
553 * Returning a -EPIPE return value means we could not send the metadata,
554 * but it can be caused by recoverable errors (e.g. the application has
555 * terminated concurrently).
556 */
557 ssize_t ust_app_push_metadata(struct ust_registry_session *registry,
558 struct consumer_socket *socket, int send_zero_data)
559 {
560 int ret;
561 char *metadata_str = NULL;
562 size_t len, offset, new_metadata_len_sent;
563 ssize_t ret_val;
564 uint64_t metadata_key, metadata_version;
565
566 assert(registry);
567 assert(socket);
568
569 metadata_key = registry->metadata_key;
570
571 /*
572 * Means that no metadata was assigned to the session. This can
573 * happens if no start has been done previously.
574 */
575 if (!metadata_key) {
576 return 0;
577 }
578
579 offset = registry->metadata_len_sent;
580 len = registry->metadata_len - registry->metadata_len_sent;
581 new_metadata_len_sent = registry->metadata_len;
582 metadata_version = registry->metadata_version;
583 if (len == 0) {
584 DBG3("No metadata to push for metadata key %" PRIu64,
585 registry->metadata_key);
586 ret_val = len;
587 if (send_zero_data) {
588 DBG("No metadata to push");
589 goto push_data;
590 }
591 goto end;
592 }
593
594 /* Allocate only what we have to send. */
595 metadata_str = zmalloc(len);
596 if (!metadata_str) {
597 PERROR("zmalloc ust app metadata string");
598 ret_val = -ENOMEM;
599 goto error;
600 }
601 /* Copy what we haven't sent out. */
602 memcpy(metadata_str, registry->metadata + offset, len);
603
604 push_data:
605 pthread_mutex_unlock(&registry->lock);
606 /*
607 * We need to unlock the registry while we push metadata to
608 * break a circular dependency between the consumerd metadata
609 * lock and the sessiond registry lock. Indeed, pushing metadata
610 * to the consumerd awaits that it gets pushed all the way to
611 * relayd, but doing so requires grabbing the metadata lock. If
612 * a concurrent metadata request is being performed by
613 * consumerd, this can try to grab the registry lock on the
614 * sessiond while holding the metadata lock on the consumer
615 * daemon. Those push and pull schemes are performed on two
616 * different bidirectionnal communication sockets.
617 */
618 ret = consumer_push_metadata(socket, metadata_key,
619 metadata_str, len, offset, metadata_version);
620 pthread_mutex_lock(&registry->lock);
621 if (ret < 0) {
622 /*
623 * There is an acceptable race here between the registry
624 * metadata key assignment and the creation on the
625 * consumer. The session daemon can concurrently push
626 * metadata for this registry while being created on the
627 * consumer since the metadata key of the registry is
628 * assigned *before* it is setup to avoid the consumer
629 * to ask for metadata that could possibly be not found
630 * in the session daemon.
631 *
632 * The metadata will get pushed either by the session
633 * being stopped or the consumer requesting metadata if
634 * that race is triggered.
635 */
636 if (ret == -LTTCOMM_CONSUMERD_CHANNEL_FAIL) {
637 ret = 0;
638 } else {
639 ERR("Error pushing metadata to consumer");
640 }
641 ret_val = ret;
642 goto error_push;
643 } else {
644 /*
645 * Metadata may have been concurrently pushed, since
646 * we're not holding the registry lock while pushing to
647 * consumer. This is handled by the fact that we send
648 * the metadata content, size, and the offset at which
649 * that metadata belongs. This may arrive out of order
650 * on the consumer side, and the consumer is able to
651 * deal with overlapping fragments. The consumer
652 * supports overlapping fragments, which must be
653 * contiguous starting from offset 0. We keep the
654 * largest metadata_len_sent value of the concurrent
655 * send.
656 */
657 registry->metadata_len_sent =
658 max_t(size_t, registry->metadata_len_sent,
659 new_metadata_len_sent);
660 }
661 free(metadata_str);
662 return len;
663
664 end:
665 error:
666 if (ret_val) {
667 /*
668 * On error, flag the registry that the metadata is
669 * closed. We were unable to push anything and this
670 * means that either the consumer is not responding or
671 * the metadata cache has been destroyed on the
672 * consumer.
673 */
674 registry->metadata_closed = 1;
675 }
676 error_push:
677 free(metadata_str);
678 return ret_val;
679 }
680
681 /*
682 * For a given application and session, push metadata to consumer.
683 * Either sock or consumer is required : if sock is NULL, the default
684 * socket to send the metadata is retrieved from consumer, if sock
685 * is not NULL we use it to send the metadata.
686 * RCU read-side lock must be held while calling this function,
687 * therefore ensuring existance of registry. It also ensures existance
688 * of socket throughout this function.
689 *
690 * Return 0 on success else a negative error.
691 * Returning a -EPIPE return value means we could not send the metadata,
692 * but it can be caused by recoverable errors (e.g. the application has
693 * terminated concurrently).
694 */
695 static int push_metadata(struct ust_registry_session *registry,
696 struct consumer_output *consumer)
697 {
698 int ret_val;
699 ssize_t ret;
700 struct consumer_socket *socket;
701
702 assert(registry);
703 assert(consumer);
704
705 pthread_mutex_lock(&registry->lock);
706 if (registry->metadata_closed) {
707 ret_val = -EPIPE;
708 goto error;
709 }
710
711 /* Get consumer socket to use to push the metadata.*/
712 socket = consumer_find_socket_by_bitness(registry->bits_per_long,
713 consumer);
714 if (!socket) {
715 ret_val = -1;
716 goto error;
717 }
718
719 ret = ust_app_push_metadata(registry, socket, 0);
720 if (ret < 0) {
721 ret_val = ret;
722 goto error;
723 }
724 pthread_mutex_unlock(&registry->lock);
725 return 0;
726
727 error:
728 pthread_mutex_unlock(&registry->lock);
729 return ret_val;
730 }
731
732 /*
733 * Send to the consumer a close metadata command for the given session. Once
734 * done, the metadata channel is deleted and the session metadata pointer is
735 * nullified. The session lock MUST be held unless the application is
736 * in the destroy path.
737 *
738 * Do not hold the registry lock while communicating with the consumerd, because
739 * doing so causes inter-process deadlocks between consumerd and sessiond with
740 * the metadata request notification.
741 *
742 * Return 0 on success else a negative value.
743 */
744 static int close_metadata(struct ust_registry_session *registry,
745 struct consumer_output *consumer)
746 {
747 int ret;
748 struct consumer_socket *socket;
749 uint64_t metadata_key;
750 bool registry_was_already_closed;
751
752 assert(registry);
753 assert(consumer);
754
755 rcu_read_lock();
756
757 pthread_mutex_lock(&registry->lock);
758 metadata_key = registry->metadata_key;
759 registry_was_already_closed = registry->metadata_closed;
760 if (metadata_key != 0) {
761 /*
762 * Metadata closed. Even on error this means that the consumer
763 * is not responding or not found so either way a second close
764 * should NOT be emit for this registry.
765 */
766 registry->metadata_closed = 1;
767 }
768 pthread_mutex_unlock(&registry->lock);
769
770 if (metadata_key == 0 || registry_was_already_closed) {
771 ret = 0;
772 goto end;
773 }
774
775 /* Get consumer socket to use to push the metadata.*/
776 socket = consumer_find_socket_by_bitness(registry->bits_per_long,
777 consumer);
778 if (!socket) {
779 ret = -1;
780 goto end;
781 }
782
783 ret = consumer_close_metadata(socket, metadata_key);
784 if (ret < 0) {
785 goto end;
786 }
787
788 end:
789 rcu_read_unlock();
790 return ret;
791 }
792
793 /*
794 * We need to execute ht_destroy outside of RCU read-side critical
795 * section and outside of call_rcu thread, so we postpone its execution
796 * using ht_cleanup_push. It is simpler than to change the semantic of
797 * the many callers of delete_ust_app_session().
798 */
799 static
800 void delete_ust_app_session_rcu(struct rcu_head *head)
801 {
802 struct ust_app_session *ua_sess =
803 caa_container_of(head, struct ust_app_session, rcu_head);
804
805 ht_cleanup_push(ua_sess->channels);
806 free(ua_sess);
807 }
808
809 /*
810 * Delete ust app session safely. RCU read lock must be held before calling
811 * this function.
812 *
813 * The session list lock must be held by the caller.
814 */
815 static
816 void delete_ust_app_session(int sock, struct ust_app_session *ua_sess,
817 struct ust_app *app)
818 {
819 int ret;
820 struct lttng_ht_iter iter;
821 struct ust_app_channel *ua_chan;
822 struct ust_registry_session *registry;
823
824 assert(ua_sess);
825
826 pthread_mutex_lock(&ua_sess->lock);
827
828 assert(!ua_sess->deleted);
829 ua_sess->deleted = true;
830
831 registry = get_session_registry(ua_sess);
832 /* Registry can be null on error path during initialization. */
833 if (registry) {
834 /* Push metadata for application before freeing the application. */
835 (void) push_metadata(registry, ua_sess->consumer);
836
837 /*
838 * Don't ask to close metadata for global per UID buffers. Close
839 * metadata only on destroy trace session in this case. Also, the
840 * previous push metadata could have flag the metadata registry to
841 * close so don't send a close command if closed.
842 */
843 if (ua_sess->buffer_type != LTTNG_BUFFER_PER_UID) {
844 /* And ask to close it for this session registry. */
845 (void) close_metadata(registry, ua_sess->consumer);
846 }
847 }
848
849 cds_lfht_for_each_entry(ua_sess->channels->ht, &iter.iter, ua_chan,
850 node.node) {
851 ret = lttng_ht_del(ua_sess->channels, &iter);
852 assert(!ret);
853 delete_ust_app_channel(sock, ua_chan, app);
854 }
855
856 /* In case of per PID, the registry is kept in the session. */
857 if (ua_sess->buffer_type == LTTNG_BUFFER_PER_PID) {
858 struct buffer_reg_pid *reg_pid = buffer_reg_pid_find(ua_sess->id);
859 if (reg_pid) {
860 /*
861 * Registry can be null on error path during
862 * initialization.
863 */
864 buffer_reg_pid_remove(reg_pid);
865 buffer_reg_pid_destroy(reg_pid);
866 }
867 }
868
869 if (ua_sess->handle != -1) {
870 pthread_mutex_lock(&app->sock_lock);
871 ret = ustctl_release_handle(sock, ua_sess->handle);
872 pthread_mutex_unlock(&app->sock_lock);
873 if (ret < 0 && ret != -EPIPE && ret != -LTTNG_UST_ERR_EXITING) {
874 ERR("UST app sock %d release session handle failed with ret %d",
875 sock, ret);
876 }
877 /* Remove session from application UST object descriptor. */
878 iter.iter.node = &ua_sess->ust_objd_node.node;
879 ret = lttng_ht_del(app->ust_sessions_objd, &iter);
880 assert(!ret);
881 }
882
883 pthread_mutex_unlock(&ua_sess->lock);
884
885 consumer_output_put(ua_sess->consumer);
886
887 call_rcu(&ua_sess->rcu_head, delete_ust_app_session_rcu);
888 }
889
890 /*
891 * Delete a traceable application structure from the global list. Never call
892 * this function outside of a call_rcu call.
893 *
894 * RCU read side lock should _NOT_ be held when calling this function.
895 */
896 static
897 void delete_ust_app(struct ust_app *app)
898 {
899 int ret, sock;
900 struct ust_app_session *ua_sess, *tmp_ua_sess;
901
902 /*
903 * The session list lock must be held during this function to guarantee
904 * the existence of ua_sess.
905 */
906 session_lock_list();
907 /* Delete ust app sessions info */
908 sock = app->sock;
909 app->sock = -1;
910
911 /* Wipe sessions */
912 cds_list_for_each_entry_safe(ua_sess, tmp_ua_sess, &app->teardown_head,
913 teardown_node) {
914 /* Free every object in the session and the session. */
915 rcu_read_lock();
916 delete_ust_app_session(sock, ua_sess, app);
917 rcu_read_unlock();
918 }
919
920 ht_cleanup_push(app->sessions);
921 ht_cleanup_push(app->ust_sessions_objd);
922 ht_cleanup_push(app->ust_objd);
923
924 /*
925 * Wait until we have deleted the application from the sock hash table
926 * before closing this socket, otherwise an application could re-use the
927 * socket ID and race with the teardown, using the same hash table entry.
928 *
929 * It's OK to leave the close in call_rcu. We want it to stay unique for
930 * all RCU readers that could run concurrently with unregister app,
931 * therefore we _need_ to only close that socket after a grace period. So
932 * it should stay in this RCU callback.
933 *
934 * This close() is a very important step of the synchronization model so
935 * every modification to this function must be carefully reviewed.
936 */
937 ret = close(sock);
938 if (ret) {
939 PERROR("close");
940 }
941 lttng_fd_put(LTTNG_FD_APPS, 1);
942
943 DBG2("UST app pid %d deleted", app->pid);
944 free(app);
945 session_unlock_list();
946 }
947
948 /*
949 * URCU intermediate call to delete an UST app.
950 */
951 static
952 void delete_ust_app_rcu(struct rcu_head *head)
953 {
954 struct lttng_ht_node_ulong *node =
955 caa_container_of(head, struct lttng_ht_node_ulong, head);
956 struct ust_app *app =
957 caa_container_of(node, struct ust_app, pid_n);
958
959 DBG3("Call RCU deleting app PID %d", app->pid);
960 delete_ust_app(app);
961 }
962
963 /*
964 * Delete the session from the application ht and delete the data structure by
965 * freeing every object inside and releasing them.
966 *
967 * The session list lock must be held by the caller.
968 */
969 static void destroy_app_session(struct ust_app *app,
970 struct ust_app_session *ua_sess)
971 {
972 int ret;
973 struct lttng_ht_iter iter;
974
975 assert(app);
976 assert(ua_sess);
977
978 iter.iter.node = &ua_sess->node.node;
979 ret = lttng_ht_del(app->sessions, &iter);
980 if (ret) {
981 /* Already scheduled for teardown. */
982 goto end;
983 }
984
985 /* Once deleted, free the data structure. */
986 delete_ust_app_session(app->sock, ua_sess, app);
987
988 end:
989 return;
990 }
991
992 /*
993 * Alloc new UST app session.
994 */
995 static
996 struct ust_app_session *alloc_ust_app_session(void)
997 {
998 struct ust_app_session *ua_sess;
999
1000 /* Init most of the default value by allocating and zeroing */
1001 ua_sess = zmalloc(sizeof(struct ust_app_session));
1002 if (ua_sess == NULL) {
1003 PERROR("malloc");
1004 goto error_free;
1005 }
1006
1007 ua_sess->handle = -1;
1008 ua_sess->channels = lttng_ht_new(0, LTTNG_HT_TYPE_STRING);
1009 ua_sess->metadata_attr.type = LTTNG_UST_CHAN_METADATA;
1010 pthread_mutex_init(&ua_sess->lock, NULL);
1011
1012 return ua_sess;
1013
1014 error_free:
1015 return NULL;
1016 }
1017
1018 /*
1019 * Alloc new UST app channel.
1020 */
1021 static
1022 struct ust_app_channel *alloc_ust_app_channel(const char *name,
1023 struct ust_app_session *ua_sess,
1024 struct lttng_ust_channel_attr *attr)
1025 {
1026 struct ust_app_channel *ua_chan;
1027
1028 /* Init most of the default value by allocating and zeroing */
1029 ua_chan = zmalloc(sizeof(struct ust_app_channel));
1030 if (ua_chan == NULL) {
1031 PERROR("malloc");
1032 goto error;
1033 }
1034
1035 /* Setup channel name */
1036 strncpy(ua_chan->name, name, sizeof(ua_chan->name));
1037 ua_chan->name[sizeof(ua_chan->name) - 1] = '\0';
1038
1039 ua_chan->enabled = 1;
1040 ua_chan->handle = -1;
1041 ua_chan->session = ua_sess;
1042 ua_chan->key = get_next_channel_key();
1043 ua_chan->ctx = lttng_ht_new(0, LTTNG_HT_TYPE_ULONG);
1044 ua_chan->events = lttng_ht_new(0, LTTNG_HT_TYPE_STRING);
1045 lttng_ht_node_init_str(&ua_chan->node, ua_chan->name);
1046
1047 CDS_INIT_LIST_HEAD(&ua_chan->streams.head);
1048 CDS_INIT_LIST_HEAD(&ua_chan->ctx_list);
1049
1050 /* Copy attributes */
1051 if (attr) {
1052 /* Translate from lttng_ust_channel to ustctl_consumer_channel_attr. */
1053 ua_chan->attr.subbuf_size = attr->subbuf_size;
1054 ua_chan->attr.num_subbuf = attr->num_subbuf;
1055 ua_chan->attr.overwrite = attr->overwrite;
1056 ua_chan->attr.switch_timer_interval = attr->switch_timer_interval;
1057 ua_chan->attr.read_timer_interval = attr->read_timer_interval;
1058 ua_chan->attr.output = attr->output;
1059 ua_chan->attr.blocking_timeout = attr->u.s.blocking_timeout;
1060 }
1061 /* By default, the channel is a per cpu channel. */
1062 ua_chan->attr.type = LTTNG_UST_CHAN_PER_CPU;
1063
1064 DBG3("UST app channel %s allocated", ua_chan->name);
1065
1066 return ua_chan;
1067
1068 error:
1069 return NULL;
1070 }
1071
1072 /*
1073 * Allocate and initialize a UST app stream.
1074 *
1075 * Return newly allocated stream pointer or NULL on error.
1076 */
1077 struct ust_app_stream *ust_app_alloc_stream(void)
1078 {
1079 struct ust_app_stream *stream = NULL;
1080
1081 stream = zmalloc(sizeof(*stream));
1082 if (stream == NULL) {
1083 PERROR("zmalloc ust app stream");
1084 goto error;
1085 }
1086
1087 /* Zero could be a valid value for a handle so flag it to -1. */
1088 stream->handle = -1;
1089
1090 error:
1091 return stream;
1092 }
1093
1094 /*
1095 * Alloc new UST app event.
1096 */
1097 static
1098 struct ust_app_event *alloc_ust_app_event(char *name,
1099 struct lttng_ust_event *attr)
1100 {
1101 struct ust_app_event *ua_event;
1102
1103 /* Init most of the default value by allocating and zeroing */
1104 ua_event = zmalloc(sizeof(struct ust_app_event));
1105 if (ua_event == NULL) {
1106 PERROR("Failed to allocate ust_app_event structure");
1107 goto error;
1108 }
1109
1110 ua_event->enabled = 1;
1111 strncpy(ua_event->name, name, sizeof(ua_event->name));
1112 ua_event->name[sizeof(ua_event->name) - 1] = '\0';
1113 lttng_ht_node_init_str(&ua_event->node, ua_event->name);
1114
1115 /* Copy attributes */
1116 if (attr) {
1117 memcpy(&ua_event->attr, attr, sizeof(ua_event->attr));
1118 }
1119
1120 DBG3("UST app event %s allocated", ua_event->name);
1121
1122 return ua_event;
1123
1124 error:
1125 return NULL;
1126 }
1127
1128 /*
1129 * Alloc new UST app context.
1130 */
1131 static
1132 struct ust_app_ctx *alloc_ust_app_ctx(struct lttng_ust_context_attr *uctx)
1133 {
1134 struct ust_app_ctx *ua_ctx;
1135
1136 ua_ctx = zmalloc(sizeof(struct ust_app_ctx));
1137 if (ua_ctx == NULL) {
1138 goto error;
1139 }
1140
1141 CDS_INIT_LIST_HEAD(&ua_ctx->list);
1142
1143 if (uctx) {
1144 memcpy(&ua_ctx->ctx, uctx, sizeof(ua_ctx->ctx));
1145 if (uctx->ctx == LTTNG_UST_CONTEXT_APP_CONTEXT) {
1146 char *provider_name = NULL, *ctx_name = NULL;
1147
1148 provider_name = strdup(uctx->u.app_ctx.provider_name);
1149 ctx_name = strdup(uctx->u.app_ctx.ctx_name);
1150 if (!provider_name || !ctx_name) {
1151 free(provider_name);
1152 free(ctx_name);
1153 goto error;
1154 }
1155
1156 ua_ctx->ctx.u.app_ctx.provider_name = provider_name;
1157 ua_ctx->ctx.u.app_ctx.ctx_name = ctx_name;
1158 }
1159 }
1160
1161 DBG3("UST app context %d allocated", ua_ctx->ctx.ctx);
1162 return ua_ctx;
1163 error:
1164 free(ua_ctx);
1165 return NULL;
1166 }
1167
1168 /*
1169 * Allocate a filter and copy the given original filter.
1170 *
1171 * Return allocated filter or NULL on error.
1172 */
1173 static struct lttng_filter_bytecode *copy_filter_bytecode(
1174 struct lttng_filter_bytecode *orig_f)
1175 {
1176 struct lttng_filter_bytecode *filter = NULL;
1177
1178 /* Copy filter bytecode */
1179 filter = zmalloc(sizeof(*filter) + orig_f->len);
1180 if (!filter) {
1181 PERROR("zmalloc alloc filter bytecode");
1182 goto error;
1183 }
1184
1185 memcpy(filter, orig_f, sizeof(*filter) + orig_f->len);
1186
1187 error:
1188 return filter;
1189 }
1190
1191 /*
1192 * Create a liblttng-ust filter bytecode from given bytecode.
1193 *
1194 * Return allocated filter or NULL on error.
1195 */
1196 static struct lttng_ust_filter_bytecode *create_ust_bytecode_from_bytecode(
1197 const struct lttng_filter_bytecode *orig_f)
1198 {
1199 struct lttng_ust_filter_bytecode *filter = NULL;
1200
1201 /* Copy filter bytecode */
1202 filter = zmalloc(sizeof(*filter) + orig_f->len);
1203 if (!filter) {
1204 PERROR("zmalloc alloc ust filter bytecode");
1205 goto error;
1206 }
1207
1208 assert(sizeof(struct lttng_filter_bytecode) ==
1209 sizeof(struct lttng_ust_filter_bytecode));
1210 memcpy(filter, orig_f, sizeof(*filter) + orig_f->len);
1211 error:
1212 return filter;
1213 }
1214
1215 /*
1216 * Find an ust_app using the sock and return it. RCU read side lock must be
1217 * held before calling this helper function.
1218 */
1219 struct ust_app *ust_app_find_by_sock(int sock)
1220 {
1221 struct lttng_ht_node_ulong *node;
1222 struct lttng_ht_iter iter;
1223
1224 lttng_ht_lookup(ust_app_ht_by_sock, (void *)((unsigned long) sock), &iter);
1225 node = lttng_ht_iter_get_node_ulong(&iter);
1226 if (node == NULL) {
1227 DBG2("UST app find by sock %d not found", sock);
1228 goto error;
1229 }
1230
1231 return caa_container_of(node, struct ust_app, sock_n);
1232
1233 error:
1234 return NULL;
1235 }
1236
1237 /*
1238 * Find an ust_app using the notify sock and return it. RCU read side lock must
1239 * be held before calling this helper function.
1240 */
1241 static struct ust_app *find_app_by_notify_sock(int sock)
1242 {
1243 struct lttng_ht_node_ulong *node;
1244 struct lttng_ht_iter iter;
1245
1246 lttng_ht_lookup(ust_app_ht_by_notify_sock, (void *)((unsigned long) sock),
1247 &iter);
1248 node = lttng_ht_iter_get_node_ulong(&iter);
1249 if (node == NULL) {
1250 DBG2("UST app find by notify sock %d not found", sock);
1251 goto error;
1252 }
1253
1254 return caa_container_of(node, struct ust_app, notify_sock_n);
1255
1256 error:
1257 return NULL;
1258 }
1259
1260 /*
1261 * Lookup for an ust app event based on event name, filter bytecode and the
1262 * event loglevel.
1263 *
1264 * Return an ust_app_event object or NULL on error.
1265 */
1266 static struct ust_app_event *find_ust_app_event(struct lttng_ht *ht,
1267 const char *name, const struct lttng_filter_bytecode *filter,
1268 int loglevel_value,
1269 const struct lttng_event_exclusion *exclusion)
1270 {
1271 struct lttng_ht_iter iter;
1272 struct lttng_ht_node_str *node;
1273 struct ust_app_event *event = NULL;
1274 struct ust_app_ht_key key;
1275
1276 assert(name);
1277 assert(ht);
1278
1279 /* Setup key for event lookup. */
1280 key.name = name;
1281 key.filter = filter;
1282 key.loglevel_type = loglevel_value;
1283 /* lttng_event_exclusion and lttng_ust_event_exclusion structures are similar */
1284 key.exclusion = exclusion;
1285
1286 /* Lookup using the event name as hash and a custom match fct. */
1287 cds_lfht_lookup(ht->ht, ht->hash_fct((void *) name, lttng_ht_seed),
1288 ht_match_ust_app_event, &key, &iter.iter);
1289 node = lttng_ht_iter_get_node_str(&iter);
1290 if (node == NULL) {
1291 goto end;
1292 }
1293
1294 event = caa_container_of(node, struct ust_app_event, node);
1295
1296 end:
1297 return event;
1298 }
1299
1300 /*
1301 * Create the channel context on the tracer.
1302 *
1303 * Called with UST app session lock held.
1304 */
1305 static
1306 int create_ust_channel_context(struct ust_app_channel *ua_chan,
1307 struct ust_app_ctx *ua_ctx, struct ust_app *app)
1308 {
1309 int ret;
1310
1311 health_code_update();
1312
1313 pthread_mutex_lock(&app->sock_lock);
1314 ret = ustctl_add_context(app->sock, &ua_ctx->ctx,
1315 ua_chan->obj, &ua_ctx->obj);
1316 pthread_mutex_unlock(&app->sock_lock);
1317 if (ret < 0) {
1318 if (ret != -EPIPE && ret != -LTTNG_UST_ERR_EXITING) {
1319 ERR("UST app create channel context failed for app (pid: %d) "
1320 "with ret %d", app->pid, ret);
1321 } else {
1322 /*
1323 * This is normal behavior, an application can die during the
1324 * creation process. Don't report an error so the execution can
1325 * continue normally.
1326 */
1327 ret = 0;
1328 DBG3("UST app add context failed. Application is dead.");
1329 }
1330 goto error;
1331 }
1332
1333 ua_ctx->handle = ua_ctx->obj->handle;
1334
1335 DBG2("UST app context handle %d created successfully for channel %s",
1336 ua_ctx->handle, ua_chan->name);
1337
1338 error:
1339 health_code_update();
1340 return ret;
1341 }
1342
1343 /*
1344 * Set the filter on the tracer.
1345 */
1346 static int set_ust_object_filter(struct ust_app *app,
1347 const struct lttng_filter_bytecode *bytecode,
1348 struct lttng_ust_object_data *ust_object)
1349 {
1350 int ret;
1351 struct lttng_ust_filter_bytecode *ust_bytecode = NULL;
1352
1353 health_code_update();
1354
1355 ust_bytecode = create_ust_bytecode_from_bytecode(bytecode);
1356 if (!ust_bytecode) {
1357 ret = -LTTNG_ERR_NOMEM;
1358 goto error;
1359 }
1360 pthread_mutex_lock(&app->sock_lock);
1361 ret = ustctl_set_filter(app->sock, ust_bytecode,
1362 ust_object);
1363 pthread_mutex_unlock(&app->sock_lock);
1364 if (ret < 0) {
1365 if (ret != -EPIPE && ret != -LTTNG_UST_ERR_EXITING) {
1366 ERR("UST app set object filter failed for object %p of app (pid: %d) "
1367 "with ret %d", ust_object, app->pid, ret);
1368 } else {
1369 /*
1370 * This is normal behavior, an application can die during the
1371 * creation process. Don't report an error so the execution can
1372 * continue normally.
1373 */
1374 ret = 0;
1375 DBG3("Failed to set UST app object filter. Application is dead.");
1376 }
1377 goto error;
1378 }
1379
1380 DBG2("UST filter successfully set for object %p", ust_object);
1381
1382 error:
1383 health_code_update();
1384 free(ust_bytecode);
1385 return ret;
1386 }
1387
1388 static
1389 struct lttng_ust_event_exclusion *create_ust_exclusion_from_exclusion(
1390 const struct lttng_event_exclusion *exclusion)
1391 {
1392 struct lttng_ust_event_exclusion *ust_exclusion = NULL;
1393 size_t exclusion_alloc_size = sizeof(struct lttng_ust_event_exclusion) +
1394 LTTNG_UST_SYM_NAME_LEN * exclusion->count;
1395
1396 ust_exclusion = zmalloc(exclusion_alloc_size);
1397 if (!ust_exclusion) {
1398 PERROR("malloc");
1399 goto end;
1400 }
1401
1402 assert(sizeof(struct lttng_event_exclusion) ==
1403 sizeof(struct lttng_ust_event_exclusion));
1404 memcpy(ust_exclusion, exclusion, exclusion_alloc_size);
1405 end:
1406 return ust_exclusion;
1407 }
1408
1409 /*
1410 * Set event exclusions on the tracer.
1411 */
1412 static int set_ust_object_exclusions(struct ust_app *app,
1413 const struct lttng_event_exclusion *exclusions,
1414 struct lttng_ust_object_data *ust_object)
1415 {
1416 int ret;
1417 struct lttng_ust_event_exclusion *ust_exclusions = NULL;
1418
1419 assert(exclusions && exclusions->count > 0);
1420
1421 health_code_update();
1422
1423 ust_exclusions = create_ust_exclusion_from_exclusion(
1424 exclusions);
1425 if (!ust_exclusions) {
1426 ret = -LTTNG_ERR_NOMEM;
1427 goto error;
1428 }
1429 pthread_mutex_lock(&app->sock_lock);
1430 ret = ustctl_set_exclusion(app->sock, ust_exclusions, ust_object);
1431 pthread_mutex_unlock(&app->sock_lock);
1432 if (ret < 0) {
1433 if (ret != -EPIPE && ret != -LTTNG_UST_ERR_EXITING) {
1434 ERR("Failed to set UST app exclusions for object %p of app (pid: %d) "
1435 "with ret %d", ust_object, app->pid, ret);
1436 } else {
1437 /*
1438 * This is normal behavior, an application can die during the
1439 * creation process. Don't report an error so the execution can
1440 * continue normally.
1441 */
1442 ret = 0;
1443 DBG3("Failed to set UST app object exclusions. Application is dead.");
1444 }
1445 goto error;
1446 }
1447
1448 DBG2("UST exclusions set successfully for object %p", ust_object);
1449
1450 error:
1451 health_code_update();
1452 free(ust_exclusions);
1453 return ret;
1454 }
1455
1456 /*
1457 * Disable the specified event on to UST tracer for the UST session.
1458 */
1459 static int disable_ust_event(struct ust_app *app,
1460 struct ust_app_session *ua_sess, struct ust_app_event *ua_event)
1461 {
1462 int ret;
1463
1464 health_code_update();
1465
1466 pthread_mutex_lock(&app->sock_lock);
1467 ret = ustctl_disable(app->sock, ua_event->obj);
1468 pthread_mutex_unlock(&app->sock_lock);
1469 if (ret < 0) {
1470 if (ret != -EPIPE && ret != -LTTNG_UST_ERR_EXITING) {
1471 ERR("UST app event %s disable failed for app (pid: %d) "
1472 "and session handle %d with ret %d",
1473 ua_event->attr.name, app->pid, ua_sess->handle, ret);
1474 } else {
1475 /*
1476 * This is normal behavior, an application can die during the
1477 * creation process. Don't report an error so the execution can
1478 * continue normally.
1479 */
1480 ret = 0;
1481 DBG3("UST app disable event failed. Application is dead.");
1482 }
1483 goto error;
1484 }
1485
1486 DBG2("UST app event %s disabled successfully for app (pid: %d)",
1487 ua_event->attr.name, app->pid);
1488
1489 error:
1490 health_code_update();
1491 return ret;
1492 }
1493
1494 /*
1495 * Disable the specified channel on to UST tracer for the UST session.
1496 */
1497 static int disable_ust_channel(struct ust_app *app,
1498 struct ust_app_session *ua_sess, struct ust_app_channel *ua_chan)
1499 {
1500 int ret;
1501
1502 health_code_update();
1503
1504 pthread_mutex_lock(&app->sock_lock);
1505 ret = ustctl_disable(app->sock, ua_chan->obj);
1506 pthread_mutex_unlock(&app->sock_lock);
1507 if (ret < 0) {
1508 if (ret != -EPIPE && ret != -LTTNG_UST_ERR_EXITING) {
1509 ERR("UST app channel %s disable failed for app (pid: %d) "
1510 "and session handle %d with ret %d",
1511 ua_chan->name, app->pid, ua_sess->handle, ret);
1512 } else {
1513 /*
1514 * This is normal behavior, an application can die during the
1515 * creation process. Don't report an error so the execution can
1516 * continue normally.
1517 */
1518 ret = 0;
1519 DBG3("UST app disable channel failed. Application is dead.");
1520 }
1521 goto error;
1522 }
1523
1524 DBG2("UST app channel %s disabled successfully for app (pid: %d)",
1525 ua_chan->name, app->pid);
1526
1527 error:
1528 health_code_update();
1529 return ret;
1530 }
1531
1532 /*
1533 * Enable the specified channel on to UST tracer for the UST session.
1534 */
1535 static int enable_ust_channel(struct ust_app *app,
1536 struct ust_app_session *ua_sess, struct ust_app_channel *ua_chan)
1537 {
1538 int ret;
1539
1540 health_code_update();
1541
1542 pthread_mutex_lock(&app->sock_lock);
1543 ret = ustctl_enable(app->sock, ua_chan->obj);
1544 pthread_mutex_unlock(&app->sock_lock);
1545 if (ret < 0) {
1546 if (ret != -EPIPE && ret != -LTTNG_UST_ERR_EXITING) {
1547 ERR("UST app channel %s enable failed for app (pid: %d) "
1548 "and session handle %d with ret %d",
1549 ua_chan->name, app->pid, ua_sess->handle, ret);
1550 } else {
1551 /*
1552 * This is normal behavior, an application can die during the
1553 * creation process. Don't report an error so the execution can
1554 * continue normally.
1555 */
1556 ret = 0;
1557 DBG3("UST app enable channel failed. Application is dead.");
1558 }
1559 goto error;
1560 }
1561
1562 ua_chan->enabled = 1;
1563
1564 DBG2("UST app channel %s enabled successfully for app (pid: %d)",
1565 ua_chan->name, app->pid);
1566
1567 error:
1568 health_code_update();
1569 return ret;
1570 }
1571
1572 /*
1573 * Enable the specified event on to UST tracer for the UST session.
1574 */
1575 static int enable_ust_event(struct ust_app *app,
1576 struct ust_app_session *ua_sess, struct ust_app_event *ua_event)
1577 {
1578 int ret;
1579
1580 health_code_update();
1581
1582 pthread_mutex_lock(&app->sock_lock);
1583 ret = ustctl_enable(app->sock, ua_event->obj);
1584 pthread_mutex_unlock(&app->sock_lock);
1585 if (ret < 0) {
1586 if (ret != -EPIPE && ret != -LTTNG_UST_ERR_EXITING) {
1587 ERR("UST app event %s enable failed for app (pid: %d) "
1588 "and session handle %d with ret %d",
1589 ua_event->attr.name, app->pid, ua_sess->handle, ret);
1590 } else {
1591 /*
1592 * This is normal behavior, an application can die during the
1593 * creation process. Don't report an error so the execution can
1594 * continue normally.
1595 */
1596 ret = 0;
1597 DBG3("UST app enable event failed. Application is dead.");
1598 }
1599 goto error;
1600 }
1601
1602 DBG2("UST app event %s enabled successfully for app (pid: %d)",
1603 ua_event->attr.name, app->pid);
1604
1605 error:
1606 health_code_update();
1607 return ret;
1608 }
1609
1610 /*
1611 * Send channel and stream buffer to application.
1612 *
1613 * Return 0 on success. On error, a negative value is returned.
1614 */
1615 static int send_channel_pid_to_ust(struct ust_app *app,
1616 struct ust_app_session *ua_sess, struct ust_app_channel *ua_chan)
1617 {
1618 int ret;
1619 struct ust_app_stream *stream, *stmp;
1620
1621 assert(app);
1622 assert(ua_sess);
1623 assert(ua_chan);
1624
1625 health_code_update();
1626
1627 DBG("UST app sending channel %s to UST app sock %d", ua_chan->name,
1628 app->sock);
1629
1630 /* Send channel to the application. */
1631 ret = ust_consumer_send_channel_to_ust(app, ua_sess, ua_chan);
1632 if (ret == -EPIPE || ret == -LTTNG_UST_ERR_EXITING) {
1633 ret = -ENOTCONN; /* Caused by app exiting. */
1634 goto error;
1635 } else if (ret < 0) {
1636 goto error;
1637 }
1638
1639 health_code_update();
1640
1641 /* Send all streams to application. */
1642 cds_list_for_each_entry_safe(stream, stmp, &ua_chan->streams.head, list) {
1643 ret = ust_consumer_send_stream_to_ust(app, ua_chan, stream);
1644 if (ret == -EPIPE || ret == -LTTNG_UST_ERR_EXITING) {
1645 ret = -ENOTCONN; /* Caused by app exiting. */
1646 goto error;
1647 } else if (ret < 0) {
1648 goto error;
1649 }
1650 /* We don't need the stream anymore once sent to the tracer. */
1651 cds_list_del(&stream->list);
1652 delete_ust_app_stream(-1, stream, app);
1653 }
1654 /* Flag the channel that it is sent to the application. */
1655 ua_chan->is_sent = 1;
1656
1657 error:
1658 health_code_update();
1659 return ret;
1660 }
1661
1662 /*
1663 * Create the specified event onto the UST tracer for a UST session.
1664 *
1665 * Should be called with session mutex held.
1666 */
1667 static
1668 int create_ust_event(struct ust_app *app, struct ust_app_session *ua_sess,
1669 struct ust_app_channel *ua_chan, struct ust_app_event *ua_event)
1670 {
1671 int ret = 0;
1672
1673 health_code_update();
1674
1675 /* Create UST event on tracer */
1676 pthread_mutex_lock(&app->sock_lock);
1677 ret = ustctl_create_event(app->sock, &ua_event->attr, ua_chan->obj,
1678 &ua_event->obj);
1679 pthread_mutex_unlock(&app->sock_lock);
1680 if (ret < 0) {
1681 if (ret != -EPIPE && ret != -LTTNG_UST_ERR_EXITING) {
1682 abort();
1683 ERR("Error ustctl create event %s for app pid: %d with ret %d",
1684 ua_event->attr.name, app->pid, ret);
1685 } else {
1686 /*
1687 * This is normal behavior, an application can die during the
1688 * creation process. Don't report an error so the execution can
1689 * continue normally.
1690 */
1691 ret = 0;
1692 DBG3("UST app create event failed. Application is dead.");
1693 }
1694 goto error;
1695 }
1696
1697 ua_event->handle = ua_event->obj->handle;
1698
1699 DBG2("UST app event %s created successfully for pid:%d",
1700 ua_event->attr.name, app->pid);
1701
1702 health_code_update();
1703
1704 /* Set filter if one is present. */
1705 if (ua_event->filter) {
1706 ret = set_ust_object_filter(app, ua_event->filter, ua_event->obj);
1707 if (ret < 0) {
1708 goto error;
1709 }
1710 }
1711
1712 /* Set exclusions for the event */
1713 if (ua_event->exclusion) {
1714 ret = set_ust_object_exclusions(app, ua_event->exclusion, ua_event->obj);
1715 if (ret < 0) {
1716 goto error;
1717 }
1718 }
1719
1720 /* If event not enabled, disable it on the tracer */
1721 if (ua_event->enabled) {
1722 /*
1723 * We now need to explicitly enable the event, since it
1724 * is now disabled at creation.
1725 */
1726 ret = enable_ust_event(app, ua_sess, ua_event);
1727 if (ret < 0) {
1728 /*
1729 * If we hit an EPERM, something is wrong with our enable call. If
1730 * we get an EEXIST, there is a problem on the tracer side since we
1731 * just created it.
1732 */
1733 switch (ret) {
1734 case -LTTNG_UST_ERR_PERM:
1735 /* Code flow problem */
1736 assert(0);
1737 case -LTTNG_UST_ERR_EXIST:
1738 /* It's OK for our use case. */
1739 ret = 0;
1740 break;
1741 default:
1742 break;
1743 }
1744 goto error;
1745 }
1746 }
1747
1748 error:
1749 health_code_update();
1750 return ret;
1751 }
1752
1753 /*
1754 * Copy data between an UST app event and a LTT event.
1755 */
1756 static void shadow_copy_event(struct ust_app_event *ua_event,
1757 struct ltt_ust_event *uevent)
1758 {
1759 size_t exclusion_alloc_size;
1760
1761 strncpy(ua_event->name, uevent->attr.name, sizeof(ua_event->name));
1762 ua_event->name[sizeof(ua_event->name) - 1] = '\0';
1763
1764 ua_event->enabled = uevent->enabled;
1765
1766 /* Copy event attributes */
1767 memcpy(&ua_event->attr, &uevent->attr, sizeof(ua_event->attr));
1768
1769 /* Copy filter bytecode */
1770 if (uevent->filter) {
1771 ua_event->filter = copy_filter_bytecode(uevent->filter);
1772 /* Filter might be NULL here in case of ENONEM. */
1773 }
1774
1775 /* Copy exclusion data */
1776 if (uevent->exclusion) {
1777 exclusion_alloc_size = sizeof(struct lttng_event_exclusion) +
1778 LTTNG_UST_SYM_NAME_LEN * uevent->exclusion->count;
1779 ua_event->exclusion = zmalloc(exclusion_alloc_size);
1780 if (ua_event->exclusion == NULL) {
1781 PERROR("malloc");
1782 } else {
1783 memcpy(ua_event->exclusion, uevent->exclusion,
1784 exclusion_alloc_size);
1785 }
1786 }
1787 }
1788
1789 /*
1790 * Copy data between an UST app channel and a LTT channel.
1791 */
1792 static void shadow_copy_channel(struct ust_app_channel *ua_chan,
1793 struct ltt_ust_channel *uchan)
1794 {
1795 DBG2("UST app shadow copy of channel %s started", ua_chan->name);
1796
1797 strncpy(ua_chan->name, uchan->name, sizeof(ua_chan->name));
1798 ua_chan->name[sizeof(ua_chan->name) - 1] = '\0';
1799
1800 ua_chan->tracefile_size = uchan->tracefile_size;
1801 ua_chan->tracefile_count = uchan->tracefile_count;
1802
1803 /* Copy event attributes since the layout is different. */
1804 ua_chan->attr.subbuf_size = uchan->attr.subbuf_size;
1805 ua_chan->attr.num_subbuf = uchan->attr.num_subbuf;
1806 ua_chan->attr.overwrite = uchan->attr.overwrite;
1807 ua_chan->attr.switch_timer_interval = uchan->attr.switch_timer_interval;
1808 ua_chan->attr.read_timer_interval = uchan->attr.read_timer_interval;
1809 ua_chan->monitor_timer_interval = uchan->monitor_timer_interval;
1810 ua_chan->attr.output = uchan->attr.output;
1811 ua_chan->attr.blocking_timeout = uchan->attr.u.s.blocking_timeout;
1812
1813 /*
1814 * Note that the attribute channel type is not set since the channel on the
1815 * tracing registry side does not have this information.
1816 */
1817
1818 ua_chan->enabled = uchan->enabled;
1819 ua_chan->tracing_channel_id = uchan->id;
1820
1821 DBG3("UST app shadow copy of channel %s done", ua_chan->name);
1822 }
1823
1824 /*
1825 * Copy data between a UST app session and a regular LTT session.
1826 */
1827 static void shadow_copy_session(struct ust_app_session *ua_sess,
1828 struct ltt_ust_session *usess, struct ust_app *app)
1829 {
1830 struct tm *timeinfo;
1831 char datetime[16];
1832 int ret;
1833 char tmp_shm_path[PATH_MAX];
1834
1835 timeinfo = localtime(&app->registration_time);
1836 strftime(datetime, sizeof(datetime), "%Y%m%d-%H%M%S", timeinfo);
1837
1838 DBG2("Shadow copy of session handle %d", ua_sess->handle);
1839
1840 ua_sess->tracing_id = usess->id;
1841 ua_sess->id = get_next_session_id();
1842 LTTNG_OPTIONAL_SET(&ua_sess->real_credentials.uid, app->uid);
1843 LTTNG_OPTIONAL_SET(&ua_sess->real_credentials.gid, app->gid);
1844 LTTNG_OPTIONAL_SET(&ua_sess->effective_credentials.uid, usess->uid);
1845 LTTNG_OPTIONAL_SET(&ua_sess->effective_credentials.gid, usess->gid);
1846 ua_sess->buffer_type = usess->buffer_type;
1847 ua_sess->bits_per_long = app->bits_per_long;
1848
1849 /* There is only one consumer object per session possible. */
1850 consumer_output_get(usess->consumer);
1851 ua_sess->consumer = usess->consumer;
1852
1853 ua_sess->output_traces = usess->output_traces;
1854 ua_sess->live_timer_interval = usess->live_timer_interval;
1855 copy_channel_attr_to_ustctl(&ua_sess->metadata_attr,
1856 &usess->metadata_attr);
1857
1858 switch (ua_sess->buffer_type) {
1859 case LTTNG_BUFFER_PER_PID:
1860 ret = snprintf(ua_sess->path, sizeof(ua_sess->path),
1861 DEFAULT_UST_TRACE_PID_PATH "/%s-%d-%s", app->name, app->pid,
1862 datetime);
1863 break;
1864 case LTTNG_BUFFER_PER_UID:
1865 ret = snprintf(ua_sess->path, sizeof(ua_sess->path),
1866 DEFAULT_UST_TRACE_UID_PATH,
1867 lttng_credentials_get_uid(&ua_sess->real_credentials),
1868 app->bits_per_long);
1869 break;
1870 default:
1871 assert(0);
1872 goto error;
1873 }
1874 if (ret < 0) {
1875 PERROR("asprintf UST shadow copy session");
1876 assert(0);
1877 goto error;
1878 }
1879
1880 strncpy(ua_sess->root_shm_path, usess->root_shm_path,
1881 sizeof(ua_sess->root_shm_path));
1882 ua_sess->root_shm_path[sizeof(ua_sess->root_shm_path) - 1] = '\0';
1883 strncpy(ua_sess->shm_path, usess->shm_path,
1884 sizeof(ua_sess->shm_path));
1885 ua_sess->shm_path[sizeof(ua_sess->shm_path) - 1] = '\0';
1886 if (ua_sess->shm_path[0]) {
1887 switch (ua_sess->buffer_type) {
1888 case LTTNG_BUFFER_PER_PID:
1889 ret = snprintf(tmp_shm_path, sizeof(tmp_shm_path),
1890 "/" DEFAULT_UST_TRACE_PID_PATH "/%s-%d-%s",
1891 app->name, app->pid, datetime);
1892 break;
1893 case LTTNG_BUFFER_PER_UID:
1894 ret = snprintf(tmp_shm_path, sizeof(tmp_shm_path),
1895 "/" DEFAULT_UST_TRACE_UID_PATH,
1896 app->uid, app->bits_per_long);
1897 break;
1898 default:
1899 assert(0);
1900 goto error;
1901 }
1902 if (ret < 0) {
1903 PERROR("sprintf UST shadow copy session");
1904 assert(0);
1905 goto error;
1906 }
1907 strncat(ua_sess->shm_path, tmp_shm_path,
1908 sizeof(ua_sess->shm_path) - strlen(ua_sess->shm_path) - 1);
1909 ua_sess->shm_path[sizeof(ua_sess->shm_path) - 1] = '\0';
1910 }
1911 return;
1912
1913 error:
1914 consumer_output_put(ua_sess->consumer);
1915 }
1916
1917 /*
1918 * Lookup sesison wrapper.
1919 */
1920 static
1921 void __lookup_session_by_app(const struct ltt_ust_session *usess,
1922 struct ust_app *app, struct lttng_ht_iter *iter)
1923 {
1924 /* Get right UST app session from app */
1925 lttng_ht_lookup(app->sessions, &usess->id, iter);
1926 }
1927
1928 /*
1929 * Return ust app session from the app session hashtable using the UST session
1930 * id.
1931 */
1932 static struct ust_app_session *lookup_session_by_app(
1933 const struct ltt_ust_session *usess, struct ust_app *app)
1934 {
1935 struct lttng_ht_iter iter;
1936 struct lttng_ht_node_u64 *node;
1937
1938 __lookup_session_by_app(usess, app, &iter);
1939 node = lttng_ht_iter_get_node_u64(&iter);
1940 if (node == NULL) {
1941 goto error;
1942 }
1943
1944 return caa_container_of(node, struct ust_app_session, node);
1945
1946 error:
1947 return NULL;
1948 }
1949
1950 /*
1951 * Setup buffer registry per PID for the given session and application. If none
1952 * is found, a new one is created, added to the global registry and
1953 * initialized. If regp is valid, it's set with the newly created object.
1954 *
1955 * Return 0 on success or else a negative value.
1956 */
1957 static int setup_buffer_reg_pid(struct ust_app_session *ua_sess,
1958 struct ust_app *app, struct buffer_reg_pid **regp)
1959 {
1960 int ret = 0;
1961 struct buffer_reg_pid *reg_pid;
1962
1963 assert(ua_sess);
1964 assert(app);
1965
1966 rcu_read_lock();
1967
1968 reg_pid = buffer_reg_pid_find(ua_sess->id);
1969 if (!reg_pid) {
1970 /*
1971 * This is the create channel path meaning that if there is NO
1972 * registry available, we have to create one for this session.
1973 */
1974 ret = buffer_reg_pid_create(ua_sess->id, &reg_pid,
1975 ua_sess->root_shm_path, ua_sess->shm_path);
1976 if (ret < 0) {
1977 goto error;
1978 }
1979 } else {
1980 goto end;
1981 }
1982
1983 /* Initialize registry. */
1984 ret = ust_registry_session_init(&reg_pid->registry->reg.ust, app,
1985 app->bits_per_long, app->uint8_t_alignment,
1986 app->uint16_t_alignment, app->uint32_t_alignment,
1987 app->uint64_t_alignment, app->long_alignment,
1988 app->byte_order, app->version.major, app->version.minor,
1989 reg_pid->root_shm_path, reg_pid->shm_path,
1990 lttng_credentials_get_uid(&ua_sess->effective_credentials),
1991 lttng_credentials_get_gid(&ua_sess->effective_credentials),
1992 ua_sess->tracing_id,
1993 app->uid);
1994 if (ret < 0) {
1995 /*
1996 * reg_pid->registry->reg.ust is NULL upon error, so we need to
1997 * destroy the buffer registry, because it is always expected
1998 * that if the buffer registry can be found, its ust registry is
1999 * non-NULL.
2000 */
2001 buffer_reg_pid_destroy(reg_pid);
2002 goto error;
2003 }
2004
2005 buffer_reg_pid_add(reg_pid);
2006
2007 DBG3("UST app buffer registry per PID created successfully");
2008
2009 end:
2010 if (regp) {
2011 *regp = reg_pid;
2012 }
2013 error:
2014 rcu_read_unlock();
2015 return ret;
2016 }
2017
2018 /*
2019 * Setup buffer registry per UID for the given session and application. If none
2020 * is found, a new one is created, added to the global registry and
2021 * initialized. If regp is valid, it's set with the newly created object.
2022 *
2023 * Return 0 on success or else a negative value.
2024 */
2025 static int setup_buffer_reg_uid(struct ltt_ust_session *usess,
2026 struct ust_app_session *ua_sess,
2027 struct ust_app *app, struct buffer_reg_uid **regp)
2028 {
2029 int ret = 0;
2030 struct buffer_reg_uid *reg_uid;
2031
2032 assert(usess);
2033 assert(app);
2034
2035 rcu_read_lock();
2036
2037 reg_uid = buffer_reg_uid_find(usess->id, app->bits_per_long, app->uid);
2038 if (!reg_uid) {
2039 /*
2040 * This is the create channel path meaning that if there is NO
2041 * registry available, we have to create one for this session.
2042 */
2043 ret = buffer_reg_uid_create(usess->id, app->bits_per_long, app->uid,
2044 LTTNG_DOMAIN_UST, &reg_uid,
2045 ua_sess->root_shm_path, ua_sess->shm_path);
2046 if (ret < 0) {
2047 goto error;
2048 }
2049 } else {
2050 goto end;
2051 }
2052
2053 /* Initialize registry. */
2054 ret = ust_registry_session_init(&reg_uid->registry->reg.ust, NULL,
2055 app->bits_per_long, app->uint8_t_alignment,
2056 app->uint16_t_alignment, app->uint32_t_alignment,
2057 app->uint64_t_alignment, app->long_alignment,
2058 app->byte_order, app->version.major,
2059 app->version.minor, reg_uid->root_shm_path,
2060 reg_uid->shm_path, usess->uid, usess->gid,
2061 ua_sess->tracing_id, app->uid);
2062 if (ret < 0) {
2063 /*
2064 * reg_uid->registry->reg.ust is NULL upon error, so we need to
2065 * destroy the buffer registry, because it is always expected
2066 * that if the buffer registry can be found, its ust registry is
2067 * non-NULL.
2068 */
2069 buffer_reg_uid_destroy(reg_uid, NULL);
2070 goto error;
2071 }
2072 /* Add node to teardown list of the session. */
2073 cds_list_add(&reg_uid->lnode, &usess->buffer_reg_uid_list);
2074
2075 buffer_reg_uid_add(reg_uid);
2076
2077 DBG3("UST app buffer registry per UID created successfully");
2078 end:
2079 if (regp) {
2080 *regp = reg_uid;
2081 }
2082 error:
2083 rcu_read_unlock();
2084 return ret;
2085 }
2086
2087 /*
2088 * Create a session on the tracer side for the given app.
2089 *
2090 * On success, ua_sess_ptr is populated with the session pointer or else left
2091 * untouched. If the session was created, is_created is set to 1. On error,
2092 * it's left untouched. Note that ua_sess_ptr is mandatory but is_created can
2093 * be NULL.
2094 *
2095 * Returns 0 on success or else a negative code which is either -ENOMEM or
2096 * -ENOTCONN which is the default code if the ustctl_create_session fails.
2097 */
2098 static int find_or_create_ust_app_session(struct ltt_ust_session *usess,
2099 struct ust_app *app, struct ust_app_session **ua_sess_ptr,
2100 int *is_created)
2101 {
2102 int ret, created = 0;
2103 struct ust_app_session *ua_sess;
2104
2105 assert(usess);
2106 assert(app);
2107 assert(ua_sess_ptr);
2108
2109 health_code_update();
2110
2111 ua_sess = lookup_session_by_app(usess, app);
2112 if (ua_sess == NULL) {
2113 DBG2("UST app pid: %d session id %" PRIu64 " not found, creating it",
2114 app->pid, usess->id);
2115 ua_sess = alloc_ust_app_session();
2116 if (ua_sess == NULL) {
2117 /* Only malloc can failed so something is really wrong */
2118 ret = -ENOMEM;
2119 goto error;
2120 }
2121 shadow_copy_session(ua_sess, usess, app);
2122 created = 1;
2123 }
2124
2125 switch (usess->buffer_type) {
2126 case LTTNG_BUFFER_PER_PID:
2127 /* Init local registry. */
2128 ret = setup_buffer_reg_pid(ua_sess, app, NULL);
2129 if (ret < 0) {
2130 delete_ust_app_session(-1, ua_sess, app);
2131 goto error;
2132 }
2133 break;
2134 case LTTNG_BUFFER_PER_UID:
2135 /* Look for a global registry. If none exists, create one. */
2136 ret = setup_buffer_reg_uid(usess, ua_sess, app, NULL);
2137 if (ret < 0) {
2138 delete_ust_app_session(-1, ua_sess, app);
2139 goto error;
2140 }
2141 break;
2142 default:
2143 assert(0);
2144 ret = -EINVAL;
2145 goto error;
2146 }
2147
2148 health_code_update();
2149
2150 if (ua_sess->handle == -1) {
2151 pthread_mutex_lock(&app->sock_lock);
2152 ret = ustctl_create_session(app->sock);
2153 pthread_mutex_unlock(&app->sock_lock);
2154 if (ret < 0) {
2155 if (ret != -EPIPE && ret != -LTTNG_UST_ERR_EXITING) {
2156 ERR("Creating session for app pid %d with ret %d",
2157 app->pid, ret);
2158 } else {
2159 DBG("UST app creating session failed. Application is dead");
2160 /*
2161 * This is normal behavior, an application can die during the
2162 * creation process. Don't report an error so the execution can
2163 * continue normally. This will get flagged ENOTCONN and the
2164 * caller will handle it.
2165 */
2166 ret = 0;
2167 }
2168 delete_ust_app_session(-1, ua_sess, app);
2169 if (ret != -ENOMEM) {
2170 /*
2171 * Tracer is probably gone or got an internal error so let's
2172 * behave like it will soon unregister or not usable.
2173 */
2174 ret = -ENOTCONN;
2175 }
2176 goto error;
2177 }
2178
2179 ua_sess->handle = ret;
2180
2181 /* Add ust app session to app's HT */
2182 lttng_ht_node_init_u64(&ua_sess->node,
2183 ua_sess->tracing_id);
2184 lttng_ht_add_unique_u64(app->sessions, &ua_sess->node);
2185 lttng_ht_node_init_ulong(&ua_sess->ust_objd_node, ua_sess->handle);
2186 lttng_ht_add_unique_ulong(app->ust_sessions_objd,
2187 &ua_sess->ust_objd_node);
2188
2189 DBG2("UST app session created successfully with handle %d", ret);
2190 }
2191
2192 *ua_sess_ptr = ua_sess;
2193 if (is_created) {
2194 *is_created = created;
2195 }
2196
2197 /* Everything went well. */
2198 ret = 0;
2199
2200 error:
2201 health_code_update();
2202 return ret;
2203 }
2204
2205 /*
2206 * Match function for a hash table lookup of ust_app_ctx.
2207 *
2208 * It matches an ust app context based on the context type and, in the case
2209 * of perf counters, their name.
2210 */
2211 static int ht_match_ust_app_ctx(struct cds_lfht_node *node, const void *_key)
2212 {
2213 struct ust_app_ctx *ctx;
2214 const struct lttng_ust_context_attr *key;
2215
2216 assert(node);
2217 assert(_key);
2218
2219 ctx = caa_container_of(node, struct ust_app_ctx, node.node);
2220 key = _key;
2221
2222 /* Context type */
2223 if (ctx->ctx.ctx != key->ctx) {
2224 goto no_match;
2225 }
2226
2227 switch(key->ctx) {
2228 case LTTNG_UST_CONTEXT_PERF_THREAD_COUNTER:
2229 if (strncmp(key->u.perf_counter.name,
2230 ctx->ctx.u.perf_counter.name,
2231 sizeof(key->u.perf_counter.name))) {
2232 goto no_match;
2233 }
2234 break;
2235 case LTTNG_UST_CONTEXT_APP_CONTEXT:
2236 if (strcmp(key->u.app_ctx.provider_name,
2237 ctx->ctx.u.app_ctx.provider_name) ||
2238 strcmp(key->u.app_ctx.ctx_name,
2239 ctx->ctx.u.app_ctx.ctx_name)) {
2240 goto no_match;
2241 }
2242 break;
2243 default:
2244 break;
2245 }
2246
2247 /* Match. */
2248 return 1;
2249
2250 no_match:
2251 return 0;
2252 }
2253
2254 /*
2255 * Lookup for an ust app context from an lttng_ust_context.
2256 *
2257 * Must be called while holding RCU read side lock.
2258 * Return an ust_app_ctx object or NULL on error.
2259 */
2260 static
2261 struct ust_app_ctx *find_ust_app_context(struct lttng_ht *ht,
2262 struct lttng_ust_context_attr *uctx)
2263 {
2264 struct lttng_ht_iter iter;
2265 struct lttng_ht_node_ulong *node;
2266 struct ust_app_ctx *app_ctx = NULL;
2267
2268 assert(uctx);
2269 assert(ht);
2270
2271 /* Lookup using the lttng_ust_context_type and a custom match fct. */
2272 cds_lfht_lookup(ht->ht, ht->hash_fct((void *) uctx->ctx, lttng_ht_seed),
2273 ht_match_ust_app_ctx, uctx, &iter.iter);
2274 node = lttng_ht_iter_get_node_ulong(&iter);
2275 if (!node) {
2276 goto end;
2277 }
2278
2279 app_ctx = caa_container_of(node, struct ust_app_ctx, node);
2280
2281 end:
2282 return app_ctx;
2283 }
2284
2285 /*
2286 * Create a context for the channel on the tracer.
2287 *
2288 * Called with UST app session lock held and a RCU read side lock.
2289 */
2290 static
2291 int create_ust_app_channel_context(struct ust_app_channel *ua_chan,
2292 struct lttng_ust_context_attr *uctx,
2293 struct ust_app *app)
2294 {
2295 int ret = 0;
2296 struct ust_app_ctx *ua_ctx;
2297
2298 DBG2("UST app adding context to channel %s", ua_chan->name);
2299
2300 ua_ctx = find_ust_app_context(ua_chan->ctx, uctx);
2301 if (ua_ctx) {
2302 ret = -EEXIST;
2303 goto error;
2304 }
2305
2306 ua_ctx = alloc_ust_app_ctx(uctx);
2307 if (ua_ctx == NULL) {
2308 /* malloc failed */
2309 ret = -ENOMEM;
2310 goto error;
2311 }
2312
2313 lttng_ht_node_init_ulong(&ua_ctx->node, (unsigned long) ua_ctx->ctx.ctx);
2314 lttng_ht_add_ulong(ua_chan->ctx, &ua_ctx->node);
2315 cds_list_add_tail(&ua_ctx->list, &ua_chan->ctx_list);
2316
2317 ret = create_ust_channel_context(ua_chan, ua_ctx, app);
2318 if (ret < 0) {
2319 goto error;
2320 }
2321
2322 error:
2323 return ret;
2324 }
2325
2326 /*
2327 * Enable on the tracer side a ust app event for the session and channel.
2328 *
2329 * Called with UST app session lock held.
2330 */
2331 static
2332 int enable_ust_app_event(struct ust_app_session *ua_sess,
2333 struct ust_app_event *ua_event, struct ust_app *app)
2334 {
2335 int ret;
2336
2337 ret = enable_ust_event(app, ua_sess, ua_event);
2338 if (ret < 0) {
2339 goto error;
2340 }
2341
2342 ua_event->enabled = 1;
2343
2344 error:
2345 return ret;
2346 }
2347
2348 /*
2349 * Disable on the tracer side a ust app event for the session and channel.
2350 */
2351 static int disable_ust_app_event(struct ust_app_session *ua_sess,
2352 struct ust_app_event *ua_event, struct ust_app *app)
2353 {
2354 int ret;
2355
2356 ret = disable_ust_event(app, ua_sess, ua_event);
2357 if (ret < 0) {
2358 goto error;
2359 }
2360
2361 ua_event->enabled = 0;
2362
2363 error:
2364 return ret;
2365 }
2366
2367 /*
2368 * Lookup ust app channel for session and disable it on the tracer side.
2369 */
2370 static
2371 int disable_ust_app_channel(struct ust_app_session *ua_sess,
2372 struct ust_app_channel *ua_chan, struct ust_app *app)
2373 {
2374 int ret;
2375
2376 ret = disable_ust_channel(app, ua_sess, ua_chan);
2377 if (ret < 0) {
2378 goto error;
2379 }
2380
2381 ua_chan->enabled = 0;
2382
2383 error:
2384 return ret;
2385 }
2386
2387 /*
2388 * Lookup ust app channel for session and enable it on the tracer side. This
2389 * MUST be called with a RCU read side lock acquired.
2390 */
2391 static int enable_ust_app_channel(struct ust_app_session *ua_sess,
2392 struct ltt_ust_channel *uchan, struct ust_app *app)
2393 {
2394 int ret = 0;
2395 struct lttng_ht_iter iter;
2396 struct lttng_ht_node_str *ua_chan_node;
2397 struct ust_app_channel *ua_chan;
2398
2399 lttng_ht_lookup(ua_sess->channels, (void *)uchan->name, &iter);
2400 ua_chan_node = lttng_ht_iter_get_node_str(&iter);
2401 if (ua_chan_node == NULL) {
2402 DBG2("Unable to find channel %s in ust session id %" PRIu64,
2403 uchan->name, ua_sess->tracing_id);
2404 goto error;
2405 }
2406
2407 ua_chan = caa_container_of(ua_chan_node, struct ust_app_channel, node);
2408
2409 ret = enable_ust_channel(app, ua_sess, ua_chan);
2410 if (ret < 0) {
2411 goto error;
2412 }
2413
2414 error:
2415 return ret;
2416 }
2417
2418 /*
2419 * Ask the consumer to create a channel and get it if successful.
2420 *
2421 * Called with UST app session lock held.
2422 *
2423 * Return 0 on success or else a negative value.
2424 */
2425 static int do_consumer_create_channel(struct ltt_ust_session *usess,
2426 struct ust_app_session *ua_sess, struct ust_app_channel *ua_chan,
2427 int bitness, struct ust_registry_session *registry,
2428 uint64_t trace_archive_id)
2429 {
2430 int ret;
2431 unsigned int nb_fd = 0;
2432 struct consumer_socket *socket;
2433
2434 assert(usess);
2435 assert(ua_sess);
2436 assert(ua_chan);
2437 assert(registry);
2438
2439 rcu_read_lock();
2440 health_code_update();
2441
2442 /* Get the right consumer socket for the application. */
2443 socket = consumer_find_socket_by_bitness(bitness, usess->consumer);
2444 if (!socket) {
2445 ret = -EINVAL;
2446 goto error;
2447 }
2448
2449 health_code_update();
2450
2451 /* Need one fd for the channel. */
2452 ret = lttng_fd_get(LTTNG_FD_APPS, 1);
2453 if (ret < 0) {
2454 ERR("Exhausted number of available FD upon create channel");
2455 goto error;
2456 }
2457
2458 /*
2459 * Ask consumer to create channel. The consumer will return the number of
2460 * stream we have to expect.
2461 */
2462 ret = ust_consumer_ask_channel(ua_sess, ua_chan, usess->consumer, socket,
2463 registry, usess->current_trace_chunk);
2464 if (ret < 0) {
2465 goto error_ask;
2466 }
2467
2468 /*
2469 * Compute the number of fd needed before receiving them. It must be 2 per
2470 * stream (2 being the default value here).
2471 */
2472 nb_fd = DEFAULT_UST_STREAM_FD_NUM * ua_chan->expected_stream_count;
2473
2474 /* Reserve the amount of file descriptor we need. */
2475 ret = lttng_fd_get(LTTNG_FD_APPS, nb_fd);
2476 if (ret < 0) {
2477 ERR("Exhausted number of available FD upon create channel");
2478 goto error_fd_get_stream;
2479 }
2480
2481 health_code_update();
2482
2483 /*
2484 * Now get the channel from the consumer. This call wil populate the stream
2485 * list of that channel and set the ust objects.
2486 */
2487 if (usess->consumer->enabled) {
2488 ret = ust_consumer_get_channel(socket, ua_chan);
2489 if (ret < 0) {
2490 goto error_destroy;
2491 }
2492 }
2493
2494 rcu_read_unlock();
2495 return 0;
2496
2497 error_destroy:
2498 lttng_fd_put(LTTNG_FD_APPS, nb_fd);
2499 error_fd_get_stream:
2500 /*
2501 * Initiate a destroy channel on the consumer since we had an error
2502 * handling it on our side. The return value is of no importance since we
2503 * already have a ret value set by the previous error that we need to
2504 * return.
2505 */
2506 (void) ust_consumer_destroy_channel(socket, ua_chan);
2507 error_ask:
2508 lttng_fd_put(LTTNG_FD_APPS, 1);
2509 error:
2510 health_code_update();
2511 rcu_read_unlock();
2512 return ret;
2513 }
2514
2515 /*
2516 * Duplicate the ust data object of the ust app stream and save it in the
2517 * buffer registry stream.
2518 *
2519 * Return 0 on success or else a negative value.
2520 */
2521 static int duplicate_stream_object(struct buffer_reg_stream *reg_stream,
2522 struct ust_app_stream *stream)
2523 {
2524 int ret;
2525
2526 assert(reg_stream);
2527 assert(stream);
2528
2529 /* Reserve the amount of file descriptor we need. */
2530 ret = lttng_fd_get(LTTNG_FD_APPS, 2);
2531 if (ret < 0) {
2532 ERR("Exhausted number of available FD upon duplicate stream");
2533 goto error;
2534 }
2535
2536 /* Duplicate object for stream once the original is in the registry. */
2537 ret = ustctl_duplicate_ust_object_data(&stream->obj,
2538 reg_stream->obj.ust);
2539 if (ret < 0) {
2540 ERR("Duplicate stream obj from %p to %p failed with ret %d",
2541 reg_stream->obj.ust, stream->obj, ret);
2542 lttng_fd_put(LTTNG_FD_APPS, 2);
2543 goto error;
2544 }
2545 stream->handle = stream->obj->handle;
2546
2547 error:
2548 return ret;
2549 }
2550
2551 /*
2552 * Duplicate the ust data object of the ust app. channel and save it in the
2553 * buffer registry channel.
2554 *
2555 * Return 0 on success or else a negative value.
2556 */
2557 static int duplicate_channel_object(struct buffer_reg_channel *reg_chan,
2558 struct ust_app_channel *ua_chan)
2559 {
2560 int ret;
2561
2562 assert(reg_chan);
2563 assert(ua_chan);
2564
2565 /* Need two fds for the channel. */
2566 ret = lttng_fd_get(LTTNG_FD_APPS, 1);
2567 if (ret < 0) {
2568 ERR("Exhausted number of available FD upon duplicate channel");
2569 goto error_fd_get;
2570 }
2571
2572 /* Duplicate object for stream once the original is in the registry. */
2573 ret = ustctl_duplicate_ust_object_data(&ua_chan->obj, reg_chan->obj.ust);
2574 if (ret < 0) {
2575 ERR("Duplicate channel obj from %p to %p failed with ret: %d",
2576 reg_chan->obj.ust, ua_chan->obj, ret);
2577 goto error;
2578 }
2579 ua_chan->handle = ua_chan->obj->handle;
2580
2581 return 0;
2582
2583 error:
2584 lttng_fd_put(LTTNG_FD_APPS, 1);
2585 error_fd_get:
2586 return ret;
2587 }
2588
2589 /*
2590 * For a given channel buffer registry, setup all streams of the given ust
2591 * application channel.
2592 *
2593 * Return 0 on success or else a negative value.
2594 */
2595 static int setup_buffer_reg_streams(struct buffer_reg_channel *reg_chan,
2596 struct ust_app_channel *ua_chan,
2597 struct ust_app *app)
2598 {
2599 int ret = 0;
2600 struct ust_app_stream *stream, *stmp;
2601
2602 assert(reg_chan);
2603 assert(ua_chan);
2604
2605 DBG2("UST app setup buffer registry stream");
2606
2607 /* Send all streams to application. */
2608 cds_list_for_each_entry_safe(stream, stmp, &ua_chan->streams.head, list) {
2609 struct buffer_reg_stream *reg_stream;
2610
2611 ret = buffer_reg_stream_create(&reg_stream);
2612 if (ret < 0) {
2613 goto error;
2614 }
2615
2616 /*
2617 * Keep original pointer and nullify it in the stream so the delete
2618 * stream call does not release the object.
2619 */
2620 reg_stream->obj.ust = stream->obj;
2621 stream->obj = NULL;
2622 buffer_reg_stream_add(reg_stream, reg_chan);
2623
2624 /* We don't need the streams anymore. */
2625 cds_list_del(&stream->list);
2626 delete_ust_app_stream(-1, stream, app);
2627 }
2628
2629 error:
2630 return ret;
2631 }
2632
2633 /*
2634 * Create a buffer registry channel for the given session registry and
2635 * application channel object. If regp pointer is valid, it's set with the
2636 * created object. Important, the created object is NOT added to the session
2637 * registry hash table.
2638 *
2639 * Return 0 on success else a negative value.
2640 */
2641 static int create_buffer_reg_channel(struct buffer_reg_session *reg_sess,
2642 struct ust_app_channel *ua_chan, struct buffer_reg_channel **regp)
2643 {
2644 int ret;
2645 struct buffer_reg_channel *reg_chan = NULL;
2646
2647 assert(reg_sess);
2648 assert(ua_chan);
2649
2650 DBG2("UST app creating buffer registry channel for %s", ua_chan->name);
2651
2652 /* Create buffer registry channel. */
2653 ret = buffer_reg_channel_create(ua_chan->tracing_channel_id, &reg_chan);
2654 if (ret < 0) {
2655 goto error_create;
2656 }
2657 assert(reg_chan);
2658 reg_chan->consumer_key = ua_chan->key;
2659 reg_chan->subbuf_size = ua_chan->attr.subbuf_size;
2660 reg_chan->num_subbuf = ua_chan->attr.num_subbuf;
2661
2662 /* Create and add a channel registry to session. */
2663 ret = ust_registry_channel_add(reg_sess->reg.ust,
2664 ua_chan->tracing_channel_id);
2665 if (ret < 0) {
2666 goto error;
2667 }
2668 buffer_reg_channel_add(reg_sess, reg_chan);
2669
2670 if (regp) {
2671 *regp = reg_chan;
2672 }
2673
2674 return 0;
2675
2676 error:
2677 /* Safe because the registry channel object was not added to any HT. */
2678 buffer_reg_channel_destroy(reg_chan, LTTNG_DOMAIN_UST);
2679 error_create:
2680 return ret;
2681 }
2682
2683 /*
2684 * Setup buffer registry channel for the given session registry and application
2685 * channel object. If regp pointer is valid, it's set with the created object.
2686 *
2687 * Return 0 on success else a negative value.
2688 */
2689 static int setup_buffer_reg_channel(struct buffer_reg_session *reg_sess,
2690 struct ust_app_channel *ua_chan, struct buffer_reg_channel *reg_chan,
2691 struct ust_app *app)
2692 {
2693 int ret;
2694
2695 assert(reg_sess);
2696 assert(reg_chan);
2697 assert(ua_chan);
2698 assert(ua_chan->obj);
2699
2700 DBG2("UST app setup buffer registry channel for %s", ua_chan->name);
2701
2702 /* Setup all streams for the registry. */
2703 ret = setup_buffer_reg_streams(reg_chan, ua_chan, app);
2704 if (ret < 0) {
2705 goto error;
2706 }
2707
2708 reg_chan->obj.ust = ua_chan->obj;
2709 ua_chan->obj = NULL;
2710
2711 return 0;
2712
2713 error:
2714 buffer_reg_channel_remove(reg_sess, reg_chan);
2715 buffer_reg_channel_destroy(reg_chan, LTTNG_DOMAIN_UST);
2716 return ret;
2717 }
2718
2719 /*
2720 * Send buffer registry channel to the application.
2721 *
2722 * Return 0 on success else a negative value.
2723 */
2724 static int send_channel_uid_to_ust(struct buffer_reg_channel *reg_chan,
2725 struct ust_app *app, struct ust_app_session *ua_sess,
2726 struct ust_app_channel *ua_chan)
2727 {
2728 int ret;
2729 struct buffer_reg_stream *reg_stream;
2730
2731 assert(reg_chan);
2732 assert(app);
2733 assert(ua_sess);
2734 assert(ua_chan);
2735
2736 DBG("UST app sending buffer registry channel to ust sock %d", app->sock);
2737
2738 ret = duplicate_channel_object(reg_chan, ua_chan);
2739 if (ret < 0) {
2740 goto error;
2741 }
2742
2743 /* Send channel to the application. */
2744 ret = ust_consumer_send_channel_to_ust(app, ua_sess, ua_chan);
2745 if (ret == -EPIPE || ret == -LTTNG_UST_ERR_EXITING) {
2746 ret = -ENOTCONN; /* Caused by app exiting. */
2747 goto error;
2748 } else if (ret < 0) {
2749 goto error;
2750 }
2751
2752 health_code_update();
2753
2754 /* Send all streams to application. */
2755 pthread_mutex_lock(&reg_chan->stream_list_lock);
2756 cds_list_for_each_entry(reg_stream, &reg_chan->streams, lnode) {
2757 struct ust_app_stream stream;
2758
2759 ret = duplicate_stream_object(reg_stream, &stream);
2760 if (ret < 0) {
2761 goto error_stream_unlock;
2762 }
2763
2764 ret = ust_consumer_send_stream_to_ust(app, ua_chan, &stream);
2765 if (ret < 0) {
2766 (void) release_ust_app_stream(-1, &stream, app);
2767 if (ret == -EPIPE || ret == -LTTNG_UST_ERR_EXITING) {
2768 ret = -ENOTCONN; /* Caused by app exiting. */
2769 }
2770 goto error_stream_unlock;
2771 }
2772
2773 /*
2774 * The return value is not important here. This function will output an
2775 * error if needed.
2776 */
2777 (void) release_ust_app_stream(-1, &stream, app);
2778 }
2779 ua_chan->is_sent = 1;
2780
2781 error_stream_unlock:
2782 pthread_mutex_unlock(&reg_chan->stream_list_lock);
2783 error:
2784 return ret;
2785 }
2786
2787 /*
2788 * Create and send to the application the created buffers with per UID buffers.
2789 *
2790 * This MUST be called with a RCU read side lock acquired.
2791 * The session list lock and the session's lock must be acquired.
2792 *
2793 * Return 0 on success else a negative value.
2794 */
2795 static int create_channel_per_uid(struct ust_app *app,
2796 struct ltt_ust_session *usess, struct ust_app_session *ua_sess,
2797 struct ust_app_channel *ua_chan)
2798 {
2799 int ret;
2800 struct buffer_reg_uid *reg_uid;
2801 struct buffer_reg_channel *reg_chan;
2802 struct ltt_session *session = NULL;
2803 enum lttng_error_code notification_ret;
2804 struct ust_registry_channel *chan_reg;
2805
2806 assert(app);
2807 assert(usess);
2808 assert(ua_sess);
2809 assert(ua_chan);
2810
2811 DBG("UST app creating channel %s with per UID buffers", ua_chan->name);
2812
2813 reg_uid = buffer_reg_uid_find(usess->id, app->bits_per_long, app->uid);
2814 /*
2815 * The session creation handles the creation of this global registry
2816 * object. If none can be find, there is a code flow problem or a
2817 * teardown race.
2818 */
2819 assert(reg_uid);
2820
2821 reg_chan = buffer_reg_channel_find(ua_chan->tracing_channel_id,
2822 reg_uid);
2823 if (reg_chan) {
2824 goto send_channel;
2825 }
2826
2827 /* Create the buffer registry channel object. */
2828 ret = create_buffer_reg_channel(reg_uid->registry, ua_chan, &reg_chan);
2829 if (ret < 0) {
2830 ERR("Error creating the UST channel \"%s\" registry instance",
2831 ua_chan->name);
2832 goto error;
2833 }
2834
2835 session = session_find_by_id(ua_sess->tracing_id);
2836 assert(session);
2837 assert(pthread_mutex_trylock(&session->lock));
2838 assert(session_trylock_list());
2839
2840 /*
2841 * Create the buffers on the consumer side. This call populates the
2842 * ust app channel object with all streams and data object.
2843 */
2844 ret = do_consumer_create_channel(usess, ua_sess, ua_chan,
2845 app->bits_per_long, reg_uid->registry->reg.ust,
2846 session->most_recent_chunk_id.value);
2847 if (ret < 0) {
2848 ERR("Error creating UST channel \"%s\" on the consumer daemon",
2849 ua_chan->name);
2850
2851 /*
2852 * Let's remove the previously created buffer registry channel so
2853 * it's not visible anymore in the session registry.
2854 */
2855 ust_registry_channel_del_free(reg_uid->registry->reg.ust,
2856 ua_chan->tracing_channel_id, false);
2857 buffer_reg_channel_remove(reg_uid->registry, reg_chan);
2858 buffer_reg_channel_destroy(reg_chan, LTTNG_DOMAIN_UST);
2859 goto error;
2860 }
2861
2862 /*
2863 * Setup the streams and add it to the session registry.
2864 */
2865 ret = setup_buffer_reg_channel(reg_uid->registry,
2866 ua_chan, reg_chan, app);
2867 if (ret < 0) {
2868 ERR("Error setting up UST channel \"%s\"", ua_chan->name);
2869 goto error;
2870 }
2871
2872 /* Notify the notification subsystem of the channel's creation. */
2873 pthread_mutex_lock(&reg_uid->registry->reg.ust->lock);
2874 chan_reg = ust_registry_channel_find(reg_uid->registry->reg.ust,
2875 ua_chan->tracing_channel_id);
2876 assert(chan_reg);
2877 chan_reg->consumer_key = ua_chan->key;
2878 chan_reg = NULL;
2879 pthread_mutex_unlock(&reg_uid->registry->reg.ust->lock);
2880
2881 notification_ret = notification_thread_command_add_channel(
2882 notification_thread_handle, session->name,
2883 lttng_credentials_get_uid(&ua_sess->effective_credentials),
2884 lttng_credentials_get_gid(&ua_sess->effective_credentials),
2885 ua_chan->name,
2886 ua_chan->key, LTTNG_DOMAIN_UST,
2887 ua_chan->attr.subbuf_size * ua_chan->attr.num_subbuf);
2888 if (notification_ret != LTTNG_OK) {
2889 ret = - (int) notification_ret;
2890 ERR("Failed to add channel to notification thread");
2891 goto error;
2892 }
2893
2894 send_channel:
2895 /* Send buffers to the application. */
2896 ret = send_channel_uid_to_ust(reg_chan, app, ua_sess, ua_chan);
2897 if (ret < 0) {
2898 if (ret != -ENOTCONN) {
2899 ERR("Error sending channel to application");
2900 }
2901 goto error;
2902 }
2903
2904 error:
2905 if (session) {
2906 session_put(session);
2907 }
2908 return ret;
2909 }
2910
2911 /*
2912 * Create and send to the application the created buffers with per PID buffers.
2913 *
2914 * Called with UST app session lock held.
2915 * The session list lock and the session's lock must be acquired.
2916 *
2917 * Return 0 on success else a negative value.
2918 */
2919 static int create_channel_per_pid(struct ust_app *app,
2920 struct ltt_ust_session *usess, struct ust_app_session *ua_sess,
2921 struct ust_app_channel *ua_chan)
2922 {
2923 int ret;
2924 struct ust_registry_session *registry;
2925 enum lttng_error_code cmd_ret;
2926 struct ltt_session *session = NULL;
2927 uint64_t chan_reg_key;
2928 struct ust_registry_channel *chan_reg;
2929
2930 assert(app);
2931 assert(usess);
2932 assert(ua_sess);
2933 assert(ua_chan);
2934
2935 DBG("UST app creating channel %s with per PID buffers", ua_chan->name);
2936
2937 rcu_read_lock();
2938
2939 registry = get_session_registry(ua_sess);
2940 /* The UST app session lock is held, registry shall not be null. */
2941 assert(registry);
2942
2943 /* Create and add a new channel registry to session. */
2944 ret = ust_registry_channel_add(registry, ua_chan->key);
2945 if (ret < 0) {
2946 ERR("Error creating the UST channel \"%s\" registry instance",
2947 ua_chan->name);
2948 goto error;
2949 }
2950
2951 session = session_find_by_id(ua_sess->tracing_id);
2952 assert(session);
2953
2954 assert(pthread_mutex_trylock(&session->lock));
2955 assert(session_trylock_list());
2956
2957 /* Create and get channel on the consumer side. */
2958 ret = do_consumer_create_channel(usess, ua_sess, ua_chan,
2959 app->bits_per_long, registry,
2960 session->most_recent_chunk_id.value);
2961 if (ret < 0) {
2962 ERR("Error creating UST channel \"%s\" on the consumer daemon",
2963 ua_chan->name);
2964 goto error_remove_from_registry;
2965 }
2966
2967 ret = send_channel_pid_to_ust(app, ua_sess, ua_chan);
2968 if (ret < 0) {
2969 if (ret != -ENOTCONN) {
2970 ERR("Error sending channel to application");
2971 }
2972 goto error_remove_from_registry;
2973 }
2974
2975 chan_reg_key = ua_chan->key;
2976 pthread_mutex_lock(&registry->lock);
2977 chan_reg = ust_registry_channel_find(registry, chan_reg_key);
2978 assert(chan_reg);
2979 chan_reg->consumer_key = ua_chan->key;
2980 pthread_mutex_unlock(&registry->lock);
2981
2982 cmd_ret = notification_thread_command_add_channel(
2983 notification_thread_handle, session->name,
2984 lttng_credentials_get_uid(&ua_sess->effective_credentials),
2985 lttng_credentials_get_gid(&ua_sess->effective_credentials),
2986 ua_chan->name,
2987 ua_chan->key, LTTNG_DOMAIN_UST,
2988 ua_chan->attr.subbuf_size * ua_chan->attr.num_subbuf);
2989 if (cmd_ret != LTTNG_OK) {
2990 ret = - (int) cmd_ret;
2991 ERR("Failed to add channel to notification thread");
2992 goto error_remove_from_registry;
2993 }
2994
2995 error_remove_from_registry:
2996 if (ret) {
2997 ust_registry_channel_del_free(registry, ua_chan->key, false);
2998 }
2999 error:
3000 rcu_read_unlock();
3001 if (session) {
3002 session_put(session);
3003 }
3004 return ret;
3005 }
3006
3007 /*
3008 * From an already allocated ust app channel, create the channel buffers if
3009 * needed and send them to the application. This MUST be called with a RCU read
3010 * side lock acquired.
3011 *
3012 * Called with UST app session lock held.
3013 *
3014 * Return 0 on success or else a negative value. Returns -ENOTCONN if
3015 * the application exited concurrently.
3016 */
3017 static int ust_app_channel_send(struct ust_app *app,
3018 struct ltt_ust_session *usess, struct ust_app_session *ua_sess,
3019 struct ust_app_channel *ua_chan)
3020 {
3021 int ret;
3022
3023 assert(app);
3024 assert(usess);
3025 assert(usess->active);
3026 assert(ua_sess);
3027 assert(ua_chan);
3028
3029 /* Handle buffer type before sending the channel to the application. */
3030 switch (usess->buffer_type) {
3031 case LTTNG_BUFFER_PER_UID:
3032 {
3033 ret = create_channel_per_uid(app, usess, ua_sess, ua_chan);
3034 if (ret < 0) {
3035 goto error;
3036 }
3037 break;
3038 }
3039 case LTTNG_BUFFER_PER_PID:
3040 {
3041 ret = create_channel_per_pid(app, usess, ua_sess, ua_chan);
3042 if (ret < 0) {
3043 goto error;
3044 }
3045 break;
3046 }
3047 default:
3048 assert(0);
3049 ret = -EINVAL;
3050 goto error;
3051 }
3052
3053 /* Initialize ust objd object using the received handle and add it. */
3054 lttng_ht_node_init_ulong(&ua_chan->ust_objd_node, ua_chan->handle);
3055 lttng_ht_add_unique_ulong(app->ust_objd, &ua_chan->ust_objd_node);
3056
3057 /* If channel is not enabled, disable it on the tracer */
3058 if (!ua_chan->enabled) {
3059 ret = disable_ust_channel(app, ua_sess, ua_chan);
3060 if (ret < 0) {
3061 goto error;
3062 }
3063 }
3064
3065 error:
3066 return ret;
3067 }
3068
3069 /*
3070 * Create UST app channel and return it through ua_chanp if not NULL.
3071 *
3072 * Called with UST app session lock and RCU read-side lock held.
3073 *
3074 * Return 0 on success or else a negative value.
3075 */
3076 static int ust_app_channel_allocate(struct ust_app_session *ua_sess,
3077 struct ltt_ust_channel *uchan,
3078 enum lttng_ust_chan_type type, struct ltt_ust_session *usess,
3079 struct ust_app_channel **ua_chanp)
3080 {
3081 int ret = 0;
3082 struct lttng_ht_iter iter;
3083 struct lttng_ht_node_str *ua_chan_node;
3084 struct ust_app_channel *ua_chan;
3085
3086 /* Lookup channel in the ust app session */
3087 lttng_ht_lookup(ua_sess->channels, (void *)uchan->name, &iter);
3088 ua_chan_node = lttng_ht_iter_get_node_str(&iter);
3089 if (ua_chan_node != NULL) {
3090 ua_chan = caa_container_of(ua_chan_node, struct ust_app_channel, node);
3091 goto end;
3092 }
3093
3094 ua_chan = alloc_ust_app_channel(uchan->name, ua_sess, &uchan->attr);
3095 if (ua_chan == NULL) {
3096 /* Only malloc can fail here */
3097 ret = -ENOMEM;
3098 goto error;
3099 }
3100 shadow_copy_channel(ua_chan, uchan);
3101
3102 /* Set channel type. */
3103 ua_chan->attr.type = type;
3104
3105 /* Only add the channel if successful on the tracer side. */
3106 lttng_ht_add_unique_str(ua_sess->channels, &ua_chan->node);
3107 end:
3108 if (ua_chanp) {
3109 *ua_chanp = ua_chan;
3110 }
3111
3112 /* Everything went well. */
3113 return 0;
3114
3115 error:
3116 return ret;
3117 }
3118
3119 /*
3120 * Create UST app event and create it on the tracer side.
3121 *
3122 * Called with ust app session mutex held.
3123 */
3124 static
3125 int create_ust_app_event(struct ust_app_session *ua_sess,
3126 struct ust_app_channel *ua_chan, struct ltt_ust_event *uevent,
3127 struct ust_app *app)
3128 {
3129 int ret = 0;
3130 struct ust_app_event *ua_event;
3131
3132 ua_event = alloc_ust_app_event(uevent->attr.name, &uevent->attr);
3133 if (ua_event == NULL) {
3134 /* Only failure mode of alloc_ust_app_event(). */
3135 ret = -ENOMEM;
3136 goto end;
3137 }
3138 shadow_copy_event(ua_event, uevent);
3139
3140 /* Create it on the tracer side */
3141 ret = create_ust_event(app, ua_sess, ua_chan, ua_event);
3142 if (ret < 0) {
3143 /*
3144 * Not found previously means that it does not exist on the
3145 * tracer. If the application reports that the event existed,
3146 * it means there is a bug in the sessiond or lttng-ust
3147 * (or corruption, etc.)
3148 */
3149 if (ret == -LTTNG_UST_ERR_EXIST) {
3150 ERR("Tracer for application reported that an event being created already existed: "
3151 "event_name = \"%s\", pid = %d, ppid = %d, uid = %d, gid = %d",
3152 uevent->attr.name,
3153 app->pid, app->ppid, app->uid,
3154 app->gid);
3155 }
3156 goto error;
3157 }
3158
3159 add_unique_ust_app_event(ua_chan, ua_event);
3160
3161 DBG2("UST app create event %s for PID %d completed", ua_event->name,
3162 app->pid);
3163
3164 end:
3165 return ret;
3166
3167 error:
3168 /* Valid. Calling here is already in a read side lock */
3169 delete_ust_app_event(-1, ua_event, app);
3170 return ret;
3171 }
3172
3173 /*
3174 * Create UST metadata and open it on the tracer side.
3175 *
3176 * Called with UST app session lock held and RCU read side lock.
3177 */
3178 static int create_ust_app_metadata(struct ust_app_session *ua_sess,
3179 struct ust_app *app, struct consumer_output *consumer)
3180 {
3181 int ret = 0;
3182 struct ust_app_channel *metadata;
3183 struct consumer_socket *socket;
3184 struct ust_registry_session *registry;
3185 struct ltt_session *session = NULL;
3186
3187 assert(ua_sess);
3188 assert(app);
3189 assert(consumer);
3190
3191 registry = get_session_registry(ua_sess);
3192 /* The UST app session is held registry shall not be null. */
3193 assert(registry);
3194
3195 pthread_mutex_lock(&registry->lock);
3196
3197 /* Metadata already exists for this registry or it was closed previously */
3198 if (registry->metadata_key || registry->metadata_closed) {
3199 ret = 0;
3200 goto error;
3201 }
3202
3203 /* Allocate UST metadata */
3204 metadata = alloc_ust_app_channel(DEFAULT_METADATA_NAME, ua_sess, NULL);
3205 if (!metadata) {
3206 /* malloc() failed */
3207 ret = -ENOMEM;
3208 goto error;
3209 }
3210
3211 memcpy(&metadata->attr, &ua_sess->metadata_attr, sizeof(metadata->attr));
3212
3213 /* Need one fd for the channel. */
3214 ret = lttng_fd_get(LTTNG_FD_APPS, 1);
3215 if (ret < 0) {
3216 ERR("Exhausted number of available FD upon create metadata");
3217 goto error;
3218 }
3219
3220 /* Get the right consumer socket for the application. */
3221 socket = consumer_find_socket_by_bitness(app->bits_per_long, consumer);
3222 if (!socket) {
3223 ret = -EINVAL;
3224 goto error_consumer;
3225 }
3226
3227 /*
3228 * Keep metadata key so we can identify it on the consumer side. Assign it
3229 * to the registry *before* we ask the consumer so we avoid the race of the
3230 * consumer requesting the metadata and the ask_channel call on our side
3231 * did not returned yet.
3232 */
3233 registry->metadata_key = metadata->key;
3234
3235 session = session_find_by_id(ua_sess->tracing_id);
3236 assert(session);
3237
3238 assert(pthread_mutex_trylock(&session->lock));
3239 assert(session_trylock_list());
3240
3241 /*
3242 * Ask the metadata channel creation to the consumer. The metadata object
3243 * will be created by the consumer and kept their. However, the stream is
3244 * never added or monitored until we do a first push metadata to the
3245 * consumer.
3246 */
3247 ret = ust_consumer_ask_channel(ua_sess, metadata, consumer, socket,
3248 registry, session->current_trace_chunk);
3249 if (ret < 0) {
3250 /* Nullify the metadata key so we don't try to close it later on. */
3251 registry->metadata_key = 0;
3252 goto error_consumer;
3253 }
3254
3255 /*
3256 * The setup command will make the metadata stream be sent to the relayd,
3257 * if applicable, and the thread managing the metadatas. This is important
3258 * because after this point, if an error occurs, the only way the stream
3259 * can be deleted is to be monitored in the consumer.
3260 */
3261 ret = consumer_setup_metadata(socket, metadata->key);
3262 if (ret < 0) {
3263 /* Nullify the metadata key so we don't try to close it later on. */
3264 registry->metadata_key = 0;
3265 goto error_consumer;
3266 }
3267
3268 DBG2("UST metadata with key %" PRIu64 " created for app pid %d",
3269 metadata->key, app->pid);
3270
3271 error_consumer:
3272 lttng_fd_put(LTTNG_FD_APPS, 1);
3273 delete_ust_app_channel(-1, metadata, app);
3274 error:
3275 pthread_mutex_unlock(&registry->lock);
3276 if (session) {
3277 session_put(session);
3278 }
3279 return ret;
3280 }
3281
3282 /*
3283 * Return ust app pointer or NULL if not found. RCU read side lock MUST be
3284 * acquired before calling this function.
3285 */
3286 struct ust_app *ust_app_find_by_pid(pid_t pid)
3287 {
3288 struct ust_app *app = NULL;
3289 struct lttng_ht_node_ulong *node;
3290 struct lttng_ht_iter iter;
3291
3292 lttng_ht_lookup(ust_app_ht, (void *)((unsigned long) pid), &iter);
3293 node = lttng_ht_iter_get_node_ulong(&iter);
3294 if (node == NULL) {
3295 DBG2("UST app no found with pid %d", pid);
3296 goto error;
3297 }
3298
3299 DBG2("Found UST app by pid %d", pid);
3300
3301 app = caa_container_of(node, struct ust_app, pid_n);
3302
3303 error:
3304 return app;
3305 }
3306
3307 /*
3308 * Allocate and init an UST app object using the registration information and
3309 * the command socket. This is called when the command socket connects to the
3310 * session daemon.
3311 *
3312 * The object is returned on success or else NULL.
3313 */
3314 struct ust_app *ust_app_create(struct ust_register_msg *msg, int sock)
3315 {
3316 struct ust_app *lta = NULL;
3317
3318 assert(msg);
3319 assert(sock >= 0);
3320
3321 DBG3("UST app creating application for socket %d", sock);
3322
3323 if ((msg->bits_per_long == 64 &&
3324 (uatomic_read(&ust_consumerd64_fd) == -EINVAL))
3325 || (msg->bits_per_long == 32 &&
3326 (uatomic_read(&ust_consumerd32_fd) == -EINVAL))) {
3327 ERR("Registration failed: application \"%s\" (pid: %d) has "
3328 "%d-bit long, but no consumerd for this size is available.\n",
3329 msg->name, msg->pid, msg->bits_per_long);
3330 goto error;
3331 }
3332
3333 lta = zmalloc(sizeof(struct ust_app));
3334 if (lta == NULL) {
3335 PERROR("malloc");
3336 goto error;
3337 }
3338
3339 lta->ppid = msg->ppid;
3340 lta->uid = msg->uid;
3341 lta->gid = msg->gid;
3342
3343 lta->bits_per_long = msg->bits_per_long;
3344 lta->uint8_t_alignment = msg->uint8_t_alignment;
3345 lta->uint16_t_alignment = msg->uint16_t_alignment;
3346 lta->uint32_t_alignment = msg->uint32_t_alignment;
3347 lta->uint64_t_alignment = msg->uint64_t_alignment;
3348 lta->long_alignment = msg->long_alignment;
3349 lta->byte_order = msg->byte_order;
3350
3351 lta->v_major = msg->major;
3352 lta->v_minor = msg->minor;
3353 lta->sessions = lttng_ht_new(0, LTTNG_HT_TYPE_U64);
3354 lta->ust_objd = lttng_ht_new(0, LTTNG_HT_TYPE_ULONG);
3355 lta->ust_sessions_objd = lttng_ht_new(0, LTTNG_HT_TYPE_ULONG);
3356 lta->notify_sock = -1;
3357
3358 /* Copy name and make sure it's NULL terminated. */
3359 strncpy(lta->name, msg->name, sizeof(lta->name));
3360 lta->name[UST_APP_PROCNAME_LEN] = '\0';
3361
3362 /*
3363 * Before this can be called, when receiving the registration information,
3364 * the application compatibility is checked. So, at this point, the
3365 * application can work with this session daemon.
3366 */
3367 lta->compatible = 1;
3368
3369 lta->pid = msg->pid;
3370 lttng_ht_node_init_ulong(&lta->pid_n, (unsigned long) lta->pid);
3371 lta->sock = sock;
3372 pthread_mutex_init(&lta->sock_lock, NULL);
3373 lttng_ht_node_init_ulong(&lta->sock_n, (unsigned long) lta->sock);
3374
3375 CDS_INIT_LIST_HEAD(&lta->teardown_head);
3376 error:
3377 return lta;
3378 }
3379
3380 /*
3381 * For a given application object, add it to every hash table.
3382 */
3383 void ust_app_add(struct ust_app *app)
3384 {
3385 assert(app);
3386 assert(app->notify_sock >= 0);
3387
3388 app->registration_time = time(NULL);
3389
3390 rcu_read_lock();
3391
3392 /*
3393 * On a re-registration, we want to kick out the previous registration of
3394 * that pid
3395 */
3396 lttng_ht_add_replace_ulong(ust_app_ht, &app->pid_n);
3397
3398 /*
3399 * The socket _should_ be unique until _we_ call close. So, a add_unique
3400 * for the ust_app_ht_by_sock is used which asserts fail if the entry was
3401 * already in the table.
3402 */
3403 lttng_ht_add_unique_ulong(ust_app_ht_by_sock, &app->sock_n);
3404
3405 /* Add application to the notify socket hash table. */
3406 lttng_ht_node_init_ulong(&app->notify_sock_n, app->notify_sock);
3407 lttng_ht_add_unique_ulong(ust_app_ht_by_notify_sock, &app->notify_sock_n);
3408
3409 DBG("App registered with pid:%d ppid:%d uid:%d gid:%d sock:%d name:%s "
3410 "notify_sock:%d (version %d.%d)", app->pid, app->ppid, app->uid,
3411 app->gid, app->sock, app->name, app->notify_sock, app->v_major,
3412 app->v_minor);
3413
3414 rcu_read_unlock();
3415 }
3416
3417 /*
3418 * Set the application version into the object.
3419 *
3420 * Return 0 on success else a negative value either an errno code or a
3421 * LTTng-UST error code.
3422 */
3423 int ust_app_version(struct ust_app *app)
3424 {
3425 int ret;
3426
3427 assert(app);
3428
3429 pthread_mutex_lock(&app->sock_lock);
3430 ret = ustctl_tracer_version(app->sock, &app->version);
3431 pthread_mutex_unlock(&app->sock_lock);
3432 if (ret < 0) {
3433 if (ret != -LTTNG_UST_ERR_EXITING && ret != -EPIPE) {
3434 ERR("UST app %d version failed with ret %d", app->sock, ret);
3435 } else {
3436 DBG3("UST app %d version failed. Application is dead", app->sock);
3437 }
3438 }
3439
3440 return ret;
3441 }
3442
3443 /*
3444 * Unregister app by removing it from the global traceable app list and freeing
3445 * the data struct.
3446 *
3447 * The socket is already closed at this point so no close to sock.
3448 */
3449 void ust_app_unregister(int sock)
3450 {
3451 struct ust_app *lta;
3452 struct lttng_ht_node_ulong *node;
3453 struct lttng_ht_iter ust_app_sock_iter;
3454 struct lttng_ht_iter iter;
3455 struct ust_app_session *ua_sess;
3456 int ret;
3457
3458 rcu_read_lock();
3459
3460 /* Get the node reference for a call_rcu */
3461 lttng_ht_lookup(ust_app_ht_by_sock, (void *)((unsigned long) sock), &ust_app_sock_iter);
3462 node = lttng_ht_iter_get_node_ulong(&ust_app_sock_iter);
3463 assert(node);
3464
3465 lta = caa_container_of(node, struct ust_app, sock_n);
3466 DBG("PID %d unregistering with sock %d", lta->pid, sock);
3467
3468 /*
3469 * For per-PID buffers, perform "push metadata" and flush all
3470 * application streams before removing app from hash tables,
3471 * ensuring proper behavior of data_pending check.
3472 * Remove sessions so they are not visible during deletion.
3473 */
3474 cds_lfht_for_each_entry(lta->sessions->ht, &iter.iter, ua_sess,
3475 node.node) {
3476 struct ust_registry_session *registry;
3477
3478 ret = lttng_ht_del(lta->sessions, &iter);
3479 if (ret) {
3480 /* The session was already removed so scheduled for teardown. */
3481 continue;
3482 }
3483
3484 if (ua_sess->buffer_type == LTTNG_BUFFER_PER_PID) {
3485 (void) ust_app_flush_app_session(lta, ua_sess);
3486 }
3487
3488 /*
3489 * Add session to list for teardown. This is safe since at this point we
3490 * are the only one using this list.
3491 */
3492 pthread_mutex_lock(&ua_sess->lock);
3493
3494 if (ua_sess->deleted) {
3495 pthread_mutex_unlock(&ua_sess->lock);
3496 continue;
3497 }
3498
3499 /*
3500 * Normally, this is done in the delete session process which is
3501 * executed in the call rcu below. However, upon registration we can't
3502 * afford to wait for the grace period before pushing data or else the
3503 * data pending feature can race between the unregistration and stop
3504 * command where the data pending command is sent *before* the grace
3505 * period ended.
3506 *
3507 * The close metadata below nullifies the metadata pointer in the
3508 * session so the delete session will NOT push/close a second time.
3509 */
3510 registry = get_session_registry(ua_sess);
3511 if (registry) {
3512 /* Push metadata for application before freeing the application. */
3513 (void) push_metadata(registry, ua_sess->consumer);
3514
3515 /*
3516 * Don't ask to close metadata for global per UID buffers. Close
3517 * metadata only on destroy trace session in this case. Also, the
3518 * previous push metadata could have flag the metadata registry to
3519 * close so don't send a close command if closed.
3520 */
3521 if (ua_sess->buffer_type != LTTNG_BUFFER_PER_UID) {
3522 /* And ask to close it for this session registry. */
3523 (void) close_metadata(registry, ua_sess->consumer);
3524 }
3525 }
3526 cds_list_add(&ua_sess->teardown_node, &lta->teardown_head);
3527
3528 pthread_mutex_unlock(&ua_sess->lock);
3529 }
3530
3531 /* Remove application from PID hash table */
3532 ret = lttng_ht_del(ust_app_ht_by_sock, &ust_app_sock_iter);
3533 assert(!ret);
3534
3535 /*
3536 * Remove application from notify hash table. The thread handling the
3537 * notify socket could have deleted the node so ignore on error because
3538 * either way it's valid. The close of that socket is handled by the
3539 * apps_notify_thread.
3540 */
3541 iter.iter.node = &lta->notify_sock_n.node;
3542 (void) lttng_ht_del(ust_app_ht_by_notify_sock, &iter);
3543
3544 /*
3545 * Ignore return value since the node might have been removed before by an
3546 * add replace during app registration because the PID can be reassigned by
3547 * the OS.
3548 */
3549 iter.iter.node = &lta->pid_n.node;
3550 ret = lttng_ht_del(ust_app_ht, &iter);
3551 if (ret) {
3552 DBG3("Unregister app by PID %d failed. This can happen on pid reuse",
3553 lta->pid);
3554 }
3555
3556 /* Free memory */
3557 call_rcu(&lta->pid_n.head, delete_ust_app_rcu);
3558
3559 rcu_read_unlock();
3560 return;
3561 }
3562
3563 /*
3564 * Fill events array with all events name of all registered apps.
3565 */
3566 int ust_app_list_events(struct lttng_event **events)
3567 {
3568 int ret, handle;
3569 size_t nbmem, count = 0;
3570 struct lttng_ht_iter iter;
3571 struct ust_app *app;
3572 struct lttng_event *tmp_event;
3573
3574 nbmem = UST_APP_EVENT_LIST_SIZE;
3575 tmp_event = zmalloc(nbmem * sizeof(struct lttng_event));
3576 if (tmp_event == NULL) {
3577 PERROR("zmalloc ust app events");
3578 ret = -ENOMEM;
3579 goto error;
3580 }
3581
3582 rcu_read_lock();
3583
3584 cds_lfht_for_each_entry(ust_app_ht->ht, &iter.iter, app, pid_n.node) {
3585 struct lttng_ust_tracepoint_iter uiter;
3586
3587 health_code_update();
3588
3589 if (!app->compatible) {
3590 /*
3591 * TODO: In time, we should notice the caller of this error by
3592 * telling him that this is a version error.
3593 */
3594 continue;
3595 }
3596 pthread_mutex_lock(&app->sock_lock);
3597 handle = ustctl_tracepoint_list(app->sock);
3598 if (handle < 0) {
3599 if (handle != -EPIPE && handle != -LTTNG_UST_ERR_EXITING) {
3600 ERR("UST app list events getting handle failed for app pid %d",
3601 app->pid);
3602 }
3603 pthread_mutex_unlock(&app->sock_lock);
3604 continue;
3605 }
3606
3607 while ((ret = ustctl_tracepoint_list_get(app->sock, handle,
3608 &uiter)) != -LTTNG_UST_ERR_NOENT) {
3609 /* Handle ustctl error. */
3610 if (ret < 0) {
3611 int release_ret;
3612
3613 if (ret != -LTTNG_UST_ERR_EXITING && ret != -EPIPE) {
3614 ERR("UST app tp list get failed for app %d with ret %d",
3615 app->sock, ret);
3616 } else {
3617 DBG3("UST app tp list get failed. Application is dead");
3618 /*
3619 * This is normal behavior, an application can die during the
3620 * creation process. Don't report an error so the execution can
3621 * continue normally. Continue normal execution.
3622 */
3623 break;
3624 }
3625 free(tmp_event);
3626 release_ret = ustctl_release_handle(app->sock, handle);
3627 if (release_ret < 0 &&
3628 release_ret != -LTTNG_UST_ERR_EXITING &&
3629 release_ret != -EPIPE) {
3630 ERR("Error releasing app handle for app %d with ret %d", app->sock, release_ret);
3631 }
3632 pthread_mutex_unlock(&app->sock_lock);
3633 goto rcu_error;
3634 }
3635
3636 health_code_update();
3637 if (count >= nbmem) {
3638 /* In case the realloc fails, we free the memory */
3639 struct lttng_event *new_tmp_event;
3640 size_t new_nbmem;
3641
3642 new_nbmem = nbmem << 1;
3643 DBG2("Reallocating event list from %zu to %zu entries",
3644 nbmem, new_nbmem);
3645 new_tmp_event = realloc(tmp_event,
3646 new_nbmem * sizeof(struct lttng_event));
3647 if (new_tmp_event == NULL) {
3648 int release_ret;
3649
3650 PERROR("realloc ust app events");
3651 free(tmp_event);
3652 ret = -ENOMEM;
3653 release_ret = ustctl_release_handle(app->sock, handle);
3654 if (release_ret < 0 &&
3655 release_ret != -LTTNG_UST_ERR_EXITING &&
3656 release_ret != -EPIPE) {
3657 ERR("Error releasing app handle for app %d with ret %d", app->sock, release_ret);
3658 }
3659 pthread_mutex_unlock(&app->sock_lock);
3660 goto rcu_error;
3661 }
3662 /* Zero the new memory */
3663 memset(new_tmp_event + nbmem, 0,
3664 (new_nbmem - nbmem) * sizeof(struct lttng_event));
3665 nbmem = new_nbmem;
3666 tmp_event = new_tmp_event;
3667 }
3668 memcpy(tmp_event[count].name, uiter.name, LTTNG_UST_SYM_NAME_LEN);
3669 tmp_event[count].loglevel = uiter.loglevel;
3670 tmp_event[count].type = (enum lttng_event_type) LTTNG_UST_TRACEPOINT;
3671 tmp_event[count].pid = app->pid;
3672 tmp_event[count].enabled = -1;
3673 count++;
3674 }
3675 ret = ustctl_release_handle(app->sock, handle);
3676 pthread_mutex_unlock(&app->sock_lock);
3677 if (ret < 0 && ret != -LTTNG_UST_ERR_EXITING && ret != -EPIPE) {
3678 ERR("Error releasing app handle for app %d with ret %d", app->sock, ret);
3679 }
3680 }
3681
3682 ret = count;
3683 *events = tmp_event;
3684
3685 DBG2("UST app list events done (%zu events)", count);
3686
3687 rcu_error:
3688 rcu_read_unlock();
3689 error:
3690 health_code_update();
3691 return ret;
3692 }
3693
3694 /*
3695 * Fill events array with all events name of all registered apps.
3696 */
3697 int ust_app_list_event_fields(struct lttng_event_field **fields)
3698 {
3699 int ret, handle;
3700 size_t nbmem, count = 0;
3701 struct lttng_ht_iter iter;
3702 struct ust_app *app;
3703 struct lttng_event_field *tmp_event;
3704
3705 nbmem = UST_APP_EVENT_LIST_SIZE;
3706 tmp_event = zmalloc(nbmem * sizeof(struct lttng_event_field));
3707 if (tmp_event == NULL) {
3708 PERROR("zmalloc ust app event fields");
3709 ret = -ENOMEM;
3710 goto error;
3711 }
3712
3713 rcu_read_lock();
3714
3715 cds_lfht_for_each_entry(ust_app_ht->ht, &iter.iter, app, pid_n.node) {
3716 struct lttng_ust_field_iter uiter;
3717
3718 health_code_update();
3719
3720 if (!app->compatible) {
3721 /*
3722 * TODO: In time, we should notice the caller of this error by
3723 * telling him that this is a version error.
3724 */
3725 continue;
3726 }
3727 pthread_mutex_lock(&app->sock_lock);
3728 handle = ustctl_tracepoint_field_list(app->sock);
3729 if (handle < 0) {
3730 if (handle != -EPIPE && handle != -LTTNG_UST_ERR_EXITING) {
3731 ERR("UST app list field getting handle failed for app pid %d",
3732 app->pid);
3733 }
3734 pthread_mutex_unlock(&app->sock_lock);
3735 continue;
3736 }
3737
3738 while ((ret = ustctl_tracepoint_field_list_get(app->sock, handle,
3739 &uiter)) != -LTTNG_UST_ERR_NOENT) {
3740 /* Handle ustctl error. */
3741 if (ret < 0) {
3742 int release_ret;
3743
3744 if (ret != -LTTNG_UST_ERR_EXITING && ret != -EPIPE) {
3745 ERR("UST app tp list field failed for app %d with ret %d",
3746 app->sock, ret);
3747 } else {
3748 DBG3("UST app tp list field failed. Application is dead");
3749 /*
3750 * This is normal behavior, an application can die during the
3751 * creation process. Don't report an error so the execution can
3752 * continue normally. Reset list and count for next app.
3753 */
3754 break;
3755 }
3756 free(tmp_event);
3757 release_ret = ustctl_release_handle(app->sock, handle);
3758 pthread_mutex_unlock(&app->sock_lock);
3759 if (release_ret < 0 &&
3760 release_ret != -LTTNG_UST_ERR_EXITING &&
3761 release_ret != -EPIPE) {
3762 ERR("Error releasing app handle for app %d with ret %d", app->sock, release_ret);
3763 }
3764 goto rcu_error;
3765 }
3766
3767 health_code_update();
3768 if (count >= nbmem) {
3769 /* In case the realloc fails, we free the memory */
3770 struct lttng_event_field *new_tmp_event;
3771 size_t new_nbmem;
3772
3773 new_nbmem = nbmem << 1;
3774 DBG2("Reallocating event field list from %zu to %zu entries",
3775 nbmem, new_nbmem);
3776 new_tmp_event = realloc(tmp_event,
3777 new_nbmem * sizeof(struct lttng_event_field));
3778 if (new_tmp_event == NULL) {
3779 int release_ret;
3780
3781 PERROR("realloc ust app event fields");
3782 free(tmp_event);
3783 ret = -ENOMEM;
3784 release_ret = ustctl_release_handle(app->sock, handle);
3785 pthread_mutex_unlock(&app->sock_lock);
3786 if (release_ret &&
3787 release_ret != -LTTNG_UST_ERR_EXITING &&
3788 release_ret != -EPIPE) {
3789 ERR("Error releasing app handle for app %d with ret %d", app->sock, release_ret);
3790 }
3791 goto rcu_error;
3792 }
3793 /* Zero the new memory */
3794 memset(new_tmp_event + nbmem, 0,
3795 (new_nbmem - nbmem) * sizeof(struct lttng_event_field));
3796 nbmem = new_nbmem;
3797 tmp_event = new_tmp_event;
3798 }
3799
3800 memcpy(tmp_event[count].field_name, uiter.field_name, LTTNG_UST_SYM_NAME_LEN);
3801 /* Mapping between these enums matches 1 to 1. */
3802 tmp_event[count].type = (enum lttng_event_field_type) uiter.type;
3803 tmp_event[count].nowrite = uiter.nowrite;
3804
3805 memcpy(tmp_event[count].event.name, uiter.event_name, LTTNG_UST_SYM_NAME_LEN);
3806 tmp_event[count].event.loglevel = uiter.loglevel;
3807 tmp_event[count].event.type = LTTNG_EVENT_TRACEPOINT;
3808 tmp_event[count].event.pid = app->pid;
3809 tmp_event[count].event.enabled = -1;
3810 count++;
3811 }
3812 ret = ustctl_release_handle(app->sock, handle);
3813 pthread_mutex_unlock(&app->sock_lock);
3814 if (ret < 0 &&
3815 ret != -LTTNG_UST_ERR_EXITING &&
3816 ret != -EPIPE) {
3817 ERR("Error releasing app handle for app %d with ret %d", app->sock, ret);
3818 }
3819 }
3820
3821 ret = count;
3822 *fields = tmp_event;
3823
3824 DBG2("UST app list event fields done (%zu events)", count);
3825
3826 rcu_error:
3827 rcu_read_unlock();
3828 error:
3829 health_code_update();
3830 return ret;
3831 }
3832
3833 /*
3834 * Free and clean all traceable apps of the global list.
3835 *
3836 * Should _NOT_ be called with RCU read-side lock held.
3837 */
3838 void ust_app_clean_list(void)
3839 {
3840 int ret;
3841 struct ust_app *app;
3842 struct lttng_ht_iter iter;
3843
3844 DBG2("UST app cleaning registered apps hash table");
3845
3846 rcu_read_lock();
3847
3848 /* Cleanup notify socket hash table */
3849 if (ust_app_ht_by_notify_sock) {
3850 cds_lfht_for_each_entry(ust_app_ht_by_notify_sock->ht, &iter.iter, app,
3851 notify_sock_n.node) {
3852 struct cds_lfht_node *node;
3853 struct ust_app *app;
3854
3855 node = cds_lfht_iter_get_node(&iter.iter);
3856 if (!node) {
3857 continue;
3858 }
3859
3860 app = container_of(node, struct ust_app,
3861 notify_sock_n.node);
3862 ust_app_notify_sock_unregister(app->notify_sock);
3863 }
3864 }
3865
3866 if (ust_app_ht) {
3867 cds_lfht_for_each_entry(ust_app_ht->ht, &iter.iter, app, pid_n.node) {
3868 ret = lttng_ht_del(ust_app_ht, &iter);
3869 assert(!ret);
3870 call_rcu(&app->pid_n.head, delete_ust_app_rcu);
3871 }
3872 }
3873
3874 /* Cleanup socket hash table */
3875 if (ust_app_ht_by_sock) {
3876 cds_lfht_for_each_entry(ust_app_ht_by_sock->ht, &iter.iter, app,
3877 sock_n.node) {
3878 ret = lttng_ht_del(ust_app_ht_by_sock, &iter);
3879 assert(!ret);
3880 }
3881 }
3882
3883 rcu_read_unlock();
3884
3885 /* Destroy is done only when the ht is empty */
3886 if (ust_app_ht) {
3887 ht_cleanup_push(ust_app_ht);
3888 }
3889 if (ust_app_ht_by_sock) {
3890 ht_cleanup_push(ust_app_ht_by_sock);
3891 }
3892 if (ust_app_ht_by_notify_sock) {
3893 ht_cleanup_push(ust_app_ht_by_notify_sock);
3894 }
3895 }
3896
3897 /*
3898 * Init UST app hash table.
3899 */
3900 int ust_app_ht_alloc(void)
3901 {
3902 ust_app_ht = lttng_ht_new(0, LTTNG_HT_TYPE_ULONG);
3903 if (!ust_app_ht) {
3904 return -1;
3905 }
3906 ust_app_ht_by_sock = lttng_ht_new(0, LTTNG_HT_TYPE_ULONG);
3907 if (!ust_app_ht_by_sock) {
3908 return -1;
3909 }
3910 ust_app_ht_by_notify_sock = lttng_ht_new(0, LTTNG_HT_TYPE_ULONG);
3911 if (!ust_app_ht_by_notify_sock) {
3912 return -1;
3913 }
3914 return 0;
3915 }
3916
3917 /*
3918 * For a specific UST session, disable the channel for all registered apps.
3919 */
3920 int ust_app_disable_channel_glb(struct ltt_ust_session *usess,
3921 struct ltt_ust_channel *uchan)
3922 {
3923 int ret = 0;
3924 struct lttng_ht_iter iter;
3925 struct lttng_ht_node_str *ua_chan_node;
3926 struct ust_app *app;
3927 struct ust_app_session *ua_sess;
3928 struct ust_app_channel *ua_chan;
3929
3930 assert(usess->active);
3931 DBG2("UST app disabling channel %s from global domain for session id %" PRIu64,
3932 uchan->name, usess->id);
3933
3934 rcu_read_lock();
3935
3936 /* For every registered applications */
3937 cds_lfht_for_each_entry(ust_app_ht->ht, &iter.iter, app, pid_n.node) {
3938 struct lttng_ht_iter uiter;
3939 if (!app->compatible) {
3940 /*
3941 * TODO: In time, we should notice the caller of this error by
3942 * telling him that this is a version error.
3943 */
3944 continue;
3945 }
3946 ua_sess = lookup_session_by_app(usess, app);
3947 if (ua_sess == NULL) {
3948 continue;
3949 }
3950
3951 /* Get channel */
3952 lttng_ht_lookup(ua_sess->channels, (void *)uchan->name, &uiter);
3953 ua_chan_node = lttng_ht_iter_get_node_str(&uiter);
3954 /* If the session if found for the app, the channel must be there */
3955 assert(ua_chan_node);
3956
3957 ua_chan = caa_container_of(ua_chan_node, struct ust_app_channel, node);
3958 /* The channel must not be already disabled */
3959 assert(ua_chan->enabled == 1);
3960
3961 /* Disable channel onto application */
3962 ret = disable_ust_app_channel(ua_sess, ua_chan, app);
3963 if (ret < 0) {
3964 /* XXX: We might want to report this error at some point... */
3965 continue;
3966 }
3967 }
3968
3969 rcu_read_unlock();
3970 return ret;
3971 }
3972
3973 /*
3974 * For a specific UST session, enable the channel for all registered apps.
3975 */
3976 int ust_app_enable_channel_glb(struct ltt_ust_session *usess,
3977 struct ltt_ust_channel *uchan)
3978 {
3979 int ret = 0;
3980 struct lttng_ht_iter iter;
3981 struct ust_app *app;
3982 struct ust_app_session *ua_sess;
3983
3984 assert(usess->active);
3985 DBG2("UST app enabling channel %s to global domain for session id %" PRIu64,
3986 uchan->name, usess->id);
3987
3988 rcu_read_lock();
3989
3990 /* For every registered applications */
3991 cds_lfht_for_each_entry(ust_app_ht->ht, &iter.iter, app, pid_n.node) {
3992 if (!app->compatible) {
3993 /*
3994 * TODO: In time, we should notice the caller of this error by
3995 * telling him that this is a version error.
3996 */
3997 continue;
3998 }
3999 ua_sess = lookup_session_by_app(usess, app);
4000 if (ua_sess == NULL) {
4001 continue;
4002 }
4003
4004 /* Enable channel onto application */
4005 ret = enable_ust_app_channel(ua_sess, uchan, app);
4006 if (ret < 0) {
4007 /* XXX: We might want to report this error at some point... */
4008 continue;
4009 }
4010 }
4011
4012 rcu_read_unlock();
4013 return ret;
4014 }
4015
4016 /*
4017 * Disable an event in a channel and for a specific session.
4018 */
4019 int ust_app_disable_event_glb(struct ltt_ust_session *usess,
4020 struct ltt_ust_channel *uchan, struct ltt_ust_event *uevent)
4021 {
4022 int ret = 0;
4023 struct lttng_ht_iter iter, uiter;
4024 struct lttng_ht_node_str *ua_chan_node;
4025 struct ust_app *app;
4026 struct ust_app_session *ua_sess;
4027 struct ust_app_channel *ua_chan;
4028 struct ust_app_event *ua_event;
4029
4030 assert(usess->active);
4031 DBG("UST app disabling event %s for all apps in channel "
4032 "%s for session id %" PRIu64,
4033 uevent->attr.name, uchan->name, usess->id);
4034
4035 rcu_read_lock();
4036
4037 /* For all registered applications */
4038 cds_lfht_for_each_entry(ust_app_ht->ht, &iter.iter, app, pid_n.node) {
4039 if (!app->compatible) {
4040 /*
4041 * TODO: In time, we should notice the caller of this error by
4042 * telling him that this is a version error.
4043 */
4044 continue;
4045 }
4046 ua_sess = lookup_session_by_app(usess, app);
4047 if (ua_sess == NULL) {
4048 /* Next app */
4049 continue;
4050 }
4051
4052 /* Lookup channel in the ust app session */
4053 lttng_ht_lookup(ua_sess->channels, (void *)uchan->name, &uiter);
4054 ua_chan_node = lttng_ht_iter_get_node_str(&uiter);
4055 if (ua_chan_node == NULL) {
4056 DBG2("Channel %s not found in session id %" PRIu64 " for app pid %d."
4057 "Skipping", uchan->name, usess->id, app->pid);
4058 continue;
4059 }
4060 ua_chan = caa_container_of(ua_chan_node, struct ust_app_channel, node);
4061
4062 ua_event = find_ust_app_event(ua_chan->events, uevent->attr.name,
4063 uevent->filter, uevent->attr.loglevel,
4064 uevent->exclusion);
4065 if (ua_event == NULL) {
4066 DBG2("Event %s not found in channel %s for app pid %d."
4067 "Skipping", uevent->attr.name, uchan->name, app->pid);
4068 continue;
4069 }
4070
4071 ret = disable_ust_app_event(ua_sess, ua_event, app);
4072 if (ret < 0) {
4073 /* XXX: Report error someday... */
4074 continue;
4075 }
4076 }
4077
4078 rcu_read_unlock();
4079 return ret;
4080 }
4081
4082 /* The ua_sess lock must be held by the caller. */
4083 static
4084 int ust_app_channel_create(struct ltt_ust_session *usess,
4085 struct ust_app_session *ua_sess,
4086 struct ltt_ust_channel *uchan, struct ust_app *app,
4087 struct ust_app_channel **_ua_chan)
4088 {
4089 int ret = 0;
4090 struct ust_app_channel *ua_chan = NULL;
4091
4092 assert(ua_sess);
4093 ASSERT_LOCKED(ua_sess->lock);
4094
4095 if (!strncmp(uchan->name, DEFAULT_METADATA_NAME,
4096 sizeof(uchan->name))) {
4097 copy_channel_attr_to_ustctl(&ua_sess->metadata_attr,
4098 &uchan->attr);
4099 ret = 0;
4100 } else {
4101 struct ltt_ust_context *uctx = NULL;
4102
4103 /*
4104 * Create channel onto application and synchronize its
4105 * configuration.
4106 */
4107 ret = ust_app_channel_allocate(ua_sess, uchan,
4108 LTTNG_UST_CHAN_PER_CPU, usess,
4109 &ua_chan);
4110 if (ret < 0) {
4111 goto error;
4112 }
4113
4114 ret = ust_app_channel_send(app, usess,
4115 ua_sess, ua_chan);
4116 if (ret) {
4117 goto error;
4118 }
4119
4120 /* Add contexts. */
4121 cds_list_for_each_entry(uctx, &uchan->ctx_list, list) {
4122 ret = create_ust_app_channel_context(ua_chan,
4123 &uctx->ctx, app);
4124 if (ret) {
4125 goto error;
4126 }
4127 }
4128 }
4129
4130 error:
4131 if (ret < 0) {
4132 switch (ret) {
4133 case -ENOTCONN:
4134 /*
4135 * The application's socket is not valid. Either a bad socket
4136 * or a timeout on it. We can't inform the caller that for a
4137 * specific app, the session failed so lets continue here.
4138 */
4139 ret = 0; /* Not an error. */
4140 break;
4141 case -ENOMEM:
4142 default:
4143 break;
4144 }
4145 }
4146
4147 if (ret == 0 && _ua_chan) {
4148 /*
4149 * Only return the application's channel on success. Note
4150 * that the channel can still be part of the application's
4151 * channel hashtable on error.
4152 */
4153 *_ua_chan = ua_chan;
4154 }
4155 return ret;
4156 }
4157
4158 /*
4159 * Enable event for a specific session and channel on the tracer.
4160 */
4161 int ust_app_enable_event_glb(struct ltt_ust_session *usess,
4162 struct ltt_ust_channel *uchan, struct ltt_ust_event *uevent)
4163 {
4164 int ret = 0;
4165 struct lttng_ht_iter iter, uiter;
4166 struct lttng_ht_node_str *ua_chan_node;
4167 struct ust_app *app;
4168 struct ust_app_session *ua_sess;
4169 struct ust_app_channel *ua_chan;
4170 struct ust_app_event *ua_event;
4171
4172 assert(usess->active);
4173 DBG("UST app enabling event %s for all apps for session id %" PRIu64,
4174 uevent->attr.name, usess->id);
4175
4176 /*
4177 * NOTE: At this point, this function is called only if the session and
4178 * channel passed are already created for all apps. and enabled on the
4179 * tracer also.
4180 */
4181
4182 rcu_read_lock();
4183
4184 /* For all registered applications */
4185 cds_lfht_for_each_entry(ust_app_ht->ht, &iter.iter, app, pid_n.node) {
4186 if (!app->compatible) {
4187 /*
4188 * TODO: In time, we should notice the caller of this error by
4189 * telling him that this is a version error.
4190 */
4191 continue;
4192 }
4193 ua_sess = lookup_session_by_app(usess, app);
4194 if (!ua_sess) {
4195 /* The application has problem or is probably dead. */
4196 continue;
4197 }
4198
4199 pthread_mutex_lock(&ua_sess->lock);
4200
4201 if (ua_sess->deleted) {
4202 pthread_mutex_unlock(&ua_sess->lock);
4203 continue;
4204 }
4205
4206 /* Lookup channel in the ust app session */
4207 lttng_ht_lookup(ua_sess->channels, (void *)uchan->name, &uiter);
4208 ua_chan_node = lttng_ht_iter_get_node_str(&uiter);
4209 /*
4210 * It is possible that the channel cannot be found is
4211 * the channel/event creation occurs concurrently with
4212 * an application exit.
4213 */
4214 if (!ua_chan_node) {
4215 pthread_mutex_unlock(&ua_sess->lock);
4216 continue;
4217 }
4218
4219 ua_chan = caa_container_of(ua_chan_node, struct ust_app_channel, node);
4220
4221 /* Get event node */
4222 ua_event = find_ust_app_event(ua_chan->events, uevent->attr.name,
4223 uevent->filter, uevent->attr.loglevel, uevent->exclusion);
4224 if (ua_event == NULL) {
4225 DBG3("UST app enable event %s not found for app PID %d."
4226 "Skipping app", uevent->attr.name, app->pid);
4227 goto next_app;
4228 }
4229
4230 ret = enable_ust_app_event(ua_sess, ua_event, app);
4231 if (ret < 0) {
4232 pthread_mutex_unlock(&ua_sess->lock);
4233 goto error;
4234 }
4235 next_app:
4236 pthread_mutex_unlock(&ua_sess->lock);
4237 }
4238
4239 error:
4240 rcu_read_unlock();
4241 return ret;
4242 }
4243
4244 /*
4245 * For a specific existing UST session and UST channel, creates the event for
4246 * all registered apps.
4247 */
4248 int ust_app_create_event_glb(struct ltt_ust_session *usess,
4249 struct ltt_ust_channel *uchan, struct ltt_ust_event *uevent)
4250 {
4251 int ret = 0;
4252 struct lttng_ht_iter iter, uiter;
4253 struct lttng_ht_node_str *ua_chan_node;
4254 struct ust_app *app;
4255 struct ust_app_session *ua_sess;
4256 struct ust_app_channel *ua_chan;
4257
4258 assert(usess->active);
4259 DBG("UST app creating event %s for all apps for session id %" PRIu64,
4260 uevent->attr.name, usess->id);
4261
4262 rcu_read_lock();
4263
4264 /* For all registered applications */
4265 cds_lfht_for_each_entry(ust_app_ht->ht, &iter.iter, app, pid_n.node) {
4266 if (!app->compatible) {
4267 /*
4268 * TODO: In time, we should notice the caller of this error by
4269 * telling him that this is a version error.
4270 */
4271 continue;
4272 }
4273 ua_sess = lookup_session_by_app(usess, app);
4274 if (!ua_sess) {
4275 /* The application has problem or is probably dead. */
4276 continue;
4277 }
4278
4279 pthread_mutex_lock(&ua_sess->lock);
4280
4281 if (ua_sess->deleted) {
4282 pthread_mutex_unlock(&ua_sess->lock);
4283 continue;
4284 }
4285
4286 /* Lookup channel in the ust app session */
4287 lttng_ht_lookup(ua_sess->channels, (void *)uchan->name, &uiter);
4288 ua_chan_node = lttng_ht_iter_get_node_str(&uiter);
4289 /* If the channel is not found, there is a code flow error */
4290 assert(ua_chan_node);
4291
4292 ua_chan = caa_container_of(ua_chan_node, struct ust_app_channel, node);
4293
4294 ret = create_ust_app_event(ua_sess, ua_chan, uevent, app);
4295 pthread_mutex_unlock(&ua_sess->lock);
4296 if (ret < 0) {
4297 if (ret != -LTTNG_UST_ERR_EXIST) {
4298 /* Possible value at this point: -ENOMEM. If so, we stop! */
4299 break;
4300 }
4301 DBG2("UST app event %s already exist on app PID %d",
4302 uevent->attr.name, app->pid);
4303 continue;
4304 }
4305 }
4306
4307 rcu_read_unlock();
4308 return ret;
4309 }
4310
4311 /*
4312 * Start tracing for a specific UST session and app.
4313 *
4314 * Called with UST app session lock held.
4315 *
4316 */
4317 static
4318 int ust_app_start_trace(struct ltt_ust_session *usess, struct ust_app *app)
4319 {
4320 int ret = 0;
4321 struct ust_app_session *ua_sess;
4322
4323 DBG("Starting tracing for ust app pid %d", app->pid);
4324
4325 rcu_read_lock();
4326
4327 if (!app->compatible) {
4328 goto end;
4329 }
4330
4331 ua_sess = lookup_session_by_app(usess, app);
4332 if (ua_sess == NULL) {
4333 /* The session is in teardown process. Ignore and continue. */
4334 goto end;
4335 }
4336
4337 pthread_mutex_lock(&ua_sess->lock);
4338
4339 if (ua_sess->deleted) {
4340 pthread_mutex_unlock(&ua_sess->lock);
4341 goto end;
4342 }
4343
4344 if (ua_sess->enabled) {
4345 pthread_mutex_unlock(&ua_sess->lock);
4346 goto end;
4347 }
4348
4349 /* Upon restart, we skip the setup, already done */
4350 if (ua_sess->started) {
4351 goto skip_setup;
4352 }
4353
4354 health_code_update();
4355
4356 skip_setup:
4357 /* This starts the UST tracing */
4358 pthread_mutex_lock(&app->sock_lock);
4359 ret = ustctl_start_session(app->sock, ua_sess->handle);
4360 pthread_mutex_unlock(&app->sock_lock);
4361 if (ret < 0) {
4362 if (ret != -EPIPE && ret != -LTTNG_UST_ERR_EXITING) {
4363 ERR("Error starting tracing for app pid: %d (ret: %d)",
4364 app->pid, ret);
4365 } else {
4366 DBG("UST app start session failed. Application is dead.");
4367 /*
4368 * This is normal behavior, an application can die during the
4369 * creation process. Don't report an error so the execution can
4370 * continue normally.
4371 */
4372 pthread_mutex_unlock(&ua_sess->lock);
4373 goto end;
4374 }
4375 goto error_unlock;
4376 }
4377
4378 /* Indicate that the session has been started once */
4379 ua_sess->started = 1;
4380 ua_sess->enabled = 1;
4381
4382 pthread_mutex_unlock(&ua_sess->lock);
4383
4384 health_code_update();
4385
4386 /* Quiescent wait after starting trace */
4387 pthread_mutex_lock(&app->sock_lock);
4388 ret = ustctl_wait_quiescent(app->sock);
4389 pthread_mutex_unlock(&app->sock_lock);
4390 if (ret < 0 && ret != -EPIPE && ret != -LTTNG_UST_ERR_EXITING) {
4391 ERR("UST app wait quiescent failed for app pid %d ret %d",
4392 app->pid, ret);
4393 }
4394
4395 end:
4396 rcu_read_unlock();
4397 health_code_update();
4398 return 0;
4399
4400 error_unlock:
4401 pthread_mutex_unlock(&ua_sess->lock);
4402 rcu_read_unlock();
4403 health_code_update();
4404 return -1;
4405 }
4406
4407 /*
4408 * Stop tracing for a specific UST session and app.
4409 */
4410 static
4411 int ust_app_stop_trace(struct ltt_ust_session *usess, struct ust_app *app)
4412 {
4413 int ret = 0;
4414 struct ust_app_session *ua_sess;
4415 struct ust_registry_session *registry;
4416
4417 DBG("Stopping tracing for ust app pid %d", app->pid);
4418
4419 rcu_read_lock();
4420
4421 if (!app->compatible) {
4422 goto end_no_session;
4423 }
4424
4425 ua_sess = lookup_session_by_app(usess, app);
4426 if (ua_sess == NULL) {
4427 goto end_no_session;
4428 }
4429
4430 pthread_mutex_lock(&ua_sess->lock);
4431
4432 if (ua_sess->deleted) {
4433 pthread_mutex_unlock(&ua_sess->lock);
4434 goto end_no_session;
4435 }
4436
4437 /*
4438 * If started = 0, it means that stop trace has been called for a session
4439 * that was never started. It's possible since we can have a fail start
4440 * from either the application manager thread or the command thread. Simply
4441 * indicate that this is a stop error.
4442 */
4443 if (!ua_sess->started) {
4444 goto error_rcu_unlock;
4445 }
4446
4447 health_code_update();
4448
4449 /* This inhibits UST tracing */
4450 pthread_mutex_lock(&app->sock_lock);
4451 ret = ustctl_stop_session(app->sock, ua_sess->handle);
4452 pthread_mutex_unlock(&app->sock_lock);
4453 if (ret < 0) {
4454 if (ret != -EPIPE && ret != -LTTNG_UST_ERR_EXITING) {
4455 ERR("Error stopping tracing for app pid: %d (ret: %d)",
4456 app->pid, ret);
4457 } else {
4458 DBG("UST app stop session failed. Application is dead.");
4459 /*
4460 * This is normal behavior, an application can die during the
4461 * creation process. Don't report an error so the execution can
4462 * continue normally.
4463 */
4464 goto end_unlock;
4465 }
4466 goto error_rcu_unlock;
4467 }
4468
4469 health_code_update();
4470 ua_sess->enabled = 0;
4471
4472 /* Quiescent wait after stopping trace */
4473 pthread_mutex_lock(&app->sock_lock);
4474 ret = ustctl_wait_quiescent(app->sock);
4475 pthread_mutex_unlock(&app->sock_lock);
4476 if (ret < 0 && ret != -EPIPE && ret != -LTTNG_UST_ERR_EXITING) {
4477 ERR("UST app wait quiescent failed for app pid %d ret %d",
4478 app->pid, ret);
4479 }
4480
4481 health_code_update();
4482
4483 registry = get_session_registry(ua_sess);
4484
4485 /* The UST app session is held registry shall not be null. */
4486 assert(registry);
4487
4488 /* Push metadata for application before freeing the application. */
4489 (void) push_metadata(registry, ua_sess->consumer);
4490
4491 end_unlock:
4492 pthread_mutex_unlock(&ua_sess->lock);
4493 end_no_session:
4494 rcu_read_unlock();
4495 health_code_update();
4496 return 0;
4497
4498 error_rcu_unlock:
4499 pthread_mutex_unlock(&ua_sess->lock);
4500 rcu_read_unlock();
4501 health_code_update();
4502 return -1;
4503 }
4504
4505 static
4506 int ust_app_flush_app_session(struct ust_app *app,
4507 struct ust_app_session *ua_sess)
4508 {
4509 int ret, retval = 0;
4510 struct lttng_ht_iter iter;
4511 struct ust_app_channel *ua_chan;
4512 struct consumer_socket *socket;
4513
4514 DBG("Flushing app session buffers for ust app pid %d", app->pid);
4515
4516 rcu_read_lock();
4517
4518 if (!app->compatible) {
4519 goto end_not_compatible;
4520 }
4521
4522 pthread_mutex_lock(&ua_sess->lock);
4523
4524 if (ua_sess->deleted) {
4525 goto end_deleted;
4526 }
4527
4528 health_code_update();
4529
4530 /* Flushing buffers */
4531 socket = consumer_find_socket_by_bitness(app->bits_per_long,
4532 ua_sess->consumer);
4533
4534 /* Flush buffers and push metadata. */
4535 switch (ua_sess->buffer_type) {
4536 case LTTNG_BUFFER_PER_PID:
4537 cds_lfht_for_each_entry(ua_sess->channels->ht, &iter.iter, ua_chan,
4538 node.node) {
4539 health_code_update();
4540 ret = consumer_flush_channel(socket, ua_chan->key);
4541 if (ret) {
4542 ERR("Error flushing consumer channel");
4543 retval = -1;
4544 continue;
4545 }
4546 }
4547 break;
4548 case LTTNG_BUFFER_PER_UID:
4549 default:
4550 assert(0);
4551 break;
4552 }
4553
4554 health_code_update();
4555
4556 end_deleted:
4557 pthread_mutex_unlock(&ua_sess->lock);
4558
4559 end_not_compatible:
4560 rcu_read_unlock();
4561 health_code_update();
4562 return retval;
4563 }
4564
4565 /*
4566 * Flush buffers for all applications for a specific UST session.
4567 * Called with UST session lock held.
4568 */
4569 static
4570 int ust_app_flush_session(struct ltt_ust_session *usess)
4571
4572 {
4573 int ret = 0;
4574
4575 DBG("Flushing session buffers for all ust apps");
4576
4577 rcu_read_lock();
4578
4579 /* Flush buffers and push metadata. */
4580 switch (usess->buffer_type) {
4581 case LTTNG_BUFFER_PER_UID:
4582 {
4583 struct buffer_reg_uid *reg;
4584 struct lttng_ht_iter iter;
4585
4586 /* Flush all per UID buffers associated to that session. */
4587 cds_list_for_each_entry(reg, &usess->buffer_reg_uid_list, lnode) {
4588 struct ust_registry_session *ust_session_reg;
4589 struct buffer_reg_channel *reg_chan;
4590 struct consumer_socket *socket;
4591
4592 /* Get consumer socket to use to push the metadata.*/
4593 socket = consumer_find_socket_by_bitness(reg->bits_per_long,
4594 usess->consumer);
4595 if (!socket) {
4596 /* Ignore request if no consumer is found for the session. */
4597 continue;
4598 }
4599
4600 cds_lfht_for_each_entry(reg->registry->channels->ht, &iter.iter,
4601 reg_chan, node.node) {
4602 /*
4603 * The following call will print error values so the return
4604 * code is of little importance because whatever happens, we
4605 * have to try them all.
4606 */
4607 (void) consumer_flush_channel(socket, reg_chan->consumer_key);
4608 }
4609
4610 ust_session_reg = reg->registry->reg.ust;
4611 /* Push metadata. */
4612 (void) push_metadata(ust_session_reg, usess->consumer);
4613 }
4614 break;
4615 }
4616 case LTTNG_BUFFER_PER_PID:
4617 {
4618 struct ust_app_session *ua_sess;
4619 struct lttng_ht_iter iter;
4620 struct ust_app *app;
4621
4622 cds_lfht_for_each_entry(ust_app_ht->ht, &iter.iter, app, pid_n.node) {
4623 ua_sess = lookup_session_by_app(usess, app);
4624 if (ua_sess == NULL) {
4625 continue;
4626 }
4627 (void) ust_app_flush_app_session(app, ua_sess);
4628 }
4629 break;
4630 }
4631 default:
4632 ret = -1;
4633 assert(0);
4634 break;
4635 }
4636
4637 rcu_read_unlock();
4638 health_code_update();
4639 return ret;
4640 }
4641
4642 static
4643 int ust_app_clear_quiescent_app_session(struct ust_app *app,
4644 struct ust_app_session *ua_sess)
4645 {
4646 int ret = 0;
4647 struct lttng_ht_iter iter;
4648 struct ust_app_channel *ua_chan;
4649 struct consumer_socket *socket;
4650
4651 DBG("Clearing stream quiescent state for ust app pid %d", app->pid);
4652
4653 rcu_read_lock();
4654
4655 if (!app->compatible) {
4656 goto end_not_compatible;
4657 }
4658
4659 pthread_mutex_lock(&ua_sess->lock);
4660
4661 if (ua_sess->deleted) {
4662 goto end_unlock;
4663 }
4664
4665 health_code_update();
4666
4667 socket = consumer_find_socket_by_bitness(app->bits_per_long,
4668 ua_sess->consumer);
4669 if (!socket) {
4670 ERR("Failed to find consumer (%" PRIu32 ") socket",
4671 app->bits_per_long);
4672 ret = -1;
4673 goto end_unlock;
4674 }
4675
4676 /* Clear quiescent state. */
4677 switch (ua_sess->buffer_type) {
4678 case LTTNG_BUFFER_PER_PID:
4679 cds_lfht_for_each_entry(ua_sess->channels->ht, &iter.iter,
4680 ua_chan, node.node) {
4681 health_code_update();
4682 ret = consumer_clear_quiescent_channel(socket,
4683 ua_chan->key);
4684 if (ret) {
4685 ERR("Error clearing quiescent state for consumer channel");
4686 ret = -1;
4687 continue;
4688 }
4689 }
4690 break;
4691 case LTTNG_BUFFER_PER_UID:
4692 default:
4693 assert(0);
4694 ret = -1;
4695 break;
4696 }
4697
4698 health_code_update();
4699
4700 end_unlock:
4701 pthread_mutex_unlock(&ua_sess->lock);
4702
4703 end_not_compatible:
4704 rcu_read_unlock();
4705 health_code_update();
4706 return ret;
4707 }
4708
4709 /*
4710 * Clear quiescent state in each stream for all applications for a
4711 * specific UST session.
4712 * Called with UST session lock held.
4713 */
4714 static
4715 int ust_app_clear_quiescent_session(struct ltt_ust_session *usess)
4716
4717 {
4718 int ret = 0;
4719
4720 DBG("Clearing stream quiescent state for all ust apps");
4721
4722 rcu_read_lock();
4723
4724 switch (usess->buffer_type) {
4725 case LTTNG_BUFFER_PER_UID:
4726 {
4727 struct lttng_ht_iter iter;
4728 struct buffer_reg_uid *reg;
4729
4730 /*
4731 * Clear quiescent for all per UID buffers associated to
4732 * that session.
4733 */
4734 cds_list_for_each_entry(reg, &usess->buffer_reg_uid_list, lnode) {
4735 struct consumer_socket *socket;
4736 struct buffer_reg_channel *reg_chan;
4737
4738 /* Get associated consumer socket.*/
4739 socket = consumer_find_socket_by_bitness(
4740 reg->bits_per_long, usess->consumer);
4741 if (!socket) {
4742 /*
4743 * Ignore request if no consumer is found for
4744 * the session.
4745 */
4746 continue;
4747 }
4748
4749 cds_lfht_for_each_entry(reg->registry->channels->ht,
4750 &iter.iter, reg_chan, node.node) {
4751 /*
4752 * The following call will print error values so
4753 * the return code is of little importance
4754 * because whatever happens, we have to try them
4755 * all.
4756 */
4757 (void) consumer_clear_quiescent_channel(socket,
4758 reg_chan->consumer_key);
4759 }
4760 }
4761 break;
4762 }
4763 case LTTNG_BUFFER_PER_PID:
4764 {
4765 struct ust_app_session *ua_sess;
4766 struct lttng_ht_iter iter;
4767 struct ust_app *app;
4768
4769 cds_lfht_for_each_entry(ust_app_ht->ht, &iter.iter, app,
4770 pid_n.node) {
4771 ua_sess = lookup_session_by_app(usess, app);
4772 if (ua_sess == NULL) {
4773 continue;
4774 }
4775 (void) ust_app_clear_quiescent_app_session(app,
4776 ua_sess);
4777 }
4778 break;
4779 }
4780 default:
4781 ret = -1;
4782 assert(0);
4783 break;
4784 }
4785
4786 rcu_read_unlock();
4787 health_code_update();
4788 return ret;
4789 }
4790
4791 /*
4792 * Destroy a specific UST session in apps.
4793 */
4794 static int destroy_trace(struct ltt_ust_session *usess, struct ust_app *app)
4795 {
4796 int ret;
4797 struct ust_app_session *ua_sess;
4798 struct lttng_ht_iter iter;
4799 struct lttng_ht_node_u64 *node;
4800
4801 DBG("Destroy tracing for ust app pid %d", app->pid);
4802
4803 rcu_read_lock();
4804
4805 if (!app->compatible) {
4806 goto end;
4807 }
4808
4809 __lookup_session_by_app(usess, app, &iter);
4810 node = lttng_ht_iter_get_node_u64(&iter);
4811 if (node == NULL) {
4812 /* Session is being or is deleted. */
4813 goto end;
4814 }
4815 ua_sess = caa_container_of(node, struct ust_app_session, node);
4816
4817 health_code_update();
4818 destroy_app_session(app, ua_sess);
4819
4820 health_code_update();
4821
4822 /* Quiescent wait after stopping trace */
4823 pthread_mutex_lock(&app->sock_lock);
4824 ret = ustctl_wait_quiescent(app->sock);
4825 pthread_mutex_unlock(&app->sock_lock);
4826 if (ret < 0 && ret != -EPIPE && ret != -LTTNG_UST_ERR_EXITING) {
4827 ERR("UST app wait quiescent failed for app pid %d ret %d",
4828 app->pid, ret);
4829 }
4830 end:
4831 rcu_read_unlock();
4832 health_code_update();
4833 return 0;
4834 }
4835
4836 /*
4837 * Start tracing for the UST session.
4838 */
4839 int ust_app_start_trace_all(struct ltt_ust_session *usess)
4840 {
4841 struct lttng_ht_iter iter;
4842 struct ust_app *app;
4843
4844 DBG("Starting all UST traces");
4845
4846 /*
4847 * Even though the start trace might fail, flag this session active so
4848 * other application coming in are started by default.
4849 */
4850 usess->active = 1;
4851
4852 rcu_read_lock();
4853
4854 /*
4855 * In a start-stop-start use-case, we need to clear the quiescent state
4856 * of each channel set by the prior stop command, thus ensuring that a
4857 * following stop or destroy is sure to grab a timestamp_end near those
4858 * operations, even if the packet is empty.
4859 */
4860 (void) ust_app_clear_quiescent_session(usess);
4861
4862 cds_lfht_for_each_entry(ust_app_ht->ht, &iter.iter, app, pid_n.node) {
4863 ust_app_global_update(usess, app);
4864 }
4865
4866 rcu_read_unlock();
4867
4868 return 0;
4869 }
4870
4871 /*
4872 * Start tracing for the UST session.
4873 * Called with UST session lock held.
4874 */
4875 int ust_app_stop_trace_all(struct ltt_ust_session *usess)
4876 {
4877 int ret = 0;
4878 struct lttng_ht_iter iter;
4879 struct ust_app *app;
4880
4881 DBG("Stopping all UST traces");
4882
4883 /*
4884 * Even though the stop trace might fail, flag this session inactive so
4885 * other application coming in are not started by default.
4886 */
4887 usess->active = 0;
4888
4889 rcu_read_lock();
4890
4891 cds_lfht_for_each_entry(ust_app_ht->ht, &iter.iter, app, pid_n.node) {
4892 ret = ust_app_stop_trace(usess, app);
4893 if (ret < 0) {
4894 /* Continue to next apps even on error */
4895 continue;
4896 }
4897 }
4898
4899 (void) ust_app_flush_session(usess);
4900
4901 rcu_read_unlock();
4902
4903 return 0;
4904 }
4905
4906 /*
4907 * Destroy app UST session.
4908 */
4909 int ust_app_destroy_trace_all(struct ltt_ust_session *usess)
4910 {
4911 int ret = 0;
4912 struct lttng_ht_iter iter;
4913 struct ust_app *app;
4914
4915 DBG("Destroy all UST traces");
4916
4917 rcu_read_lock();
4918
4919 cds_lfht_for_each_entry(ust_app_ht->ht, &iter.iter, app, pid_n.node) {
4920 ret = destroy_trace(usess, app);
4921 if (ret < 0) {
4922 /* Continue to next apps even on error */
4923 continue;
4924 }
4925 }
4926
4927 rcu_read_unlock();
4928
4929 return 0;
4930 }
4931
4932 /* The ua_sess lock must be held by the caller. */
4933 static
4934 int find_or_create_ust_app_channel(
4935 struct ltt_ust_session *usess,
4936 struct ust_app_session *ua_sess,
4937 struct ust_app *app,
4938 struct ltt_ust_channel *uchan,
4939 struct ust_app_channel **ua_chan)
4940 {
4941 int ret = 0;
4942 struct lttng_ht_iter iter;
4943 struct lttng_ht_node_str *ua_chan_node;
4944
4945 lttng_ht_lookup(ua_sess->channels, (void *) uchan->name, &iter);
4946 ua_chan_node = lttng_ht_iter_get_node_str(&iter);
4947 if (ua_chan_node) {
4948 *ua_chan = caa_container_of(ua_chan_node,
4949 struct ust_app_channel, node);
4950 goto end;
4951 }
4952
4953 ret = ust_app_channel_create(usess, ua_sess, uchan, app, ua_chan);
4954 if (ret) {
4955 goto end;
4956 }
4957 end:
4958 return ret;
4959 }
4960
4961 static
4962 int ust_app_channel_synchronize_event(struct ust_app_channel *ua_chan,
4963 struct ltt_ust_event *uevent, struct ust_app_session *ua_sess,
4964 struct ust_app *app)
4965 {
4966 int ret = 0;
4967 struct ust_app_event *ua_event = NULL;
4968
4969 ua_event = find_ust_app_event(ua_chan->events, uevent->attr.name,
4970 uevent->filter, uevent->attr.loglevel, uevent->exclusion);
4971 if (!ua_event) {
4972 ret = create_ust_app_event(ua_sess, ua_chan, uevent, app);
4973 if (ret < 0) {
4974 goto end;
4975 }
4976 } else {
4977 if (ua_event->enabled != uevent->enabled) {
4978 ret = uevent->enabled ?
4979 enable_ust_app_event(ua_sess, ua_event, app) :
4980 disable_ust_app_event(ua_sess, ua_event, app);
4981 }
4982 }
4983
4984 end:
4985 return ret;
4986 }
4987
4988 /*
4989 * The caller must ensure that the application is compatible and is tracked
4990 * by the process attribute trackers.
4991 */
4992 static
4993 void ust_app_synchronize(struct ltt_ust_session *usess,
4994 struct ust_app *app)
4995 {
4996 int ret = 0;
4997 struct cds_lfht_iter uchan_iter;
4998 struct ltt_ust_channel *uchan;
4999 struct ust_app_session *ua_sess = NULL;
5000
5001 /*
5002 * The application's configuration should only be synchronized for
5003 * active sessions.
5004 */
5005 assert(usess->active);
5006
5007 ret = find_or_create_ust_app_session(usess, app, &ua_sess, NULL);
5008 if (ret < 0) {
5009 /* Tracer is probably gone or ENOMEM. */
5010 goto error;
5011 }
5012 assert(ua_sess);
5013
5014 pthread_mutex_lock(&ua_sess->lock);
5015 if (ua_sess->deleted) {
5016 pthread_mutex_unlock(&ua_sess->lock);
5017 goto end;
5018 }
5019
5020 rcu_read_lock();
5021
5022 cds_lfht_for_each_entry(usess->domain_global.channels->ht, &uchan_iter,
5023 uchan, node.node) {
5024 struct ust_app_channel *ua_chan;
5025 struct cds_lfht_iter uevent_iter;
5026 struct ltt_ust_event *uevent;
5027
5028 /*
5029 * Search for a matching ust_app_channel. If none is found,
5030 * create it. Creating the channel will cause the ua_chan
5031 * structure to be allocated, the channel buffers to be
5032 * allocated (if necessary) and sent to the application, and
5033 * all enabled contexts will be added to the channel.
5034 */
5035 ret = find_or_create_ust_app_channel(usess, ua_sess,
5036 app, uchan, &ua_chan);
5037 if (ret) {
5038 /* Tracer is probably gone or ENOMEM. */
5039 goto error_unlock;
5040 }
5041
5042 if (!ua_chan) {
5043 /* ua_chan will be NULL for the metadata channel */
5044 continue;
5045 }
5046
5047 cds_lfht_for_each_entry(uchan->events->ht, &uevent_iter, uevent,
5048 node.node) {
5049 ret = ust_app_channel_synchronize_event(ua_chan,
5050 uevent, ua_sess, app);
5051 if (ret) {
5052 goto error_unlock;
5053 }
5054 }
5055
5056 if (ua_chan->enabled != uchan->enabled) {
5057 ret = uchan->enabled ?
5058 enable_ust_app_channel(ua_sess, uchan, app) :
5059 disable_ust_app_channel(ua_sess, ua_chan, app);
5060 if (ret) {
5061 goto error_unlock;
5062 }
5063 }
5064 }
5065
5066 /*
5067 * Create the metadata for the application. This returns gracefully if a
5068 * metadata was already set for the session.
5069 *
5070 * The metadata channel must be created after the data channels as the
5071 * consumer daemon assumes this ordering. When interacting with a relay
5072 * daemon, the consumer will use this assumption to send the
5073 * "STREAMS_SENT" message to the relay daemon.
5074 */
5075 ret = create_ust_app_metadata(ua_sess, app, usess->consumer);
5076 if (ret < 0) {
5077 goto error_unlock;
5078 }
5079
5080 rcu_read_unlock();
5081
5082 end:
5083 pthread_mutex_unlock(&ua_sess->lock);
5084 /* Everything went well at this point. */
5085 return;
5086
5087 error_unlock:
5088 rcu_read_unlock();
5089 pthread_mutex_unlock(&ua_sess->lock);
5090 error:
5091 if (ua_sess) {
5092 destroy_app_session(app, ua_sess);
5093 }
5094 return;
5095 }
5096
5097 static
5098 void ust_app_global_destroy(struct ltt_ust_session *usess, struct ust_app *app)
5099 {
5100 struct ust_app_session *ua_sess;
5101
5102 ua_sess = lookup_session_by_app(usess, app);
5103 if (ua_sess == NULL) {
5104 return;
5105 }
5106 destroy_app_session(app, ua_sess);
5107 }
5108
5109 /*
5110 * Add channels/events from UST global domain to registered apps at sock.
5111 *
5112 * Called with session lock held.
5113 * Called with RCU read-side lock held.
5114 */
5115 void ust_app_global_update(struct ltt_ust_session *usess, struct ust_app *app)
5116 {
5117 assert(usess);
5118 assert(usess->active);
5119
5120 DBG2("UST app global update for app sock %d for session id %" PRIu64,
5121 app->sock, usess->id);
5122
5123 if (!app->compatible) {
5124 return;
5125 }
5126 if (trace_ust_id_tracker_lookup(LTTNG_PROCESS_ATTR_VIRTUAL_PROCESS_ID,
5127 usess, app->pid) &&
5128 trace_ust_id_tracker_lookup(
5129 LTTNG_PROCESS_ATTR_VIRTUAL_USER_ID,
5130 usess, app->uid) &&
5131 trace_ust_id_tracker_lookup(
5132 LTTNG_PROCESS_ATTR_VIRTUAL_GROUP_ID,
5133 usess, app->gid)) {
5134 /*
5135 * Synchronize the application's internal tracing configuration
5136 * and start tracing.
5137 */
5138 ust_app_synchronize(usess, app);
5139 ust_app_start_trace(usess, app);
5140 } else {
5141 ust_app_global_destroy(usess, app);
5142 }
5143 }
5144
5145 /*
5146 * Called with session lock held.
5147 */
5148 void ust_app_global_update_all(struct ltt_ust_session *usess)
5149 {
5150 struct lttng_ht_iter iter;
5151 struct ust_app *app;
5152
5153 rcu_read_lock();
5154 cds_lfht_for_each_entry(ust_app_ht->ht, &iter.iter, app, pid_n.node) {
5155 ust_app_global_update(usess, app);
5156 }
5157 rcu_read_unlock();
5158 }
5159
5160 /*
5161 * Add context to a specific channel for global UST domain.
5162 */
5163 int ust_app_add_ctx_channel_glb(struct ltt_ust_session *usess,
5164 struct ltt_ust_channel *uchan, struct ltt_ust_context *uctx)
5165 {
5166 int ret = 0;
5167 struct lttng_ht_node_str *ua_chan_node;
5168 struct lttng_ht_iter iter, uiter;
5169 struct ust_app_channel *ua_chan = NULL;
5170 struct ust_app_session *ua_sess;
5171 struct ust_app *app;
5172
5173 assert(usess->active);
5174
5175 rcu_read_lock();
5176 cds_lfht_for_each_entry(ust_app_ht->ht, &iter.iter, app, pid_n.node) {
5177 if (!app->compatible) {
5178 /*
5179 * TODO: In time, we should notice the caller of this error by
5180 * telling him that this is a version error.
5181 */
5182 continue;
5183 }
5184 ua_sess = lookup_session_by_app(usess, app);
5185 if (ua_sess == NULL) {
5186 continue;
5187 }
5188
5189 pthread_mutex_lock(&ua_sess->lock);
5190
5191 if (ua_sess->deleted) {
5192 pthread_mutex_unlock(&ua_sess->lock);
5193 continue;
5194 }
5195
5196 /* Lookup channel in the ust app session */
5197 lttng_ht_lookup(ua_sess->channels, (void *)uchan->name, &uiter);
5198 ua_chan_node = lttng_ht_iter_get_node_str(&uiter);
5199 if (ua_chan_node == NULL) {
5200 goto next_app;
5201 }
5202 ua_chan = caa_container_of(ua_chan_node, struct ust_app_channel,
5203 node);
5204 ret = create_ust_app_channel_context(ua_chan, &uctx->ctx, app);
5205 if (ret < 0) {
5206 goto next_app;
5207 }
5208 next_app:
5209 pthread_mutex_unlock(&ua_sess->lock);
5210 }
5211
5212 rcu_read_unlock();
5213 return ret;
5214 }
5215
5216 /*
5217 * Receive registration and populate the given msg structure.
5218 *
5219 * On success return 0 else a negative value returned by the ustctl call.
5220 */
5221 int ust_app_recv_registration(int sock, struct ust_register_msg *msg)
5222 {
5223 int ret;
5224 uint32_t pid, ppid, uid, gid;
5225
5226 assert(msg);
5227
5228 ret = ustctl_recv_reg_msg(sock, &msg->type, &msg->major, &msg->minor,
5229 &pid, &ppid, &uid, &gid,
5230 &msg->bits_per_long,
5231 &msg->uint8_t_alignment,
5232 &msg->uint16_t_alignment,
5233 &msg->uint32_t_alignment,
5234 &msg->uint64_t_alignment,
5235 &msg->long_alignment,
5236 &msg->byte_order,
5237 msg->name);
5238 if (ret < 0) {
5239 switch (-ret) {
5240 case EPIPE:
5241 case ECONNRESET:
5242 case LTTNG_UST_ERR_EXITING:
5243 DBG3("UST app recv reg message failed. Application died");
5244 break;
5245 case LTTNG_UST_ERR_UNSUP_MAJOR:
5246 ERR("UST app recv reg unsupported version %d.%d. Supporting %d.%d",
5247 msg->major, msg->minor, LTTNG_UST_ABI_MAJOR_VERSION,
5248 LTTNG_UST_ABI_MINOR_VERSION);
5249 break;
5250 default:
5251 ERR("UST app recv reg message failed with ret %d", ret);
5252 break;
5253 }
5254 goto error;
5255 }
5256 msg->pid = (pid_t) pid;
5257 msg->ppid = (pid_t) ppid;
5258 msg->uid = (uid_t) uid;
5259 msg->gid = (gid_t) gid;
5260
5261 error:
5262 return ret;
5263 }
5264
5265 /*
5266 * Return a ust app session object using the application object and the
5267 * session object descriptor has a key. If not found, NULL is returned.
5268 * A RCU read side lock MUST be acquired when calling this function.
5269 */
5270 static struct ust_app_session *find_session_by_objd(struct ust_app *app,
5271 int objd)
5272 {
5273 struct lttng_ht_node_ulong *node;
5274 struct lttng_ht_iter iter;
5275 struct ust_app_session *ua_sess = NULL;
5276
5277 assert(app);
5278
5279 lttng_ht_lookup(app->ust_sessions_objd, (void *)((unsigned long) objd), &iter);
5280 node = lttng_ht_iter_get_node_ulong(&iter);
5281 if (node == NULL) {
5282 DBG2("UST app session find by objd %d not found", objd);
5283 goto error;
5284 }
5285
5286 ua_sess = caa_container_of(node, struct ust_app_session, ust_objd_node);
5287
5288 error:
5289 return ua_sess;
5290 }
5291
5292 /*
5293 * Return a ust app channel object using the application object and the channel
5294 * object descriptor has a key. If not found, NULL is returned. A RCU read side
5295 * lock MUST be acquired before calling this function.
5296 */
5297 static struct ust_app_channel *find_channel_by_objd(struct ust_app *app,
5298 int objd)
5299 {
5300 struct lttng_ht_node_ulong *node;
5301 struct lttng_ht_iter iter;
5302 struct ust_app_channel *ua_chan = NULL;
5303
5304 assert(app);
5305
5306 lttng_ht_lookup(app->ust_objd, (void *)((unsigned long) objd), &iter);
5307 node = lttng_ht_iter_get_node_ulong(&iter);
5308 if (node == NULL) {
5309 DBG2("UST app channel find by objd %d not found", objd);
5310 goto error;
5311 }
5312
5313 ua_chan = caa_container_of(node, struct ust_app_channel, ust_objd_node);
5314
5315 error:
5316 return ua_chan;
5317 }
5318
5319 /*
5320 * Reply to a register channel notification from an application on the notify
5321 * socket. The channel metadata is also created.
5322 *
5323 * The session UST registry lock is acquired in this function.
5324 *
5325 * On success 0 is returned else a negative value.
5326 */
5327 static int reply_ust_register_channel(int sock, int cobjd,
5328 size_t nr_fields, struct ustctl_field *fields)
5329 {
5330 int ret, ret_code = 0;
5331 uint32_t chan_id;
5332 uint64_t chan_reg_key;
5333 enum ustctl_channel_header type;
5334 struct ust_app *app;
5335 struct ust_app_channel *ua_chan;
5336 struct ust_app_session *ua_sess;
5337 struct ust_registry_session *registry;
5338 struct ust_registry_channel *chan_reg;
5339
5340 rcu_read_lock();
5341
5342 /* Lookup application. If not found, there is a code flow error. */
5343 app = find_app_by_notify_sock(sock);
5344 if (!app) {
5345 DBG("Application socket %d is being torn down. Abort event notify",
5346 sock);
5347 ret = 0;
5348 goto error_rcu_unlock;
5349 }
5350
5351 /* Lookup channel by UST object descriptor. */
5352 ua_chan = find_channel_by_objd(app, cobjd);
5353 if (!ua_chan) {
5354 DBG("Application channel is being torn down. Abort event notify");
5355 ret = 0;
5356 goto error_rcu_unlock;
5357 }
5358
5359 assert(ua_chan->session);
5360 ua_sess = ua_chan->session;
5361
5362 /* Get right session registry depending on the session buffer type. */
5363 registry = get_session_registry(ua_sess);
5364 if (!registry) {
5365 DBG("Application session is being torn down. Abort event notify");
5366 ret = 0;
5367 goto error_rcu_unlock;
5368 };
5369
5370 /* Depending on the buffer type, a different channel key is used. */
5371 if (ua_sess->buffer_type == LTTNG_BUFFER_PER_UID) {
5372 chan_reg_key = ua_chan->tracing_channel_id;
5373 } else {
5374 chan_reg_key = ua_chan->key;
5375 }
5376
5377 pthread_mutex_lock(&registry->lock);
5378
5379 chan_reg = ust_registry_channel_find(registry, chan_reg_key);
5380 assert(chan_reg);
5381
5382 if (!chan_reg->register_done) {
5383 /*
5384 * TODO: eventually use the registry event count for
5385 * this channel to better guess header type for per-pid
5386 * buffers.
5387 */
5388 type = USTCTL_CHANNEL_HEADER_LARGE;
5389 chan_reg->nr_ctx_fields = nr_fields;
5390 chan_reg->ctx_fields = fields;
5391 fields = NULL;
5392 chan_reg->header_type = type;
5393 } else {
5394 /* Get current already assigned values. */
5395 type = chan_reg->header_type;
5396 }
5397 /* Channel id is set during the object creation. */
5398 chan_id = chan_reg->chan_id;
5399
5400 /* Append to metadata */
5401 if (!chan_reg->metadata_dumped) {
5402 ret_code = ust_metadata_channel_statedump(registry, chan_reg);
5403 if (ret_code) {
5404 ERR("Error appending channel metadata (errno = %d)", ret_code);
5405 goto reply;
5406 }
5407 }
5408
5409 reply:
5410 DBG3("UST app replying to register channel key %" PRIu64
5411 " with id %u, type: %d, ret: %d", chan_reg_key, chan_id, type,
5412 ret_code);
5413
5414 ret = ustctl_reply_register_channel(sock, chan_id, type, ret_code);
5415 if (ret < 0) {
5416 if (ret != -EPIPE && ret != -LTTNG_UST_ERR_EXITING) {
5417 ERR("UST app reply channel failed with ret %d", ret);
5418 } else {
5419 DBG3("UST app reply channel failed. Application died");
5420 }
5421 goto error;
5422 }
5423
5424 /* This channel registry registration is completed. */
5425 chan_reg->register_done = 1;
5426
5427 error:
5428 pthread_mutex_unlock(&registry->lock);
5429 error_rcu_unlock:
5430 rcu_read_unlock();
5431 free(fields);
5432 return ret;
5433 }
5434
5435 /*
5436 * Add event to the UST channel registry. When the event is added to the
5437 * registry, the metadata is also created. Once done, this replies to the
5438 * application with the appropriate error code.
5439 *
5440 * The session UST registry lock is acquired in the function.
5441 *
5442 * On success 0 is returned else a negative value.
5443 */
5444 static int add_event_ust_registry(int sock, int sobjd, int cobjd, char *name,
5445 char *sig, size_t nr_fields, struct ustctl_field *fields,
5446 int loglevel_value, char *model_emf_uri)
5447 {
5448 int ret, ret_code;
5449 uint32_t event_id = 0;
5450 uint64_t chan_reg_key;
5451 struct ust_app *app;
5452 struct ust_app_channel *ua_chan;
5453 struct ust_app_session *ua_sess;
5454 struct ust_registry_session *registry;
5455
5456 rcu_read_lock();
5457
5458 /* Lookup application. If not found, there is a code flow error. */
5459 app = find_app_by_notify_sock(sock);
5460 if (!app) {
5461 DBG("Application socket %d is being torn down. Abort event notify",
5462 sock);
5463 ret = 0;
5464 goto error_rcu_unlock;
5465 }
5466
5467 /* Lookup channel by UST object descriptor. */
5468 ua_chan = find_channel_by_objd(app, cobjd);
5469 if (!ua_chan) {
5470 DBG("Application channel is being torn down. Abort event notify");
5471 ret = 0;
5472 goto error_rcu_unlock;
5473 }
5474
5475 assert(ua_chan->session);
5476 ua_sess = ua_chan->session;
5477
5478 registry = get_session_registry(ua_sess);
5479 if (!registry) {
5480 DBG("Application session is being torn down. Abort event notify");
5481 ret = 0;
5482 goto error_rcu_unlock;
5483 }
5484
5485 if (ua_sess->buffer_type == LTTNG_BUFFER_PER_UID) {
5486 chan_reg_key = ua_chan->tracing_channel_id;
5487 } else {
5488 chan_reg_key = ua_chan->key;
5489 }
5490
5491 pthread_mutex_lock(&registry->lock);
5492
5493 /*
5494 * From this point on, this call acquires the ownership of the sig, fields
5495 * and model_emf_uri meaning any free are done inside it if needed. These
5496 * three variables MUST NOT be read/write after this.
5497 */
5498 ret_code = ust_registry_create_event(registry, chan_reg_key,
5499 sobjd, cobjd, name, sig, nr_fields, fields,
5500 loglevel_value, model_emf_uri, ua_sess->buffer_type,
5501 &event_id, app);
5502 sig = NULL;
5503 fields = NULL;
5504 model_emf_uri = NULL;
5505
5506 /*
5507 * The return value is returned to ustctl so in case of an error, the
5508 * application can be notified. In case of an error, it's important not to
5509 * return a negative error or else the application will get closed.
5510 */
5511 ret = ustctl_reply_register_event(sock, event_id, ret_code);
5512 if (ret < 0) {
5513 if (ret != -EPIPE && ret != -LTTNG_UST_ERR_EXITING) {
5514 ERR("UST app reply event failed with ret %d", ret);
5515 } else {
5516 DBG3("UST app reply event failed. Application died");
5517 }
5518 /*
5519 * No need to wipe the create event since the application socket will
5520 * get close on error hence cleaning up everything by itself.
5521 */
5522 goto error;
5523 }
5524
5525 DBG3("UST registry event %s with id %" PRId32 " added successfully",
5526 name, event_id);
5527
5528 error:
5529 pthread_mutex_unlock(&registry->lock);
5530 error_rcu_unlock:
5531 rcu_read_unlock();
5532 free(sig);
5533 free(fields);
5534 free(model_emf_uri);
5535 return ret;
5536 }
5537
5538 /*
5539 * Add enum to the UST session registry. Once done, this replies to the
5540 * application with the appropriate error code.
5541 *
5542 * The session UST registry lock is acquired within this function.
5543 *
5544 * On success 0 is returned else a negative value.
5545 */
5546 static int add_enum_ust_registry(int sock, int sobjd, char *name,
5547 struct ustctl_enum_entry *entries, size_t nr_entries)
5548 {
5549 int ret = 0, ret_code;
5550 struct ust_app *app;
5551 struct ust_app_session *ua_sess;
5552 struct ust_registry_session *registry;
5553 uint64_t enum_id = -1ULL;
5554
5555 rcu_read_lock();
5556
5557 /* Lookup application. If not found, there is a code flow error. */
5558 app = find_app_by_notify_sock(sock);
5559 if (!app) {
5560 /* Return an error since this is not an error */
5561 DBG("Application socket %d is being torn down. Aborting enum registration",
5562 sock);
5563 free(entries);
5564 goto error_rcu_unlock;
5565 }
5566
5567 /* Lookup session by UST object descriptor. */
5568 ua_sess = find_session_by_objd(app, sobjd);
5569 if (!ua_sess) {
5570 /* Return an error since this is not an error */
5571 DBG("Application session is being torn down (session not found). Aborting enum registration.");
5572 free(entries);
5573 goto error_rcu_unlock;
5574 }
5575
5576 registry = get_session_registry(ua_sess);
5577 if (!registry) {
5578 DBG("Application session is being torn down (registry not found). Aborting enum registration.");
5579 free(entries);
5580 goto error_rcu_unlock;
5581 }
5582
5583 pthread_mutex_lock(&registry->lock);
5584
5585 /*
5586 * From this point on, the callee acquires the ownership of
5587 * entries. The variable entries MUST NOT be read/written after
5588 * call.
5589 */
5590 ret_code = ust_registry_create_or_find_enum(registry, sobjd, name,
5591 entries, nr_entries, &enum_id);
5592 entries = NULL;
5593
5594 /*
5595 * The return value is returned to ustctl so in case of an error, the
5596 * application can be notified. In case of an error, it's important not to
5597 * return a negative error or else the application will get closed.
5598 */
5599 ret = ustctl_reply_register_enum(sock, enum_id, ret_code);
5600 if (ret < 0) {
5601 if (ret != -EPIPE && ret != -LTTNG_UST_ERR_EXITING) {
5602 ERR("UST app reply enum failed with ret %d", ret);
5603 } else {
5604 DBG3("UST app reply enum failed. Application died");
5605 }
5606 /*
5607 * No need to wipe the create enum since the application socket will
5608 * get close on error hence cleaning up everything by itself.
5609 */
5610 goto error;
5611 }
5612
5613 DBG3("UST registry enum %s added successfully or already found", name);
5614
5615 error:
5616 pthread_mutex_unlock(&registry->lock);
5617 error_rcu_unlock:
5618 rcu_read_unlock();
5619 return ret;
5620 }
5621
5622 /*
5623 * Handle application notification through the given notify socket.
5624 *
5625 * Return 0 on success or else a negative value.
5626 */
5627 int ust_app_recv_notify(int sock)
5628 {
5629 int ret;
5630 enum ustctl_notify_cmd cmd;
5631
5632 DBG3("UST app receiving notify from sock %d", sock);
5633
5634 ret = ustctl_recv_notify(sock, &cmd);
5635 if (ret < 0) {
5636 if (ret != -EPIPE && ret != -LTTNG_UST_ERR_EXITING) {
5637 ERR("UST app recv notify failed with ret %d", ret);
5638 } else {
5639 DBG3("UST app recv notify failed. Application died");
5640 }
5641 goto error;
5642 }
5643
5644 switch (cmd) {
5645 case USTCTL_NOTIFY_CMD_EVENT:
5646 {
5647 int sobjd, cobjd, loglevel_value;
5648 char name[LTTNG_UST_SYM_NAME_LEN], *sig, *model_emf_uri;
5649 size_t nr_fields;
5650 struct ustctl_field *fields;
5651
5652 DBG2("UST app ustctl register event received");
5653
5654 ret = ustctl_recv_register_event(sock, &sobjd, &cobjd, name,
5655 &loglevel_value, &sig, &nr_fields, &fields,
5656 &model_emf_uri);
5657 if (ret < 0) {
5658 if (ret != -EPIPE && ret != -LTTNG_UST_ERR_EXITING) {
5659 ERR("UST app recv event failed with ret %d", ret);
5660 } else {
5661 DBG3("UST app recv event failed. Application died");
5662 }
5663 goto error;
5664 }
5665
5666 /*
5667 * Add event to the UST registry coming from the notify socket. This
5668 * call will free if needed the sig, fields and model_emf_uri. This
5669 * code path loses the ownsership of these variables and transfer them
5670 * to the this function.
5671 */
5672 ret = add_event_ust_registry(sock, sobjd, cobjd, name, sig, nr_fields,
5673 fields, loglevel_value, model_emf_uri);
5674 if (ret < 0) {
5675 goto error;
5676 }
5677
5678 break;
5679 }
5680 case USTCTL_NOTIFY_CMD_CHANNEL:
5681 {
5682 int sobjd, cobjd;
5683 size_t nr_fields;
5684 struct ustctl_field *fields;
5685
5686 DBG2("UST app ustctl register channel received");
5687
5688 ret = ustctl_recv_register_channel(sock, &sobjd, &cobjd, &nr_fields,
5689 &fields);
5690 if (ret < 0) {
5691 if (ret != -EPIPE && ret != -LTTNG_UST_ERR_EXITING) {
5692 ERR("UST app recv channel failed with ret %d", ret);
5693 } else {
5694 DBG3("UST app recv channel failed. Application died");
5695 }
5696 goto error;
5697 }
5698
5699 /*
5700 * The fields ownership are transfered to this function call meaning
5701 * that if needed it will be freed. After this, it's invalid to access
5702 * fields or clean it up.
5703 */
5704 ret = reply_ust_register_channel(sock, cobjd, nr_fields,
5705 fields);
5706 if (ret < 0) {
5707 goto error;
5708 }
5709
5710 break;
5711 }
5712 case USTCTL_NOTIFY_CMD_ENUM:
5713 {
5714 int sobjd;
5715 char name[LTTNG_UST_SYM_NAME_LEN];
5716 size_t nr_entries;
5717 struct ustctl_enum_entry *entries;
5718
5719 DBG2("UST app ustctl register enum received");
5720
5721 ret = ustctl_recv_register_enum(sock, &sobjd, name,
5722 &entries, &nr_entries);
5723 if (ret < 0) {
5724 if (ret != -EPIPE && ret != -LTTNG_UST_ERR_EXITING) {
5725 ERR("UST app recv enum failed with ret %d", ret);
5726 } else {
5727 DBG3("UST app recv enum failed. Application died");
5728 }
5729 goto error;
5730 }
5731
5732 /* Callee assumes ownership of entries */
5733 ret = add_enum_ust_registry(sock, sobjd, name,
5734 entries, nr_entries);
5735 if (ret < 0) {
5736 goto error;
5737 }
5738
5739 break;
5740 }
5741 default:
5742 /* Should NEVER happen. */
5743 assert(0);
5744 }
5745
5746 error:
5747 return ret;
5748 }
5749
5750 /*
5751 * Once the notify socket hangs up, this is called. First, it tries to find the
5752 * corresponding application. On failure, the call_rcu to close the socket is
5753 * executed. If an application is found, it tries to delete it from the notify
5754 * socket hash table. Whathever the result, it proceeds to the call_rcu.
5755 *
5756 * Note that an object needs to be allocated here so on ENOMEM failure, the
5757 * call RCU is not done but the rest of the cleanup is.
5758 */
5759 void ust_app_notify_sock_unregister(int sock)
5760 {
5761 int err_enomem = 0;
5762 struct lttng_ht_iter iter;
5763 struct ust_app *app;
5764 struct ust_app_notify_sock_obj *obj;
5765
5766 assert(sock >= 0);
5767
5768 rcu_read_lock();
5769
5770 obj = zmalloc(sizeof(*obj));
5771 if (!obj) {
5772 /*
5773 * An ENOMEM is kind of uncool. If this strikes we continue the
5774 * procedure but the call_rcu will not be called. In this case, we
5775 * accept the fd leak rather than possibly creating an unsynchronized
5776 * state between threads.
5777 *
5778 * TODO: The notify object should be created once the notify socket is
5779 * registered and stored independantely from the ust app object. The
5780 * tricky part is to synchronize the teardown of the application and
5781 * this notify object. Let's keep that in mind so we can avoid this
5782 * kind of shenanigans with ENOMEM in the teardown path.
5783 */
5784 err_enomem = 1;
5785 } else {
5786 obj->fd = sock;
5787 }
5788
5789 DBG("UST app notify socket unregister %d", sock);
5790
5791 /*
5792 * Lookup application by notify socket. If this fails, this means that the
5793 * hash table delete has already been done by the application
5794 * unregistration process so we can safely close the notify socket in a
5795 * call RCU.
5796 */
5797 app = find_app_by_notify_sock(sock);
5798 if (!app) {
5799 goto close_socket;
5800 }
5801
5802 iter.iter.node = &app->notify_sock_n.node;
5803
5804 /*
5805 * Whatever happens here either we fail or succeed, in both cases we have
5806 * to close the socket after a grace period to continue to the call RCU
5807 * here. If the deletion is successful, the application is not visible
5808 * anymore by other threads and is it fails it means that it was already
5809 * deleted from the hash table so either way we just have to close the
5810 * socket.
5811 */
5812 (void) lttng_ht_del(ust_app_ht_by_notify_sock, &iter);
5813
5814 close_socket:
5815 rcu_read_unlock();
5816
5817 /*
5818 * Close socket after a grace period to avoid for the socket to be reused
5819 * before the application object is freed creating potential race between
5820 * threads trying to add unique in the global hash table.
5821 */
5822 if (!err_enomem) {
5823 call_rcu(&obj->head, close_notify_sock_rcu);
5824 }
5825 }
5826
5827 /*
5828 * Destroy a ust app data structure and free its memory.
5829 */
5830 void ust_app_destroy(struct ust_app *app)
5831 {
5832 if (!app) {
5833 return;
5834 }
5835
5836 call_rcu(&app->pid_n.head, delete_ust_app_rcu);
5837 }
5838
5839 /*
5840 * Take a snapshot for a given UST session. The snapshot is sent to the given
5841 * output.
5842 *
5843 * Returns LTTNG_OK on success or a LTTNG_ERR error code.
5844 */
5845 enum lttng_error_code ust_app_snapshot_record(
5846 const struct ltt_ust_session *usess,
5847 const struct consumer_output *output, int wait,
5848 uint64_t nb_packets_per_stream)
5849 {
5850 int ret = 0;
5851 enum lttng_error_code status = LTTNG_OK;
5852 struct lttng_ht_iter iter;
5853 struct ust_app *app;
5854 char *trace_path = NULL;
5855
5856 assert(usess);
5857 assert(output);
5858
5859 rcu_read_lock();
5860
5861 switch (usess->buffer_type) {
5862 case LTTNG_BUFFER_PER_UID:
5863 {
5864 struct buffer_reg_uid *reg;
5865
5866 cds_list_for_each_entry(reg, &usess->buffer_reg_uid_list, lnode) {
5867 struct buffer_reg_channel *reg_chan;
5868 struct consumer_socket *socket;
5869 char pathname[PATH_MAX];
5870 size_t consumer_path_offset = 0;
5871
5872 if (!reg->registry->reg.ust->metadata_key) {
5873 /* Skip since no metadata is present */
5874 continue;
5875 }
5876
5877 /* Get consumer socket to use to push the metadata.*/
5878 socket = consumer_find_socket_by_bitness(reg->bits_per_long,
5879 usess->consumer);
5880 if (!socket) {
5881 status = LTTNG_ERR_INVALID;
5882 goto error;
5883 }
5884
5885 memset(pathname, 0, sizeof(pathname));
5886 ret = snprintf(pathname, sizeof(pathname),
5887 DEFAULT_UST_TRACE_DIR "/" DEFAULT_UST_TRACE_UID_PATH,
5888 reg->uid, reg->bits_per_long);
5889 if (ret < 0) {
5890 PERROR("snprintf snapshot path");
5891 status = LTTNG_ERR_INVALID;
5892 goto error;
5893 }
5894 /* Free path allowed on previous iteration. */
5895 free(trace_path);
5896 trace_path = setup_channel_trace_path(usess->consumer, pathname,
5897 &consumer_path_offset);
5898 if (!trace_path) {
5899 status = LTTNG_ERR_INVALID;
5900 goto error;
5901 }
5902 /* Add the UST default trace dir to path. */
5903 cds_lfht_for_each_entry(reg->registry->channels->ht, &iter.iter,
5904 reg_chan, node.node) {
5905 status = consumer_snapshot_channel(socket,
5906 reg_chan->consumer_key,
5907 output, 0, usess->uid,
5908 usess->gid, &trace_path[consumer_path_offset], wait,
5909 nb_packets_per_stream);
5910 if (status != LTTNG_OK) {
5911 goto error;
5912 }
5913 }
5914 status = consumer_snapshot_channel(socket,
5915 reg->registry->reg.ust->metadata_key, output, 1,
5916 usess->uid, usess->gid, &trace_path[consumer_path_offset],
5917 wait, 0);
5918 if (status != LTTNG_OK) {
5919 goto error;
5920 }
5921 }
5922 break;
5923 }
5924 case LTTNG_BUFFER_PER_PID:
5925 {
5926 cds_lfht_for_each_entry(ust_app_ht->ht, &iter.iter, app, pid_n.node) {
5927 struct consumer_socket *socket;
5928 struct lttng_ht_iter chan_iter;
5929 struct ust_app_channel *ua_chan;
5930 struct ust_app_session *ua_sess;
5931 struct ust_registry_session *registry;
5932 char pathname[PATH_MAX];
5933 size_t consumer_path_offset = 0;
5934
5935 ua_sess = lookup_session_by_app(usess, app);
5936 if (!ua_sess) {
5937 /* Session not associated with this app. */
5938 continue;
5939 }
5940
5941 /* Get the right consumer socket for the application. */
5942 socket = consumer_find_socket_by_bitness(app->bits_per_long,
5943 output);
5944 if (!socket) {
5945 status = LTTNG_ERR_INVALID;
5946 goto error;
5947 }
5948
5949 /* Add the UST default trace dir to path. */
5950 memset(pathname, 0, sizeof(pathname));
5951 ret = snprintf(pathname, sizeof(pathname), DEFAULT_UST_TRACE_DIR "/%s",
5952 ua_sess->path);
5953 if (ret < 0) {
5954 status = LTTNG_ERR_INVALID;
5955 PERROR("snprintf snapshot path");
5956 goto error;
5957 }
5958 /* Free path allowed on previous iteration. */
5959 free(trace_path);
5960 trace_path = setup_channel_trace_path(usess->consumer, pathname,
5961 &consumer_path_offset);
5962 if (!trace_path) {
5963 status = LTTNG_ERR_INVALID;
5964 goto error;
5965 }
5966 cds_lfht_for_each_entry(ua_sess->channels->ht, &chan_iter.iter,
5967 ua_chan, node.node) {
5968 status = consumer_snapshot_channel(socket,
5969 ua_chan->key, output, 0,
5970 lttng_credentials_get_uid(&ua_sess->effective_credentials),
5971 lttng_credentials_get_gid(&ua_sess->effective_credentials),
5972 &trace_path[consumer_path_offset], wait,
5973 nb_packets_per_stream);
5974 switch (status) {
5975 case LTTNG_OK:
5976 break;
5977 case LTTNG_ERR_CHAN_NOT_FOUND:
5978 continue;
5979 default:
5980 goto error;
5981 }
5982 }
5983
5984 registry = get_session_registry(ua_sess);
5985 if (!registry) {
5986 DBG("Application session is being torn down. Skip application.");
5987 continue;
5988 }
5989 status = consumer_snapshot_channel(socket,
5990 registry->metadata_key, output, 1,
5991 lttng_credentials_get_uid(&ua_sess->effective_credentials),
5992 lttng_credentials_get_gid(&ua_sess->effective_credentials),
5993 &trace_path[consumer_path_offset], wait, 0);
5994 switch (status) {
5995 case LTTNG_OK:
5996 break;
5997 case LTTNG_ERR_CHAN_NOT_FOUND:
5998 continue;
5999 default:
6000 goto error;
6001 }
6002 }
6003 break;
6004 }
6005 default:
6006 assert(0);
6007 break;
6008 }
6009
6010 error:
6011 free(trace_path);
6012 rcu_read_unlock();
6013 return status;
6014 }
6015
6016 /*
6017 * Return the size taken by one more packet per stream.
6018 */
6019 uint64_t ust_app_get_size_one_more_packet_per_stream(
6020 const struct ltt_ust_session *usess, uint64_t cur_nr_packets)
6021 {
6022 uint64_t tot_size = 0;
6023 struct ust_app *app;
6024 struct lttng_ht_iter iter;
6025
6026 assert(usess);
6027
6028 switch (usess->buffer_type) {
6029 case LTTNG_BUFFER_PER_UID:
6030 {
6031 struct buffer_reg_uid *reg;
6032
6033 cds_list_for_each_entry(reg, &usess->buffer_reg_uid_list, lnode) {
6034 struct buffer_reg_channel *reg_chan;
6035
6036 rcu_read_lock();
6037 cds_lfht_for_each_entry(reg->registry->channels->ht, &iter.iter,
6038 reg_chan, node.node) {
6039 if (cur_nr_packets >= reg_chan->num_subbuf) {
6040 /*
6041 * Don't take channel into account if we
6042 * already grab all its packets.
6043 */
6044 continue;
6045 }
6046 tot_size += reg_chan->subbuf_size * reg_chan->stream_count;
6047 }
6048 rcu_read_unlock();
6049 }
6050 break;
6051 }
6052 case LTTNG_BUFFER_PER_PID:
6053 {
6054 rcu_read_lock();
6055 cds_lfht_for_each_entry(ust_app_ht->ht, &iter.iter, app, pid_n.node) {
6056 struct ust_app_channel *ua_chan;
6057 struct ust_app_session *ua_sess;
6058 struct lttng_ht_iter chan_iter;
6059
6060 ua_sess = lookup_session_by_app(usess, app);
6061 if (!ua_sess) {
6062 /* Session not associated with this app. */
6063 continue;
6064 }
6065
6066 cds_lfht_for_each_entry(ua_sess->channels->ht, &chan_iter.iter,
6067 ua_chan, node.node) {
6068 if (cur_nr_packets >= ua_chan->attr.num_subbuf) {
6069 /*
6070 * Don't take channel into account if we
6071 * already grab all its packets.
6072 */
6073 continue;
6074 }
6075 tot_size += ua_chan->attr.subbuf_size * ua_chan->streams.count;
6076 }
6077 }
6078 rcu_read_unlock();
6079 break;
6080 }
6081 default:
6082 assert(0);
6083 break;
6084 }
6085
6086 return tot_size;
6087 }
6088
6089 int ust_app_uid_get_channel_runtime_stats(uint64_t ust_session_id,
6090 struct cds_list_head *buffer_reg_uid_list,
6091 struct consumer_output *consumer, uint64_t uchan_id,
6092 int overwrite, uint64_t *discarded, uint64_t *lost)
6093 {
6094 int ret;
6095 uint64_t consumer_chan_key;
6096
6097 *discarded = 0;
6098 *lost = 0;
6099
6100 ret = buffer_reg_uid_consumer_channel_key(
6101 buffer_reg_uid_list, uchan_id, &consumer_chan_key);
6102 if (ret < 0) {
6103 /* Not found */
6104 ret = 0;
6105 goto end;
6106 }
6107
6108 if (overwrite) {
6109 ret = consumer_get_lost_packets(ust_session_id,
6110 consumer_chan_key, consumer, lost);
6111 } else {
6112 ret = consumer_get_discarded_events(ust_session_id,
6113 consumer_chan_key, consumer, discarded);
6114 }
6115
6116 end:
6117 return ret;
6118 }
6119
6120 int ust_app_pid_get_channel_runtime_stats(struct ltt_ust_session *usess,
6121 struct ltt_ust_channel *uchan,
6122 struct consumer_output *consumer, int overwrite,
6123 uint64_t *discarded, uint64_t *lost)
6124 {
6125 int ret = 0;
6126 struct lttng_ht_iter iter;
6127 struct lttng_ht_node_str *ua_chan_node;
6128 struct ust_app *app;
6129 struct ust_app_session *ua_sess;
6130 struct ust_app_channel *ua_chan;
6131
6132 *discarded = 0;
6133 *lost = 0;
6134
6135 rcu_read_lock();
6136 /*
6137 * Iterate over every registered applications. Sum counters for
6138 * all applications containing requested session and channel.
6139 */
6140 cds_lfht_for_each_entry(ust_app_ht->ht, &iter.iter, app, pid_n.node) {
6141 struct lttng_ht_iter uiter;
6142
6143 ua_sess = lookup_session_by_app(usess, app);
6144 if (ua_sess == NULL) {
6145 continue;
6146 }
6147
6148 /* Get channel */
6149 lttng_ht_lookup(ua_sess->channels, (void *) uchan->name, &uiter);
6150 ua_chan_node = lttng_ht_iter_get_node_str(&uiter);
6151 /* If the session is found for the app, the channel must be there */
6152 assert(ua_chan_node);
6153
6154 ua_chan = caa_container_of(ua_chan_node, struct ust_app_channel, node);
6155
6156 if (overwrite) {
6157 uint64_t _lost;
6158
6159 ret = consumer_get_lost_packets(usess->id, ua_chan->key,
6160 consumer, &_lost);
6161 if (ret < 0) {
6162 break;
6163 }
6164 (*lost) += _lost;
6165 } else {
6166 uint64_t _discarded;
6167
6168 ret = consumer_get_discarded_events(usess->id,
6169 ua_chan->key, consumer, &_discarded);
6170 if (ret < 0) {
6171 break;
6172 }
6173 (*discarded) += _discarded;
6174 }
6175 }
6176
6177 rcu_read_unlock();
6178 return ret;
6179 }
6180
6181 static
6182 int ust_app_regenerate_statedump(struct ltt_ust_session *usess,
6183 struct ust_app *app)
6184 {
6185 int ret = 0;
6186 struct ust_app_session *ua_sess;
6187
6188 DBG("Regenerating the metadata for ust app pid %d", app->pid);
6189
6190 rcu_read_lock();
6191
6192 ua_sess = lookup_session_by_app(usess, app);
6193 if (ua_sess == NULL) {
6194 /* The session is in teardown process. Ignore and continue. */
6195 goto end;
6196 }
6197
6198 pthread_mutex_lock(&ua_sess->lock);
6199
6200 if (ua_sess->deleted) {
6201 goto end_unlock;
6202 }
6203
6204 pthread_mutex_lock(&app->sock_lock);
6205 ret = ustctl_regenerate_statedump(app->sock, ua_sess->handle);
6206 pthread_mutex_unlock(&app->sock_lock);
6207
6208 end_unlock:
6209 pthread_mutex_unlock(&ua_sess->lock);
6210
6211 end:
6212 rcu_read_unlock();
6213 health_code_update();
6214 return ret;
6215 }
6216
6217 /*
6218 * Regenerate the statedump for each app in the session.
6219 */
6220 int ust_app_regenerate_statedump_all(struct ltt_ust_session *usess)
6221 {
6222 int ret = 0;
6223 struct lttng_ht_iter iter;
6224 struct ust_app *app;
6225
6226 DBG("Regenerating the metadata for all UST apps");
6227
6228 rcu_read_lock();
6229
6230 cds_lfht_for_each_entry(ust_app_ht->ht, &iter.iter, app, pid_n.node) {
6231 if (!app->compatible) {
6232 continue;
6233 }
6234
6235 ret = ust_app_regenerate_statedump(usess, app);
6236 if (ret < 0) {
6237 /* Continue to the next app even on error */
6238 continue;
6239 }
6240 }
6241
6242 rcu_read_unlock();
6243
6244 return 0;
6245 }
6246
6247 /*
6248 * Rotate all the channels of a session.
6249 *
6250 * Return LTTNG_OK on success or else an LTTng error code.
6251 */
6252 enum lttng_error_code ust_app_rotate_session(struct ltt_session *session)
6253 {
6254 int ret;
6255 enum lttng_error_code cmd_ret = LTTNG_OK;
6256 struct lttng_ht_iter iter;
6257 struct ust_app *app;
6258 struct ltt_ust_session *usess = session->ust_session;
6259
6260 assert(usess);
6261
6262 rcu_read_lock();
6263
6264 switch (usess->buffer_type) {
6265 case LTTNG_BUFFER_PER_UID:
6266 {
6267 struct buffer_reg_uid *reg;
6268
6269 cds_list_for_each_entry(reg, &usess->buffer_reg_uid_list, lnode) {
6270 struct buffer_reg_channel *reg_chan;
6271 struct consumer_socket *socket;
6272
6273 if (!reg->registry->reg.ust->metadata_key) {
6274 /* Skip since no metadata is present */
6275 continue;
6276 }
6277
6278 /* Get consumer socket to use to push the metadata.*/
6279 socket = consumer_find_socket_by_bitness(reg->bits_per_long,
6280 usess->consumer);
6281 if (!socket) {
6282 cmd_ret = LTTNG_ERR_INVALID;
6283 goto error;
6284 }
6285
6286 /* Rotate the data channels. */
6287 cds_lfht_for_each_entry(reg->registry->channels->ht, &iter.iter,
6288 reg_chan, node.node) {
6289 ret = consumer_rotate_channel(socket,
6290 reg_chan->consumer_key,
6291 usess->uid, usess->gid,
6292 usess->consumer,
6293 /* is_metadata_channel */ false);
6294 if (ret < 0) {
6295 cmd_ret = LTTNG_ERR_ROTATION_FAIL_CONSUMER;
6296 goto error;
6297 }
6298 }
6299
6300 (void) push_metadata(reg->registry->reg.ust, usess->consumer);
6301
6302 ret = consumer_rotate_channel(socket,
6303 reg->registry->reg.ust->metadata_key,
6304 usess->uid, usess->gid,
6305 usess->consumer,
6306 /* is_metadata_channel */ true);
6307 if (ret < 0) {
6308 cmd_ret = LTTNG_ERR_ROTATION_FAIL_CONSUMER;
6309 goto error;
6310 }
6311 }
6312 break;
6313 }
6314 case LTTNG_BUFFER_PER_PID:
6315 {
6316 cds_lfht_for_each_entry(ust_app_ht->ht, &iter.iter, app, pid_n.node) {
6317 struct consumer_socket *socket;
6318 struct lttng_ht_iter chan_iter;
6319 struct ust_app_channel *ua_chan;
6320 struct ust_app_session *ua_sess;
6321 struct ust_registry_session *registry;
6322
6323 ua_sess = lookup_session_by_app(usess, app);
6324 if (!ua_sess) {
6325 /* Session not associated with this app. */
6326 continue;
6327 }
6328
6329 /* Get the right consumer socket for the application. */
6330 socket = consumer_find_socket_by_bitness(app->bits_per_long,
6331 usess->consumer);
6332 if (!socket) {
6333 cmd_ret = LTTNG_ERR_INVALID;
6334 goto error;
6335 }
6336
6337 registry = get_session_registry(ua_sess);
6338 if (!registry) {
6339 DBG("Application session is being torn down. Skip application.");
6340 continue;
6341 }
6342
6343 /* Rotate the data channels. */
6344 cds_lfht_for_each_entry(ua_sess->channels->ht, &chan_iter.iter,
6345 ua_chan, node.node) {
6346 ret = consumer_rotate_channel(socket,
6347 ua_chan->key,
6348 lttng_credentials_get_uid(&ua_sess->effective_credentials),
6349 lttng_credentials_get_gid(&ua_sess->effective_credentials),
6350 ua_sess->consumer,
6351 /* is_metadata_channel */ false);
6352 if (ret < 0) {
6353 /* Per-PID buffer and application going away. */
6354 if (ret == -LTTNG_ERR_CHAN_NOT_FOUND)
6355 continue;
6356 cmd_ret = LTTNG_ERR_ROTATION_FAIL_CONSUMER;
6357 goto error;
6358 }
6359 }
6360
6361 /* Rotate the metadata channel. */
6362 (void) push_metadata(registry, usess->consumer);
6363 ret = consumer_rotate_channel(socket,
6364 registry->metadata_key,
6365 lttng_credentials_get_uid(&ua_sess->effective_credentials),
6366 lttng_credentials_get_gid(&ua_sess->effective_credentials),
6367 ua_sess->consumer,
6368 /* is_metadata_channel */ true);
6369 if (ret < 0) {
6370 /* Per-PID buffer and application going away. */
6371 if (ret == -LTTNG_ERR_CHAN_NOT_FOUND)
6372 continue;
6373 cmd_ret = LTTNG_ERR_ROTATION_FAIL_CONSUMER;
6374 goto error;
6375 }
6376 }
6377 break;
6378 }
6379 default:
6380 assert(0);
6381 break;
6382 }
6383
6384 cmd_ret = LTTNG_OK;
6385
6386 error:
6387 rcu_read_unlock();
6388 return cmd_ret;
6389 }
6390
6391 enum lttng_error_code ust_app_create_channel_subdirectories(
6392 const struct ltt_ust_session *usess)
6393 {
6394 enum lttng_error_code ret = LTTNG_OK;
6395 struct lttng_ht_iter iter;
6396 enum lttng_trace_chunk_status chunk_status;
6397 char *pathname_index;
6398 int fmt_ret;
6399
6400 assert(usess->current_trace_chunk);
6401 rcu_read_lock();
6402
6403 switch (usess->buffer_type) {
6404 case LTTNG_BUFFER_PER_UID:
6405 {
6406 struct buffer_reg_uid *reg;
6407
6408 cds_list_for_each_entry(reg, &usess->buffer_reg_uid_list, lnode) {
6409 fmt_ret = asprintf(&pathname_index,
6410 DEFAULT_UST_TRACE_DIR "/" DEFAULT_UST_TRACE_UID_PATH "/" DEFAULT_INDEX_DIR,
6411 reg->uid, reg->bits_per_long);
6412 if (fmt_ret < 0) {
6413 ERR("Failed to format channel index directory");
6414 ret = LTTNG_ERR_CREATE_DIR_FAIL;
6415 goto error;
6416 }
6417
6418 /*
6419 * Create the index subdirectory which will take care
6420 * of implicitly creating the channel's path.
6421 */
6422 chunk_status = lttng_trace_chunk_create_subdirectory(
6423 usess->current_trace_chunk,
6424 pathname_index);
6425 free(pathname_index);
6426 if (chunk_status != LTTNG_TRACE_CHUNK_STATUS_OK) {
6427 ret = LTTNG_ERR_CREATE_DIR_FAIL;
6428 goto error;
6429 }
6430 }
6431 break;
6432 }
6433 case LTTNG_BUFFER_PER_PID:
6434 {
6435 struct ust_app *app;
6436
6437 /*
6438 * Create the toplevel ust/ directory in case no apps are running.
6439 */
6440 chunk_status = lttng_trace_chunk_create_subdirectory(
6441 usess->current_trace_chunk,
6442 DEFAULT_UST_TRACE_DIR);
6443 if (chunk_status != LTTNG_TRACE_CHUNK_STATUS_OK) {
6444 ret = LTTNG_ERR_CREATE_DIR_FAIL;
6445 goto error;
6446 }
6447
6448 cds_lfht_for_each_entry(ust_app_ht->ht, &iter.iter, app,
6449 pid_n.node) {
6450 struct ust_app_session *ua_sess;
6451 struct ust_registry_session *registry;
6452
6453 ua_sess = lookup_session_by_app(usess, app);
6454 if (!ua_sess) {
6455 /* Session not associated with this app. */
6456 continue;
6457 }
6458
6459 registry = get_session_registry(ua_sess);
6460 if (!registry) {
6461 DBG("Application session is being torn down. Skip application.");
6462 continue;
6463 }
6464
6465 fmt_ret = asprintf(&pathname_index,
6466 DEFAULT_UST_TRACE_DIR "/%s/" DEFAULT_INDEX_DIR,
6467 ua_sess->path);
6468 if (fmt_ret < 0) {
6469 ERR("Failed to format channel index directory");
6470 ret = LTTNG_ERR_CREATE_DIR_FAIL;
6471 goto error;
6472 }
6473 /*
6474 * Create the index subdirectory which will take care
6475 * of implicitly creating the channel's path.
6476 */
6477 chunk_status = lttng_trace_chunk_create_subdirectory(
6478 usess->current_trace_chunk,
6479 pathname_index);
6480 free(pathname_index);
6481 if (chunk_status != LTTNG_TRACE_CHUNK_STATUS_OK) {
6482 ret = LTTNG_ERR_CREATE_DIR_FAIL;
6483 goto error;
6484 }
6485 }
6486 break;
6487 }
6488 default:
6489 abort();
6490 }
6491
6492 ret = LTTNG_OK;
6493 error:
6494 rcu_read_unlock();
6495 return ret;
6496 }
6497
6498 /*
6499 * Clear all the channels of a session.
6500 *
6501 * Return LTTNG_OK on success or else an LTTng error code.
6502 */
6503 enum lttng_error_code ust_app_clear_session(struct ltt_session *session)
6504 {
6505 int ret;
6506 enum lttng_error_code cmd_ret = LTTNG_OK;
6507 struct lttng_ht_iter iter;
6508 struct ust_app *app;
6509 struct ltt_ust_session *usess = session->ust_session;
6510
6511 assert(usess);
6512
6513 rcu_read_lock();
6514
6515 if (usess->active) {
6516 ERR("Expecting inactive session %s (%" PRIu64 ")", session->name, session->id);
6517 cmd_ret = LTTNG_ERR_FATAL;
6518 goto end;
6519 }
6520
6521 switch (usess->buffer_type) {
6522 case LTTNG_BUFFER_PER_UID:
6523 {
6524 struct buffer_reg_uid *reg;
6525
6526 cds_list_for_each_entry(reg, &usess->buffer_reg_uid_list, lnode) {
6527 struct buffer_reg_channel *reg_chan;
6528 struct consumer_socket *socket;
6529
6530 /* Get consumer socket to use to push the metadata.*/
6531 socket = consumer_find_socket_by_bitness(reg->bits_per_long,
6532 usess->consumer);
6533 if (!socket) {
6534 cmd_ret = LTTNG_ERR_INVALID;
6535 goto error_socket;
6536 }
6537
6538 /* Clear the data channels. */
6539 cds_lfht_for_each_entry(reg->registry->channels->ht, &iter.iter,
6540 reg_chan, node.node) {
6541 ret = consumer_clear_channel(socket,
6542 reg_chan->consumer_key);
6543 if (ret < 0) {
6544 goto error;
6545 }
6546 }
6547
6548 (void) push_metadata(reg->registry->reg.ust, usess->consumer);
6549
6550 /*
6551 * Clear the metadata channel.
6552 * Metadata channel is not cleared per se but we still need to
6553 * perform a rotation operation on it behind the scene.
6554 */
6555 ret = consumer_clear_channel(socket,
6556 reg->registry->reg.ust->metadata_key);
6557 if (ret < 0) {
6558 goto error;
6559 }
6560 }
6561 break;
6562 }
6563 case LTTNG_BUFFER_PER_PID:
6564 {
6565 cds_lfht_for_each_entry(ust_app_ht->ht, &iter.iter, app, pid_n.node) {
6566 struct consumer_socket *socket;
6567 struct lttng_ht_iter chan_iter;
6568 struct ust_app_channel *ua_chan;
6569 struct ust_app_session *ua_sess;
6570 struct ust_registry_session *registry;
6571
6572 ua_sess = lookup_session_by_app(usess, app);
6573 if (!ua_sess) {
6574 /* Session not associated with this app. */
6575 continue;
6576 }
6577
6578 /* Get the right consumer socket for the application. */
6579 socket = consumer_find_socket_by_bitness(app->bits_per_long,
6580 usess->consumer);
6581 if (!socket) {
6582 cmd_ret = LTTNG_ERR_INVALID;
6583 goto error_socket;
6584 }
6585
6586 registry = get_session_registry(ua_sess);
6587 if (!registry) {
6588 DBG("Application session is being torn down. Skip application.");
6589 continue;
6590 }
6591
6592 /* Clear the data channels. */
6593 cds_lfht_for_each_entry(ua_sess->channels->ht, &chan_iter.iter,
6594 ua_chan, node.node) {
6595 ret = consumer_clear_channel(socket, ua_chan->key);
6596 if (ret < 0) {
6597 /* Per-PID buffer and application going away. */
6598 if (ret == -LTTNG_ERR_CHAN_NOT_FOUND) {
6599 continue;
6600 }
6601 goto error;
6602 }
6603 }
6604
6605 (void) push_metadata(registry, usess->consumer);
6606
6607 /*
6608 * Clear the metadata channel.
6609 * Metadata channel is not cleared per se but we still need to
6610 * perform rotation operation on it behind the scene.
6611 */
6612 ret = consumer_clear_channel(socket, registry->metadata_key);
6613 if (ret < 0) {
6614 /* Per-PID buffer and application going away. */
6615 if (ret == -LTTNG_ERR_CHAN_NOT_FOUND) {
6616 continue;
6617 }
6618 goto error;
6619 }
6620 }
6621 break;
6622 }
6623 default:
6624 assert(0);
6625 break;
6626 }
6627
6628 cmd_ret = LTTNG_OK;
6629 goto end;
6630
6631 error:
6632 switch (-ret) {
6633 case LTTCOMM_CONSUMERD_RELAYD_CLEAR_DISALLOWED:
6634 cmd_ret = LTTNG_ERR_CLEAR_RELAY_DISALLOWED;
6635 break;
6636 default:
6637 cmd_ret = LTTNG_ERR_CLEAR_FAIL_CONSUMER;
6638 }
6639
6640 error_socket:
6641 end:
6642 rcu_read_unlock();
6643 return cmd_ret;
6644 }
6645
6646 /*
6647 * This function skips the metadata channel as the begin/end timestamps of a
6648 * metadata packet are useless.
6649 *
6650 * Moreover, opening a packet after a "clear" will cause problems for live
6651 * sessions as it will introduce padding that was not part of the first trace
6652 * chunk. The relay daemon expects the content of the metadata stream of
6653 * successive metadata trace chunks to be strict supersets of one another.
6654 *
6655 * For example, flushing a packet at the beginning of the metadata stream of
6656 * a trace chunk resulting from a "clear" session command will cause the
6657 * size of the metadata stream of the new trace chunk to not match the size of
6658 * the metadata stream of the original chunk. This will confuse the relay
6659 * daemon as the same "offset" in a metadata stream will no longer point
6660 * to the same content.
6661 */
6662 enum lttng_error_code ust_app_open_packets(struct ltt_session *session)
6663 {
6664 enum lttng_error_code ret = LTTNG_OK;
6665 struct lttng_ht_iter iter;
6666 struct ltt_ust_session *usess = session->ust_session;
6667
6668 assert(usess);
6669
6670 rcu_read_lock();
6671
6672 switch (usess->buffer_type) {
6673 case LTTNG_BUFFER_PER_UID:
6674 {
6675 struct buffer_reg_uid *reg;
6676
6677 cds_list_for_each_entry (
6678 reg, &usess->buffer_reg_uid_list, lnode) {
6679 struct buffer_reg_channel *reg_chan;
6680 struct consumer_socket *socket;
6681
6682 socket = consumer_find_socket_by_bitness(
6683 reg->bits_per_long, usess->consumer);
6684 if (!socket) {
6685 ret = LTTNG_ERR_FATAL;
6686 goto error;
6687 }
6688
6689 cds_lfht_for_each_entry(reg->registry->channels->ht,
6690 &iter.iter, reg_chan, node.node) {
6691 const int open_ret =
6692 consumer_open_channel_packets(
6693 socket,
6694 reg_chan->consumer_key);
6695
6696 if (open_ret < 0) {
6697 ret = LTTNG_ERR_UNK;
6698 goto error;
6699 }
6700 }
6701 }
6702 break;
6703 }
6704 case LTTNG_BUFFER_PER_PID:
6705 {
6706 struct ust_app *app;
6707
6708 cds_lfht_for_each_entry (
6709 ust_app_ht->ht, &iter.iter, app, pid_n.node) {
6710 struct consumer_socket *socket;
6711 struct lttng_ht_iter chan_iter;
6712 struct ust_app_channel *ua_chan;
6713 struct ust_app_session *ua_sess;
6714 struct ust_registry_session *registry;
6715
6716 ua_sess = lookup_session_by_app(usess, app);
6717 if (!ua_sess) {
6718 /* Session not associated with this app. */
6719 continue;
6720 }
6721
6722 /* Get the right consumer socket for the application. */
6723 socket = consumer_find_socket_by_bitness(
6724 app->bits_per_long, usess->consumer);
6725 if (!socket) {
6726 ret = LTTNG_ERR_FATAL;
6727 goto error;
6728 }
6729
6730 registry = get_session_registry(ua_sess);
6731 if (!registry) {
6732 DBG("Application session is being torn down. Skip application.");
6733 continue;
6734 }
6735
6736 cds_lfht_for_each_entry(ua_sess->channels->ht,
6737 &chan_iter.iter, ua_chan, node.node) {
6738 const int open_ret =
6739 consumer_open_channel_packets(
6740 socket,
6741 ua_chan->key);
6742
6743 if (open_ret < 0) {
6744 /*
6745 * Per-PID buffer and application going
6746 * away.
6747 */
6748 if (open_ret == -LTTNG_ERR_CHAN_NOT_FOUND) {
6749 continue;
6750 }
6751
6752 ret = LTTNG_ERR_UNK;
6753 goto error;
6754 }
6755 }
6756 }
6757 break;
6758 }
6759 default:
6760 abort();
6761 break;
6762 }
6763
6764 error:
6765 rcu_read_unlock();
6766 return ret;
6767 }
This page took 0.247232 seconds and 3 git commands to generate.