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.
25 #include <sys/types.h>
27 #include <urcu/compiler.h>
28 #include <lttng/ust-error.h>
30 #include <common/common.h>
31 #include <common/sessiond-comm/sessiond-comm.h>
36 #include "ust-consumer.h"
40 * Match function for the hash table lookup.
42 * It matches an ust app event based on three attributes which are the event
43 * name, the filter bytecode and the loglevel.
45 static int ht_match_ust_app_event(struct cds_lfht_node
*node
, const void *_key
)
47 struct ust_app_event
*event
;
48 const struct ust_app_ht_key
*key
;
53 event
= caa_container_of(node
, struct ust_app_event
, node
.node
);
56 /* Match the 3 elements of the key: name, filter and loglevel. */
59 if (strncmp(event
->attr
.name
, key
->name
, sizeof(event
->attr
.name
)) != 0) {
64 if (event
->attr
.loglevel
!= key
->loglevel
) {
65 if (event
->attr
.loglevel_type
== LTTNG_UST_LOGLEVEL_ALL
66 && key
->loglevel
== 0 && event
->attr
.loglevel
== -1) {
68 * Match is accepted. This is because on event creation, the
69 * loglevel is set to -1 if the event loglevel type is ALL so 0 and
70 * -1 are accepted for this loglevel type since 0 is the one set by
71 * the API when receiving an enable event.
78 /* One of the filters is NULL, fail. */
79 if ((key
->filter
&& !event
->filter
) || (!key
->filter
&& event
->filter
)) {
83 if (key
->filter
&& event
->filter
) {
84 /* Both filters exists, check length followed by the bytecode. */
85 if (event
->filter
->len
!= key
->filter
->len
||
86 memcmp(event
->filter
->data
, key
->filter
->data
,
87 event
->filter
->len
) != 0) {
100 * Unique add of an ust app event in the given ht. This uses the custom
101 * ht_match_ust_app_event match function and the event name as hash.
103 static void add_unique_ust_app_event(struct lttng_ht
*ht
,
104 struct ust_app_event
*event
)
106 struct cds_lfht_node
*node_ptr
;
107 struct ust_app_ht_key key
;
113 key
.name
= event
->attr
.name
;
114 key
.filter
= event
->filter
;
115 key
.loglevel
= event
->attr
.loglevel
;
117 node_ptr
= cds_lfht_add_unique(ht
->ht
,
118 ht
->hash_fct(event
->node
.key
, lttng_ht_seed
),
119 ht_match_ust_app_event
, &key
, &event
->node
.node
);
120 assert(node_ptr
== &event
->node
.node
);
124 * Delete ust context safely. RCU read lock must be held before calling
128 void delete_ust_app_ctx(int sock
, struct ust_app_ctx
*ua_ctx
)
131 ustctl_release_object(sock
, ua_ctx
->obj
);
138 * Delete ust app event safely. RCU read lock must be held before calling
142 void delete_ust_app_event(int sock
, struct ust_app_event
*ua_event
)
144 free(ua_event
->filter
);
146 if (ua_event
->obj
!= NULL
) {
147 ustctl_release_object(sock
, ua_event
->obj
);
154 * Delete ust app stream safely. RCU read lock must be held before calling
158 void delete_ust_app_stream(int sock
, struct ust_app_stream
*stream
)
161 ustctl_release_object(sock
, stream
->obj
);
162 lttng_fd_put(LTTNG_FD_APPS
, 2);
169 * Delete ust app channel safely. RCU read lock must be held before calling
173 void delete_ust_app_channel(int sock
, struct ust_app_channel
*ua_chan
)
176 struct lttng_ht_iter iter
;
177 struct ust_app_event
*ua_event
;
178 struct ust_app_ctx
*ua_ctx
;
179 struct ust_app_stream
*stream
, *stmp
;
182 cds_list_for_each_entry_safe(stream
, stmp
, &ua_chan
->streams
.head
, list
) {
183 cds_list_del(&stream
->list
);
184 delete_ust_app_stream(sock
, stream
);
188 cds_lfht_for_each_entry(ua_chan
->ctx
->ht
, &iter
.iter
, ua_ctx
, node
.node
) {
189 ret
= lttng_ht_del(ua_chan
->ctx
, &iter
);
191 delete_ust_app_ctx(sock
, ua_ctx
);
193 lttng_ht_destroy(ua_chan
->ctx
);
196 cds_lfht_for_each_entry(ua_chan
->events
->ht
, &iter
.iter
, ua_event
,
198 ret
= lttng_ht_del(ua_chan
->events
, &iter
);
200 delete_ust_app_event(sock
, ua_event
);
202 lttng_ht_destroy(ua_chan
->events
);
204 if (ua_chan
->obj
!= NULL
) {
205 ustctl_release_object(sock
, ua_chan
->obj
);
206 lttng_fd_put(LTTNG_FD_APPS
, 2);
213 * Delete ust app session safely. RCU read lock must be held before calling
217 void delete_ust_app_session(int sock
, struct ust_app_session
*ua_sess
)
220 struct lttng_ht_iter iter
;
221 struct ust_app_channel
*ua_chan
;
223 if (ua_sess
->metadata
) {
224 if (ua_sess
->metadata
->stream_obj
) {
225 ustctl_release_object(sock
, ua_sess
->metadata
->stream_obj
);
226 lttng_fd_put(LTTNG_FD_APPS
, 2);
227 free(ua_sess
->metadata
->stream_obj
);
229 if (ua_sess
->metadata
->obj
) {
230 ustctl_release_object(sock
, ua_sess
->metadata
->obj
);
231 lttng_fd_put(LTTNG_FD_APPS
, 2);
232 free(ua_sess
->metadata
->obj
);
234 trace_ust_destroy_metadata(ua_sess
->metadata
);
237 cds_lfht_for_each_entry(ua_sess
->channels
->ht
, &iter
.iter
, ua_chan
,
239 ret
= lttng_ht_del(ua_sess
->channels
, &iter
);
241 delete_ust_app_channel(sock
, ua_chan
);
243 lttng_ht_destroy(ua_sess
->channels
);
245 if (ua_sess
->handle
!= -1) {
246 ustctl_release_handle(sock
, ua_sess
->handle
);
252 * Delete a traceable application structure from the global list. Never call
253 * this function outside of a call_rcu call.
256 void delete_ust_app(struct ust_app
*app
)
259 struct ust_app_session
*ua_sess
, *tmp_ua_sess
;
263 /* Delete ust app sessions info */
267 lttng_ht_destroy(app
->sessions
);
270 cds_list_for_each_entry_safe(ua_sess
, tmp_ua_sess
, &app
->teardown_head
,
272 /* Free every object in the session and the session. */
273 delete_ust_app_session(sock
, ua_sess
);
277 * Wait until we have deleted the application from the sock hash table
278 * before closing this socket, otherwise an application could re-use the
279 * socket ID and race with the teardown, using the same hash table entry.
281 * It's OK to leave the close in call_rcu. We want it to stay unique for
282 * all RCU readers that could run concurrently with unregister app,
283 * therefore we _need_ to only close that socket after a grace period. So
284 * it should stay in this RCU callback.
286 * This close() is a very important step of the synchronization model so
287 * every modification to this function must be carefully reviewed.
293 lttng_fd_put(LTTNG_FD_APPS
, 1);
295 DBG2("UST app pid %d deleted", app
->pid
);
302 * URCU intermediate call to delete an UST app.
305 void delete_ust_app_rcu(struct rcu_head
*head
)
307 struct lttng_ht_node_ulong
*node
=
308 caa_container_of(head
, struct lttng_ht_node_ulong
, head
);
309 struct ust_app
*app
=
310 caa_container_of(node
, struct ust_app
, pid_n
);
312 DBG3("Call RCU deleting app PID %d", app
->pid
);
317 * Alloc new UST app session.
320 struct ust_app_session
*alloc_ust_app_session(void)
322 struct ust_app_session
*ua_sess
;
324 /* Init most of the default value by allocating and zeroing */
325 ua_sess
= zmalloc(sizeof(struct ust_app_session
));
326 if (ua_sess
== NULL
) {
331 ua_sess
->handle
= -1;
332 ua_sess
->channels
= lttng_ht_new(0, LTTNG_HT_TYPE_STRING
);
341 * Alloc new UST app channel.
344 struct ust_app_channel
*alloc_ust_app_channel(char *name
,
345 struct lttng_ust_channel
*attr
)
347 struct ust_app_channel
*ua_chan
;
349 /* Init most of the default value by allocating and zeroing */
350 ua_chan
= zmalloc(sizeof(struct ust_app_channel
));
351 if (ua_chan
== NULL
) {
356 /* Setup channel name */
357 strncpy(ua_chan
->name
, name
, sizeof(ua_chan
->name
));
358 ua_chan
->name
[sizeof(ua_chan
->name
) - 1] = '\0';
360 ua_chan
->enabled
= 1;
361 ua_chan
->handle
= -1;
362 ua_chan
->ctx
= lttng_ht_new(0, LTTNG_HT_TYPE_ULONG
);
363 ua_chan
->events
= lttng_ht_new(0, LTTNG_HT_TYPE_STRING
);
364 lttng_ht_node_init_str(&ua_chan
->node
, ua_chan
->name
);
366 CDS_INIT_LIST_HEAD(&ua_chan
->streams
.head
);
368 /* Copy attributes */
370 memcpy(&ua_chan
->attr
, attr
, sizeof(ua_chan
->attr
));
373 DBG3("UST app channel %s allocated", ua_chan
->name
);
382 * Allocate and initialize a UST app stream.
384 * Return newly allocated stream pointer or NULL on error.
386 static struct ust_app_stream
*alloc_ust_app_stream(void)
388 struct ust_app_stream
*stream
= NULL
;
390 stream
= zmalloc(sizeof(*stream
));
391 if (stream
== NULL
) {
392 PERROR("zmalloc ust app stream");
396 /* Zero could be a valid value for a handle so flag it to -1. */
404 * Alloc new UST app event.
407 struct ust_app_event
*alloc_ust_app_event(char *name
,
408 struct lttng_ust_event
*attr
)
410 struct ust_app_event
*ua_event
;
412 /* Init most of the default value by allocating and zeroing */
413 ua_event
= zmalloc(sizeof(struct ust_app_event
));
414 if (ua_event
== NULL
) {
419 ua_event
->enabled
= 1;
420 strncpy(ua_event
->name
, name
, sizeof(ua_event
->name
));
421 ua_event
->name
[sizeof(ua_event
->name
) - 1] = '\0';
422 lttng_ht_node_init_str(&ua_event
->node
, ua_event
->name
);
424 /* Copy attributes */
426 memcpy(&ua_event
->attr
, attr
, sizeof(ua_event
->attr
));
429 DBG3("UST app event %s allocated", ua_event
->name
);
438 * Alloc new UST app context.
441 struct ust_app_ctx
*alloc_ust_app_ctx(struct lttng_ust_context
*uctx
)
443 struct ust_app_ctx
*ua_ctx
;
445 ua_ctx
= zmalloc(sizeof(struct ust_app_ctx
));
446 if (ua_ctx
== NULL
) {
451 memcpy(&ua_ctx
->ctx
, uctx
, sizeof(ua_ctx
->ctx
));
454 DBG3("UST app context %d allocated", ua_ctx
->ctx
.ctx
);
461 * Allocate a filter and copy the given original filter.
463 * Return allocated filter or NULL on error.
465 static struct lttng_ust_filter_bytecode
*alloc_copy_ust_app_filter(
466 struct lttng_ust_filter_bytecode
*orig_f
)
468 struct lttng_ust_filter_bytecode
*filter
= NULL
;
470 /* Copy filter bytecode */
471 filter
= zmalloc(sizeof(*filter
) + orig_f
->len
);
473 PERROR("zmalloc alloc ust app filter");
477 memcpy(filter
, orig_f
, sizeof(*filter
) + orig_f
->len
);
484 * Find an ust_app using the sock and return it. RCU read side lock must be
485 * held before calling this helper function.
488 struct ust_app
*find_app_by_sock(int sock
)
490 struct lttng_ht_node_ulong
*node
;
491 struct lttng_ht_iter iter
;
493 lttng_ht_lookup(ust_app_ht_by_sock
, (void *)((unsigned long) sock
), &iter
);
494 node
= lttng_ht_iter_get_node_ulong(&iter
);
496 DBG2("UST app find by sock %d not found", sock
);
500 return caa_container_of(node
, struct ust_app
, sock_n
);
507 * Lookup for an ust app event based on event name, filter bytecode and the
510 * Return an ust_app_event object or NULL on error.
512 static struct ust_app_event
*find_ust_app_event(struct lttng_ht
*ht
,
513 char *name
, struct lttng_ust_filter_bytecode
*filter
, int loglevel
)
515 struct lttng_ht_iter iter
;
516 struct lttng_ht_node_str
*node
;
517 struct ust_app_event
*event
= NULL
;
518 struct ust_app_ht_key key
;
523 /* Setup key for event lookup. */
526 key
.loglevel
= loglevel
;
528 /* Lookup using the event name as hash and a custom match fct. */
529 cds_lfht_lookup(ht
->ht
, ht
->hash_fct((void *) name
, lttng_ht_seed
),
530 ht_match_ust_app_event
, &key
, &iter
.iter
);
531 node
= lttng_ht_iter_get_node_str(&iter
);
536 event
= caa_container_of(node
, struct ust_app_event
, node
);
543 * Create the channel context on the tracer.
546 int create_ust_channel_context(struct ust_app_channel
*ua_chan
,
547 struct ust_app_ctx
*ua_ctx
, struct ust_app
*app
)
551 health_code_update(&health_thread_cmd
);
553 ret
= ustctl_add_context(app
->sock
, &ua_ctx
->ctx
,
554 ua_chan
->obj
, &ua_ctx
->obj
);
559 ua_ctx
->handle
= ua_ctx
->obj
->handle
;
561 DBG2("UST app context created successfully for channel %s", ua_chan
->name
);
564 health_code_update(&health_thread_cmd
);
569 * Set the filter on the tracer.
572 int set_ust_event_filter(struct ust_app_event
*ua_event
,
577 health_code_update(&health_thread_cmd
);
579 if (!ua_event
->filter
) {
584 ret
= ustctl_set_filter(app
->sock
, ua_event
->filter
,
590 DBG2("UST filter set successfully for event %s", ua_event
->name
);
593 health_code_update(&health_thread_cmd
);
598 * Disable the specified event on to UST tracer for the UST session.
600 static int disable_ust_event(struct ust_app
*app
,
601 struct ust_app_session
*ua_sess
, struct ust_app_event
*ua_event
)
605 health_code_update(&health_thread_cmd
);
607 ret
= ustctl_disable(app
->sock
, ua_event
->obj
);
609 ERR("UST app event %s disable failed for app (pid: %d) "
610 "and session handle %d with ret %d",
611 ua_event
->attr
.name
, app
->pid
, ua_sess
->handle
, ret
);
615 DBG2("UST app event %s disabled successfully for app (pid: %d)",
616 ua_event
->attr
.name
, app
->pid
);
619 health_code_update(&health_thread_cmd
);
624 * Disable the specified channel on to UST tracer for the UST session.
626 static int disable_ust_channel(struct ust_app
*app
,
627 struct ust_app_session
*ua_sess
, struct ust_app_channel
*ua_chan
)
631 health_code_update(&health_thread_cmd
);
633 ret
= ustctl_disable(app
->sock
, ua_chan
->obj
);
635 ERR("UST app channel %s disable failed for app (pid: %d) "
636 "and session handle %d with ret %d",
637 ua_chan
->name
, app
->pid
, ua_sess
->handle
, ret
);
641 DBG2("UST app channel %s disabled successfully for app (pid: %d)",
642 ua_chan
->name
, app
->pid
);
645 health_code_update(&health_thread_cmd
);
650 * Enable the specified channel on to UST tracer for the UST session.
652 static int enable_ust_channel(struct ust_app
*app
,
653 struct ust_app_session
*ua_sess
, struct ust_app_channel
*ua_chan
)
657 health_code_update(&health_thread_cmd
);
659 ret
= ustctl_enable(app
->sock
, ua_chan
->obj
);
661 ERR("UST app channel %s enable failed for app (pid: %d) "
662 "and session handle %d with ret %d",
663 ua_chan
->name
, app
->pid
, ua_sess
->handle
, ret
);
667 ua_chan
->enabled
= 1;
669 DBG2("UST app channel %s enabled successfully for app (pid: %d)",
670 ua_chan
->name
, app
->pid
);
673 health_code_update(&health_thread_cmd
);
678 * Enable the specified event on to UST tracer for the UST session.
680 static int enable_ust_event(struct ust_app
*app
,
681 struct ust_app_session
*ua_sess
, struct ust_app_event
*ua_event
)
685 health_code_update(&health_thread_cmd
);
687 ret
= ustctl_enable(app
->sock
, ua_event
->obj
);
689 ERR("UST app event %s enable failed for app (pid: %d) "
690 "and session handle %d with ret %d",
691 ua_event
->attr
.name
, app
->pid
, ua_sess
->handle
, ret
);
695 DBG2("UST app event %s enabled successfully for app (pid: %d)",
696 ua_event
->attr
.name
, app
->pid
);
699 health_code_update(&health_thread_cmd
);
704 * Open metadata onto the UST tracer for a UST session.
706 static int open_ust_metadata(struct ust_app
*app
,
707 struct ust_app_session
*ua_sess
)
710 struct lttng_ust_channel_attr uattr
;
712 health_code_update(&health_thread_cmd
);
714 uattr
.overwrite
= ua_sess
->metadata
->attr
.overwrite
;
715 uattr
.subbuf_size
= ua_sess
->metadata
->attr
.subbuf_size
;
716 uattr
.num_subbuf
= ua_sess
->metadata
->attr
.num_subbuf
;
717 uattr
.switch_timer_interval
=
718 ua_sess
->metadata
->attr
.switch_timer_interval
;
719 uattr
.read_timer_interval
=
720 ua_sess
->metadata
->attr
.read_timer_interval
;
721 uattr
.output
= ua_sess
->metadata
->attr
.output
;
723 /* We are going to receive 2 fds, we need to reserve them. */
724 ret
= lttng_fd_get(LTTNG_FD_APPS
, 2);
726 ERR("Exhausted number of available FD upon metadata open");
729 /* UST tracer metadata creation */
730 ret
= ustctl_open_metadata(app
->sock
, ua_sess
->handle
, &uattr
,
731 &ua_sess
->metadata
->obj
);
733 ERR("UST app open metadata failed for app pid:%d with ret %d",
738 ua_sess
->metadata
->handle
= ua_sess
->metadata
->obj
->handle
;
741 health_code_update(&health_thread_cmd
);
746 * Create metadata stream onto the UST tracer for a given session.
748 static int create_ust_metadata_stream(struct ust_app
*app
,
749 struct ust_app_session
*ua_sess
)
753 health_code_update(&health_thread_cmd
);
755 /* We are going to receive 2 fds, we need to reserve them. */
756 ret
= lttng_fd_get(LTTNG_FD_APPS
, 2);
758 ERR("Exhausted number of available FD upon metadata stream create");
761 ret
= ustctl_create_stream(app
->sock
, ua_sess
->metadata
->obj
,
762 &ua_sess
->metadata
->stream_obj
);
764 lttng_fd_put(LTTNG_FD_APPS
, 2);
765 ERR("UST create metadata stream failed");
770 health_code_update(&health_thread_cmd
);
775 * Create stream onto the UST tracer for a given channel.
777 * Return -ENOENT if no more stream is available for this channel.
778 * On success, return 0.
779 * On error, return a negative value.
781 static int create_ust_stream(struct ust_app
*app
,
782 struct ust_app_channel
*ua_chan
, struct ust_app_stream
*stream
)
788 assert(ua_chan
->obj
);
791 health_code_update(&health_thread_cmd
);
793 /* We are going to receive 2 fds, we need to reserve them. */
794 ret
= lttng_fd_get(LTTNG_FD_APPS
, 2);
796 ERR("Exhausted number of available FD on stream creation");
797 /* Just to make sure we never return -ENOENT. */
803 * Set the stream name before creating it. On error, we don't have to
804 * delete it on the tracer side.
806 ret
= snprintf(stream
->name
, sizeof(stream
->name
), "%s_%u",
807 ua_chan
->name
, ua_chan
->streams
.count
);
809 /* Without the stream name we can't continue using it. */
810 PERROR("snprintf UST create stream");
811 /* Just to make sure we never return -ENOENT. */
816 ret
= ustctl_create_stream(app
->sock
, ua_chan
->obj
, &stream
->obj
);
818 lttng_fd_put(LTTNG_FD_APPS
, 2);
819 /* Indicates that there is no more stream for that channel. */
820 if (ret
!= -LTTNG_UST_ERR_NOENT
) {
821 ERR("UST create metadata stream failed (ret: %d)", ret
);
826 /* Set stream handle with the returned value. */
827 stream
->handle
= stream
->obj
->handle
;
830 health_code_update(&health_thread_cmd
);
835 * Create the specified channel onto the UST tracer for a UST session.
837 static int create_ust_channel(struct ust_app
*app
,
838 struct ust_app_session
*ua_sess
, struct ust_app_channel
*ua_chan
)
842 health_code_update(&health_thread_cmd
);
844 /* TODO: remove cast and use lttng-ust-abi.h */
846 /* We are going to receive 2 fds, we need to reserve them. */
847 ret
= lttng_fd_get(LTTNG_FD_APPS
, 2);
849 ERR("Exhausted number of available FD upon create channel");
853 health_code_update(&health_thread_cmd
);
855 ret
= ustctl_create_channel(app
->sock
, ua_sess
->handle
,
856 (struct lttng_ust_channel_attr
*)&ua_chan
->attr
, &ua_chan
->obj
);
858 ERR("Creating channel %s for app (pid: %d, sock: %d) "
859 "and session handle %d with ret %d",
860 ua_chan
->name
, app
->pid
, app
->sock
,
861 ua_sess
->handle
, ret
);
862 lttng_fd_put(LTTNG_FD_APPS
, 2);
866 ua_chan
->handle
= ua_chan
->obj
->handle
;
868 DBG2("UST app channel %s created successfully for pid:%d and sock:%d",
869 ua_chan
->name
, app
->pid
, app
->sock
);
871 health_code_update(&health_thread_cmd
);
873 /* If channel is not enabled, disable it on the tracer */
874 if (!ua_chan
->enabled
) {
875 ret
= disable_ust_channel(app
, ua_sess
, ua_chan
);
882 health_code_update(&health_thread_cmd
);
887 * Create the specified event onto the UST tracer for a UST session.
890 int create_ust_event(struct ust_app
*app
, struct ust_app_session
*ua_sess
,
891 struct ust_app_channel
*ua_chan
, struct ust_app_event
*ua_event
)
895 health_code_update(&health_thread_cmd
);
897 /* Create UST event on tracer */
898 ret
= ustctl_create_event(app
->sock
, &ua_event
->attr
, ua_chan
->obj
,
901 ERR("Error ustctl create event %s for app pid: %d with ret %d",
902 ua_event
->attr
.name
, app
->pid
, ret
);
906 ua_event
->handle
= ua_event
->obj
->handle
;
908 DBG2("UST app event %s created successfully for pid:%d",
909 ua_event
->attr
.name
, app
->pid
);
911 health_code_update(&health_thread_cmd
);
913 /* Set filter if one is present. */
914 if (ua_event
->filter
) {
915 ret
= set_ust_event_filter(ua_event
, app
);
921 /* If event not enabled, disable it on the tracer */
922 if (ua_event
->enabled
== 0) {
923 ret
= disable_ust_event(app
, ua_sess
, ua_event
);
926 * If we hit an EPERM, something is wrong with our disable call. If
927 * we get an EEXIST, there is a problem on the tracer side since we
931 case -LTTNG_UST_ERR_PERM
:
932 /* Code flow problem */
934 case -LTTNG_UST_ERR_EXIST
:
935 /* It's OK for our use case. */
946 health_code_update(&health_thread_cmd
);
951 * Copy data between an UST app event and a LTT event.
953 static void shadow_copy_event(struct ust_app_event
*ua_event
,
954 struct ltt_ust_event
*uevent
)
956 strncpy(ua_event
->name
, uevent
->attr
.name
, sizeof(ua_event
->name
));
957 ua_event
->name
[sizeof(ua_event
->name
) - 1] = '\0';
959 ua_event
->enabled
= uevent
->enabled
;
961 /* Copy event attributes */
962 memcpy(&ua_event
->attr
, &uevent
->attr
, sizeof(ua_event
->attr
));
964 /* Copy filter bytecode */
965 if (uevent
->filter
) {
966 ua_event
->filter
= alloc_copy_ust_app_filter(uevent
->filter
);
967 /* Filter might be NULL here in case of ENONEM. */
972 * Copy data between an UST app channel and a LTT channel.
974 static void shadow_copy_channel(struct ust_app_channel
*ua_chan
,
975 struct ltt_ust_channel
*uchan
)
977 struct lttng_ht_iter iter
;
978 struct ltt_ust_event
*uevent
;
979 struct ltt_ust_context
*uctx
;
980 struct ust_app_event
*ua_event
;
981 struct ust_app_ctx
*ua_ctx
;
983 DBG2("UST app shadow copy of channel %s started", ua_chan
->name
);
985 strncpy(ua_chan
->name
, uchan
->name
, sizeof(ua_chan
->name
));
986 ua_chan
->name
[sizeof(ua_chan
->name
) - 1] = '\0';
987 /* Copy event attributes */
988 memcpy(&ua_chan
->attr
, &uchan
->attr
, sizeof(ua_chan
->attr
));
990 ua_chan
->enabled
= uchan
->enabled
;
992 cds_lfht_for_each_entry(uchan
->ctx
->ht
, &iter
.iter
, uctx
, node
.node
) {
993 ua_ctx
= alloc_ust_app_ctx(&uctx
->ctx
);
994 if (ua_ctx
== NULL
) {
997 lttng_ht_node_init_ulong(&ua_ctx
->node
,
998 (unsigned long) ua_ctx
->ctx
.ctx
);
999 lttng_ht_add_unique_ulong(ua_chan
->ctx
, &ua_ctx
->node
);
1002 /* Copy all events from ltt ust channel to ust app channel */
1003 cds_lfht_for_each_entry(uchan
->events
->ht
, &iter
.iter
, uevent
, node
.node
) {
1004 ua_event
= find_ust_app_event(ua_chan
->events
, uevent
->attr
.name
,
1005 uevent
->filter
, uevent
->attr
.loglevel
);
1006 if (ua_event
== NULL
) {
1007 DBG2("UST event %s not found on shadow copy channel",
1009 ua_event
= alloc_ust_app_event(uevent
->attr
.name
, &uevent
->attr
);
1010 if (ua_event
== NULL
) {
1013 shadow_copy_event(ua_event
, uevent
);
1014 add_unique_ust_app_event(ua_chan
->events
, ua_event
);
1018 DBG3("UST app shadow copy of channel %s done", ua_chan
->name
);
1022 * Copy data between a UST app session and a regular LTT session.
1024 static void shadow_copy_session(struct ust_app_session
*ua_sess
,
1025 struct ltt_ust_session
*usess
, struct ust_app
*app
)
1027 struct lttng_ht_node_str
*ua_chan_node
;
1028 struct lttng_ht_iter iter
;
1029 struct ltt_ust_channel
*uchan
;
1030 struct ust_app_channel
*ua_chan
;
1032 struct tm
*timeinfo
;
1036 /* Get date and time for unique app path */
1038 timeinfo
= localtime(&rawtime
);
1039 strftime(datetime
, sizeof(datetime
), "%Y%m%d-%H%M%S", timeinfo
);
1041 DBG2("Shadow copy of session handle %d", ua_sess
->handle
);
1043 ua_sess
->id
= usess
->id
;
1044 ua_sess
->uid
= usess
->uid
;
1045 ua_sess
->gid
= usess
->gid
;
1047 ret
= snprintf(ua_sess
->path
, PATH_MAX
, "%s-%d-%s/", app
->name
, app
->pid
,
1050 PERROR("asprintf UST shadow copy session");
1051 /* TODO: We cannot return an error from here.. */
1055 /* TODO: support all UST domain */
1057 /* Iterate over all channels in global domain. */
1058 cds_lfht_for_each_entry(usess
->domain_global
.channels
->ht
, &iter
.iter
,
1060 struct lttng_ht_iter uiter
;
1062 lttng_ht_lookup(ua_sess
->channels
, (void *)uchan
->name
, &uiter
);
1063 ua_chan_node
= lttng_ht_iter_get_node_str(&uiter
);
1064 if (ua_chan_node
!= NULL
) {
1065 /* Session exist. Contiuing. */
1069 DBG2("Channel %s not found on shadow session copy, creating it",
1071 ua_chan
= alloc_ust_app_channel(uchan
->name
, &uchan
->attr
);
1072 if (ua_chan
== NULL
) {
1073 /* malloc failed FIXME: Might want to do handle ENOMEM .. */
1077 shadow_copy_channel(ua_chan
, uchan
);
1078 lttng_ht_add_unique_str(ua_sess
->channels
, &ua_chan
->node
);
1083 * Lookup sesison wrapper.
1086 void __lookup_session_by_app(struct ltt_ust_session
*usess
,
1087 struct ust_app
*app
, struct lttng_ht_iter
*iter
)
1089 /* Get right UST app session from app */
1090 lttng_ht_lookup(app
->sessions
, (void *)((unsigned long) usess
->id
), iter
);
1094 * Return ust app session from the app session hashtable using the UST session
1097 static struct ust_app_session
*lookup_session_by_app(
1098 struct ltt_ust_session
*usess
, struct ust_app
*app
)
1100 struct lttng_ht_iter iter
;
1101 struct lttng_ht_node_ulong
*node
;
1103 __lookup_session_by_app(usess
, app
, &iter
);
1104 node
= lttng_ht_iter_get_node_ulong(&iter
);
1109 return caa_container_of(node
, struct ust_app_session
, node
);
1116 * Create a session on the tracer side for the given app.
1118 * On success, ua_sess_ptr is populated with the session pointer or else left
1119 * untouched. If the session was created, is_created is set to 1. On error,
1120 * it's left untouched. Note that ua_sess_ptr is mandatory but is_created can
1123 * Returns 0 on success or else a negative code which is either -ENOMEM or
1124 * -ENOTCONN which is the default code if the ustctl_create_session fails.
1126 static int create_ust_app_session(struct ltt_ust_session
*usess
,
1127 struct ust_app
*app
, struct ust_app_session
**ua_sess_ptr
,
1130 int ret
, created
= 0;
1131 struct ust_app_session
*ua_sess
;
1135 assert(ua_sess_ptr
);
1137 health_code_update(&health_thread_cmd
);
1139 ua_sess
= lookup_session_by_app(usess
, app
);
1140 if (ua_sess
== NULL
) {
1141 DBG2("UST app pid: %d session id %d not found, creating it",
1142 app
->pid
, usess
->id
);
1143 ua_sess
= alloc_ust_app_session();
1144 if (ua_sess
== NULL
) {
1145 /* Only malloc can failed so something is really wrong */
1149 shadow_copy_session(ua_sess
, usess
, app
);
1153 health_code_update(&health_thread_cmd
);
1155 if (ua_sess
->handle
== -1) {
1156 ret
= ustctl_create_session(app
->sock
);
1158 ERR("Creating session for app pid %d", app
->pid
);
1159 delete_ust_app_session(-1, ua_sess
);
1160 if (ret
!= -ENOMEM
) {
1162 * Tracer is probably gone or got an internal error so let's
1163 * behave like it will soon unregister or not usable.
1170 ua_sess
->handle
= ret
;
1172 /* Add ust app session to app's HT */
1173 lttng_ht_node_init_ulong(&ua_sess
->node
, (unsigned long) ua_sess
->id
);
1174 lttng_ht_add_unique_ulong(app
->sessions
, &ua_sess
->node
);
1176 DBG2("UST app session created successfully with handle %d", ret
);
1179 *ua_sess_ptr
= ua_sess
;
1181 *is_created
= created
;
1183 /* Everything went well. */
1187 health_code_update(&health_thread_cmd
);
1192 * Create a context for the channel on the tracer.
1195 int create_ust_app_channel_context(struct ust_app_session
*ua_sess
,
1196 struct ust_app_channel
*ua_chan
, struct lttng_ust_context
*uctx
,
1197 struct ust_app
*app
)
1200 struct lttng_ht_iter iter
;
1201 struct lttng_ht_node_ulong
*node
;
1202 struct ust_app_ctx
*ua_ctx
;
1204 DBG2("UST app adding context to channel %s", ua_chan
->name
);
1206 lttng_ht_lookup(ua_chan
->ctx
, (void *)((unsigned long)uctx
->ctx
), &iter
);
1207 node
= lttng_ht_iter_get_node_ulong(&iter
);
1213 ua_ctx
= alloc_ust_app_ctx(uctx
);
1214 if (ua_ctx
== NULL
) {
1220 lttng_ht_node_init_ulong(&ua_ctx
->node
, (unsigned long) ua_ctx
->ctx
.ctx
);
1221 lttng_ht_add_unique_ulong(ua_chan
->ctx
, &ua_ctx
->node
);
1223 ret
= create_ust_channel_context(ua_chan
, ua_ctx
, app
);
1233 * Enable on the tracer side a ust app event for the session and channel.
1236 int enable_ust_app_event(struct ust_app_session
*ua_sess
,
1237 struct ust_app_event
*ua_event
, struct ust_app
*app
)
1241 ret
= enable_ust_event(app
, ua_sess
, ua_event
);
1246 ua_event
->enabled
= 1;
1253 * Disable on the tracer side a ust app event for the session and channel.
1255 static int disable_ust_app_event(struct ust_app_session
*ua_sess
,
1256 struct ust_app_event
*ua_event
, struct ust_app
*app
)
1260 ret
= disable_ust_event(app
, ua_sess
, ua_event
);
1265 ua_event
->enabled
= 0;
1272 * Lookup ust app channel for session and disable it on the tracer side.
1275 int disable_ust_app_channel(struct ust_app_session
*ua_sess
,
1276 struct ust_app_channel
*ua_chan
, struct ust_app
*app
)
1280 ret
= disable_ust_channel(app
, ua_sess
, ua_chan
);
1285 ua_chan
->enabled
= 0;
1292 * Lookup ust app channel for session and enable it on the tracer side.
1294 static int enable_ust_app_channel(struct ust_app_session
*ua_sess
,
1295 struct ltt_ust_channel
*uchan
, struct ust_app
*app
)
1298 struct lttng_ht_iter iter
;
1299 struct lttng_ht_node_str
*ua_chan_node
;
1300 struct ust_app_channel
*ua_chan
;
1302 lttng_ht_lookup(ua_sess
->channels
, (void *)uchan
->name
, &iter
);
1303 ua_chan_node
= lttng_ht_iter_get_node_str(&iter
);
1304 if (ua_chan_node
== NULL
) {
1305 DBG2("Unable to find channel %s in ust session id %u",
1306 uchan
->name
, ua_sess
->id
);
1310 ua_chan
= caa_container_of(ua_chan_node
, struct ust_app_channel
, node
);
1312 ret
= enable_ust_channel(app
, ua_sess
, ua_chan
);
1322 * Create UST app channel and create it on the tracer. Set ua_chanp of the
1323 * newly created channel if not NULL.
1325 static int create_ust_app_channel(struct ust_app_session
*ua_sess
,
1326 struct ltt_ust_channel
*uchan
, struct ust_app
*app
,
1327 struct ust_app_channel
**ua_chanp
)
1330 struct lttng_ht_iter iter
;
1331 struct lttng_ht_node_str
*ua_chan_node
;
1332 struct ust_app_channel
*ua_chan
;
1334 /* Lookup channel in the ust app session */
1335 lttng_ht_lookup(ua_sess
->channels
, (void *)uchan
->name
, &iter
);
1336 ua_chan_node
= lttng_ht_iter_get_node_str(&iter
);
1337 if (ua_chan_node
!= NULL
) {
1338 ua_chan
= caa_container_of(ua_chan_node
, struct ust_app_channel
, node
);
1342 ua_chan
= alloc_ust_app_channel(uchan
->name
, &uchan
->attr
);
1343 if (ua_chan
== NULL
) {
1344 /* Only malloc can fail here */
1348 shadow_copy_channel(ua_chan
, uchan
);
1350 ret
= create_ust_channel(app
, ua_sess
, ua_chan
);
1352 /* Not found previously means that it does not exist on the tracer */
1353 assert(ret
!= -LTTNG_UST_ERR_EXIST
);
1357 /* Only add the channel if successful on the tracer side. */
1358 lttng_ht_add_unique_str(ua_sess
->channels
, &ua_chan
->node
);
1360 DBG2("UST app create channel %s for PID %d completed", ua_chan
->name
,
1365 *ua_chanp
= ua_chan
;
1368 /* Everything went well. */
1372 delete_ust_app_channel(-1, ua_chan
);
1377 * Create UST app event and create it on the tracer side.
1380 int create_ust_app_event(struct ust_app_session
*ua_sess
,
1381 struct ust_app_channel
*ua_chan
, struct ltt_ust_event
*uevent
,
1382 struct ust_app
*app
)
1385 struct ust_app_event
*ua_event
;
1387 /* Get event node */
1388 ua_event
= find_ust_app_event(ua_chan
->events
, uevent
->attr
.name
,
1389 uevent
->filter
, uevent
->attr
.loglevel
);
1390 if (ua_event
!= NULL
) {
1395 /* Does not exist so create one */
1396 ua_event
= alloc_ust_app_event(uevent
->attr
.name
, &uevent
->attr
);
1397 if (ua_event
== NULL
) {
1398 /* Only malloc can failed so something is really wrong */
1402 shadow_copy_event(ua_event
, uevent
);
1404 /* Create it on the tracer side */
1405 ret
= create_ust_event(app
, ua_sess
, ua_chan
, ua_event
);
1407 /* Not found previously means that it does not exist on the tracer */
1408 assert(ret
!= -LTTNG_UST_ERR_EXIST
);
1412 add_unique_ust_app_event(ua_chan
->events
, ua_event
);
1414 DBG2("UST app create event %s for PID %d completed", ua_event
->name
,
1421 /* Valid. Calling here is already in a read side lock */
1422 delete_ust_app_event(-1, ua_event
);
1427 * Create UST metadata and open it on the tracer side.
1429 static int create_ust_app_metadata(struct ust_app_session
*ua_sess
,
1430 char *pathname
, struct ust_app
*app
)
1434 if (ua_sess
->metadata
== NULL
) {
1435 /* Allocate UST metadata */
1436 ua_sess
->metadata
= trace_ust_create_metadata(pathname
);
1437 if (ua_sess
->metadata
== NULL
) {
1438 /* malloc() failed */
1442 ret
= open_ust_metadata(app
, ua_sess
);
1444 DBG3("Opening metadata failed. Cleaning up memory");
1446 /* Cleanup failed metadata struct */
1447 free(ua_sess
->metadata
);
1449 * This is very important because delete_ust_app_session check if
1450 * the pointer is null or not in order to delete the metadata.
1452 ua_sess
->metadata
= NULL
;
1456 DBG2("UST metadata opened for app pid %d", app
->pid
);
1459 /* Open UST metadata stream */
1460 if (ua_sess
->metadata
->stream_obj
== NULL
) {
1461 ret
= create_ust_metadata_stream(app
, ua_sess
);
1466 ret
= snprintf(ua_sess
->metadata
->pathname
, PATH_MAX
,
1467 "%s/metadata", ua_sess
->path
);
1469 PERROR("asprintf UST create stream");
1473 DBG2("UST metadata stream object created for app pid %d",
1476 ERR("Attempting to create stream without metadata opened");
1487 * Return pointer to traceable apps list.
1489 struct lttng_ht
*ust_app_get_ht(void)
1495 * Return ust app pointer or NULL if not found.
1497 struct ust_app
*ust_app_find_by_pid(pid_t pid
)
1499 struct lttng_ht_node_ulong
*node
;
1500 struct lttng_ht_iter iter
;
1503 lttng_ht_lookup(ust_app_ht
, (void *)((unsigned long) pid
), &iter
);
1504 node
= lttng_ht_iter_get_node_ulong(&iter
);
1506 DBG2("UST app no found with pid %d", pid
);
1511 DBG2("Found UST app by pid %d", pid
);
1513 return caa_container_of(node
, struct ust_app
, pid_n
);
1521 * Using pid and uid (of the app), allocate a new ust_app struct and
1522 * add it to the global traceable app list.
1524 * On success, return 0, else return malloc -ENOMEM, or -EINVAL if app
1525 * bitness is not supported.
1527 int ust_app_register(struct ust_register_msg
*msg
, int sock
)
1529 struct ust_app
*lta
;
1532 if ((msg
->bits_per_long
== 64 &&
1533 (uatomic_read(&ust_consumerd64_fd
) == -EINVAL
))
1534 || (msg
->bits_per_long
== 32 &&
1535 (uatomic_read(&ust_consumerd32_fd
) == -EINVAL
))) {
1536 ERR("Registration failed: application \"%s\" (pid: %d) has "
1537 "%d-bit long, but no consumerd for this long size is available.\n",
1538 msg
->name
, msg
->pid
, msg
->bits_per_long
);
1543 lttng_fd_put(LTTNG_FD_APPS
, 1);
1546 if (msg
->major
!= LTTNG_UST_COMM_MAJOR
) {
1547 ERR("Registration failed: application \"%s\" (pid: %d) has "
1548 "communication protocol version %u.%u, but sessiond supports 2.x.\n",
1549 msg
->name
, msg
->pid
, msg
->major
, msg
->minor
);
1554 lttng_fd_put(LTTNG_FD_APPS
, 1);
1557 lta
= zmalloc(sizeof(struct ust_app
));
1563 lta
->ppid
= msg
->ppid
;
1564 lta
->uid
= msg
->uid
;
1565 lta
->gid
= msg
->gid
;
1566 lta
->compatible
= 0; /* Not compatible until proven */
1567 lta
->bits_per_long
= msg
->bits_per_long
;
1568 lta
->v_major
= msg
->major
;
1569 lta
->v_minor
= msg
->minor
;
1570 strncpy(lta
->name
, msg
->name
, sizeof(lta
->name
));
1571 lta
->name
[16] = '\0';
1572 lta
->sessions
= lttng_ht_new(0, LTTNG_HT_TYPE_ULONG
);
1574 lta
->pid
= msg
->pid
;
1575 lttng_ht_node_init_ulong(<a
->pid_n
, (unsigned long)lta
->pid
);
1577 lttng_ht_node_init_ulong(<a
->sock_n
, (unsigned long)lta
->sock
);
1579 CDS_INIT_LIST_HEAD(<a
->teardown_head
);
1584 * On a re-registration, we want to kick out the previous registration of
1587 lttng_ht_add_replace_ulong(ust_app_ht
, <a
->pid_n
);
1590 * The socket _should_ be unique until _we_ call close. So, a add_unique
1591 * for the ust_app_ht_by_sock is used which asserts fail if the entry was
1592 * already in the table.
1594 lttng_ht_add_unique_ulong(ust_app_ht_by_sock
, <a
->sock_n
);
1598 DBG("App registered with pid:%d ppid:%d uid:%d gid:%d sock:%d name:%s"
1599 " (version %d.%d)", lta
->pid
, lta
->ppid
, lta
->uid
, lta
->gid
,
1600 lta
->sock
, lta
->name
, lta
->v_major
, lta
->v_minor
);
1606 * Unregister app by removing it from the global traceable app list and freeing
1609 * The socket is already closed at this point so no close to sock.
1611 void ust_app_unregister(int sock
)
1613 struct ust_app
*lta
;
1614 struct lttng_ht_node_ulong
*node
;
1615 struct lttng_ht_iter iter
;
1616 struct ust_app_session
*ua_sess
;
1621 /* Get the node reference for a call_rcu */
1622 lttng_ht_lookup(ust_app_ht_by_sock
, (void *)((unsigned long) sock
), &iter
);
1623 node
= lttng_ht_iter_get_node_ulong(&iter
);
1625 ERR("Unable to find app by sock %d", sock
);
1629 lta
= caa_container_of(node
, struct ust_app
, sock_n
);
1631 DBG("PID %d unregistering with sock %d", lta
->pid
, sock
);
1633 /* Remove application from PID hash table */
1634 ret
= lttng_ht_del(ust_app_ht_by_sock
, &iter
);
1637 /* Assign second node for deletion */
1638 iter
.iter
.node
= <a
->pid_n
.node
;
1641 * Ignore return value since the node might have been removed before by an
1642 * add replace during app registration because the PID can be reassigned by
1645 ret
= lttng_ht_del(ust_app_ht
, &iter
);
1647 DBG3("Unregister app by PID %d failed. This can happen on pid reuse",
1651 /* Remove sessions so they are not visible during deletion.*/
1652 cds_lfht_for_each_entry(lta
->sessions
->ht
, &iter
.iter
, ua_sess
,
1654 ret
= lttng_ht_del(lta
->sessions
, &iter
);
1656 /* The session was already removed so scheduled for teardown. */
1661 * Add session to list for teardown. This is safe since at this point we
1662 * are the only one using this list.
1664 cds_list_add(&ua_sess
->teardown_node
, <a
->teardown_head
);
1668 call_rcu(<a
->pid_n
.head
, delete_ust_app_rcu
);
1676 * Return traceable_app_count
1678 unsigned long ust_app_list_count(void)
1680 unsigned long count
;
1683 count
= lttng_ht_get_count(ust_app_ht
);
1690 * Fill events array with all events name of all registered apps.
1692 int ust_app_list_events(struct lttng_event
**events
)
1695 size_t nbmem
, count
= 0;
1696 struct lttng_ht_iter iter
;
1697 struct ust_app
*app
;
1698 struct lttng_event
*tmp_event
;
1700 nbmem
= UST_APP_EVENT_LIST_SIZE
;
1701 tmp_event
= zmalloc(nbmem
* sizeof(struct lttng_event
));
1702 if (tmp_event
== NULL
) {
1703 PERROR("zmalloc ust app events");
1710 cds_lfht_for_each_entry(ust_app_ht
->ht
, &iter
.iter
, app
, pid_n
.node
) {
1711 struct lttng_ust_tracepoint_iter uiter
;
1713 health_code_update(&health_thread_cmd
);
1715 if (!app
->compatible
) {
1717 * TODO: In time, we should notice the caller of this error by
1718 * telling him that this is a version error.
1722 handle
= ustctl_tracepoint_list(app
->sock
);
1724 ERR("UST app list events getting handle failed for app pid %d",
1729 while ((ret
= ustctl_tracepoint_list_get(app
->sock
, handle
,
1730 &uiter
)) != -LTTNG_UST_ERR_NOENT
) {
1731 health_code_update(&health_thread_cmd
);
1732 if (count
>= nbmem
) {
1733 /* In case the realloc fails, we free the memory */
1736 DBG2("Reallocating event list from %zu to %zu entries", nbmem
,
1739 ptr
= realloc(tmp_event
, nbmem
* sizeof(struct lttng_event
));
1741 PERROR("realloc ust app events");
1748 memcpy(tmp_event
[count
].name
, uiter
.name
, LTTNG_UST_SYM_NAME_LEN
);
1749 tmp_event
[count
].loglevel
= uiter
.loglevel
;
1750 tmp_event
[count
].type
= (enum lttng_event_type
) LTTNG_UST_TRACEPOINT
;
1751 tmp_event
[count
].pid
= app
->pid
;
1752 tmp_event
[count
].enabled
= -1;
1758 *events
= tmp_event
;
1760 DBG2("UST app list events done (%zu events)", count
);
1765 health_code_update(&health_thread_cmd
);
1770 * Fill events array with all events name of all registered apps.
1772 int ust_app_list_event_fields(struct lttng_event_field
**fields
)
1775 size_t nbmem
, count
= 0;
1776 struct lttng_ht_iter iter
;
1777 struct ust_app
*app
;
1778 struct lttng_event_field
*tmp_event
;
1780 nbmem
= UST_APP_EVENT_LIST_SIZE
;
1781 tmp_event
= zmalloc(nbmem
* sizeof(struct lttng_event_field
));
1782 if (tmp_event
== NULL
) {
1783 PERROR("zmalloc ust app event fields");
1790 cds_lfht_for_each_entry(ust_app_ht
->ht
, &iter
.iter
, app
, pid_n
.node
) {
1791 struct lttng_ust_field_iter uiter
;
1793 health_code_update(&health_thread_cmd
);
1795 if (!app
->compatible
) {
1797 * TODO: In time, we should notice the caller of this error by
1798 * telling him that this is a version error.
1802 handle
= ustctl_tracepoint_field_list(app
->sock
);
1804 ERR("UST app list event fields getting handle failed for app pid %d",
1809 while ((ret
= ustctl_tracepoint_field_list_get(app
->sock
, handle
,
1810 &uiter
)) != -LTTNG_UST_ERR_NOENT
) {
1811 health_code_update(&health_thread_cmd
);
1812 if (count
>= nbmem
) {
1813 /* In case the realloc fails, we free the memory */
1816 DBG2("Reallocating event field list from %zu to %zu entries", nbmem
,
1819 ptr
= realloc(tmp_event
, nbmem
* sizeof(struct lttng_event_field
));
1821 PERROR("realloc ust app event fields");
1829 memcpy(tmp_event
[count
].field_name
, uiter
.field_name
, LTTNG_UST_SYM_NAME_LEN
);
1830 tmp_event
[count
].type
= uiter
.type
;
1831 tmp_event
[count
].nowrite
= uiter
.nowrite
;
1833 memcpy(tmp_event
[count
].event
.name
, uiter
.event_name
, LTTNG_UST_SYM_NAME_LEN
);
1834 tmp_event
[count
].event
.loglevel
= uiter
.loglevel
;
1835 tmp_event
[count
].event
.type
= LTTNG_UST_TRACEPOINT
;
1836 tmp_event
[count
].event
.pid
= app
->pid
;
1837 tmp_event
[count
].event
.enabled
= -1;
1843 *fields
= tmp_event
;
1845 DBG2("UST app list event fields done (%zu events)", count
);
1850 health_code_update(&health_thread_cmd
);
1855 * Free and clean all traceable apps of the global list.
1857 void ust_app_clean_list(void)
1860 struct ust_app
*app
;
1861 struct lttng_ht_iter iter
;
1863 DBG2("UST app cleaning registered apps hash table");
1867 cds_lfht_for_each_entry(ust_app_ht
->ht
, &iter
.iter
, app
, pid_n
.node
) {
1868 ret
= lttng_ht_del(ust_app_ht
, &iter
);
1870 call_rcu(&app
->pid_n
.head
, delete_ust_app_rcu
);
1873 /* Cleanup socket hash table */
1874 cds_lfht_for_each_entry(ust_app_ht_by_sock
->ht
, &iter
.iter
, app
,
1876 ret
= lttng_ht_del(ust_app_ht_by_sock
, &iter
);
1880 /* Destroy is done only when the ht is empty */
1881 lttng_ht_destroy(ust_app_ht
);
1882 lttng_ht_destroy(ust_app_ht_by_sock
);
1888 * Init UST app hash table.
1890 void ust_app_ht_alloc(void)
1892 ust_app_ht
= lttng_ht_new(0, LTTNG_HT_TYPE_ULONG
);
1893 ust_app_ht_by_sock
= lttng_ht_new(0, LTTNG_HT_TYPE_ULONG
);
1897 * For a specific UST session, disable the channel for all registered apps.
1899 int ust_app_disable_channel_glb(struct ltt_ust_session
*usess
,
1900 struct ltt_ust_channel
*uchan
)
1903 struct lttng_ht_iter iter
;
1904 struct lttng_ht_node_str
*ua_chan_node
;
1905 struct ust_app
*app
;
1906 struct ust_app_session
*ua_sess
;
1907 struct ust_app_channel
*ua_chan
;
1909 if (usess
== NULL
|| uchan
== NULL
) {
1910 ERR("Disabling UST global channel with NULL values");
1915 DBG2("UST app disabling channel %s from global domain for session id %d",
1916 uchan
->name
, usess
->id
);
1920 /* For every registered applications */
1921 cds_lfht_for_each_entry(ust_app_ht
->ht
, &iter
.iter
, app
, pid_n
.node
) {
1922 struct lttng_ht_iter uiter
;
1923 if (!app
->compatible
) {
1925 * TODO: In time, we should notice the caller of this error by
1926 * telling him that this is a version error.
1930 ua_sess
= lookup_session_by_app(usess
, app
);
1931 if (ua_sess
== NULL
) {
1936 lttng_ht_lookup(ua_sess
->channels
, (void *)uchan
->name
, &uiter
);
1937 ua_chan_node
= lttng_ht_iter_get_node_str(&uiter
);
1938 /* If the session if found for the app, the channel must be there */
1939 assert(ua_chan_node
);
1941 ua_chan
= caa_container_of(ua_chan_node
, struct ust_app_channel
, node
);
1942 /* The channel must not be already disabled */
1943 assert(ua_chan
->enabled
== 1);
1945 /* Disable channel onto application */
1946 ret
= disable_ust_app_channel(ua_sess
, ua_chan
, app
);
1948 /* XXX: We might want to report this error at some point... */
1960 * For a specific UST session, enable the channel for all registered apps.
1962 int ust_app_enable_channel_glb(struct ltt_ust_session
*usess
,
1963 struct ltt_ust_channel
*uchan
)
1966 struct lttng_ht_iter iter
;
1967 struct ust_app
*app
;
1968 struct ust_app_session
*ua_sess
;
1970 if (usess
== NULL
|| uchan
== NULL
) {
1971 ERR("Adding UST global channel to NULL values");
1976 DBG2("UST app enabling channel %s to global domain for session id %d",
1977 uchan
->name
, usess
->id
);
1981 /* For every registered applications */
1982 cds_lfht_for_each_entry(ust_app_ht
->ht
, &iter
.iter
, app
, pid_n
.node
) {
1983 if (!app
->compatible
) {
1985 * TODO: In time, we should notice the caller of this error by
1986 * telling him that this is a version error.
1990 ua_sess
= lookup_session_by_app(usess
, app
);
1991 if (ua_sess
== NULL
) {
1995 /* Enable channel onto application */
1996 ret
= enable_ust_app_channel(ua_sess
, uchan
, app
);
1998 /* XXX: We might want to report this error at some point... */
2010 * Disable an event in a channel and for a specific session.
2012 int ust_app_disable_event_glb(struct ltt_ust_session
*usess
,
2013 struct ltt_ust_channel
*uchan
, struct ltt_ust_event
*uevent
)
2016 struct lttng_ht_iter iter
, uiter
;
2017 struct lttng_ht_node_str
*ua_chan_node
, *ua_event_node
;
2018 struct ust_app
*app
;
2019 struct ust_app_session
*ua_sess
;
2020 struct ust_app_channel
*ua_chan
;
2021 struct ust_app_event
*ua_event
;
2023 DBG("UST app disabling event %s for all apps in channel "
2024 "%s for session id %d", uevent
->attr
.name
, uchan
->name
, usess
->id
);
2028 /* For all registered applications */
2029 cds_lfht_for_each_entry(ust_app_ht
->ht
, &iter
.iter
, app
, pid_n
.node
) {
2030 if (!app
->compatible
) {
2032 * TODO: In time, we should notice the caller of this error by
2033 * telling him that this is a version error.
2037 ua_sess
= lookup_session_by_app(usess
, app
);
2038 if (ua_sess
== NULL
) {
2043 /* Lookup channel in the ust app session */
2044 lttng_ht_lookup(ua_sess
->channels
, (void *)uchan
->name
, &uiter
);
2045 ua_chan_node
= lttng_ht_iter_get_node_str(&uiter
);
2046 if (ua_chan_node
== NULL
) {
2047 DBG2("Channel %s not found in session id %d for app pid %d."
2048 "Skipping", uchan
->name
, usess
->id
, app
->pid
);
2051 ua_chan
= caa_container_of(ua_chan_node
, struct ust_app_channel
, node
);
2053 lttng_ht_lookup(ua_chan
->events
, (void *)uevent
->attr
.name
, &uiter
);
2054 ua_event_node
= lttng_ht_iter_get_node_str(&uiter
);
2055 if (ua_event_node
== NULL
) {
2056 DBG2("Event %s not found in channel %s for app pid %d."
2057 "Skipping", uevent
->attr
.name
, uchan
->name
, app
->pid
);
2060 ua_event
= caa_container_of(ua_event_node
, struct ust_app_event
, node
);
2062 ret
= disable_ust_app_event(ua_sess
, ua_event
, app
);
2064 /* XXX: Report error someday... */
2075 * For a specific UST session and UST channel, the event for all
2078 int ust_app_disable_all_event_glb(struct ltt_ust_session
*usess
,
2079 struct ltt_ust_channel
*uchan
)
2082 struct lttng_ht_iter iter
, uiter
;
2083 struct lttng_ht_node_str
*ua_chan_node
;
2084 struct ust_app
*app
;
2085 struct ust_app_session
*ua_sess
;
2086 struct ust_app_channel
*ua_chan
;
2087 struct ust_app_event
*ua_event
;
2089 DBG("UST app disabling all event for all apps in channel "
2090 "%s for session id %d", uchan
->name
, usess
->id
);
2094 /* For all registered applications */
2095 cds_lfht_for_each_entry(ust_app_ht
->ht
, &iter
.iter
, app
, pid_n
.node
) {
2096 if (!app
->compatible
) {
2098 * TODO: In time, we should notice the caller of this error by
2099 * telling him that this is a version error.
2103 ua_sess
= lookup_session_by_app(usess
, app
);
2105 /* The application has problem or is probably dead. */
2109 /* Lookup channel in the ust app session */
2110 lttng_ht_lookup(ua_sess
->channels
, (void *)uchan
->name
, &uiter
);
2111 ua_chan_node
= lttng_ht_iter_get_node_str(&uiter
);
2112 /* If the channel is not found, there is a code flow error */
2113 assert(ua_chan_node
);
2115 ua_chan
= caa_container_of(ua_chan_node
, struct ust_app_channel
, node
);
2117 /* Disable each events of channel */
2118 cds_lfht_for_each_entry(ua_chan
->events
->ht
, &uiter
.iter
, ua_event
,
2120 ret
= disable_ust_app_event(ua_sess
, ua_event
, app
);
2122 /* XXX: Report error someday... */
2134 * For a specific UST session, create the channel for all registered apps.
2136 int ust_app_create_channel_glb(struct ltt_ust_session
*usess
,
2137 struct ltt_ust_channel
*uchan
)
2139 int ret
= 0, created
;
2140 struct lttng_ht_iter iter
;
2141 struct ust_app
*app
;
2142 struct ust_app_session
*ua_sess
= NULL
;
2144 /* Very wrong code flow */
2148 DBG2("UST app adding channel %s to global domain for session id %d",
2149 uchan
->name
, usess
->id
);
2153 /* For every registered applications */
2154 cds_lfht_for_each_entry(ust_app_ht
->ht
, &iter
.iter
, app
, pid_n
.node
) {
2155 if (!app
->compatible
) {
2157 * TODO: In time, we should notice the caller of this error by
2158 * telling him that this is a version error.
2163 * Create session on the tracer side and add it to app session HT. Note
2164 * that if session exist, it will simply return a pointer to the ust
2167 ret
= create_ust_app_session(usess
, app
, &ua_sess
, &created
);
2172 * The application's socket is not valid. Either a bad socket
2173 * or a timeout on it. We can't inform the caller that for a
2174 * specific app, the session failed so lets continue here.
2179 goto error_rcu_unlock
;
2184 /* Create channel onto application. We don't need the chan ref. */
2185 ret
= create_ust_app_channel(ua_sess
, uchan
, app
, NULL
);
2187 if (ret
== -ENOMEM
) {
2188 /* No more memory is a fatal error. Stop right now. */
2189 goto error_rcu_unlock
;
2191 /* Cleanup the created session if it's the case. */
2193 delete_ust_app_session(app
->sock
, ua_sess
);
2204 * Enable event for a specific session and channel on the tracer.
2206 int ust_app_enable_event_glb(struct ltt_ust_session
*usess
,
2207 struct ltt_ust_channel
*uchan
, struct ltt_ust_event
*uevent
)
2210 struct lttng_ht_iter iter
, uiter
;
2211 struct lttng_ht_node_str
*ua_chan_node
;
2212 struct ust_app
*app
;
2213 struct ust_app_session
*ua_sess
;
2214 struct ust_app_channel
*ua_chan
;
2215 struct ust_app_event
*ua_event
;
2217 DBG("UST app enabling event %s for all apps for session id %d",
2218 uevent
->attr
.name
, usess
->id
);
2221 * NOTE: At this point, this function is called only if the session and
2222 * channel passed are already created for all apps. and enabled on the
2228 /* For all registered applications */
2229 cds_lfht_for_each_entry(ust_app_ht
->ht
, &iter
.iter
, app
, pid_n
.node
) {
2230 if (!app
->compatible
) {
2232 * TODO: In time, we should notice the caller of this error by
2233 * telling him that this is a version error.
2237 ua_sess
= lookup_session_by_app(usess
, app
);
2239 /* The application has problem or is probably dead. */
2243 /* Lookup channel in the ust app session */
2244 lttng_ht_lookup(ua_sess
->channels
, (void *)uchan
->name
, &uiter
);
2245 ua_chan_node
= lttng_ht_iter_get_node_str(&uiter
);
2246 /* If the channel is not found, there is a code flow error */
2247 assert(ua_chan_node
);
2249 ua_chan
= caa_container_of(ua_chan_node
, struct ust_app_channel
, node
);
2251 /* Get event node */
2252 ua_event
= find_ust_app_event(ua_chan
->events
, uevent
->attr
.name
,
2253 uevent
->filter
, uevent
->attr
.loglevel
);
2254 if (ua_event
== NULL
) {
2255 DBG3("UST app enable event %s not found for app PID %d."
2256 "Skipping app", uevent
->attr
.name
, app
->pid
);
2260 ret
= enable_ust_app_event(ua_sess
, ua_event
, app
);
2272 * For a specific existing UST session and UST channel, creates the event for
2273 * all registered apps.
2275 int ust_app_create_event_glb(struct ltt_ust_session
*usess
,
2276 struct ltt_ust_channel
*uchan
, struct ltt_ust_event
*uevent
)
2279 struct lttng_ht_iter iter
, uiter
;
2280 struct lttng_ht_node_str
*ua_chan_node
;
2281 struct ust_app
*app
;
2282 struct ust_app_session
*ua_sess
;
2283 struct ust_app_channel
*ua_chan
;
2285 DBG("UST app creating event %s for all apps for session id %d",
2286 uevent
->attr
.name
, usess
->id
);
2290 /* For all registered applications */
2291 cds_lfht_for_each_entry(ust_app_ht
->ht
, &iter
.iter
, app
, pid_n
.node
) {
2292 if (!app
->compatible
) {
2294 * TODO: In time, we should notice the caller of this error by
2295 * telling him that this is a version error.
2299 ua_sess
= lookup_session_by_app(usess
, app
);
2301 /* The application has problem or is probably dead. */
2305 /* Lookup channel in the ust app session */
2306 lttng_ht_lookup(ua_sess
->channels
, (void *)uchan
->name
, &uiter
);
2307 ua_chan_node
= lttng_ht_iter_get_node_str(&uiter
);
2308 /* If the channel is not found, there is a code flow error */
2309 assert(ua_chan_node
);
2311 ua_chan
= caa_container_of(ua_chan_node
, struct ust_app_channel
, node
);
2313 ret
= create_ust_app_event(ua_sess
, ua_chan
, uevent
, app
);
2315 if (ret
!= -LTTNG_UST_ERR_EXIST
) {
2316 /* Possible value at this point: -ENOMEM. If so, we stop! */
2319 DBG2("UST app event %s already exist on app PID %d",
2320 uevent
->attr
.name
, app
->pid
);
2331 * Start tracing for a specific UST session and app.
2333 int ust_app_start_trace(struct ltt_ust_session
*usess
, struct ust_app
*app
)
2336 struct lttng_ht_iter iter
;
2337 struct ust_app_session
*ua_sess
;
2338 struct ust_app_channel
*ua_chan
;
2339 struct ust_app_stream
*ustream
;
2340 struct consumer_socket
*socket
;
2342 DBG("Starting tracing for ust app pid %d", app
->pid
);
2346 if (!app
->compatible
) {
2350 ua_sess
= lookup_session_by_app(usess
, app
);
2351 if (ua_sess
== NULL
) {
2352 /* The session is in teardown process. Ignore and continue. */
2356 /* Upon restart, we skip the setup, already done */
2357 if (ua_sess
->started
) {
2361 /* Create directories if consumer is LOCAL and has a path defined. */
2362 if (usess
->consumer
->type
== CONSUMER_DST_LOCAL
&&
2363 strlen(usess
->consumer
->dst
.trace_path
) > 0) {
2364 ret
= run_as_mkdir_recursive(usess
->consumer
->dst
.trace_path
,
2365 S_IRWXU
| S_IRWXG
, usess
->uid
, usess
->gid
);
2367 if (ret
!= -EEXIST
) {
2368 ERR("Trace directory creation error");
2370 goto error_rcu_unlock
;
2375 ret
= create_ust_app_metadata(ua_sess
, usess
->pathname
, app
);
2377 ret
= LTTNG_ERR_UST_META_FAIL
;
2378 goto error_rcu_unlock
;
2381 /* For each channel */
2382 cds_lfht_for_each_entry(ua_sess
->channels
->ht
, &iter
.iter
, ua_chan
,
2384 /* Create all streams */
2386 /* Create UST stream */
2387 ustream
= alloc_ust_app_stream();
2388 if (ustream
== NULL
) {
2389 goto error_rcu_unlock
;
2392 health_code_update(&health_thread_cmd
);
2394 ret
= create_ust_stream(app
, ua_chan
, ustream
);
2396 /* Free unused memory after this point. */
2398 if (ret
== -LTTNG_UST_ERR_NOENT
) {
2399 /* Got all streams. Continue normal execution. */
2402 /* Error at this point. Stop everything. */
2403 ret
= LTTNG_ERR_UST_STREAM_FAIL
;
2404 goto error_rcu_unlock
;
2407 health_code_update(&health_thread_cmd
);
2409 /* Order is important this is why a list is used. */
2410 cds_list_add_tail(&ustream
->list
, &ua_chan
->streams
.head
);
2411 ua_chan
->streams
.count
++;
2413 DBG2("UST stream %d ready (handle: %d)", ua_chan
->streams
.count
,
2417 health_code_update(&health_thread_cmd
);
2420 switch (app
->bits_per_long
) {
2422 socket
= consumer_find_socket(uatomic_read(&ust_consumerd64_fd
),
2424 if (socket
== NULL
) {
2429 socket
= consumer_find_socket(uatomic_read(&ust_consumerd32_fd
),
2431 if (socket
== NULL
) {
2437 goto error_rcu_unlock
;
2440 /* Setup UST consumer socket and send fds to it */
2441 ret
= ust_consumer_send_session(ua_sess
, usess
->consumer
, socket
);
2443 goto error_rcu_unlock
;
2446 health_code_update(&health_thread_cmd
);
2449 /* This start the UST tracing */
2450 ret
= ustctl_start_session(app
->sock
, ua_sess
->handle
);
2452 ERR("Error starting tracing for app pid: %d (ret: %d)", app
->pid
, ret
);
2453 goto error_rcu_unlock
;
2456 /* Indicate that the session has been started once */
2457 ua_sess
->started
= 1;
2459 health_code_update(&health_thread_cmd
);
2461 /* Quiescent wait after starting trace */
2462 ustctl_wait_quiescent(app
->sock
);
2466 health_code_update(&health_thread_cmd
);
2471 health_code_update(&health_thread_cmd
);
2476 * Stop tracing for a specific UST session and app.
2478 int ust_app_stop_trace(struct ltt_ust_session
*usess
, struct ust_app
*app
)
2481 struct lttng_ht_iter iter
;
2482 struct ust_app_session
*ua_sess
;
2483 struct ust_app_channel
*ua_chan
;
2485 DBG("Stopping tracing for ust app pid %d", app
->pid
);
2489 if (!app
->compatible
) {
2493 ua_sess
= lookup_session_by_app(usess
, app
);
2494 if (ua_sess
== NULL
) {
2499 * If started = 0, it means that stop trace has been called for a session
2500 * that was never started. It's possible since we can have a fail start
2501 * from either the application manager thread or the command thread. Simply
2502 * indicate that this is a stop error.
2504 if (!ua_sess
->started
) {
2505 goto error_rcu_unlock
;
2508 health_code_update(&health_thread_cmd
);
2510 /* This inhibits UST tracing */
2511 ret
= ustctl_stop_session(app
->sock
, ua_sess
->handle
);
2513 ERR("Error stopping tracing for app pid: %d (ret: %d)", app
->pid
, ret
);
2514 goto error_rcu_unlock
;
2517 health_code_update(&health_thread_cmd
);
2519 /* Quiescent wait after stopping trace */
2520 ustctl_wait_quiescent(app
->sock
);
2522 health_code_update(&health_thread_cmd
);
2524 /* Flushing buffers */
2525 cds_lfht_for_each_entry(ua_sess
->channels
->ht
, &iter
.iter
, ua_chan
,
2527 health_code_update(&health_thread_cmd
);
2528 ret
= ustctl_sock_flush_buffer(app
->sock
, ua_chan
->obj
);
2530 ERR("UST app PID %d channel %s flush failed with ret %d",
2531 app
->pid
, ua_chan
->name
, ret
);
2532 /* Continuing flushing all buffers */
2537 health_code_update(&health_thread_cmd
);
2539 /* Flush all buffers before stopping */
2540 ret
= ustctl_sock_flush_buffer(app
->sock
, ua_sess
->metadata
->obj
);
2542 ERR("UST app PID %d metadata flush failed with ret %d", app
->pid
,
2548 health_code_update(&health_thread_cmd
);
2553 health_code_update(&health_thread_cmd
);
2558 * Destroy a specific UST session in apps.
2560 static int destroy_trace(struct ltt_ust_session
*usess
, struct ust_app
*app
)
2562 struct ust_app_session
*ua_sess
;
2563 struct lttng_ust_object_data obj
;
2564 struct lttng_ht_iter iter
;
2565 struct lttng_ht_node_ulong
*node
;
2568 DBG("Destroy tracing for ust app pid %d", app
->pid
);
2572 if (!app
->compatible
) {
2576 __lookup_session_by_app(usess
, app
, &iter
);
2577 node
= lttng_ht_iter_get_node_ulong(&iter
);
2579 /* Session is being or is deleted. */
2582 ua_sess
= caa_container_of(node
, struct ust_app_session
, node
);
2583 ret
= lttng_ht_del(app
->sessions
, &iter
);
2585 /* Already scheduled for teardown. */
2589 obj
.handle
= ua_sess
->handle
;
2592 obj
.memory_map_size
= 0;
2593 health_code_update(&health_thread_cmd
);
2594 ustctl_release_object(app
->sock
, &obj
);
2596 health_code_update(&health_thread_cmd
);
2597 delete_ust_app_session(app
->sock
, ua_sess
);
2599 /* Quiescent wait after stopping trace */
2600 ustctl_wait_quiescent(app
->sock
);
2604 health_code_update(&health_thread_cmd
);
2609 * Start tracing for the UST session.
2611 int ust_app_start_trace_all(struct ltt_ust_session
*usess
)
2614 struct lttng_ht_iter iter
;
2615 struct ust_app
*app
;
2617 DBG("Starting all UST traces");
2621 cds_lfht_for_each_entry(ust_app_ht
->ht
, &iter
.iter
, app
, pid_n
.node
) {
2622 ret
= ust_app_start_trace(usess
, app
);
2624 /* Continue to next apps even on error */
2635 * Start tracing for the UST session.
2637 int ust_app_stop_trace_all(struct ltt_ust_session
*usess
)
2640 struct lttng_ht_iter iter
;
2641 struct ust_app
*app
;
2643 DBG("Stopping all UST traces");
2647 cds_lfht_for_each_entry(ust_app_ht
->ht
, &iter
.iter
, app
, pid_n
.node
) {
2648 ret
= ust_app_stop_trace(usess
, app
);
2650 /* Continue to next apps even on error */
2661 * Destroy app UST session.
2663 int ust_app_destroy_trace_all(struct ltt_ust_session
*usess
)
2666 struct lttng_ht_iter iter
;
2667 struct ust_app
*app
;
2669 DBG("Destroy all UST traces");
2673 cds_lfht_for_each_entry(ust_app_ht
->ht
, &iter
.iter
, app
, pid_n
.node
) {
2674 ret
= destroy_trace(usess
, app
);
2676 /* Continue to next apps even on error */
2687 * Add channels/events from UST global domain to registered apps at sock.
2689 void ust_app_global_update(struct ltt_ust_session
*usess
, int sock
)
2692 struct lttng_ht_iter iter
, uiter
, iter_ctx
;
2693 struct ust_app
*app
;
2694 struct ust_app_session
*ua_sess
= NULL
;
2695 struct ust_app_channel
*ua_chan
;
2696 struct ust_app_event
*ua_event
;
2697 struct ust_app_ctx
*ua_ctx
;
2701 DBG2("UST app global update for app sock %d for session id %d", sock
,
2706 app
= find_app_by_sock(sock
);
2708 ERR("Failed to update app sock %d", sock
);
2712 if (!app
->compatible
) {
2716 ret
= create_ust_app_session(usess
, app
, &ua_sess
, NULL
);
2718 /* Tracer is probably gone or ENOMEM. */
2724 * We can iterate safely here over all UST app session sicne the create ust
2725 * app session above made a shadow copy of the UST global domain from the
2728 cds_lfht_for_each_entry(ua_sess
->channels
->ht
, &iter
.iter
, ua_chan
,
2730 ret
= create_ust_channel(app
, ua_sess
, ua_chan
);
2732 /* FIXME: Should we quit here or continue... */
2736 cds_lfht_for_each_entry(ua_chan
->ctx
->ht
, &iter_ctx
.iter
, ua_ctx
,
2738 ret
= create_ust_channel_context(ua_chan
, ua_ctx
, app
);
2740 /* FIXME: Should we quit here or continue... */
2746 /* For each events */
2747 cds_lfht_for_each_entry(ua_chan
->events
->ht
, &uiter
.iter
, ua_event
,
2749 ret
= create_ust_event(app
, ua_sess
, ua_chan
, ua_event
);
2751 /* FIXME: Should we quit here or continue... */
2757 if (usess
->start_trace
) {
2758 ret
= ust_app_start_trace(usess
, app
);
2763 DBG2("UST trace started for app pid %d", app
->pid
);
2772 * Add context to a specific channel for global UST domain.
2774 int ust_app_add_ctx_channel_glb(struct ltt_ust_session
*usess
,
2775 struct ltt_ust_channel
*uchan
, struct ltt_ust_context
*uctx
)
2778 struct lttng_ht_node_str
*ua_chan_node
;
2779 struct lttng_ht_iter iter
, uiter
;
2780 struct ust_app_channel
*ua_chan
= NULL
;
2781 struct ust_app_session
*ua_sess
;
2782 struct ust_app
*app
;
2786 cds_lfht_for_each_entry(ust_app_ht
->ht
, &iter
.iter
, app
, pid_n
.node
) {
2787 if (!app
->compatible
) {
2789 * TODO: In time, we should notice the caller of this error by
2790 * telling him that this is a version error.
2794 ua_sess
= lookup_session_by_app(usess
, app
);
2795 if (ua_sess
== NULL
) {
2799 /* Lookup channel in the ust app session */
2800 lttng_ht_lookup(ua_sess
->channels
, (void *)uchan
->name
, &uiter
);
2801 ua_chan_node
= lttng_ht_iter_get_node_str(&uiter
);
2802 if (ua_chan_node
== NULL
) {
2805 ua_chan
= caa_container_of(ua_chan_node
, struct ust_app_channel
,
2808 ret
= create_ust_app_channel_context(ua_sess
, ua_chan
, &uctx
->ctx
, app
);
2819 * Enable event for a channel from a UST session for a specific PID.
2821 int ust_app_enable_event_pid(struct ltt_ust_session
*usess
,
2822 struct ltt_ust_channel
*uchan
, struct ltt_ust_event
*uevent
, pid_t pid
)
2825 struct lttng_ht_iter iter
;
2826 struct lttng_ht_node_str
*ua_chan_node
;
2827 struct ust_app
*app
;
2828 struct ust_app_session
*ua_sess
;
2829 struct ust_app_channel
*ua_chan
;
2830 struct ust_app_event
*ua_event
;
2832 DBG("UST app enabling event %s for PID %d", uevent
->attr
.name
, pid
);
2836 app
= ust_app_find_by_pid(pid
);
2838 ERR("UST app enable event per PID %d not found", pid
);
2843 if (!app
->compatible
) {
2848 ua_sess
= lookup_session_by_app(usess
, app
);
2850 /* The application has problem or is probably dead. */
2854 /* Lookup channel in the ust app session */
2855 lttng_ht_lookup(ua_sess
->channels
, (void *)uchan
->name
, &iter
);
2856 ua_chan_node
= lttng_ht_iter_get_node_str(&iter
);
2857 /* If the channel is not found, there is a code flow error */
2858 assert(ua_chan_node
);
2860 ua_chan
= caa_container_of(ua_chan_node
, struct ust_app_channel
, node
);
2862 ua_event
= find_ust_app_event(ua_chan
->events
, uevent
->attr
.name
,
2863 uevent
->filter
, uevent
->attr
.loglevel
);
2864 if (ua_event
== NULL
) {
2865 ret
= create_ust_app_event(ua_sess
, ua_chan
, uevent
, app
);
2870 ret
= enable_ust_app_event(ua_sess
, ua_event
, app
);
2882 * Disable event for a channel from a UST session for a specific PID.
2884 int ust_app_disable_event_pid(struct ltt_ust_session
*usess
,
2885 struct ltt_ust_channel
*uchan
, struct ltt_ust_event
*uevent
, pid_t pid
)
2888 struct lttng_ht_iter iter
;
2889 struct lttng_ht_node_str
*ua_chan_node
, *ua_event_node
;
2890 struct ust_app
*app
;
2891 struct ust_app_session
*ua_sess
;
2892 struct ust_app_channel
*ua_chan
;
2893 struct ust_app_event
*ua_event
;
2895 DBG("UST app disabling event %s for PID %d", uevent
->attr
.name
, pid
);
2899 app
= ust_app_find_by_pid(pid
);
2901 ERR("UST app disable event per PID %d not found", pid
);
2906 if (!app
->compatible
) {
2911 ua_sess
= lookup_session_by_app(usess
, app
);
2913 /* The application has problem or is probably dead. */
2917 /* Lookup channel in the ust app session */
2918 lttng_ht_lookup(ua_sess
->channels
, (void *)uchan
->name
, &iter
);
2919 ua_chan_node
= lttng_ht_iter_get_node_str(&iter
);
2920 if (ua_chan_node
== NULL
) {
2921 /* Channel does not exist, skip disabling */
2924 ua_chan
= caa_container_of(ua_chan_node
, struct ust_app_channel
, node
);
2926 lttng_ht_lookup(ua_chan
->events
, (void *)uevent
->attr
.name
, &iter
);
2927 ua_event_node
= lttng_ht_iter_get_node_str(&iter
);
2928 if (ua_event_node
== NULL
) {
2929 /* Event does not exist, skip disabling */
2932 ua_event
= caa_container_of(ua_event_node
, struct ust_app_event
, node
);
2934 ret
= disable_ust_app_event(ua_sess
, ua_event
, app
);
2945 * Validate version of UST apps and set the compatible bit.
2947 int ust_app_validate_version(int sock
)
2950 struct ust_app
*app
;
2954 app
= find_app_by_sock(sock
);
2957 health_code_update(&health_thread_cmd
);
2959 ret
= ustctl_tracer_version(sock
, &app
->version
);
2964 /* Validate version */
2965 if (app
->version
.major
!= UST_APP_MAJOR_VERSION
) {
2969 DBG2("UST app PID %d is compatible with internal major version %d "
2970 "(supporting == %d)", app
->pid
, app
->version
.major
,
2971 UST_APP_MAJOR_VERSION
);
2972 app
->compatible
= 1;
2974 health_code_update(&health_thread_cmd
);
2978 DBG2("UST app PID %d is not compatible with internal major version %d "
2979 "(supporting == %d)", app
->pid
, app
->version
.major
,
2980 UST_APP_MAJOR_VERSION
);
2981 app
->compatible
= 0;
2983 health_code_update(&health_thread_cmd
);
2988 * Calibrate registered applications.
2990 int ust_app_calibrate_glb(struct lttng_ust_calibrate
*calibrate
)
2993 struct lttng_ht_iter iter
;
2994 struct ust_app
*app
;
2998 cds_lfht_for_each_entry(ust_app_ht
->ht
, &iter
.iter
, app
, pid_n
.node
) {
2999 if (!app
->compatible
) {
3001 * TODO: In time, we should notice the caller of this error by
3002 * telling him that this is a version error.
3007 health_code_update(&health_thread_cmd
);
3009 ret
= ustctl_calibrate(app
->sock
, calibrate
);
3013 /* Means that it's not implemented on the tracer side. */
3017 /* TODO: Report error to user */
3018 DBG2("Calibrate app PID %d returned with error %d",
3025 DBG("UST app global domain calibration finished");
3029 health_code_update(&health_thread_cmd
);