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>
29 #include <common/common.h>
30 #include <common/sessiond-comm/sessiond-comm.h>
35 #include "ust-consumer.h"
39 * Delete ust context safely. RCU read lock must be held before calling
43 void delete_ust_app_ctx(int sock
, struct ust_app_ctx
*ua_ctx
)
46 ustctl_release_object(sock
, ua_ctx
->obj
);
53 * Delete ust app event safely. RCU read lock must be held before calling
57 void delete_ust_app_event(int sock
, struct ust_app_event
*ua_event
)
60 struct lttng_ht_iter iter
;
61 struct ust_app_ctx
*ua_ctx
;
63 /* Destroy each context of event */
64 cds_lfht_for_each_entry(ua_event
->ctx
->ht
, &iter
.iter
, ua_ctx
,
66 ret
= lttng_ht_del(ua_event
->ctx
, &iter
);
68 delete_ust_app_ctx(sock
, ua_ctx
);
70 free(ua_event
->filter
);
71 lttng_ht_destroy(ua_event
->ctx
);
73 if (ua_event
->obj
!= NULL
) {
74 ustctl_release_object(sock
, ua_event
->obj
);
81 * Delete ust app stream safely. RCU read lock must be held before calling
85 void delete_ust_app_stream(int sock
, struct ltt_ust_stream
*stream
)
88 ustctl_release_object(sock
, stream
->obj
);
89 lttng_fd_put(LTTNG_FD_APPS
, 2);
96 * Delete ust app channel safely. RCU read lock must be held before calling
100 void delete_ust_app_channel(int sock
, struct ust_app_channel
*ua_chan
)
103 struct lttng_ht_iter iter
;
104 struct ust_app_event
*ua_event
;
105 struct ust_app_ctx
*ua_ctx
;
106 struct ltt_ust_stream
*stream
, *stmp
;
109 cds_list_for_each_entry_safe(stream
, stmp
, &ua_chan
->streams
.head
, list
) {
110 cds_list_del(&stream
->list
);
111 delete_ust_app_stream(sock
, stream
);
115 cds_lfht_for_each_entry(ua_chan
->ctx
->ht
, &iter
.iter
, ua_ctx
, node
.node
) {
116 ret
= lttng_ht_del(ua_chan
->ctx
, &iter
);
118 delete_ust_app_ctx(sock
, ua_ctx
);
120 lttng_ht_destroy(ua_chan
->ctx
);
123 cds_lfht_for_each_entry(ua_chan
->events
->ht
, &iter
.iter
, ua_event
,
125 ret
= lttng_ht_del(ua_chan
->events
, &iter
);
127 delete_ust_app_event(sock
, ua_event
);
129 lttng_ht_destroy(ua_chan
->events
);
131 if (ua_chan
->obj
!= NULL
) {
132 ustctl_release_object(sock
, ua_chan
->obj
);
133 lttng_fd_put(LTTNG_FD_APPS
, 2);
140 * Delete ust app session safely. RCU read lock must be held before calling
144 void delete_ust_app_session(int sock
, struct ust_app_session
*ua_sess
)
147 struct lttng_ht_iter iter
;
148 struct ust_app_channel
*ua_chan
;
150 if (ua_sess
->metadata
) {
151 if (ua_sess
->metadata
->stream_obj
) {
152 ustctl_release_object(sock
, ua_sess
->metadata
->stream_obj
);
153 lttng_fd_put(LTTNG_FD_APPS
, 2);
154 free(ua_sess
->metadata
->stream_obj
);
156 if (ua_sess
->metadata
->obj
) {
157 ustctl_release_object(sock
, ua_sess
->metadata
->obj
);
158 lttng_fd_put(LTTNG_FD_APPS
, 2);
159 free(ua_sess
->metadata
->obj
);
161 trace_ust_destroy_metadata(ua_sess
->metadata
);
164 cds_lfht_for_each_entry(ua_sess
->channels
->ht
, &iter
.iter
, ua_chan
,
166 ret
= lttng_ht_del(ua_sess
->channels
, &iter
);
168 delete_ust_app_channel(sock
, ua_chan
);
170 lttng_ht_destroy(ua_sess
->channels
);
172 if (ua_sess
->handle
!= -1) {
173 ustctl_release_handle(sock
, ua_sess
->handle
);
179 * Delete a traceable application structure from the global list. Never call
180 * this function outside of a call_rcu call.
183 void delete_ust_app(struct ust_app
*app
)
186 struct lttng_ht_iter iter
;
187 struct ust_app_session
*ua_sess
;
191 /* Delete ust app sessions info */
196 cds_lfht_for_each_entry(app
->sessions
->ht
, &iter
.iter
, ua_sess
,
198 ret
= lttng_ht_del(app
->sessions
, &iter
);
200 delete_ust_app_session(app
->sock
, ua_sess
);
202 lttng_ht_destroy(app
->sessions
);
205 * Wait until we have deleted the application from the sock hash table
206 * before closing this socket, otherwise an application could re-use the
207 * socket ID and race with the teardown, using the same hash table entry.
209 * It's OK to leave the close in call_rcu. We want it to stay unique for
210 * all RCU readers that could run concurrently with unregister app,
211 * therefore we _need_ to only close that socket after a grace period. So
212 * it should stay in this RCU callback.
214 * This close() is a very important step of the synchronization model so
215 * every modification to this function must be carefully reviewed.
221 lttng_fd_put(LTTNG_FD_APPS
, 1);
223 DBG2("UST app pid %d deleted", app
->pid
);
230 * URCU intermediate call to delete an UST app.
233 void delete_ust_app_rcu(struct rcu_head
*head
)
235 struct lttng_ht_node_ulong
*node
=
236 caa_container_of(head
, struct lttng_ht_node_ulong
, head
);
237 struct ust_app
*app
=
238 caa_container_of(node
, struct ust_app
, pid_n
);
240 DBG3("Call RCU deleting app PID %d", app
->pid
);
245 * Alloc new UST app session.
248 struct ust_app_session
*alloc_ust_app_session(void)
250 struct ust_app_session
*ua_sess
;
252 /* Init most of the default value by allocating and zeroing */
253 ua_sess
= zmalloc(sizeof(struct ust_app_session
));
254 if (ua_sess
== NULL
) {
259 ua_sess
->handle
= -1;
260 ua_sess
->channels
= lttng_ht_new(0, LTTNG_HT_TYPE_STRING
);
269 * Alloc new UST app channel.
272 struct ust_app_channel
*alloc_ust_app_channel(char *name
,
273 struct lttng_ust_channel
*attr
)
275 struct ust_app_channel
*ua_chan
;
277 /* Init most of the default value by allocating and zeroing */
278 ua_chan
= zmalloc(sizeof(struct ust_app_channel
));
279 if (ua_chan
== NULL
) {
284 /* Setup channel name */
285 strncpy(ua_chan
->name
, name
, sizeof(ua_chan
->name
));
286 ua_chan
->name
[sizeof(ua_chan
->name
) - 1] = '\0';
288 ua_chan
->enabled
= 1;
289 ua_chan
->handle
= -1;
290 ua_chan
->ctx
= lttng_ht_new(0, LTTNG_HT_TYPE_ULONG
);
291 ua_chan
->events
= lttng_ht_new(0, LTTNG_HT_TYPE_STRING
);
292 lttng_ht_node_init_str(&ua_chan
->node
, ua_chan
->name
);
294 CDS_INIT_LIST_HEAD(&ua_chan
->streams
.head
);
296 /* Copy attributes */
298 memcpy(&ua_chan
->attr
, attr
, sizeof(ua_chan
->attr
));
301 DBG3("UST app channel %s allocated", ua_chan
->name
);
310 * Alloc new UST app event.
313 struct ust_app_event
*alloc_ust_app_event(char *name
,
314 struct lttng_ust_event
*attr
)
316 struct ust_app_event
*ua_event
;
318 /* Init most of the default value by allocating and zeroing */
319 ua_event
= zmalloc(sizeof(struct ust_app_event
));
320 if (ua_event
== NULL
) {
325 ua_event
->enabled
= 1;
326 strncpy(ua_event
->name
, name
, sizeof(ua_event
->name
));
327 ua_event
->name
[sizeof(ua_event
->name
) - 1] = '\0';
328 ua_event
->ctx
= lttng_ht_new(0, LTTNG_HT_TYPE_ULONG
);
329 lttng_ht_node_init_str(&ua_event
->node
, ua_event
->name
);
331 /* Copy attributes */
333 memcpy(&ua_event
->attr
, attr
, sizeof(ua_event
->attr
));
336 DBG3("UST app event %s allocated", ua_event
->name
);
345 * Alloc new UST app context.
348 struct ust_app_ctx
*alloc_ust_app_ctx(struct lttng_ust_context
*uctx
)
350 struct ust_app_ctx
*ua_ctx
;
352 ua_ctx
= zmalloc(sizeof(struct ust_app_ctx
));
353 if (ua_ctx
== NULL
) {
358 memcpy(&ua_ctx
->ctx
, uctx
, sizeof(ua_ctx
->ctx
));
361 DBG3("UST app context %d allocated", ua_ctx
->ctx
.ctx
);
368 * Find an ust_app using the sock and return it. RCU read side lock must be
369 * held before calling this helper function.
372 struct ust_app
*find_app_by_sock(int sock
)
374 struct lttng_ht_node_ulong
*node
;
375 struct lttng_ht_iter iter
;
377 lttng_ht_lookup(ust_app_ht_by_sock
, (void *)((unsigned long) sock
), &iter
);
378 node
= lttng_ht_iter_get_node_ulong(&iter
);
380 DBG2("UST app find by sock %d not found", sock
);
384 return caa_container_of(node
, struct ust_app
, sock_n
);
391 * Create the channel context on the tracer.
394 int create_ust_channel_context(struct ust_app_channel
*ua_chan
,
395 struct ust_app_ctx
*ua_ctx
, struct ust_app
*app
)
399 health_code_update(&health_thread_cmd
);
401 ret
= ustctl_add_context(app
->sock
, &ua_ctx
->ctx
,
402 ua_chan
->obj
, &ua_ctx
->obj
);
407 ua_ctx
->handle
= ua_ctx
->obj
->handle
;
409 DBG2("UST app context created successfully for channel %s", ua_chan
->name
);
412 health_code_update(&health_thread_cmd
);
417 * Create the event context on the tracer.
420 int create_ust_event_context(struct ust_app_event
*ua_event
,
421 struct ust_app_ctx
*ua_ctx
, struct ust_app
*app
)
425 health_code_update(&health_thread_cmd
);
427 ret
= ustctl_add_context(app
->sock
, &ua_ctx
->ctx
,
428 ua_event
->obj
, &ua_ctx
->obj
);
433 ua_ctx
->handle
= ua_ctx
->obj
->handle
;
435 DBG2("UST app context created successfully for event %s", ua_event
->name
);
438 health_code_update(&health_thread_cmd
);
443 * Set the filter on the tracer.
446 int set_ust_event_filter(struct ust_app_event
*ua_event
,
451 health_code_update(&health_thread_cmd
);
453 if (!ua_event
->filter
) {
458 ret
= ustctl_set_filter(app
->sock
, ua_event
->filter
,
464 DBG2("UST filter set successfully for event %s", ua_event
->name
);
467 health_code_update(&health_thread_cmd
);
472 * Disable the specified event on to UST tracer for the UST session.
474 static int disable_ust_event(struct ust_app
*app
,
475 struct ust_app_session
*ua_sess
, struct ust_app_event
*ua_event
)
479 health_code_update(&health_thread_cmd
);
481 ret
= ustctl_disable(app
->sock
, ua_event
->obj
);
483 ERR("UST app event %s disable failed for app (pid: %d) "
484 "and session handle %d with ret %d",
485 ua_event
->attr
.name
, app
->pid
, ua_sess
->handle
, ret
);
489 DBG2("UST app event %s disabled successfully for app (pid: %d)",
490 ua_event
->attr
.name
, app
->pid
);
493 health_code_update(&health_thread_cmd
);
498 * Disable the specified channel on to UST tracer for the UST session.
500 static int disable_ust_channel(struct ust_app
*app
,
501 struct ust_app_session
*ua_sess
, struct ust_app_channel
*ua_chan
)
505 health_code_update(&health_thread_cmd
);
507 ret
= ustctl_disable(app
->sock
, ua_chan
->obj
);
509 ERR("UST app channel %s disable failed for app (pid: %d) "
510 "and session handle %d with ret %d",
511 ua_chan
->name
, app
->pid
, ua_sess
->handle
, ret
);
515 DBG2("UST app channel %s disabled successfully for app (pid: %d)",
516 ua_chan
->name
, app
->pid
);
519 health_code_update(&health_thread_cmd
);
524 * Enable the specified channel on to UST tracer for the UST session.
526 static int enable_ust_channel(struct ust_app
*app
,
527 struct ust_app_session
*ua_sess
, struct ust_app_channel
*ua_chan
)
531 health_code_update(&health_thread_cmd
);
533 ret
= ustctl_enable(app
->sock
, ua_chan
->obj
);
535 ERR("UST app channel %s enable failed for app (pid: %d) "
536 "and session handle %d with ret %d",
537 ua_chan
->name
, app
->pid
, ua_sess
->handle
, ret
);
541 ua_chan
->enabled
= 1;
543 DBG2("UST app channel %s enabled successfully for app (pid: %d)",
544 ua_chan
->name
, app
->pid
);
547 health_code_update(&health_thread_cmd
);
552 * Enable the specified event on to UST tracer for the UST session.
554 static int enable_ust_event(struct ust_app
*app
,
555 struct ust_app_session
*ua_sess
, struct ust_app_event
*ua_event
)
559 health_code_update(&health_thread_cmd
);
561 ret
= ustctl_enable(app
->sock
, ua_event
->obj
);
563 ERR("UST app event %s enable failed for app (pid: %d) "
564 "and session handle %d with ret %d",
565 ua_event
->attr
.name
, app
->pid
, ua_sess
->handle
, ret
);
569 DBG2("UST app event %s enabled successfully for app (pid: %d)",
570 ua_event
->attr
.name
, app
->pid
);
573 health_code_update(&health_thread_cmd
);
578 * Open metadata onto the UST tracer for a UST session.
580 static int open_ust_metadata(struct ust_app
*app
,
581 struct ust_app_session
*ua_sess
)
584 struct lttng_ust_channel_attr uattr
;
586 health_code_update(&health_thread_cmd
);
588 uattr
.overwrite
= ua_sess
->metadata
->attr
.overwrite
;
589 uattr
.subbuf_size
= ua_sess
->metadata
->attr
.subbuf_size
;
590 uattr
.num_subbuf
= ua_sess
->metadata
->attr
.num_subbuf
;
591 uattr
.switch_timer_interval
=
592 ua_sess
->metadata
->attr
.switch_timer_interval
;
593 uattr
.read_timer_interval
=
594 ua_sess
->metadata
->attr
.read_timer_interval
;
595 uattr
.output
= ua_sess
->metadata
->attr
.output
;
597 /* We are going to receive 2 fds, we need to reserve them. */
598 ret
= lttng_fd_get(LTTNG_FD_APPS
, 2);
600 ERR("Exhausted number of available FD upon metadata open");
603 /* UST tracer metadata creation */
604 ret
= ustctl_open_metadata(app
->sock
, ua_sess
->handle
, &uattr
,
605 &ua_sess
->metadata
->obj
);
607 ERR("UST app open metadata failed for app pid:%d with ret %d",
612 ua_sess
->metadata
->handle
= ua_sess
->metadata
->obj
->handle
;
615 health_code_update(&health_thread_cmd
);
620 * Create stream onto the UST tracer for a UST session.
622 static int create_ust_stream(struct ust_app
*app
,
623 struct ust_app_session
*ua_sess
)
627 health_code_update(&health_thread_cmd
);
629 /* We are going to receive 2 fds, we need to reserve them. */
630 ret
= lttng_fd_get(LTTNG_FD_APPS
, 2);
632 ERR("Exhausted number of available FD upon metadata stream create");
635 ret
= ustctl_create_stream(app
->sock
, ua_sess
->metadata
->obj
,
636 &ua_sess
->metadata
->stream_obj
);
638 ERR("UST create metadata stream failed");
643 health_code_update(&health_thread_cmd
);
648 * Create the specified channel onto the UST tracer for a UST session.
650 static int create_ust_channel(struct ust_app
*app
,
651 struct ust_app_session
*ua_sess
, struct ust_app_channel
*ua_chan
)
655 health_code_update(&health_thread_cmd
);
657 /* TODO: remove cast and use lttng-ust-abi.h */
659 /* We are going to receive 2 fds, we need to reserve them. */
660 ret
= lttng_fd_get(LTTNG_FD_APPS
, 2);
662 ERR("Exhausted number of available FD upon create channel");
666 health_code_update(&health_thread_cmd
);
668 ret
= ustctl_create_channel(app
->sock
, ua_sess
->handle
,
669 (struct lttng_ust_channel_attr
*)&ua_chan
->attr
, &ua_chan
->obj
);
671 ERR("Creating channel %s for app (pid: %d, sock: %d) "
672 "and session handle %d with ret %d",
673 ua_chan
->name
, app
->pid
, app
->sock
,
674 ua_sess
->handle
, ret
);
675 lttng_fd_put(LTTNG_FD_APPS
, 2);
679 ua_chan
->handle
= ua_chan
->obj
->handle
;
681 DBG2("UST app channel %s created successfully for pid:%d and sock:%d",
682 ua_chan
->name
, app
->pid
, app
->sock
);
684 health_code_update(&health_thread_cmd
);
686 /* If channel is not enabled, disable it on the tracer */
687 if (!ua_chan
->enabled
) {
688 ret
= disable_ust_channel(app
, ua_sess
, ua_chan
);
695 health_code_update(&health_thread_cmd
);
700 * Create the specified event onto the UST tracer for a UST session.
703 int create_ust_event(struct ust_app
*app
, struct ust_app_session
*ua_sess
,
704 struct ust_app_channel
*ua_chan
, struct ust_app_event
*ua_event
)
708 health_code_update(&health_thread_cmd
);
710 /* Create UST event on tracer */
711 ret
= ustctl_create_event(app
->sock
, &ua_event
->attr
, ua_chan
->obj
,
714 if (ret
== -EEXIST
|| ret
== -EPERM
) {
718 ERR("Error ustctl create event %s for app pid: %d with ret %d",
719 ua_event
->attr
.name
, app
->pid
, ret
);
723 ua_event
->handle
= ua_event
->obj
->handle
;
725 DBG2("UST app event %s created successfully for pid:%d",
726 ua_event
->attr
.name
, app
->pid
);
728 health_code_update(&health_thread_cmd
);
730 /* If event not enabled, disable it on the tracer */
731 if (ua_event
->enabled
== 0) {
732 ret
= disable_ust_event(app
, ua_sess
, ua_event
);
735 * If we hit an EPERM, something is wrong with our disable call. If
736 * we get an EEXIST, there is a problem on the tracer side since we
741 /* Code flow problem */
744 /* It's OK for our use case. */
755 health_code_update(&health_thread_cmd
);
760 * Copy data between an UST app event and a LTT event.
762 static void shadow_copy_event(struct ust_app_event
*ua_event
,
763 struct ltt_ust_event
*uevent
)
765 struct lttng_ht_iter iter
;
766 struct ltt_ust_context
*uctx
;
767 struct ust_app_ctx
*ua_ctx
;
769 strncpy(ua_event
->name
, uevent
->attr
.name
, sizeof(ua_event
->name
));
770 ua_event
->name
[sizeof(ua_event
->name
) - 1] = '\0';
772 ua_event
->enabled
= uevent
->enabled
;
774 /* Copy event attributes */
775 memcpy(&ua_event
->attr
, &uevent
->attr
, sizeof(ua_event
->attr
));
777 /* Copy filter bytecode */
778 if (uevent
->filter
) {
779 ua_event
->filter
= zmalloc(sizeof(*ua_event
->filter
) +
780 uevent
->filter
->len
);
781 if (!ua_event
->filter
) {
784 memcpy(ua_event
->filter
, uevent
->filter
,
785 sizeof(*ua_event
->filter
) + uevent
->filter
->len
);
787 cds_lfht_for_each_entry(uevent
->ctx
->ht
, &iter
.iter
, uctx
, node
.node
) {
788 ua_ctx
= alloc_ust_app_ctx(&uctx
->ctx
);
789 if (ua_ctx
== NULL
) {
790 /* malloc() failed. We should simply stop */
794 lttng_ht_node_init_ulong(&ua_ctx
->node
,
795 (unsigned long) ua_ctx
->ctx
.ctx
);
796 lttng_ht_add_unique_ulong(ua_event
->ctx
, &ua_ctx
->node
);
801 * Copy data between an UST app channel and a LTT channel.
803 static void shadow_copy_channel(struct ust_app_channel
*ua_chan
,
804 struct ltt_ust_channel
*uchan
)
806 struct lttng_ht_iter iter
;
807 struct lttng_ht_node_str
*ua_event_node
;
808 struct ltt_ust_event
*uevent
;
809 struct ltt_ust_context
*uctx
;
810 struct ust_app_event
*ua_event
;
811 struct ust_app_ctx
*ua_ctx
;
813 DBG2("UST app shadow copy of channel %s started", ua_chan
->name
);
815 strncpy(ua_chan
->name
, uchan
->name
, sizeof(ua_chan
->name
));
816 ua_chan
->name
[sizeof(ua_chan
->name
) - 1] = '\0';
817 /* Copy event attributes */
818 memcpy(&ua_chan
->attr
, &uchan
->attr
, sizeof(ua_chan
->attr
));
820 ua_chan
->enabled
= uchan
->enabled
;
822 cds_lfht_for_each_entry(uchan
->ctx
->ht
, &iter
.iter
, uctx
, node
.node
) {
823 ua_ctx
= alloc_ust_app_ctx(&uctx
->ctx
);
824 if (ua_ctx
== NULL
) {
827 lttng_ht_node_init_ulong(&ua_ctx
->node
,
828 (unsigned long) ua_ctx
->ctx
.ctx
);
829 lttng_ht_add_unique_ulong(ua_chan
->ctx
, &ua_ctx
->node
);
832 /* Copy all events from ltt ust channel to ust app channel */
833 cds_lfht_for_each_entry(uchan
->events
->ht
, &iter
.iter
, uevent
, node
.node
) {
834 struct lttng_ht_iter uiter
;
836 lttng_ht_lookup(ua_chan
->events
, (void *) uevent
->attr
.name
, &uiter
);
837 ua_event_node
= lttng_ht_iter_get_node_str(&uiter
);
838 if (ua_event_node
== NULL
) {
839 DBG2("UST event %s not found on shadow copy channel",
841 ua_event
= alloc_ust_app_event(uevent
->attr
.name
, &uevent
->attr
);
842 if (ua_event
== NULL
) {
845 shadow_copy_event(ua_event
, uevent
);
846 lttng_ht_add_unique_str(ua_chan
->events
, &ua_event
->node
);
850 DBG3("UST app shadow copy of channel %s done", ua_chan
->name
);
854 * Copy data between a UST app session and a regular LTT session.
856 static void shadow_copy_session(struct ust_app_session
*ua_sess
,
857 struct ltt_ust_session
*usess
, struct ust_app
*app
)
859 struct lttng_ht_node_str
*ua_chan_node
;
860 struct lttng_ht_iter iter
;
861 struct ltt_ust_channel
*uchan
;
862 struct ust_app_channel
*ua_chan
;
868 /* Get date and time for unique app path */
870 timeinfo
= localtime(&rawtime
);
871 strftime(datetime
, sizeof(datetime
), "%Y%m%d-%H%M%S", timeinfo
);
873 DBG2("Shadow copy of session handle %d", ua_sess
->handle
);
875 ua_sess
->id
= usess
->id
;
876 ua_sess
->uid
= usess
->uid
;
877 ua_sess
->gid
= usess
->gid
;
879 ret
= snprintf(ua_sess
->path
, PATH_MAX
, "%s-%d-%s/", app
->name
, app
->pid
,
882 PERROR("asprintf UST shadow copy session");
883 /* TODO: We cannot return an error from here.. */
887 /* TODO: support all UST domain */
889 /* Iterate over all channels in global domain. */
890 cds_lfht_for_each_entry(usess
->domain_global
.channels
->ht
, &iter
.iter
,
892 struct lttng_ht_iter uiter
;
894 lttng_ht_lookup(ua_sess
->channels
, (void *)uchan
->name
, &uiter
);
895 ua_chan_node
= lttng_ht_iter_get_node_str(&uiter
);
896 if (ua_chan_node
!= NULL
) {
897 /* Session exist. Contiuing. */
901 DBG2("Channel %s not found on shadow session copy, creating it",
903 ua_chan
= alloc_ust_app_channel(uchan
->name
, &uchan
->attr
);
904 if (ua_chan
== NULL
) {
905 /* malloc failed FIXME: Might want to do handle ENOMEM .. */
909 shadow_copy_channel(ua_chan
, uchan
);
910 lttng_ht_add_unique_str(ua_sess
->channels
, &ua_chan
->node
);
915 * Lookup sesison wrapper.
918 void __lookup_session_by_app(struct ltt_ust_session
*usess
,
919 struct ust_app
*app
, struct lttng_ht_iter
*iter
)
921 /* Get right UST app session from app */
922 lttng_ht_lookup(app
->sessions
, (void *)((unsigned long) usess
->id
), iter
);
926 * Return ust app session from the app session hashtable using the UST session
929 static struct ust_app_session
*lookup_session_by_app(
930 struct ltt_ust_session
*usess
, struct ust_app
*app
)
932 struct lttng_ht_iter iter
;
933 struct lttng_ht_node_ulong
*node
;
935 __lookup_session_by_app(usess
, app
, &iter
);
936 node
= lttng_ht_iter_get_node_ulong(&iter
);
941 return caa_container_of(node
, struct ust_app_session
, node
);
948 * Create a UST session onto the tracer of app and add it the session
951 * Return ust app session or NULL on error.
953 static struct ust_app_session
*create_ust_app_session(
954 struct ltt_ust_session
*usess
, struct ust_app
*app
)
957 struct ust_app_session
*ua_sess
;
959 health_code_update(&health_thread_cmd
);
961 ua_sess
= lookup_session_by_app(usess
, app
);
962 if (ua_sess
== NULL
) {
963 DBG2("UST app pid: %d session id %d not found, creating it",
964 app
->pid
, usess
->id
);
965 ua_sess
= alloc_ust_app_session();
966 if (ua_sess
== NULL
) {
967 /* Only malloc can failed so something is really wrong */
970 shadow_copy_session(ua_sess
, usess
, app
);
973 health_code_update(&health_thread_cmd
);
975 if (ua_sess
->handle
== -1) {
976 ret
= ustctl_create_session(app
->sock
);
978 ERR("Creating session for app pid %d", app
->pid
);
979 delete_ust_app_session(-1, ua_sess
);
980 /* This means that the tracer is gone... */
981 ua_sess
= (void*) -1UL;
985 ua_sess
->handle
= ret
;
987 /* Add ust app session to app's HT */
988 lttng_ht_node_init_ulong(&ua_sess
->node
, (unsigned long) ua_sess
->id
);
989 lttng_ht_add_unique_ulong(app
->sessions
, &ua_sess
->node
);
991 DBG2("UST app session created successfully with handle %d", ret
);
995 health_code_update(&health_thread_cmd
);
1000 * Create a context for the channel on the tracer.
1003 int create_ust_app_channel_context(struct ust_app_session
*ua_sess
,
1004 struct ust_app_channel
*ua_chan
, struct lttng_ust_context
*uctx
,
1005 struct ust_app
*app
)
1008 struct lttng_ht_iter iter
;
1009 struct lttng_ht_node_ulong
*node
;
1010 struct ust_app_ctx
*ua_ctx
;
1012 DBG2("UST app adding context to channel %s", ua_chan
->name
);
1014 lttng_ht_lookup(ua_chan
->ctx
, (void *)((unsigned long)uctx
->ctx
), &iter
);
1015 node
= lttng_ht_iter_get_node_ulong(&iter
);
1021 ua_ctx
= alloc_ust_app_ctx(uctx
);
1022 if (ua_ctx
== NULL
) {
1028 lttng_ht_node_init_ulong(&ua_ctx
->node
, (unsigned long) ua_ctx
->ctx
.ctx
);
1029 lttng_ht_add_unique_ulong(ua_chan
->ctx
, &ua_ctx
->node
);
1031 ret
= create_ust_channel_context(ua_chan
, ua_ctx
, app
);
1041 * Create an UST context and enable it for the event on the tracer.
1044 int create_ust_app_event_context(struct ust_app_session
*ua_sess
,
1045 struct ust_app_event
*ua_event
, struct lttng_ust_context
*uctx
,
1046 struct ust_app
*app
)
1049 struct lttng_ht_iter iter
;
1050 struct lttng_ht_node_ulong
*node
;
1051 struct ust_app_ctx
*ua_ctx
;
1053 DBG2("UST app adding context to event %s", ua_event
->name
);
1055 lttng_ht_lookup(ua_event
->ctx
, (void *)((unsigned long)uctx
->ctx
), &iter
);
1056 node
= lttng_ht_iter_get_node_ulong(&iter
);
1062 ua_ctx
= alloc_ust_app_ctx(uctx
);
1063 if (ua_ctx
== NULL
) {
1069 lttng_ht_node_init_ulong(&ua_ctx
->node
, (unsigned long) ua_ctx
->ctx
.ctx
);
1070 lttng_ht_add_unique_ulong(ua_event
->ctx
, &ua_ctx
->node
);
1072 ret
= create_ust_event_context(ua_event
, ua_ctx
, app
);
1082 * Set UST filter for the event on the tracer.
1085 int set_ust_app_event_filter(struct ust_app_session
*ua_sess
,
1086 struct ust_app_event
*ua_event
,
1087 struct lttng_filter_bytecode
*bytecode
,
1088 struct ust_app
*app
)
1092 DBG2("UST app adding context to event %s", ua_event
->name
);
1094 /* Copy filter bytecode */
1095 ua_event
->filter
= zmalloc(sizeof(*ua_event
->filter
) + bytecode
->len
);
1096 if (!ua_event
->filter
) {
1099 memcpy(ua_event
->filter
, bytecode
,
1100 sizeof(*ua_event
->filter
) + bytecode
->len
);
1101 ret
= set_ust_event_filter(ua_event
, app
);
1111 * Enable on the tracer side a ust app event for the session and channel.
1114 int enable_ust_app_event(struct ust_app_session
*ua_sess
,
1115 struct ust_app_event
*ua_event
, struct ust_app
*app
)
1119 ret
= enable_ust_event(app
, ua_sess
, ua_event
);
1124 ua_event
->enabled
= 1;
1131 * Disable on the tracer side a ust app event for the session and channel.
1133 static int disable_ust_app_event(struct ust_app_session
*ua_sess
,
1134 struct ust_app_event
*ua_event
, struct ust_app
*app
)
1138 ret
= disable_ust_event(app
, ua_sess
, ua_event
);
1143 ua_event
->enabled
= 0;
1150 * Lookup ust app channel for session and disable it on the tracer side.
1153 int disable_ust_app_channel(struct ust_app_session
*ua_sess
,
1154 struct ust_app_channel
*ua_chan
, struct ust_app
*app
)
1158 ret
= disable_ust_channel(app
, ua_sess
, ua_chan
);
1163 ua_chan
->enabled
= 0;
1170 * Lookup ust app channel for session and enable it on the tracer side.
1172 static int enable_ust_app_channel(struct ust_app_session
*ua_sess
,
1173 struct ltt_ust_channel
*uchan
, struct ust_app
*app
)
1176 struct lttng_ht_iter iter
;
1177 struct lttng_ht_node_str
*ua_chan_node
;
1178 struct ust_app_channel
*ua_chan
;
1180 lttng_ht_lookup(ua_sess
->channels
, (void *)uchan
->name
, &iter
);
1181 ua_chan_node
= lttng_ht_iter_get_node_str(&iter
);
1182 if (ua_chan_node
== NULL
) {
1183 DBG2("Unable to find channel %s in ust session id %u",
1184 uchan
->name
, ua_sess
->id
);
1188 ua_chan
= caa_container_of(ua_chan_node
, struct ust_app_channel
, node
);
1190 ret
= enable_ust_channel(app
, ua_sess
, ua_chan
);
1200 * Create UST app channel and create it on the tracer.
1202 static struct ust_app_channel
*create_ust_app_channel(
1203 struct ust_app_session
*ua_sess
, struct ltt_ust_channel
*uchan
,
1204 struct ust_app
*app
)
1207 struct lttng_ht_iter iter
;
1208 struct lttng_ht_node_str
*ua_chan_node
;
1209 struct ust_app_channel
*ua_chan
;
1211 /* Lookup channel in the ust app session */
1212 lttng_ht_lookup(ua_sess
->channels
, (void *)uchan
->name
, &iter
);
1213 ua_chan_node
= lttng_ht_iter_get_node_str(&iter
);
1214 if (ua_chan_node
!= NULL
) {
1215 ua_chan
= caa_container_of(ua_chan_node
, struct ust_app_channel
, node
);
1219 ua_chan
= alloc_ust_app_channel(uchan
->name
, &uchan
->attr
);
1220 if (ua_chan
== NULL
) {
1221 /* Only malloc can fail here */
1224 shadow_copy_channel(ua_chan
, uchan
);
1226 ret
= create_ust_channel(app
, ua_sess
, ua_chan
);
1228 /* Not found previously means that it does not exist on the tracer */
1229 assert(ret
!= -EEXIST
);
1233 lttng_ht_add_unique_str(ua_sess
->channels
, &ua_chan
->node
);
1235 DBG2("UST app create channel %s for PID %d completed", ua_chan
->name
,
1242 delete_ust_app_channel(-1, ua_chan
);
1247 * Create UST app event and create it on the tracer side.
1250 int create_ust_app_event(struct ust_app_session
*ua_sess
,
1251 struct ust_app_channel
*ua_chan
, struct ltt_ust_event
*uevent
,
1252 struct ust_app
*app
)
1255 struct lttng_ht_iter iter
;
1256 struct lttng_ht_node_str
*ua_event_node
;
1257 struct ust_app_event
*ua_event
;
1259 /* Get event node */
1260 lttng_ht_lookup(ua_chan
->events
, (void *)uevent
->attr
.name
, &iter
);
1261 ua_event_node
= lttng_ht_iter_get_node_str(&iter
);
1262 if (ua_event_node
!= NULL
) {
1267 /* Does not exist so create one */
1268 ua_event
= alloc_ust_app_event(uevent
->attr
.name
, &uevent
->attr
);
1269 if (ua_event
== NULL
) {
1270 /* Only malloc can failed so something is really wrong */
1274 shadow_copy_event(ua_event
, uevent
);
1276 /* Create it on the tracer side */
1277 ret
= create_ust_event(app
, ua_sess
, ua_chan
, ua_event
);
1279 /* Not found previously means that it does not exist on the tracer */
1280 assert(ret
!= -EEXIST
);
1284 lttng_ht_add_unique_str(ua_chan
->events
, &ua_event
->node
);
1286 DBG2("UST app create event %s for PID %d completed", ua_event
->name
,
1293 /* Valid. Calling here is already in a read side lock */
1294 delete_ust_app_event(-1, ua_event
);
1299 * Create UST metadata and open it on the tracer side.
1301 static int create_ust_app_metadata(struct ust_app_session
*ua_sess
,
1302 char *pathname
, struct ust_app
*app
)
1306 if (ua_sess
->metadata
== NULL
) {
1307 /* Allocate UST metadata */
1308 ua_sess
->metadata
= trace_ust_create_metadata(pathname
);
1309 if (ua_sess
->metadata
== NULL
) {
1310 /* malloc() failed */
1314 ret
= open_ust_metadata(app
, ua_sess
);
1316 DBG3("Opening metadata failed. Cleaning up memory");
1318 /* Cleanup failed metadata struct */
1319 free(ua_sess
->metadata
);
1321 * This is very important because delete_ust_app_session check if
1322 * the pointer is null or not in order to delete the metadata.
1324 ua_sess
->metadata
= NULL
;
1328 DBG2("UST metadata opened for app pid %d", app
->pid
);
1331 /* Open UST metadata stream */
1332 if (ua_sess
->metadata
->stream_obj
== NULL
) {
1333 ret
= create_ust_stream(app
, ua_sess
);
1338 ret
= snprintf(ua_sess
->metadata
->pathname
, PATH_MAX
,
1339 "%s/metadata", ua_sess
->path
);
1341 PERROR("asprintf UST create stream");
1345 DBG2("UST metadata stream object created for app pid %d",
1348 ERR("Attempting to create stream without metadata opened");
1359 * Return pointer to traceable apps list.
1361 struct lttng_ht
*ust_app_get_ht(void)
1367 * Return ust app pointer or NULL if not found.
1369 struct ust_app
*ust_app_find_by_pid(pid_t pid
)
1371 struct lttng_ht_node_ulong
*node
;
1372 struct lttng_ht_iter iter
;
1375 lttng_ht_lookup(ust_app_ht
, (void *)((unsigned long) pid
), &iter
);
1376 node
= lttng_ht_iter_get_node_ulong(&iter
);
1378 DBG2("UST app no found with pid %d", pid
);
1383 DBG2("Found UST app by pid %d", pid
);
1385 return caa_container_of(node
, struct ust_app
, pid_n
);
1393 * Using pid and uid (of the app), allocate a new ust_app struct and
1394 * add it to the global traceable app list.
1396 * On success, return 0, else return malloc -ENOMEM, or -EINVAL if app
1397 * bitness is not supported.
1399 int ust_app_register(struct ust_register_msg
*msg
, int sock
)
1401 struct ust_app
*lta
;
1404 if ((msg
->bits_per_long
== 64 &&
1405 (uatomic_read(&ust_consumerd64_fd
) == -EINVAL
))
1406 || (msg
->bits_per_long
== 32 &&
1407 (uatomic_read(&ust_consumerd32_fd
) == -EINVAL
))) {
1408 ERR("Registration failed: application \"%s\" (pid: %d) has "
1409 "%d-bit long, but no consumerd for this long size is available.\n",
1410 msg
->name
, msg
->pid
, msg
->bits_per_long
);
1415 lttng_fd_put(LTTNG_FD_APPS
, 1);
1418 if (msg
->major
!= LTTNG_UST_COMM_MAJOR
) {
1419 ERR("Registration failed: application \"%s\" (pid: %d) has "
1420 "communication protocol version %u.%u, but sessiond supports 2.x.\n",
1421 msg
->name
, msg
->pid
, msg
->major
, msg
->minor
);
1426 lttng_fd_put(LTTNG_FD_APPS
, 1);
1429 lta
= zmalloc(sizeof(struct ust_app
));
1435 lta
->ppid
= msg
->ppid
;
1436 lta
->uid
= msg
->uid
;
1437 lta
->gid
= msg
->gid
;
1438 lta
->compatible
= 0; /* Not compatible until proven */
1439 lta
->bits_per_long
= msg
->bits_per_long
;
1440 lta
->v_major
= msg
->major
;
1441 lta
->v_minor
= msg
->minor
;
1442 strncpy(lta
->name
, msg
->name
, sizeof(lta
->name
));
1443 lta
->name
[16] = '\0';
1444 lta
->sessions
= lttng_ht_new(0, LTTNG_HT_TYPE_ULONG
);
1446 lta
->pid
= msg
->pid
;
1447 lttng_ht_node_init_ulong(<a
->pid_n
, (unsigned long)lta
->pid
);
1449 lttng_ht_node_init_ulong(<a
->sock_n
, (unsigned long)lta
->sock
);
1454 * On a re-registration, we want to kick out the previous registration of
1457 lttng_ht_add_replace_ulong(ust_app_ht
, <a
->pid_n
);
1460 * The socket _should_ be unique until _we_ call close. So, a add_unique
1461 * for the ust_app_ht_by_sock is used which asserts fail if the entry was
1462 * already in the table.
1464 lttng_ht_add_unique_ulong(ust_app_ht_by_sock
, <a
->sock_n
);
1468 DBG("App registered with pid:%d ppid:%d uid:%d gid:%d sock:%d name:%s"
1469 " (version %d.%d)", lta
->pid
, lta
->ppid
, lta
->uid
, lta
->gid
,
1470 lta
->sock
, lta
->name
, lta
->v_major
, lta
->v_minor
);
1476 * Unregister app by removing it from the global traceable app list and freeing
1479 * The socket is already closed at this point so no close to sock.
1481 void ust_app_unregister(int sock
)
1483 struct ust_app
*lta
;
1484 struct lttng_ht_node_ulong
*node
;
1485 struct lttng_ht_iter iter
;
1490 /* Get the node reference for a call_rcu */
1491 lttng_ht_lookup(ust_app_ht_by_sock
, (void *)((unsigned long) sock
), &iter
);
1492 node
= lttng_ht_iter_get_node_ulong(&iter
);
1494 ERR("Unable to find app by sock %d", sock
);
1498 lta
= caa_container_of(node
, struct ust_app
, sock_n
);
1500 DBG("PID %d unregistering with sock %d", lta
->pid
, sock
);
1502 /* Remove application from PID hash table */
1503 ret
= lttng_ht_del(ust_app_ht_by_sock
, &iter
);
1506 /* Assign second node for deletion */
1507 iter
.iter
.node
= <a
->pid_n
.node
;
1509 ret
= lttng_ht_del(ust_app_ht
, &iter
);
1513 call_rcu(<a
->pid_n
.head
, delete_ust_app_rcu
);
1521 * Return traceable_app_count
1523 unsigned long ust_app_list_count(void)
1525 unsigned long count
;
1528 count
= lttng_ht_get_count(ust_app_ht
);
1535 * Fill events array with all events name of all registered apps.
1537 int ust_app_list_events(struct lttng_event
**events
)
1540 size_t nbmem
, count
= 0;
1541 struct lttng_ht_iter iter
;
1542 struct ust_app
*app
;
1543 struct lttng_event
*tmp
;
1545 nbmem
= UST_APP_EVENT_LIST_SIZE
;
1546 tmp
= zmalloc(nbmem
* sizeof(struct lttng_event
));
1548 PERROR("zmalloc ust app events");
1555 cds_lfht_for_each_entry(ust_app_ht
->ht
, &iter
.iter
, app
, pid_n
.node
) {
1556 struct lttng_ust_tracepoint_iter uiter
;
1558 health_code_update(&health_thread_cmd
);
1560 if (!app
->compatible
) {
1562 * TODO: In time, we should notice the caller of this error by
1563 * telling him that this is a version error.
1567 handle
= ustctl_tracepoint_list(app
->sock
);
1569 ERR("UST app list events getting handle failed for app pid %d",
1574 while ((ret
= ustctl_tracepoint_list_get(app
->sock
, handle
,
1575 &uiter
)) != -ENOENT
) {
1576 health_code_update(&health_thread_cmd
);
1577 if (count
>= nbmem
) {
1578 /* In case the realloc fails, we free the memory */
1579 void *tmp_ptr
= (void *) tmp
;
1580 DBG2("Reallocating event list from %zu to %zu entries", nbmem
,
1583 tmp
= realloc(tmp
, nbmem
* sizeof(struct lttng_event
));
1585 PERROR("realloc ust app events");
1591 memcpy(tmp
[count
].name
, uiter
.name
, LTTNG_UST_SYM_NAME_LEN
);
1592 tmp
[count
].loglevel
= uiter
.loglevel
;
1593 tmp
[count
].type
= (enum lttng_event_type
) LTTNG_UST_TRACEPOINT
;
1594 tmp
[count
].pid
= app
->pid
;
1595 tmp
[count
].enabled
= -1;
1603 DBG2("UST app list events done (%zu events)", count
);
1608 health_code_update(&health_thread_cmd
);
1613 * Fill events array with all events name of all registered apps.
1615 int ust_app_list_event_fields(struct lttng_event_field
**fields
)
1618 size_t nbmem
, count
= 0;
1619 struct lttng_ht_iter iter
;
1620 struct ust_app
*app
;
1621 struct lttng_event_field
*tmp
;
1623 nbmem
= UST_APP_EVENT_LIST_SIZE
;
1624 tmp
= zmalloc(nbmem
* sizeof(struct lttng_event_field
));
1626 PERROR("zmalloc ust app event fields");
1633 cds_lfht_for_each_entry(ust_app_ht
->ht
, &iter
.iter
, app
, pid_n
.node
) {
1634 struct lttng_ust_field_iter uiter
;
1636 health_code_update(&health_thread_cmd
);
1638 if (!app
->compatible
) {
1640 * TODO: In time, we should notice the caller of this error by
1641 * telling him that this is a version error.
1645 handle
= ustctl_tracepoint_field_list(app
->sock
);
1647 ERR("UST app list event fields getting handle failed for app pid %d",
1652 while ((ret
= ustctl_tracepoint_field_list_get(app
->sock
, handle
,
1653 &uiter
)) != -ENOENT
) {
1654 health_code_update(&health_thread_cmd
);
1655 if (count
>= nbmem
) {
1656 /* In case the realloc fails, we free the memory */
1657 void *tmp_ptr
= (void *) tmp
;
1658 DBG2("Reallocating event field list from %zu to %zu entries", nbmem
,
1661 tmp
= realloc(tmp
, nbmem
* sizeof(struct lttng_event_field
));
1663 PERROR("realloc ust app event fields");
1670 memcpy(tmp
[count
].field_name
, uiter
.field_name
, LTTNG_UST_SYM_NAME_LEN
);
1671 tmp
[count
].type
= uiter
.type
;
1672 tmp
[count
].nowrite
= uiter
.nowrite
;
1674 memcpy(tmp
[count
].event
.name
, uiter
.event_name
, LTTNG_UST_SYM_NAME_LEN
);
1675 tmp
[count
].event
.loglevel
= uiter
.loglevel
;
1676 tmp
[count
].event
.type
= LTTNG_UST_TRACEPOINT
;
1677 tmp
[count
].event
.pid
= app
->pid
;
1678 tmp
[count
].event
.enabled
= -1;
1686 DBG2("UST app list event fields done (%zu events)", count
);
1691 health_code_update(&health_thread_cmd
);
1696 * Free and clean all traceable apps of the global list.
1698 void ust_app_clean_list(void)
1701 struct ust_app
*app
;
1702 struct lttng_ht_iter iter
;
1704 DBG2("UST app cleaning registered apps hash table");
1708 cds_lfht_for_each_entry(ust_app_ht
->ht
, &iter
.iter
, app
, pid_n
.node
) {
1709 ret
= lttng_ht_del(ust_app_ht
, &iter
);
1711 call_rcu(&app
->pid_n
.head
, delete_ust_app_rcu
);
1714 /* Cleanup socket hash table */
1715 cds_lfht_for_each_entry(ust_app_ht_by_sock
->ht
, &iter
.iter
, app
,
1717 ret
= lttng_ht_del(ust_app_ht_by_sock
, &iter
);
1721 /* Destroy is done only when the ht is empty */
1722 lttng_ht_destroy(ust_app_ht
);
1723 lttng_ht_destroy(ust_app_ht_by_sock
);
1729 * Init UST app hash table.
1731 void ust_app_ht_alloc(void)
1733 ust_app_ht
= lttng_ht_new(0, LTTNG_HT_TYPE_ULONG
);
1734 ust_app_ht_by_sock
= lttng_ht_new(0, LTTNG_HT_TYPE_ULONG
);
1738 * For a specific UST session, disable the channel for all registered apps.
1740 int ust_app_disable_channel_glb(struct ltt_ust_session
*usess
,
1741 struct ltt_ust_channel
*uchan
)
1744 struct lttng_ht_iter iter
;
1745 struct lttng_ht_node_str
*ua_chan_node
;
1746 struct ust_app
*app
;
1747 struct ust_app_session
*ua_sess
;
1748 struct ust_app_channel
*ua_chan
;
1750 if (usess
== NULL
|| uchan
== NULL
) {
1751 ERR("Disabling UST global channel with NULL values");
1756 DBG2("UST app disabling channel %s from global domain for session id %d",
1757 uchan
->name
, usess
->id
);
1761 /* For every registered applications */
1762 cds_lfht_for_each_entry(ust_app_ht
->ht
, &iter
.iter
, app
, pid_n
.node
) {
1763 struct lttng_ht_iter uiter
;
1764 if (!app
->compatible
) {
1766 * TODO: In time, we should notice the caller of this error by
1767 * telling him that this is a version error.
1771 ua_sess
= lookup_session_by_app(usess
, app
);
1772 if (ua_sess
== NULL
) {
1777 lttng_ht_lookup(ua_sess
->channels
, (void *)uchan
->name
, &uiter
);
1778 ua_chan_node
= lttng_ht_iter_get_node_str(&uiter
);
1779 /* If the session if found for the app, the channel must be there */
1780 assert(ua_chan_node
);
1782 ua_chan
= caa_container_of(ua_chan_node
, struct ust_app_channel
, node
);
1783 /* The channel must not be already disabled */
1784 assert(ua_chan
->enabled
== 1);
1786 /* Disable channel onto application */
1787 ret
= disable_ust_app_channel(ua_sess
, ua_chan
, app
);
1789 /* XXX: We might want to report this error at some point... */
1801 * For a specific UST session, enable the channel for all registered apps.
1803 int ust_app_enable_channel_glb(struct ltt_ust_session
*usess
,
1804 struct ltt_ust_channel
*uchan
)
1807 struct lttng_ht_iter iter
;
1808 struct ust_app
*app
;
1809 struct ust_app_session
*ua_sess
;
1811 if (usess
== NULL
|| uchan
== NULL
) {
1812 ERR("Adding UST global channel to NULL values");
1817 DBG2("UST app enabling channel %s to global domain for session id %d",
1818 uchan
->name
, usess
->id
);
1822 /* For every registered applications */
1823 cds_lfht_for_each_entry(ust_app_ht
->ht
, &iter
.iter
, app
, pid_n
.node
) {
1824 if (!app
->compatible
) {
1826 * TODO: In time, we should notice the caller of this error by
1827 * telling him that this is a version error.
1831 ua_sess
= lookup_session_by_app(usess
, app
);
1832 if (ua_sess
== NULL
) {
1836 /* Enable channel onto application */
1837 ret
= enable_ust_app_channel(ua_sess
, uchan
, app
);
1839 /* XXX: We might want to report this error at some point... */
1851 * Disable an event in a channel and for a specific session.
1853 int ust_app_disable_event_glb(struct ltt_ust_session
*usess
,
1854 struct ltt_ust_channel
*uchan
, struct ltt_ust_event
*uevent
)
1857 struct lttng_ht_iter iter
, uiter
;
1858 struct lttng_ht_node_str
*ua_chan_node
, *ua_event_node
;
1859 struct ust_app
*app
;
1860 struct ust_app_session
*ua_sess
;
1861 struct ust_app_channel
*ua_chan
;
1862 struct ust_app_event
*ua_event
;
1864 DBG("UST app disabling event %s for all apps in channel "
1865 "%s for session id %d", uevent
->attr
.name
, uchan
->name
, usess
->id
);
1869 /* For all registered applications */
1870 cds_lfht_for_each_entry(ust_app_ht
->ht
, &iter
.iter
, app
, pid_n
.node
) {
1871 if (!app
->compatible
) {
1873 * TODO: In time, we should notice the caller of this error by
1874 * telling him that this is a version error.
1878 ua_sess
= lookup_session_by_app(usess
, app
);
1879 if (ua_sess
== NULL
) {
1884 /* Lookup channel in the ust app session */
1885 lttng_ht_lookup(ua_sess
->channels
, (void *)uchan
->name
, &uiter
);
1886 ua_chan_node
= lttng_ht_iter_get_node_str(&uiter
);
1887 if (ua_chan_node
== NULL
) {
1888 DBG2("Channel %s not found in session id %d for app pid %d."
1889 "Skipping", uchan
->name
, usess
->id
, app
->pid
);
1892 ua_chan
= caa_container_of(ua_chan_node
, struct ust_app_channel
, node
);
1894 lttng_ht_lookup(ua_chan
->events
, (void *)uevent
->attr
.name
, &uiter
);
1895 ua_event_node
= lttng_ht_iter_get_node_str(&uiter
);
1896 if (ua_event_node
== NULL
) {
1897 DBG2("Event %s not found in channel %s for app pid %d."
1898 "Skipping", uevent
->attr
.name
, uchan
->name
, app
->pid
);
1901 ua_event
= caa_container_of(ua_event_node
, struct ust_app_event
, node
);
1903 ret
= disable_ust_app_event(ua_sess
, ua_event
, app
);
1905 /* XXX: Report error someday... */
1916 * For a specific UST session and UST channel, the event for all
1919 int ust_app_disable_all_event_glb(struct ltt_ust_session
*usess
,
1920 struct ltt_ust_channel
*uchan
)
1923 struct lttng_ht_iter iter
, uiter
;
1924 struct lttng_ht_node_str
*ua_chan_node
;
1925 struct ust_app
*app
;
1926 struct ust_app_session
*ua_sess
;
1927 struct ust_app_channel
*ua_chan
;
1928 struct ust_app_event
*ua_event
;
1930 DBG("UST app disabling all event for all apps in channel "
1931 "%s for session id %d", uchan
->name
, usess
->id
);
1935 /* For all registered applications */
1936 cds_lfht_for_each_entry(ust_app_ht
->ht
, &iter
.iter
, app
, pid_n
.node
) {
1937 if (!app
->compatible
) {
1939 * TODO: In time, we should notice the caller of this error by
1940 * telling him that this is a version error.
1944 ua_sess
= lookup_session_by_app(usess
, app
);
1945 /* If ua_sess is NULL, there is a code flow error */
1948 /* Lookup channel in the ust app session */
1949 lttng_ht_lookup(ua_sess
->channels
, (void *)uchan
->name
, &uiter
);
1950 ua_chan_node
= lttng_ht_iter_get_node_str(&uiter
);
1951 /* If the channel is not found, there is a code flow error */
1952 assert(ua_chan_node
);
1954 ua_chan
= caa_container_of(ua_chan_node
, struct ust_app_channel
, node
);
1956 /* Disable each events of channel */
1957 cds_lfht_for_each_entry(ua_chan
->events
->ht
, &uiter
.iter
, ua_event
,
1959 ret
= disable_ust_app_event(ua_sess
, ua_event
, app
);
1961 /* XXX: Report error someday... */
1973 * For a specific UST session, create the channel for all registered apps.
1975 int ust_app_create_channel_glb(struct ltt_ust_session
*usess
,
1976 struct ltt_ust_channel
*uchan
)
1978 struct lttng_ht_iter iter
;
1979 struct ust_app
*app
;
1980 struct ust_app_session
*ua_sess
;
1981 struct ust_app_channel
*ua_chan
;
1983 /* Very wrong code flow */
1987 DBG2("UST app adding channel %s to global domain for session id %d",
1988 uchan
->name
, usess
->id
);
1992 /* For every registered applications */
1993 cds_lfht_for_each_entry(ust_app_ht
->ht
, &iter
.iter
, app
, pid_n
.node
) {
1994 if (!app
->compatible
) {
1996 * TODO: In time, we should notice the caller of this error by
1997 * telling him that this is a version error.
2002 * Create session on the tracer side and add it to app session HT. Note
2003 * that if session exist, it will simply return a pointer to the ust
2006 ua_sess
= create_ust_app_session(usess
, app
);
2007 if (ua_sess
== NULL
) {
2008 /* The malloc() failed. */
2010 } else if (ua_sess
== (void *) -1UL) {
2011 /* The application's socket is not valid. Contiuing */
2015 /* Create channel onto application */
2016 ua_chan
= create_ust_app_channel(ua_sess
, uchan
, app
);
2017 if (ua_chan
== NULL
) {
2018 /* Major problem here and it's maybe the tracer or malloc() */
2032 * Enable event for a specific session and channel on the tracer.
2034 int ust_app_enable_event_glb(struct ltt_ust_session
*usess
,
2035 struct ltt_ust_channel
*uchan
, struct ltt_ust_event
*uevent
)
2038 struct lttng_ht_iter iter
, uiter
;
2039 struct lttng_ht_node_str
*ua_chan_node
, *ua_event_node
;
2040 struct ust_app
*app
;
2041 struct ust_app_session
*ua_sess
;
2042 struct ust_app_channel
*ua_chan
;
2043 struct ust_app_event
*ua_event
;
2045 DBG("UST app enabling event %s for all apps for session id %d",
2046 uevent
->attr
.name
, usess
->id
);
2049 * NOTE: At this point, this function is called only if the session and
2050 * channel passed are already created for all apps. and enabled on the
2056 /* For all registered applications */
2057 cds_lfht_for_each_entry(ust_app_ht
->ht
, &iter
.iter
, app
, pid_n
.node
) {
2058 if (!app
->compatible
) {
2060 * TODO: In time, we should notice the caller of this error by
2061 * telling him that this is a version error.
2065 ua_sess
= lookup_session_by_app(usess
, app
);
2066 /* If ua_sess is NULL, there is a code flow error */
2069 /* Lookup channel in the ust app session */
2070 lttng_ht_lookup(ua_sess
->channels
, (void *)uchan
->name
, &uiter
);
2071 ua_chan_node
= lttng_ht_iter_get_node_str(&uiter
);
2072 /* If the channel is not found, there is a code flow error */
2073 assert(ua_chan_node
);
2075 ua_chan
= caa_container_of(ua_chan_node
, struct ust_app_channel
, node
);
2077 lttng_ht_lookup(ua_chan
->events
, (void*)uevent
->attr
.name
, &uiter
);
2078 ua_event_node
= lttng_ht_iter_get_node_str(&uiter
);
2079 if (ua_event_node
== NULL
) {
2080 DBG3("UST app enable event %s not found for app PID %d."
2081 "Skipping app", uevent
->attr
.name
, app
->pid
);
2084 ua_event
= caa_container_of(ua_event_node
, struct ust_app_event
, node
);
2086 ret
= enable_ust_app_event(ua_sess
, ua_event
, app
);
2098 * For a specific existing UST session and UST channel, creates the event for
2099 * all registered apps.
2101 int ust_app_create_event_glb(struct ltt_ust_session
*usess
,
2102 struct ltt_ust_channel
*uchan
, struct ltt_ust_event
*uevent
)
2105 struct lttng_ht_iter iter
, uiter
;
2106 struct lttng_ht_node_str
*ua_chan_node
;
2107 struct ust_app
*app
;
2108 struct ust_app_session
*ua_sess
;
2109 struct ust_app_channel
*ua_chan
;
2111 DBG("UST app creating event %s for all apps for session id %d",
2112 uevent
->attr
.name
, usess
->id
);
2116 /* For all registered applications */
2117 cds_lfht_for_each_entry(ust_app_ht
->ht
, &iter
.iter
, app
, pid_n
.node
) {
2118 if (!app
->compatible
) {
2120 * TODO: In time, we should notice the caller of this error by
2121 * telling him that this is a version error.
2125 ua_sess
= lookup_session_by_app(usess
, app
);
2126 /* If ua_sess is NULL, there is a code flow error */
2129 /* Lookup channel in the ust app session */
2130 lttng_ht_lookup(ua_sess
->channels
, (void *)uchan
->name
, &uiter
);
2131 ua_chan_node
= lttng_ht_iter_get_node_str(&uiter
);
2132 /* If the channel is not found, there is a code flow error */
2133 assert(ua_chan_node
);
2135 ua_chan
= caa_container_of(ua_chan_node
, struct ust_app_channel
, node
);
2137 ret
= create_ust_app_event(ua_sess
, ua_chan
, uevent
, app
);
2139 if (ret
!= -EEXIST
) {
2140 /* Possible value at this point: -ENOMEM. If so, we stop! */
2143 DBG2("UST app event %s already exist on app PID %d",
2144 uevent
->attr
.name
, app
->pid
);
2155 * Start tracing for a specific UST session and app.
2157 int ust_app_start_trace(struct ltt_ust_session
*usess
, struct ust_app
*app
)
2160 struct lttng_ht_iter iter
;
2161 struct ust_app_session
*ua_sess
;
2162 struct ust_app_channel
*ua_chan
;
2163 struct ltt_ust_stream
*ustream
;
2164 struct consumer_socket
*socket
;
2166 DBG("Starting tracing for ust app pid %d", app
->pid
);
2170 if (!app
->compatible
) {
2174 ua_sess
= lookup_session_by_app(usess
, app
);
2175 if (ua_sess
== NULL
) {
2176 goto error_rcu_unlock
;
2179 /* Upon restart, we skip the setup, already done */
2180 if (ua_sess
->started
) {
2184 /* Create directories if consumer is LOCAL and has a path defined. */
2185 if (usess
->consumer
->type
== CONSUMER_DST_LOCAL
&&
2186 strlen(usess
->consumer
->dst
.trace_path
) > 0) {
2187 ret
= run_as_mkdir_recursive(usess
->consumer
->dst
.trace_path
,
2188 S_IRWXU
| S_IRWXG
, usess
->uid
, usess
->gid
);
2190 if (ret
!= -EEXIST
) {
2191 ERR("Trace directory creation error");
2193 goto error_rcu_unlock
;
2198 /* Indicate that the session has been started once */
2199 ua_sess
->started
= 1;
2201 ret
= create_ust_app_metadata(ua_sess
, usess
->pathname
, app
);
2203 ret
= LTTNG_ERR_UST_META_FAIL
;
2204 goto error_rcu_unlock
;
2207 /* For each channel */
2208 cds_lfht_for_each_entry(ua_sess
->channels
->ht
, &iter
.iter
, ua_chan
,
2210 /* Create all streams */
2212 /* Create UST stream */
2213 ustream
= zmalloc(sizeof(*ustream
));
2214 if (ustream
== NULL
) {
2215 PERROR("zmalloc ust stream");
2216 goto error_rcu_unlock
;
2219 /* We are going to receive 2 fds, we need to reserve them. */
2220 ret
= lttng_fd_get(LTTNG_FD_APPS
, 2);
2222 ERR("Exhausted number of available FD upon stream create");
2224 goto error_rcu_unlock
;
2227 health_code_update(&health_thread_cmd
);
2229 ret
= ustctl_create_stream(app
->sock
, ua_chan
->obj
,
2232 /* Got all streams */
2233 lttng_fd_put(LTTNG_FD_APPS
, 2);
2235 ret
= LTTNG_ERR_UST_STREAM_FAIL
;
2238 ustream
->handle
= ustream
->obj
->handle
;
2240 health_code_update(&health_thread_cmd
);
2242 /* Order is important */
2243 cds_list_add_tail(&ustream
->list
, &ua_chan
->streams
.head
);
2244 ret
= snprintf(ustream
->name
, sizeof(ustream
->name
), "%s_%u",
2245 ua_chan
->name
, ua_chan
->streams
.count
);
2246 ua_chan
->streams
.count
++;
2248 PERROR("asprintf UST create stream");
2250 * XXX what should we do here with the
2255 DBG2("UST stream %d ready (handle: %d)", ua_chan
->streams
.count
,
2259 health_code_update(&health_thread_cmd
);
2262 switch (app
->bits_per_long
) {
2264 socket
= consumer_find_socket(uatomic_read(&ust_consumerd64_fd
),
2266 if (socket
== NULL
) {
2271 socket
= consumer_find_socket(uatomic_read(&ust_consumerd32_fd
),
2273 if (socket
== NULL
) {
2279 goto error_rcu_unlock
;
2282 /* Setup UST consumer socket and send fds to it */
2283 ret
= ust_consumer_send_session(ua_sess
, usess
->consumer
, socket
);
2285 goto error_rcu_unlock
;
2288 health_code_update(&health_thread_cmd
);
2291 /* This start the UST tracing */
2292 ret
= ustctl_start_session(app
->sock
, ua_sess
->handle
);
2294 ERR("Error starting tracing for app pid: %d", app
->pid
);
2295 goto error_rcu_unlock
;
2298 health_code_update(&health_thread_cmd
);
2300 /* Quiescent wait after starting trace */
2301 ustctl_wait_quiescent(app
->sock
);
2305 health_code_update(&health_thread_cmd
);
2310 health_code_update(&health_thread_cmd
);
2315 * Stop tracing for a specific UST session and app.
2317 int ust_app_stop_trace(struct ltt_ust_session
*usess
, struct ust_app
*app
)
2320 struct lttng_ht_iter iter
;
2321 struct ust_app_session
*ua_sess
;
2322 struct ust_app_channel
*ua_chan
;
2324 DBG("Stopping tracing for ust app pid %d", app
->pid
);
2328 if (!app
->compatible
) {
2332 ua_sess
= lookup_session_by_app(usess
, app
);
2333 if (ua_sess
== NULL
) {
2334 /* Only malloc can failed so something is really wrong */
2335 goto error_rcu_unlock
;
2339 * If started = 0, it means that stop trace has been called for a session
2340 * that was never started. This is a code flow error and should never
2343 assert(ua_sess
->started
== 1);
2345 health_code_update(&health_thread_cmd
);
2347 /* This inhibits UST tracing */
2348 ret
= ustctl_stop_session(app
->sock
, ua_sess
->handle
);
2350 ERR("Error stopping tracing for app pid: %d", app
->pid
);
2351 goto error_rcu_unlock
;
2354 health_code_update(&health_thread_cmd
);
2356 /* Quiescent wait after stopping trace */
2357 ustctl_wait_quiescent(app
->sock
);
2359 health_code_update(&health_thread_cmd
);
2361 /* Flushing buffers */
2362 cds_lfht_for_each_entry(ua_sess
->channels
->ht
, &iter
.iter
, ua_chan
,
2364 health_code_update(&health_thread_cmd
);
2365 ret
= ustctl_sock_flush_buffer(app
->sock
, ua_chan
->obj
);
2367 ERR("UST app PID %d channel %s flush failed with ret %d",
2368 app
->pid
, ua_chan
->name
, ret
);
2369 /* Continuing flushing all buffers */
2374 health_code_update(&health_thread_cmd
);
2376 /* Flush all buffers before stopping */
2377 ret
= ustctl_sock_flush_buffer(app
->sock
, ua_sess
->metadata
->obj
);
2379 ERR("UST app PID %d metadata flush failed with ret %d", app
->pid
,
2385 health_code_update(&health_thread_cmd
);
2390 health_code_update(&health_thread_cmd
);
2395 * Destroy a specific UST session in apps.
2397 int ust_app_destroy_trace(struct ltt_ust_session
*usess
, struct ust_app
*app
)
2399 struct ust_app_session
*ua_sess
;
2400 struct lttng_ust_object_data obj
;
2401 struct lttng_ht_iter iter
;
2402 struct lttng_ht_node_ulong
*node
;
2405 DBG("Destroy tracing for ust app pid %d", app
->pid
);
2409 if (!app
->compatible
) {
2413 __lookup_session_by_app(usess
, app
, &iter
);
2414 node
= lttng_ht_iter_get_node_ulong(&iter
);
2416 /* Only malloc can failed so something is really wrong */
2417 goto error_rcu_unlock
;
2419 ua_sess
= caa_container_of(node
, struct ust_app_session
, node
);
2420 ret
= lttng_ht_del(app
->sessions
, &iter
);
2422 obj
.handle
= ua_sess
->handle
;
2425 obj
.memory_map_size
= 0;
2426 health_code_update(&health_thread_cmd
);
2427 ustctl_release_object(app
->sock
, &obj
);
2429 health_code_update(&health_thread_cmd
);
2430 delete_ust_app_session(app
->sock
, ua_sess
);
2432 /* Quiescent wait after stopping trace */
2433 ustctl_wait_quiescent(app
->sock
);
2437 health_code_update(&health_thread_cmd
);
2442 health_code_update(&health_thread_cmd
);
2447 * Start tracing for the UST session.
2449 int ust_app_start_trace_all(struct ltt_ust_session
*usess
)
2452 struct lttng_ht_iter iter
;
2453 struct ust_app
*app
;
2455 DBG("Starting all UST traces");
2459 cds_lfht_for_each_entry(ust_app_ht
->ht
, &iter
.iter
, app
, pid_n
.node
) {
2460 ret
= ust_app_start_trace(usess
, app
);
2462 /* Continue to next apps even on error */
2473 * Start tracing for the UST session.
2475 int ust_app_stop_trace_all(struct ltt_ust_session
*usess
)
2478 struct lttng_ht_iter iter
;
2479 struct ust_app
*app
;
2481 DBG("Stopping all UST traces");
2485 cds_lfht_for_each_entry(ust_app_ht
->ht
, &iter
.iter
, app
, pid_n
.node
) {
2486 ret
= ust_app_stop_trace(usess
, app
);
2488 /* Continue to next apps even on error */
2499 * Destroy app UST session.
2501 int ust_app_destroy_trace_all(struct ltt_ust_session
*usess
)
2504 struct lttng_ht_iter iter
;
2505 struct ust_app
*app
;
2507 DBG("Destroy all UST traces");
2511 cds_lfht_for_each_entry(ust_app_ht
->ht
, &iter
.iter
, app
, pid_n
.node
) {
2512 ret
= ust_app_destroy_trace(usess
, app
);
2514 /* Continue to next apps even on error */
2525 * Add channels/events from UST global domain to registered apps at sock.
2527 void ust_app_global_update(struct ltt_ust_session
*usess
, int sock
)
2530 struct lttng_ht_iter iter
, uiter
, iter_ctx
;
2531 struct ust_app
*app
;
2532 struct ust_app_session
*ua_sess
;
2533 struct ust_app_channel
*ua_chan
;
2534 struct ust_app_event
*ua_event
;
2535 struct ust_app_ctx
*ua_ctx
;
2537 if (usess
== NULL
) {
2538 ERR("No UST session on global update. Returning");
2542 DBG2("UST app global update for app sock %d for session id %d", sock
,
2547 app
= find_app_by_sock(sock
);
2549 ERR("Failed to update app sock %d", sock
);
2553 if (!app
->compatible
) {
2557 ua_sess
= create_ust_app_session(usess
, app
);
2558 if (ua_sess
== NULL
) {
2563 * We can iterate safely here over all UST app session sicne the create ust
2564 * app session above made a shadow copy of the UST global domain from the
2567 cds_lfht_for_each_entry(ua_sess
->channels
->ht
, &iter
.iter
, ua_chan
,
2569 ret
= create_ust_channel(app
, ua_sess
, ua_chan
);
2571 /* FIXME: Should we quit here or continue... */
2575 cds_lfht_for_each_entry(ua_chan
->ctx
->ht
, &iter_ctx
.iter
, ua_ctx
,
2577 ret
= create_ust_channel_context(ua_chan
, ua_ctx
, app
);
2579 /* FIXME: Should we quit here or continue... */
2585 /* For each events */
2586 cds_lfht_for_each_entry(ua_chan
->events
->ht
, &uiter
.iter
, ua_event
,
2588 ret
= create_ust_event(app
, ua_sess
, ua_chan
, ua_event
);
2590 /* FIXME: Should we quit here or continue... */
2594 /* Add context on events. */
2595 cds_lfht_for_each_entry(ua_event
->ctx
->ht
, &iter_ctx
.iter
,
2596 ua_ctx
, node
.node
) {
2597 ret
= create_ust_event_context(ua_event
, ua_ctx
, app
);
2599 /* FIXME: Should we quit here or continue... */
2603 ret
= set_ust_event_filter(ua_event
, app
);
2605 /* FIXME: Should we quit here or continue... */
2611 if (usess
->start_trace
) {
2612 ret
= ust_app_start_trace(usess
, app
);
2617 DBG2("UST trace started for app pid %d", app
->pid
);
2626 * Add context to a specific channel for global UST domain.
2628 int ust_app_add_ctx_channel_glb(struct ltt_ust_session
*usess
,
2629 struct ltt_ust_channel
*uchan
, struct ltt_ust_context
*uctx
)
2632 struct lttng_ht_node_str
*ua_chan_node
;
2633 struct lttng_ht_iter iter
, uiter
;
2634 struct ust_app_channel
*ua_chan
= NULL
;
2635 struct ust_app_session
*ua_sess
;
2636 struct ust_app
*app
;
2640 cds_lfht_for_each_entry(ust_app_ht
->ht
, &iter
.iter
, app
, pid_n
.node
) {
2641 if (!app
->compatible
) {
2643 * TODO: In time, we should notice the caller of this error by
2644 * telling him that this is a version error.
2648 ua_sess
= lookup_session_by_app(usess
, app
);
2649 if (ua_sess
== NULL
) {
2653 /* Lookup channel in the ust app session */
2654 lttng_ht_lookup(ua_sess
->channels
, (void *)uchan
->name
, &uiter
);
2655 ua_chan_node
= lttng_ht_iter_get_node_str(&uiter
);
2656 if (ua_chan_node
== NULL
) {
2659 ua_chan
= caa_container_of(ua_chan_node
, struct ust_app_channel
,
2662 ret
= create_ust_app_channel_context(ua_sess
, ua_chan
, &uctx
->ctx
, app
);
2673 * Add context to a specific event in a channel for global UST domain.
2675 int ust_app_add_ctx_event_glb(struct ltt_ust_session
*usess
,
2676 struct ltt_ust_channel
*uchan
, struct ltt_ust_event
*uevent
,
2677 struct ltt_ust_context
*uctx
)
2680 struct lttng_ht_node_str
*ua_chan_node
, *ua_event_node
;
2681 struct lttng_ht_iter iter
, uiter
;
2682 struct ust_app_session
*ua_sess
;
2683 struct ust_app_event
*ua_event
;
2684 struct ust_app_channel
*ua_chan
= NULL
;
2685 struct ust_app
*app
;
2689 cds_lfht_for_each_entry(ust_app_ht
->ht
, &iter
.iter
, app
, pid_n
.node
) {
2690 if (!app
->compatible
) {
2692 * TODO: In time, we should notice the caller of this error by
2693 * telling him that this is a version error.
2697 ua_sess
= lookup_session_by_app(usess
, app
);
2698 if (ua_sess
== NULL
) {
2702 /* Lookup channel in the ust app session */
2703 lttng_ht_lookup(ua_sess
->channels
, (void *)uchan
->name
, &uiter
);
2704 ua_chan_node
= lttng_ht_iter_get_node_str(&uiter
);
2705 if (ua_chan_node
== NULL
) {
2708 ua_chan
= caa_container_of(ua_chan_node
, struct ust_app_channel
,
2711 lttng_ht_lookup(ua_chan
->events
, (void *)uevent
->attr
.name
, &uiter
);
2712 ua_event_node
= lttng_ht_iter_get_node_str(&uiter
);
2713 if (ua_event_node
== NULL
) {
2716 ua_event
= caa_container_of(ua_event_node
, struct ust_app_event
,
2719 ret
= create_ust_app_event_context(ua_sess
, ua_event
, &uctx
->ctx
, app
);
2730 * Add context to a specific event in a channel for global UST domain.
2732 int ust_app_set_filter_event_glb(struct ltt_ust_session
*usess
,
2733 struct ltt_ust_channel
*uchan
, struct ltt_ust_event
*uevent
,
2734 struct lttng_filter_bytecode
*bytecode
)
2737 struct lttng_ht_node_str
*ua_chan_node
, *ua_event_node
;
2738 struct lttng_ht_iter iter
, uiter
;
2739 struct ust_app_session
*ua_sess
;
2740 struct ust_app_event
*ua_event
;
2741 struct ust_app_channel
*ua_chan
= NULL
;
2742 struct ust_app
*app
;
2746 cds_lfht_for_each_entry(ust_app_ht
->ht
, &iter
.iter
, app
, pid_n
.node
) {
2747 if (!app
->compatible
) {
2749 * TODO: In time, we should notice the caller of this error by
2750 * telling him that this is a version error.
2754 ua_sess
= lookup_session_by_app(usess
, app
);
2755 if (ua_sess
== NULL
) {
2759 /* Lookup channel in the ust app session */
2760 lttng_ht_lookup(ua_sess
->channels
, (void *)uchan
->name
, &uiter
);
2761 ua_chan_node
= lttng_ht_iter_get_node_str(&uiter
);
2762 if (ua_chan_node
== NULL
) {
2765 ua_chan
= caa_container_of(ua_chan_node
, struct ust_app_channel
,
2768 lttng_ht_lookup(ua_chan
->events
, (void *)uevent
->attr
.name
, &uiter
);
2769 ua_event_node
= lttng_ht_iter_get_node_str(&uiter
);
2770 if (ua_event_node
== NULL
) {
2773 ua_event
= caa_container_of(ua_event_node
, struct ust_app_event
,
2776 ret
= set_ust_app_event_filter(ua_sess
, ua_event
, bytecode
, app
);
2787 * Enable event for a channel from a UST session for a specific PID.
2789 int ust_app_enable_event_pid(struct ltt_ust_session
*usess
,
2790 struct ltt_ust_channel
*uchan
, struct ltt_ust_event
*uevent
, pid_t pid
)
2793 struct lttng_ht_iter iter
;
2794 struct lttng_ht_node_str
*ua_chan_node
, *ua_event_node
;
2795 struct ust_app
*app
;
2796 struct ust_app_session
*ua_sess
;
2797 struct ust_app_channel
*ua_chan
;
2798 struct ust_app_event
*ua_event
;
2800 DBG("UST app enabling event %s for PID %d", uevent
->attr
.name
, pid
);
2804 app
= ust_app_find_by_pid(pid
);
2806 ERR("UST app enable event per PID %d not found", pid
);
2811 if (!app
->compatible
) {
2816 ua_sess
= lookup_session_by_app(usess
, app
);
2817 /* If ua_sess is NULL, there is a code flow error */
2820 /* Lookup channel in the ust app session */
2821 lttng_ht_lookup(ua_sess
->channels
, (void *)uchan
->name
, &iter
);
2822 ua_chan_node
= lttng_ht_iter_get_node_str(&iter
);
2823 /* If the channel is not found, there is a code flow error */
2824 assert(ua_chan_node
);
2826 ua_chan
= caa_container_of(ua_chan_node
, struct ust_app_channel
, node
);
2828 lttng_ht_lookup(ua_chan
->events
, (void *)uevent
->attr
.name
, &iter
);
2829 ua_event_node
= lttng_ht_iter_get_node_str(&iter
);
2830 if (ua_event_node
== NULL
) {
2831 ret
= create_ust_app_event(ua_sess
, ua_chan
, uevent
, app
);
2836 ua_event
= caa_container_of(ua_event_node
, struct ust_app_event
, node
);
2838 ret
= enable_ust_app_event(ua_sess
, ua_event
, app
);
2850 * Disable event for a channel from a UST session for a specific PID.
2852 int ust_app_disable_event_pid(struct ltt_ust_session
*usess
,
2853 struct ltt_ust_channel
*uchan
, struct ltt_ust_event
*uevent
, pid_t pid
)
2856 struct lttng_ht_iter iter
;
2857 struct lttng_ht_node_str
*ua_chan_node
, *ua_event_node
;
2858 struct ust_app
*app
;
2859 struct ust_app_session
*ua_sess
;
2860 struct ust_app_channel
*ua_chan
;
2861 struct ust_app_event
*ua_event
;
2863 DBG("UST app disabling event %s for PID %d", uevent
->attr
.name
, pid
);
2867 app
= ust_app_find_by_pid(pid
);
2869 ERR("UST app disable event per PID %d not found", pid
);
2874 if (!app
->compatible
) {
2879 ua_sess
= lookup_session_by_app(usess
, app
);
2880 /* If ua_sess is NULL, there is a code flow error */
2883 /* Lookup channel in the ust app session */
2884 lttng_ht_lookup(ua_sess
->channels
, (void *)uchan
->name
, &iter
);
2885 ua_chan_node
= lttng_ht_iter_get_node_str(&iter
);
2886 if (ua_chan_node
== NULL
) {
2887 /* Channel does not exist, skip disabling */
2890 ua_chan
= caa_container_of(ua_chan_node
, struct ust_app_channel
, node
);
2892 lttng_ht_lookup(ua_chan
->events
, (void *)uevent
->attr
.name
, &iter
);
2893 ua_event_node
= lttng_ht_iter_get_node_str(&iter
);
2894 if (ua_event_node
== NULL
) {
2895 /* Event does not exist, skip disabling */
2898 ua_event
= caa_container_of(ua_event_node
, struct ust_app_event
, node
);
2900 ret
= disable_ust_app_event(ua_sess
, ua_event
, app
);
2911 * Validate version of UST apps and set the compatible bit.
2913 int ust_app_validate_version(int sock
)
2916 struct ust_app
*app
;
2920 app
= find_app_by_sock(sock
);
2923 health_code_update(&health_thread_cmd
);
2925 ret
= ustctl_tracer_version(sock
, &app
->version
);
2930 /* Validate version */
2931 if (app
->version
.major
!= UST_APP_MAJOR_VERSION
) {
2935 DBG2("UST app PID %d is compatible with internal major version %d "
2936 "(supporting == %d)", app
->pid
, app
->version
.major
,
2937 UST_APP_MAJOR_VERSION
);
2938 app
->compatible
= 1;
2940 health_code_update(&health_thread_cmd
);
2944 DBG2("UST app PID %d is not compatible with internal major version %d "
2945 "(supporting == %d)", app
->pid
, app
->version
.major
,
2946 UST_APP_MAJOR_VERSION
);
2947 app
->compatible
= 0;
2949 health_code_update(&health_thread_cmd
);
2954 * Calibrate registered applications.
2956 int ust_app_calibrate_glb(struct lttng_ust_calibrate
*calibrate
)
2959 struct lttng_ht_iter iter
;
2960 struct ust_app
*app
;
2964 cds_lfht_for_each_entry(ust_app_ht
->ht
, &iter
.iter
, app
, pid_n
.node
) {
2965 if (!app
->compatible
) {
2967 * TODO: In time, we should notice the caller of this error by
2968 * telling him that this is a version error.
2973 health_code_update(&health_thread_cmd
);
2975 ret
= ustctl_calibrate(app
->sock
, calibrate
);
2979 /* Means that it's not implemented on the tracer side. */
2983 /* TODO: Report error to user */
2984 DBG2("Calibrate app PID %d returned with error %d",
2991 DBG("UST app global domain calibration finished");
2995 health_code_update(&health_thread_cmd
);