2 * Copyright (C) 2011 - David Goulet <david.goulet@polymtl.ca>
3 * Copyright (C) 2016 - Jérémie Galarneau <jeremie.galarneau@efficios.com>
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License, version 2 only,
7 * as published by the Free Software Foundation.
9 * This program is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 * GNU General Public License for more details.
14 * You should have received a copy of the GNU General Public License along
15 * with this program; if not, write to the Free Software Foundation, Inc.,
16 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
27 #include <sys/types.h>
29 #include <urcu/compiler.h>
30 #include <lttng/ust-error.h>
33 #include <common/common.h>
34 #include <common/sessiond-comm/sessiond-comm.h>
36 #include "buffer-registry.h"
38 #include "health-sessiond.h"
40 #include "ust-consumer.h"
44 #include "lttng-sessiond.h"
45 #include "notification-thread-commands.h"
48 int ust_app_flush_app_session(struct ust_app
*app
, struct ust_app_session
*ua_sess
);
50 /* Next available channel key. Access under next_channel_key_lock. */
51 static uint64_t _next_channel_key
;
52 static pthread_mutex_t next_channel_key_lock
= PTHREAD_MUTEX_INITIALIZER
;
54 /* Next available session ID. Access under next_session_id_lock. */
55 static uint64_t _next_session_id
;
56 static pthread_mutex_t next_session_id_lock
= PTHREAD_MUTEX_INITIALIZER
;
59 * Return the incremented value of next_channel_key.
61 static uint64_t get_next_channel_key(void)
65 pthread_mutex_lock(&next_channel_key_lock
);
66 ret
= ++_next_channel_key
;
67 pthread_mutex_unlock(&next_channel_key_lock
);
72 * Return the atomically incremented value of next_session_id.
74 static uint64_t get_next_session_id(void)
78 pthread_mutex_lock(&next_session_id_lock
);
79 ret
= ++_next_session_id
;
80 pthread_mutex_unlock(&next_session_id_lock
);
84 static void copy_channel_attr_to_ustctl(
85 struct ustctl_consumer_channel_attr
*attr
,
86 struct lttng_ust_channel_attr
*uattr
)
88 /* Copy event attributes since the layout is different. */
89 attr
->subbuf_size
= uattr
->subbuf_size
;
90 attr
->num_subbuf
= uattr
->num_subbuf
;
91 attr
->overwrite
= uattr
->overwrite
;
92 attr
->switch_timer_interval
= uattr
->switch_timer_interval
;
93 attr
->read_timer_interval
= uattr
->read_timer_interval
;
94 attr
->output
= uattr
->output
;
95 attr
->blocking_timeout
= uattr
->u
.s
.blocking_timeout
;
99 * Match function for the hash table lookup.
101 * It matches an ust app event based on three attributes which are the event
102 * name, the filter bytecode and the loglevel.
104 static int ht_match_ust_app_event(struct cds_lfht_node
*node
, const void *_key
)
106 struct ust_app_event
*event
;
107 const struct ust_app_ht_key
*key
;
108 int ev_loglevel_value
;
113 event
= caa_container_of(node
, struct ust_app_event
, node
.node
);
115 ev_loglevel_value
= event
->attr
.loglevel
;
117 /* Match the 4 elements of the key: name, filter, loglevel, exclusions */
120 if (strncmp(event
->attr
.name
, key
->name
, sizeof(event
->attr
.name
)) != 0) {
124 /* Event loglevel. */
125 if (ev_loglevel_value
!= key
->loglevel_type
) {
126 if (event
->attr
.loglevel_type
== LTTNG_UST_LOGLEVEL_ALL
127 && key
->loglevel_type
== 0 &&
128 ev_loglevel_value
== -1) {
130 * Match is accepted. This is because on event creation, the
131 * loglevel is set to -1 if the event loglevel type is ALL so 0 and
132 * -1 are accepted for this loglevel type since 0 is the one set by
133 * the API when receiving an enable event.
140 /* One of the filters is NULL, fail. */
141 if ((key
->filter
&& !event
->filter
) || (!key
->filter
&& event
->filter
)) {
145 if (key
->filter
&& event
->filter
) {
146 /* Both filters exists, check length followed by the bytecode. */
147 if (event
->filter
->len
!= key
->filter
->len
||
148 memcmp(event
->filter
->data
, key
->filter
->data
,
149 event
->filter
->len
) != 0) {
154 /* One of the exclusions is NULL, fail. */
155 if ((key
->exclusion
&& !event
->exclusion
) || (!key
->exclusion
&& event
->exclusion
)) {
159 if (key
->exclusion
&& event
->exclusion
) {
160 /* Both exclusions exists, check count followed by the names. */
161 if (event
->exclusion
->count
!= key
->exclusion
->count
||
162 memcmp(event
->exclusion
->names
, key
->exclusion
->names
,
163 event
->exclusion
->count
* LTTNG_UST_SYM_NAME_LEN
) != 0) {
177 * Unique add of an ust app event in the given ht. This uses the custom
178 * ht_match_ust_app_event match function and the event name as hash.
180 static void add_unique_ust_app_event(struct ust_app_channel
*ua_chan
,
181 struct ust_app_event
*event
)
183 struct cds_lfht_node
*node_ptr
;
184 struct ust_app_ht_key key
;
188 assert(ua_chan
->events
);
191 ht
= ua_chan
->events
;
192 key
.name
= event
->attr
.name
;
193 key
.filter
= event
->filter
;
194 key
.loglevel_type
= event
->attr
.loglevel
;
195 key
.exclusion
= event
->exclusion
;
197 node_ptr
= cds_lfht_add_unique(ht
->ht
,
198 ht
->hash_fct(event
->node
.key
, lttng_ht_seed
),
199 ht_match_ust_app_event
, &key
, &event
->node
.node
);
200 assert(node_ptr
== &event
->node
.node
);
204 * Close the notify socket from the given RCU head object. This MUST be called
205 * through a call_rcu().
207 static void close_notify_sock_rcu(struct rcu_head
*head
)
210 struct ust_app_notify_sock_obj
*obj
=
211 caa_container_of(head
, struct ust_app_notify_sock_obj
, head
);
213 /* Must have a valid fd here. */
214 assert(obj
->fd
>= 0);
216 ret
= close(obj
->fd
);
218 ERR("close notify sock %d RCU", obj
->fd
);
220 lttng_fd_put(LTTNG_FD_APPS
, 1);
226 * Return the session registry according to the buffer type of the given
229 * A registry per UID object MUST exists before calling this function or else
230 * it assert() if not found. RCU read side lock must be acquired.
232 static struct ust_registry_session
*get_session_registry(
233 struct ust_app_session
*ua_sess
)
235 struct ust_registry_session
*registry
= NULL
;
239 switch (ua_sess
->buffer_type
) {
240 case LTTNG_BUFFER_PER_PID
:
242 struct buffer_reg_pid
*reg_pid
= buffer_reg_pid_find(ua_sess
->id
);
246 registry
= reg_pid
->registry
->reg
.ust
;
249 case LTTNG_BUFFER_PER_UID
:
251 struct buffer_reg_uid
*reg_uid
= buffer_reg_uid_find(
252 ua_sess
->tracing_id
, ua_sess
->bits_per_long
, ua_sess
->uid
);
256 registry
= reg_uid
->registry
->reg
.ust
;
268 * Delete ust context safely. RCU read lock must be held before calling
272 void delete_ust_app_ctx(int sock
, struct ust_app_ctx
*ua_ctx
,
280 pthread_mutex_lock(&app
->sock_lock
);
281 ret
= ustctl_release_object(sock
, ua_ctx
->obj
);
282 pthread_mutex_unlock(&app
->sock_lock
);
283 if (ret
< 0 && ret
!= -EPIPE
&& ret
!= -LTTNG_UST_ERR_EXITING
) {
284 ERR("UST app sock %d release ctx obj handle %d failed with ret %d",
285 sock
, ua_ctx
->obj
->handle
, ret
);
293 * Delete ust app event safely. RCU read lock must be held before calling
297 void delete_ust_app_event(int sock
, struct ust_app_event
*ua_event
,
304 free(ua_event
->filter
);
305 if (ua_event
->exclusion
!= NULL
)
306 free(ua_event
->exclusion
);
307 if (ua_event
->obj
!= NULL
) {
308 pthread_mutex_lock(&app
->sock_lock
);
309 ret
= ustctl_release_object(sock
, ua_event
->obj
);
310 pthread_mutex_unlock(&app
->sock_lock
);
311 if (ret
< 0 && ret
!= -EPIPE
&& ret
!= -LTTNG_UST_ERR_EXITING
) {
312 ERR("UST app sock %d release event obj failed with ret %d",
321 * Release ust data object of the given stream.
323 * Return 0 on success or else a negative value.
325 static int release_ust_app_stream(int sock
, struct ust_app_stream
*stream
,
333 pthread_mutex_lock(&app
->sock_lock
);
334 ret
= ustctl_release_object(sock
, stream
->obj
);
335 pthread_mutex_unlock(&app
->sock_lock
);
336 if (ret
< 0 && ret
!= -EPIPE
&& ret
!= -LTTNG_UST_ERR_EXITING
) {
337 ERR("UST app sock %d release stream obj failed with ret %d",
340 lttng_fd_put(LTTNG_FD_APPS
, 2);
348 * Delete ust app stream safely. RCU read lock must be held before calling
352 void delete_ust_app_stream(int sock
, struct ust_app_stream
*stream
,
357 (void) release_ust_app_stream(sock
, stream
, app
);
362 * We need to execute ht_destroy outside of RCU read-side critical
363 * section and outside of call_rcu thread, so we postpone its execution
364 * using ht_cleanup_push. It is simpler than to change the semantic of
365 * the many callers of delete_ust_app_session().
368 void delete_ust_app_channel_rcu(struct rcu_head
*head
)
370 struct ust_app_channel
*ua_chan
=
371 caa_container_of(head
, struct ust_app_channel
, rcu_head
);
373 ht_cleanup_push(ua_chan
->ctx
);
374 ht_cleanup_push(ua_chan
->events
);
379 * Extract the lost packet or discarded events counter when the channel is
380 * being deleted and store the value in the parent channel so we can
381 * access it from lttng list and at stop/destroy.
383 * The session list lock must be held by the caller.
386 void save_per_pid_lost_discarded_counters(struct ust_app_channel
*ua_chan
)
388 uint64_t discarded
= 0, lost
= 0;
389 struct ltt_session
*session
;
390 struct ltt_ust_channel
*uchan
;
392 if (ua_chan
->attr
.type
!= LTTNG_UST_CHAN_PER_CPU
) {
397 session
= session_find_by_id(ua_chan
->session
->tracing_id
);
398 if (!session
|| !session
->ust_session
) {
400 * Not finding the session is not an error because there are
401 * multiple ways the channels can be torn down.
403 * 1) The session daemon can initiate the destruction of the
404 * ust app session after receiving a destroy command or
405 * during its shutdown/teardown.
406 * 2) The application, since we are in per-pid tracing, is
407 * unregistering and tearing down its ust app session.
409 * Both paths are protected by the session list lock which
410 * ensures that the accounting of lost packets and discarded
411 * events is done exactly once. The session is then unpublished
412 * from the session list, resulting in this condition.
417 if (ua_chan
->attr
.overwrite
) {
418 consumer_get_lost_packets(ua_chan
->session
->tracing_id
,
419 ua_chan
->key
, session
->ust_session
->consumer
,
422 consumer_get_discarded_events(ua_chan
->session
->tracing_id
,
423 ua_chan
->key
, session
->ust_session
->consumer
,
426 uchan
= trace_ust_find_channel_by_name(
427 session
->ust_session
->domain_global
.channels
,
430 ERR("Missing UST channel to store discarded counters");
434 uchan
->per_pid_closed_app_discarded
+= discarded
;
435 uchan
->per_pid_closed_app_lost
+= lost
;
442 * Delete ust app channel safely. RCU read lock must be held before calling
445 * The session list lock must be held by the caller.
448 void delete_ust_app_channel(int sock
, struct ust_app_channel
*ua_chan
,
452 struct lttng_ht_iter iter
;
453 struct ust_app_event
*ua_event
;
454 struct ust_app_ctx
*ua_ctx
;
455 struct ust_app_stream
*stream
, *stmp
;
456 struct ust_registry_session
*registry
;
460 DBG3("UST app deleting channel %s", ua_chan
->name
);
463 cds_list_for_each_entry_safe(stream
, stmp
, &ua_chan
->streams
.head
, list
) {
464 cds_list_del(&stream
->list
);
465 delete_ust_app_stream(sock
, stream
, app
);
469 cds_lfht_for_each_entry(ua_chan
->ctx
->ht
, &iter
.iter
, ua_ctx
, node
.node
) {
470 cds_list_del(&ua_ctx
->list
);
471 ret
= lttng_ht_del(ua_chan
->ctx
, &iter
);
473 delete_ust_app_ctx(sock
, ua_ctx
, app
);
477 cds_lfht_for_each_entry(ua_chan
->events
->ht
, &iter
.iter
, ua_event
,
479 ret
= lttng_ht_del(ua_chan
->events
, &iter
);
481 delete_ust_app_event(sock
, ua_event
, app
);
484 if (ua_chan
->session
->buffer_type
== LTTNG_BUFFER_PER_PID
) {
485 /* Wipe and free registry from session registry. */
486 registry
= get_session_registry(ua_chan
->session
);
488 ust_registry_channel_del_free(registry
, ua_chan
->key
,
491 save_per_pid_lost_discarded_counters(ua_chan
);
494 if (ua_chan
->obj
!= NULL
) {
495 /* Remove channel from application UST object descriptor. */
496 iter
.iter
.node
= &ua_chan
->ust_objd_node
.node
;
497 ret
= lttng_ht_del(app
->ust_objd
, &iter
);
499 pthread_mutex_lock(&app
->sock_lock
);
500 ret
= ustctl_release_object(sock
, ua_chan
->obj
);
501 pthread_mutex_unlock(&app
->sock_lock
);
502 if (ret
< 0 && ret
!= -EPIPE
&& ret
!= -LTTNG_UST_ERR_EXITING
) {
503 ERR("UST app sock %d release channel obj failed with ret %d",
506 lttng_fd_put(LTTNG_FD_APPS
, 1);
509 call_rcu(&ua_chan
->rcu_head
, delete_ust_app_channel_rcu
);
512 int ust_app_register_done(struct ust_app
*app
)
516 pthread_mutex_lock(&app
->sock_lock
);
517 ret
= ustctl_register_done(app
->sock
);
518 pthread_mutex_unlock(&app
->sock_lock
);
522 int ust_app_release_object(struct ust_app
*app
, struct lttng_ust_object_data
*data
)
527 pthread_mutex_lock(&app
->sock_lock
);
532 ret
= ustctl_release_object(sock
, data
);
534 pthread_mutex_unlock(&app
->sock_lock
);
540 * Push metadata to consumer socket.
542 * RCU read-side lock must be held to guarantee existance of socket.
543 * Must be called with the ust app session lock held.
544 * Must be called with the registry lock held.
546 * On success, return the len of metadata pushed or else a negative value.
547 * Returning a -EPIPE return value means we could not send the metadata,
548 * but it can be caused by recoverable errors (e.g. the application has
549 * terminated concurrently).
551 ssize_t
ust_app_push_metadata(struct ust_registry_session
*registry
,
552 struct consumer_socket
*socket
, int send_zero_data
)
555 char *metadata_str
= NULL
;
556 size_t len
, offset
, new_metadata_len_sent
;
558 uint64_t metadata_key
, metadata_version
;
563 metadata_key
= registry
->metadata_key
;
566 * Means that no metadata was assigned to the session. This can
567 * happens if no start has been done previously.
573 offset
= registry
->metadata_len_sent
;
574 len
= registry
->metadata_len
- registry
->metadata_len_sent
;
575 new_metadata_len_sent
= registry
->metadata_len
;
576 metadata_version
= registry
->metadata_version
;
578 DBG3("No metadata to push for metadata key %" PRIu64
,
579 registry
->metadata_key
);
581 if (send_zero_data
) {
582 DBG("No metadata to push");
588 /* Allocate only what we have to send. */
589 metadata_str
= zmalloc(len
);
591 PERROR("zmalloc ust app metadata string");
595 /* Copy what we haven't sent out. */
596 memcpy(metadata_str
, registry
->metadata
+ offset
, len
);
599 pthread_mutex_unlock(®istry
->lock
);
601 * We need to unlock the registry while we push metadata to
602 * break a circular dependency between the consumerd metadata
603 * lock and the sessiond registry lock. Indeed, pushing metadata
604 * to the consumerd awaits that it gets pushed all the way to
605 * relayd, but doing so requires grabbing the metadata lock. If
606 * a concurrent metadata request is being performed by
607 * consumerd, this can try to grab the registry lock on the
608 * sessiond while holding the metadata lock on the consumer
609 * daemon. Those push and pull schemes are performed on two
610 * different bidirectionnal communication sockets.
612 ret
= consumer_push_metadata(socket
, metadata_key
,
613 metadata_str
, len
, offset
, metadata_version
);
614 pthread_mutex_lock(®istry
->lock
);
617 * There is an acceptable race here between the registry
618 * metadata key assignment and the creation on the
619 * consumer. The session daemon can concurrently push
620 * metadata for this registry while being created on the
621 * consumer since the metadata key of the registry is
622 * assigned *before* it is setup to avoid the consumer
623 * to ask for metadata that could possibly be not found
624 * in the session daemon.
626 * The metadata will get pushed either by the session
627 * being stopped or the consumer requesting metadata if
628 * that race is triggered.
630 if (ret
== -LTTCOMM_CONSUMERD_CHANNEL_FAIL
) {
633 ERR("Error pushing metadata to consumer");
639 * Metadata may have been concurrently pushed, since
640 * we're not holding the registry lock while pushing to
641 * consumer. This is handled by the fact that we send
642 * the metadata content, size, and the offset at which
643 * that metadata belongs. This may arrive out of order
644 * on the consumer side, and the consumer is able to
645 * deal with overlapping fragments. The consumer
646 * supports overlapping fragments, which must be
647 * contiguous starting from offset 0. We keep the
648 * largest metadata_len_sent value of the concurrent
651 registry
->metadata_len_sent
=
652 max_t(size_t, registry
->metadata_len_sent
,
653 new_metadata_len_sent
);
662 * On error, flag the registry that the metadata is
663 * closed. We were unable to push anything and this
664 * means that either the consumer is not responding or
665 * the metadata cache has been destroyed on the
668 registry
->metadata_closed
= 1;
676 * For a given application and session, push metadata to consumer.
677 * Either sock or consumer is required : if sock is NULL, the default
678 * socket to send the metadata is retrieved from consumer, if sock
679 * is not NULL we use it to send the metadata.
680 * RCU read-side lock must be held while calling this function,
681 * therefore ensuring existance of registry. It also ensures existance
682 * of socket throughout this function.
684 * Return 0 on success else a negative error.
685 * Returning a -EPIPE return value means we could not send the metadata,
686 * but it can be caused by recoverable errors (e.g. the application has
687 * terminated concurrently).
689 static int push_metadata(struct ust_registry_session
*registry
,
690 struct consumer_output
*consumer
)
694 struct consumer_socket
*socket
;
699 pthread_mutex_lock(®istry
->lock
);
700 if (registry
->metadata_closed
) {
705 /* Get consumer socket to use to push the metadata.*/
706 socket
= consumer_find_socket_by_bitness(registry
->bits_per_long
,
713 ret
= ust_app_push_metadata(registry
, socket
, 0);
718 pthread_mutex_unlock(®istry
->lock
);
722 pthread_mutex_unlock(®istry
->lock
);
727 * Send to the consumer a close metadata command for the given session. Once
728 * done, the metadata channel is deleted and the session metadata pointer is
729 * nullified. The session lock MUST be held unless the application is
730 * in the destroy path.
732 * Return 0 on success else a negative value.
734 static int close_metadata(struct ust_registry_session
*registry
,
735 struct consumer_output
*consumer
)
738 struct consumer_socket
*socket
;
745 pthread_mutex_lock(®istry
->lock
);
747 if (!registry
->metadata_key
|| registry
->metadata_closed
) {
752 /* Get consumer socket to use to push the metadata.*/
753 socket
= consumer_find_socket_by_bitness(registry
->bits_per_long
,
760 ret
= consumer_close_metadata(socket
, registry
->metadata_key
);
767 * Metadata closed. Even on error this means that the consumer is not
768 * responding or not found so either way a second close should NOT be emit
771 registry
->metadata_closed
= 1;
773 pthread_mutex_unlock(®istry
->lock
);
779 * We need to execute ht_destroy outside of RCU read-side critical
780 * section and outside of call_rcu thread, so we postpone its execution
781 * using ht_cleanup_push. It is simpler than to change the semantic of
782 * the many callers of delete_ust_app_session().
785 void delete_ust_app_session_rcu(struct rcu_head
*head
)
787 struct ust_app_session
*ua_sess
=
788 caa_container_of(head
, struct ust_app_session
, rcu_head
);
790 ht_cleanup_push(ua_sess
->channels
);
795 * Delete ust app session safely. RCU read lock must be held before calling
798 * The session list lock must be held by the caller.
801 void delete_ust_app_session(int sock
, struct ust_app_session
*ua_sess
,
805 struct lttng_ht_iter iter
;
806 struct ust_app_channel
*ua_chan
;
807 struct ust_registry_session
*registry
;
811 pthread_mutex_lock(&ua_sess
->lock
);
813 assert(!ua_sess
->deleted
);
814 ua_sess
->deleted
= true;
816 registry
= get_session_registry(ua_sess
);
817 /* Registry can be null on error path during initialization. */
819 /* Push metadata for application before freeing the application. */
820 (void) push_metadata(registry
, ua_sess
->consumer
);
823 * Don't ask to close metadata for global per UID buffers. Close
824 * metadata only on destroy trace session in this case. Also, the
825 * previous push metadata could have flag the metadata registry to
826 * close so don't send a close command if closed.
828 if (ua_sess
->buffer_type
!= LTTNG_BUFFER_PER_UID
) {
829 /* And ask to close it for this session registry. */
830 (void) close_metadata(registry
, ua_sess
->consumer
);
834 cds_lfht_for_each_entry(ua_sess
->channels
->ht
, &iter
.iter
, ua_chan
,
836 ret
= lttng_ht_del(ua_sess
->channels
, &iter
);
838 delete_ust_app_channel(sock
, ua_chan
, app
);
841 /* In case of per PID, the registry is kept in the session. */
842 if (ua_sess
->buffer_type
== LTTNG_BUFFER_PER_PID
) {
843 struct buffer_reg_pid
*reg_pid
= buffer_reg_pid_find(ua_sess
->id
);
846 * Registry can be null on error path during
849 buffer_reg_pid_remove(reg_pid
);
850 buffer_reg_pid_destroy(reg_pid
);
854 if (ua_sess
->handle
!= -1) {
855 pthread_mutex_lock(&app
->sock_lock
);
856 ret
= ustctl_release_handle(sock
, ua_sess
->handle
);
857 pthread_mutex_unlock(&app
->sock_lock
);
858 if (ret
< 0 && ret
!= -EPIPE
&& ret
!= -LTTNG_UST_ERR_EXITING
) {
859 ERR("UST app sock %d release session handle failed with ret %d",
862 /* Remove session from application UST object descriptor. */
863 iter
.iter
.node
= &ua_sess
->ust_objd_node
.node
;
864 ret
= lttng_ht_del(app
->ust_sessions_objd
, &iter
);
868 pthread_mutex_unlock(&ua_sess
->lock
);
870 consumer_output_put(ua_sess
->consumer
);
872 call_rcu(&ua_sess
->rcu_head
, delete_ust_app_session_rcu
);
876 * Delete a traceable application structure from the global list. Never call
877 * this function outside of a call_rcu call.
879 * RCU read side lock should _NOT_ be held when calling this function.
882 void delete_ust_app(struct ust_app
*app
)
885 struct ust_app_session
*ua_sess
, *tmp_ua_sess
;
888 * The session list lock must be held during this function to guarantee
889 * the existence of ua_sess.
892 /* Delete ust app sessions info */
897 cds_list_for_each_entry_safe(ua_sess
, tmp_ua_sess
, &app
->teardown_head
,
899 /* Free every object in the session and the session. */
901 delete_ust_app_session(sock
, ua_sess
, app
);
905 ht_cleanup_push(app
->sessions
);
906 ht_cleanup_push(app
->ust_sessions_objd
);
907 ht_cleanup_push(app
->ust_objd
);
910 * Wait until we have deleted the application from the sock hash table
911 * before closing this socket, otherwise an application could re-use the
912 * socket ID and race with the teardown, using the same hash table entry.
914 * It's OK to leave the close in call_rcu. We want it to stay unique for
915 * all RCU readers that could run concurrently with unregister app,
916 * therefore we _need_ to only close that socket after a grace period. So
917 * it should stay in this RCU callback.
919 * This close() is a very important step of the synchronization model so
920 * every modification to this function must be carefully reviewed.
926 lttng_fd_put(LTTNG_FD_APPS
, 1);
928 DBG2("UST app pid %d deleted", app
->pid
);
930 session_unlock_list();
934 * URCU intermediate call to delete an UST app.
937 void delete_ust_app_rcu(struct rcu_head
*head
)
939 struct lttng_ht_node_ulong
*node
=
940 caa_container_of(head
, struct lttng_ht_node_ulong
, head
);
941 struct ust_app
*app
=
942 caa_container_of(node
, struct ust_app
, pid_n
);
944 DBG3("Call RCU deleting app PID %d", app
->pid
);
949 * Delete the session from the application ht and delete the data structure by
950 * freeing every object inside and releasing them.
952 * The session list lock must be held by the caller.
954 static void destroy_app_session(struct ust_app
*app
,
955 struct ust_app_session
*ua_sess
)
958 struct lttng_ht_iter iter
;
963 iter
.iter
.node
= &ua_sess
->node
.node
;
964 ret
= lttng_ht_del(app
->sessions
, &iter
);
966 /* Already scheduled for teardown. */
970 /* Once deleted, free the data structure. */
971 delete_ust_app_session(app
->sock
, ua_sess
, app
);
978 * Alloc new UST app session.
981 struct ust_app_session
*alloc_ust_app_session(struct ust_app
*app
)
983 struct ust_app_session
*ua_sess
;
985 /* Init most of the default value by allocating and zeroing */
986 ua_sess
= zmalloc(sizeof(struct ust_app_session
));
987 if (ua_sess
== NULL
) {
992 ua_sess
->handle
= -1;
993 ua_sess
->channels
= lttng_ht_new(0, LTTNG_HT_TYPE_STRING
);
994 ua_sess
->metadata_attr
.type
= LTTNG_UST_CHAN_METADATA
;
995 pthread_mutex_init(&ua_sess
->lock
, NULL
);
1004 * Alloc new UST app channel.
1007 struct ust_app_channel
*alloc_ust_app_channel(char *name
,
1008 struct ust_app_session
*ua_sess
,
1009 struct lttng_ust_channel_attr
*attr
)
1011 struct ust_app_channel
*ua_chan
;
1013 /* Init most of the default value by allocating and zeroing */
1014 ua_chan
= zmalloc(sizeof(struct ust_app_channel
));
1015 if (ua_chan
== NULL
) {
1020 /* Setup channel name */
1021 strncpy(ua_chan
->name
, name
, sizeof(ua_chan
->name
));
1022 ua_chan
->name
[sizeof(ua_chan
->name
) - 1] = '\0';
1024 ua_chan
->enabled
= 1;
1025 ua_chan
->handle
= -1;
1026 ua_chan
->session
= ua_sess
;
1027 ua_chan
->key
= get_next_channel_key();
1028 ua_chan
->ctx
= lttng_ht_new(0, LTTNG_HT_TYPE_ULONG
);
1029 ua_chan
->events
= lttng_ht_new(0, LTTNG_HT_TYPE_STRING
);
1030 lttng_ht_node_init_str(&ua_chan
->node
, ua_chan
->name
);
1032 CDS_INIT_LIST_HEAD(&ua_chan
->streams
.head
);
1033 CDS_INIT_LIST_HEAD(&ua_chan
->ctx_list
);
1035 /* Copy attributes */
1037 /* Translate from lttng_ust_channel to ustctl_consumer_channel_attr. */
1038 ua_chan
->attr
.subbuf_size
= attr
->subbuf_size
;
1039 ua_chan
->attr
.num_subbuf
= attr
->num_subbuf
;
1040 ua_chan
->attr
.overwrite
= attr
->overwrite
;
1041 ua_chan
->attr
.switch_timer_interval
= attr
->switch_timer_interval
;
1042 ua_chan
->attr
.read_timer_interval
= attr
->read_timer_interval
;
1043 ua_chan
->attr
.output
= attr
->output
;
1044 ua_chan
->attr
.blocking_timeout
= attr
->u
.s
.blocking_timeout
;
1046 /* By default, the channel is a per cpu channel. */
1047 ua_chan
->attr
.type
= LTTNG_UST_CHAN_PER_CPU
;
1049 DBG3("UST app channel %s allocated", ua_chan
->name
);
1058 * Allocate and initialize a UST app stream.
1060 * Return newly allocated stream pointer or NULL on error.
1062 struct ust_app_stream
*ust_app_alloc_stream(void)
1064 struct ust_app_stream
*stream
= NULL
;
1066 stream
= zmalloc(sizeof(*stream
));
1067 if (stream
== NULL
) {
1068 PERROR("zmalloc ust app stream");
1072 /* Zero could be a valid value for a handle so flag it to -1. */
1073 stream
->handle
= -1;
1080 * Alloc new UST app event.
1083 struct ust_app_event
*alloc_ust_app_event(char *name
,
1084 struct lttng_ust_event
*attr
)
1086 struct ust_app_event
*ua_event
;
1088 /* Init most of the default value by allocating and zeroing */
1089 ua_event
= zmalloc(sizeof(struct ust_app_event
));
1090 if (ua_event
== NULL
) {
1095 ua_event
->enabled
= 1;
1096 strncpy(ua_event
->name
, name
, sizeof(ua_event
->name
));
1097 ua_event
->name
[sizeof(ua_event
->name
) - 1] = '\0';
1098 lttng_ht_node_init_str(&ua_event
->node
, ua_event
->name
);
1100 /* Copy attributes */
1102 memcpy(&ua_event
->attr
, attr
, sizeof(ua_event
->attr
));
1105 DBG3("UST app event %s allocated", ua_event
->name
);
1114 * Alloc new UST app context.
1117 struct ust_app_ctx
*alloc_ust_app_ctx(struct lttng_ust_context_attr
*uctx
)
1119 struct ust_app_ctx
*ua_ctx
;
1121 ua_ctx
= zmalloc(sizeof(struct ust_app_ctx
));
1122 if (ua_ctx
== NULL
) {
1126 CDS_INIT_LIST_HEAD(&ua_ctx
->list
);
1129 memcpy(&ua_ctx
->ctx
, uctx
, sizeof(ua_ctx
->ctx
));
1130 if (uctx
->ctx
== LTTNG_UST_CONTEXT_APP_CONTEXT
) {
1131 char *provider_name
= NULL
, *ctx_name
= NULL
;
1133 provider_name
= strdup(uctx
->u
.app_ctx
.provider_name
);
1134 ctx_name
= strdup(uctx
->u
.app_ctx
.ctx_name
);
1135 if (!provider_name
|| !ctx_name
) {
1136 free(provider_name
);
1141 ua_ctx
->ctx
.u
.app_ctx
.provider_name
= provider_name
;
1142 ua_ctx
->ctx
.u
.app_ctx
.ctx_name
= ctx_name
;
1146 DBG3("UST app context %d allocated", ua_ctx
->ctx
.ctx
);
1154 * Allocate a filter and copy the given original filter.
1156 * Return allocated filter or NULL on error.
1158 static struct lttng_filter_bytecode
*copy_filter_bytecode(
1159 struct lttng_filter_bytecode
*orig_f
)
1161 struct lttng_filter_bytecode
*filter
= NULL
;
1163 /* Copy filter bytecode */
1164 filter
= zmalloc(sizeof(*filter
) + orig_f
->len
);
1166 PERROR("zmalloc alloc filter bytecode");
1170 memcpy(filter
, orig_f
, sizeof(*filter
) + orig_f
->len
);
1177 * Create a liblttng-ust filter bytecode from given bytecode.
1179 * Return allocated filter or NULL on error.
1181 static struct lttng_ust_filter_bytecode
*create_ust_bytecode_from_bytecode(
1182 struct lttng_filter_bytecode
*orig_f
)
1184 struct lttng_ust_filter_bytecode
*filter
= NULL
;
1186 /* Copy filter bytecode */
1187 filter
= zmalloc(sizeof(*filter
) + orig_f
->len
);
1189 PERROR("zmalloc alloc ust filter bytecode");
1193 assert(sizeof(struct lttng_filter_bytecode
) ==
1194 sizeof(struct lttng_ust_filter_bytecode
));
1195 memcpy(filter
, orig_f
, sizeof(*filter
) + orig_f
->len
);
1201 * Find an ust_app using the sock and return it. RCU read side lock must be
1202 * held before calling this helper function.
1204 struct ust_app
*ust_app_find_by_sock(int sock
)
1206 struct lttng_ht_node_ulong
*node
;
1207 struct lttng_ht_iter iter
;
1209 lttng_ht_lookup(ust_app_ht_by_sock
, (void *)((unsigned long) sock
), &iter
);
1210 node
= lttng_ht_iter_get_node_ulong(&iter
);
1212 DBG2("UST app find by sock %d not found", sock
);
1216 return caa_container_of(node
, struct ust_app
, sock_n
);
1223 * Find an ust_app using the notify sock and return it. RCU read side lock must
1224 * be held before calling this helper function.
1226 static struct ust_app
*find_app_by_notify_sock(int sock
)
1228 struct lttng_ht_node_ulong
*node
;
1229 struct lttng_ht_iter iter
;
1231 lttng_ht_lookup(ust_app_ht_by_notify_sock
, (void *)((unsigned long) sock
),
1233 node
= lttng_ht_iter_get_node_ulong(&iter
);
1235 DBG2("UST app find by notify sock %d not found", sock
);
1239 return caa_container_of(node
, struct ust_app
, notify_sock_n
);
1246 * Lookup for an ust app event based on event name, filter bytecode and the
1249 * Return an ust_app_event object or NULL on error.
1251 static struct ust_app_event
*find_ust_app_event(struct lttng_ht
*ht
,
1252 char *name
, struct lttng_filter_bytecode
*filter
,
1254 const struct lttng_event_exclusion
*exclusion
)
1256 struct lttng_ht_iter iter
;
1257 struct lttng_ht_node_str
*node
;
1258 struct ust_app_event
*event
= NULL
;
1259 struct ust_app_ht_key key
;
1264 /* Setup key for event lookup. */
1266 key
.filter
= filter
;
1267 key
.loglevel_type
= loglevel_value
;
1268 /* lttng_event_exclusion and lttng_ust_event_exclusion structures are similar */
1269 key
.exclusion
= exclusion
;
1271 /* Lookup using the event name as hash and a custom match fct. */
1272 cds_lfht_lookup(ht
->ht
, ht
->hash_fct((void *) name
, lttng_ht_seed
),
1273 ht_match_ust_app_event
, &key
, &iter
.iter
);
1274 node
= lttng_ht_iter_get_node_str(&iter
);
1279 event
= caa_container_of(node
, struct ust_app_event
, node
);
1286 * Create the channel context on the tracer.
1288 * Called with UST app session lock held.
1291 int create_ust_channel_context(struct ust_app_channel
*ua_chan
,
1292 struct ust_app_ctx
*ua_ctx
, struct ust_app
*app
)
1296 health_code_update();
1298 pthread_mutex_lock(&app
->sock_lock
);
1299 ret
= ustctl_add_context(app
->sock
, &ua_ctx
->ctx
,
1300 ua_chan
->obj
, &ua_ctx
->obj
);
1301 pthread_mutex_unlock(&app
->sock_lock
);
1303 if (ret
!= -EPIPE
&& ret
!= -LTTNG_UST_ERR_EXITING
) {
1304 ERR("UST app create channel context failed for app (pid: %d) "
1305 "with ret %d", app
->pid
, ret
);
1308 * This is normal behavior, an application can die during the
1309 * creation process. Don't report an error so the execution can
1310 * continue normally.
1313 DBG3("UST app disable event failed. Application is dead.");
1318 ua_ctx
->handle
= ua_ctx
->obj
->handle
;
1320 DBG2("UST app context handle %d created successfully for channel %s",
1321 ua_ctx
->handle
, ua_chan
->name
);
1324 health_code_update();
1329 * Set the filter on the tracer.
1332 int set_ust_event_filter(struct ust_app_event
*ua_event
,
1333 struct ust_app
*app
)
1336 struct lttng_ust_filter_bytecode
*ust_bytecode
= NULL
;
1338 health_code_update();
1340 if (!ua_event
->filter
) {
1345 ust_bytecode
= create_ust_bytecode_from_bytecode(ua_event
->filter
);
1346 if (!ust_bytecode
) {
1347 ret
= -LTTNG_ERR_NOMEM
;
1350 pthread_mutex_lock(&app
->sock_lock
);
1351 ret
= ustctl_set_filter(app
->sock
, ust_bytecode
,
1353 pthread_mutex_unlock(&app
->sock_lock
);
1355 if (ret
!= -EPIPE
&& ret
!= -LTTNG_UST_ERR_EXITING
) {
1356 ERR("UST app event %s filter failed for app (pid: %d) "
1357 "with ret %d", ua_event
->attr
.name
, app
->pid
, ret
);
1360 * This is normal behavior, an application can die during the
1361 * creation process. Don't report an error so the execution can
1362 * continue normally.
1365 DBG3("UST app filter event failed. Application is dead.");
1370 DBG2("UST filter set successfully for event %s", ua_event
->name
);
1373 health_code_update();
1379 struct lttng_ust_event_exclusion
*create_ust_exclusion_from_exclusion(
1380 struct lttng_event_exclusion
*exclusion
)
1382 struct lttng_ust_event_exclusion
*ust_exclusion
= NULL
;
1383 size_t exclusion_alloc_size
= sizeof(struct lttng_ust_event_exclusion
) +
1384 LTTNG_UST_SYM_NAME_LEN
* exclusion
->count
;
1386 ust_exclusion
= zmalloc(exclusion_alloc_size
);
1387 if (!ust_exclusion
) {
1392 assert(sizeof(struct lttng_event_exclusion
) ==
1393 sizeof(struct lttng_ust_event_exclusion
));
1394 memcpy(ust_exclusion
, exclusion
, exclusion_alloc_size
);
1396 return ust_exclusion
;
1400 * Set event exclusions on the tracer.
1403 int set_ust_event_exclusion(struct ust_app_event
*ua_event
,
1404 struct ust_app
*app
)
1407 struct lttng_ust_event_exclusion
*ust_exclusion
= NULL
;
1409 health_code_update();
1411 if (!ua_event
->exclusion
|| !ua_event
->exclusion
->count
) {
1416 ust_exclusion
= create_ust_exclusion_from_exclusion(
1417 ua_event
->exclusion
);
1418 if (!ust_exclusion
) {
1419 ret
= -LTTNG_ERR_NOMEM
;
1422 pthread_mutex_lock(&app
->sock_lock
);
1423 ret
= ustctl_set_exclusion(app
->sock
, ust_exclusion
, ua_event
->obj
);
1424 pthread_mutex_unlock(&app
->sock_lock
);
1426 if (ret
!= -EPIPE
&& ret
!= -LTTNG_UST_ERR_EXITING
) {
1427 ERR("UST app event %s exclusions failed for app (pid: %d) "
1428 "with ret %d", ua_event
->attr
.name
, app
->pid
, ret
);
1431 * This is normal behavior, an application can die during the
1432 * creation process. Don't report an error so the execution can
1433 * continue normally.
1436 DBG3("UST app event exclusion failed. Application is dead.");
1441 DBG2("UST exclusion set successfully for event %s", ua_event
->name
);
1444 health_code_update();
1445 free(ust_exclusion
);
1450 * Disable the specified event on to UST tracer for the UST session.
1452 static int disable_ust_event(struct ust_app
*app
,
1453 struct ust_app_session
*ua_sess
, struct ust_app_event
*ua_event
)
1457 health_code_update();
1459 pthread_mutex_lock(&app
->sock_lock
);
1460 ret
= ustctl_disable(app
->sock
, ua_event
->obj
);
1461 pthread_mutex_unlock(&app
->sock_lock
);
1463 if (ret
!= -EPIPE
&& ret
!= -LTTNG_UST_ERR_EXITING
) {
1464 ERR("UST app event %s disable failed for app (pid: %d) "
1465 "and session handle %d with ret %d",
1466 ua_event
->attr
.name
, app
->pid
, ua_sess
->handle
, ret
);
1469 * This is normal behavior, an application can die during the
1470 * creation process. Don't report an error so the execution can
1471 * continue normally.
1474 DBG3("UST app disable event failed. Application is dead.");
1479 DBG2("UST app event %s disabled successfully for app (pid: %d)",
1480 ua_event
->attr
.name
, app
->pid
);
1483 health_code_update();
1488 * Disable the specified channel on to UST tracer for the UST session.
1490 static int disable_ust_channel(struct ust_app
*app
,
1491 struct ust_app_session
*ua_sess
, struct ust_app_channel
*ua_chan
)
1495 health_code_update();
1497 pthread_mutex_lock(&app
->sock_lock
);
1498 ret
= ustctl_disable(app
->sock
, ua_chan
->obj
);
1499 pthread_mutex_unlock(&app
->sock_lock
);
1501 if (ret
!= -EPIPE
&& ret
!= -LTTNG_UST_ERR_EXITING
) {
1502 ERR("UST app channel %s disable failed for app (pid: %d) "
1503 "and session handle %d with ret %d",
1504 ua_chan
->name
, app
->pid
, ua_sess
->handle
, ret
);
1507 * This is normal behavior, an application can die during the
1508 * creation process. Don't report an error so the execution can
1509 * continue normally.
1512 DBG3("UST app disable channel failed. Application is dead.");
1517 DBG2("UST app channel %s disabled successfully for app (pid: %d)",
1518 ua_chan
->name
, app
->pid
);
1521 health_code_update();
1526 * Enable the specified channel on to UST tracer for the UST session.
1528 static int enable_ust_channel(struct ust_app
*app
,
1529 struct ust_app_session
*ua_sess
, struct ust_app_channel
*ua_chan
)
1533 health_code_update();
1535 pthread_mutex_lock(&app
->sock_lock
);
1536 ret
= ustctl_enable(app
->sock
, ua_chan
->obj
);
1537 pthread_mutex_unlock(&app
->sock_lock
);
1539 if (ret
!= -EPIPE
&& ret
!= -LTTNG_UST_ERR_EXITING
) {
1540 ERR("UST app channel %s enable failed for app (pid: %d) "
1541 "and session handle %d with ret %d",
1542 ua_chan
->name
, app
->pid
, ua_sess
->handle
, ret
);
1545 * This is normal behavior, an application can die during the
1546 * creation process. Don't report an error so the execution can
1547 * continue normally.
1550 DBG3("UST app enable channel failed. Application is dead.");
1555 ua_chan
->enabled
= 1;
1557 DBG2("UST app channel %s enabled successfully for app (pid: %d)",
1558 ua_chan
->name
, app
->pid
);
1561 health_code_update();
1566 * Enable the specified event on to UST tracer for the UST session.
1568 static int enable_ust_event(struct ust_app
*app
,
1569 struct ust_app_session
*ua_sess
, struct ust_app_event
*ua_event
)
1573 health_code_update();
1575 pthread_mutex_lock(&app
->sock_lock
);
1576 ret
= ustctl_enable(app
->sock
, ua_event
->obj
);
1577 pthread_mutex_unlock(&app
->sock_lock
);
1579 if (ret
!= -EPIPE
&& ret
!= -LTTNG_UST_ERR_EXITING
) {
1580 ERR("UST app event %s enable failed for app (pid: %d) "
1581 "and session handle %d with ret %d",
1582 ua_event
->attr
.name
, app
->pid
, ua_sess
->handle
, ret
);
1585 * This is normal behavior, an application can die during the
1586 * creation process. Don't report an error so the execution can
1587 * continue normally.
1590 DBG3("UST app enable event failed. Application is dead.");
1595 DBG2("UST app event %s enabled successfully for app (pid: %d)",
1596 ua_event
->attr
.name
, app
->pid
);
1599 health_code_update();
1604 * Send channel and stream buffer to application.
1606 * Return 0 on success. On error, a negative value is returned.
1608 static int send_channel_pid_to_ust(struct ust_app
*app
,
1609 struct ust_app_session
*ua_sess
, struct ust_app_channel
*ua_chan
)
1612 struct ust_app_stream
*stream
, *stmp
;
1618 health_code_update();
1620 DBG("UST app sending channel %s to UST app sock %d", ua_chan
->name
,
1623 /* Send channel to the application. */
1624 ret
= ust_consumer_send_channel_to_ust(app
, ua_sess
, ua_chan
);
1625 if (ret
== -EPIPE
|| ret
== -LTTNG_UST_ERR_EXITING
) {
1626 ret
= -ENOTCONN
; /* Caused by app exiting. */
1628 } else if (ret
< 0) {
1632 health_code_update();
1634 /* Send all streams to application. */
1635 cds_list_for_each_entry_safe(stream
, stmp
, &ua_chan
->streams
.head
, list
) {
1636 ret
= ust_consumer_send_stream_to_ust(app
, ua_chan
, stream
);
1637 if (ret
== -EPIPE
|| ret
== -LTTNG_UST_ERR_EXITING
) {
1638 ret
= -ENOTCONN
; /* Caused by app exiting. */
1640 } else if (ret
< 0) {
1643 /* We don't need the stream anymore once sent to the tracer. */
1644 cds_list_del(&stream
->list
);
1645 delete_ust_app_stream(-1, stream
, app
);
1647 /* Flag the channel that it is sent to the application. */
1648 ua_chan
->is_sent
= 1;
1651 health_code_update();
1656 * Create the specified event onto the UST tracer for a UST session.
1658 * Should be called with session mutex held.
1661 int create_ust_event(struct ust_app
*app
, struct ust_app_session
*ua_sess
,
1662 struct ust_app_channel
*ua_chan
, struct ust_app_event
*ua_event
)
1666 health_code_update();
1668 /* Create UST event on tracer */
1669 pthread_mutex_lock(&app
->sock_lock
);
1670 ret
= ustctl_create_event(app
->sock
, &ua_event
->attr
, ua_chan
->obj
,
1672 pthread_mutex_unlock(&app
->sock_lock
);
1674 if (ret
!= -EPIPE
&& ret
!= -LTTNG_UST_ERR_EXITING
) {
1675 ERR("Error ustctl create event %s for app pid: %d with ret %d",
1676 ua_event
->attr
.name
, app
->pid
, ret
);
1679 * This is normal behavior, an application can die during the
1680 * creation process. Don't report an error so the execution can
1681 * continue normally.
1684 DBG3("UST app create event failed. Application is dead.");
1689 ua_event
->handle
= ua_event
->obj
->handle
;
1691 DBG2("UST app event %s created successfully for pid:%d",
1692 ua_event
->attr
.name
, app
->pid
);
1694 health_code_update();
1696 /* Set filter if one is present. */
1697 if (ua_event
->filter
) {
1698 ret
= set_ust_event_filter(ua_event
, app
);
1704 /* Set exclusions for the event */
1705 if (ua_event
->exclusion
) {
1706 ret
= set_ust_event_exclusion(ua_event
, app
);
1712 /* If event not enabled, disable it on the tracer */
1713 if (ua_event
->enabled
) {
1715 * We now need to explicitly enable the event, since it
1716 * is now disabled at creation.
1718 ret
= enable_ust_event(app
, ua_sess
, ua_event
);
1721 * If we hit an EPERM, something is wrong with our enable call. If
1722 * we get an EEXIST, there is a problem on the tracer side since we
1726 case -LTTNG_UST_ERR_PERM
:
1727 /* Code flow problem */
1729 case -LTTNG_UST_ERR_EXIST
:
1730 /* It's OK for our use case. */
1741 health_code_update();
1746 * Copy data between an UST app event and a LTT event.
1748 static void shadow_copy_event(struct ust_app_event
*ua_event
,
1749 struct ltt_ust_event
*uevent
)
1751 size_t exclusion_alloc_size
;
1753 strncpy(ua_event
->name
, uevent
->attr
.name
, sizeof(ua_event
->name
));
1754 ua_event
->name
[sizeof(ua_event
->name
) - 1] = '\0';
1756 ua_event
->enabled
= uevent
->enabled
;
1758 /* Copy event attributes */
1759 memcpy(&ua_event
->attr
, &uevent
->attr
, sizeof(ua_event
->attr
));
1761 /* Copy filter bytecode */
1762 if (uevent
->filter
) {
1763 ua_event
->filter
= copy_filter_bytecode(uevent
->filter
);
1764 /* Filter might be NULL here in case of ENONEM. */
1767 /* Copy exclusion data */
1768 if (uevent
->exclusion
) {
1769 exclusion_alloc_size
= sizeof(struct lttng_event_exclusion
) +
1770 LTTNG_UST_SYM_NAME_LEN
* uevent
->exclusion
->count
;
1771 ua_event
->exclusion
= zmalloc(exclusion_alloc_size
);
1772 if (ua_event
->exclusion
== NULL
) {
1775 memcpy(ua_event
->exclusion
, uevent
->exclusion
,
1776 exclusion_alloc_size
);
1782 * Copy data between an UST app channel and a LTT channel.
1784 static void shadow_copy_channel(struct ust_app_channel
*ua_chan
,
1785 struct ltt_ust_channel
*uchan
)
1787 struct lttng_ht_iter iter
;
1788 struct ltt_ust_event
*uevent
;
1789 struct ltt_ust_context
*uctx
;
1790 struct ust_app_event
*ua_event
;
1792 DBG2("UST app shadow copy of channel %s started", ua_chan
->name
);
1794 strncpy(ua_chan
->name
, uchan
->name
, sizeof(ua_chan
->name
));
1795 ua_chan
->name
[sizeof(ua_chan
->name
) - 1] = '\0';
1797 ua_chan
->tracefile_size
= uchan
->tracefile_size
;
1798 ua_chan
->tracefile_count
= uchan
->tracefile_count
;
1800 /* Copy event attributes since the layout is different. */
1801 ua_chan
->attr
.subbuf_size
= uchan
->attr
.subbuf_size
;
1802 ua_chan
->attr
.num_subbuf
= uchan
->attr
.num_subbuf
;
1803 ua_chan
->attr
.overwrite
= uchan
->attr
.overwrite
;
1804 ua_chan
->attr
.switch_timer_interval
= uchan
->attr
.switch_timer_interval
;
1805 ua_chan
->attr
.read_timer_interval
= uchan
->attr
.read_timer_interval
;
1806 ua_chan
->monitor_timer_interval
= uchan
->monitor_timer_interval
;
1807 ua_chan
->attr
.output
= uchan
->attr
.output
;
1808 ua_chan
->attr
.blocking_timeout
= uchan
->attr
.u
.s
.blocking_timeout
;
1811 * Note that the attribute channel type is not set since the channel on the
1812 * tracing registry side does not have this information.
1815 ua_chan
->enabled
= uchan
->enabled
;
1816 ua_chan
->tracing_channel_id
= uchan
->id
;
1818 cds_list_for_each_entry(uctx
, &uchan
->ctx_list
, list
) {
1819 struct ust_app_ctx
*ua_ctx
= alloc_ust_app_ctx(&uctx
->ctx
);
1821 if (ua_ctx
== NULL
) {
1824 lttng_ht_node_init_ulong(&ua_ctx
->node
,
1825 (unsigned long) ua_ctx
->ctx
.ctx
);
1826 lttng_ht_add_ulong(ua_chan
->ctx
, &ua_ctx
->node
);
1827 cds_list_add_tail(&ua_ctx
->list
, &ua_chan
->ctx_list
);
1830 /* Copy all events from ltt ust channel to ust app channel */
1831 cds_lfht_for_each_entry(uchan
->events
->ht
, &iter
.iter
, uevent
, node
.node
) {
1832 ua_event
= find_ust_app_event(ua_chan
->events
, uevent
->attr
.name
,
1833 uevent
->filter
, uevent
->attr
.loglevel
, uevent
->exclusion
);
1834 if (ua_event
== NULL
) {
1835 DBG2("UST event %s not found on shadow copy channel",
1837 ua_event
= alloc_ust_app_event(uevent
->attr
.name
, &uevent
->attr
);
1838 if (ua_event
== NULL
) {
1841 shadow_copy_event(ua_event
, uevent
);
1842 add_unique_ust_app_event(ua_chan
, ua_event
);
1846 DBG3("UST app shadow copy of channel %s done", ua_chan
->name
);
1850 * Copy data between a UST app session and a regular LTT session.
1852 static void shadow_copy_session(struct ust_app_session
*ua_sess
,
1853 struct ltt_ust_session
*usess
, struct ust_app
*app
)
1855 struct lttng_ht_node_str
*ua_chan_node
;
1856 struct lttng_ht_iter iter
;
1857 struct ltt_ust_channel
*uchan
;
1858 struct ust_app_channel
*ua_chan
;
1860 struct tm
*timeinfo
;
1863 char tmp_shm_path
[PATH_MAX
];
1865 /* Get date and time for unique app path */
1867 timeinfo
= localtime(&rawtime
);
1868 strftime(datetime
, sizeof(datetime
), "%Y%m%d-%H%M%S", timeinfo
);
1870 DBG2("Shadow copy of session handle %d", ua_sess
->handle
);
1872 ua_sess
->tracing_id
= usess
->id
;
1873 ua_sess
->id
= get_next_session_id();
1874 ua_sess
->uid
= app
->uid
;
1875 ua_sess
->gid
= app
->gid
;
1876 ua_sess
->euid
= usess
->uid
;
1877 ua_sess
->egid
= usess
->gid
;
1878 ua_sess
->buffer_type
= usess
->buffer_type
;
1879 ua_sess
->bits_per_long
= app
->bits_per_long
;
1881 /* There is only one consumer object per session possible. */
1882 consumer_output_get(usess
->consumer
);
1883 ua_sess
->consumer
= usess
->consumer
;
1885 ua_sess
->output_traces
= usess
->output_traces
;
1886 ua_sess
->live_timer_interval
= usess
->live_timer_interval
;
1887 copy_channel_attr_to_ustctl(&ua_sess
->metadata_attr
,
1888 &usess
->metadata_attr
);
1890 switch (ua_sess
->buffer_type
) {
1891 case LTTNG_BUFFER_PER_PID
:
1892 ret
= snprintf(ua_sess
->path
, sizeof(ua_sess
->path
),
1893 DEFAULT_UST_TRACE_PID_PATH
"/%s-%d-%s", app
->name
, app
->pid
,
1896 case LTTNG_BUFFER_PER_UID
:
1897 ret
= snprintf(ua_sess
->path
, sizeof(ua_sess
->path
),
1898 DEFAULT_UST_TRACE_UID_PATH
, ua_sess
->uid
, app
->bits_per_long
);
1905 PERROR("asprintf UST shadow copy session");
1910 strncpy(ua_sess
->root_shm_path
, usess
->root_shm_path
,
1911 sizeof(ua_sess
->root_shm_path
));
1912 ua_sess
->root_shm_path
[sizeof(ua_sess
->root_shm_path
) - 1] = '\0';
1913 strncpy(ua_sess
->shm_path
, usess
->shm_path
,
1914 sizeof(ua_sess
->shm_path
));
1915 ua_sess
->shm_path
[sizeof(ua_sess
->shm_path
) - 1] = '\0';
1916 if (ua_sess
->shm_path
[0]) {
1917 switch (ua_sess
->buffer_type
) {
1918 case LTTNG_BUFFER_PER_PID
:
1919 ret
= snprintf(tmp_shm_path
, sizeof(tmp_shm_path
),
1920 DEFAULT_UST_TRACE_PID_PATH
"/%s-%d-%s",
1921 app
->name
, app
->pid
, datetime
);
1923 case LTTNG_BUFFER_PER_UID
:
1924 ret
= snprintf(tmp_shm_path
, sizeof(tmp_shm_path
),
1925 DEFAULT_UST_TRACE_UID_PATH
,
1926 app
->uid
, app
->bits_per_long
);
1933 PERROR("sprintf UST shadow copy session");
1937 strncat(ua_sess
->shm_path
, tmp_shm_path
,
1938 sizeof(ua_sess
->shm_path
) - strlen(ua_sess
->shm_path
) - 1);
1939 ua_sess
->shm_path
[sizeof(ua_sess
->shm_path
) - 1] = '\0';
1942 /* Iterate over all channels in global domain. */
1943 cds_lfht_for_each_entry(usess
->domain_global
.channels
->ht
, &iter
.iter
,
1945 struct lttng_ht_iter uiter
;
1947 lttng_ht_lookup(ua_sess
->channels
, (void *)uchan
->name
, &uiter
);
1948 ua_chan_node
= lttng_ht_iter_get_node_str(&uiter
);
1949 if (ua_chan_node
!= NULL
) {
1950 /* Session exist. Contiuing. */
1954 DBG2("Channel %s not found on shadow session copy, creating it",
1956 ua_chan
= alloc_ust_app_channel(uchan
->name
, ua_sess
,
1958 if (ua_chan
== NULL
) {
1959 /* malloc failed FIXME: Might want to do handle ENOMEM .. */
1962 shadow_copy_channel(ua_chan
, uchan
);
1964 * The concept of metadata channel does not exist on the tracing
1965 * registry side of the session daemon so this can only be a per CPU
1966 * channel and not metadata.
1968 ua_chan
->attr
.type
= LTTNG_UST_CHAN_PER_CPU
;
1970 lttng_ht_add_unique_str(ua_sess
->channels
, &ua_chan
->node
);
1975 consumer_output_put(ua_sess
->consumer
);
1979 * Lookup sesison wrapper.
1982 void __lookup_session_by_app(struct ltt_ust_session
*usess
,
1983 struct ust_app
*app
, struct lttng_ht_iter
*iter
)
1985 /* Get right UST app session from app */
1986 lttng_ht_lookup(app
->sessions
, &usess
->id
, iter
);
1990 * Return ust app session from the app session hashtable using the UST session
1993 static struct ust_app_session
*lookup_session_by_app(
1994 struct ltt_ust_session
*usess
, struct ust_app
*app
)
1996 struct lttng_ht_iter iter
;
1997 struct lttng_ht_node_u64
*node
;
1999 __lookup_session_by_app(usess
, app
, &iter
);
2000 node
= lttng_ht_iter_get_node_u64(&iter
);
2005 return caa_container_of(node
, struct ust_app_session
, node
);
2012 * Setup buffer registry per PID for the given session and application. If none
2013 * is found, a new one is created, added to the global registry and
2014 * initialized. If regp is valid, it's set with the newly created object.
2016 * Return 0 on success or else a negative value.
2018 static int setup_buffer_reg_pid(struct ust_app_session
*ua_sess
,
2019 struct ust_app
*app
, struct buffer_reg_pid
**regp
)
2022 struct buffer_reg_pid
*reg_pid
;
2029 reg_pid
= buffer_reg_pid_find(ua_sess
->id
);
2032 * This is the create channel path meaning that if there is NO
2033 * registry available, we have to create one for this session.
2035 ret
= buffer_reg_pid_create(ua_sess
->id
, ®_pid
,
2036 ua_sess
->root_shm_path
, ua_sess
->shm_path
);
2044 /* Initialize registry. */
2045 ret
= ust_registry_session_init(®_pid
->registry
->reg
.ust
, app
,
2046 app
->bits_per_long
, app
->uint8_t_alignment
,
2047 app
->uint16_t_alignment
, app
->uint32_t_alignment
,
2048 app
->uint64_t_alignment
, app
->long_alignment
,
2049 app
->byte_order
, app
->version
.major
,
2050 app
->version
.minor
, reg_pid
->root_shm_path
,
2052 ua_sess
->euid
, ua_sess
->egid
);
2055 * reg_pid->registry->reg.ust is NULL upon error, so we need to
2056 * destroy the buffer registry, because it is always expected
2057 * that if the buffer registry can be found, its ust registry is
2060 buffer_reg_pid_destroy(reg_pid
);
2064 buffer_reg_pid_add(reg_pid
);
2066 DBG3("UST app buffer registry per PID created successfully");
2078 * Setup buffer registry per UID for the given session and application. If none
2079 * is found, a new one is created, added to the global registry and
2080 * initialized. If regp is valid, it's set with the newly created object.
2082 * Return 0 on success or else a negative value.
2084 static int setup_buffer_reg_uid(struct ltt_ust_session
*usess
,
2085 struct ust_app_session
*ua_sess
,
2086 struct ust_app
*app
, struct buffer_reg_uid
**regp
)
2089 struct buffer_reg_uid
*reg_uid
;
2096 reg_uid
= buffer_reg_uid_find(usess
->id
, app
->bits_per_long
, app
->uid
);
2099 * This is the create channel path meaning that if there is NO
2100 * registry available, we have to create one for this session.
2102 ret
= buffer_reg_uid_create(usess
->id
, app
->bits_per_long
, app
->uid
,
2103 LTTNG_DOMAIN_UST
, ®_uid
,
2104 ua_sess
->root_shm_path
, ua_sess
->shm_path
);
2112 /* Initialize registry. */
2113 ret
= ust_registry_session_init(®_uid
->registry
->reg
.ust
, NULL
,
2114 app
->bits_per_long
, app
->uint8_t_alignment
,
2115 app
->uint16_t_alignment
, app
->uint32_t_alignment
,
2116 app
->uint64_t_alignment
, app
->long_alignment
,
2117 app
->byte_order
, app
->version
.major
,
2118 app
->version
.minor
, reg_uid
->root_shm_path
,
2119 reg_uid
->shm_path
, usess
->uid
, usess
->gid
);
2122 * reg_uid->registry->reg.ust is NULL upon error, so we need to
2123 * destroy the buffer registry, because it is always expected
2124 * that if the buffer registry can be found, its ust registry is
2127 buffer_reg_uid_destroy(reg_uid
, NULL
);
2130 /* Add node to teardown list of the session. */
2131 cds_list_add(®_uid
->lnode
, &usess
->buffer_reg_uid_list
);
2133 buffer_reg_uid_add(reg_uid
);
2135 DBG3("UST app buffer registry per UID created successfully");
2146 * Create a session on the tracer side for the given app.
2148 * On success, ua_sess_ptr is populated with the session pointer or else left
2149 * untouched. If the session was created, is_created is set to 1. On error,
2150 * it's left untouched. Note that ua_sess_ptr is mandatory but is_created can
2153 * Returns 0 on success or else a negative code which is either -ENOMEM or
2154 * -ENOTCONN which is the default code if the ustctl_create_session fails.
2156 static int create_ust_app_session(struct ltt_ust_session
*usess
,
2157 struct ust_app
*app
, struct ust_app_session
**ua_sess_ptr
,
2160 int ret
, created
= 0;
2161 struct ust_app_session
*ua_sess
;
2165 assert(ua_sess_ptr
);
2167 health_code_update();
2169 ua_sess
= lookup_session_by_app(usess
, app
);
2170 if (ua_sess
== NULL
) {
2171 DBG2("UST app pid: %d session id %" PRIu64
" not found, creating it",
2172 app
->pid
, usess
->id
);
2173 ua_sess
= alloc_ust_app_session(app
);
2174 if (ua_sess
== NULL
) {
2175 /* Only malloc can failed so something is really wrong */
2179 shadow_copy_session(ua_sess
, usess
, app
);
2183 switch (usess
->buffer_type
) {
2184 case LTTNG_BUFFER_PER_PID
:
2185 /* Init local registry. */
2186 ret
= setup_buffer_reg_pid(ua_sess
, app
, NULL
);
2188 delete_ust_app_session(-1, ua_sess
, app
);
2192 case LTTNG_BUFFER_PER_UID
:
2193 /* Look for a global registry. If none exists, create one. */
2194 ret
= setup_buffer_reg_uid(usess
, ua_sess
, app
, NULL
);
2196 delete_ust_app_session(-1, ua_sess
, app
);
2206 health_code_update();
2208 if (ua_sess
->handle
== -1) {
2209 pthread_mutex_lock(&app
->sock_lock
);
2210 ret
= ustctl_create_session(app
->sock
);
2211 pthread_mutex_unlock(&app
->sock_lock
);
2213 if (ret
!= -EPIPE
&& ret
!= -LTTNG_UST_ERR_EXITING
) {
2214 ERR("Creating session for app pid %d with ret %d",
2217 DBG("UST app creating session failed. Application is dead");
2219 * This is normal behavior, an application can die during the
2220 * creation process. Don't report an error so the execution can
2221 * continue normally. This will get flagged ENOTCONN and the
2222 * caller will handle it.
2226 delete_ust_app_session(-1, ua_sess
, app
);
2227 if (ret
!= -ENOMEM
) {
2229 * Tracer is probably gone or got an internal error so let's
2230 * behave like it will soon unregister or not usable.
2237 ua_sess
->handle
= ret
;
2239 /* Add ust app session to app's HT */
2240 lttng_ht_node_init_u64(&ua_sess
->node
,
2241 ua_sess
->tracing_id
);
2242 lttng_ht_add_unique_u64(app
->sessions
, &ua_sess
->node
);
2243 lttng_ht_node_init_ulong(&ua_sess
->ust_objd_node
, ua_sess
->handle
);
2244 lttng_ht_add_unique_ulong(app
->ust_sessions_objd
,
2245 &ua_sess
->ust_objd_node
);
2247 DBG2("UST app session created successfully with handle %d", ret
);
2250 *ua_sess_ptr
= ua_sess
;
2252 *is_created
= created
;
2255 /* Everything went well. */
2259 health_code_update();
2264 * Match function for a hash table lookup of ust_app_ctx.
2266 * It matches an ust app context based on the context type and, in the case
2267 * of perf counters, their name.
2269 static int ht_match_ust_app_ctx(struct cds_lfht_node
*node
, const void *_key
)
2271 struct ust_app_ctx
*ctx
;
2272 const struct lttng_ust_context_attr
*key
;
2277 ctx
= caa_container_of(node
, struct ust_app_ctx
, node
.node
);
2281 if (ctx
->ctx
.ctx
!= key
->ctx
) {
2286 case LTTNG_UST_CONTEXT_PERF_THREAD_COUNTER
:
2287 if (strncmp(key
->u
.perf_counter
.name
,
2288 ctx
->ctx
.u
.perf_counter
.name
,
2289 sizeof(key
->u
.perf_counter
.name
))) {
2293 case LTTNG_UST_CONTEXT_APP_CONTEXT
:
2294 if (strcmp(key
->u
.app_ctx
.provider_name
,
2295 ctx
->ctx
.u
.app_ctx
.provider_name
) ||
2296 strcmp(key
->u
.app_ctx
.ctx_name
,
2297 ctx
->ctx
.u
.app_ctx
.ctx_name
)) {
2313 * Lookup for an ust app context from an lttng_ust_context.
2315 * Must be called while holding RCU read side lock.
2316 * Return an ust_app_ctx object or NULL on error.
2319 struct ust_app_ctx
*find_ust_app_context(struct lttng_ht
*ht
,
2320 struct lttng_ust_context_attr
*uctx
)
2322 struct lttng_ht_iter iter
;
2323 struct lttng_ht_node_ulong
*node
;
2324 struct ust_app_ctx
*app_ctx
= NULL
;
2329 /* Lookup using the lttng_ust_context_type and a custom match fct. */
2330 cds_lfht_lookup(ht
->ht
, ht
->hash_fct((void *) uctx
->ctx
, lttng_ht_seed
),
2331 ht_match_ust_app_ctx
, uctx
, &iter
.iter
);
2332 node
= lttng_ht_iter_get_node_ulong(&iter
);
2337 app_ctx
= caa_container_of(node
, struct ust_app_ctx
, node
);
2344 * Create a context for the channel on the tracer.
2346 * Called with UST app session lock held and a RCU read side lock.
2349 int create_ust_app_channel_context(struct ust_app_session
*ua_sess
,
2350 struct ust_app_channel
*ua_chan
,
2351 struct lttng_ust_context_attr
*uctx
,
2352 struct ust_app
*app
)
2355 struct ust_app_ctx
*ua_ctx
;
2357 DBG2("UST app adding context to channel %s", ua_chan
->name
);
2359 ua_ctx
= find_ust_app_context(ua_chan
->ctx
, uctx
);
2365 ua_ctx
= alloc_ust_app_ctx(uctx
);
2366 if (ua_ctx
== NULL
) {
2372 lttng_ht_node_init_ulong(&ua_ctx
->node
, (unsigned long) ua_ctx
->ctx
.ctx
);
2373 lttng_ht_add_ulong(ua_chan
->ctx
, &ua_ctx
->node
);
2374 cds_list_add_tail(&ua_ctx
->list
, &ua_chan
->ctx_list
);
2376 ret
= create_ust_channel_context(ua_chan
, ua_ctx
, app
);
2386 * Enable on the tracer side a ust app event for the session and channel.
2388 * Called with UST app session lock held.
2391 int enable_ust_app_event(struct ust_app_session
*ua_sess
,
2392 struct ust_app_event
*ua_event
, struct ust_app
*app
)
2396 ret
= enable_ust_event(app
, ua_sess
, ua_event
);
2401 ua_event
->enabled
= 1;
2408 * Disable on the tracer side a ust app event for the session and channel.
2410 static int disable_ust_app_event(struct ust_app_session
*ua_sess
,
2411 struct ust_app_event
*ua_event
, struct ust_app
*app
)
2415 ret
= disable_ust_event(app
, ua_sess
, ua_event
);
2420 ua_event
->enabled
= 0;
2427 * Lookup ust app channel for session and disable it on the tracer side.
2430 int disable_ust_app_channel(struct ust_app_session
*ua_sess
,
2431 struct ust_app_channel
*ua_chan
, struct ust_app
*app
)
2435 ret
= disable_ust_channel(app
, ua_sess
, ua_chan
);
2440 ua_chan
->enabled
= 0;
2447 * Lookup ust app channel for session and enable it on the tracer side. This
2448 * MUST be called with a RCU read side lock acquired.
2450 static int enable_ust_app_channel(struct ust_app_session
*ua_sess
,
2451 struct ltt_ust_channel
*uchan
, struct ust_app
*app
)
2454 struct lttng_ht_iter iter
;
2455 struct lttng_ht_node_str
*ua_chan_node
;
2456 struct ust_app_channel
*ua_chan
;
2458 lttng_ht_lookup(ua_sess
->channels
, (void *)uchan
->name
, &iter
);
2459 ua_chan_node
= lttng_ht_iter_get_node_str(&iter
);
2460 if (ua_chan_node
== NULL
) {
2461 DBG2("Unable to find channel %s in ust session id %" PRIu64
,
2462 uchan
->name
, ua_sess
->tracing_id
);
2466 ua_chan
= caa_container_of(ua_chan_node
, struct ust_app_channel
, node
);
2468 ret
= enable_ust_channel(app
, ua_sess
, ua_chan
);
2478 * Ask the consumer to create a channel and get it if successful.
2480 * Called with UST app session lock held.
2482 * Return 0 on success or else a negative value.
2484 static int do_consumer_create_channel(struct ltt_ust_session
*usess
,
2485 struct ust_app_session
*ua_sess
, struct ust_app_channel
*ua_chan
,
2486 int bitness
, struct ust_registry_session
*registry
)
2489 unsigned int nb_fd
= 0;
2490 struct consumer_socket
*socket
;
2498 health_code_update();
2500 /* Get the right consumer socket for the application. */
2501 socket
= consumer_find_socket_by_bitness(bitness
, usess
->consumer
);
2507 health_code_update();
2509 /* Need one fd for the channel. */
2510 ret
= lttng_fd_get(LTTNG_FD_APPS
, 1);
2512 ERR("Exhausted number of available FD upon create channel");
2517 * Ask consumer to create channel. The consumer will return the number of
2518 * stream we have to expect.
2520 ret
= ust_consumer_ask_channel(ua_sess
, ua_chan
, usess
->consumer
, socket
,
2527 * Compute the number of fd needed before receiving them. It must be 2 per
2528 * stream (2 being the default value here).
2530 nb_fd
= DEFAULT_UST_STREAM_FD_NUM
* ua_chan
->expected_stream_count
;
2532 /* Reserve the amount of file descriptor we need. */
2533 ret
= lttng_fd_get(LTTNG_FD_APPS
, nb_fd
);
2535 ERR("Exhausted number of available FD upon create channel");
2536 goto error_fd_get_stream
;
2539 health_code_update();
2542 * Now get the channel from the consumer. This call wil populate the stream
2543 * list of that channel and set the ust objects.
2545 if (usess
->consumer
->enabled
) {
2546 ret
= ust_consumer_get_channel(socket
, ua_chan
);
2556 lttng_fd_put(LTTNG_FD_APPS
, nb_fd
);
2557 error_fd_get_stream
:
2559 * Initiate a destroy channel on the consumer since we had an error
2560 * handling it on our side. The return value is of no importance since we
2561 * already have a ret value set by the previous error that we need to
2564 (void) ust_consumer_destroy_channel(socket
, ua_chan
);
2566 lttng_fd_put(LTTNG_FD_APPS
, 1);
2568 health_code_update();
2574 * Duplicate the ust data object of the ust app stream and save it in the
2575 * buffer registry stream.
2577 * Return 0 on success or else a negative value.
2579 static int duplicate_stream_object(struct buffer_reg_stream
*reg_stream
,
2580 struct ust_app_stream
*stream
)
2587 /* Reserve the amount of file descriptor we need. */
2588 ret
= lttng_fd_get(LTTNG_FD_APPS
, 2);
2590 ERR("Exhausted number of available FD upon duplicate stream");
2594 /* Duplicate object for stream once the original is in the registry. */
2595 ret
= ustctl_duplicate_ust_object_data(&stream
->obj
,
2596 reg_stream
->obj
.ust
);
2598 ERR("Duplicate stream obj from %p to %p failed with ret %d",
2599 reg_stream
->obj
.ust
, stream
->obj
, ret
);
2600 lttng_fd_put(LTTNG_FD_APPS
, 2);
2603 stream
->handle
= stream
->obj
->handle
;
2610 * Duplicate the ust data object of the ust app. channel and save it in the
2611 * buffer registry channel.
2613 * Return 0 on success or else a negative value.
2615 static int duplicate_channel_object(struct buffer_reg_channel
*reg_chan
,
2616 struct ust_app_channel
*ua_chan
)
2623 /* Need two fds for the channel. */
2624 ret
= lttng_fd_get(LTTNG_FD_APPS
, 1);
2626 ERR("Exhausted number of available FD upon duplicate channel");
2630 /* Duplicate object for stream once the original is in the registry. */
2631 ret
= ustctl_duplicate_ust_object_data(&ua_chan
->obj
, reg_chan
->obj
.ust
);
2633 ERR("Duplicate channel obj from %p to %p failed with ret: %d",
2634 reg_chan
->obj
.ust
, ua_chan
->obj
, ret
);
2637 ua_chan
->handle
= ua_chan
->obj
->handle
;
2642 lttng_fd_put(LTTNG_FD_APPS
, 1);
2648 * For a given channel buffer registry, setup all streams of the given ust
2649 * application channel.
2651 * Return 0 on success or else a negative value.
2653 static int setup_buffer_reg_streams(struct buffer_reg_channel
*reg_chan
,
2654 struct ust_app_channel
*ua_chan
,
2655 struct ust_app
*app
)
2658 struct ust_app_stream
*stream
, *stmp
;
2663 DBG2("UST app setup buffer registry stream");
2665 /* Send all streams to application. */
2666 cds_list_for_each_entry_safe(stream
, stmp
, &ua_chan
->streams
.head
, list
) {
2667 struct buffer_reg_stream
*reg_stream
;
2669 ret
= buffer_reg_stream_create(®_stream
);
2675 * Keep original pointer and nullify it in the stream so the delete
2676 * stream call does not release the object.
2678 reg_stream
->obj
.ust
= stream
->obj
;
2680 buffer_reg_stream_add(reg_stream
, reg_chan
);
2682 /* We don't need the streams anymore. */
2683 cds_list_del(&stream
->list
);
2684 delete_ust_app_stream(-1, stream
, app
);
2692 * Create a buffer registry channel for the given session registry and
2693 * application channel object. If regp pointer is valid, it's set with the
2694 * created object. Important, the created object is NOT added to the session
2695 * registry hash table.
2697 * Return 0 on success else a negative value.
2699 static int create_buffer_reg_channel(struct buffer_reg_session
*reg_sess
,
2700 struct ust_app_channel
*ua_chan
, struct buffer_reg_channel
**regp
)
2703 struct buffer_reg_channel
*reg_chan
= NULL
;
2708 DBG2("UST app creating buffer registry channel for %s", ua_chan
->name
);
2710 /* Create buffer registry channel. */
2711 ret
= buffer_reg_channel_create(ua_chan
->tracing_channel_id
, ®_chan
);
2716 reg_chan
->consumer_key
= ua_chan
->key
;
2717 reg_chan
->subbuf_size
= ua_chan
->attr
.subbuf_size
;
2718 reg_chan
->num_subbuf
= ua_chan
->attr
.num_subbuf
;
2720 /* Create and add a channel registry to session. */
2721 ret
= ust_registry_channel_add(reg_sess
->reg
.ust
,
2722 ua_chan
->tracing_channel_id
);
2726 buffer_reg_channel_add(reg_sess
, reg_chan
);
2735 /* Safe because the registry channel object was not added to any HT. */
2736 buffer_reg_channel_destroy(reg_chan
, LTTNG_DOMAIN_UST
);
2742 * Setup buffer registry channel for the given session registry and application
2743 * channel object. If regp pointer is valid, it's set with the created object.
2745 * Return 0 on success else a negative value.
2747 static int setup_buffer_reg_channel(struct buffer_reg_session
*reg_sess
,
2748 struct ust_app_channel
*ua_chan
, struct buffer_reg_channel
*reg_chan
,
2749 struct ust_app
*app
)
2756 assert(ua_chan
->obj
);
2758 DBG2("UST app setup buffer registry channel for %s", ua_chan
->name
);
2760 /* Setup all streams for the registry. */
2761 ret
= setup_buffer_reg_streams(reg_chan
, ua_chan
, app
);
2766 reg_chan
->obj
.ust
= ua_chan
->obj
;
2767 ua_chan
->obj
= NULL
;
2772 buffer_reg_channel_remove(reg_sess
, reg_chan
);
2773 buffer_reg_channel_destroy(reg_chan
, LTTNG_DOMAIN_UST
);
2778 * Send buffer registry channel to the application.
2780 * Return 0 on success else a negative value.
2782 static int send_channel_uid_to_ust(struct buffer_reg_channel
*reg_chan
,
2783 struct ust_app
*app
, struct ust_app_session
*ua_sess
,
2784 struct ust_app_channel
*ua_chan
)
2787 struct buffer_reg_stream
*reg_stream
;
2794 DBG("UST app sending buffer registry channel to ust sock %d", app
->sock
);
2796 ret
= duplicate_channel_object(reg_chan
, ua_chan
);
2801 /* Send channel to the application. */
2802 ret
= ust_consumer_send_channel_to_ust(app
, ua_sess
, ua_chan
);
2803 if (ret
== -EPIPE
|| ret
== -LTTNG_UST_ERR_EXITING
) {
2804 ret
= -ENOTCONN
; /* Caused by app exiting. */
2806 } else if (ret
< 0) {
2810 health_code_update();
2812 /* Send all streams to application. */
2813 pthread_mutex_lock(®_chan
->stream_list_lock
);
2814 cds_list_for_each_entry(reg_stream
, ®_chan
->streams
, lnode
) {
2815 struct ust_app_stream stream
;
2817 ret
= duplicate_stream_object(reg_stream
, &stream
);
2819 goto error_stream_unlock
;
2822 ret
= ust_consumer_send_stream_to_ust(app
, ua_chan
, &stream
);
2824 (void) release_ust_app_stream(-1, &stream
, app
);
2825 if (ret
== -EPIPE
|| ret
== -LTTNG_UST_ERR_EXITING
) {
2826 ret
= -ENOTCONN
; /* Caused by app exiting. */
2828 goto error_stream_unlock
;
2832 * The return value is not important here. This function will output an
2835 (void) release_ust_app_stream(-1, &stream
, app
);
2837 ua_chan
->is_sent
= 1;
2839 error_stream_unlock
:
2840 pthread_mutex_unlock(®_chan
->stream_list_lock
);
2846 * Create and send to the application the created buffers with per UID buffers.
2848 * This MUST be called with a RCU read side lock acquired.
2850 * Return 0 on success else a negative value.
2852 static int create_channel_per_uid(struct ust_app
*app
,
2853 struct ltt_ust_session
*usess
, struct ust_app_session
*ua_sess
,
2854 struct ust_app_channel
*ua_chan
)
2857 struct buffer_reg_uid
*reg_uid
;
2858 struct buffer_reg_channel
*reg_chan
;
2859 bool created
= false;
2866 DBG("UST app creating channel %s with per UID buffers", ua_chan
->name
);
2868 reg_uid
= buffer_reg_uid_find(usess
->id
, app
->bits_per_long
, app
->uid
);
2870 * The session creation handles the creation of this global registry
2871 * object. If none can be find, there is a code flow problem or a
2876 reg_chan
= buffer_reg_channel_find(ua_chan
->tracing_channel_id
,
2879 /* Create the buffer registry channel object. */
2880 ret
= create_buffer_reg_channel(reg_uid
->registry
, ua_chan
, ®_chan
);
2882 ERR("Error creating the UST channel \"%s\" registry instance",
2889 * Create the buffers on the consumer side. This call populates the
2890 * ust app channel object with all streams and data object.
2892 ret
= do_consumer_create_channel(usess
, ua_sess
, ua_chan
,
2893 app
->bits_per_long
, reg_uid
->registry
->reg
.ust
);
2895 ERR("Error creating UST channel \"%s\" on the consumer daemon",
2899 * Let's remove the previously created buffer registry channel so
2900 * it's not visible anymore in the session registry.
2902 ust_registry_channel_del_free(reg_uid
->registry
->reg
.ust
,
2903 ua_chan
->tracing_channel_id
, false);
2904 buffer_reg_channel_remove(reg_uid
->registry
, reg_chan
);
2905 buffer_reg_channel_destroy(reg_chan
, LTTNG_DOMAIN_UST
);
2910 * Setup the streams and add it to the session registry.
2912 ret
= setup_buffer_reg_channel(reg_uid
->registry
,
2913 ua_chan
, reg_chan
, app
);
2915 ERR("Error setting up UST channel \"%s\"",
2923 enum lttng_error_code cmd_ret
;
2924 struct ltt_session
*session
;
2925 uint64_t chan_reg_key
;
2926 struct ust_registry_channel
*chan_reg
;
2929 chan_reg_key
= ua_chan
->tracing_channel_id
;
2931 pthread_mutex_lock(®_uid
->registry
->reg
.ust
->lock
);
2932 chan_reg
= ust_registry_channel_find(reg_uid
->registry
->reg
.ust
,
2935 chan_reg
->consumer_key
= ua_chan
->key
;
2937 pthread_mutex_unlock(®_uid
->registry
->reg
.ust
->lock
);
2939 session
= session_find_by_id(ua_sess
->tracing_id
);
2942 cmd_ret
= notification_thread_command_add_channel(
2943 notification_thread_handle
, session
->name
,
2944 ua_sess
->euid
, ua_sess
->egid
,
2948 ua_chan
->attr
.subbuf_size
* ua_chan
->attr
.num_subbuf
);
2950 if (cmd_ret
!= LTTNG_OK
) {
2951 ret
= - (int) cmd_ret
;
2952 ERR("Failed to add channel to notification thread");
2957 /* Send buffers to the application. */
2958 ret
= send_channel_uid_to_ust(reg_chan
, app
, ua_sess
, ua_chan
);
2960 if (ret
!= -ENOTCONN
) {
2961 ERR("Error sending channel to application");
2971 * Create and send to the application the created buffers with per PID buffers.
2973 * Called with UST app session lock held.
2975 * Return 0 on success else a negative value.
2977 static int create_channel_per_pid(struct ust_app
*app
,
2978 struct ltt_ust_session
*usess
, struct ust_app_session
*ua_sess
,
2979 struct ust_app_channel
*ua_chan
)
2982 struct ust_registry_session
*registry
;
2983 enum lttng_error_code cmd_ret
;
2984 struct ltt_session
*session
;
2985 uint64_t chan_reg_key
;
2986 struct ust_registry_channel
*chan_reg
;
2993 DBG("UST app creating channel %s with per PID buffers", ua_chan
->name
);
2997 registry
= get_session_registry(ua_sess
);
2998 /* The UST app session lock is held, registry shall not be null. */
3001 /* Create and add a new channel registry to session. */
3002 ret
= ust_registry_channel_add(registry
, ua_chan
->key
);
3004 ERR("Error creating the UST channel \"%s\" registry instance",
3009 /* Create and get channel on the consumer side. */
3010 ret
= do_consumer_create_channel(usess
, ua_sess
, ua_chan
,
3011 app
->bits_per_long
, registry
);
3013 ERR("Error creating UST channel \"%s\" on the consumer daemon",
3018 ret
= send_channel_pid_to_ust(app
, ua_sess
, ua_chan
);
3020 if (ret
!= -ENOTCONN
) {
3021 ERR("Error sending channel to application");
3026 session
= session_find_by_id(ua_sess
->tracing_id
);
3029 chan_reg_key
= ua_chan
->key
;
3030 pthread_mutex_lock(®istry
->lock
);
3031 chan_reg
= ust_registry_channel_find(registry
, chan_reg_key
);
3033 chan_reg
->consumer_key
= ua_chan
->key
;
3034 pthread_mutex_unlock(®istry
->lock
);
3036 cmd_ret
= notification_thread_command_add_channel(
3037 notification_thread_handle
, session
->name
,
3038 ua_sess
->euid
, ua_sess
->egid
,
3042 ua_chan
->attr
.subbuf_size
* ua_chan
->attr
.num_subbuf
);
3043 if (cmd_ret
!= LTTNG_OK
) {
3044 ret
= - (int) cmd_ret
;
3045 ERR("Failed to add channel to notification thread");
3055 * From an already allocated ust app channel, create the channel buffers if
3056 * need and send it to the application. This MUST be called with a RCU read
3057 * side lock acquired.
3059 * Called with UST app session lock held.
3061 * Return 0 on success or else a negative value. Returns -ENOTCONN if
3062 * the application exited concurrently.
3064 static int do_create_channel(struct ust_app
*app
,
3065 struct ltt_ust_session
*usess
, struct ust_app_session
*ua_sess
,
3066 struct ust_app_channel
*ua_chan
)
3075 /* Handle buffer type before sending the channel to the application. */
3076 switch (usess
->buffer_type
) {
3077 case LTTNG_BUFFER_PER_UID
:
3079 ret
= create_channel_per_uid(app
, usess
, ua_sess
, ua_chan
);
3085 case LTTNG_BUFFER_PER_PID
:
3087 ret
= create_channel_per_pid(app
, usess
, ua_sess
, ua_chan
);
3099 /* Initialize ust objd object using the received handle and add it. */
3100 lttng_ht_node_init_ulong(&ua_chan
->ust_objd_node
, ua_chan
->handle
);
3101 lttng_ht_add_unique_ulong(app
->ust_objd
, &ua_chan
->ust_objd_node
);
3103 /* If channel is not enabled, disable it on the tracer */
3104 if (!ua_chan
->enabled
) {
3105 ret
= disable_ust_channel(app
, ua_sess
, ua_chan
);
3116 * Create UST app channel and create it on the tracer. Set ua_chanp of the
3117 * newly created channel if not NULL.
3119 * Called with UST app session lock and RCU read-side lock held.
3121 * Return 0 on success or else a negative value. Returns -ENOTCONN if
3122 * the application exited concurrently.
3124 static int create_ust_app_channel(struct ust_app_session
*ua_sess
,
3125 struct ltt_ust_channel
*uchan
, struct ust_app
*app
,
3126 enum lttng_ust_chan_type type
, struct ltt_ust_session
*usess
,
3127 struct ust_app_channel
**ua_chanp
)
3130 struct lttng_ht_iter iter
;
3131 struct lttng_ht_node_str
*ua_chan_node
;
3132 struct ust_app_channel
*ua_chan
;
3134 /* Lookup channel in the ust app session */
3135 lttng_ht_lookup(ua_sess
->channels
, (void *)uchan
->name
, &iter
);
3136 ua_chan_node
= lttng_ht_iter_get_node_str(&iter
);
3137 if (ua_chan_node
!= NULL
) {
3138 ua_chan
= caa_container_of(ua_chan_node
, struct ust_app_channel
, node
);
3142 ua_chan
= alloc_ust_app_channel(uchan
->name
, ua_sess
, &uchan
->attr
);
3143 if (ua_chan
== NULL
) {
3144 /* Only malloc can fail here */
3148 shadow_copy_channel(ua_chan
, uchan
);
3150 /* Set channel type. */
3151 ua_chan
->attr
.type
= type
;
3153 ret
= do_create_channel(app
, usess
, ua_sess
, ua_chan
);
3158 DBG2("UST app create channel %s for PID %d completed", ua_chan
->name
,
3161 /* Only add the channel if successful on the tracer side. */
3162 lttng_ht_add_unique_str(ua_sess
->channels
, &ua_chan
->node
);
3165 *ua_chanp
= ua_chan
;
3168 /* Everything went well. */
3172 delete_ust_app_channel(ua_chan
->is_sent
? app
->sock
: -1, ua_chan
, app
);
3178 * Create UST app event and create it on the tracer side.
3180 * Called with ust app session mutex held.
3183 int create_ust_app_event(struct ust_app_session
*ua_sess
,
3184 struct ust_app_channel
*ua_chan
, struct ltt_ust_event
*uevent
,
3185 struct ust_app
*app
)
3188 struct ust_app_event
*ua_event
;
3190 /* Get event node */
3191 ua_event
= find_ust_app_event(ua_chan
->events
, uevent
->attr
.name
,
3192 uevent
->filter
, uevent
->attr
.loglevel
, uevent
->exclusion
);
3193 if (ua_event
!= NULL
) {
3198 /* Does not exist so create one */
3199 ua_event
= alloc_ust_app_event(uevent
->attr
.name
, &uevent
->attr
);
3200 if (ua_event
== NULL
) {
3201 /* Only malloc can failed so something is really wrong */
3205 shadow_copy_event(ua_event
, uevent
);
3207 /* Create it on the tracer side */
3208 ret
= create_ust_event(app
, ua_sess
, ua_chan
, ua_event
);
3210 /* Not found previously means that it does not exist on the tracer */
3211 assert(ret
!= -LTTNG_UST_ERR_EXIST
);
3215 add_unique_ust_app_event(ua_chan
, ua_event
);
3217 DBG2("UST app create event %s for PID %d completed", ua_event
->name
,
3224 /* Valid. Calling here is already in a read side lock */
3225 delete_ust_app_event(-1, ua_event
, app
);
3230 * Create UST metadata and open it on the tracer side.
3232 * Called with UST app session lock held and RCU read side lock.
3234 static int create_ust_app_metadata(struct ust_app_session
*ua_sess
,
3235 struct ust_app
*app
, struct consumer_output
*consumer
)
3238 struct ust_app_channel
*metadata
;
3239 struct consumer_socket
*socket
;
3240 struct ust_registry_session
*registry
;
3246 registry
= get_session_registry(ua_sess
);
3247 /* The UST app session is held registry shall not be null. */
3250 pthread_mutex_lock(®istry
->lock
);
3252 /* Metadata already exists for this registry or it was closed previously */
3253 if (registry
->metadata_key
|| registry
->metadata_closed
) {
3258 /* Allocate UST metadata */
3259 metadata
= alloc_ust_app_channel(DEFAULT_METADATA_NAME
, ua_sess
, NULL
);
3261 /* malloc() failed */
3266 memcpy(&metadata
->attr
, &ua_sess
->metadata_attr
, sizeof(metadata
->attr
));
3268 /* Need one fd for the channel. */
3269 ret
= lttng_fd_get(LTTNG_FD_APPS
, 1);
3271 ERR("Exhausted number of available FD upon create metadata");
3275 /* Get the right consumer socket for the application. */
3276 socket
= consumer_find_socket_by_bitness(app
->bits_per_long
, consumer
);
3279 goto error_consumer
;
3283 * Keep metadata key so we can identify it on the consumer side. Assign it
3284 * to the registry *before* we ask the consumer so we avoid the race of the
3285 * consumer requesting the metadata and the ask_channel call on our side
3286 * did not returned yet.
3288 registry
->metadata_key
= metadata
->key
;
3291 * Ask the metadata channel creation to the consumer. The metadata object
3292 * will be created by the consumer and kept their. However, the stream is
3293 * never added or monitored until we do a first push metadata to the
3296 ret
= ust_consumer_ask_channel(ua_sess
, metadata
, consumer
, socket
,
3299 /* Nullify the metadata key so we don't try to close it later on. */
3300 registry
->metadata_key
= 0;
3301 goto error_consumer
;
3305 * The setup command will make the metadata stream be sent to the relayd,
3306 * if applicable, and the thread managing the metadatas. This is important
3307 * because after this point, if an error occurs, the only way the stream
3308 * can be deleted is to be monitored in the consumer.
3310 ret
= consumer_setup_metadata(socket
, metadata
->key
);
3312 /* Nullify the metadata key so we don't try to close it later on. */
3313 registry
->metadata_key
= 0;
3314 goto error_consumer
;
3317 DBG2("UST metadata with key %" PRIu64
" created for app pid %d",
3318 metadata
->key
, app
->pid
);
3321 lttng_fd_put(LTTNG_FD_APPS
, 1);
3322 delete_ust_app_channel(-1, metadata
, app
);
3324 pthread_mutex_unlock(®istry
->lock
);
3329 * Return ust app pointer or NULL if not found. RCU read side lock MUST be
3330 * acquired before calling this function.
3332 struct ust_app
*ust_app_find_by_pid(pid_t pid
)
3334 struct ust_app
*app
= NULL
;
3335 struct lttng_ht_node_ulong
*node
;
3336 struct lttng_ht_iter iter
;
3338 lttng_ht_lookup(ust_app_ht
, (void *)((unsigned long) pid
), &iter
);
3339 node
= lttng_ht_iter_get_node_ulong(&iter
);
3341 DBG2("UST app no found with pid %d", pid
);
3345 DBG2("Found UST app by pid %d", pid
);
3347 app
= caa_container_of(node
, struct ust_app
, pid_n
);
3354 * Allocate and init an UST app object using the registration information and
3355 * the command socket. This is called when the command socket connects to the
3358 * The object is returned on success or else NULL.
3360 struct ust_app
*ust_app_create(struct ust_register_msg
*msg
, int sock
)
3362 struct ust_app
*lta
= NULL
;
3367 DBG3("UST app creating application for socket %d", sock
);
3369 if ((msg
->bits_per_long
== 64 &&
3370 (uatomic_read(&ust_consumerd64_fd
) == -EINVAL
))
3371 || (msg
->bits_per_long
== 32 &&
3372 (uatomic_read(&ust_consumerd32_fd
) == -EINVAL
))) {
3373 ERR("Registration failed: application \"%s\" (pid: %d) has "
3374 "%d-bit long, but no consumerd for this size is available.\n",
3375 msg
->name
, msg
->pid
, msg
->bits_per_long
);
3379 lta
= zmalloc(sizeof(struct ust_app
));
3385 lta
->ppid
= msg
->ppid
;
3386 lta
->uid
= msg
->uid
;
3387 lta
->gid
= msg
->gid
;
3389 lta
->bits_per_long
= msg
->bits_per_long
;
3390 lta
->uint8_t_alignment
= msg
->uint8_t_alignment
;
3391 lta
->uint16_t_alignment
= msg
->uint16_t_alignment
;
3392 lta
->uint32_t_alignment
= msg
->uint32_t_alignment
;
3393 lta
->uint64_t_alignment
= msg
->uint64_t_alignment
;
3394 lta
->long_alignment
= msg
->long_alignment
;
3395 lta
->byte_order
= msg
->byte_order
;
3397 lta
->v_major
= msg
->major
;
3398 lta
->v_minor
= msg
->minor
;
3399 lta
->sessions
= lttng_ht_new(0, LTTNG_HT_TYPE_U64
);
3400 lta
->ust_objd
= lttng_ht_new(0, LTTNG_HT_TYPE_ULONG
);
3401 lta
->ust_sessions_objd
= lttng_ht_new(0, LTTNG_HT_TYPE_ULONG
);
3402 lta
->notify_sock
= -1;
3404 /* Copy name and make sure it's NULL terminated. */
3405 strncpy(lta
->name
, msg
->name
, sizeof(lta
->name
));
3406 lta
->name
[UST_APP_PROCNAME_LEN
] = '\0';
3409 * Before this can be called, when receiving the registration information,
3410 * the application compatibility is checked. So, at this point, the
3411 * application can work with this session daemon.
3413 lta
->compatible
= 1;
3415 lta
->pid
= msg
->pid
;
3416 lttng_ht_node_init_ulong(<a
->pid_n
, (unsigned long) lta
->pid
);
3418 pthread_mutex_init(<a
->sock_lock
, NULL
);
3419 lttng_ht_node_init_ulong(<a
->sock_n
, (unsigned long) lta
->sock
);
3421 CDS_INIT_LIST_HEAD(<a
->teardown_head
);
3427 * For a given application object, add it to every hash table.
3429 void ust_app_add(struct ust_app
*app
)
3432 assert(app
->notify_sock
>= 0);
3437 * On a re-registration, we want to kick out the previous registration of
3440 lttng_ht_add_replace_ulong(ust_app_ht
, &app
->pid_n
);
3443 * The socket _should_ be unique until _we_ call close. So, a add_unique
3444 * for the ust_app_ht_by_sock is used which asserts fail if the entry was
3445 * already in the table.
3447 lttng_ht_add_unique_ulong(ust_app_ht_by_sock
, &app
->sock_n
);
3449 /* Add application to the notify socket hash table. */
3450 lttng_ht_node_init_ulong(&app
->notify_sock_n
, app
->notify_sock
);
3451 lttng_ht_add_unique_ulong(ust_app_ht_by_notify_sock
, &app
->notify_sock_n
);
3453 DBG("App registered with pid:%d ppid:%d uid:%d gid:%d sock:%d name:%s "
3454 "notify_sock:%d (version %d.%d)", app
->pid
, app
->ppid
, app
->uid
,
3455 app
->gid
, app
->sock
, app
->name
, app
->notify_sock
, app
->v_major
,
3462 * Set the application version into the object.
3464 * Return 0 on success else a negative value either an errno code or a
3465 * LTTng-UST error code.
3467 int ust_app_version(struct ust_app
*app
)
3473 pthread_mutex_lock(&app
->sock_lock
);
3474 ret
= ustctl_tracer_version(app
->sock
, &app
->version
);
3475 pthread_mutex_unlock(&app
->sock_lock
);
3477 if (ret
!= -LTTNG_UST_ERR_EXITING
&& ret
!= -EPIPE
) {
3478 ERR("UST app %d version failed with ret %d", app
->sock
, ret
);
3480 DBG3("UST app %d version failed. Application is dead", app
->sock
);
3488 * Unregister app by removing it from the global traceable app list and freeing
3491 * The socket is already closed at this point so no close to sock.
3493 void ust_app_unregister(int sock
)
3495 struct ust_app
*lta
;
3496 struct lttng_ht_node_ulong
*node
;
3497 struct lttng_ht_iter ust_app_sock_iter
;
3498 struct lttng_ht_iter iter
;
3499 struct ust_app_session
*ua_sess
;
3504 /* Get the node reference for a call_rcu */
3505 lttng_ht_lookup(ust_app_ht_by_sock
, (void *)((unsigned long) sock
), &ust_app_sock_iter
);
3506 node
= lttng_ht_iter_get_node_ulong(&ust_app_sock_iter
);
3509 lta
= caa_container_of(node
, struct ust_app
, sock_n
);
3510 DBG("PID %d unregistering with sock %d", lta
->pid
, sock
);
3513 * For per-PID buffers, perform "push metadata" and flush all
3514 * application streams before removing app from hash tables,
3515 * ensuring proper behavior of data_pending check.
3516 * Remove sessions so they are not visible during deletion.
3518 cds_lfht_for_each_entry(lta
->sessions
->ht
, &iter
.iter
, ua_sess
,
3520 struct ust_registry_session
*registry
;
3522 ret
= lttng_ht_del(lta
->sessions
, &iter
);
3524 /* The session was already removed so scheduled for teardown. */
3528 if (ua_sess
->buffer_type
== LTTNG_BUFFER_PER_PID
) {
3529 (void) ust_app_flush_app_session(lta
, ua_sess
);
3533 * Add session to list for teardown. This is safe since at this point we
3534 * are the only one using this list.
3536 pthread_mutex_lock(&ua_sess
->lock
);
3538 if (ua_sess
->deleted
) {
3539 pthread_mutex_unlock(&ua_sess
->lock
);
3544 * Normally, this is done in the delete session process which is
3545 * executed in the call rcu below. However, upon registration we can't
3546 * afford to wait for the grace period before pushing data or else the
3547 * data pending feature can race between the unregistration and stop
3548 * command where the data pending command is sent *before* the grace
3551 * The close metadata below nullifies the metadata pointer in the
3552 * session so the delete session will NOT push/close a second time.
3554 registry
= get_session_registry(ua_sess
);
3556 /* Push metadata for application before freeing the application. */
3557 (void) push_metadata(registry
, ua_sess
->consumer
);
3560 * Don't ask to close metadata for global per UID buffers. Close
3561 * metadata only on destroy trace session in this case. Also, the
3562 * previous push metadata could have flag the metadata registry to
3563 * close so don't send a close command if closed.
3565 if (ua_sess
->buffer_type
!= LTTNG_BUFFER_PER_UID
) {
3566 /* And ask to close it for this session registry. */
3567 (void) close_metadata(registry
, ua_sess
->consumer
);
3570 cds_list_add(&ua_sess
->teardown_node
, <a
->teardown_head
);
3572 pthread_mutex_unlock(&ua_sess
->lock
);
3575 /* Remove application from PID hash table */
3576 ret
= lttng_ht_del(ust_app_ht_by_sock
, &ust_app_sock_iter
);
3580 * Remove application from notify hash table. The thread handling the
3581 * notify socket could have deleted the node so ignore on error because
3582 * either way it's valid. The close of that socket is handled by the other
3585 iter
.iter
.node
= <a
->notify_sock_n
.node
;
3586 (void) lttng_ht_del(ust_app_ht_by_notify_sock
, &iter
);
3589 * Ignore return value since the node might have been removed before by an
3590 * add replace during app registration because the PID can be reassigned by
3593 iter
.iter
.node
= <a
->pid_n
.node
;
3594 ret
= lttng_ht_del(ust_app_ht
, &iter
);
3596 DBG3("Unregister app by PID %d failed. This can happen on pid reuse",
3601 call_rcu(<a
->pid_n
.head
, delete_ust_app_rcu
);
3608 * Fill events array with all events name of all registered apps.
3610 int ust_app_list_events(struct lttng_event
**events
)
3613 size_t nbmem
, count
= 0;
3614 struct lttng_ht_iter iter
;
3615 struct ust_app
*app
;
3616 struct lttng_event
*tmp_event
;
3618 nbmem
= UST_APP_EVENT_LIST_SIZE
;
3619 tmp_event
= zmalloc(nbmem
* sizeof(struct lttng_event
));
3620 if (tmp_event
== NULL
) {
3621 PERROR("zmalloc ust app events");
3628 cds_lfht_for_each_entry(ust_app_ht
->ht
, &iter
.iter
, app
, pid_n
.node
) {
3629 struct lttng_ust_tracepoint_iter uiter
;
3631 health_code_update();
3633 if (!app
->compatible
) {
3635 * TODO: In time, we should notice the caller of this error by
3636 * telling him that this is a version error.
3640 pthread_mutex_lock(&app
->sock_lock
);
3641 handle
= ustctl_tracepoint_list(app
->sock
);
3643 if (handle
!= -EPIPE
&& handle
!= -LTTNG_UST_ERR_EXITING
) {
3644 ERR("UST app list events getting handle failed for app pid %d",
3647 pthread_mutex_unlock(&app
->sock_lock
);
3651 while ((ret
= ustctl_tracepoint_list_get(app
->sock
, handle
,
3652 &uiter
)) != -LTTNG_UST_ERR_NOENT
) {
3653 /* Handle ustctl error. */
3657 if (ret
!= -LTTNG_UST_ERR_EXITING
&& ret
!= -EPIPE
) {
3658 ERR("UST app tp list get failed for app %d with ret %d",
3661 DBG3("UST app tp list get failed. Application is dead");
3663 * This is normal behavior, an application can die during the
3664 * creation process. Don't report an error so the execution can
3665 * continue normally. Continue normal execution.
3670 release_ret
= ustctl_release_handle(app
->sock
, handle
);
3671 if (release_ret
< 0 &&
3672 release_ret
!= -LTTNG_UST_ERR_EXITING
&&
3673 release_ret
!= -EPIPE
) {
3674 ERR("Error releasing app handle for app %d with ret %d", app
->sock
, release_ret
);
3676 pthread_mutex_unlock(&app
->sock_lock
);
3680 health_code_update();
3681 if (count
>= nbmem
) {
3682 /* In case the realloc fails, we free the memory */
3683 struct lttng_event
*new_tmp_event
;
3686 new_nbmem
= nbmem
<< 1;
3687 DBG2("Reallocating event list from %zu to %zu entries",
3689 new_tmp_event
= realloc(tmp_event
,
3690 new_nbmem
* sizeof(struct lttng_event
));
3691 if (new_tmp_event
== NULL
) {
3694 PERROR("realloc ust app events");
3697 release_ret
= ustctl_release_handle(app
->sock
, handle
);
3698 if (release_ret
< 0 &&
3699 release_ret
!= -LTTNG_UST_ERR_EXITING
&&
3700 release_ret
!= -EPIPE
) {
3701 ERR("Error releasing app handle for app %d with ret %d", app
->sock
, release_ret
);
3703 pthread_mutex_unlock(&app
->sock_lock
);
3706 /* Zero the new memory */
3707 memset(new_tmp_event
+ nbmem
, 0,
3708 (new_nbmem
- nbmem
) * sizeof(struct lttng_event
));
3710 tmp_event
= new_tmp_event
;
3712 memcpy(tmp_event
[count
].name
, uiter
.name
, LTTNG_UST_SYM_NAME_LEN
);
3713 tmp_event
[count
].loglevel
= uiter
.loglevel
;
3714 tmp_event
[count
].type
= (enum lttng_event_type
) LTTNG_UST_TRACEPOINT
;
3715 tmp_event
[count
].pid
= app
->pid
;
3716 tmp_event
[count
].enabled
= -1;
3719 ret
= ustctl_release_handle(app
->sock
, handle
);
3720 pthread_mutex_unlock(&app
->sock_lock
);
3721 if (ret
< 0 && ret
!= -LTTNG_UST_ERR_EXITING
&& ret
!= -EPIPE
) {
3722 ERR("Error releasing app handle for app %d with ret %d", app
->sock
, ret
);
3727 *events
= tmp_event
;
3729 DBG2("UST app list events done (%zu events)", count
);
3734 health_code_update();
3739 * Fill events array with all events name of all registered apps.
3741 int ust_app_list_event_fields(struct lttng_event_field
**fields
)
3744 size_t nbmem
, count
= 0;
3745 struct lttng_ht_iter iter
;
3746 struct ust_app
*app
;
3747 struct lttng_event_field
*tmp_event
;
3749 nbmem
= UST_APP_EVENT_LIST_SIZE
;
3750 tmp_event
= zmalloc(nbmem
* sizeof(struct lttng_event_field
));
3751 if (tmp_event
== NULL
) {
3752 PERROR("zmalloc ust app event fields");
3759 cds_lfht_for_each_entry(ust_app_ht
->ht
, &iter
.iter
, app
, pid_n
.node
) {
3760 struct lttng_ust_field_iter uiter
;
3762 health_code_update();
3764 if (!app
->compatible
) {
3766 * TODO: In time, we should notice the caller of this error by
3767 * telling him that this is a version error.
3771 pthread_mutex_lock(&app
->sock_lock
);
3772 handle
= ustctl_tracepoint_field_list(app
->sock
);
3774 if (handle
!= -EPIPE
&& handle
!= -LTTNG_UST_ERR_EXITING
) {
3775 ERR("UST app list field getting handle failed for app pid %d",
3778 pthread_mutex_unlock(&app
->sock_lock
);
3782 while ((ret
= ustctl_tracepoint_field_list_get(app
->sock
, handle
,
3783 &uiter
)) != -LTTNG_UST_ERR_NOENT
) {
3784 /* Handle ustctl error. */
3788 if (ret
!= -LTTNG_UST_ERR_EXITING
&& ret
!= -EPIPE
) {
3789 ERR("UST app tp list field failed for app %d with ret %d",
3792 DBG3("UST app tp list field failed. Application is dead");
3794 * This is normal behavior, an application can die during the
3795 * creation process. Don't report an error so the execution can
3796 * continue normally. Reset list and count for next app.
3801 release_ret
= ustctl_release_handle(app
->sock
, handle
);
3802 pthread_mutex_unlock(&app
->sock_lock
);
3803 if (release_ret
< 0 &&
3804 release_ret
!= -LTTNG_UST_ERR_EXITING
&&
3805 release_ret
!= -EPIPE
) {
3806 ERR("Error releasing app handle for app %d with ret %d", app
->sock
, release_ret
);
3811 health_code_update();
3812 if (count
>= nbmem
) {
3813 /* In case the realloc fails, we free the memory */
3814 struct lttng_event_field
*new_tmp_event
;
3817 new_nbmem
= nbmem
<< 1;
3818 DBG2("Reallocating event field list from %zu to %zu entries",
3820 new_tmp_event
= realloc(tmp_event
,
3821 new_nbmem
* sizeof(struct lttng_event_field
));
3822 if (new_tmp_event
== NULL
) {
3825 PERROR("realloc ust app event fields");
3828 release_ret
= ustctl_release_handle(app
->sock
, handle
);
3829 pthread_mutex_unlock(&app
->sock_lock
);
3831 release_ret
!= -LTTNG_UST_ERR_EXITING
&&
3832 release_ret
!= -EPIPE
) {
3833 ERR("Error releasing app handle for app %d with ret %d", app
->sock
, release_ret
);
3837 /* Zero the new memory */
3838 memset(new_tmp_event
+ nbmem
, 0,
3839 (new_nbmem
- nbmem
) * sizeof(struct lttng_event_field
));
3841 tmp_event
= new_tmp_event
;
3844 memcpy(tmp_event
[count
].field_name
, uiter
.field_name
, LTTNG_UST_SYM_NAME_LEN
);
3845 /* Mapping between these enums matches 1 to 1. */
3846 tmp_event
[count
].type
= (enum lttng_event_field_type
) uiter
.type
;
3847 tmp_event
[count
].nowrite
= uiter
.nowrite
;
3849 memcpy(tmp_event
[count
].event
.name
, uiter
.event_name
, LTTNG_UST_SYM_NAME_LEN
);
3850 tmp_event
[count
].event
.loglevel
= uiter
.loglevel
;
3851 tmp_event
[count
].event
.type
= LTTNG_EVENT_TRACEPOINT
;
3852 tmp_event
[count
].event
.pid
= app
->pid
;
3853 tmp_event
[count
].event
.enabled
= -1;
3856 ret
= ustctl_release_handle(app
->sock
, handle
);
3857 pthread_mutex_unlock(&app
->sock_lock
);
3859 ret
!= -LTTNG_UST_ERR_EXITING
&&
3861 ERR("Error releasing app handle for app %d with ret %d", app
->sock
, ret
);
3866 *fields
= tmp_event
;
3868 DBG2("UST app list event fields done (%zu events)", count
);
3873 health_code_update();
3878 * Free and clean all traceable apps of the global list.
3880 * Should _NOT_ be called with RCU read-side lock held.
3882 void ust_app_clean_list(void)
3885 struct ust_app
*app
;
3886 struct lttng_ht_iter iter
;
3888 DBG2("UST app cleaning registered apps hash table");
3893 cds_lfht_for_each_entry(ust_app_ht
->ht
, &iter
.iter
, app
, pid_n
.node
) {
3894 ret
= lttng_ht_del(ust_app_ht
, &iter
);
3896 call_rcu(&app
->pid_n
.head
, delete_ust_app_rcu
);
3900 /* Cleanup socket hash table */
3901 if (ust_app_ht_by_sock
) {
3902 cds_lfht_for_each_entry(ust_app_ht_by_sock
->ht
, &iter
.iter
, app
,
3904 ret
= lttng_ht_del(ust_app_ht_by_sock
, &iter
);
3909 /* Cleanup notify socket hash table */
3910 if (ust_app_ht_by_notify_sock
) {
3911 cds_lfht_for_each_entry(ust_app_ht_by_notify_sock
->ht
, &iter
.iter
, app
,
3912 notify_sock_n
.node
) {
3913 ret
= lttng_ht_del(ust_app_ht_by_notify_sock
, &iter
);
3919 /* Destroy is done only when the ht is empty */
3921 ht_cleanup_push(ust_app_ht
);
3923 if (ust_app_ht_by_sock
) {
3924 ht_cleanup_push(ust_app_ht_by_sock
);
3926 if (ust_app_ht_by_notify_sock
) {
3927 ht_cleanup_push(ust_app_ht_by_notify_sock
);
3932 * Init UST app hash table.
3934 int ust_app_ht_alloc(void)
3936 ust_app_ht
= lttng_ht_new(0, LTTNG_HT_TYPE_ULONG
);
3940 ust_app_ht_by_sock
= lttng_ht_new(0, LTTNG_HT_TYPE_ULONG
);
3941 if (!ust_app_ht_by_sock
) {
3944 ust_app_ht_by_notify_sock
= lttng_ht_new(0, LTTNG_HT_TYPE_ULONG
);
3945 if (!ust_app_ht_by_notify_sock
) {
3952 * For a specific UST session, disable the channel for all registered apps.
3954 int ust_app_disable_channel_glb(struct ltt_ust_session
*usess
,
3955 struct ltt_ust_channel
*uchan
)
3958 struct lttng_ht_iter iter
;
3959 struct lttng_ht_node_str
*ua_chan_node
;
3960 struct ust_app
*app
;
3961 struct ust_app_session
*ua_sess
;
3962 struct ust_app_channel
*ua_chan
;
3964 if (usess
== NULL
|| uchan
== NULL
) {
3965 ERR("Disabling UST global channel with NULL values");
3970 DBG2("UST app disabling channel %s from global domain for session id %" PRIu64
,
3971 uchan
->name
, usess
->id
);
3975 /* For every registered applications */
3976 cds_lfht_for_each_entry(ust_app_ht
->ht
, &iter
.iter
, app
, pid_n
.node
) {
3977 struct lttng_ht_iter uiter
;
3978 if (!app
->compatible
) {
3980 * TODO: In time, we should notice the caller of this error by
3981 * telling him that this is a version error.
3985 ua_sess
= lookup_session_by_app(usess
, app
);
3986 if (ua_sess
== NULL
) {
3991 lttng_ht_lookup(ua_sess
->channels
, (void *)uchan
->name
, &uiter
);
3992 ua_chan_node
= lttng_ht_iter_get_node_str(&uiter
);
3993 /* If the session if found for the app, the channel must be there */
3994 assert(ua_chan_node
);
3996 ua_chan
= caa_container_of(ua_chan_node
, struct ust_app_channel
, node
);
3997 /* The channel must not be already disabled */
3998 assert(ua_chan
->enabled
== 1);
4000 /* Disable channel onto application */
4001 ret
= disable_ust_app_channel(ua_sess
, ua_chan
, app
);
4003 /* XXX: We might want to report this error at some point... */
4015 * For a specific UST session, enable the channel for all registered apps.
4017 int ust_app_enable_channel_glb(struct ltt_ust_session
*usess
,
4018 struct ltt_ust_channel
*uchan
)
4021 struct lttng_ht_iter iter
;
4022 struct ust_app
*app
;
4023 struct ust_app_session
*ua_sess
;
4025 if (usess
== NULL
|| uchan
== NULL
) {
4026 ERR("Adding UST global channel to NULL values");
4031 DBG2("UST app enabling channel %s to global domain for session id %" PRIu64
,
4032 uchan
->name
, usess
->id
);
4036 /* For every registered applications */
4037 cds_lfht_for_each_entry(ust_app_ht
->ht
, &iter
.iter
, app
, pid_n
.node
) {
4038 if (!app
->compatible
) {
4040 * TODO: In time, we should notice the caller of this error by
4041 * telling him that this is a version error.
4045 ua_sess
= lookup_session_by_app(usess
, app
);
4046 if (ua_sess
== NULL
) {
4050 /* Enable channel onto application */
4051 ret
= enable_ust_app_channel(ua_sess
, uchan
, app
);
4053 /* XXX: We might want to report this error at some point... */
4065 * Disable an event in a channel and for a specific session.
4067 int ust_app_disable_event_glb(struct ltt_ust_session
*usess
,
4068 struct ltt_ust_channel
*uchan
, struct ltt_ust_event
*uevent
)
4071 struct lttng_ht_iter iter
, uiter
;
4072 struct lttng_ht_node_str
*ua_chan_node
;
4073 struct ust_app
*app
;
4074 struct ust_app_session
*ua_sess
;
4075 struct ust_app_channel
*ua_chan
;
4076 struct ust_app_event
*ua_event
;
4078 DBG("UST app disabling event %s for all apps in channel "
4079 "%s for session id %" PRIu64
,
4080 uevent
->attr
.name
, uchan
->name
, usess
->id
);
4084 /* For all registered applications */
4085 cds_lfht_for_each_entry(ust_app_ht
->ht
, &iter
.iter
, app
, pid_n
.node
) {
4086 if (!app
->compatible
) {
4088 * TODO: In time, we should notice the caller of this error by
4089 * telling him that this is a version error.
4093 ua_sess
= lookup_session_by_app(usess
, app
);
4094 if (ua_sess
== NULL
) {
4099 /* Lookup channel in the ust app session */
4100 lttng_ht_lookup(ua_sess
->channels
, (void *)uchan
->name
, &uiter
);
4101 ua_chan_node
= lttng_ht_iter_get_node_str(&uiter
);
4102 if (ua_chan_node
== NULL
) {
4103 DBG2("Channel %s not found in session id %" PRIu64
" for app pid %d."
4104 "Skipping", uchan
->name
, usess
->id
, app
->pid
);
4107 ua_chan
= caa_container_of(ua_chan_node
, struct ust_app_channel
, node
);
4109 ua_event
= find_ust_app_event(ua_chan
->events
, uevent
->attr
.name
,
4110 uevent
->filter
, uevent
->attr
.loglevel
,
4112 if (ua_event
== NULL
) {
4113 DBG2("Event %s not found in channel %s for app pid %d."
4114 "Skipping", uevent
->attr
.name
, uchan
->name
, app
->pid
);
4118 ret
= disable_ust_app_event(ua_sess
, ua_event
, app
);
4120 /* XXX: Report error someday... */
4131 * For a specific UST session, create the channel for all registered apps.
4133 int ust_app_create_channel_glb(struct ltt_ust_session
*usess
,
4134 struct ltt_ust_channel
*uchan
)
4136 int ret
= 0, created
;
4137 struct lttng_ht_iter iter
;
4138 struct ust_app
*app
;
4139 struct ust_app_session
*ua_sess
= NULL
;
4141 /* Very wrong code flow */
4145 DBG2("UST app adding channel %s to UST domain for session id %" PRIu64
,
4146 uchan
->name
, usess
->id
);
4150 /* For every registered applications */
4151 cds_lfht_for_each_entry(ust_app_ht
->ht
, &iter
.iter
, app
, pid_n
.node
) {
4152 if (!app
->compatible
) {
4154 * TODO: In time, we should notice the caller of this error by
4155 * telling him that this is a version error.
4159 if (!trace_ust_pid_tracker_lookup(usess
, app
->pid
)) {
4165 * Create session on the tracer side and add it to app session HT. Note
4166 * that if session exist, it will simply return a pointer to the ust
4169 ret
= create_ust_app_session(usess
, app
, &ua_sess
, &created
);
4174 * The application's socket is not valid. Either a bad socket
4175 * or a timeout on it. We can't inform the caller that for a
4176 * specific app, the session failed so lets continue here.
4178 ret
= 0; /* Not an error. */
4182 goto error_rcu_unlock
;
4187 pthread_mutex_lock(&ua_sess
->lock
);
4189 if (ua_sess
->deleted
) {
4190 pthread_mutex_unlock(&ua_sess
->lock
);
4194 if (!strncmp(uchan
->name
, DEFAULT_METADATA_NAME
,
4195 sizeof(uchan
->name
))) {
4196 copy_channel_attr_to_ustctl(&ua_sess
->metadata_attr
, &uchan
->attr
);
4199 /* Create channel onto application. We don't need the chan ref. */
4200 ret
= create_ust_app_channel(ua_sess
, uchan
, app
,
4201 LTTNG_UST_CHAN_PER_CPU
, usess
, NULL
);
4203 pthread_mutex_unlock(&ua_sess
->lock
);
4205 /* Cleanup the created session if it's the case. */
4207 destroy_app_session(app
, ua_sess
);
4212 * The application's socket is not valid. Either a bad socket
4213 * or a timeout on it. We can't inform the caller that for a
4214 * specific app, the session failed so lets continue here.
4216 ret
= 0; /* Not an error. */
4220 goto error_rcu_unlock
;
4231 * Enable event for a specific session and channel on the tracer.
4233 int ust_app_enable_event_glb(struct ltt_ust_session
*usess
,
4234 struct ltt_ust_channel
*uchan
, struct ltt_ust_event
*uevent
)
4237 struct lttng_ht_iter iter
, uiter
;
4238 struct lttng_ht_node_str
*ua_chan_node
;
4239 struct ust_app
*app
;
4240 struct ust_app_session
*ua_sess
;
4241 struct ust_app_channel
*ua_chan
;
4242 struct ust_app_event
*ua_event
;
4244 DBG("UST app enabling event %s for all apps for session id %" PRIu64
,
4245 uevent
->attr
.name
, usess
->id
);
4248 * NOTE: At this point, this function is called only if the session and
4249 * channel passed are already created for all apps. and enabled on the
4255 /* For all registered applications */
4256 cds_lfht_for_each_entry(ust_app_ht
->ht
, &iter
.iter
, app
, pid_n
.node
) {
4257 if (!app
->compatible
) {
4259 * TODO: In time, we should notice the caller of this error by
4260 * telling him that this is a version error.
4264 ua_sess
= lookup_session_by_app(usess
, app
);
4266 /* The application has problem or is probably dead. */
4270 pthread_mutex_lock(&ua_sess
->lock
);
4272 if (ua_sess
->deleted
) {
4273 pthread_mutex_unlock(&ua_sess
->lock
);
4277 /* Lookup channel in the ust app session */
4278 lttng_ht_lookup(ua_sess
->channels
, (void *)uchan
->name
, &uiter
);
4279 ua_chan_node
= lttng_ht_iter_get_node_str(&uiter
);
4281 * It is possible that the channel cannot be found is
4282 * the channel/event creation occurs concurrently with
4283 * an application exit.
4285 if (!ua_chan_node
) {
4286 pthread_mutex_unlock(&ua_sess
->lock
);
4290 ua_chan
= caa_container_of(ua_chan_node
, struct ust_app_channel
, node
);
4292 /* Get event node */
4293 ua_event
= find_ust_app_event(ua_chan
->events
, uevent
->attr
.name
,
4294 uevent
->filter
, uevent
->attr
.loglevel
, uevent
->exclusion
);
4295 if (ua_event
== NULL
) {
4296 DBG3("UST app enable event %s not found for app PID %d."
4297 "Skipping app", uevent
->attr
.name
, app
->pid
);
4301 ret
= enable_ust_app_event(ua_sess
, ua_event
, app
);
4303 pthread_mutex_unlock(&ua_sess
->lock
);
4307 pthread_mutex_unlock(&ua_sess
->lock
);
4316 * For a specific existing UST session and UST channel, creates the event for
4317 * all registered apps.
4319 int ust_app_create_event_glb(struct ltt_ust_session
*usess
,
4320 struct ltt_ust_channel
*uchan
, struct ltt_ust_event
*uevent
)
4323 struct lttng_ht_iter iter
, uiter
;
4324 struct lttng_ht_node_str
*ua_chan_node
;
4325 struct ust_app
*app
;
4326 struct ust_app_session
*ua_sess
;
4327 struct ust_app_channel
*ua_chan
;
4329 DBG("UST app creating event %s for all apps for session id %" PRIu64
,
4330 uevent
->attr
.name
, usess
->id
);
4334 /* For all registered applications */
4335 cds_lfht_for_each_entry(ust_app_ht
->ht
, &iter
.iter
, app
, pid_n
.node
) {
4336 if (!app
->compatible
) {
4338 * TODO: In time, we should notice the caller of this error by
4339 * telling him that this is a version error.
4343 ua_sess
= lookup_session_by_app(usess
, app
);
4345 /* The application has problem or is probably dead. */
4349 pthread_mutex_lock(&ua_sess
->lock
);
4351 if (ua_sess
->deleted
) {
4352 pthread_mutex_unlock(&ua_sess
->lock
);
4356 /* Lookup channel in the ust app session */
4357 lttng_ht_lookup(ua_sess
->channels
, (void *)uchan
->name
, &uiter
);
4358 ua_chan_node
= lttng_ht_iter_get_node_str(&uiter
);
4359 /* If the channel is not found, there is a code flow error */
4360 assert(ua_chan_node
);
4362 ua_chan
= caa_container_of(ua_chan_node
, struct ust_app_channel
, node
);
4364 ret
= create_ust_app_event(ua_sess
, ua_chan
, uevent
, app
);
4365 pthread_mutex_unlock(&ua_sess
->lock
);
4367 if (ret
!= -LTTNG_UST_ERR_EXIST
) {
4368 /* Possible value at this point: -ENOMEM. If so, we stop! */
4371 DBG2("UST app event %s already exist on app PID %d",
4372 uevent
->attr
.name
, app
->pid
);
4383 * Start tracing for a specific UST session and app.
4385 * Called with UST app session lock held.
4389 int ust_app_start_trace(struct ltt_ust_session
*usess
, struct ust_app
*app
)
4392 struct ust_app_session
*ua_sess
;
4394 DBG("Starting tracing for ust app pid %d", app
->pid
);
4398 if (!app
->compatible
) {
4402 ua_sess
= lookup_session_by_app(usess
, app
);
4403 if (ua_sess
== NULL
) {
4404 /* The session is in teardown process. Ignore and continue. */
4408 pthread_mutex_lock(&ua_sess
->lock
);
4410 if (ua_sess
->deleted
) {
4411 pthread_mutex_unlock(&ua_sess
->lock
);
4415 /* Upon restart, we skip the setup, already done */
4416 if (ua_sess
->started
) {
4420 /* Create directories if consumer is LOCAL and has a path defined. */
4421 if (usess
->consumer
->type
== CONSUMER_DST_LOCAL
&&
4422 strlen(usess
->consumer
->dst
.trace_path
) > 0) {
4423 ret
= run_as_mkdir_recursive(usess
->consumer
->dst
.trace_path
,
4424 S_IRWXU
| S_IRWXG
, ua_sess
->euid
, ua_sess
->egid
);
4426 if (errno
!= EEXIST
) {
4427 ERR("Trace directory creation error");
4434 * Create the metadata for the application. This returns gracefully if a
4435 * metadata was already set for the session.
4437 ret
= create_ust_app_metadata(ua_sess
, app
, usess
->consumer
);
4442 health_code_update();
4445 /* This start the UST tracing */
4446 pthread_mutex_lock(&app
->sock_lock
);
4447 ret
= ustctl_start_session(app
->sock
, ua_sess
->handle
);
4448 pthread_mutex_unlock(&app
->sock_lock
);
4450 if (ret
!= -EPIPE
&& ret
!= -LTTNG_UST_ERR_EXITING
) {
4451 ERR("Error starting tracing for app pid: %d (ret: %d)",
4454 DBG("UST app start session failed. Application is dead.");
4456 * This is normal behavior, an application can die during the
4457 * creation process. Don't report an error so the execution can
4458 * continue normally.
4460 pthread_mutex_unlock(&ua_sess
->lock
);
4466 /* Indicate that the session has been started once */
4467 ua_sess
->started
= 1;
4469 pthread_mutex_unlock(&ua_sess
->lock
);
4471 health_code_update();
4473 /* Quiescent wait after starting trace */
4474 pthread_mutex_lock(&app
->sock_lock
);
4475 ret
= ustctl_wait_quiescent(app
->sock
);
4476 pthread_mutex_unlock(&app
->sock_lock
);
4477 if (ret
< 0 && ret
!= -EPIPE
&& ret
!= -LTTNG_UST_ERR_EXITING
) {
4478 ERR("UST app wait quiescent failed for app pid %d ret %d",
4484 health_code_update();
4488 pthread_mutex_unlock(&ua_sess
->lock
);
4490 health_code_update();
4495 * Stop tracing for a specific UST session and app.
4498 int ust_app_stop_trace(struct ltt_ust_session
*usess
, struct ust_app
*app
)
4501 struct ust_app_session
*ua_sess
;
4502 struct ust_registry_session
*registry
;
4504 DBG("Stopping tracing for ust app pid %d", app
->pid
);
4508 if (!app
->compatible
) {
4509 goto end_no_session
;
4512 ua_sess
= lookup_session_by_app(usess
, app
);
4513 if (ua_sess
== NULL
) {
4514 goto end_no_session
;
4517 pthread_mutex_lock(&ua_sess
->lock
);
4519 if (ua_sess
->deleted
) {
4520 pthread_mutex_unlock(&ua_sess
->lock
);
4521 goto end_no_session
;
4525 * If started = 0, it means that stop trace has been called for a session
4526 * that was never started. It's possible since we can have a fail start
4527 * from either the application manager thread or the command thread. Simply
4528 * indicate that this is a stop error.
4530 if (!ua_sess
->started
) {
4531 goto error_rcu_unlock
;
4534 health_code_update();
4536 /* This inhibits UST tracing */
4537 pthread_mutex_lock(&app
->sock_lock
);
4538 ret
= ustctl_stop_session(app
->sock
, ua_sess
->handle
);
4539 pthread_mutex_unlock(&app
->sock_lock
);
4541 if (ret
!= -EPIPE
&& ret
!= -LTTNG_UST_ERR_EXITING
) {
4542 ERR("Error stopping tracing for app pid: %d (ret: %d)",
4545 DBG("UST app stop session failed. Application is dead.");
4547 * This is normal behavior, an application can die during the
4548 * creation process. Don't report an error so the execution can
4549 * continue normally.
4553 goto error_rcu_unlock
;
4556 health_code_update();
4558 /* Quiescent wait after stopping trace */
4559 pthread_mutex_lock(&app
->sock_lock
);
4560 ret
= ustctl_wait_quiescent(app
->sock
);
4561 pthread_mutex_unlock(&app
->sock_lock
);
4562 if (ret
< 0 && ret
!= -EPIPE
&& ret
!= -LTTNG_UST_ERR_EXITING
) {
4563 ERR("UST app wait quiescent failed for app pid %d ret %d",
4567 health_code_update();
4569 registry
= get_session_registry(ua_sess
);
4571 /* The UST app session is held registry shall not be null. */
4574 /* Push metadata for application before freeing the application. */
4575 (void) push_metadata(registry
, ua_sess
->consumer
);
4578 pthread_mutex_unlock(&ua_sess
->lock
);
4581 health_code_update();
4585 pthread_mutex_unlock(&ua_sess
->lock
);
4587 health_code_update();
4592 int ust_app_flush_app_session(struct ust_app
*app
,
4593 struct ust_app_session
*ua_sess
)
4595 int ret
, retval
= 0;
4596 struct lttng_ht_iter iter
;
4597 struct ust_app_channel
*ua_chan
;
4598 struct consumer_socket
*socket
;
4600 DBG("Flushing app session buffers for ust app pid %d", app
->pid
);
4604 if (!app
->compatible
) {
4605 goto end_not_compatible
;
4608 pthread_mutex_lock(&ua_sess
->lock
);
4610 if (ua_sess
->deleted
) {
4614 health_code_update();
4616 /* Flushing buffers */
4617 socket
= consumer_find_socket_by_bitness(app
->bits_per_long
,
4620 /* Flush buffers and push metadata. */
4621 switch (ua_sess
->buffer_type
) {
4622 case LTTNG_BUFFER_PER_PID
:
4623 cds_lfht_for_each_entry(ua_sess
->channels
->ht
, &iter
.iter
, ua_chan
,
4625 health_code_update();
4626 ret
= consumer_flush_channel(socket
, ua_chan
->key
);
4628 ERR("Error flushing consumer channel");
4634 case LTTNG_BUFFER_PER_UID
:
4640 health_code_update();
4643 pthread_mutex_unlock(&ua_sess
->lock
);
4647 health_code_update();
4652 * Flush buffers for all applications for a specific UST session.
4653 * Called with UST session lock held.
4656 int ust_app_flush_session(struct ltt_ust_session
*usess
)
4661 DBG("Flushing session buffers for all ust apps");
4665 /* Flush buffers and push metadata. */
4666 switch (usess
->buffer_type
) {
4667 case LTTNG_BUFFER_PER_UID
:
4669 struct buffer_reg_uid
*reg
;
4670 struct lttng_ht_iter iter
;
4672 /* Flush all per UID buffers associated to that session. */
4673 cds_list_for_each_entry(reg
, &usess
->buffer_reg_uid_list
, lnode
) {
4674 struct ust_registry_session
*ust_session_reg
;
4675 struct buffer_reg_channel
*reg_chan
;
4676 struct consumer_socket
*socket
;
4678 /* Get consumer socket to use to push the metadata.*/
4679 socket
= consumer_find_socket_by_bitness(reg
->bits_per_long
,
4682 /* Ignore request if no consumer is found for the session. */
4686 cds_lfht_for_each_entry(reg
->registry
->channels
->ht
, &iter
.iter
,
4687 reg_chan
, node
.node
) {
4689 * The following call will print error values so the return
4690 * code is of little importance because whatever happens, we
4691 * have to try them all.
4693 (void) consumer_flush_channel(socket
, reg_chan
->consumer_key
);
4696 ust_session_reg
= reg
->registry
->reg
.ust
;
4697 /* Push metadata. */
4698 (void) push_metadata(ust_session_reg
, usess
->consumer
);
4702 case LTTNG_BUFFER_PER_PID
:
4704 struct ust_app_session
*ua_sess
;
4705 struct lttng_ht_iter iter
;
4706 struct ust_app
*app
;
4708 cds_lfht_for_each_entry(ust_app_ht
->ht
, &iter
.iter
, app
, pid_n
.node
) {
4709 ua_sess
= lookup_session_by_app(usess
, app
);
4710 if (ua_sess
== NULL
) {
4713 (void) ust_app_flush_app_session(app
, ua_sess
);
4724 health_code_update();
4729 int ust_app_clear_quiescent_app_session(struct ust_app
*app
,
4730 struct ust_app_session
*ua_sess
)
4733 struct lttng_ht_iter iter
;
4734 struct ust_app_channel
*ua_chan
;
4735 struct consumer_socket
*socket
;
4737 DBG("Clearing stream quiescent state for ust app pid %d", app
->pid
);
4741 if (!app
->compatible
) {
4742 goto end_not_compatible
;
4745 pthread_mutex_lock(&ua_sess
->lock
);
4747 if (ua_sess
->deleted
) {
4751 health_code_update();
4753 socket
= consumer_find_socket_by_bitness(app
->bits_per_long
,
4756 ERR("Failed to find consumer (%" PRIu32
") socket",
4757 app
->bits_per_long
);
4762 /* Clear quiescent state. */
4763 switch (ua_sess
->buffer_type
) {
4764 case LTTNG_BUFFER_PER_PID
:
4765 cds_lfht_for_each_entry(ua_sess
->channels
->ht
, &iter
.iter
,
4766 ua_chan
, node
.node
) {
4767 health_code_update();
4768 ret
= consumer_clear_quiescent_channel(socket
,
4771 ERR("Error clearing quiescent state for consumer channel");
4777 case LTTNG_BUFFER_PER_UID
:
4784 health_code_update();
4787 pthread_mutex_unlock(&ua_sess
->lock
);
4791 health_code_update();
4796 * Clear quiescent state in each stream for all applications for a
4797 * specific UST session.
4798 * Called with UST session lock held.
4801 int ust_app_clear_quiescent_session(struct ltt_ust_session
*usess
)
4806 DBG("Clearing stream quiescent state for all ust apps");
4810 switch (usess
->buffer_type
) {
4811 case LTTNG_BUFFER_PER_UID
:
4813 struct lttng_ht_iter iter
;
4814 struct buffer_reg_uid
*reg
;
4817 * Clear quiescent for all per UID buffers associated to
4820 cds_list_for_each_entry(reg
, &usess
->buffer_reg_uid_list
, lnode
) {
4821 struct consumer_socket
*socket
;
4822 struct buffer_reg_channel
*reg_chan
;
4824 /* Get associated consumer socket.*/
4825 socket
= consumer_find_socket_by_bitness(
4826 reg
->bits_per_long
, usess
->consumer
);
4829 * Ignore request if no consumer is found for
4835 cds_lfht_for_each_entry(reg
->registry
->channels
->ht
,
4836 &iter
.iter
, reg_chan
, node
.node
) {
4838 * The following call will print error values so
4839 * the return code is of little importance
4840 * because whatever happens, we have to try them
4843 (void) consumer_clear_quiescent_channel(socket
,
4844 reg_chan
->consumer_key
);
4849 case LTTNG_BUFFER_PER_PID
:
4851 struct ust_app_session
*ua_sess
;
4852 struct lttng_ht_iter iter
;
4853 struct ust_app
*app
;
4855 cds_lfht_for_each_entry(ust_app_ht
->ht
, &iter
.iter
, app
,
4857 ua_sess
= lookup_session_by_app(usess
, app
);
4858 if (ua_sess
== NULL
) {
4861 (void) ust_app_clear_quiescent_app_session(app
,
4873 health_code_update();
4878 * Destroy a specific UST session in apps.
4880 static int destroy_trace(struct ltt_ust_session
*usess
, struct ust_app
*app
)
4883 struct ust_app_session
*ua_sess
;
4884 struct lttng_ht_iter iter
;
4885 struct lttng_ht_node_u64
*node
;
4887 DBG("Destroy tracing for ust app pid %d", app
->pid
);
4891 if (!app
->compatible
) {
4895 __lookup_session_by_app(usess
, app
, &iter
);
4896 node
= lttng_ht_iter_get_node_u64(&iter
);
4898 /* Session is being or is deleted. */
4901 ua_sess
= caa_container_of(node
, struct ust_app_session
, node
);
4903 health_code_update();
4904 destroy_app_session(app
, ua_sess
);
4906 health_code_update();
4908 /* Quiescent wait after stopping trace */
4909 pthread_mutex_lock(&app
->sock_lock
);
4910 ret
= ustctl_wait_quiescent(app
->sock
);
4911 pthread_mutex_unlock(&app
->sock_lock
);
4912 if (ret
< 0 && ret
!= -EPIPE
&& ret
!= -LTTNG_UST_ERR_EXITING
) {
4913 ERR("UST app wait quiescent failed for app pid %d ret %d",
4918 health_code_update();
4923 * Start tracing for the UST session.
4925 int ust_app_start_trace_all(struct ltt_ust_session
*usess
)
4928 struct lttng_ht_iter iter
;
4929 struct ust_app
*app
;
4931 DBG("Starting all UST traces");
4936 * In a start-stop-start use-case, we need to clear the quiescent state
4937 * of each channel set by the prior stop command, thus ensuring that a
4938 * following stop or destroy is sure to grab a timestamp_end near those
4939 * operations, even if the packet is empty.
4941 (void) ust_app_clear_quiescent_session(usess
);
4943 cds_lfht_for_each_entry(ust_app_ht
->ht
, &iter
.iter
, app
, pid_n
.node
) {
4944 ret
= ust_app_start_trace(usess
, app
);
4946 /* Continue to next apps even on error */
4957 * Start tracing for the UST session.
4958 * Called with UST session lock held.
4960 int ust_app_stop_trace_all(struct ltt_ust_session
*usess
)
4963 struct lttng_ht_iter iter
;
4964 struct ust_app
*app
;
4966 DBG("Stopping all UST traces");
4970 cds_lfht_for_each_entry(ust_app_ht
->ht
, &iter
.iter
, app
, pid_n
.node
) {
4971 ret
= ust_app_stop_trace(usess
, app
);
4973 /* Continue to next apps even on error */
4978 (void) ust_app_flush_session(usess
);
4986 * Destroy app UST session.
4988 int ust_app_destroy_trace_all(struct ltt_ust_session
*usess
)
4991 struct lttng_ht_iter iter
;
4992 struct ust_app
*app
;
4994 DBG("Destroy all UST traces");
4998 cds_lfht_for_each_entry(ust_app_ht
->ht
, &iter
.iter
, app
, pid_n
.node
) {
4999 ret
= destroy_trace(usess
, app
);
5001 /* Continue to next apps even on error */
5012 void ust_app_global_create(struct ltt_ust_session
*usess
, struct ust_app
*app
)
5015 struct lttng_ht_iter iter
, uiter
;
5016 struct ust_app_session
*ua_sess
= NULL
;
5017 struct ust_app_channel
*ua_chan
;
5018 struct ust_app_event
*ua_event
;
5019 struct ust_app_ctx
*ua_ctx
;
5022 ret
= create_ust_app_session(usess
, app
, &ua_sess
, &is_created
);
5024 /* Tracer is probably gone or ENOMEM. */
5028 /* App session already created. */
5033 pthread_mutex_lock(&ua_sess
->lock
);
5035 if (ua_sess
->deleted
) {
5036 pthread_mutex_unlock(&ua_sess
->lock
);
5041 * We can iterate safely here over all UST app session since the create ust
5042 * app session above made a shadow copy of the UST global domain from the
5045 cds_lfht_for_each_entry(ua_sess
->channels
->ht
, &iter
.iter
, ua_chan
,
5047 ret
= do_create_channel(app
, usess
, ua_sess
, ua_chan
);
5048 if (ret
< 0 && ret
!= -ENOTCONN
) {
5050 * Stop everything. On error, the application
5051 * failed, no more file descriptor are available
5052 * or ENOMEM so stopping here is the only thing
5053 * we can do for now. The only exception is
5054 * -ENOTCONN, which indicates that the application
5061 * Add context using the list so they are enabled in the same order the
5064 cds_list_for_each_entry(ua_ctx
, &ua_chan
->ctx_list
, list
) {
5065 ret
= create_ust_channel_context(ua_chan
, ua_ctx
, app
);
5072 /* For each events */
5073 cds_lfht_for_each_entry(ua_chan
->events
->ht
, &uiter
.iter
, ua_event
,
5075 ret
= create_ust_event(app
, ua_sess
, ua_chan
, ua_event
);
5082 pthread_mutex_unlock(&ua_sess
->lock
);
5084 if (usess
->active
) {
5085 ret
= ust_app_start_trace(usess
, app
);
5090 DBG2("UST trace started for app pid %d", app
->pid
);
5093 /* Everything went well at this point. */
5097 pthread_mutex_unlock(&ua_sess
->lock
);
5100 destroy_app_session(app
, ua_sess
);
5106 void ust_app_global_destroy(struct ltt_ust_session
*usess
, struct ust_app
*app
)
5108 struct ust_app_session
*ua_sess
;
5110 ua_sess
= lookup_session_by_app(usess
, app
);
5111 if (ua_sess
== NULL
) {
5114 destroy_app_session(app
, ua_sess
);
5118 * Add channels/events from UST global domain to registered apps at sock.
5120 * Called with session lock held.
5121 * Called with RCU read-side lock held.
5123 void ust_app_global_update(struct ltt_ust_session
*usess
, struct ust_app
*app
)
5127 DBG2("UST app global update for app sock %d for session id %" PRIu64
,
5128 app
->sock
, usess
->id
);
5130 if (!app
->compatible
) {
5134 if (trace_ust_pid_tracker_lookup(usess
, app
->pid
)) {
5135 ust_app_global_create(usess
, app
);
5137 ust_app_global_destroy(usess
, app
);
5142 * Called with session lock held.
5144 void ust_app_global_update_all(struct ltt_ust_session
*usess
)
5146 struct lttng_ht_iter iter
;
5147 struct ust_app
*app
;
5150 cds_lfht_for_each_entry(ust_app_ht
->ht
, &iter
.iter
, app
, pid_n
.node
) {
5151 ust_app_global_update(usess
, app
);
5157 * Add context to a specific channel for global UST domain.
5159 int ust_app_add_ctx_channel_glb(struct ltt_ust_session
*usess
,
5160 struct ltt_ust_channel
*uchan
, struct ltt_ust_context
*uctx
)
5163 struct lttng_ht_node_str
*ua_chan_node
;
5164 struct lttng_ht_iter iter
, uiter
;
5165 struct ust_app_channel
*ua_chan
= NULL
;
5166 struct ust_app_session
*ua_sess
;
5167 struct ust_app
*app
;
5171 cds_lfht_for_each_entry(ust_app_ht
->ht
, &iter
.iter
, app
, pid_n
.node
) {
5172 if (!app
->compatible
) {
5174 * TODO: In time, we should notice the caller of this error by
5175 * telling him that this is a version error.
5179 ua_sess
= lookup_session_by_app(usess
, app
);
5180 if (ua_sess
== NULL
) {
5184 pthread_mutex_lock(&ua_sess
->lock
);
5186 if (ua_sess
->deleted
) {
5187 pthread_mutex_unlock(&ua_sess
->lock
);
5191 /* Lookup channel in the ust app session */
5192 lttng_ht_lookup(ua_sess
->channels
, (void *)uchan
->name
, &uiter
);
5193 ua_chan_node
= lttng_ht_iter_get_node_str(&uiter
);
5194 if (ua_chan_node
== NULL
) {
5197 ua_chan
= caa_container_of(ua_chan_node
, struct ust_app_channel
,
5199 ret
= create_ust_app_channel_context(ua_sess
, ua_chan
, &uctx
->ctx
, app
);
5204 pthread_mutex_unlock(&ua_sess
->lock
);
5212 * Enable event for a channel from a UST session for a specific PID.
5214 int ust_app_enable_event_pid(struct ltt_ust_session
*usess
,
5215 struct ltt_ust_channel
*uchan
, struct ltt_ust_event
*uevent
, pid_t pid
)
5218 struct lttng_ht_iter iter
;
5219 struct lttng_ht_node_str
*ua_chan_node
;
5220 struct ust_app
*app
;
5221 struct ust_app_session
*ua_sess
;
5222 struct ust_app_channel
*ua_chan
;
5223 struct ust_app_event
*ua_event
;
5225 DBG("UST app enabling event %s for PID %d", uevent
->attr
.name
, pid
);
5229 app
= ust_app_find_by_pid(pid
);
5231 ERR("UST app enable event per PID %d not found", pid
);
5236 if (!app
->compatible
) {
5241 ua_sess
= lookup_session_by_app(usess
, app
);
5243 /* The application has problem or is probably dead. */
5248 pthread_mutex_lock(&ua_sess
->lock
);
5250 if (ua_sess
->deleted
) {
5255 /* Lookup channel in the ust app session */
5256 lttng_ht_lookup(ua_sess
->channels
, (void *)uchan
->name
, &iter
);
5257 ua_chan_node
= lttng_ht_iter_get_node_str(&iter
);
5258 /* If the channel is not found, there is a code flow error */
5259 assert(ua_chan_node
);
5261 ua_chan
= caa_container_of(ua_chan_node
, struct ust_app_channel
, node
);
5263 ua_event
= find_ust_app_event(ua_chan
->events
, uevent
->attr
.name
,
5264 uevent
->filter
, uevent
->attr
.loglevel
, uevent
->exclusion
);
5265 if (ua_event
== NULL
) {
5266 ret
= create_ust_app_event(ua_sess
, ua_chan
, uevent
, app
);
5271 ret
= enable_ust_app_event(ua_sess
, ua_event
, app
);
5278 pthread_mutex_unlock(&ua_sess
->lock
);
5285 * Receive registration and populate the given msg structure.
5287 * On success return 0 else a negative value returned by the ustctl call.
5289 int ust_app_recv_registration(int sock
, struct ust_register_msg
*msg
)
5292 uint32_t pid
, ppid
, uid
, gid
;
5296 ret
= ustctl_recv_reg_msg(sock
, &msg
->type
, &msg
->major
, &msg
->minor
,
5297 &pid
, &ppid
, &uid
, &gid
,
5298 &msg
->bits_per_long
,
5299 &msg
->uint8_t_alignment
,
5300 &msg
->uint16_t_alignment
,
5301 &msg
->uint32_t_alignment
,
5302 &msg
->uint64_t_alignment
,
5303 &msg
->long_alignment
,
5310 case LTTNG_UST_ERR_EXITING
:
5311 DBG3("UST app recv reg message failed. Application died");
5313 case LTTNG_UST_ERR_UNSUP_MAJOR
:
5314 ERR("UST app recv reg unsupported version %d.%d. Supporting %d.%d",
5315 msg
->major
, msg
->minor
, LTTNG_UST_ABI_MAJOR_VERSION
,
5316 LTTNG_UST_ABI_MINOR_VERSION
);
5319 ERR("UST app recv reg message failed with ret %d", ret
);
5324 msg
->pid
= (pid_t
) pid
;
5325 msg
->ppid
= (pid_t
) ppid
;
5326 msg
->uid
= (uid_t
) uid
;
5327 msg
->gid
= (gid_t
) gid
;
5334 * Return a ust app session object using the application object and the
5335 * session object descriptor has a key. If not found, NULL is returned.
5336 * A RCU read side lock MUST be acquired when calling this function.
5338 static struct ust_app_session
*find_session_by_objd(struct ust_app
*app
,
5341 struct lttng_ht_node_ulong
*node
;
5342 struct lttng_ht_iter iter
;
5343 struct ust_app_session
*ua_sess
= NULL
;
5347 lttng_ht_lookup(app
->ust_sessions_objd
, (void *)((unsigned long) objd
), &iter
);
5348 node
= lttng_ht_iter_get_node_ulong(&iter
);
5350 DBG2("UST app session find by objd %d not found", objd
);
5354 ua_sess
= caa_container_of(node
, struct ust_app_session
, ust_objd_node
);
5361 * Return a ust app channel object using the application object and the channel
5362 * object descriptor has a key. If not found, NULL is returned. A RCU read side
5363 * lock MUST be acquired before calling this function.
5365 static struct ust_app_channel
*find_channel_by_objd(struct ust_app
*app
,
5368 struct lttng_ht_node_ulong
*node
;
5369 struct lttng_ht_iter iter
;
5370 struct ust_app_channel
*ua_chan
= NULL
;
5374 lttng_ht_lookup(app
->ust_objd
, (void *)((unsigned long) objd
), &iter
);
5375 node
= lttng_ht_iter_get_node_ulong(&iter
);
5377 DBG2("UST app channel find by objd %d not found", objd
);
5381 ua_chan
= caa_container_of(node
, struct ust_app_channel
, ust_objd_node
);
5388 * Reply to a register channel notification from an application on the notify
5389 * socket. The channel metadata is also created.
5391 * The session UST registry lock is acquired in this function.
5393 * On success 0 is returned else a negative value.
5395 static int reply_ust_register_channel(int sock
, int sobjd
, int cobjd
,
5396 size_t nr_fields
, struct ustctl_field
*fields
)
5398 int ret
, ret_code
= 0;
5399 uint32_t chan_id
, reg_count
;
5400 uint64_t chan_reg_key
;
5401 enum ustctl_channel_header type
;
5402 struct ust_app
*app
;
5403 struct ust_app_channel
*ua_chan
;
5404 struct ust_app_session
*ua_sess
;
5405 struct ust_registry_session
*registry
;
5406 struct ust_registry_channel
*chan_reg
;
5410 /* Lookup application. If not found, there is a code flow error. */
5411 app
= find_app_by_notify_sock(sock
);
5413 DBG("Application socket %d is being torn down. Abort event notify",
5416 goto error_rcu_unlock
;
5419 /* Lookup channel by UST object descriptor. */
5420 ua_chan
= find_channel_by_objd(app
, cobjd
);
5422 DBG("Application channel is being torn down. Abort event notify");
5424 goto error_rcu_unlock
;
5427 assert(ua_chan
->session
);
5428 ua_sess
= ua_chan
->session
;
5430 /* Get right session registry depending on the session buffer type. */
5431 registry
= get_session_registry(ua_sess
);
5433 DBG("Application session is being torn down. Abort event notify");
5435 goto error_rcu_unlock
;
5438 /* Depending on the buffer type, a different channel key is used. */
5439 if (ua_sess
->buffer_type
== LTTNG_BUFFER_PER_UID
) {
5440 chan_reg_key
= ua_chan
->tracing_channel_id
;
5442 chan_reg_key
= ua_chan
->key
;
5445 pthread_mutex_lock(®istry
->lock
);
5447 chan_reg
= ust_registry_channel_find(registry
, chan_reg_key
);
5450 if (!chan_reg
->register_done
) {
5451 reg_count
= ust_registry_get_event_count(chan_reg
);
5452 if (reg_count
< 31) {
5453 type
= USTCTL_CHANNEL_HEADER_COMPACT
;
5455 type
= USTCTL_CHANNEL_HEADER_LARGE
;
5458 chan_reg
->nr_ctx_fields
= nr_fields
;
5459 chan_reg
->ctx_fields
= fields
;
5461 chan_reg
->header_type
= type
;
5463 /* Get current already assigned values. */
5464 type
= chan_reg
->header_type
;
5466 /* Channel id is set during the object creation. */
5467 chan_id
= chan_reg
->chan_id
;
5469 /* Append to metadata */
5470 if (!chan_reg
->metadata_dumped
) {
5471 ret_code
= ust_metadata_channel_statedump(registry
, chan_reg
);
5473 ERR("Error appending channel metadata (errno = %d)", ret_code
);
5479 DBG3("UST app replying to register channel key %" PRIu64
5480 " with id %u, type: %d, ret: %d", chan_reg_key
, chan_id
, type
,
5483 ret
= ustctl_reply_register_channel(sock
, chan_id
, type
, ret_code
);
5485 if (ret
!= -EPIPE
&& ret
!= -LTTNG_UST_ERR_EXITING
) {
5486 ERR("UST app reply channel failed with ret %d", ret
);
5488 DBG3("UST app reply channel failed. Application died");
5493 /* This channel registry registration is completed. */
5494 chan_reg
->register_done
= 1;
5497 pthread_mutex_unlock(®istry
->lock
);
5505 * Add event to the UST channel registry. When the event is added to the
5506 * registry, the metadata is also created. Once done, this replies to the
5507 * application with the appropriate error code.
5509 * The session UST registry lock is acquired in the function.
5511 * On success 0 is returned else a negative value.
5513 static int add_event_ust_registry(int sock
, int sobjd
, int cobjd
, char *name
,
5514 char *sig
, size_t nr_fields
, struct ustctl_field
*fields
,
5515 int loglevel_value
, char *model_emf_uri
)
5518 uint32_t event_id
= 0;
5519 uint64_t chan_reg_key
;
5520 struct ust_app
*app
;
5521 struct ust_app_channel
*ua_chan
;
5522 struct ust_app_session
*ua_sess
;
5523 struct ust_registry_session
*registry
;
5527 /* Lookup application. If not found, there is a code flow error. */
5528 app
= find_app_by_notify_sock(sock
);
5530 DBG("Application socket %d is being torn down. Abort event notify",
5533 goto error_rcu_unlock
;
5536 /* Lookup channel by UST object descriptor. */
5537 ua_chan
= find_channel_by_objd(app
, cobjd
);
5539 DBG("Application channel is being torn down. Abort event notify");
5541 goto error_rcu_unlock
;
5544 assert(ua_chan
->session
);
5545 ua_sess
= ua_chan
->session
;
5547 registry
= get_session_registry(ua_sess
);
5549 DBG("Application session is being torn down. Abort event notify");
5551 goto error_rcu_unlock
;
5554 if (ua_sess
->buffer_type
== LTTNG_BUFFER_PER_UID
) {
5555 chan_reg_key
= ua_chan
->tracing_channel_id
;
5557 chan_reg_key
= ua_chan
->key
;
5560 pthread_mutex_lock(®istry
->lock
);
5563 * From this point on, this call acquires the ownership of the sig, fields
5564 * and model_emf_uri meaning any free are done inside it if needed. These
5565 * three variables MUST NOT be read/write after this.
5567 ret_code
= ust_registry_create_event(registry
, chan_reg_key
,
5568 sobjd
, cobjd
, name
, sig
, nr_fields
, fields
,
5569 loglevel_value
, model_emf_uri
, ua_sess
->buffer_type
,
5573 model_emf_uri
= NULL
;
5576 * The return value is returned to ustctl so in case of an error, the
5577 * application can be notified. In case of an error, it's important not to
5578 * return a negative error or else the application will get closed.
5580 ret
= ustctl_reply_register_event(sock
, event_id
, ret_code
);
5582 if (ret
!= -EPIPE
&& ret
!= -LTTNG_UST_ERR_EXITING
) {
5583 ERR("UST app reply event failed with ret %d", ret
);
5585 DBG3("UST app reply event failed. Application died");
5588 * No need to wipe the create event since the application socket will
5589 * get close on error hence cleaning up everything by itself.
5594 DBG3("UST registry event %s with id %" PRId32
" added successfully",
5598 pthread_mutex_unlock(®istry
->lock
);
5603 free(model_emf_uri
);
5608 * Add enum to the UST session registry. Once done, this replies to the
5609 * application with the appropriate error code.
5611 * The session UST registry lock is acquired within this function.
5613 * On success 0 is returned else a negative value.
5615 static int add_enum_ust_registry(int sock
, int sobjd
, char *name
,
5616 struct ustctl_enum_entry
*entries
, size_t nr_entries
)
5618 int ret
= 0, ret_code
;
5619 struct ust_app
*app
;
5620 struct ust_app_session
*ua_sess
;
5621 struct ust_registry_session
*registry
;
5622 uint64_t enum_id
= -1ULL;
5626 /* Lookup application. If not found, there is a code flow error. */
5627 app
= find_app_by_notify_sock(sock
);
5629 /* Return an error since this is not an error */
5630 DBG("Application socket %d is being torn down. Aborting enum registration",
5633 goto error_rcu_unlock
;
5636 /* Lookup session by UST object descriptor. */
5637 ua_sess
= find_session_by_objd(app
, sobjd
);
5639 /* Return an error since this is not an error */
5640 DBG("Application session is being torn down (session not found). Aborting enum registration.");
5642 goto error_rcu_unlock
;
5645 registry
= get_session_registry(ua_sess
);
5647 DBG("Application session is being torn down (registry not found). Aborting enum registration.");
5649 goto error_rcu_unlock
;
5652 pthread_mutex_lock(®istry
->lock
);
5655 * From this point on, the callee acquires the ownership of
5656 * entries. The variable entries MUST NOT be read/written after
5659 ret_code
= ust_registry_create_or_find_enum(registry
, sobjd
, name
,
5660 entries
, nr_entries
, &enum_id
);
5664 * The return value is returned to ustctl so in case of an error, the
5665 * application can be notified. In case of an error, it's important not to
5666 * return a negative error or else the application will get closed.
5668 ret
= ustctl_reply_register_enum(sock
, enum_id
, ret_code
);
5670 if (ret
!= -EPIPE
&& ret
!= -LTTNG_UST_ERR_EXITING
) {
5671 ERR("UST app reply enum failed with ret %d", ret
);
5673 DBG3("UST app reply enum failed. Application died");
5676 * No need to wipe the create enum since the application socket will
5677 * get close on error hence cleaning up everything by itself.
5682 DBG3("UST registry enum %s added successfully or already found", name
);
5685 pthread_mutex_unlock(®istry
->lock
);
5692 * Handle application notification through the given notify socket.
5694 * Return 0 on success or else a negative value.
5696 int ust_app_recv_notify(int sock
)
5699 enum ustctl_notify_cmd cmd
;
5701 DBG3("UST app receiving notify from sock %d", sock
);
5703 ret
= ustctl_recv_notify(sock
, &cmd
);
5705 if (ret
!= -EPIPE
&& ret
!= -LTTNG_UST_ERR_EXITING
) {
5706 ERR("UST app recv notify failed with ret %d", ret
);
5708 DBG3("UST app recv notify failed. Application died");
5714 case USTCTL_NOTIFY_CMD_EVENT
:
5716 int sobjd
, cobjd
, loglevel_value
;
5717 char name
[LTTNG_UST_SYM_NAME_LEN
], *sig
, *model_emf_uri
;
5719 struct ustctl_field
*fields
;
5721 DBG2("UST app ustctl register event received");
5723 ret
= ustctl_recv_register_event(sock
, &sobjd
, &cobjd
, name
,
5724 &loglevel_value
, &sig
, &nr_fields
, &fields
,
5727 if (ret
!= -EPIPE
&& ret
!= -LTTNG_UST_ERR_EXITING
) {
5728 ERR("UST app recv event failed with ret %d", ret
);
5730 DBG3("UST app recv event failed. Application died");
5736 * Add event to the UST registry coming from the notify socket. This
5737 * call will free if needed the sig, fields and model_emf_uri. This
5738 * code path loses the ownsership of these variables and transfer them
5739 * to the this function.
5741 ret
= add_event_ust_registry(sock
, sobjd
, cobjd
, name
, sig
, nr_fields
,
5742 fields
, loglevel_value
, model_emf_uri
);
5749 case USTCTL_NOTIFY_CMD_CHANNEL
:
5753 struct ustctl_field
*fields
;
5755 DBG2("UST app ustctl register channel received");
5757 ret
= ustctl_recv_register_channel(sock
, &sobjd
, &cobjd
, &nr_fields
,
5760 if (ret
!= -EPIPE
&& ret
!= -LTTNG_UST_ERR_EXITING
) {
5761 ERR("UST app recv channel failed with ret %d", ret
);
5763 DBG3("UST app recv channel failed. Application died");
5769 * The fields ownership are transfered to this function call meaning
5770 * that if needed it will be freed. After this, it's invalid to access
5771 * fields or clean it up.
5773 ret
= reply_ust_register_channel(sock
, sobjd
, cobjd
, nr_fields
,
5781 case USTCTL_NOTIFY_CMD_ENUM
:
5784 char name
[LTTNG_UST_SYM_NAME_LEN
];
5786 struct ustctl_enum_entry
*entries
;
5788 DBG2("UST app ustctl register enum received");
5790 ret
= ustctl_recv_register_enum(sock
, &sobjd
, name
,
5791 &entries
, &nr_entries
);
5793 if (ret
!= -EPIPE
&& ret
!= -LTTNG_UST_ERR_EXITING
) {
5794 ERR("UST app recv enum failed with ret %d", ret
);
5796 DBG3("UST app recv enum failed. Application died");
5801 /* Callee assumes ownership of entries */
5802 ret
= add_enum_ust_registry(sock
, sobjd
, name
,
5803 entries
, nr_entries
);
5811 /* Should NEVER happen. */
5820 * Once the notify socket hangs up, this is called. First, it tries to find the
5821 * corresponding application. On failure, the call_rcu to close the socket is
5822 * executed. If an application is found, it tries to delete it from the notify
5823 * socket hash table. Whathever the result, it proceeds to the call_rcu.
5825 * Note that an object needs to be allocated here so on ENOMEM failure, the
5826 * call RCU is not done but the rest of the cleanup is.
5828 void ust_app_notify_sock_unregister(int sock
)
5831 struct lttng_ht_iter iter
;
5832 struct ust_app
*app
;
5833 struct ust_app_notify_sock_obj
*obj
;
5839 obj
= zmalloc(sizeof(*obj
));
5842 * An ENOMEM is kind of uncool. If this strikes we continue the
5843 * procedure but the call_rcu will not be called. In this case, we
5844 * accept the fd leak rather than possibly creating an unsynchronized
5845 * state between threads.
5847 * TODO: The notify object should be created once the notify socket is
5848 * registered and stored independantely from the ust app object. The
5849 * tricky part is to synchronize the teardown of the application and
5850 * this notify object. Let's keep that in mind so we can avoid this
5851 * kind of shenanigans with ENOMEM in the teardown path.
5858 DBG("UST app notify socket unregister %d", sock
);
5861 * Lookup application by notify socket. If this fails, this means that the
5862 * hash table delete has already been done by the application
5863 * unregistration process so we can safely close the notify socket in a
5866 app
= find_app_by_notify_sock(sock
);
5871 iter
.iter
.node
= &app
->notify_sock_n
.node
;
5874 * Whatever happens here either we fail or succeed, in both cases we have
5875 * to close the socket after a grace period to continue to the call RCU
5876 * here. If the deletion is successful, the application is not visible
5877 * anymore by other threads and is it fails it means that it was already
5878 * deleted from the hash table so either way we just have to close the
5881 (void) lttng_ht_del(ust_app_ht_by_notify_sock
, &iter
);
5887 * Close socket after a grace period to avoid for the socket to be reused
5888 * before the application object is freed creating potential race between
5889 * threads trying to add unique in the global hash table.
5892 call_rcu(&obj
->head
, close_notify_sock_rcu
);
5897 * Destroy a ust app data structure and free its memory.
5899 void ust_app_destroy(struct ust_app
*app
)
5905 call_rcu(&app
->pid_n
.head
, delete_ust_app_rcu
);
5909 * Take a snapshot for a given UST session. The snapshot is sent to the given
5912 * Return 0 on success or else a negative value.
5914 int ust_app_snapshot_record(struct ltt_ust_session
*usess
,
5915 struct snapshot_output
*output
, int wait
,
5916 uint64_t nb_packets_per_stream
)
5919 struct lttng_ht_iter iter
;
5920 struct ust_app
*app
;
5921 char pathname
[PATH_MAX
];
5928 switch (usess
->buffer_type
) {
5929 case LTTNG_BUFFER_PER_UID
:
5931 struct buffer_reg_uid
*reg
;
5933 cds_list_for_each_entry(reg
, &usess
->buffer_reg_uid_list
, lnode
) {
5934 struct buffer_reg_channel
*reg_chan
;
5935 struct consumer_socket
*socket
;
5937 /* Get consumer socket to use to push the metadata.*/
5938 socket
= consumer_find_socket_by_bitness(reg
->bits_per_long
,
5945 memset(pathname
, 0, sizeof(pathname
));
5946 ret
= snprintf(pathname
, sizeof(pathname
),
5947 DEFAULT_UST_TRACE_DIR
"/" DEFAULT_UST_TRACE_UID_PATH
,
5948 reg
->uid
, reg
->bits_per_long
);
5950 PERROR("snprintf snapshot path");
5954 /* Add the UST default trace dir to path. */
5955 cds_lfht_for_each_entry(reg
->registry
->channels
->ht
, &iter
.iter
,
5956 reg_chan
, node
.node
) {
5957 ret
= consumer_snapshot_channel(socket
, reg_chan
->consumer_key
,
5958 output
, 0, usess
->uid
, usess
->gid
, pathname
, wait
,
5959 nb_packets_per_stream
);
5964 ret
= consumer_snapshot_channel(socket
,
5965 reg
->registry
->reg
.ust
->metadata_key
, output
, 1,
5966 usess
->uid
, usess
->gid
, pathname
, wait
, 0);
5973 case LTTNG_BUFFER_PER_PID
:
5975 cds_lfht_for_each_entry(ust_app_ht
->ht
, &iter
.iter
, app
, pid_n
.node
) {
5976 struct consumer_socket
*socket
;
5977 struct lttng_ht_iter chan_iter
;
5978 struct ust_app_channel
*ua_chan
;
5979 struct ust_app_session
*ua_sess
;
5980 struct ust_registry_session
*registry
;
5982 ua_sess
= lookup_session_by_app(usess
, app
);
5984 /* Session not associated with this app. */
5988 /* Get the right consumer socket for the application. */
5989 socket
= consumer_find_socket_by_bitness(app
->bits_per_long
,
5996 /* Add the UST default trace dir to path. */
5997 memset(pathname
, 0, sizeof(pathname
));
5998 ret
= snprintf(pathname
, sizeof(pathname
), DEFAULT_UST_TRACE_DIR
"/%s",
6001 PERROR("snprintf snapshot path");
6005 cds_lfht_for_each_entry(ua_sess
->channels
->ht
, &chan_iter
.iter
,
6006 ua_chan
, node
.node
) {
6007 ret
= consumer_snapshot_channel(socket
, ua_chan
->key
, output
,
6008 0, ua_sess
->euid
, ua_sess
->egid
, pathname
, wait
,
6009 nb_packets_per_stream
);
6015 registry
= get_session_registry(ua_sess
);
6017 DBG("Application session is being torn down. Abort snapshot record.");
6021 ret
= consumer_snapshot_channel(socket
, registry
->metadata_key
, output
,
6022 1, ua_sess
->euid
, ua_sess
->egid
, pathname
, wait
, 0);
6040 * Return the size taken by one more packet per stream.
6042 uint64_t ust_app_get_size_one_more_packet_per_stream(struct ltt_ust_session
*usess
,
6043 uint64_t cur_nr_packets
)
6045 uint64_t tot_size
= 0;
6046 struct ust_app
*app
;
6047 struct lttng_ht_iter iter
;
6051 switch (usess
->buffer_type
) {
6052 case LTTNG_BUFFER_PER_UID
:
6054 struct buffer_reg_uid
*reg
;
6056 cds_list_for_each_entry(reg
, &usess
->buffer_reg_uid_list
, lnode
) {
6057 struct buffer_reg_channel
*reg_chan
;
6060 cds_lfht_for_each_entry(reg
->registry
->channels
->ht
, &iter
.iter
,
6061 reg_chan
, node
.node
) {
6062 if (cur_nr_packets
>= reg_chan
->num_subbuf
) {
6064 * Don't take channel into account if we
6065 * already grab all its packets.
6069 tot_size
+= reg_chan
->subbuf_size
* reg_chan
->stream_count
;
6075 case LTTNG_BUFFER_PER_PID
:
6078 cds_lfht_for_each_entry(ust_app_ht
->ht
, &iter
.iter
, app
, pid_n
.node
) {
6079 struct ust_app_channel
*ua_chan
;
6080 struct ust_app_session
*ua_sess
;
6081 struct lttng_ht_iter chan_iter
;
6083 ua_sess
= lookup_session_by_app(usess
, app
);
6085 /* Session not associated with this app. */
6089 cds_lfht_for_each_entry(ua_sess
->channels
->ht
, &chan_iter
.iter
,
6090 ua_chan
, node
.node
) {
6091 if (cur_nr_packets
>= ua_chan
->attr
.num_subbuf
) {
6093 * Don't take channel into account if we
6094 * already grab all its packets.
6098 tot_size
+= ua_chan
->attr
.subbuf_size
* ua_chan
->streams
.count
;
6112 int ust_app_uid_get_channel_runtime_stats(uint64_t ust_session_id
,
6113 struct cds_list_head
*buffer_reg_uid_list
,
6114 struct consumer_output
*consumer
, uint64_t uchan_id
,
6115 int overwrite
, uint64_t *discarded
, uint64_t *lost
)
6118 uint64_t consumer_chan_key
;
6123 ret
= buffer_reg_uid_consumer_channel_key(
6124 buffer_reg_uid_list
, ust_session_id
,
6125 uchan_id
, &consumer_chan_key
);
6133 ret
= consumer_get_lost_packets(ust_session_id
,
6134 consumer_chan_key
, consumer
, lost
);
6136 ret
= consumer_get_discarded_events(ust_session_id
,
6137 consumer_chan_key
, consumer
, discarded
);
6144 int ust_app_pid_get_channel_runtime_stats(struct ltt_ust_session
*usess
,
6145 struct ltt_ust_channel
*uchan
,
6146 struct consumer_output
*consumer
, int overwrite
,
6147 uint64_t *discarded
, uint64_t *lost
)
6150 struct lttng_ht_iter iter
;
6151 struct lttng_ht_node_str
*ua_chan_node
;
6152 struct ust_app
*app
;
6153 struct ust_app_session
*ua_sess
;
6154 struct ust_app_channel
*ua_chan
;
6161 * Iterate over every registered applications. Sum counters for
6162 * all applications containing requested session and channel.
6164 cds_lfht_for_each_entry(ust_app_ht
->ht
, &iter
.iter
, app
, pid_n
.node
) {
6165 struct lttng_ht_iter uiter
;
6167 ua_sess
= lookup_session_by_app(usess
, app
);
6168 if (ua_sess
== NULL
) {
6173 lttng_ht_lookup(ua_sess
->channels
, (void *) uchan
->name
, &uiter
);
6174 ua_chan_node
= lttng_ht_iter_get_node_str(&uiter
);
6175 /* If the session is found for the app, the channel must be there */
6176 assert(ua_chan_node
);
6178 ua_chan
= caa_container_of(ua_chan_node
, struct ust_app_channel
, node
);
6183 ret
= consumer_get_lost_packets(usess
->id
, ua_chan
->key
,
6190 uint64_t _discarded
;
6192 ret
= consumer_get_discarded_events(usess
->id
,
6193 ua_chan
->key
, consumer
, &_discarded
);
6197 (*discarded
) += _discarded
;
6206 int ust_app_regenerate_statedump(struct ltt_ust_session
*usess
,
6207 struct ust_app
*app
)
6210 struct ust_app_session
*ua_sess
;
6212 DBG("Regenerating the metadata for ust app pid %d", app
->pid
);
6216 ua_sess
= lookup_session_by_app(usess
, app
);
6217 if (ua_sess
== NULL
) {
6218 /* The session is in teardown process. Ignore and continue. */
6222 pthread_mutex_lock(&ua_sess
->lock
);
6224 if (ua_sess
->deleted
) {
6228 pthread_mutex_lock(&app
->sock_lock
);
6229 ret
= ustctl_regenerate_statedump(app
->sock
, ua_sess
->handle
);
6230 pthread_mutex_unlock(&app
->sock_lock
);
6233 pthread_mutex_unlock(&ua_sess
->lock
);
6237 health_code_update();
6242 * Regenerate the statedump for each app in the session.
6244 int ust_app_regenerate_statedump_all(struct ltt_ust_session
*usess
)
6247 struct lttng_ht_iter iter
;
6248 struct ust_app
*app
;
6250 DBG("Regenerating the metadata for all UST apps");
6254 cds_lfht_for_each_entry(ust_app_ht
->ht
, &iter
.iter
, app
, pid_n
.node
) {
6255 if (!app
->compatible
) {
6259 ret
= ust_app_regenerate_statedump(usess
, app
);
6261 /* Continue to the next app even on error */