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"
39 #include "ust-consumer.h"
43 /* Next available channel key. Access under next_channel_key_lock. */
44 static uint64_t _next_channel_key
;
45 static pthread_mutex_t next_channel_key_lock
= PTHREAD_MUTEX_INITIALIZER
;
47 /* Next available session ID. Access under next_session_id_lock. */
48 static uint64_t _next_session_id
;
49 static pthread_mutex_t next_session_id_lock
= PTHREAD_MUTEX_INITIALIZER
;
52 * Return the incremented value of next_channel_key.
54 static uint64_t get_next_channel_key(void)
58 pthread_mutex_lock(&next_channel_key_lock
);
59 ret
= ++_next_channel_key
;
60 pthread_mutex_unlock(&next_channel_key_lock
);
65 * Return the atomically incremented value of next_session_id.
67 static uint64_t get_next_session_id(void)
71 pthread_mutex_lock(&next_session_id_lock
);
72 ret
= ++_next_session_id
;
73 pthread_mutex_unlock(&next_session_id_lock
);
77 static void copy_channel_attr_to_ustctl(
78 struct ustctl_consumer_channel_attr
*attr
,
79 struct lttng_ust_channel_attr
*uattr
)
81 /* Copy event attributes since the layout is different. */
82 attr
->subbuf_size
= uattr
->subbuf_size
;
83 attr
->num_subbuf
= uattr
->num_subbuf
;
84 attr
->overwrite
= uattr
->overwrite
;
85 attr
->switch_timer_interval
= uattr
->switch_timer_interval
;
86 attr
->read_timer_interval
= uattr
->read_timer_interval
;
87 attr
->output
= uattr
->output
;
91 * Match function for the hash table lookup.
93 * It matches an ust app event based on three attributes which are the event
94 * name, the filter bytecode and the loglevel.
96 static int ht_match_ust_app_event(struct cds_lfht_node
*node
, const void *_key
)
98 struct ust_app_event
*event
;
99 const struct ust_app_ht_key
*key
;
104 event
= caa_container_of(node
, struct ust_app_event
, node
.node
);
107 /* Match the 3 elements of the key: name, filter and loglevel. */
110 if (strncmp(event
->attr
.name
, key
->name
, sizeof(event
->attr
.name
)) != 0) {
114 /* Event loglevel. */
115 if (event
->attr
.loglevel
!= key
->loglevel
) {
116 if (event
->attr
.loglevel_type
== LTTNG_UST_LOGLEVEL_ALL
117 && key
->loglevel
== 0 && event
->attr
.loglevel
== -1) {
119 * Match is accepted. This is because on event creation, the
120 * loglevel is set to -1 if the event loglevel type is ALL so 0 and
121 * -1 are accepted for this loglevel type since 0 is the one set by
122 * the API when receiving an enable event.
129 /* One of the filters is NULL, fail. */
130 if ((key
->filter
&& !event
->filter
) || (!key
->filter
&& event
->filter
)) {
134 if (key
->filter
&& event
->filter
) {
135 /* Both filters exists, check length followed by the bytecode. */
136 if (event
->filter
->len
!= key
->filter
->len
||
137 memcmp(event
->filter
->data
, key
->filter
->data
,
138 event
->filter
->len
) != 0) {
151 * Unique add of an ust app event in the given ht. This uses the custom
152 * ht_match_ust_app_event match function and the event name as hash.
154 static void add_unique_ust_app_event(struct ust_app_channel
*ua_chan
,
155 struct ust_app_event
*event
)
157 struct cds_lfht_node
*node_ptr
;
158 struct ust_app_ht_key key
;
162 assert(ua_chan
->events
);
165 ht
= ua_chan
->events
;
166 key
.name
= event
->attr
.name
;
167 key
.filter
= event
->filter
;
168 key
.loglevel
= event
->attr
.loglevel
;
170 node_ptr
= cds_lfht_add_unique(ht
->ht
,
171 ht
->hash_fct(event
->node
.key
, lttng_ht_seed
),
172 ht_match_ust_app_event
, &key
, &event
->node
.node
);
173 assert(node_ptr
== &event
->node
.node
);
177 * Close the notify socket from the given RCU head object. This MUST be called
178 * through a call_rcu().
180 static void close_notify_sock_rcu(struct rcu_head
*head
)
183 struct ust_app_notify_sock_obj
*obj
=
184 caa_container_of(head
, struct ust_app_notify_sock_obj
, head
);
186 /* Must have a valid fd here. */
187 assert(obj
->fd
>= 0);
189 ret
= close(obj
->fd
);
191 ERR("close notify sock %d RCU", obj
->fd
);
193 lttng_fd_put(LTTNG_FD_APPS
, 1);
199 * Return the session registry according to the buffer type of the given
202 * A registry per UID object MUST exists before calling this function or else
203 * it assert() if not found. RCU read side lock must be acquired.
205 static struct ust_registry_session
*get_session_registry(
206 struct ust_app_session
*ua_sess
)
208 struct ust_registry_session
*registry
= NULL
;
212 switch (ua_sess
->buffer_type
) {
213 case LTTNG_BUFFER_PER_PID
:
215 struct buffer_reg_pid
*reg_pid
= buffer_reg_pid_find(ua_sess
->id
);
219 registry
= reg_pid
->registry
->reg
.ust
;
222 case LTTNG_BUFFER_PER_UID
:
224 struct buffer_reg_uid
*reg_uid
= buffer_reg_uid_find(
225 ua_sess
->tracing_id
, ua_sess
->bits_per_long
, ua_sess
->uid
);
229 registry
= reg_uid
->registry
->reg
.ust
;
241 * Delete ust context safely. RCU read lock must be held before calling
245 void delete_ust_app_ctx(int sock
, struct ust_app_ctx
*ua_ctx
)
252 ret
= ustctl_release_object(sock
, ua_ctx
->obj
);
253 if (ret
< 0 && ret
!= -EPIPE
&& ret
!= -LTTNG_UST_ERR_EXITING
) {
254 ERR("UST app sock %d release ctx obj handle %d failed with ret %d",
255 sock
, ua_ctx
->obj
->handle
, ret
);
263 * Delete ust app event safely. RCU read lock must be held before calling
267 void delete_ust_app_event(int sock
, struct ust_app_event
*ua_event
)
273 free(ua_event
->filter
);
275 if (ua_event
->obj
!= NULL
) {
276 ret
= ustctl_release_object(sock
, ua_event
->obj
);
277 if (ret
< 0 && ret
!= -EPIPE
&& ret
!= -LTTNG_UST_ERR_EXITING
) {
278 ERR("UST app sock %d release event obj failed with ret %d",
287 * Release ust data object of the given stream.
289 * Return 0 on success or else a negative value.
291 static int release_ust_app_stream(int sock
, struct ust_app_stream
*stream
)
298 ret
= ustctl_release_object(sock
, stream
->obj
);
299 if (ret
< 0 && ret
!= -EPIPE
&& ret
!= -LTTNG_UST_ERR_EXITING
) {
300 ERR("UST app sock %d release stream obj failed with ret %d",
303 lttng_fd_put(LTTNG_FD_APPS
, 2);
311 * Delete ust app stream safely. RCU read lock must be held before calling
315 void delete_ust_app_stream(int sock
, struct ust_app_stream
*stream
)
319 (void) release_ust_app_stream(sock
, stream
);
324 * We need to execute ht_destroy outside of RCU read-side critical
325 * section and outside of call_rcu thread, so we postpone its execution
326 * using ht_cleanup_push. It is simpler than to change the semantic of
327 * the many callers of delete_ust_app_session().
330 void delete_ust_app_channel_rcu(struct rcu_head
*head
)
332 struct ust_app_channel
*ua_chan
=
333 caa_container_of(head
, struct ust_app_channel
, rcu_head
);
335 ht_cleanup_push(ua_chan
->ctx
);
336 ht_cleanup_push(ua_chan
->events
);
341 * Delete ust app channel safely. RCU read lock must be held before calling
345 void delete_ust_app_channel(int sock
, struct ust_app_channel
*ua_chan
,
349 struct lttng_ht_iter iter
;
350 struct ust_app_event
*ua_event
;
351 struct ust_app_ctx
*ua_ctx
;
352 struct ust_app_stream
*stream
, *stmp
;
353 struct ust_registry_session
*registry
;
357 DBG3("UST app deleting channel %s", ua_chan
->name
);
360 cds_list_for_each_entry_safe(stream
, stmp
, &ua_chan
->streams
.head
, list
) {
361 cds_list_del(&stream
->list
);
362 delete_ust_app_stream(sock
, stream
);
366 cds_lfht_for_each_entry(ua_chan
->ctx
->ht
, &iter
.iter
, ua_ctx
, node
.node
) {
367 cds_list_del(&ua_ctx
->list
);
368 ret
= lttng_ht_del(ua_chan
->ctx
, &iter
);
370 delete_ust_app_ctx(sock
, ua_ctx
);
374 cds_lfht_for_each_entry(ua_chan
->events
->ht
, &iter
.iter
, ua_event
,
376 ret
= lttng_ht_del(ua_chan
->events
, &iter
);
378 delete_ust_app_event(sock
, ua_event
);
381 if (ua_chan
->session
->buffer_type
== LTTNG_BUFFER_PER_PID
) {
382 /* Wipe and free registry from session registry. */
383 registry
= get_session_registry(ua_chan
->session
);
385 ust_registry_channel_del_free(registry
, ua_chan
->key
);
389 if (ua_chan
->obj
!= NULL
) {
390 /* Remove channel from application UST object descriptor. */
391 iter
.iter
.node
= &ua_chan
->ust_objd_node
.node
;
392 ret
= lttng_ht_del(app
->ust_objd
, &iter
);
394 ret
= ustctl_release_object(sock
, ua_chan
->obj
);
395 if (ret
< 0 && ret
!= -EPIPE
&& ret
!= -LTTNG_UST_ERR_EXITING
) {
396 ERR("UST app sock %d release channel obj failed with ret %d",
399 lttng_fd_put(LTTNG_FD_APPS
, 1);
402 call_rcu(&ua_chan
->rcu_head
, delete_ust_app_channel_rcu
);
406 * Push metadata to consumer socket.
408 * The socket lock MUST be acquired.
409 * The ust app session lock MUST be acquired.
411 * On success, return the len of metadata pushed or else a negative value.
413 ssize_t
ust_app_push_metadata(struct ust_registry_session
*registry
,
414 struct consumer_socket
*socket
, int send_zero_data
)
417 char *metadata_str
= NULL
;
425 * On a push metadata error either the consumer is dead or the metadata
426 * channel has been destroyed because its endpoint might have died (e.g:
427 * relayd). If so, the metadata closed flag is set to 1 so we deny pushing
428 * metadata again which is not valid anymore on the consumer side.
430 * The ust app session mutex locked allows us to make this check without
433 if (registry
->metadata_closed
) {
437 pthread_mutex_lock(®istry
->lock
);
439 offset
= registry
->metadata_len_sent
;
440 len
= registry
->metadata_len
- registry
->metadata_len_sent
;
442 DBG3("No metadata to push for metadata key %" PRIu64
,
443 registry
->metadata_key
);
445 if (send_zero_data
) {
446 DBG("No metadata to push");
452 /* Allocate only what we have to send. */
453 metadata_str
= zmalloc(len
);
455 PERROR("zmalloc ust app metadata string");
459 /* Copy what we haven't send out. */
460 memcpy(metadata_str
, registry
->metadata
+ offset
, len
);
461 registry
->metadata_len_sent
+= len
;
464 pthread_mutex_unlock(®istry
->lock
);
465 ret
= consumer_push_metadata(socket
, registry
->metadata_key
,
466 metadata_str
, len
, offset
);
469 * There is an acceptable race here between the registry metadata key
470 * assignment and the creation on the consumer. The session daemon can
471 * concurrently push metadata for this registry while being created on
472 * the consumer since the metadata key of the registry is assigned
473 * *before* it is setup to avoid the consumer to ask for metadata that
474 * could possibly be not found in the session daemon.
476 * The metadata will get pushed either by the session being stopped or
477 * the consumer requesting metadata if that race is triggered.
479 if (ret
== -LTTCOMM_CONSUMERD_CHANNEL_FAIL
) {
483 /* Update back the actual metadata len sent since it failed here. */
484 pthread_mutex_lock(®istry
->lock
);
485 registry
->metadata_len_sent
-= len
;
486 pthread_mutex_unlock(®istry
->lock
);
496 pthread_mutex_unlock(®istry
->lock
);
503 * For a given application and session, push metadata to consumer. The session
504 * lock MUST be acquired here before calling this.
505 * Either sock or consumer is required : if sock is NULL, the default
506 * socket to send the metadata is retrieved from consumer, if sock
507 * is not NULL we use it to send the metadata.
509 * Return 0 on success else a negative error.
511 static int push_metadata(struct ust_registry_session
*registry
,
512 struct consumer_output
*consumer
)
516 struct consumer_socket
*socket
;
524 * Means that no metadata was assigned to the session. This can happens if
525 * no start has been done previously.
527 if (!registry
->metadata_key
) {
532 /* Get consumer socket to use to push the metadata.*/
533 socket
= consumer_find_socket_by_bitness(registry
->bits_per_long
,
537 goto error_rcu_unlock
;
541 * TODO: Currently, we hold the socket lock around sampling of the next
542 * metadata segment to ensure we send metadata over the consumer socket in
543 * the correct order. This makes the registry lock nest inside the socket
546 * Please note that this is a temporary measure: we should move this lock
547 * back into ust_consumer_push_metadata() when the consumer gets the
548 * ability to reorder the metadata it receives.
550 pthread_mutex_lock(socket
->lock
);
551 ret
= ust_app_push_metadata(registry
, socket
, 0);
552 pthread_mutex_unlock(socket
->lock
);
555 goto error_rcu_unlock
;
563 * On error, flag the registry that the metadata is closed. We were unable
564 * to push anything and this means that either the consumer is not
565 * responding or the metadata cache has been destroyed on the consumer.
567 registry
->metadata_closed
= 1;
574 * Send to the consumer a close metadata command for the given session. Once
575 * done, the metadata channel is deleted and the session metadata pointer is
576 * nullified. The session lock MUST be acquired here unless the application is
577 * in the destroy path.
579 * Return 0 on success else a negative value.
581 static int close_metadata(struct ust_registry_session
*registry
,
582 struct consumer_output
*consumer
)
585 struct consumer_socket
*socket
;
592 if (!registry
->metadata_key
|| registry
->metadata_closed
) {
597 /* Get consumer socket to use to push the metadata.*/
598 socket
= consumer_find_socket_by_bitness(registry
->bits_per_long
,
605 ret
= consumer_close_metadata(socket
, registry
->metadata_key
);
612 * Metadata closed. Even on error this means that the consumer is not
613 * responding or not found so either way a second close should NOT be emit
616 registry
->metadata_closed
= 1;
623 * We need to execute ht_destroy outside of RCU read-side critical
624 * section and outside of call_rcu thread, so we postpone its execution
625 * using ht_cleanup_push. It is simpler than to change the semantic of
626 * the many callers of delete_ust_app_session().
629 void delete_ust_app_session_rcu(struct rcu_head
*head
)
631 struct ust_app_session
*ua_sess
=
632 caa_container_of(head
, struct ust_app_session
, rcu_head
);
634 ht_cleanup_push(ua_sess
->channels
);
639 * Delete ust app session safely. RCU read lock must be held before calling
643 void delete_ust_app_session(int sock
, struct ust_app_session
*ua_sess
,
647 struct lttng_ht_iter iter
;
648 struct ust_app_channel
*ua_chan
;
649 struct ust_registry_session
*registry
;
653 pthread_mutex_lock(&ua_sess
->lock
);
655 registry
= get_session_registry(ua_sess
);
656 if (registry
&& !registry
->metadata_closed
) {
657 /* Push metadata for application before freeing the application. */
658 (void) push_metadata(registry
, ua_sess
->consumer
);
661 * Don't ask to close metadata for global per UID buffers. Close
662 * metadata only on destroy trace session in this case. Also, the
663 * previous push metadata could have flag the metadata registry to
664 * close so don't send a close command if closed.
666 if (ua_sess
->buffer_type
!= LTTNG_BUFFER_PER_UID
&&
667 !registry
->metadata_closed
) {
668 /* And ask to close it for this session registry. */
669 (void) close_metadata(registry
, ua_sess
->consumer
);
673 cds_lfht_for_each_entry(ua_sess
->channels
->ht
, &iter
.iter
, ua_chan
,
675 ret
= lttng_ht_del(ua_sess
->channels
, &iter
);
677 delete_ust_app_channel(sock
, ua_chan
, app
);
680 /* In case of per PID, the registry is kept in the session. */
681 if (ua_sess
->buffer_type
== LTTNG_BUFFER_PER_PID
) {
682 struct buffer_reg_pid
*reg_pid
= buffer_reg_pid_find(ua_sess
->id
);
684 buffer_reg_pid_remove(reg_pid
);
685 buffer_reg_pid_destroy(reg_pid
);
689 if (ua_sess
->handle
!= -1) {
690 ret
= ustctl_release_handle(sock
, ua_sess
->handle
);
691 if (ret
< 0 && ret
!= -EPIPE
&& ret
!= -LTTNG_UST_ERR_EXITING
) {
692 ERR("UST app sock %d release session handle failed with ret %d",
696 pthread_mutex_unlock(&ua_sess
->lock
);
698 call_rcu(&ua_sess
->rcu_head
, delete_ust_app_session_rcu
);
702 * Delete a traceable application structure from the global list. Never call
703 * this function outside of a call_rcu call.
705 * RCU read side lock should _NOT_ be held when calling this function.
708 void delete_ust_app(struct ust_app
*app
)
711 struct ust_app_session
*ua_sess
, *tmp_ua_sess
;
713 /* Delete ust app sessions info */
718 cds_list_for_each_entry_safe(ua_sess
, tmp_ua_sess
, &app
->teardown_head
,
720 /* Free every object in the session and the session. */
722 delete_ust_app_session(sock
, ua_sess
, app
);
726 ht_cleanup_push(app
->sessions
);
727 ht_cleanup_push(app
->ust_objd
);
730 * Wait until we have deleted the application from the sock hash table
731 * before closing this socket, otherwise an application could re-use the
732 * socket ID and race with the teardown, using the same hash table entry.
734 * It's OK to leave the close in call_rcu. We want it to stay unique for
735 * all RCU readers that could run concurrently with unregister app,
736 * therefore we _need_ to only close that socket after a grace period. So
737 * it should stay in this RCU callback.
739 * This close() is a very important step of the synchronization model so
740 * every modification to this function must be carefully reviewed.
746 lttng_fd_put(LTTNG_FD_APPS
, 1);
748 DBG2("UST app pid %d deleted", app
->pid
);
753 * URCU intermediate call to delete an UST app.
756 void delete_ust_app_rcu(struct rcu_head
*head
)
758 struct lttng_ht_node_ulong
*node
=
759 caa_container_of(head
, struct lttng_ht_node_ulong
, head
);
760 struct ust_app
*app
=
761 caa_container_of(node
, struct ust_app
, pid_n
);
763 DBG3("Call RCU deleting app PID %d", app
->pid
);
768 * Delete the session from the application ht and delete the data structure by
769 * freeing every object inside and releasing them.
771 static void destroy_app_session(struct ust_app
*app
,
772 struct ust_app_session
*ua_sess
)
775 struct lttng_ht_iter iter
;
780 iter
.iter
.node
= &ua_sess
->node
.node
;
781 ret
= lttng_ht_del(app
->sessions
, &iter
);
783 /* Already scheduled for teardown. */
787 /* Once deleted, free the data structure. */
788 delete_ust_app_session(app
->sock
, ua_sess
, app
);
795 * Alloc new UST app session.
798 struct ust_app_session
*alloc_ust_app_session(struct ust_app
*app
)
800 struct ust_app_session
*ua_sess
;
802 /* Init most of the default value by allocating and zeroing */
803 ua_sess
= zmalloc(sizeof(struct ust_app_session
));
804 if (ua_sess
== NULL
) {
809 ua_sess
->handle
= -1;
810 ua_sess
->channels
= lttng_ht_new(0, LTTNG_HT_TYPE_STRING
);
811 pthread_mutex_init(&ua_sess
->lock
, NULL
);
820 * Alloc new UST app channel.
823 struct ust_app_channel
*alloc_ust_app_channel(char *name
,
824 struct ust_app_session
*ua_sess
,
825 struct lttng_ust_channel_attr
*attr
)
827 struct ust_app_channel
*ua_chan
;
829 /* Init most of the default value by allocating and zeroing */
830 ua_chan
= zmalloc(sizeof(struct ust_app_channel
));
831 if (ua_chan
== NULL
) {
836 /* Setup channel name */
837 strncpy(ua_chan
->name
, name
, sizeof(ua_chan
->name
));
838 ua_chan
->name
[sizeof(ua_chan
->name
) - 1] = '\0';
840 ua_chan
->enabled
= 1;
841 ua_chan
->handle
= -1;
842 ua_chan
->session
= ua_sess
;
843 ua_chan
->key
= get_next_channel_key();
844 ua_chan
->ctx
= lttng_ht_new(0, LTTNG_HT_TYPE_ULONG
);
845 ua_chan
->events
= lttng_ht_new(0, LTTNG_HT_TYPE_STRING
);
846 lttng_ht_node_init_str(&ua_chan
->node
, ua_chan
->name
);
848 CDS_INIT_LIST_HEAD(&ua_chan
->streams
.head
);
849 CDS_INIT_LIST_HEAD(&ua_chan
->ctx_list
);
851 /* Copy attributes */
853 /* Translate from lttng_ust_channel to ustctl_consumer_channel_attr. */
854 ua_chan
->attr
.subbuf_size
= attr
->subbuf_size
;
855 ua_chan
->attr
.num_subbuf
= attr
->num_subbuf
;
856 ua_chan
->attr
.overwrite
= attr
->overwrite
;
857 ua_chan
->attr
.switch_timer_interval
= attr
->switch_timer_interval
;
858 ua_chan
->attr
.read_timer_interval
= attr
->read_timer_interval
;
859 ua_chan
->attr
.output
= attr
->output
;
861 /* By default, the channel is a per cpu channel. */
862 ua_chan
->attr
.type
= LTTNG_UST_CHAN_PER_CPU
;
864 DBG3("UST app channel %s allocated", ua_chan
->name
);
873 * Allocate and initialize a UST app stream.
875 * Return newly allocated stream pointer or NULL on error.
877 struct ust_app_stream
*ust_app_alloc_stream(void)
879 struct ust_app_stream
*stream
= NULL
;
881 stream
= zmalloc(sizeof(*stream
));
882 if (stream
== NULL
) {
883 PERROR("zmalloc ust app stream");
887 /* Zero could be a valid value for a handle so flag it to -1. */
895 * Alloc new UST app event.
898 struct ust_app_event
*alloc_ust_app_event(char *name
,
899 struct lttng_ust_event
*attr
)
901 struct ust_app_event
*ua_event
;
903 /* Init most of the default value by allocating and zeroing */
904 ua_event
= zmalloc(sizeof(struct ust_app_event
));
905 if (ua_event
== NULL
) {
910 ua_event
->enabled
= 1;
911 strncpy(ua_event
->name
, name
, sizeof(ua_event
->name
));
912 ua_event
->name
[sizeof(ua_event
->name
) - 1] = '\0';
913 lttng_ht_node_init_str(&ua_event
->node
, ua_event
->name
);
915 /* Copy attributes */
917 memcpy(&ua_event
->attr
, attr
, sizeof(ua_event
->attr
));
920 DBG3("UST app event %s allocated", ua_event
->name
);
929 * Alloc new UST app context.
932 struct ust_app_ctx
*alloc_ust_app_ctx(struct lttng_ust_context
*uctx
)
934 struct ust_app_ctx
*ua_ctx
;
936 ua_ctx
= zmalloc(sizeof(struct ust_app_ctx
));
937 if (ua_ctx
== NULL
) {
941 CDS_INIT_LIST_HEAD(&ua_ctx
->list
);
944 memcpy(&ua_ctx
->ctx
, uctx
, sizeof(ua_ctx
->ctx
));
947 DBG3("UST app context %d allocated", ua_ctx
->ctx
.ctx
);
954 * Allocate a filter and copy the given original filter.
956 * Return allocated filter or NULL on error.
958 static struct lttng_ust_filter_bytecode
*alloc_copy_ust_app_filter(
959 struct lttng_ust_filter_bytecode
*orig_f
)
961 struct lttng_ust_filter_bytecode
*filter
= NULL
;
963 /* Copy filter bytecode */
964 filter
= zmalloc(sizeof(*filter
) + orig_f
->len
);
966 PERROR("zmalloc alloc ust app filter");
970 memcpy(filter
, orig_f
, sizeof(*filter
) + orig_f
->len
);
977 * Find an ust_app using the sock and return it. RCU read side lock must be
978 * held before calling this helper function.
981 struct ust_app
*find_app_by_sock(int sock
)
983 struct lttng_ht_node_ulong
*node
;
984 struct lttng_ht_iter iter
;
986 lttng_ht_lookup(ust_app_ht_by_sock
, (void *)((unsigned long) sock
), &iter
);
987 node
= lttng_ht_iter_get_node_ulong(&iter
);
989 DBG2("UST app find by sock %d not found", sock
);
993 return caa_container_of(node
, struct ust_app
, sock_n
);
1000 * Find an ust_app using the notify sock and return it. RCU read side lock must
1001 * be held before calling this helper function.
1003 static struct ust_app
*find_app_by_notify_sock(int sock
)
1005 struct lttng_ht_node_ulong
*node
;
1006 struct lttng_ht_iter iter
;
1008 lttng_ht_lookup(ust_app_ht_by_notify_sock
, (void *)((unsigned long) sock
),
1010 node
= lttng_ht_iter_get_node_ulong(&iter
);
1012 DBG2("UST app find by notify sock %d not found", sock
);
1016 return caa_container_of(node
, struct ust_app
, notify_sock_n
);
1023 * Lookup for an ust app event based on event name, filter bytecode and the
1026 * Return an ust_app_event object or NULL on error.
1028 static struct ust_app_event
*find_ust_app_event(struct lttng_ht
*ht
,
1029 char *name
, struct lttng_ust_filter_bytecode
*filter
, int loglevel
)
1031 struct lttng_ht_iter iter
;
1032 struct lttng_ht_node_str
*node
;
1033 struct ust_app_event
*event
= NULL
;
1034 struct ust_app_ht_key key
;
1039 /* Setup key for event lookup. */
1041 key
.filter
= filter
;
1042 key
.loglevel
= loglevel
;
1044 /* Lookup using the event name as hash and a custom match fct. */
1045 cds_lfht_lookup(ht
->ht
, ht
->hash_fct((void *) name
, lttng_ht_seed
),
1046 ht_match_ust_app_event
, &key
, &iter
.iter
);
1047 node
= lttng_ht_iter_get_node_str(&iter
);
1052 event
= caa_container_of(node
, struct ust_app_event
, node
);
1059 * Create the channel context on the tracer.
1061 * Called with UST app session lock held.
1064 int create_ust_channel_context(struct ust_app_channel
*ua_chan
,
1065 struct ust_app_ctx
*ua_ctx
, struct ust_app
*app
)
1069 health_code_update();
1071 ret
= ustctl_add_context(app
->sock
, &ua_ctx
->ctx
,
1072 ua_chan
->obj
, &ua_ctx
->obj
);
1074 if (ret
!= -EPIPE
&& ret
!= -LTTNG_UST_ERR_EXITING
) {
1075 ERR("UST app create channel context failed for app (pid: %d) "
1076 "with ret %d", app
->pid
, ret
);
1079 * This is normal behavior, an application can die during the
1080 * creation process. Don't report an error so the execution can
1081 * continue normally.
1084 DBG3("UST app disable event failed. Application is dead.");
1089 ua_ctx
->handle
= ua_ctx
->obj
->handle
;
1091 DBG2("UST app context handle %d created successfully for channel %s",
1092 ua_ctx
->handle
, ua_chan
->name
);
1095 health_code_update();
1100 * Set the filter on the tracer.
1103 int set_ust_event_filter(struct ust_app_event
*ua_event
,
1104 struct ust_app
*app
)
1108 health_code_update();
1110 if (!ua_event
->filter
) {
1115 ret
= ustctl_set_filter(app
->sock
, ua_event
->filter
,
1118 if (ret
!= -EPIPE
&& ret
!= -LTTNG_UST_ERR_EXITING
) {
1119 ERR("UST app event %s filter failed for app (pid: %d) "
1120 "with ret %d", ua_event
->attr
.name
, app
->pid
, ret
);
1123 * This is normal behavior, an application can die during the
1124 * creation process. Don't report an error so the execution can
1125 * continue normally.
1128 DBG3("UST app filter event failed. Application is dead.");
1133 DBG2("UST filter set successfully for event %s", ua_event
->name
);
1136 health_code_update();
1141 * Disable the specified event on to UST tracer for the UST session.
1143 static int disable_ust_event(struct ust_app
*app
,
1144 struct ust_app_session
*ua_sess
, struct ust_app_event
*ua_event
)
1148 health_code_update();
1150 ret
= ustctl_disable(app
->sock
, ua_event
->obj
);
1152 if (ret
!= -EPIPE
&& ret
!= -LTTNG_UST_ERR_EXITING
) {
1153 ERR("UST app event %s disable failed for app (pid: %d) "
1154 "and session handle %d with ret %d",
1155 ua_event
->attr
.name
, app
->pid
, ua_sess
->handle
, ret
);
1158 * This is normal behavior, an application can die during the
1159 * creation process. Don't report an error so the execution can
1160 * continue normally.
1163 DBG3("UST app disable event failed. Application is dead.");
1168 DBG2("UST app event %s disabled successfully for app (pid: %d)",
1169 ua_event
->attr
.name
, app
->pid
);
1172 health_code_update();
1177 * Disable the specified channel on to UST tracer for the UST session.
1179 static int disable_ust_channel(struct ust_app
*app
,
1180 struct ust_app_session
*ua_sess
, struct ust_app_channel
*ua_chan
)
1184 health_code_update();
1186 ret
= ustctl_disable(app
->sock
, ua_chan
->obj
);
1188 if (ret
!= -EPIPE
&& ret
!= -LTTNG_UST_ERR_EXITING
) {
1189 ERR("UST app channel %s disable failed for app (pid: %d) "
1190 "and session handle %d with ret %d",
1191 ua_chan
->name
, app
->pid
, ua_sess
->handle
, 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 disable channel failed. Application is dead.");
1204 DBG2("UST app channel %s disabled successfully for app (pid: %d)",
1205 ua_chan
->name
, app
->pid
);
1208 health_code_update();
1213 * Enable the specified channel on to UST tracer for the UST session.
1215 static int enable_ust_channel(struct ust_app
*app
,
1216 struct ust_app_session
*ua_sess
, struct ust_app_channel
*ua_chan
)
1220 health_code_update();
1222 ret
= ustctl_enable(app
->sock
, ua_chan
->obj
);
1224 if (ret
!= -EPIPE
&& ret
!= -LTTNG_UST_ERR_EXITING
) {
1225 ERR("UST app channel %s enable failed for app (pid: %d) "
1226 "and session handle %d with ret %d",
1227 ua_chan
->name
, app
->pid
, ua_sess
->handle
, ret
);
1230 * This is normal behavior, an application can die during the
1231 * creation process. Don't report an error so the execution can
1232 * continue normally.
1235 DBG3("UST app enable channel failed. Application is dead.");
1240 ua_chan
->enabled
= 1;
1242 DBG2("UST app channel %s enabled successfully for app (pid: %d)",
1243 ua_chan
->name
, app
->pid
);
1246 health_code_update();
1251 * Enable the specified event on to UST tracer for the UST session.
1253 static int enable_ust_event(struct ust_app
*app
,
1254 struct ust_app_session
*ua_sess
, struct ust_app_event
*ua_event
)
1258 health_code_update();
1260 ret
= ustctl_enable(app
->sock
, ua_event
->obj
);
1262 if (ret
!= -EPIPE
&& ret
!= -LTTNG_UST_ERR_EXITING
) {
1263 ERR("UST app event %s enable failed for app (pid: %d) "
1264 "and session handle %d with ret %d",
1265 ua_event
->attr
.name
, app
->pid
, ua_sess
->handle
, ret
);
1268 * This is normal behavior, an application can die during the
1269 * creation process. Don't report an error so the execution can
1270 * continue normally.
1273 DBG3("UST app enable event failed. Application is dead.");
1278 DBG2("UST app event %s enabled successfully for app (pid: %d)",
1279 ua_event
->attr
.name
, app
->pid
);
1282 health_code_update();
1287 * Send channel and stream buffer to application.
1289 * Return 0 on success. On error, a negative value is returned.
1291 static int send_channel_pid_to_ust(struct ust_app
*app
,
1292 struct ust_app_session
*ua_sess
, struct ust_app_channel
*ua_chan
)
1295 struct ust_app_stream
*stream
, *stmp
;
1301 health_code_update();
1303 DBG("UST app sending channel %s to UST app sock %d", ua_chan
->name
,
1306 /* Send channel to the application. */
1307 ret
= ust_consumer_send_channel_to_ust(app
, ua_sess
, ua_chan
);
1312 health_code_update();
1314 /* Send all streams to application. */
1315 cds_list_for_each_entry_safe(stream
, stmp
, &ua_chan
->streams
.head
, list
) {
1316 ret
= ust_consumer_send_stream_to_ust(app
, ua_chan
, stream
);
1320 /* We don't need the stream anymore once sent to the tracer. */
1321 cds_list_del(&stream
->list
);
1322 delete_ust_app_stream(-1, stream
);
1324 /* Flag the channel that it is sent to the application. */
1325 ua_chan
->is_sent
= 1;
1328 health_code_update();
1333 * Create the specified event onto the UST tracer for a UST session.
1335 * Should be called with session mutex held.
1338 int create_ust_event(struct ust_app
*app
, struct ust_app_session
*ua_sess
,
1339 struct ust_app_channel
*ua_chan
, struct ust_app_event
*ua_event
)
1343 health_code_update();
1345 /* Create UST event on tracer */
1346 ret
= ustctl_create_event(app
->sock
, &ua_event
->attr
, ua_chan
->obj
,
1349 if (ret
!= -EPIPE
&& ret
!= -LTTNG_UST_ERR_EXITING
) {
1350 ERR("Error ustctl create event %s for app pid: %d with ret %d",
1351 ua_event
->attr
.name
, app
->pid
, ret
);
1354 * This is normal behavior, an application can die during the
1355 * creation process. Don't report an error so the execution can
1356 * continue normally.
1359 DBG3("UST app create event failed. Application is dead.");
1364 ua_event
->handle
= ua_event
->obj
->handle
;
1366 DBG2("UST app event %s created successfully for pid:%d",
1367 ua_event
->attr
.name
, app
->pid
);
1369 health_code_update();
1371 /* Set filter if one is present. */
1372 if (ua_event
->filter
) {
1373 ret
= set_ust_event_filter(ua_event
, app
);
1379 /* If event not enabled, disable it on the tracer */
1380 if (ua_event
->enabled
== 0) {
1381 ret
= disable_ust_event(app
, ua_sess
, ua_event
);
1384 * If we hit an EPERM, something is wrong with our disable call. If
1385 * we get an EEXIST, there is a problem on the tracer side since we
1389 case -LTTNG_UST_ERR_PERM
:
1390 /* Code flow problem */
1392 case -LTTNG_UST_ERR_EXIST
:
1393 /* It's OK for our use case. */
1404 health_code_update();
1409 * Copy data between an UST app event and a LTT event.
1411 static void shadow_copy_event(struct ust_app_event
*ua_event
,
1412 struct ltt_ust_event
*uevent
)
1414 strncpy(ua_event
->name
, uevent
->attr
.name
, sizeof(ua_event
->name
));
1415 ua_event
->name
[sizeof(ua_event
->name
) - 1] = '\0';
1417 ua_event
->enabled
= uevent
->enabled
;
1419 /* Copy event attributes */
1420 memcpy(&ua_event
->attr
, &uevent
->attr
, sizeof(ua_event
->attr
));
1422 /* Copy filter bytecode */
1423 if (uevent
->filter
) {
1424 ua_event
->filter
= alloc_copy_ust_app_filter(uevent
->filter
);
1425 /* Filter might be NULL here in case of ENONEM. */
1430 * Copy data between an UST app channel and a LTT channel.
1432 static void shadow_copy_channel(struct ust_app_channel
*ua_chan
,
1433 struct ltt_ust_channel
*uchan
)
1435 struct lttng_ht_iter iter
;
1436 struct ltt_ust_event
*uevent
;
1437 struct ltt_ust_context
*uctx
;
1438 struct ust_app_event
*ua_event
;
1439 struct ust_app_ctx
*ua_ctx
;
1441 DBG2("UST app shadow copy of channel %s started", ua_chan
->name
);
1443 strncpy(ua_chan
->name
, uchan
->name
, sizeof(ua_chan
->name
));
1444 ua_chan
->name
[sizeof(ua_chan
->name
) - 1] = '\0';
1446 ua_chan
->tracefile_size
= uchan
->tracefile_size
;
1447 ua_chan
->tracefile_count
= uchan
->tracefile_count
;
1449 /* Copy event attributes since the layout is different. */
1450 ua_chan
->attr
.subbuf_size
= uchan
->attr
.subbuf_size
;
1451 ua_chan
->attr
.num_subbuf
= uchan
->attr
.num_subbuf
;
1452 ua_chan
->attr
.overwrite
= uchan
->attr
.overwrite
;
1453 ua_chan
->attr
.switch_timer_interval
= uchan
->attr
.switch_timer_interval
;
1454 ua_chan
->attr
.read_timer_interval
= uchan
->attr
.read_timer_interval
;
1455 ua_chan
->attr
.output
= uchan
->attr
.output
;
1457 * Note that the attribute channel type is not set since the channel on the
1458 * tracing registry side does not have this information.
1461 ua_chan
->enabled
= uchan
->enabled
;
1462 ua_chan
->tracing_channel_id
= uchan
->id
;
1464 cds_list_for_each_entry(uctx
, &uchan
->ctx_list
, list
) {
1465 ua_ctx
= alloc_ust_app_ctx(&uctx
->ctx
);
1466 if (ua_ctx
== NULL
) {
1469 lttng_ht_node_init_ulong(&ua_ctx
->node
,
1470 (unsigned long) ua_ctx
->ctx
.ctx
);
1471 lttng_ht_add_unique_ulong(ua_chan
->ctx
, &ua_ctx
->node
);
1472 cds_list_add_tail(&ua_ctx
->list
, &ua_chan
->ctx_list
);
1475 /* Copy all events from ltt ust channel to ust app channel */
1476 cds_lfht_for_each_entry(uchan
->events
->ht
, &iter
.iter
, uevent
, node
.node
) {
1477 ua_event
= find_ust_app_event(ua_chan
->events
, uevent
->attr
.name
,
1478 uevent
->filter
, uevent
->attr
.loglevel
);
1479 if (ua_event
== NULL
) {
1480 DBG2("UST event %s not found on shadow copy channel",
1482 ua_event
= alloc_ust_app_event(uevent
->attr
.name
, &uevent
->attr
);
1483 if (ua_event
== NULL
) {
1486 shadow_copy_event(ua_event
, uevent
);
1487 add_unique_ust_app_event(ua_chan
, ua_event
);
1491 DBG3("UST app shadow copy of channel %s done", ua_chan
->name
);
1495 * Copy data between a UST app session and a regular LTT session.
1497 static void shadow_copy_session(struct ust_app_session
*ua_sess
,
1498 struct ltt_ust_session
*usess
, struct ust_app
*app
)
1500 struct lttng_ht_node_str
*ua_chan_node
;
1501 struct lttng_ht_iter iter
;
1502 struct ltt_ust_channel
*uchan
;
1503 struct ust_app_channel
*ua_chan
;
1505 struct tm
*timeinfo
;
1509 /* Get date and time for unique app path */
1511 timeinfo
= localtime(&rawtime
);
1512 strftime(datetime
, sizeof(datetime
), "%Y%m%d-%H%M%S", timeinfo
);
1514 DBG2("Shadow copy of session handle %d", ua_sess
->handle
);
1516 ua_sess
->tracing_id
= usess
->id
;
1517 ua_sess
->id
= get_next_session_id();
1518 ua_sess
->uid
= app
->uid
;
1519 ua_sess
->gid
= app
->gid
;
1520 ua_sess
->euid
= usess
->uid
;
1521 ua_sess
->egid
= usess
->gid
;
1522 ua_sess
->buffer_type
= usess
->buffer_type
;
1523 ua_sess
->bits_per_long
= app
->bits_per_long
;
1524 /* There is only one consumer object per session possible. */
1525 ua_sess
->consumer
= usess
->consumer
;
1526 ua_sess
->output_traces
= usess
->output_traces
;
1528 switch (ua_sess
->buffer_type
) {
1529 case LTTNG_BUFFER_PER_PID
:
1530 ret
= snprintf(ua_sess
->path
, sizeof(ua_sess
->path
),
1531 DEFAULT_UST_TRACE_PID_PATH
"/%s-%d-%s", app
->name
, app
->pid
,
1534 case LTTNG_BUFFER_PER_UID
:
1535 ret
= snprintf(ua_sess
->path
, sizeof(ua_sess
->path
),
1536 DEFAULT_UST_TRACE_UID_PATH
, ua_sess
->uid
, app
->bits_per_long
);
1543 PERROR("asprintf UST shadow copy session");
1548 /* Iterate over all channels in global domain. */
1549 cds_lfht_for_each_entry(usess
->domain_global
.channels
->ht
, &iter
.iter
,
1551 struct lttng_ht_iter uiter
;
1553 lttng_ht_lookup(ua_sess
->channels
, (void *)uchan
->name
, &uiter
);
1554 ua_chan_node
= lttng_ht_iter_get_node_str(&uiter
);
1555 if (ua_chan_node
!= NULL
) {
1556 /* Session exist. Contiuing. */
1560 DBG2("Channel %s not found on shadow session copy, creating it",
1562 ua_chan
= alloc_ust_app_channel(uchan
->name
, ua_sess
, &uchan
->attr
);
1563 if (ua_chan
== NULL
) {
1564 /* malloc failed FIXME: Might want to do handle ENOMEM .. */
1567 shadow_copy_channel(ua_chan
, uchan
);
1569 * The concept of metadata channel does not exist on the tracing
1570 * registry side of the session daemon so this can only be a per CPU
1571 * channel and not metadata.
1573 ua_chan
->attr
.type
= LTTNG_UST_CHAN_PER_CPU
;
1575 lttng_ht_add_unique_str(ua_sess
->channels
, &ua_chan
->node
);
1583 * Lookup sesison wrapper.
1586 void __lookup_session_by_app(struct ltt_ust_session
*usess
,
1587 struct ust_app
*app
, struct lttng_ht_iter
*iter
)
1589 /* Get right UST app session from app */
1590 lttng_ht_lookup(app
->sessions
, &usess
->id
, iter
);
1594 * Return ust app session from the app session hashtable using the UST session
1597 static struct ust_app_session
*lookup_session_by_app(
1598 struct ltt_ust_session
*usess
, struct ust_app
*app
)
1600 struct lttng_ht_iter iter
;
1601 struct lttng_ht_node_u64
*node
;
1603 __lookup_session_by_app(usess
, app
, &iter
);
1604 node
= lttng_ht_iter_get_node_u64(&iter
);
1609 return caa_container_of(node
, struct ust_app_session
, node
);
1616 * Setup buffer registry per PID for the given session and application. If none
1617 * is found, a new one is created, added to the global registry and
1618 * initialized. If regp is valid, it's set with the newly created object.
1620 * Return 0 on success or else a negative value.
1622 static int setup_buffer_reg_pid(struct ust_app_session
*ua_sess
,
1623 struct ust_app
*app
, struct buffer_reg_pid
**regp
)
1626 struct buffer_reg_pid
*reg_pid
;
1633 reg_pid
= buffer_reg_pid_find(ua_sess
->id
);
1636 * This is the create channel path meaning that if there is NO
1637 * registry available, we have to create one for this session.
1639 ret
= buffer_reg_pid_create(ua_sess
->id
, ®_pid
);
1643 buffer_reg_pid_add(reg_pid
);
1648 /* Initialize registry. */
1649 ret
= ust_registry_session_init(®_pid
->registry
->reg
.ust
, app
,
1650 app
->bits_per_long
, app
->uint8_t_alignment
,
1651 app
->uint16_t_alignment
, app
->uint32_t_alignment
,
1652 app
->uint64_t_alignment
, app
->long_alignment
,
1653 app
->byte_order
, app
->version
.major
,
1654 app
->version
.minor
);
1659 DBG3("UST app buffer registry per PID created successfully");
1671 * Setup buffer registry per UID for the given session and application. If none
1672 * is found, a new one is created, added to the global registry and
1673 * initialized. If regp is valid, it's set with the newly created object.
1675 * Return 0 on success or else a negative value.
1677 static int setup_buffer_reg_uid(struct ltt_ust_session
*usess
,
1678 struct ust_app
*app
, struct buffer_reg_uid
**regp
)
1681 struct buffer_reg_uid
*reg_uid
;
1688 reg_uid
= buffer_reg_uid_find(usess
->id
, app
->bits_per_long
, app
->uid
);
1691 * This is the create channel path meaning that if there is NO
1692 * registry available, we have to create one for this session.
1694 ret
= buffer_reg_uid_create(usess
->id
, app
->bits_per_long
, app
->uid
,
1695 LTTNG_DOMAIN_UST
, ®_uid
);
1699 buffer_reg_uid_add(reg_uid
);
1704 /* Initialize registry. */
1705 ret
= ust_registry_session_init(®_uid
->registry
->reg
.ust
, NULL
,
1706 app
->bits_per_long
, app
->uint8_t_alignment
,
1707 app
->uint16_t_alignment
, app
->uint32_t_alignment
,
1708 app
->uint64_t_alignment
, app
->long_alignment
,
1709 app
->byte_order
, app
->version
.major
,
1710 app
->version
.minor
);
1714 /* Add node to teardown list of the session. */
1715 cds_list_add(®_uid
->lnode
, &usess
->buffer_reg_uid_list
);
1717 DBG3("UST app buffer registry per UID created successfully");
1729 * Create a session on the tracer side for the given app.
1731 * On success, ua_sess_ptr is populated with the session pointer or else left
1732 * untouched. If the session was created, is_created is set to 1. On error,
1733 * it's left untouched. Note that ua_sess_ptr is mandatory but is_created can
1736 * Returns 0 on success or else a negative code which is either -ENOMEM or
1737 * -ENOTCONN which is the default code if the ustctl_create_session fails.
1739 static int create_ust_app_session(struct ltt_ust_session
*usess
,
1740 struct ust_app
*app
, struct ust_app_session
**ua_sess_ptr
,
1743 int ret
, created
= 0;
1744 struct ust_app_session
*ua_sess
;
1748 assert(ua_sess_ptr
);
1750 health_code_update();
1752 ua_sess
= lookup_session_by_app(usess
, app
);
1753 if (ua_sess
== NULL
) {
1754 DBG2("UST app pid: %d session id %" PRIu64
" not found, creating it",
1755 app
->pid
, usess
->id
);
1756 ua_sess
= alloc_ust_app_session(app
);
1757 if (ua_sess
== NULL
) {
1758 /* Only malloc can failed so something is really wrong */
1762 shadow_copy_session(ua_sess
, usess
, app
);
1766 switch (usess
->buffer_type
) {
1767 case LTTNG_BUFFER_PER_PID
:
1768 /* Init local registry. */
1769 ret
= setup_buffer_reg_pid(ua_sess
, app
, NULL
);
1774 case LTTNG_BUFFER_PER_UID
:
1775 /* Look for a global registry. If none exists, create one. */
1776 ret
= setup_buffer_reg_uid(usess
, app
, NULL
);
1787 health_code_update();
1789 if (ua_sess
->handle
== -1) {
1790 ret
= ustctl_create_session(app
->sock
);
1792 if (ret
!= -EPIPE
&& ret
!= -LTTNG_UST_ERR_EXITING
) {
1793 ERR("Creating session for app pid %d with ret %d",
1796 DBG("UST app creating session failed. Application is dead");
1798 * This is normal behavior, an application can die during the
1799 * creation process. Don't report an error so the execution can
1800 * continue normally. This will get flagged ENOTCONN and the
1801 * caller will handle it.
1805 delete_ust_app_session(-1, ua_sess
, app
);
1806 if (ret
!= -ENOMEM
) {
1808 * Tracer is probably gone or got an internal error so let's
1809 * behave like it will soon unregister or not usable.
1816 ua_sess
->handle
= ret
;
1818 /* Add ust app session to app's HT */
1819 lttng_ht_node_init_u64(&ua_sess
->node
,
1820 ua_sess
->tracing_id
);
1821 lttng_ht_add_unique_u64(app
->sessions
, &ua_sess
->node
);
1823 DBG2("UST app session created successfully with handle %d", ret
);
1826 *ua_sess_ptr
= ua_sess
;
1828 *is_created
= created
;
1831 /* Everything went well. */
1835 health_code_update();
1840 * Create a context for the channel on the tracer.
1842 * Called with UST app session lock held and a RCU read side lock.
1845 int create_ust_app_channel_context(struct ust_app_session
*ua_sess
,
1846 struct ust_app_channel
*ua_chan
, struct lttng_ust_context
*uctx
,
1847 struct ust_app
*app
)
1850 struct lttng_ht_iter iter
;
1851 struct lttng_ht_node_ulong
*node
;
1852 struct ust_app_ctx
*ua_ctx
;
1854 DBG2("UST app adding context to channel %s", ua_chan
->name
);
1856 lttng_ht_lookup(ua_chan
->ctx
, (void *)((unsigned long)uctx
->ctx
), &iter
);
1857 node
= lttng_ht_iter_get_node_ulong(&iter
);
1863 ua_ctx
= alloc_ust_app_ctx(uctx
);
1864 if (ua_ctx
== NULL
) {
1870 lttng_ht_node_init_ulong(&ua_ctx
->node
, (unsigned long) ua_ctx
->ctx
.ctx
);
1871 lttng_ht_add_unique_ulong(ua_chan
->ctx
, &ua_ctx
->node
);
1872 cds_list_add_tail(&ua_ctx
->list
, &ua_chan
->ctx_list
);
1874 ret
= create_ust_channel_context(ua_chan
, ua_ctx
, app
);
1884 * Enable on the tracer side a ust app event for the session and channel.
1886 * Called with UST app session lock held.
1889 int enable_ust_app_event(struct ust_app_session
*ua_sess
,
1890 struct ust_app_event
*ua_event
, struct ust_app
*app
)
1894 ret
= enable_ust_event(app
, ua_sess
, ua_event
);
1899 ua_event
->enabled
= 1;
1906 * Disable on the tracer side a ust app event for the session and channel.
1908 static int disable_ust_app_event(struct ust_app_session
*ua_sess
,
1909 struct ust_app_event
*ua_event
, struct ust_app
*app
)
1913 ret
= disable_ust_event(app
, ua_sess
, ua_event
);
1918 ua_event
->enabled
= 0;
1925 * Lookup ust app channel for session and disable it on the tracer side.
1928 int disable_ust_app_channel(struct ust_app_session
*ua_sess
,
1929 struct ust_app_channel
*ua_chan
, struct ust_app
*app
)
1933 ret
= disable_ust_channel(app
, ua_sess
, ua_chan
);
1938 ua_chan
->enabled
= 0;
1945 * Lookup ust app channel for session and enable it on the tracer side. This
1946 * MUST be called with a RCU read side lock acquired.
1948 static int enable_ust_app_channel(struct ust_app_session
*ua_sess
,
1949 struct ltt_ust_channel
*uchan
, struct ust_app
*app
)
1952 struct lttng_ht_iter iter
;
1953 struct lttng_ht_node_str
*ua_chan_node
;
1954 struct ust_app_channel
*ua_chan
;
1956 lttng_ht_lookup(ua_sess
->channels
, (void *)uchan
->name
, &iter
);
1957 ua_chan_node
= lttng_ht_iter_get_node_str(&iter
);
1958 if (ua_chan_node
== NULL
) {
1959 DBG2("Unable to find channel %s in ust session id %" PRIu64
,
1960 uchan
->name
, ua_sess
->tracing_id
);
1964 ua_chan
= caa_container_of(ua_chan_node
, struct ust_app_channel
, node
);
1966 ret
= enable_ust_channel(app
, ua_sess
, ua_chan
);
1976 * Ask the consumer to create a channel and get it if successful.
1978 * Return 0 on success or else a negative value.
1980 static int do_consumer_create_channel(struct ltt_ust_session
*usess
,
1981 struct ust_app_session
*ua_sess
, struct ust_app_channel
*ua_chan
,
1982 int bitness
, struct ust_registry_session
*registry
)
1985 unsigned int nb_fd
= 0;
1986 struct consumer_socket
*socket
;
1994 health_code_update();
1996 /* Get the right consumer socket for the application. */
1997 socket
= consumer_find_socket_by_bitness(bitness
, usess
->consumer
);
2003 health_code_update();
2005 /* Need one fd for the channel. */
2006 ret
= lttng_fd_get(LTTNG_FD_APPS
, 1);
2008 ERR("Exhausted number of available FD upon create channel");
2013 * Ask consumer to create channel. The consumer will return the number of
2014 * stream we have to expect.
2016 ret
= ust_consumer_ask_channel(ua_sess
, ua_chan
, usess
->consumer
, socket
,
2023 * Compute the number of fd needed before receiving them. It must be 2 per
2024 * stream (2 being the default value here).
2026 nb_fd
= DEFAULT_UST_STREAM_FD_NUM
* ua_chan
->expected_stream_count
;
2028 /* Reserve the amount of file descriptor we need. */
2029 ret
= lttng_fd_get(LTTNG_FD_APPS
, nb_fd
);
2031 ERR("Exhausted number of available FD upon create channel");
2032 goto error_fd_get_stream
;
2035 health_code_update();
2038 * Now get the channel from the consumer. This call wil populate the stream
2039 * list of that channel and set the ust objects.
2041 if (usess
->consumer
->enabled
) {
2042 ret
= ust_consumer_get_channel(socket
, ua_chan
);
2052 lttng_fd_put(LTTNG_FD_APPS
, nb_fd
);
2053 error_fd_get_stream
:
2055 * Initiate a destroy channel on the consumer since we had an error
2056 * handling it on our side. The return value is of no importance since we
2057 * already have a ret value set by the previous error that we need to
2060 (void) ust_consumer_destroy_channel(socket
, ua_chan
);
2062 lttng_fd_put(LTTNG_FD_APPS
, 1);
2064 health_code_update();
2070 * Duplicate the ust data object of the ust app stream and save it in the
2071 * buffer registry stream.
2073 * Return 0 on success or else a negative value.
2075 static int duplicate_stream_object(struct buffer_reg_stream
*reg_stream
,
2076 struct ust_app_stream
*stream
)
2083 /* Reserve the amount of file descriptor we need. */
2084 ret
= lttng_fd_get(LTTNG_FD_APPS
, 2);
2086 ERR("Exhausted number of available FD upon duplicate stream");
2090 /* Duplicate object for stream once the original is in the registry. */
2091 ret
= ustctl_duplicate_ust_object_data(&stream
->obj
,
2092 reg_stream
->obj
.ust
);
2094 ERR("Duplicate stream obj from %p to %p failed with ret %d",
2095 reg_stream
->obj
.ust
, stream
->obj
, ret
);
2096 lttng_fd_put(LTTNG_FD_APPS
, 2);
2099 stream
->handle
= stream
->obj
->handle
;
2106 * Duplicate the ust data object of the ust app. channel and save it in the
2107 * buffer registry channel.
2109 * Return 0 on success or else a negative value.
2111 static int duplicate_channel_object(struct buffer_reg_channel
*reg_chan
,
2112 struct ust_app_channel
*ua_chan
)
2119 /* Need two fds for the channel. */
2120 ret
= lttng_fd_get(LTTNG_FD_APPS
, 1);
2122 ERR("Exhausted number of available FD upon duplicate channel");
2126 /* Duplicate object for stream once the original is in the registry. */
2127 ret
= ustctl_duplicate_ust_object_data(&ua_chan
->obj
, reg_chan
->obj
.ust
);
2129 ERR("Duplicate channel obj from %p to %p failed with ret: %d",
2130 reg_chan
->obj
.ust
, ua_chan
->obj
, ret
);
2133 ua_chan
->handle
= ua_chan
->obj
->handle
;
2138 lttng_fd_put(LTTNG_FD_APPS
, 1);
2144 * For a given channel buffer registry, setup all streams of the given ust
2145 * application channel.
2147 * Return 0 on success or else a negative value.
2149 static int setup_buffer_reg_streams(struct buffer_reg_channel
*reg_chan
,
2150 struct ust_app_channel
*ua_chan
)
2153 struct ust_app_stream
*stream
, *stmp
;
2158 DBG2("UST app setup buffer registry stream");
2160 /* Send all streams to application. */
2161 cds_list_for_each_entry_safe(stream
, stmp
, &ua_chan
->streams
.head
, list
) {
2162 struct buffer_reg_stream
*reg_stream
;
2164 ret
= buffer_reg_stream_create(®_stream
);
2170 * Keep original pointer and nullify it in the stream so the delete
2171 * stream call does not release the object.
2173 reg_stream
->obj
.ust
= stream
->obj
;
2175 buffer_reg_stream_add(reg_stream
, reg_chan
);
2177 /* We don't need the streams anymore. */
2178 cds_list_del(&stream
->list
);
2179 delete_ust_app_stream(-1, stream
);
2187 * Create a buffer registry channel for the given session registry and
2188 * application channel object. If regp pointer is valid, it's set with the
2189 * created object. Important, the created object is NOT added to the session
2190 * registry hash table.
2192 * Return 0 on success else a negative value.
2194 static int create_buffer_reg_channel(struct buffer_reg_session
*reg_sess
,
2195 struct ust_app_channel
*ua_chan
, struct buffer_reg_channel
**regp
)
2198 struct buffer_reg_channel
*reg_chan
= NULL
;
2203 DBG2("UST app creating buffer registry channel for %s", ua_chan
->name
);
2205 /* Create buffer registry channel. */
2206 ret
= buffer_reg_channel_create(ua_chan
->tracing_channel_id
, ®_chan
);
2211 reg_chan
->consumer_key
= ua_chan
->key
;
2212 reg_chan
->subbuf_size
= ua_chan
->attr
.subbuf_size
;
2214 /* Create and add a channel registry to session. */
2215 ret
= ust_registry_channel_add(reg_sess
->reg
.ust
,
2216 ua_chan
->tracing_channel_id
);
2220 buffer_reg_channel_add(reg_sess
, reg_chan
);
2229 /* Safe because the registry channel object was not added to any HT. */
2230 buffer_reg_channel_destroy(reg_chan
, LTTNG_DOMAIN_UST
);
2236 * Setup buffer registry channel for the given session registry and application
2237 * channel object. If regp pointer is valid, it's set with the created object.
2239 * Return 0 on success else a negative value.
2241 static int setup_buffer_reg_channel(struct buffer_reg_session
*reg_sess
,
2242 struct ust_app_channel
*ua_chan
, struct buffer_reg_channel
*reg_chan
)
2249 assert(ua_chan
->obj
);
2251 DBG2("UST app setup buffer registry channel for %s", ua_chan
->name
);
2253 /* Setup all streams for the registry. */
2254 ret
= setup_buffer_reg_streams(reg_chan
, ua_chan
);
2259 reg_chan
->obj
.ust
= ua_chan
->obj
;
2260 ua_chan
->obj
= NULL
;
2265 buffer_reg_channel_remove(reg_sess
, reg_chan
);
2266 buffer_reg_channel_destroy(reg_chan
, LTTNG_DOMAIN_UST
);
2271 * Send buffer registry channel to the application.
2273 * Return 0 on success else a negative value.
2275 static int send_channel_uid_to_ust(struct buffer_reg_channel
*reg_chan
,
2276 struct ust_app
*app
, struct ust_app_session
*ua_sess
,
2277 struct ust_app_channel
*ua_chan
)
2280 struct buffer_reg_stream
*reg_stream
;
2287 DBG("UST app sending buffer registry channel to ust sock %d", app
->sock
);
2289 ret
= duplicate_channel_object(reg_chan
, ua_chan
);
2294 /* Send channel to the application. */
2295 ret
= ust_consumer_send_channel_to_ust(app
, ua_sess
, ua_chan
);
2300 health_code_update();
2302 /* Send all streams to application. */
2303 pthread_mutex_lock(®_chan
->stream_list_lock
);
2304 cds_list_for_each_entry(reg_stream
, ®_chan
->streams
, lnode
) {
2305 struct ust_app_stream stream
;
2307 ret
= duplicate_stream_object(reg_stream
, &stream
);
2309 goto error_stream_unlock
;
2312 ret
= ust_consumer_send_stream_to_ust(app
, ua_chan
, &stream
);
2314 (void) release_ust_app_stream(-1, &stream
);
2315 goto error_stream_unlock
;
2319 * The return value is not important here. This function will output an
2322 (void) release_ust_app_stream(-1, &stream
);
2324 ua_chan
->is_sent
= 1;
2326 error_stream_unlock
:
2327 pthread_mutex_unlock(®_chan
->stream_list_lock
);
2333 * Create and send to the application the created buffers with per UID buffers.
2335 * Return 0 on success else a negative value.
2337 static int create_channel_per_uid(struct ust_app
*app
,
2338 struct ltt_ust_session
*usess
, struct ust_app_session
*ua_sess
,
2339 struct ust_app_channel
*ua_chan
)
2342 struct buffer_reg_uid
*reg_uid
;
2343 struct buffer_reg_channel
*reg_chan
;
2350 DBG("UST app creating channel %s with per UID buffers", ua_chan
->name
);
2352 reg_uid
= buffer_reg_uid_find(usess
->id
, app
->bits_per_long
, app
->uid
);
2354 * The session creation handles the creation of this global registry
2355 * object. If none can be find, there is a code flow problem or a
2360 reg_chan
= buffer_reg_channel_find(ua_chan
->tracing_channel_id
,
2363 /* Create the buffer registry channel object. */
2364 ret
= create_buffer_reg_channel(reg_uid
->registry
, ua_chan
, ®_chan
);
2371 * Create the buffers on the consumer side. This call populates the
2372 * ust app channel object with all streams and data object.
2374 ret
= do_consumer_create_channel(usess
, ua_sess
, ua_chan
,
2375 app
->bits_per_long
, reg_uid
->registry
->reg
.ust
);
2378 * Let's remove the previously created buffer registry channel so
2379 * it's not visible anymore in the session registry.
2381 ust_registry_channel_del_free(reg_uid
->registry
->reg
.ust
,
2382 ua_chan
->tracing_channel_id
);
2383 buffer_reg_channel_remove(reg_uid
->registry
, reg_chan
);
2384 buffer_reg_channel_destroy(reg_chan
, LTTNG_DOMAIN_UST
);
2389 * Setup the streams and add it to the session registry.
2391 ret
= setup_buffer_reg_channel(reg_uid
->registry
, ua_chan
, reg_chan
);
2398 /* Send buffers to the application. */
2399 ret
= send_channel_uid_to_ust(reg_chan
, app
, ua_sess
, ua_chan
);
2409 * Create and send to the application the created buffers with per PID buffers.
2411 * Return 0 on success else a negative value.
2413 static int create_channel_per_pid(struct ust_app
*app
,
2414 struct ltt_ust_session
*usess
, struct ust_app_session
*ua_sess
,
2415 struct ust_app_channel
*ua_chan
)
2418 struct ust_registry_session
*registry
;
2425 DBG("UST app creating channel %s with per PID buffers", ua_chan
->name
);
2429 registry
= get_session_registry(ua_sess
);
2432 /* Create and add a new channel registry to session. */
2433 ret
= ust_registry_channel_add(registry
, ua_chan
->key
);
2438 /* Create and get channel on the consumer side. */
2439 ret
= do_consumer_create_channel(usess
, ua_sess
, ua_chan
,
2440 app
->bits_per_long
, registry
);
2445 ret
= send_channel_pid_to_ust(app
, ua_sess
, ua_chan
);
2456 * From an already allocated ust app channel, create the channel buffers if
2457 * need and send it to the application. This MUST be called with a RCU read
2458 * side lock acquired.
2460 * Return 0 on success or else a negative value.
2462 static int do_create_channel(struct ust_app
*app
,
2463 struct ltt_ust_session
*usess
, struct ust_app_session
*ua_sess
,
2464 struct ust_app_channel
*ua_chan
)
2473 /* Handle buffer type before sending the channel to the application. */
2474 switch (usess
->buffer_type
) {
2475 case LTTNG_BUFFER_PER_UID
:
2477 ret
= create_channel_per_uid(app
, usess
, ua_sess
, ua_chan
);
2483 case LTTNG_BUFFER_PER_PID
:
2485 ret
= create_channel_per_pid(app
, usess
, ua_sess
, ua_chan
);
2497 /* Initialize ust objd object using the received handle and add it. */
2498 lttng_ht_node_init_ulong(&ua_chan
->ust_objd_node
, ua_chan
->handle
);
2499 lttng_ht_add_unique_ulong(app
->ust_objd
, &ua_chan
->ust_objd_node
);
2501 /* If channel is not enabled, disable it on the tracer */
2502 if (!ua_chan
->enabled
) {
2503 ret
= disable_ust_channel(app
, ua_sess
, ua_chan
);
2514 * Create UST app channel and create it on the tracer. Set ua_chanp of the
2515 * newly created channel if not NULL.
2517 * Called with UST app session lock and RCU read-side lock held.
2519 * Return 0 on success or else a negative value.
2521 static int create_ust_app_channel(struct ust_app_session
*ua_sess
,
2522 struct ltt_ust_channel
*uchan
, struct ust_app
*app
,
2523 enum lttng_ust_chan_type type
, struct ltt_ust_session
*usess
,
2524 struct ust_app_channel
**ua_chanp
)
2527 struct lttng_ht_iter iter
;
2528 struct lttng_ht_node_str
*ua_chan_node
;
2529 struct ust_app_channel
*ua_chan
;
2531 /* Lookup channel in the ust app session */
2532 lttng_ht_lookup(ua_sess
->channels
, (void *)uchan
->name
, &iter
);
2533 ua_chan_node
= lttng_ht_iter_get_node_str(&iter
);
2534 if (ua_chan_node
!= NULL
) {
2535 ua_chan
= caa_container_of(ua_chan_node
, struct ust_app_channel
, node
);
2539 ua_chan
= alloc_ust_app_channel(uchan
->name
, ua_sess
, &uchan
->attr
);
2540 if (ua_chan
== NULL
) {
2541 /* Only malloc can fail here */
2545 shadow_copy_channel(ua_chan
, uchan
);
2547 /* Set channel type. */
2548 ua_chan
->attr
.type
= type
;
2550 ret
= do_create_channel(app
, usess
, ua_sess
, ua_chan
);
2555 DBG2("UST app create channel %s for PID %d completed", ua_chan
->name
,
2558 /* Only add the channel if successful on the tracer side. */
2559 lttng_ht_add_unique_str(ua_sess
->channels
, &ua_chan
->node
);
2563 *ua_chanp
= ua_chan
;
2566 /* Everything went well. */
2570 delete_ust_app_channel(ua_chan
->is_sent
? app
->sock
: -1, ua_chan
, app
);
2576 * Create UST app event and create it on the tracer side.
2578 * Called with ust app session mutex held.
2581 int create_ust_app_event(struct ust_app_session
*ua_sess
,
2582 struct ust_app_channel
*ua_chan
, struct ltt_ust_event
*uevent
,
2583 struct ust_app
*app
)
2586 struct ust_app_event
*ua_event
;
2588 /* Get event node */
2589 ua_event
= find_ust_app_event(ua_chan
->events
, uevent
->attr
.name
,
2590 uevent
->filter
, uevent
->attr
.loglevel
);
2591 if (ua_event
!= NULL
) {
2596 /* Does not exist so create one */
2597 ua_event
= alloc_ust_app_event(uevent
->attr
.name
, &uevent
->attr
);
2598 if (ua_event
== NULL
) {
2599 /* Only malloc can failed so something is really wrong */
2603 shadow_copy_event(ua_event
, uevent
);
2605 /* Create it on the tracer side */
2606 ret
= create_ust_event(app
, ua_sess
, ua_chan
, ua_event
);
2608 /* Not found previously means that it does not exist on the tracer */
2609 assert(ret
!= -LTTNG_UST_ERR_EXIST
);
2613 add_unique_ust_app_event(ua_chan
, ua_event
);
2615 DBG2("UST app create event %s for PID %d completed", ua_event
->name
,
2622 /* Valid. Calling here is already in a read side lock */
2623 delete_ust_app_event(-1, ua_event
);
2628 * Create UST metadata and open it on the tracer side.
2630 * Called with UST app session lock held and RCU read side lock.
2632 static int create_ust_app_metadata(struct ust_app_session
*ua_sess
,
2633 struct ust_app
*app
, struct consumer_output
*consumer
,
2634 struct ustctl_consumer_channel_attr
*attr
)
2637 struct ust_app_channel
*metadata
;
2638 struct consumer_socket
*socket
;
2639 struct ust_registry_session
*registry
;
2645 registry
= get_session_registry(ua_sess
);
2648 /* Metadata already exists for this registry or it was closed previously */
2649 if (registry
->metadata_key
|| registry
->metadata_closed
) {
2654 /* Allocate UST metadata */
2655 metadata
= alloc_ust_app_channel(DEFAULT_METADATA_NAME
, ua_sess
, NULL
);
2657 /* malloc() failed */
2663 /* Set default attributes for metadata. */
2664 metadata
->attr
.overwrite
= DEFAULT_CHANNEL_OVERWRITE
;
2665 metadata
->attr
.subbuf_size
= default_get_metadata_subbuf_size();
2666 metadata
->attr
.num_subbuf
= DEFAULT_METADATA_SUBBUF_NUM
;
2667 metadata
->attr
.switch_timer_interval
= DEFAULT_METADATA_SWITCH_TIMER
;
2668 metadata
->attr
.read_timer_interval
= DEFAULT_METADATA_READ_TIMER
;
2669 metadata
->attr
.output
= LTTNG_UST_MMAP
;
2670 metadata
->attr
.type
= LTTNG_UST_CHAN_METADATA
;
2672 memcpy(&metadata
->attr
, attr
, sizeof(metadata
->attr
));
2673 metadata
->attr
.output
= LTTNG_UST_MMAP
;
2674 metadata
->attr
.type
= LTTNG_UST_CHAN_METADATA
;
2677 /* Need one fd for the channel. */
2678 ret
= lttng_fd_get(LTTNG_FD_APPS
, 1);
2680 ERR("Exhausted number of available FD upon create metadata");
2684 /* Get the right consumer socket for the application. */
2685 socket
= consumer_find_socket_by_bitness(app
->bits_per_long
, consumer
);
2688 goto error_consumer
;
2692 * Keep metadata key so we can identify it on the consumer side. Assign it
2693 * to the registry *before* we ask the consumer so we avoid the race of the
2694 * consumer requesting the metadata and the ask_channel call on our side
2695 * did not returned yet.
2697 registry
->metadata_key
= metadata
->key
;
2700 * Ask the metadata channel creation to the consumer. The metadata object
2701 * will be created by the consumer and kept their. However, the stream is
2702 * never added or monitored until we do a first push metadata to the
2705 ret
= ust_consumer_ask_channel(ua_sess
, metadata
, consumer
, socket
,
2708 /* Nullify the metadata key so we don't try to close it later on. */
2709 registry
->metadata_key
= 0;
2710 goto error_consumer
;
2714 * The setup command will make the metadata stream be sent to the relayd,
2715 * if applicable, and the thread managing the metadatas. This is important
2716 * because after this point, if an error occurs, the only way the stream
2717 * can be deleted is to be monitored in the consumer.
2719 ret
= consumer_setup_metadata(socket
, metadata
->key
);
2721 /* Nullify the metadata key so we don't try to close it later on. */
2722 registry
->metadata_key
= 0;
2723 goto error_consumer
;
2726 DBG2("UST metadata with key %" PRIu64
" created for app pid %d",
2727 metadata
->key
, app
->pid
);
2730 lttng_fd_put(LTTNG_FD_APPS
, 1);
2731 delete_ust_app_channel(-1, metadata
, app
);
2737 * Return pointer to traceable apps list.
2739 struct lttng_ht
*ust_app_get_ht(void)
2745 * Return ust app pointer or NULL if not found. RCU read side lock MUST be
2746 * acquired before calling this function.
2748 struct ust_app
*ust_app_find_by_pid(pid_t pid
)
2750 struct ust_app
*app
= NULL
;
2751 struct lttng_ht_node_ulong
*node
;
2752 struct lttng_ht_iter iter
;
2754 lttng_ht_lookup(ust_app_ht
, (void *)((unsigned long) pid
), &iter
);
2755 node
= lttng_ht_iter_get_node_ulong(&iter
);
2757 DBG2("UST app no found with pid %d", pid
);
2761 DBG2("Found UST app by pid %d", pid
);
2763 app
= caa_container_of(node
, struct ust_app
, pid_n
);
2770 * Allocate and init an UST app object using the registration information and
2771 * the command socket. This is called when the command socket connects to the
2774 * The object is returned on success or else NULL.
2776 struct ust_app
*ust_app_create(struct ust_register_msg
*msg
, int sock
)
2778 struct ust_app
*lta
= NULL
;
2783 DBG3("UST app creating application for socket %d", sock
);
2785 if ((msg
->bits_per_long
== 64 &&
2786 (uatomic_read(&ust_consumerd64_fd
) == -EINVAL
))
2787 || (msg
->bits_per_long
== 32 &&
2788 (uatomic_read(&ust_consumerd32_fd
) == -EINVAL
))) {
2789 ERR("Registration failed: application \"%s\" (pid: %d) has "
2790 "%d-bit long, but no consumerd for this size is available.\n",
2791 msg
->name
, msg
->pid
, msg
->bits_per_long
);
2795 lta
= zmalloc(sizeof(struct ust_app
));
2801 lta
->ppid
= msg
->ppid
;
2802 lta
->uid
= msg
->uid
;
2803 lta
->gid
= msg
->gid
;
2805 lta
->bits_per_long
= msg
->bits_per_long
;
2806 lta
->uint8_t_alignment
= msg
->uint8_t_alignment
;
2807 lta
->uint16_t_alignment
= msg
->uint16_t_alignment
;
2808 lta
->uint32_t_alignment
= msg
->uint32_t_alignment
;
2809 lta
->uint64_t_alignment
= msg
->uint64_t_alignment
;
2810 lta
->long_alignment
= msg
->long_alignment
;
2811 lta
->byte_order
= msg
->byte_order
;
2813 lta
->v_major
= msg
->major
;
2814 lta
->v_minor
= msg
->minor
;
2815 lta
->sessions
= lttng_ht_new(0, LTTNG_HT_TYPE_U64
);
2816 lta
->ust_objd
= lttng_ht_new(0, LTTNG_HT_TYPE_ULONG
);
2817 lta
->notify_sock
= -1;
2819 /* Copy name and make sure it's NULL terminated. */
2820 strncpy(lta
->name
, msg
->name
, sizeof(lta
->name
));
2821 lta
->name
[UST_APP_PROCNAME_LEN
] = '\0';
2824 * Before this can be called, when receiving the registration information,
2825 * the application compatibility is checked. So, at this point, the
2826 * application can work with this session daemon.
2828 lta
->compatible
= 1;
2830 lta
->pid
= msg
->pid
;
2831 lttng_ht_node_init_ulong(<a
->pid_n
, (unsigned long) lta
->pid
);
2833 lttng_ht_node_init_ulong(<a
->sock_n
, (unsigned long) lta
->sock
);
2835 CDS_INIT_LIST_HEAD(<a
->teardown_head
);
2842 * For a given application object, add it to every hash table.
2844 void ust_app_add(struct ust_app
*app
)
2847 assert(app
->notify_sock
>= 0);
2852 * On a re-registration, we want to kick out the previous registration of
2855 lttng_ht_add_replace_ulong(ust_app_ht
, &app
->pid_n
);
2858 * The socket _should_ be unique until _we_ call close. So, a add_unique
2859 * for the ust_app_ht_by_sock is used which asserts fail if the entry was
2860 * already in the table.
2862 lttng_ht_add_unique_ulong(ust_app_ht_by_sock
, &app
->sock_n
);
2864 /* Add application to the notify socket hash table. */
2865 lttng_ht_node_init_ulong(&app
->notify_sock_n
, app
->notify_sock
);
2866 lttng_ht_add_unique_ulong(ust_app_ht_by_notify_sock
, &app
->notify_sock_n
);
2868 DBG("App registered with pid:%d ppid:%d uid:%d gid:%d sock:%d name:%s "
2869 "notify_sock:%d (version %d.%d)", app
->pid
, app
->ppid
, app
->uid
,
2870 app
->gid
, app
->sock
, app
->name
, app
->notify_sock
, app
->v_major
,
2877 * Set the application version into the object.
2879 * Return 0 on success else a negative value either an errno code or a
2880 * LTTng-UST error code.
2882 int ust_app_version(struct ust_app
*app
)
2888 ret
= ustctl_tracer_version(app
->sock
, &app
->version
);
2890 if (ret
!= -LTTNG_UST_ERR_EXITING
&& ret
!= -EPIPE
) {
2891 ERR("UST app %d verson failed with ret %d", app
->sock
, ret
);
2893 DBG3("UST app %d verion failed. Application is dead", app
->sock
);
2901 * Unregister app by removing it from the global traceable app list and freeing
2904 * The socket is already closed at this point so no close to sock.
2906 void ust_app_unregister(int sock
)
2908 struct ust_app
*lta
;
2909 struct lttng_ht_node_ulong
*node
;
2910 struct lttng_ht_iter iter
;
2911 struct ust_app_session
*ua_sess
;
2916 /* Get the node reference for a call_rcu */
2917 lttng_ht_lookup(ust_app_ht_by_sock
, (void *)((unsigned long) sock
), &iter
);
2918 node
= lttng_ht_iter_get_node_ulong(&iter
);
2921 lta
= caa_container_of(node
, struct ust_app
, sock_n
);
2922 DBG("PID %d unregistering with sock %d", lta
->pid
, sock
);
2924 /* Remove application from PID hash table */
2925 ret
= lttng_ht_del(ust_app_ht_by_sock
, &iter
);
2929 * Remove application from notify hash table. The thread handling the
2930 * notify socket could have deleted the node so ignore on error because
2931 * either way it's valid. The close of that socket is handled by the other
2934 iter
.iter
.node
= <a
->notify_sock_n
.node
;
2935 (void) lttng_ht_del(ust_app_ht_by_notify_sock
, &iter
);
2938 * Ignore return value since the node might have been removed before by an
2939 * add replace during app registration because the PID can be reassigned by
2942 iter
.iter
.node
= <a
->pid_n
.node
;
2943 ret
= lttng_ht_del(ust_app_ht
, &iter
);
2945 DBG3("Unregister app by PID %d failed. This can happen on pid reuse",
2949 /* Remove sessions so they are not visible during deletion.*/
2950 cds_lfht_for_each_entry(lta
->sessions
->ht
, &iter
.iter
, ua_sess
,
2952 struct ust_registry_session
*registry
;
2954 ret
= lttng_ht_del(lta
->sessions
, &iter
);
2956 /* The session was already removed so scheduled for teardown. */
2961 * Add session to list for teardown. This is safe since at this point we
2962 * are the only one using this list.
2964 pthread_mutex_lock(&ua_sess
->lock
);
2967 * Normally, this is done in the delete session process which is
2968 * executed in the call rcu below. However, upon registration we can't
2969 * afford to wait for the grace period before pushing data or else the
2970 * data pending feature can race between the unregistration and stop
2971 * command where the data pending command is sent *before* the grace
2974 * The close metadata below nullifies the metadata pointer in the
2975 * session so the delete session will NOT push/close a second time.
2977 registry
= get_session_registry(ua_sess
);
2978 if (registry
&& !registry
->metadata_closed
) {
2979 /* Push metadata for application before freeing the application. */
2980 (void) push_metadata(registry
, ua_sess
->consumer
);
2983 * Don't ask to close metadata for global per UID buffers. Close
2984 * metadata only on destroy trace session in this case. Also, the
2985 * previous push metadata could have flag the metadata registry to
2986 * close so don't send a close command if closed.
2988 if (ua_sess
->buffer_type
!= LTTNG_BUFFER_PER_UID
&&
2989 !registry
->metadata_closed
) {
2990 /* And ask to close it for this session registry. */
2991 (void) close_metadata(registry
, ua_sess
->consumer
);
2995 cds_list_add(&ua_sess
->teardown_node
, <a
->teardown_head
);
2996 pthread_mutex_unlock(&ua_sess
->lock
);
3000 call_rcu(<a
->pid_n
.head
, delete_ust_app_rcu
);
3007 * Return traceable_app_count
3009 unsigned long ust_app_list_count(void)
3011 unsigned long count
;
3014 count
= lttng_ht_get_count(ust_app_ht
);
3021 * Fill events array with all events name of all registered apps.
3023 int ust_app_list_events(struct lttng_event
**events
)
3026 size_t nbmem
, count
= 0;
3027 struct lttng_ht_iter iter
;
3028 struct ust_app
*app
;
3029 struct lttng_event
*tmp_event
;
3031 nbmem
= UST_APP_EVENT_LIST_SIZE
;
3032 tmp_event
= zmalloc(nbmem
* sizeof(struct lttng_event
));
3033 if (tmp_event
== NULL
) {
3034 PERROR("zmalloc ust app events");
3041 cds_lfht_for_each_entry(ust_app_ht
->ht
, &iter
.iter
, app
, pid_n
.node
) {
3042 struct lttng_ust_tracepoint_iter uiter
;
3044 health_code_update();
3046 if (!app
->compatible
) {
3048 * TODO: In time, we should notice the caller of this error by
3049 * telling him that this is a version error.
3053 handle
= ustctl_tracepoint_list(app
->sock
);
3055 if (handle
!= -EPIPE
&& handle
!= -LTTNG_UST_ERR_EXITING
) {
3056 ERR("UST app list events getting handle failed for app pid %d",
3062 while ((ret
= ustctl_tracepoint_list_get(app
->sock
, handle
,
3063 &uiter
)) != -LTTNG_UST_ERR_NOENT
) {
3064 /* Handle ustctl error. */
3067 if (ret
!= -LTTNG_UST_ERR_EXITING
&& ret
!= -EPIPE
) {
3068 ERR("UST app tp list get failed for app %d with ret %d",
3071 DBG3("UST app tp list get failed. Application is dead");
3073 * This is normal behavior, an application can die during the
3074 * creation process. Don't report an error so the execution can
3075 * continue normally. Continue normal execution.
3082 health_code_update();
3083 if (count
>= nbmem
) {
3084 /* In case the realloc fails, we free the memory */
3087 DBG2("Reallocating event list from %zu to %zu entries", nbmem
,
3090 ptr
= realloc(tmp_event
, nbmem
* sizeof(struct lttng_event
));
3092 PERROR("realloc ust app events");
3099 memcpy(tmp_event
[count
].name
, uiter
.name
, LTTNG_UST_SYM_NAME_LEN
);
3100 tmp_event
[count
].loglevel
= uiter
.loglevel
;
3101 tmp_event
[count
].type
= (enum lttng_event_type
) LTTNG_UST_TRACEPOINT
;
3102 tmp_event
[count
].pid
= app
->pid
;
3103 tmp_event
[count
].enabled
= -1;
3109 *events
= tmp_event
;
3111 DBG2("UST app list events done (%zu events)", count
);
3116 health_code_update();
3121 * Fill events array with all events name of all registered apps.
3123 int ust_app_list_event_fields(struct lttng_event_field
**fields
)
3126 size_t nbmem
, count
= 0;
3127 struct lttng_ht_iter iter
;
3128 struct ust_app
*app
;
3129 struct lttng_event_field
*tmp_event
;
3131 nbmem
= UST_APP_EVENT_LIST_SIZE
;
3132 tmp_event
= zmalloc(nbmem
* sizeof(struct lttng_event_field
));
3133 if (tmp_event
== NULL
) {
3134 PERROR("zmalloc ust app event fields");
3141 cds_lfht_for_each_entry(ust_app_ht
->ht
, &iter
.iter
, app
, pid_n
.node
) {
3142 struct lttng_ust_field_iter uiter
;
3144 health_code_update();
3146 if (!app
->compatible
) {
3148 * TODO: In time, we should notice the caller of this error by
3149 * telling him that this is a version error.
3153 handle
= ustctl_tracepoint_field_list(app
->sock
);
3155 if (handle
!= -EPIPE
&& handle
!= -LTTNG_UST_ERR_EXITING
) {
3156 ERR("UST app list field getting handle failed for app pid %d",
3162 while ((ret
= ustctl_tracepoint_field_list_get(app
->sock
, handle
,
3163 &uiter
)) != -LTTNG_UST_ERR_NOENT
) {
3164 /* Handle ustctl error. */
3167 if (ret
!= -LTTNG_UST_ERR_EXITING
&& ret
!= -EPIPE
) {
3168 ERR("UST app tp list field failed for app %d with ret %d",
3171 DBG3("UST app tp list field failed. Application is dead");
3173 * This is normal behavior, an application can die during the
3174 * creation process. Don't report an error so the execution can
3175 * continue normally.
3182 health_code_update();
3183 if (count
>= nbmem
) {
3184 /* In case the realloc fails, we free the memory */
3187 DBG2("Reallocating event field list from %zu to %zu entries", nbmem
,
3190 ptr
= realloc(tmp_event
, nbmem
* sizeof(struct lttng_event_field
));
3192 PERROR("realloc ust app event fields");
3200 memcpy(tmp_event
[count
].field_name
, uiter
.field_name
, LTTNG_UST_SYM_NAME_LEN
);
3201 /* Mapping between these enums matches 1 to 1. */
3202 tmp_event
[count
].type
= (enum lttng_event_field_type
) uiter
.type
;
3203 tmp_event
[count
].nowrite
= uiter
.nowrite
;
3205 memcpy(tmp_event
[count
].event
.name
, uiter
.event_name
, LTTNG_UST_SYM_NAME_LEN
);
3206 tmp_event
[count
].event
.loglevel
= uiter
.loglevel
;
3207 tmp_event
[count
].event
.type
= LTTNG_EVENT_TRACEPOINT
;
3208 tmp_event
[count
].event
.pid
= app
->pid
;
3209 tmp_event
[count
].event
.enabled
= -1;
3215 *fields
= tmp_event
;
3217 DBG2("UST app list event fields done (%zu events)", count
);
3222 health_code_update();
3227 * Free and clean all traceable apps of the global list.
3229 * Should _NOT_ be called with RCU read-side lock held.
3231 void ust_app_clean_list(void)
3234 struct ust_app
*app
;
3235 struct lttng_ht_iter iter
;
3237 DBG2("UST app cleaning registered apps hash table");
3241 cds_lfht_for_each_entry(ust_app_ht
->ht
, &iter
.iter
, app
, pid_n
.node
) {
3242 ret
= lttng_ht_del(ust_app_ht
, &iter
);
3244 call_rcu(&app
->pid_n
.head
, delete_ust_app_rcu
);
3247 /* Cleanup socket hash table */
3248 cds_lfht_for_each_entry(ust_app_ht_by_sock
->ht
, &iter
.iter
, app
,
3250 ret
= lttng_ht_del(ust_app_ht_by_sock
, &iter
);
3254 /* Cleanup notify socket hash table */
3255 cds_lfht_for_each_entry(ust_app_ht_by_notify_sock
->ht
, &iter
.iter
, app
,
3256 notify_sock_n
.node
) {
3257 ret
= lttng_ht_del(ust_app_ht_by_notify_sock
, &iter
);
3262 /* Destroy is done only when the ht is empty */
3263 ht_cleanup_push(ust_app_ht
);
3264 ht_cleanup_push(ust_app_ht_by_sock
);
3265 ht_cleanup_push(ust_app_ht_by_notify_sock
);
3269 * Init UST app hash table.
3271 void ust_app_ht_alloc(void)
3273 ust_app_ht
= lttng_ht_new(0, LTTNG_HT_TYPE_ULONG
);
3274 ust_app_ht_by_sock
= lttng_ht_new(0, LTTNG_HT_TYPE_ULONG
);
3275 ust_app_ht_by_notify_sock
= lttng_ht_new(0, LTTNG_HT_TYPE_ULONG
);
3279 * For a specific UST session, disable the channel for all registered apps.
3281 int ust_app_disable_channel_glb(struct ltt_ust_session
*usess
,
3282 struct ltt_ust_channel
*uchan
)
3285 struct lttng_ht_iter iter
;
3286 struct lttng_ht_node_str
*ua_chan_node
;
3287 struct ust_app
*app
;
3288 struct ust_app_session
*ua_sess
;
3289 struct ust_app_channel
*ua_chan
;
3291 if (usess
== NULL
|| uchan
== NULL
) {
3292 ERR("Disabling UST global channel with NULL values");
3297 DBG2("UST app disabling channel %s from global domain for session id %" PRIu64
,
3298 uchan
->name
, usess
->id
);
3302 /* For every registered applications */
3303 cds_lfht_for_each_entry(ust_app_ht
->ht
, &iter
.iter
, app
, pid_n
.node
) {
3304 struct lttng_ht_iter uiter
;
3305 if (!app
->compatible
) {
3307 * TODO: In time, we should notice the caller of this error by
3308 * telling him that this is a version error.
3312 ua_sess
= lookup_session_by_app(usess
, app
);
3313 if (ua_sess
== NULL
) {
3318 lttng_ht_lookup(ua_sess
->channels
, (void *)uchan
->name
, &uiter
);
3319 ua_chan_node
= lttng_ht_iter_get_node_str(&uiter
);
3320 /* If the session if found for the app, the channel must be there */
3321 assert(ua_chan_node
);
3323 ua_chan
= caa_container_of(ua_chan_node
, struct ust_app_channel
, node
);
3324 /* The channel must not be already disabled */
3325 assert(ua_chan
->enabled
== 1);
3327 /* Disable channel onto application */
3328 ret
= disable_ust_app_channel(ua_sess
, ua_chan
, app
);
3330 /* XXX: We might want to report this error at some point... */
3342 * For a specific UST session, enable the channel for all registered apps.
3344 int ust_app_enable_channel_glb(struct ltt_ust_session
*usess
,
3345 struct ltt_ust_channel
*uchan
)
3348 struct lttng_ht_iter iter
;
3349 struct ust_app
*app
;
3350 struct ust_app_session
*ua_sess
;
3352 if (usess
== NULL
|| uchan
== NULL
) {
3353 ERR("Adding UST global channel to NULL values");
3358 DBG2("UST app enabling channel %s to global domain for session id %" PRIu64
,
3359 uchan
->name
, usess
->id
);
3363 /* For every registered applications */
3364 cds_lfht_for_each_entry(ust_app_ht
->ht
, &iter
.iter
, app
, pid_n
.node
) {
3365 if (!app
->compatible
) {
3367 * TODO: In time, we should notice the caller of this error by
3368 * telling him that this is a version error.
3372 ua_sess
= lookup_session_by_app(usess
, app
);
3373 if (ua_sess
== NULL
) {
3377 /* Enable channel onto application */
3378 ret
= enable_ust_app_channel(ua_sess
, uchan
, app
);
3380 /* XXX: We might want to report this error at some point... */
3392 * Disable an event in a channel and for a specific session.
3394 int ust_app_disable_event_glb(struct ltt_ust_session
*usess
,
3395 struct ltt_ust_channel
*uchan
, struct ltt_ust_event
*uevent
)
3398 struct lttng_ht_iter iter
, uiter
;
3399 struct lttng_ht_node_str
*ua_chan_node
, *ua_event_node
;
3400 struct ust_app
*app
;
3401 struct ust_app_session
*ua_sess
;
3402 struct ust_app_channel
*ua_chan
;
3403 struct ust_app_event
*ua_event
;
3405 DBG("UST app disabling event %s for all apps in channel "
3406 "%s for session id %" PRIu64
,
3407 uevent
->attr
.name
, uchan
->name
, usess
->id
);
3411 /* For all registered applications */
3412 cds_lfht_for_each_entry(ust_app_ht
->ht
, &iter
.iter
, app
, pid_n
.node
) {
3413 if (!app
->compatible
) {
3415 * TODO: In time, we should notice the caller of this error by
3416 * telling him that this is a version error.
3420 ua_sess
= lookup_session_by_app(usess
, app
);
3421 if (ua_sess
== NULL
) {
3426 /* Lookup channel in the ust app session */
3427 lttng_ht_lookup(ua_sess
->channels
, (void *)uchan
->name
, &uiter
);
3428 ua_chan_node
= lttng_ht_iter_get_node_str(&uiter
);
3429 if (ua_chan_node
== NULL
) {
3430 DBG2("Channel %s not found in session id %" PRIu64
" for app pid %d."
3431 "Skipping", uchan
->name
, usess
->id
, app
->pid
);
3434 ua_chan
= caa_container_of(ua_chan_node
, struct ust_app_channel
, node
);
3436 lttng_ht_lookup(ua_chan
->events
, (void *)uevent
->attr
.name
, &uiter
);
3437 ua_event_node
= lttng_ht_iter_get_node_str(&uiter
);
3438 if (ua_event_node
== NULL
) {
3439 DBG2("Event %s not found in channel %s for app pid %d."
3440 "Skipping", uevent
->attr
.name
, uchan
->name
, app
->pid
);
3443 ua_event
= caa_container_of(ua_event_node
, struct ust_app_event
, node
);
3445 ret
= disable_ust_app_event(ua_sess
, ua_event
, app
);
3447 /* XXX: Report error someday... */
3458 * For a specific UST session and UST channel, the event for all
3461 int ust_app_disable_all_event_glb(struct ltt_ust_session
*usess
,
3462 struct ltt_ust_channel
*uchan
)
3465 struct lttng_ht_iter iter
, uiter
;
3466 struct lttng_ht_node_str
*ua_chan_node
;
3467 struct ust_app
*app
;
3468 struct ust_app_session
*ua_sess
;
3469 struct ust_app_channel
*ua_chan
;
3470 struct ust_app_event
*ua_event
;
3472 DBG("UST app disabling all event for all apps in channel "
3473 "%s for session id %" PRIu64
, uchan
->name
, usess
->id
);
3477 /* For all registered applications */
3478 cds_lfht_for_each_entry(ust_app_ht
->ht
, &iter
.iter
, app
, pid_n
.node
) {
3479 if (!app
->compatible
) {
3481 * TODO: In time, we should notice the caller of this error by
3482 * telling him that this is a version error.
3486 ua_sess
= lookup_session_by_app(usess
, app
);
3488 /* The application has problem or is probably dead. */
3492 /* Lookup channel in the ust app session */
3493 lttng_ht_lookup(ua_sess
->channels
, (void *)uchan
->name
, &uiter
);
3494 ua_chan_node
= lttng_ht_iter_get_node_str(&uiter
);
3495 /* If the channel is not found, there is a code flow error */
3496 assert(ua_chan_node
);
3498 ua_chan
= caa_container_of(ua_chan_node
, struct ust_app_channel
, node
);
3500 /* Disable each events of channel */
3501 cds_lfht_for_each_entry(ua_chan
->events
->ht
, &uiter
.iter
, ua_event
,
3503 ret
= disable_ust_app_event(ua_sess
, ua_event
, app
);
3505 /* XXX: Report error someday... */
3517 * For a specific UST session, create the channel for all registered apps.
3519 int ust_app_create_channel_glb(struct ltt_ust_session
*usess
,
3520 struct ltt_ust_channel
*uchan
)
3522 int ret
= 0, created
;
3523 struct lttng_ht_iter iter
;
3524 struct ust_app
*app
;
3525 struct ust_app_session
*ua_sess
= NULL
;
3527 /* Very wrong code flow */
3531 DBG2("UST app adding channel %s to UST domain for session id %" PRIu64
,
3532 uchan
->name
, usess
->id
);
3536 /* For every registered applications */
3537 cds_lfht_for_each_entry(ust_app_ht
->ht
, &iter
.iter
, app
, pid_n
.node
) {
3538 if (!app
->compatible
) {
3540 * TODO: In time, we should notice the caller of this error by
3541 * telling him that this is a version error.
3546 * Create session on the tracer side and add it to app session HT. Note
3547 * that if session exist, it will simply return a pointer to the ust
3550 ret
= create_ust_app_session(usess
, app
, &ua_sess
, &created
);
3555 * The application's socket is not valid. Either a bad socket
3556 * or a timeout on it. We can't inform the caller that for a
3557 * specific app, the session failed so lets continue here.
3562 goto error_rcu_unlock
;
3567 pthread_mutex_lock(&ua_sess
->lock
);
3568 if (!strncmp(uchan
->name
, DEFAULT_METADATA_NAME
,
3569 sizeof(uchan
->name
))) {
3570 struct ustctl_consumer_channel_attr attr
;
3571 copy_channel_attr_to_ustctl(&attr
, &uchan
->attr
);
3572 ret
= create_ust_app_metadata(ua_sess
, app
, usess
->consumer
,
3575 /* Create channel onto application. We don't need the chan ref. */
3576 ret
= create_ust_app_channel(ua_sess
, uchan
, app
,
3577 LTTNG_UST_CHAN_PER_CPU
, usess
, NULL
);
3579 pthread_mutex_unlock(&ua_sess
->lock
);
3581 if (ret
== -ENOMEM
) {
3582 /* No more memory is a fatal error. Stop right now. */
3583 goto error_rcu_unlock
;
3585 /* Cleanup the created session if it's the case. */
3587 destroy_app_session(app
, ua_sess
);
3598 * Enable event for a specific session and channel on the tracer.
3600 int ust_app_enable_event_glb(struct ltt_ust_session
*usess
,
3601 struct ltt_ust_channel
*uchan
, struct ltt_ust_event
*uevent
)
3604 struct lttng_ht_iter iter
, uiter
;
3605 struct lttng_ht_node_str
*ua_chan_node
;
3606 struct ust_app
*app
;
3607 struct ust_app_session
*ua_sess
;
3608 struct ust_app_channel
*ua_chan
;
3609 struct ust_app_event
*ua_event
;
3611 DBG("UST app enabling event %s for all apps for session id %" PRIu64
,
3612 uevent
->attr
.name
, usess
->id
);
3615 * NOTE: At this point, this function is called only if the session and
3616 * channel passed are already created for all apps. and enabled on the
3622 /* For all registered applications */
3623 cds_lfht_for_each_entry(ust_app_ht
->ht
, &iter
.iter
, app
, pid_n
.node
) {
3624 if (!app
->compatible
) {
3626 * TODO: In time, we should notice the caller of this error by
3627 * telling him that this is a version error.
3631 ua_sess
= lookup_session_by_app(usess
, app
);
3633 /* The application has problem or is probably dead. */
3637 pthread_mutex_lock(&ua_sess
->lock
);
3639 /* Lookup channel in the ust app session */
3640 lttng_ht_lookup(ua_sess
->channels
, (void *)uchan
->name
, &uiter
);
3641 ua_chan_node
= lttng_ht_iter_get_node_str(&uiter
);
3642 /* If the channel is not found, there is a code flow error */
3643 assert(ua_chan_node
);
3645 ua_chan
= caa_container_of(ua_chan_node
, struct ust_app_channel
, node
);
3647 /* Get event node */
3648 ua_event
= find_ust_app_event(ua_chan
->events
, uevent
->attr
.name
,
3649 uevent
->filter
, uevent
->attr
.loglevel
);
3650 if (ua_event
== NULL
) {
3651 DBG3("UST app enable event %s not found for app PID %d."
3652 "Skipping app", uevent
->attr
.name
, app
->pid
);
3656 ret
= enable_ust_app_event(ua_sess
, ua_event
, app
);
3658 pthread_mutex_unlock(&ua_sess
->lock
);
3662 pthread_mutex_unlock(&ua_sess
->lock
);
3671 * For a specific existing UST session and UST channel, creates the event for
3672 * all registered apps.
3674 int ust_app_create_event_glb(struct ltt_ust_session
*usess
,
3675 struct ltt_ust_channel
*uchan
, struct ltt_ust_event
*uevent
)
3678 struct lttng_ht_iter iter
, uiter
;
3679 struct lttng_ht_node_str
*ua_chan_node
;
3680 struct ust_app
*app
;
3681 struct ust_app_session
*ua_sess
;
3682 struct ust_app_channel
*ua_chan
;
3684 DBG("UST app creating event %s for all apps for session id %" PRIu64
,
3685 uevent
->attr
.name
, usess
->id
);
3689 /* For all registered applications */
3690 cds_lfht_for_each_entry(ust_app_ht
->ht
, &iter
.iter
, app
, pid_n
.node
) {
3691 if (!app
->compatible
) {
3693 * TODO: In time, we should notice the caller of this error by
3694 * telling him that this is a version error.
3698 ua_sess
= lookup_session_by_app(usess
, app
);
3700 /* The application has problem or is probably dead. */
3704 pthread_mutex_lock(&ua_sess
->lock
);
3705 /* Lookup channel in the ust app session */
3706 lttng_ht_lookup(ua_sess
->channels
, (void *)uchan
->name
, &uiter
);
3707 ua_chan_node
= lttng_ht_iter_get_node_str(&uiter
);
3708 /* If the channel is not found, there is a code flow error */
3709 assert(ua_chan_node
);
3711 ua_chan
= caa_container_of(ua_chan_node
, struct ust_app_channel
, node
);
3713 ret
= create_ust_app_event(ua_sess
, ua_chan
, uevent
, app
);
3714 pthread_mutex_unlock(&ua_sess
->lock
);
3716 if (ret
!= -LTTNG_UST_ERR_EXIST
) {
3717 /* Possible value at this point: -ENOMEM. If so, we stop! */
3720 DBG2("UST app event %s already exist on app PID %d",
3721 uevent
->attr
.name
, app
->pid
);
3732 * Start tracing for a specific UST session and app.
3735 int ust_app_start_trace(struct ltt_ust_session
*usess
, struct ust_app
*app
)
3738 struct ust_app_session
*ua_sess
;
3740 DBG("Starting tracing for ust app pid %d", app
->pid
);
3744 if (!app
->compatible
) {
3748 ua_sess
= lookup_session_by_app(usess
, app
);
3749 if (ua_sess
== NULL
) {
3750 /* The session is in teardown process. Ignore and continue. */
3754 pthread_mutex_lock(&ua_sess
->lock
);
3756 /* Upon restart, we skip the setup, already done */
3757 if (ua_sess
->started
) {
3761 /* Create directories if consumer is LOCAL and has a path defined. */
3762 if (usess
->consumer
->type
== CONSUMER_DST_LOCAL
&&
3763 strlen(usess
->consumer
->dst
.trace_path
) > 0) {
3764 ret
= run_as_mkdir_recursive(usess
->consumer
->dst
.trace_path
,
3765 S_IRWXU
| S_IRWXG
, ua_sess
->euid
, ua_sess
->egid
);
3767 if (ret
!= -EEXIST
) {
3768 ERR("Trace directory creation error");
3775 * Create the metadata for the application. This returns gracefully if a
3776 * metadata was already set for the session.
3778 ret
= create_ust_app_metadata(ua_sess
, app
, usess
->consumer
, NULL
);
3783 health_code_update();
3786 /* This start the UST tracing */
3787 ret
= ustctl_start_session(app
->sock
, ua_sess
->handle
);
3789 if (ret
!= -EPIPE
&& ret
!= -LTTNG_UST_ERR_EXITING
) {
3790 ERR("Error starting tracing for app pid: %d (ret: %d)",
3793 DBG("UST app start session failed. Application is dead.");
3795 * This is normal behavior, an application can die during the
3796 * creation process. Don't report an error so the execution can
3797 * continue normally.
3799 pthread_mutex_unlock(&ua_sess
->lock
);
3805 /* Indicate that the session has been started once */
3806 ua_sess
->started
= 1;
3808 pthread_mutex_unlock(&ua_sess
->lock
);
3810 health_code_update();
3812 /* Quiescent wait after starting trace */
3813 ret
= ustctl_wait_quiescent(app
->sock
);
3814 if (ret
< 0 && ret
!= -EPIPE
&& ret
!= -LTTNG_UST_ERR_EXITING
) {
3815 ERR("UST app wait quiescent failed for app pid %d ret %d",
3821 health_code_update();
3825 pthread_mutex_unlock(&ua_sess
->lock
);
3827 health_code_update();
3832 * Stop tracing for a specific UST session and app.
3835 int ust_app_stop_trace(struct ltt_ust_session
*usess
, struct ust_app
*app
)
3838 struct ust_app_session
*ua_sess
;
3839 struct ust_registry_session
*registry
;
3841 DBG("Stopping tracing for ust app pid %d", app
->pid
);
3845 if (!app
->compatible
) {
3846 goto end_no_session
;
3849 ua_sess
= lookup_session_by_app(usess
, app
);
3850 if (ua_sess
== NULL
) {
3851 goto end_no_session
;
3854 pthread_mutex_lock(&ua_sess
->lock
);
3857 * If started = 0, it means that stop trace has been called for a session
3858 * that was never started. It's possible since we can have a fail start
3859 * from either the application manager thread or the command thread. Simply
3860 * indicate that this is a stop error.
3862 if (!ua_sess
->started
) {
3863 goto error_rcu_unlock
;
3866 health_code_update();
3868 /* This inhibits UST tracing */
3869 ret
= ustctl_stop_session(app
->sock
, ua_sess
->handle
);
3871 if (ret
!= -EPIPE
&& ret
!= -LTTNG_UST_ERR_EXITING
) {
3872 ERR("Error stopping tracing for app pid: %d (ret: %d)",
3875 DBG("UST app stop session failed. Application is dead.");
3877 * This is normal behavior, an application can die during the
3878 * creation process. Don't report an error so the execution can
3879 * continue normally.
3883 goto error_rcu_unlock
;
3886 health_code_update();
3888 /* Quiescent wait after stopping trace */
3889 ret
= ustctl_wait_quiescent(app
->sock
);
3890 if (ret
< 0 && ret
!= -EPIPE
&& ret
!= -LTTNG_UST_ERR_EXITING
) {
3891 ERR("UST app wait quiescent failed for app pid %d ret %d",
3895 health_code_update();
3897 registry
= get_session_registry(ua_sess
);
3900 if (!registry
->metadata_closed
) {
3901 /* Push metadata for application before freeing the application. */
3902 (void) push_metadata(registry
, ua_sess
->consumer
);
3906 pthread_mutex_unlock(&ua_sess
->lock
);
3909 health_code_update();
3913 pthread_mutex_unlock(&ua_sess
->lock
);
3915 health_code_update();
3920 * Flush buffers for a specific UST session and app.
3923 int ust_app_flush_trace(struct ltt_ust_session
*usess
, struct ust_app
*app
)
3926 struct lttng_ht_iter iter
;
3927 struct ust_app_session
*ua_sess
;
3928 struct ust_app_channel
*ua_chan
;
3930 DBG("Flushing buffers for ust app pid %d", app
->pid
);
3934 if (!app
->compatible
) {
3935 goto end_no_session
;
3938 ua_sess
= lookup_session_by_app(usess
, app
);
3939 if (ua_sess
== NULL
) {
3940 goto end_no_session
;
3943 pthread_mutex_lock(&ua_sess
->lock
);
3945 health_code_update();
3947 /* Flushing buffers */
3948 cds_lfht_for_each_entry(ua_sess
->channels
->ht
, &iter
.iter
, ua_chan
,
3950 health_code_update();
3951 assert(ua_chan
->is_sent
);
3952 ret
= ustctl_sock_flush_buffer(app
->sock
, ua_chan
->obj
);
3954 if (ret
!= -EPIPE
&& ret
!= -LTTNG_UST_ERR_EXITING
) {
3955 ERR("UST app PID %d channel %s flush failed with ret %d",
3956 app
->pid
, ua_chan
->name
, ret
);
3958 DBG3("UST app failed to flush %s. Application is dead.",
3961 * This is normal behavior, an application can die during the
3962 * creation process. Don't report an error so the execution can
3963 * continue normally.
3966 /* Continuing flushing all buffers */
3971 health_code_update();
3973 pthread_mutex_unlock(&ua_sess
->lock
);
3976 health_code_update();
3981 * Destroy a specific UST session in apps.
3983 static int destroy_trace(struct ltt_ust_session
*usess
, struct ust_app
*app
)
3986 struct ust_app_session
*ua_sess
;
3987 struct lttng_ht_iter iter
;
3988 struct lttng_ht_node_u64
*node
;
3990 DBG("Destroy tracing for ust app pid %d", app
->pid
);
3994 if (!app
->compatible
) {
3998 __lookup_session_by_app(usess
, app
, &iter
);
3999 node
= lttng_ht_iter_get_node_u64(&iter
);
4001 /* Session is being or is deleted. */
4004 ua_sess
= caa_container_of(node
, struct ust_app_session
, node
);
4006 health_code_update();
4007 destroy_app_session(app
, ua_sess
);
4009 health_code_update();
4011 /* Quiescent wait after stopping trace */
4012 ret
= ustctl_wait_quiescent(app
->sock
);
4013 if (ret
< 0 && ret
!= -EPIPE
&& ret
!= -LTTNG_UST_ERR_EXITING
) {
4014 ERR("UST app wait quiescent failed for app pid %d ret %d",
4019 health_code_update();
4024 * Start tracing for the UST session.
4026 int ust_app_start_trace_all(struct ltt_ust_session
*usess
)
4029 struct lttng_ht_iter iter
;
4030 struct ust_app
*app
;
4032 DBG("Starting all UST traces");
4036 cds_lfht_for_each_entry(ust_app_ht
->ht
, &iter
.iter
, app
, pid_n
.node
) {
4037 ret
= ust_app_start_trace(usess
, app
);
4039 /* Continue to next apps even on error */
4050 * Start tracing for the UST session.
4052 int ust_app_stop_trace_all(struct ltt_ust_session
*usess
)
4055 struct lttng_ht_iter iter
;
4056 struct ust_app
*app
;
4058 DBG("Stopping all UST traces");
4062 cds_lfht_for_each_entry(ust_app_ht
->ht
, &iter
.iter
, app
, pid_n
.node
) {
4063 ret
= ust_app_stop_trace(usess
, app
);
4065 /* Continue to next apps even on error */
4070 /* Flush buffers and push metadata (for UID buffers). */
4071 switch (usess
->buffer_type
) {
4072 case LTTNG_BUFFER_PER_UID
:
4074 struct buffer_reg_uid
*reg
;
4076 /* Flush all per UID buffers associated to that session. */
4077 cds_list_for_each_entry(reg
, &usess
->buffer_reg_uid_list
, lnode
) {
4078 struct ust_registry_session
*ust_session_reg
;
4079 struct buffer_reg_channel
*reg_chan
;
4080 struct consumer_socket
*socket
;
4082 /* Get consumer socket to use to push the metadata.*/
4083 socket
= consumer_find_socket_by_bitness(reg
->bits_per_long
,
4086 /* Ignore request if no consumer is found for the session. */
4090 cds_lfht_for_each_entry(reg
->registry
->channels
->ht
, &iter
.iter
,
4091 reg_chan
, node
.node
) {
4093 * The following call will print error values so the return
4094 * code is of little importance because whatever happens, we
4095 * have to try them all.
4097 (void) consumer_flush_channel(socket
, reg_chan
->consumer_key
);
4100 ust_session_reg
= reg
->registry
->reg
.ust
;
4101 if (!ust_session_reg
->metadata_closed
) {
4102 /* Push metadata. */
4103 (void) push_metadata(ust_session_reg
, usess
->consumer
);
4109 case LTTNG_BUFFER_PER_PID
:
4110 cds_lfht_for_each_entry(ust_app_ht
->ht
, &iter
.iter
, app
, pid_n
.node
) {
4111 ret
= ust_app_flush_trace(usess
, app
);
4113 /* Continue to next apps even on error */
4129 * Destroy app UST session.
4131 int ust_app_destroy_trace_all(struct ltt_ust_session
*usess
)
4134 struct lttng_ht_iter iter
;
4135 struct ust_app
*app
;
4137 DBG("Destroy all UST traces");
4141 cds_lfht_for_each_entry(ust_app_ht
->ht
, &iter
.iter
, app
, pid_n
.node
) {
4142 ret
= destroy_trace(usess
, app
);
4144 /* Continue to next apps even on error */
4155 * Add channels/events from UST global domain to registered apps at sock.
4157 void ust_app_global_update(struct ltt_ust_session
*usess
, int sock
)
4160 struct lttng_ht_iter iter
, uiter
;
4161 struct ust_app
*app
;
4162 struct ust_app_session
*ua_sess
= NULL
;
4163 struct ust_app_channel
*ua_chan
;
4164 struct ust_app_event
*ua_event
;
4165 struct ust_app_ctx
*ua_ctx
;
4170 DBG2("UST app global update for app sock %d for session id %" PRIu64
, sock
,
4175 app
= find_app_by_sock(sock
);
4178 * Application can be unregistered before so this is possible hence
4179 * simply stopping the update.
4181 DBG3("UST app update failed to find app sock %d", sock
);
4185 if (!app
->compatible
) {
4189 ret
= create_ust_app_session(usess
, app
, &ua_sess
, NULL
);
4191 /* Tracer is probably gone or ENOMEM. */
4196 pthread_mutex_lock(&ua_sess
->lock
);
4199 * We can iterate safely here over all UST app session since the create ust
4200 * app session above made a shadow copy of the UST global domain from the
4203 cds_lfht_for_each_entry(ua_sess
->channels
->ht
, &iter
.iter
, ua_chan
,
4206 * For a metadata channel, handle it differently.
4208 if (!strncmp(ua_chan
->name
, DEFAULT_METADATA_NAME
,
4209 sizeof(ua_chan
->name
))) {
4210 ret
= create_ust_app_metadata(ua_sess
, app
, usess
->consumer
,
4215 /* Remove it from the hash table and continue!. */
4216 ret
= lttng_ht_del(ua_sess
->channels
, &iter
);
4218 delete_ust_app_channel(-1, ua_chan
, app
);
4221 ret
= do_create_channel(app
, usess
, ua_sess
, ua_chan
);
4224 * Stop everything. On error, the application failed, no more
4225 * file descriptor are available or ENOMEM so stopping here is
4226 * the only thing we can do for now.
4233 * Add context using the list so they are enabled in the same order the
4236 cds_list_for_each_entry(ua_ctx
, &ua_chan
->ctx_list
, list
) {
4237 ret
= create_ust_channel_context(ua_chan
, ua_ctx
, app
);
4244 /* For each events */
4245 cds_lfht_for_each_entry(ua_chan
->events
->ht
, &uiter
.iter
, ua_event
,
4247 ret
= create_ust_event(app
, ua_sess
, ua_chan
, ua_event
);
4254 pthread_mutex_unlock(&ua_sess
->lock
);
4256 if (usess
->start_trace
) {
4257 ret
= ust_app_start_trace(usess
, app
);
4262 DBG2("UST trace started for app pid %d", app
->pid
);
4265 /* Everything went well at this point. */
4270 pthread_mutex_unlock(&ua_sess
->lock
);
4273 destroy_app_session(app
, ua_sess
);
4280 * Add context to a specific channel for global UST domain.
4282 int ust_app_add_ctx_channel_glb(struct ltt_ust_session
*usess
,
4283 struct ltt_ust_channel
*uchan
, struct ltt_ust_context
*uctx
)
4286 struct lttng_ht_node_str
*ua_chan_node
;
4287 struct lttng_ht_iter iter
, uiter
;
4288 struct ust_app_channel
*ua_chan
= NULL
;
4289 struct ust_app_session
*ua_sess
;
4290 struct ust_app
*app
;
4294 cds_lfht_for_each_entry(ust_app_ht
->ht
, &iter
.iter
, app
, pid_n
.node
) {
4295 if (!app
->compatible
) {
4297 * TODO: In time, we should notice the caller of this error by
4298 * telling him that this is a version error.
4302 ua_sess
= lookup_session_by_app(usess
, app
);
4303 if (ua_sess
== NULL
) {
4307 pthread_mutex_lock(&ua_sess
->lock
);
4308 /* Lookup channel in the ust app session */
4309 lttng_ht_lookup(ua_sess
->channels
, (void *)uchan
->name
, &uiter
);
4310 ua_chan_node
= lttng_ht_iter_get_node_str(&uiter
);
4311 if (ua_chan_node
== NULL
) {
4314 ua_chan
= caa_container_of(ua_chan_node
, struct ust_app_channel
,
4316 ret
= create_ust_app_channel_context(ua_sess
, ua_chan
, &uctx
->ctx
, app
);
4321 pthread_mutex_unlock(&ua_sess
->lock
);
4329 * Enable event for a channel from a UST session for a specific PID.
4331 int ust_app_enable_event_pid(struct ltt_ust_session
*usess
,
4332 struct ltt_ust_channel
*uchan
, struct ltt_ust_event
*uevent
, pid_t pid
)
4335 struct lttng_ht_iter iter
;
4336 struct lttng_ht_node_str
*ua_chan_node
;
4337 struct ust_app
*app
;
4338 struct ust_app_session
*ua_sess
;
4339 struct ust_app_channel
*ua_chan
;
4340 struct ust_app_event
*ua_event
;
4342 DBG("UST app enabling event %s for PID %d", uevent
->attr
.name
, pid
);
4346 app
= ust_app_find_by_pid(pid
);
4348 ERR("UST app enable event per PID %d not found", pid
);
4353 if (!app
->compatible
) {
4358 ua_sess
= lookup_session_by_app(usess
, app
);
4360 /* The application has problem or is probably dead. */
4365 pthread_mutex_lock(&ua_sess
->lock
);
4366 /* Lookup channel in the ust app session */
4367 lttng_ht_lookup(ua_sess
->channels
, (void *)uchan
->name
, &iter
);
4368 ua_chan_node
= lttng_ht_iter_get_node_str(&iter
);
4369 /* If the channel is not found, there is a code flow error */
4370 assert(ua_chan_node
);
4372 ua_chan
= caa_container_of(ua_chan_node
, struct ust_app_channel
, node
);
4374 ua_event
= find_ust_app_event(ua_chan
->events
, uevent
->attr
.name
,
4375 uevent
->filter
, uevent
->attr
.loglevel
);
4376 if (ua_event
== NULL
) {
4377 ret
= create_ust_app_event(ua_sess
, ua_chan
, uevent
, app
);
4382 ret
= enable_ust_app_event(ua_sess
, ua_event
, app
);
4389 pthread_mutex_unlock(&ua_sess
->lock
);
4396 * Disable event for a channel from a UST session for a specific PID.
4398 int ust_app_disable_event_pid(struct ltt_ust_session
*usess
,
4399 struct ltt_ust_channel
*uchan
, struct ltt_ust_event
*uevent
, pid_t pid
)
4402 struct lttng_ht_iter iter
;
4403 struct lttng_ht_node_str
*ua_chan_node
, *ua_event_node
;
4404 struct ust_app
*app
;
4405 struct ust_app_session
*ua_sess
;
4406 struct ust_app_channel
*ua_chan
;
4407 struct ust_app_event
*ua_event
;
4409 DBG("UST app disabling event %s for PID %d", uevent
->attr
.name
, pid
);
4413 app
= ust_app_find_by_pid(pid
);
4415 ERR("UST app disable event per PID %d not found", pid
);
4420 if (!app
->compatible
) {
4425 ua_sess
= lookup_session_by_app(usess
, app
);
4427 /* The application has problem or is probably dead. */
4431 /* Lookup channel in the ust app session */
4432 lttng_ht_lookup(ua_sess
->channels
, (void *)uchan
->name
, &iter
);
4433 ua_chan_node
= lttng_ht_iter_get_node_str(&iter
);
4434 if (ua_chan_node
== NULL
) {
4435 /* Channel does not exist, skip disabling */
4438 ua_chan
= caa_container_of(ua_chan_node
, struct ust_app_channel
, node
);
4440 lttng_ht_lookup(ua_chan
->events
, (void *)uevent
->attr
.name
, &iter
);
4441 ua_event_node
= lttng_ht_iter_get_node_str(&iter
);
4442 if (ua_event_node
== NULL
) {
4443 /* Event does not exist, skip disabling */
4446 ua_event
= caa_container_of(ua_event_node
, struct ust_app_event
, node
);
4448 ret
= disable_ust_app_event(ua_sess
, ua_event
, app
);
4459 * Calibrate registered applications.
4461 int ust_app_calibrate_glb(struct lttng_ust_calibrate
*calibrate
)
4464 struct lttng_ht_iter iter
;
4465 struct ust_app
*app
;
4469 cds_lfht_for_each_entry(ust_app_ht
->ht
, &iter
.iter
, app
, pid_n
.node
) {
4470 if (!app
->compatible
) {
4472 * TODO: In time, we should notice the caller of this error by
4473 * telling him that this is a version error.
4478 health_code_update();
4480 ret
= ustctl_calibrate(app
->sock
, calibrate
);
4484 /* Means that it's not implemented on the tracer side. */
4488 DBG2("Calibrate app PID %d returned with error %d",
4495 DBG("UST app global domain calibration finished");
4499 health_code_update();
4505 * Receive registration and populate the given msg structure.
4507 * On success return 0 else a negative value returned by the ustctl call.
4509 int ust_app_recv_registration(int sock
, struct ust_register_msg
*msg
)
4512 uint32_t pid
, ppid
, uid
, gid
;
4516 ret
= ustctl_recv_reg_msg(sock
, &msg
->type
, &msg
->major
, &msg
->minor
,
4517 &pid
, &ppid
, &uid
, &gid
,
4518 &msg
->bits_per_long
,
4519 &msg
->uint8_t_alignment
,
4520 &msg
->uint16_t_alignment
,
4521 &msg
->uint32_t_alignment
,
4522 &msg
->uint64_t_alignment
,
4523 &msg
->long_alignment
,
4530 case LTTNG_UST_ERR_EXITING
:
4531 DBG3("UST app recv reg message failed. Application died");
4533 case LTTNG_UST_ERR_UNSUP_MAJOR
:
4534 ERR("UST app recv reg unsupported version %d.%d. Supporting %d.%d",
4535 msg
->major
, msg
->minor
, LTTNG_UST_ABI_MAJOR_VERSION
,
4536 LTTNG_UST_ABI_MINOR_VERSION
);
4539 ERR("UST app recv reg message failed with ret %d", ret
);
4544 msg
->pid
= (pid_t
) pid
;
4545 msg
->ppid
= (pid_t
) ppid
;
4546 msg
->uid
= (uid_t
) uid
;
4547 msg
->gid
= (gid_t
) gid
;
4554 * Return a ust app channel object using the application object and the channel
4555 * object descriptor has a key. If not found, NULL is returned. A RCU read side
4556 * lock MUST be acquired before calling this function.
4558 static struct ust_app_channel
*find_channel_by_objd(struct ust_app
*app
,
4561 struct lttng_ht_node_ulong
*node
;
4562 struct lttng_ht_iter iter
;
4563 struct ust_app_channel
*ua_chan
= NULL
;
4567 lttng_ht_lookup(app
->ust_objd
, (void *)((unsigned long) objd
), &iter
);
4568 node
= lttng_ht_iter_get_node_ulong(&iter
);
4570 DBG2("UST app channel find by objd %d not found", objd
);
4574 ua_chan
= caa_container_of(node
, struct ust_app_channel
, ust_objd_node
);
4581 * Reply to a register channel notification from an application on the notify
4582 * socket. The channel metadata is also created.
4584 * The session UST registry lock is acquired in this function.
4586 * On success 0 is returned else a negative value.
4588 static int reply_ust_register_channel(int sock
, int sobjd
, int cobjd
,
4589 size_t nr_fields
, struct ustctl_field
*fields
)
4591 int ret
, ret_code
= 0;
4592 uint32_t chan_id
, reg_count
;
4593 uint64_t chan_reg_key
;
4594 enum ustctl_channel_header type
;
4595 struct ust_app
*app
;
4596 struct ust_app_channel
*ua_chan
;
4597 struct ust_app_session
*ua_sess
;
4598 struct ust_registry_session
*registry
;
4599 struct ust_registry_channel
*chan_reg
;
4603 /* Lookup application. If not found, there is a code flow error. */
4604 app
= find_app_by_notify_sock(sock
);
4606 DBG("Application socket %d is being teardown. Abort event notify",
4610 goto error_rcu_unlock
;
4613 /* Lookup channel by UST object descriptor. */
4614 ua_chan
= find_channel_by_objd(app
, cobjd
);
4616 DBG("Application channel is being teardown. Abort event notify");
4619 goto error_rcu_unlock
;
4622 assert(ua_chan
->session
);
4623 ua_sess
= ua_chan
->session
;
4625 /* Get right session registry depending on the session buffer type. */
4626 registry
= get_session_registry(ua_sess
);
4629 /* Depending on the buffer type, a different channel key is used. */
4630 if (ua_sess
->buffer_type
== LTTNG_BUFFER_PER_UID
) {
4631 chan_reg_key
= ua_chan
->tracing_channel_id
;
4633 chan_reg_key
= ua_chan
->key
;
4636 pthread_mutex_lock(®istry
->lock
);
4638 chan_reg
= ust_registry_channel_find(registry
, chan_reg_key
);
4641 if (!chan_reg
->register_done
) {
4642 reg_count
= ust_registry_get_event_count(chan_reg
);
4643 if (reg_count
< 31) {
4644 type
= USTCTL_CHANNEL_HEADER_COMPACT
;
4646 type
= USTCTL_CHANNEL_HEADER_LARGE
;
4649 chan_reg
->nr_ctx_fields
= nr_fields
;
4650 chan_reg
->ctx_fields
= fields
;
4651 chan_reg
->header_type
= type
;
4653 /* Get current already assigned values. */
4654 type
= chan_reg
->header_type
;
4656 /* Set to NULL so the error path does not do a double free. */
4659 /* Channel id is set during the object creation. */
4660 chan_id
= chan_reg
->chan_id
;
4662 /* Append to metadata */
4663 if (!chan_reg
->metadata_dumped
) {
4664 ret_code
= ust_metadata_channel_statedump(registry
, chan_reg
);
4666 ERR("Error appending channel metadata (errno = %d)", ret_code
);
4672 DBG3("UST app replying to register channel key %" PRIu64
4673 " with id %u, type: %d, ret: %d", chan_reg_key
, chan_id
, type
,
4676 ret
= ustctl_reply_register_channel(sock
, chan_id
, type
, ret_code
);
4678 if (ret
!= -EPIPE
&& ret
!= -LTTNG_UST_ERR_EXITING
) {
4679 ERR("UST app reply channel failed with ret %d", ret
);
4681 DBG3("UST app reply channel failed. Application died");
4686 /* This channel registry registration is completed. */
4687 chan_reg
->register_done
= 1;
4690 pthread_mutex_unlock(®istry
->lock
);
4700 * Add event to the UST channel registry. When the event is added to the
4701 * registry, the metadata is also created. Once done, this replies to the
4702 * application with the appropriate error code.
4704 * The session UST registry lock is acquired in the function.
4706 * On success 0 is returned else a negative value.
4708 static int add_event_ust_registry(int sock
, int sobjd
, int cobjd
, char *name
,
4709 char *sig
, size_t nr_fields
, struct ustctl_field
*fields
, int loglevel
,
4710 char *model_emf_uri
)
4713 uint32_t event_id
= 0;
4714 uint64_t chan_reg_key
;
4715 struct ust_app
*app
;
4716 struct ust_app_channel
*ua_chan
;
4717 struct ust_app_session
*ua_sess
;
4718 struct ust_registry_session
*registry
;
4722 /* Lookup application. If not found, there is a code flow error. */
4723 app
= find_app_by_notify_sock(sock
);
4725 DBG("Application socket %d is being teardown. Abort event notify",
4730 free(model_emf_uri
);
4731 goto error_rcu_unlock
;
4734 /* Lookup channel by UST object descriptor. */
4735 ua_chan
= find_channel_by_objd(app
, cobjd
);
4737 DBG("Application channel is being teardown. Abort event notify");
4741 free(model_emf_uri
);
4742 goto error_rcu_unlock
;
4745 assert(ua_chan
->session
);
4746 ua_sess
= ua_chan
->session
;
4748 registry
= get_session_registry(ua_sess
);
4751 if (ua_sess
->buffer_type
== LTTNG_BUFFER_PER_UID
) {
4752 chan_reg_key
= ua_chan
->tracing_channel_id
;
4754 chan_reg_key
= ua_chan
->key
;
4757 pthread_mutex_lock(®istry
->lock
);
4760 * From this point on, this call acquires the ownership of the sig, fields
4761 * and model_emf_uri meaning any free are done inside it if needed. These
4762 * three variables MUST NOT be read/write after this.
4764 ret_code
= ust_registry_create_event(registry
, chan_reg_key
,
4765 sobjd
, cobjd
, name
, sig
, nr_fields
, fields
, loglevel
,
4766 model_emf_uri
, ua_sess
->buffer_type
, &event_id
,
4770 * The return value is returned to ustctl so in case of an error, the
4771 * application can be notified. In case of an error, it's important not to
4772 * return a negative error or else the application will get closed.
4774 ret
= ustctl_reply_register_event(sock
, event_id
, ret_code
);
4776 if (ret
!= -EPIPE
&& ret
!= -LTTNG_UST_ERR_EXITING
) {
4777 ERR("UST app reply event failed with ret %d", ret
);
4779 DBG3("UST app reply event failed. Application died");
4782 * No need to wipe the create event since the application socket will
4783 * get close on error hence cleaning up everything by itself.
4788 DBG3("UST registry event %s with id %" PRId32
" added successfully",
4792 pthread_mutex_unlock(®istry
->lock
);
4799 * Handle application notification through the given notify socket.
4801 * Return 0 on success or else a negative value.
4803 int ust_app_recv_notify(int sock
)
4806 enum ustctl_notify_cmd cmd
;
4808 DBG3("UST app receiving notify from sock %d", sock
);
4810 ret
= ustctl_recv_notify(sock
, &cmd
);
4812 if (ret
!= -EPIPE
&& ret
!= -LTTNG_UST_ERR_EXITING
) {
4813 ERR("UST app recv notify failed with ret %d", ret
);
4815 DBG3("UST app recv notify failed. Application died");
4821 case USTCTL_NOTIFY_CMD_EVENT
:
4823 int sobjd
, cobjd
, loglevel
;
4824 char name
[LTTNG_UST_SYM_NAME_LEN
], *sig
, *model_emf_uri
;
4826 struct ustctl_field
*fields
;
4828 DBG2("UST app ustctl register event received");
4830 ret
= ustctl_recv_register_event(sock
, &sobjd
, &cobjd
, name
, &loglevel
,
4831 &sig
, &nr_fields
, &fields
, &model_emf_uri
);
4833 if (ret
!= -EPIPE
&& ret
!= -LTTNG_UST_ERR_EXITING
) {
4834 ERR("UST app recv event failed with ret %d", ret
);
4836 DBG3("UST app recv event failed. Application died");
4842 * Add event to the UST registry coming from the notify socket. This
4843 * call will free if needed the sig, fields and model_emf_uri. This
4844 * code path loses the ownsership of these variables and transfer them
4845 * to the this function.
4847 ret
= add_event_ust_registry(sock
, sobjd
, cobjd
, name
, sig
, nr_fields
,
4848 fields
, loglevel
, model_emf_uri
);
4855 case USTCTL_NOTIFY_CMD_CHANNEL
:
4859 struct ustctl_field
*fields
;
4861 DBG2("UST app ustctl register channel received");
4863 ret
= ustctl_recv_register_channel(sock
, &sobjd
, &cobjd
, &nr_fields
,
4866 if (ret
!= -EPIPE
&& ret
!= -LTTNG_UST_ERR_EXITING
) {
4867 ERR("UST app recv channel failed with ret %d", ret
);
4869 DBG3("UST app recv channel failed. Application died");
4875 * The fields ownership are transfered to this function call meaning
4876 * that if needed it will be freed. After this, it's invalid to access
4877 * fields or clean it up.
4879 ret
= reply_ust_register_channel(sock
, sobjd
, cobjd
, nr_fields
,
4888 /* Should NEVER happen. */
4897 * Once the notify socket hangs up, this is called. First, it tries to find the
4898 * corresponding application. On failure, the call_rcu to close the socket is
4899 * executed. If an application is found, it tries to delete it from the notify
4900 * socket hash table. Whathever the result, it proceeds to the call_rcu.
4902 * Note that an object needs to be allocated here so on ENOMEM failure, the
4903 * call RCU is not done but the rest of the cleanup is.
4905 void ust_app_notify_sock_unregister(int sock
)
4908 struct lttng_ht_iter iter
;
4909 struct ust_app
*app
;
4910 struct ust_app_notify_sock_obj
*obj
;
4916 obj
= zmalloc(sizeof(*obj
));
4919 * An ENOMEM is kind of uncool. If this strikes we continue the
4920 * procedure but the call_rcu will not be called. In this case, we
4921 * accept the fd leak rather than possibly creating an unsynchronized
4922 * state between threads.
4924 * TODO: The notify object should be created once the notify socket is
4925 * registered and stored independantely from the ust app object. The
4926 * tricky part is to synchronize the teardown of the application and
4927 * this notify object. Let's keep that in mind so we can avoid this
4928 * kind of shenanigans with ENOMEM in the teardown path.
4935 DBG("UST app notify socket unregister %d", sock
);
4938 * Lookup application by notify socket. If this fails, this means that the
4939 * hash table delete has already been done by the application
4940 * unregistration process so we can safely close the notify socket in a
4943 app
= find_app_by_notify_sock(sock
);
4948 iter
.iter
.node
= &app
->notify_sock_n
.node
;
4951 * Whatever happens here either we fail or succeed, in both cases we have
4952 * to close the socket after a grace period to continue to the call RCU
4953 * here. If the deletion is successful, the application is not visible
4954 * anymore by other threads and is it fails it means that it was already
4955 * deleted from the hash table so either way we just have to close the
4958 (void) lttng_ht_del(ust_app_ht_by_notify_sock
, &iter
);
4964 * Close socket after a grace period to avoid for the socket to be reused
4965 * before the application object is freed creating potential race between
4966 * threads trying to add unique in the global hash table.
4969 call_rcu(&obj
->head
, close_notify_sock_rcu
);
4974 * Destroy a ust app data structure and free its memory.
4976 void ust_app_destroy(struct ust_app
*app
)
4982 call_rcu(&app
->pid_n
.head
, delete_ust_app_rcu
);
4986 * Take a snapshot for a given UST session. The snapshot is sent to the given
4989 * Return 0 on success or else a negative value.
4991 int ust_app_snapshot_record(struct ltt_ust_session
*usess
,
4992 struct snapshot_output
*output
, int wait
, unsigned int nb_streams
)
4995 unsigned int snapshot_done
= 0;
4996 struct lttng_ht_iter iter
;
4997 struct ust_app
*app
;
4998 char pathname
[PATH_MAX
];
4999 uint64_t max_stream_size
= 0;
5007 * Compute the maximum size of a single stream if a max size is asked by
5010 if (output
->max_size
> 0 && nb_streams
> 0) {
5011 max_stream_size
= output
->max_size
/ nb_streams
;
5014 switch (usess
->buffer_type
) {
5015 case LTTNG_BUFFER_PER_UID
:
5017 struct buffer_reg_uid
*reg
;
5019 cds_list_for_each_entry(reg
, &usess
->buffer_reg_uid_list
, lnode
) {
5020 struct buffer_reg_channel
*reg_chan
;
5021 struct consumer_socket
*socket
;
5023 /* Get consumer socket to use to push the metadata.*/
5024 socket
= consumer_find_socket_by_bitness(reg
->bits_per_long
,
5031 memset(pathname
, 0, sizeof(pathname
));
5032 ret
= snprintf(pathname
, sizeof(pathname
),
5033 DEFAULT_UST_TRACE_DIR
"/" DEFAULT_UST_TRACE_UID_PATH
,
5034 reg
->uid
, reg
->bits_per_long
);
5036 PERROR("snprintf snapshot path");
5040 /* Add the UST default trace dir to path. */
5041 cds_lfht_for_each_entry(reg
->registry
->channels
->ht
, &iter
.iter
,
5042 reg_chan
, node
.node
) {
5045 * Make sure the maximum stream size is not lower than the
5046 * subbuffer size or else it's an error since we won't be able to
5047 * snapshot anything.
5049 if (max_stream_size
&&
5050 reg_chan
->subbuf_size
> max_stream_size
) {
5052 DBG3("UST app snapshot record maximum stream size %" PRIu64
5053 " is smaller than subbuffer size of %zu",
5054 max_stream_size
, reg_chan
->subbuf_size
);
5057 ret
= consumer_snapshot_channel(socket
, reg_chan
->consumer_key
, output
, 0,
5058 usess
->uid
, usess
->gid
, pathname
, wait
,
5064 ret
= consumer_snapshot_channel(socket
, reg
->registry
->reg
.ust
->metadata_key
, output
,
5065 1, usess
->uid
, usess
->gid
, pathname
, wait
,
5074 case LTTNG_BUFFER_PER_PID
:
5076 cds_lfht_for_each_entry(ust_app_ht
->ht
, &iter
.iter
, app
, pid_n
.node
) {
5077 struct consumer_socket
*socket
;
5078 struct lttng_ht_iter chan_iter
;
5079 struct ust_app_channel
*ua_chan
;
5080 struct ust_app_session
*ua_sess
;
5081 struct ust_registry_session
*registry
;
5083 ua_sess
= lookup_session_by_app(usess
, app
);
5085 /* Session not associated with this app. */
5089 /* Get the right consumer socket for the application. */
5090 socket
= consumer_find_socket_by_bitness(app
->bits_per_long
,
5097 /* Add the UST default trace dir to path. */
5098 memset(pathname
, 0, sizeof(pathname
));
5099 ret
= snprintf(pathname
, sizeof(pathname
), DEFAULT_UST_TRACE_DIR
"/%s",
5102 PERROR("snprintf snapshot path");
5106 cds_lfht_for_each_entry(ua_sess
->channels
->ht
, &chan_iter
.iter
,
5107 ua_chan
, node
.node
) {
5109 * Make sure the maximum stream size is not lower than the
5110 * subbuffer size or else it's an error since we won't be able to
5111 * snapshot anything.
5113 if (max_stream_size
&&
5114 ua_chan
->attr
.subbuf_size
> max_stream_size
) {
5116 DBG3("UST app snapshot record maximum stream size %" PRIu64
5117 " is smaller than subbuffer size of %" PRIu64
,
5118 max_stream_size
, ua_chan
->attr
.subbuf_size
);
5122 ret
= consumer_snapshot_channel(socket
, ua_chan
->key
, output
, 0,
5123 ua_sess
->euid
, ua_sess
->egid
, pathname
, wait
,
5130 registry
= get_session_registry(ua_sess
);
5132 ret
= consumer_snapshot_channel(socket
, registry
->metadata_key
, output
,
5133 1, ua_sess
->euid
, ua_sess
->egid
, pathname
, wait
,
5147 if (!snapshot_done
) {
5149 * If no snapshot was made and we are not in the error path, this means
5150 * that there are no buffers thus no (prior) application to snapshot
5151 * data from so we have simply NO data.
5162 * Return the number of streams for a UST session.
5164 unsigned int ust_app_get_nb_stream(struct ltt_ust_session
*usess
)
5166 unsigned int ret
= 0;
5167 struct ust_app
*app
;
5168 struct lttng_ht_iter iter
;
5172 switch (usess
->buffer_type
) {
5173 case LTTNG_BUFFER_PER_UID
:
5175 struct buffer_reg_uid
*reg
;
5177 cds_list_for_each_entry(reg
, &usess
->buffer_reg_uid_list
, lnode
) {
5178 struct buffer_reg_channel
*reg_chan
;
5180 cds_lfht_for_each_entry(reg
->registry
->channels
->ht
, &iter
.iter
,
5181 reg_chan
, node
.node
) {
5182 ret
+= reg_chan
->stream_count
;
5187 case LTTNG_BUFFER_PER_PID
:
5190 cds_lfht_for_each_entry(ust_app_ht
->ht
, &iter
.iter
, app
, pid_n
.node
) {
5191 struct ust_app_channel
*ua_chan
;
5192 struct ust_app_session
*ua_sess
;
5193 struct lttng_ht_iter chan_iter
;
5195 ua_sess
= lookup_session_by_app(usess
, app
);
5197 /* Session not associated with this app. */
5201 cds_lfht_for_each_entry(ua_sess
->channels
->ht
, &chan_iter
.iter
,
5202 ua_chan
, node
.node
) {
5203 ret
+= ua_chan
->streams
.count
;