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>
32 #include "ust-consumer.h"
36 * Delete ust context safely. RCU read lock must be held before calling
40 void delete_ust_app_ctx(int sock
, struct ust_app_ctx
*ua_ctx
)
43 ustctl_release_object(sock
, ua_ctx
->obj
);
50 * Delete ust app event safely. RCU read lock must be held before calling
54 void delete_ust_app_event(int sock
, struct ust_app_event
*ua_event
)
57 struct lttng_ht_iter iter
;
58 struct ust_app_ctx
*ua_ctx
;
60 /* Destroy each context of event */
61 cds_lfht_for_each_entry(ua_event
->ctx
->ht
, &iter
.iter
, ua_ctx
,
63 ret
= lttng_ht_del(ua_event
->ctx
, &iter
);
65 delete_ust_app_ctx(sock
, ua_ctx
);
67 lttng_ht_destroy(ua_event
->ctx
);
69 if (ua_event
->obj
!= NULL
) {
70 ustctl_release_object(sock
, ua_event
->obj
);
77 * Delete ust app stream safely. RCU read lock must be held before calling
81 void delete_ust_app_stream(int sock
, struct ltt_ust_stream
*stream
)
84 ustctl_release_object(sock
, stream
->obj
);
91 * Delete ust app channel safely. RCU read lock must be held before calling
95 void delete_ust_app_channel(int sock
, struct ust_app_channel
*ua_chan
)
98 struct lttng_ht_iter iter
;
99 struct ust_app_event
*ua_event
;
100 struct ust_app_ctx
*ua_ctx
;
101 struct ltt_ust_stream
*stream
, *stmp
;
104 cds_list_for_each_entry_safe(stream
, stmp
, &ua_chan
->streams
.head
, list
) {
105 cds_list_del(&stream
->list
);
106 delete_ust_app_stream(sock
, stream
);
110 cds_lfht_for_each_entry(ua_chan
->ctx
->ht
, &iter
.iter
, ua_ctx
, node
.node
) {
111 ret
= lttng_ht_del(ua_chan
->ctx
, &iter
);
113 delete_ust_app_ctx(sock
, ua_ctx
);
115 lttng_ht_destroy(ua_chan
->ctx
);
118 cds_lfht_for_each_entry(ua_chan
->events
->ht
, &iter
.iter
, ua_event
,
120 ret
= lttng_ht_del(ua_chan
->events
, &iter
);
122 delete_ust_app_event(sock
, ua_event
);
124 lttng_ht_destroy(ua_chan
->events
);
126 if (ua_chan
->obj
!= NULL
) {
127 ustctl_release_object(sock
, ua_chan
->obj
);
134 * Delete ust app session safely. RCU read lock must be held before calling
138 void delete_ust_app_session(int sock
, struct ust_app_session
*ua_sess
)
141 struct lttng_ht_iter iter
;
142 struct ust_app_channel
*ua_chan
;
144 if (ua_sess
->metadata
) {
145 if (ua_sess
->metadata
->stream_obj
) {
146 ustctl_release_object(sock
, ua_sess
->metadata
->stream_obj
);
147 free(ua_sess
->metadata
->stream_obj
);
149 if (ua_sess
->metadata
->obj
) {
150 ustctl_release_object(sock
, ua_sess
->metadata
->obj
);
151 free(ua_sess
->metadata
->obj
);
153 trace_ust_destroy_metadata(ua_sess
->metadata
);
156 cds_lfht_for_each_entry(ua_sess
->channels
->ht
, &iter
.iter
, ua_chan
,
158 ret
= lttng_ht_del(ua_sess
->channels
, &iter
);
160 delete_ust_app_channel(sock
, ua_chan
);
162 lttng_ht_destroy(ua_sess
->channels
);
164 if (ua_sess
->handle
!= -1) {
165 ustctl_release_handle(sock
, ua_sess
->handle
);
171 * Delete a traceable application structure from the global list. Never call
172 * this function outside of a call_rcu call.
175 void delete_ust_app(struct ust_app
*app
)
178 struct lttng_ht_iter iter
;
179 struct ust_app_session
*ua_sess
;
183 /* Delete ust app sessions info */
188 cds_lfht_for_each_entry(app
->sessions
->ht
, &iter
.iter
, ua_sess
,
190 ret
= lttng_ht_del(app
->sessions
, &iter
);
192 delete_ust_app_session(app
->sock
, ua_sess
);
194 lttng_ht_destroy(app
->sessions
);
197 * Wait until we have deleted the application from the sock hash table
198 * before closing this socket, otherwise an application could re-use the
199 * socket ID and race with the teardown, using the same hash table entry.
201 * It's OK to leave the close in call_rcu. We want it to stay unique for
202 * all RCU readers that could run concurrently with unregister app,
203 * therefore we _need_ to only close that socket after a grace period. So
204 * it should stay in this RCU callback.
206 * This close() is a very important step of the synchronization model so
207 * every modification to this function must be carefully reviewed.
214 DBG2("UST app pid %d deleted", app
->pid
);
221 * URCU intermediate call to delete an UST app.
224 void delete_ust_app_rcu(struct rcu_head
*head
)
226 struct lttng_ht_node_ulong
*node
=
227 caa_container_of(head
, struct lttng_ht_node_ulong
, head
);
228 struct ust_app
*app
=
229 caa_container_of(node
, struct ust_app
, pid_n
);
231 DBG3("Call RCU deleting app PID %d", app
->pid
);
236 * Alloc new UST app session.
239 struct ust_app_session
*alloc_ust_app_session(void)
241 struct ust_app_session
*ua_sess
;
243 /* Init most of the default value by allocating and zeroing */
244 ua_sess
= zmalloc(sizeof(struct ust_app_session
));
245 if (ua_sess
== NULL
) {
250 ua_sess
->handle
= -1;
251 ua_sess
->channels
= lttng_ht_new(0, LTTNG_HT_TYPE_STRING
);
260 * Alloc new UST app channel.
263 struct ust_app_channel
*alloc_ust_app_channel(char *name
,
264 struct lttng_ust_channel
*attr
)
266 struct ust_app_channel
*ua_chan
;
268 /* Init most of the default value by allocating and zeroing */
269 ua_chan
= zmalloc(sizeof(struct ust_app_channel
));
270 if (ua_chan
== NULL
) {
275 /* Setup channel name */
276 strncpy(ua_chan
->name
, name
, sizeof(ua_chan
->name
));
277 ua_chan
->name
[sizeof(ua_chan
->name
) - 1] = '\0';
279 ua_chan
->enabled
= 1;
280 ua_chan
->handle
= -1;
281 ua_chan
->ctx
= lttng_ht_new(0, LTTNG_HT_TYPE_ULONG
);
282 ua_chan
->events
= lttng_ht_new(0, LTTNG_HT_TYPE_STRING
);
283 lttng_ht_node_init_str(&ua_chan
->node
, ua_chan
->name
);
285 CDS_INIT_LIST_HEAD(&ua_chan
->streams
.head
);
287 /* Copy attributes */
289 memcpy(&ua_chan
->attr
, attr
, sizeof(ua_chan
->attr
));
292 DBG3("UST app channel %s allocated", ua_chan
->name
);
301 * Alloc new UST app event.
304 struct ust_app_event
*alloc_ust_app_event(char *name
,
305 struct lttng_ust_event
*attr
)
307 struct ust_app_event
*ua_event
;
309 /* Init most of the default value by allocating and zeroing */
310 ua_event
= zmalloc(sizeof(struct ust_app_event
));
311 if (ua_event
== NULL
) {
316 ua_event
->enabled
= 1;
317 strncpy(ua_event
->name
, name
, sizeof(ua_event
->name
));
318 ua_event
->name
[sizeof(ua_event
->name
) - 1] = '\0';
319 ua_event
->ctx
= lttng_ht_new(0, LTTNG_HT_TYPE_ULONG
);
320 lttng_ht_node_init_str(&ua_event
->node
, ua_event
->name
);
322 /* Copy attributes */
324 memcpy(&ua_event
->attr
, attr
, sizeof(ua_event
->attr
));
327 DBG3("UST app event %s allocated", ua_event
->name
);
336 * Alloc new UST app context.
339 struct ust_app_ctx
*alloc_ust_app_ctx(struct lttng_ust_context
*uctx
)
341 struct ust_app_ctx
*ua_ctx
;
343 ua_ctx
= zmalloc(sizeof(struct ust_app_ctx
));
344 if (ua_ctx
== NULL
) {
349 memcpy(&ua_ctx
->ctx
, uctx
, sizeof(ua_ctx
->ctx
));
352 DBG3("UST app context %d allocated", ua_ctx
->ctx
.ctx
);
359 * Find an ust_app using the sock and return it. RCU read side lock must be
360 * held before calling this helper function.
363 struct ust_app
*find_app_by_sock(int sock
)
365 struct lttng_ht_node_ulong
*node
;
366 struct lttng_ht_iter iter
;
368 lttng_ht_lookup(ust_app_ht_by_sock
, (void *)((unsigned long) sock
), &iter
);
369 node
= lttng_ht_iter_get_node_ulong(&iter
);
371 DBG2("UST app find by sock %d not found", sock
);
375 return caa_container_of(node
, struct ust_app
, sock_n
);
382 * Create the channel context on the tracer.
385 int create_ust_channel_context(struct ust_app_channel
*ua_chan
,
386 struct ust_app_ctx
*ua_ctx
, struct ust_app
*app
)
390 ret
= ustctl_add_context(app
->sock
, &ua_ctx
->ctx
,
391 ua_chan
->obj
, &ua_ctx
->obj
);
396 ua_ctx
->handle
= ua_ctx
->obj
->handle
;
398 DBG2("UST app context created successfully for channel %s", ua_chan
->name
);
405 * Create the event context on the tracer.
408 int create_ust_event_context(struct ust_app_event
*ua_event
,
409 struct ust_app_ctx
*ua_ctx
, struct ust_app
*app
)
413 ret
= ustctl_add_context(app
->sock
, &ua_ctx
->ctx
,
414 ua_event
->obj
, &ua_ctx
->obj
);
419 ua_ctx
->handle
= ua_ctx
->obj
->handle
;
421 DBG2("UST app context created successfully for event %s", ua_event
->name
);
428 * Disable the specified event on to UST tracer for the UST session.
430 static int disable_ust_event(struct ust_app
*app
,
431 struct ust_app_session
*ua_sess
, struct ust_app_event
*ua_event
)
435 ret
= ustctl_disable(app
->sock
, ua_event
->obj
);
437 ERR("UST app event %s disable failed for app (pid: %d) "
438 "and session handle %d with ret %d",
439 ua_event
->attr
.name
, app
->pid
, ua_sess
->handle
, ret
);
443 DBG2("UST app event %s disabled successfully for app (pid: %d)",
444 ua_event
->attr
.name
, app
->pid
);
451 * Disable the specified channel on to UST tracer for the UST session.
453 static int disable_ust_channel(struct ust_app
*app
,
454 struct ust_app_session
*ua_sess
, struct ust_app_channel
*ua_chan
)
458 ret
= ustctl_disable(app
->sock
, ua_chan
->obj
);
460 ERR("UST app channel %s disable failed for app (pid: %d) "
461 "and session handle %d with ret %d",
462 ua_chan
->name
, app
->pid
, ua_sess
->handle
, ret
);
466 DBG2("UST app channel %s disabled successfully for app (pid: %d)",
467 ua_chan
->name
, app
->pid
);
474 * Enable the specified channel on to UST tracer for the UST session.
476 static int enable_ust_channel(struct ust_app
*app
,
477 struct ust_app_session
*ua_sess
, struct ust_app_channel
*ua_chan
)
481 ret
= ustctl_enable(app
->sock
, ua_chan
->obj
);
483 ERR("UST app channel %s enable failed for app (pid: %d) "
484 "and session handle %d with ret %d",
485 ua_chan
->name
, app
->pid
, ua_sess
->handle
, ret
);
489 ua_chan
->enabled
= 1;
491 DBG2("UST app channel %s enabled successfully for app (pid: %d)",
492 ua_chan
->name
, app
->pid
);
499 * Enable the specified event on to UST tracer for the UST session.
501 static int enable_ust_event(struct ust_app
*app
,
502 struct ust_app_session
*ua_sess
, struct ust_app_event
*ua_event
)
506 ret
= ustctl_enable(app
->sock
, ua_event
->obj
);
508 ERR("UST app event %s enable failed for app (pid: %d) "
509 "and session handle %d with ret %d",
510 ua_event
->attr
.name
, app
->pid
, ua_sess
->handle
, ret
);
514 DBG2("UST app event %s enabled successfully for app (pid: %d)",
515 ua_event
->attr
.name
, app
->pid
);
522 * Open metadata onto the UST tracer for a UST session.
524 static int open_ust_metadata(struct ust_app
*app
,
525 struct ust_app_session
*ua_sess
)
528 struct lttng_ust_channel_attr uattr
;
530 uattr
.overwrite
= ua_sess
->metadata
->attr
.overwrite
;
531 uattr
.subbuf_size
= ua_sess
->metadata
->attr
.subbuf_size
;
532 uattr
.num_subbuf
= ua_sess
->metadata
->attr
.num_subbuf
;
533 uattr
.switch_timer_interval
=
534 ua_sess
->metadata
->attr
.switch_timer_interval
;
535 uattr
.read_timer_interval
=
536 ua_sess
->metadata
->attr
.read_timer_interval
;
537 uattr
.output
= ua_sess
->metadata
->attr
.output
;
539 /* UST tracer metadata creation */
540 ret
= ustctl_open_metadata(app
->sock
, ua_sess
->handle
, &uattr
,
541 &ua_sess
->metadata
->obj
);
543 ERR("UST app open metadata failed for app pid:%d with ret %d",
548 ua_sess
->metadata
->handle
= ua_sess
->metadata
->obj
->handle
;
555 * Create stream onto the UST tracer for a UST session.
557 static int create_ust_stream(struct ust_app
*app
,
558 struct ust_app_session
*ua_sess
)
562 ret
= ustctl_create_stream(app
->sock
, ua_sess
->metadata
->obj
,
563 &ua_sess
->metadata
->stream_obj
);
565 ERR("UST create metadata stream failed");
574 * Create the specified channel onto the UST tracer for a UST session.
576 static int create_ust_channel(struct ust_app
*app
,
577 struct ust_app_session
*ua_sess
, struct ust_app_channel
*ua_chan
)
581 /* TODO: remove cast and use lttng-ust-abi.h */
582 ret
= ustctl_create_channel(app
->sock
, ua_sess
->handle
,
583 (struct lttng_ust_channel_attr
*)&ua_chan
->attr
, &ua_chan
->obj
);
585 ERR("Creating channel %s for app (pid: %d, sock: %d) "
586 "and session handle %d with ret %d",
587 ua_chan
->name
, app
->pid
, app
->sock
,
588 ua_sess
->handle
, ret
);
592 ua_chan
->handle
= ua_chan
->obj
->handle
;
594 DBG2("UST app channel %s created successfully for pid:%d and sock:%d",
595 ua_chan
->name
, app
->pid
, app
->sock
);
597 /* If channel is not enabled, disable it on the tracer */
598 if (!ua_chan
->enabled
) {
599 ret
= disable_ust_channel(app
, ua_sess
, ua_chan
);
610 * Create the specified event onto the UST tracer for a UST session.
613 int create_ust_event(struct ust_app
*app
, struct ust_app_session
*ua_sess
,
614 struct ust_app_channel
*ua_chan
, struct ust_app_event
*ua_event
)
618 /* Create UST event on tracer */
619 ret
= ustctl_create_event(app
->sock
, &ua_event
->attr
, ua_chan
->obj
,
622 if (ret
== -EEXIST
) {
626 ERR("Error ustctl create event %s for app pid: %d with ret %d",
627 ua_event
->attr
.name
, app
->pid
, ret
);
631 ua_event
->handle
= ua_event
->obj
->handle
;
633 DBG2("UST app event %s created successfully for pid:%d",
634 ua_event
->attr
.name
, app
->pid
);
636 /* If event not enabled, disable it on the tracer */
637 if (ua_event
->enabled
== 0) {
638 ret
= disable_ust_event(app
, ua_sess
, ua_event
);
641 * If we hit an EPERM, something is wrong with our disable call. If
642 * we get an EEXIST, there is a problem on the tracer side since we
647 /* Code flow problem */
650 /* It's OK for our use case. */
665 * Copy data between an UST app event and a LTT event.
667 static void shadow_copy_event(struct ust_app_event
*ua_event
,
668 struct ltt_ust_event
*uevent
)
670 struct lttng_ht_iter iter
;
671 struct ltt_ust_context
*uctx
;
672 struct ust_app_ctx
*ua_ctx
;
674 strncpy(ua_event
->name
, uevent
->attr
.name
, sizeof(ua_event
->name
));
675 ua_event
->name
[sizeof(ua_event
->name
) - 1] = '\0';
677 ua_event
->enabled
= uevent
->enabled
;
679 /* Copy event attributes */
680 memcpy(&ua_event
->attr
, &uevent
->attr
, sizeof(ua_event
->attr
));
682 cds_lfht_for_each_entry(uevent
->ctx
->ht
, &iter
.iter
, uctx
, node
.node
) {
683 ua_ctx
= alloc_ust_app_ctx(&uctx
->ctx
);
684 if (ua_ctx
== NULL
) {
685 /* malloc() failed. We should simply stop */
689 lttng_ht_node_init_ulong(&ua_ctx
->node
,
690 (unsigned long) ua_ctx
->ctx
.ctx
);
691 lttng_ht_add_unique_ulong(ua_event
->ctx
, &ua_ctx
->node
);
696 * Copy data between an UST app channel and a LTT channel.
698 static void shadow_copy_channel(struct ust_app_channel
*ua_chan
,
699 struct ltt_ust_channel
*uchan
)
701 struct lttng_ht_iter iter
;
702 struct lttng_ht_node_str
*ua_event_node
;
703 struct ltt_ust_event
*uevent
;
704 struct ltt_ust_context
*uctx
;
705 struct ust_app_event
*ua_event
;
706 struct ust_app_ctx
*ua_ctx
;
708 DBG2("UST app shadow copy of channel %s started", ua_chan
->name
);
710 strncpy(ua_chan
->name
, uchan
->name
, sizeof(ua_chan
->name
));
711 ua_chan
->name
[sizeof(ua_chan
->name
) - 1] = '\0';
712 /* Copy event attributes */
713 memcpy(&ua_chan
->attr
, &uchan
->attr
, sizeof(ua_chan
->attr
));
715 ua_chan
->enabled
= uchan
->enabled
;
717 cds_lfht_for_each_entry(uchan
->ctx
->ht
, &iter
.iter
, uctx
, node
.node
) {
718 ua_ctx
= alloc_ust_app_ctx(&uctx
->ctx
);
719 if (ua_ctx
== NULL
) {
722 lttng_ht_node_init_ulong(&ua_ctx
->node
,
723 (unsigned long) ua_ctx
->ctx
.ctx
);
724 lttng_ht_add_unique_ulong(ua_chan
->ctx
, &ua_ctx
->node
);
727 /* Copy all events from ltt ust channel to ust app channel */
728 cds_lfht_for_each_entry(uchan
->events
->ht
, &iter
.iter
, uevent
, node
.node
) {
729 struct lttng_ht_iter uiter
;
731 lttng_ht_lookup(ua_chan
->events
, (void *) uevent
->attr
.name
, &uiter
);
732 ua_event_node
= lttng_ht_iter_get_node_str(&uiter
);
733 if (ua_event_node
== NULL
) {
734 DBG2("UST event %s not found on shadow copy channel",
736 ua_event
= alloc_ust_app_event(uevent
->attr
.name
, &uevent
->attr
);
737 if (ua_event
== NULL
) {
740 shadow_copy_event(ua_event
, uevent
);
741 lttng_ht_add_unique_str(ua_chan
->events
, &ua_event
->node
);
745 DBG3("UST app shadow copy of channel %s done", ua_chan
->name
);
749 * Copy data between a UST app session and a regular LTT session.
751 static void shadow_copy_session(struct ust_app_session
*ua_sess
,
752 struct ltt_ust_session
*usess
, struct ust_app
*app
)
754 struct lttng_ht_node_str
*ua_chan_node
;
755 struct lttng_ht_iter iter
;
756 struct ltt_ust_channel
*uchan
;
757 struct ust_app_channel
*ua_chan
;
763 /* Get date and time for unique app path */
765 timeinfo
= localtime(&rawtime
);
766 strftime(datetime
, sizeof(datetime
), "%Y%m%d-%H%M%S", timeinfo
);
768 DBG2("Shadow copy of session handle %d", ua_sess
->handle
);
770 ua_sess
->id
= usess
->id
;
771 ua_sess
->uid
= usess
->uid
;
772 ua_sess
->gid
= usess
->gid
;
774 ret
= snprintf(ua_sess
->path
, PATH_MAX
, "%s/%s-%d-%s", usess
->pathname
,
775 app
->name
, app
->pid
, datetime
);
777 PERROR("asprintf UST shadow copy session");
778 /* TODO: We cannot return an error from here.. */
782 /* TODO: support all UST domain */
784 /* Iterate over all channels in global domain. */
785 cds_lfht_for_each_entry(usess
->domain_global
.channels
->ht
, &iter
.iter
,
787 struct lttng_ht_iter uiter
;
789 lttng_ht_lookup(ua_sess
->channels
, (void *)uchan
->name
, &uiter
);
790 ua_chan_node
= lttng_ht_iter_get_node_str(&uiter
);
791 if (ua_chan_node
!= NULL
) {
792 /* Session exist. Contiuing. */
796 DBG2("Channel %s not found on shadow session copy, creating it",
798 ua_chan
= alloc_ust_app_channel(uchan
->name
, &uchan
->attr
);
799 if (ua_chan
== NULL
) {
800 /* malloc failed FIXME: Might want to do handle ENOMEM .. */
804 shadow_copy_channel(ua_chan
, uchan
);
805 lttng_ht_add_unique_str(ua_sess
->channels
, &ua_chan
->node
);
810 * Lookup sesison wrapper.
813 void __lookup_session_by_app(struct ltt_ust_session
*usess
,
814 struct ust_app
*app
, struct lttng_ht_iter
*iter
)
816 /* Get right UST app session from app */
817 lttng_ht_lookup(app
->sessions
, (void *)((unsigned long) usess
->id
), iter
);
821 * Return ust app session from the app session hashtable using the UST session
824 static struct ust_app_session
*lookup_session_by_app(
825 struct ltt_ust_session
*usess
, struct ust_app
*app
)
827 struct lttng_ht_iter iter
;
828 struct lttng_ht_node_ulong
*node
;
830 __lookup_session_by_app(usess
, app
, &iter
);
831 node
= lttng_ht_iter_get_node_ulong(&iter
);
836 return caa_container_of(node
, struct ust_app_session
, node
);
843 * Create a UST session onto the tracer of app and add it the session
846 * Return ust app session or NULL on error.
848 static struct ust_app_session
*create_ust_app_session(
849 struct ltt_ust_session
*usess
, struct ust_app
*app
)
852 struct ust_app_session
*ua_sess
;
854 ua_sess
= lookup_session_by_app(usess
, app
);
855 if (ua_sess
== NULL
) {
856 DBG2("UST app pid: %d session id %d not found, creating it",
857 app
->pid
, usess
->id
);
858 ua_sess
= alloc_ust_app_session();
859 if (ua_sess
== NULL
) {
860 /* Only malloc can failed so something is really wrong */
863 shadow_copy_session(ua_sess
, usess
, app
);
866 if (ua_sess
->handle
== -1) {
867 ret
= ustctl_create_session(app
->sock
);
869 ERR("Creating session for app pid %d", app
->pid
);
870 /* This means that the tracer is gone... */
871 ua_sess
= (void*) -1UL;
875 ua_sess
->handle
= ret
;
877 /* Add ust app session to app's HT */
878 lttng_ht_node_init_ulong(&ua_sess
->node
, (unsigned long) ua_sess
->id
);
879 lttng_ht_add_unique_ulong(app
->sessions
, &ua_sess
->node
);
881 DBG2("UST app session created successfully with handle %d", ret
);
888 delete_ust_app_session(-1, ua_sess
);
893 * Create a context for the channel on the tracer.
896 int create_ust_app_channel_context(struct ust_app_session
*ua_sess
,
897 struct ust_app_channel
*ua_chan
, struct lttng_ust_context
*uctx
,
901 struct lttng_ht_iter iter
;
902 struct lttng_ht_node_ulong
*node
;
903 struct ust_app_ctx
*ua_ctx
;
905 DBG2("UST app adding context to channel %s", ua_chan
->name
);
907 lttng_ht_lookup(ua_chan
->ctx
, (void *)((unsigned long)uctx
->ctx
), &iter
);
908 node
= lttng_ht_iter_get_node_ulong(&iter
);
914 ua_ctx
= alloc_ust_app_ctx(uctx
);
915 if (ua_ctx
== NULL
) {
921 lttng_ht_node_init_ulong(&ua_ctx
->node
, (unsigned long) ua_ctx
->ctx
.ctx
);
922 lttng_ht_add_unique_ulong(ua_chan
->ctx
, &ua_ctx
->node
);
924 ret
= create_ust_channel_context(ua_chan
, ua_ctx
, app
);
934 * Create an UST context and enable it for the event on the tracer.
937 int create_ust_app_event_context(struct ust_app_session
*ua_sess
,
938 struct ust_app_event
*ua_event
, struct lttng_ust_context
*uctx
,
942 struct lttng_ht_iter iter
;
943 struct lttng_ht_node_ulong
*node
;
944 struct ust_app_ctx
*ua_ctx
;
946 DBG2("UST app adding context to event %s", ua_event
->name
);
948 lttng_ht_lookup(ua_event
->ctx
, (void *)((unsigned long)uctx
->ctx
), &iter
);
949 node
= lttng_ht_iter_get_node_ulong(&iter
);
955 ua_ctx
= alloc_ust_app_ctx(uctx
);
956 if (ua_ctx
== NULL
) {
962 lttng_ht_node_init_ulong(&ua_ctx
->node
, (unsigned long) ua_ctx
->ctx
.ctx
);
963 lttng_ht_add_unique_ulong(ua_event
->ctx
, &ua_ctx
->node
);
965 ret
= create_ust_event_context(ua_event
, ua_ctx
, app
);
975 * Enable on the tracer side a ust app event for the session and channel.
978 int enable_ust_app_event(struct ust_app_session
*ua_sess
,
979 struct ust_app_event
*ua_event
, struct ust_app
*app
)
983 ret
= enable_ust_event(app
, ua_sess
, ua_event
);
988 ua_event
->enabled
= 1;
995 * Disable on the tracer side a ust app event for the session and channel.
997 static int disable_ust_app_event(struct ust_app_session
*ua_sess
,
998 struct ust_app_event
*ua_event
, struct ust_app
*app
)
1002 ret
= disable_ust_event(app
, ua_sess
, ua_event
);
1007 ua_event
->enabled
= 0;
1014 * Lookup ust app channel for session and disable it on the tracer side.
1017 int disable_ust_app_channel(struct ust_app_session
*ua_sess
,
1018 struct ust_app_channel
*ua_chan
, struct ust_app
*app
)
1022 ret
= disable_ust_channel(app
, ua_sess
, ua_chan
);
1027 ua_chan
->enabled
= 0;
1034 * Lookup ust app channel for session and enable it on the tracer side.
1036 static int enable_ust_app_channel(struct ust_app_session
*ua_sess
,
1037 struct ltt_ust_channel
*uchan
, struct ust_app
*app
)
1040 struct lttng_ht_iter iter
;
1041 struct lttng_ht_node_str
*ua_chan_node
;
1042 struct ust_app_channel
*ua_chan
;
1044 lttng_ht_lookup(ua_sess
->channels
, (void *)uchan
->name
, &iter
);
1045 ua_chan_node
= lttng_ht_iter_get_node_str(&iter
);
1046 if (ua_chan_node
== NULL
) {
1047 DBG2("Unable to find channel %s in ust session id %u",
1048 uchan
->name
, ua_sess
->id
);
1052 ua_chan
= caa_container_of(ua_chan_node
, struct ust_app_channel
, node
);
1054 ret
= enable_ust_channel(app
, ua_sess
, ua_chan
);
1064 * Create UST app channel and create it on the tracer.
1066 static struct ust_app_channel
*create_ust_app_channel(
1067 struct ust_app_session
*ua_sess
, struct ltt_ust_channel
*uchan
,
1068 struct ust_app
*app
)
1071 struct lttng_ht_iter iter
;
1072 struct lttng_ht_node_str
*ua_chan_node
;
1073 struct ust_app_channel
*ua_chan
;
1075 /* Lookup channel in the ust app session */
1076 lttng_ht_lookup(ua_sess
->channels
, (void *)uchan
->name
, &iter
);
1077 ua_chan_node
= lttng_ht_iter_get_node_str(&iter
);
1078 if (ua_chan_node
!= NULL
) {
1079 ua_chan
= caa_container_of(ua_chan_node
, struct ust_app_channel
, node
);
1083 ua_chan
= alloc_ust_app_channel(uchan
->name
, &uchan
->attr
);
1084 if (ua_chan
== NULL
) {
1085 /* Only malloc can fail here */
1088 shadow_copy_channel(ua_chan
, uchan
);
1090 ret
= create_ust_channel(app
, ua_sess
, ua_chan
);
1092 /* Not found previously means that it does not exist on the tracer */
1093 assert(ret
!= -EEXIST
);
1097 lttng_ht_add_unique_str(ua_sess
->channels
, &ua_chan
->node
);
1099 DBG2("UST app create channel %s for PID %d completed", ua_chan
->name
,
1106 delete_ust_app_channel(-1, ua_chan
);
1111 * Create UST app event and create it on the tracer side.
1114 int create_ust_app_event(struct ust_app_session
*ua_sess
,
1115 struct ust_app_channel
*ua_chan
, struct ltt_ust_event
*uevent
,
1116 struct ust_app
*app
)
1119 struct lttng_ht_iter iter
;
1120 struct lttng_ht_node_str
*ua_event_node
;
1121 struct ust_app_event
*ua_event
;
1123 /* Get event node */
1124 lttng_ht_lookup(ua_chan
->events
, (void *)uevent
->attr
.name
, &iter
);
1125 ua_event_node
= lttng_ht_iter_get_node_str(&iter
);
1126 if (ua_event_node
!= NULL
) {
1131 /* Does not exist so create one */
1132 ua_event
= alloc_ust_app_event(uevent
->attr
.name
, &uevent
->attr
);
1133 if (ua_event
== NULL
) {
1134 /* Only malloc can failed so something is really wrong */
1138 shadow_copy_event(ua_event
, uevent
);
1140 /* Create it on the tracer side */
1141 ret
= create_ust_event(app
, ua_sess
, ua_chan
, ua_event
);
1143 /* Not found previously means that it does not exist on the tracer */
1144 assert(ret
!= -EEXIST
);
1148 lttng_ht_add_unique_str(ua_chan
->events
, &ua_event
->node
);
1150 DBG2("UST app create event %s for PID %d completed", ua_event
->name
,
1157 /* Valid. Calling here is already in a read side lock */
1158 delete_ust_app_event(-1, ua_event
);
1163 * Create UST metadata and open it on the tracer side.
1165 static int create_ust_app_metadata(struct ust_app_session
*ua_sess
,
1166 char *pathname
, struct ust_app
*app
)
1170 if (ua_sess
->metadata
== NULL
) {
1171 /* Allocate UST metadata */
1172 ua_sess
->metadata
= trace_ust_create_metadata(pathname
);
1173 if (ua_sess
->metadata
== NULL
) {
1174 /* malloc() failed */
1178 ret
= open_ust_metadata(app
, ua_sess
);
1180 DBG3("Opening metadata failed. Cleaning up memory");
1182 /* Cleanup failed metadata struct */
1183 free(ua_sess
->metadata
);
1185 * This is very important because delete_ust_app_session check if
1186 * the pointer is null or not in order to delete the metadata.
1188 ua_sess
->metadata
= NULL
;
1192 DBG2("UST metadata opened for app pid %d", app
->pid
);
1195 /* Open UST metadata stream */
1196 if (ua_sess
->metadata
->stream_obj
== NULL
) {
1197 ret
= create_ust_stream(app
, ua_sess
);
1202 ret
= run_as_mkdir(ua_sess
->path
, S_IRWXU
| S_IRWXG
,
1203 ua_sess
->uid
, ua_sess
->gid
);
1205 PERROR("mkdir UST metadata");
1209 ret
= snprintf(ua_sess
->metadata
->pathname
, PATH_MAX
,
1210 "%s/metadata", ua_sess
->path
);
1212 PERROR("asprintf UST create stream");
1216 DBG2("UST metadata stream object created for app pid %d",
1219 ERR("Attempting to create stream without metadata opened");
1230 * Return pointer to traceable apps list.
1232 struct lttng_ht
*ust_app_get_ht(void)
1238 * Return ust app pointer or NULL if not found.
1240 struct ust_app
*ust_app_find_by_pid(pid_t pid
)
1242 struct lttng_ht_node_ulong
*node
;
1243 struct lttng_ht_iter iter
;
1246 lttng_ht_lookup(ust_app_ht
, (void *)((unsigned long) pid
), &iter
);
1247 node
= lttng_ht_iter_get_node_ulong(&iter
);
1249 DBG2("UST app no found with pid %d", pid
);
1254 DBG2("Found UST app by pid %d", pid
);
1256 return caa_container_of(node
, struct ust_app
, pid_n
);
1264 * Using pid and uid (of the app), allocate a new ust_app struct and
1265 * add it to the global traceable app list.
1267 * On success, return 0, else return malloc -ENOMEM, or -EINVAL if app
1268 * bitness is not supported.
1270 int ust_app_register(struct ust_register_msg
*msg
, int sock
)
1272 struct ust_app
*lta
;
1275 if ((msg
->bits_per_long
== 64 && ust_consumerd64_fd
== -EINVAL
)
1276 || (msg
->bits_per_long
== 32 && ust_consumerd32_fd
== -EINVAL
)) {
1277 ERR("Registration failed: application \"%s\" (pid: %d) has "
1278 "%d-bit long, but no consumerd for this long size is available.\n",
1279 msg
->name
, msg
->pid
, msg
->bits_per_long
);
1286 if (msg
->major
!= LTTNG_UST_COMM_MAJOR
) {
1287 ERR("Registration failed: application \"%s\" (pid: %d) has "
1288 "communication protocol version %u.%u, but sessiond supports 2.x.\n",
1289 msg
->name
, msg
->pid
, msg
->major
, msg
->minor
);
1296 lta
= zmalloc(sizeof(struct ust_app
));
1302 lta
->ppid
= msg
->ppid
;
1303 lta
->uid
= msg
->uid
;
1304 lta
->gid
= msg
->gid
;
1305 lta
->compatible
= 0; /* Not compatible until proven */
1306 lta
->bits_per_long
= msg
->bits_per_long
;
1307 lta
->v_major
= msg
->major
;
1308 lta
->v_minor
= msg
->minor
;
1309 strncpy(lta
->name
, msg
->name
, sizeof(lta
->name
));
1310 lta
->name
[16] = '\0';
1311 lta
->sessions
= lttng_ht_new(0, LTTNG_HT_TYPE_ULONG
);
1313 lta
->pid
= msg
->pid
;
1314 lttng_ht_node_init_ulong(<a
->pid_n
, (unsigned long)lta
->pid
);
1316 lttng_ht_node_init_ulong(<a
->sock_n
, (unsigned long)lta
->sock
);
1321 * On a re-registration, we want to kick out the previous registration of
1324 lttng_ht_add_replace_ulong(ust_app_ht
, <a
->pid_n
);
1327 * The socket _should_ be unique until _we_ call close. So, a add_unique
1328 * for the ust_app_ht_by_sock is used which asserts fail if the entry was
1329 * already in the table.
1331 lttng_ht_add_unique_ulong(ust_app_ht_by_sock
, <a
->sock_n
);
1335 DBG("App registered with pid:%d ppid:%d uid:%d gid:%d sock:%d name:%s"
1336 " (version %d.%d)", lta
->pid
, lta
->ppid
, lta
->uid
, lta
->gid
,
1337 lta
->sock
, lta
->name
, lta
->v_major
, lta
->v_minor
);
1343 * Unregister app by removing it from the global traceable app list and freeing
1346 * The socket is already closed at this point so no close to sock.
1348 void ust_app_unregister(int sock
)
1350 struct ust_app
*lta
;
1351 struct lttng_ht_node_ulong
*node
;
1352 struct lttng_ht_iter iter
;
1357 /* Get the node reference for a call_rcu */
1358 lttng_ht_lookup(ust_app_ht_by_sock
, (void *)((unsigned long) sock
), &iter
);
1359 node
= lttng_ht_iter_get_node_ulong(&iter
);
1361 ERR("Unable to find app by sock %d", sock
);
1365 lta
= caa_container_of(node
, struct ust_app
, sock_n
);
1367 DBG("PID %d unregistering with sock %d", lta
->pid
, sock
);
1369 /* Remove application from PID hash table */
1370 ret
= lttng_ht_del(ust_app_ht_by_sock
, &iter
);
1373 /* Assign second node for deletion */
1374 iter
.iter
.node
= <a
->pid_n
.node
;
1376 ret
= lttng_ht_del(ust_app_ht
, &iter
);
1380 call_rcu(<a
->pid_n
.head
, delete_ust_app_rcu
);
1388 * Return traceable_app_count
1390 unsigned long ust_app_list_count(void)
1392 unsigned long count
;
1395 count
= lttng_ht_get_count(ust_app_ht
);
1402 * Fill events array with all events name of all registered apps.
1404 int ust_app_list_events(struct lttng_event
**events
)
1407 size_t nbmem
, count
= 0;
1408 struct lttng_ht_iter iter
;
1409 struct ust_app
*app
;
1410 struct lttng_event
*tmp
;
1412 nbmem
= UST_APP_EVENT_LIST_SIZE
;
1413 tmp
= zmalloc(nbmem
* sizeof(struct lttng_event
));
1415 PERROR("zmalloc ust app events");
1422 cds_lfht_for_each_entry(ust_app_ht
->ht
, &iter
.iter
, app
, pid_n
.node
) {
1423 struct lttng_ust_tracepoint_iter uiter
;
1425 if (!app
->compatible
) {
1427 * TODO: In time, we should notice the caller of this error by
1428 * telling him that this is a version error.
1432 handle
= ustctl_tracepoint_list(app
->sock
);
1434 ERR("UST app list events getting handle failed for app pid %d",
1439 while ((ret
= ustctl_tracepoint_list_get(app
->sock
, handle
,
1440 &uiter
)) != -ENOENT
) {
1441 if (count
>= nbmem
) {
1442 DBG2("Reallocating event list from %zu to %zu entries", nbmem
,
1445 tmp
= realloc(tmp
, nbmem
* sizeof(struct lttng_event
));
1447 PERROR("realloc ust app events");
1452 memcpy(tmp
[count
].name
, uiter
.name
, LTTNG_UST_SYM_NAME_LEN
);
1453 tmp
[count
].loglevel
= uiter
.loglevel
;
1454 tmp
[count
].type
= LTTNG_UST_TRACEPOINT
;
1455 tmp
[count
].pid
= app
->pid
;
1456 tmp
[count
].enabled
= -1;
1464 DBG2("UST app list events done (%zu events)", count
);
1473 * Free and clean all traceable apps of the global list.
1475 void ust_app_clean_list(void)
1478 struct lttng_ht_iter iter
;
1479 struct lttng_ht_node_ulong
*node
;
1481 DBG2("UST app cleaning registered apps hash table");
1485 cds_lfht_for_each_entry(ust_app_ht
->ht
, &iter
.iter
, node
, node
) {
1486 ret
= lttng_ht_del(ust_app_ht
, &iter
);
1488 call_rcu(&node
->head
, delete_ust_app_rcu
);
1491 /* Cleanup socket hash table */
1492 cds_lfht_for_each_entry(ust_app_ht_by_sock
->ht
, &iter
.iter
, node
, node
) {
1493 ret
= lttng_ht_del(ust_app_ht_by_sock
, &iter
);
1497 /* Destroy is done only when the ht is empty */
1498 lttng_ht_destroy(ust_app_ht
);
1499 lttng_ht_destroy(ust_app_ht_by_sock
);
1505 * Init UST app hash table.
1507 void ust_app_ht_alloc(void)
1509 ust_app_ht
= lttng_ht_new(0, LTTNG_HT_TYPE_ULONG
);
1510 ust_app_ht_by_sock
= lttng_ht_new(0, LTTNG_HT_TYPE_ULONG
);
1514 * For a specific UST session, disable the channel for all registered apps.
1516 int ust_app_disable_channel_glb(struct ltt_ust_session
*usess
,
1517 struct ltt_ust_channel
*uchan
)
1520 struct lttng_ht_iter iter
;
1521 struct lttng_ht_node_str
*ua_chan_node
;
1522 struct ust_app
*app
;
1523 struct ust_app_session
*ua_sess
;
1524 struct ust_app_channel
*ua_chan
;
1526 if (usess
== NULL
|| uchan
== NULL
) {
1527 ERR("Disabling UST global channel with NULL values");
1532 DBG2("UST app disabling channel %s from global domain for session id %d",
1533 uchan
->name
, usess
->id
);
1537 /* For every registered applications */
1538 cds_lfht_for_each_entry(ust_app_ht
->ht
, &iter
.iter
, app
, pid_n
.node
) {
1539 struct lttng_ht_iter uiter
;
1540 if (!app
->compatible
) {
1542 * TODO: In time, we should notice the caller of this error by
1543 * telling him that this is a version error.
1547 ua_sess
= lookup_session_by_app(usess
, app
);
1548 if (ua_sess
== NULL
) {
1553 lttng_ht_lookup(ua_sess
->channels
, (void *)uchan
->name
, &uiter
);
1554 ua_chan_node
= lttng_ht_iter_get_node_str(&uiter
);
1555 /* If the session if found for the app, the channel must be there */
1556 assert(ua_chan_node
);
1558 ua_chan
= caa_container_of(ua_chan_node
, struct ust_app_channel
, node
);
1559 /* The channel must not be already disabled */
1560 assert(ua_chan
->enabled
== 1);
1562 /* Disable channel onto application */
1563 ret
= disable_ust_app_channel(ua_sess
, ua_chan
, app
);
1565 /* XXX: We might want to report this error at some point... */
1577 * For a specific UST session, enable the channel for all registered apps.
1579 int ust_app_enable_channel_glb(struct ltt_ust_session
*usess
,
1580 struct ltt_ust_channel
*uchan
)
1583 struct lttng_ht_iter iter
;
1584 struct ust_app
*app
;
1585 struct ust_app_session
*ua_sess
;
1587 if (usess
== NULL
|| uchan
== NULL
) {
1588 ERR("Adding UST global channel to NULL values");
1593 DBG2("UST app enabling channel %s to global domain for session id %d",
1594 uchan
->name
, usess
->id
);
1598 /* For every registered applications */
1599 cds_lfht_for_each_entry(ust_app_ht
->ht
, &iter
.iter
, app
, pid_n
.node
) {
1600 if (!app
->compatible
) {
1602 * TODO: In time, we should notice the caller of this error by
1603 * telling him that this is a version error.
1607 ua_sess
= lookup_session_by_app(usess
, app
);
1608 if (ua_sess
== NULL
) {
1612 /* Enable channel onto application */
1613 ret
= enable_ust_app_channel(ua_sess
, uchan
, app
);
1615 /* XXX: We might want to report this error at some point... */
1627 * Disable an event in a channel and for a specific session.
1629 int ust_app_disable_event_glb(struct ltt_ust_session
*usess
,
1630 struct ltt_ust_channel
*uchan
, struct ltt_ust_event
*uevent
)
1633 struct lttng_ht_iter iter
, uiter
;
1634 struct lttng_ht_node_str
*ua_chan_node
, *ua_event_node
;
1635 struct ust_app
*app
;
1636 struct ust_app_session
*ua_sess
;
1637 struct ust_app_channel
*ua_chan
;
1638 struct ust_app_event
*ua_event
;
1640 DBG("UST app disabling event %s for all apps in channel "
1641 "%s for session id %d", uevent
->attr
.name
, uchan
->name
, usess
->id
);
1645 /* For all registered applications */
1646 cds_lfht_for_each_entry(ust_app_ht
->ht
, &iter
.iter
, app
, pid_n
.node
) {
1647 if (!app
->compatible
) {
1649 * TODO: In time, we should notice the caller of this error by
1650 * telling him that this is a version error.
1654 ua_sess
= lookup_session_by_app(usess
, app
);
1655 if (ua_sess
== NULL
) {
1660 /* Lookup channel in the ust app session */
1661 lttng_ht_lookup(ua_sess
->channels
, (void *)uchan
->name
, &uiter
);
1662 ua_chan_node
= lttng_ht_iter_get_node_str(&uiter
);
1663 if (ua_chan_node
== NULL
) {
1664 DBG2("Channel %s not found in session id %d for app pid %d."
1665 "Skipping", uchan
->name
, usess
->id
, app
->pid
);
1668 ua_chan
= caa_container_of(ua_chan_node
, struct ust_app_channel
, node
);
1670 lttng_ht_lookup(ua_chan
->events
, (void *)uevent
->attr
.name
, &uiter
);
1671 ua_event_node
= lttng_ht_iter_get_node_str(&uiter
);
1672 if (ua_event_node
== NULL
) {
1673 DBG2("Event %s not found in channel %s for app pid %d."
1674 "Skipping", uevent
->attr
.name
, uchan
->name
, app
->pid
);
1677 ua_event
= caa_container_of(ua_event_node
, struct ust_app_event
, node
);
1679 ret
= disable_ust_app_event(ua_sess
, ua_event
, app
);
1681 /* XXX: Report error someday... */
1692 * For a specific UST session and UST channel, the event for all
1695 int ust_app_disable_all_event_glb(struct ltt_ust_session
*usess
,
1696 struct ltt_ust_channel
*uchan
)
1699 struct lttng_ht_iter iter
, uiter
;
1700 struct lttng_ht_node_str
*ua_chan_node
;
1701 struct ust_app
*app
;
1702 struct ust_app_session
*ua_sess
;
1703 struct ust_app_channel
*ua_chan
;
1704 struct ust_app_event
*ua_event
;
1706 DBG("UST app disabling all event for all apps in channel "
1707 "%s for session id %d", uchan
->name
, usess
->id
);
1711 /* For all registered applications */
1712 cds_lfht_for_each_entry(ust_app_ht
->ht
, &iter
.iter
, app
, pid_n
.node
) {
1713 if (!app
->compatible
) {
1715 * TODO: In time, we should notice the caller of this error by
1716 * telling him that this is a version error.
1720 ua_sess
= lookup_session_by_app(usess
, app
);
1721 /* If ua_sess is NULL, there is a code flow error */
1724 /* Lookup channel in the ust app session */
1725 lttng_ht_lookup(ua_sess
->channels
, (void *)uchan
->name
, &uiter
);
1726 ua_chan_node
= lttng_ht_iter_get_node_str(&uiter
);
1727 /* If the channel is not found, there is a code flow error */
1728 assert(ua_chan_node
);
1730 ua_chan
= caa_container_of(ua_chan_node
, struct ust_app_channel
, node
);
1732 /* Disable each events of channel */
1733 cds_lfht_for_each_entry(ua_chan
->events
->ht
, &uiter
.iter
, ua_event
,
1735 ret
= disable_ust_app_event(ua_sess
, ua_event
, app
);
1737 /* XXX: Report error someday... */
1749 * For a specific UST session, create the channel for all registered apps.
1751 int ust_app_create_channel_glb(struct ltt_ust_session
*usess
,
1752 struct ltt_ust_channel
*uchan
)
1754 struct lttng_ht_iter iter
;
1755 struct ust_app
*app
;
1756 struct ust_app_session
*ua_sess
;
1757 struct ust_app_channel
*ua_chan
;
1759 /* Very wrong code flow */
1763 DBG2("UST app adding channel %s to global domain for session id %d",
1764 uchan
->name
, usess
->id
);
1768 /* For every registered applications */
1769 cds_lfht_for_each_entry(ust_app_ht
->ht
, &iter
.iter
, app
, pid_n
.node
) {
1770 if (!app
->compatible
) {
1772 * TODO: In time, we should notice the caller of this error by
1773 * telling him that this is a version error.
1778 * Create session on the tracer side and add it to app session HT. Note
1779 * that if session exist, it will simply return a pointer to the ust
1782 ua_sess
= create_ust_app_session(usess
, app
);
1783 if (ua_sess
== NULL
) {
1784 /* The malloc() failed. */
1786 } else if (ua_sess
== (void *) -1UL) {
1787 /* The application's socket is not valid. Contiuing */
1791 /* Create channel onto application */
1792 ua_chan
= create_ust_app_channel(ua_sess
, uchan
, app
);
1793 if (ua_chan
== NULL
) {
1794 /* Major problem here and it's maybe the tracer or malloc() */
1808 * Enable event for a specific session and channel on the tracer.
1810 int ust_app_enable_event_glb(struct ltt_ust_session
*usess
,
1811 struct ltt_ust_channel
*uchan
, struct ltt_ust_event
*uevent
)
1814 struct lttng_ht_iter iter
, uiter
;
1815 struct lttng_ht_node_str
*ua_chan_node
, *ua_event_node
;
1816 struct ust_app
*app
;
1817 struct ust_app_session
*ua_sess
;
1818 struct ust_app_channel
*ua_chan
;
1819 struct ust_app_event
*ua_event
;
1821 DBG("UST app enabling event %s for all apps for session id %d",
1822 uevent
->attr
.name
, usess
->id
);
1825 * NOTE: At this point, this function is called only if the session and
1826 * channel passed are already created for all apps. and enabled on the
1832 /* For all registered applications */
1833 cds_lfht_for_each_entry(ust_app_ht
->ht
, &iter
.iter
, app
, pid_n
.node
) {
1834 if (!app
->compatible
) {
1836 * TODO: In time, we should notice the caller of this error by
1837 * telling him that this is a version error.
1841 ua_sess
= lookup_session_by_app(usess
, app
);
1842 /* If ua_sess is NULL, there is a code flow error */
1845 /* Lookup channel in the ust app session */
1846 lttng_ht_lookup(ua_sess
->channels
, (void *)uchan
->name
, &uiter
);
1847 ua_chan_node
= lttng_ht_iter_get_node_str(&uiter
);
1848 /* If the channel is not found, there is a code flow error */
1849 assert(ua_chan_node
);
1851 ua_chan
= caa_container_of(ua_chan_node
, struct ust_app_channel
, node
);
1853 lttng_ht_lookup(ua_chan
->events
, (void*)uevent
->attr
.name
, &uiter
);
1854 ua_event_node
= lttng_ht_iter_get_node_str(&uiter
);
1855 if (ua_event_node
== NULL
) {
1856 DBG3("UST app enable event %s not found for app PID %d."
1857 "Skipping app", uevent
->attr
.name
, app
->pid
);
1860 ua_event
= caa_container_of(ua_event_node
, struct ust_app_event
, node
);
1862 ret
= enable_ust_app_event(ua_sess
, ua_event
, app
);
1874 * For a specific existing UST session and UST channel, creates the event for
1875 * all registered apps.
1877 int ust_app_create_event_glb(struct ltt_ust_session
*usess
,
1878 struct ltt_ust_channel
*uchan
, struct ltt_ust_event
*uevent
)
1881 struct lttng_ht_iter iter
, uiter
;
1882 struct lttng_ht_node_str
*ua_chan_node
;
1883 struct ust_app
*app
;
1884 struct ust_app_session
*ua_sess
;
1885 struct ust_app_channel
*ua_chan
;
1887 DBG("UST app creating event %s for all apps for session id %d",
1888 uevent
->attr
.name
, usess
->id
);
1892 /* For all registered applications */
1893 cds_lfht_for_each_entry(ust_app_ht
->ht
, &iter
.iter
, app
, pid_n
.node
) {
1894 if (!app
->compatible
) {
1896 * TODO: In time, we should notice the caller of this error by
1897 * telling him that this is a version error.
1901 ua_sess
= lookup_session_by_app(usess
, app
);
1902 /* If ua_sess is NULL, there is a code flow error */
1905 /* Lookup channel in the ust app session */
1906 lttng_ht_lookup(ua_sess
->channels
, (void *)uchan
->name
, &uiter
);
1907 ua_chan_node
= lttng_ht_iter_get_node_str(&uiter
);
1908 /* If the channel is not found, there is a code flow error */
1909 assert(ua_chan_node
);
1911 ua_chan
= caa_container_of(ua_chan_node
, struct ust_app_channel
, node
);
1913 ret
= create_ust_app_event(ua_sess
, ua_chan
, uevent
, app
);
1915 if (ret
!= -EEXIST
) {
1916 /* Possible value at this point: -ENOMEM. If so, we stop! */
1919 DBG2("UST app event %s already exist on app PID %d",
1920 uevent
->attr
.name
, app
->pid
);
1931 * Start tracing for a specific UST session and app.
1933 int ust_app_start_trace(struct ltt_ust_session
*usess
, struct ust_app
*app
)
1936 struct lttng_ht_iter iter
;
1937 struct ust_app_session
*ua_sess
;
1938 struct ust_app_channel
*ua_chan
;
1939 struct ltt_ust_stream
*ustream
;
1942 DBG("Starting tracing for ust app pid %d", app
->pid
);
1946 if (!app
->compatible
) {
1950 ua_sess
= lookup_session_by_app(usess
, app
);
1951 if (ua_sess
== NULL
) {
1952 goto error_rcu_unlock
;
1955 /* Upon restart, we skip the setup, already done */
1956 if (ua_sess
->started
) {
1960 /* Indicate that the session has been started once */
1961 ua_sess
->started
= 1;
1963 ret
= create_ust_app_metadata(ua_sess
, usess
->pathname
, app
);
1965 goto error_rcu_unlock
;
1968 /* For each channel */
1969 cds_lfht_for_each_entry(ua_sess
->channels
->ht
, &iter
.iter
, ua_chan
,
1971 /* Create all streams */
1973 /* Create UST stream */
1974 ustream
= zmalloc(sizeof(*ustream
));
1975 if (ustream
== NULL
) {
1976 PERROR("zmalloc ust stream");
1977 goto error_rcu_unlock
;
1980 ret
= ustctl_create_stream(app
->sock
, ua_chan
->obj
,
1983 /* Got all streams */
1987 ustream
->handle
= ustream
->obj
->handle
;
1989 /* Order is important */
1990 cds_list_add_tail(&ustream
->list
, &ua_chan
->streams
.head
);
1991 ret
= snprintf(ustream
->pathname
, PATH_MAX
, "%s/%s_%u",
1992 ua_sess
->path
, ua_chan
->name
,
1993 ua_chan
->streams
.count
++);
1995 PERROR("asprintf UST create stream");
1997 * XXX what should we do here with the
2002 DBG2("UST stream %d ready at %s", ua_chan
->streams
.count
,
2007 switch (app
->bits_per_long
) {
2009 consumerd_fd
= ust_consumerd64_fd
;
2012 consumerd_fd
= ust_consumerd32_fd
;
2016 goto error_rcu_unlock
;
2019 /* Setup UST consumer socket and send fds to it */
2020 ret
= ust_consumer_send_session(consumerd_fd
, ua_sess
);
2022 goto error_rcu_unlock
;
2026 /* This start the UST tracing */
2027 ret
= ustctl_start_session(app
->sock
, ua_sess
->handle
);
2029 ERR("Error starting tracing for app pid: %d", app
->pid
);
2030 goto error_rcu_unlock
;
2033 /* Quiescent wait after starting trace */
2034 ustctl_wait_quiescent(app
->sock
);
2046 * Stop tracing for a specific UST session and app.
2048 int ust_app_stop_trace(struct ltt_ust_session
*usess
, struct ust_app
*app
)
2051 struct lttng_ht_iter iter
;
2052 struct ust_app_session
*ua_sess
;
2053 struct ust_app_channel
*ua_chan
;
2055 DBG("Stopping tracing for ust app pid %d", app
->pid
);
2059 if (!app
->compatible
) {
2063 ua_sess
= lookup_session_by_app(usess
, app
);
2064 if (ua_sess
== NULL
) {
2065 /* Only malloc can failed so something is really wrong */
2066 goto error_rcu_unlock
;
2070 * If started = 0, it means that stop trace has been called for a session
2071 * that was never started. This is a code flow error and should never
2074 assert(ua_sess
->started
== 1);
2076 /* This inhibits UST tracing */
2077 ret
= ustctl_stop_session(app
->sock
, ua_sess
->handle
);
2079 ERR("Error stopping tracing for app pid: %d", app
->pid
);
2080 goto error_rcu_unlock
;
2083 /* Quiescent wait after stopping trace */
2084 ustctl_wait_quiescent(app
->sock
);
2086 /* Flushing buffers */
2087 cds_lfht_for_each_entry(ua_sess
->channels
->ht
, &iter
.iter
, ua_chan
,
2089 ret
= ustctl_sock_flush_buffer(app
->sock
, ua_chan
->obj
);
2091 ERR("UST app PID %d channel %s flush failed with ret %d",
2092 app
->pid
, ua_chan
->name
, ret
);
2093 /* Continuing flushing all buffers */
2098 /* Flush all buffers before stopping */
2099 ret
= ustctl_sock_flush_buffer(app
->sock
, ua_sess
->metadata
->obj
);
2101 ERR("UST app PID %d metadata flush failed with ret %d", app
->pid
,
2115 * Destroy a specific UST session in apps.
2117 int ust_app_destroy_trace(struct ltt_ust_session
*usess
, struct ust_app
*app
)
2119 struct ust_app_session
*ua_sess
;
2120 struct lttng_ust_object_data obj
;
2121 struct lttng_ht_iter iter
;
2122 struct lttng_ht_node_ulong
*node
;
2125 DBG("Destroy tracing for ust app pid %d", app
->pid
);
2129 if (!app
->compatible
) {
2133 __lookup_session_by_app(usess
, app
, &iter
);
2134 node
= lttng_ht_iter_get_node_ulong(&iter
);
2136 /* Only malloc can failed so something is really wrong */
2137 goto error_rcu_unlock
;
2139 ua_sess
= caa_container_of(node
, struct ust_app_session
, node
);
2140 ret
= lttng_ht_del(app
->sessions
, &iter
);
2142 obj
.handle
= ua_sess
->handle
;
2145 obj
.memory_map_size
= 0;
2146 ustctl_release_object(app
->sock
, &obj
);
2148 delete_ust_app_session(app
->sock
, ua_sess
);
2150 /* Quiescent wait after stopping trace */
2151 ustctl_wait_quiescent(app
->sock
);
2163 * Start tracing for the UST session.
2165 int ust_app_start_trace_all(struct ltt_ust_session
*usess
)
2168 struct lttng_ht_iter iter
;
2169 struct ust_app
*app
;
2171 DBG("Starting all UST traces");
2175 cds_lfht_for_each_entry(ust_app_ht
->ht
, &iter
.iter
, app
, pid_n
.node
) {
2176 ret
= ust_app_start_trace(usess
, app
);
2178 /* Continue to next apps even on error */
2189 * Start tracing for the UST session.
2191 int ust_app_stop_trace_all(struct ltt_ust_session
*usess
)
2194 struct lttng_ht_iter iter
;
2195 struct ust_app
*app
;
2197 DBG("Stopping all UST traces");
2201 cds_lfht_for_each_entry(ust_app_ht
->ht
, &iter
.iter
, app
, pid_n
.node
) {
2202 ret
= ust_app_stop_trace(usess
, app
);
2204 /* Continue to next apps even on error */
2215 * Destroy app UST session.
2217 int ust_app_destroy_trace_all(struct ltt_ust_session
*usess
)
2220 struct lttng_ht_iter iter
;
2221 struct ust_app
*app
;
2223 DBG("Destroy all UST traces");
2227 cds_lfht_for_each_entry(ust_app_ht
->ht
, &iter
.iter
, app
, pid_n
.node
) {
2228 ret
= ust_app_destroy_trace(usess
, app
);
2230 /* Continue to next apps even on error */
2241 * Add channels/events from UST global domain to registered apps at sock.
2243 void ust_app_global_update(struct ltt_ust_session
*usess
, int sock
)
2246 struct lttng_ht_iter iter
, uiter
, iter_ctx
;
2247 struct ust_app
*app
;
2248 struct ust_app_session
*ua_sess
;
2249 struct ust_app_channel
*ua_chan
;
2250 struct ust_app_event
*ua_event
;
2251 struct ust_app_ctx
*ua_ctx
;
2253 if (usess
== NULL
) {
2254 ERR("No UST session on global update. Returning");
2258 DBG2("UST app global update for app sock %d for session id %d", sock
,
2263 app
= find_app_by_sock(sock
);
2265 ERR("Failed to update app sock %d", sock
);
2269 if (!app
->compatible
) {
2273 ua_sess
= create_ust_app_session(usess
, app
);
2274 if (ua_sess
== NULL
) {
2279 * We can iterate safely here over all UST app session sicne the create ust
2280 * app session above made a shadow copy of the UST global domain from the
2283 cds_lfht_for_each_entry(ua_sess
->channels
->ht
, &iter
.iter
, ua_chan
,
2285 ret
= create_ust_channel(app
, ua_sess
, ua_chan
);
2287 /* FIXME: Should we quit here or continue... */
2291 cds_lfht_for_each_entry(ua_chan
->ctx
->ht
, &iter_ctx
.iter
, ua_ctx
,
2293 ret
= create_ust_channel_context(ua_chan
, ua_ctx
, app
);
2295 /* FIXME: Should we quit here or continue... */
2301 /* For each events */
2302 cds_lfht_for_each_entry(ua_chan
->events
->ht
, &uiter
.iter
, ua_event
,
2304 ret
= create_ust_event(app
, ua_sess
, ua_chan
, ua_event
);
2306 /* FIXME: Should we quit here or continue... */
2310 /* Add context on events. */
2311 cds_lfht_for_each_entry(ua_event
->ctx
->ht
, &iter_ctx
.iter
,
2312 ua_ctx
, node
.node
) {
2313 ret
= create_ust_event_context(ua_event
, ua_ctx
, app
);
2315 /* FIXME: Should we quit here or continue... */
2322 if (usess
->start_trace
) {
2323 ret
= ust_app_start_trace(usess
, app
);
2328 DBG2("UST trace started for app pid %d", app
->pid
);
2337 * Add context to a specific channel for global UST domain.
2339 int ust_app_add_ctx_channel_glb(struct ltt_ust_session
*usess
,
2340 struct ltt_ust_channel
*uchan
, struct ltt_ust_context
*uctx
)
2343 struct lttng_ht_node_str
*ua_chan_node
;
2344 struct lttng_ht_iter iter
, uiter
;
2345 struct ust_app_channel
*ua_chan
= NULL
;
2346 struct ust_app_session
*ua_sess
;
2347 struct ust_app
*app
;
2351 cds_lfht_for_each_entry(ust_app_ht
->ht
, &iter
.iter
, app
, pid_n
.node
) {
2352 if (!app
->compatible
) {
2354 * TODO: In time, we should notice the caller of this error by
2355 * telling him that this is a version error.
2359 ua_sess
= lookup_session_by_app(usess
, app
);
2360 if (ua_sess
== NULL
) {
2364 /* Lookup channel in the ust app session */
2365 lttng_ht_lookup(ua_sess
->channels
, (void *)uchan
->name
, &uiter
);
2366 ua_chan_node
= lttng_ht_iter_get_node_str(&uiter
);
2367 if (ua_chan_node
== NULL
) {
2370 ua_chan
= caa_container_of(ua_chan_node
, struct ust_app_channel
,
2373 ret
= create_ust_app_channel_context(ua_sess
, ua_chan
, &uctx
->ctx
, app
);
2384 * Add context to a specific event in a channel for global UST domain.
2386 int ust_app_add_ctx_event_glb(struct ltt_ust_session
*usess
,
2387 struct ltt_ust_channel
*uchan
, struct ltt_ust_event
*uevent
,
2388 struct ltt_ust_context
*uctx
)
2391 struct lttng_ht_node_str
*ua_chan_node
, *ua_event_node
;
2392 struct lttng_ht_iter iter
, uiter
;
2393 struct ust_app_session
*ua_sess
;
2394 struct ust_app_event
*ua_event
;
2395 struct ust_app_channel
*ua_chan
= NULL
;
2396 struct ust_app
*app
;
2400 cds_lfht_for_each_entry(ust_app_ht
->ht
, &iter
.iter
, app
, pid_n
.node
) {
2401 if (!app
->compatible
) {
2403 * TODO: In time, we should notice the caller of this error by
2404 * telling him that this is a version error.
2408 ua_sess
= lookup_session_by_app(usess
, app
);
2409 if (ua_sess
== NULL
) {
2413 /* Lookup channel in the ust app session */
2414 lttng_ht_lookup(ua_sess
->channels
, (void *)uchan
->name
, &uiter
);
2415 ua_chan_node
= lttng_ht_iter_get_node_str(&uiter
);
2416 if (ua_chan_node
== NULL
) {
2419 ua_chan
= caa_container_of(ua_chan_node
, struct ust_app_channel
,
2422 lttng_ht_lookup(ua_chan
->events
, (void *)uevent
->attr
.name
, &uiter
);
2423 ua_event_node
= lttng_ht_iter_get_node_str(&uiter
);
2424 if (ua_event_node
== NULL
) {
2427 ua_event
= caa_container_of(ua_event_node
, struct ust_app_event
,
2430 ret
= create_ust_app_event_context(ua_sess
, ua_event
, &uctx
->ctx
, app
);
2441 * Enable event for a channel from a UST session for a specific PID.
2443 int ust_app_enable_event_pid(struct ltt_ust_session
*usess
,
2444 struct ltt_ust_channel
*uchan
, struct ltt_ust_event
*uevent
, pid_t pid
)
2447 struct lttng_ht_iter iter
;
2448 struct lttng_ht_node_str
*ua_chan_node
, *ua_event_node
;
2449 struct ust_app
*app
;
2450 struct ust_app_session
*ua_sess
;
2451 struct ust_app_channel
*ua_chan
;
2452 struct ust_app_event
*ua_event
;
2454 DBG("UST app enabling event %s for PID %d", uevent
->attr
.name
, pid
);
2458 app
= ust_app_find_by_pid(pid
);
2460 ERR("UST app enable event per PID %d not found", pid
);
2465 if (!app
->compatible
) {
2470 ua_sess
= lookup_session_by_app(usess
, app
);
2471 /* If ua_sess is NULL, there is a code flow error */
2474 /* Lookup channel in the ust app session */
2475 lttng_ht_lookup(ua_sess
->channels
, (void *)uchan
->name
, &iter
);
2476 ua_chan_node
= lttng_ht_iter_get_node_str(&iter
);
2477 /* If the channel is not found, there is a code flow error */
2478 assert(ua_chan_node
);
2480 ua_chan
= caa_container_of(ua_chan_node
, struct ust_app_channel
, node
);
2482 lttng_ht_lookup(ua_chan
->events
, (void *)uevent
->attr
.name
, &iter
);
2483 ua_event_node
= lttng_ht_iter_get_node_str(&iter
);
2484 if (ua_event_node
== NULL
) {
2485 ret
= create_ust_app_event(ua_sess
, ua_chan
, uevent
, app
);
2490 ua_event
= caa_container_of(ua_event_node
, struct ust_app_event
, node
);
2492 ret
= enable_ust_app_event(ua_sess
, ua_event
, app
);
2504 * Disable event for a channel from a UST session for a specific PID.
2506 int ust_app_disable_event_pid(struct ltt_ust_session
*usess
,
2507 struct ltt_ust_channel
*uchan
, struct ltt_ust_event
*uevent
, pid_t pid
)
2510 struct lttng_ht_iter iter
;
2511 struct lttng_ht_node_str
*ua_chan_node
, *ua_event_node
;
2512 struct ust_app
*app
;
2513 struct ust_app_session
*ua_sess
;
2514 struct ust_app_channel
*ua_chan
;
2515 struct ust_app_event
*ua_event
;
2517 DBG("UST app disabling event %s for PID %d", uevent
->attr
.name
, pid
);
2521 app
= ust_app_find_by_pid(pid
);
2523 ERR("UST app disable event per PID %d not found", pid
);
2528 if (!app
->compatible
) {
2533 ua_sess
= lookup_session_by_app(usess
, app
);
2534 /* If ua_sess is NULL, there is a code flow error */
2537 /* Lookup channel in the ust app session */
2538 lttng_ht_lookup(ua_sess
->channels
, (void *)uchan
->name
, &iter
);
2539 ua_chan_node
= lttng_ht_iter_get_node_str(&iter
);
2540 if (ua_chan_node
== NULL
) {
2541 /* Channel does not exist, skip disabling */
2544 ua_chan
= caa_container_of(ua_chan_node
, struct ust_app_channel
, node
);
2546 lttng_ht_lookup(ua_chan
->events
, (void *)uevent
->attr
.name
, &iter
);
2547 ua_event_node
= lttng_ht_iter_get_node_str(&iter
);
2548 if (ua_event_node
== NULL
) {
2549 /* Event does not exist, skip disabling */
2552 ua_event
= caa_container_of(ua_event_node
, struct ust_app_event
, node
);
2554 ret
= disable_ust_app_event(ua_sess
, ua_event
, app
);
2565 * Validate version of UST apps and set the compatible bit.
2567 int ust_app_validate_version(int sock
)
2570 struct ust_app
*app
;
2574 app
= find_app_by_sock(sock
);
2577 ret
= ustctl_tracer_version(sock
, &app
->version
);
2582 /* Validate version */
2583 if (app
->version
.major
> UST_APP_MAJOR_VERSION
) {
2587 DBG2("UST app PID %d is compatible with major version %d "
2588 "(supporting <= %d)", app
->pid
, app
->version
.major
,
2589 UST_APP_MAJOR_VERSION
);
2590 app
->compatible
= 1;
2595 DBG2("UST app PID %d is not compatible with major version %d "
2596 "(supporting <= %d)", app
->pid
, app
->version
.major
,
2597 UST_APP_MAJOR_VERSION
);
2598 app
->compatible
= 0;
2604 * Calibrate registered applications.
2606 int ust_app_calibrate_glb(struct lttng_ust_calibrate
*calibrate
)
2609 struct lttng_ht_iter iter
;
2610 struct ust_app
*app
;
2614 cds_lfht_for_each_entry(ust_app_ht
->ht
, &iter
.iter
, app
, pid_n
.node
) {
2615 if (!app
->compatible
) {
2617 * TODO: In time, we should notice the caller of this error by
2618 * telling him that this is a version error.
2623 ret
= ustctl_calibrate(app
->sock
, calibrate
);
2627 /* Means that it's not implemented on the tracer side. */
2631 /* TODO: Report error to user */
2632 DBG2("Calibrate app PID %d returned with error %d",
2639 DBG("UST app global domain calibration finished");