2 * Copyright (C) 2011 - David Goulet <david.goulet@polymtl.ca>
4 * This program is free software; you can redistribute it and/or modify
5 * it under the terms of the GNU General Public License, version 2 only,
6 * as published by the Free Software Foundation.
8 * This program is distributed in the hope that it will be useful,
9 * but WITHOUT ANY WARRANTY; without even the implied warranty of
10 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
11 * GNU General Public License for more details.
13 * You should have received a copy of the GNU General Public License along
14 * with this program; if not, write to the Free Software Foundation, Inc.,
15 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
26 #include <sys/types.h>
28 #include <urcu/compiler.h>
29 #include <lttng/ust-error.h>
32 #include <common/common.h>
33 #include <common/sessiond-comm/sessiond-comm.h>
35 #include "buffer-registry.h"
37 #include "health-sessiond.h"
39 #include "ust-consumer.h"
43 /* Next available channel key. Access under next_channel_key_lock. */
44 static uint64_t _next_channel_key
;
45 static pthread_mutex_t next_channel_key_lock
= PTHREAD_MUTEX_INITIALIZER
;
47 /* Next available session ID. Access under next_session_id_lock. */
48 static uint64_t _next_session_id
;
49 static pthread_mutex_t next_session_id_lock
= PTHREAD_MUTEX_INITIALIZER
;
52 * Return the incremented value of next_channel_key.
54 static uint64_t get_next_channel_key(void)
58 pthread_mutex_lock(&next_channel_key_lock
);
59 ret
= ++_next_channel_key
;
60 pthread_mutex_unlock(&next_channel_key_lock
);
65 * Return the atomically incremented value of next_session_id.
67 static uint64_t get_next_session_id(void)
71 pthread_mutex_lock(&next_session_id_lock
);
72 ret
= ++_next_session_id
;
73 pthread_mutex_unlock(&next_session_id_lock
);
77 static void copy_channel_attr_to_ustctl(
78 struct ustctl_consumer_channel_attr
*attr
,
79 struct lttng_ust_channel_attr
*uattr
)
81 /* Copy event attributes since the layout is different. */
82 attr
->subbuf_size
= uattr
->subbuf_size
;
83 attr
->num_subbuf
= uattr
->num_subbuf
;
84 attr
->overwrite
= uattr
->overwrite
;
85 attr
->switch_timer_interval
= uattr
->switch_timer_interval
;
86 attr
->read_timer_interval
= uattr
->read_timer_interval
;
87 attr
->output
= uattr
->output
;
91 * Match function for the hash table lookup.
93 * It matches an ust app event based on three attributes which are the event
94 * name, the filter bytecode and the loglevel.
96 static int ht_match_ust_app_event(struct cds_lfht_node
*node
, const void *_key
)
98 struct ust_app_event
*event
;
99 const struct ust_app_ht_key
*key
;
104 event
= caa_container_of(node
, struct ust_app_event
, node
.node
);
107 /* Match the 4 elements of the key: name, filter, loglevel, exclusions */
110 if (strncmp(event
->attr
.name
, key
->name
, sizeof(event
->attr
.name
)) != 0) {
114 /* Event loglevel. */
115 if (event
->attr
.loglevel
!= key
->loglevel
) {
116 if (event
->attr
.loglevel_type
== LTTNG_UST_LOGLEVEL_ALL
117 && key
->loglevel
== 0 && event
->attr
.loglevel
== -1) {
119 * Match is accepted. This is because on event creation, the
120 * loglevel is set to -1 if the event loglevel type is ALL so 0 and
121 * -1 are accepted for this loglevel type since 0 is the one set by
122 * the API when receiving an enable event.
129 /* One of the filters is NULL, fail. */
130 if ((key
->filter
&& !event
->filter
) || (!key
->filter
&& event
->filter
)) {
134 if (key
->filter
&& event
->filter
) {
135 /* Both filters exists, check length followed by the bytecode. */
136 if (event
->filter
->len
!= key
->filter
->len
||
137 memcmp(event
->filter
->data
, key
->filter
->data
,
138 event
->filter
->len
) != 0) {
143 /* One of the exclusions is NULL, fail. */
144 if ((key
->exclusion
&& !event
->exclusion
) || (!key
->exclusion
&& event
->exclusion
)) {
148 if (key
->exclusion
&& event
->exclusion
) {
149 /* Both exclusions exists, check count followed by the names. */
150 if (event
->exclusion
->count
!= key
->exclusion
->count
||
151 memcmp(event
->exclusion
->names
, key
->exclusion
->names
,
152 event
->exclusion
->count
* LTTNG_UST_SYM_NAME_LEN
) != 0) {
166 * Unique add of an ust app event in the given ht. This uses the custom
167 * ht_match_ust_app_event match function and the event name as hash.
169 static void add_unique_ust_app_event(struct ust_app_channel
*ua_chan
,
170 struct ust_app_event
*event
)
172 struct cds_lfht_node
*node_ptr
;
173 struct ust_app_ht_key key
;
177 assert(ua_chan
->events
);
180 ht
= ua_chan
->events
;
181 key
.name
= event
->attr
.name
;
182 key
.filter
= event
->filter
;
183 key
.loglevel
= event
->attr
.loglevel
;
184 key
.exclusion
= event
->exclusion
;
186 node_ptr
= cds_lfht_add_unique(ht
->ht
,
187 ht
->hash_fct(event
->node
.key
, lttng_ht_seed
),
188 ht_match_ust_app_event
, &key
, &event
->node
.node
);
189 assert(node_ptr
== &event
->node
.node
);
193 * Close the notify socket from the given RCU head object. This MUST be called
194 * through a call_rcu().
196 static void close_notify_sock_rcu(struct rcu_head
*head
)
199 struct ust_app_notify_sock_obj
*obj
=
200 caa_container_of(head
, struct ust_app_notify_sock_obj
, head
);
202 /* Must have a valid fd here. */
203 assert(obj
->fd
>= 0);
205 ret
= close(obj
->fd
);
207 ERR("close notify sock %d RCU", obj
->fd
);
209 lttng_fd_put(LTTNG_FD_APPS
, 1);
215 * Return the session registry according to the buffer type of the given
218 * A registry per UID object MUST exists before calling this function or else
219 * it assert() if not found. RCU read side lock must be acquired.
221 static struct ust_registry_session
*get_session_registry(
222 struct ust_app_session
*ua_sess
)
224 struct ust_registry_session
*registry
= NULL
;
228 switch (ua_sess
->buffer_type
) {
229 case LTTNG_BUFFER_PER_PID
:
231 struct buffer_reg_pid
*reg_pid
= buffer_reg_pid_find(ua_sess
->id
);
235 registry
= reg_pid
->registry
->reg
.ust
;
238 case LTTNG_BUFFER_PER_UID
:
240 struct buffer_reg_uid
*reg_uid
= buffer_reg_uid_find(
241 ua_sess
->tracing_id
, ua_sess
->bits_per_long
, ua_sess
->uid
);
245 registry
= reg_uid
->registry
->reg
.ust
;
257 * Delete ust context safely. RCU read lock must be held before calling
261 void delete_ust_app_ctx(int sock
, struct ust_app_ctx
*ua_ctx
)
268 ret
= ustctl_release_object(sock
, ua_ctx
->obj
);
269 if (ret
< 0 && ret
!= -EPIPE
&& ret
!= -LTTNG_UST_ERR_EXITING
) {
270 ERR("UST app sock %d release ctx obj handle %d failed with ret %d",
271 sock
, ua_ctx
->obj
->handle
, ret
);
279 * Delete ust app event safely. RCU read lock must be held before calling
283 void delete_ust_app_event(int sock
, struct ust_app_event
*ua_event
)
289 free(ua_event
->filter
);
290 if (ua_event
->exclusion
!= NULL
)
291 free(ua_event
->exclusion
);
292 if (ua_event
->obj
!= NULL
) {
293 ret
= ustctl_release_object(sock
, ua_event
->obj
);
294 if (ret
< 0 && ret
!= -EPIPE
&& ret
!= -LTTNG_UST_ERR_EXITING
) {
295 ERR("UST app sock %d release event obj failed with ret %d",
304 * Release ust data object of the given stream.
306 * Return 0 on success or else a negative value.
308 static int release_ust_app_stream(int sock
, struct ust_app_stream
*stream
)
315 ret
= ustctl_release_object(sock
, stream
->obj
);
316 if (ret
< 0 && ret
!= -EPIPE
&& ret
!= -LTTNG_UST_ERR_EXITING
) {
317 ERR("UST app sock %d release stream obj failed with ret %d",
320 lttng_fd_put(LTTNG_FD_APPS
, 2);
328 * Delete ust app stream safely. RCU read lock must be held before calling
332 void delete_ust_app_stream(int sock
, struct ust_app_stream
*stream
)
336 (void) release_ust_app_stream(sock
, stream
);
341 * We need to execute ht_destroy outside of RCU read-side critical
342 * section and outside of call_rcu thread, so we postpone its execution
343 * using ht_cleanup_push. It is simpler than to change the semantic of
344 * the many callers of delete_ust_app_session().
347 void delete_ust_app_channel_rcu(struct rcu_head
*head
)
349 struct ust_app_channel
*ua_chan
=
350 caa_container_of(head
, struct ust_app_channel
, rcu_head
);
352 ht_cleanup_push(ua_chan
->ctx
);
353 ht_cleanup_push(ua_chan
->events
);
358 * Delete ust app channel safely. RCU read lock must be held before calling
362 void delete_ust_app_channel(int sock
, struct ust_app_channel
*ua_chan
,
366 struct lttng_ht_iter iter
;
367 struct ust_app_event
*ua_event
;
368 struct ust_app_ctx
*ua_ctx
;
369 struct ust_app_stream
*stream
, *stmp
;
370 struct ust_registry_session
*registry
;
374 DBG3("UST app deleting channel %s", ua_chan
->name
);
377 cds_list_for_each_entry_safe(stream
, stmp
, &ua_chan
->streams
.head
, list
) {
378 cds_list_del(&stream
->list
);
379 delete_ust_app_stream(sock
, stream
);
383 cds_lfht_for_each_entry(ua_chan
->ctx
->ht
, &iter
.iter
, ua_ctx
, node
.node
) {
384 cds_list_del(&ua_ctx
->list
);
385 ret
= lttng_ht_del(ua_chan
->ctx
, &iter
);
387 delete_ust_app_ctx(sock
, ua_ctx
);
391 cds_lfht_for_each_entry(ua_chan
->events
->ht
, &iter
.iter
, ua_event
,
393 ret
= lttng_ht_del(ua_chan
->events
, &iter
);
395 delete_ust_app_event(sock
, ua_event
);
398 if (ua_chan
->session
->buffer_type
== LTTNG_BUFFER_PER_PID
) {
399 /* Wipe and free registry from session registry. */
400 registry
= get_session_registry(ua_chan
->session
);
402 ust_registry_channel_del_free(registry
, ua_chan
->key
);
406 if (ua_chan
->obj
!= NULL
) {
407 /* Remove channel from application UST object descriptor. */
408 iter
.iter
.node
= &ua_chan
->ust_objd_node
.node
;
409 lttng_ht_del(app
->ust_objd
, &iter
);
410 ret
= ustctl_release_object(sock
, ua_chan
->obj
);
411 if (ret
< 0 && ret
!= -EPIPE
&& ret
!= -LTTNG_UST_ERR_EXITING
) {
412 ERR("UST app sock %d release channel obj failed with ret %d",
415 lttng_fd_put(LTTNG_FD_APPS
, 1);
418 call_rcu(&ua_chan
->rcu_head
, delete_ust_app_channel_rcu
);
422 * Push metadata to consumer socket.
424 * The socket lock MUST be acquired.
425 * The ust app session lock MUST be acquired.
427 * On success, return the len of metadata pushed or else a negative value.
429 ssize_t
ust_app_push_metadata(struct ust_registry_session
*registry
,
430 struct consumer_socket
*socket
, int send_zero_data
)
433 char *metadata_str
= NULL
;
441 * On a push metadata error either the consumer is dead or the metadata
442 * channel has been destroyed because its endpoint might have died (e.g:
443 * relayd). If so, the metadata closed flag is set to 1 so we deny pushing
444 * metadata again which is not valid anymore on the consumer side.
446 * The ust app session mutex locked allows us to make this check without
449 if (registry
->metadata_closed
) {
453 pthread_mutex_lock(®istry
->lock
);
455 offset
= registry
->metadata_len_sent
;
456 len
= registry
->metadata_len
- registry
->metadata_len_sent
;
458 DBG3("No metadata to push for metadata key %" PRIu64
,
459 registry
->metadata_key
);
461 if (send_zero_data
) {
462 DBG("No metadata to push");
468 /* Allocate only what we have to send. */
469 metadata_str
= zmalloc(len
);
471 PERROR("zmalloc ust app metadata string");
475 /* Copy what we haven't send out. */
476 memcpy(metadata_str
, registry
->metadata
+ offset
, len
);
477 registry
->metadata_len_sent
+= len
;
480 pthread_mutex_unlock(®istry
->lock
);
481 ret
= consumer_push_metadata(socket
, registry
->metadata_key
,
482 metadata_str
, len
, offset
);
485 * There is an acceptable race here between the registry metadata key
486 * assignment and the creation on the consumer. The session daemon can
487 * concurrently push metadata for this registry while being created on
488 * the consumer since the metadata key of the registry is assigned
489 * *before* it is setup to avoid the consumer to ask for metadata that
490 * could possibly be not found in the session daemon.
492 * The metadata will get pushed either by the session being stopped or
493 * the consumer requesting metadata if that race is triggered.
495 if (ret
== -LTTCOMM_CONSUMERD_CHANNEL_FAIL
) {
499 /* Update back the actual metadata len sent since it failed here. */
500 pthread_mutex_lock(®istry
->lock
);
501 registry
->metadata_len_sent
-= len
;
502 pthread_mutex_unlock(®istry
->lock
);
512 pthread_mutex_unlock(®istry
->lock
);
519 * For a given application and session, push metadata to consumer. The session
520 * lock MUST be acquired here before calling this.
521 * Either sock or consumer is required : if sock is NULL, the default
522 * socket to send the metadata is retrieved from consumer, if sock
523 * is not NULL we use it to send the metadata.
525 * Return 0 on success else a negative error.
527 static int push_metadata(struct ust_registry_session
*registry
,
528 struct consumer_output
*consumer
)
532 struct consumer_socket
*socket
;
540 * Means that no metadata was assigned to the session. This can happens if
541 * no start has been done previously.
543 if (!registry
->metadata_key
) {
548 /* Get consumer socket to use to push the metadata.*/
549 socket
= consumer_find_socket_by_bitness(registry
->bits_per_long
,
553 goto error_rcu_unlock
;
557 * TODO: Currently, we hold the socket lock around sampling of the next
558 * metadata segment to ensure we send metadata over the consumer socket in
559 * the correct order. This makes the registry lock nest inside the socket
562 * Please note that this is a temporary measure: we should move this lock
563 * back into ust_consumer_push_metadata() when the consumer gets the
564 * ability to reorder the metadata it receives.
566 pthread_mutex_lock(socket
->lock
);
567 ret
= ust_app_push_metadata(registry
, socket
, 0);
568 pthread_mutex_unlock(socket
->lock
);
571 goto error_rcu_unlock
;
579 * On error, flag the registry that the metadata is closed. We were unable
580 * to push anything and this means that either the consumer is not
581 * responding or the metadata cache has been destroyed on the consumer.
583 registry
->metadata_closed
= 1;
590 * Send to the consumer a close metadata command for the given session. Once
591 * done, the metadata channel is deleted and the session metadata pointer is
592 * nullified. The session lock MUST be acquired here unless the application is
593 * in the destroy path.
595 * Return 0 on success else a negative value.
597 static int close_metadata(struct ust_registry_session
*registry
,
598 struct consumer_output
*consumer
)
601 struct consumer_socket
*socket
;
608 if (!registry
->metadata_key
|| registry
->metadata_closed
) {
613 /* Get consumer socket to use to push the metadata.*/
614 socket
= consumer_find_socket_by_bitness(registry
->bits_per_long
,
621 ret
= consumer_close_metadata(socket
, registry
->metadata_key
);
628 * Metadata closed. Even on error this means that the consumer is not
629 * responding or not found so either way a second close should NOT be emit
632 registry
->metadata_closed
= 1;
639 * We need to execute ht_destroy outside of RCU read-side critical
640 * section and outside of call_rcu thread, so we postpone its execution
641 * using ht_cleanup_push. It is simpler than to change the semantic of
642 * the many callers of delete_ust_app_session().
645 void delete_ust_app_session_rcu(struct rcu_head
*head
)
647 struct ust_app_session
*ua_sess
=
648 caa_container_of(head
, struct ust_app_session
, rcu_head
);
650 ht_cleanup_push(ua_sess
->channels
);
655 * Delete ust app session safely. RCU read lock must be held before calling
659 void delete_ust_app_session(int sock
, struct ust_app_session
*ua_sess
,
663 struct lttng_ht_iter iter
;
664 struct ust_app_channel
*ua_chan
;
665 struct ust_registry_session
*registry
;
669 pthread_mutex_lock(&ua_sess
->lock
);
671 registry
= get_session_registry(ua_sess
);
672 if (registry
&& !registry
->metadata_closed
) {
673 /* Push metadata for application before freeing the application. */
674 (void) push_metadata(registry
, ua_sess
->consumer
);
677 * Don't ask to close metadata for global per UID buffers. Close
678 * metadata only on destroy trace session in this case. Also, the
679 * previous push metadata could have flag the metadata registry to
680 * close so don't send a close command if closed.
682 if (ua_sess
->buffer_type
!= LTTNG_BUFFER_PER_UID
&&
683 !registry
->metadata_closed
) {
684 /* And ask to close it for this session registry. */
685 (void) close_metadata(registry
, ua_sess
->consumer
);
689 cds_lfht_for_each_entry(ua_sess
->channels
->ht
, &iter
.iter
, ua_chan
,
691 ret
= lttng_ht_del(ua_sess
->channels
, &iter
);
693 delete_ust_app_channel(sock
, ua_chan
, app
);
696 /* In case of per PID, the registry is kept in the session. */
697 if (ua_sess
->buffer_type
== LTTNG_BUFFER_PER_PID
) {
698 struct buffer_reg_pid
*reg_pid
= buffer_reg_pid_find(ua_sess
->id
);
700 buffer_reg_pid_remove(reg_pid
);
701 buffer_reg_pid_destroy(reg_pid
);
705 if (ua_sess
->handle
!= -1) {
706 ret
= ustctl_release_handle(sock
, ua_sess
->handle
);
707 if (ret
< 0 && ret
!= -EPIPE
&& ret
!= -LTTNG_UST_ERR_EXITING
) {
708 ERR("UST app sock %d release session handle failed with ret %d",
712 pthread_mutex_unlock(&ua_sess
->lock
);
714 call_rcu(&ua_sess
->rcu_head
, delete_ust_app_session_rcu
);
718 * Delete a traceable application structure from the global list. Never call
719 * this function outside of a call_rcu call.
721 * RCU read side lock should _NOT_ be held when calling this function.
724 void delete_ust_app(struct ust_app
*app
)
727 struct ust_app_session
*ua_sess
, *tmp_ua_sess
;
729 /* Delete ust app sessions info */
734 cds_list_for_each_entry_safe(ua_sess
, tmp_ua_sess
, &app
->teardown_head
,
736 /* Free every object in the session and the session. */
738 delete_ust_app_session(sock
, ua_sess
, app
);
742 ht_cleanup_push(app
->sessions
);
743 ht_cleanup_push(app
->ust_objd
);
746 * Wait until we have deleted the application from the sock hash table
747 * before closing this socket, otherwise an application could re-use the
748 * socket ID and race with the teardown, using the same hash table entry.
750 * It's OK to leave the close in call_rcu. We want it to stay unique for
751 * all RCU readers that could run concurrently with unregister app,
752 * therefore we _need_ to only close that socket after a grace period. So
753 * it should stay in this RCU callback.
755 * This close() is a very important step of the synchronization model so
756 * every modification to this function must be carefully reviewed.
762 lttng_fd_put(LTTNG_FD_APPS
, 1);
764 DBG2("UST app pid %d deleted", app
->pid
);
769 * URCU intermediate call to delete an UST app.
772 void delete_ust_app_rcu(struct rcu_head
*head
)
774 struct lttng_ht_node_ulong
*node
=
775 caa_container_of(head
, struct lttng_ht_node_ulong
, head
);
776 struct ust_app
*app
=
777 caa_container_of(node
, struct ust_app
, pid_n
);
779 DBG3("Call RCU deleting app PID %d", app
->pid
);
784 * Delete the session from the application ht and delete the data structure by
785 * freeing every object inside and releasing them.
787 static void destroy_app_session(struct ust_app
*app
,
788 struct ust_app_session
*ua_sess
)
791 struct lttng_ht_iter iter
;
796 iter
.iter
.node
= &ua_sess
->node
.node
;
797 ret
= lttng_ht_del(app
->sessions
, &iter
);
799 /* Already scheduled for teardown. */
803 /* Once deleted, free the data structure. */
804 delete_ust_app_session(app
->sock
, ua_sess
, app
);
811 * Alloc new UST app session.
814 struct ust_app_session
*alloc_ust_app_session(struct ust_app
*app
)
816 struct ust_app_session
*ua_sess
;
818 /* Init most of the default value by allocating and zeroing */
819 ua_sess
= zmalloc(sizeof(struct ust_app_session
));
820 if (ua_sess
== NULL
) {
825 ua_sess
->handle
= -1;
826 ua_sess
->channels
= lttng_ht_new(0, LTTNG_HT_TYPE_STRING
);
827 pthread_mutex_init(&ua_sess
->lock
, NULL
);
836 * Alloc new UST app channel.
839 struct ust_app_channel
*alloc_ust_app_channel(char *name
,
840 struct ust_app_session
*ua_sess
,
841 struct lttng_ust_channel_attr
*attr
)
843 struct ust_app_channel
*ua_chan
;
845 /* Init most of the default value by allocating and zeroing */
846 ua_chan
= zmalloc(sizeof(struct ust_app_channel
));
847 if (ua_chan
== NULL
) {
852 /* Setup channel name */
853 strncpy(ua_chan
->name
, name
, sizeof(ua_chan
->name
));
854 ua_chan
->name
[sizeof(ua_chan
->name
) - 1] = '\0';
856 ua_chan
->enabled
= 1;
857 ua_chan
->handle
= -1;
858 ua_chan
->session
= ua_sess
;
859 ua_chan
->key
= get_next_channel_key();
860 ua_chan
->ctx
= lttng_ht_new(0, LTTNG_HT_TYPE_ULONG
);
861 ua_chan
->events
= lttng_ht_new(0, LTTNG_HT_TYPE_STRING
);
862 lttng_ht_node_init_str(&ua_chan
->node
, ua_chan
->name
);
864 CDS_INIT_LIST_HEAD(&ua_chan
->streams
.head
);
865 CDS_INIT_LIST_HEAD(&ua_chan
->ctx_list
);
867 /* Copy attributes */
869 /* Translate from lttng_ust_channel to ustctl_consumer_channel_attr. */
870 ua_chan
->attr
.subbuf_size
= attr
->subbuf_size
;
871 ua_chan
->attr
.num_subbuf
= attr
->num_subbuf
;
872 ua_chan
->attr
.overwrite
= attr
->overwrite
;
873 ua_chan
->attr
.switch_timer_interval
= attr
->switch_timer_interval
;
874 ua_chan
->attr
.read_timer_interval
= attr
->read_timer_interval
;
875 ua_chan
->attr
.output
= attr
->output
;
877 /* By default, the channel is a per cpu channel. */
878 ua_chan
->attr
.type
= LTTNG_UST_CHAN_PER_CPU
;
880 DBG3("UST app channel %s allocated", ua_chan
->name
);
889 * Allocate and initialize a UST app stream.
891 * Return newly allocated stream pointer or NULL on error.
893 struct ust_app_stream
*ust_app_alloc_stream(void)
895 struct ust_app_stream
*stream
= NULL
;
897 stream
= zmalloc(sizeof(*stream
));
898 if (stream
== NULL
) {
899 PERROR("zmalloc ust app stream");
903 /* Zero could be a valid value for a handle so flag it to -1. */
911 * Alloc new UST app event.
914 struct ust_app_event
*alloc_ust_app_event(char *name
,
915 struct lttng_ust_event
*attr
)
917 struct ust_app_event
*ua_event
;
919 /* Init most of the default value by allocating and zeroing */
920 ua_event
= zmalloc(sizeof(struct ust_app_event
));
921 if (ua_event
== NULL
) {
926 ua_event
->enabled
= 1;
927 strncpy(ua_event
->name
, name
, sizeof(ua_event
->name
));
928 ua_event
->name
[sizeof(ua_event
->name
) - 1] = '\0';
929 lttng_ht_node_init_str(&ua_event
->node
, ua_event
->name
);
931 /* Copy attributes */
933 memcpy(&ua_event
->attr
, attr
, sizeof(ua_event
->attr
));
936 DBG3("UST app event %s allocated", ua_event
->name
);
945 * Alloc new UST app context.
948 struct ust_app_ctx
*alloc_ust_app_ctx(struct lttng_ust_context
*uctx
)
950 struct ust_app_ctx
*ua_ctx
;
952 ua_ctx
= zmalloc(sizeof(struct ust_app_ctx
));
953 if (ua_ctx
== NULL
) {
957 CDS_INIT_LIST_HEAD(&ua_ctx
->list
);
960 memcpy(&ua_ctx
->ctx
, uctx
, sizeof(ua_ctx
->ctx
));
963 DBG3("UST app context %d allocated", ua_ctx
->ctx
.ctx
);
970 * Allocate a filter and copy the given original filter.
972 * Return allocated filter or NULL on error.
974 static struct lttng_ust_filter_bytecode
*alloc_copy_ust_app_filter(
975 struct lttng_ust_filter_bytecode
*orig_f
)
977 struct lttng_ust_filter_bytecode
*filter
= NULL
;
979 /* Copy filter bytecode */
980 filter
= zmalloc(sizeof(*filter
) + orig_f
->len
);
982 PERROR("zmalloc alloc ust app filter");
986 memcpy(filter
, orig_f
, sizeof(*filter
) + orig_f
->len
);
993 * Find an ust_app using the sock and return it. RCU read side lock must be
994 * held before calling this helper function.
996 struct ust_app
*ust_app_find_by_sock(int sock
)
998 struct lttng_ht_node_ulong
*node
;
999 struct lttng_ht_iter iter
;
1001 lttng_ht_lookup(ust_app_ht_by_sock
, (void *)((unsigned long) sock
), &iter
);
1002 node
= lttng_ht_iter_get_node_ulong(&iter
);
1004 DBG2("UST app find by sock %d not found", sock
);
1008 return caa_container_of(node
, struct ust_app
, sock_n
);
1015 * Find an ust_app using the notify sock and return it. RCU read side lock must
1016 * be held before calling this helper function.
1018 static struct ust_app
*find_app_by_notify_sock(int sock
)
1020 struct lttng_ht_node_ulong
*node
;
1021 struct lttng_ht_iter iter
;
1023 lttng_ht_lookup(ust_app_ht_by_notify_sock
, (void *)((unsigned long) sock
),
1025 node
= lttng_ht_iter_get_node_ulong(&iter
);
1027 DBG2("UST app find by notify sock %d not found", sock
);
1031 return caa_container_of(node
, struct ust_app
, notify_sock_n
);
1038 * Lookup for an ust app event based on event name, filter bytecode and the
1041 * Return an ust_app_event object or NULL on error.
1043 static struct ust_app_event
*find_ust_app_event(struct lttng_ht
*ht
,
1044 char *name
, struct lttng_ust_filter_bytecode
*filter
, int loglevel
,
1045 const struct lttng_event_exclusion
*exclusion
)
1047 struct lttng_ht_iter iter
;
1048 struct lttng_ht_node_str
*node
;
1049 struct ust_app_event
*event
= NULL
;
1050 struct ust_app_ht_key key
;
1055 /* Setup key for event lookup. */
1057 key
.filter
= filter
;
1058 key
.loglevel
= loglevel
;
1059 /* lttng_event_exclusion and lttng_ust_event_exclusion structures are similar */
1060 key
.exclusion
= (struct lttng_ust_event_exclusion
*)exclusion
;
1062 /* Lookup using the event name as hash and a custom match fct. */
1063 cds_lfht_lookup(ht
->ht
, ht
->hash_fct((void *) name
, lttng_ht_seed
),
1064 ht_match_ust_app_event
, &key
, &iter
.iter
);
1065 node
= lttng_ht_iter_get_node_str(&iter
);
1070 event
= caa_container_of(node
, struct ust_app_event
, node
);
1077 * Create the channel context on the tracer.
1079 * Called with UST app session lock held.
1082 int create_ust_channel_context(struct ust_app_channel
*ua_chan
,
1083 struct ust_app_ctx
*ua_ctx
, struct ust_app
*app
)
1087 health_code_update();
1089 ret
= ustctl_add_context(app
->sock
, &ua_ctx
->ctx
,
1090 ua_chan
->obj
, &ua_ctx
->obj
);
1092 if (ret
!= -EPIPE
&& ret
!= -LTTNG_UST_ERR_EXITING
) {
1093 ERR("UST app create channel context failed for app (pid: %d) "
1094 "with ret %d", app
->pid
, ret
);
1097 * This is normal behavior, an application can die during the
1098 * creation process. Don't report an error so the execution can
1099 * continue normally.
1102 DBG3("UST app disable event failed. Application is dead.");
1107 ua_ctx
->handle
= ua_ctx
->obj
->handle
;
1109 DBG2("UST app context handle %d created successfully for channel %s",
1110 ua_ctx
->handle
, ua_chan
->name
);
1113 health_code_update();
1118 * Set the filter on the tracer.
1121 int set_ust_event_filter(struct ust_app_event
*ua_event
,
1122 struct ust_app
*app
)
1126 health_code_update();
1128 if (!ua_event
->filter
) {
1133 ret
= ustctl_set_filter(app
->sock
, ua_event
->filter
,
1136 if (ret
!= -EPIPE
&& ret
!= -LTTNG_UST_ERR_EXITING
) {
1137 ERR("UST app event %s filter failed for app (pid: %d) "
1138 "with ret %d", ua_event
->attr
.name
, app
->pid
, ret
);
1141 * This is normal behavior, an application can die during the
1142 * creation process. Don't report an error so the execution can
1143 * continue normally.
1146 DBG3("UST app filter event failed. Application is dead.");
1151 DBG2("UST filter set successfully for event %s", ua_event
->name
);
1154 health_code_update();
1159 * Set event exclusions on the tracer.
1162 int set_ust_event_exclusion(struct ust_app_event
*ua_event
,
1163 struct ust_app
*app
)
1167 health_code_update();
1169 if (!ua_event
->exclusion
|| !ua_event
->exclusion
->count
) {
1174 ret
= ustctl_set_exclusion(app
->sock
, ua_event
->exclusion
,
1177 if (ret
!= -EPIPE
&& ret
!= -LTTNG_UST_ERR_EXITING
) {
1178 ERR("UST app event %s exclusions failed for app (pid: %d) "
1179 "with ret %d", ua_event
->attr
.name
, app
->pid
, ret
);
1182 * This is normal behavior, an application can die during the
1183 * creation process. Don't report an error so the execution can
1184 * continue normally.
1187 DBG3("UST app event exclusion failed. Application is dead.");
1192 DBG2("UST exclusion set successfully for event %s", ua_event
->name
);
1195 health_code_update();
1200 * Disable the specified event on to UST tracer for the UST session.
1202 static int disable_ust_event(struct ust_app
*app
,
1203 struct ust_app_session
*ua_sess
, struct ust_app_event
*ua_event
)
1207 health_code_update();
1209 ret
= ustctl_disable(app
->sock
, ua_event
->obj
);
1211 if (ret
!= -EPIPE
&& ret
!= -LTTNG_UST_ERR_EXITING
) {
1212 ERR("UST app event %s disable failed for app (pid: %d) "
1213 "and session handle %d with ret %d",
1214 ua_event
->attr
.name
, app
->pid
, ua_sess
->handle
, ret
);
1217 * This is normal behavior, an application can die during the
1218 * creation process. Don't report an error so the execution can
1219 * continue normally.
1222 DBG3("UST app disable event failed. Application is dead.");
1227 DBG2("UST app event %s disabled successfully for app (pid: %d)",
1228 ua_event
->attr
.name
, app
->pid
);
1231 health_code_update();
1236 * Disable the specified channel on to UST tracer for the UST session.
1238 static int disable_ust_channel(struct ust_app
*app
,
1239 struct ust_app_session
*ua_sess
, struct ust_app_channel
*ua_chan
)
1243 health_code_update();
1245 ret
= ustctl_disable(app
->sock
, ua_chan
->obj
);
1247 if (ret
!= -EPIPE
&& ret
!= -LTTNG_UST_ERR_EXITING
) {
1248 ERR("UST app channel %s disable failed for app (pid: %d) "
1249 "and session handle %d with ret %d",
1250 ua_chan
->name
, app
->pid
, ua_sess
->handle
, ret
);
1253 * This is normal behavior, an application can die during the
1254 * creation process. Don't report an error so the execution can
1255 * continue normally.
1258 DBG3("UST app disable channel failed. Application is dead.");
1263 DBG2("UST app channel %s disabled successfully for app (pid: %d)",
1264 ua_chan
->name
, app
->pid
);
1267 health_code_update();
1272 * Enable the specified channel on to UST tracer for the UST session.
1274 static int enable_ust_channel(struct ust_app
*app
,
1275 struct ust_app_session
*ua_sess
, struct ust_app_channel
*ua_chan
)
1279 health_code_update();
1281 ret
= ustctl_enable(app
->sock
, ua_chan
->obj
);
1283 if (ret
!= -EPIPE
&& ret
!= -LTTNG_UST_ERR_EXITING
) {
1284 ERR("UST app channel %s enable failed for app (pid: %d) "
1285 "and session handle %d with ret %d",
1286 ua_chan
->name
, app
->pid
, ua_sess
->handle
, ret
);
1289 * This is normal behavior, an application can die during the
1290 * creation process. Don't report an error so the execution can
1291 * continue normally.
1294 DBG3("UST app enable channel failed. Application is dead.");
1299 ua_chan
->enabled
= 1;
1301 DBG2("UST app channel %s enabled successfully for app (pid: %d)",
1302 ua_chan
->name
, app
->pid
);
1305 health_code_update();
1310 * Enable the specified event on to UST tracer for the UST session.
1312 static int enable_ust_event(struct ust_app
*app
,
1313 struct ust_app_session
*ua_sess
, struct ust_app_event
*ua_event
)
1317 health_code_update();
1319 ret
= ustctl_enable(app
->sock
, ua_event
->obj
);
1321 if (ret
!= -EPIPE
&& ret
!= -LTTNG_UST_ERR_EXITING
) {
1322 ERR("UST app event %s enable failed for app (pid: %d) "
1323 "and session handle %d with ret %d",
1324 ua_event
->attr
.name
, app
->pid
, ua_sess
->handle
, ret
);
1327 * This is normal behavior, an application can die during the
1328 * creation process. Don't report an error so the execution can
1329 * continue normally.
1332 DBG3("UST app enable event failed. Application is dead.");
1337 DBG2("UST app event %s enabled successfully for app (pid: %d)",
1338 ua_event
->attr
.name
, app
->pid
);
1341 health_code_update();
1346 * Send channel and stream buffer to application.
1348 * Return 0 on success. On error, a negative value is returned.
1350 static int send_channel_pid_to_ust(struct ust_app
*app
,
1351 struct ust_app_session
*ua_sess
, struct ust_app_channel
*ua_chan
)
1354 struct ust_app_stream
*stream
, *stmp
;
1360 health_code_update();
1362 DBG("UST app sending channel %s to UST app sock %d", ua_chan
->name
,
1365 /* Send channel to the application. */
1366 ret
= ust_consumer_send_channel_to_ust(app
, ua_sess
, ua_chan
);
1371 health_code_update();
1373 /* Send all streams to application. */
1374 cds_list_for_each_entry_safe(stream
, stmp
, &ua_chan
->streams
.head
, list
) {
1375 ret
= ust_consumer_send_stream_to_ust(app
, ua_chan
, stream
);
1379 /* We don't need the stream anymore once sent to the tracer. */
1380 cds_list_del(&stream
->list
);
1381 delete_ust_app_stream(-1, stream
);
1383 /* Flag the channel that it is sent to the application. */
1384 ua_chan
->is_sent
= 1;
1387 health_code_update();
1392 * Create the specified event onto the UST tracer for a UST session.
1394 * Should be called with session mutex held.
1397 int create_ust_event(struct ust_app
*app
, struct ust_app_session
*ua_sess
,
1398 struct ust_app_channel
*ua_chan
, struct ust_app_event
*ua_event
)
1402 health_code_update();
1404 /* Create UST event on tracer */
1405 ret
= ustctl_create_event(app
->sock
, &ua_event
->attr
, ua_chan
->obj
,
1408 if (ret
!= -EPIPE
&& ret
!= -LTTNG_UST_ERR_EXITING
) {
1409 ERR("Error ustctl create event %s for app pid: %d with ret %d",
1410 ua_event
->attr
.name
, app
->pid
, ret
);
1413 * This is normal behavior, an application can die during the
1414 * creation process. Don't report an error so the execution can
1415 * continue normally.
1418 DBG3("UST app create event failed. Application is dead.");
1423 ua_event
->handle
= ua_event
->obj
->handle
;
1425 DBG2("UST app event %s created successfully for pid:%d",
1426 ua_event
->attr
.name
, app
->pid
);
1428 health_code_update();
1430 /* Set filter if one is present. */
1431 if (ua_event
->filter
) {
1432 ret
= set_ust_event_filter(ua_event
, app
);
1438 /* Set exclusions for the event */
1439 if (ua_event
->exclusion
) {
1440 ret
= set_ust_event_exclusion(ua_event
, app
);
1446 /* If event not enabled, disable it on the tracer */
1447 if (ua_event
->enabled
== 0) {
1448 ret
= disable_ust_event(app
, ua_sess
, ua_event
);
1451 * If we hit an EPERM, something is wrong with our disable call. If
1452 * we get an EEXIST, there is a problem on the tracer side since we
1456 case -LTTNG_UST_ERR_PERM
:
1457 /* Code flow problem */
1459 case -LTTNG_UST_ERR_EXIST
:
1460 /* It's OK for our use case. */
1471 health_code_update();
1476 * Copy data between an UST app event and a LTT event.
1478 static void shadow_copy_event(struct ust_app_event
*ua_event
,
1479 struct ltt_ust_event
*uevent
)
1481 size_t exclusion_alloc_size
;
1483 strncpy(ua_event
->name
, uevent
->attr
.name
, sizeof(ua_event
->name
));
1484 ua_event
->name
[sizeof(ua_event
->name
) - 1] = '\0';
1486 ua_event
->enabled
= uevent
->enabled
;
1488 /* Copy event attributes */
1489 memcpy(&ua_event
->attr
, &uevent
->attr
, sizeof(ua_event
->attr
));
1491 /* Copy filter bytecode */
1492 if (uevent
->filter
) {
1493 ua_event
->filter
= alloc_copy_ust_app_filter(uevent
->filter
);
1494 /* Filter might be NULL here in case of ENONEM. */
1497 /* Copy exclusion data */
1498 if (uevent
->exclusion
) {
1499 exclusion_alloc_size
= sizeof(struct lttng_ust_event_exclusion
) +
1500 LTTNG_UST_SYM_NAME_LEN
* uevent
->exclusion
->count
;
1501 ua_event
->exclusion
= zmalloc(exclusion_alloc_size
);
1502 if (ua_event
->exclusion
== NULL
) {
1505 memcpy(ua_event
->exclusion
, uevent
->exclusion
,
1506 exclusion_alloc_size
);
1512 * Copy data between an UST app channel and a LTT channel.
1514 static void shadow_copy_channel(struct ust_app_channel
*ua_chan
,
1515 struct ltt_ust_channel
*uchan
)
1517 struct lttng_ht_iter iter
;
1518 struct ltt_ust_event
*uevent
;
1519 struct ltt_ust_context
*uctx
;
1520 struct ust_app_event
*ua_event
;
1521 struct ust_app_ctx
*ua_ctx
;
1523 DBG2("UST app shadow copy of channel %s started", ua_chan
->name
);
1525 strncpy(ua_chan
->name
, uchan
->name
, sizeof(ua_chan
->name
));
1526 ua_chan
->name
[sizeof(ua_chan
->name
) - 1] = '\0';
1528 ua_chan
->tracefile_size
= uchan
->tracefile_size
;
1529 ua_chan
->tracefile_count
= uchan
->tracefile_count
;
1531 /* Copy event attributes since the layout is different. */
1532 ua_chan
->attr
.subbuf_size
= uchan
->attr
.subbuf_size
;
1533 ua_chan
->attr
.num_subbuf
= uchan
->attr
.num_subbuf
;
1534 ua_chan
->attr
.overwrite
= uchan
->attr
.overwrite
;
1535 ua_chan
->attr
.switch_timer_interval
= uchan
->attr
.switch_timer_interval
;
1536 ua_chan
->attr
.read_timer_interval
= uchan
->attr
.read_timer_interval
;
1537 ua_chan
->attr
.output
= uchan
->attr
.output
;
1539 * Note that the attribute channel type is not set since the channel on the
1540 * tracing registry side does not have this information.
1543 ua_chan
->enabled
= uchan
->enabled
;
1544 ua_chan
->tracing_channel_id
= uchan
->id
;
1546 cds_list_for_each_entry(uctx
, &uchan
->ctx_list
, list
) {
1547 ua_ctx
= alloc_ust_app_ctx(&uctx
->ctx
);
1548 if (ua_ctx
== NULL
) {
1551 lttng_ht_node_init_ulong(&ua_ctx
->node
,
1552 (unsigned long) ua_ctx
->ctx
.ctx
);
1553 lttng_ht_add_unique_ulong(ua_chan
->ctx
, &ua_ctx
->node
);
1554 cds_list_add_tail(&ua_ctx
->list
, &ua_chan
->ctx_list
);
1557 /* Copy all events from ltt ust channel to ust app channel */
1558 cds_lfht_for_each_entry(uchan
->events
->ht
, &iter
.iter
, uevent
, node
.node
) {
1559 ua_event
= find_ust_app_event(ua_chan
->events
, uevent
->attr
.name
,
1560 uevent
->filter
, uevent
->attr
.loglevel
, uevent
->exclusion
);
1561 if (ua_event
== NULL
) {
1562 DBG2("UST event %s not found on shadow copy channel",
1564 ua_event
= alloc_ust_app_event(uevent
->attr
.name
, &uevent
->attr
);
1565 if (ua_event
== NULL
) {
1568 shadow_copy_event(ua_event
, uevent
);
1569 add_unique_ust_app_event(ua_chan
, ua_event
);
1573 DBG3("UST app shadow copy of channel %s done", ua_chan
->name
);
1577 * Copy data between a UST app session and a regular LTT session.
1579 static void shadow_copy_session(struct ust_app_session
*ua_sess
,
1580 struct ltt_ust_session
*usess
, struct ust_app
*app
)
1582 struct lttng_ht_node_str
*ua_chan_node
;
1583 struct lttng_ht_iter iter
;
1584 struct ltt_ust_channel
*uchan
;
1585 struct ust_app_channel
*ua_chan
;
1587 struct tm
*timeinfo
;
1591 /* Get date and time for unique app path */
1593 timeinfo
= localtime(&rawtime
);
1594 strftime(datetime
, sizeof(datetime
), "%Y%m%d-%H%M%S", timeinfo
);
1596 DBG2("Shadow copy of session handle %d", ua_sess
->handle
);
1598 ua_sess
->tracing_id
= usess
->id
;
1599 ua_sess
->id
= get_next_session_id();
1600 ua_sess
->uid
= app
->uid
;
1601 ua_sess
->gid
= app
->gid
;
1602 ua_sess
->euid
= usess
->uid
;
1603 ua_sess
->egid
= usess
->gid
;
1604 ua_sess
->buffer_type
= usess
->buffer_type
;
1605 ua_sess
->bits_per_long
= app
->bits_per_long
;
1606 /* There is only one consumer object per session possible. */
1607 ua_sess
->consumer
= usess
->consumer
;
1608 ua_sess
->output_traces
= usess
->output_traces
;
1609 ua_sess
->live_timer_interval
= usess
->live_timer_interval
;
1611 switch (ua_sess
->buffer_type
) {
1612 case LTTNG_BUFFER_PER_PID
:
1613 ret
= snprintf(ua_sess
->path
, sizeof(ua_sess
->path
),
1614 DEFAULT_UST_TRACE_PID_PATH
"/%s-%d-%s", app
->name
, app
->pid
,
1617 case LTTNG_BUFFER_PER_UID
:
1618 ret
= snprintf(ua_sess
->path
, sizeof(ua_sess
->path
),
1619 DEFAULT_UST_TRACE_UID_PATH
, ua_sess
->uid
, app
->bits_per_long
);
1626 PERROR("asprintf UST shadow copy session");
1631 /* Iterate over all channels in global domain. */
1632 cds_lfht_for_each_entry(usess
->domain_global
.channels
->ht
, &iter
.iter
,
1634 struct lttng_ht_iter uiter
;
1636 lttng_ht_lookup(ua_sess
->channels
, (void *)uchan
->name
, &uiter
);
1637 ua_chan_node
= lttng_ht_iter_get_node_str(&uiter
);
1638 if (ua_chan_node
!= NULL
) {
1639 /* Session exist. Contiuing. */
1643 DBG2("Channel %s not found on shadow session copy, creating it",
1645 ua_chan
= alloc_ust_app_channel(uchan
->name
, ua_sess
, &uchan
->attr
);
1646 if (ua_chan
== NULL
) {
1647 /* malloc failed FIXME: Might want to do handle ENOMEM .. */
1650 shadow_copy_channel(ua_chan
, uchan
);
1652 * The concept of metadata channel does not exist on the tracing
1653 * registry side of the session daemon so this can only be a per CPU
1654 * channel and not metadata.
1656 ua_chan
->attr
.type
= LTTNG_UST_CHAN_PER_CPU
;
1658 lttng_ht_add_unique_str(ua_sess
->channels
, &ua_chan
->node
);
1666 * Lookup sesison wrapper.
1669 void __lookup_session_by_app(struct ltt_ust_session
*usess
,
1670 struct ust_app
*app
, struct lttng_ht_iter
*iter
)
1672 /* Get right UST app session from app */
1673 lttng_ht_lookup(app
->sessions
, &usess
->id
, iter
);
1677 * Return ust app session from the app session hashtable using the UST session
1680 static struct ust_app_session
*lookup_session_by_app(
1681 struct ltt_ust_session
*usess
, struct ust_app
*app
)
1683 struct lttng_ht_iter iter
;
1684 struct lttng_ht_node_u64
*node
;
1686 __lookup_session_by_app(usess
, app
, &iter
);
1687 node
= lttng_ht_iter_get_node_u64(&iter
);
1692 return caa_container_of(node
, struct ust_app_session
, node
);
1699 * Setup buffer registry per PID for the given session and application. If none
1700 * is found, a new one is created, added to the global registry and
1701 * initialized. If regp is valid, it's set with the newly created object.
1703 * Return 0 on success or else a negative value.
1705 static int setup_buffer_reg_pid(struct ust_app_session
*ua_sess
,
1706 struct ust_app
*app
, struct buffer_reg_pid
**regp
)
1709 struct buffer_reg_pid
*reg_pid
;
1716 reg_pid
= buffer_reg_pid_find(ua_sess
->id
);
1719 * This is the create channel path meaning that if there is NO
1720 * registry available, we have to create one for this session.
1722 ret
= buffer_reg_pid_create(ua_sess
->id
, ®_pid
);
1726 buffer_reg_pid_add(reg_pid
);
1731 /* Initialize registry. */
1732 ret
= ust_registry_session_init(®_pid
->registry
->reg
.ust
, app
,
1733 app
->bits_per_long
, app
->uint8_t_alignment
,
1734 app
->uint16_t_alignment
, app
->uint32_t_alignment
,
1735 app
->uint64_t_alignment
, app
->long_alignment
,
1736 app
->byte_order
, app
->version
.major
,
1737 app
->version
.minor
);
1742 DBG3("UST app buffer registry per PID created successfully");
1754 * Setup buffer registry per UID for the given session and application. If none
1755 * is found, a new one is created, added to the global registry and
1756 * initialized. If regp is valid, it's set with the newly created object.
1758 * Return 0 on success or else a negative value.
1760 static int setup_buffer_reg_uid(struct ltt_ust_session
*usess
,
1761 struct ust_app
*app
, struct buffer_reg_uid
**regp
)
1764 struct buffer_reg_uid
*reg_uid
;
1771 reg_uid
= buffer_reg_uid_find(usess
->id
, app
->bits_per_long
, app
->uid
);
1774 * This is the create channel path meaning that if there is NO
1775 * registry available, we have to create one for this session.
1777 ret
= buffer_reg_uid_create(usess
->id
, app
->bits_per_long
, app
->uid
,
1778 LTTNG_DOMAIN_UST
, ®_uid
);
1782 buffer_reg_uid_add(reg_uid
);
1787 /* Initialize registry. */
1788 ret
= ust_registry_session_init(®_uid
->registry
->reg
.ust
, NULL
,
1789 app
->bits_per_long
, app
->uint8_t_alignment
,
1790 app
->uint16_t_alignment
, app
->uint32_t_alignment
,
1791 app
->uint64_t_alignment
, app
->long_alignment
,
1792 app
->byte_order
, app
->version
.major
,
1793 app
->version
.minor
);
1797 /* Add node to teardown list of the session. */
1798 cds_list_add(®_uid
->lnode
, &usess
->buffer_reg_uid_list
);
1800 DBG3("UST app buffer registry per UID created successfully");
1812 * Create a session on the tracer side for the given app.
1814 * On success, ua_sess_ptr is populated with the session pointer or else left
1815 * untouched. If the session was created, is_created is set to 1. On error,
1816 * it's left untouched. Note that ua_sess_ptr is mandatory but is_created can
1819 * Returns 0 on success or else a negative code which is either -ENOMEM or
1820 * -ENOTCONN which is the default code if the ustctl_create_session fails.
1822 static int create_ust_app_session(struct ltt_ust_session
*usess
,
1823 struct ust_app
*app
, struct ust_app_session
**ua_sess_ptr
,
1826 int ret
, created
= 0;
1827 struct ust_app_session
*ua_sess
;
1831 assert(ua_sess_ptr
);
1833 health_code_update();
1835 ua_sess
= lookup_session_by_app(usess
, app
);
1836 if (ua_sess
== NULL
) {
1837 DBG2("UST app pid: %d session id %" PRIu64
" not found, creating it",
1838 app
->pid
, usess
->id
);
1839 ua_sess
= alloc_ust_app_session(app
);
1840 if (ua_sess
== NULL
) {
1841 /* Only malloc can failed so something is really wrong */
1845 shadow_copy_session(ua_sess
, usess
, app
);
1849 switch (usess
->buffer_type
) {
1850 case LTTNG_BUFFER_PER_PID
:
1851 /* Init local registry. */
1852 ret
= setup_buffer_reg_pid(ua_sess
, app
, NULL
);
1857 case LTTNG_BUFFER_PER_UID
:
1858 /* Look for a global registry. If none exists, create one. */
1859 ret
= setup_buffer_reg_uid(usess
, app
, NULL
);
1870 health_code_update();
1872 if (ua_sess
->handle
== -1) {
1873 ret
= ustctl_create_session(app
->sock
);
1875 if (ret
!= -EPIPE
&& ret
!= -LTTNG_UST_ERR_EXITING
) {
1876 ERR("Creating session for app pid %d with ret %d",
1879 DBG("UST app creating session failed. Application is dead");
1881 * This is normal behavior, an application can die during the
1882 * creation process. Don't report an error so the execution can
1883 * continue normally. This will get flagged ENOTCONN and the
1884 * caller will handle it.
1888 delete_ust_app_session(-1, ua_sess
, app
);
1889 if (ret
!= -ENOMEM
) {
1891 * Tracer is probably gone or got an internal error so let's
1892 * behave like it will soon unregister or not usable.
1899 ua_sess
->handle
= ret
;
1901 /* Add ust app session to app's HT */
1902 lttng_ht_node_init_u64(&ua_sess
->node
,
1903 ua_sess
->tracing_id
);
1904 lttng_ht_add_unique_u64(app
->sessions
, &ua_sess
->node
);
1906 DBG2("UST app session created successfully with handle %d", ret
);
1909 *ua_sess_ptr
= ua_sess
;
1911 *is_created
= created
;
1914 /* Everything went well. */
1918 health_code_update();
1923 * Create a context for the channel on the tracer.
1925 * Called with UST app session lock held and a RCU read side lock.
1928 int create_ust_app_channel_context(struct ust_app_session
*ua_sess
,
1929 struct ust_app_channel
*ua_chan
, struct lttng_ust_context
*uctx
,
1930 struct ust_app
*app
)
1933 struct lttng_ht_iter iter
;
1934 struct lttng_ht_node_ulong
*node
;
1935 struct ust_app_ctx
*ua_ctx
;
1937 DBG2("UST app adding context to channel %s", ua_chan
->name
);
1939 lttng_ht_lookup(ua_chan
->ctx
, (void *)((unsigned long)uctx
->ctx
), &iter
);
1940 node
= lttng_ht_iter_get_node_ulong(&iter
);
1946 ua_ctx
= alloc_ust_app_ctx(uctx
);
1947 if (ua_ctx
== NULL
) {
1953 lttng_ht_node_init_ulong(&ua_ctx
->node
, (unsigned long) ua_ctx
->ctx
.ctx
);
1954 lttng_ht_add_unique_ulong(ua_chan
->ctx
, &ua_ctx
->node
);
1955 cds_list_add_tail(&ua_ctx
->list
, &ua_chan
->ctx_list
);
1957 ret
= create_ust_channel_context(ua_chan
, ua_ctx
, app
);
1967 * Enable on the tracer side a ust app event for the session and channel.
1969 * Called with UST app session lock held.
1972 int enable_ust_app_event(struct ust_app_session
*ua_sess
,
1973 struct ust_app_event
*ua_event
, struct ust_app
*app
)
1977 ret
= enable_ust_event(app
, ua_sess
, ua_event
);
1982 ua_event
->enabled
= 1;
1989 * Disable on the tracer side a ust app event for the session and channel.
1991 static int disable_ust_app_event(struct ust_app_session
*ua_sess
,
1992 struct ust_app_event
*ua_event
, struct ust_app
*app
)
1996 ret
= disable_ust_event(app
, ua_sess
, ua_event
);
2001 ua_event
->enabled
= 0;
2008 * Lookup ust app channel for session and disable it on the tracer side.
2011 int disable_ust_app_channel(struct ust_app_session
*ua_sess
,
2012 struct ust_app_channel
*ua_chan
, struct ust_app
*app
)
2016 ret
= disable_ust_channel(app
, ua_sess
, ua_chan
);
2021 ua_chan
->enabled
= 0;
2028 * Lookup ust app channel for session and enable it on the tracer side. This
2029 * MUST be called with a RCU read side lock acquired.
2031 static int enable_ust_app_channel(struct ust_app_session
*ua_sess
,
2032 struct ltt_ust_channel
*uchan
, struct ust_app
*app
)
2035 struct lttng_ht_iter iter
;
2036 struct lttng_ht_node_str
*ua_chan_node
;
2037 struct ust_app_channel
*ua_chan
;
2039 lttng_ht_lookup(ua_sess
->channels
, (void *)uchan
->name
, &iter
);
2040 ua_chan_node
= lttng_ht_iter_get_node_str(&iter
);
2041 if (ua_chan_node
== NULL
) {
2042 DBG2("Unable to find channel %s in ust session id %" PRIu64
,
2043 uchan
->name
, ua_sess
->tracing_id
);
2047 ua_chan
= caa_container_of(ua_chan_node
, struct ust_app_channel
, node
);
2049 ret
= enable_ust_channel(app
, ua_sess
, ua_chan
);
2059 * Ask the consumer to create a channel and get it if successful.
2061 * Return 0 on success or else a negative value.
2063 static int do_consumer_create_channel(struct ltt_ust_session
*usess
,
2064 struct ust_app_session
*ua_sess
, struct ust_app_channel
*ua_chan
,
2065 int bitness
, struct ust_registry_session
*registry
)
2068 unsigned int nb_fd
= 0;
2069 struct consumer_socket
*socket
;
2077 health_code_update();
2079 /* Get the right consumer socket for the application. */
2080 socket
= consumer_find_socket_by_bitness(bitness
, usess
->consumer
);
2086 health_code_update();
2088 /* Need one fd for the channel. */
2089 ret
= lttng_fd_get(LTTNG_FD_APPS
, 1);
2091 ERR("Exhausted number of available FD upon create channel");
2096 * Ask consumer to create channel. The consumer will return the number of
2097 * stream we have to expect.
2099 ret
= ust_consumer_ask_channel(ua_sess
, ua_chan
, usess
->consumer
, socket
,
2106 * Compute the number of fd needed before receiving them. It must be 2 per
2107 * stream (2 being the default value here).
2109 nb_fd
= DEFAULT_UST_STREAM_FD_NUM
* ua_chan
->expected_stream_count
;
2111 /* Reserve the amount of file descriptor we need. */
2112 ret
= lttng_fd_get(LTTNG_FD_APPS
, nb_fd
);
2114 ERR("Exhausted number of available FD upon create channel");
2115 goto error_fd_get_stream
;
2118 health_code_update();
2121 * Now get the channel from the consumer. This call wil populate the stream
2122 * list of that channel and set the ust objects.
2124 if (usess
->consumer
->enabled
) {
2125 ret
= ust_consumer_get_channel(socket
, ua_chan
);
2135 lttng_fd_put(LTTNG_FD_APPS
, nb_fd
);
2136 error_fd_get_stream
:
2138 * Initiate a destroy channel on the consumer since we had an error
2139 * handling it on our side. The return value is of no importance since we
2140 * already have a ret value set by the previous error that we need to
2143 (void) ust_consumer_destroy_channel(socket
, ua_chan
);
2145 lttng_fd_put(LTTNG_FD_APPS
, 1);
2147 health_code_update();
2153 * Duplicate the ust data object of the ust app stream and save it in the
2154 * buffer registry stream.
2156 * Return 0 on success or else a negative value.
2158 static int duplicate_stream_object(struct buffer_reg_stream
*reg_stream
,
2159 struct ust_app_stream
*stream
)
2166 /* Reserve the amount of file descriptor we need. */
2167 ret
= lttng_fd_get(LTTNG_FD_APPS
, 2);
2169 ERR("Exhausted number of available FD upon duplicate stream");
2173 /* Duplicate object for stream once the original is in the registry. */
2174 ret
= ustctl_duplicate_ust_object_data(&stream
->obj
,
2175 reg_stream
->obj
.ust
);
2177 ERR("Duplicate stream obj from %p to %p failed with ret %d",
2178 reg_stream
->obj
.ust
, stream
->obj
, ret
);
2179 lttng_fd_put(LTTNG_FD_APPS
, 2);
2182 stream
->handle
= stream
->obj
->handle
;
2189 * Duplicate the ust data object of the ust app. channel and save it in the
2190 * buffer registry channel.
2192 * Return 0 on success or else a negative value.
2194 static int duplicate_channel_object(struct buffer_reg_channel
*reg_chan
,
2195 struct ust_app_channel
*ua_chan
)
2202 /* Need two fds for the channel. */
2203 ret
= lttng_fd_get(LTTNG_FD_APPS
, 1);
2205 ERR("Exhausted number of available FD upon duplicate channel");
2209 /* Duplicate object for stream once the original is in the registry. */
2210 ret
= ustctl_duplicate_ust_object_data(&ua_chan
->obj
, reg_chan
->obj
.ust
);
2212 ERR("Duplicate channel obj from %p to %p failed with ret: %d",
2213 reg_chan
->obj
.ust
, ua_chan
->obj
, ret
);
2216 ua_chan
->handle
= ua_chan
->obj
->handle
;
2221 lttng_fd_put(LTTNG_FD_APPS
, 1);
2227 * For a given channel buffer registry, setup all streams of the given ust
2228 * application channel.
2230 * Return 0 on success or else a negative value.
2232 static int setup_buffer_reg_streams(struct buffer_reg_channel
*reg_chan
,
2233 struct ust_app_channel
*ua_chan
)
2236 struct ust_app_stream
*stream
, *stmp
;
2241 DBG2("UST app setup buffer registry stream");
2243 /* Send all streams to application. */
2244 cds_list_for_each_entry_safe(stream
, stmp
, &ua_chan
->streams
.head
, list
) {
2245 struct buffer_reg_stream
*reg_stream
;
2247 ret
= buffer_reg_stream_create(®_stream
);
2253 * Keep original pointer and nullify it in the stream so the delete
2254 * stream call does not release the object.
2256 reg_stream
->obj
.ust
= stream
->obj
;
2258 buffer_reg_stream_add(reg_stream
, reg_chan
);
2260 /* We don't need the streams anymore. */
2261 cds_list_del(&stream
->list
);
2262 delete_ust_app_stream(-1, stream
);
2270 * Create a buffer registry channel for the given session registry and
2271 * application channel object. If regp pointer is valid, it's set with the
2272 * created object. Important, the created object is NOT added to the session
2273 * registry hash table.
2275 * Return 0 on success else a negative value.
2277 static int create_buffer_reg_channel(struct buffer_reg_session
*reg_sess
,
2278 struct ust_app_channel
*ua_chan
, struct buffer_reg_channel
**regp
)
2281 struct buffer_reg_channel
*reg_chan
= NULL
;
2286 DBG2("UST app creating buffer registry channel for %s", ua_chan
->name
);
2288 /* Create buffer registry channel. */
2289 ret
= buffer_reg_channel_create(ua_chan
->tracing_channel_id
, ®_chan
);
2294 reg_chan
->consumer_key
= ua_chan
->key
;
2295 reg_chan
->subbuf_size
= ua_chan
->attr
.subbuf_size
;
2297 /* Create and add a channel registry to session. */
2298 ret
= ust_registry_channel_add(reg_sess
->reg
.ust
,
2299 ua_chan
->tracing_channel_id
);
2303 buffer_reg_channel_add(reg_sess
, reg_chan
);
2312 /* Safe because the registry channel object was not added to any HT. */
2313 buffer_reg_channel_destroy(reg_chan
, LTTNG_DOMAIN_UST
);
2319 * Setup buffer registry channel for the given session registry and application
2320 * channel object. If regp pointer is valid, it's set with the created object.
2322 * Return 0 on success else a negative value.
2324 static int setup_buffer_reg_channel(struct buffer_reg_session
*reg_sess
,
2325 struct ust_app_channel
*ua_chan
, struct buffer_reg_channel
*reg_chan
)
2332 assert(ua_chan
->obj
);
2334 DBG2("UST app setup buffer registry channel for %s", ua_chan
->name
);
2336 /* Setup all streams for the registry. */
2337 ret
= setup_buffer_reg_streams(reg_chan
, ua_chan
);
2342 reg_chan
->obj
.ust
= ua_chan
->obj
;
2343 ua_chan
->obj
= NULL
;
2348 buffer_reg_channel_remove(reg_sess
, reg_chan
);
2349 buffer_reg_channel_destroy(reg_chan
, LTTNG_DOMAIN_UST
);
2354 * Send buffer registry channel to the application.
2356 * Return 0 on success else a negative value.
2358 static int send_channel_uid_to_ust(struct buffer_reg_channel
*reg_chan
,
2359 struct ust_app
*app
, struct ust_app_session
*ua_sess
,
2360 struct ust_app_channel
*ua_chan
)
2363 struct buffer_reg_stream
*reg_stream
;
2370 DBG("UST app sending buffer registry channel to ust sock %d", app
->sock
);
2372 ret
= duplicate_channel_object(reg_chan
, ua_chan
);
2377 /* Send channel to the application. */
2378 ret
= ust_consumer_send_channel_to_ust(app
, ua_sess
, ua_chan
);
2383 health_code_update();
2385 /* Send all streams to application. */
2386 pthread_mutex_lock(®_chan
->stream_list_lock
);
2387 cds_list_for_each_entry(reg_stream
, ®_chan
->streams
, lnode
) {
2388 struct ust_app_stream stream
;
2390 ret
= duplicate_stream_object(reg_stream
, &stream
);
2392 goto error_stream_unlock
;
2395 ret
= ust_consumer_send_stream_to_ust(app
, ua_chan
, &stream
);
2397 (void) release_ust_app_stream(-1, &stream
);
2398 goto error_stream_unlock
;
2402 * The return value is not important here. This function will output an
2405 (void) release_ust_app_stream(-1, &stream
);
2407 ua_chan
->is_sent
= 1;
2409 error_stream_unlock
:
2410 pthread_mutex_unlock(®_chan
->stream_list_lock
);
2416 * Create and send to the application the created buffers with per UID buffers.
2418 * Return 0 on success else a negative value.
2420 static int create_channel_per_uid(struct ust_app
*app
,
2421 struct ltt_ust_session
*usess
, struct ust_app_session
*ua_sess
,
2422 struct ust_app_channel
*ua_chan
)
2425 struct buffer_reg_uid
*reg_uid
;
2426 struct buffer_reg_channel
*reg_chan
;
2433 DBG("UST app creating channel %s with per UID buffers", ua_chan
->name
);
2435 reg_uid
= buffer_reg_uid_find(usess
->id
, app
->bits_per_long
, app
->uid
);
2437 * The session creation handles the creation of this global registry
2438 * object. If none can be find, there is a code flow problem or a
2443 reg_chan
= buffer_reg_channel_find(ua_chan
->tracing_channel_id
,
2446 /* Create the buffer registry channel object. */
2447 ret
= create_buffer_reg_channel(reg_uid
->registry
, ua_chan
, ®_chan
);
2454 * Create the buffers on the consumer side. This call populates the
2455 * ust app channel object with all streams and data object.
2457 ret
= do_consumer_create_channel(usess
, ua_sess
, ua_chan
,
2458 app
->bits_per_long
, reg_uid
->registry
->reg
.ust
);
2461 * Let's remove the previously created buffer registry channel so
2462 * it's not visible anymore in the session registry.
2464 ust_registry_channel_del_free(reg_uid
->registry
->reg
.ust
,
2465 ua_chan
->tracing_channel_id
);
2466 buffer_reg_channel_remove(reg_uid
->registry
, reg_chan
);
2467 buffer_reg_channel_destroy(reg_chan
, LTTNG_DOMAIN_UST
);
2472 * Setup the streams and add it to the session registry.
2474 ret
= setup_buffer_reg_channel(reg_uid
->registry
, ua_chan
, reg_chan
);
2481 /* Send buffers to the application. */
2482 ret
= send_channel_uid_to_ust(reg_chan
, app
, ua_sess
, ua_chan
);
2492 * Create and send to the application the created buffers with per PID buffers.
2494 * Return 0 on success else a negative value.
2496 static int create_channel_per_pid(struct ust_app
*app
,
2497 struct ltt_ust_session
*usess
, struct ust_app_session
*ua_sess
,
2498 struct ust_app_channel
*ua_chan
)
2501 struct ust_registry_session
*registry
;
2508 DBG("UST app creating channel %s with per PID buffers", ua_chan
->name
);
2512 registry
= get_session_registry(ua_sess
);
2515 /* Create and add a new channel registry to session. */
2516 ret
= ust_registry_channel_add(registry
, ua_chan
->key
);
2521 /* Create and get channel on the consumer side. */
2522 ret
= do_consumer_create_channel(usess
, ua_sess
, ua_chan
,
2523 app
->bits_per_long
, registry
);
2528 ret
= send_channel_pid_to_ust(app
, ua_sess
, ua_chan
);
2539 * From an already allocated ust app channel, create the channel buffers if
2540 * need and send it to the application. This MUST be called with a RCU read
2541 * side lock acquired.
2543 * Return 0 on success or else a negative value.
2545 static int do_create_channel(struct ust_app
*app
,
2546 struct ltt_ust_session
*usess
, struct ust_app_session
*ua_sess
,
2547 struct ust_app_channel
*ua_chan
)
2556 /* Handle buffer type before sending the channel to the application. */
2557 switch (usess
->buffer_type
) {
2558 case LTTNG_BUFFER_PER_UID
:
2560 ret
= create_channel_per_uid(app
, usess
, ua_sess
, ua_chan
);
2566 case LTTNG_BUFFER_PER_PID
:
2568 ret
= create_channel_per_pid(app
, usess
, ua_sess
, ua_chan
);
2580 /* Initialize ust objd object using the received handle and add it. */
2581 lttng_ht_node_init_ulong(&ua_chan
->ust_objd_node
, ua_chan
->handle
);
2582 lttng_ht_add_unique_ulong(app
->ust_objd
, &ua_chan
->ust_objd_node
);
2584 /* If channel is not enabled, disable it on the tracer */
2585 if (!ua_chan
->enabled
) {
2586 ret
= disable_ust_channel(app
, ua_sess
, ua_chan
);
2597 * Create UST app channel and create it on the tracer. Set ua_chanp of the
2598 * newly created channel if not NULL.
2600 * Called with UST app session lock and RCU read-side lock held.
2602 * Return 0 on success or else a negative value.
2604 static int create_ust_app_channel(struct ust_app_session
*ua_sess
,
2605 struct ltt_ust_channel
*uchan
, struct ust_app
*app
,
2606 enum lttng_ust_chan_type type
, struct ltt_ust_session
*usess
,
2607 struct ust_app_channel
**ua_chanp
)
2610 struct lttng_ht_iter iter
;
2611 struct lttng_ht_node_str
*ua_chan_node
;
2612 struct ust_app_channel
*ua_chan
;
2614 /* Lookup channel in the ust app session */
2615 lttng_ht_lookup(ua_sess
->channels
, (void *)uchan
->name
, &iter
);
2616 ua_chan_node
= lttng_ht_iter_get_node_str(&iter
);
2617 if (ua_chan_node
!= NULL
) {
2618 ua_chan
= caa_container_of(ua_chan_node
, struct ust_app_channel
, node
);
2622 ua_chan
= alloc_ust_app_channel(uchan
->name
, ua_sess
, &uchan
->attr
);
2623 if (ua_chan
== NULL
) {
2624 /* Only malloc can fail here */
2628 shadow_copy_channel(ua_chan
, uchan
);
2630 /* Set channel type. */
2631 ua_chan
->attr
.type
= type
;
2633 ret
= do_create_channel(app
, usess
, ua_sess
, ua_chan
);
2638 DBG2("UST app create channel %s for PID %d completed", ua_chan
->name
,
2641 /* Only add the channel if successful on the tracer side. */
2642 lttng_ht_add_unique_str(ua_sess
->channels
, &ua_chan
->node
);
2646 *ua_chanp
= ua_chan
;
2649 /* Everything went well. */
2653 delete_ust_app_channel(ua_chan
->is_sent
? app
->sock
: -1, ua_chan
, app
);
2659 * Create UST app event and create it on the tracer side.
2661 * Called with ust app session mutex held.
2664 int create_ust_app_event(struct ust_app_session
*ua_sess
,
2665 struct ust_app_channel
*ua_chan
, struct ltt_ust_event
*uevent
,
2666 struct ust_app
*app
)
2669 struct ust_app_event
*ua_event
;
2671 /* Get event node */
2672 ua_event
= find_ust_app_event(ua_chan
->events
, uevent
->attr
.name
,
2673 uevent
->filter
, uevent
->attr
.loglevel
, uevent
->exclusion
);
2674 if (ua_event
!= NULL
) {
2679 /* Does not exist so create one */
2680 ua_event
= alloc_ust_app_event(uevent
->attr
.name
, &uevent
->attr
);
2681 if (ua_event
== NULL
) {
2682 /* Only malloc can failed so something is really wrong */
2686 shadow_copy_event(ua_event
, uevent
);
2688 /* Create it on the tracer side */
2689 ret
= create_ust_event(app
, ua_sess
, ua_chan
, ua_event
);
2691 /* Not found previously means that it does not exist on the tracer */
2692 assert(ret
!= -LTTNG_UST_ERR_EXIST
);
2696 add_unique_ust_app_event(ua_chan
, ua_event
);
2698 DBG2("UST app create event %s for PID %d completed", ua_event
->name
,
2705 /* Valid. Calling here is already in a read side lock */
2706 delete_ust_app_event(-1, ua_event
);
2711 * Create UST metadata and open it on the tracer side.
2713 * Called with UST app session lock held and RCU read side lock.
2715 static int create_ust_app_metadata(struct ust_app_session
*ua_sess
,
2716 struct ust_app
*app
, struct consumer_output
*consumer
,
2717 struct ustctl_consumer_channel_attr
*attr
)
2720 struct ust_app_channel
*metadata
;
2721 struct consumer_socket
*socket
;
2722 struct ust_registry_session
*registry
;
2728 registry
= get_session_registry(ua_sess
);
2731 /* Metadata already exists for this registry or it was closed previously */
2732 if (registry
->metadata_key
|| registry
->metadata_closed
) {
2737 /* Allocate UST metadata */
2738 metadata
= alloc_ust_app_channel(DEFAULT_METADATA_NAME
, ua_sess
, NULL
);
2740 /* malloc() failed */
2746 /* Set default attributes for metadata. */
2747 metadata
->attr
.overwrite
= DEFAULT_CHANNEL_OVERWRITE
;
2748 metadata
->attr
.subbuf_size
= default_get_metadata_subbuf_size();
2749 metadata
->attr
.num_subbuf
= DEFAULT_METADATA_SUBBUF_NUM
;
2750 metadata
->attr
.switch_timer_interval
= DEFAULT_METADATA_SWITCH_TIMER
;
2751 metadata
->attr
.read_timer_interval
= DEFAULT_METADATA_READ_TIMER
;
2752 metadata
->attr
.output
= LTTNG_UST_MMAP
;
2753 metadata
->attr
.type
= LTTNG_UST_CHAN_METADATA
;
2755 memcpy(&metadata
->attr
, attr
, sizeof(metadata
->attr
));
2756 metadata
->attr
.output
= LTTNG_UST_MMAP
;
2757 metadata
->attr
.type
= LTTNG_UST_CHAN_METADATA
;
2760 /* Need one fd for the channel. */
2761 ret
= lttng_fd_get(LTTNG_FD_APPS
, 1);
2763 ERR("Exhausted number of available FD upon create metadata");
2767 /* Get the right consumer socket for the application. */
2768 socket
= consumer_find_socket_by_bitness(app
->bits_per_long
, consumer
);
2771 goto error_consumer
;
2775 * Keep metadata key so we can identify it on the consumer side. Assign it
2776 * to the registry *before* we ask the consumer so we avoid the race of the
2777 * consumer requesting the metadata and the ask_channel call on our side
2778 * did not returned yet.
2780 registry
->metadata_key
= metadata
->key
;
2783 * Ask the metadata channel creation to the consumer. The metadata object
2784 * will be created by the consumer and kept their. However, the stream is
2785 * never added or monitored until we do a first push metadata to the
2788 ret
= ust_consumer_ask_channel(ua_sess
, metadata
, consumer
, socket
,
2791 /* Nullify the metadata key so we don't try to close it later on. */
2792 registry
->metadata_key
= 0;
2793 goto error_consumer
;
2797 * The setup command will make the metadata stream be sent to the relayd,
2798 * if applicable, and the thread managing the metadatas. This is important
2799 * because after this point, if an error occurs, the only way the stream
2800 * can be deleted is to be monitored in the consumer.
2802 ret
= consumer_setup_metadata(socket
, metadata
->key
);
2804 /* Nullify the metadata key so we don't try to close it later on. */
2805 registry
->metadata_key
= 0;
2806 goto error_consumer
;
2809 DBG2("UST metadata with key %" PRIu64
" created for app pid %d",
2810 metadata
->key
, app
->pid
);
2813 lttng_fd_put(LTTNG_FD_APPS
, 1);
2814 delete_ust_app_channel(-1, metadata
, app
);
2820 * Return pointer to traceable apps list.
2822 struct lttng_ht
*ust_app_get_ht(void)
2828 * Return ust app pointer or NULL if not found. RCU read side lock MUST be
2829 * acquired before calling this function.
2831 struct ust_app
*ust_app_find_by_pid(pid_t pid
)
2833 struct ust_app
*app
= NULL
;
2834 struct lttng_ht_node_ulong
*node
;
2835 struct lttng_ht_iter iter
;
2837 lttng_ht_lookup(ust_app_ht
, (void *)((unsigned long) pid
), &iter
);
2838 node
= lttng_ht_iter_get_node_ulong(&iter
);
2840 DBG2("UST app no found with pid %d", pid
);
2844 DBG2("Found UST app by pid %d", pid
);
2846 app
= caa_container_of(node
, struct ust_app
, pid_n
);
2853 * Allocate and init an UST app object using the registration information and
2854 * the command socket. This is called when the command socket connects to the
2857 * The object is returned on success or else NULL.
2859 struct ust_app
*ust_app_create(struct ust_register_msg
*msg
, int sock
)
2861 struct ust_app
*lta
= NULL
;
2866 DBG3("UST app creating application for socket %d", sock
);
2868 if ((msg
->bits_per_long
== 64 &&
2869 (uatomic_read(&ust_consumerd64_fd
) == -EINVAL
))
2870 || (msg
->bits_per_long
== 32 &&
2871 (uatomic_read(&ust_consumerd32_fd
) == -EINVAL
))) {
2872 ERR("Registration failed: application \"%s\" (pid: %d) has "
2873 "%d-bit long, but no consumerd for this size is available.\n",
2874 msg
->name
, msg
->pid
, msg
->bits_per_long
);
2878 lta
= zmalloc(sizeof(struct ust_app
));
2884 lta
->ppid
= msg
->ppid
;
2885 lta
->uid
= msg
->uid
;
2886 lta
->gid
= msg
->gid
;
2888 lta
->bits_per_long
= msg
->bits_per_long
;
2889 lta
->uint8_t_alignment
= msg
->uint8_t_alignment
;
2890 lta
->uint16_t_alignment
= msg
->uint16_t_alignment
;
2891 lta
->uint32_t_alignment
= msg
->uint32_t_alignment
;
2892 lta
->uint64_t_alignment
= msg
->uint64_t_alignment
;
2893 lta
->long_alignment
= msg
->long_alignment
;
2894 lta
->byte_order
= msg
->byte_order
;
2896 lta
->v_major
= msg
->major
;
2897 lta
->v_minor
= msg
->minor
;
2898 lta
->sessions
= lttng_ht_new(0, LTTNG_HT_TYPE_U64
);
2899 lta
->ust_objd
= lttng_ht_new(0, LTTNG_HT_TYPE_ULONG
);
2900 lta
->notify_sock
= -1;
2902 /* Copy name and make sure it's NULL terminated. */
2903 strncpy(lta
->name
, msg
->name
, sizeof(lta
->name
));
2904 lta
->name
[UST_APP_PROCNAME_LEN
] = '\0';
2907 * Before this can be called, when receiving the registration information,
2908 * the application compatibility is checked. So, at this point, the
2909 * application can work with this session daemon.
2911 lta
->compatible
= 1;
2913 lta
->pid
= msg
->pid
;
2914 lttng_ht_node_init_ulong(<a
->pid_n
, (unsigned long) lta
->pid
);
2916 lttng_ht_node_init_ulong(<a
->sock_n
, (unsigned long) lta
->sock
);
2918 CDS_INIT_LIST_HEAD(<a
->teardown_head
);
2925 * For a given application object, add it to every hash table.
2927 void ust_app_add(struct ust_app
*app
)
2930 assert(app
->notify_sock
>= 0);
2935 * On a re-registration, we want to kick out the previous registration of
2938 lttng_ht_add_replace_ulong(ust_app_ht
, &app
->pid_n
);
2941 * The socket _should_ be unique until _we_ call close. So, a add_unique
2942 * for the ust_app_ht_by_sock is used which asserts fail if the entry was
2943 * already in the table.
2945 lttng_ht_add_unique_ulong(ust_app_ht_by_sock
, &app
->sock_n
);
2947 /* Add application to the notify socket hash table. */
2948 lttng_ht_node_init_ulong(&app
->notify_sock_n
, app
->notify_sock
);
2949 lttng_ht_add_unique_ulong(ust_app_ht_by_notify_sock
, &app
->notify_sock_n
);
2951 DBG("App registered with pid:%d ppid:%d uid:%d gid:%d sock:%d name:%s "
2952 "notify_sock:%d (version %d.%d)", app
->pid
, app
->ppid
, app
->uid
,
2953 app
->gid
, app
->sock
, app
->name
, app
->notify_sock
, app
->v_major
,
2960 * Set the application version into the object.
2962 * Return 0 on success else a negative value either an errno code or a
2963 * LTTng-UST error code.
2965 int ust_app_version(struct ust_app
*app
)
2971 ret
= ustctl_tracer_version(app
->sock
, &app
->version
);
2973 if (ret
!= -LTTNG_UST_ERR_EXITING
&& ret
!= -EPIPE
) {
2974 ERR("UST app %d verson failed with ret %d", app
->sock
, ret
);
2976 DBG3("UST app %d verion failed. Application is dead", app
->sock
);
2984 * Unregister app by removing it from the global traceable app list and freeing
2987 * The socket is already closed at this point so no close to sock.
2989 void ust_app_unregister(int sock
)
2991 struct ust_app
*lta
;
2992 struct lttng_ht_node_ulong
*node
;
2993 struct lttng_ht_iter iter
;
2994 struct ust_app_session
*ua_sess
;
2999 /* Get the node reference for a call_rcu */
3000 lttng_ht_lookup(ust_app_ht_by_sock
, (void *)((unsigned long) sock
), &iter
);
3001 node
= lttng_ht_iter_get_node_ulong(&iter
);
3004 lta
= caa_container_of(node
, struct ust_app
, sock_n
);
3005 DBG("PID %d unregistering with sock %d", lta
->pid
, sock
);
3007 /* Remove application from PID hash table */
3008 ret
= lttng_ht_del(ust_app_ht_by_sock
, &iter
);
3012 * Remove application from notify hash table. The thread handling the
3013 * notify socket could have deleted the node so ignore on error because
3014 * either way it's valid. The close of that socket is handled by the other
3017 iter
.iter
.node
= <a
->notify_sock_n
.node
;
3018 (void) lttng_ht_del(ust_app_ht_by_notify_sock
, &iter
);
3021 * Ignore return value since the node might have been removed before by an
3022 * add replace during app registration because the PID can be reassigned by
3025 iter
.iter
.node
= <a
->pid_n
.node
;
3026 ret
= lttng_ht_del(ust_app_ht
, &iter
);
3028 DBG3("Unregister app by PID %d failed. This can happen on pid reuse",
3032 /* Remove sessions so they are not visible during deletion.*/
3033 cds_lfht_for_each_entry(lta
->sessions
->ht
, &iter
.iter
, ua_sess
,
3035 struct ust_registry_session
*registry
;
3037 ret
= lttng_ht_del(lta
->sessions
, &iter
);
3039 /* The session was already removed so scheduled for teardown. */
3044 * Add session to list for teardown. This is safe since at this point we
3045 * are the only one using this list.
3047 pthread_mutex_lock(&ua_sess
->lock
);
3050 * Normally, this is done in the delete session process which is
3051 * executed in the call rcu below. However, upon registration we can't
3052 * afford to wait for the grace period before pushing data or else the
3053 * data pending feature can race between the unregistration and stop
3054 * command where the data pending command is sent *before* the grace
3057 * The close metadata below nullifies the metadata pointer in the
3058 * session so the delete session will NOT push/close a second time.
3060 registry
= get_session_registry(ua_sess
);
3061 if (registry
&& !registry
->metadata_closed
) {
3062 /* Push metadata for application before freeing the application. */
3063 (void) push_metadata(registry
, ua_sess
->consumer
);
3066 * Don't ask to close metadata for global per UID buffers. Close
3067 * metadata only on destroy trace session in this case. Also, the
3068 * previous push metadata could have flag the metadata registry to
3069 * close so don't send a close command if closed.
3071 if (ua_sess
->buffer_type
!= LTTNG_BUFFER_PER_UID
&&
3072 !registry
->metadata_closed
) {
3073 /* And ask to close it for this session registry. */
3074 (void) close_metadata(registry
, ua_sess
->consumer
);
3078 cds_list_add(&ua_sess
->teardown_node
, <a
->teardown_head
);
3079 pthread_mutex_unlock(&ua_sess
->lock
);
3083 call_rcu(<a
->pid_n
.head
, delete_ust_app_rcu
);
3090 * Return traceable_app_count
3092 unsigned long ust_app_list_count(void)
3094 unsigned long count
;
3097 count
= lttng_ht_get_count(ust_app_ht
);
3104 * Fill events array with all events name of all registered apps.
3106 int ust_app_list_events(struct lttng_event
**events
)
3109 size_t nbmem
, count
= 0;
3110 struct lttng_ht_iter iter
;
3111 struct ust_app
*app
;
3112 struct lttng_event
*tmp_event
;
3114 nbmem
= UST_APP_EVENT_LIST_SIZE
;
3115 tmp_event
= zmalloc(nbmem
* sizeof(struct lttng_event
));
3116 if (tmp_event
== NULL
) {
3117 PERROR("zmalloc ust app events");
3124 cds_lfht_for_each_entry(ust_app_ht
->ht
, &iter
.iter
, app
, pid_n
.node
) {
3125 struct lttng_ust_tracepoint_iter uiter
;
3127 health_code_update();
3129 if (!app
->compatible
) {
3131 * TODO: In time, we should notice the caller of this error by
3132 * telling him that this is a version error.
3136 handle
= ustctl_tracepoint_list(app
->sock
);
3138 if (handle
!= -EPIPE
&& handle
!= -LTTNG_UST_ERR_EXITING
) {
3139 ERR("UST app list events getting handle failed for app pid %d",
3145 while ((ret
= ustctl_tracepoint_list_get(app
->sock
, handle
,
3146 &uiter
)) != -LTTNG_UST_ERR_NOENT
) {
3147 /* Handle ustctl error. */
3150 if (ret
!= -LTTNG_UST_ERR_EXITING
|| ret
!= -EPIPE
) {
3151 ERR("UST app tp list get failed for app %d with ret %d",
3154 DBG3("UST app tp list get failed. Application is dead");
3156 * This is normal behavior, an application can die during the
3157 * creation process. Don't report an error so the execution can
3158 * continue normally. Continue normal execution.
3165 health_code_update();
3166 if (count
>= nbmem
) {
3167 /* In case the realloc fails, we free the memory */
3170 DBG2("Reallocating event list from %zu to %zu entries", nbmem
,
3173 ptr
= realloc(tmp_event
, nbmem
* sizeof(struct lttng_event
));
3175 PERROR("realloc ust app events");
3182 memcpy(tmp_event
[count
].name
, uiter
.name
, LTTNG_UST_SYM_NAME_LEN
);
3183 tmp_event
[count
].loglevel
= uiter
.loglevel
;
3184 tmp_event
[count
].type
= (enum lttng_event_type
) LTTNG_UST_TRACEPOINT
;
3185 tmp_event
[count
].pid
= app
->pid
;
3186 tmp_event
[count
].enabled
= -1;
3192 *events
= tmp_event
;
3194 DBG2("UST app list events done (%zu events)", count
);
3199 health_code_update();
3204 * Fill events array with all events name of all registered apps.
3206 int ust_app_list_event_fields(struct lttng_event_field
**fields
)
3209 size_t nbmem
, count
= 0;
3210 struct lttng_ht_iter iter
;
3211 struct ust_app
*app
;
3212 struct lttng_event_field
*tmp_event
;
3214 nbmem
= UST_APP_EVENT_LIST_SIZE
;
3215 tmp_event
= zmalloc(nbmem
* sizeof(struct lttng_event_field
));
3216 if (tmp_event
== NULL
) {
3217 PERROR("zmalloc ust app event fields");
3224 cds_lfht_for_each_entry(ust_app_ht
->ht
, &iter
.iter
, app
, pid_n
.node
) {
3225 struct lttng_ust_field_iter uiter
;
3227 health_code_update();
3229 if (!app
->compatible
) {
3231 * TODO: In time, we should notice the caller of this error by
3232 * telling him that this is a version error.
3236 handle
= ustctl_tracepoint_field_list(app
->sock
);
3238 if (handle
!= -EPIPE
&& handle
!= -LTTNG_UST_ERR_EXITING
) {
3239 ERR("UST app list field getting handle failed for app pid %d",
3245 while ((ret
= ustctl_tracepoint_field_list_get(app
->sock
, handle
,
3246 &uiter
)) != -LTTNG_UST_ERR_NOENT
) {
3247 /* Handle ustctl error. */
3250 if (ret
!= -LTTNG_UST_ERR_EXITING
|| ret
!= -EPIPE
) {
3251 ERR("UST app tp list field failed for app %d with ret %d",
3254 DBG3("UST app tp list field failed. Application is dead");
3256 * This is normal behavior, an application can die during the
3257 * creation process. Don't report an error so the execution can
3258 * continue normally.
3265 health_code_update();
3266 if (count
>= nbmem
) {
3267 /* In case the realloc fails, we free the memory */
3270 DBG2("Reallocating event field list from %zu to %zu entries", nbmem
,
3273 ptr
= realloc(tmp_event
, nbmem
* sizeof(struct lttng_event_field
));
3275 PERROR("realloc ust app event fields");
3283 memcpy(tmp_event
[count
].field_name
, uiter
.field_name
, LTTNG_UST_SYM_NAME_LEN
);
3284 /* Mapping between these enums matches 1 to 1. */
3285 tmp_event
[count
].type
= (enum lttng_event_field_type
) uiter
.type
;
3286 tmp_event
[count
].nowrite
= uiter
.nowrite
;
3288 memcpy(tmp_event
[count
].event
.name
, uiter
.event_name
, LTTNG_UST_SYM_NAME_LEN
);
3289 tmp_event
[count
].event
.loglevel
= uiter
.loglevel
;
3290 tmp_event
[count
].event
.type
= LTTNG_EVENT_TRACEPOINT
;
3291 tmp_event
[count
].event
.pid
= app
->pid
;
3292 tmp_event
[count
].event
.enabled
= -1;
3298 *fields
= tmp_event
;
3300 DBG2("UST app list event fields done (%zu events)", count
);
3305 health_code_update();
3310 * Free and clean all traceable apps of the global list.
3312 * Should _NOT_ be called with RCU read-side lock held.
3314 void ust_app_clean_list(void)
3317 struct ust_app
*app
;
3318 struct lttng_ht_iter iter
;
3320 DBG2("UST app cleaning registered apps hash table");
3324 cds_lfht_for_each_entry(ust_app_ht
->ht
, &iter
.iter
, app
, pid_n
.node
) {
3325 ret
= lttng_ht_del(ust_app_ht
, &iter
);
3327 call_rcu(&app
->pid_n
.head
, delete_ust_app_rcu
);
3330 /* Cleanup socket hash table */
3331 cds_lfht_for_each_entry(ust_app_ht_by_sock
->ht
, &iter
.iter
, app
,
3333 ret
= lttng_ht_del(ust_app_ht_by_sock
, &iter
);
3337 /* Cleanup notify socket hash table */
3338 cds_lfht_for_each_entry(ust_app_ht_by_notify_sock
->ht
, &iter
.iter
, app
,
3339 notify_sock_n
.node
) {
3340 ret
= lttng_ht_del(ust_app_ht_by_notify_sock
, &iter
);
3345 /* Destroy is done only when the ht is empty */
3346 ht_cleanup_push(ust_app_ht
);
3347 ht_cleanup_push(ust_app_ht_by_sock
);
3348 ht_cleanup_push(ust_app_ht_by_notify_sock
);
3352 * Init UST app hash table.
3354 void ust_app_ht_alloc(void)
3356 ust_app_ht
= lttng_ht_new(0, LTTNG_HT_TYPE_ULONG
);
3357 ust_app_ht_by_sock
= lttng_ht_new(0, LTTNG_HT_TYPE_ULONG
);
3358 ust_app_ht_by_notify_sock
= lttng_ht_new(0, LTTNG_HT_TYPE_ULONG
);
3362 * For a specific UST session, disable the channel for all registered apps.
3364 int ust_app_disable_channel_glb(struct ltt_ust_session
*usess
,
3365 struct ltt_ust_channel
*uchan
)
3368 struct lttng_ht_iter iter
;
3369 struct lttng_ht_node_str
*ua_chan_node
;
3370 struct ust_app
*app
;
3371 struct ust_app_session
*ua_sess
;
3372 struct ust_app_channel
*ua_chan
;
3374 if (usess
== NULL
|| uchan
== NULL
) {
3375 ERR("Disabling UST global channel with NULL values");
3380 DBG2("UST app disabling channel %s from global domain for session id %" PRIu64
,
3381 uchan
->name
, usess
->id
);
3385 /* For every registered applications */
3386 cds_lfht_for_each_entry(ust_app_ht
->ht
, &iter
.iter
, app
, pid_n
.node
) {
3387 struct lttng_ht_iter uiter
;
3388 if (!app
->compatible
) {
3390 * TODO: In time, we should notice the caller of this error by
3391 * telling him that this is a version error.
3395 ua_sess
= lookup_session_by_app(usess
, app
);
3396 if (ua_sess
== NULL
) {
3401 lttng_ht_lookup(ua_sess
->channels
, (void *)uchan
->name
, &uiter
);
3402 ua_chan_node
= lttng_ht_iter_get_node_str(&uiter
);
3403 /* If the session if found for the app, the channel must be there */
3404 assert(ua_chan_node
);
3406 ua_chan
= caa_container_of(ua_chan_node
, struct ust_app_channel
, node
);
3407 /* The channel must not be already disabled */
3408 assert(ua_chan
->enabled
== 1);
3410 /* Disable channel onto application */
3411 ret
= disable_ust_app_channel(ua_sess
, ua_chan
, app
);
3413 /* XXX: We might want to report this error at some point... */
3425 * For a specific UST session, enable the channel for all registered apps.
3427 int ust_app_enable_channel_glb(struct ltt_ust_session
*usess
,
3428 struct ltt_ust_channel
*uchan
)
3431 struct lttng_ht_iter iter
;
3432 struct ust_app
*app
;
3433 struct ust_app_session
*ua_sess
;
3435 if (usess
== NULL
|| uchan
== NULL
) {
3436 ERR("Adding UST global channel to NULL values");
3441 DBG2("UST app enabling channel %s to global domain for session id %" PRIu64
,
3442 uchan
->name
, usess
->id
);
3446 /* For every registered applications */
3447 cds_lfht_for_each_entry(ust_app_ht
->ht
, &iter
.iter
, app
, pid_n
.node
) {
3448 if (!app
->compatible
) {
3450 * TODO: In time, we should notice the caller of this error by
3451 * telling him that this is a version error.
3455 ua_sess
= lookup_session_by_app(usess
, app
);
3456 if (ua_sess
== NULL
) {
3460 /* Enable channel onto application */
3461 ret
= enable_ust_app_channel(ua_sess
, uchan
, app
);
3463 /* XXX: We might want to report this error at some point... */
3475 * Disable an event in a channel and for a specific session.
3477 int ust_app_disable_event_glb(struct ltt_ust_session
*usess
,
3478 struct ltt_ust_channel
*uchan
, struct ltt_ust_event
*uevent
)
3481 struct lttng_ht_iter iter
, uiter
;
3482 struct lttng_ht_node_str
*ua_chan_node
, *ua_event_node
;
3483 struct ust_app
*app
;
3484 struct ust_app_session
*ua_sess
;
3485 struct ust_app_channel
*ua_chan
;
3486 struct ust_app_event
*ua_event
;
3488 DBG("UST app disabling event %s for all apps in channel "
3489 "%s for session id %" PRIu64
,
3490 uevent
->attr
.name
, uchan
->name
, usess
->id
);
3494 /* For all registered applications */
3495 cds_lfht_for_each_entry(ust_app_ht
->ht
, &iter
.iter
, app
, pid_n
.node
) {
3496 if (!app
->compatible
) {
3498 * TODO: In time, we should notice the caller of this error by
3499 * telling him that this is a version error.
3503 ua_sess
= lookup_session_by_app(usess
, app
);
3504 if (ua_sess
== NULL
) {
3509 /* Lookup channel in the ust app session */
3510 lttng_ht_lookup(ua_sess
->channels
, (void *)uchan
->name
, &uiter
);
3511 ua_chan_node
= lttng_ht_iter_get_node_str(&uiter
);
3512 if (ua_chan_node
== NULL
) {
3513 DBG2("Channel %s not found in session id %" PRIu64
" for app pid %d."
3514 "Skipping", uchan
->name
, usess
->id
, app
->pid
);
3517 ua_chan
= caa_container_of(ua_chan_node
, struct ust_app_channel
, node
);
3519 lttng_ht_lookup(ua_chan
->events
, (void *)uevent
->attr
.name
, &uiter
);
3520 ua_event_node
= lttng_ht_iter_get_node_str(&uiter
);
3521 if (ua_event_node
== NULL
) {
3522 DBG2("Event %s not found in channel %s for app pid %d."
3523 "Skipping", uevent
->attr
.name
, uchan
->name
, app
->pid
);
3526 ua_event
= caa_container_of(ua_event_node
, struct ust_app_event
, node
);
3528 ret
= disable_ust_app_event(ua_sess
, ua_event
, app
);
3530 /* XXX: Report error someday... */
3541 * For a specific UST session and UST channel, the event for all
3544 int ust_app_disable_all_event_glb(struct ltt_ust_session
*usess
,
3545 struct ltt_ust_channel
*uchan
)
3548 struct lttng_ht_iter iter
, uiter
;
3549 struct lttng_ht_node_str
*ua_chan_node
;
3550 struct ust_app
*app
;
3551 struct ust_app_session
*ua_sess
;
3552 struct ust_app_channel
*ua_chan
;
3553 struct ust_app_event
*ua_event
;
3555 DBG("UST app disabling all event for all apps in channel "
3556 "%s for session id %" PRIu64
, uchan
->name
, usess
->id
);
3560 /* For all registered applications */
3561 cds_lfht_for_each_entry(ust_app_ht
->ht
, &iter
.iter
, app
, pid_n
.node
) {
3562 if (!app
->compatible
) {
3564 * TODO: In time, we should notice the caller of this error by
3565 * telling him that this is a version error.
3569 ua_sess
= lookup_session_by_app(usess
, app
);
3571 /* The application has problem or is probably dead. */
3575 /* Lookup channel in the ust app session */
3576 lttng_ht_lookup(ua_sess
->channels
, (void *)uchan
->name
, &uiter
);
3577 ua_chan_node
= lttng_ht_iter_get_node_str(&uiter
);
3578 /* If the channel is not found, there is a code flow error */
3579 assert(ua_chan_node
);
3581 ua_chan
= caa_container_of(ua_chan_node
, struct ust_app_channel
, node
);
3583 /* Disable each events of channel */
3584 cds_lfht_for_each_entry(ua_chan
->events
->ht
, &uiter
.iter
, ua_event
,
3586 ret
= disable_ust_app_event(ua_sess
, ua_event
, app
);
3588 /* XXX: Report error someday... */
3600 * For a specific UST session, create the channel for all registered apps.
3602 int ust_app_create_channel_glb(struct ltt_ust_session
*usess
,
3603 struct ltt_ust_channel
*uchan
)
3605 int ret
= 0, created
;
3606 struct lttng_ht_iter iter
;
3607 struct ust_app
*app
;
3608 struct ust_app_session
*ua_sess
= NULL
;
3610 /* Very wrong code flow */
3614 DBG2("UST app adding channel %s to UST domain for session id %" PRIu64
,
3615 uchan
->name
, usess
->id
);
3619 /* For every registered applications */
3620 cds_lfht_for_each_entry(ust_app_ht
->ht
, &iter
.iter
, app
, pid_n
.node
) {
3621 if (!app
->compatible
) {
3623 * TODO: In time, we should notice the caller of this error by
3624 * telling him that this is a version error.
3629 * Create session on the tracer side and add it to app session HT. Note
3630 * that if session exist, it will simply return a pointer to the ust
3633 ret
= create_ust_app_session(usess
, app
, &ua_sess
, &created
);
3638 * The application's socket is not valid. Either a bad socket
3639 * or a timeout on it. We can't inform the caller that for a
3640 * specific app, the session failed so lets continue here.
3645 goto error_rcu_unlock
;
3650 pthread_mutex_lock(&ua_sess
->lock
);
3651 if (!strncmp(uchan
->name
, DEFAULT_METADATA_NAME
,
3652 sizeof(uchan
->name
))) {
3653 struct ustctl_consumer_channel_attr attr
;
3654 copy_channel_attr_to_ustctl(&attr
, &uchan
->attr
);
3655 ret
= create_ust_app_metadata(ua_sess
, app
, usess
->consumer
,
3658 /* Create channel onto application. We don't need the chan ref. */
3659 ret
= create_ust_app_channel(ua_sess
, uchan
, app
,
3660 LTTNG_UST_CHAN_PER_CPU
, usess
, NULL
);
3662 pthread_mutex_unlock(&ua_sess
->lock
);
3664 if (ret
== -ENOMEM
) {
3665 /* No more memory is a fatal error. Stop right now. */
3666 goto error_rcu_unlock
;
3668 /* Cleanup the created session if it's the case. */
3670 destroy_app_session(app
, ua_sess
);
3681 * Enable event for a specific session and channel on the tracer.
3683 int ust_app_enable_event_glb(struct ltt_ust_session
*usess
,
3684 struct ltt_ust_channel
*uchan
, struct ltt_ust_event
*uevent
)
3687 struct lttng_ht_iter iter
, uiter
;
3688 struct lttng_ht_node_str
*ua_chan_node
;
3689 struct ust_app
*app
;
3690 struct ust_app_session
*ua_sess
;
3691 struct ust_app_channel
*ua_chan
;
3692 struct ust_app_event
*ua_event
;
3694 DBG("UST app enabling event %s for all apps for session id %" PRIu64
,
3695 uevent
->attr
.name
, usess
->id
);
3698 * NOTE: At this point, this function is called only if the session and
3699 * channel passed are already created for all apps. and enabled on the
3705 /* For all registered applications */
3706 cds_lfht_for_each_entry(ust_app_ht
->ht
, &iter
.iter
, app
, pid_n
.node
) {
3707 if (!app
->compatible
) {
3709 * TODO: In time, we should notice the caller of this error by
3710 * telling him that this is a version error.
3714 ua_sess
= lookup_session_by_app(usess
, app
);
3716 /* The application has problem or is probably dead. */
3720 pthread_mutex_lock(&ua_sess
->lock
);
3722 /* Lookup channel in the ust app session */
3723 lttng_ht_lookup(ua_sess
->channels
, (void *)uchan
->name
, &uiter
);
3724 ua_chan_node
= lttng_ht_iter_get_node_str(&uiter
);
3725 /* If the channel is not found, there is a code flow error */
3726 assert(ua_chan_node
);
3728 ua_chan
= caa_container_of(ua_chan_node
, struct ust_app_channel
, node
);
3730 /* Get event node */
3731 ua_event
= find_ust_app_event(ua_chan
->events
, uevent
->attr
.name
,
3732 uevent
->filter
, uevent
->attr
.loglevel
, uevent
->exclusion
);
3733 if (ua_event
== NULL
) {
3734 DBG3("UST app enable event %s not found for app PID %d."
3735 "Skipping app", uevent
->attr
.name
, app
->pid
);
3739 ret
= enable_ust_app_event(ua_sess
, ua_event
, app
);
3741 pthread_mutex_unlock(&ua_sess
->lock
);
3745 pthread_mutex_unlock(&ua_sess
->lock
);
3754 * For a specific existing UST session and UST channel, creates the event for
3755 * all registered apps.
3757 int ust_app_create_event_glb(struct ltt_ust_session
*usess
,
3758 struct ltt_ust_channel
*uchan
, struct ltt_ust_event
*uevent
)
3761 struct lttng_ht_iter iter
, uiter
;
3762 struct lttng_ht_node_str
*ua_chan_node
;
3763 struct ust_app
*app
;
3764 struct ust_app_session
*ua_sess
;
3765 struct ust_app_channel
*ua_chan
;
3767 DBG("UST app creating event %s for all apps for session id %" PRIu64
,
3768 uevent
->attr
.name
, usess
->id
);
3772 /* For all registered applications */
3773 cds_lfht_for_each_entry(ust_app_ht
->ht
, &iter
.iter
, app
, pid_n
.node
) {
3774 if (!app
->compatible
) {
3776 * TODO: In time, we should notice the caller of this error by
3777 * telling him that this is a version error.
3781 ua_sess
= lookup_session_by_app(usess
, app
);
3783 /* The application has problem or is probably dead. */
3787 pthread_mutex_lock(&ua_sess
->lock
);
3788 /* Lookup channel in the ust app session */
3789 lttng_ht_lookup(ua_sess
->channels
, (void *)uchan
->name
, &uiter
);
3790 ua_chan_node
= lttng_ht_iter_get_node_str(&uiter
);
3791 /* If the channel is not found, there is a code flow error */
3792 assert(ua_chan_node
);
3794 ua_chan
= caa_container_of(ua_chan_node
, struct ust_app_channel
, node
);
3796 ret
= create_ust_app_event(ua_sess
, ua_chan
, uevent
, app
);
3797 pthread_mutex_unlock(&ua_sess
->lock
);
3799 if (ret
!= -LTTNG_UST_ERR_EXIST
) {
3800 /* Possible value at this point: -ENOMEM. If so, we stop! */
3803 DBG2("UST app event %s already exist on app PID %d",
3804 uevent
->attr
.name
, app
->pid
);
3815 * Start tracing for a specific UST session and app.
3818 int ust_app_start_trace(struct ltt_ust_session
*usess
, struct ust_app
*app
)
3821 struct ust_app_session
*ua_sess
;
3823 DBG("Starting tracing for ust app pid %d", app
->pid
);
3827 if (!app
->compatible
) {
3831 ua_sess
= lookup_session_by_app(usess
, app
);
3832 if (ua_sess
== NULL
) {
3833 /* The session is in teardown process. Ignore and continue. */
3837 pthread_mutex_lock(&ua_sess
->lock
);
3839 /* Upon restart, we skip the setup, already done */
3840 if (ua_sess
->started
) {
3844 /* Create directories if consumer is LOCAL and has a path defined. */
3845 if (usess
->consumer
->type
== CONSUMER_DST_LOCAL
&&
3846 strlen(usess
->consumer
->dst
.trace_path
) > 0) {
3847 ret
= run_as_mkdir_recursive(usess
->consumer
->dst
.trace_path
,
3848 S_IRWXU
| S_IRWXG
, ua_sess
->euid
, ua_sess
->egid
);
3850 if (ret
!= -EEXIST
) {
3851 ERR("Trace directory creation error");
3858 * Create the metadata for the application. This returns gracefully if a
3859 * metadata was already set for the session.
3861 ret
= create_ust_app_metadata(ua_sess
, app
, usess
->consumer
, NULL
);
3866 health_code_update();
3869 /* This start the UST tracing */
3870 ret
= ustctl_start_session(app
->sock
, ua_sess
->handle
);
3872 if (ret
!= -EPIPE
&& ret
!= -LTTNG_UST_ERR_EXITING
) {
3873 ERR("Error starting tracing for app pid: %d (ret: %d)",
3876 DBG("UST app start session failed. Application is dead.");
3878 * This is normal behavior, an application can die during the
3879 * creation process. Don't report an error so the execution can
3880 * continue normally.
3882 pthread_mutex_unlock(&ua_sess
->lock
);
3888 /* Indicate that the session has been started once */
3889 ua_sess
->started
= 1;
3891 pthread_mutex_unlock(&ua_sess
->lock
);
3893 health_code_update();
3895 /* Quiescent wait after starting trace */
3896 ret
= ustctl_wait_quiescent(app
->sock
);
3897 if (ret
< 0 && ret
!= -EPIPE
&& ret
!= -LTTNG_UST_ERR_EXITING
) {
3898 ERR("UST app wait quiescent failed for app pid %d ret %d",
3904 health_code_update();
3908 pthread_mutex_unlock(&ua_sess
->lock
);
3910 health_code_update();
3915 * Stop tracing for a specific UST session and app.
3918 int ust_app_stop_trace(struct ltt_ust_session
*usess
, struct ust_app
*app
)
3921 struct ust_app_session
*ua_sess
;
3922 struct ust_registry_session
*registry
;
3924 DBG("Stopping tracing for ust app pid %d", app
->pid
);
3928 if (!app
->compatible
) {
3929 goto end_no_session
;
3932 ua_sess
= lookup_session_by_app(usess
, app
);
3933 if (ua_sess
== NULL
) {
3934 goto end_no_session
;
3937 pthread_mutex_lock(&ua_sess
->lock
);
3940 * If started = 0, it means that stop trace has been called for a session
3941 * that was never started. It's possible since we can have a fail start
3942 * from either the application manager thread or the command thread. Simply
3943 * indicate that this is a stop error.
3945 if (!ua_sess
->started
) {
3946 goto error_rcu_unlock
;
3949 health_code_update();
3951 /* This inhibits UST tracing */
3952 ret
= ustctl_stop_session(app
->sock
, ua_sess
->handle
);
3954 if (ret
!= -EPIPE
&& ret
!= -LTTNG_UST_ERR_EXITING
) {
3955 ERR("Error stopping tracing for app pid: %d (ret: %d)",
3958 DBG("UST app stop session failed. Application is dead.");
3960 * This is normal behavior, an application can die during the
3961 * creation process. Don't report an error so the execution can
3962 * continue normally.
3966 goto error_rcu_unlock
;
3969 health_code_update();
3971 /* Quiescent wait after stopping trace */
3972 ret
= ustctl_wait_quiescent(app
->sock
);
3973 if (ret
< 0 && ret
!= -EPIPE
&& ret
!= -LTTNG_UST_ERR_EXITING
) {
3974 ERR("UST app wait quiescent failed for app pid %d ret %d",
3978 health_code_update();
3980 registry
= get_session_registry(ua_sess
);
3983 if (!registry
->metadata_closed
) {
3984 /* Push metadata for application before freeing the application. */
3985 (void) push_metadata(registry
, ua_sess
->consumer
);
3989 pthread_mutex_unlock(&ua_sess
->lock
);
3992 health_code_update();
3996 pthread_mutex_unlock(&ua_sess
->lock
);
3998 health_code_update();
4003 * Flush buffers for a specific UST session and app.
4006 int ust_app_flush_trace(struct ltt_ust_session
*usess
, struct ust_app
*app
)
4009 struct lttng_ht_iter iter
;
4010 struct ust_app_session
*ua_sess
;
4011 struct ust_app_channel
*ua_chan
;
4013 DBG("Flushing buffers for ust app pid %d", app
->pid
);
4017 if (!app
->compatible
) {
4018 goto end_no_session
;
4021 ua_sess
= lookup_session_by_app(usess
, app
);
4022 if (ua_sess
== NULL
) {
4023 goto end_no_session
;
4026 pthread_mutex_lock(&ua_sess
->lock
);
4028 health_code_update();
4030 /* Flushing buffers */
4031 cds_lfht_for_each_entry(ua_sess
->channels
->ht
, &iter
.iter
, ua_chan
,
4033 health_code_update();
4034 assert(ua_chan
->is_sent
);
4035 ret
= ustctl_sock_flush_buffer(app
->sock
, ua_chan
->obj
);
4037 if (ret
!= -EPIPE
&& ret
!= -LTTNG_UST_ERR_EXITING
) {
4038 ERR("UST app PID %d channel %s flush failed with ret %d",
4039 app
->pid
, ua_chan
->name
, ret
);
4041 DBG3("UST app failed to flush %s. Application is dead.",
4044 * This is normal behavior, an application can die during the
4045 * creation process. Don't report an error so the execution can
4046 * continue normally.
4049 /* Continuing flushing all buffers */
4054 health_code_update();
4056 pthread_mutex_unlock(&ua_sess
->lock
);
4059 health_code_update();
4064 * Destroy a specific UST session in apps.
4066 static int destroy_trace(struct ltt_ust_session
*usess
, struct ust_app
*app
)
4069 struct ust_app_session
*ua_sess
;
4070 struct lttng_ht_iter iter
;
4071 struct lttng_ht_node_u64
*node
;
4073 DBG("Destroy tracing for ust app pid %d", app
->pid
);
4077 if (!app
->compatible
) {
4081 __lookup_session_by_app(usess
, app
, &iter
);
4082 node
= lttng_ht_iter_get_node_u64(&iter
);
4084 /* Session is being or is deleted. */
4087 ua_sess
= caa_container_of(node
, struct ust_app_session
, node
);
4089 health_code_update();
4090 destroy_app_session(app
, ua_sess
);
4092 health_code_update();
4094 /* Quiescent wait after stopping trace */
4095 ret
= ustctl_wait_quiescent(app
->sock
);
4096 if (ret
< 0 && ret
!= -EPIPE
&& ret
!= -LTTNG_UST_ERR_EXITING
) {
4097 ERR("UST app wait quiescent failed for app pid %d ret %d",
4102 health_code_update();
4107 * Start tracing for the UST session.
4109 int ust_app_start_trace_all(struct ltt_ust_session
*usess
)
4112 struct lttng_ht_iter iter
;
4113 struct ust_app
*app
;
4115 DBG("Starting all UST traces");
4119 cds_lfht_for_each_entry(ust_app_ht
->ht
, &iter
.iter
, app
, pid_n
.node
) {
4120 ret
= ust_app_start_trace(usess
, app
);
4122 /* Continue to next apps even on error */
4133 * Start tracing for the UST session.
4135 int ust_app_stop_trace_all(struct ltt_ust_session
*usess
)
4138 struct lttng_ht_iter iter
;
4139 struct ust_app
*app
;
4141 DBG("Stopping all UST traces");
4145 cds_lfht_for_each_entry(ust_app_ht
->ht
, &iter
.iter
, app
, pid_n
.node
) {
4146 ret
= ust_app_stop_trace(usess
, app
);
4148 /* Continue to next apps even on error */
4153 /* Flush buffers and push metadata (for UID buffers). */
4154 switch (usess
->buffer_type
) {
4155 case LTTNG_BUFFER_PER_UID
:
4157 struct buffer_reg_uid
*reg
;
4159 /* Flush all per UID buffers associated to that session. */
4160 cds_list_for_each_entry(reg
, &usess
->buffer_reg_uid_list
, lnode
) {
4161 struct ust_registry_session
*ust_session_reg
;
4162 struct buffer_reg_channel
*reg_chan
;
4163 struct consumer_socket
*socket
;
4165 /* Get consumer socket to use to push the metadata.*/
4166 socket
= consumer_find_socket_by_bitness(reg
->bits_per_long
,
4169 /* Ignore request if no consumer is found for the session. */
4173 cds_lfht_for_each_entry(reg
->registry
->channels
->ht
, &iter
.iter
,
4174 reg_chan
, node
.node
) {
4176 * The following call will print error values so the return
4177 * code is of little importance because whatever happens, we
4178 * have to try them all.
4180 (void) consumer_flush_channel(socket
, reg_chan
->consumer_key
);
4183 ust_session_reg
= reg
->registry
->reg
.ust
;
4184 if (!ust_session_reg
->metadata_closed
) {
4185 /* Push metadata. */
4186 (void) push_metadata(ust_session_reg
, usess
->consumer
);
4192 case LTTNG_BUFFER_PER_PID
:
4193 cds_lfht_for_each_entry(ust_app_ht
->ht
, &iter
.iter
, app
, pid_n
.node
) {
4194 ret
= ust_app_flush_trace(usess
, app
);
4196 /* Continue to next apps even on error */
4212 * Destroy app UST session.
4214 int ust_app_destroy_trace_all(struct ltt_ust_session
*usess
)
4217 struct lttng_ht_iter iter
;
4218 struct ust_app
*app
;
4220 DBG("Destroy all UST traces");
4224 cds_lfht_for_each_entry(ust_app_ht
->ht
, &iter
.iter
, app
, pid_n
.node
) {
4225 ret
= destroy_trace(usess
, app
);
4227 /* Continue to next apps even on error */
4238 * Add channels/events from UST global domain to registered apps at sock.
4240 void ust_app_global_update(struct ltt_ust_session
*usess
, int sock
)
4243 struct lttng_ht_iter iter
, uiter
;
4244 struct ust_app
*app
;
4245 struct ust_app_session
*ua_sess
= NULL
;
4246 struct ust_app_channel
*ua_chan
;
4247 struct ust_app_event
*ua_event
;
4248 struct ust_app_ctx
*ua_ctx
;
4253 DBG2("UST app global update for app sock %d for session id %" PRIu64
, sock
,
4258 app
= ust_app_find_by_sock(sock
);
4261 * Application can be unregistered before so this is possible hence
4262 * simply stopping the update.
4264 DBG3("UST app update failed to find app sock %d", sock
);
4268 if (!app
->compatible
) {
4272 ret
= create_ust_app_session(usess
, app
, &ua_sess
, NULL
);
4274 /* Tracer is probably gone or ENOMEM. */
4279 pthread_mutex_lock(&ua_sess
->lock
);
4282 * We can iterate safely here over all UST app session since the create ust
4283 * app session above made a shadow copy of the UST global domain from the
4286 cds_lfht_for_each_entry(ua_sess
->channels
->ht
, &iter
.iter
, ua_chan
,
4289 * For a metadata channel, handle it differently.
4291 if (!strncmp(ua_chan
->name
, DEFAULT_METADATA_NAME
,
4292 sizeof(ua_chan
->name
))) {
4293 ret
= create_ust_app_metadata(ua_sess
, app
, usess
->consumer
,
4298 /* Remove it from the hash table and continue!. */
4299 ret
= lttng_ht_del(ua_sess
->channels
, &iter
);
4301 delete_ust_app_channel(-1, ua_chan
, app
);
4304 ret
= do_create_channel(app
, usess
, ua_sess
, ua_chan
);
4307 * Stop everything. On error, the application failed, no more
4308 * file descriptor are available or ENOMEM so stopping here is
4309 * the only thing we can do for now.
4316 * Add context using the list so they are enabled in the same order the
4319 cds_list_for_each_entry(ua_ctx
, &ua_chan
->ctx_list
, list
) {
4320 ret
= create_ust_channel_context(ua_chan
, ua_ctx
, app
);
4327 /* For each events */
4328 cds_lfht_for_each_entry(ua_chan
->events
->ht
, &uiter
.iter
, ua_event
,
4330 ret
= create_ust_event(app
, ua_sess
, ua_chan
, ua_event
);
4337 pthread_mutex_unlock(&ua_sess
->lock
);
4339 if (usess
->start_trace
) {
4340 ret
= ust_app_start_trace(usess
, app
);
4345 DBG2("UST trace started for app pid %d", app
->pid
);
4348 /* Everything went well at this point. */
4353 pthread_mutex_unlock(&ua_sess
->lock
);
4356 destroy_app_session(app
, ua_sess
);
4363 * Add context to a specific channel for global UST domain.
4365 int ust_app_add_ctx_channel_glb(struct ltt_ust_session
*usess
,
4366 struct ltt_ust_channel
*uchan
, struct ltt_ust_context
*uctx
)
4369 struct lttng_ht_node_str
*ua_chan_node
;
4370 struct lttng_ht_iter iter
, uiter
;
4371 struct ust_app_channel
*ua_chan
= NULL
;
4372 struct ust_app_session
*ua_sess
;
4373 struct ust_app
*app
;
4377 cds_lfht_for_each_entry(ust_app_ht
->ht
, &iter
.iter
, app
, pid_n
.node
) {
4378 if (!app
->compatible
) {
4380 * TODO: In time, we should notice the caller of this error by
4381 * telling him that this is a version error.
4385 ua_sess
= lookup_session_by_app(usess
, app
);
4386 if (ua_sess
== NULL
) {
4390 pthread_mutex_lock(&ua_sess
->lock
);
4391 /* Lookup channel in the ust app session */
4392 lttng_ht_lookup(ua_sess
->channels
, (void *)uchan
->name
, &uiter
);
4393 ua_chan_node
= lttng_ht_iter_get_node_str(&uiter
);
4394 if (ua_chan_node
== NULL
) {
4397 ua_chan
= caa_container_of(ua_chan_node
, struct ust_app_channel
,
4399 ret
= create_ust_app_channel_context(ua_sess
, ua_chan
, &uctx
->ctx
, app
);
4404 pthread_mutex_unlock(&ua_sess
->lock
);
4412 * Enable event for a channel from a UST session for a specific PID.
4414 int ust_app_enable_event_pid(struct ltt_ust_session
*usess
,
4415 struct ltt_ust_channel
*uchan
, struct ltt_ust_event
*uevent
, pid_t pid
)
4418 struct lttng_ht_iter iter
;
4419 struct lttng_ht_node_str
*ua_chan_node
;
4420 struct ust_app
*app
;
4421 struct ust_app_session
*ua_sess
;
4422 struct ust_app_channel
*ua_chan
;
4423 struct ust_app_event
*ua_event
;
4425 DBG("UST app enabling event %s for PID %d", uevent
->attr
.name
, pid
);
4429 app
= ust_app_find_by_pid(pid
);
4431 ERR("UST app enable event per PID %d not found", pid
);
4436 if (!app
->compatible
) {
4441 ua_sess
= lookup_session_by_app(usess
, app
);
4443 /* The application has problem or is probably dead. */
4448 pthread_mutex_lock(&ua_sess
->lock
);
4449 /* Lookup channel in the ust app session */
4450 lttng_ht_lookup(ua_sess
->channels
, (void *)uchan
->name
, &iter
);
4451 ua_chan_node
= lttng_ht_iter_get_node_str(&iter
);
4452 /* If the channel is not found, there is a code flow error */
4453 assert(ua_chan_node
);
4455 ua_chan
= caa_container_of(ua_chan_node
, struct ust_app_channel
, node
);
4457 ua_event
= find_ust_app_event(ua_chan
->events
, uevent
->attr
.name
,
4458 uevent
->filter
, uevent
->attr
.loglevel
, uevent
->exclusion
);
4459 if (ua_event
== NULL
) {
4460 ret
= create_ust_app_event(ua_sess
, ua_chan
, uevent
, app
);
4465 ret
= enable_ust_app_event(ua_sess
, ua_event
, app
);
4472 pthread_mutex_unlock(&ua_sess
->lock
);
4479 * Disable event for a channel from a UST session for a specific PID.
4481 int ust_app_disable_event_pid(struct ltt_ust_session
*usess
,
4482 struct ltt_ust_channel
*uchan
, struct ltt_ust_event
*uevent
, pid_t pid
)
4485 struct lttng_ht_iter iter
;
4486 struct lttng_ht_node_str
*ua_chan_node
, *ua_event_node
;
4487 struct ust_app
*app
;
4488 struct ust_app_session
*ua_sess
;
4489 struct ust_app_channel
*ua_chan
;
4490 struct ust_app_event
*ua_event
;
4492 DBG("UST app disabling event %s for PID %d", uevent
->attr
.name
, pid
);
4496 app
= ust_app_find_by_pid(pid
);
4498 ERR("UST app disable event per PID %d not found", pid
);
4503 if (!app
->compatible
) {
4508 ua_sess
= lookup_session_by_app(usess
, app
);
4510 /* The application has problem or is probably dead. */
4514 /* Lookup channel in the ust app session */
4515 lttng_ht_lookup(ua_sess
->channels
, (void *)uchan
->name
, &iter
);
4516 ua_chan_node
= lttng_ht_iter_get_node_str(&iter
);
4517 if (ua_chan_node
== NULL
) {
4518 /* Channel does not exist, skip disabling */
4521 ua_chan
= caa_container_of(ua_chan_node
, struct ust_app_channel
, node
);
4523 lttng_ht_lookup(ua_chan
->events
, (void *)uevent
->attr
.name
, &iter
);
4524 ua_event_node
= lttng_ht_iter_get_node_str(&iter
);
4525 if (ua_event_node
== NULL
) {
4526 /* Event does not exist, skip disabling */
4529 ua_event
= caa_container_of(ua_event_node
, struct ust_app_event
, node
);
4531 ret
= disable_ust_app_event(ua_sess
, ua_event
, app
);
4542 * Calibrate registered applications.
4544 int ust_app_calibrate_glb(struct lttng_ust_calibrate
*calibrate
)
4547 struct lttng_ht_iter iter
;
4548 struct ust_app
*app
;
4552 cds_lfht_for_each_entry(ust_app_ht
->ht
, &iter
.iter
, app
, pid_n
.node
) {
4553 if (!app
->compatible
) {
4555 * TODO: In time, we should notice the caller of this error by
4556 * telling him that this is a version error.
4561 health_code_update();
4563 ret
= ustctl_calibrate(app
->sock
, calibrate
);
4567 /* Means that it's not implemented on the tracer side. */
4571 DBG2("Calibrate app PID %d returned with error %d",
4578 DBG("UST app global domain calibration finished");
4582 health_code_update();
4588 * Receive registration and populate the given msg structure.
4590 * On success return 0 else a negative value returned by the ustctl call.
4592 int ust_app_recv_registration(int sock
, struct ust_register_msg
*msg
)
4595 uint32_t pid
, ppid
, uid
, gid
;
4599 ret
= ustctl_recv_reg_msg(sock
, &msg
->type
, &msg
->major
, &msg
->minor
,
4600 &pid
, &ppid
, &uid
, &gid
,
4601 &msg
->bits_per_long
,
4602 &msg
->uint8_t_alignment
,
4603 &msg
->uint16_t_alignment
,
4604 &msg
->uint32_t_alignment
,
4605 &msg
->uint64_t_alignment
,
4606 &msg
->long_alignment
,
4613 case LTTNG_UST_ERR_EXITING
:
4614 DBG3("UST app recv reg message failed. Application died");
4616 case LTTNG_UST_ERR_UNSUP_MAJOR
:
4617 ERR("UST app recv reg unsupported version %d.%d. Supporting %d.%d",
4618 msg
->major
, msg
->minor
, LTTNG_UST_ABI_MAJOR_VERSION
,
4619 LTTNG_UST_ABI_MINOR_VERSION
);
4622 ERR("UST app recv reg message failed with ret %d", ret
);
4627 msg
->pid
= (pid_t
) pid
;
4628 msg
->ppid
= (pid_t
) ppid
;
4629 msg
->uid
= (uid_t
) uid
;
4630 msg
->gid
= (gid_t
) gid
;
4637 * Return a ust app channel object using the application object and the channel
4638 * object descriptor has a key. If not found, NULL is returned. A RCU read side
4639 * lock MUST be acquired before calling this function.
4641 static struct ust_app_channel
*find_channel_by_objd(struct ust_app
*app
,
4644 struct lttng_ht_node_ulong
*node
;
4645 struct lttng_ht_iter iter
;
4646 struct ust_app_channel
*ua_chan
= NULL
;
4650 lttng_ht_lookup(app
->ust_objd
, (void *)((unsigned long) objd
), &iter
);
4651 node
= lttng_ht_iter_get_node_ulong(&iter
);
4653 DBG2("UST app channel find by objd %d not found", objd
);
4657 ua_chan
= caa_container_of(node
, struct ust_app_channel
, ust_objd_node
);
4664 * Reply to a register channel notification from an application on the notify
4665 * socket. The channel metadata is also created.
4667 * The session UST registry lock is acquired in this function.
4669 * On success 0 is returned else a negative value.
4671 static int reply_ust_register_channel(int sock
, int sobjd
, int cobjd
,
4672 size_t nr_fields
, struct ustctl_field
*fields
)
4674 int ret
, ret_code
= 0;
4675 uint32_t chan_id
, reg_count
;
4676 uint64_t chan_reg_key
;
4677 enum ustctl_channel_header type
;
4678 struct ust_app
*app
;
4679 struct ust_app_channel
*ua_chan
;
4680 struct ust_app_session
*ua_sess
;
4681 struct ust_registry_session
*registry
;
4682 struct ust_registry_channel
*chan_reg
;
4686 /* Lookup application. If not found, there is a code flow error. */
4687 app
= find_app_by_notify_sock(sock
);
4689 DBG("Application socket %d is being teardown. Abort event notify",
4693 goto error_rcu_unlock
;
4696 /* Lookup channel by UST object descriptor. */
4697 ua_chan
= find_channel_by_objd(app
, cobjd
);
4699 DBG("Application channel is being teardown. Abort event notify");
4702 goto error_rcu_unlock
;
4705 assert(ua_chan
->session
);
4706 ua_sess
= ua_chan
->session
;
4708 /* Get right session registry depending on the session buffer type. */
4709 registry
= get_session_registry(ua_sess
);
4712 /* Depending on the buffer type, a different channel key is used. */
4713 if (ua_sess
->buffer_type
== LTTNG_BUFFER_PER_UID
) {
4714 chan_reg_key
= ua_chan
->tracing_channel_id
;
4716 chan_reg_key
= ua_chan
->key
;
4719 pthread_mutex_lock(®istry
->lock
);
4721 chan_reg
= ust_registry_channel_find(registry
, chan_reg_key
);
4724 if (!chan_reg
->register_done
) {
4725 reg_count
= ust_registry_get_event_count(chan_reg
);
4726 if (reg_count
< 31) {
4727 type
= USTCTL_CHANNEL_HEADER_COMPACT
;
4729 type
= USTCTL_CHANNEL_HEADER_LARGE
;
4732 chan_reg
->nr_ctx_fields
= nr_fields
;
4733 chan_reg
->ctx_fields
= fields
;
4734 chan_reg
->header_type
= type
;
4736 /* Get current already assigned values. */
4737 type
= chan_reg
->header_type
;
4739 /* Set to NULL so the error path does not do a double free. */
4742 /* Channel id is set during the object creation. */
4743 chan_id
= chan_reg
->chan_id
;
4745 /* Append to metadata */
4746 if (!chan_reg
->metadata_dumped
) {
4747 ret_code
= ust_metadata_channel_statedump(registry
, chan_reg
);
4749 ERR("Error appending channel metadata (errno = %d)", ret_code
);
4755 DBG3("UST app replying to register channel key %" PRIu64
4756 " with id %u, type: %d, ret: %d", chan_reg_key
, chan_id
, type
,
4759 ret
= ustctl_reply_register_channel(sock
, chan_id
, type
, ret_code
);
4761 if (ret
!= -EPIPE
&& ret
!= -LTTNG_UST_ERR_EXITING
) {
4762 ERR("UST app reply channel failed with ret %d", ret
);
4764 DBG3("UST app reply channel failed. Application died");
4769 /* This channel registry registration is completed. */
4770 chan_reg
->register_done
= 1;
4773 pthread_mutex_unlock(®istry
->lock
);
4783 * Add event to the UST channel registry. When the event is added to the
4784 * registry, the metadata is also created. Once done, this replies to the
4785 * application with the appropriate error code.
4787 * The session UST registry lock is acquired in the function.
4789 * On success 0 is returned else a negative value.
4791 static int add_event_ust_registry(int sock
, int sobjd
, int cobjd
, char *name
,
4792 char *sig
, size_t nr_fields
, struct ustctl_field
*fields
, int loglevel
,
4793 char *model_emf_uri
)
4796 uint32_t event_id
= 0;
4797 uint64_t chan_reg_key
;
4798 struct ust_app
*app
;
4799 struct ust_app_channel
*ua_chan
;
4800 struct ust_app_session
*ua_sess
;
4801 struct ust_registry_session
*registry
;
4805 /* Lookup application. If not found, there is a code flow error. */
4806 app
= find_app_by_notify_sock(sock
);
4808 DBG("Application socket %d is being teardown. Abort event notify",
4813 free(model_emf_uri
);
4814 goto error_rcu_unlock
;
4817 /* Lookup channel by UST object descriptor. */
4818 ua_chan
= find_channel_by_objd(app
, cobjd
);
4820 DBG("Application channel is being teardown. Abort event notify");
4824 free(model_emf_uri
);
4825 goto error_rcu_unlock
;
4828 assert(ua_chan
->session
);
4829 ua_sess
= ua_chan
->session
;
4831 registry
= get_session_registry(ua_sess
);
4834 if (ua_sess
->buffer_type
== LTTNG_BUFFER_PER_UID
) {
4835 chan_reg_key
= ua_chan
->tracing_channel_id
;
4837 chan_reg_key
= ua_chan
->key
;
4840 pthread_mutex_lock(®istry
->lock
);
4843 * From this point on, this call acquires the ownership of the sig, fields
4844 * and model_emf_uri meaning any free are done inside it if needed. These
4845 * three variables MUST NOT be read/write after this.
4847 ret_code
= ust_registry_create_event(registry
, chan_reg_key
,
4848 sobjd
, cobjd
, name
, sig
, nr_fields
, fields
, loglevel
,
4849 model_emf_uri
, ua_sess
->buffer_type
, &event_id
,
4853 * The return value is returned to ustctl so in case of an error, the
4854 * application can be notified. In case of an error, it's important not to
4855 * return a negative error or else the application will get closed.
4857 ret
= ustctl_reply_register_event(sock
, event_id
, ret_code
);
4859 if (ret
!= -EPIPE
&& ret
!= -LTTNG_UST_ERR_EXITING
) {
4860 ERR("UST app reply event failed with ret %d", ret
);
4862 DBG3("UST app reply event failed. Application died");
4865 * No need to wipe the create event since the application socket will
4866 * get close on error hence cleaning up everything by itself.
4871 DBG3("UST registry event %s with id %" PRId32
" added successfully",
4875 pthread_mutex_unlock(®istry
->lock
);
4882 * Handle application notification through the given notify socket.
4884 * Return 0 on success or else a negative value.
4886 int ust_app_recv_notify(int sock
)
4889 enum ustctl_notify_cmd cmd
;
4891 DBG3("UST app receiving notify from sock %d", sock
);
4893 ret
= ustctl_recv_notify(sock
, &cmd
);
4895 if (ret
!= -EPIPE
&& ret
!= -LTTNG_UST_ERR_EXITING
) {
4896 ERR("UST app recv notify failed with ret %d", ret
);
4898 DBG3("UST app recv notify failed. Application died");
4904 case USTCTL_NOTIFY_CMD_EVENT
:
4906 int sobjd
, cobjd
, loglevel
;
4907 char name
[LTTNG_UST_SYM_NAME_LEN
], *sig
, *model_emf_uri
;
4909 struct ustctl_field
*fields
;
4911 DBG2("UST app ustctl register event received");
4913 ret
= ustctl_recv_register_event(sock
, &sobjd
, &cobjd
, name
, &loglevel
,
4914 &sig
, &nr_fields
, &fields
, &model_emf_uri
);
4916 if (ret
!= -EPIPE
&& ret
!= -LTTNG_UST_ERR_EXITING
) {
4917 ERR("UST app recv event failed with ret %d", ret
);
4919 DBG3("UST app recv event failed. Application died");
4925 * Add event to the UST registry coming from the notify socket. This
4926 * call will free if needed the sig, fields and model_emf_uri. This
4927 * code path loses the ownsership of these variables and transfer them
4928 * to the this function.
4930 ret
= add_event_ust_registry(sock
, sobjd
, cobjd
, name
, sig
, nr_fields
,
4931 fields
, loglevel
, model_emf_uri
);
4938 case USTCTL_NOTIFY_CMD_CHANNEL
:
4942 struct ustctl_field
*fields
;
4944 DBG2("UST app ustctl register channel received");
4946 ret
= ustctl_recv_register_channel(sock
, &sobjd
, &cobjd
, &nr_fields
,
4949 if (ret
!= -EPIPE
&& ret
!= -LTTNG_UST_ERR_EXITING
) {
4950 ERR("UST app recv channel failed with ret %d", ret
);
4952 DBG3("UST app recv channel failed. Application died");
4958 * The fields ownership are transfered to this function call meaning
4959 * that if needed it will be freed. After this, it's invalid to access
4960 * fields or clean it up.
4962 ret
= reply_ust_register_channel(sock
, sobjd
, cobjd
, nr_fields
,
4971 /* Should NEVER happen. */
4980 * Once the notify socket hangs up, this is called. First, it tries to find the
4981 * corresponding application. On failure, the call_rcu to close the socket is
4982 * executed. If an application is found, it tries to delete it from the notify
4983 * socket hash table. Whathever the result, it proceeds to the call_rcu.
4985 * Note that an object needs to be allocated here so on ENOMEM failure, the
4986 * call RCU is not done but the rest of the cleanup is.
4988 void ust_app_notify_sock_unregister(int sock
)
4991 struct lttng_ht_iter iter
;
4992 struct ust_app
*app
;
4993 struct ust_app_notify_sock_obj
*obj
;
4999 obj
= zmalloc(sizeof(*obj
));
5002 * An ENOMEM is kind of uncool. If this strikes we continue the
5003 * procedure but the call_rcu will not be called. In this case, we
5004 * accept the fd leak rather than possibly creating an unsynchronized
5005 * state between threads.
5007 * TODO: The notify object should be created once the notify socket is
5008 * registered and stored independantely from the ust app object. The
5009 * tricky part is to synchronize the teardown of the application and
5010 * this notify object. Let's keep that in mind so we can avoid this
5011 * kind of shenanigans with ENOMEM in the teardown path.
5018 DBG("UST app notify socket unregister %d", sock
);
5021 * Lookup application by notify socket. If this fails, this means that the
5022 * hash table delete has already been done by the application
5023 * unregistration process so we can safely close the notify socket in a
5026 app
= find_app_by_notify_sock(sock
);
5031 iter
.iter
.node
= &app
->notify_sock_n
.node
;
5034 * Whatever happens here either we fail or succeed, in both cases we have
5035 * to close the socket after a grace period to continue to the call RCU
5036 * here. If the deletion is successful, the application is not visible
5037 * anymore by other threads and is it fails it means that it was already
5038 * deleted from the hash table so either way we just have to close the
5041 (void) lttng_ht_del(ust_app_ht_by_notify_sock
, &iter
);
5047 * Close socket after a grace period to avoid for the socket to be reused
5048 * before the application object is freed creating potential race between
5049 * threads trying to add unique in the global hash table.
5052 call_rcu(&obj
->head
, close_notify_sock_rcu
);
5057 * Destroy a ust app data structure and free its memory.
5059 void ust_app_destroy(struct ust_app
*app
)
5065 call_rcu(&app
->pid_n
.head
, delete_ust_app_rcu
);
5069 * Take a snapshot for a given UST session. The snapshot is sent to the given
5072 * Return 0 on success or else a negative value.
5074 int ust_app_snapshot_record(struct ltt_ust_session
*usess
,
5075 struct snapshot_output
*output
, int wait
, unsigned int nb_streams
)
5078 struct lttng_ht_iter iter
;
5079 struct ust_app
*app
;
5080 char pathname
[PATH_MAX
];
5081 uint64_t max_stream_size
= 0;
5089 * Compute the maximum size of a single stream if a max size is asked by
5092 if (output
->max_size
> 0 && nb_streams
> 0) {
5093 max_stream_size
= output
->max_size
/ nb_streams
;
5096 switch (usess
->buffer_type
) {
5097 case LTTNG_BUFFER_PER_UID
:
5099 struct buffer_reg_uid
*reg
;
5101 cds_list_for_each_entry(reg
, &usess
->buffer_reg_uid_list
, lnode
) {
5102 struct buffer_reg_channel
*reg_chan
;
5103 struct consumer_socket
*socket
;
5105 /* Get consumer socket to use to push the metadata.*/
5106 socket
= consumer_find_socket_by_bitness(reg
->bits_per_long
,
5113 memset(pathname
, 0, sizeof(pathname
));
5114 ret
= snprintf(pathname
, sizeof(pathname
),
5115 DEFAULT_UST_TRACE_DIR
"/" DEFAULT_UST_TRACE_UID_PATH
,
5116 reg
->uid
, reg
->bits_per_long
);
5118 PERROR("snprintf snapshot path");
5122 /* Add the UST default trace dir to path. */
5123 cds_lfht_for_each_entry(reg
->registry
->channels
->ht
, &iter
.iter
,
5124 reg_chan
, node
.node
) {
5127 * Make sure the maximum stream size is not lower than the
5128 * subbuffer size or else it's an error since we won't be able to
5129 * snapshot anything.
5131 if (max_stream_size
&&
5132 reg_chan
->subbuf_size
> max_stream_size
) {
5134 DBG3("UST app snapshot record maximum stream size %" PRIu64
5135 " is smaller than subbuffer size of %zu",
5136 max_stream_size
, reg_chan
->subbuf_size
);
5139 ret
= consumer_snapshot_channel(socket
, reg_chan
->consumer_key
, output
, 0,
5140 usess
->uid
, usess
->gid
, pathname
, wait
,
5146 ret
= consumer_snapshot_channel(socket
, reg
->registry
->reg
.ust
->metadata_key
, output
,
5147 1, usess
->uid
, usess
->gid
, pathname
, wait
,
5155 case LTTNG_BUFFER_PER_PID
:
5157 cds_lfht_for_each_entry(ust_app_ht
->ht
, &iter
.iter
, app
, pid_n
.node
) {
5158 struct consumer_socket
*socket
;
5159 struct lttng_ht_iter chan_iter
;
5160 struct ust_app_channel
*ua_chan
;
5161 struct ust_app_session
*ua_sess
;
5162 struct ust_registry_session
*registry
;
5164 ua_sess
= lookup_session_by_app(usess
, app
);
5166 /* Session not associated with this app. */
5170 /* Get the right consumer socket for the application. */
5171 socket
= consumer_find_socket_by_bitness(app
->bits_per_long
,
5178 /* Add the UST default trace dir to path. */
5179 memset(pathname
, 0, sizeof(pathname
));
5180 ret
= snprintf(pathname
, sizeof(pathname
), DEFAULT_UST_TRACE_DIR
"/%s",
5183 PERROR("snprintf snapshot path");
5187 cds_lfht_for_each_entry(ua_sess
->channels
->ht
, &chan_iter
.iter
,
5188 ua_chan
, node
.node
) {
5190 * Make sure the maximum stream size is not lower than the
5191 * subbuffer size or else it's an error since we won't be able to
5192 * snapshot anything.
5194 if (max_stream_size
&&
5195 ua_chan
->attr
.subbuf_size
> max_stream_size
) {
5197 DBG3("UST app snapshot record maximum stream size %" PRIu64
5198 " is smaller than subbuffer size of %" PRIu64
,
5199 max_stream_size
, ua_chan
->attr
.subbuf_size
);
5203 ret
= consumer_snapshot_channel(socket
, ua_chan
->key
, output
, 0,
5204 ua_sess
->euid
, ua_sess
->egid
, pathname
, wait
,
5211 registry
= get_session_registry(ua_sess
);
5213 ret
= consumer_snapshot_channel(socket
, registry
->metadata_key
, output
,
5214 1, ua_sess
->euid
, ua_sess
->egid
, pathname
, wait
,
5233 * Return the number of streams for a UST session.
5235 unsigned int ust_app_get_nb_stream(struct ltt_ust_session
*usess
)
5237 unsigned int ret
= 0;
5238 struct ust_app
*app
;
5239 struct lttng_ht_iter iter
;
5243 switch (usess
->buffer_type
) {
5244 case LTTNG_BUFFER_PER_UID
:
5246 struct buffer_reg_uid
*reg
;
5248 cds_list_for_each_entry(reg
, &usess
->buffer_reg_uid_list
, lnode
) {
5249 struct buffer_reg_channel
*reg_chan
;
5251 cds_lfht_for_each_entry(reg
->registry
->channels
->ht
, &iter
.iter
,
5252 reg_chan
, node
.node
) {
5253 ret
+= reg_chan
->stream_count
;
5258 case LTTNG_BUFFER_PER_PID
:
5261 cds_lfht_for_each_entry(ust_app_ht
->ht
, &iter
.iter
, app
, pid_n
.node
) {
5262 struct ust_app_channel
*ua_chan
;
5263 struct ust_app_session
*ua_sess
;
5264 struct lttng_ht_iter chan_iter
;
5266 ua_sess
= lookup_session_by_app(usess
, app
);
5268 /* Session not associated with this app. */
5272 cds_lfht_for_each_entry(ua_sess
->channels
->ht
, &chan_iter
.iter
,
5273 ua_chan
, node
.node
) {
5274 ret
+= ua_chan
->streams
.count
;