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
);
493 pthread_mutex_unlock(®istry
->lock
);
500 * For a given application and session, push metadata to consumer. The session
501 * lock MUST be acquired here before calling this.
502 * Either sock or consumer is required : if sock is NULL, the default
503 * socket to send the metadata is retrieved from consumer, if sock
504 * is not NULL we use it to send the metadata.
506 * Return 0 on success else a negative error.
508 static int push_metadata(struct ust_registry_session
*registry
,
509 struct consumer_output
*consumer
)
513 struct consumer_socket
*socket
;
521 * Means that no metadata was assigned to the session. This can happens if
522 * no start has been done previously.
524 if (!registry
->metadata_key
) {
529 /* Get consumer socket to use to push the metadata.*/
530 socket
= consumer_find_socket_by_bitness(registry
->bits_per_long
,
534 goto error_rcu_unlock
;
538 * TODO: Currently, we hold the socket lock around sampling of the next
539 * metadata segment to ensure we send metadata over the consumer socket in
540 * the correct order. This makes the registry lock nest inside the socket
543 * Please note that this is a temporary measure: we should move this lock
544 * back into ust_consumer_push_metadata() when the consumer gets the
545 * ability to reorder the metadata it receives.
547 pthread_mutex_lock(socket
->lock
);
548 ret
= ust_app_push_metadata(registry
, socket
, 0);
549 pthread_mutex_unlock(socket
->lock
);
552 goto error_rcu_unlock
;
560 * On error, flag the registry that the metadata is closed. We were unable
561 * to push anything and this means that either the consumer is not
562 * responding or the metadata cache has been destroyed on the consumer.
564 registry
->metadata_closed
= 1;
571 * Send to the consumer a close metadata command for the given session. Once
572 * done, the metadata channel is deleted and the session metadata pointer is
573 * nullified. The session lock MUST be acquired here unless the application is
574 * in the destroy path.
576 * Return 0 on success else a negative value.
578 static int close_metadata(struct ust_registry_session
*registry
,
579 struct consumer_output
*consumer
)
582 struct consumer_socket
*socket
;
589 if (!registry
->metadata_key
|| registry
->metadata_closed
) {
594 /* Get consumer socket to use to push the metadata.*/
595 socket
= consumer_find_socket_by_bitness(registry
->bits_per_long
,
602 ret
= consumer_close_metadata(socket
, registry
->metadata_key
);
609 * Metadata closed. Even on error this means that the consumer is not
610 * responding or not found so either way a second close should NOT be emit
613 registry
->metadata_closed
= 1;
620 * We need to execute ht_destroy outside of RCU read-side critical
621 * section and outside of call_rcu thread, so we postpone its execution
622 * using ht_cleanup_push. It is simpler than to change the semantic of
623 * the many callers of delete_ust_app_session().
626 void delete_ust_app_session_rcu(struct rcu_head
*head
)
628 struct ust_app_session
*ua_sess
=
629 caa_container_of(head
, struct ust_app_session
, rcu_head
);
631 ht_cleanup_push(ua_sess
->channels
);
636 * Delete ust app session safely. RCU read lock must be held before calling
640 void delete_ust_app_session(int sock
, struct ust_app_session
*ua_sess
,
644 struct lttng_ht_iter iter
;
645 struct ust_app_channel
*ua_chan
;
646 struct ust_registry_session
*registry
;
650 pthread_mutex_lock(&ua_sess
->lock
);
652 registry
= get_session_registry(ua_sess
);
653 if (registry
&& !registry
->metadata_closed
) {
654 /* Push metadata for application before freeing the application. */
655 (void) push_metadata(registry
, ua_sess
->consumer
);
658 * Don't ask to close metadata for global per UID buffers. Close
659 * metadata only on destroy trace session in this case. Also, the
660 * previous push metadata could have flag the metadata registry to
661 * close so don't send a close command if closed.
663 if (ua_sess
->buffer_type
!= LTTNG_BUFFER_PER_UID
&&
664 !registry
->metadata_closed
) {
665 /* And ask to close it for this session registry. */
666 (void) close_metadata(registry
, ua_sess
->consumer
);
670 cds_lfht_for_each_entry(ua_sess
->channels
->ht
, &iter
.iter
, ua_chan
,
672 ret
= lttng_ht_del(ua_sess
->channels
, &iter
);
674 delete_ust_app_channel(sock
, ua_chan
, app
);
677 /* In case of per PID, the registry is kept in the session. */
678 if (ua_sess
->buffer_type
== LTTNG_BUFFER_PER_PID
) {
679 struct buffer_reg_pid
*reg_pid
= buffer_reg_pid_find(ua_sess
->id
);
681 buffer_reg_pid_remove(reg_pid
);
682 buffer_reg_pid_destroy(reg_pid
);
686 if (ua_sess
->handle
!= -1) {
687 ret
= ustctl_release_handle(sock
, ua_sess
->handle
);
688 if (ret
< 0 && ret
!= -EPIPE
&& ret
!= -LTTNG_UST_ERR_EXITING
) {
689 ERR("UST app sock %d release session handle failed with ret %d",
693 pthread_mutex_unlock(&ua_sess
->lock
);
695 call_rcu(&ua_sess
->rcu_head
, delete_ust_app_session_rcu
);
699 * Delete a traceable application structure from the global list. Never call
700 * this function outside of a call_rcu call.
702 * RCU read side lock should _NOT_ be held when calling this function.
705 void delete_ust_app(struct ust_app
*app
)
708 struct ust_app_session
*ua_sess
, *tmp_ua_sess
;
710 /* Delete ust app sessions info */
715 cds_list_for_each_entry_safe(ua_sess
, tmp_ua_sess
, &app
->teardown_head
,
717 /* Free every object in the session and the session. */
719 delete_ust_app_session(sock
, ua_sess
, app
);
723 ht_cleanup_push(app
->sessions
);
724 ht_cleanup_push(app
->ust_objd
);
727 * Wait until we have deleted the application from the sock hash table
728 * before closing this socket, otherwise an application could re-use the
729 * socket ID and race with the teardown, using the same hash table entry.
731 * It's OK to leave the close in call_rcu. We want it to stay unique for
732 * all RCU readers that could run concurrently with unregister app,
733 * therefore we _need_ to only close that socket after a grace period. So
734 * it should stay in this RCU callback.
736 * This close() is a very important step of the synchronization model so
737 * every modification to this function must be carefully reviewed.
743 lttng_fd_put(LTTNG_FD_APPS
, 1);
745 DBG2("UST app pid %d deleted", app
->pid
);
750 * URCU intermediate call to delete an UST app.
753 void delete_ust_app_rcu(struct rcu_head
*head
)
755 struct lttng_ht_node_ulong
*node
=
756 caa_container_of(head
, struct lttng_ht_node_ulong
, head
);
757 struct ust_app
*app
=
758 caa_container_of(node
, struct ust_app
, pid_n
);
760 DBG3("Call RCU deleting app PID %d", app
->pid
);
765 * Delete the session from the application ht and delete the data structure by
766 * freeing every object inside and releasing them.
768 static void destroy_app_session(struct ust_app
*app
,
769 struct ust_app_session
*ua_sess
)
772 struct lttng_ht_iter iter
;
777 iter
.iter
.node
= &ua_sess
->node
.node
;
778 ret
= lttng_ht_del(app
->sessions
, &iter
);
780 /* Already scheduled for teardown. */
784 /* Once deleted, free the data structure. */
785 delete_ust_app_session(app
->sock
, ua_sess
, app
);
792 * Alloc new UST app session.
795 struct ust_app_session
*alloc_ust_app_session(struct ust_app
*app
)
797 struct ust_app_session
*ua_sess
;
799 /* Init most of the default value by allocating and zeroing */
800 ua_sess
= zmalloc(sizeof(struct ust_app_session
));
801 if (ua_sess
== NULL
) {
806 ua_sess
->handle
= -1;
807 ua_sess
->channels
= lttng_ht_new(0, LTTNG_HT_TYPE_STRING
);
808 pthread_mutex_init(&ua_sess
->lock
, NULL
);
817 * Alloc new UST app channel.
820 struct ust_app_channel
*alloc_ust_app_channel(char *name
,
821 struct ust_app_session
*ua_sess
,
822 struct lttng_ust_channel_attr
*attr
)
824 struct ust_app_channel
*ua_chan
;
826 /* Init most of the default value by allocating and zeroing */
827 ua_chan
= zmalloc(sizeof(struct ust_app_channel
));
828 if (ua_chan
== NULL
) {
833 /* Setup channel name */
834 strncpy(ua_chan
->name
, name
, sizeof(ua_chan
->name
));
835 ua_chan
->name
[sizeof(ua_chan
->name
) - 1] = '\0';
837 ua_chan
->enabled
= 1;
838 ua_chan
->handle
= -1;
839 ua_chan
->session
= ua_sess
;
840 ua_chan
->key
= get_next_channel_key();
841 ua_chan
->ctx
= lttng_ht_new(0, LTTNG_HT_TYPE_ULONG
);
842 ua_chan
->events
= lttng_ht_new(0, LTTNG_HT_TYPE_STRING
);
843 lttng_ht_node_init_str(&ua_chan
->node
, ua_chan
->name
);
845 CDS_INIT_LIST_HEAD(&ua_chan
->streams
.head
);
846 CDS_INIT_LIST_HEAD(&ua_chan
->ctx_list
);
848 /* Copy attributes */
850 /* Translate from lttng_ust_channel to ustctl_consumer_channel_attr. */
851 ua_chan
->attr
.subbuf_size
= attr
->subbuf_size
;
852 ua_chan
->attr
.num_subbuf
= attr
->num_subbuf
;
853 ua_chan
->attr
.overwrite
= attr
->overwrite
;
854 ua_chan
->attr
.switch_timer_interval
= attr
->switch_timer_interval
;
855 ua_chan
->attr
.read_timer_interval
= attr
->read_timer_interval
;
856 ua_chan
->attr
.output
= attr
->output
;
858 /* By default, the channel is a per cpu channel. */
859 ua_chan
->attr
.type
= LTTNG_UST_CHAN_PER_CPU
;
861 DBG3("UST app channel %s allocated", ua_chan
->name
);
870 * Allocate and initialize a UST app stream.
872 * Return newly allocated stream pointer or NULL on error.
874 struct ust_app_stream
*ust_app_alloc_stream(void)
876 struct ust_app_stream
*stream
= NULL
;
878 stream
= zmalloc(sizeof(*stream
));
879 if (stream
== NULL
) {
880 PERROR("zmalloc ust app stream");
884 /* Zero could be a valid value for a handle so flag it to -1. */
892 * Alloc new UST app event.
895 struct ust_app_event
*alloc_ust_app_event(char *name
,
896 struct lttng_ust_event
*attr
)
898 struct ust_app_event
*ua_event
;
900 /* Init most of the default value by allocating and zeroing */
901 ua_event
= zmalloc(sizeof(struct ust_app_event
));
902 if (ua_event
== NULL
) {
907 ua_event
->enabled
= 1;
908 strncpy(ua_event
->name
, name
, sizeof(ua_event
->name
));
909 ua_event
->name
[sizeof(ua_event
->name
) - 1] = '\0';
910 lttng_ht_node_init_str(&ua_event
->node
, ua_event
->name
);
912 /* Copy attributes */
914 memcpy(&ua_event
->attr
, attr
, sizeof(ua_event
->attr
));
917 DBG3("UST app event %s allocated", ua_event
->name
);
926 * Alloc new UST app context.
929 struct ust_app_ctx
*alloc_ust_app_ctx(struct lttng_ust_context
*uctx
)
931 struct ust_app_ctx
*ua_ctx
;
933 ua_ctx
= zmalloc(sizeof(struct ust_app_ctx
));
934 if (ua_ctx
== NULL
) {
938 CDS_INIT_LIST_HEAD(&ua_ctx
->list
);
941 memcpy(&ua_ctx
->ctx
, uctx
, sizeof(ua_ctx
->ctx
));
944 DBG3("UST app context %d allocated", ua_ctx
->ctx
.ctx
);
951 * Allocate a filter and copy the given original filter.
953 * Return allocated filter or NULL on error.
955 static struct lttng_ust_filter_bytecode
*alloc_copy_ust_app_filter(
956 struct lttng_ust_filter_bytecode
*orig_f
)
958 struct lttng_ust_filter_bytecode
*filter
= NULL
;
960 /* Copy filter bytecode */
961 filter
= zmalloc(sizeof(*filter
) + orig_f
->len
);
963 PERROR("zmalloc alloc ust app filter");
967 memcpy(filter
, orig_f
, sizeof(*filter
) + orig_f
->len
);
974 * Find an ust_app using the sock and return it. RCU read side lock must be
975 * held before calling this helper function.
977 struct ust_app
*ust_app_find_by_sock(int sock
)
979 struct lttng_ht_node_ulong
*node
;
980 struct lttng_ht_iter iter
;
982 lttng_ht_lookup(ust_app_ht_by_sock
, (void *)((unsigned long) sock
), &iter
);
983 node
= lttng_ht_iter_get_node_ulong(&iter
);
985 DBG2("UST app find by sock %d not found", sock
);
989 return caa_container_of(node
, struct ust_app
, sock_n
);
996 * Find an ust_app using the notify sock and return it. RCU read side lock must
997 * be held before calling this helper function.
999 static struct ust_app
*find_app_by_notify_sock(int sock
)
1001 struct lttng_ht_node_ulong
*node
;
1002 struct lttng_ht_iter iter
;
1004 lttng_ht_lookup(ust_app_ht_by_notify_sock
, (void *)((unsigned long) sock
),
1006 node
= lttng_ht_iter_get_node_ulong(&iter
);
1008 DBG2("UST app find by notify sock %d not found", sock
);
1012 return caa_container_of(node
, struct ust_app
, notify_sock_n
);
1019 * Lookup for an ust app event based on event name, filter bytecode and the
1022 * Return an ust_app_event object or NULL on error.
1024 static struct ust_app_event
*find_ust_app_event(struct lttng_ht
*ht
,
1025 char *name
, struct lttng_ust_filter_bytecode
*filter
, int loglevel
,
1026 const struct lttng_event_exclusion
*exclusion
)
1028 struct lttng_ht_iter iter
;
1029 struct lttng_ht_node_str
*node
;
1030 struct ust_app_event
*event
= NULL
;
1031 struct ust_app_ht_key key
;
1036 /* Setup key for event lookup. */
1038 key
.filter
= filter
;
1039 key
.loglevel
= loglevel
;
1040 /* lttng_event_exclusion and lttng_ust_event_exclusion structures are similar */
1041 key
.exclusion
= (struct lttng_ust_event_exclusion
*)exclusion
;
1043 /* Lookup using the event name as hash and a custom match fct. */
1044 cds_lfht_lookup(ht
->ht
, ht
->hash_fct((void *) name
, lttng_ht_seed
),
1045 ht_match_ust_app_event
, &key
, &iter
.iter
);
1046 node
= lttng_ht_iter_get_node_str(&iter
);
1051 event
= caa_container_of(node
, struct ust_app_event
, node
);
1058 * Create the channel context on the tracer.
1060 * Called with UST app session lock held.
1063 int create_ust_channel_context(struct ust_app_channel
*ua_chan
,
1064 struct ust_app_ctx
*ua_ctx
, struct ust_app
*app
)
1068 health_code_update();
1070 ret
= ustctl_add_context(app
->sock
, &ua_ctx
->ctx
,
1071 ua_chan
->obj
, &ua_ctx
->obj
);
1073 if (ret
!= -EPIPE
&& ret
!= -LTTNG_UST_ERR_EXITING
) {
1074 ERR("UST app create channel context failed for app (pid: %d) "
1075 "with ret %d", app
->pid
, ret
);
1078 * This is normal behavior, an application can die during the
1079 * creation process. Don't report an error so the execution can
1080 * continue normally.
1083 DBG3("UST app disable event failed. Application is dead.");
1088 ua_ctx
->handle
= ua_ctx
->obj
->handle
;
1090 DBG2("UST app context handle %d created successfully for channel %s",
1091 ua_ctx
->handle
, ua_chan
->name
);
1094 health_code_update();
1099 * Set the filter on the tracer.
1102 int set_ust_event_filter(struct ust_app_event
*ua_event
,
1103 struct ust_app
*app
)
1107 health_code_update();
1109 if (!ua_event
->filter
) {
1114 ret
= ustctl_set_filter(app
->sock
, ua_event
->filter
,
1117 if (ret
!= -EPIPE
&& ret
!= -LTTNG_UST_ERR_EXITING
) {
1118 ERR("UST app event %s filter failed for app (pid: %d) "
1119 "with ret %d", ua_event
->attr
.name
, app
->pid
, ret
);
1122 * This is normal behavior, an application can die during the
1123 * creation process. Don't report an error so the execution can
1124 * continue normally.
1127 DBG3("UST app filter event failed. Application is dead.");
1132 DBG2("UST filter set successfully for event %s", ua_event
->name
);
1135 health_code_update();
1140 * Set event exclusions on the tracer.
1143 int set_ust_event_exclusion(struct ust_app_event
*ua_event
,
1144 struct ust_app
*app
)
1148 health_code_update();
1150 if (!ua_event
->exclusion
|| !ua_event
->exclusion
->count
) {
1155 ret
= ustctl_set_exclusion(app
->sock
, ua_event
->exclusion
,
1158 if (ret
!= -EPIPE
&& ret
!= -LTTNG_UST_ERR_EXITING
) {
1159 ERR("UST app event %s exclusions failed for app (pid: %d) "
1160 "with ret %d", ua_event
->attr
.name
, app
->pid
, ret
);
1163 * This is normal behavior, an application can die during the
1164 * creation process. Don't report an error so the execution can
1165 * continue normally.
1168 DBG3("UST app event exclusion failed. Application is dead.");
1173 DBG2("UST exclusion set successfully for event %s", ua_event
->name
);
1176 health_code_update();
1181 * Disable the specified event on to UST tracer for the UST session.
1183 static int disable_ust_event(struct ust_app
*app
,
1184 struct ust_app_session
*ua_sess
, struct ust_app_event
*ua_event
)
1188 health_code_update();
1190 ret
= ustctl_disable(app
->sock
, ua_event
->obj
);
1192 if (ret
!= -EPIPE
&& ret
!= -LTTNG_UST_ERR_EXITING
) {
1193 ERR("UST app event %s disable failed for app (pid: %d) "
1194 "and session handle %d with ret %d",
1195 ua_event
->attr
.name
, app
->pid
, ua_sess
->handle
, ret
);
1198 * This is normal behavior, an application can die during the
1199 * creation process. Don't report an error so the execution can
1200 * continue normally.
1203 DBG3("UST app disable event failed. Application is dead.");
1208 DBG2("UST app event %s disabled successfully for app (pid: %d)",
1209 ua_event
->attr
.name
, app
->pid
);
1212 health_code_update();
1217 * Disable the specified channel on to UST tracer for the UST session.
1219 static int disable_ust_channel(struct ust_app
*app
,
1220 struct ust_app_session
*ua_sess
, struct ust_app_channel
*ua_chan
)
1224 health_code_update();
1226 ret
= ustctl_disable(app
->sock
, ua_chan
->obj
);
1228 if (ret
!= -EPIPE
&& ret
!= -LTTNG_UST_ERR_EXITING
) {
1229 ERR("UST app channel %s disable failed for app (pid: %d) "
1230 "and session handle %d with ret %d",
1231 ua_chan
->name
, app
->pid
, ua_sess
->handle
, ret
);
1234 * This is normal behavior, an application can die during the
1235 * creation process. Don't report an error so the execution can
1236 * continue normally.
1239 DBG3("UST app disable channel failed. Application is dead.");
1244 DBG2("UST app channel %s disabled successfully for app (pid: %d)",
1245 ua_chan
->name
, app
->pid
);
1248 health_code_update();
1253 * Enable the specified channel on to UST tracer for the UST session.
1255 static int enable_ust_channel(struct ust_app
*app
,
1256 struct ust_app_session
*ua_sess
, struct ust_app_channel
*ua_chan
)
1260 health_code_update();
1262 ret
= ustctl_enable(app
->sock
, ua_chan
->obj
);
1264 if (ret
!= -EPIPE
&& ret
!= -LTTNG_UST_ERR_EXITING
) {
1265 ERR("UST app channel %s enable failed for app (pid: %d) "
1266 "and session handle %d with ret %d",
1267 ua_chan
->name
, app
->pid
, ua_sess
->handle
, ret
);
1270 * This is normal behavior, an application can die during the
1271 * creation process. Don't report an error so the execution can
1272 * continue normally.
1275 DBG3("UST app enable channel failed. Application is dead.");
1280 ua_chan
->enabled
= 1;
1282 DBG2("UST app channel %s enabled successfully for app (pid: %d)",
1283 ua_chan
->name
, app
->pid
);
1286 health_code_update();
1291 * Enable the specified event on to UST tracer for the UST session.
1293 static int enable_ust_event(struct ust_app
*app
,
1294 struct ust_app_session
*ua_sess
, struct ust_app_event
*ua_event
)
1298 health_code_update();
1300 ret
= ustctl_enable(app
->sock
, ua_event
->obj
);
1302 if (ret
!= -EPIPE
&& ret
!= -LTTNG_UST_ERR_EXITING
) {
1303 ERR("UST app event %s enable failed for app (pid: %d) "
1304 "and session handle %d with ret %d",
1305 ua_event
->attr
.name
, app
->pid
, ua_sess
->handle
, ret
);
1308 * This is normal behavior, an application can die during the
1309 * creation process. Don't report an error so the execution can
1310 * continue normally.
1313 DBG3("UST app enable event failed. Application is dead.");
1318 DBG2("UST app event %s enabled successfully for app (pid: %d)",
1319 ua_event
->attr
.name
, app
->pid
);
1322 health_code_update();
1327 * Send channel and stream buffer to application.
1329 * Return 0 on success. On error, a negative value is returned.
1331 static int send_channel_pid_to_ust(struct ust_app
*app
,
1332 struct ust_app_session
*ua_sess
, struct ust_app_channel
*ua_chan
)
1335 struct ust_app_stream
*stream
, *stmp
;
1341 health_code_update();
1343 DBG("UST app sending channel %s to UST app sock %d", ua_chan
->name
,
1346 /* Send channel to the application. */
1347 ret
= ust_consumer_send_channel_to_ust(app
, ua_sess
, ua_chan
);
1352 health_code_update();
1354 /* Send all streams to application. */
1355 cds_list_for_each_entry_safe(stream
, stmp
, &ua_chan
->streams
.head
, list
) {
1356 ret
= ust_consumer_send_stream_to_ust(app
, ua_chan
, stream
);
1360 /* We don't need the stream anymore once sent to the tracer. */
1361 cds_list_del(&stream
->list
);
1362 delete_ust_app_stream(-1, stream
);
1364 /* Flag the channel that it is sent to the application. */
1365 ua_chan
->is_sent
= 1;
1368 health_code_update();
1373 * Create the specified event onto the UST tracer for a UST session.
1375 * Should be called with session mutex held.
1378 int create_ust_event(struct ust_app
*app
, struct ust_app_session
*ua_sess
,
1379 struct ust_app_channel
*ua_chan
, struct ust_app_event
*ua_event
)
1383 health_code_update();
1385 /* Create UST event on tracer */
1386 ret
= ustctl_create_event(app
->sock
, &ua_event
->attr
, ua_chan
->obj
,
1389 if (ret
!= -EPIPE
&& ret
!= -LTTNG_UST_ERR_EXITING
) {
1390 ERR("Error ustctl create event %s for app pid: %d with ret %d",
1391 ua_event
->attr
.name
, app
->pid
, ret
);
1394 * This is normal behavior, an application can die during the
1395 * creation process. Don't report an error so the execution can
1396 * continue normally.
1399 DBG3("UST app create event failed. Application is dead.");
1404 ua_event
->handle
= ua_event
->obj
->handle
;
1406 DBG2("UST app event %s created successfully for pid:%d",
1407 ua_event
->attr
.name
, app
->pid
);
1409 health_code_update();
1411 /* Set filter if one is present. */
1412 if (ua_event
->filter
) {
1413 ret
= set_ust_event_filter(ua_event
, app
);
1419 /* Set exclusions for the event */
1420 if (ua_event
->exclusion
) {
1421 ret
= set_ust_event_exclusion(ua_event
, app
);
1427 /* If event not enabled, disable it on the tracer */
1428 if (ua_event
->enabled
== 0) {
1429 ret
= disable_ust_event(app
, ua_sess
, ua_event
);
1432 * If we hit an EPERM, something is wrong with our disable call. If
1433 * we get an EEXIST, there is a problem on the tracer side since we
1437 case -LTTNG_UST_ERR_PERM
:
1438 /* Code flow problem */
1440 case -LTTNG_UST_ERR_EXIST
:
1441 /* It's OK for our use case. */
1452 health_code_update();
1457 * Copy data between an UST app event and a LTT event.
1459 static void shadow_copy_event(struct ust_app_event
*ua_event
,
1460 struct ltt_ust_event
*uevent
)
1462 size_t exclusion_alloc_size
;
1464 strncpy(ua_event
->name
, uevent
->attr
.name
, sizeof(ua_event
->name
));
1465 ua_event
->name
[sizeof(ua_event
->name
) - 1] = '\0';
1467 ua_event
->enabled
= uevent
->enabled
;
1469 /* Copy event attributes */
1470 memcpy(&ua_event
->attr
, &uevent
->attr
, sizeof(ua_event
->attr
));
1472 /* Copy filter bytecode */
1473 if (uevent
->filter
) {
1474 ua_event
->filter
= alloc_copy_ust_app_filter(uevent
->filter
);
1475 /* Filter might be NULL here in case of ENONEM. */
1478 /* Copy exclusion data */
1479 if (uevent
->exclusion
) {
1480 exclusion_alloc_size
= sizeof(struct lttng_ust_event_exclusion
) +
1481 LTTNG_UST_SYM_NAME_LEN
* uevent
->exclusion
->count
;
1482 ua_event
->exclusion
= zmalloc(exclusion_alloc_size
);
1483 if (ua_event
->exclusion
) {
1484 memcpy(ua_event
->exclusion
, uevent
->exclusion
, exclusion_alloc_size
);
1490 * Copy data between an UST app channel and a LTT channel.
1492 static void shadow_copy_channel(struct ust_app_channel
*ua_chan
,
1493 struct ltt_ust_channel
*uchan
)
1495 struct lttng_ht_iter iter
;
1496 struct ltt_ust_event
*uevent
;
1497 struct ltt_ust_context
*uctx
;
1498 struct ust_app_event
*ua_event
;
1499 struct ust_app_ctx
*ua_ctx
;
1501 DBG2("UST app shadow copy of channel %s started", ua_chan
->name
);
1503 strncpy(ua_chan
->name
, uchan
->name
, sizeof(ua_chan
->name
));
1504 ua_chan
->name
[sizeof(ua_chan
->name
) - 1] = '\0';
1506 ua_chan
->tracefile_size
= uchan
->tracefile_size
;
1507 ua_chan
->tracefile_count
= uchan
->tracefile_count
;
1509 /* Copy event attributes since the layout is different. */
1510 ua_chan
->attr
.subbuf_size
= uchan
->attr
.subbuf_size
;
1511 ua_chan
->attr
.num_subbuf
= uchan
->attr
.num_subbuf
;
1512 ua_chan
->attr
.overwrite
= uchan
->attr
.overwrite
;
1513 ua_chan
->attr
.switch_timer_interval
= uchan
->attr
.switch_timer_interval
;
1514 ua_chan
->attr
.read_timer_interval
= uchan
->attr
.read_timer_interval
;
1515 ua_chan
->attr
.output
= uchan
->attr
.output
;
1517 * Note that the attribute channel type is not set since the channel on the
1518 * tracing registry side does not have this information.
1521 ua_chan
->enabled
= uchan
->enabled
;
1522 ua_chan
->tracing_channel_id
= uchan
->id
;
1524 cds_list_for_each_entry(uctx
, &uchan
->ctx_list
, list
) {
1525 ua_ctx
= alloc_ust_app_ctx(&uctx
->ctx
);
1526 if (ua_ctx
== NULL
) {
1529 lttng_ht_node_init_ulong(&ua_ctx
->node
,
1530 (unsigned long) ua_ctx
->ctx
.ctx
);
1531 lttng_ht_add_unique_ulong(ua_chan
->ctx
, &ua_ctx
->node
);
1532 cds_list_add_tail(&ua_ctx
->list
, &ua_chan
->ctx_list
);
1535 /* Copy all events from ltt ust channel to ust app channel */
1536 cds_lfht_for_each_entry(uchan
->events
->ht
, &iter
.iter
, uevent
, node
.node
) {
1537 ua_event
= find_ust_app_event(ua_chan
->events
, uevent
->attr
.name
,
1538 uevent
->filter
, uevent
->attr
.loglevel
, uevent
->exclusion
);
1539 if (ua_event
== NULL
) {
1540 DBG2("UST event %s not found on shadow copy channel",
1542 ua_event
= alloc_ust_app_event(uevent
->attr
.name
, &uevent
->attr
);
1543 if (ua_event
== NULL
) {
1546 shadow_copy_event(ua_event
, uevent
);
1547 add_unique_ust_app_event(ua_chan
, ua_event
);
1551 DBG3("UST app shadow copy of channel %s done", ua_chan
->name
);
1555 * Copy data between a UST app session and a regular LTT session.
1557 static void shadow_copy_session(struct ust_app_session
*ua_sess
,
1558 struct ltt_ust_session
*usess
, struct ust_app
*app
)
1560 struct lttng_ht_node_str
*ua_chan_node
;
1561 struct lttng_ht_iter iter
;
1562 struct ltt_ust_channel
*uchan
;
1563 struct ust_app_channel
*ua_chan
;
1565 struct tm
*timeinfo
;
1569 /* Get date and time for unique app path */
1571 timeinfo
= localtime(&rawtime
);
1572 strftime(datetime
, sizeof(datetime
), "%Y%m%d-%H%M%S", timeinfo
);
1574 DBG2("Shadow copy of session handle %d", ua_sess
->handle
);
1576 ua_sess
->tracing_id
= usess
->id
;
1577 ua_sess
->id
= get_next_session_id();
1578 ua_sess
->uid
= app
->uid
;
1579 ua_sess
->gid
= app
->gid
;
1580 ua_sess
->euid
= usess
->uid
;
1581 ua_sess
->egid
= usess
->gid
;
1582 ua_sess
->buffer_type
= usess
->buffer_type
;
1583 ua_sess
->bits_per_long
= app
->bits_per_long
;
1584 /* There is only one consumer object per session possible. */
1585 ua_sess
->consumer
= usess
->consumer
;
1586 ua_sess
->output_traces
= usess
->output_traces
;
1587 ua_sess
->live_timer_interval
= usess
->live_timer_interval
;
1589 switch (ua_sess
->buffer_type
) {
1590 case LTTNG_BUFFER_PER_PID
:
1591 ret
= snprintf(ua_sess
->path
, sizeof(ua_sess
->path
),
1592 DEFAULT_UST_TRACE_PID_PATH
"/%s-%d-%s", app
->name
, app
->pid
,
1595 case LTTNG_BUFFER_PER_UID
:
1596 ret
= snprintf(ua_sess
->path
, sizeof(ua_sess
->path
),
1597 DEFAULT_UST_TRACE_UID_PATH
, ua_sess
->uid
, app
->bits_per_long
);
1604 PERROR("asprintf UST shadow copy session");
1609 /* Iterate over all channels in global domain. */
1610 cds_lfht_for_each_entry(usess
->domain_global
.channels
->ht
, &iter
.iter
,
1612 struct lttng_ht_iter uiter
;
1614 lttng_ht_lookup(ua_sess
->channels
, (void *)uchan
->name
, &uiter
);
1615 ua_chan_node
= lttng_ht_iter_get_node_str(&uiter
);
1616 if (ua_chan_node
!= NULL
) {
1617 /* Session exist. Contiuing. */
1621 DBG2("Channel %s not found on shadow session copy, creating it",
1623 ua_chan
= alloc_ust_app_channel(uchan
->name
, ua_sess
, &uchan
->attr
);
1624 if (ua_chan
== NULL
) {
1625 /* malloc failed FIXME: Might want to do handle ENOMEM .. */
1628 shadow_copy_channel(ua_chan
, uchan
);
1630 * The concept of metadata channel does not exist on the tracing
1631 * registry side of the session daemon so this can only be a per CPU
1632 * channel and not metadata.
1634 ua_chan
->attr
.type
= LTTNG_UST_CHAN_PER_CPU
;
1636 lttng_ht_add_unique_str(ua_sess
->channels
, &ua_chan
->node
);
1644 * Lookup sesison wrapper.
1647 void __lookup_session_by_app(struct ltt_ust_session
*usess
,
1648 struct ust_app
*app
, struct lttng_ht_iter
*iter
)
1650 /* Get right UST app session from app */
1651 lttng_ht_lookup(app
->sessions
, &usess
->id
, iter
);
1655 * Return ust app session from the app session hashtable using the UST session
1658 static struct ust_app_session
*lookup_session_by_app(
1659 struct ltt_ust_session
*usess
, struct ust_app
*app
)
1661 struct lttng_ht_iter iter
;
1662 struct lttng_ht_node_u64
*node
;
1664 __lookup_session_by_app(usess
, app
, &iter
);
1665 node
= lttng_ht_iter_get_node_u64(&iter
);
1670 return caa_container_of(node
, struct ust_app_session
, node
);
1677 * Setup buffer registry per PID for the given session and application. If none
1678 * is found, a new one is created, added to the global registry and
1679 * initialized. If regp is valid, it's set with the newly created object.
1681 * Return 0 on success or else a negative value.
1683 static int setup_buffer_reg_pid(struct ust_app_session
*ua_sess
,
1684 struct ust_app
*app
, struct buffer_reg_pid
**regp
)
1687 struct buffer_reg_pid
*reg_pid
;
1694 reg_pid
= buffer_reg_pid_find(ua_sess
->id
);
1697 * This is the create channel path meaning that if there is NO
1698 * registry available, we have to create one for this session.
1700 ret
= buffer_reg_pid_create(ua_sess
->id
, ®_pid
);
1704 buffer_reg_pid_add(reg_pid
);
1709 /* Initialize registry. */
1710 ret
= ust_registry_session_init(®_pid
->registry
->reg
.ust
, app
,
1711 app
->bits_per_long
, app
->uint8_t_alignment
,
1712 app
->uint16_t_alignment
, app
->uint32_t_alignment
,
1713 app
->uint64_t_alignment
, app
->long_alignment
,
1714 app
->byte_order
, app
->version
.major
,
1715 app
->version
.minor
);
1720 DBG3("UST app buffer registry per PID created successfully");
1732 * Setup buffer registry per UID for the given session and application. If none
1733 * is found, a new one is created, added to the global registry and
1734 * initialized. If regp is valid, it's set with the newly created object.
1736 * Return 0 on success or else a negative value.
1738 static int setup_buffer_reg_uid(struct ltt_ust_session
*usess
,
1739 struct ust_app
*app
, struct buffer_reg_uid
**regp
)
1742 struct buffer_reg_uid
*reg_uid
;
1749 reg_uid
= buffer_reg_uid_find(usess
->id
, app
->bits_per_long
, app
->uid
);
1752 * This is the create channel path meaning that if there is NO
1753 * registry available, we have to create one for this session.
1755 ret
= buffer_reg_uid_create(usess
->id
, app
->bits_per_long
, app
->uid
,
1756 LTTNG_DOMAIN_UST
, ®_uid
);
1760 buffer_reg_uid_add(reg_uid
);
1765 /* Initialize registry. */
1766 ret
= ust_registry_session_init(®_uid
->registry
->reg
.ust
, NULL
,
1767 app
->bits_per_long
, app
->uint8_t_alignment
,
1768 app
->uint16_t_alignment
, app
->uint32_t_alignment
,
1769 app
->uint64_t_alignment
, app
->long_alignment
,
1770 app
->byte_order
, app
->version
.major
,
1771 app
->version
.minor
);
1775 /* Add node to teardown list of the session. */
1776 cds_list_add(®_uid
->lnode
, &usess
->buffer_reg_uid_list
);
1778 DBG3("UST app buffer registry per UID created successfully");
1790 * Create a session on the tracer side for the given app.
1792 * On success, ua_sess_ptr is populated with the session pointer or else left
1793 * untouched. If the session was created, is_created is set to 1. On error,
1794 * it's left untouched. Note that ua_sess_ptr is mandatory but is_created can
1797 * Returns 0 on success or else a negative code which is either -ENOMEM or
1798 * -ENOTCONN which is the default code if the ustctl_create_session fails.
1800 static int create_ust_app_session(struct ltt_ust_session
*usess
,
1801 struct ust_app
*app
, struct ust_app_session
**ua_sess_ptr
,
1804 int ret
, created
= 0;
1805 struct ust_app_session
*ua_sess
;
1809 assert(ua_sess_ptr
);
1811 health_code_update();
1813 ua_sess
= lookup_session_by_app(usess
, app
);
1814 if (ua_sess
== NULL
) {
1815 DBG2("UST app pid: %d session id %" PRIu64
" not found, creating it",
1816 app
->pid
, usess
->id
);
1817 ua_sess
= alloc_ust_app_session(app
);
1818 if (ua_sess
== NULL
) {
1819 /* Only malloc can failed so something is really wrong */
1823 shadow_copy_session(ua_sess
, usess
, app
);
1827 switch (usess
->buffer_type
) {
1828 case LTTNG_BUFFER_PER_PID
:
1829 /* Init local registry. */
1830 ret
= setup_buffer_reg_pid(ua_sess
, app
, NULL
);
1835 case LTTNG_BUFFER_PER_UID
:
1836 /* Look for a global registry. If none exists, create one. */
1837 ret
= setup_buffer_reg_uid(usess
, app
, NULL
);
1848 health_code_update();
1850 if (ua_sess
->handle
== -1) {
1851 ret
= ustctl_create_session(app
->sock
);
1853 if (ret
!= -EPIPE
&& ret
!= -LTTNG_UST_ERR_EXITING
) {
1854 ERR("Creating session for app pid %d with ret %d",
1857 DBG("UST app creating session failed. Application is dead");
1859 * This is normal behavior, an application can die during the
1860 * creation process. Don't report an error so the execution can
1861 * continue normally. This will get flagged ENOTCONN and the
1862 * caller will handle it.
1866 delete_ust_app_session(-1, ua_sess
, app
);
1867 if (ret
!= -ENOMEM
) {
1869 * Tracer is probably gone or got an internal error so let's
1870 * behave like it will soon unregister or not usable.
1877 ua_sess
->handle
= ret
;
1879 /* Add ust app session to app's HT */
1880 lttng_ht_node_init_u64(&ua_sess
->node
,
1881 ua_sess
->tracing_id
);
1882 lttng_ht_add_unique_u64(app
->sessions
, &ua_sess
->node
);
1884 DBG2("UST app session created successfully with handle %d", ret
);
1887 *ua_sess_ptr
= ua_sess
;
1889 *is_created
= created
;
1892 /* Everything went well. */
1896 health_code_update();
1901 * Create a context for the channel on the tracer.
1903 * Called with UST app session lock held and a RCU read side lock.
1906 int create_ust_app_channel_context(struct ust_app_session
*ua_sess
,
1907 struct ust_app_channel
*ua_chan
, struct lttng_ust_context
*uctx
,
1908 struct ust_app
*app
)
1911 struct lttng_ht_iter iter
;
1912 struct lttng_ht_node_ulong
*node
;
1913 struct ust_app_ctx
*ua_ctx
;
1915 DBG2("UST app adding context to channel %s", ua_chan
->name
);
1917 lttng_ht_lookup(ua_chan
->ctx
, (void *)((unsigned long)uctx
->ctx
), &iter
);
1918 node
= lttng_ht_iter_get_node_ulong(&iter
);
1924 ua_ctx
= alloc_ust_app_ctx(uctx
);
1925 if (ua_ctx
== NULL
) {
1931 lttng_ht_node_init_ulong(&ua_ctx
->node
, (unsigned long) ua_ctx
->ctx
.ctx
);
1932 lttng_ht_add_unique_ulong(ua_chan
->ctx
, &ua_ctx
->node
);
1933 cds_list_add_tail(&ua_ctx
->list
, &ua_chan
->ctx_list
);
1935 ret
= create_ust_channel_context(ua_chan
, ua_ctx
, app
);
1945 * Enable on the tracer side a ust app event for the session and channel.
1947 * Called with UST app session lock held.
1950 int enable_ust_app_event(struct ust_app_session
*ua_sess
,
1951 struct ust_app_event
*ua_event
, struct ust_app
*app
)
1955 ret
= enable_ust_event(app
, ua_sess
, ua_event
);
1960 ua_event
->enabled
= 1;
1967 * Disable on the tracer side a ust app event for the session and channel.
1969 static int disable_ust_app_event(struct ust_app_session
*ua_sess
,
1970 struct ust_app_event
*ua_event
, struct ust_app
*app
)
1974 ret
= disable_ust_event(app
, ua_sess
, ua_event
);
1979 ua_event
->enabled
= 0;
1986 * Lookup ust app channel for session and disable it on the tracer side.
1989 int disable_ust_app_channel(struct ust_app_session
*ua_sess
,
1990 struct ust_app_channel
*ua_chan
, struct ust_app
*app
)
1994 ret
= disable_ust_channel(app
, ua_sess
, ua_chan
);
1999 ua_chan
->enabled
= 0;
2006 * Lookup ust app channel for session and enable it on the tracer side. This
2007 * MUST be called with a RCU read side lock acquired.
2009 static int enable_ust_app_channel(struct ust_app_session
*ua_sess
,
2010 struct ltt_ust_channel
*uchan
, struct ust_app
*app
)
2013 struct lttng_ht_iter iter
;
2014 struct lttng_ht_node_str
*ua_chan_node
;
2015 struct ust_app_channel
*ua_chan
;
2017 lttng_ht_lookup(ua_sess
->channels
, (void *)uchan
->name
, &iter
);
2018 ua_chan_node
= lttng_ht_iter_get_node_str(&iter
);
2019 if (ua_chan_node
== NULL
) {
2020 DBG2("Unable to find channel %s in ust session id %" PRIu64
,
2021 uchan
->name
, ua_sess
->tracing_id
);
2025 ua_chan
= caa_container_of(ua_chan_node
, struct ust_app_channel
, node
);
2027 ret
= enable_ust_channel(app
, ua_sess
, ua_chan
);
2037 * Ask the consumer to create a channel and get it if successful.
2039 * Return 0 on success or else a negative value.
2041 static int do_consumer_create_channel(struct ltt_ust_session
*usess
,
2042 struct ust_app_session
*ua_sess
, struct ust_app_channel
*ua_chan
,
2043 int bitness
, struct ust_registry_session
*registry
)
2046 unsigned int nb_fd
= 0;
2047 struct consumer_socket
*socket
;
2055 health_code_update();
2057 /* Get the right consumer socket for the application. */
2058 socket
= consumer_find_socket_by_bitness(bitness
, usess
->consumer
);
2064 health_code_update();
2066 /* Need one fd for the channel. */
2067 ret
= lttng_fd_get(LTTNG_FD_APPS
, 1);
2069 ERR("Exhausted number of available FD upon create channel");
2074 * Ask consumer to create channel. The consumer will return the number of
2075 * stream we have to expect.
2077 ret
= ust_consumer_ask_channel(ua_sess
, ua_chan
, usess
->consumer
, socket
,
2084 * Compute the number of fd needed before receiving them. It must be 2 per
2085 * stream (2 being the default value here).
2087 nb_fd
= DEFAULT_UST_STREAM_FD_NUM
* ua_chan
->expected_stream_count
;
2089 /* Reserve the amount of file descriptor we need. */
2090 ret
= lttng_fd_get(LTTNG_FD_APPS
, nb_fd
);
2092 ERR("Exhausted number of available FD upon create channel");
2093 goto error_fd_get_stream
;
2096 health_code_update();
2099 * Now get the channel from the consumer. This call wil populate the stream
2100 * list of that channel and set the ust objects.
2102 if (usess
->consumer
->enabled
) {
2103 ret
= ust_consumer_get_channel(socket
, ua_chan
);
2113 lttng_fd_put(LTTNG_FD_APPS
, nb_fd
);
2114 error_fd_get_stream
:
2116 * Initiate a destroy channel on the consumer since we had an error
2117 * handling it on our side. The return value is of no importance since we
2118 * already have a ret value set by the previous error that we need to
2121 (void) ust_consumer_destroy_channel(socket
, ua_chan
);
2123 lttng_fd_put(LTTNG_FD_APPS
, 1);
2125 health_code_update();
2131 * Duplicate the ust data object of the ust app stream and save it in the
2132 * buffer registry stream.
2134 * Return 0 on success or else a negative value.
2136 static int duplicate_stream_object(struct buffer_reg_stream
*reg_stream
,
2137 struct ust_app_stream
*stream
)
2144 /* Reserve the amount of file descriptor we need. */
2145 ret
= lttng_fd_get(LTTNG_FD_APPS
, 2);
2147 ERR("Exhausted number of available FD upon duplicate stream");
2151 /* Duplicate object for stream once the original is in the registry. */
2152 ret
= ustctl_duplicate_ust_object_data(&stream
->obj
,
2153 reg_stream
->obj
.ust
);
2155 ERR("Duplicate stream obj from %p to %p failed with ret %d",
2156 reg_stream
->obj
.ust
, stream
->obj
, ret
);
2157 lttng_fd_put(LTTNG_FD_APPS
, 2);
2160 stream
->handle
= stream
->obj
->handle
;
2167 * Duplicate the ust data object of the ust app. channel and save it in the
2168 * buffer registry channel.
2170 * Return 0 on success or else a negative value.
2172 static int duplicate_channel_object(struct buffer_reg_channel
*reg_chan
,
2173 struct ust_app_channel
*ua_chan
)
2180 /* Need two fds for the channel. */
2181 ret
= lttng_fd_get(LTTNG_FD_APPS
, 1);
2183 ERR("Exhausted number of available FD upon duplicate channel");
2187 /* Duplicate object for stream once the original is in the registry. */
2188 ret
= ustctl_duplicate_ust_object_data(&ua_chan
->obj
, reg_chan
->obj
.ust
);
2190 ERR("Duplicate channel obj from %p to %p failed with ret: %d",
2191 reg_chan
->obj
.ust
, ua_chan
->obj
, ret
);
2194 ua_chan
->handle
= ua_chan
->obj
->handle
;
2199 lttng_fd_put(LTTNG_FD_APPS
, 1);
2205 * For a given channel buffer registry, setup all streams of the given ust
2206 * application channel.
2208 * Return 0 on success or else a negative value.
2210 static int setup_buffer_reg_streams(struct buffer_reg_channel
*reg_chan
,
2211 struct ust_app_channel
*ua_chan
)
2214 struct ust_app_stream
*stream
, *stmp
;
2219 DBG2("UST app setup buffer registry stream");
2221 /* Send all streams to application. */
2222 cds_list_for_each_entry_safe(stream
, stmp
, &ua_chan
->streams
.head
, list
) {
2223 struct buffer_reg_stream
*reg_stream
;
2225 ret
= buffer_reg_stream_create(®_stream
);
2231 * Keep original pointer and nullify it in the stream so the delete
2232 * stream call does not release the object.
2234 reg_stream
->obj
.ust
= stream
->obj
;
2236 buffer_reg_stream_add(reg_stream
, reg_chan
);
2238 /* We don't need the streams anymore. */
2239 cds_list_del(&stream
->list
);
2240 delete_ust_app_stream(-1, stream
);
2248 * Create a buffer registry channel for the given session registry and
2249 * application channel object. If regp pointer is valid, it's set with the
2250 * created object. Important, the created object is NOT added to the session
2251 * registry hash table.
2253 * Return 0 on success else a negative value.
2255 static int create_buffer_reg_channel(struct buffer_reg_session
*reg_sess
,
2256 struct ust_app_channel
*ua_chan
, struct buffer_reg_channel
**regp
)
2259 struct buffer_reg_channel
*reg_chan
= NULL
;
2264 DBG2("UST app creating buffer registry channel for %s", ua_chan
->name
);
2266 /* Create buffer registry channel. */
2267 ret
= buffer_reg_channel_create(ua_chan
->tracing_channel_id
, ®_chan
);
2272 reg_chan
->consumer_key
= ua_chan
->key
;
2273 reg_chan
->subbuf_size
= ua_chan
->attr
.subbuf_size
;
2275 /* Create and add a channel registry to session. */
2276 ret
= ust_registry_channel_add(reg_sess
->reg
.ust
,
2277 ua_chan
->tracing_channel_id
);
2281 buffer_reg_channel_add(reg_sess
, reg_chan
);
2290 /* Safe because the registry channel object was not added to any HT. */
2291 buffer_reg_channel_destroy(reg_chan
, LTTNG_DOMAIN_UST
);
2297 * Setup buffer registry channel for the given session registry and application
2298 * channel object. If regp pointer is valid, it's set with the created object.
2300 * Return 0 on success else a negative value.
2302 static int setup_buffer_reg_channel(struct buffer_reg_session
*reg_sess
,
2303 struct ust_app_channel
*ua_chan
, struct buffer_reg_channel
*reg_chan
)
2310 assert(ua_chan
->obj
);
2312 DBG2("UST app setup buffer registry channel for %s", ua_chan
->name
);
2314 /* Setup all streams for the registry. */
2315 ret
= setup_buffer_reg_streams(reg_chan
, ua_chan
);
2320 reg_chan
->obj
.ust
= ua_chan
->obj
;
2321 ua_chan
->obj
= NULL
;
2326 buffer_reg_channel_remove(reg_sess
, reg_chan
);
2327 buffer_reg_channel_destroy(reg_chan
, LTTNG_DOMAIN_UST
);
2332 * Send buffer registry channel to the application.
2334 * Return 0 on success else a negative value.
2336 static int send_channel_uid_to_ust(struct buffer_reg_channel
*reg_chan
,
2337 struct ust_app
*app
, struct ust_app_session
*ua_sess
,
2338 struct ust_app_channel
*ua_chan
)
2341 struct buffer_reg_stream
*reg_stream
;
2348 DBG("UST app sending buffer registry channel to ust sock %d", app
->sock
);
2350 ret
= duplicate_channel_object(reg_chan
, ua_chan
);
2355 /* Send channel to the application. */
2356 ret
= ust_consumer_send_channel_to_ust(app
, ua_sess
, ua_chan
);
2361 health_code_update();
2363 /* Send all streams to application. */
2364 pthread_mutex_lock(®_chan
->stream_list_lock
);
2365 cds_list_for_each_entry(reg_stream
, ®_chan
->streams
, lnode
) {
2366 struct ust_app_stream stream
;
2368 ret
= duplicate_stream_object(reg_stream
, &stream
);
2370 goto error_stream_unlock
;
2373 ret
= ust_consumer_send_stream_to_ust(app
, ua_chan
, &stream
);
2375 (void) release_ust_app_stream(-1, &stream
);
2376 goto error_stream_unlock
;
2380 * The return value is not important here. This function will output an
2383 (void) release_ust_app_stream(-1, &stream
);
2385 ua_chan
->is_sent
= 1;
2387 error_stream_unlock
:
2388 pthread_mutex_unlock(®_chan
->stream_list_lock
);
2394 * Create and send to the application the created buffers with per UID buffers.
2396 * Return 0 on success else a negative value.
2398 static int create_channel_per_uid(struct ust_app
*app
,
2399 struct ltt_ust_session
*usess
, struct ust_app_session
*ua_sess
,
2400 struct ust_app_channel
*ua_chan
)
2403 struct buffer_reg_uid
*reg_uid
;
2404 struct buffer_reg_channel
*reg_chan
;
2411 DBG("UST app creating channel %s with per UID buffers", ua_chan
->name
);
2413 reg_uid
= buffer_reg_uid_find(usess
->id
, app
->bits_per_long
, app
->uid
);
2415 * The session creation handles the creation of this global registry
2416 * object. If none can be find, there is a code flow problem or a
2421 reg_chan
= buffer_reg_channel_find(ua_chan
->tracing_channel_id
,
2424 /* Create the buffer registry channel object. */
2425 ret
= create_buffer_reg_channel(reg_uid
->registry
, ua_chan
, ®_chan
);
2432 * Create the buffers on the consumer side. This call populates the
2433 * ust app channel object with all streams and data object.
2435 ret
= do_consumer_create_channel(usess
, ua_sess
, ua_chan
,
2436 app
->bits_per_long
, reg_uid
->registry
->reg
.ust
);
2439 * Let's remove the previously created buffer registry channel so
2440 * it's not visible anymore in the session registry.
2442 ust_registry_channel_del_free(reg_uid
->registry
->reg
.ust
,
2443 ua_chan
->tracing_channel_id
);
2444 buffer_reg_channel_remove(reg_uid
->registry
, reg_chan
);
2445 buffer_reg_channel_destroy(reg_chan
, LTTNG_DOMAIN_UST
);
2450 * Setup the streams and add it to the session registry.
2452 ret
= setup_buffer_reg_channel(reg_uid
->registry
, ua_chan
, reg_chan
);
2459 /* Send buffers to the application. */
2460 ret
= send_channel_uid_to_ust(reg_chan
, app
, ua_sess
, ua_chan
);
2470 * Create and send to the application the created buffers with per PID buffers.
2472 * Return 0 on success else a negative value.
2474 static int create_channel_per_pid(struct ust_app
*app
,
2475 struct ltt_ust_session
*usess
, struct ust_app_session
*ua_sess
,
2476 struct ust_app_channel
*ua_chan
)
2479 struct ust_registry_session
*registry
;
2486 DBG("UST app creating channel %s with per PID buffers", ua_chan
->name
);
2490 registry
= get_session_registry(ua_sess
);
2493 /* Create and add a new channel registry to session. */
2494 ret
= ust_registry_channel_add(registry
, ua_chan
->key
);
2499 /* Create and get channel on the consumer side. */
2500 ret
= do_consumer_create_channel(usess
, ua_sess
, ua_chan
,
2501 app
->bits_per_long
, registry
);
2506 ret
= send_channel_pid_to_ust(app
, ua_sess
, ua_chan
);
2517 * From an already allocated ust app channel, create the channel buffers if
2518 * need and send it to the application. This MUST be called with a RCU read
2519 * side lock acquired.
2521 * Return 0 on success or else a negative value.
2523 static int do_create_channel(struct ust_app
*app
,
2524 struct ltt_ust_session
*usess
, struct ust_app_session
*ua_sess
,
2525 struct ust_app_channel
*ua_chan
)
2534 /* Handle buffer type before sending the channel to the application. */
2535 switch (usess
->buffer_type
) {
2536 case LTTNG_BUFFER_PER_UID
:
2538 ret
= create_channel_per_uid(app
, usess
, ua_sess
, ua_chan
);
2544 case LTTNG_BUFFER_PER_PID
:
2546 ret
= create_channel_per_pid(app
, usess
, ua_sess
, ua_chan
);
2558 /* Initialize ust objd object using the received handle and add it. */
2559 lttng_ht_node_init_ulong(&ua_chan
->ust_objd_node
, ua_chan
->handle
);
2560 lttng_ht_add_unique_ulong(app
->ust_objd
, &ua_chan
->ust_objd_node
);
2562 /* If channel is not enabled, disable it on the tracer */
2563 if (!ua_chan
->enabled
) {
2564 ret
= disable_ust_channel(app
, ua_sess
, ua_chan
);
2575 * Create UST app channel and create it on the tracer. Set ua_chanp of the
2576 * newly created channel if not NULL.
2578 * Called with UST app session lock and RCU read-side lock held.
2580 * Return 0 on success or else a negative value.
2582 static int create_ust_app_channel(struct ust_app_session
*ua_sess
,
2583 struct ltt_ust_channel
*uchan
, struct ust_app
*app
,
2584 enum lttng_ust_chan_type type
, struct ltt_ust_session
*usess
,
2585 struct ust_app_channel
**ua_chanp
)
2588 struct lttng_ht_iter iter
;
2589 struct lttng_ht_node_str
*ua_chan_node
;
2590 struct ust_app_channel
*ua_chan
;
2592 /* Lookup channel in the ust app session */
2593 lttng_ht_lookup(ua_sess
->channels
, (void *)uchan
->name
, &iter
);
2594 ua_chan_node
= lttng_ht_iter_get_node_str(&iter
);
2595 if (ua_chan_node
!= NULL
) {
2596 ua_chan
= caa_container_of(ua_chan_node
, struct ust_app_channel
, node
);
2600 ua_chan
= alloc_ust_app_channel(uchan
->name
, ua_sess
, &uchan
->attr
);
2601 if (ua_chan
== NULL
) {
2602 /* Only malloc can fail here */
2606 shadow_copy_channel(ua_chan
, uchan
);
2608 /* Set channel type. */
2609 ua_chan
->attr
.type
= type
;
2611 ret
= do_create_channel(app
, usess
, ua_sess
, ua_chan
);
2616 DBG2("UST app create channel %s for PID %d completed", ua_chan
->name
,
2619 /* Only add the channel if successful on the tracer side. */
2620 lttng_ht_add_unique_str(ua_sess
->channels
, &ua_chan
->node
);
2624 *ua_chanp
= ua_chan
;
2627 /* Everything went well. */
2631 delete_ust_app_channel(ua_chan
->is_sent
? app
->sock
: -1, ua_chan
, app
);
2637 * Create UST app event and create it on the tracer side.
2639 * Called with ust app session mutex held.
2642 int create_ust_app_event(struct ust_app_session
*ua_sess
,
2643 struct ust_app_channel
*ua_chan
, struct ltt_ust_event
*uevent
,
2644 struct ust_app
*app
)
2647 struct ust_app_event
*ua_event
;
2649 /* Get event node */
2650 ua_event
= find_ust_app_event(ua_chan
->events
, uevent
->attr
.name
,
2651 uevent
->filter
, uevent
->attr
.loglevel
, uevent
->exclusion
);
2652 if (ua_event
!= NULL
) {
2657 /* Does not exist so create one */
2658 ua_event
= alloc_ust_app_event(uevent
->attr
.name
, &uevent
->attr
);
2659 if (ua_event
== NULL
) {
2660 /* Only malloc can failed so something is really wrong */
2664 shadow_copy_event(ua_event
, uevent
);
2666 /* Create it on the tracer side */
2667 ret
= create_ust_event(app
, ua_sess
, ua_chan
, ua_event
);
2669 /* Not found previously means that it does not exist on the tracer */
2670 assert(ret
!= -LTTNG_UST_ERR_EXIST
);
2674 add_unique_ust_app_event(ua_chan
, ua_event
);
2676 DBG2("UST app create event %s for PID %d completed", ua_event
->name
,
2683 /* Valid. Calling here is already in a read side lock */
2684 delete_ust_app_event(-1, ua_event
);
2689 * Create UST metadata and open it on the tracer side.
2691 * Called with UST app session lock held and RCU read side lock.
2693 static int create_ust_app_metadata(struct ust_app_session
*ua_sess
,
2694 struct ust_app
*app
, struct consumer_output
*consumer
,
2695 struct ustctl_consumer_channel_attr
*attr
)
2698 struct ust_app_channel
*metadata
;
2699 struct consumer_socket
*socket
;
2700 struct ust_registry_session
*registry
;
2706 registry
= get_session_registry(ua_sess
);
2709 /* Metadata already exists for this registry or it was closed previously */
2710 if (registry
->metadata_key
|| registry
->metadata_closed
) {
2715 /* Allocate UST metadata */
2716 metadata
= alloc_ust_app_channel(DEFAULT_METADATA_NAME
, ua_sess
, NULL
);
2718 /* malloc() failed */
2724 /* Set default attributes for metadata. */
2725 metadata
->attr
.overwrite
= DEFAULT_CHANNEL_OVERWRITE
;
2726 metadata
->attr
.subbuf_size
= default_get_metadata_subbuf_size();
2727 metadata
->attr
.num_subbuf
= DEFAULT_METADATA_SUBBUF_NUM
;
2728 metadata
->attr
.switch_timer_interval
= DEFAULT_METADATA_SWITCH_TIMER
;
2729 metadata
->attr
.read_timer_interval
= DEFAULT_METADATA_READ_TIMER
;
2730 metadata
->attr
.output
= LTTNG_UST_MMAP
;
2731 metadata
->attr
.type
= LTTNG_UST_CHAN_METADATA
;
2733 memcpy(&metadata
->attr
, attr
, sizeof(metadata
->attr
));
2734 metadata
->attr
.output
= LTTNG_UST_MMAP
;
2735 metadata
->attr
.type
= LTTNG_UST_CHAN_METADATA
;
2738 /* Need one fd for the channel. */
2739 ret
= lttng_fd_get(LTTNG_FD_APPS
, 1);
2741 ERR("Exhausted number of available FD upon create metadata");
2745 /* Get the right consumer socket for the application. */
2746 socket
= consumer_find_socket_by_bitness(app
->bits_per_long
, consumer
);
2749 goto error_consumer
;
2753 * Keep metadata key so we can identify it on the consumer side. Assign it
2754 * to the registry *before* we ask the consumer so we avoid the race of the
2755 * consumer requesting the metadata and the ask_channel call on our side
2756 * did not returned yet.
2758 registry
->metadata_key
= metadata
->key
;
2761 * Ask the metadata channel creation to the consumer. The metadata object
2762 * will be created by the consumer and kept their. However, the stream is
2763 * never added or monitored until we do a first push metadata to the
2766 ret
= ust_consumer_ask_channel(ua_sess
, metadata
, consumer
, socket
,
2769 /* Nullify the metadata key so we don't try to close it later on. */
2770 registry
->metadata_key
= 0;
2771 goto error_consumer
;
2775 * The setup command will make the metadata stream be sent to the relayd,
2776 * if applicable, and the thread managing the metadatas. This is important
2777 * because after this point, if an error occurs, the only way the stream
2778 * can be deleted is to be monitored in the consumer.
2780 ret
= consumer_setup_metadata(socket
, metadata
->key
);
2782 /* Nullify the metadata key so we don't try to close it later on. */
2783 registry
->metadata_key
= 0;
2784 goto error_consumer
;
2787 DBG2("UST metadata with key %" PRIu64
" created for app pid %d",
2788 metadata
->key
, app
->pid
);
2791 lttng_fd_put(LTTNG_FD_APPS
, 1);
2792 delete_ust_app_channel(-1, metadata
, app
);
2798 * Return pointer to traceable apps list.
2800 struct lttng_ht
*ust_app_get_ht(void)
2806 * Return ust app pointer or NULL if not found. RCU read side lock MUST be
2807 * acquired before calling this function.
2809 struct ust_app
*ust_app_find_by_pid(pid_t pid
)
2811 struct ust_app
*app
= NULL
;
2812 struct lttng_ht_node_ulong
*node
;
2813 struct lttng_ht_iter iter
;
2815 lttng_ht_lookup(ust_app_ht
, (void *)((unsigned long) pid
), &iter
);
2816 node
= lttng_ht_iter_get_node_ulong(&iter
);
2818 DBG2("UST app no found with pid %d", pid
);
2822 DBG2("Found UST app by pid %d", pid
);
2824 app
= caa_container_of(node
, struct ust_app
, pid_n
);
2831 * Allocate and init an UST app object using the registration information and
2832 * the command socket. This is called when the command socket connects to the
2835 * The object is returned on success or else NULL.
2837 struct ust_app
*ust_app_create(struct ust_register_msg
*msg
, int sock
)
2839 struct ust_app
*lta
= NULL
;
2844 DBG3("UST app creating application for socket %d", sock
);
2846 if ((msg
->bits_per_long
== 64 &&
2847 (uatomic_read(&ust_consumerd64_fd
) == -EINVAL
))
2848 || (msg
->bits_per_long
== 32 &&
2849 (uatomic_read(&ust_consumerd32_fd
) == -EINVAL
))) {
2850 ERR("Registration failed: application \"%s\" (pid: %d) has "
2851 "%d-bit long, but no consumerd for this size is available.\n",
2852 msg
->name
, msg
->pid
, msg
->bits_per_long
);
2856 lta
= zmalloc(sizeof(struct ust_app
));
2862 lta
->ppid
= msg
->ppid
;
2863 lta
->uid
= msg
->uid
;
2864 lta
->gid
= msg
->gid
;
2866 lta
->bits_per_long
= msg
->bits_per_long
;
2867 lta
->uint8_t_alignment
= msg
->uint8_t_alignment
;
2868 lta
->uint16_t_alignment
= msg
->uint16_t_alignment
;
2869 lta
->uint32_t_alignment
= msg
->uint32_t_alignment
;
2870 lta
->uint64_t_alignment
= msg
->uint64_t_alignment
;
2871 lta
->long_alignment
= msg
->long_alignment
;
2872 lta
->byte_order
= msg
->byte_order
;
2874 lta
->v_major
= msg
->major
;
2875 lta
->v_minor
= msg
->minor
;
2876 lta
->sessions
= lttng_ht_new(0, LTTNG_HT_TYPE_U64
);
2877 lta
->ust_objd
= lttng_ht_new(0, LTTNG_HT_TYPE_ULONG
);
2878 lta
->notify_sock
= -1;
2880 /* Copy name and make sure it's NULL terminated. */
2881 strncpy(lta
->name
, msg
->name
, sizeof(lta
->name
));
2882 lta
->name
[UST_APP_PROCNAME_LEN
] = '\0';
2885 * Before this can be called, when receiving the registration information,
2886 * the application compatibility is checked. So, at this point, the
2887 * application can work with this session daemon.
2889 lta
->compatible
= 1;
2891 lta
->pid
= msg
->pid
;
2892 lttng_ht_node_init_ulong(<a
->pid_n
, (unsigned long) lta
->pid
);
2894 lttng_ht_node_init_ulong(<a
->sock_n
, (unsigned long) lta
->sock
);
2896 CDS_INIT_LIST_HEAD(<a
->teardown_head
);
2903 * For a given application object, add it to every hash table.
2905 void ust_app_add(struct ust_app
*app
)
2908 assert(app
->notify_sock
>= 0);
2913 * On a re-registration, we want to kick out the previous registration of
2916 lttng_ht_add_replace_ulong(ust_app_ht
, &app
->pid_n
);
2919 * The socket _should_ be unique until _we_ call close. So, a add_unique
2920 * for the ust_app_ht_by_sock is used which asserts fail if the entry was
2921 * already in the table.
2923 lttng_ht_add_unique_ulong(ust_app_ht_by_sock
, &app
->sock_n
);
2925 /* Add application to the notify socket hash table. */
2926 lttng_ht_node_init_ulong(&app
->notify_sock_n
, app
->notify_sock
);
2927 lttng_ht_add_unique_ulong(ust_app_ht_by_notify_sock
, &app
->notify_sock_n
);
2929 DBG("App registered with pid:%d ppid:%d uid:%d gid:%d sock:%d name:%s "
2930 "notify_sock:%d (version %d.%d)", app
->pid
, app
->ppid
, app
->uid
,
2931 app
->gid
, app
->sock
, app
->name
, app
->notify_sock
, app
->v_major
,
2938 * Set the application version into the object.
2940 * Return 0 on success else a negative value either an errno code or a
2941 * LTTng-UST error code.
2943 int ust_app_version(struct ust_app
*app
)
2949 ret
= ustctl_tracer_version(app
->sock
, &app
->version
);
2951 if (ret
!= -LTTNG_UST_ERR_EXITING
&& ret
!= -EPIPE
) {
2952 ERR("UST app %d verson failed with ret %d", app
->sock
, ret
);
2954 DBG3("UST app %d verion failed. Application is dead", app
->sock
);
2962 * Unregister app by removing it from the global traceable app list and freeing
2965 * The socket is already closed at this point so no close to sock.
2967 void ust_app_unregister(int sock
)
2969 struct ust_app
*lta
;
2970 struct lttng_ht_node_ulong
*node
;
2971 struct lttng_ht_iter iter
;
2972 struct ust_app_session
*ua_sess
;
2977 /* Get the node reference for a call_rcu */
2978 lttng_ht_lookup(ust_app_ht_by_sock
, (void *)((unsigned long) sock
), &iter
);
2979 node
= lttng_ht_iter_get_node_ulong(&iter
);
2982 lta
= caa_container_of(node
, struct ust_app
, sock_n
);
2983 DBG("PID %d unregistering with sock %d", lta
->pid
, sock
);
2985 /* Remove application from PID hash table */
2986 ret
= lttng_ht_del(ust_app_ht_by_sock
, &iter
);
2990 * Remove application from notify hash table. The thread handling the
2991 * notify socket could have deleted the node so ignore on error because
2992 * either way it's valid. The close of that socket is handled by the other
2995 iter
.iter
.node
= <a
->notify_sock_n
.node
;
2996 (void) lttng_ht_del(ust_app_ht_by_notify_sock
, &iter
);
2999 * Ignore return value since the node might have been removed before by an
3000 * add replace during app registration because the PID can be reassigned by
3003 iter
.iter
.node
= <a
->pid_n
.node
;
3004 ret
= lttng_ht_del(ust_app_ht
, &iter
);
3006 DBG3("Unregister app by PID %d failed. This can happen on pid reuse",
3010 /* Remove sessions so they are not visible during deletion.*/
3011 cds_lfht_for_each_entry(lta
->sessions
->ht
, &iter
.iter
, ua_sess
,
3013 struct ust_registry_session
*registry
;
3015 ret
= lttng_ht_del(lta
->sessions
, &iter
);
3017 /* The session was already removed so scheduled for teardown. */
3022 * Add session to list for teardown. This is safe since at this point we
3023 * are the only one using this list.
3025 pthread_mutex_lock(&ua_sess
->lock
);
3028 * Normally, this is done in the delete session process which is
3029 * executed in the call rcu below. However, upon registration we can't
3030 * afford to wait for the grace period before pushing data or else the
3031 * data pending feature can race between the unregistration and stop
3032 * command where the data pending command is sent *before* the grace
3035 * The close metadata below nullifies the metadata pointer in the
3036 * session so the delete session will NOT push/close a second time.
3038 registry
= get_session_registry(ua_sess
);
3039 if (registry
&& !registry
->metadata_closed
) {
3040 /* Push metadata for application before freeing the application. */
3041 (void) push_metadata(registry
, ua_sess
->consumer
);
3044 * Don't ask to close metadata for global per UID buffers. Close
3045 * metadata only on destroy trace session in this case. Also, the
3046 * previous push metadata could have flag the metadata registry to
3047 * close so don't send a close command if closed.
3049 if (ua_sess
->buffer_type
!= LTTNG_BUFFER_PER_UID
&&
3050 !registry
->metadata_closed
) {
3051 /* And ask to close it for this session registry. */
3052 (void) close_metadata(registry
, ua_sess
->consumer
);
3056 cds_list_add(&ua_sess
->teardown_node
, <a
->teardown_head
);
3057 pthread_mutex_unlock(&ua_sess
->lock
);
3061 call_rcu(<a
->pid_n
.head
, delete_ust_app_rcu
);
3068 * Return traceable_app_count
3070 unsigned long ust_app_list_count(void)
3072 unsigned long count
;
3075 count
= lttng_ht_get_count(ust_app_ht
);
3082 * Fill events array with all events name of all registered apps.
3084 int ust_app_list_events(struct lttng_event
**events
)
3087 size_t nbmem
, count
= 0;
3088 struct lttng_ht_iter iter
;
3089 struct ust_app
*app
;
3090 struct lttng_event
*tmp_event
;
3092 nbmem
= UST_APP_EVENT_LIST_SIZE
;
3093 tmp_event
= zmalloc(nbmem
* sizeof(struct lttng_event
));
3094 if (tmp_event
== NULL
) {
3095 PERROR("zmalloc ust app events");
3102 cds_lfht_for_each_entry(ust_app_ht
->ht
, &iter
.iter
, app
, pid_n
.node
) {
3103 struct lttng_ust_tracepoint_iter uiter
;
3105 health_code_update();
3107 if (!app
->compatible
) {
3109 * TODO: In time, we should notice the caller of this error by
3110 * telling him that this is a version error.
3114 handle
= ustctl_tracepoint_list(app
->sock
);
3116 if (handle
!= -EPIPE
&& handle
!= -LTTNG_UST_ERR_EXITING
) {
3117 ERR("UST app list events getting handle failed for app pid %d",
3123 while ((ret
= ustctl_tracepoint_list_get(app
->sock
, handle
,
3124 &uiter
)) != -LTTNG_UST_ERR_NOENT
) {
3125 /* Handle ustctl error. */
3128 if (ret
!= -LTTNG_UST_ERR_EXITING
|| ret
!= -EPIPE
) {
3129 ERR("UST app tp list get failed for app %d with ret %d",
3132 DBG3("UST app tp list get failed. Application is dead");
3134 * This is normal behavior, an application can die during the
3135 * creation process. Don't report an error so the execution can
3136 * continue normally. Continue normal execution.
3143 health_code_update();
3144 if (count
>= nbmem
) {
3145 /* In case the realloc fails, we free the memory */
3148 DBG2("Reallocating event list from %zu to %zu entries", nbmem
,
3151 ptr
= realloc(tmp_event
, nbmem
* sizeof(struct lttng_event
));
3153 PERROR("realloc ust app events");
3160 memcpy(tmp_event
[count
].name
, uiter
.name
, LTTNG_UST_SYM_NAME_LEN
);
3161 tmp_event
[count
].loglevel
= uiter
.loglevel
;
3162 tmp_event
[count
].type
= (enum lttng_event_type
) LTTNG_UST_TRACEPOINT
;
3163 tmp_event
[count
].pid
= app
->pid
;
3164 tmp_event
[count
].enabled
= -1;
3170 *events
= tmp_event
;
3172 DBG2("UST app list events done (%zu events)", count
);
3177 health_code_update();
3182 * Fill events array with all events name of all registered apps.
3184 int ust_app_list_event_fields(struct lttng_event_field
**fields
)
3187 size_t nbmem
, count
= 0;
3188 struct lttng_ht_iter iter
;
3189 struct ust_app
*app
;
3190 struct lttng_event_field
*tmp_event
;
3192 nbmem
= UST_APP_EVENT_LIST_SIZE
;
3193 tmp_event
= zmalloc(nbmem
* sizeof(struct lttng_event_field
));
3194 if (tmp_event
== NULL
) {
3195 PERROR("zmalloc ust app event fields");
3202 cds_lfht_for_each_entry(ust_app_ht
->ht
, &iter
.iter
, app
, pid_n
.node
) {
3203 struct lttng_ust_field_iter uiter
;
3205 health_code_update();
3207 if (!app
->compatible
) {
3209 * TODO: In time, we should notice the caller of this error by
3210 * telling him that this is a version error.
3214 handle
= ustctl_tracepoint_field_list(app
->sock
);
3216 if (handle
!= -EPIPE
&& handle
!= -LTTNG_UST_ERR_EXITING
) {
3217 ERR("UST app list field getting handle failed for app pid %d",
3223 while ((ret
= ustctl_tracepoint_field_list_get(app
->sock
, handle
,
3224 &uiter
)) != -LTTNG_UST_ERR_NOENT
) {
3225 /* Handle ustctl error. */
3228 if (ret
!= -LTTNG_UST_ERR_EXITING
|| ret
!= -EPIPE
) {
3229 ERR("UST app tp list field failed for app %d with ret %d",
3232 DBG3("UST app tp list field failed. Application is dead");
3234 * This is normal behavior, an application can die during the
3235 * creation process. Don't report an error so the execution can
3236 * continue normally.
3243 health_code_update();
3244 if (count
>= nbmem
) {