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.
27 #include <sys/types.h>
29 #include <urcu/compiler.h>
30 #include <lttng/ust-error.h>
33 #include <common/common.h>
34 #include <common/sessiond-comm/sessiond-comm.h>
36 #include "buffer-registry.h"
38 #include "health-sessiond.h"
40 #include "ust-consumer.h"
44 /* Next available channel key. Access under next_channel_key_lock. */
45 static uint64_t _next_channel_key
;
46 static pthread_mutex_t next_channel_key_lock
= PTHREAD_MUTEX_INITIALIZER
;
48 /* Next available session ID. Access under next_session_id_lock. */
49 static uint64_t _next_session_id
;
50 static pthread_mutex_t next_session_id_lock
= PTHREAD_MUTEX_INITIALIZER
;
53 * Return the incremented value of next_channel_key.
55 static uint64_t get_next_channel_key(void)
59 pthread_mutex_lock(&next_channel_key_lock
);
60 ret
= ++_next_channel_key
;
61 pthread_mutex_unlock(&next_channel_key_lock
);
66 * Return the atomically incremented value of next_session_id.
68 static uint64_t get_next_session_id(void)
72 pthread_mutex_lock(&next_session_id_lock
);
73 ret
= ++_next_session_id
;
74 pthread_mutex_unlock(&next_session_id_lock
);
78 static void copy_channel_attr_to_ustctl(
79 struct ustctl_consumer_channel_attr
*attr
,
80 struct lttng_ust_channel_attr
*uattr
)
82 /* Copy event attributes since the layout is different. */
83 attr
->subbuf_size
= uattr
->subbuf_size
;
84 attr
->num_subbuf
= uattr
->num_subbuf
;
85 attr
->overwrite
= uattr
->overwrite
;
86 attr
->switch_timer_interval
= uattr
->switch_timer_interval
;
87 attr
->read_timer_interval
= uattr
->read_timer_interval
;
88 attr
->output
= uattr
->output
;
92 * Match function for the hash table lookup.
94 * It matches an ust app event based on three attributes which are the event
95 * name, the filter bytecode and the loglevel.
97 static int ht_match_ust_app_event(struct cds_lfht_node
*node
, const void *_key
)
99 struct ust_app_event
*event
;
100 const struct ust_app_ht_key
*key
;
105 event
= caa_container_of(node
, struct ust_app_event
, node
.node
);
108 /* Match the 4 elements of the key: name, filter, loglevel, exclusions */
111 if (strncmp(event
->attr
.name
, key
->name
, sizeof(event
->attr
.name
)) != 0) {
115 /* Event loglevel. */
116 if (event
->attr
.loglevel
!= key
->loglevel
) {
117 if (event
->attr
.loglevel_type
== LTTNG_UST_LOGLEVEL_ALL
118 && key
->loglevel
== 0 && event
->attr
.loglevel
== -1) {
120 * Match is accepted. This is because on event creation, the
121 * loglevel is set to -1 if the event loglevel type is ALL so 0 and
122 * -1 are accepted for this loglevel type since 0 is the one set by
123 * the API when receiving an enable event.
130 /* One of the filters is NULL, fail. */
131 if ((key
->filter
&& !event
->filter
) || (!key
->filter
&& event
->filter
)) {
135 if (key
->filter
&& event
->filter
) {
136 /* Both filters exists, check length followed by the bytecode. */
137 if (event
->filter
->len
!= key
->filter
->len
||
138 memcmp(event
->filter
->data
, key
->filter
->data
,
139 event
->filter
->len
) != 0) {
144 /* One of the exclusions is NULL, fail. */
145 if ((key
->exclusion
&& !event
->exclusion
) || (!key
->exclusion
&& event
->exclusion
)) {
149 if (key
->exclusion
&& event
->exclusion
) {
150 /* Both exclusions exists, check count followed by the names. */
151 if (event
->exclusion
->count
!= key
->exclusion
->count
||
152 memcmp(event
->exclusion
->names
, key
->exclusion
->names
,
153 event
->exclusion
->count
* LTTNG_UST_SYM_NAME_LEN
) != 0) {
167 * Unique add of an ust app event in the given ht. This uses the custom
168 * ht_match_ust_app_event match function and the event name as hash.
170 static void add_unique_ust_app_event(struct ust_app_channel
*ua_chan
,
171 struct ust_app_event
*event
)
173 struct cds_lfht_node
*node_ptr
;
174 struct ust_app_ht_key key
;
178 assert(ua_chan
->events
);
181 ht
= ua_chan
->events
;
182 key
.name
= event
->attr
.name
;
183 key
.filter
= event
->filter
;
184 key
.loglevel
= event
->attr
.loglevel
;
185 key
.exclusion
= event
->exclusion
;
187 node_ptr
= cds_lfht_add_unique(ht
->ht
,
188 ht
->hash_fct(event
->node
.key
, lttng_ht_seed
),
189 ht_match_ust_app_event
, &key
, &event
->node
.node
);
190 assert(node_ptr
== &event
->node
.node
);
194 * Close the notify socket from the given RCU head object. This MUST be called
195 * through a call_rcu().
197 static void close_notify_sock_rcu(struct rcu_head
*head
)
200 struct ust_app_notify_sock_obj
*obj
=
201 caa_container_of(head
, struct ust_app_notify_sock_obj
, head
);
203 /* Must have a valid fd here. */
204 assert(obj
->fd
>= 0);
206 ret
= close(obj
->fd
);
208 ERR("close notify sock %d RCU", obj
->fd
);
210 lttng_fd_put(LTTNG_FD_APPS
, 1);
216 * Return the session registry according to the buffer type of the given
219 * A registry per UID object MUST exists before calling this function or else
220 * it assert() if not found. RCU read side lock must be acquired.
222 static struct ust_registry_session
*get_session_registry(
223 struct ust_app_session
*ua_sess
)
225 struct ust_registry_session
*registry
= NULL
;
229 switch (ua_sess
->buffer_type
) {
230 case LTTNG_BUFFER_PER_PID
:
232 struct buffer_reg_pid
*reg_pid
= buffer_reg_pid_find(ua_sess
->id
);
236 registry
= reg_pid
->registry
->reg
.ust
;
239 case LTTNG_BUFFER_PER_UID
:
241 struct buffer_reg_uid
*reg_uid
= buffer_reg_uid_find(
242 ua_sess
->tracing_id
, ua_sess
->bits_per_long
, ua_sess
->uid
);
246 registry
= reg_uid
->registry
->reg
.ust
;
258 * Delete ust context safely. RCU read lock must be held before calling
262 void delete_ust_app_ctx(int sock
, struct ust_app_ctx
*ua_ctx
)
269 ret
= ustctl_release_object(sock
, ua_ctx
->obj
);
270 if (ret
< 0 && ret
!= -EPIPE
&& ret
!= -LTTNG_UST_ERR_EXITING
) {
271 ERR("UST app sock %d release ctx obj handle %d failed with ret %d",
272 sock
, ua_ctx
->obj
->handle
, ret
);
280 * Delete ust app event safely. RCU read lock must be held before calling
284 void delete_ust_app_event(int sock
, struct ust_app_event
*ua_event
)
290 free(ua_event
->filter
);
291 if (ua_event
->exclusion
!= NULL
)
292 free(ua_event
->exclusion
);
293 if (ua_event
->obj
!= NULL
) {
294 ret
= ustctl_release_object(sock
, ua_event
->obj
);
295 if (ret
< 0 && ret
!= -EPIPE
&& ret
!= -LTTNG_UST_ERR_EXITING
) {
296 ERR("UST app sock %d release event obj failed with ret %d",
305 * Release ust data object of the given stream.
307 * Return 0 on success or else a negative value.
309 static int release_ust_app_stream(int sock
, struct ust_app_stream
*stream
)
316 ret
= ustctl_release_object(sock
, stream
->obj
);
317 if (ret
< 0 && ret
!= -EPIPE
&& ret
!= -LTTNG_UST_ERR_EXITING
) {
318 ERR("UST app sock %d release stream obj failed with ret %d",
321 lttng_fd_put(LTTNG_FD_APPS
, 2);
329 * Delete ust app stream safely. RCU read lock must be held before calling
333 void delete_ust_app_stream(int sock
, struct ust_app_stream
*stream
)
337 (void) release_ust_app_stream(sock
, stream
);
342 * We need to execute ht_destroy outside of RCU read-side critical
343 * section and outside of call_rcu thread, so we postpone its execution
344 * using ht_cleanup_push. It is simpler than to change the semantic of
345 * the many callers of delete_ust_app_session().
348 void delete_ust_app_channel_rcu(struct rcu_head
*head
)
350 struct ust_app_channel
*ua_chan
=
351 caa_container_of(head
, struct ust_app_channel
, rcu_head
);
353 ht_cleanup_push(ua_chan
->ctx
);
354 ht_cleanup_push(ua_chan
->events
);
359 * Delete ust app channel safely. RCU read lock must be held before calling
363 void delete_ust_app_channel(int sock
, struct ust_app_channel
*ua_chan
,
367 struct lttng_ht_iter iter
;
368 struct ust_app_event
*ua_event
;
369 struct ust_app_ctx
*ua_ctx
;
370 struct ust_app_stream
*stream
, *stmp
;
371 struct ust_registry_session
*registry
;
375 DBG3("UST app deleting channel %s", ua_chan
->name
);
378 cds_list_for_each_entry_safe(stream
, stmp
, &ua_chan
->streams
.head
, list
) {
379 cds_list_del(&stream
->list
);
380 delete_ust_app_stream(sock
, stream
);
384 cds_lfht_for_each_entry(ua_chan
->ctx
->ht
, &iter
.iter
, ua_ctx
, node
.node
) {
385 cds_list_del(&ua_ctx
->list
);
386 ret
= lttng_ht_del(ua_chan
->ctx
, &iter
);
388 delete_ust_app_ctx(sock
, ua_ctx
);
392 cds_lfht_for_each_entry(ua_chan
->events
->ht
, &iter
.iter
, ua_event
,
394 ret
= lttng_ht_del(ua_chan
->events
, &iter
);
396 delete_ust_app_event(sock
, ua_event
);
399 if (ua_chan
->session
->buffer_type
== LTTNG_BUFFER_PER_PID
) {
400 /* Wipe and free registry from session registry. */
401 registry
= get_session_registry(ua_chan
->session
);
403 ust_registry_channel_del_free(registry
, ua_chan
->key
);
407 if (ua_chan
->obj
!= NULL
) {
408 /* Remove channel from application UST object descriptor. */
409 iter
.iter
.node
= &ua_chan
->ust_objd_node
.node
;
410 ret
= lttng_ht_del(app
->ust_objd
, &iter
);
412 ret
= ustctl_release_object(sock
, ua_chan
->obj
);
413 if (ret
< 0 && ret
!= -EPIPE
&& ret
!= -LTTNG_UST_ERR_EXITING
) {
414 ERR("UST app sock %d release channel obj failed with ret %d",
417 lttng_fd_put(LTTNG_FD_APPS
, 1);
420 call_rcu(&ua_chan
->rcu_head
, delete_ust_app_channel_rcu
);
424 * Push metadata to consumer socket.
426 * The socket lock MUST be acquired.
427 * The ust app session lock MUST be acquired.
429 * On success, return the len of metadata pushed or else a negative value.
431 ssize_t
ust_app_push_metadata(struct ust_registry_session
*registry
,
432 struct consumer_socket
*socket
, int send_zero_data
)
435 char *metadata_str
= NULL
;
443 * On a push metadata error either the consumer is dead or the metadata
444 * channel has been destroyed because its endpoint might have died (e.g:
445 * relayd). If so, the metadata closed flag is set to 1 so we deny pushing
446 * metadata again which is not valid anymore on the consumer side.
448 * The ust app session mutex locked allows us to make this check without
451 if (registry
->metadata_closed
) {
455 pthread_mutex_lock(®istry
->lock
);
457 offset
= registry
->metadata_len_sent
;
458 len
= registry
->metadata_len
- registry
->metadata_len_sent
;
460 DBG3("No metadata to push for metadata key %" PRIu64
,
461 registry
->metadata_key
);
463 if (send_zero_data
) {
464 DBG("No metadata to push");
470 /* Allocate only what we have to send. */
471 metadata_str
= zmalloc(len
);
473 PERROR("zmalloc ust app metadata string");
477 /* Copy what we haven't send out. */
478 memcpy(metadata_str
, registry
->metadata
+ offset
, len
);
479 registry
->metadata_len_sent
+= len
;
482 pthread_mutex_unlock(®istry
->lock
);
483 ret
= consumer_push_metadata(socket
, registry
->metadata_key
,
484 metadata_str
, len
, offset
);
487 * There is an acceptable race here between the registry metadata key
488 * assignment and the creation on the consumer. The session daemon can
489 * concurrently push metadata for this registry while being created on
490 * the consumer since the metadata key of the registry is assigned
491 * *before* it is setup to avoid the consumer to ask for metadata that
492 * could possibly be not found in the session daemon.
494 * The metadata will get pushed either by the session being stopped or
495 * the consumer requesting metadata if that race is triggered.
497 if (ret
== -LTTCOMM_CONSUMERD_CHANNEL_FAIL
) {
501 /* Update back the actual metadata len sent since it failed here. */
502 pthread_mutex_lock(®istry
->lock
);
503 registry
->metadata_len_sent
-= len
;
504 pthread_mutex_unlock(®istry
->lock
);
514 pthread_mutex_unlock(®istry
->lock
);
521 * For a given application and session, push metadata to consumer. The session
522 * lock MUST be acquired here before calling this.
523 * Either sock or consumer is required : if sock is NULL, the default
524 * socket to send the metadata is retrieved from consumer, if sock
525 * is not NULL we use it to send the metadata.
527 * Return 0 on success else a negative error.
529 static int push_metadata(struct ust_registry_session
*registry
,
530 struct consumer_output
*consumer
)
534 struct consumer_socket
*socket
;
542 * Means that no metadata was assigned to the session. This can happens if
543 * no start has been done previously.
545 if (!registry
->metadata_key
) {
550 /* Get consumer socket to use to push the metadata.*/
551 socket
= consumer_find_socket_by_bitness(registry
->bits_per_long
,
555 goto error_rcu_unlock
;
559 * TODO: Currently, we hold the socket lock around sampling of the next
560 * metadata segment to ensure we send metadata over the consumer socket in
561 * the correct order. This makes the registry lock nest inside the socket
564 * Please note that this is a temporary measure: we should move this lock
565 * back into ust_consumer_push_metadata() when the consumer gets the
566 * ability to reorder the metadata it receives.
568 pthread_mutex_lock(socket
->lock
);
569 ret
= ust_app_push_metadata(registry
, socket
, 0);
570 pthread_mutex_unlock(socket
->lock
);
573 goto error_rcu_unlock
;
581 * On error, flag the registry that the metadata is closed. We were unable
582 * to push anything and this means that either the consumer is not
583 * responding or the metadata cache has been destroyed on the consumer.
585 registry
->metadata_closed
= 1;
592 * Send to the consumer a close metadata command for the given session. Once
593 * done, the metadata channel is deleted and the session metadata pointer is
594 * nullified. The session lock MUST be acquired here unless the application is
595 * in the destroy path.
597 * Return 0 on success else a negative value.
599 static int close_metadata(struct ust_registry_session
*registry
,
600 struct consumer_output
*consumer
)
603 struct consumer_socket
*socket
;
610 if (!registry
->metadata_key
|| registry
->metadata_closed
) {
615 /* Get consumer socket to use to push the metadata.*/
616 socket
= consumer_find_socket_by_bitness(registry
->bits_per_long
,
623 ret
= consumer_close_metadata(socket
, registry
->metadata_key
);
630 * Metadata closed. Even on error this means that the consumer is not
631 * responding or not found so either way a second close should NOT be emit
634 registry
->metadata_closed
= 1;
641 * We need to execute ht_destroy outside of RCU read-side critical
642 * section and outside of call_rcu thread, so we postpone its execution
643 * using ht_cleanup_push. It is simpler than to change the semantic of
644 * the many callers of delete_ust_app_session().
647 void delete_ust_app_session_rcu(struct rcu_head
*head
)
649 struct ust_app_session
*ua_sess
=
650 caa_container_of(head
, struct ust_app_session
, rcu_head
);
652 ht_cleanup_push(ua_sess
->channels
);
657 * Delete ust app session safely. RCU read lock must be held before calling
661 void delete_ust_app_session(int sock
, struct ust_app_session
*ua_sess
,
665 struct lttng_ht_iter iter
;
666 struct ust_app_channel
*ua_chan
;
667 struct ust_registry_session
*registry
;
671 pthread_mutex_lock(&ua_sess
->lock
);
673 registry
= get_session_registry(ua_sess
);
674 if (registry
&& !registry
->metadata_closed
) {
675 /* Push metadata for application before freeing the application. */
676 (void) push_metadata(registry
, ua_sess
->consumer
);
679 * Don't ask to close metadata for global per UID buffers. Close
680 * metadata only on destroy trace session in this case. Also, the
681 * previous push metadata could have flag the metadata registry to
682 * close so don't send a close command if closed.
684 if (ua_sess
->buffer_type
!= LTTNG_BUFFER_PER_UID
&&
685 !registry
->metadata_closed
) {
686 /* And ask to close it for this session registry. */
687 (void) close_metadata(registry
, ua_sess
->consumer
);
691 cds_lfht_for_each_entry(ua_sess
->channels
->ht
, &iter
.iter
, ua_chan
,
693 ret
= lttng_ht_del(ua_sess
->channels
, &iter
);
695 delete_ust_app_channel(sock
, ua_chan
, app
);
698 /* In case of per PID, the registry is kept in the session. */
699 if (ua_sess
->buffer_type
== LTTNG_BUFFER_PER_PID
) {
700 struct buffer_reg_pid
*reg_pid
= buffer_reg_pid_find(ua_sess
->id
);
702 buffer_reg_pid_remove(reg_pid
);
703 buffer_reg_pid_destroy(reg_pid
);
707 if (ua_sess
->handle
!= -1) {
708 ret
= ustctl_release_handle(sock
, ua_sess
->handle
);
709 if (ret
< 0 && ret
!= -EPIPE
&& ret
!= -LTTNG_UST_ERR_EXITING
) {
710 ERR("UST app sock %d release session handle failed with ret %d",
714 pthread_mutex_unlock(&ua_sess
->lock
);
716 call_rcu(&ua_sess
->rcu_head
, delete_ust_app_session_rcu
);
720 * Delete a traceable application structure from the global list. Never call
721 * this function outside of a call_rcu call.
723 * RCU read side lock should _NOT_ be held when calling this function.
726 void delete_ust_app(struct ust_app
*app
)
729 struct ust_app_session
*ua_sess
, *tmp_ua_sess
;
731 /* Delete ust app sessions info */
736 cds_list_for_each_entry_safe(ua_sess
, tmp_ua_sess
, &app
->teardown_head
,
738 /* Free every object in the session and the session. */
740 delete_ust_app_session(sock
, ua_sess
, app
);
744 ht_cleanup_push(app
->sessions
);
745 ht_cleanup_push(app
->ust_objd
);
748 * Wait until we have deleted the application from the sock hash table
749 * before closing this socket, otherwise an application could re-use the
750 * socket ID and race with the teardown, using the same hash table entry.
752 * It's OK to leave the close in call_rcu. We want it to stay unique for
753 * all RCU readers that could run concurrently with unregister app,
754 * therefore we _need_ to only close that socket after a grace period. So
755 * it should stay in this RCU callback.
757 * This close() is a very important step of the synchronization model so
758 * every modification to this function must be carefully reviewed.
764 lttng_fd_put(LTTNG_FD_APPS
, 1);
766 DBG2("UST app pid %d deleted", app
->pid
);
771 * URCU intermediate call to delete an UST app.
774 void delete_ust_app_rcu(struct rcu_head
*head
)
776 struct lttng_ht_node_ulong
*node
=
777 caa_container_of(head
, struct lttng_ht_node_ulong
, head
);
778 struct ust_app
*app
=
779 caa_container_of(node
, struct ust_app
, pid_n
);
781 DBG3("Call RCU deleting app PID %d", app
->pid
);
786 * Delete the session from the application ht and delete the data structure by
787 * freeing every object inside and releasing them.
789 static void destroy_app_session(struct ust_app
*app
,
790 struct ust_app_session
*ua_sess
)
793 struct lttng_ht_iter iter
;
798 iter
.iter
.node
= &ua_sess
->node
.node
;
799 ret
= lttng_ht_del(app
->sessions
, &iter
);
801 /* Already scheduled for teardown. */
805 /* Once deleted, free the data structure. */
806 delete_ust_app_session(app
->sock
, ua_sess
, app
);
813 * Alloc new UST app session.
816 struct ust_app_session
*alloc_ust_app_session(struct ust_app
*app
)
818 struct ust_app_session
*ua_sess
;
820 /* Init most of the default value by allocating and zeroing */
821 ua_sess
= zmalloc(sizeof(struct ust_app_session
));
822 if (ua_sess
== NULL
) {
827 ua_sess
->handle
= -1;
828 ua_sess
->channels
= lttng_ht_new(0, LTTNG_HT_TYPE_STRING
);
829 ua_sess
->metadata_attr
.type
= LTTNG_UST_CHAN_METADATA
;
830 pthread_mutex_init(&ua_sess
->lock
, NULL
);
839 * Alloc new UST app channel.
842 struct ust_app_channel
*alloc_ust_app_channel(char *name
,
843 struct ust_app_session
*ua_sess
,
844 struct lttng_ust_channel_attr
*attr
)
846 struct ust_app_channel
*ua_chan
;
848 /* Init most of the default value by allocating and zeroing */
849 ua_chan
= zmalloc(sizeof(struct ust_app_channel
));
850 if (ua_chan
== NULL
) {
855 /* Setup channel name */
856 strncpy(ua_chan
->name
, name
, sizeof(ua_chan
->name
));
857 ua_chan
->name
[sizeof(ua_chan
->name
) - 1] = '\0';
859 ua_chan
->enabled
= 1;
860 ua_chan
->handle
= -1;
861 ua_chan
->session
= ua_sess
;
862 ua_chan
->key
= get_next_channel_key();
863 ua_chan
->ctx
= lttng_ht_new(0, LTTNG_HT_TYPE_ULONG
);
864 ua_chan
->events
= lttng_ht_new(0, LTTNG_HT_TYPE_STRING
);
865 lttng_ht_node_init_str(&ua_chan
->node
, ua_chan
->name
);
867 CDS_INIT_LIST_HEAD(&ua_chan
->streams
.head
);
868 CDS_INIT_LIST_HEAD(&ua_chan
->ctx_list
);
870 /* Copy attributes */
872 /* Translate from lttng_ust_channel to ustctl_consumer_channel_attr. */
873 ua_chan
->attr
.subbuf_size
= attr
->subbuf_size
;
874 ua_chan
->attr
.num_subbuf
= attr
->num_subbuf
;
875 ua_chan
->attr
.overwrite
= attr
->overwrite
;
876 ua_chan
->attr
.switch_timer_interval
= attr
->switch_timer_interval
;
877 ua_chan
->attr
.read_timer_interval
= attr
->read_timer_interval
;
878 ua_chan
->attr
.output
= attr
->output
;
880 /* By default, the channel is a per cpu channel. */
881 ua_chan
->attr
.type
= LTTNG_UST_CHAN_PER_CPU
;
883 DBG3("UST app channel %s allocated", ua_chan
->name
);
892 * Allocate and initialize a UST app stream.
894 * Return newly allocated stream pointer or NULL on error.
896 struct ust_app_stream
*ust_app_alloc_stream(void)
898 struct ust_app_stream
*stream
= NULL
;
900 stream
= zmalloc(sizeof(*stream
));
901 if (stream
== NULL
) {
902 PERROR("zmalloc ust app stream");
906 /* Zero could be a valid value for a handle so flag it to -1. */
914 * Alloc new UST app event.
917 struct ust_app_event
*alloc_ust_app_event(char *name
,
918 struct lttng_ust_event
*attr
)
920 struct ust_app_event
*ua_event
;
922 /* Init most of the default value by allocating and zeroing */
923 ua_event
= zmalloc(sizeof(struct ust_app_event
));
924 if (ua_event
== NULL
) {
929 ua_event
->enabled
= 1;
930 strncpy(ua_event
->name
, name
, sizeof(ua_event
->name
));
931 ua_event
->name
[sizeof(ua_event
->name
) - 1] = '\0';
932 lttng_ht_node_init_str(&ua_event
->node
, ua_event
->name
);
934 /* Copy attributes */
936 memcpy(&ua_event
->attr
, attr
, sizeof(ua_event
->attr
));
939 DBG3("UST app event %s allocated", ua_event
->name
);
948 * Alloc new UST app context.
951 struct ust_app_ctx
*alloc_ust_app_ctx(struct lttng_ust_context
*uctx
)
953 struct ust_app_ctx
*ua_ctx
;
955 ua_ctx
= zmalloc(sizeof(struct ust_app_ctx
));
956 if (ua_ctx
== NULL
) {
960 CDS_INIT_LIST_HEAD(&ua_ctx
->list
);
963 memcpy(&ua_ctx
->ctx
, uctx
, sizeof(ua_ctx
->ctx
));
966 DBG3("UST app context %d allocated", ua_ctx
->ctx
.ctx
);
973 * Allocate a filter and copy the given original filter.
975 * Return allocated filter or NULL on error.
977 static struct lttng_ust_filter_bytecode
*alloc_copy_ust_app_filter(
978 struct lttng_ust_filter_bytecode
*orig_f
)
980 struct lttng_ust_filter_bytecode
*filter
= NULL
;
982 /* Copy filter bytecode */
983 filter
= zmalloc(sizeof(*filter
) + orig_f
->len
);
985 PERROR("zmalloc alloc ust app filter");
989 memcpy(filter
, orig_f
, sizeof(*filter
) + orig_f
->len
);
996 * Find an ust_app using the sock and return it. RCU read side lock must be
997 * held before calling this helper function.
999 struct ust_app
*ust_app_find_by_sock(int sock
)
1001 struct lttng_ht_node_ulong
*node
;
1002 struct lttng_ht_iter iter
;
1004 lttng_ht_lookup(ust_app_ht_by_sock
, (void *)((unsigned long) sock
), &iter
);
1005 node
= lttng_ht_iter_get_node_ulong(&iter
);
1007 DBG2("UST app find by sock %d not found", sock
);
1011 return caa_container_of(node
, struct ust_app
, sock_n
);
1018 * Find an ust_app using the notify sock and return it. RCU read side lock must
1019 * be held before calling this helper function.
1021 static struct ust_app
*find_app_by_notify_sock(int sock
)
1023 struct lttng_ht_node_ulong
*node
;
1024 struct lttng_ht_iter iter
;
1026 lttng_ht_lookup(ust_app_ht_by_notify_sock
, (void *)((unsigned long) sock
),
1028 node
= lttng_ht_iter_get_node_ulong(&iter
);
1030 DBG2("UST app find by notify sock %d not found", sock
);
1034 return caa_container_of(node
, struct ust_app
, notify_sock_n
);
1041 * Lookup for an ust app event based on event name, filter bytecode and the
1044 * Return an ust_app_event object or NULL on error.
1046 static struct ust_app_event
*find_ust_app_event(struct lttng_ht
*ht
,
1047 char *name
, struct lttng_ust_filter_bytecode
*filter
, int loglevel
,
1048 const struct lttng_event_exclusion
*exclusion
)
1050 struct lttng_ht_iter iter
;
1051 struct lttng_ht_node_str
*node
;
1052 struct ust_app_event
*event
= NULL
;
1053 struct ust_app_ht_key key
;
1058 /* Setup key for event lookup. */
1060 key
.filter
= filter
;
1061 key
.loglevel
= loglevel
;
1062 /* lttng_event_exclusion and lttng_ust_event_exclusion structures are similar */
1063 key
.exclusion
= (struct lttng_ust_event_exclusion
*)exclusion
;
1065 /* Lookup using the event name as hash and a custom match fct. */
1066 cds_lfht_lookup(ht
->ht
, ht
->hash_fct((void *) name
, lttng_ht_seed
),
1067 ht_match_ust_app_event
, &key
, &iter
.iter
);
1068 node
= lttng_ht_iter_get_node_str(&iter
);
1073 event
= caa_container_of(node
, struct ust_app_event
, node
);
1080 * Create the channel context on the tracer.
1082 * Called with UST app session lock held.
1085 int create_ust_channel_context(struct ust_app_channel
*ua_chan
,
1086 struct ust_app_ctx
*ua_ctx
, struct ust_app
*app
)
1090 health_code_update();
1092 ret
= ustctl_add_context(app
->sock
, &ua_ctx
->ctx
,
1093 ua_chan
->obj
, &ua_ctx
->obj
);
1095 if (ret
!= -EPIPE
&& ret
!= -LTTNG_UST_ERR_EXITING
) {
1096 ERR("UST app create channel context failed for app (pid: %d) "
1097 "with ret %d", app
->pid
, ret
);
1100 * This is normal behavior, an application can die during the
1101 * creation process. Don't report an error so the execution can
1102 * continue normally.
1105 DBG3("UST app disable event failed. Application is dead.");
1110 ua_ctx
->handle
= ua_ctx
->obj
->handle
;
1112 DBG2("UST app context handle %d created successfully for channel %s",
1113 ua_ctx
->handle
, ua_chan
->name
);
1116 health_code_update();
1121 * Set the filter on the tracer.
1124 int set_ust_event_filter(struct ust_app_event
*ua_event
,
1125 struct ust_app
*app
)
1129 health_code_update();
1131 if (!ua_event
->filter
) {
1136 ret
= ustctl_set_filter(app
->sock
, ua_event
->filter
,
1139 if (ret
!= -EPIPE
&& ret
!= -LTTNG_UST_ERR_EXITING
) {
1140 ERR("UST app event %s filter failed for app (pid: %d) "
1141 "with ret %d", ua_event
->attr
.name
, app
->pid
, ret
);
1144 * This is normal behavior, an application can die during the
1145 * creation process. Don't report an error so the execution can
1146 * continue normally.
1149 DBG3("UST app filter event failed. Application is dead.");
1154 DBG2("UST filter set successfully for event %s", ua_event
->name
);
1157 health_code_update();
1162 * Set event exclusions on the tracer.
1165 int set_ust_event_exclusion(struct ust_app_event
*ua_event
,
1166 struct ust_app
*app
)
1170 health_code_update();
1172 if (!ua_event
->exclusion
|| !ua_event
->exclusion
->count
) {
1177 ret
= ustctl_set_exclusion(app
->sock
, ua_event
->exclusion
,
1180 if (ret
!= -EPIPE
&& ret
!= -LTTNG_UST_ERR_EXITING
) {
1181 ERR("UST app event %s exclusions failed for app (pid: %d) "
1182 "with ret %d", ua_event
->attr
.name
, app
->pid
, ret
);
1185 * This is normal behavior, an application can die during the
1186 * creation process. Don't report an error so the execution can
1187 * continue normally.
1190 DBG3("UST app event exclusion failed. Application is dead.");
1195 DBG2("UST exclusion set successfully for event %s", ua_event
->name
);
1198 health_code_update();
1203 * Disable the specified event on to UST tracer for the UST session.
1205 static int disable_ust_event(struct ust_app
*app
,
1206 struct ust_app_session
*ua_sess
, struct ust_app_event
*ua_event
)
1210 health_code_update();
1212 ret
= ustctl_disable(app
->sock
, ua_event
->obj
);
1214 if (ret
!= -EPIPE
&& ret
!= -LTTNG_UST_ERR_EXITING
) {
1215 ERR("UST app event %s disable failed for app (pid: %d) "
1216 "and session handle %d with ret %d",
1217 ua_event
->attr
.name
, app
->pid
, ua_sess
->handle
, ret
);
1220 * This is normal behavior, an application can die during the
1221 * creation process. Don't report an error so the execution can
1222 * continue normally.
1225 DBG3("UST app disable event failed. Application is dead.");
1230 DBG2("UST app event %s disabled successfully for app (pid: %d)",
1231 ua_event
->attr
.name
, app
->pid
);
1234 health_code_update();
1239 * Disable the specified channel on to UST tracer for the UST session.
1241 static int disable_ust_channel(struct ust_app
*app
,
1242 struct ust_app_session
*ua_sess
, struct ust_app_channel
*ua_chan
)
1246 health_code_update();
1248 ret
= ustctl_disable(app
->sock
, ua_chan
->obj
);
1250 if (ret
!= -EPIPE
&& ret
!= -LTTNG_UST_ERR_EXITING
) {
1251 ERR("UST app channel %s disable failed for app (pid: %d) "
1252 "and session handle %d with ret %d",
1253 ua_chan
->name
, app
->pid
, ua_sess
->handle
, ret
);
1256 * This is normal behavior, an application can die during the
1257 * creation process. Don't report an error so the execution can
1258 * continue normally.
1261 DBG3("UST app disable channel failed. Application is dead.");
1266 DBG2("UST app channel %s disabled successfully for app (pid: %d)",
1267 ua_chan
->name
, app
->pid
);
1270 health_code_update();
1275 * Enable the specified channel on to UST tracer for the UST session.
1277 static int enable_ust_channel(struct ust_app
*app
,
1278 struct ust_app_session
*ua_sess
, struct ust_app_channel
*ua_chan
)
1282 health_code_update();
1284 ret
= ustctl_enable(app
->sock
, ua_chan
->obj
);
1286 if (ret
!= -EPIPE
&& ret
!= -LTTNG_UST_ERR_EXITING
) {
1287 ERR("UST app channel %s enable failed for app (pid: %d) "
1288 "and session handle %d with ret %d",
1289 ua_chan
->name
, app
->pid
, ua_sess
->handle
, ret
);
1292 * This is normal behavior, an application can die during the
1293 * creation process. Don't report an error so the execution can
1294 * continue normally.
1297 DBG3("UST app enable channel failed. Application is dead.");
1302 ua_chan
->enabled
= 1;
1304 DBG2("UST app channel %s enabled successfully for app (pid: %d)",
1305 ua_chan
->name
, app
->pid
);
1308 health_code_update();
1313 * Enable the specified event on to UST tracer for the UST session.
1315 static int enable_ust_event(struct ust_app
*app
,
1316 struct ust_app_session
*ua_sess
, struct ust_app_event
*ua_event
)
1320 health_code_update();
1322 ret
= ustctl_enable(app
->sock
, ua_event
->obj
);
1324 if (ret
!= -EPIPE
&& ret
!= -LTTNG_UST_ERR_EXITING
) {
1325 ERR("UST app event %s enable failed for app (pid: %d) "
1326 "and session handle %d with ret %d",
1327 ua_event
->attr
.name
, app
->pid
, ua_sess
->handle
, ret
);
1330 * This is normal behavior, an application can die during the
1331 * creation process. Don't report an error so the execution can
1332 * continue normally.
1335 DBG3("UST app enable event failed. Application is dead.");
1340 DBG2("UST app event %s enabled successfully for app (pid: %d)",
1341 ua_event
->attr
.name
, app
->pid
);
1344 health_code_update();
1349 * Send channel and stream buffer to application.
1351 * Return 0 on success. On error, a negative value is returned.
1353 static int send_channel_pid_to_ust(struct ust_app
*app
,
1354 struct ust_app_session
*ua_sess
, struct ust_app_channel
*ua_chan
)
1357 struct ust_app_stream
*stream
, *stmp
;
1363 health_code_update();
1365 DBG("UST app sending channel %s to UST app sock %d", ua_chan
->name
,
1368 /* Send channel to the application. */
1369 ret
= ust_consumer_send_channel_to_ust(app
, ua_sess
, ua_chan
);
1374 health_code_update();
1376 /* Send all streams to application. */
1377 cds_list_for_each_entry_safe(stream
, stmp
, &ua_chan
->streams
.head
, list
) {
1378 ret
= ust_consumer_send_stream_to_ust(app
, ua_chan
, stream
);
1382 /* We don't need the stream anymore once sent to the tracer. */
1383 cds_list_del(&stream
->list
);
1384 delete_ust_app_stream(-1, stream
);
1386 /* Flag the channel that it is sent to the application. */
1387 ua_chan
->is_sent
= 1;
1390 health_code_update();
1395 * Create the specified event onto the UST tracer for a UST session.
1397 * Should be called with session mutex held.
1400 int create_ust_event(struct ust_app
*app
, struct ust_app_session
*ua_sess
,
1401 struct ust_app_channel
*ua_chan
, struct ust_app_event
*ua_event
)
1405 health_code_update();
1407 /* Create UST event on tracer */
1408 ret
= ustctl_create_event(app
->sock
, &ua_event
->attr
, ua_chan
->obj
,
1411 if (ret
!= -EPIPE
&& ret
!= -LTTNG_UST_ERR_EXITING
) {
1412 ERR("Error ustctl create event %s for app pid: %d with ret %d",
1413 ua_event
->attr
.name
, app
->pid
, ret
);
1416 * This is normal behavior, an application can die during the
1417 * creation process. Don't report an error so the execution can
1418 * continue normally.
1421 DBG3("UST app create event failed. Application is dead.");
1426 ua_event
->handle
= ua_event
->obj
->handle
;
1428 DBG2("UST app event %s created successfully for pid:%d",
1429 ua_event
->attr
.name
, app
->pid
);
1431 health_code_update();
1433 /* Set filter if one is present. */
1434 if (ua_event
->filter
) {
1435 ret
= set_ust_event_filter(ua_event
, app
);
1441 /* Set exclusions for the event */
1442 if (ua_event
->exclusion
) {
1443 ret
= set_ust_event_exclusion(ua_event
, app
);
1449 /* If event not enabled, disable it on the tracer */
1450 if (ua_event
->enabled
) {
1452 * We now need to explicitly enable the event, since it
1453 * is now disabled at creation.
1455 ret
= enable_ust_event(app
, ua_sess
, ua_event
);
1458 * If we hit an EPERM, something is wrong with our enable call. If
1459 * we get an EEXIST, there is a problem on the tracer side since we
1463 case -LTTNG_UST_ERR_PERM
:
1464 /* Code flow problem */
1466 case -LTTNG_UST_ERR_EXIST
:
1467 /* It's OK for our use case. */
1478 health_code_update();
1483 * Copy data between an UST app event and a LTT event.
1485 static void shadow_copy_event(struct ust_app_event
*ua_event
,
1486 struct ltt_ust_event
*uevent
)
1488 size_t exclusion_alloc_size
;
1490 strncpy(ua_event
->name
, uevent
->attr
.name
, sizeof(ua_event
->name
));
1491 ua_event
->name
[sizeof(ua_event
->name
) - 1] = '\0';
1493 ua_event
->enabled
= uevent
->enabled
;
1495 /* Copy event attributes */
1496 memcpy(&ua_event
->attr
, &uevent
->attr
, sizeof(ua_event
->attr
));
1498 /* Copy filter bytecode */
1499 if (uevent
->filter
) {
1500 ua_event
->filter
= alloc_copy_ust_app_filter(uevent
->filter
);
1501 /* Filter might be NULL here in case of ENONEM. */
1504 /* Copy exclusion data */
1505 if (uevent
->exclusion
) {
1506 exclusion_alloc_size
= sizeof(struct lttng_ust_event_exclusion
) +
1507 LTTNG_UST_SYM_NAME_LEN
* uevent
->exclusion
->count
;
1508 ua_event
->exclusion
= zmalloc(exclusion_alloc_size
);
1509 if (ua_event
->exclusion
== NULL
) {
1512 memcpy(ua_event
->exclusion
, uevent
->exclusion
,
1513 exclusion_alloc_size
);
1519 * Copy data between an UST app channel and a LTT channel.
1521 static void shadow_copy_channel(struct ust_app_channel
*ua_chan
,
1522 struct ltt_ust_channel
*uchan
)
1524 struct lttng_ht_iter iter
;
1525 struct ltt_ust_event
*uevent
;
1526 struct ltt_ust_context
*uctx
;
1527 struct ust_app_event
*ua_event
;
1528 struct ust_app_ctx
*ua_ctx
;
1530 DBG2("UST app shadow copy of channel %s started", ua_chan
->name
);
1532 strncpy(ua_chan
->name
, uchan
->name
, sizeof(ua_chan
->name
));
1533 ua_chan
->name
[sizeof(ua_chan
->name
) - 1] = '\0';
1535 ua_chan
->tracefile_size
= uchan
->tracefile_size
;
1536 ua_chan
->tracefile_count
= uchan
->tracefile_count
;
1538 /* Copy event attributes since the layout is different. */
1539 ua_chan
->attr
.subbuf_size
= uchan
->attr
.subbuf_size
;
1540 ua_chan
->attr
.num_subbuf
= uchan
->attr
.num_subbuf
;
1541 ua_chan
->attr
.overwrite
= uchan
->attr
.overwrite
;
1542 ua_chan
->attr
.switch_timer_interval
= uchan
->attr
.switch_timer_interval
;
1543 ua_chan
->attr
.read_timer_interval
= uchan
->attr
.read_timer_interval
;
1544 ua_chan
->attr
.output
= uchan
->attr
.output
;
1546 * Note that the attribute channel type is not set since the channel on the
1547 * tracing registry side does not have this information.
1550 ua_chan
->enabled
= uchan
->enabled
;
1551 ua_chan
->tracing_channel_id
= uchan
->id
;
1553 cds_list_for_each_entry(uctx
, &uchan
->ctx_list
, list
) {
1554 ua_ctx
= alloc_ust_app_ctx(&uctx
->ctx
);
1555 if (ua_ctx
== NULL
) {
1558 lttng_ht_node_init_ulong(&ua_ctx
->node
,
1559 (unsigned long) ua_ctx
->ctx
.ctx
);
1560 lttng_ht_add_ulong(ua_chan
->ctx
, &ua_ctx
->node
);
1561 cds_list_add_tail(&ua_ctx
->list
, &ua_chan
->ctx_list
);
1564 /* Copy all events from ltt ust channel to ust app channel */
1565 cds_lfht_for_each_entry(uchan
->events
->ht
, &iter
.iter
, uevent
, node
.node
) {
1566 ua_event
= find_ust_app_event(ua_chan
->events
, uevent
->attr
.name
,
1567 uevent
->filter
, uevent
->attr
.loglevel
, uevent
->exclusion
);
1568 if (ua_event
== NULL
) {
1569 DBG2("UST event %s not found on shadow copy channel",
1571 ua_event
= alloc_ust_app_event(uevent
->attr
.name
, &uevent
->attr
);
1572 if (ua_event
== NULL
) {
1575 shadow_copy_event(ua_event
, uevent
);
1576 add_unique_ust_app_event(ua_chan
, ua_event
);
1580 DBG3("UST app shadow copy of channel %s done", ua_chan
->name
);
1584 * Copy data between a UST app session and a regular LTT session.
1586 static void shadow_copy_session(struct ust_app_session
*ua_sess
,
1587 struct ltt_ust_session
*usess
, struct ust_app
*app
)
1589 struct lttng_ht_node_str
*ua_chan_node
;
1590 struct lttng_ht_iter iter
;
1591 struct ltt_ust_channel
*uchan
;
1592 struct ust_app_channel
*ua_chan
;
1594 struct tm
*timeinfo
;
1598 /* Get date and time for unique app path */
1600 timeinfo
= localtime(&rawtime
);
1601 strftime(datetime
, sizeof(datetime
), "%Y%m%d-%H%M%S", timeinfo
);
1603 DBG2("Shadow copy of session handle %d", ua_sess
->handle
);
1605 ua_sess
->tracing_id
= usess
->id
;
1606 ua_sess
->id
= get_next_session_id();
1607 ua_sess
->uid
= app
->uid
;
1608 ua_sess
->gid
= app
->gid
;
1609 ua_sess
->euid
= usess
->uid
;
1610 ua_sess
->egid
= usess
->gid
;
1611 ua_sess
->buffer_type
= usess
->buffer_type
;
1612 ua_sess
->bits_per_long
= app
->bits_per_long
;
1613 /* There is only one consumer object per session possible. */
1614 ua_sess
->consumer
= usess
->consumer
;
1615 ua_sess
->output_traces
= usess
->output_traces
;
1616 ua_sess
->live_timer_interval
= usess
->live_timer_interval
;
1617 copy_channel_attr_to_ustctl(&ua_sess
->metadata_attr
,
1618 &usess
->metadata_attr
);
1620 switch (ua_sess
->buffer_type
) {
1621 case LTTNG_BUFFER_PER_PID
:
1622 ret
= snprintf(ua_sess
->path
, sizeof(ua_sess
->path
),
1623 DEFAULT_UST_TRACE_PID_PATH
"/%s-%d-%s", app
->name
, app
->pid
,
1626 case LTTNG_BUFFER_PER_UID
:
1627 ret
= snprintf(ua_sess
->path
, sizeof(ua_sess
->path
),
1628 DEFAULT_UST_TRACE_UID_PATH
, ua_sess
->uid
, app
->bits_per_long
);
1635 PERROR("asprintf UST shadow copy session");
1640 /* Iterate over all channels in global domain. */
1641 cds_lfht_for_each_entry(usess
->domain_global
.channels
->ht
, &iter
.iter
,
1643 struct lttng_ht_iter uiter
;
1645 lttng_ht_lookup(ua_sess
->channels
, (void *)uchan
->name
, &uiter
);
1646 ua_chan_node
= lttng_ht_iter_get_node_str(&uiter
);
1647 if (ua_chan_node
!= NULL
) {
1648 /* Session exist. Contiuing. */
1652 DBG2("Channel %s not found on shadow session copy, creating it",
1654 ua_chan
= alloc_ust_app_channel(uchan
->name
, ua_sess
, &uchan
->attr
);
1655 if (ua_chan
== NULL
) {
1656 /* malloc failed FIXME: Might want to do handle ENOMEM .. */
1659 shadow_copy_channel(ua_chan
, uchan
);
1661 * The concept of metadata channel does not exist on the tracing
1662 * registry side of the session daemon so this can only be a per CPU
1663 * channel and not metadata.
1665 ua_chan
->attr
.type
= LTTNG_UST_CHAN_PER_CPU
;
1667 lttng_ht_add_unique_str(ua_sess
->channels
, &ua_chan
->node
);
1675 * Lookup sesison wrapper.
1678 void __lookup_session_by_app(struct ltt_ust_session
*usess
,
1679 struct ust_app
*app
, struct lttng_ht_iter
*iter
)
1681 /* Get right UST app session from app */
1682 lttng_ht_lookup(app
->sessions
, &usess
->id
, iter
);
1686 * Return ust app session from the app session hashtable using the UST session
1689 static struct ust_app_session
*lookup_session_by_app(
1690 struct ltt_ust_session
*usess
, struct ust_app
*app
)
1692 struct lttng_ht_iter iter
;
1693 struct lttng_ht_node_u64
*node
;
1695 __lookup_session_by_app(usess
, app
, &iter
);
1696 node
= lttng_ht_iter_get_node_u64(&iter
);
1701 return caa_container_of(node
, struct ust_app_session
, node
);
1708 * Setup buffer registry per PID for the given session and application. If none
1709 * is found, a new one is created, added to the global registry and
1710 * initialized. If regp is valid, it's set with the newly created object.
1712 * Return 0 on success or else a negative value.
1714 static int setup_buffer_reg_pid(struct ust_app_session
*ua_sess
,
1715 struct ust_app
*app
, struct buffer_reg_pid
**regp
)
1718 struct buffer_reg_pid
*reg_pid
;
1725 reg_pid
= buffer_reg_pid_find(ua_sess
->id
);
1728 * This is the create channel path meaning that if there is NO
1729 * registry available, we have to create one for this session.
1731 ret
= buffer_reg_pid_create(ua_sess
->id
, ®_pid
);
1735 buffer_reg_pid_add(reg_pid
);
1740 /* Initialize registry. */
1741 ret
= ust_registry_session_init(®_pid
->registry
->reg
.ust
, app
,
1742 app
->bits_per_long
, app
->uint8_t_alignment
,
1743 app
->uint16_t_alignment
, app
->uint32_t_alignment
,
1744 app
->uint64_t_alignment
, app
->long_alignment
,
1745 app
->byte_order
, app
->version
.major
,
1746 app
->version
.minor
);
1751 DBG3("UST app buffer registry per PID created successfully");
1763 * Setup buffer registry per UID for the given session and application. If none
1764 * is found, a new one is created, added to the global registry and
1765 * initialized. If regp is valid, it's set with the newly created object.
1767 * Return 0 on success or else a negative value.
1769 static int setup_buffer_reg_uid(struct ltt_ust_session
*usess
,
1770 struct ust_app
*app
, struct buffer_reg_uid
**regp
)
1773 struct buffer_reg_uid
*reg_uid
;
1780 reg_uid
= buffer_reg_uid_find(usess
->id
, app
->bits_per_long
, app
->uid
);
1783 * This is the create channel path meaning that if there is NO
1784 * registry available, we have to create one for this session.
1786 ret
= buffer_reg_uid_create(usess
->id
, app
->bits_per_long
, app
->uid
,
1787 LTTNG_DOMAIN_UST
, ®_uid
);
1791 buffer_reg_uid_add(reg_uid
);
1796 /* Initialize registry. */
1797 ret
= ust_registry_session_init(®_uid
->registry
->reg
.ust
, NULL
,
1798 app
->bits_per_long
, app
->uint8_t_alignment
,
1799 app
->uint16_t_alignment
, app
->uint32_t_alignment
,
1800 app
->uint64_t_alignment
, app
->long_alignment
,
1801 app
->byte_order
, app
->version
.major
,
1802 app
->version
.minor
);
1806 /* Add node to teardown list of the session. */
1807 cds_list_add(®_uid
->lnode
, &usess
->buffer_reg_uid_list
);
1809 DBG3("UST app buffer registry per UID created successfully");
1821 * Create a session on the tracer side for the given app.
1823 * On success, ua_sess_ptr is populated with the session pointer or else left
1824 * untouched. If the session was created, is_created is set to 1. On error,
1825 * it's left untouched. Note that ua_sess_ptr is mandatory but is_created can
1828 * Returns 0 on success or else a negative code which is either -ENOMEM or
1829 * -ENOTCONN which is the default code if the ustctl_create_session fails.
1831 static int create_ust_app_session(struct ltt_ust_session
*usess
,
1832 struct ust_app
*app
, struct ust_app_session
**ua_sess_ptr
,
1835 int ret
, created
= 0;
1836 struct ust_app_session
*ua_sess
;
1840 assert(ua_sess_ptr
);
1842 health_code_update();
1844 ua_sess
= lookup_session_by_app(usess
, app
);
1845 if (ua_sess
== NULL
) {
1846 DBG2("UST app pid: %d session id %" PRIu64
" not found, creating it",
1847 app
->pid
, usess
->id
);
1848 ua_sess
= alloc_ust_app_session(app
);
1849 if (ua_sess
== NULL
) {
1850 /* Only malloc can failed so something is really wrong */
1854 shadow_copy_session(ua_sess
, usess
, app
);
1858 switch (usess
->buffer_type
) {
1859 case LTTNG_BUFFER_PER_PID
:
1860 /* Init local registry. */
1861 ret
= setup_buffer_reg_pid(ua_sess
, app
, NULL
);
1866 case LTTNG_BUFFER_PER_UID
:
1867 /* Look for a global registry. If none exists, create one. */
1868 ret
= setup_buffer_reg_uid(usess
, app
, NULL
);
1879 health_code_update();
1881 if (ua_sess
->handle
== -1) {
1882 ret
= ustctl_create_session(app
->sock
);
1884 if (ret
!= -EPIPE
&& ret
!= -LTTNG_UST_ERR_EXITING
) {
1885 ERR("Creating session for app pid %d with ret %d",
1888 DBG("UST app creating session failed. Application is dead");
1890 * This is normal behavior, an application can die during the
1891 * creation process. Don't report an error so the execution can
1892 * continue normally. This will get flagged ENOTCONN and the
1893 * caller will handle it.
1897 delete_ust_app_session(-1, ua_sess
, app
);
1898 if (ret
!= -ENOMEM
) {
1900 * Tracer is probably gone or got an internal error so let's
1901 * behave like it will soon unregister or not usable.
1908 ua_sess
->handle
= ret
;
1910 /* Add ust app session to app's HT */
1911 lttng_ht_node_init_u64(&ua_sess
->node
,
1912 ua_sess
->tracing_id
);
1913 lttng_ht_add_unique_u64(app
->sessions
, &ua_sess
->node
);
1915 DBG2("UST app session created successfully with handle %d", ret
);
1918 *ua_sess_ptr
= ua_sess
;
1920 *is_created
= created
;
1923 /* Everything went well. */
1927 health_code_update();
1932 * Match function for a hash table lookup of ust_app_ctx.
1934 * It matches an ust app context based on the context type and, in the case
1935 * of perf counters, their name.
1937 static int ht_match_ust_app_ctx(struct cds_lfht_node
*node
, const void *_key
)
1939 struct ust_app_ctx
*ctx
;
1940 const struct lttng_ust_context
*key
;
1945 ctx
= caa_container_of(node
, struct ust_app_ctx
, node
.node
);
1949 if (ctx
->ctx
.ctx
!= key
->ctx
) {
1953 /* Check the name in the case of perf thread counters. */
1954 if (key
->ctx
== LTTNG_UST_CONTEXT_PERF_THREAD_COUNTER
) {
1955 if (strncmp(key
->u
.perf_counter
.name
,
1956 ctx
->ctx
.u
.perf_counter
.name
,
1957 sizeof(key
->u
.perf_counter
.name
))) {
1970 * Lookup for an ust app context from an lttng_ust_context.
1972 * Must be called while holding RCU read side lock.
1973 * Return an ust_app_ctx object or NULL on error.
1976 struct ust_app_ctx
*find_ust_app_context(struct lttng_ht
*ht
,
1977 struct lttng_ust_context
*uctx
)
1979 struct lttng_ht_iter iter
;
1980 struct lttng_ht_node_ulong
*node
;
1981 struct ust_app_ctx
*app_ctx
= NULL
;
1986 /* Lookup using the lttng_ust_context_type and a custom match fct. */
1987 cds_lfht_lookup(ht
->ht
, ht
->hash_fct((void *) uctx
->ctx
, lttng_ht_seed
),
1988 ht_match_ust_app_ctx
, uctx
, &iter
.iter
);
1989 node
= lttng_ht_iter_get_node_ulong(&iter
);
1994 app_ctx
= caa_container_of(node
, struct ust_app_ctx
, node
);
2001 * Create a context for the channel on the tracer.
2003 * Called with UST app session lock held and a RCU read side lock.
2006 int create_ust_app_channel_context(struct ust_app_session
*ua_sess
,
2007 struct ust_app_channel
*ua_chan
, struct lttng_ust_context
*uctx
,
2008 struct ust_app
*app
)
2011 struct ust_app_ctx
*ua_ctx
;
2013 DBG2("UST app adding context to channel %s", ua_chan
->name
);
2015 ua_ctx
= find_ust_app_context(ua_chan
->ctx
, uctx
);
2021 ua_ctx
= alloc_ust_app_ctx(uctx
);
2022 if (ua_ctx
== NULL
) {
2028 lttng_ht_node_init_ulong(&ua_ctx
->node
, (unsigned long) ua_ctx
->ctx
.ctx
);
2029 lttng_ht_add_ulong(ua_chan
->ctx
, &ua_ctx
->node
);
2030 cds_list_add_tail(&ua_ctx
->list
, &ua_chan
->ctx_list
);
2032 ret
= create_ust_channel_context(ua_chan
, ua_ctx
, app
);
2042 * Enable on the tracer side a ust app event for the session and channel.
2044 * Called with UST app session lock held.
2047 int enable_ust_app_event(struct ust_app_session
*ua_sess
,
2048 struct ust_app_event
*ua_event
, struct ust_app
*app
)
2052 ret
= enable_ust_event(app
, ua_sess
, ua_event
);
2057 ua_event
->enabled
= 1;
2064 * Disable on the tracer side a ust app event for the session and channel.
2066 static int disable_ust_app_event(struct ust_app_session
*ua_sess
,
2067 struct ust_app_event
*ua_event
, struct ust_app
*app
)
2071 ret
= disable_ust_event(app
, ua_sess
, ua_event
);
2076 ua_event
->enabled
= 0;
2083 * Lookup ust app channel for session and disable it on the tracer side.
2086 int disable_ust_app_channel(struct ust_app_session
*ua_sess
,
2087 struct ust_app_channel
*ua_chan
, struct ust_app
*app
)
2091 ret
= disable_ust_channel(app
, ua_sess
, ua_chan
);
2096 ua_chan
->enabled
= 0;
2103 * Lookup ust app channel for session and enable it on the tracer side. This
2104 * MUST be called with a RCU read side lock acquired.
2106 static int enable_ust_app_channel(struct ust_app_session
*ua_sess
,
2107 struct ltt_ust_channel
*uchan
, struct ust_app
*app
)
2110 struct lttng_ht_iter iter
;
2111 struct lttng_ht_node_str
*ua_chan_node
;
2112 struct ust_app_channel
*ua_chan
;
2114 lttng_ht_lookup(ua_sess
->channels
, (void *)uchan
->name
, &iter
);
2115 ua_chan_node
= lttng_ht_iter_get_node_str(&iter
);
2116 if (ua_chan_node
== NULL
) {
2117 DBG2("Unable to find channel %s in ust session id %" PRIu64
,
2118 uchan
->name
, ua_sess
->tracing_id
);
2122 ua_chan
= caa_container_of(ua_chan_node
, struct ust_app_channel
, node
);
2124 ret
= enable_ust_channel(app
, ua_sess
, ua_chan
);
2134 * Ask the consumer to create a channel and get it if successful.
2136 * Return 0 on success or else a negative value.
2138 static int do_consumer_create_channel(struct ltt_ust_session
*usess
,
2139 struct ust_app_session
*ua_sess
, struct ust_app_channel
*ua_chan
,
2140 int bitness
, struct ust_registry_session
*registry
)
2143 unsigned int nb_fd
= 0;
2144 struct consumer_socket
*socket
;
2152 health_code_update();
2154 /* Get the right consumer socket for the application. */
2155 socket
= consumer_find_socket_by_bitness(bitness
, usess
->consumer
);
2161 health_code_update();
2163 /* Need one fd for the channel. */
2164 ret
= lttng_fd_get(LTTNG_FD_APPS
, 1);
2166 ERR("Exhausted number of available FD upon create channel");
2171 * Ask consumer to create channel. The consumer will return the number of
2172 * stream we have to expect.
2174 ret
= ust_consumer_ask_channel(ua_sess
, ua_chan
, usess
->consumer
, socket
,
2181 * Compute the number of fd needed before receiving them. It must be 2 per
2182 * stream (2 being the default value here).
2184 nb_fd
= DEFAULT_UST_STREAM_FD_NUM
* ua_chan
->expected_stream_count
;
2186 /* Reserve the amount of file descriptor we need. */
2187 ret
= lttng_fd_get(LTTNG_FD_APPS
, nb_fd
);
2189 ERR("Exhausted number of available FD upon create channel");
2190 goto error_fd_get_stream
;
2193 health_code_update();
2196 * Now get the channel from the consumer. This call wil populate the stream
2197 * list of that channel and set the ust objects.
2199 if (usess
->consumer
->enabled
) {
2200 ret
= ust_consumer_get_channel(socket
, ua_chan
);
2210 lttng_fd_put(LTTNG_FD_APPS
, nb_fd
);
2211 error_fd_get_stream
:
2213 * Initiate a destroy channel on the consumer since we had an error
2214 * handling it on our side. The return value is of no importance since we
2215 * already have a ret value set by the previous error that we need to
2218 (void) ust_consumer_destroy_channel(socket
, ua_chan
);
2220 lttng_fd_put(LTTNG_FD_APPS
, 1);
2222 health_code_update();
2228 * Duplicate the ust data object of the ust app stream and save it in the
2229 * buffer registry stream.
2231 * Return 0 on success or else a negative value.
2233 static int duplicate_stream_object(struct buffer_reg_stream
*reg_stream
,
2234 struct ust_app_stream
*stream
)
2241 /* Reserve the amount of file descriptor we need. */
2242 ret
= lttng_fd_get(LTTNG_FD_APPS
, 2);
2244 ERR("Exhausted number of available FD upon duplicate stream");
2248 /* Duplicate object for stream once the original is in the registry. */
2249 ret
= ustctl_duplicate_ust_object_data(&stream
->obj
,
2250 reg_stream
->obj
.ust
);
2252 ERR("Duplicate stream obj from %p to %p failed with ret %d",
2253 reg_stream
->obj
.ust
, stream
->obj
, ret
);
2254 lttng_fd_put(LTTNG_FD_APPS
, 2);
2257 stream
->handle
= stream
->obj
->handle
;
2264 * Duplicate the ust data object of the ust app. channel and save it in the
2265 * buffer registry channel.
2267 * Return 0 on success or else a negative value.
2269 static int duplicate_channel_object(struct buffer_reg_channel
*reg_chan
,
2270 struct ust_app_channel
*ua_chan
)
2277 /* Need two fds for the channel. */
2278 ret
= lttng_fd_get(LTTNG_FD_APPS
, 1);
2280 ERR("Exhausted number of available FD upon duplicate channel");
2284 /* Duplicate object for stream once the original is in the registry. */
2285 ret
= ustctl_duplicate_ust_object_data(&ua_chan
->obj
, reg_chan
->obj
.ust
);
2287 ERR("Duplicate channel obj from %p to %p failed with ret: %d",
2288 reg_chan
->obj
.ust
, ua_chan
->obj
, ret
);
2291 ua_chan
->handle
= ua_chan
->obj
->handle
;
2296 lttng_fd_put(LTTNG_FD_APPS
, 1);
2302 * For a given channel buffer registry, setup all streams of the given ust
2303 * application channel.
2305 * Return 0 on success or else a negative value.
2307 static int setup_buffer_reg_streams(struct buffer_reg_channel
*reg_chan
,
2308 struct ust_app_channel
*ua_chan
)
2311 struct ust_app_stream
*stream
, *stmp
;
2316 DBG2("UST app setup buffer registry stream");
2318 /* Send all streams to application. */
2319 cds_list_for_each_entry_safe(stream
, stmp
, &ua_chan
->streams
.head
, list
) {
2320 struct buffer_reg_stream
*reg_stream
;
2322 ret
= buffer_reg_stream_create(®_stream
);
2328 * Keep original pointer and nullify it in the stream so the delete
2329 * stream call does not release the object.
2331 reg_stream
->obj
.ust
= stream
->obj
;
2333 buffer_reg_stream_add(reg_stream
, reg_chan
);
2335 /* We don't need the streams anymore. */
2336 cds_list_del(&stream
->list
);
2337 delete_ust_app_stream(-1, stream
);
2345 * Create a buffer registry channel for the given session registry and
2346 * application channel object. If regp pointer is valid, it's set with the
2347 * created object. Important, the created object is NOT added to the session
2348 * registry hash table.
2350 * Return 0 on success else a negative value.
2352 static int create_buffer_reg_channel(struct buffer_reg_session
*reg_sess
,
2353 struct ust_app_channel
*ua_chan
, struct buffer_reg_channel
**regp
)
2356 struct buffer_reg_channel
*reg_chan
= NULL
;
2361 DBG2("UST app creating buffer registry channel for %s", ua_chan
->name
);
2363 /* Create buffer registry channel. */
2364 ret
= buffer_reg_channel_create(ua_chan
->tracing_channel_id
, ®_chan
);
2369 reg_chan
->consumer_key
= ua_chan
->key
;
2370 reg_chan
->subbuf_size
= ua_chan
->attr
.subbuf_size
;
2372 /* Create and add a channel registry to session. */
2373 ret
= ust_registry_channel_add(reg_sess
->reg
.ust
,
2374 ua_chan
->tracing_channel_id
);
2378 buffer_reg_channel_add(reg_sess
, reg_chan
);
2387 /* Safe because the registry channel object was not added to any HT. */
2388 buffer_reg_channel_destroy(reg_chan
, LTTNG_DOMAIN_UST
);
2394 * Setup buffer registry channel for the given session registry and application
2395 * channel object. If regp pointer is valid, it's set with the created object.
2397 * Return 0 on success else a negative value.
2399 static int setup_buffer_reg_channel(struct buffer_reg_session
*reg_sess
,
2400 struct ust_app_channel
*ua_chan
, struct buffer_reg_channel
*reg_chan
)
2407 assert(ua_chan
->obj
);
2409 DBG2("UST app setup buffer registry channel for %s", ua_chan
->name
);
2411 /* Setup all streams for the registry. */
2412 ret
= setup_buffer_reg_streams(reg_chan
, ua_chan
);
2417 reg_chan
->obj
.ust
= ua_chan
->obj
;
2418 ua_chan
->obj
= NULL
;
2423 buffer_reg_channel_remove(reg_sess
, reg_chan
);
2424 buffer_reg_channel_destroy(reg_chan
, LTTNG_DOMAIN_UST
);
2429 * Send buffer registry channel to the application.
2431 * Return 0 on success else a negative value.
2433 static int send_channel_uid_to_ust(struct buffer_reg_channel
*reg_chan
,
2434 struct ust_app
*app
, struct ust_app_session
*ua_sess
,
2435 struct ust_app_channel
*ua_chan
)
2438 struct buffer_reg_stream
*reg_stream
;
2445 DBG("UST app sending buffer registry channel to ust sock %d", app
->sock
);
2447 ret
= duplicate_channel_object(reg_chan
, ua_chan
);
2452 /* Send channel to the application. */
2453 ret
= ust_consumer_send_channel_to_ust(app
, ua_sess
, ua_chan
);
2458 health_code_update();
2460 /* Send all streams to application. */
2461 pthread_mutex_lock(®_chan
->stream_list_lock
);
2462 cds_list_for_each_entry(reg_stream
, ®_chan
->streams
, lnode
) {
2463 struct ust_app_stream stream
;
2465 ret
= duplicate_stream_object(reg_stream
, &stream
);
2467 goto error_stream_unlock
;
2470 ret
= ust_consumer_send_stream_to_ust(app
, ua_chan
, &stream
);
2472 (void) release_ust_app_stream(-1, &stream
);
2473 goto error_stream_unlock
;
2477 * The return value is not important here. This function will output an
2480 (void) release_ust_app_stream(-1, &stream
);
2482 ua_chan
->is_sent
= 1;
2484 error_stream_unlock
:
2485 pthread_mutex_unlock(®_chan
->stream_list_lock
);
2491 * Create and send to the application the created buffers with per UID buffers.
2493 * Return 0 on success else a negative value.
2495 static int create_channel_per_uid(struct ust_app
*app
,
2496 struct ltt_ust_session
*usess
, struct ust_app_session
*ua_sess
,
2497 struct ust_app_channel
*ua_chan
)
2500 struct buffer_reg_uid
*reg_uid
;
2501 struct buffer_reg_channel
*reg_chan
;
2508 DBG("UST app creating channel %s with per UID buffers", ua_chan
->name
);
2510 reg_uid
= buffer_reg_uid_find(usess
->id
, app
->bits_per_long
, app
->uid
);
2512 * The session creation handles the creation of this global registry
2513 * object. If none can be find, there is a code flow problem or a
2518 reg_chan
= buffer_reg_channel_find(ua_chan
->tracing_channel_id
,
2521 /* Create the buffer registry channel object. */
2522 ret
= create_buffer_reg_channel(reg_uid
->registry
, ua_chan
, ®_chan
);
2524 ERR("Error creating the UST channel \"%s\" registry instance",
2531 * Create the buffers on the consumer side. This call populates the
2532 * ust app channel object with all streams and data object.
2534 ret
= do_consumer_create_channel(usess
, ua_sess
, ua_chan
,
2535 app
->bits_per_long
, reg_uid
->registry
->reg
.ust
);
2537 ERR("Error creating UST channel \"%s\" on the consumer daemon",
2541 * Let's remove the previously created buffer registry channel so
2542 * it's not visible anymore in the session registry.
2544 ust_registry_channel_del_free(reg_uid
->registry
->reg
.ust
,
2545 ua_chan
->tracing_channel_id
);
2546 buffer_reg_channel_remove(reg_uid
->registry
, reg_chan
);
2547 buffer_reg_channel_destroy(reg_chan
, LTTNG_DOMAIN_UST
);
2552 * Setup the streams and add it to the session registry.
2554 ret
= setup_buffer_reg_channel(reg_uid
->registry
, ua_chan
, reg_chan
);
2556 ERR("Error setting up UST channel \"%s\"",
2563 /* Send buffers to the application. */
2564 ret
= send_channel_uid_to_ust(reg_chan
, app
, ua_sess
, ua_chan
);
2567 * Don't report error to the console, since it may be
2568 * caused by application concurrently exiting.
2578 * Create and send to the application the created buffers with per PID buffers.
2580 * Return 0 on success else a negative value.
2582 static int create_channel_per_pid(struct ust_app
*app
,
2583 struct ltt_ust_session
*usess
, struct ust_app_session
*ua_sess
,
2584 struct ust_app_channel
*ua_chan
)
2587 struct ust_registry_session
*registry
;
2594 DBG("UST app creating channel %s with per PID buffers", ua_chan
->name
);
2598 registry
= get_session_registry(ua_sess
);
2601 /* Create and add a new channel registry to session. */
2602 ret
= ust_registry_channel_add(registry
, ua_chan
->key
);
2604 ERR("Error creating the UST channel \"%s\" registry instance",
2609 /* Create and get channel on the consumer side. */
2610 ret
= do_consumer_create_channel(usess
, ua_sess
, ua_chan
,
2611 app
->bits_per_long
, registry
);
2613 ERR("Error creating UST channel \"%s\" on the consumer daemon",
2618 ret
= send_channel_pid_to_ust(app
, ua_sess
, ua_chan
);
2621 * Don't report error to the console, since it may be
2622 * caused by application concurrently exiting.
2633 * From an already allocated ust app channel, create the channel buffers if
2634 * need and send it to the application. This MUST be called with a RCU read
2635 * side lock acquired.
2637 * Return 0 on success or else a negative value.
2639 static int do_create_channel(struct ust_app
*app
,
2640 struct ltt_ust_session
*usess
, struct ust_app_session
*ua_sess
,
2641 struct ust_app_channel
*ua_chan
)
2650 /* Handle buffer type before sending the channel to the application. */
2651 switch (usess
->buffer_type
) {
2652 case LTTNG_BUFFER_PER_UID
:
2654 ret
= create_channel_per_uid(app
, usess
, ua_sess
, ua_chan
);
2660 case LTTNG_BUFFER_PER_PID
:
2662 ret
= create_channel_per_pid(app
, usess
, ua_sess
, ua_chan
);
2674 /* Initialize ust objd object using the received handle and add it. */
2675 lttng_ht_node_init_ulong(&ua_chan
->ust_objd_node
, ua_chan
->handle
);
2676 lttng_ht_add_unique_ulong(app
->ust_objd
, &ua_chan
->ust_objd_node
);
2678 /* If channel is not enabled, disable it on the tracer */
2679 if (!ua_chan
->enabled
) {
2680 ret
= disable_ust_channel(app
, ua_sess
, ua_chan
);
2691 * Create UST app channel and create it on the tracer. Set ua_chanp of the
2692 * newly created channel if not NULL.
2694 * Called with UST app session lock and RCU read-side lock held.
2696 * Return 0 on success or else a negative value.
2698 static int create_ust_app_channel(struct ust_app_session
*ua_sess
,
2699 struct ltt_ust_channel
*uchan
, struct ust_app
*app
,
2700 enum lttng_ust_chan_type type
, struct ltt_ust_session
*usess
,
2701 struct ust_app_channel
**ua_chanp
)
2704 struct lttng_ht_iter iter
;
2705 struct lttng_ht_node_str
*ua_chan_node
;
2706 struct ust_app_channel
*ua_chan
;
2708 /* Lookup channel in the ust app session */
2709 lttng_ht_lookup(ua_sess
->channels
, (void *)uchan
->name
, &iter
);
2710 ua_chan_node
= lttng_ht_iter_get_node_str(&iter
);
2711 if (ua_chan_node
!= NULL
) {
2712 ua_chan
= caa_container_of(ua_chan_node
, struct ust_app_channel
, node
);
2716 ua_chan
= alloc_ust_app_channel(uchan
->name
, ua_sess
, &uchan
->attr
);
2717 if (ua_chan
== NULL
) {
2718 /* Only malloc can fail here */
2722 shadow_copy_channel(ua_chan
, uchan
);
2724 /* Set channel type. */
2725 ua_chan
->attr
.type
= type
;
2727 ret
= do_create_channel(app
, usess
, ua_sess
, ua_chan
);
2732 DBG2("UST app create channel %s for PID %d completed", ua_chan
->name
,
2735 /* Only add the channel if successful on the tracer side. */
2736 lttng_ht_add_unique_str(ua_sess
->channels
, &ua_chan
->node
);
2740 *ua_chanp
= ua_chan
;
2743 /* Everything went well. */
2747 delete_ust_app_channel(ua_chan
->is_sent
? app
->sock
: -1, ua_chan
, app
);
2753 * Create UST app event and create it on the tracer side.
2755 * Called with ust app session mutex held.
2758 int create_ust_app_event(struct ust_app_session
*ua_sess
,
2759 struct ust_app_channel
*ua_chan
, struct ltt_ust_event
*uevent
,
2760 struct ust_app
*app
)
2763 struct ust_app_event
*ua_event
;
2765 /* Get event node */
2766 ua_event
= find_ust_app_event(ua_chan
->events
, uevent
->attr
.name
,
2767 uevent
->filter
, uevent
->attr
.loglevel
, uevent
->exclusion
);
2768 if (ua_event
!= NULL
) {
2773 /* Does not exist so create one */
2774 ua_event
= alloc_ust_app_event(uevent
->attr
.name
, &uevent
->attr
);
2775 if (ua_event
== NULL
) {
2776 /* Only malloc can failed so something is really wrong */
2780 shadow_copy_event(ua_event
, uevent
);
2782 /* Create it on the tracer side */
2783 ret
= create_ust_event(app
, ua_sess
, ua_chan
, ua_event
);
2785 /* Not found previously means that it does not exist on the tracer */
2786 assert(ret
!= -LTTNG_UST_ERR_EXIST
);
2790 add_unique_ust_app_event(ua_chan
, ua_event
);
2792 DBG2("UST app create event %s for PID %d completed", ua_event
->name
,
2799 /* Valid. Calling here is already in a read side lock */
2800 delete_ust_app_event(-1, ua_event
);
2805 * Create UST metadata and open it on the tracer side.
2807 * Called with UST app session lock held and RCU read side lock.
2809 static int create_ust_app_metadata(struct ust_app_session
*ua_sess
,
2810 struct ust_app
*app
, struct consumer_output
*consumer
)
2813 struct ust_app_channel
*metadata
;
2814 struct consumer_socket
*socket
;
2815 struct ust_registry_session
*registry
;
2821 registry
= get_session_registry(ua_sess
);
2824 /* Metadata already exists for this registry or it was closed previously */
2825 if (registry
->metadata_key
|| registry
->metadata_closed
) {
2830 /* Allocate UST metadata */
2831 metadata
= alloc_ust_app_channel(DEFAULT_METADATA_NAME
, ua_sess
, NULL
);
2833 /* malloc() failed */
2838 memcpy(&metadata
->attr
, &ua_sess
->metadata_attr
, sizeof(metadata
->attr
));
2840 /* Need one fd for the channel. */
2841 ret
= lttng_fd_get(LTTNG_FD_APPS
, 1);
2843 ERR("Exhausted number of available FD upon create metadata");
2847 /* Get the right consumer socket for the application. */
2848 socket
= consumer_find_socket_by_bitness(app
->bits_per_long
, consumer
);
2851 goto error_consumer
;
2855 * Keep metadata key so we can identify it on the consumer side. Assign it
2856 * to the registry *before* we ask the consumer so we avoid the race of the
2857 * consumer requesting the metadata and the ask_channel call on our side
2858 * did not returned yet.
2860 registry
->metadata_key
= metadata
->key
;
2863 * Ask the metadata channel creation to the consumer. The metadata object
2864 * will be created by the consumer and kept their. However, the stream is
2865 * never added or monitored until we do a first push metadata to the
2868 ret
= ust_consumer_ask_channel(ua_sess
, metadata
, consumer
, socket
,
2871 /* Nullify the metadata key so we don't try to close it later on. */
2872 registry
->metadata_key
= 0;
2873 goto error_consumer
;
2877 * The setup command will make the metadata stream be sent to the relayd,
2878 * if applicable, and the thread managing the metadatas. This is important
2879 * because after this point, if an error occurs, the only way the stream
2880 * can be deleted is to be monitored in the consumer.
2882 ret
= consumer_setup_metadata(socket
, metadata
->key
);
2884 /* Nullify the metadata key so we don't try to close it later on. */
2885 registry
->metadata_key
= 0;
2886 goto error_consumer
;
2889 DBG2("UST metadata with key %" PRIu64
" created for app pid %d",
2890 metadata
->key
, app
->pid
);
2893 lttng_fd_put(LTTNG_FD_APPS
, 1);
2894 delete_ust_app_channel(-1, metadata
, app
);
2900 * Return ust app pointer or NULL if not found. RCU read side lock MUST be
2901 * acquired before calling this function.
2903 struct ust_app
*ust_app_find_by_pid(pid_t pid
)
2905 struct ust_app
*app
= NULL
;
2906 struct lttng_ht_node_ulong
*node
;
2907 struct lttng_ht_iter iter
;
2909 lttng_ht_lookup(ust_app_ht
, (void *)((unsigned long) pid
), &iter
);
2910 node
= lttng_ht_iter_get_node_ulong(&iter
);
2912 DBG2("UST app no found with pid %d", pid
);
2916 DBG2("Found UST app by pid %d", pid
);
2918 app
= caa_container_of(node
, struct ust_app
, pid_n
);
2925 * Allocate and init an UST app object using the registration information and
2926 * the command socket. This is called when the command socket connects to the
2929 * The object is returned on success or else NULL.
2931 struct ust_app
*ust_app_create(struct ust_register_msg
*msg
, int sock
)
2933 struct ust_app
*lta
= NULL
;
2938 DBG3("UST app creating application for socket %d", sock
);
2940 if ((msg
->bits_per_long
== 64 &&
2941 (uatomic_read(&ust_consumerd64_fd
) == -EINVAL
))
2942 || (msg
->bits_per_long
== 32 &&
2943 (uatomic_read(&ust_consumerd32_fd
) == -EINVAL
))) {
2944 ERR("Registration failed: application \"%s\" (pid: %d) has "
2945 "%d-bit long, but no consumerd for this size is available.\n",
2946 msg
->name
, msg
->pid
, msg
->bits_per_long
);
2950 lta
= zmalloc(sizeof(struct ust_app
));
2956 lta
->ppid
= msg
->ppid
;
2957 lta
->uid
= msg
->uid
;
2958 lta
->gid
= msg
->gid
;
2960 lta
->bits_per_long
= msg
->bits_per_long
;
2961 lta
->uint8_t_alignment
= msg
->uint8_t_alignment
;
2962 lta
->uint16_t_alignment
= msg
->uint16_t_alignment
;
2963 lta
->uint32_t_alignment
= msg
->uint32_t_alignment
;
2964 lta
->uint64_t_alignment
= msg
->uint64_t_alignment
;
2965 lta
->long_alignment
= msg
->long_alignment
;
2966 lta
->byte_order
= msg
->byte_order
;
2968 lta
->v_major
= msg
->major
;
2969 lta
->v_minor
= msg
->minor
;
2970 lta
->sessions
= lttng_ht_new(0, LTTNG_HT_TYPE_U64
);
2971 lta
->ust_objd
= lttng_ht_new(0, LTTNG_HT_TYPE_ULONG
);
2972 lta
->notify_sock
= -1;
2974 /* Copy name and make sure it's NULL terminated. */
2975 strncpy(lta
->name
, msg
->name
, sizeof(lta
->name
));
2976 lta
->name
[UST_APP_PROCNAME_LEN
] = '\0';
2979 * Before this can be called, when receiving the registration information,
2980 * the application compatibility is checked. So, at this point, the
2981 * application can work with this session daemon.
2983 lta
->compatible
= 1;
2985 lta
->pid
= msg
->pid
;
2986 lttng_ht_node_init_ulong(<a
->pid_n
, (unsigned long) lta
->pid
);
2988 lttng_ht_node_init_ulong(<a
->sock_n
, (unsigned long) lta
->sock
);
2990 CDS_INIT_LIST_HEAD(<a
->teardown_head
);
2997 * For a given application object, add it to every hash table.
2999 void ust_app_add(struct ust_app
*app
)
3002 assert(app
->notify_sock
>= 0);
3007 * On a re-registration, we want to kick out the previous registration of
3010 lttng_ht_add_replace_ulong(ust_app_ht
, &app
->pid_n
);
3013 * The socket _should_ be unique until _we_ call close. So, a add_unique
3014 * for the ust_app_ht_by_sock is used which asserts fail if the entry was
3015 * already in the table.
3017 lttng_ht_add_unique_ulong(ust_app_ht_by_sock
, &app
->sock_n
);
3019 /* Add application to the notify socket hash table. */
3020 lttng_ht_node_init_ulong(&app
->notify_sock_n
, app
->notify_sock
);
3021 lttng_ht_add_unique_ulong(ust_app_ht_by_notify_sock
, &app
->notify_sock_n
);
3023 DBG("App registered with pid:%d ppid:%d uid:%d gid:%d sock:%d name:%s "
3024 "notify_sock:%d (version %d.%d)", app
->pid
, app
->ppid
, app
->uid
,
3025 app
->gid
, app
->sock
, app
->name
, app
->notify_sock
, app
->v_major
,
3032 * Set the application version into the object.
3034 * Return 0 on success else a negative value either an errno code or a
3035 * LTTng-UST error code.
3037 int ust_app_version(struct ust_app
*app
)
3043 ret
= ustctl_tracer_version(app
->sock
, &app
->version
);
3045 if (ret
!= -LTTNG_UST_ERR_EXITING
&& ret
!= -EPIPE
) {
3046 ERR("UST app %d version failed with ret %d", app
->sock
, ret
);
3048 DBG3("UST app %d version failed. Application is dead", app
->sock
);
3056 * Unregister app by removing it from the global traceable app list and freeing
3059 * The socket is already closed at this point so no close to sock.
3061 void ust_app_unregister(int sock
)
3063 struct ust_app
*lta
;
3064 struct lttng_ht_node_ulong
*node
;
3065 struct lttng_ht_iter iter
;
3066 struct ust_app_session
*ua_sess
;
3071 /* Get the node reference for a call_rcu */
3072 lttng_ht_lookup(ust_app_ht_by_sock
, (void *)((unsigned long) sock
), &iter
);
3073 node
= lttng_ht_iter_get_node_ulong(&iter
);
3076 lta
= caa_container_of(node
, struct ust_app
, sock_n
);
3077 DBG("PID %d unregistering with sock %d", lta
->pid
, sock
);
3079 /* Remove application from PID hash table */
3080 ret
= lttng_ht_del(ust_app_ht_by_sock
, &iter
);
3084 * Remove application from notify hash table. The thread handling the
3085 * notify socket could have deleted the node so ignore on error because
3086 * either way it's valid. The close of that socket is handled by the other
3089 iter
.iter
.node
= <a
->notify_sock_n
.node
;
3090 (void) lttng_ht_del(ust_app_ht_by_notify_sock
, &iter
);
3093 * Ignore return value since the node might have been removed before by an
3094 * add replace during app registration because the PID can be reassigned by
3097 iter
.iter
.node
= <a
->pid_n
.node
;
3098 ret
= lttng_ht_del(ust_app_ht
, &iter
);
3100 DBG3("Unregister app by PID %d failed. This can happen on pid reuse",
3104 /* Remove sessions so they are not visible during deletion.*/
3105 cds_lfht_for_each_entry(lta
->sessions
->ht
, &iter
.iter
, ua_sess
,
3107 struct ust_registry_session
*registry
;
3109 ret
= lttng_ht_del(lta
->sessions
, &iter
);
3111 /* The session was already removed so scheduled for teardown. */
3116 * Add session to list for teardown. This is safe since at this point we
3117 * are the only one using this list.
3119 pthread_mutex_lock(&ua_sess
->lock
);
3122 * Normally, this is done in the delete session process which is
3123 * executed in the call rcu below. However, upon registration we can't
3124 * afford to wait for the grace period before pushing data or else the
3125 * data pending feature can race between the unregistration and stop
3126 * command where the data pending command is sent *before* the grace
3129 * The close metadata below nullifies the metadata pointer in the
3130 * session so the delete session will NOT push/close a second time.
3132 registry
= get_session_registry(ua_sess
);
3133 if (registry
&& !registry
->metadata_closed
) {
3134 /* Push metadata for application before freeing the application. */
3135 (void) push_metadata(registry
, ua_sess
->consumer
);
3138 * Don't ask to close metadata for global per UID buffers. Close
3139 * metadata only on destroy trace session in this case. Also, the
3140 * previous push metadata could have flag the metadata registry to
3141 * close so don't send a close command if closed.
3143 if (ua_sess
->buffer_type
!= LTTNG_BUFFER_PER_UID
&&
3144 !registry
->metadata_closed
) {
3145 /* And ask to close it for this session registry. */
3146 (void) close_metadata(registry
, ua_sess
->consumer
);
3150 cds_list_add(&ua_sess
->teardown_node
, <a
->teardown_head
);
3151 pthread_mutex_unlock(&ua_sess
->lock
);
3155 call_rcu(<a
->pid_n
.head
, delete_ust_app_rcu
);
3162 * Fill events array with all events name of all registered apps.
3164 int ust_app_list_events(struct lttng_event
**events
)
3167 size_t nbmem
, count
= 0;
3168 struct lttng_ht_iter iter
;
3169 struct ust_app
*app
;
3170 struct lttng_event
*tmp_event
;
3172 nbmem
= UST_APP_EVENT_LIST_SIZE
;
3173 tmp_event
= zmalloc(nbmem
* sizeof(struct lttng_event
));
3174 if (tmp_event
== NULL
) {
3175 PERROR("zmalloc ust app events");
3182 cds_lfht_for_each_entry(ust_app_ht
->ht
, &iter
.iter
, app
, pid_n
.node
) {
3183 struct lttng_ust_tracepoint_iter uiter
;
3185 health_code_update();
3187 if (!app
->compatible
) {
3189 * TODO: In time, we should notice the caller of this error by
3190 * telling him that this is a version error.
3194 handle
= ustctl_tracepoint_list(app
->sock
);
3196 if (handle
!= -EPIPE
&& handle
!= -LTTNG_UST_ERR_EXITING
) {
3197 ERR("UST app list events getting handle failed for app pid %d",
3203 while ((ret
= ustctl_tracepoint_list_get(app
->sock
, handle
,
3204 &uiter
)) != -LTTNG_UST_ERR_NOENT
) {
3205 /* Handle ustctl error. */
3207 if (ret
!= -LTTNG_UST_ERR_EXITING
&& ret
!= -EPIPE
) {
3208 ERR("UST app tp list get failed for app %d with ret %d",
3211 DBG3("UST app tp list get failed. Application is dead");
3213 * This is normal behavior, an application can die during the
3214 * creation process. Don't report an error so the execution can
3215 * continue normally. Continue normal execution.
3223 health_code_update();
3224 if (count
>= nbmem
) {
3225 /* In case the realloc fails, we free the memory */
3226 struct lttng_event
*new_tmp_event
;
3229 new_nbmem
= nbmem
<< 1;
3230 DBG2("Reallocating event list from %zu to %zu entries",
3232 new_tmp_event
= realloc(tmp_event
,
3233 new_nbmem
* sizeof(struct lttng_event
));
3234 if (new_tmp_event
== NULL
) {
3235 PERROR("realloc ust app events");
3240 /* Zero the new memory */
3241 memset(new_tmp_event
+ nbmem
, 0,
3242 (new_nbmem
- nbmem
) * sizeof(struct lttng_event
));
3244 tmp_event
= new_tmp_event
;
3246 memcpy(tmp_event
[count
].name
, uiter
.name
, LTTNG_UST_SYM_NAME_LEN
);
3247 tmp_event
[count
].loglevel
= uiter
.loglevel
;
3248 tmp_event
[count
].type
= (enum lttng_event_type
) LTTNG_UST_TRACEPOINT
;
3249 tmp_event
[count
].pid
= app
->pid
;
3250 tmp_event
[count
].enabled
= -1;
3256 *events
= tmp_event
;
3258 DBG2("UST app list events done (%zu events)", count
);
3263 health_code_update();
3268 * Fill events array with all events name of all registered apps.
3270 int ust_app_list_event_fields(struct lttng_event_field
**fields
)
3273 size_t nbmem
, count
= 0;
3274 struct lttng_ht_iter iter
;
3275 struct ust_app
*app
;
3276 struct lttng_event_field
*tmp_event
;
3278 nbmem
= UST_APP_EVENT_LIST_SIZE
;
3279 tmp_event
= zmalloc(nbmem
* sizeof(struct lttng_event_field
));
3280 if (tmp_event
== NULL
) {
3281 PERROR("zmalloc ust app event fields");
3288 cds_lfht_for_each_entry(ust_app_ht
->ht
, &iter
.iter
, app
, pid_n
.node
) {
3289 struct lttng_ust_field_iter uiter
;
3291 health_code_update();
3293 if (!app
->compatible
) {
3295 * TODO: In time, we should notice the caller of this error by
3296 * telling him that this is a version error.
3300 handle
= ustctl_tracepoint_field_list(app
->sock
);
3302 if (handle
!= -EPIPE
&& handle
!= -LTTNG_UST_ERR_EXITING
) {
3303 ERR("UST app list field getting handle failed for app pid %d",
3309 while ((ret
= ustctl_tracepoint_field_list_get(app
->sock
, handle
,
3310 &uiter
)) != -LTTNG_UST_ERR_NOENT
) {
3311 /* Handle ustctl error. */
3313 if (ret
!= -LTTNG_UST_ERR_EXITING
&& ret
!= -EPIPE
) {
3314 ERR("UST app tp list field failed for app %d with ret %d",
3317 DBG3("UST app tp list field failed. Application is dead");
3319 * This is normal behavior, an application can die during the
3320 * creation process. Don't report an error so the execution can
3321 * continue normally. Reset list and count for next app.
3329 health_code_update();
3330 if (count
>= nbmem
) {
3331 /* In case the realloc fails, we free the memory */
3332 struct lttng_event_field
*new_tmp_event
;
3335 new_nbmem
= nbmem
<< 1;
3336 DBG2("Reallocating event field list from %zu to %zu entries",
3338 new_tmp_event
= realloc(tmp_event
,
3339 new_nbmem
* sizeof(struct lttng_event_field
));
3340 if (new_tmp_event
== NULL
) {
3341 PERROR("realloc ust app event fields");
3346 /* Zero the new memory */
3347 memset(new_tmp_event
+ nbmem
, 0,
3348 (new_nbmem
- nbmem
) * sizeof(struct lttng_event_field
));
3350 tmp_event
= new_tmp_event
;
3353 memcpy(tmp_event
[count
].field_name
, uiter
.field_name
, LTTNG_UST_SYM_NAME_LEN
);
3354 /* Mapping between these enums matches 1 to 1. */
3355 tmp_event
[count
].type
= (enum lttng_event_field_type
) uiter
.type
;
3356 tmp_event
[count
].nowrite
= uiter
.nowrite
;
3358 memcpy(tmp_event
[count
].event
.name
, uiter
.event_name
, LTTNG_UST_SYM_NAME_LEN
);
3359 tmp_event
[count
].event
.loglevel
= uiter
.loglevel
;
3360 tmp_event
[count
].event
.type
= LTTNG_EVENT_TRACEPOINT
;
3361 tmp_event
[count
].event
.pid
= app
->pid
;
3362 tmp_event
[count
].event
.enabled
= -1;
3368 *fields
= tmp_event
;
3370 DBG2("UST app list event fields done (%zu events)", count
);
3375 health_code_update();
3380 * Free and clean all traceable apps of the global list.
3382 * Should _NOT_ be called with RCU read-side lock held.
3384 void ust_app_clean_list(void)
3387 struct ust_app
*app
;
3388 struct lttng_ht_iter iter
;
3390 DBG2("UST app cleaning registered apps hash table");
3394 cds_lfht_for_each_entry(ust_app_ht
->ht
, &iter
.iter
, app
, pid_n
.node
) {
3395 ret
= lttng_ht_del(ust_app_ht
, &iter
);
3397 call_rcu(&app
->pid_n
.head
, delete_ust_app_rcu
);
3400 /* Cleanup socket hash table */
3401 cds_lfht_for_each_entry(ust_app_ht_by_sock
->ht
, &iter
.iter
, app
,
3403 ret
= lttng_ht_del(ust_app_ht_by_sock
, &iter
);
3407 /* Cleanup notify socket hash table */
3408 cds_lfht_for_each_entry(ust_app_ht_by_notify_sock
->ht
, &iter
.iter
, app
,
3409 notify_sock_n
.node
) {
3410 ret
= lttng_ht_del(ust_app_ht_by_notify_sock
, &iter
);
3415 /* Destroy is done only when the ht is empty */
3416 ht_cleanup_push(ust_app_ht
);
3417 ht_cleanup_push(ust_app_ht_by_sock
);
3418 ht_cleanup_push(ust_app_ht_by_notify_sock
);
3422 * Init UST app hash table.
3424 void ust_app_ht_alloc(void)
3426 ust_app_ht
= lttng_ht_new(0, LTTNG_HT_TYPE_ULONG
);
3427 ust_app_ht_by_sock
= lttng_ht_new(0, LTTNG_HT_TYPE_ULONG
);
3428 ust_app_ht_by_notify_sock
= lttng_ht_new(0, LTTNG_HT_TYPE_ULONG
);
3432 * For a specific UST session, disable the channel for all registered apps.
3434 int ust_app_disable_channel_glb(struct ltt_ust_session
*usess
,
3435 struct ltt_ust_channel
*uchan
)
3438 struct lttng_ht_iter iter
;
3439 struct lttng_ht_node_str
*ua_chan_node
;
3440 struct ust_app
*app
;
3441 struct ust_app_session
*ua_sess
;
3442 struct ust_app_channel
*ua_chan
;
3444 if (usess
== NULL
|| uchan
== NULL
) {
3445 ERR("Disabling UST global channel with NULL values");
3450 DBG2("UST app disabling channel %s from global domain for session id %" PRIu64
,
3451 uchan
->name
, usess
->id
);
3455 /* For every registered applications */
3456 cds_lfht_for_each_entry(ust_app_ht
->ht
, &iter
.iter
, app
, pid_n
.node
) {
3457 struct lttng_ht_iter uiter
;
3458 if (!app
->compatible
) {
3460 * TODO: In time, we should notice the caller of this error by
3461 * telling him that this is a version error.
3465 ua_sess
= lookup_session_by_app(usess
, app
);
3466 if (ua_sess
== NULL
) {
3471 lttng_ht_lookup(ua_sess
->channels
, (void *)uchan
->name
, &uiter
);
3472 ua_chan_node
= lttng_ht_iter_get_node_str(&uiter
);
3473 /* If the session if found for the app, the channel must be there */
3474 assert(ua_chan_node
);
3476 ua_chan
= caa_container_of(ua_chan_node
, struct ust_app_channel
, node
);
3477 /* The channel must not be already disabled */
3478 assert(ua_chan
->enabled
== 1);
3480 /* Disable channel onto application */
3481 ret
= disable_ust_app_channel(ua_sess
, ua_chan
, app
);
3483 /* XXX: We might want to report this error at some point... */
3495 * For a specific UST session, enable the channel for all registered apps.
3497 int ust_app_enable_channel_glb(struct ltt_ust_session
*usess
,
3498 struct ltt_ust_channel
*uchan
)
3501 struct lttng_ht_iter iter
;
3502 struct ust_app
*app
;
3503 struct ust_app_session
*ua_sess
;
3505 if (usess
== NULL
|| uchan
== NULL
) {
3506 ERR("Adding UST global channel to NULL values");
3511 DBG2("UST app enabling channel %s to global domain for session id %" PRIu64
,
3512 uchan
->name
, usess
->id
);
3516 /* For every registered applications */
3517 cds_lfht_for_each_entry(ust_app_ht
->ht
, &iter
.iter
, app
, pid_n
.node
) {
3518 if (!app
->compatible
) {
3520 * TODO: In time, we should notice the caller of this error by
3521 * telling him that this is a version error.
3525 ua_sess
= lookup_session_by_app(usess
, app
);
3526 if (ua_sess
== NULL
) {
3530 /* Enable channel onto application */
3531 ret
= enable_ust_app_channel(ua_sess
, uchan
, app
);
3533 /* XXX: We might want to report this error at some point... */
3545 * Disable an event in a channel and for a specific session.
3547 int ust_app_disable_event_glb(struct ltt_ust_session
*usess
,
3548 struct ltt_ust_channel
*uchan
, struct ltt_ust_event
*uevent
)
3551 struct lttng_ht_iter iter
, uiter
;
3552 struct lttng_ht_node_str
*ua_chan_node
, *ua_event_node
;
3553 struct ust_app
*app
;
3554 struct ust_app_session
*ua_sess
;
3555 struct ust_app_channel
*ua_chan
;
3556 struct ust_app_event
*ua_event
;
3558 DBG("UST app disabling event %s for all apps in channel "
3559 "%s for session id %" PRIu64
,
3560 uevent
->attr
.name
, uchan
->name
, usess
->id
);
3564 /* For all registered applications */
3565 cds_lfht_for_each_entry(ust_app_ht
->ht
, &iter
.iter
, app
, pid_n
.node
) {
3566 if (!app
->compatible
) {
3568 * TODO: In time, we should notice the caller of this error by
3569 * telling him that this is a version error.
3573 ua_sess
= lookup_session_by_app(usess
, app
);
3574 if (ua_sess
== NULL
) {
3579 /* Lookup channel in the ust app session */
3580 lttng_ht_lookup(ua_sess
->channels
, (void *)uchan
->name
, &uiter
);
3581 ua_chan_node
= lttng_ht_iter_get_node_str(&uiter
);
3582 if (ua_chan_node
== NULL
) {
3583 DBG2("Channel %s not found in session id %" PRIu64
" for app pid %d."
3584 "Skipping", uchan
->name
, usess
->id
, app
->pid
);
3587 ua_chan
= caa_container_of(ua_chan_node
, struct ust_app_channel
, node
);
3589 lttng_ht_lookup(ua_chan
->events
, (void *)uevent
->attr
.name
, &uiter
);
3590 ua_event_node
= lttng_ht_iter_get_node_str(&uiter
);
3591 if (ua_event_node
== NULL
) {
3592 DBG2("Event %s not found in channel %s for app pid %d."
3593 "Skipping", uevent
->attr
.name
, uchan
->name
, app
->pid
);
3596 ua_event
= caa_container_of(ua_event_node
, struct ust_app_event
, node
);
3598 ret
= disable_ust_app_event(ua_sess
, ua_event
, app
);
3600 /* XXX: Report error someday... */
3611 * For a specific UST session, create the channel for all registered apps.
3613 int ust_app_create_channel_glb(struct ltt_ust_session
*usess
,
3614 struct ltt_ust_channel
*uchan
)
3616 int ret
= 0, created
;
3617 struct lttng_ht_iter iter
;
3618 struct ust_app
*app
;
3619 struct ust_app_session
*ua_sess
= NULL
;
3621 /* Very wrong code flow */
3625 DBG2("UST app adding channel %s to UST domain for session id %" PRIu64
,
3626 uchan
->name
, usess
->id
);
3630 /* For every registered applications */
3631 cds_lfht_for_each_entry(ust_app_ht
->ht
, &iter
.iter
, app
, pid_n
.node
) {
3632 if (!app
->compatible
) {
3634 * TODO: In time, we should notice the caller of this error by
3635 * telling him that this is a version error.
3640 * Create session on the tracer side and add it to app session HT. Note
3641 * that if session exist, it will simply return a pointer to the ust
3644 ret
= create_ust_app_session(usess
, app
, &ua_sess
, &created
);
3649 * The application's socket is not valid. Either a bad socket
3650 * or a timeout on it. We can't inform the caller that for a
3651 * specific app, the session failed so lets continue here.
3656 goto error_rcu_unlock
;
3661 pthread_mutex_lock(&ua_sess
->lock
);
3662 if (!strncmp(uchan
->name
, DEFAULT_METADATA_NAME
,
3663 sizeof(uchan
->name
))) {
3664 copy_channel_attr_to_ustctl(&ua_sess
->metadata_attr
, &uchan
->attr
);
3667 /* Create channel onto application. We don't need the chan ref. */
3668 ret
= create_ust_app_channel(ua_sess
, uchan
, app
,
3669 LTTNG_UST_CHAN_PER_CPU
, usess
, NULL
);
3671 pthread_mutex_unlock(&ua_sess
->lock
);
3673 if (ret
== -ENOMEM
) {
3674 /* No more memory is a fatal error. Stop right now. */
3675 goto error_rcu_unlock
;
3677 /* Cleanup the created session if it's the case. */
3679 destroy_app_session(app
, ua_sess
);
3690 * Enable event for a specific session and channel on the tracer.
3692 int ust_app_enable_event_glb(struct ltt_ust_session
*usess
,
3693 struct ltt_ust_channel
*uchan
, struct ltt_ust_event
*uevent
)
3696 struct lttng_ht_iter iter
, uiter
;
3697 struct lttng_ht_node_str
*ua_chan_node
;
3698 struct ust_app
*app
;
3699 struct ust_app_session
*ua_sess
;
3700 struct ust_app_channel
*ua_chan
;
3701 struct ust_app_event
*ua_event
;
3703 DBG("UST app enabling event %s for all apps for session id %" PRIu64
,
3704 uevent
->attr
.name
, usess
->id
);
3707 * NOTE: At this point, this function is called only if the session and
3708 * channel passed are already created for all apps. and enabled on the
3714 /* For all registered applications */
3715 cds_lfht_for_each_entry(ust_app_ht
->ht
, &iter
.iter
, app
, pid_n
.node
) {
3716 if (!app
->compatible
) {
3718 * TODO: In time, we should notice the caller of this error by
3719 * telling him that this is a version error.
3723 ua_sess
= lookup_session_by_app(usess
, app
);
3725 /* The application has problem or is probably dead. */
3729 pthread_mutex_lock(&ua_sess
->lock
);
3731 /* Lookup channel in the ust app session */
3732 lttng_ht_lookup(ua_sess
->channels
, (void *)uchan
->name
, &uiter
);
3733 ua_chan_node
= lttng_ht_iter_get_node_str(&uiter
);
3734 /* If the channel is not found, there is a code flow error */
3735 assert(ua_chan_node
);
3737 ua_chan
= caa_container_of(ua_chan_node
, struct ust_app_channel
, node
);
3739 /* Get event node */
3740 ua_event
= find_ust_app_event(ua_chan
->events
, uevent
->attr
.name
,
3741 uevent
->filter
, uevent
->attr
.loglevel
, uevent
->exclusion
);
3742 if (ua_event
== NULL
) {
3743 DBG3("UST app enable event %s not found for app PID %d."
3744 "Skipping app", uevent
->attr
.name
, app
->pid
);
3748 ret
= enable_ust_app_event(ua_sess
, ua_event
, app
);
3750 pthread_mutex_unlock(&ua_sess
->lock
);
3754 pthread_mutex_unlock(&ua_sess
->lock
);
3763 * For a specific existing UST session and UST channel, creates the event for
3764 * all registered apps.
3766 int ust_app_create_event_glb(struct ltt_ust_session
*usess
,
3767 struct ltt_ust_channel
*uchan
, struct ltt_ust_event
*uevent
)
3770 struct lttng_ht_iter iter
, uiter
;
3771 struct lttng_ht_node_str
*ua_chan_node
;
3772 struct ust_app
*app
;
3773 struct ust_app_session
*ua_sess
;
3774 struct ust_app_channel
*ua_chan
;
3776 DBG("UST app creating event %s for all apps for session id %" PRIu64
,
3777 uevent
->attr
.name
, usess
->id
);
3781 /* For all registered applications */
3782 cds_lfht_for_each_entry(ust_app_ht
->ht
, &iter
.iter
, app
, pid_n
.node
) {
3783 if (!app
->compatible
) {
3785 * TODO: In time, we should notice the caller of this error by
3786 * telling him that this is a version error.
3790 ua_sess
= lookup_session_by_app(usess
, app
);
3792 /* The application has problem or is probably dead. */
3796 pthread_mutex_lock(&ua_sess
->lock
);
3797 /* Lookup channel in the ust app session */
3798 lttng_ht_lookup(ua_sess
->channels
, (void *)uchan
->name
, &uiter
);
3799 ua_chan_node
= lttng_ht_iter_get_node_str(&uiter
);
3800 /* If the channel is not found, there is a code flow error */
3801 assert(ua_chan_node
);
3803 ua_chan
= caa_container_of(ua_chan_node
, struct ust_app_channel
, node
);
3805 ret
= create_ust_app_event(ua_sess
, ua_chan
, uevent
, app
);
3806 pthread_mutex_unlock(&ua_sess
->lock
);
3808 if (ret
!= -LTTNG_UST_ERR_EXIST
) {
3809 /* Possible value at this point: -ENOMEM. If so, we stop! */
3812 DBG2("UST app event %s already exist on app PID %d",
3813 uevent
->attr
.name
, app
->pid
);
3824 * Start tracing for a specific UST session and app.
3827 int ust_app_start_trace(struct ltt_ust_session
*usess
, struct ust_app
*app
)
3830 struct ust_app_session
*ua_sess
;
3832 DBG("Starting tracing for ust app pid %d", app
->pid
);
3836 if (!app
->compatible
) {
3840 ua_sess
= lookup_session_by_app(usess
, app
);
3841 if (ua_sess
== NULL
) {
3842 /* The session is in teardown process. Ignore and continue. */
3846 pthread_mutex_lock(&ua_sess
->lock
);
3848 /* Upon restart, we skip the setup, already done */
3849 if (ua_sess
->started
) {
3853 /* Create directories if consumer is LOCAL and has a path defined. */
3854 if (usess
->consumer
->type
== CONSUMER_DST_LOCAL
&&
3855 strlen(usess
->consumer
->dst
.trace_path
) > 0) {
3856 ret
= run_as_mkdir_recursive(usess
->consumer
->dst
.trace_path
,
3857 S_IRWXU
| S_IRWXG
, ua_sess
->euid
, ua_sess
->egid
);
3859 if (ret
!= -EEXIST
) {
3860 ERR("Trace directory creation error");
3867 * Create the metadata for the application. This returns gracefully if a
3868 * metadata was already set for the session.
3870 ret
= create_ust_app_metadata(ua_sess
, app
, usess
->consumer
);
3875 health_code_update();
3878 /* This start the UST tracing */
3879 ret
= ustctl_start_session(app
->sock
, ua_sess
->handle
);
3881 if (ret
!= -EPIPE
&& ret
!= -LTTNG_UST_ERR_EXITING
) {
3882 ERR("Error starting tracing for app pid: %d (ret: %d)",
3885 DBG("UST app start session failed. Application is dead.");
3887 * This is normal behavior, an application can die during the
3888 * creation process. Don't report an error so the execution can
3889 * continue normally.
3891 pthread_mutex_unlock(&ua_sess
->lock
);
3897 /* Indicate that the session has been started once */
3898 ua_sess
->started
= 1;
3900 pthread_mutex_unlock(&ua_sess
->lock
);
3902 health_code_update();
3904 /* Quiescent wait after starting trace */
3905 ret
= ustctl_wait_quiescent(app
->sock
);
3906 if (ret
< 0 && ret
!= -EPIPE
&& ret
!= -LTTNG_UST_ERR_EXITING
) {
3907 ERR("UST app wait quiescent failed for app pid %d ret %d",
3913 health_code_update();
3917 pthread_mutex_unlock(&ua_sess
->lock
);
3919 health_code_update();
3924 * Stop tracing for a specific UST session and app.
3927 int ust_app_stop_trace(struct ltt_ust_session
*usess
, struct ust_app
*app
)
3930 struct ust_app_session
*ua_sess
;
3931 struct ust_registry_session
*registry
;
3933 DBG("Stopping tracing for ust app pid %d", app
->pid
);
3937 if (!app
->compatible
) {
3938 goto end_no_session
;
3941 ua_sess
= lookup_session_by_app(usess
, app
);
3942 if (ua_sess
== NULL
) {
3943 goto end_no_session
;
3946 pthread_mutex_lock(&ua_sess
->lock
);
3949 * If started = 0, it means that stop trace has been called for a session
3950 * that was never started. It's possible since we can have a fail start
3951 * from either the application manager thread or the command thread. Simply
3952 * indicate that this is a stop error.
3954 if (!ua_sess
->started
) {
3955 goto error_rcu_unlock
;
3958 health_code_update();
3960 /* This inhibits UST tracing */
3961 ret
= ustctl_stop_session(app
->sock
, ua_sess
->handle
);
3963 if (ret
!= -EPIPE
&& ret
!= -LTTNG_UST_ERR_EXITING
) {
3964 ERR("Error stopping tracing for app pid: %d (ret: %d)",
3967 DBG("UST app stop session failed. Application is dead.");
3969 * This is normal behavior, an application can die during the
3970 * creation process. Don't report an error so the execution can
3971 * continue normally.
3975 goto error_rcu_unlock
;
3978 health_code_update();
3980 /* Quiescent wait after stopping trace */
3981 ret
= ustctl_wait_quiescent(app
->sock
);
3982 if (ret
< 0 && ret
!= -EPIPE
&& ret
!= -LTTNG_UST_ERR_EXITING
) {
3983 ERR("UST app wait quiescent failed for app pid %d ret %d",
3987 health_code_update();
3989 registry
= get_session_registry(ua_sess
);
3992 if (!registry
->metadata_closed
) {
3993 /* Push metadata for application before freeing the application. */
3994 (void) push_metadata(registry
, ua_sess
->consumer
);
3998 pthread_mutex_unlock(&ua_sess
->lock
);
4001 health_code_update();
4005 pthread_mutex_unlock(&ua_sess
->lock
);
4007 health_code_update();
4012 * Flush buffers for a specific UST session and app.
4015 int ust_app_flush_trace(struct ltt_ust_session
*usess
, struct ust_app
*app
)
4018 struct lttng_ht_iter iter
;
4019 struct ust_app_session
*ua_sess
;
4020 struct ust_app_channel
*ua_chan
;
4022 DBG("Flushing buffers for ust app pid %d", app
->pid
);
4026 if (!app
->compatible
) {
4027 goto end_no_session
;
4030 ua_sess
= lookup_session_by_app(usess
, app
);
4031 if (ua_sess
== NULL
) {
4032 goto end_no_session
;
4035 pthread_mutex_lock(&ua_sess
->lock
);
4037 health_code_update();
4039 /* Flushing buffers */
4040 cds_lfht_for_each_entry(ua_sess
->channels
->ht
, &iter
.iter
, ua_chan
,
4042 health_code_update();
4043 assert(ua_chan
->is_sent
);
4044 ret
= ustctl_sock_flush_buffer(app
->sock
, ua_chan
->obj
);
4046 if (ret
!= -EPIPE
&& ret
!= -LTTNG_UST_ERR_EXITING
) {
4047 ERR("UST app PID %d channel %s flush failed with ret %d",
4048 app
->pid
, ua_chan
->name
, ret
);
4050 DBG3("UST app failed to flush %s. Application is dead.",
4053 * This is normal behavior, an application can die during the
4054 * creation process. Don't report an error so the execution can
4055 * continue normally.
4058 /* Continuing flushing all buffers */
4063 health_code_update();
4065 pthread_mutex_unlock(&ua_sess
->lock
);
4068 health_code_update();
4073 * Destroy a specific UST session in apps.
4075 static int destroy_trace(struct ltt_ust_session
*usess
, struct ust_app
*app
)
4078 struct ust_app_session
*ua_sess
;
4079 struct lttng_ht_iter iter
;
4080 struct lttng_ht_node_u64
*node
;
4082 DBG("Destroy tracing for ust app pid %d", app
->pid
);
4086 if (!app
->compatible
) {
4090 __lookup_session_by_app(usess
, app
, &iter
);
4091 node
= lttng_ht_iter_get_node_u64(&iter
);
4093 /* Session is being or is deleted. */
4096 ua_sess
= caa_container_of(node
, struct ust_app_session
, node
);
4098 health_code_update();
4099 destroy_app_session(app
, ua_sess
);
4101 health_code_update();
4103 /* Quiescent wait after stopping trace */
4104 ret
= ustctl_wait_quiescent(app
->sock
);
4105 if (ret
< 0 && ret
!= -EPIPE
&& ret
!= -LTTNG_UST_ERR_EXITING
) {
4106 ERR("UST app wait quiescent failed for app pid %d ret %d",
4111 health_code_update();
4116 * Start tracing for the UST session.
4118 int ust_app_start_trace_all(struct ltt_ust_session
*usess
)
4121 struct lttng_ht_iter iter
;
4122 struct ust_app
*app
;
4124 DBG("Starting all UST traces");
4128 cds_lfht_for_each_entry(ust_app_ht
->ht
, &iter
.iter
, app
, pid_n
.node
) {
4129 ret
= ust_app_start_trace(usess
, app
);
4131 /* Continue to next apps even on error */
4142 * Start tracing for the UST session.
4144 int ust_app_stop_trace_all(struct ltt_ust_session
*usess
)
4147 struct lttng_ht_iter iter
;
4148 struct ust_app
*app
;
4150 DBG("Stopping all UST traces");
4154 cds_lfht_for_each_entry(ust_app_ht
->ht
, &iter
.iter
, app
, pid_n
.node
) {
4155 ret
= ust_app_stop_trace(usess
, app
);
4157 /* Continue to next apps even on error */
4162 /* Flush buffers and push metadata (for UID buffers). */
4163 switch (usess
->buffer_type
) {
4164 case LTTNG_BUFFER_PER_UID
:
4166 struct buffer_reg_uid
*reg
;
4168 /* Flush all per UID buffers associated to that session. */
4169 cds_list_for_each_entry(reg
, &usess
->buffer_reg_uid_list
, lnode
) {
4170 struct ust_registry_session
*ust_session_reg
;
4171 struct buffer_reg_channel
*reg_chan
;
4172 struct consumer_socket
*socket
;
4174 /* Get consumer socket to use to push the metadata.*/
4175 socket
= consumer_find_socket_by_bitness(reg
->bits_per_long
,
4178 /* Ignore request if no consumer is found for the session. */
4182 cds_lfht_for_each_entry(reg
->registry
->channels
->ht
, &iter
.iter
,
4183 reg_chan
, node
.node
) {
4185 * The following call will print error values so the return
4186 * code is of little importance because whatever happens, we
4187 * have to try them all.
4189 (void) consumer_flush_channel(socket
, reg_chan
->consumer_key
);
4192 ust_session_reg
= reg
->registry
->reg
.ust
;
4193 if (!ust_session_reg
->metadata_closed
) {
4194 /* Push metadata. */
4195 (void) push_metadata(ust_session_reg
, usess
->consumer
);
4201 case LTTNG_BUFFER_PER_PID
:
4202 cds_lfht_for_each_entry(ust_app_ht
->ht
, &iter
.iter
, app
, pid_n
.node
) {
4203 ret
= ust_app_flush_trace(usess
, app
);
4205 /* Continue to next apps even on error */
4221 * Destroy app UST session.
4223 int ust_app_destroy_trace_all(struct ltt_ust_session
*usess
)
4226 struct lttng_ht_iter iter
;
4227 struct ust_app
*app
;
4229 DBG("Destroy all UST traces");
4233 cds_lfht_for_each_entry(ust_app_ht
->ht
, &iter
.iter
, app
, pid_n
.node
) {
4234 ret
= destroy_trace(usess
, app
);
4236 /* Continue to next apps even on error */
4247 * Add channels/events from UST global domain to registered apps at sock.
4249 void ust_app_global_update(struct ltt_ust_session
*usess
, int sock
)
4252 struct lttng_ht_iter iter
, uiter
;
4253 struct ust_app
*app
;
4254 struct ust_app_session
*ua_sess
= NULL
;
4255 struct ust_app_channel
*ua_chan
;
4256 struct ust_app_event
*ua_event
;
4257 struct ust_app_ctx
*ua_ctx
;
4262 DBG2("UST app global update for app sock %d for session id %" PRIu64
, sock
,
4267 app
= ust_app_find_by_sock(sock
);
4270 * Application can be unregistered before so this is possible hence
4271 * simply stopping the update.
4273 DBG3("UST app update failed to find app sock %d", sock
);
4277 if (!app
->compatible
) {
4281 ret
= create_ust_app_session(usess
, app
, &ua_sess
, NULL
);
4283 /* Tracer is probably gone or ENOMEM. */
4288 pthread_mutex_lock(&ua_sess
->lock
);
4291 * We can iterate safely here over all UST app session since the create ust
4292 * app session above made a shadow copy of the UST global domain from the
4295 cds_lfht_for_each_entry(ua_sess
->channels
->ht
, &iter
.iter
, ua_chan
,
4297 ret
= do_create_channel(app
, usess
, ua_sess
, ua_chan
);
4300 * Stop everything. On error, the application failed, no more
4301 * file descriptor are available or ENOMEM so stopping here is
4302 * the only thing we can do for now.
4308 * Add context using the list so they are enabled in the same order the
4311 cds_list_for_each_entry(ua_ctx
, &ua_chan
->ctx_list
, list
) {
4312 ret
= create_ust_channel_context(ua_chan
, ua_ctx
, app
);
4319 /* For each events */
4320 cds_lfht_for_each_entry(ua_chan
->events
->ht
, &uiter
.iter
, ua_event
,
4322 ret
= create_ust_event(app
, ua_sess
, ua_chan
, ua_event
);
4329 pthread_mutex_unlock(&ua_sess
->lock
);
4331 if (usess
->active
) {
4332 ret
= ust_app_start_trace(usess
, app
);
4337 DBG2("UST trace started for app pid %d", app
->pid
);
4340 /* Everything went well at this point. */
4345 pthread_mutex_unlock(&ua_sess
->lock
);
4348 destroy_app_session(app
, ua_sess
);
4355 * Add context to a specific channel for global UST domain.
4357 int ust_app_add_ctx_channel_glb(struct ltt_ust_session
*usess
,
4358 struct ltt_ust_channel
*uchan
, struct ltt_ust_context
*uctx
)
4361 struct lttng_ht_node_str
*ua_chan_node
;
4362 struct lttng_ht_iter iter
, uiter
;
4363 struct ust_app_channel
*ua_chan
= NULL
;
4364 struct ust_app_session
*ua_sess
;
4365 struct ust_app
*app
;
4369 cds_lfht_for_each_entry(ust_app_ht
->ht
, &iter
.iter
, app
, pid_n
.node
) {
4370 if (!app
->compatible
) {
4372 * TODO: In time, we should notice the caller of this error by
4373 * telling him that this is a version error.
4377 ua_sess
= lookup_session_by_app(usess
, app
);
4378 if (ua_sess
== NULL
) {
4382 pthread_mutex_lock(&ua_sess
->lock
);
4383 /* Lookup channel in the ust app session */
4384 lttng_ht_lookup(ua_sess
->channels
, (void *)uchan
->name
, &uiter
);
4385 ua_chan_node
= lttng_ht_iter_get_node_str(&uiter
);
4386 if (ua_chan_node
== NULL
) {
4389 ua_chan
= caa_container_of(ua_chan_node
, struct ust_app_channel
,
4391 ret
= create_ust_app_channel_context(ua_sess
, ua_chan
, &uctx
->ctx
, app
);
4396 pthread_mutex_unlock(&ua_sess
->lock
);
4404 * Enable event for a channel from a UST session for a specific PID.
4406 int ust_app_enable_event_pid(struct ltt_ust_session
*usess
,
4407 struct ltt_ust_channel
*uchan
, struct ltt_ust_event
*uevent
, pid_t pid
)
4410 struct lttng_ht_iter iter
;
4411 struct lttng_ht_node_str
*ua_chan_node
;
4412 struct ust_app
*app
;
4413 struct ust_app_session
*ua_sess
;
4414 struct ust_app_channel
*ua_chan
;
4415 struct ust_app_event
*ua_event
;
4417 DBG("UST app enabling event %s for PID %d", uevent
->attr
.name
, pid
);
4421 app
= ust_app_find_by_pid(pid
);
4423 ERR("UST app enable event per PID %d not found", pid
);
4428 if (!app
->compatible
) {
4433 ua_sess
= lookup_session_by_app(usess
, app
);
4435 /* The application has problem or is probably dead. */
4440 pthread_mutex_lock(&ua_sess
->lock
);
4441 /* Lookup channel in the ust app session */
4442 lttng_ht_lookup(ua_sess
->channels
, (void *)uchan
->name
, &iter
);
4443 ua_chan_node
= lttng_ht_iter_get_node_str(&iter
);
4444 /* If the channel is not found, there is a code flow error */
4445 assert(ua_chan_node
);
4447 ua_chan
= caa_container_of(ua_chan_node
, struct ust_app_channel
, node
);
4449 ua_event
= find_ust_app_event(ua_chan
->events
, uevent
->attr
.name
,
4450 uevent
->filter
, uevent
->attr
.loglevel
, uevent
->exclusion
);
4451 if (ua_event
== NULL
) {
4452 ret
= create_ust_app_event(ua_sess
, ua_chan
, uevent
, app
);
4457 ret
= enable_ust_app_event(ua_sess
, ua_event
, app
);
4464 pthread_mutex_unlock(&ua_sess
->lock
);
4471 * Calibrate registered applications.
4473 int ust_app_calibrate_glb(struct lttng_ust_calibrate
*calibrate
)
4476 struct lttng_ht_iter iter
;
4477 struct ust_app
*app
;
4481 cds_lfht_for_each_entry(ust_app_ht
->ht
, &iter
.iter
, app
, pid_n
.node
) {
4482 if (!app
->compatible
) {
4484 * TODO: In time, we should notice the caller of this error by
4485 * telling him that this is a version error.
4490 health_code_update();
4492 ret
= ustctl_calibrate(app
->sock
, calibrate
);
4496 /* Means that it's not implemented on the tracer side. */
4500 DBG2("Calibrate app PID %d returned with error %d",
4507 DBG("UST app global domain calibration finished");
4511 health_code_update();
4517 * Receive registration and populate the given msg structure.
4519 * On success return 0 else a negative value returned by the ustctl call.
4521 int ust_app_recv_registration(int sock
, struct ust_register_msg
*msg
)
4524 uint32_t pid
, ppid
, uid
, gid
;
4528 ret
= ustctl_recv_reg_msg(sock
, &msg
->type
, &msg
->major
, &msg
->minor
,
4529 &pid
, &ppid
, &uid
, &gid
,
4530 &msg
->bits_per_long
,
4531 &msg
->uint8_t_alignment
,
4532 &msg
->uint16_t_alignment
,
4533 &msg
->uint32_t_alignment
,
4534 &msg
->uint64_t_alignment
,
4535 &msg
->long_alignment
,
4542 case LTTNG_UST_ERR_EXITING
:
4543 DBG3("UST app recv reg message failed. Application died");
4545 case LTTNG_UST_ERR_UNSUP_MAJOR
:
4546 ERR("UST app recv reg unsupported version %d.%d. Supporting %d.%d",
4547 msg
->major
, msg
->minor
, LTTNG_UST_ABI_MAJOR_VERSION
,
4548 LTTNG_UST_ABI_MINOR_VERSION
);
4551 ERR("UST app recv reg message failed with ret %d", ret
);
4556 msg
->pid
= (pid_t
) pid
;
4557 msg
->ppid
= (pid_t
) ppid
;
4558 msg
->uid
= (uid_t
) uid
;
4559 msg
->gid
= (gid_t
) gid
;
4566 * Return a ust app channel object using the application object and the channel
4567 * object descriptor has a key. If not found, NULL is returned. A RCU read side
4568 * lock MUST be acquired before calling this function.
4570 static struct ust_app_channel
*find_channel_by_objd(struct ust_app
*app
,
4573 struct lttng_ht_node_ulong
*node
;
4574 struct lttng_ht_iter iter
;
4575 struct ust_app_channel
*ua_chan
= NULL
;
4579 lttng_ht_lookup(app
->ust_objd
, (void *)((unsigned long) objd
), &iter
);
4580 node
= lttng_ht_iter_get_node_ulong(&iter
);
4582 DBG2("UST app channel find by objd %d not found", objd
);
4586 ua_chan
= caa_container_of(node
, struct ust_app_channel
, ust_objd_node
);
4593 * Reply to a register channel notification from an application on the notify
4594 * socket. The channel metadata is also created.
4596 * The session UST registry lock is acquired in this function.
4598 * On success 0 is returned else a negative value.
4600 static int reply_ust_register_channel(int sock
, int sobjd
, int cobjd
,
4601 size_t nr_fields
, struct ustctl_field
*fields
)
4603 int ret
, ret_code
= 0;
4604 uint32_t chan_id
, reg_count
;
4605 uint64_t chan_reg_key
;
4606 enum ustctl_channel_header type
;
4607 struct ust_app
*app
;
4608 struct ust_app_channel
*ua_chan
;
4609 struct ust_app_session
*ua_sess
;
4610 struct ust_registry_session
*registry
;
4611 struct ust_registry_channel
*chan_reg
;
4615 /* Lookup application. If not found, there is a code flow error. */
4616 app
= find_app_by_notify_sock(sock
);
4618 DBG("Application socket %d is being teardown. Abort event notify",
4622 goto error_rcu_unlock
;
4625 /* Lookup channel by UST object descriptor. */
4626 ua_chan
= find_channel_by_objd(app
, cobjd
);
4628 DBG("Application channel is being teardown. Abort event notify");
4631 goto error_rcu_unlock
;
4634 assert(ua_chan
->session
);
4635 ua_sess
= ua_chan
->session
;
4637 /* Get right session registry depending on the session buffer type. */
4638 registry
= get_session_registry(ua_sess
);
4641 /* Depending on the buffer type, a different channel key is used. */
4642 if (ua_sess
->buffer_type
== LTTNG_BUFFER_PER_UID
) {
4643 chan_reg_key
= ua_chan
->tracing_channel_id
;
4645 chan_reg_key
= ua_chan
->key
;
4648 pthread_mutex_lock(®istry
->lock
);
4650 chan_reg
= ust_registry_channel_find(registry
, chan_reg_key
);
4653 if (!chan_reg
->register_done
) {
4654 reg_count
= ust_registry_get_event_count(chan_reg
);
4655 if (reg_count
< 31) {
4656 type
= USTCTL_CHANNEL_HEADER_COMPACT
;
4658 type
= USTCTL_CHANNEL_HEADER_LARGE
;
4661 chan_reg
->nr_ctx_fields
= nr_fields
;
4662 chan_reg
->ctx_fields
= fields
;
4663 chan_reg
->header_type
= type
;
4665 /* Get current already assigned values. */
4666 type
= chan_reg
->header_type
;
4668 /* Set to NULL so the error path does not do a double free. */
4671 /* Channel id is set during the object creation. */
4672 chan_id
= chan_reg
->chan_id
;
4674 /* Append to metadata */
4675 if (!chan_reg
->metadata_dumped
) {
4676 ret_code
= ust_metadata_channel_statedump(registry
, chan_reg
);
4678 ERR("Error appending channel metadata (errno = %d)", ret_code
);
4684 DBG3("UST app replying to register channel key %" PRIu64
4685 " with id %u, type: %d, ret: %d", chan_reg_key
, chan_id
, type
,
4688 ret
= ustctl_reply_register_channel(sock
, chan_id
, type
, ret_code
);
4690 if (ret
!= -EPIPE
&& ret
!= -LTTNG_UST_ERR_EXITING
) {
4691 ERR("UST app reply channel failed with ret %d", ret
);
4693 DBG3("UST app reply channel failed. Application died");
4698 /* This channel registry registration is completed. */
4699 chan_reg
->register_done
= 1;
4702 pthread_mutex_unlock(®istry
->lock
);
4712 * Add event to the UST channel registry. When the event is added to the
4713 * registry, the metadata is also created. Once done, this replies to the
4714 * application with the appropriate error code.
4716 * The session UST registry lock is acquired in the function.
4718 * On success 0 is returned else a negative value.
4720 static int add_event_ust_registry(int sock
, int sobjd
, int cobjd
, char *name
,
4721 char *sig
, size_t nr_fields
, struct ustctl_field
*fields
, int loglevel
,
4722 char *model_emf_uri
)
4725 uint32_t event_id
= 0;
4726 uint64_t chan_reg_key
;
4727 struct ust_app
*app
;
4728 struct ust_app_channel
*ua_chan
;
4729 struct ust_app_session
*ua_sess
;
4730 struct ust_registry_session
*registry
;
4734 /* Lookup application. If not found, there is a code flow error. */
4735 app
= find_app_by_notify_sock(sock
);
4737 DBG("Application socket %d is being teardown. Abort event notify",
4742 free(model_emf_uri
);
4743 goto error_rcu_unlock
;
4746 /* Lookup channel by UST object descriptor. */
4747 ua_chan
= find_channel_by_objd(app
, cobjd
);
4749 DBG("Application channel is being teardown. Abort event notify");
4753 free(model_emf_uri
);
4754 goto error_rcu_unlock
;
4757 assert(ua_chan
->session
);
4758 ua_sess
= ua_chan
->session
;
4760 registry
= get_session_registry(ua_sess
);
4763 if (ua_sess
->buffer_type
== LTTNG_BUFFER_PER_UID
) {
4764 chan_reg_key
= ua_chan
->tracing_channel_id
;
4766 chan_reg_key
= ua_chan
->key
;
4769 pthread_mutex_lock(®istry
->lock
);
4772 * From this point on, this call acquires the ownership of the sig, fields
4773 * and model_emf_uri meaning any free are done inside it if needed. These
4774 * three variables MUST NOT be read/write after this.
4776 ret_code
= ust_registry_create_event(registry
, chan_reg_key
,
4777 sobjd
, cobjd
, name
, sig
, nr_fields
, fields
, loglevel
,
4778 model_emf_uri
, ua_sess
->buffer_type
, &event_id
,
4782 * The return value is returned to ustctl so in case of an error, the
4783 * application can be notified. In case of an error, it's important not to
4784 * return a negative error or else the application will get closed.
4786 ret
= ustctl_reply_register_event(sock
, event_id
, ret_code
);
4788 if (ret
!= -EPIPE
&& ret
!= -LTTNG_UST_ERR_EXITING
) {
4789 ERR("UST app reply event failed with ret %d", ret
);
4791 DBG3("UST app reply event failed. Application died");
4794 * No need to wipe the create event since the application socket will
4795 * get close on error hence cleaning up everything by itself.
4800 DBG3("UST registry event %s with id %" PRId32
" added successfully",
4804 pthread_mutex_unlock(®istry
->lock
);
4811 * Handle application notification through the given notify socket.
4813 * Return 0 on success or else a negative value.
4815 int ust_app_recv_notify(int sock
)
4818 enum ustctl_notify_cmd cmd
;
4820 DBG3("UST app receiving notify from sock %d", sock
);
4822 ret
= ustctl_recv_notify(sock
, &cmd
);
4824 if (ret
!= -EPIPE
&& ret
!= -LTTNG_UST_ERR_EXITING
) {
4825 ERR("UST app recv notify failed with ret %d", ret
);
4827 DBG3("UST app recv notify failed. Application died");
4833 case USTCTL_NOTIFY_CMD_EVENT
:
4835 int sobjd
, cobjd
, loglevel
;
4836 char name
[LTTNG_UST_SYM_NAME_LEN
], *sig
, *model_emf_uri
;
4838 struct ustctl_field
*fields
;
4840 DBG2("UST app ustctl register event received");
4842 ret
= ustctl_recv_register_event(sock
, &sobjd
, &cobjd
, name
, &loglevel
,
4843 &sig
, &nr_fields
, &fields
, &model_emf_uri
);
4845 if (ret
!= -EPIPE
&& ret
!= -LTTNG_UST_ERR_EXITING
) {
4846 ERR("UST app recv event failed with ret %d", ret
);
4848 DBG3("UST app recv event failed. Application died");
4854 * Add event to the UST registry coming from the notify socket. This
4855 * call will free if needed the sig, fields and model_emf_uri. This
4856 * code path loses the ownsership of these variables and transfer them
4857 * to the this function.
4859 ret
= add_event_ust_registry(sock
, sobjd
, cobjd
, name
, sig
, nr_fields
,
4860 fields
, loglevel
, model_emf_uri
);
4867 case USTCTL_NOTIFY_CMD_CHANNEL
:
4871 struct ustctl_field
*fields
;
4873 DBG2("UST app ustctl register channel received");
4875 ret
= ustctl_recv_register_channel(sock
, &sobjd
, &cobjd
, &nr_fields
,
4878 if (ret
!= -EPIPE
&& ret
!= -LTTNG_UST_ERR_EXITING
) {
4879 ERR("UST app recv channel failed with ret %d", ret
);
4881 DBG3("UST app recv channel failed. Application died");
4887 * The fields ownership are transfered to this function call meaning
4888 * that if needed it will be freed. After this, it's invalid to access
4889 * fields or clean it up.
4891 ret
= reply_ust_register_channel(sock
, sobjd
, cobjd
, nr_fields
,
4900 /* Should NEVER happen. */
4909 * Once the notify socket hangs up, this is called. First, it tries to find the
4910 * corresponding application. On failure, the call_rcu to close the socket is
4911 * executed. If an application is found, it tries to delete it from the notify
4912 * socket hash table. Whathever the result, it proceeds to the call_rcu.
4914 * Note that an object needs to be allocated here so on ENOMEM failure, the
4915 * call RCU is not done but the rest of the cleanup is.
4917 void ust_app_notify_sock_unregister(int sock
)
4920 struct lttng_ht_iter iter
;
4921 struct ust_app
*app
;
4922 struct ust_app_notify_sock_obj
*obj
;
4928 obj
= zmalloc(sizeof(*obj
));
4931 * An ENOMEM is kind of uncool. If this strikes we continue the
4932 * procedure but the call_rcu will not be called. In this case, we
4933 * accept the fd leak rather than possibly creating an unsynchronized
4934 * state between threads.
4936 * TODO: The notify object should be created once the notify socket is
4937 * registered and stored independantely from the ust app object. The
4938 * tricky part is to synchronize the teardown of the application and
4939 * this notify object. Let's keep that in mind so we can avoid this
4940 * kind of shenanigans with ENOMEM in the teardown path.
4947 DBG("UST app notify socket unregister %d", sock
);
4950 * Lookup application by notify socket. If this fails, this means that the
4951 * hash table delete has already been done by the application
4952 * unregistration process so we can safely close the notify socket in a
4955 app
= find_app_by_notify_sock(sock
);
4960 iter
.iter
.node
= &app
->notify_sock_n
.node
;
4963 * Whatever happens here either we fail or succeed, in both cases we have
4964 * to close the socket after a grace period to continue to the call RCU
4965 * here. If the deletion is successful, the application is not visible
4966 * anymore by other threads and is it fails it means that it was already
4967 * deleted from the hash table so either way we just have to close the
4970 (void) lttng_ht_del(ust_app_ht_by_notify_sock
, &iter
);
4976 * Close socket after a grace period to avoid for the socket to be reused
4977 * before the application object is freed creating potential race between
4978 * threads trying to add unique in the global hash table.
4981 call_rcu(&obj
->head
, close_notify_sock_rcu
);
4986 * Destroy a ust app data structure and free its memory.
4988 void ust_app_destroy(struct ust_app
*app
)
4994 call_rcu(&app
->pid_n
.head
, delete_ust_app_rcu
);
4998 * Take a snapshot for a given UST session. The snapshot is sent to the given
5001 * Return 0 on success or else a negative value.
5003 int ust_app_snapshot_record(struct ltt_ust_session
*usess
,
5004 struct snapshot_output
*output
, int wait
, uint64_t max_stream_size
)
5007 unsigned int snapshot_done
= 0;
5008 struct lttng_ht_iter iter
;
5009 struct ust_app
*app
;
5010 char pathname
[PATH_MAX
];
5017 switch (usess
->buffer_type
) {
5018 case LTTNG_BUFFER_PER_UID
:
5020 struct buffer_reg_uid
*reg
;
5022 cds_list_for_each_entry(reg
, &usess
->buffer_reg_uid_list
, lnode
) {
5023 struct buffer_reg_channel
*reg_chan
;
5024 struct consumer_socket
*socket
;
5026 /* Get consumer socket to use to push the metadata.*/
5027 socket
= consumer_find_socket_by_bitness(reg
->bits_per_long
,
5034 memset(pathname
, 0, sizeof(pathname
));
5035 ret
= snprintf(pathname
, sizeof(pathname
),
5036 DEFAULT_UST_TRACE_DIR
"/" DEFAULT_UST_TRACE_UID_PATH
,
5037 reg
->uid
, reg
->bits_per_long
);
5039 PERROR("snprintf snapshot path");
5043 /* Add the UST default trace dir to path. */
5044 cds_lfht_for_each_entry(reg
->registry
->channels
->ht
, &iter
.iter
,
5045 reg_chan
, node
.node
) {
5046 ret
= consumer_snapshot_channel(socket
, reg_chan
->consumer_key
,
5047 output
, 0, usess
->uid
, usess
->gid
, pathname
, wait
,
5053 ret
= consumer_snapshot_channel(socket
,
5054 reg
->registry
->reg
.ust
->metadata_key
, output
, 1,
5055 usess
->uid
, usess
->gid
, pathname
, wait
, max_stream_size
);
5063 case LTTNG_BUFFER_PER_PID
:
5065 cds_lfht_for_each_entry(ust_app_ht
->ht
, &iter
.iter
, app
, pid_n
.node
) {
5066 struct consumer_socket
*socket
;
5067 struct lttng_ht_iter chan_iter
;
5068 struct ust_app_channel
*ua_chan
;
5069 struct ust_app_session
*ua_sess
;
5070 struct ust_registry_session
*registry
;
5072 ua_sess
= lookup_session_by_app(usess
, app
);
5074 /* Session not associated with this app. */
5078 /* Get the right consumer socket for the application. */
5079 socket
= consumer_find_socket_by_bitness(app
->bits_per_long
,
5086 /* Add the UST default trace dir to path. */
5087 memset(pathname
, 0, sizeof(pathname
));
5088 ret
= snprintf(pathname
, sizeof(pathname
), DEFAULT_UST_TRACE_DIR
"/%s",
5091 PERROR("snprintf snapshot path");
5095 cds_lfht_for_each_entry(ua_sess
->channels
->ht
, &chan_iter
.iter
,
5096 ua_chan
, node
.node
) {
5097 ret
= consumer_snapshot_channel(socket
, ua_chan
->key
, output
,
5098 0, ua_sess
->euid
, ua_sess
->egid
, pathname
, wait
,
5105 registry
= get_session_registry(ua_sess
);
5107 ret
= consumer_snapshot_channel(socket
, registry
->metadata_key
, output
,
5108 1, ua_sess
->euid
, ua_sess
->egid
, pathname
, wait
,
5122 if (!snapshot_done
) {
5124 * If no snapshot was made and we are not in the error path, this means
5125 * that there are no buffers thus no (prior) application to snapshot
5126 * data from so we have simply NO data.
5137 * Return the number of streams for a UST session.
5139 unsigned int ust_app_get_nb_stream(struct ltt_ust_session
*usess
)
5141 unsigned int ret
= 0;
5142 struct ust_app
*app
;
5143 struct lttng_ht_iter iter
;
5147 switch (usess
->buffer_type
) {
5148 case LTTNG_BUFFER_PER_UID
:
5150 struct buffer_reg_uid
*reg
;
5152 cds_list_for_each_entry(reg
, &usess
->buffer_reg_uid_list
, lnode
) {
5153 struct buffer_reg_channel
*reg_chan
;
5156 cds_lfht_for_each_entry(reg
->registry
->channels
->ht
, &iter
.iter
,
5157 reg_chan
, node
.node
) {
5158 ret
+= reg_chan
->stream_count
;
5164 case LTTNG_BUFFER_PER_PID
:
5167 cds_lfht_for_each_entry(ust_app_ht
->ht
, &iter
.iter
, app
, pid_n
.node
) {
5168 struct ust_app_channel
*ua_chan
;
5169 struct ust_app_session
*ua_sess
;
5170 struct lttng_ht_iter chan_iter
;
5172 ua_sess
= lookup_session_by_app(usess
, app
);
5174 /* Session not associated with this app. */
5178 cds_lfht_for_each_entry(ua_sess
->channels
->ht
, &chan_iter
.iter
,
5179 ua_chan
, node
.node
) {
5180 ret
+= ua_chan
->streams
.count
;