2 * Copyright (C) 2011 - David Goulet <david.goulet@polymtl.ca>
4 * This program is free software; you can redistribute it and/or modify
5 * it under the terms of the GNU General Public License, version 2 only,
6 * as published by the Free Software Foundation.
8 * This program is distributed in the hope that it will be useful,
9 * but WITHOUT ANY WARRANTY; without even the implied warranty of
10 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
11 * GNU General Public License for more details.
13 * You should have received a copy of the GNU General Public License along
14 * with this program; if not, write to the Free Software Foundation, Inc.,
15 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
26 #include <sys/types.h>
28 #include <urcu/compiler.h>
29 #include <lttng/ust-error.h>
32 #include <common/common.h>
33 #include <common/sessiond-comm/sessiond-comm.h>
35 #include "buffer-registry.h"
37 #include "health-sessiond.h"
39 #include "ust-consumer.h"
44 int ust_app_flush_app_session(struct ust_app
*app
, struct ust_app_session
*ua_sess
);
46 /* Next available channel key. Access under next_channel_key_lock. */
47 static uint64_t _next_channel_key
;
48 static pthread_mutex_t next_channel_key_lock
= PTHREAD_MUTEX_INITIALIZER
;
50 /* Next available session ID. Access under next_session_id_lock. */
51 static uint64_t _next_session_id
;
52 static pthread_mutex_t next_session_id_lock
= PTHREAD_MUTEX_INITIALIZER
;
55 * Return the incremented value of next_channel_key.
57 static uint64_t get_next_channel_key(void)
61 pthread_mutex_lock(&next_channel_key_lock
);
62 ret
= ++_next_channel_key
;
63 pthread_mutex_unlock(&next_channel_key_lock
);
68 * Return the atomically incremented value of next_session_id.
70 static uint64_t get_next_session_id(void)
74 pthread_mutex_lock(&next_session_id_lock
);
75 ret
= ++_next_session_id
;
76 pthread_mutex_unlock(&next_session_id_lock
);
80 static void copy_channel_attr_to_ustctl(
81 struct ustctl_consumer_channel_attr
*attr
,
82 struct lttng_ust_channel_attr
*uattr
)
84 /* Copy event attributes since the layout is different. */
85 attr
->subbuf_size
= uattr
->subbuf_size
;
86 attr
->num_subbuf
= uattr
->num_subbuf
;
87 attr
->overwrite
= uattr
->overwrite
;
88 attr
->switch_timer_interval
= uattr
->switch_timer_interval
;
89 attr
->read_timer_interval
= uattr
->read_timer_interval
;
90 attr
->output
= uattr
->output
;
94 * Match function for the hash table lookup.
96 * It matches an ust app event based on three attributes which are the event
97 * name, the filter bytecode and the loglevel.
99 static int ht_match_ust_app_event(struct cds_lfht_node
*node
, const void *_key
)
101 struct ust_app_event
*event
;
102 const struct ust_app_ht_key
*key
;
107 event
= caa_container_of(node
, struct ust_app_event
, node
.node
);
110 /* Match the 4 elements of the key: name, filter, loglevel, exclusions */
113 if (strncmp(event
->attr
.name
, key
->name
, sizeof(event
->attr
.name
)) != 0) {
117 /* Event loglevel. */
118 if (event
->attr
.loglevel
!= key
->loglevel
) {
119 if (event
->attr
.loglevel_type
== LTTNG_UST_LOGLEVEL_ALL
120 && key
->loglevel
== 0 && event
->attr
.loglevel
== -1) {
122 * Match is accepted. This is because on event creation, the
123 * loglevel is set to -1 if the event loglevel type is ALL so 0 and
124 * -1 are accepted for this loglevel type since 0 is the one set by
125 * the API when receiving an enable event.
132 /* One of the filters is NULL, fail. */
133 if ((key
->filter
&& !event
->filter
) || (!key
->filter
&& event
->filter
)) {
137 if (key
->filter
&& event
->filter
) {
138 /* Both filters exists, check length followed by the bytecode. */
139 if (event
->filter
->len
!= key
->filter
->len
||
140 memcmp(event
->filter
->data
, key
->filter
->data
,
141 event
->filter
->len
) != 0) {
146 /* One of the exclusions is NULL, fail. */
147 if ((key
->exclusion
&& !event
->exclusion
) || (!key
->exclusion
&& event
->exclusion
)) {
151 if (key
->exclusion
&& event
->exclusion
) {
152 /* Both exclusions exists, check count followed by the names. */
153 if (event
->exclusion
->count
!= key
->exclusion
->count
||
154 memcmp(event
->exclusion
->names
, key
->exclusion
->names
,
155 event
->exclusion
->count
* LTTNG_UST_SYM_NAME_LEN
) != 0) {
169 * Unique add of an ust app event in the given ht. This uses the custom
170 * ht_match_ust_app_event match function and the event name as hash.
172 static void add_unique_ust_app_event(struct ust_app_channel
*ua_chan
,
173 struct ust_app_event
*event
)
175 struct cds_lfht_node
*node_ptr
;
176 struct ust_app_ht_key key
;
180 assert(ua_chan
->events
);
183 ht
= ua_chan
->events
;
184 key
.name
= event
->attr
.name
;
185 key
.filter
= event
->filter
;
186 key
.loglevel
= event
->attr
.loglevel
;
187 key
.exclusion
= event
->exclusion
;
189 node_ptr
= cds_lfht_add_unique(ht
->ht
,
190 ht
->hash_fct(event
->node
.key
, lttng_ht_seed
),
191 ht_match_ust_app_event
, &key
, &event
->node
.node
);
192 assert(node_ptr
== &event
->node
.node
);
196 * Close the notify socket from the given RCU head object. This MUST be called
197 * through a call_rcu().
199 static void close_notify_sock_rcu(struct rcu_head
*head
)
202 struct ust_app_notify_sock_obj
*obj
=
203 caa_container_of(head
, struct ust_app_notify_sock_obj
, head
);
205 /* Must have a valid fd here. */
206 assert(obj
->fd
>= 0);
208 ret
= close(obj
->fd
);
210 ERR("close notify sock %d RCU", obj
->fd
);
212 lttng_fd_put(LTTNG_FD_APPS
, 1);
218 * Return the session registry according to the buffer type of the given
221 * A registry per UID object MUST exists before calling this function or else
222 * it assert() if not found. RCU read side lock must be acquired.
224 static struct ust_registry_session
*get_session_registry(
225 struct ust_app_session
*ua_sess
)
227 struct ust_registry_session
*registry
= NULL
;
231 switch (ua_sess
->buffer_type
) {
232 case LTTNG_BUFFER_PER_PID
:
234 struct buffer_reg_pid
*reg_pid
= buffer_reg_pid_find(ua_sess
->id
);
238 registry
= reg_pid
->registry
->reg
.ust
;
241 case LTTNG_BUFFER_PER_UID
:
243 struct buffer_reg_uid
*reg_uid
= buffer_reg_uid_find(
244 ua_sess
->tracing_id
, ua_sess
->bits_per_long
, ua_sess
->uid
);
248 registry
= reg_uid
->registry
->reg
.ust
;
260 * Delete ust context safely. RCU read lock must be held before calling
264 void delete_ust_app_ctx(int sock
, struct ust_app_ctx
*ua_ctx
)
271 ret
= ustctl_release_object(sock
, ua_ctx
->obj
);
272 if (ret
< 0 && ret
!= -EPIPE
&& ret
!= -LTTNG_UST_ERR_EXITING
) {
273 ERR("UST app sock %d release ctx obj handle %d failed with ret %d",
274 sock
, ua_ctx
->obj
->handle
, ret
);
282 * Delete ust app event safely. RCU read lock must be held before calling
286 void delete_ust_app_event(int sock
, struct ust_app_event
*ua_event
)
292 free(ua_event
->filter
);
293 if (ua_event
->exclusion
!= NULL
)
294 free(ua_event
->exclusion
);
295 if (ua_event
->obj
!= NULL
) {
296 ret
= ustctl_release_object(sock
, ua_event
->obj
);
297 if (ret
< 0 && ret
!= -EPIPE
&& ret
!= -LTTNG_UST_ERR_EXITING
) {
298 ERR("UST app sock %d release event obj failed with ret %d",
307 * Release ust data object of the given stream.
309 * Return 0 on success or else a negative value.
311 static int release_ust_app_stream(int sock
, struct ust_app_stream
*stream
)
318 ret
= ustctl_release_object(sock
, stream
->obj
);
319 if (ret
< 0 && ret
!= -EPIPE
&& ret
!= -LTTNG_UST_ERR_EXITING
) {
320 ERR("UST app sock %d release stream obj failed with ret %d",
323 lttng_fd_put(LTTNG_FD_APPS
, 2);
331 * Delete ust app stream safely. RCU read lock must be held before calling
335 void delete_ust_app_stream(int sock
, struct ust_app_stream
*stream
)
339 (void) release_ust_app_stream(sock
, stream
);
344 * We need to execute ht_destroy outside of RCU read-side critical
345 * section and outside of call_rcu thread, so we postpone its execution
346 * using ht_cleanup_push. It is simpler than to change the semantic of
347 * the many callers of delete_ust_app_session().
350 void delete_ust_app_channel_rcu(struct rcu_head
*head
)
352 struct ust_app_channel
*ua_chan
=
353 caa_container_of(head
, struct ust_app_channel
, rcu_head
);
355 ht_cleanup_push(ua_chan
->ctx
);
356 ht_cleanup_push(ua_chan
->events
);
361 * Delete ust app channel safely. RCU read lock must be held before calling
365 void delete_ust_app_channel(int sock
, struct ust_app_channel
*ua_chan
,
369 struct lttng_ht_iter iter
;
370 struct ust_app_event
*ua_event
;
371 struct ust_app_ctx
*ua_ctx
;
372 struct ust_app_stream
*stream
, *stmp
;
373 struct ust_registry_session
*registry
;
377 DBG3("UST app deleting channel %s", ua_chan
->name
);
380 cds_list_for_each_entry_safe(stream
, stmp
, &ua_chan
->streams
.head
, list
) {
381 cds_list_del(&stream
->list
);
382 delete_ust_app_stream(sock
, stream
);
386 cds_lfht_for_each_entry(ua_chan
->ctx
->ht
, &iter
.iter
, ua_ctx
, node
.node
) {
387 cds_list_del(&ua_ctx
->list
);
388 ret
= lttng_ht_del(ua_chan
->ctx
, &iter
);
390 delete_ust_app_ctx(sock
, ua_ctx
);
394 cds_lfht_for_each_entry(ua_chan
->events
->ht
, &iter
.iter
, ua_event
,
396 ret
= lttng_ht_del(ua_chan
->events
, &iter
);
398 delete_ust_app_event(sock
, ua_event
);
401 if (ua_chan
->session
->buffer_type
== LTTNG_BUFFER_PER_PID
) {
402 /* Wipe and free registry from session registry. */
403 registry
= get_session_registry(ua_chan
->session
);
405 ust_registry_channel_del_free(registry
, ua_chan
->key
);
409 if (ua_chan
->obj
!= NULL
) {
410 /* Remove channel from application UST object descriptor. */
411 iter
.iter
.node
= &ua_chan
->ust_objd_node
.node
;
412 ret
= lttng_ht_del(app
->ust_objd
, &iter
);
414 ret
= ustctl_release_object(sock
, ua_chan
->obj
);
415 if (ret
< 0 && ret
!= -EPIPE
&& ret
!= -LTTNG_UST_ERR_EXITING
) {
416 ERR("UST app sock %d release channel obj failed with ret %d",
419 lttng_fd_put(LTTNG_FD_APPS
, 1);
422 call_rcu(&ua_chan
->rcu_head
, delete_ust_app_channel_rcu
);
426 * Push metadata to consumer socket.
428 * The socket lock MUST be acquired.
429 * The ust app session lock MUST be acquired.
431 * On success, return the len of metadata pushed or else a negative value.
433 ssize_t
ust_app_push_metadata(struct ust_registry_session
*registry
,
434 struct consumer_socket
*socket
, int send_zero_data
)
437 char *metadata_str
= NULL
;
444 pthread_mutex_lock(®istry
->lock
);
447 * Means that no metadata was assigned to the session. This can happens if
448 * no start has been done previously.
450 if (!registry
->metadata_key
) {
451 pthread_mutex_unlock(®istry
->lock
);
456 * On a push metadata error either the consumer is dead or the metadata
457 * channel has been destroyed because its endpoint might have died (e.g:
458 * relayd). If so, the metadata closed flag is set to 1 so we deny pushing
459 * metadata again which is not valid anymore on the consumer side.
461 if (registry
->metadata_closed
) {
462 pthread_mutex_unlock(®istry
->lock
);
466 offset
= registry
->metadata_len_sent
;
467 len
= registry
->metadata_len
- registry
->metadata_len_sent
;
469 DBG3("No metadata to push for metadata key %" PRIu64
,
470 registry
->metadata_key
);
472 if (send_zero_data
) {
473 DBG("No metadata to push");
479 /* Allocate only what we have to send. */
480 metadata_str
= zmalloc(len
);
482 PERROR("zmalloc ust app metadata string");
486 /* Copy what we haven't send out. */
487 memcpy(metadata_str
, registry
->metadata
+ offset
, len
);
488 registry
->metadata_len_sent
+= len
;
491 pthread_mutex_unlock(®istry
->lock
);
492 ret
= consumer_push_metadata(socket
, registry
->metadata_key
,
493 metadata_str
, len
, offset
);
496 * There is an acceptable race here between the registry metadata key
497 * assignment and the creation on the consumer. The session daemon can
498 * concurrently push metadata for this registry while being created on
499 * the consumer since the metadata key of the registry is assigned
500 * *before* it is setup to avoid the consumer to ask for metadata that
501 * could possibly be not found in the session daemon.
503 * The metadata will get pushed either by the session being stopped or
504 * the consumer requesting metadata if that race is triggered.
506 if (ret
== -LTTCOMM_CONSUMERD_CHANNEL_FAIL
) {
510 /* Update back the actual metadata len sent since it failed here. */
511 pthread_mutex_lock(®istry
->lock
);
512 registry
->metadata_len_sent
-= len
;
513 pthread_mutex_unlock(®istry
->lock
);
525 * On error, flag the registry that the metadata is closed. We were unable
526 * to push anything and this means that either the consumer is not
527 * responding or the metadata cache has been destroyed on the consumer.
529 registry
->metadata_closed
= 1;
531 pthread_mutex_unlock(®istry
->lock
);
538 * For a given application and session, push metadata to consumer.
539 * Either sock or consumer is required : if sock is NULL, the default
540 * socket to send the metadata is retrieved from consumer, if sock
541 * is not NULL we use it to send the metadata.
542 * RCU read-side lock must be held while calling this function,
543 * therefore ensuring existance of registry.
545 * Return 0 on success else a negative error.
547 static int push_metadata(struct ust_registry_session
*registry
,
548 struct consumer_output
*consumer
)
552 struct consumer_socket
*socket
;
557 pthread_mutex_lock(®istry
->lock
);
559 if (registry
->metadata_closed
) {
560 pthread_mutex_unlock(®istry
->lock
);
564 /* Get consumer socket to use to push the metadata.*/
565 socket
= consumer_find_socket_by_bitness(registry
->bits_per_long
,
567 pthread_mutex_unlock(®istry
->lock
);
574 * TODO: Currently, we hold the socket lock around sampling of the next
575 * metadata segment to ensure we send metadata over the consumer socket in
576 * the correct order. This makes the registry lock nest inside the socket
579 * Please note that this is a temporary measure: we should move this lock
580 * back into ust_consumer_push_metadata() when the consumer gets the
581 * ability to reorder the metadata it receives.
583 pthread_mutex_lock(socket
->lock
);
584 ret
= ust_app_push_metadata(registry
, socket
, 0);
585 pthread_mutex_unlock(socket
->lock
);
599 * Send to the consumer a close metadata command for the given session. Once
600 * done, the metadata channel is deleted and the session metadata pointer is
601 * nullified. The session lock MUST be acquired here unless the application is
602 * in the destroy path.
604 * Return 0 on success else a negative value.
606 static int close_metadata(struct ust_registry_session
*registry
,
607 struct consumer_output
*consumer
)
610 struct consumer_socket
*socket
;
617 pthread_mutex_lock(®istry
->lock
);
619 if (!registry
->metadata_key
|| registry
->metadata_closed
) {
624 /* Get consumer socket to use to push the metadata.*/
625 socket
= consumer_find_socket_by_bitness(registry
->bits_per_long
,
632 ret
= consumer_close_metadata(socket
, registry
->metadata_key
);
639 * Metadata closed. Even on error this means that the consumer is not
640 * responding or not found so either way a second close should NOT be emit
643 registry
->metadata_closed
= 1;
645 pthread_mutex_unlock(®istry
->lock
);
651 * We need to execute ht_destroy outside of RCU read-side critical
652 * section and outside of call_rcu thread, so we postpone its execution
653 * using ht_cleanup_push. It is simpler than to change the semantic of
654 * the many callers of delete_ust_app_session().
657 void delete_ust_app_session_rcu(struct rcu_head
*head
)
659 struct ust_app_session
*ua_sess
=
660 caa_container_of(head
, struct ust_app_session
, rcu_head
);
662 ht_cleanup_push(ua_sess
->channels
);
667 * Delete ust app session safely. RCU read lock must be held before calling
671 void delete_ust_app_session(int sock
, struct ust_app_session
*ua_sess
,
675 struct lttng_ht_iter iter
;
676 struct ust_app_channel
*ua_chan
;
677 struct ust_registry_session
*registry
;
681 pthread_mutex_lock(&ua_sess
->lock
);
683 registry
= get_session_registry(ua_sess
);
685 /* Push metadata for application before freeing the application. */
686 (void) push_metadata(registry
, ua_sess
->consumer
);
689 * Don't ask to close metadata for global per UID buffers. Close
690 * metadata only on destroy trace session in this case. Also, the
691 * previous push metadata could have flag the metadata registry to
692 * close so don't send a close command if closed.
694 if (ua_sess
->buffer_type
!= LTTNG_BUFFER_PER_UID
) {
695 /* And ask to close it for this session registry. */
696 (void) close_metadata(registry
, ua_sess
->consumer
);
700 cds_lfht_for_each_entry(ua_sess
->channels
->ht
, &iter
.iter
, ua_chan
,
702 ret
= lttng_ht_del(ua_sess
->channels
, &iter
);
704 delete_ust_app_channel(sock
, ua_chan
, app
);
707 /* In case of per PID, the registry is kept in the session. */
708 if (ua_sess
->buffer_type
== LTTNG_BUFFER_PER_PID
) {
709 struct buffer_reg_pid
*reg_pid
= buffer_reg_pid_find(ua_sess
->id
);
711 buffer_reg_pid_remove(reg_pid
);
712 buffer_reg_pid_destroy(reg_pid
);
716 if (ua_sess
->handle
!= -1) {
717 ret
= ustctl_release_handle(sock
, ua_sess
->handle
);
718 if (ret
< 0 && ret
!= -EPIPE
&& ret
!= -LTTNG_UST_ERR_EXITING
) {
719 ERR("UST app sock %d release session handle failed with ret %d",
723 pthread_mutex_unlock(&ua_sess
->lock
);
725 call_rcu(&ua_sess
->rcu_head
, delete_ust_app_session_rcu
);
729 * Delete a traceable application structure from the global list. Never call
730 * this function outside of a call_rcu call.
732 * RCU read side lock should _NOT_ be held when calling this function.
735 void delete_ust_app(struct ust_app
*app
)
738 struct ust_app_session
*ua_sess
, *tmp_ua_sess
;
740 /* Delete ust app sessions info */
745 cds_list_for_each_entry_safe(ua_sess
, tmp_ua_sess
, &app
->teardown_head
,
747 /* Free every object in the session and the session. */
749 delete_ust_app_session(sock
, ua_sess
, app
);
753 ht_cleanup_push(app
->sessions
);
754 ht_cleanup_push(app
->ust_objd
);
757 * Wait until we have deleted the application from the sock hash table
758 * before closing this socket, otherwise an application could re-use the
759 * socket ID and race with the teardown, using the same hash table entry.
761 * It's OK to leave the close in call_rcu. We want it to stay unique for
762 * all RCU readers that could run concurrently with unregister app,
763 * therefore we _need_ to only close that socket after a grace period. So
764 * it should stay in this RCU callback.
766 * This close() is a very important step of the synchronization model so
767 * every modification to this function must be carefully reviewed.
773 lttng_fd_put(LTTNG_FD_APPS
, 1);
775 DBG2("UST app pid %d deleted", app
->pid
);
780 * URCU intermediate call to delete an UST app.
783 void delete_ust_app_rcu(struct rcu_head
*head
)
785 struct lttng_ht_node_ulong
*node
=
786 caa_container_of(head
, struct lttng_ht_node_ulong
, head
);
787 struct ust_app
*app
=
788 caa_container_of(node
, struct ust_app
, pid_n
);
790 DBG3("Call RCU deleting app PID %d", app
->pid
);
795 * Delete the session from the application ht and delete the data structure by
796 * freeing every object inside and releasing them.
798 static void destroy_app_session(struct ust_app
*app
,
799 struct ust_app_session
*ua_sess
)
802 struct lttng_ht_iter iter
;
807 iter
.iter
.node
= &ua_sess
->node
.node
;
808 ret
= lttng_ht_del(app
->sessions
, &iter
);
810 /* Already scheduled for teardown. */
814 /* Once deleted, free the data structure. */
815 delete_ust_app_session(app
->sock
, ua_sess
, app
);
822 * Alloc new UST app session.
825 struct ust_app_session
*alloc_ust_app_session(struct ust_app
*app
)
827 struct ust_app_session
*ua_sess
;
829 /* Init most of the default value by allocating and zeroing */
830 ua_sess
= zmalloc(sizeof(struct ust_app_session
));
831 if (ua_sess
== NULL
) {
836 ua_sess
->handle
= -1;
837 ua_sess
->channels
= lttng_ht_new(0, LTTNG_HT_TYPE_STRING
);
838 ua_sess
->metadata_attr
.type
= LTTNG_UST_CHAN_METADATA
;
839 pthread_mutex_init(&ua_sess
->lock
, NULL
);
848 * Alloc new UST app channel.
851 struct ust_app_channel
*alloc_ust_app_channel(char *name
,
852 struct ust_app_session
*ua_sess
,
853 struct lttng_ust_channel_attr
*attr
)
855 struct ust_app_channel
*ua_chan
;
857 /* Init most of the default value by allocating and zeroing */
858 ua_chan
= zmalloc(sizeof(struct ust_app_channel
));
859 if (ua_chan
== NULL
) {
864 /* Setup channel name */
865 strncpy(ua_chan
->name
, name
, sizeof(ua_chan
->name
));
866 ua_chan
->name
[sizeof(ua_chan
->name
) - 1] = '\0';
868 ua_chan
->enabled
= 1;
869 ua_chan
->handle
= -1;
870 ua_chan
->session
= ua_sess
;
871 ua_chan
->key
= get_next_channel_key();
872 ua_chan
->ctx
= lttng_ht_new(0, LTTNG_HT_TYPE_ULONG
);
873 ua_chan
->events
= lttng_ht_new(0, LTTNG_HT_TYPE_STRING
);
874 lttng_ht_node_init_str(&ua_chan
->node
, ua_chan
->name
);
876 CDS_INIT_LIST_HEAD(&ua_chan
->streams
.head
);
877 CDS_INIT_LIST_HEAD(&ua_chan
->ctx_list
);
879 /* Copy attributes */
881 /* Translate from lttng_ust_channel to ustctl_consumer_channel_attr. */
882 ua_chan
->attr
.subbuf_size
= attr
->subbuf_size
;
883 ua_chan
->attr
.num_subbuf
= attr
->num_subbuf
;
884 ua_chan
->attr
.overwrite
= attr
->overwrite
;
885 ua_chan
->attr
.switch_timer_interval
= attr
->switch_timer_interval
;
886 ua_chan
->attr
.read_timer_interval
= attr
->read_timer_interval
;
887 ua_chan
->attr
.output
= attr
->output
;
889 /* By default, the channel is a per cpu channel. */
890 ua_chan
->attr
.type
= LTTNG_UST_CHAN_PER_CPU
;
892 DBG3("UST app channel %s allocated", ua_chan
->name
);
901 * Allocate and initialize a UST app stream.
903 * Return newly allocated stream pointer or NULL on error.
905 struct ust_app_stream
*ust_app_alloc_stream(void)
907 struct ust_app_stream
*stream
= NULL
;
909 stream
= zmalloc(sizeof(*stream
));
910 if (stream
== NULL
) {
911 PERROR("zmalloc ust app stream");
915 /* Zero could be a valid value for a handle so flag it to -1. */
923 * Alloc new UST app event.
926 struct ust_app_event
*alloc_ust_app_event(char *name
,
927 struct lttng_ust_event
*attr
)
929 struct ust_app_event
*ua_event
;
931 /* Init most of the default value by allocating and zeroing */
932 ua_event
= zmalloc(sizeof(struct ust_app_event
));
933 if (ua_event
== NULL
) {
938 ua_event
->enabled
= 1;
939 strncpy(ua_event
->name
, name
, sizeof(ua_event
->name
));
940 ua_event
->name
[sizeof(ua_event
->name
) - 1] = '\0';
941 lttng_ht_node_init_str(&ua_event
->node
, ua_event
->name
);
943 /* Copy attributes */
945 memcpy(&ua_event
->attr
, attr
, sizeof(ua_event
->attr
));
948 DBG3("UST app event %s allocated", ua_event
->name
);
957 * Alloc new UST app context.
960 struct ust_app_ctx
*alloc_ust_app_ctx(struct lttng_ust_context
*uctx
)
962 struct ust_app_ctx
*ua_ctx
;
964 ua_ctx
= zmalloc(sizeof(struct ust_app_ctx
));
965 if (ua_ctx
== NULL
) {
969 CDS_INIT_LIST_HEAD(&ua_ctx
->list
);
972 memcpy(&ua_ctx
->ctx
, uctx
, sizeof(ua_ctx
->ctx
));
975 DBG3("UST app context %d allocated", ua_ctx
->ctx
.ctx
);
982 * Allocate a filter and copy the given original filter.
984 * Return allocated filter or NULL on error.
986 static struct lttng_ust_filter_bytecode
*alloc_copy_ust_app_filter(
987 struct lttng_ust_filter_bytecode
*orig_f
)
989 struct lttng_ust_filter_bytecode
*filter
= NULL
;
991 /* Copy filter bytecode */
992 filter
= zmalloc(sizeof(*filter
) + orig_f
->len
);
994 PERROR("zmalloc alloc ust app filter");
998 memcpy(filter
, orig_f
, sizeof(*filter
) + orig_f
->len
);
1005 * Find an ust_app using the sock and return it. RCU read side lock must be
1006 * held before calling this helper function.
1008 struct ust_app
*ust_app_find_by_sock(int sock
)
1010 struct lttng_ht_node_ulong
*node
;
1011 struct lttng_ht_iter iter
;
1013 lttng_ht_lookup(ust_app_ht_by_sock
, (void *)((unsigned long) sock
), &iter
);
1014 node
= lttng_ht_iter_get_node_ulong(&iter
);
1016 DBG2("UST app find by sock %d not found", sock
);
1020 return caa_container_of(node
, struct ust_app
, sock_n
);
1027 * Find an ust_app using the notify sock and return it. RCU read side lock must
1028 * be held before calling this helper function.
1030 static struct ust_app
*find_app_by_notify_sock(int sock
)
1032 struct lttng_ht_node_ulong
*node
;
1033 struct lttng_ht_iter iter
;
1035 lttng_ht_lookup(ust_app_ht_by_notify_sock
, (void *)((unsigned long) sock
),
1037 node
= lttng_ht_iter_get_node_ulong(&iter
);
1039 DBG2("UST app find by notify sock %d not found", sock
);
1043 return caa_container_of(node
, struct ust_app
, notify_sock_n
);
1050 * Lookup for an ust app event based on event name, filter bytecode and the
1053 * Return an ust_app_event object or NULL on error.
1055 static struct ust_app_event
*find_ust_app_event(struct lttng_ht
*ht
,
1056 char *name
, struct lttng_ust_filter_bytecode
*filter
, int loglevel
,
1057 const struct lttng_event_exclusion
*exclusion
)
1059 struct lttng_ht_iter iter
;
1060 struct lttng_ht_node_str
*node
;
1061 struct ust_app_event
*event
= NULL
;
1062 struct ust_app_ht_key key
;
1067 /* Setup key for event lookup. */
1069 key
.filter
= filter
;
1070 key
.loglevel
= loglevel
;
1071 /* lttng_event_exclusion and lttng_ust_event_exclusion structures are similar */
1072 key
.exclusion
= (struct lttng_ust_event_exclusion
*)exclusion
;
1074 /* Lookup using the event name as hash and a custom match fct. */
1075 cds_lfht_lookup(ht
->ht
, ht
->hash_fct((void *) name
, lttng_ht_seed
),
1076 ht_match_ust_app_event
, &key
, &iter
.iter
);
1077 node
= lttng_ht_iter_get_node_str(&iter
);
1082 event
= caa_container_of(node
, struct ust_app_event
, node
);
1089 * Create the channel context on the tracer.
1091 * Called with UST app session lock held.
1094 int create_ust_channel_context(struct ust_app_channel
*ua_chan
,
1095 struct ust_app_ctx
*ua_ctx
, struct ust_app
*app
)
1099 health_code_update();
1101 ret
= ustctl_add_context(app
->sock
, &ua_ctx
->ctx
,
1102 ua_chan
->obj
, &ua_ctx
->obj
);
1104 if (ret
!= -EPIPE
&& ret
!= -LTTNG_UST_ERR_EXITING
) {
1105 ERR("UST app create channel context failed for app (pid: %d) "
1106 "with ret %d", app
->pid
, ret
);
1109 * This is normal behavior, an application can die during the
1110 * creation process. Don't report an error so the execution can
1111 * continue normally.
1114 DBG3("UST app disable event failed. Application is dead.");
1119 ua_ctx
->handle
= ua_ctx
->obj
->handle
;
1121 DBG2("UST app context handle %d created successfully for channel %s",
1122 ua_ctx
->handle
, ua_chan
->name
);
1125 health_code_update();
1130 * Set the filter on the tracer.
1133 int set_ust_event_filter(struct ust_app_event
*ua_event
,
1134 struct ust_app
*app
)
1138 health_code_update();
1140 if (!ua_event
->filter
) {
1145 ret
= ustctl_set_filter(app
->sock
, ua_event
->filter
,
1148 if (ret
!= -EPIPE
&& ret
!= -LTTNG_UST_ERR_EXITING
) {
1149 ERR("UST app event %s filter failed for app (pid: %d) "
1150 "with ret %d", ua_event
->attr
.name
, app
->pid
, ret
);
1153 * This is normal behavior, an application can die during the
1154 * creation process. Don't report an error so the execution can
1155 * continue normally.
1158 DBG3("UST app filter event failed. Application is dead.");
1163 DBG2("UST filter set successfully for event %s", ua_event
->name
);
1166 health_code_update();
1171 * Set event exclusions on the tracer.
1174 int set_ust_event_exclusion(struct ust_app_event
*ua_event
,
1175 struct ust_app
*app
)
1179 health_code_update();
1181 if (!ua_event
->exclusion
|| !ua_event
->exclusion
->count
) {
1186 ret
= ustctl_set_exclusion(app
->sock
, ua_event
->exclusion
,
1189 if (ret
!= -EPIPE
&& ret
!= -LTTNG_UST_ERR_EXITING
) {
1190 ERR("UST app event %s exclusions failed for app (pid: %d) "
1191 "with ret %d", ua_event
->attr
.name
, app
->pid
, ret
);
1194 * This is normal behavior, an application can die during the
1195 * creation process. Don't report an error so the execution can
1196 * continue normally.
1199 DBG3("UST app event exclusion failed. Application is dead.");
1204 DBG2("UST exclusion set successfully for event %s", ua_event
->name
);
1207 health_code_update();
1212 * Disable the specified event on to UST tracer for the UST session.
1214 static int disable_ust_event(struct ust_app
*app
,
1215 struct ust_app_session
*ua_sess
, struct ust_app_event
*ua_event
)
1219 health_code_update();
1221 ret
= ustctl_disable(app
->sock
, ua_event
->obj
);
1223 if (ret
!= -EPIPE
&& ret
!= -LTTNG_UST_ERR_EXITING
) {
1224 ERR("UST app event %s disable failed for app (pid: %d) "
1225 "and session handle %d with ret %d",
1226 ua_event
->attr
.name
, app
->pid
, ua_sess
->handle
, ret
);
1229 * This is normal behavior, an application can die during the
1230 * creation process. Don't report an error so the execution can
1231 * continue normally.
1234 DBG3("UST app disable event failed. Application is dead.");
1239 DBG2("UST app event %s disabled successfully for app (pid: %d)",
1240 ua_event
->attr
.name
, app
->pid
);
1243 health_code_update();
1248 * Disable the specified channel on to UST tracer for the UST session.
1250 static int disable_ust_channel(struct ust_app
*app
,
1251 struct ust_app_session
*ua_sess
, struct ust_app_channel
*ua_chan
)
1255 health_code_update();
1257 ret
= ustctl_disable(app
->sock
, ua_chan
->obj
);
1259 if (ret
!= -EPIPE
&& ret
!= -LTTNG_UST_ERR_EXITING
) {
1260 ERR("UST app channel %s disable failed for app (pid: %d) "
1261 "and session handle %d with ret %d",
1262 ua_chan
->name
, app
->pid
, ua_sess
->handle
, ret
);
1265 * This is normal behavior, an application can die during the
1266 * creation process. Don't report an error so the execution can
1267 * continue normally.
1270 DBG3("UST app disable channel failed. Application is dead.");
1275 DBG2("UST app channel %s disabled successfully for app (pid: %d)",
1276 ua_chan
->name
, app
->pid
);
1279 health_code_update();
1284 * Enable the specified channel on to UST tracer for the UST session.
1286 static int enable_ust_channel(struct ust_app
*app
,
1287 struct ust_app_session
*ua_sess
, struct ust_app_channel
*ua_chan
)
1291 health_code_update();
1293 ret
= ustctl_enable(app
->sock
, ua_chan
->obj
);
1295 if (ret
!= -EPIPE
&& ret
!= -LTTNG_UST_ERR_EXITING
) {
1296 ERR("UST app channel %s enable failed for app (pid: %d) "
1297 "and session handle %d with ret %d",
1298 ua_chan
->name
, app
->pid
, ua_sess
->handle
, ret
);
1301 * This is normal behavior, an application can die during the
1302 * creation process. Don't report an error so the execution can
1303 * continue normally.
1306 DBG3("UST app enable channel failed. Application is dead.");
1311 ua_chan
->enabled
= 1;
1313 DBG2("UST app channel %s enabled successfully for app (pid: %d)",
1314 ua_chan
->name
, app
->pid
);
1317 health_code_update();
1322 * Enable the specified event on to UST tracer for the UST session.
1324 static int enable_ust_event(struct ust_app
*app
,
1325 struct ust_app_session
*ua_sess
, struct ust_app_event
*ua_event
)
1329 health_code_update();
1331 ret
= ustctl_enable(app
->sock
, ua_event
->obj
);
1333 if (ret
!= -EPIPE
&& ret
!= -LTTNG_UST_ERR_EXITING
) {
1334 ERR("UST app event %s enable failed for app (pid: %d) "
1335 "and session handle %d with ret %d",
1336 ua_event
->attr
.name
, app
->pid
, ua_sess
->handle
, ret
);
1339 * This is normal behavior, an application can die during the
1340 * creation process. Don't report an error so the execution can
1341 * continue normally.
1344 DBG3("UST app enable event failed. Application is dead.");
1349 DBG2("UST app event %s enabled successfully for app (pid: %d)",
1350 ua_event
->attr
.name
, app
->pid
);
1353 health_code_update();
1358 * Send channel and stream buffer to application.
1360 * Return 0 on success. On error, a negative value is returned.
1362 static int send_channel_pid_to_ust(struct ust_app
*app
,
1363 struct ust_app_session
*ua_sess
, struct ust_app_channel
*ua_chan
)
1366 struct ust_app_stream
*stream
, *stmp
;
1372 health_code_update();
1374 DBG("UST app sending channel %s to UST app sock %d", ua_chan
->name
,
1377 /* Send channel to the application. */
1378 ret
= ust_consumer_send_channel_to_ust(app
, ua_sess
, ua_chan
);
1383 health_code_update();
1385 /* Send all streams to application. */
1386 cds_list_for_each_entry_safe(stream
, stmp
, &ua_chan
->streams
.head
, list
) {
1387 ret
= ust_consumer_send_stream_to_ust(app
, ua_chan
, stream
);
1391 /* We don't need the stream anymore once sent to the tracer. */
1392 cds_list_del(&stream
->list
);
1393 delete_ust_app_stream(-1, stream
);
1395 /* Flag the channel that it is sent to the application. */
1396 ua_chan
->is_sent
= 1;
1399 health_code_update();
1404 * Create the specified event onto the UST tracer for a UST session.
1406 * Should be called with session mutex held.
1409 int create_ust_event(struct ust_app
*app
, struct ust_app_session
*ua_sess
,
1410 struct ust_app_channel
*ua_chan
, struct ust_app_event
*ua_event
)
1414 health_code_update();
1416 /* Create UST event on tracer */
1417 ret
= ustctl_create_event(app
->sock
, &ua_event
->attr
, ua_chan
->obj
,
1420 if (ret
!= -EPIPE
&& ret
!= -LTTNG_UST_ERR_EXITING
) {
1421 ERR("Error ustctl create event %s for app pid: %d with ret %d",
1422 ua_event
->attr
.name
, app
->pid
, ret
);
1425 * This is normal behavior, an application can die during the
1426 * creation process. Don't report an error so the execution can
1427 * continue normally.
1430 DBG3("UST app create event failed. Application is dead.");
1435 ua_event
->handle
= ua_event
->obj
->handle
;
1437 DBG2("UST app event %s created successfully for pid:%d",
1438 ua_event
->attr
.name
, app
->pid
);
1440 health_code_update();
1442 /* Set filter if one is present. */
1443 if (ua_event
->filter
) {
1444 ret
= set_ust_event_filter(ua_event
, app
);
1450 /* Set exclusions for the event */
1451 if (ua_event
->exclusion
) {
1452 ret
= set_ust_event_exclusion(ua_event
, app
);
1458 /* If event not enabled, disable it on the tracer */
1459 if (ua_event
->enabled
) {
1461 * We now need to explicitly enable the event, since it
1462 * is now disabled at creation.
1464 ret
= enable_ust_event(app
, ua_sess
, ua_event
);
1467 * If we hit an EPERM, something is wrong with our enable call. If
1468 * we get an EEXIST, there is a problem on the tracer side since we
1472 case -LTTNG_UST_ERR_PERM
:
1473 /* Code flow problem */
1475 case -LTTNG_UST_ERR_EXIST
:
1476 /* It's OK for our use case. */
1485 ret
= disable_ust_event(app
, ua_sess
, ua_event
);
1488 * If we hit an EPERM, something is wrong with our disable call. If
1489 * we get an EEXIST, there is a problem on the tracer side since we
1493 case -LTTNG_UST_ERR_PERM
:
1494 /* Code flow problem */
1496 case -LTTNG_UST_ERR_EXIST
:
1497 /* It's OK for our use case. */
1508 health_code_update();
1513 * Copy data between an UST app event and a LTT event.
1515 static void shadow_copy_event(struct ust_app_event
*ua_event
,
1516 struct ltt_ust_event
*uevent
)
1518 size_t exclusion_alloc_size
;
1520 strncpy(ua_event
->name
, uevent
->attr
.name
, sizeof(ua_event
->name
));
1521 ua_event
->name
[sizeof(ua_event
->name
) - 1] = '\0';
1523 ua_event
->enabled
= uevent
->enabled
;
1525 /* Copy event attributes */
1526 memcpy(&ua_event
->attr
, &uevent
->attr
, sizeof(ua_event
->attr
));
1528 /* Copy filter bytecode */
1529 if (uevent
->filter
) {
1530 ua_event
->filter
= alloc_copy_ust_app_filter(uevent
->filter
);
1531 /* Filter might be NULL here in case of ENONEM. */
1534 /* Copy exclusion data */
1535 if (uevent
->exclusion
) {
1536 exclusion_alloc_size
= sizeof(struct lttng_ust_event_exclusion
) +
1537 LTTNG_UST_SYM_NAME_LEN
* uevent
->exclusion
->count
;
1538 ua_event
->exclusion
= zmalloc(exclusion_alloc_size
);
1539 if (ua_event
->exclusion
== NULL
) {
1542 memcpy(ua_event
->exclusion
, uevent
->exclusion
,
1543 exclusion_alloc_size
);
1549 * Copy data between an UST app channel and a LTT channel.
1551 static void shadow_copy_channel(struct ust_app_channel
*ua_chan
,
1552 struct ltt_ust_channel
*uchan
)
1554 struct lttng_ht_iter iter
;
1555 struct ltt_ust_event
*uevent
;
1556 struct ltt_ust_context
*uctx
;
1557 struct ust_app_event
*ua_event
;
1558 struct ust_app_ctx
*ua_ctx
;
1560 DBG2("UST app shadow copy of channel %s started", ua_chan
->name
);
1562 strncpy(ua_chan
->name
, uchan
->name
, sizeof(ua_chan
->name
));
1563 ua_chan
->name
[sizeof(ua_chan
->name
) - 1] = '\0';
1565 ua_chan
->tracefile_size
= uchan
->tracefile_size
;
1566 ua_chan
->tracefile_count
= uchan
->tracefile_count
;
1568 /* Copy event attributes since the layout is different. */
1569 ua_chan
->attr
.subbuf_size
= uchan
->attr
.subbuf_size
;
1570 ua_chan
->attr
.num_subbuf
= uchan
->attr
.num_subbuf
;
1571 ua_chan
->attr
.overwrite
= uchan
->attr
.overwrite
;
1572 ua_chan
->attr
.switch_timer_interval
= uchan
->attr
.switch_timer_interval
;
1573 ua_chan
->attr
.read_timer_interval
= uchan
->attr
.read_timer_interval
;
1574 ua_chan
->attr
.output
= uchan
->attr
.output
;
1576 * Note that the attribute channel type is not set since the channel on the
1577 * tracing registry side does not have this information.
1580 ua_chan
->enabled
= uchan
->enabled
;
1581 ua_chan
->tracing_channel_id
= uchan
->id
;
1583 cds_list_for_each_entry(uctx
, &uchan
->ctx_list
, list
) {
1584 ua_ctx
= alloc_ust_app_ctx(&uctx
->ctx
);
1585 if (ua_ctx
== NULL
) {
1588 lttng_ht_node_init_ulong(&ua_ctx
->node
,
1589 (unsigned long) ua_ctx
->ctx
.ctx
);
1590 lttng_ht_add_ulong(ua_chan
->ctx
, &ua_ctx
->node
);
1591 cds_list_add_tail(&ua_ctx
->list
, &ua_chan
->ctx_list
);
1594 /* Copy all events from ltt ust channel to ust app channel */
1595 cds_lfht_for_each_entry(uchan
->events
->ht
, &iter
.iter
, uevent
, node
.node
) {
1596 ua_event
= find_ust_app_event(ua_chan
->events
, uevent
->attr
.name
,
1597 uevent
->filter
, uevent
->attr
.loglevel
, uevent
->exclusion
);
1598 if (ua_event
== NULL
) {
1599 DBG2("UST event %s not found on shadow copy channel",
1601 ua_event
= alloc_ust_app_event(uevent
->attr
.name
, &uevent
->attr
);
1602 if (ua_event
== NULL
) {
1605 shadow_copy_event(ua_event
, uevent
);
1606 add_unique_ust_app_event(ua_chan
, ua_event
);
1610 DBG3("UST app shadow copy of channel %s done", ua_chan
->name
);
1614 * Copy data between a UST app session and a regular LTT session.
1616 static void shadow_copy_session(struct ust_app_session
*ua_sess
,
1617 struct ltt_ust_session
*usess
, struct ust_app
*app
)
1619 struct lttng_ht_node_str
*ua_chan_node
;
1620 struct lttng_ht_iter iter
;
1621 struct ltt_ust_channel
*uchan
;
1622 struct ust_app_channel
*ua_chan
;
1624 struct tm
*timeinfo
;
1628 /* Get date and time for unique app path */
1630 timeinfo
= localtime(&rawtime
);
1631 strftime(datetime
, sizeof(datetime
), "%Y%m%d-%H%M%S", timeinfo
);
1633 DBG2("Shadow copy of session handle %d", ua_sess
->handle
);
1635 ua_sess
->tracing_id
= usess
->id
;
1636 ua_sess
->id
= get_next_session_id();
1637 ua_sess
->uid
= app
->uid
;
1638 ua_sess
->gid
= app
->gid
;
1639 ua_sess
->euid
= usess
->uid
;
1640 ua_sess
->egid
= usess
->gid
;
1641 ua_sess
->buffer_type
= usess
->buffer_type
;
1642 ua_sess
->bits_per_long
= app
->bits_per_long
;
1643 /* There is only one consumer object per session possible. */
1644 ua_sess
->consumer
= usess
->consumer
;
1645 ua_sess
->output_traces
= usess
->output_traces
;
1646 ua_sess
->live_timer_interval
= usess
->live_timer_interval
;
1647 copy_channel_attr_to_ustctl(&ua_sess
->metadata_attr
,
1648 &usess
->metadata_attr
);
1650 switch (ua_sess
->buffer_type
) {
1651 case LTTNG_BUFFER_PER_PID
:
1652 ret
= snprintf(ua_sess
->path
, sizeof(ua_sess
->path
),
1653 DEFAULT_UST_TRACE_PID_PATH
"/%s-%d-%s", app
->name
, app
->pid
,
1656 case LTTNG_BUFFER_PER_UID
:
1657 ret
= snprintf(ua_sess
->path
, sizeof(ua_sess
->path
),
1658 DEFAULT_UST_TRACE_UID_PATH
, ua_sess
->uid
, app
->bits_per_long
);
1665 PERROR("asprintf UST shadow copy session");
1670 /* Iterate over all channels in global domain. */
1671 cds_lfht_for_each_entry(usess
->domain_global
.channels
->ht
, &iter
.iter
,
1673 struct lttng_ht_iter uiter
;
1675 lttng_ht_lookup(ua_sess
->channels
, (void *)uchan
->name
, &uiter
);
1676 ua_chan_node
= lttng_ht_iter_get_node_str(&uiter
);
1677 if (ua_chan_node
!= NULL
) {
1678 /* Session exist. Contiuing. */
1682 DBG2("Channel %s not found on shadow session copy, creating it",
1684 ua_chan
= alloc_ust_app_channel(uchan
->name
, ua_sess
, &uchan
->attr
);
1685 if (ua_chan
== NULL
) {
1686 /* malloc failed FIXME: Might want to do handle ENOMEM .. */
1689 shadow_copy_channel(ua_chan
, uchan
);
1691 * The concept of metadata channel does not exist on the tracing
1692 * registry side of the session daemon so this can only be a per CPU
1693 * channel and not metadata.
1695 ua_chan
->attr
.type
= LTTNG_UST_CHAN_PER_CPU
;
1697 lttng_ht_add_unique_str(ua_sess
->channels
, &ua_chan
->node
);
1705 * Lookup sesison wrapper.
1708 void __lookup_session_by_app(struct ltt_ust_session
*usess
,
1709 struct ust_app
*app
, struct lttng_ht_iter
*iter
)
1711 /* Get right UST app session from app */
1712 lttng_ht_lookup(app
->sessions
, &usess
->id
, iter
);
1716 * Return ust app session from the app session hashtable using the UST session
1719 static struct ust_app_session
*lookup_session_by_app(
1720 struct ltt_ust_session
*usess
, struct ust_app
*app
)
1722 struct lttng_ht_iter iter
;
1723 struct lttng_ht_node_u64
*node
;
1725 __lookup_session_by_app(usess
, app
, &iter
);
1726 node
= lttng_ht_iter_get_node_u64(&iter
);
1731 return caa_container_of(node
, struct ust_app_session
, node
);
1738 * Setup buffer registry per PID for the given session and application. If none
1739 * is found, a new one is created, added to the global registry and
1740 * initialized. If regp is valid, it's set with the newly created object.
1742 * Return 0 on success or else a negative value.
1744 static int setup_buffer_reg_pid(struct ust_app_session
*ua_sess
,
1745 struct ust_app
*app
, struct buffer_reg_pid
**regp
)
1748 struct buffer_reg_pid
*reg_pid
;
1755 reg_pid
= buffer_reg_pid_find(ua_sess
->id
);
1758 * This is the create channel path meaning that if there is NO
1759 * registry available, we have to create one for this session.
1761 ret
= buffer_reg_pid_create(ua_sess
->id
, ®_pid
);
1765 buffer_reg_pid_add(reg_pid
);
1770 /* Initialize registry. */
1771 ret
= ust_registry_session_init(®_pid
->registry
->reg
.ust
, app
,
1772 app
->bits_per_long
, app
->uint8_t_alignment
,
1773 app
->uint16_t_alignment
, app
->uint32_t_alignment
,
1774 app
->uint64_t_alignment
, app
->long_alignment
,
1775 app
->byte_order
, app
->version
.major
,
1776 app
->version
.minor
);
1781 DBG3("UST app buffer registry per PID created successfully");
1793 * Setup buffer registry per UID for the given session and application. If none
1794 * is found, a new one is created, added to the global registry and
1795 * initialized. If regp is valid, it's set with the newly created object.
1797 * Return 0 on success or else a negative value.
1799 static int setup_buffer_reg_uid(struct ltt_ust_session
*usess
,
1800 struct ust_app
*app
, struct buffer_reg_uid
**regp
)
1803 struct buffer_reg_uid
*reg_uid
;
1810 reg_uid
= buffer_reg_uid_find(usess
->id
, app
->bits_per_long
, app
->uid
);
1813 * This is the create channel path meaning that if there is NO
1814 * registry available, we have to create one for this session.
1816 ret
= buffer_reg_uid_create(usess
->id
, app
->bits_per_long
, app
->uid
,
1817 LTTNG_DOMAIN_UST
, ®_uid
);
1821 buffer_reg_uid_add(reg_uid
);
1826 /* Initialize registry. */
1827 ret
= ust_registry_session_init(®_uid
->registry
->reg
.ust
, NULL
,
1828 app
->bits_per_long
, app
->uint8_t_alignment
,
1829 app
->uint16_t_alignment
, app
->uint32_t_alignment
,
1830 app
->uint64_t_alignment
, app
->long_alignment
,
1831 app
->byte_order
, app
->version
.major
,
1832 app
->version
.minor
);
1836 /* Add node to teardown list of the session. */
1837 cds_list_add(®_uid
->lnode
, &usess
->buffer_reg_uid_list
);
1839 DBG3("UST app buffer registry per UID created successfully");
1851 * Create a session on the tracer side for the given app.
1853 * On success, ua_sess_ptr is populated with the session pointer or else left
1854 * untouched. If the session was created, is_created is set to 1. On error,
1855 * it's left untouched. Note that ua_sess_ptr is mandatory but is_created can
1858 * Returns 0 on success or else a negative code which is either -ENOMEM or
1859 * -ENOTCONN which is the default code if the ustctl_create_session fails.
1861 static int create_ust_app_session(struct ltt_ust_session
*usess
,
1862 struct ust_app
*app
, struct ust_app_session
**ua_sess_ptr
,
1865 int ret
, created
= 0;
1866 struct ust_app_session
*ua_sess
;
1870 assert(ua_sess_ptr
);
1872 health_code_update();
1874 ua_sess
= lookup_session_by_app(usess
, app
);
1875 if (ua_sess
== NULL
) {
1876 DBG2("UST app pid: %d session id %" PRIu64
" not found, creating it",
1877 app
->pid
, usess
->id
);
1878 ua_sess
= alloc_ust_app_session(app
);
1879 if (ua_sess
== NULL
) {
1880 /* Only malloc can failed so something is really wrong */
1884 shadow_copy_session(ua_sess
, usess
, app
);
1888 switch (usess
->buffer_type
) {
1889 case LTTNG_BUFFER_PER_PID
:
1890 /* Init local registry. */
1891 ret
= setup_buffer_reg_pid(ua_sess
, app
, NULL
);
1896 case LTTNG_BUFFER_PER_UID
:
1897 /* Look for a global registry. If none exists, create one. */
1898 ret
= setup_buffer_reg_uid(usess
, app
, NULL
);
1909 health_code_update();
1911 if (ua_sess
->handle
== -1) {
1912 ret
= ustctl_create_session(app
->sock
);
1914 if (ret
!= -EPIPE
&& ret
!= -LTTNG_UST_ERR_EXITING
) {
1915 ERR("Creating session for app pid %d with ret %d",
1918 DBG("UST app creating session failed. Application is dead");
1920 * This is normal behavior, an application can die during the
1921 * creation process. Don't report an error so the execution can
1922 * continue normally. This will get flagged ENOTCONN and the
1923 * caller will handle it.
1927 delete_ust_app_session(-1, ua_sess
, app
);
1928 if (ret
!= -ENOMEM
) {
1930 * Tracer is probably gone or got an internal error so let's
1931 * behave like it will soon unregister or not usable.
1938 ua_sess
->handle
= ret
;
1940 /* Add ust app session to app's HT */
1941 lttng_ht_node_init_u64(&ua_sess
->node
,
1942 ua_sess
->tracing_id
);
1943 lttng_ht_add_unique_u64(app
->sessions
, &ua_sess
->node
);
1945 DBG2("UST app session created successfully with handle %d", ret
);
1948 *ua_sess_ptr
= ua_sess
;
1950 *is_created
= created
;
1953 /* Everything went well. */
1957 health_code_update();
1962 * Match function for a hash table lookup of ust_app_ctx.
1964 * It matches an ust app context based on the context type and, in the case
1965 * of perf counters, their name.
1967 static int ht_match_ust_app_ctx(struct cds_lfht_node
*node
, const void *_key
)
1969 struct ust_app_ctx
*ctx
;
1970 const struct lttng_ust_context
*key
;
1975 ctx
= caa_container_of(node
, struct ust_app_ctx
, node
.node
);
1979 if (ctx
->ctx
.ctx
!= key
->ctx
) {
1983 /* Check the name in the case of perf thread counters. */
1984 if (key
->ctx
== LTTNG_UST_CONTEXT_PERF_THREAD_COUNTER
) {
1985 if (strncmp(key
->u
.perf_counter
.name
,
1986 ctx
->ctx
.u
.perf_counter
.name
,
1987 sizeof(key
->u
.perf_counter
.name
))) {
2000 * Lookup for an ust app context from an lttng_ust_context.
2002 * Must be called while holding RCU read side lock.
2003 * Return an ust_app_ctx object or NULL on error.
2006 struct ust_app_ctx
*find_ust_app_context(struct lttng_ht
*ht
,
2007 struct lttng_ust_context
*uctx
)
2009 struct lttng_ht_iter iter
;
2010 struct lttng_ht_node_ulong
*node
;
2011 struct ust_app_ctx
*app_ctx
= NULL
;
2016 /* Lookup using the lttng_ust_context_type and a custom match fct. */
2017 cds_lfht_lookup(ht
->ht
, ht
->hash_fct((void *) uctx
->ctx
, lttng_ht_seed
),
2018 ht_match_ust_app_ctx
, uctx
, &iter
.iter
);
2019 node
= lttng_ht_iter_get_node_ulong(&iter
);
2024 app_ctx
= caa_container_of(node
, struct ust_app_ctx
, node
);
2031 * Create a context for the channel on the tracer.
2033 * Called with UST app session lock held and a RCU read side lock.
2036 int create_ust_app_channel_context(struct ust_app_session
*ua_sess
,
2037 struct ust_app_channel
*ua_chan
, struct lttng_ust_context
*uctx
,
2038 struct ust_app
*app
)
2041 struct ust_app_ctx
*ua_ctx
;
2043 DBG2("UST app adding context to channel %s", ua_chan
->name
);
2045 ua_ctx
= find_ust_app_context(ua_chan
->ctx
, uctx
);
2051 ua_ctx
= alloc_ust_app_ctx(uctx
);
2052 if (ua_ctx
== NULL
) {
2058 lttng_ht_node_init_ulong(&ua_ctx
->node
, (unsigned long) ua_ctx
->ctx
.ctx
);
2059 lttng_ht_add_ulong(ua_chan
->ctx
, &ua_ctx
->node
);
2060 cds_list_add_tail(&ua_ctx
->list
, &ua_chan
->ctx_list
);
2062 ret
= create_ust_channel_context(ua_chan
, ua_ctx
, app
);
2072 * Enable on the tracer side a ust app event for the session and channel.
2074 * Called with UST app session lock held.
2077 int enable_ust_app_event(struct ust_app_session
*ua_sess
,
2078 struct ust_app_event
*ua_event
, struct ust_app
*app
)
2082 ret
= enable_ust_event(app
, ua_sess
, ua_event
);
2087 ua_event
->enabled
= 1;
2094 * Disable on the tracer side a ust app event for the session and channel.
2096 static int disable_ust_app_event(struct ust_app_session
*ua_sess
,
2097 struct ust_app_event
*ua_event
, struct ust_app
*app
)
2101 ret
= disable_ust_event(app
, ua_sess
, ua_event
);
2106 ua_event
->enabled
= 0;
2113 * Lookup ust app channel for session and disable it on the tracer side.
2116 int disable_ust_app_channel(struct ust_app_session
*ua_sess
,
2117 struct ust_app_channel
*ua_chan
, struct ust_app
*app
)
2121 ret
= disable_ust_channel(app
, ua_sess
, ua_chan
);
2126 ua_chan
->enabled
= 0;
2133 * Lookup ust app channel for session and enable it on the tracer side. This
2134 * MUST be called with a RCU read side lock acquired.
2136 static int enable_ust_app_channel(struct ust_app_session
*ua_sess
,
2137 struct ltt_ust_channel
*uchan
, struct ust_app
*app
)
2140 struct lttng_ht_iter iter
;
2141 struct lttng_ht_node_str
*ua_chan_node
;
2142 struct ust_app_channel
*ua_chan
;
2144 lttng_ht_lookup(ua_sess
->channels
, (void *)uchan
->name
, &iter
);
2145 ua_chan_node
= lttng_ht_iter_get_node_str(&iter
);
2146 if (ua_chan_node
== NULL
) {
2147 DBG2("Unable to find channel %s in ust session id %" PRIu64
,
2148 uchan
->name
, ua_sess
->tracing_id
);
2152 ua_chan
= caa_container_of(ua_chan_node
, struct ust_app_channel
, node
);
2154 ret
= enable_ust_channel(app
, ua_sess
, ua_chan
);
2164 * Ask the consumer to create a channel and get it if successful.
2166 * Return 0 on success or else a negative value.
2168 static int do_consumer_create_channel(struct ltt_ust_session
*usess
,
2169 struct ust_app_session
*ua_sess
, struct ust_app_channel
*ua_chan
,
2170 int bitness
, struct ust_registry_session
*registry
)
2173 unsigned int nb_fd
= 0;
2174 struct consumer_socket
*socket
;
2182 health_code_update();
2184 /* Get the right consumer socket for the application. */
2185 socket
= consumer_find_socket_by_bitness(bitness
, usess
->consumer
);
2191 health_code_update();
2193 /* Need one fd for the channel. */
2194 ret
= lttng_fd_get(LTTNG_FD_APPS
, 1);
2196 ERR("Exhausted number of available FD upon create channel");
2201 * Ask consumer to create channel. The consumer will return the number of
2202 * stream we have to expect.
2204 ret
= ust_consumer_ask_channel(ua_sess
, ua_chan
, usess
->consumer
, socket
,
2211 * Compute the number of fd needed before receiving them. It must be 2 per
2212 * stream (2 being the default value here).
2214 nb_fd
= DEFAULT_UST_STREAM_FD_NUM
* ua_chan
->expected_stream_count
;
2216 /* Reserve the amount of file descriptor we need. */
2217 ret
= lttng_fd_get(LTTNG_FD_APPS
, nb_fd
);
2219 ERR("Exhausted number of available FD upon create channel");
2220 goto error_fd_get_stream
;
2223 health_code_update();
2226 * Now get the channel from the consumer. This call wil populate the stream
2227 * list of that channel and set the ust objects.
2229 if (usess
->consumer
->enabled
) {
2230 ret
= ust_consumer_get_channel(socket
, ua_chan
);
2240 lttng_fd_put(LTTNG_FD_APPS
, nb_fd
);
2241 error_fd_get_stream
:
2243 * Initiate a destroy channel on the consumer since we had an error
2244 * handling it on our side. The return value is of no importance since we
2245 * already have a ret value set by the previous error that we need to
2248 (void) ust_consumer_destroy_channel(socket
, ua_chan
);
2250 lttng_fd_put(LTTNG_FD_APPS
, 1);
2252 health_code_update();
2258 * Duplicate the ust data object of the ust app stream and save it in the
2259 * buffer registry stream.
2261 * Return 0 on success or else a negative value.
2263 static int duplicate_stream_object(struct buffer_reg_stream
*reg_stream
,
2264 struct ust_app_stream
*stream
)
2271 /* Reserve the amount of file descriptor we need. */
2272 ret
= lttng_fd_get(LTTNG_FD_APPS
, 2);
2274 ERR("Exhausted number of available FD upon duplicate stream");
2278 /* Duplicate object for stream once the original is in the registry. */
2279 ret
= ustctl_duplicate_ust_object_data(&stream
->obj
,
2280 reg_stream
->obj
.ust
);
2282 ERR("Duplicate stream obj from %p to %p failed with ret %d",
2283 reg_stream
->obj
.ust
, stream
->obj
, ret
);
2284 lttng_fd_put(LTTNG_FD_APPS
, 2);
2287 stream
->handle
= stream
->obj
->handle
;
2294 * Duplicate the ust data object of the ust app. channel and save it in the
2295 * buffer registry channel.
2297 * Return 0 on success or else a negative value.
2299 static int duplicate_channel_object(struct buffer_reg_channel
*reg_chan
,
2300 struct ust_app_channel
*ua_chan
)
2307 /* Need two fds for the channel. */
2308 ret
= lttng_fd_get(LTTNG_FD_APPS
, 1);
2310 ERR("Exhausted number of available FD upon duplicate channel");
2314 /* Duplicate object for stream once the original is in the registry. */
2315 ret
= ustctl_duplicate_ust_object_data(&ua_chan
->obj
, reg_chan
->obj
.ust
);
2317 ERR("Duplicate channel obj from %p to %p failed with ret: %d",
2318 reg_chan
->obj
.ust
, ua_chan
->obj
, ret
);
2321 ua_chan
->handle
= ua_chan
->obj
->handle
;
2326 lttng_fd_put(LTTNG_FD_APPS
, 1);
2332 * For a given channel buffer registry, setup all streams of the given ust
2333 * application channel.
2335 * Return 0 on success or else a negative value.
2337 static int setup_buffer_reg_streams(struct buffer_reg_channel
*reg_chan
,
2338 struct ust_app_channel
*ua_chan
)
2341 struct ust_app_stream
*stream
, *stmp
;
2346 DBG2("UST app setup buffer registry stream");
2348 /* Send all streams to application. */
2349 cds_list_for_each_entry_safe(stream
, stmp
, &ua_chan
->streams
.head
, list
) {
2350 struct buffer_reg_stream
*reg_stream
;
2352 ret
= buffer_reg_stream_create(®_stream
);
2358 * Keep original pointer and nullify it in the stream so the delete
2359 * stream call does not release the object.
2361 reg_stream
->obj
.ust
= stream
->obj
;
2363 buffer_reg_stream_add(reg_stream
, reg_chan
);
2365 /* We don't need the streams anymore. */
2366 cds_list_del(&stream
->list
);
2367 delete_ust_app_stream(-1, stream
);
2375 * Create a buffer registry channel for the given session registry and
2376 * application channel object. If regp pointer is valid, it's set with the
2377 * created object. Important, the created object is NOT added to the session
2378 * registry hash table.
2380 * Return 0 on success else a negative value.
2382 static int create_buffer_reg_channel(struct buffer_reg_session
*reg_sess
,
2383 struct ust_app_channel
*ua_chan
, struct buffer_reg_channel
**regp
)
2386 struct buffer_reg_channel
*reg_chan
= NULL
;
2391 DBG2("UST app creating buffer registry channel for %s", ua_chan
->name
);
2393 /* Create buffer registry channel. */
2394 ret
= buffer_reg_channel_create(ua_chan
->tracing_channel_id
, ®_chan
);
2399 reg_chan
->consumer_key
= ua_chan
->key
;
2400 reg_chan
->subbuf_size
= ua_chan
->attr
.subbuf_size
;
2402 /* Create and add a channel registry to session. */
2403 ret
= ust_registry_channel_add(reg_sess
->reg
.ust
,
2404 ua_chan
->tracing_channel_id
);
2408 buffer_reg_channel_add(reg_sess
, reg_chan
);
2417 /* Safe because the registry channel object was not added to any HT. */
2418 buffer_reg_channel_destroy(reg_chan
, LTTNG_DOMAIN_UST
);
2424 * Setup buffer registry channel for the given session registry and application
2425 * channel object. If regp pointer is valid, it's set with the created object.
2427 * Return 0 on success else a negative value.
2429 static int setup_buffer_reg_channel(struct buffer_reg_session
*reg_sess
,
2430 struct ust_app_channel
*ua_chan
, struct buffer_reg_channel
*reg_chan
)
2437 assert(ua_chan
->obj
);
2439 DBG2("UST app setup buffer registry channel for %s", ua_chan
->name
);
2441 /* Setup all streams for the registry. */
2442 ret
= setup_buffer_reg_streams(reg_chan
, ua_chan
);
2447 reg_chan
->obj
.ust
= ua_chan
->obj
;
2448 ua_chan
->obj
= NULL
;
2453 buffer_reg_channel_remove(reg_sess
, reg_chan
);
2454 buffer_reg_channel_destroy(reg_chan
, LTTNG_DOMAIN_UST
);
2459 * Send buffer registry channel to the application.
2461 * Return 0 on success else a negative value.
2463 static int send_channel_uid_to_ust(struct buffer_reg_channel
*reg_chan
,
2464 struct ust_app
*app
, struct ust_app_session
*ua_sess
,
2465 struct ust_app_channel
*ua_chan
)
2468 struct buffer_reg_stream
*reg_stream
;
2475 DBG("UST app sending buffer registry channel to ust sock %d", app
->sock
);
2477 ret
= duplicate_channel_object(reg_chan
, ua_chan
);
2482 /* Send channel to the application. */
2483 ret
= ust_consumer_send_channel_to_ust(app
, ua_sess
, ua_chan
);
2488 health_code_update();
2490 /* Send all streams to application. */
2491 pthread_mutex_lock(®_chan
->stream_list_lock
);
2492 cds_list_for_each_entry(reg_stream
, ®_chan
->streams
, lnode
) {
2493 struct ust_app_stream stream
;
2495 ret
= duplicate_stream_object(reg_stream
, &stream
);
2497 goto error_stream_unlock
;
2500 ret
= ust_consumer_send_stream_to_ust(app
, ua_chan
, &stream
);
2502 (void) release_ust_app_stream(-1, &stream
);
2503 goto error_stream_unlock
;
2507 * The return value is not important here. This function will output an
2510 (void) release_ust_app_stream(-1, &stream
);
2512 ua_chan
->is_sent
= 1;
2514 error_stream_unlock
:
2515 pthread_mutex_unlock(®_chan
->stream_list_lock
);
2521 * Create and send to the application the created buffers with per UID buffers.
2523 * Return 0 on success else a negative value.
2525 static int create_channel_per_uid(struct ust_app
*app
,
2526 struct ltt_ust_session
*usess
, struct ust_app_session
*ua_sess
,
2527 struct ust_app_channel
*ua_chan
)
2530 struct buffer_reg_uid
*reg_uid
;
2531 struct buffer_reg_channel
*reg_chan
;
2538 DBG("UST app creating channel %s with per UID buffers", ua_chan
->name
);
2540 reg_uid
= buffer_reg_uid_find(usess
->id
, app
->bits_per_long
, app
->uid
);
2542 * The session creation handles the creation of this global registry
2543 * object. If none can be find, there is a code flow problem or a
2548 reg_chan
= buffer_reg_channel_find(ua_chan
->tracing_channel_id
,
2551 /* Create the buffer registry channel object. */
2552 ret
= create_buffer_reg_channel(reg_uid
->registry
, ua_chan
, ®_chan
);
2554 ERR("Error creating the UST channel \"%s\" registry instance",
2561 * Create the buffers on the consumer side. This call populates the
2562 * ust app channel object with all streams and data object.
2564 ret
= do_consumer_create_channel(usess
, ua_sess
, ua_chan
,
2565 app
->bits_per_long
, reg_uid
->registry
->reg
.ust
);
2567 ERR("Error creating UST channel \"%s\" on the consumer daemon",
2571 * Let's remove the previously created buffer registry channel so
2572 * it's not visible anymore in the session registry.
2574 ust_registry_channel_del_free(reg_uid
->registry
->reg
.ust
,
2575 ua_chan
->tracing_channel_id
);
2576 buffer_reg_channel_remove(reg_uid
->registry
, reg_chan
);
2577 buffer_reg_channel_destroy(reg_chan
, LTTNG_DOMAIN_UST
);
2582 * Setup the streams and add it to the session registry.
2584 ret
= setup_buffer_reg_channel(reg_uid
->registry
, ua_chan
, reg_chan
);
2586 ERR("Error setting up UST channel \"%s\"",
2593 /* Send buffers to the application. */
2594 ret
= send_channel_uid_to_ust(reg_chan
, app
, ua_sess
, ua_chan
);
2597 * Don't report error to the console, since it may be
2598 * caused by application concurrently exiting.
2608 * Create and send to the application the created buffers with per PID buffers.
2610 * Return 0 on success else a negative value.
2612 static int create_channel_per_pid(struct ust_app
*app
,
2613 struct ltt_ust_session
*usess
, struct ust_app_session
*ua_sess
,
2614 struct ust_app_channel
*ua_chan
)
2617 struct ust_registry_session
*registry
;
2624 DBG("UST app creating channel %s with per PID buffers", ua_chan
->name
);
2628 registry
= get_session_registry(ua_sess
);
2631 /* Create and add a new channel registry to session. */
2632 ret
= ust_registry_channel_add(registry
, ua_chan
->key
);
2634 ERR("Error creating the UST channel \"%s\" registry instance",
2639 /* Create and get channel on the consumer side. */
2640 ret
= do_consumer_create_channel(usess
, ua_sess
, ua_chan
,
2641 app
->bits_per_long
, registry
);
2643 ERR("Error creating UST channel \"%s\" on the consumer daemon",
2648 ret
= send_channel_pid_to_ust(app
, ua_sess
, ua_chan
);
2651 * Don't report error to the console, since it may be
2652 * caused by application concurrently exiting.
2663 * From an already allocated ust app channel, create the channel buffers if
2664 * need and send it to the application. This MUST be called with a RCU read
2665 * side lock acquired.
2667 * Return 0 on success or else a negative value.
2669 static int do_create_channel(struct ust_app
*app
,
2670 struct ltt_ust_session
*usess
, struct ust_app_session
*ua_sess
,
2671 struct ust_app_channel
*ua_chan
)
2680 /* Handle buffer type before sending the channel to the application. */
2681 switch (usess
->buffer_type
) {
2682 case LTTNG_BUFFER_PER_UID
:
2684 ret
= create_channel_per_uid(app
, usess
, ua_sess
, ua_chan
);
2690 case LTTNG_BUFFER_PER_PID
:
2692 ret
= create_channel_per_pid(app
, usess
, ua_sess
, ua_chan
);
2704 /* Initialize ust objd object using the received handle and add it. */
2705 lttng_ht_node_init_ulong(&ua_chan
->ust_objd_node
, ua_chan
->handle
);
2706 lttng_ht_add_unique_ulong(app
->ust_objd
, &ua_chan
->ust_objd_node
);
2708 /* If channel is not enabled, disable it on the tracer */
2709 if (!ua_chan
->enabled
) {
2710 ret
= disable_ust_channel(app
, ua_sess
, ua_chan
);
2721 * Create UST app channel and create it on the tracer. Set ua_chanp of the
2722 * newly created channel if not NULL.
2724 * Called with UST app session lock and RCU read-side lock held.
2726 * Return 0 on success or else a negative value.
2728 static int create_ust_app_channel(struct ust_app_session
*ua_sess
,
2729 struct ltt_ust_channel
*uchan
, struct ust_app
*app
,
2730 enum lttng_ust_chan_type type
, struct ltt_ust_session
*usess
,
2731 struct ust_app_channel
**ua_chanp
)
2734 struct lttng_ht_iter iter
;
2735 struct lttng_ht_node_str
*ua_chan_node
;
2736 struct ust_app_channel
*ua_chan
;
2738 /* Lookup channel in the ust app session */
2739 lttng_ht_lookup(ua_sess
->channels
, (void *)uchan
->name
, &iter
);
2740 ua_chan_node
= lttng_ht_iter_get_node_str(&iter
);
2741 if (ua_chan_node
!= NULL
) {
2742 ua_chan
= caa_container_of(ua_chan_node
, struct ust_app_channel
, node
);
2746 ua_chan
= alloc_ust_app_channel(uchan
->name
, ua_sess
, &uchan
->attr
);
2747 if (ua_chan
== NULL
) {
2748 /* Only malloc can fail here */
2752 shadow_copy_channel(ua_chan
, uchan
);
2754 /* Set channel type. */
2755 ua_chan
->attr
.type
= type
;
2757 ret
= do_create_channel(app
, usess
, ua_sess
, ua_chan
);
2762 DBG2("UST app create channel %s for PID %d completed", ua_chan
->name
,
2765 /* Only add the channel if successful on the tracer side. */
2766 lttng_ht_add_unique_str(ua_sess
->channels
, &ua_chan
->node
);
2770 *ua_chanp
= ua_chan
;
2773 /* Everything went well. */
2777 delete_ust_app_channel(ua_chan
->is_sent
? app
->sock
: -1, ua_chan
, app
);
2783 * Create UST app event and create it on the tracer side.
2785 * Called with ust app session mutex held.
2788 int create_ust_app_event(struct ust_app_session
*ua_sess
,
2789 struct ust_app_channel
*ua_chan
, struct ltt_ust_event
*uevent
,
2790 struct ust_app
*app
)
2793 struct ust_app_event
*ua_event
;
2795 /* Get event node */
2796 ua_event
= find_ust_app_event(ua_chan
->events
, uevent
->attr
.name
,
2797 uevent
->filter
, uevent
->attr
.loglevel
, uevent
->exclusion
);
2798 if (ua_event
!= NULL
) {
2803 /* Does not exist so create one */
2804 ua_event
= alloc_ust_app_event(uevent
->attr
.name
, &uevent
->attr
);
2805 if (ua_event
== NULL
) {
2806 /* Only malloc can failed so something is really wrong */
2810 shadow_copy_event(ua_event
, uevent
);
2812 /* Create it on the tracer side */
2813 ret
= create_ust_event(app
, ua_sess
, ua_chan
, ua_event
);
2815 /* Not found previously means that it does not exist on the tracer */
2816 assert(ret
!= -LTTNG_UST_ERR_EXIST
);
2820 add_unique_ust_app_event(ua_chan
, ua_event
);
2822 DBG2("UST app create event %s for PID %d completed", ua_event
->name
,
2829 /* Valid. Calling here is already in a read side lock */
2830 delete_ust_app_event(-1, ua_event
);
2835 * Create UST metadata and open it on the tracer side.
2837 * Called with UST app session lock held and RCU read side lock.
2839 static int create_ust_app_metadata(struct ust_app_session
*ua_sess
,
2840 struct ust_app
*app
, struct consumer_output
*consumer
)
2843 struct ust_app_channel
*metadata
;
2844 struct consumer_socket
*socket
;
2845 struct ust_registry_session
*registry
;
2851 registry
= get_session_registry(ua_sess
);
2854 pthread_mutex_lock(®istry
->lock
);
2856 /* Metadata already exists for this registry or it was closed previously */
2857 if (registry
->metadata_key
|| registry
->metadata_closed
) {
2862 /* Allocate UST metadata */
2863 metadata
= alloc_ust_app_channel(DEFAULT_METADATA_NAME
, ua_sess
, NULL
);
2865 /* malloc() failed */
2870 memcpy(&metadata
->attr
, &ua_sess
->metadata_attr
, sizeof(metadata
->attr
));
2872 /* Need one fd for the channel. */
2873 ret
= lttng_fd_get(LTTNG_FD_APPS
, 1);
2875 ERR("Exhausted number of available FD upon create metadata");
2879 /* Get the right consumer socket for the application. */
2880 socket
= consumer_find_socket_by_bitness(app
->bits_per_long
, consumer
);
2883 goto error_consumer
;
2887 * Keep metadata key so we can identify it on the consumer side. Assign it
2888 * to the registry *before* we ask the consumer so we avoid the race of the
2889 * consumer requesting the metadata and the ask_channel call on our side
2890 * did not returned yet.
2892 registry
->metadata_key
= metadata
->key
;
2895 * Ask the metadata channel creation to the consumer. The metadata object
2896 * will be created by the consumer and kept their. However, the stream is
2897 * never added or monitored until we do a first push metadata to the
2900 ret
= ust_consumer_ask_channel(ua_sess
, metadata
, consumer
, socket
,
2903 /* Nullify the metadata key so we don't try to close it later on. */
2904 registry
->metadata_key
= 0;
2905 goto error_consumer
;
2909 * The setup command will make the metadata stream be sent to the relayd,
2910 * if applicable, and the thread managing the metadatas. This is important
2911 * because after this point, if an error occurs, the only way the stream
2912 * can be deleted is to be monitored in the consumer.
2914 ret
= consumer_setup_metadata(socket
, metadata
->key
);
2916 /* Nullify the metadata key so we don't try to close it later on. */
2917 registry
->metadata_key
= 0;
2918 goto error_consumer
;
2921 DBG2("UST metadata with key %" PRIu64
" created for app pid %d",
2922 metadata
->key
, app
->pid
);
2925 lttng_fd_put(LTTNG_FD_APPS
, 1);
2926 delete_ust_app_channel(-1, metadata
, app
);
2928 pthread_mutex_unlock(®istry
->lock
);
2933 * Return ust app pointer or NULL if not found. RCU read side lock MUST be
2934 * acquired before calling this function.
2936 struct ust_app
*ust_app_find_by_pid(pid_t pid
)
2938 struct ust_app
*app
= NULL
;
2939 struct lttng_ht_node_ulong
*node
;
2940 struct lttng_ht_iter iter
;
2942 lttng_ht_lookup(ust_app_ht
, (void *)((unsigned long) pid
), &iter
);
2943 node
= lttng_ht_iter_get_node_ulong(&iter
);
2945 DBG2("UST app no found with pid %d", pid
);
2949 DBG2("Found UST app by pid %d", pid
);
2951 app
= caa_container_of(node
, struct ust_app
, pid_n
);
2958 * Allocate and init an UST app object using the registration information and
2959 * the command socket. This is called when the command socket connects to the
2962 * The object is returned on success or else NULL.
2964 struct ust_app
*ust_app_create(struct ust_register_msg
*msg
, int sock
)
2966 struct ust_app
*lta
= NULL
;
2971 DBG3("UST app creating application for socket %d", sock
);
2973 if ((msg
->bits_per_long
== 64 &&
2974 (uatomic_read(&ust_consumerd64_fd
) == -EINVAL
))
2975 || (msg
->bits_per_long
== 32 &&
2976 (uatomic_read(&ust_consumerd32_fd
) == -EINVAL
))) {
2977 ERR("Registration failed: application \"%s\" (pid: %d) has "
2978 "%d-bit long, but no consumerd for this size is available.\n",
2979 msg
->name
, msg
->pid
, msg
->bits_per_long
);
2983 lta
= zmalloc(sizeof(struct ust_app
));
2989 lta
->ppid
= msg
->ppid
;
2990 lta
->uid
= msg
->uid
;
2991 lta
->gid
= msg
->gid
;
2993 lta
->bits_per_long
= msg
->bits_per_long
;
2994 lta
->uint8_t_alignment
= msg
->uint8_t_alignment
;
2995 lta
->uint16_t_alignment
= msg
->uint16_t_alignment
;
2996 lta
->uint32_t_alignment
= msg
->uint32_t_alignment
;
2997 lta
->uint64_t_alignment
= msg
->uint64_t_alignment
;
2998 lta
->long_alignment
= msg
->long_alignment
;
2999 lta
->byte_order
= msg
->byte_order
;
3001 lta
->v_major
= msg
->major
;
3002 lta
->v_minor
= msg
->minor
;
3003 lta
->sessions
= lttng_ht_new(0, LTTNG_HT_TYPE_U64
);
3004 lta
->ust_objd
= lttng_ht_new(0, LTTNG_HT_TYPE_ULONG
);
3005 lta
->notify_sock
= -1;
3007 /* Copy name and make sure it's NULL terminated. */
3008 strncpy(lta
->name
, msg
->name
, sizeof(lta
->name
));
3009 lta
->name
[UST_APP_PROCNAME_LEN
] = '\0';
3012 * Before this can be called, when receiving the registration information,
3013 * the application compatibility is checked. So, at this point, the
3014 * application can work with this session daemon.
3016 lta
->compatible
= 1;
3018 lta
->pid
= msg
->pid
;
3019 lttng_ht_node_init_ulong(<a
->pid_n
, (unsigned long) lta
->pid
);
3021 lttng_ht_node_init_ulong(<a
->sock_n
, (unsigned long) lta
->sock
);
3023 CDS_INIT_LIST_HEAD(<a
->teardown_head
);
3030 * For a given application object, add it to every hash table.
3032 void ust_app_add(struct ust_app
*app
)
3035 assert(app
->notify_sock
>= 0);
3040 * On a re-registration, we want to kick out the previous registration of
3043 lttng_ht_add_replace_ulong(ust_app_ht
, &app
->pid_n
);
3046 * The socket _should_ be unique until _we_ call close. So, a add_unique
3047 * for the ust_app_ht_by_sock is used which asserts fail if the entry was
3048 * already in the table.
3050 lttng_ht_add_unique_ulong(ust_app_ht_by_sock
, &app
->sock_n
);
3052 /* Add application to the notify socket hash table. */
3053 lttng_ht_node_init_ulong(&app
->notify_sock_n
, app
->notify_sock
);
3054 lttng_ht_add_unique_ulong(ust_app_ht_by_notify_sock
, &app
->notify_sock_n
);
3056 DBG("App registered with pid:%d ppid:%d uid:%d gid:%d sock:%d name:%s "
3057 "notify_sock:%d (version %d.%d)", app
->pid
, app
->ppid
, app
->uid
,
3058 app
->gid
, app
->sock
, app
->name
, app
->notify_sock
, app
->v_major
,
3065 * Set the application version into the object.
3067 * Return 0 on success else a negative value either an errno code or a
3068 * LTTng-UST error code.
3070 int ust_app_version(struct ust_app
*app
)
3076 ret
= ustctl_tracer_version(app
->sock
, &app
->version
);
3078 if (ret
!= -LTTNG_UST_ERR_EXITING
&& ret
!= -EPIPE
) {
3079 ERR("UST app %d version failed with ret %d", app
->sock
, ret
);
3081 DBG3("UST app %d version failed. Application is dead", app
->sock
);
3089 * Unregister app by removing it from the global traceable app list and freeing
3092 * The socket is already closed at this point so no close to sock.
3094 void ust_app_unregister(int sock
)
3096 struct ust_app
*lta
;
3097 struct lttng_ht_node_ulong
*node
;
3098 struct lttng_ht_iter ust_app_sock_iter
;
3099 struct lttng_ht_iter iter
;
3100 struct ust_app_session
*ua_sess
;
3105 /* Get the node reference for a call_rcu */
3106 lttng_ht_lookup(ust_app_ht_by_sock
, (void *)((unsigned long) sock
), &ust_app_sock_iter
);
3107 node
= lttng_ht_iter_get_node_ulong(&ust_app_sock_iter
);
3110 lta
= caa_container_of(node
, struct ust_app
, sock_n
);
3111 DBG("PID %d unregistering with sock %d", lta
->pid
, sock
);
3114 * For per-PID buffers, perform "push metadata" and flush all
3115 * application streams before removing app from hash tables,
3116 * ensuring proper behavior of data_pending check.
3117 * Remove sessions so they are not visible during deletion.
3119 cds_lfht_for_each_entry(lta
->sessions
->ht
, &iter
.iter
, ua_sess
,
3121 struct ust_registry_session
*registry
;
3123 ret
= lttng_ht_del(lta
->sessions
, &iter
);
3125 /* The session was already removed so scheduled for teardown. */
3129 if (ua_sess
->buffer_type
== LTTNG_BUFFER_PER_PID
) {
3130 (void) ust_app_flush_app_session(lta
, ua_sess
);
3134 * Add session to list for teardown. This is safe since at this point we
3135 * are the only one using this list.
3137 pthread_mutex_lock(&ua_sess
->lock
);
3140 * Normally, this is done in the delete session process which is
3141 * executed in the call rcu below. However, upon registration we can't
3142 * afford to wait for the grace period before pushing data or else the
3143 * data pending feature can race between the unregistration and stop
3144 * command where the data pending command is sent *before* the grace
3147 * The close metadata below nullifies the metadata pointer in the
3148 * session so the delete session will NOT push/close a second time.
3150 registry
= get_session_registry(ua_sess
);
3152 /* Push metadata for application before freeing the application. */
3153 (void) push_metadata(registry
, ua_sess
->consumer
);
3156 * Don't ask to close metadata for global per UID buffers. Close
3157 * metadata only on destroy trace session in this case. Also, the
3158 * previous push metadata could have flag the metadata registry to
3159 * close so don't send a close command if closed.
3161 if (ua_sess
->buffer_type
!= LTTNG_BUFFER_PER_UID
) {
3162 /* And ask to close it for this session registry. */
3163 (void) close_metadata(registry
, ua_sess
->consumer
);
3166 cds_list_add(&ua_sess
->teardown_node
, <a
->teardown_head
);
3168 pthread_mutex_unlock(&ua_sess
->lock
);
3171 /* Remove application from PID hash table */
3172 ret
= lttng_ht_del(ust_app_ht_by_sock
, &ust_app_sock_iter
);
3176 * Remove application from notify hash table. The thread handling the
3177 * notify socket could have deleted the node so ignore on error because
3178 * either way it's valid. The close of that socket is handled by the other
3181 iter
.iter
.node
= <a
->notify_sock_n
.node
;
3182 (void) lttng_ht_del(ust_app_ht_by_notify_sock
, &iter
);
3185 * Ignore return value since the node might have been removed before by an
3186 * add replace during app registration because the PID can be reassigned by
3189 iter
.iter
.node
= <a
->pid_n
.node
;
3190 ret
= lttng_ht_del(ust_app_ht
, &iter
);
3192 DBG3("Unregister app by PID %d failed. This can happen on pid reuse",
3197 call_rcu(<a
->pid_n
.head
, delete_ust_app_rcu
);
3204 * Fill events array with all events name of all registered apps.
3206 int ust_app_list_events(struct lttng_event
**events
)
3209 size_t nbmem
, count
= 0;
3210 struct lttng_ht_iter iter
;
3211 struct ust_app
*app
;
3212 struct lttng_event
*tmp_event
;
3214 nbmem
= UST_APP_EVENT_LIST_SIZE
;
3215 tmp_event
= zmalloc(nbmem
* sizeof(struct lttng_event
));
3216 if (tmp_event
== NULL
) {
3217 PERROR("zmalloc ust app events");
3224 cds_lfht_for_each_entry(ust_app_ht
->ht
, &iter
.iter
, app
, pid_n
.node
) {
3225 struct lttng_ust_tracepoint_iter uiter
;
3227 health_code_update();
3229 if (!app
->compatible
) {
3231 * TODO: In time, we should notice the caller of this error by
3232 * telling him that this is a version error.
3236 handle
= ustctl_tracepoint_list(app
->sock
);
3238 if (handle
!= -EPIPE
&& handle
!= -LTTNG_UST_ERR_EXITING
) {
3239 ERR("UST app list events getting handle failed for app pid %d",
3245 while ((ret
= ustctl_tracepoint_list_get(app
->sock
, handle
,
3246 &uiter
)) != -LTTNG_UST_ERR_NOENT
) {
3247 /* Handle ustctl error. */
3249 if (ret
!= -LTTNG_UST_ERR_EXITING
&& ret
!= -EPIPE
) {
3250 ERR("UST app tp list get failed for app %d with ret %d",
3253 DBG3("UST app tp list get failed. Application is dead");
3255 * This is normal behavior, an application can die during the
3256 * creation process. Don't report an error so the execution can
3257 * continue normally. Continue normal execution.
3265 health_code_update();
3266 if (count
>= nbmem
) {
3267 /* In case the realloc fails, we free the memory */
3268 struct lttng_event
*new_tmp_event
;
3271 new_nbmem
= nbmem
<< 1;
3272 DBG2("Reallocating event list from %zu to %zu entries",
3274 new_tmp_event
= realloc(tmp_event
,
3275 new_nbmem
* sizeof(struct lttng_event
));
3276 if (new_tmp_event
== NULL
) {
3277 PERROR("realloc ust app events");
3282 /* Zero the new memory */
3283 memset(new_tmp_event
+ nbmem
, 0,
3284 (new_nbmem
- nbmem
) * sizeof(struct lttng_event
));
3286 tmp_event
= new_tmp_event
;
3288 memcpy(tmp_event
[count
].name
, uiter
.name
, LTTNG_UST_SYM_NAME_LEN
);
3289 tmp_event
[count
].loglevel
= uiter
.loglevel
;
3290 tmp_event
[count
].type
= (enum lttng_event_type
) LTTNG_UST_TRACEPOINT
;
3291 tmp_event
[count
].pid
= app
->pid
;
3292 tmp_event
[count
].enabled
= -1;
3298 *events
= tmp_event
;
3300 DBG2("UST app list events done (%zu events)", count
);
3305 health_code_update();
3310 * Fill events array with all events name of all registered apps.
3312 int ust_app_list_event_fields(struct lttng_event_field
**fields
)
3315 size_t nbmem
, count
= 0;
3316 struct lttng_ht_iter iter
;
3317 struct ust_app
*app
;
3318 struct lttng_event_field
*tmp_event
;
3320 nbmem
= UST_APP_EVENT_LIST_SIZE
;
3321 tmp_event
= zmalloc(nbmem
* sizeof(struct lttng_event_field
));
3322 if (tmp_event
== NULL
) {
3323 PERROR("zmalloc ust app event fields");
3330 cds_lfht_for_each_entry(ust_app_ht
->ht
, &iter
.iter
, app
, pid_n
.node
) {
3331 struct lttng_ust_field_iter uiter
;
3333 health_code_update();
3335 if (!app
->compatible
) {
3337 * TODO: In time, we should notice the caller of this error by
3338 * telling him that this is a version error.
3342 handle
= ustctl_tracepoint_field_list(app
->sock
);
3344 if (handle
!= -EPIPE
&& handle
!= -LTTNG_UST_ERR_EXITING
) {
3345 ERR("UST app list field getting handle failed for app pid %d",
3351 while ((ret
= ustctl_tracepoint_field_list_get(app
->sock
, handle
,
3352 &uiter
)) != -LTTNG_UST_ERR_NOENT
) {
3353 /* Handle ustctl error. */
3355 if (ret
!= -LTTNG_UST_ERR_EXITING
&& ret
!= -EPIPE
) {
3356 ERR("UST app tp list field failed for app %d with ret %d",
3359 DBG3("UST app tp list field failed. Application is dead");
3361 * This is normal behavior, an application can die during the
3362 * creation process. Don't report an error so the execution can
3363 * continue normally. Reset list and count for next app.
3371 health_code_update();
3372 if (count
>= nbmem
) {
3373 /* In case the realloc fails, we free the memory */
3374 struct lttng_event_field
*new_tmp_event
;
3377 new_nbmem
= nbmem
<< 1;
3378 DBG2("Reallocating event field list from %zu to %zu entries",
3380 new_tmp_event
= realloc(tmp_event
,
3381 new_nbmem
* sizeof(struct lttng_event_field
));
3382 if (new_tmp_event
== NULL
) {
3383 PERROR("realloc ust app event fields");
3388 /* Zero the new memory */
3389 memset(new_tmp_event
+ nbmem
, 0,
3390 (new_nbmem
- nbmem
) * sizeof(struct lttng_event_field
));
3392 tmp_event
= new_tmp_event
;
3395 memcpy(tmp_event
[count
].field_name
, uiter
.field_name
, LTTNG_UST_SYM_NAME_LEN
);
3396 /* Mapping between these enums matches 1 to 1. */
3397 tmp_event
[count
].type
= (enum lttng_event_field_type
) uiter
.type
;
3398 tmp_event
[count
].nowrite
= uiter
.nowrite
;
3400 memcpy(tmp_event
[count
].event
.name
, uiter
.event_name
, LTTNG_UST_SYM_NAME_LEN
);
3401 tmp_event
[count
].event
.loglevel
= uiter
.loglevel
;
3402 tmp_event
[count
].event
.type
= LTTNG_EVENT_TRACEPOINT
;
3403 tmp_event
[count
].event
.pid
= app
->pid
;
3404 tmp_event
[count
].event
.enabled
= -1;
3410 *fields
= tmp_event
;
3412 DBG2("UST app list event fields done (%zu events)", count
);
3417 health_code_update();
3422 * Free and clean all traceable apps of the global list.
3424 * Should _NOT_ be called with RCU read-side lock held.
3426 void ust_app_clean_list(void)
3429 struct ust_app
*app
;
3430 struct lttng_ht_iter iter
;
3432 DBG2("UST app cleaning registered apps hash table");
3436 cds_lfht_for_each_entry(ust_app_ht
->ht
, &iter
.iter
, app
, pid_n
.node
) {
3437 ret
= lttng_ht_del(ust_app_ht
, &iter
);
3439 call_rcu(&app
->pid_n
.head
, delete_ust_app_rcu
);
3442 /* Cleanup socket hash table */
3443 cds_lfht_for_each_entry(ust_app_ht_by_sock
->ht
, &iter
.iter
, app
,
3445 ret
= lttng_ht_del(ust_app_ht_by_sock
, &iter
);
3449 /* Cleanup notify socket hash table */
3450 cds_lfht_for_each_entry(ust_app_ht_by_notify_sock
->ht
, &iter
.iter
, app
,
3451 notify_sock_n
.node
) {
3452 ret
= lttng_ht_del(ust_app_ht_by_notify_sock
, &iter
);
3457 /* Destroy is done only when the ht is empty */
3458 ht_cleanup_push(ust_app_ht
);
3459 ht_cleanup_push(ust_app_ht_by_sock
);
3460 ht_cleanup_push(ust_app_ht_by_notify_sock
);
3464 * Init UST app hash table.
3466 void ust_app_ht_alloc(void)
3468 ust_app_ht
= lttng_ht_new(0, LTTNG_HT_TYPE_ULONG
);
3469 ust_app_ht_by_sock
= lttng_ht_new(0, LTTNG_HT_TYPE_ULONG
);
3470 ust_app_ht_by_notify_sock
= lttng_ht_new(0, LTTNG_HT_TYPE_ULONG
);
3474 * For a specific UST session, disable the channel for all registered apps.
3476 int ust_app_disable_channel_glb(struct ltt_ust_session
*usess
,
3477 struct ltt_ust_channel
*uchan
)
3480 struct lttng_ht_iter iter
;
3481 struct lttng_ht_node_str
*ua_chan_node
;
3482 struct ust_app
*app
;
3483 struct ust_app_session
*ua_sess
;
3484 struct ust_app_channel
*ua_chan
;
3486 if (usess
== NULL
|| uchan
== NULL
) {
3487 ERR("Disabling UST global channel with NULL values");
3492 DBG2("UST app disabling channel %s from global domain for session id %" PRIu64
,
3493 uchan
->name
, usess
->id
);
3497 /* For every registered applications */
3498 cds_lfht_for_each_entry(ust_app_ht
->ht
, &iter
.iter
, app
, pid_n
.node
) {
3499 struct lttng_ht_iter uiter
;
3500 if (!app
->compatible
) {
3502 * TODO: In time, we should notice the caller of this error by
3503 * telling him that this is a version error.
3507 ua_sess
= lookup_session_by_app(usess
, app
);
3508 if (ua_sess
== NULL
) {
3513 lttng_ht_lookup(ua_sess
->channels
, (void *)uchan
->name
, &uiter
);
3514 ua_chan_node
= lttng_ht_iter_get_node_str(&uiter
);
3515 /* If the session if found for the app, the channel must be there */
3516 assert(ua_chan_node
);
3518 ua_chan
= caa_container_of(ua_chan_node
, struct ust_app_channel
, node
);
3519 /* The channel must not be already disabled */
3520 assert(ua_chan
->enabled
== 1);
3522 /* Disable channel onto application */
3523 ret
= disable_ust_app_channel(ua_sess
, ua_chan
, app
);
3525 /* XXX: We might want to report this error at some point... */
3537 * For a specific UST session, enable the channel for all registered apps.
3539 int ust_app_enable_channel_glb(struct ltt_ust_session
*usess
,
3540 struct ltt_ust_channel
*uchan
)
3543 struct lttng_ht_iter iter
;
3544 struct ust_app
*app
;
3545 struct ust_app_session
*ua_sess
;
3547 if (usess
== NULL
|| uchan
== NULL
) {
3548 ERR("Adding UST global channel to NULL values");
3553 DBG2("UST app enabling channel %s to global domain for session id %" PRIu64
,
3554 uchan
->name
, usess
->id
);
3558 /* For every registered applications */
3559 cds_lfht_for_each_entry(ust_app_ht
->ht
, &iter
.iter
, app
, pid_n
.node
) {
3560 if (!app
->compatible
) {
3562 * TODO: In time, we should notice the caller of this error by
3563 * telling him that this is a version error.
3567 ua_sess
= lookup_session_by_app(usess
, app
);
3568 if (ua_sess
== NULL
) {
3572 /* Enable channel onto application */
3573 ret
= enable_ust_app_channel(ua_sess
, uchan
, app
);
3575 /* XXX: We might want to report this error at some point... */
3587 * Disable an event in a channel and for a specific session.
3589 int ust_app_disable_event_glb(struct ltt_ust_session
*usess
,
3590 struct ltt_ust_channel
*uchan
, struct ltt_ust_event
*uevent
)
3593 struct lttng_ht_iter iter
, uiter
;
3594 struct lttng_ht_node_str
*ua_chan_node
, *ua_event_node
;
3595 struct ust_app
*app
;
3596 struct ust_app_session
*ua_sess
;
3597 struct ust_app_channel
*ua_chan
;
3598 struct ust_app_event
*ua_event
;
3600 DBG("UST app disabling event %s for all apps in channel "
3601 "%s for session id %" PRIu64
,
3602 uevent
->attr
.name
, uchan
->name
, usess
->id
);
3606 /* For all registered applications */
3607 cds_lfht_for_each_entry(ust_app_ht
->ht
, &iter
.iter
, app
, pid_n
.node
) {
3608 if (!app
->compatible
) {
3610 * TODO: In time, we should notice the caller of this error by
3611 * telling him that this is a version error.
3615 ua_sess
= lookup_session_by_app(usess
, app
);
3616 if (ua_sess
== NULL
) {
3621 /* Lookup channel in the ust app session */
3622 lttng_ht_lookup(ua_sess
->channels
, (void *)uchan
->name
, &uiter
);
3623 ua_chan_node
= lttng_ht_iter_get_node_str(&uiter
);
3624 if (ua_chan_node
== NULL
) {
3625 DBG2("Channel %s not found in session id %" PRIu64
" for app pid %d."
3626 "Skipping", uchan
->name
, usess
->id
, app
->pid
);
3629 ua_chan
= caa_container_of(ua_chan_node
, struct ust_app_channel
, node
);
3631 lttng_ht_lookup(ua_chan
->events
, (void *)uevent
->attr
.name
, &uiter
);
3632 ua_event_node
= lttng_ht_iter_get_node_str(&uiter
);
3633 if (ua_event_node
== NULL
) {
3634 DBG2("Event %s not found in channel %s for app pid %d."
3635 "Skipping", uevent
->attr
.name
, uchan
->name
, app
->pid
);
3638 ua_event
= caa_container_of(ua_event_node
, struct ust_app_event
, node
);
3640 ret
= disable_ust_app_event(ua_sess
, ua_event
, app
);
3642 /* XXX: Report error someday... */
3653 * For a specific UST session, create the channel for all registered apps.
3655 int ust_app_create_channel_glb(struct ltt_ust_session
*usess
,
3656 struct ltt_ust_channel
*uchan
)
3658 int ret
= 0, created
;
3659 struct lttng_ht_iter iter
;
3660 struct ust_app
*app
;
3661 struct ust_app_session
*ua_sess
= NULL
;
3663 /* Very wrong code flow */
3667 DBG2("UST app adding channel %s to UST domain for session id %" PRIu64
,
3668 uchan
->name
, usess
->id
);
3672 /* For every registered applications */
3673 cds_lfht_for_each_entry(ust_app_ht
->ht
, &iter
.iter
, app
, pid_n
.node
) {
3674 if (!app
->compatible
) {
3676 * TODO: In time, we should notice the caller of this error by
3677 * telling him that this is a version error.
3682 * Create session on the tracer side and add it to app session HT. Note
3683 * that if session exist, it will simply return a pointer to the ust
3686 ret
= create_ust_app_session(usess
, app
, &ua_sess
, &created
);
3691 * The application's socket is not valid. Either a bad socket
3692 * or a timeout on it. We can't inform the caller that for a
3693 * specific app, the session failed so lets continue here.
3698 goto error_rcu_unlock
;
3703 pthread_mutex_lock(&ua_sess
->lock
);
3704 if (!strncmp(uchan
->name
, DEFAULT_METADATA_NAME
,
3705 sizeof(uchan
->name
))) {
3706 copy_channel_attr_to_ustctl(&ua_sess
->metadata_attr
, &uchan
->attr
);
3709 /* Create channel onto application. We don't need the chan ref. */
3710 ret
= create_ust_app_channel(ua_sess
, uchan
, app
,
3711 LTTNG_UST_CHAN_PER_CPU
, usess
, NULL
);
3713 pthread_mutex_unlock(&ua_sess
->lock
);
3715 if (ret
== -ENOMEM
) {
3716 /* No more memory is a fatal error. Stop right now. */
3717 goto error_rcu_unlock
;
3719 /* Cleanup the created session if it's the case. */
3721 destroy_app_session(app
, ua_sess
);
3732 * Enable event for a specific session and channel on the tracer.
3734 int ust_app_enable_event_glb(struct ltt_ust_session
*usess
,
3735 struct ltt_ust_channel
*uchan
, struct ltt_ust_event
*uevent
)
3738 struct lttng_ht_iter iter
, uiter
;
3739 struct lttng_ht_node_str
*ua_chan_node
;
3740 struct ust_app
*app
;
3741 struct ust_app_session
*ua_sess
;
3742 struct ust_app_channel
*ua_chan
;
3743 struct ust_app_event
*ua_event
;
3745 DBG("UST app enabling event %s for all apps for session id %" PRIu64
,
3746 uevent
->attr
.name
, usess
->id
);
3749 * NOTE: At this point, this function is called only if the session and
3750 * channel passed are already created for all apps. and enabled on the
3756 /* For all registered applications */
3757 cds_lfht_for_each_entry(ust_app_ht
->ht
, &iter
.iter
, app
, pid_n
.node
) {
3758 if (!app
->compatible
) {
3760 * TODO: In time, we should notice the caller of this error by
3761 * telling him that this is a version error.
3765 ua_sess
= lookup_session_by_app(usess
, app
);
3767 /* The application has problem or is probably dead. */
3771 pthread_mutex_lock(&ua_sess
->lock
);
3773 /* Lookup channel in the ust app session */
3774 lttng_ht_lookup(ua_sess
->channels
, (void *)uchan
->name
, &uiter
);
3775 ua_chan_node
= lttng_ht_iter_get_node_str(&uiter
);
3776 /* If the channel is not found, there is a code flow error */
3777 assert(ua_chan_node
);
3779 ua_chan
= caa_container_of(ua_chan_node
, struct ust_app_channel
, node
);
3781 /* Get event node */
3782 ua_event
= find_ust_app_event(ua_chan
->events
, uevent
->attr
.name
,
3783 uevent
->filter
, uevent
->attr
.loglevel
, uevent
->exclusion
);
3784 if (ua_event
== NULL
) {
3785 DBG3("UST app enable event %s not found for app PID %d."
3786 "Skipping app", uevent
->attr
.name
, app
->pid
);
3790 ret
= enable_ust_app_event(ua_sess
, ua_event
, app
);
3792 pthread_mutex_unlock(&ua_sess
->lock
);
3796 pthread_mutex_unlock(&ua_sess
->lock
);
3805 * For a specific existing UST session and UST channel, creates the event for
3806 * all registered apps.
3808 int ust_app_create_event_glb(struct ltt_ust_session
*usess
,
3809 struct ltt_ust_channel
*uchan
, struct ltt_ust_event
*uevent
)
3812 struct lttng_ht_iter iter
, uiter
;
3813 struct lttng_ht_node_str
*ua_chan_node
;
3814 struct ust_app
*app
;
3815 struct ust_app_session
*ua_sess
;
3816 struct ust_app_channel
*ua_chan
;
3818 DBG("UST app creating event %s for all apps for session id %" PRIu64
,
3819 uevent
->attr
.name
, usess
->id
);
3823 /* For all registered applications */
3824 cds_lfht_for_each_entry(ust_app_ht
->ht
, &iter
.iter
, app
, pid_n
.node
) {
3825 if (!app
->compatible
) {
3827 * TODO: In time, we should notice the caller of this error by
3828 * telling him that this is a version error.
3832 ua_sess
= lookup_session_by_app(usess
, app
);
3834 /* The application has problem or is probably dead. */
3838 pthread_mutex_lock(&ua_sess
->lock
);
3839 /* Lookup channel in the ust app session */
3840 lttng_ht_lookup(ua_sess
->channels
, (void *)uchan
->name
, &uiter
);
3841 ua_chan_node
= lttng_ht_iter_get_node_str(&uiter
);
3842 /* If the channel is not found, there is a code flow error */
3843 assert(ua_chan_node
);
3845 ua_chan
= caa_container_of(ua_chan_node
, struct ust_app_channel
, node
);
3847 ret
= create_ust_app_event(ua_sess
, ua_chan
, uevent
, app
);
3848 pthread_mutex_unlock(&ua_sess
->lock
);
3850 if (ret
!= -LTTNG_UST_ERR_EXIST
) {
3851 /* Possible value at this point: -ENOMEM. If so, we stop! */
3854 DBG2("UST app event %s already exist on app PID %d",
3855 uevent
->attr
.name
, app
->pid
);
3866 * Start tracing for a specific UST session and app.
3869 int ust_app_start_trace(struct ltt_ust_session
*usess
, struct ust_app
*app
)
3872 struct ust_app_session
*ua_sess
;
3874 DBG("Starting tracing for ust app pid %d", app
->pid
);
3878 if (!app
->compatible
) {
3882 ua_sess
= lookup_session_by_app(usess
, app
);
3883 if (ua_sess
== NULL
) {
3884 /* The session is in teardown process. Ignore and continue. */
3888 pthread_mutex_lock(&ua_sess
->lock
);
3890 /* Upon restart, we skip the setup, already done */
3891 if (ua_sess
->started
) {
3895 /* Create directories if consumer is LOCAL and has a path defined. */
3896 if (usess
->consumer
->type
== CONSUMER_DST_LOCAL
&&
3897 strlen(usess
->consumer
->dst
.trace_path
) > 0) {
3898 ret
= run_as_mkdir_recursive(usess
->consumer
->dst
.trace_path
,
3899 S_IRWXU
| S_IRWXG
, ua_sess
->euid
, ua_sess
->egid
);
3901 if (ret
!= -EEXIST
) {
3902 ERR("Trace directory creation error");
3909 * Create the metadata for the application. This returns gracefully if a
3910 * metadata was already set for the session.
3912 ret
= create_ust_app_metadata(ua_sess
, app
, usess
->consumer
);
3917 health_code_update();
3920 /* This start the UST tracing */
3921 ret
= ustctl_start_session(app
->sock
, ua_sess
->handle
);
3923 if (ret
!= -EPIPE
&& ret
!= -LTTNG_UST_ERR_EXITING
) {
3924 ERR("Error starting tracing for app pid: %d (ret: %d)",
3927 DBG("UST app start session failed. Application is dead.");
3929 * This is normal behavior, an application can die during the
3930 * creation process. Don't report an error so the execution can
3931 * continue normally.
3933 pthread_mutex_unlock(&ua_sess
->lock
);
3939 /* Indicate that the session has been started once */
3940 ua_sess
->started
= 1;
3942 pthread_mutex_unlock(&ua_sess
->lock
);
3944 health_code_update();
3946 /* Quiescent wait after starting trace */
3947 ret
= ustctl_wait_quiescent(app
->sock
);
3948 if (ret
< 0 && ret
!= -EPIPE
&& ret
!= -LTTNG_UST_ERR_EXITING
) {
3949 ERR("UST app wait quiescent failed for app pid %d ret %d",
3955 health_code_update();
3959 pthread_mutex_unlock(&ua_sess
->lock
);
3961 health_code_update();
3966 * Stop tracing for a specific UST session and app.
3969 int ust_app_stop_trace(struct ltt_ust_session
*usess
, struct ust_app
*app
)
3972 struct ust_app_session
*ua_sess
;
3973 struct ust_registry_session
*registry
;
3975 DBG("Stopping tracing for ust app pid %d", app
->pid
);
3979 if (!app
->compatible
) {
3980 goto end_no_session
;
3983 ua_sess
= lookup_session_by_app(usess
, app
);
3984 if (ua_sess
== NULL
) {
3985 goto end_no_session
;
3988 pthread_mutex_lock(&ua_sess
->lock
);
3991 * If started = 0, it means that stop trace has been called for a session
3992 * that was never started. It's possible since we can have a fail start
3993 * from either the application manager thread or the command thread. Simply
3994 * indicate that this is a stop error.
3996 if (!ua_sess
->started
) {
3997 goto error_rcu_unlock
;
4000 health_code_update();
4002 /* This inhibits UST tracing */
4003 ret
= ustctl_stop_session(app
->sock
, ua_sess
->handle
);
4005 if (ret
!= -EPIPE
&& ret
!= -LTTNG_UST_ERR_EXITING
) {
4006 ERR("Error stopping tracing for app pid: %d (ret: %d)",
4009 DBG("UST app stop session failed. Application is dead.");
4011 * This is normal behavior, an application can die during the
4012 * creation process. Don't report an error so the execution can
4013 * continue normally.
4017 goto error_rcu_unlock
;
4020 health_code_update();
4022 /* Quiescent wait after stopping trace */
4023 ret
= ustctl_wait_quiescent(app
->sock
);
4024 if (ret
< 0 && ret
!= -EPIPE
&& ret
!= -LTTNG_UST_ERR_EXITING
) {
4025 ERR("UST app wait quiescent failed for app pid %d ret %d",
4029 health_code_update();
4031 registry
= get_session_registry(ua_sess
);
4034 /* Push metadata for application before freeing the application. */
4035 (void) push_metadata(registry
, ua_sess
->consumer
);
4038 pthread_mutex_unlock(&ua_sess
->lock
);
4041 health_code_update();
4045 pthread_mutex_unlock(&ua_sess
->lock
);
4047 health_code_update();
4052 int ust_app_flush_app_session(struct ust_app
*app
,
4053 struct ust_app_session
*ua_sess
)
4055 int ret
, retval
= 0;
4056 struct lttng_ht_iter iter
;
4057 struct ust_app_channel
*ua_chan
;
4058 struct consumer_socket
*socket
;
4060 DBG("Flushing app session buffers for ust app pid %d", app
->pid
);
4064 if (!app
->compatible
) {
4065 goto end_not_compatible
;
4068 pthread_mutex_lock(&ua_sess
->lock
);
4070 health_code_update();
4072 /* Flushing buffers */
4073 socket
= consumer_find_socket_by_bitness(app
->bits_per_long
,
4076 /* Flush buffers and push metadata. */
4077 switch (ua_sess
->buffer_type
) {
4078 case LTTNG_BUFFER_PER_PID
:
4079 cds_lfht_for_each_entry(ua_sess
->channels
->ht
, &iter
.iter
, ua_chan
,
4081 health_code_update();
4082 assert(ua_chan
->is_sent
);
4083 ret
= consumer_flush_channel(socket
, ua_chan
->key
);
4085 ERR("Error flushing consumer channel");
4091 case LTTNG_BUFFER_PER_UID
:
4097 health_code_update();
4099 pthread_mutex_unlock(&ua_sess
->lock
);
4103 health_code_update();
4108 * Flush buffers for all applications for a specific UST session.
4109 * Called with UST session lock held.
4112 int ust_app_flush_session(struct ltt_ust_session
*usess
)
4117 DBG("Flushing session buffers for all ust apps");
4121 /* Flush buffers and push metadata. */
4122 switch (usess
->buffer_type
) {
4123 case LTTNG_BUFFER_PER_UID
:
4125 struct buffer_reg_uid
*reg
;
4126 struct lttng_ht_iter iter
;
4128 /* Flush all per UID buffers associated to that session. */
4129 cds_list_for_each_entry(reg
, &usess
->buffer_reg_uid_list
, lnode
) {
4130 struct ust_registry_session
*ust_session_reg
;
4131 struct buffer_reg_channel
*reg_chan
;
4132 struct consumer_socket
*socket
;
4134 /* Get consumer socket to use to push the metadata.*/
4135 socket
= consumer_find_socket_by_bitness(reg
->bits_per_long
,
4138 /* Ignore request if no consumer is found for the session. */
4142 cds_lfht_for_each_entry(reg
->registry
->channels
->ht
, &iter
.iter
,
4143 reg_chan
, node
.node
) {
4145 * The following call will print error values so the return
4146 * code is of little importance because whatever happens, we
4147 * have to try them all.
4149 (void) consumer_flush_channel(socket
, reg_chan
->consumer_key
);
4152 ust_session_reg
= reg
->registry
->reg
.ust
;
4153 /* Push metadata. */
4154 (void) push_metadata(ust_session_reg
, usess
->consumer
);
4159 case LTTNG_BUFFER_PER_PID
:
4161 struct ust_app_session
*ua_sess
;
4162 struct lttng_ht_iter iter
;
4163 struct ust_app
*app
;
4165 cds_lfht_for_each_entry(ust_app_ht
->ht
, &iter
.iter
, app
, pid_n
.node
) {
4166 ua_sess
= lookup_session_by_app(usess
, app
);
4167 if (ua_sess
== NULL
) {
4170 (void) ust_app_flush_app_session(app
, ua_sess
);
4181 health_code_update();
4186 * Destroy a specific UST session in apps.
4188 static int destroy_trace(struct ltt_ust_session
*usess
, struct ust_app
*app
)
4191 struct ust_app_session
*ua_sess
;
4192 struct lttng_ht_iter iter
;
4193 struct lttng_ht_node_u64
*node
;
4195 DBG("Destroy tracing for ust app pid %d", app
->pid
);
4199 if (!app
->compatible
) {
4203 __lookup_session_by_app(usess
, app
, &iter
);
4204 node
= lttng_ht_iter_get_node_u64(&iter
);
4206 /* Session is being or is deleted. */
4209 ua_sess
= caa_container_of(node
, struct ust_app_session
, node
);
4211 health_code_update();
4212 destroy_app_session(app
, ua_sess
);
4214 health_code_update();
4216 /* Quiescent wait after stopping trace */
4217 ret
= ustctl_wait_quiescent(app
->sock
);
4218 if (ret
< 0 && ret
!= -EPIPE
&& ret
!= -LTTNG_UST_ERR_EXITING
) {
4219 ERR("UST app wait quiescent failed for app pid %d ret %d",
4224 health_code_update();
4229 * Start tracing for the UST session.
4231 int ust_app_start_trace_all(struct ltt_ust_session
*usess
)
4234 struct lttng_ht_iter iter
;
4235 struct ust_app
*app
;
4237 DBG("Starting all UST traces");
4241 cds_lfht_for_each_entry(ust_app_ht
->ht
, &iter
.iter
, app
, pid_n
.node
) {
4242 ret
= ust_app_start_trace(usess
, app
);
4244 /* Continue to next apps even on error */
4255 * Start tracing for the UST session.
4256 * Called with UST session lock held.
4258 int ust_app_stop_trace_all(struct ltt_ust_session
*usess
)
4261 struct lttng_ht_iter iter
;
4262 struct ust_app
*app
;
4264 DBG("Stopping all UST traces");
4268 cds_lfht_for_each_entry(ust_app_ht
->ht
, &iter
.iter
, app
, pid_n
.node
) {
4269 ret
= ust_app_stop_trace(usess
, app
);
4271 /* Continue to next apps even on error */
4276 (void) ust_app_flush_session(usess
);
4284 * Destroy app UST session.
4286 int ust_app_destroy_trace_all(struct ltt_ust_session
*usess
)
4289 struct lttng_ht_iter iter
;
4290 struct ust_app
*app
;
4292 DBG("Destroy all UST traces");
4296 cds_lfht_for_each_entry(ust_app_ht
->ht
, &iter
.iter
, app
, pid_n
.node
) {
4297 ret
= destroy_trace(usess
, app
);
4299 /* Continue to next apps even on error */
4310 * Add channels/events from UST global domain to registered apps at sock.
4312 void ust_app_global_update(struct ltt_ust_session
*usess
, int sock
)
4315 struct lttng_ht_iter iter
, uiter
;
4316 struct ust_app
*app
;
4317 struct ust_app_session
*ua_sess
= NULL
;
4318 struct ust_app_channel
*ua_chan
;
4319 struct ust_app_event
*ua_event
;
4320 struct ust_app_ctx
*ua_ctx
;
4325 DBG2("UST app global update for app sock %d for session id %" PRIu64
, sock
,
4330 app
= ust_app_find_by_sock(sock
);
4333 * Application can be unregistered before so this is possible hence
4334 * simply stopping the update.
4336 DBG3("UST app update failed to find app sock %d", sock
);
4340 if (!app
->compatible
) {
4344 ret
= create_ust_app_session(usess
, app
, &ua_sess
, NULL
);
4346 /* Tracer is probably gone or ENOMEM. */
4351 pthread_mutex_lock(&ua_sess
->lock
);
4354 * We can iterate safely here over all UST app session since the create ust
4355 * app session above made a shadow copy of the UST global domain from the
4358 cds_lfht_for_each_entry(ua_sess
->channels
->ht
, &iter
.iter
, ua_chan
,
4360 ret
= do_create_channel(app
, usess
, ua_sess
, ua_chan
);
4363 * Stop everything. On error, the application failed, no more
4364 * file descriptor are available or ENOMEM so stopping here is
4365 * the only thing we can do for now.
4371 * Add context using the list so they are enabled in the same order the
4374 cds_list_for_each_entry(ua_ctx
, &ua_chan
->ctx_list
, list
) {
4375 ret
= create_ust_channel_context(ua_chan
, ua_ctx
, app
);
4382 /* For each events */
4383 cds_lfht_for_each_entry(ua_chan
->events
->ht
, &uiter
.iter
, ua_event
,
4385 ret
= create_ust_event(app
, ua_sess
, ua_chan
, ua_event
);
4392 pthread_mutex_unlock(&ua_sess
->lock
);
4394 if (usess
->active
) {
4395 ret
= ust_app_start_trace(usess
, app
);
4400 DBG2("UST trace started for app pid %d", app
->pid
);
4403 /* Everything went well at this point. */
4408 pthread_mutex_unlock(&ua_sess
->lock
);
4411 destroy_app_session(app
, ua_sess
);
4418 * Add context to a specific channel for global UST domain.
4420 int ust_app_add_ctx_channel_glb(struct ltt_ust_session
*usess
,
4421 struct ltt_ust_channel
*uchan
, struct ltt_ust_context
*uctx
)
4424 struct lttng_ht_node_str
*ua_chan_node
;
4425 struct lttng_ht_iter iter
, uiter
;
4426 struct ust_app_channel
*ua_chan
= NULL
;
4427 struct ust_app_session
*ua_sess
;
4428 struct ust_app
*app
;
4432 cds_lfht_for_each_entry(ust_app_ht
->ht
, &iter
.iter
, app
, pid_n
.node
) {
4433 if (!app
->compatible
) {
4435 * TODO: In time, we should notice the caller of this error by
4436 * telling him that this is a version error.
4440 ua_sess
= lookup_session_by_app(usess
, app
);
4441 if (ua_sess
== NULL
) {
4445 pthread_mutex_lock(&ua_sess
->lock
);
4446 /* Lookup channel in the ust app session */
4447 lttng_ht_lookup(ua_sess
->channels
, (void *)uchan
->name
, &uiter
);
4448 ua_chan_node
= lttng_ht_iter_get_node_str(&uiter
);
4449 if (ua_chan_node
== NULL
) {
4452 ua_chan
= caa_container_of(ua_chan_node
, struct ust_app_channel
,
4454 ret
= create_ust_app_channel_context(ua_sess
, ua_chan
, &uctx
->ctx
, app
);
4459 pthread_mutex_unlock(&ua_sess
->lock
);
4467 * Enable event for a channel from a UST session for a specific PID.
4469 int ust_app_enable_event_pid(struct ltt_ust_session
*usess
,
4470 struct ltt_ust_channel
*uchan
, struct ltt_ust_event
*uevent
, pid_t pid
)
4473 struct lttng_ht_iter iter
;
4474 struct lttng_ht_node_str
*ua_chan_node
;
4475 struct ust_app
*app
;
4476 struct ust_app_session
*ua_sess
;
4477 struct ust_app_channel
*ua_chan
;
4478 struct ust_app_event
*ua_event
;
4480 DBG("UST app enabling event %s for PID %d", uevent
->attr
.name
, pid
);
4484 app
= ust_app_find_by_pid(pid
);
4486 ERR("UST app enable event per PID %d not found", pid
);
4491 if (!app
->compatible
) {
4496 ua_sess
= lookup_session_by_app(usess
, app
);
4498 /* The application has problem or is probably dead. */
4503 pthread_mutex_lock(&ua_sess
->lock
);
4504 /* Lookup channel in the ust app session */
4505 lttng_ht_lookup(ua_sess
->channels
, (void *)uchan
->name
, &iter
);
4506 ua_chan_node
= lttng_ht_iter_get_node_str(&iter
);
4507 /* If the channel is not found, there is a code flow error */
4508 assert(ua_chan_node
);
4510 ua_chan
= caa_container_of(ua_chan_node
, struct ust_app_channel
, node
);
4512 ua_event
= find_ust_app_event(ua_chan
->events
, uevent
->attr
.name
,
4513 uevent
->filter
, uevent
->attr
.loglevel
, uevent
->exclusion
);
4514 if (ua_event
== NULL
) {
4515 ret
= create_ust_app_event(ua_sess
, ua_chan
, uevent
, app
);
4520 ret
= enable_ust_app_event(ua_sess
, ua_event
, app
);
4527 pthread_mutex_unlock(&ua_sess
->lock
);
4534 * Calibrate registered applications.
4536 int ust_app_calibrate_glb(struct lttng_ust_calibrate
*calibrate
)
4539 struct lttng_ht_iter iter
;
4540 struct ust_app
*app
;
4544 cds_lfht_for_each_entry(ust_app_ht
->ht
, &iter
.iter
, app
, pid_n
.node
) {
4545 if (!app
->compatible
) {
4547 * TODO: In time, we should notice the caller of this error by
4548 * telling him that this is a version error.
4553 health_code_update();
4555 ret
= ustctl_calibrate(app
->sock
, calibrate
);
4559 /* Means that it's not implemented on the tracer side. */
4563 DBG2("Calibrate app PID %d returned with error %d",
4570 DBG("UST app global domain calibration finished");
4574 health_code_update();
4580 * Receive registration and populate the given msg structure.
4582 * On success return 0 else a negative value returned by the ustctl call.
4584 int ust_app_recv_registration(int sock
, struct ust_register_msg
*msg
)
4587 uint32_t pid
, ppid
, uid
, gid
;
4591 ret
= ustctl_recv_reg_msg(sock
, &msg
->type
, &msg
->major
, &msg
->minor
,
4592 &pid
, &ppid
, &uid
, &gid
,
4593 &msg
->bits_per_long
,
4594 &msg
->uint8_t_alignment
,
4595 &msg
->uint16_t_alignment
,
4596 &msg
->uint32_t_alignment
,
4597 &msg
->uint64_t_alignment
,
4598 &msg
->long_alignment
,
4605 case LTTNG_UST_ERR_EXITING
:
4606 DBG3("UST app recv reg message failed. Application died");
4608 case LTTNG_UST_ERR_UNSUP_MAJOR
:
4609 ERR("UST app recv reg unsupported version %d.%d. Supporting %d.%d",
4610 msg
->major
, msg
->minor
, LTTNG_UST_ABI_MAJOR_VERSION
,
4611 LTTNG_UST_ABI_MINOR_VERSION
);
4614 ERR("UST app recv reg message failed with ret %d", ret
);
4619 msg
->pid
= (pid_t
) pid
;
4620 msg
->ppid
= (pid_t
) ppid
;
4621 msg
->uid
= (uid_t
) uid
;
4622 msg
->gid
= (gid_t
) gid
;
4629 * Return a ust app channel object using the application object and the channel
4630 * object descriptor has a key. If not found, NULL is returned. A RCU read side
4631 * lock MUST be acquired before calling this function.
4633 static struct ust_app_channel
*find_channel_by_objd(struct ust_app
*app
,
4636 struct lttng_ht_node_ulong
*node
;
4637 struct lttng_ht_iter iter
;
4638 struct ust_app_channel
*ua_chan
= NULL
;
4642 lttng_ht_lookup(app
->ust_objd
, (void *)((unsigned long) objd
), &iter
);
4643 node
= lttng_ht_iter_get_node_ulong(&iter
);
4645 DBG2("UST app channel find by objd %d not found", objd
);
4649 ua_chan
= caa_container_of(node
, struct ust_app_channel
, ust_objd_node
);
4656 * Reply to a register channel notification from an application on the notify
4657 * socket. The channel metadata is also created.
4659 * The session UST registry lock is acquired in this function.
4661 * On success 0 is returned else a negative value.
4663 static int reply_ust_register_channel(int sock
, int sobjd
, int cobjd
,
4664 size_t nr_fields
, struct ustctl_field
*fields
)
4666 int ret
, ret_code
= 0;
4667 uint32_t chan_id
, reg_count
;
4668 uint64_t chan_reg_key
;
4669 enum ustctl_channel_header type
;
4670 struct ust_app
*app
;
4671 struct ust_app_channel
*ua_chan
;
4672 struct ust_app_session
*ua_sess
;
4673 struct ust_registry_session
*registry
;
4674 struct ust_registry_channel
*chan_reg
;
4678 /* Lookup application. If not found, there is a code flow error. */
4679 app
= find_app_by_notify_sock(sock
);
4681 DBG("Application socket %d is being teardown. Abort event notify",
4685 goto error_rcu_unlock
;
4688 /* Lookup channel by UST object descriptor. */
4689 ua_chan
= find_channel_by_objd(app
, cobjd
);
4691 DBG("Application channel is being teardown. Abort event notify");
4694 goto error_rcu_unlock
;
4697 assert(ua_chan
->session
);
4698 ua_sess
= ua_chan
->session
;
4700 /* Get right session registry depending on the session buffer type. */
4701 registry
= get_session_registry(ua_sess
);
4704 /* Depending on the buffer type, a different channel key is used. */
4705 if (ua_sess
->buffer_type
== LTTNG_BUFFER_PER_UID
) {
4706 chan_reg_key
= ua_chan
->tracing_channel_id
;
4708 chan_reg_key
= ua_chan
->key
;
4711 pthread_mutex_lock(®istry
->lock
);
4713 chan_reg
= ust_registry_channel_find(registry
, chan_reg_key
);
4716 if (!chan_reg
->register_done
) {
4717 reg_count
= ust_registry_get_event_count(chan_reg
);
4718 if (reg_count
< 31) {
4719 type
= USTCTL_CHANNEL_HEADER_COMPACT
;
4721 type
= USTCTL_CHANNEL_HEADER_LARGE
;
4724 chan_reg
->nr_ctx_fields
= nr_fields
;
4725 chan_reg
->ctx_fields
= fields
;
4726 chan_reg
->header_type
= type
;
4728 /* Get current already assigned values. */
4729 type
= chan_reg
->header_type
;
4731 /* Set to NULL so the error path does not do a double free. */
4734 /* Channel id is set during the object creation. */
4735 chan_id
= chan_reg
->chan_id
;
4737 /* Append to metadata */
4738 if (!chan_reg
->metadata_dumped
) {
4739 ret_code
= ust_metadata_channel_statedump(registry
, chan_reg
);
4741 ERR("Error appending channel metadata (errno = %d)", ret_code
);
4747 DBG3("UST app replying to register channel key %" PRIu64
4748 " with id %u, type: %d, ret: %d", chan_reg_key
, chan_id
, type
,
4751 ret
= ustctl_reply_register_channel(sock
, chan_id
, type
, ret_code
);
4753 if (ret
!= -EPIPE
&& ret
!= -LTTNG_UST_ERR_EXITING
) {
4754 ERR("UST app reply channel failed with ret %d", ret
);
4756 DBG3("UST app reply channel failed. Application died");
4761 /* This channel registry registration is completed. */
4762 chan_reg
->register_done
= 1;
4765 pthread_mutex_unlock(®istry
->lock
);
4775 * Add event to the UST channel registry. When the event is added to the
4776 * registry, the metadata is also created. Once done, this replies to the
4777 * application with the appropriate error code.
4779 * The session UST registry lock is acquired in the function.
4781 * On success 0 is returned else a negative value.
4783 static int add_event_ust_registry(int sock
, int sobjd
, int cobjd
, char *name
,
4784 char *sig
, size_t nr_fields
, struct ustctl_field
*fields
, int loglevel
,
4785 char *model_emf_uri
)
4788 uint32_t event_id
= 0;
4789 uint64_t chan_reg_key
;
4790 struct ust_app
*app
;
4791 struct ust_app_channel
*ua_chan
;
4792 struct ust_app_session
*ua_sess
;
4793 struct ust_registry_session
*registry
;
4797 /* Lookup application. If not found, there is a code flow error. */
4798 app
= find_app_by_notify_sock(sock
);
4800 DBG("Application socket %d is being teardown. Abort event notify",
4805 free(model_emf_uri
);
4806 goto error_rcu_unlock
;
4809 /* Lookup channel by UST object descriptor. */
4810 ua_chan
= find_channel_by_objd(app
, cobjd
);
4812 DBG("Application channel is being teardown. Abort event notify");
4816 free(model_emf_uri
);
4817 goto error_rcu_unlock
;
4820 assert(ua_chan
->session
);
4821 ua_sess
= ua_chan
->session
;
4823 registry
= get_session_registry(ua_sess
);
4826 if (ua_sess
->buffer_type
== LTTNG_BUFFER_PER_UID
) {
4827 chan_reg_key
= ua_chan
->tracing_channel_id
;
4829 chan_reg_key
= ua_chan
->key
;
4832 pthread_mutex_lock(®istry
->lock
);
4835 * From this point on, this call acquires the ownership of the sig, fields
4836 * and model_emf_uri meaning any free are done inside it if needed. These
4837 * three variables MUST NOT be read/write after this.
4839 ret_code
= ust_registry_create_event(registry
, chan_reg_key
,
4840 sobjd
, cobjd
, name
, sig
, nr_fields
, fields
, loglevel
,
4841 model_emf_uri
, ua_sess
->buffer_type
, &event_id
,
4845 * The return value is returned to ustctl so in case of an error, the
4846 * application can be notified. In case of an error, it's important not to
4847 * return a negative error or else the application will get closed.
4849 ret
= ustctl_reply_register_event(sock
, event_id
, ret_code
);
4851 if (ret
!= -EPIPE
&& ret
!= -LTTNG_UST_ERR_EXITING
) {
4852 ERR("UST app reply event failed with ret %d", ret
);
4854 DBG3("UST app reply event failed. Application died");
4857 * No need to wipe the create event since the application socket will
4858 * get close on error hence cleaning up everything by itself.
4863 DBG3("UST registry event %s with id %" PRId32
" added successfully",
4867 pthread_mutex_unlock(®istry
->lock
);
4874 * Handle application notification through the given notify socket.
4876 * Return 0 on success or else a negative value.
4878 int ust_app_recv_notify(int sock
)
4881 enum ustctl_notify_cmd cmd
;
4883 DBG3("UST app receiving notify from sock %d", sock
);
4885 ret
= ustctl_recv_notify(sock
, &cmd
);
4887 if (ret
!= -EPIPE
&& ret
!= -LTTNG_UST_ERR_EXITING
) {
4888 ERR("UST app recv notify failed with ret %d", ret
);
4890 DBG3("UST app recv notify failed. Application died");
4896 case USTCTL_NOTIFY_CMD_EVENT
:
4898 int sobjd
, cobjd
, loglevel
;
4899 char name
[LTTNG_UST_SYM_NAME_LEN
], *sig
, *model_emf_uri
;
4901 struct ustctl_field
*fields
;
4903 DBG2("UST app ustctl register event received");
4905 ret
= ustctl_recv_register_event(sock
, &sobjd
, &cobjd
, name
, &loglevel
,
4906 &sig
, &nr_fields
, &fields
, &model_emf_uri
);
4908 if (ret
!= -EPIPE
&& ret
!= -LTTNG_UST_ERR_EXITING
) {
4909 ERR("UST app recv event failed with ret %d", ret
);
4911 DBG3("UST app recv event failed. Application died");
4917 * Add event to the UST registry coming from the notify socket. This
4918 * call will free if needed the sig, fields and model_emf_uri. This
4919 * code path loses the ownsership of these variables and transfer them
4920 * to the this function.
4922 ret
= add_event_ust_registry(sock
, sobjd
, cobjd
, name
, sig
, nr_fields
,
4923 fields
, loglevel
, model_emf_uri
);
4930 case USTCTL_NOTIFY_CMD_CHANNEL
:
4934 struct ustctl_field
*fields
;
4936 DBG2("UST app ustctl register channel received");
4938 ret
= ustctl_recv_register_channel(sock
, &sobjd
, &cobjd
, &nr_fields
,
4941 if (ret
!= -EPIPE
&& ret
!= -LTTNG_UST_ERR_EXITING
) {
4942 ERR("UST app recv channel failed with ret %d", ret
);
4944 DBG3("UST app recv channel failed. Application died");
4950 * The fields ownership are transfered to this function call meaning
4951 * that if needed it will be freed. After this, it's invalid to access
4952 * fields or clean it up.
4954 ret
= reply_ust_register_channel(sock
, sobjd
, cobjd
, nr_fields
,
4963 /* Should NEVER happen. */
4972 * Once the notify socket hangs up, this is called. First, it tries to find the
4973 * corresponding application. On failure, the call_rcu to close the socket is
4974 * executed. If an application is found, it tries to delete it from the notify
4975 * socket hash table. Whathever the result, it proceeds to the call_rcu.
4977 * Note that an object needs to be allocated here so on ENOMEM failure, the
4978 * call RCU is not done but the rest of the cleanup is.
4980 void ust_app_notify_sock_unregister(int sock
)
4983 struct lttng_ht_iter iter
;
4984 struct ust_app
*app
;
4985 struct ust_app_notify_sock_obj
*obj
;
4991 obj
= zmalloc(sizeof(*obj
));
4994 * An ENOMEM is kind of uncool. If this strikes we continue the
4995 * procedure but the call_rcu will not be called. In this case, we
4996 * accept the fd leak rather than possibly creating an unsynchronized
4997 * state between threads.
4999 * TODO: The notify object should be created once the notify socket is
5000 * registered and stored independantely from the ust app object. The
5001 * tricky part is to synchronize the teardown of the application and
5002 * this notify object. Let's keep that in mind so we can avoid this
5003 * kind of shenanigans with ENOMEM in the teardown path.
5010 DBG("UST app notify socket unregister %d", sock
);
5013 * Lookup application by notify socket. If this fails, this means that the
5014 * hash table delete has already been done by the application
5015 * unregistration process so we can safely close the notify socket in a
5018 app
= find_app_by_notify_sock(sock
);
5023 iter
.iter
.node
= &app
->notify_sock_n
.node
;
5026 * Whatever happens here either we fail or succeed, in both cases we have
5027 * to close the socket after a grace period to continue to the call RCU
5028 * here. If the deletion is successful, the application is not visible
5029 * anymore by other threads and is it fails it means that it was already
5030 * deleted from the hash table so either way we just have to close the
5033 (void) lttng_ht_del(ust_app_ht_by_notify_sock
, &iter
);
5039 * Close socket after a grace period to avoid for the socket to be reused
5040 * before the application object is freed creating potential race between
5041 * threads trying to add unique in the global hash table.
5044 call_rcu(&obj
->head
, close_notify_sock_rcu
);
5049 * Destroy a ust app data structure and free its memory.
5051 void ust_app_destroy(struct ust_app
*app
)
5057 call_rcu(&app
->pid_n
.head
, delete_ust_app_rcu
);
5061 * Take a snapshot for a given UST session. The snapshot is sent to the given
5064 * Return 0 on success or else a negative value.
5066 int ust_app_snapshot_record(struct ltt_ust_session
*usess
,
5067 struct snapshot_output
*output
, int wait
, uint64_t max_stream_size
)
5070 unsigned int snapshot_done
= 0;
5071 struct lttng_ht_iter iter
;
5072 struct ust_app
*app
;
5073 char pathname
[PATH_MAX
];
5080 switch (usess
->buffer_type
) {
5081 case LTTNG_BUFFER_PER_UID
:
5083 struct buffer_reg_uid
*reg
;
5085 cds_list_for_each_entry(reg
, &usess
->buffer_reg_uid_list
, lnode
) {
5086 struct buffer_reg_channel
*reg_chan
;
5087 struct consumer_socket
*socket
;
5089 /* Get consumer socket to use to push the metadata.*/
5090 socket
= consumer_find_socket_by_bitness(reg
->bits_per_long
,
5097 memset(pathname
, 0, sizeof(pathname
));
5098 ret
= snprintf(pathname
, sizeof(pathname
),
5099 DEFAULT_UST_TRACE_DIR
"/" DEFAULT_UST_TRACE_UID_PATH
,
5100 reg
->uid
, reg
->bits_per_long
);
5102 PERROR("snprintf snapshot path");
5106 /* Add the UST default trace dir to path. */
5107 cds_lfht_for_each_entry(reg
->registry
->channels
->ht
, &iter
.iter
,
5108 reg_chan
, node
.node
) {
5109 ret
= consumer_snapshot_channel(socket
, reg_chan
->consumer_key
,
5110 output
, 0, usess
->uid
, usess
->gid
, pathname
, wait
,
5116 ret
= consumer_snapshot_channel(socket
,
5117 reg
->registry
->reg
.ust
->metadata_key
, output
, 1,
5118 usess
->uid
, usess
->gid
, pathname
, wait
, max_stream_size
);
5126 case LTTNG_BUFFER_PER_PID
:
5128 cds_lfht_for_each_entry(ust_app_ht
->ht
, &iter
.iter
, app
, pid_n
.node
) {
5129 struct consumer_socket
*socket
;
5130 struct lttng_ht_iter chan_iter
;
5131 struct ust_app_channel
*ua_chan
;
5132 struct ust_app_session
*ua_sess
;
5133 struct ust_registry_session
*registry
;
5135 ua_sess
= lookup_session_by_app(usess
, app
);
5137 /* Session not associated with this app. */
5141 /* Get the right consumer socket for the application. */
5142 socket
= consumer_find_socket_by_bitness(app
->bits_per_long
,
5149 /* Add the UST default trace dir to path. */
5150 memset(pathname
, 0, sizeof(pathname
));
5151 ret
= snprintf(pathname
, sizeof(pathname
), DEFAULT_UST_TRACE_DIR
"/%s",
5154 PERROR("snprintf snapshot path");
5158 cds_lfht_for_each_entry(ua_sess
->channels
->ht
, &chan_iter
.iter
,
5159 ua_chan
, node
.node
) {
5160 ret
= consumer_snapshot_channel(socket
, ua_chan
->key
, output
,
5161 0, ua_sess
->euid
, ua_sess
->egid
, pathname
, wait
,
5168 registry
= get_session_registry(ua_sess
);
5170 ret
= consumer_snapshot_channel(socket
, registry
->metadata_key
, output
,
5171 1, ua_sess
->euid
, ua_sess
->egid
, pathname
, wait
,
5185 if (!snapshot_done
) {
5187 * If no snapshot was made and we are not in the error path, this means
5188 * that there are no buffers thus no (prior) application to snapshot
5189 * data from so we have simply NO data.
5200 * Return the number of streams for a UST session.
5202 unsigned int ust_app_get_nb_stream(struct ltt_ust_session
*usess
)
5204 unsigned int ret
= 0;
5205 struct ust_app
*app
;
5206 struct lttng_ht_iter iter
;
5210 switch (usess
->buffer_type
) {
5211 case LTTNG_BUFFER_PER_UID
:
5213 struct buffer_reg_uid
*reg
;
5215 cds_list_for_each_entry(reg
, &usess
->buffer_reg_uid_list
, lnode
) {
5216 struct buffer_reg_channel
*reg_chan
;
5219 cds_lfht_for_each_entry(reg
->registry
->channels
->ht
, &iter
.iter
,
5220 reg_chan
, node
.node
) {
5221 ret
+= reg_chan
->stream_count
;
5227 case LTTNG_BUFFER_PER_PID
:
5230 cds_lfht_for_each_entry(ust_app_ht
->ht
, &iter
.iter
, app
, pid_n
.node
) {
5231 struct ust_app_channel
*ua_chan
;
5232 struct ust_app_session
*ua_sess
;
5233 struct lttng_ht_iter chan_iter
;
5235 ua_sess
= lookup_session_by_app(usess
, app
);
5237 /* Session not associated with this app. */
5241 cds_lfht_for_each_entry(ua_sess
->channels
->ht
, &chan_iter
.iter
,
5242 ua_chan
, node
.node
) {
5243 ret
+= ua_chan
->streams
.count
;