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"
46 int ust_app_flush_app_session(struct ust_app
*app
, struct ust_app_session
*ua_sess
);
48 /* Next available channel key. Access under next_channel_key_lock. */
49 static uint64_t _next_channel_key
;
50 static pthread_mutex_t next_channel_key_lock
= PTHREAD_MUTEX_INITIALIZER
;
52 /* Next available session ID. Access under next_session_id_lock. */
53 static uint64_t _next_session_id
;
54 static pthread_mutex_t next_session_id_lock
= PTHREAD_MUTEX_INITIALIZER
;
57 * Return the incremented value of next_channel_key.
59 static uint64_t get_next_channel_key(void)
63 pthread_mutex_lock(&next_channel_key_lock
);
64 ret
= ++_next_channel_key
;
65 pthread_mutex_unlock(&next_channel_key_lock
);
70 * Return the atomically incremented value of next_session_id.
72 static uint64_t get_next_session_id(void)
76 pthread_mutex_lock(&next_session_id_lock
);
77 ret
= ++_next_session_id
;
78 pthread_mutex_unlock(&next_session_id_lock
);
82 static void copy_channel_attr_to_ustctl(
83 struct ustctl_consumer_channel_attr
*attr
,
84 struct lttng_ust_channel_attr
*uattr
)
86 /* Copy event attributes since the layout is different. */
87 attr
->subbuf_size
= uattr
->subbuf_size
;
88 attr
->num_subbuf
= uattr
->num_subbuf
;
89 attr
->overwrite
= uattr
->overwrite
;
90 attr
->switch_timer_interval
= uattr
->switch_timer_interval
;
91 attr
->read_timer_interval
= uattr
->read_timer_interval
;
92 attr
->output
= uattr
->output
;
96 * Match function for the hash table lookup.
98 * It matches an ust app event based on three attributes which are the event
99 * name, the filter bytecode and the loglevel.
101 static int ht_match_ust_app_event(struct cds_lfht_node
*node
, const void *_key
)
103 struct ust_app_event
*event
;
104 const struct ust_app_ht_key
*key
;
105 int ev_loglevel_value
;
110 event
= caa_container_of(node
, struct ust_app_event
, node
.node
);
112 ev_loglevel_value
= event
->attr
.loglevel
;
114 /* Match the 4 elements of the key: name, filter, loglevel, exclusions */
117 if (strncmp(event
->attr
.name
, key
->name
, sizeof(event
->attr
.name
)) != 0) {
121 /* Event loglevel. */
122 if (ev_loglevel_value
!= key
->loglevel_type
) {
123 if (event
->attr
.loglevel_type
== LTTNG_UST_LOGLEVEL_ALL
124 && key
->loglevel_type
== 0 &&
125 ev_loglevel_value
== -1) {
127 * Match is accepted. This is because on event creation, the
128 * loglevel is set to -1 if the event loglevel type is ALL so 0 and
129 * -1 are accepted for this loglevel type since 0 is the one set by
130 * the API when receiving an enable event.
137 /* One of the filters is NULL, fail. */
138 if ((key
->filter
&& !event
->filter
) || (!key
->filter
&& event
->filter
)) {
142 if (key
->filter
&& event
->filter
) {
143 /* Both filters exists, check length followed by the bytecode. */
144 if (event
->filter
->len
!= key
->filter
->len
||
145 memcmp(event
->filter
->data
, key
->filter
->data
,
146 event
->filter
->len
) != 0) {
151 /* One of the exclusions is NULL, fail. */
152 if ((key
->exclusion
&& !event
->exclusion
) || (!key
->exclusion
&& event
->exclusion
)) {
156 if (key
->exclusion
&& event
->exclusion
) {
157 /* Both exclusions exists, check count followed by the names. */
158 if (event
->exclusion
->count
!= key
->exclusion
->count
||
159 memcmp(event
->exclusion
->names
, key
->exclusion
->names
,
160 event
->exclusion
->count
* LTTNG_UST_SYM_NAME_LEN
) != 0) {
174 * Unique add of an ust app event in the given ht. This uses the custom
175 * ht_match_ust_app_event match function and the event name as hash.
177 static void add_unique_ust_app_event(struct ust_app_channel
*ua_chan
,
178 struct ust_app_event
*event
)
180 struct cds_lfht_node
*node_ptr
;
181 struct ust_app_ht_key key
;
185 assert(ua_chan
->events
);
188 ht
= ua_chan
->events
;
189 key
.name
= event
->attr
.name
;
190 key
.filter
= event
->filter
;
191 key
.loglevel_type
= event
->attr
.loglevel
;
192 key
.exclusion
= event
->exclusion
;
194 node_ptr
= cds_lfht_add_unique(ht
->ht
,
195 ht
->hash_fct(event
->node
.key
, lttng_ht_seed
),
196 ht_match_ust_app_event
, &key
, &event
->node
.node
);
197 assert(node_ptr
== &event
->node
.node
);
201 * Close the notify socket from the given RCU head object. This MUST be called
202 * through a call_rcu().
204 static void close_notify_sock_rcu(struct rcu_head
*head
)
207 struct ust_app_notify_sock_obj
*obj
=
208 caa_container_of(head
, struct ust_app_notify_sock_obj
, head
);
210 /* Must have a valid fd here. */
211 assert(obj
->fd
>= 0);
213 ret
= close(obj
->fd
);
215 ERR("close notify sock %d RCU", obj
->fd
);
217 lttng_fd_put(LTTNG_FD_APPS
, 1);
223 * Return the session registry according to the buffer type of the given
226 * A registry per UID object MUST exists before calling this function or else
227 * it assert() if not found. RCU read side lock must be acquired.
229 static struct ust_registry_session
*get_session_registry(
230 struct ust_app_session
*ua_sess
)
232 struct ust_registry_session
*registry
= NULL
;
236 switch (ua_sess
->buffer_type
) {
237 case LTTNG_BUFFER_PER_PID
:
239 struct buffer_reg_pid
*reg_pid
= buffer_reg_pid_find(ua_sess
->id
);
243 registry
= reg_pid
->registry
->reg
.ust
;
246 case LTTNG_BUFFER_PER_UID
:
248 struct buffer_reg_uid
*reg_uid
= buffer_reg_uid_find(
249 ua_sess
->tracing_id
, ua_sess
->bits_per_long
, ua_sess
->uid
);
253 registry
= reg_uid
->registry
->reg
.ust
;
265 * Delete ust context safely. RCU read lock must be held before calling
269 void delete_ust_app_ctx(int sock
, struct ust_app_ctx
*ua_ctx
,
277 pthread_mutex_lock(&app
->sock_lock
);
278 ret
= ustctl_release_object(sock
, ua_ctx
->obj
);
279 pthread_mutex_unlock(&app
->sock_lock
);
280 if (ret
< 0 && ret
!= -EPIPE
&& ret
!= -LTTNG_UST_ERR_EXITING
) {
281 ERR("UST app sock %d release ctx obj handle %d failed with ret %d",
282 sock
, ua_ctx
->obj
->handle
, ret
);
290 * Delete ust app event safely. RCU read lock must be held before calling
294 void delete_ust_app_event(int sock
, struct ust_app_event
*ua_event
,
301 free(ua_event
->filter
);
302 if (ua_event
->exclusion
!= NULL
)
303 free(ua_event
->exclusion
);
304 if (ua_event
->obj
!= NULL
) {
305 pthread_mutex_lock(&app
->sock_lock
);
306 ret
= ustctl_release_object(sock
, ua_event
->obj
);
307 pthread_mutex_unlock(&app
->sock_lock
);
308 if (ret
< 0 && ret
!= -EPIPE
&& ret
!= -LTTNG_UST_ERR_EXITING
) {
309 ERR("UST app sock %d release event obj failed with ret %d",
318 * Release ust data object of the given stream.
320 * Return 0 on success or else a negative value.
322 static int release_ust_app_stream(int sock
, struct ust_app_stream
*stream
,
330 pthread_mutex_lock(&app
->sock_lock
);
331 ret
= ustctl_release_object(sock
, stream
->obj
);
332 pthread_mutex_unlock(&app
->sock_lock
);
333 if (ret
< 0 && ret
!= -EPIPE
&& ret
!= -LTTNG_UST_ERR_EXITING
) {
334 ERR("UST app sock %d release stream obj failed with ret %d",
337 lttng_fd_put(LTTNG_FD_APPS
, 2);
345 * Delete ust app stream safely. RCU read lock must be held before calling
349 void delete_ust_app_stream(int sock
, struct ust_app_stream
*stream
,
354 (void) release_ust_app_stream(sock
, stream
, app
);
359 * We need to execute ht_destroy outside of RCU read-side critical
360 * section and outside of call_rcu thread, so we postpone its execution
361 * using ht_cleanup_push. It is simpler than to change the semantic of
362 * the many callers of delete_ust_app_session().
365 void delete_ust_app_channel_rcu(struct rcu_head
*head
)
367 struct ust_app_channel
*ua_chan
=
368 caa_container_of(head
, struct ust_app_channel
, rcu_head
);
370 ht_cleanup_push(ua_chan
->ctx
);
371 ht_cleanup_push(ua_chan
->events
);
376 * Extract the lost packet or discarded events counter when the channel is
377 * being deleted and store the value in the parent channel so we can
378 * access it from lttng list and at stop/destroy.
380 * The session list lock must be held by the caller.
383 void save_per_pid_lost_discarded_counters(struct ust_app_channel
*ua_chan
)
385 uint64_t discarded
= 0, lost
= 0;
386 struct ltt_session
*session
;
387 struct ltt_ust_channel
*uchan
;
389 if (ua_chan
->attr
.type
!= LTTNG_UST_CHAN_PER_CPU
) {
394 session
= session_find_by_id(ua_chan
->session
->tracing_id
);
395 if (!session
|| !session
->ust_session
) {
397 * Not finding the session is not an error because there are
398 * multiple ways the channels can be torn down.
400 * 1) The session daemon can initiate the destruction of the
401 * ust app session after receiving a destroy command or
402 * during its shutdown/teardown.
403 * 2) The application, since we are in per-pid tracing, is
404 * unregistering and tearing down its ust app session.
406 * Both paths are protected by the session list lock which
407 * ensures that the accounting of lost packets and discarded
408 * events is done exactly once. The session is then unpublished
409 * from the session list, resulting in this condition.
414 if (ua_chan
->attr
.overwrite
) {
415 consumer_get_lost_packets(ua_chan
->session
->tracing_id
,
416 ua_chan
->key
, session
->ust_session
->consumer
,
419 consumer_get_discarded_events(ua_chan
->session
->tracing_id
,
420 ua_chan
->key
, session
->ust_session
->consumer
,
423 uchan
= trace_ust_find_channel_by_name(
424 session
->ust_session
->domain_global
.channels
,
427 ERR("Missing UST channel to store discarded counters");
431 uchan
->per_pid_closed_app_discarded
+= discarded
;
432 uchan
->per_pid_closed_app_lost
+= lost
;
439 * Delete ust app channel safely. RCU read lock must be held before calling
442 * The session list lock must be held by the caller.
445 void delete_ust_app_channel(int sock
, struct ust_app_channel
*ua_chan
,
449 struct lttng_ht_iter iter
;
450 struct ust_app_event
*ua_event
;
451 struct ust_app_ctx
*ua_ctx
;
452 struct ust_app_stream
*stream
, *stmp
;
453 struct ust_registry_session
*registry
;
457 DBG3("UST app deleting channel %s", ua_chan
->name
);
460 cds_list_for_each_entry_safe(stream
, stmp
, &ua_chan
->streams
.head
, list
) {
461 cds_list_del(&stream
->list
);
462 delete_ust_app_stream(sock
, stream
, app
);
466 cds_lfht_for_each_entry(ua_chan
->ctx
->ht
, &iter
.iter
, ua_ctx
, node
.node
) {
467 cds_list_del(&ua_ctx
->list
);
468 ret
= lttng_ht_del(ua_chan
->ctx
, &iter
);
470 delete_ust_app_ctx(sock
, ua_ctx
, app
);
474 cds_lfht_for_each_entry(ua_chan
->events
->ht
, &iter
.iter
, ua_event
,
476 ret
= lttng_ht_del(ua_chan
->events
, &iter
);
478 delete_ust_app_event(sock
, ua_event
, app
);
481 if (ua_chan
->session
->buffer_type
== LTTNG_BUFFER_PER_PID
) {
482 /* Wipe and free registry from session registry. */
483 registry
= get_session_registry(ua_chan
->session
);
485 ust_registry_channel_del_free(registry
, ua_chan
->key
);
487 save_per_pid_lost_discarded_counters(ua_chan
);
490 if (ua_chan
->obj
!= NULL
) {
491 /* Remove channel from application UST object descriptor. */
492 iter
.iter
.node
= &ua_chan
->ust_objd_node
.node
;
493 ret
= lttng_ht_del(app
->ust_objd
, &iter
);
495 pthread_mutex_lock(&app
->sock_lock
);
496 ret
= ustctl_release_object(sock
, ua_chan
->obj
);
497 pthread_mutex_unlock(&app
->sock_lock
);
498 if (ret
< 0 && ret
!= -EPIPE
&& ret
!= -LTTNG_UST_ERR_EXITING
) {
499 ERR("UST app sock %d release channel obj failed with ret %d",
502 lttng_fd_put(LTTNG_FD_APPS
, 1);
505 call_rcu(&ua_chan
->rcu_head
, delete_ust_app_channel_rcu
);
508 int ust_app_register_done(struct ust_app
*app
)
512 pthread_mutex_lock(&app
->sock_lock
);
513 ret
= ustctl_register_done(app
->sock
);
514 pthread_mutex_unlock(&app
->sock_lock
);
518 int ust_app_release_object(struct ust_app
*app
, struct lttng_ust_object_data
*data
)
523 pthread_mutex_lock(&app
->sock_lock
);
528 ret
= ustctl_release_object(sock
, data
);
530 pthread_mutex_unlock(&app
->sock_lock
);
536 * Push metadata to consumer socket.
538 * RCU read-side lock must be held to guarantee existance of socket.
539 * Must be called with the ust app session lock held.
540 * Must be called with the registry lock held.
542 * On success, return the len of metadata pushed or else a negative value.
543 * Returning a -EPIPE return value means we could not send the metadata,
544 * but it can be caused by recoverable errors (e.g. the application has
545 * terminated concurrently).
547 ssize_t
ust_app_push_metadata(struct ust_registry_session
*registry
,
548 struct consumer_socket
*socket
, int send_zero_data
)
551 char *metadata_str
= NULL
;
552 size_t len
, offset
, new_metadata_len_sent
;
554 uint64_t metadata_key
, metadata_version
;
559 metadata_key
= registry
->metadata_key
;
562 * Means that no metadata was assigned to the session. This can
563 * happens if no start has been done previously.
570 * On a push metadata error either the consumer is dead or the
571 * metadata channel has been destroyed because its endpoint
572 * might have died (e.g: relayd), or because the application has
573 * exited. If so, the metadata closed flag is set to 1 so we
574 * deny pushing metadata again which is not valid anymore on the
577 if (registry
->metadata_closed
) {
581 offset
= registry
->metadata_len_sent
;
582 len
= registry
->metadata_len
- registry
->metadata_len_sent
;
583 new_metadata_len_sent
= registry
->metadata_len
;
584 metadata_version
= registry
->metadata_version
;
586 DBG3("No metadata to push for metadata key %" PRIu64
,
587 registry
->metadata_key
);
589 if (send_zero_data
) {
590 DBG("No metadata to push");
596 /* Allocate only what we have to send. */
597 metadata_str
= zmalloc(len
);
599 PERROR("zmalloc ust app metadata string");
603 /* Copy what we haven't sent out. */
604 memcpy(metadata_str
, registry
->metadata
+ offset
, len
);
607 pthread_mutex_unlock(®istry
->lock
);
609 * We need to unlock the registry while we push metadata to
610 * break a circular dependency between the consumerd metadata
611 * lock and the sessiond registry lock. Indeed, pushing metadata
612 * to the consumerd awaits that it gets pushed all the way to
613 * relayd, but doing so requires grabbing the metadata lock. If
614 * a concurrent metadata request is being performed by
615 * consumerd, this can try to grab the registry lock on the
616 * sessiond while holding the metadata lock on the consumer
617 * daemon. Those push and pull schemes are performed on two
618 * different bidirectionnal communication sockets.
620 ret
= consumer_push_metadata(socket
, metadata_key
,
621 metadata_str
, len
, offset
, metadata_version
);
622 pthread_mutex_lock(®istry
->lock
);
625 * There is an acceptable race here between the registry
626 * metadata key assignment and the creation on the
627 * consumer. The session daemon can concurrently push
628 * metadata for this registry while being created on the
629 * consumer since the metadata key of the registry is
630 * assigned *before* it is setup to avoid the consumer
631 * to ask for metadata that could possibly be not found
632 * in the session daemon.
634 * The metadata will get pushed either by the session
635 * being stopped or the consumer requesting metadata if
636 * that race is triggered.
638 if (ret
== -LTTCOMM_CONSUMERD_CHANNEL_FAIL
) {
641 ERR("Error pushing metadata to consumer");
647 * Metadata may have been concurrently pushed, since
648 * we're not holding the registry lock while pushing to
649 * consumer. This is handled by the fact that we send
650 * the metadata content, size, and the offset at which
651 * that metadata belongs. This may arrive out of order
652 * on the consumer side, and the consumer is able to
653 * deal with overlapping fragments. The consumer
654 * supports overlapping fragments, which must be
655 * contiguous starting from offset 0. We keep the
656 * largest metadata_len_sent value of the concurrent
659 registry
->metadata_len_sent
=
660 max_t(size_t, registry
->metadata_len_sent
,
661 new_metadata_len_sent
);
670 * On error, flag the registry that the metadata is
671 * closed. We were unable to push anything and this
672 * means that either the consumer is not responding or
673 * the metadata cache has been destroyed on the
676 registry
->metadata_closed
= 1;
684 * For a given application and session, push metadata to consumer.
685 * Either sock or consumer is required : if sock is NULL, the default
686 * socket to send the metadata is retrieved from consumer, if sock
687 * is not NULL we use it to send the metadata.
688 * RCU read-side lock must be held while calling this function,
689 * therefore ensuring existance of registry. It also ensures existance
690 * of socket throughout this function.
692 * Return 0 on success else a negative error.
693 * Returning a -EPIPE return value means we could not send the metadata,
694 * but it can be caused by recoverable errors (e.g. the application has
695 * terminated concurrently).
697 static int push_metadata(struct ust_registry_session
*registry
,
698 struct consumer_output
*consumer
)
702 struct consumer_socket
*socket
;
707 pthread_mutex_lock(®istry
->lock
);
708 if (registry
->metadata_closed
) {
713 /* Get consumer socket to use to push the metadata.*/
714 socket
= consumer_find_socket_by_bitness(registry
->bits_per_long
,
721 ret
= ust_app_push_metadata(registry
, socket
, 0);
726 pthread_mutex_unlock(®istry
->lock
);
730 pthread_mutex_unlock(®istry
->lock
);
735 * Send to the consumer a close metadata command for the given session. Once
736 * done, the metadata channel is deleted and the session metadata pointer is
737 * nullified. The session lock MUST be held unless the application is
738 * in the destroy path.
740 * Return 0 on success else a negative value.
742 static int close_metadata(struct ust_registry_session
*registry
,
743 struct consumer_output
*consumer
)
746 struct consumer_socket
*socket
;
753 pthread_mutex_lock(®istry
->lock
);
755 if (!registry
->metadata_key
|| registry
->metadata_closed
) {
760 /* Get consumer socket to use to push the metadata.*/
761 socket
= consumer_find_socket_by_bitness(registry
->bits_per_long
,
768 ret
= consumer_close_metadata(socket
, registry
->metadata_key
);
775 * Metadata closed. Even on error this means that the consumer is not
776 * responding or not found so either way a second close should NOT be emit
779 registry
->metadata_closed
= 1;
781 pthread_mutex_unlock(®istry
->lock
);
787 * We need to execute ht_destroy outside of RCU read-side critical
788 * section and outside of call_rcu thread, so we postpone its execution
789 * using ht_cleanup_push. It is simpler than to change the semantic of
790 * the many callers of delete_ust_app_session().
793 void delete_ust_app_session_rcu(struct rcu_head
*head
)
795 struct ust_app_session
*ua_sess
=
796 caa_container_of(head
, struct ust_app_session
, rcu_head
);
798 ht_cleanup_push(ua_sess
->channels
);
803 * Delete ust app session safely. RCU read lock must be held before calling
806 * The session list lock must be held by the caller.
809 void delete_ust_app_session(int sock
, struct ust_app_session
*ua_sess
,
813 struct lttng_ht_iter iter
;
814 struct ust_app_channel
*ua_chan
;
815 struct ust_registry_session
*registry
;
819 pthread_mutex_lock(&ua_sess
->lock
);
821 assert(!ua_sess
->deleted
);
822 ua_sess
->deleted
= true;
824 registry
= get_session_registry(ua_sess
);
826 /* Push metadata for application before freeing the application. */
827 (void) push_metadata(registry
, ua_sess
->consumer
);
830 * Don't ask to close metadata for global per UID buffers. Close
831 * metadata only on destroy trace session in this case. Also, the
832 * previous push metadata could have flag the metadata registry to
833 * close so don't send a close command if closed.
835 if (ua_sess
->buffer_type
!= LTTNG_BUFFER_PER_UID
) {
836 /* And ask to close it for this session registry. */
837 (void) close_metadata(registry
, ua_sess
->consumer
);
841 cds_lfht_for_each_entry(ua_sess
->channels
->ht
, &iter
.iter
, ua_chan
,
843 ret
= lttng_ht_del(ua_sess
->channels
, &iter
);
845 delete_ust_app_channel(sock
, ua_chan
, app
);
848 /* In case of per PID, the registry is kept in the session. */
849 if (ua_sess
->buffer_type
== LTTNG_BUFFER_PER_PID
) {
850 struct buffer_reg_pid
*reg_pid
= buffer_reg_pid_find(ua_sess
->id
);
852 buffer_reg_pid_remove(reg_pid
);
853 buffer_reg_pid_destroy(reg_pid
);
857 if (ua_sess
->handle
!= -1) {
858 pthread_mutex_lock(&app
->sock_lock
);
859 ret
= ustctl_release_handle(sock
, ua_sess
->handle
);
860 pthread_mutex_unlock(&app
->sock_lock
);
861 if (ret
< 0 && ret
!= -EPIPE
&& ret
!= -LTTNG_UST_ERR_EXITING
) {
862 ERR("UST app sock %d release session handle failed with ret %d",
865 /* Remove session from application UST object descriptor. */
866 iter
.iter
.node
= &ua_sess
->ust_objd_node
.node
;
867 ret
= lttng_ht_del(app
->ust_sessions_objd
, &iter
);
871 pthread_mutex_unlock(&ua_sess
->lock
);
873 consumer_output_put(ua_sess
->consumer
);
875 call_rcu(&ua_sess
->rcu_head
, delete_ust_app_session_rcu
);
879 * Delete a traceable application structure from the global list. Never call
880 * this function outside of a call_rcu call.
882 * RCU read side lock should _NOT_ be held when calling this function.
885 void delete_ust_app(struct ust_app
*app
)
888 struct ust_app_session
*ua_sess
, *tmp_ua_sess
;
891 * The session list lock must be held during this function to guarantee
892 * the existence of ua_sess.
895 /* Delete ust app sessions info */
900 cds_list_for_each_entry_safe(ua_sess
, tmp_ua_sess
, &app
->teardown_head
,
902 /* Free every object in the session and the session. */
904 delete_ust_app_session(sock
, ua_sess
, app
);
908 ht_cleanup_push(app
->sessions
);
909 ht_cleanup_push(app
->ust_sessions_objd
);
910 ht_cleanup_push(app
->ust_objd
);
913 * Wait until we have deleted the application from the sock hash table
914 * before closing this socket, otherwise an application could re-use the
915 * socket ID and race with the teardown, using the same hash table entry.
917 * It's OK to leave the close in call_rcu. We want it to stay unique for
918 * all RCU readers that could run concurrently with unregister app,
919 * therefore we _need_ to only close that socket after a grace period. So
920 * it should stay in this RCU callback.
922 * This close() is a very important step of the synchronization model so
923 * every modification to this function must be carefully reviewed.
929 lttng_fd_put(LTTNG_FD_APPS
, 1);
931 DBG2("UST app pid %d deleted", app
->pid
);
933 session_unlock_list();
937 * URCU intermediate call to delete an UST app.
940 void delete_ust_app_rcu(struct rcu_head
*head
)
942 struct lttng_ht_node_ulong
*node
=
943 caa_container_of(head
, struct lttng_ht_node_ulong
, head
);
944 struct ust_app
*app
=
945 caa_container_of(node
, struct ust_app
, pid_n
);
947 DBG3("Call RCU deleting app PID %d", app
->pid
);
952 * Delete the session from the application ht and delete the data structure by
953 * freeing every object inside and releasing them.
955 * The session list lock must be held by the caller.
957 static void destroy_app_session(struct ust_app
*app
,
958 struct ust_app_session
*ua_sess
)
961 struct lttng_ht_iter iter
;
966 iter
.iter
.node
= &ua_sess
->node
.node
;
967 ret
= lttng_ht_del(app
->sessions
, &iter
);
969 /* Already scheduled for teardown. */
973 /* Once deleted, free the data structure. */
974 delete_ust_app_session(app
->sock
, ua_sess
, app
);
981 * Alloc new UST app session.
984 struct ust_app_session
*alloc_ust_app_session(struct ust_app
*app
)
986 struct ust_app_session
*ua_sess
;
988 /* Init most of the default value by allocating and zeroing */
989 ua_sess
= zmalloc(sizeof(struct ust_app_session
));
990 if (ua_sess
== NULL
) {
995 ua_sess
->handle
= -1;
996 ua_sess
->channels
= lttng_ht_new(0, LTTNG_HT_TYPE_STRING
);
997 ua_sess
->metadata_attr
.type
= LTTNG_UST_CHAN_METADATA
;
998 pthread_mutex_init(&ua_sess
->lock
, NULL
);
1007 * Alloc new UST app channel.
1010 struct ust_app_channel
*alloc_ust_app_channel(char *name
,
1011 struct ust_app_session
*ua_sess
,
1012 struct lttng_ust_channel_attr
*attr
)
1014 struct ust_app_channel
*ua_chan
;
1016 /* Init most of the default value by allocating and zeroing */
1017 ua_chan
= zmalloc(sizeof(struct ust_app_channel
));
1018 if (ua_chan
== NULL
) {
1023 /* Setup channel name */
1024 strncpy(ua_chan
->name
, name
, sizeof(ua_chan
->name
));
1025 ua_chan
->name
[sizeof(ua_chan
->name
) - 1] = '\0';
1027 ua_chan
->enabled
= 1;
1028 ua_chan
->handle
= -1;
1029 ua_chan
->session
= ua_sess
;
1030 ua_chan
->key
= get_next_channel_key();
1031 ua_chan
->ctx
= lttng_ht_new(0, LTTNG_HT_TYPE_ULONG
);
1032 ua_chan
->events
= lttng_ht_new(0, LTTNG_HT_TYPE_STRING
);
1033 lttng_ht_node_init_str(&ua_chan
->node
, ua_chan
->name
);
1035 CDS_INIT_LIST_HEAD(&ua_chan
->streams
.head
);
1036 CDS_INIT_LIST_HEAD(&ua_chan
->ctx_list
);
1038 /* Copy attributes */
1040 /* Translate from lttng_ust_channel to ustctl_consumer_channel_attr. */
1041 ua_chan
->attr
.subbuf_size
= attr
->subbuf_size
;
1042 ua_chan
->attr
.num_subbuf
= attr
->num_subbuf
;
1043 ua_chan
->attr
.overwrite
= attr
->overwrite
;
1044 ua_chan
->attr
.switch_timer_interval
= attr
->switch_timer_interval
;
1045 ua_chan
->attr
.read_timer_interval
= attr
->read_timer_interval
;
1046 ua_chan
->attr
.output
= attr
->output
;
1048 /* By default, the channel is a per cpu channel. */
1049 ua_chan
->attr
.type
= LTTNG_UST_CHAN_PER_CPU
;
1051 DBG3("UST app channel %s allocated", ua_chan
->name
);
1060 * Allocate and initialize a UST app stream.
1062 * Return newly allocated stream pointer or NULL on error.
1064 struct ust_app_stream
*ust_app_alloc_stream(void)
1066 struct ust_app_stream
*stream
= NULL
;
1068 stream
= zmalloc(sizeof(*stream
));
1069 if (stream
== NULL
) {
1070 PERROR("zmalloc ust app stream");
1074 /* Zero could be a valid value for a handle so flag it to -1. */
1075 stream
->handle
= -1;
1082 * Alloc new UST app event.
1085 struct ust_app_event
*alloc_ust_app_event(char *name
,
1086 struct lttng_ust_event
*attr
)
1088 struct ust_app_event
*ua_event
;
1090 /* Init most of the default value by allocating and zeroing */
1091 ua_event
= zmalloc(sizeof(struct ust_app_event
));
1092 if (ua_event
== NULL
) {
1097 ua_event
->enabled
= 1;
1098 strncpy(ua_event
->name
, name
, sizeof(ua_event
->name
));
1099 ua_event
->name
[sizeof(ua_event
->name
) - 1] = '\0';
1100 lttng_ht_node_init_str(&ua_event
->node
, ua_event
->name
);
1102 /* Copy attributes */
1104 memcpy(&ua_event
->attr
, attr
, sizeof(ua_event
->attr
));
1107 DBG3("UST app event %s allocated", ua_event
->name
);
1116 * Alloc new UST app context.
1119 struct ust_app_ctx
*alloc_ust_app_ctx(struct lttng_ust_context_attr
*uctx
)
1121 struct ust_app_ctx
*ua_ctx
;
1123 ua_ctx
= zmalloc(sizeof(struct ust_app_ctx
));
1124 if (ua_ctx
== NULL
) {
1128 CDS_INIT_LIST_HEAD(&ua_ctx
->list
);
1131 memcpy(&ua_ctx
->ctx
, uctx
, sizeof(ua_ctx
->ctx
));
1132 if (uctx
->ctx
== LTTNG_UST_CONTEXT_APP_CONTEXT
) {
1133 char *provider_name
= NULL
, *ctx_name
= NULL
;
1135 provider_name
= strdup(uctx
->u
.app_ctx
.provider_name
);
1136 ctx_name
= strdup(uctx
->u
.app_ctx
.ctx_name
);
1137 if (!provider_name
|| !ctx_name
) {
1138 free(provider_name
);
1143 ua_ctx
->ctx
.u
.app_ctx
.provider_name
= provider_name
;
1144 ua_ctx
->ctx
.u
.app_ctx
.ctx_name
= ctx_name
;
1148 DBG3("UST app context %d allocated", ua_ctx
->ctx
.ctx
);
1156 * Allocate a filter and copy the given original filter.
1158 * Return allocated filter or NULL on error.
1160 static struct lttng_filter_bytecode
*copy_filter_bytecode(
1161 struct lttng_filter_bytecode
*orig_f
)
1163 struct lttng_filter_bytecode
*filter
= NULL
;
1165 /* Copy filter bytecode */
1166 filter
= zmalloc(sizeof(*filter
) + orig_f
->len
);
1168 PERROR("zmalloc alloc filter bytecode");
1172 memcpy(filter
, orig_f
, sizeof(*filter
) + orig_f
->len
);
1179 * Create a liblttng-ust filter bytecode from given bytecode.
1181 * Return allocated filter or NULL on error.
1183 static struct lttng_ust_filter_bytecode
*create_ust_bytecode_from_bytecode(
1184 struct lttng_filter_bytecode
*orig_f
)
1186 struct lttng_ust_filter_bytecode
*filter
= NULL
;
1188 /* Copy filter bytecode */
1189 filter
= zmalloc(sizeof(*filter
) + orig_f
->len
);
1191 PERROR("zmalloc alloc ust filter bytecode");
1195 assert(sizeof(struct lttng_filter_bytecode
) ==
1196 sizeof(struct lttng_ust_filter_bytecode
));
1197 memcpy(filter
, orig_f
, sizeof(*filter
) + orig_f
->len
);
1203 * Find an ust_app using the sock and return it. RCU read side lock must be
1204 * held before calling this helper function.
1206 struct ust_app
*ust_app_find_by_sock(int sock
)
1208 struct lttng_ht_node_ulong
*node
;
1209 struct lttng_ht_iter iter
;
1211 lttng_ht_lookup(ust_app_ht_by_sock
, (void *)((unsigned long) sock
), &iter
);
1212 node
= lttng_ht_iter_get_node_ulong(&iter
);
1214 DBG2("UST app find by sock %d not found", sock
);
1218 return caa_container_of(node
, struct ust_app
, sock_n
);
1225 * Find an ust_app using the notify sock and return it. RCU read side lock must
1226 * be held before calling this helper function.
1228 static struct ust_app
*find_app_by_notify_sock(int sock
)
1230 struct lttng_ht_node_ulong
*node
;
1231 struct lttng_ht_iter iter
;
1233 lttng_ht_lookup(ust_app_ht_by_notify_sock
, (void *)((unsigned long) sock
),
1235 node
= lttng_ht_iter_get_node_ulong(&iter
);
1237 DBG2("UST app find by notify sock %d not found", sock
);
1241 return caa_container_of(node
, struct ust_app
, notify_sock_n
);
1248 * Lookup for an ust app event based on event name, filter bytecode and the
1251 * Return an ust_app_event object or NULL on error.
1253 static struct ust_app_event
*find_ust_app_event(struct lttng_ht
*ht
,
1254 char *name
, struct lttng_filter_bytecode
*filter
,
1256 const struct lttng_event_exclusion
*exclusion
)
1258 struct lttng_ht_iter iter
;
1259 struct lttng_ht_node_str
*node
;
1260 struct ust_app_event
*event
= NULL
;
1261 struct ust_app_ht_key key
;
1266 /* Setup key for event lookup. */
1268 key
.filter
= filter
;
1269 key
.loglevel_type
= loglevel_value
;
1270 /* lttng_event_exclusion and lttng_ust_event_exclusion structures are similar */
1271 key
.exclusion
= exclusion
;
1273 /* Lookup using the event name as hash and a custom match fct. */
1274 cds_lfht_lookup(ht
->ht
, ht
->hash_fct((void *) name
, lttng_ht_seed
),
1275 ht_match_ust_app_event
, &key
, &iter
.iter
);
1276 node
= lttng_ht_iter_get_node_str(&iter
);
1281 event
= caa_container_of(node
, struct ust_app_event
, node
);
1288 * Create the channel context on the tracer.
1290 * Called with UST app session lock held.
1293 int create_ust_channel_context(struct ust_app_channel
*ua_chan
,
1294 struct ust_app_ctx
*ua_ctx
, struct ust_app
*app
)
1298 health_code_update();
1300 pthread_mutex_lock(&app
->sock_lock
);
1301 ret
= ustctl_add_context(app
->sock
, &ua_ctx
->ctx
,
1302 ua_chan
->obj
, &ua_ctx
->obj
);
1303 pthread_mutex_unlock(&app
->sock_lock
);
1305 if (ret
!= -EPIPE
&& ret
!= -LTTNG_UST_ERR_EXITING
) {
1306 ERR("UST app create channel context failed for app (pid: %d) "
1307 "with ret %d", app
->pid
, ret
);
1310 * This is normal behavior, an application can die during the
1311 * creation process. Don't report an error so the execution can
1312 * continue normally.
1315 DBG3("UST app disable event failed. Application is dead.");
1320 ua_ctx
->handle
= ua_ctx
->obj
->handle
;
1322 DBG2("UST app context handle %d created successfully for channel %s",
1323 ua_ctx
->handle
, ua_chan
->name
);
1326 health_code_update();
1331 * Set the filter on the tracer.
1334 int set_ust_event_filter(struct ust_app_event
*ua_event
,
1335 struct ust_app
*app
)
1338 struct lttng_ust_filter_bytecode
*ust_bytecode
= NULL
;
1340 health_code_update();
1342 if (!ua_event
->filter
) {
1347 ust_bytecode
= create_ust_bytecode_from_bytecode(ua_event
->filter
);
1348 if (!ust_bytecode
) {
1349 ret
= -LTTNG_ERR_NOMEM
;
1352 pthread_mutex_lock(&app
->sock_lock
);
1353 ret
= ustctl_set_filter(app
->sock
, ust_bytecode
,
1355 pthread_mutex_unlock(&app
->sock_lock
);
1357 if (ret
!= -EPIPE
&& ret
!= -LTTNG_UST_ERR_EXITING
) {
1358 ERR("UST app event %s filter failed for app (pid: %d) "
1359 "with ret %d", ua_event
->attr
.name
, app
->pid
, ret
);
1362 * This is normal behavior, an application can die during the
1363 * creation process. Don't report an error so the execution can
1364 * continue normally.
1367 DBG3("UST app filter event failed. Application is dead.");
1372 DBG2("UST filter set successfully for event %s", ua_event
->name
);
1375 health_code_update();
1381 struct lttng_ust_event_exclusion
*create_ust_exclusion_from_exclusion(
1382 struct lttng_event_exclusion
*exclusion
)
1384 struct lttng_ust_event_exclusion
*ust_exclusion
= NULL
;
1385 size_t exclusion_alloc_size
= sizeof(struct lttng_ust_event_exclusion
) +
1386 LTTNG_UST_SYM_NAME_LEN
* exclusion
->count
;
1388 ust_exclusion
= zmalloc(exclusion_alloc_size
);
1389 if (!ust_exclusion
) {
1394 assert(sizeof(struct lttng_event_exclusion
) ==
1395 sizeof(struct lttng_ust_event_exclusion
));
1396 memcpy(ust_exclusion
, exclusion
, exclusion_alloc_size
);
1398 return ust_exclusion
;
1402 * Set event exclusions on the tracer.
1405 int set_ust_event_exclusion(struct ust_app_event
*ua_event
,
1406 struct ust_app
*app
)
1409 struct lttng_ust_event_exclusion
*ust_exclusion
= NULL
;
1411 health_code_update();
1413 if (!ua_event
->exclusion
|| !ua_event
->exclusion
->count
) {
1418 ust_exclusion
= create_ust_exclusion_from_exclusion(
1419 ua_event
->exclusion
);
1420 if (!ust_exclusion
) {
1421 ret
= -LTTNG_ERR_NOMEM
;
1424 pthread_mutex_lock(&app
->sock_lock
);
1425 ret
= ustctl_set_exclusion(app
->sock
, ust_exclusion
, ua_event
->obj
);
1426 pthread_mutex_unlock(&app
->sock_lock
);
1428 if (ret
!= -EPIPE
&& ret
!= -LTTNG_UST_ERR_EXITING
) {
1429 ERR("UST app event %s exclusions failed for app (pid: %d) "
1430 "with ret %d", ua_event
->attr
.name
, app
->pid
, ret
);
1433 * This is normal behavior, an application can die during the
1434 * creation process. Don't report an error so the execution can
1435 * continue normally.
1438 DBG3("UST app event exclusion failed. Application is dead.");
1443 DBG2("UST exclusion set successfully for event %s", ua_event
->name
);
1446 health_code_update();
1447 free(ust_exclusion
);
1452 * Disable the specified event on to UST tracer for the UST session.
1454 static int disable_ust_event(struct ust_app
*app
,
1455 struct ust_app_session
*ua_sess
, struct ust_app_event
*ua_event
)
1459 health_code_update();
1461 pthread_mutex_lock(&app
->sock_lock
);
1462 ret
= ustctl_disable(app
->sock
, ua_event
->obj
);
1463 pthread_mutex_unlock(&app
->sock_lock
);
1465 if (ret
!= -EPIPE
&& ret
!= -LTTNG_UST_ERR_EXITING
) {
1466 ERR("UST app event %s disable failed for app (pid: %d) "
1467 "and session handle %d with ret %d",
1468 ua_event
->attr
.name
, app
->pid
, ua_sess
->handle
, ret
);
1471 * This is normal behavior, an application can die during the
1472 * creation process. Don't report an error so the execution can
1473 * continue normally.
1476 DBG3("UST app disable event failed. Application is dead.");
1481 DBG2("UST app event %s disabled successfully for app (pid: %d)",
1482 ua_event
->attr
.name
, app
->pid
);
1485 health_code_update();
1490 * Disable the specified channel on to UST tracer for the UST session.
1492 static int disable_ust_channel(struct ust_app
*app
,
1493 struct ust_app_session
*ua_sess
, struct ust_app_channel
*ua_chan
)
1497 health_code_update();
1499 pthread_mutex_lock(&app
->sock_lock
);
1500 ret
= ustctl_disable(app
->sock
, ua_chan
->obj
);
1501 pthread_mutex_unlock(&app
->sock_lock
);
1503 if (ret
!= -EPIPE
&& ret
!= -LTTNG_UST_ERR_EXITING
) {
1504 ERR("UST app channel %s disable failed for app (pid: %d) "
1505 "and session handle %d with ret %d",
1506 ua_chan
->name
, app
->pid
, ua_sess
->handle
, ret
);
1509 * This is normal behavior, an application can die during the
1510 * creation process. Don't report an error so the execution can
1511 * continue normally.
1514 DBG3("UST app disable channel failed. Application is dead.");
1519 DBG2("UST app channel %s disabled successfully for app (pid: %d)",
1520 ua_chan
->name
, app
->pid
);
1523 health_code_update();
1528 * Enable the specified channel on to UST tracer for the UST session.
1530 static int enable_ust_channel(struct ust_app
*app
,
1531 struct ust_app_session
*ua_sess
, struct ust_app_channel
*ua_chan
)
1535 health_code_update();
1537 pthread_mutex_lock(&app
->sock_lock
);
1538 ret
= ustctl_enable(app
->sock
, ua_chan
->obj
);
1539 pthread_mutex_unlock(&app
->sock_lock
);
1541 if (ret
!= -EPIPE
&& ret
!= -LTTNG_UST_ERR_EXITING
) {
1542 ERR("UST app channel %s enable failed for app (pid: %d) "
1543 "and session handle %d with ret %d",
1544 ua_chan
->name
, app
->pid
, ua_sess
->handle
, ret
);
1547 * This is normal behavior, an application can die during the
1548 * creation process. Don't report an error so the execution can
1549 * continue normally.
1552 DBG3("UST app enable channel failed. Application is dead.");
1557 ua_chan
->enabled
= 1;
1559 DBG2("UST app channel %s enabled successfully for app (pid: %d)",
1560 ua_chan
->name
, app
->pid
);
1563 health_code_update();
1568 * Enable the specified event on to UST tracer for the UST session.
1570 static int enable_ust_event(struct ust_app
*app
,
1571 struct ust_app_session
*ua_sess
, struct ust_app_event
*ua_event
)
1575 health_code_update();
1577 pthread_mutex_lock(&app
->sock_lock
);
1578 ret
= ustctl_enable(app
->sock
, ua_event
->obj
);
1579 pthread_mutex_unlock(&app
->sock_lock
);
1581 if (ret
!= -EPIPE
&& ret
!= -LTTNG_UST_ERR_EXITING
) {
1582 ERR("UST app event %s enable failed for app (pid: %d) "
1583 "and session handle %d with ret %d",
1584 ua_event
->attr
.name
, app
->pid
, ua_sess
->handle
, ret
);
1587 * This is normal behavior, an application can die during the
1588 * creation process. Don't report an error so the execution can
1589 * continue normally.
1592 DBG3("UST app enable event failed. Application is dead.");
1597 DBG2("UST app event %s enabled successfully for app (pid: %d)",
1598 ua_event
->attr
.name
, app
->pid
);
1601 health_code_update();
1606 * Send channel and stream buffer to application.
1608 * Return 0 on success. On error, a negative value is returned.
1610 static int send_channel_pid_to_ust(struct ust_app
*app
,
1611 struct ust_app_session
*ua_sess
, struct ust_app_channel
*ua_chan
)
1614 struct ust_app_stream
*stream
, *stmp
;
1620 health_code_update();
1622 DBG("UST app sending channel %s to UST app sock %d", ua_chan
->name
,
1625 /* Send channel to the application. */
1626 ret
= ust_consumer_send_channel_to_ust(app
, ua_sess
, ua_chan
);
1627 if (ret
== -EPIPE
|| ret
== -LTTNG_UST_ERR_EXITING
) {
1628 ret
= -ENOTCONN
; /* Caused by app exiting. */
1630 } else if (ret
< 0) {
1634 health_code_update();
1636 /* Send all streams to application. */
1637 cds_list_for_each_entry_safe(stream
, stmp
, &ua_chan
->streams
.head
, list
) {
1638 ret
= ust_consumer_send_stream_to_ust(app
, ua_chan
, stream
);
1639 if (ret
== -EPIPE
|| ret
== -LTTNG_UST_ERR_EXITING
) {
1640 ret
= -ENOTCONN
; /* Caused by app exiting. */
1642 } else if (ret
< 0) {
1645 /* We don't need the stream anymore once sent to the tracer. */
1646 cds_list_del(&stream
->list
);
1647 delete_ust_app_stream(-1, stream
, app
);
1649 /* Flag the channel that it is sent to the application. */
1650 ua_chan
->is_sent
= 1;
1653 health_code_update();
1658 * Create the specified event onto the UST tracer for a UST session.
1660 * Should be called with session mutex held.
1663 int create_ust_event(struct ust_app
*app
, struct ust_app_session
*ua_sess
,
1664 struct ust_app_channel
*ua_chan
, struct ust_app_event
*ua_event
)
1668 health_code_update();
1670 /* Create UST event on tracer */
1671 pthread_mutex_lock(&app
->sock_lock
);
1672 ret
= ustctl_create_event(app
->sock
, &ua_event
->attr
, ua_chan
->obj
,
1674 pthread_mutex_unlock(&app
->sock_lock
);
1676 if (ret
!= -EPIPE
&& ret
!= -LTTNG_UST_ERR_EXITING
) {
1677 ERR("Error ustctl create event %s for app pid: %d with ret %d",
1678 ua_event
->attr
.name
, app
->pid
, ret
);
1681 * This is normal behavior, an application can die during the
1682 * creation process. Don't report an error so the execution can
1683 * continue normally.
1686 DBG3("UST app create event failed. Application is dead.");
1691 ua_event
->handle
= ua_event
->obj
->handle
;
1693 DBG2("UST app event %s created successfully for pid:%d",
1694 ua_event
->attr
.name
, app
->pid
);
1696 health_code_update();
1698 /* Set filter if one is present. */
1699 if (ua_event
->filter
) {
1700 ret
= set_ust_event_filter(ua_event
, app
);
1706 /* Set exclusions for the event */
1707 if (ua_event
->exclusion
) {
1708 ret
= set_ust_event_exclusion(ua_event
, app
);
1714 /* If event not enabled, disable it on the tracer */
1715 if (ua_event
->enabled
) {
1717 * We now need to explicitly enable the event, since it
1718 * is now disabled at creation.
1720 ret
= enable_ust_event(app
, ua_sess
, ua_event
);
1723 * If we hit an EPERM, something is wrong with our enable call. If
1724 * we get an EEXIST, there is a problem on the tracer side since we
1728 case -LTTNG_UST_ERR_PERM
:
1729 /* Code flow problem */
1731 case -LTTNG_UST_ERR_EXIST
:
1732 /* It's OK for our use case. */
1743 health_code_update();
1748 * Copy data between an UST app event and a LTT event.
1750 static void shadow_copy_event(struct ust_app_event
*ua_event
,
1751 struct ltt_ust_event
*uevent
)
1753 size_t exclusion_alloc_size
;
1755 strncpy(ua_event
->name
, uevent
->attr
.name
, sizeof(ua_event
->name
));
1756 ua_event
->name
[sizeof(ua_event
->name
) - 1] = '\0';
1758 ua_event
->enabled
= uevent
->enabled
;
1760 /* Copy event attributes */
1761 memcpy(&ua_event
->attr
, &uevent
->attr
, sizeof(ua_event
->attr
));
1763 /* Copy filter bytecode */
1764 if (uevent
->filter
) {
1765 ua_event
->filter
= copy_filter_bytecode(uevent
->filter
);
1766 /* Filter might be NULL here in case of ENONEM. */
1769 /* Copy exclusion data */
1770 if (uevent
->exclusion
) {
1771 exclusion_alloc_size
= sizeof(struct lttng_event_exclusion
) +
1772 LTTNG_UST_SYM_NAME_LEN
* uevent
->exclusion
->count
;
1773 ua_event
->exclusion
= zmalloc(exclusion_alloc_size
);
1774 if (ua_event
->exclusion
== NULL
) {
1777 memcpy(ua_event
->exclusion
, uevent
->exclusion
,
1778 exclusion_alloc_size
);
1784 * Copy data between an UST app channel and a LTT channel.
1786 static void shadow_copy_channel(struct ust_app_channel
*ua_chan
,
1787 struct ltt_ust_channel
*uchan
)
1789 struct lttng_ht_iter iter
;
1790 struct ltt_ust_event
*uevent
;
1791 struct ltt_ust_context
*uctx
;
1792 struct ust_app_event
*ua_event
;
1794 DBG2("UST app shadow copy of channel %s started", ua_chan
->name
);
1796 strncpy(ua_chan
->name
, uchan
->name
, sizeof(ua_chan
->name
));
1797 ua_chan
->name
[sizeof(ua_chan
->name
) - 1] = '\0';
1799 ua_chan
->tracefile_size
= uchan
->tracefile_size
;
1800 ua_chan
->tracefile_count
= uchan
->tracefile_count
;
1802 /* Copy event attributes since the layout is different. */
1803 ua_chan
->attr
.subbuf_size
= uchan
->attr
.subbuf_size
;
1804 ua_chan
->attr
.num_subbuf
= uchan
->attr
.num_subbuf
;
1805 ua_chan
->attr
.overwrite
= uchan
->attr
.overwrite
;
1806 ua_chan
->attr
.switch_timer_interval
= uchan
->attr
.switch_timer_interval
;
1807 ua_chan
->attr
.read_timer_interval
= uchan
->attr
.read_timer_interval
;
1808 ua_chan
->attr
.output
= uchan
->attr
.output
;
1810 * Note that the attribute channel type is not set since the channel on the
1811 * tracing registry side does not have this information.
1814 ua_chan
->enabled
= uchan
->enabled
;
1815 ua_chan
->tracing_channel_id
= uchan
->id
;
1817 cds_list_for_each_entry(uctx
, &uchan
->ctx_list
, list
) {
1818 struct ust_app_ctx
*ua_ctx
= alloc_ust_app_ctx(&uctx
->ctx
);
1820 if (ua_ctx
== NULL
) {
1823 lttng_ht_node_init_ulong(&ua_ctx
->node
,
1824 (unsigned long) ua_ctx
->ctx
.ctx
);
1825 lttng_ht_add_ulong(ua_chan
->ctx
, &ua_ctx
->node
);
1826 cds_list_add_tail(&ua_ctx
->list
, &ua_chan
->ctx_list
);
1829 /* Copy all events from ltt ust channel to ust app channel */
1830 cds_lfht_for_each_entry(uchan
->events
->ht
, &iter
.iter
, uevent
, node
.node
) {
1831 ua_event
= find_ust_app_event(ua_chan
->events
, uevent
->attr
.name
,
1832 uevent
->filter
, uevent
->attr
.loglevel
, uevent
->exclusion
);
1833 if (ua_event
== NULL
) {
1834 DBG2("UST event %s not found on shadow copy channel",
1836 ua_event
= alloc_ust_app_event(uevent
->attr
.name
, &uevent
->attr
);
1837 if (ua_event
== NULL
) {
1840 shadow_copy_event(ua_event
, uevent
);
1841 add_unique_ust_app_event(ua_chan
, ua_event
);
1845 DBG3("UST app shadow copy of channel %s done", ua_chan
->name
);
1849 * Copy data between a UST app session and a regular LTT session.
1851 static void shadow_copy_session(struct ust_app_session
*ua_sess
,
1852 struct ltt_ust_session
*usess
, struct ust_app
*app
)
1854 struct lttng_ht_node_str
*ua_chan_node
;
1855 struct lttng_ht_iter iter
;
1856 struct ltt_ust_channel
*uchan
;
1857 struct ust_app_channel
*ua_chan
;
1859 struct tm
*timeinfo
;
1862 char tmp_shm_path
[PATH_MAX
];
1864 /* Get date and time for unique app path */
1866 timeinfo
= localtime(&rawtime
);
1867 strftime(datetime
, sizeof(datetime
), "%Y%m%d-%H%M%S", timeinfo
);
1869 DBG2("Shadow copy of session handle %d", ua_sess
->handle
);
1871 ua_sess
->tracing_id
= usess
->id
;
1872 ua_sess
->id
= get_next_session_id();
1873 ua_sess
->uid
= app
->uid
;
1874 ua_sess
->gid
= app
->gid
;
1875 ua_sess
->euid
= usess
->uid
;
1876 ua_sess
->egid
= usess
->gid
;
1877 ua_sess
->buffer_type
= usess
->buffer_type
;
1878 ua_sess
->bits_per_long
= app
->bits_per_long
;
1880 /* There is only one consumer object per session possible. */
1881 consumer_output_get(usess
->consumer
);
1882 ua_sess
->consumer
= usess
->consumer
;
1884 ua_sess
->output_traces
= usess
->output_traces
;
1885 ua_sess
->live_timer_interval
= usess
->live_timer_interval
;
1886 copy_channel_attr_to_ustctl(&ua_sess
->metadata_attr
,
1887 &usess
->metadata_attr
);
1889 switch (ua_sess
->buffer_type
) {
1890 case LTTNG_BUFFER_PER_PID
:
1891 ret
= snprintf(ua_sess
->path
, sizeof(ua_sess
->path
),
1892 DEFAULT_UST_TRACE_PID_PATH
"/%s-%d-%s", app
->name
, app
->pid
,
1895 case LTTNG_BUFFER_PER_UID
:
1896 ret
= snprintf(ua_sess
->path
, sizeof(ua_sess
->path
),
1897 DEFAULT_UST_TRACE_UID_PATH
, ua_sess
->uid
, app
->bits_per_long
);
1904 PERROR("asprintf UST shadow copy session");
1909 strncpy(ua_sess
->root_shm_path
, usess
->root_shm_path
,
1910 sizeof(ua_sess
->root_shm_path
));
1911 ua_sess
->root_shm_path
[sizeof(ua_sess
->root_shm_path
) - 1] = '\0';
1912 strncpy(ua_sess
->shm_path
, usess
->shm_path
,
1913 sizeof(ua_sess
->shm_path
));
1914 ua_sess
->shm_path
[sizeof(ua_sess
->shm_path
) - 1] = '\0';
1915 if (ua_sess
->shm_path
[0]) {
1916 switch (ua_sess
->buffer_type
) {
1917 case LTTNG_BUFFER_PER_PID
:
1918 ret
= snprintf(tmp_shm_path
, sizeof(tmp_shm_path
),
1919 DEFAULT_UST_TRACE_PID_PATH
"/%s-%d-%s",
1920 app
->name
, app
->pid
, datetime
);
1922 case LTTNG_BUFFER_PER_UID
:
1923 ret
= snprintf(tmp_shm_path
, sizeof(tmp_shm_path
),
1924 DEFAULT_UST_TRACE_UID_PATH
,
1925 app
->uid
, app
->bits_per_long
);
1932 PERROR("sprintf UST shadow copy session");
1936 strncat(ua_sess
->shm_path
, tmp_shm_path
,
1937 sizeof(ua_sess
->shm_path
) - strlen(ua_sess
->shm_path
) - 1);
1938 ua_sess
->shm_path
[sizeof(ua_sess
->shm_path
) - 1] = '\0';
1941 /* Iterate over all channels in global domain. */
1942 cds_lfht_for_each_entry(usess
->domain_global
.channels
->ht
, &iter
.iter
,
1944 struct lttng_ht_iter uiter
;
1946 lttng_ht_lookup(ua_sess
->channels
, (void *)uchan
->name
, &uiter
);
1947 ua_chan_node
= lttng_ht_iter_get_node_str(&uiter
);
1948 if (ua_chan_node
!= NULL
) {
1949 /* Session exist. Contiuing. */
1953 DBG2("Channel %s not found on shadow session copy, creating it",
1955 ua_chan
= alloc_ust_app_channel(uchan
->name
, ua_sess
,
1957 if (ua_chan
== NULL
) {
1958 /* malloc failed FIXME: Might want to do handle ENOMEM .. */
1961 shadow_copy_channel(ua_chan
, uchan
);
1963 * The concept of metadata channel does not exist on the tracing
1964 * registry side of the session daemon so this can only be a per CPU
1965 * channel and not metadata.
1967 ua_chan
->attr
.type
= LTTNG_UST_CHAN_PER_CPU
;
1969 lttng_ht_add_unique_str(ua_sess
->channels
, &ua_chan
->node
);
1974 consumer_output_put(ua_sess
->consumer
);
1978 * Lookup sesison wrapper.
1981 void __lookup_session_by_app(struct ltt_ust_session
*usess
,
1982 struct ust_app
*app
, struct lttng_ht_iter
*iter
)
1984 /* Get right UST app session from app */
1985 lttng_ht_lookup(app
->sessions
, &usess
->id
, iter
);
1989 * Return ust app session from the app session hashtable using the UST session
1992 static struct ust_app_session
*lookup_session_by_app(
1993 struct ltt_ust_session
*usess
, struct ust_app
*app
)
1995 struct lttng_ht_iter iter
;
1996 struct lttng_ht_node_u64
*node
;
1998 __lookup_session_by_app(usess
, app
, &iter
);
1999 node
= lttng_ht_iter_get_node_u64(&iter
);
2004 return caa_container_of(node
, struct ust_app_session
, node
);
2011 * Setup buffer registry per PID for the given session and application. If none
2012 * is found, a new one is created, added to the global registry and
2013 * initialized. If regp is valid, it's set with the newly created object.
2015 * Return 0 on success or else a negative value.
2017 static int setup_buffer_reg_pid(struct ust_app_session
*ua_sess
,
2018 struct ust_app
*app
, struct buffer_reg_pid
**regp
)
2021 struct buffer_reg_pid
*reg_pid
;
2028 reg_pid
= buffer_reg_pid_find(ua_sess
->id
);
2031 * This is the create channel path meaning that if there is NO
2032 * registry available, we have to create one for this session.
2034 ret
= buffer_reg_pid_create(ua_sess
->id
, ®_pid
,
2035 ua_sess
->root_shm_path
, ua_sess
->shm_path
);
2043 /* Initialize registry. */
2044 ret
= ust_registry_session_init(®_pid
->registry
->reg
.ust
, app
,
2045 app
->bits_per_long
, app
->uint8_t_alignment
,
2046 app
->uint16_t_alignment
, app
->uint32_t_alignment
,
2047 app
->uint64_t_alignment
, app
->long_alignment
,
2048 app
->byte_order
, app
->version
.major
,
2049 app
->version
.minor
, reg_pid
->root_shm_path
,
2051 ua_sess
->euid
, ua_sess
->egid
);
2054 * reg_pid->registry->reg.ust is NULL upon error, so we need to
2055 * destroy the buffer registry, because it is always expected
2056 * that if the buffer registry can be found, its ust registry is
2059 buffer_reg_pid_destroy(reg_pid
);
2063 buffer_reg_pid_add(reg_pid
);
2065 DBG3("UST app buffer registry per PID created successfully");
2077 * Setup buffer registry per UID for the given session and application. If none
2078 * is found, a new one is created, added to the global registry and
2079 * initialized. If regp is valid, it's set with the newly created object.
2081 * Return 0 on success or else a negative value.
2083 static int setup_buffer_reg_uid(struct ltt_ust_session
*usess
,
2084 struct ust_app_session
*ua_sess
,
2085 struct ust_app
*app
, struct buffer_reg_uid
**regp
)
2088 struct buffer_reg_uid
*reg_uid
;
2095 reg_uid
= buffer_reg_uid_find(usess
->id
, app
->bits_per_long
, app
->uid
);
2098 * This is the create channel path meaning that if there is NO
2099 * registry available, we have to create one for this session.
2101 ret
= buffer_reg_uid_create(usess
->id
, app
->bits_per_long
, app
->uid
,
2102 LTTNG_DOMAIN_UST
, ®_uid
,
2103 ua_sess
->root_shm_path
, ua_sess
->shm_path
);
2111 /* Initialize registry. */
2112 ret
= ust_registry_session_init(®_uid
->registry
->reg
.ust
, NULL
,
2113 app
->bits_per_long
, app
->uint8_t_alignment
,
2114 app
->uint16_t_alignment
, app
->uint32_t_alignment
,
2115 app
->uint64_t_alignment
, app
->long_alignment
,
2116 app
->byte_order
, app
->version
.major
,
2117 app
->version
.minor
, reg_uid
->root_shm_path
,
2118 reg_uid
->shm_path
, usess
->uid
, usess
->gid
);
2121 * reg_uid->registry->reg.ust is NULL upon error, so we need to
2122 * destroy the buffer registry, because it is always expected
2123 * that if the buffer registry can be found, its ust registry is
2126 buffer_reg_uid_destroy(reg_uid
, NULL
);
2129 /* Add node to teardown list of the session. */
2130 cds_list_add(®_uid
->lnode
, &usess
->buffer_reg_uid_list
);
2132 buffer_reg_uid_add(reg_uid
);
2134 DBG3("UST app buffer registry per UID created successfully");
2145 * Create a session on the tracer side for the given app.
2147 * On success, ua_sess_ptr is populated with the session pointer or else left
2148 * untouched. If the session was created, is_created is set to 1. On error,
2149 * it's left untouched. Note that ua_sess_ptr is mandatory but is_created can
2152 * Returns 0 on success or else a negative code which is either -ENOMEM or
2153 * -ENOTCONN which is the default code if the ustctl_create_session fails.
2155 static int create_ust_app_session(struct ltt_ust_session
*usess
,
2156 struct ust_app
*app
, struct ust_app_session
**ua_sess_ptr
,
2159 int ret
, created
= 0;
2160 struct ust_app_session
*ua_sess
;
2164 assert(ua_sess_ptr
);
2166 health_code_update();
2168 ua_sess
= lookup_session_by_app(usess
, app
);
2169 if (ua_sess
== NULL
) {
2170 DBG2("UST app pid: %d session id %" PRIu64
" not found, creating it",
2171 app
->pid
, usess
->id
);
2172 ua_sess
= alloc_ust_app_session(app
);
2173 if (ua_sess
== NULL
) {
2174 /* Only malloc can failed so something is really wrong */
2178 shadow_copy_session(ua_sess
, usess
, app
);
2182 switch (usess
->buffer_type
) {
2183 case LTTNG_BUFFER_PER_PID
:
2184 /* Init local registry. */
2185 ret
= setup_buffer_reg_pid(ua_sess
, app
, NULL
);
2187 delete_ust_app_session(-1, ua_sess
, app
);
2191 case LTTNG_BUFFER_PER_UID
:
2192 /* Look for a global registry. If none exists, create one. */
2193 ret
= setup_buffer_reg_uid(usess
, ua_sess
, app
, NULL
);
2195 delete_ust_app_session(-1, ua_sess
, app
);
2205 health_code_update();
2207 if (ua_sess
->handle
== -1) {
2208 pthread_mutex_lock(&app
->sock_lock
);
2209 ret
= ustctl_create_session(app
->sock
);
2210 pthread_mutex_unlock(&app
->sock_lock
);
2212 if (ret
!= -EPIPE
&& ret
!= -LTTNG_UST_ERR_EXITING
) {
2213 ERR("Creating session for app pid %d with ret %d",
2216 DBG("UST app creating session failed. Application is dead");
2218 * This is normal behavior, an application can die during the
2219 * creation process. Don't report an error so the execution can
2220 * continue normally. This will get flagged ENOTCONN and the
2221 * caller will handle it.
2225 delete_ust_app_session(-1, ua_sess
, app
);
2226 if (ret
!= -ENOMEM
) {
2228 * Tracer is probably gone or got an internal error so let's
2229 * behave like it will soon unregister or not usable.
2236 ua_sess
->handle
= ret
;
2238 /* Add ust app session to app's HT */
2239 lttng_ht_node_init_u64(&ua_sess
->node
,
2240 ua_sess
->tracing_id
);
2241 lttng_ht_add_unique_u64(app
->sessions
, &ua_sess
->node
);
2242 lttng_ht_node_init_ulong(&ua_sess
->ust_objd_node
, ua_sess
->handle
);
2243 lttng_ht_add_unique_ulong(app
->ust_sessions_objd
,
2244 &ua_sess
->ust_objd_node
);
2246 DBG2("UST app session created successfully with handle %d", ret
);
2249 *ua_sess_ptr
= ua_sess
;
2251 *is_created
= created
;
2254 /* Everything went well. */
2258 health_code_update();
2263 * Match function for a hash table lookup of ust_app_ctx.
2265 * It matches an ust app context based on the context type and, in the case
2266 * of perf counters, their name.
2268 static int ht_match_ust_app_ctx(struct cds_lfht_node
*node
, const void *_key
)
2270 struct ust_app_ctx
*ctx
;
2271 const struct lttng_ust_context_attr
*key
;
2276 ctx
= caa_container_of(node
, struct ust_app_ctx
, node
.node
);
2280 if (ctx
->ctx
.ctx
!= key
->ctx
) {
2285 case LTTNG_UST_CONTEXT_PERF_THREAD_COUNTER
:
2286 if (strncmp(key
->u
.perf_counter
.name
,
2287 ctx
->ctx
.u
.perf_counter
.name
,
2288 sizeof(key
->u
.perf_counter
.name
))) {
2292 case LTTNG_UST_CONTEXT_APP_CONTEXT
:
2293 if (strcmp(key
->u
.app_ctx
.provider_name
,
2294 ctx
->ctx
.u
.app_ctx
.provider_name
) ||
2295 strcmp(key
->u
.app_ctx
.ctx_name
,
2296 ctx
->ctx
.u
.app_ctx
.ctx_name
)) {
2312 * Lookup for an ust app context from an lttng_ust_context.
2314 * Must be called while holding RCU read side lock.
2315 * Return an ust_app_ctx object or NULL on error.
2318 struct ust_app_ctx
*find_ust_app_context(struct lttng_ht
*ht
,
2319 struct lttng_ust_context_attr
*uctx
)
2321 struct lttng_ht_iter iter
;
2322 struct lttng_ht_node_ulong
*node
;
2323 struct ust_app_ctx
*app_ctx
= NULL
;
2328 /* Lookup using the lttng_ust_context_type and a custom match fct. */
2329 cds_lfht_lookup(ht
->ht
, ht
->hash_fct((void *) uctx
->ctx
, lttng_ht_seed
),
2330 ht_match_ust_app_ctx
, uctx
, &iter
.iter
);
2331 node
= lttng_ht_iter_get_node_ulong(&iter
);
2336 app_ctx
= caa_container_of(node
, struct ust_app_ctx
, node
);
2343 * Create a context for the channel on the tracer.
2345 * Called with UST app session lock held and a RCU read side lock.
2348 int create_ust_app_channel_context(struct ust_app_session
*ua_sess
,
2349 struct ust_app_channel
*ua_chan
,
2350 struct lttng_ust_context_attr
*uctx
,
2351 struct ust_app
*app
)
2354 struct ust_app_ctx
*ua_ctx
;
2356 DBG2("UST app adding context to channel %s", ua_chan
->name
);
2358 ua_ctx
= find_ust_app_context(ua_chan
->ctx
, uctx
);
2364 ua_ctx
= alloc_ust_app_ctx(uctx
);
2365 if (ua_ctx
== NULL
) {
2371 lttng_ht_node_init_ulong(&ua_ctx
->node
, (unsigned long) ua_ctx
->ctx
.ctx
);
2372 lttng_ht_add_ulong(ua_chan
->ctx
, &ua_ctx
->node
);
2373 cds_list_add_tail(&ua_ctx
->list
, &ua_chan
->ctx_list
);
2375 ret
= create_ust_channel_context(ua_chan
, ua_ctx
, app
);
2385 * Enable on the tracer side a ust app event for the session and channel.
2387 * Called with UST app session lock held.
2390 int enable_ust_app_event(struct ust_app_session
*ua_sess
,
2391 struct ust_app_event
*ua_event
, struct ust_app
*app
)
2395 ret
= enable_ust_event(app
, ua_sess
, ua_event
);
2400 ua_event
->enabled
= 1;
2407 * Disable on the tracer side a ust app event for the session and channel.
2409 static int disable_ust_app_event(struct ust_app_session
*ua_sess
,
2410 struct ust_app_event
*ua_event
, struct ust_app
*app
)
2414 ret
= disable_ust_event(app
, ua_sess
, ua_event
);
2419 ua_event
->enabled
= 0;
2426 * Lookup ust app channel for session and disable it on the tracer side.
2429 int disable_ust_app_channel(struct ust_app_session
*ua_sess
,
2430 struct ust_app_channel
*ua_chan
, struct ust_app
*app
)
2434 ret
= disable_ust_channel(app
, ua_sess
, ua_chan
);
2439 ua_chan
->enabled
= 0;
2446 * Lookup ust app channel for session and enable it on the tracer side. This
2447 * MUST be called with a RCU read side lock acquired.
2449 static int enable_ust_app_channel(struct ust_app_session
*ua_sess
,
2450 struct ltt_ust_channel
*uchan
, struct ust_app
*app
)
2453 struct lttng_ht_iter iter
;
2454 struct lttng_ht_node_str
*ua_chan_node
;
2455 struct ust_app_channel
*ua_chan
;
2457 lttng_ht_lookup(ua_sess
->channels
, (void *)uchan
->name
, &iter
);
2458 ua_chan_node
= lttng_ht_iter_get_node_str(&iter
);
2459 if (ua_chan_node
== NULL
) {
2460 DBG2("Unable to find channel %s in ust session id %" PRIu64
,
2461 uchan
->name
, ua_sess
->tracing_id
);
2465 ua_chan
= caa_container_of(ua_chan_node
, struct ust_app_channel
, node
);
2467 ret
= enable_ust_channel(app
, ua_sess
, ua_chan
);
2477 * Ask the consumer to create a channel and get it if successful.
2479 * Return 0 on success or else a negative value.
2481 static int do_consumer_create_channel(struct ltt_ust_session
*usess
,
2482 struct ust_app_session
*ua_sess
, struct ust_app_channel
*ua_chan
,
2483 int bitness
, struct ust_registry_session
*registry
)
2486 unsigned int nb_fd
= 0;
2487 struct consumer_socket
*socket
;
2495 health_code_update();
2497 /* Get the right consumer socket for the application. */
2498 socket
= consumer_find_socket_by_bitness(bitness
, usess
->consumer
);
2504 health_code_update();
2506 /* Need one fd for the channel. */
2507 ret
= lttng_fd_get(LTTNG_FD_APPS
, 1);
2509 ERR("Exhausted number of available FD upon create channel");
2514 * Ask consumer to create channel. The consumer will return the number of
2515 * stream we have to expect.
2517 ret
= ust_consumer_ask_channel(ua_sess
, ua_chan
, usess
->consumer
, socket
,
2524 * Compute the number of fd needed before receiving them. It must be 2 per
2525 * stream (2 being the default value here).
2527 nb_fd
= DEFAULT_UST_STREAM_FD_NUM
* ua_chan
->expected_stream_count
;
2529 /* Reserve the amount of file descriptor we need. */
2530 ret
= lttng_fd_get(LTTNG_FD_APPS
, nb_fd
);
2532 ERR("Exhausted number of available FD upon create channel");
2533 goto error_fd_get_stream
;
2536 health_code_update();
2539 * Now get the channel from the consumer. This call wil populate the stream
2540 * list of that channel and set the ust objects.
2542 if (usess
->consumer
->enabled
) {
2543 ret
= ust_consumer_get_channel(socket
, ua_chan
);
2553 lttng_fd_put(LTTNG_FD_APPS
, nb_fd
);
2554 error_fd_get_stream
:
2556 * Initiate a destroy channel on the consumer since we had an error
2557 * handling it on our side. The return value is of no importance since we
2558 * already have a ret value set by the previous error that we need to
2561 (void) ust_consumer_destroy_channel(socket
, ua_chan
);
2563 lttng_fd_put(LTTNG_FD_APPS
, 1);
2565 health_code_update();
2571 * Duplicate the ust data object of the ust app stream and save it in the
2572 * buffer registry stream.
2574 * Return 0 on success or else a negative value.
2576 static int duplicate_stream_object(struct buffer_reg_stream
*reg_stream
,
2577 struct ust_app_stream
*stream
)
2584 /* Reserve the amount of file descriptor we need. */
2585 ret
= lttng_fd_get(LTTNG_FD_APPS
, 2);
2587 ERR("Exhausted number of available FD upon duplicate stream");
2591 /* Duplicate object for stream once the original is in the registry. */
2592 ret
= ustctl_duplicate_ust_object_data(&stream
->obj
,
2593 reg_stream
->obj
.ust
);
2595 ERR("Duplicate stream obj from %p to %p failed with ret %d",
2596 reg_stream
->obj
.ust
, stream
->obj
, ret
);
2597 lttng_fd_put(LTTNG_FD_APPS
, 2);
2600 stream
->handle
= stream
->obj
->handle
;
2607 * Duplicate the ust data object of the ust app. channel and save it in the
2608 * buffer registry channel.
2610 * Return 0 on success or else a negative value.
2612 static int duplicate_channel_object(struct buffer_reg_channel
*reg_chan
,
2613 struct ust_app_channel
*ua_chan
)
2620 /* Need two fds for the channel. */
2621 ret
= lttng_fd_get(LTTNG_FD_APPS
, 1);
2623 ERR("Exhausted number of available FD upon duplicate channel");
2627 /* Duplicate object for stream once the original is in the registry. */
2628 ret
= ustctl_duplicate_ust_object_data(&ua_chan
->obj
, reg_chan
->obj
.ust
);
2630 ERR("Duplicate channel obj from %p to %p failed with ret: %d",
2631 reg_chan
->obj
.ust
, ua_chan
->obj
, ret
);
2634 ua_chan
->handle
= ua_chan
->obj
->handle
;
2639 lttng_fd_put(LTTNG_FD_APPS
, 1);
2645 * For a given channel buffer registry, setup all streams of the given ust
2646 * application channel.
2648 * Return 0 on success or else a negative value.
2650 static int setup_buffer_reg_streams(struct buffer_reg_channel
*reg_chan
,
2651 struct ust_app_channel
*ua_chan
,
2652 struct ust_app
*app
)
2655 struct ust_app_stream
*stream
, *stmp
;
2660 DBG2("UST app setup buffer registry stream");
2662 /* Send all streams to application. */
2663 cds_list_for_each_entry_safe(stream
, stmp
, &ua_chan
->streams
.head
, list
) {
2664 struct buffer_reg_stream
*reg_stream
;
2666 ret
= buffer_reg_stream_create(®_stream
);
2672 * Keep original pointer and nullify it in the stream so the delete
2673 * stream call does not release the object.
2675 reg_stream
->obj
.ust
= stream
->obj
;
2677 buffer_reg_stream_add(reg_stream
, reg_chan
);
2679 /* We don't need the streams anymore. */
2680 cds_list_del(&stream
->list
);
2681 delete_ust_app_stream(-1, stream
, app
);
2689 * Create a buffer registry channel for the given session registry and
2690 * application channel object. If regp pointer is valid, it's set with the
2691 * created object. Important, the created object is NOT added to the session
2692 * registry hash table.
2694 * Return 0 on success else a negative value.
2696 static int create_buffer_reg_channel(struct buffer_reg_session
*reg_sess
,
2697 struct ust_app_channel
*ua_chan
, struct buffer_reg_channel
**regp
)
2700 struct buffer_reg_channel
*reg_chan
= NULL
;
2705 DBG2("UST app creating buffer registry channel for %s", ua_chan
->name
);
2707 /* Create buffer registry channel. */
2708 ret
= buffer_reg_channel_create(ua_chan
->tracing_channel_id
, ®_chan
);
2713 reg_chan
->consumer_key
= ua_chan
->key
;
2714 reg_chan
->subbuf_size
= ua_chan
->attr
.subbuf_size
;
2715 reg_chan
->num_subbuf
= ua_chan
->attr
.num_subbuf
;
2717 /* Create and add a channel registry to session. */
2718 ret
= ust_registry_channel_add(reg_sess
->reg
.ust
,
2719 ua_chan
->tracing_channel_id
);
2723 buffer_reg_channel_add(reg_sess
, reg_chan
);
2732 /* Safe because the registry channel object was not added to any HT. */
2733 buffer_reg_channel_destroy(reg_chan
, LTTNG_DOMAIN_UST
);
2739 * Setup buffer registry channel for the given session registry and application
2740 * channel object. If regp pointer is valid, it's set with the created object.
2742 * Return 0 on success else a negative value.
2744 static int setup_buffer_reg_channel(struct buffer_reg_session
*reg_sess
,
2745 struct ust_app_channel
*ua_chan
, struct buffer_reg_channel
*reg_chan
,
2746 struct ust_app
*app
)
2753 assert(ua_chan
->obj
);
2755 DBG2("UST app setup buffer registry channel for %s", ua_chan
->name
);
2757 /* Setup all streams for the registry. */
2758 ret
= setup_buffer_reg_streams(reg_chan
, ua_chan
, app
);
2763 reg_chan
->obj
.ust
= ua_chan
->obj
;
2764 ua_chan
->obj
= NULL
;
2769 buffer_reg_channel_remove(reg_sess
, reg_chan
);
2770 buffer_reg_channel_destroy(reg_chan
, LTTNG_DOMAIN_UST
);
2775 * Send buffer registry channel to the application.
2777 * Return 0 on success else a negative value.
2779 static int send_channel_uid_to_ust(struct buffer_reg_channel
*reg_chan
,
2780 struct ust_app
*app
, struct ust_app_session
*ua_sess
,
2781 struct ust_app_channel
*ua_chan
)
2784 struct buffer_reg_stream
*reg_stream
;
2791 DBG("UST app sending buffer registry channel to ust sock %d", app
->sock
);
2793 ret
= duplicate_channel_object(reg_chan
, ua_chan
);
2798 /* Send channel to the application. */
2799 ret
= ust_consumer_send_channel_to_ust(app
, ua_sess
, ua_chan
);
2800 if (ret
== -EPIPE
|| ret
== -LTTNG_UST_ERR_EXITING
) {
2801 ret
= -ENOTCONN
; /* Caused by app exiting. */
2803 } else if (ret
< 0) {
2807 health_code_update();
2809 /* Send all streams to application. */
2810 pthread_mutex_lock(®_chan
->stream_list_lock
);
2811 cds_list_for_each_entry(reg_stream
, ®_chan
->streams
, lnode
) {
2812 struct ust_app_stream stream
;
2814 ret
= duplicate_stream_object(reg_stream
, &stream
);
2816 goto error_stream_unlock
;
2819 ret
= ust_consumer_send_stream_to_ust(app
, ua_chan
, &stream
);
2821 (void) release_ust_app_stream(-1, &stream
, app
);
2822 if (ret
== -EPIPE
|| ret
== -LTTNG_UST_ERR_EXITING
) {
2823 ret
= -ENOTCONN
; /* Caused by app exiting. */
2824 goto error_stream_unlock
;
2825 } else if (ret
< 0) {
2826 goto error_stream_unlock
;
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 * Return 0 on success else a negative value.
2850 static int create_channel_per_uid(struct ust_app
*app
,
2851 struct ltt_ust_session
*usess
, struct ust_app_session
*ua_sess
,
2852 struct ust_app_channel
*ua_chan
)
2855 struct buffer_reg_uid
*reg_uid
;
2856 struct buffer_reg_channel
*reg_chan
;
2863 DBG("UST app creating channel %s with per UID buffers", ua_chan
->name
);
2865 reg_uid
= buffer_reg_uid_find(usess
->id
, app
->bits_per_long
, app
->uid
);
2867 * The session creation handles the creation of this global registry
2868 * object. If none can be find, there is a code flow problem or a
2873 reg_chan
= buffer_reg_channel_find(ua_chan
->tracing_channel_id
,
2876 /* Create the buffer registry channel object. */
2877 ret
= create_buffer_reg_channel(reg_uid
->registry
, ua_chan
, ®_chan
);
2879 ERR("Error creating the UST channel \"%s\" registry instance",
2886 * Create the buffers on the consumer side. This call populates the
2887 * ust app channel object with all streams and data object.
2889 ret
= do_consumer_create_channel(usess
, ua_sess
, ua_chan
,
2890 app
->bits_per_long
, reg_uid
->registry
->reg
.ust
);
2892 ERR("Error creating UST channel \"%s\" on the consumer daemon",
2896 * Let's remove the previously created buffer registry channel so
2897 * it's not visible anymore in the session registry.
2899 ust_registry_channel_del_free(reg_uid
->registry
->reg
.ust
,
2900 ua_chan
->tracing_channel_id
);
2901 buffer_reg_channel_remove(reg_uid
->registry
, reg_chan
);
2902 buffer_reg_channel_destroy(reg_chan
, LTTNG_DOMAIN_UST
);
2907 * Setup the streams and add it to the session registry.
2909 ret
= setup_buffer_reg_channel(reg_uid
->registry
,
2910 ua_chan
, reg_chan
, app
);
2912 ERR("Error setting up UST channel \"%s\"",
2919 /* Send buffers to the application. */
2920 ret
= send_channel_uid_to_ust(reg_chan
, app
, ua_sess
, ua_chan
);
2922 if (ret
!= -ENOTCONN
) {
2923 ERR("Error sending channel to application");
2933 * Create and send to the application the created buffers with per PID buffers.
2935 * Return 0 on success else a negative value.
2937 static int create_channel_per_pid(struct ust_app
*app
,
2938 struct ltt_ust_session
*usess
, struct ust_app_session
*ua_sess
,
2939 struct ust_app_channel
*ua_chan
)
2942 struct ust_registry_session
*registry
;
2949 DBG("UST app creating channel %s with per PID buffers", ua_chan
->name
);
2953 registry
= get_session_registry(ua_sess
);
2956 /* Create and add a new channel registry to session. */
2957 ret
= ust_registry_channel_add(registry
, ua_chan
->key
);
2959 ERR("Error creating the UST channel \"%s\" registry instance",
2964 /* Create and get channel on the consumer side. */
2965 ret
= do_consumer_create_channel(usess
, ua_sess
, ua_chan
,
2966 app
->bits_per_long
, registry
);
2968 ERR("Error creating UST channel \"%s\" on the consumer daemon",
2973 ret
= send_channel_pid_to_ust(app
, ua_sess
, ua_chan
);
2975 if (ret
!= -ENOTCONN
) {
2976 ERR("Error sending channel to application");
2987 * From an already allocated ust app channel, create the channel buffers if
2988 * need and send it to the application. This MUST be called with a RCU read
2989 * side lock acquired.
2991 * Return 0 on success or else a negative value. Returns -ENOTCONN if
2992 * the application exited concurrently.
2994 static int do_create_channel(struct ust_app
*app
,
2995 struct ltt_ust_session
*usess
, struct ust_app_session
*ua_sess
,
2996 struct ust_app_channel
*ua_chan
)
3005 /* Handle buffer type before sending the channel to the application. */
3006 switch (usess
->buffer_type
) {
3007 case LTTNG_BUFFER_PER_UID
:
3009 ret
= create_channel_per_uid(app
, usess
, ua_sess
, ua_chan
);
3015 case LTTNG_BUFFER_PER_PID
:
3017 ret
= create_channel_per_pid(app
, usess
, ua_sess
, ua_chan
);
3029 /* Initialize ust objd object using the received handle and add it. */
3030 lttng_ht_node_init_ulong(&ua_chan
->ust_objd_node
, ua_chan
->handle
);
3031 lttng_ht_add_unique_ulong(app
->ust_objd
, &ua_chan
->ust_objd_node
);
3033 /* If channel is not enabled, disable it on the tracer */
3034 if (!ua_chan
->enabled
) {
3035 ret
= disable_ust_channel(app
, ua_sess
, ua_chan
);
3046 * Create UST app channel and create it on the tracer. Set ua_chanp of the
3047 * newly created channel if not NULL.
3049 * Called with UST app session lock and RCU read-side lock held.
3051 * Return 0 on success or else a negative value. Returns -ENOTCONN if
3052 * the application exited concurrently.
3054 static int create_ust_app_channel(struct ust_app_session
*ua_sess
,
3055 struct ltt_ust_channel
*uchan
, struct ust_app
*app
,
3056 enum lttng_ust_chan_type type
, struct ltt_ust_session
*usess
,
3057 struct ust_app_channel
**ua_chanp
)
3060 struct lttng_ht_iter iter
;
3061 struct lttng_ht_node_str
*ua_chan_node
;
3062 struct ust_app_channel
*ua_chan
;
3064 /* Lookup channel in the ust app session */
3065 lttng_ht_lookup(ua_sess
->channels
, (void *)uchan
->name
, &iter
);
3066 ua_chan_node
= lttng_ht_iter_get_node_str(&iter
);
3067 if (ua_chan_node
!= NULL
) {
3068 ua_chan
= caa_container_of(ua_chan_node
, struct ust_app_channel
, node
);
3072 ua_chan
= alloc_ust_app_channel(uchan
->name
, ua_sess
, &uchan
->attr
);
3073 if (ua_chan
== NULL
) {
3074 /* Only malloc can fail here */
3078 shadow_copy_channel(ua_chan
, uchan
);
3080 /* Set channel type. */
3081 ua_chan
->attr
.type
= type
;
3083 ret
= do_create_channel(app
, usess
, ua_sess
, ua_chan
);
3088 DBG2("UST app create channel %s for PID %d completed", ua_chan
->name
,
3091 /* Only add the channel if successful on the tracer side. */
3092 lttng_ht_add_unique_str(ua_sess
->channels
, &ua_chan
->node
);
3096 *ua_chanp
= ua_chan
;
3099 /* Everything went well. */
3103 delete_ust_app_channel(ua_chan
->is_sent
? app
->sock
: -1, ua_chan
, app
);
3109 * Create UST app event and create it on the tracer side.
3111 * Called with ust app session mutex held.
3114 int create_ust_app_event(struct ust_app_session
*ua_sess
,
3115 struct ust_app_channel
*ua_chan
, struct ltt_ust_event
*uevent
,
3116 struct ust_app
*app
)
3119 struct ust_app_event
*ua_event
;
3121 /* Get event node */
3122 ua_event
= find_ust_app_event(ua_chan
->events
, uevent
->attr
.name
,
3123 uevent
->filter
, uevent
->attr
.loglevel
, uevent
->exclusion
);
3124 if (ua_event
!= NULL
) {
3129 /* Does not exist so create one */
3130 ua_event
= alloc_ust_app_event(uevent
->attr
.name
, &uevent
->attr
);
3131 if (ua_event
== NULL
) {
3132 /* Only malloc can failed so something is really wrong */
3136 shadow_copy_event(ua_event
, uevent
);
3138 /* Create it on the tracer side */
3139 ret
= create_ust_event(app
, ua_sess
, ua_chan
, ua_event
);
3141 /* Not found previously means that it does not exist on the tracer */
3142 assert(ret
!= -LTTNG_UST_ERR_EXIST
);
3146 add_unique_ust_app_event(ua_chan
, ua_event
);
3148 DBG2("UST app create event %s for PID %d completed", ua_event
->name
,
3155 /* Valid. Calling here is already in a read side lock */
3156 delete_ust_app_event(-1, ua_event
, app
);
3161 * Create UST metadata and open it on the tracer side.
3163 * Called with UST app session lock held and RCU read side lock.
3165 static int create_ust_app_metadata(struct ust_app_session
*ua_sess
,
3166 struct ust_app
*app
, struct consumer_output
*consumer
)
3169 struct ust_app_channel
*metadata
;
3170 struct consumer_socket
*socket
;
3171 struct ust_registry_session
*registry
;
3177 registry
= get_session_registry(ua_sess
);
3180 pthread_mutex_lock(®istry
->lock
);
3182 /* Metadata already exists for this registry or it was closed previously */
3183 if (registry
->metadata_key
|| registry
->metadata_closed
) {
3188 /* Allocate UST metadata */
3189 metadata
= alloc_ust_app_channel(DEFAULT_METADATA_NAME
, ua_sess
, NULL
);
3191 /* malloc() failed */
3196 memcpy(&metadata
->attr
, &ua_sess
->metadata_attr
, sizeof(metadata
->attr
));
3198 /* Need one fd for the channel. */
3199 ret
= lttng_fd_get(LTTNG_FD_APPS
, 1);
3201 ERR("Exhausted number of available FD upon create metadata");
3205 /* Get the right consumer socket for the application. */
3206 socket
= consumer_find_socket_by_bitness(app
->bits_per_long
, consumer
);
3209 goto error_consumer
;
3213 * Keep metadata key so we can identify it on the consumer side. Assign it
3214 * to the registry *before* we ask the consumer so we avoid the race of the
3215 * consumer requesting the metadata and the ask_channel call on our side
3216 * did not returned yet.
3218 registry
->metadata_key
= metadata
->key
;
3221 * Ask the metadata channel creation to the consumer. The metadata object
3222 * will be created by the consumer and kept their. However, the stream is
3223 * never added or monitored until we do a first push metadata to the
3226 ret
= ust_consumer_ask_channel(ua_sess
, metadata
, consumer
, socket
,
3229 /* Nullify the metadata key so we don't try to close it later on. */
3230 registry
->metadata_key
= 0;
3231 goto error_consumer
;