2 * Copyright (C) 2011 - David Goulet <david.goulet@polymtl.ca>
4 * This program is free software; you can redistribute it and/or
5 * modify it under the terms of the GNU General Public License
6 * as published by the Free Software Foundation; only version 2
9 * This program is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 * GNU General Public License for more details.
14 * You should have received a copy of the GNU General Public License
15 * along with this program; if not, write to the Free Software
16 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
26 #include <sys/types.h>
29 #include <urcu/compiler.h>
31 #include <lttng-share.h>
33 #include "hashtable.h"
35 #include "ust-consumer.h"
39 * Delete ust app event safely. RCU read lock must be held before calling
42 static void delete_ust_app_event(int sock
, struct ust_app_event
*ua_event
)
44 /* TODO : remove context */
45 //struct ust_app_ctx *ltctx;
46 //cds_lfht_for_each_entry(lte->ctx, &iter, ltctx, node) {
47 // delete_ust_app_ctx(sock, ltctx);
50 if (ua_event
->obj
!= NULL
) {
51 ustctl_release_object(sock
, ua_event
->obj
);
58 * Delete ust app stream safely. RCU read lock must be held before calling
61 static void delete_ust_app_stream(int sock
, struct ltt_ust_stream
*stream
)
63 ustctl_release_object(sock
, stream
->obj
);
69 * Delete ust app channel safely. RCU read lock must be held before calling
72 static void delete_ust_app_channel(int sock
, struct ust_app_channel
*ua_chan
)
75 struct cds_lfht_iter iter
;
76 struct ust_app_event
*ua_event
;
77 struct ltt_ust_stream
*stream
, *stmp
;
79 cds_list_for_each_entry_safe(stream
, stmp
, &ua_chan
->streams
.head
, list
) {
80 cds_list_del(&stream
->list
);
81 delete_ust_app_stream(sock
, stream
);
84 /* TODO : remove channel context */
85 //cds_lfht_for_each_entry(ltc->ctx, &iter, ltctx, node) {
86 // ret = hashtable_del(ltc->ctx, &iter);
88 // delete_ust_app_ctx(sock, ltctx);
90 //ret = hashtable_destroy(ltc->ctx);
92 cds_lfht_for_each_entry(ua_chan
->events
, &iter
, ua_event
, node
) {
93 ret
= hashtable_del(ua_chan
->events
, &iter
);
95 delete_ust_app_event(sock
, ua_event
);
98 ret
= hashtable_destroy(ua_chan
->events
);
100 ERR("UST app destroy session hashtable failed");
104 if (ua_chan
->obj
!= NULL
) {
105 ustctl_release_object(sock
, ua_chan
->obj
);
115 * Delete ust app session safely. RCU read lock must be held before calling
118 static void delete_ust_app_session(int sock
,
119 struct ust_app_session
*ua_sess
)
122 struct cds_lfht_iter iter
;
123 struct ust_app_channel
*ua_chan
;
125 if (ua_sess
->metadata
) {
126 ustctl_release_object(sock
, ua_sess
->metadata
->stream_obj
);
127 free(ua_sess
->metadata
->stream_obj
);
128 ustctl_release_object(sock
, ua_sess
->metadata
->obj
);
129 free(ua_sess
->metadata
->obj
);
132 cds_lfht_for_each_entry(ua_sess
->channels
, &iter
, ua_chan
, node
) {
133 ret
= hashtable_del(ua_sess
->channels
, &iter
);
135 delete_ust_app_channel(sock
, ua_chan
);
138 ret
= hashtable_destroy(ua_sess
->channels
);
140 ERR("UST app destroy session hashtable failed");
149 * Delete a traceable application structure from the global list. Never call
150 * this function outside of a call_rcu call.
152 static void delete_ust_app(struct ust_app
*app
)
155 struct cds_lfht_node
*node
;
156 struct cds_lfht_iter iter
;
157 struct ust_app_session
*ua_sess
;
162 /* Remove from key hash table */
163 node
= hashtable_lookup(ust_app_sock_key_map
,
164 (void *) ((unsigned long) app
->key
.sock
), sizeof(void *), &iter
);
166 /* Not suppose to happen */
167 ERR("UST app key %d not found in key hash table", app
->key
.sock
);
171 ret
= hashtable_del(ust_app_sock_key_map
, &iter
);
173 ERR("UST app unable to delete app sock %d from key hash table",
176 DBG2("UST app pair sock %d key %d deleted",
177 app
->key
.sock
, app
->key
.pid
);
180 /* Socket is already closed at this point */
182 /* Delete ust app sessions info */
183 sock
= app
->key
.sock
;
186 cds_lfht_for_each_entry(app
->sessions
, &iter
, ua_sess
, node
) {
187 ret
= hashtable_del(app
->sessions
, &iter
);
189 delete_ust_app_session(app
->key
.sock
, ua_sess
);
192 ret
= hashtable_destroy(app
->sessions
);
194 ERR("UST app destroy session hashtable failed");
199 * Wait until we have removed the key from the sock hash table
200 * before closing this socket, otherwise an application could
201 * re-use the socket ID and race with the teardown, using the
202 * same hash table entry.
206 DBG2("UST app pid %d deleted", app
->key
.pid
);
213 * URCU intermediate call to delete an UST app.
215 static void delete_ust_app_rcu(struct rcu_head
*head
)
217 struct cds_lfht_node
*node
=
218 caa_container_of(head
, struct cds_lfht_node
, head
);
219 struct ust_app
*app
=
220 caa_container_of(node
, struct ust_app
, node
);
226 * Find an ust_app using the sock and return it. RCU read side lock must be
227 * held before calling this helper function.
229 static struct ust_app
*find_app_by_sock(int sock
)
231 struct cds_lfht_node
*node
;
232 struct ust_app_key
*key
;
233 struct cds_lfht_iter iter
;
235 node
= hashtable_lookup(ust_app_sock_key_map
,
236 (void *)((unsigned long) sock
), sizeof(void *), &iter
);
238 DBG2("UST app find by sock %d key not found", sock
);
242 key
= caa_container_of(node
, struct ust_app_key
, node
);
244 node
= hashtable_lookup(ust_app_ht
,
245 (void *)((unsigned long) key
->pid
), sizeof(void *), &iter
);
247 DBG2("UST app find by sock %d not found", sock
);
250 return caa_container_of(node
, struct ust_app
, node
);
257 * Disable the specified event on to UST tracer for the UST session.
259 static int disable_ust_event(struct ust_app
*app
,
260 struct ust_app_session
*ua_sess
, struct ust_app_event
*ua_event
)
264 ret
= ustctl_disable(app
->key
.sock
, ua_event
->obj
);
266 ERR("UST app event %s disable failed for app (pid: %d) "
267 "and session handle %d with ret %d",
268 ua_event
->attr
.name
, app
->key
.pid
, ua_sess
->handle
, ret
);
272 DBG2("UST app event %s disabled successfully for app (pid: %d)",
273 ua_event
->attr
.name
, app
->key
.pid
);
280 * Disable the specified channel on to UST tracer for the UST session.
282 static int disable_ust_channel(struct ust_app
*app
,
283 struct ust_app_session
*ua_sess
, struct ust_app_channel
*ua_chan
)
287 ret
= ustctl_disable(app
->key
.sock
, ua_chan
->obj
);
289 ERR("UST app channel %s disable failed for app (pid: %d) "
290 "and session handle %d with ret %d",
291 ua_chan
->name
, app
->key
.pid
, ua_sess
->handle
, ret
);
295 DBG2("UST app channel %s disabled successfully for app (pid: %d)",
296 ua_chan
->name
, app
->key
.pid
);
303 * Enable the specified channel on to UST tracer for the UST session.
305 static int enable_ust_channel(struct ust_app
*app
,
306 struct ust_app_session
*ua_sess
, struct ust_app_channel
*ua_chan
)
310 ret
= ustctl_enable(app
->key
.sock
, ua_chan
->obj
);
312 ERR("UST app channel %s enable failed for app (pid: %d) "
313 "and session handle %d with ret %d",
314 ua_chan
->name
, app
->key
.pid
, ua_sess
->handle
, ret
);
318 ua_chan
->enabled
= 1;
320 DBG2("UST app channel %s enabled successfully for app (pid: %d)",
321 ua_chan
->name
, app
->key
.pid
);
328 * Enable the specified event on to UST tracer for the UST session.
330 static int enable_ust_event(struct ust_app
*app
,
331 struct ust_app_session
*ua_sess
, struct ust_app_event
*ua_event
)
335 ret
= ustctl_enable(app
->key
.sock
, ua_event
->obj
);
337 ERR("UST app event %s enable failed for app (pid: %d) "
338 "and session handle %d with ret %d",
339 ua_event
->attr
.name
, app
->key
.pid
, ua_sess
->handle
, ret
);
343 DBG2("UST app event %s enabled successfully for app (pid: %d)",
344 ua_event
->attr
.name
, app
->key
.pid
);
351 * Open metadata onto the UST tracer for a UST session.
353 static int open_ust_metadata(struct ust_app
*app
,
354 struct ust_app_session
*ua_sess
)
357 struct lttng_ust_channel_attr uattr
;
359 uattr
.overwrite
= ua_sess
->metadata
->attr
.overwrite
;
360 uattr
.subbuf_size
= ua_sess
->metadata
->attr
.subbuf_size
;
361 uattr
.num_subbuf
= ua_sess
->metadata
->attr
.num_subbuf
;
362 uattr
.switch_timer_interval
=
363 ua_sess
->metadata
->attr
.switch_timer_interval
;
364 uattr
.read_timer_interval
=
365 ua_sess
->metadata
->attr
.read_timer_interval
;
366 uattr
.output
= ua_sess
->metadata
->attr
.output
;
368 /* UST tracer metadata creation */
369 ret
= ustctl_open_metadata(app
->key
.sock
, ua_sess
->handle
, &uattr
,
370 &ua_sess
->metadata
->obj
);
372 ERR("UST app open metadata failed for app pid:%d",
382 * Create stream onto the UST tracer for a UST session.
384 static int create_ust_stream(struct ust_app
*app
,
385 struct ust_app_session
*ua_sess
)
389 ret
= ustctl_create_stream(app
->key
.sock
, ua_sess
->metadata
->obj
,
390 &ua_sess
->metadata
->stream_obj
);
392 ERR("UST create metadata stream failed");
401 * Create the specified channel onto the UST tracer for a UST session.
403 static int create_ust_channel(struct ust_app
*app
,
404 struct ust_app_session
*ua_sess
, struct ust_app_channel
*ua_chan
)
408 /* TODO: remove cast and use lttng-ust-abi.h */
409 ret
= ustctl_create_channel(app
->key
.sock
, ua_sess
->handle
,
410 (struct lttng_ust_channel_attr
*)&ua_chan
->attr
, &ua_chan
->obj
);
412 DBG("Error creating channel %s for app (pid: %d, sock: %d) "
413 "and session handle %d with ret %d",
414 ua_chan
->name
, app
->key
.pid
, app
->key
.sock
,
415 ua_sess
->handle
, ret
);
419 ua_chan
->handle
= ua_chan
->obj
->handle
;
420 ua_chan
->attr
.shm_fd
= ua_chan
->obj
->shm_fd
;
421 ua_chan
->attr
.wait_fd
= ua_chan
->obj
->wait_fd
;
422 ua_chan
->attr
.memory_map_size
= ua_chan
->obj
->memory_map_size
;
424 DBG2("UST app channel %s created successfully for pid:%d and sock:%d",
425 ua_chan
->name
, app
->key
.pid
, app
->key
.sock
);
427 /* If channel is not enabled, disable it on the tracer */
428 if (!ua_chan
->enabled
) {
429 ret
= disable_ust_channel(app
, ua_sess
, ua_chan
);
440 * Create the specified event onto the UST tracer for a UST session.
443 int create_ust_event(struct ust_app
*app
, struct ust_app_session
*ua_sess
,
444 struct ust_app_channel
*ua_chan
, struct ust_app_event
*ua_event
)
448 /* Create UST event on tracer */
449 ret
= ustctl_create_event(app
->key
.sock
, &ua_event
->attr
, ua_chan
->obj
,
452 ERR("Error ustctl create event %s for app pid: %d with ret %d",
453 ua_event
->attr
.name
, app
->key
.pid
, ret
);
457 ua_event
->handle
= ua_event
->obj
->handle
;
459 DBG2("UST app event %s created successfully for pid:%d",
460 ua_event
->attr
.name
, app
->key
.pid
);
462 /* If event not enabled, disable it on the tracer */
463 if (!ua_event
->enabled
) {
464 ret
= disable_ust_event(app
, ua_sess
, ua_event
);
475 * Alloc new UST app session.
477 static struct ust_app_session
*alloc_ust_app_session(void)
479 struct ust_app_session
*ua_sess
;
481 /* Init most of the default value by allocating and zeroing */
482 ua_sess
= zmalloc(sizeof(struct ust_app_session
));
483 if (ua_sess
== NULL
) {
488 ua_sess
->handle
= -1;
489 ua_sess
->channels
= hashtable_new_str(0);
498 * Alloc new UST app channel.
500 static struct ust_app_channel
*alloc_ust_app_channel(char *name
,
501 struct lttng_ust_channel
*attr
)
503 struct ust_app_channel
*ua_chan
;
505 /* Init most of the default value by allocating and zeroing */
506 ua_chan
= zmalloc(sizeof(struct ust_app_channel
));
507 if (ua_chan
== NULL
) {
512 /* Setup channel name */
513 strncpy(ua_chan
->name
, name
, sizeof(ua_chan
->name
));
514 ua_chan
->name
[sizeof(ua_chan
->name
) - 1] = '\0';
516 ua_chan
->enabled
= 1;
517 ua_chan
->handle
= -1;
518 ua_chan
->ctx
= hashtable_new(0);
519 ua_chan
->events
= hashtable_new_str(0);
520 hashtable_node_init(&ua_chan
->node
, (void *) ua_chan
->name
,
521 strlen(ua_chan
->name
));
523 CDS_INIT_LIST_HEAD(&ua_chan
->streams
.head
);
525 /* Copy attributes */
527 memcpy(&ua_chan
->attr
, attr
, sizeof(ua_chan
->attr
));
530 DBG3("UST app channel %s allocated", ua_chan
->name
);
539 * Alloc new UST app event.
541 static struct ust_app_event
*alloc_ust_app_event(char *name
,
542 struct lttng_ust_event
*attr
)
544 struct ust_app_event
*ua_event
;
546 /* Init most of the default value by allocating and zeroing */
547 ua_event
= zmalloc(sizeof(struct ust_app_event
));
548 if (ua_event
== NULL
) {
553 ua_event
->enabled
= 1;
554 strncpy(ua_event
->name
, name
, sizeof(ua_event
->name
));
555 ua_event
->name
[sizeof(ua_event
->name
) - 1] = '\0';
556 ua_event
->ctx
= hashtable_new(0);
557 hashtable_node_init(&ua_event
->node
, (void *) ua_event
->name
,
558 strlen(ua_event
->name
));
560 /* Copy attributes */
562 memcpy(&ua_event
->attr
, attr
, sizeof(ua_event
->attr
));
565 DBG3("UST app event %s allocated", ua_event
->name
);
574 * Copy data between an UST app event and a LTT event.
576 static void shadow_copy_event(struct ust_app_event
*ua_event
,
577 struct ltt_ust_event
*uevent
)
579 strncpy(ua_event
->name
, uevent
->attr
.name
, sizeof(ua_event
->name
));
580 ua_event
->name
[sizeof(ua_event
->name
) - 1] = '\0';
582 /* Copy event attributes */
583 memcpy(&ua_event
->attr
, &uevent
->attr
, sizeof(ua_event
->attr
));
585 /* TODO: support copy context */
589 * Copy data between an UST app channel and a LTT channel.
591 static void shadow_copy_channel(struct ust_app_channel
*ua_chan
,
592 struct ltt_ust_channel
*uchan
)
594 struct cds_lfht_iter iter
;
595 struct cds_lfht_node
*ua_event_node
;
596 struct ltt_ust_event
*uevent
;
597 struct ust_app_event
*ua_event
;
599 DBG2("Shadow copy of UST app channel %s", ua_chan
->name
);
601 strncpy(ua_chan
->name
, uchan
->name
, sizeof(ua_chan
->name
));
602 ua_chan
->name
[sizeof(ua_chan
->name
) - 1] = '\0';
603 /* Copy event attributes */
604 memcpy(&ua_chan
->attr
, &uchan
->attr
, sizeof(ua_chan
->attr
));
606 /* TODO: support copy context */
608 /* Copy all events from ltt ust channel to ust app channel */
609 cds_lfht_for_each_entry(uchan
->events
, &iter
, uevent
, node
) {
610 struct cds_lfht_iter uiter
;
612 ua_event_node
= hashtable_lookup(ua_chan
->events
,
613 (void *) uevent
->attr
.name
, strlen(uevent
->attr
.name
),
615 if (ua_event_node
== NULL
) {
616 DBG2("UST event %s not found on shadow copy channel",
618 ua_event
= alloc_ust_app_event(uevent
->attr
.name
, &uevent
->attr
);
619 if (ua_event
== NULL
) {
622 shadow_copy_event(ua_event
, uevent
);
623 hashtable_add_unique(ua_chan
->events
, &ua_event
->node
);
627 DBG3("Shadow copy channel done");
631 * Copy data between a UST app session and a regular LTT session.
633 static void shadow_copy_session(struct ust_app_session
*ua_sess
,
634 struct ltt_ust_session
*usess
,
637 struct cds_lfht_node
*ua_chan_node
;
638 struct cds_lfht_iter iter
;
639 struct ltt_ust_channel
*uchan
;
640 struct ust_app_channel
*ua_chan
;
646 /* Get date and time for unique app path */
648 timeinfo
= localtime(&rawtime
);
649 strftime(datetime
, sizeof(datetime
), "%Y%m%d-%H%M%S", timeinfo
);
651 DBG2("Shadow copy of session handle %d", ua_sess
->handle
);
653 ua_sess
->uid
= usess
->uid
;
655 ret
= snprintf(ua_sess
->path
, PATH_MAX
,
657 usess
->pathname
, app
->name
, app
->key
.pid
,
660 PERROR("asprintf UST shadow copy session");
661 /* TODO: We cannot return an error from here.. */
665 /* TODO: support all UST domain */
667 /* Iterate over all channels in global domain. */
668 cds_lfht_for_each_entry(usess
->domain_global
.channels
, &iter
,
670 struct cds_lfht_iter uiter
;
672 ua_chan_node
= hashtable_lookup(ua_sess
->channels
,
673 (void *)uchan
->name
, strlen(uchan
->name
),
675 if (ua_chan_node
!= NULL
) {
679 DBG2("Channel %s not found on shadow session copy, creating it",
681 ua_chan
= alloc_ust_app_channel(uchan
->name
, &uchan
->attr
);
682 if (ua_chan
== NULL
) {
683 /* malloc failed... continuing */
687 shadow_copy_channel(ua_chan
, uchan
);
688 hashtable_add_unique(ua_sess
->channels
, &ua_chan
->node
);
693 * Lookup sesison wrapper.
696 void __lookup_session_by_app(struct ltt_ust_session
*usess
,
697 struct ust_app
*app
, struct cds_lfht_iter
*iter
)
699 /* Get right UST app session from app */
700 (void) hashtable_lookup(app
->sessions
,
701 (void *) ((unsigned long) usess
->uid
), sizeof(void *),
706 * Return ust app session from the app session hashtable using the UST session
709 static struct ust_app_session
*lookup_session_by_app(
710 struct ltt_ust_session
*usess
, struct ust_app
*app
)
712 struct cds_lfht_iter iter
;
713 struct cds_lfht_node
*node
;
715 __lookup_session_by_app(usess
, app
, &iter
);
716 node
= hashtable_iter_get_node(&iter
);
721 return caa_container_of(node
, struct ust_app_session
, node
);
728 * Create a UST session onto the tracer of app and add it the session
731 * Return ust app session or NULL on error.
733 static struct ust_app_session
*create_ust_app_session(
734 struct ltt_ust_session
*usess
, struct ust_app
*app
)
737 struct ust_app_session
*ua_sess
;
739 ua_sess
= lookup_session_by_app(usess
, app
);
740 if (ua_sess
== NULL
) {
741 DBG2("UST app pid: %d session uid %d not found, creating it",
742 app
->key
.pid
, usess
->uid
);
743 ua_sess
= alloc_ust_app_session();
744 if (ua_sess
== NULL
) {
745 /* Only malloc can failed so something is really wrong */
748 shadow_copy_session(ua_sess
, usess
, app
);
751 if (ua_sess
->handle
== -1) {
752 ret
= ustctl_create_session(app
->key
.sock
);
754 ERR("Error creating session for app pid %d, sock %d",
755 app
->key
.pid
, app
->key
.sock
);
756 /* TODO: free() ua_sess */
760 DBG2("UST app ustctl create session handle %d", ret
);
761 ua_sess
->handle
= ret
;
763 /* Add ust app session to app's HT */
764 hashtable_node_init(&ua_sess
->node
,
765 (void *)((unsigned long) ua_sess
->uid
), sizeof(void *));
766 hashtable_add_unique(app
->sessions
, &ua_sess
->node
);
768 DBG2("UST app session created successfully with handle %d", ret
);
778 * Enable on the tracer side a ust app event for the session and channel.
781 int enable_ust_app_event(struct ust_app_session
*ua_sess
,
782 struct ust_app_event
*ua_event
, struct ust_app
*app
)
786 ret
= enable_ust_event(app
, ua_sess
, ua_event
);
791 ua_event
->enabled
= 1;
798 * Disable on the tracer side a ust app event for the session and channel.
800 static int disable_ust_app_event(struct ust_app_session
*ua_sess
,
801 struct ust_app_channel
*ua_chan
, struct ust_app_event
*ua_event
,
806 ret
= disable_ust_event(app
, ua_sess
, ua_event
);
811 ua_event
->enabled
= 0;
818 * Lookup ust app channel for session and disable it on the tracer side.
821 int disable_ust_app_channel(struct ust_app_session
*ua_sess
,
822 struct ust_app_channel
*ua_chan
, struct ust_app
*app
)
826 ret
= disable_ust_channel(app
, ua_sess
, ua_chan
);
831 ua_chan
->enabled
= 0;
838 * Lookup ust app channel for session and enable it on the tracer side.
840 static int enable_ust_app_channel(struct ust_app_session
*ua_sess
,
841 struct ltt_ust_channel
*uchan
, struct ust_app
*app
)
844 struct cds_lfht_iter iter
;
845 struct cds_lfht_node
*ua_chan_node
;
846 struct ust_app_channel
*ua_chan
;
848 ua_chan_node
= hashtable_lookup(ua_sess
->channels
,
849 (void *)uchan
->name
, strlen(uchan
->name
), &iter
);
850 if (ua_chan_node
== NULL
) {
851 DBG2("Unable to find channel %s in ust session uid %u",
852 uchan
->name
, ua_sess
->uid
);
856 ua_chan
= caa_container_of(ua_chan_node
, struct ust_app_channel
, node
);
858 ret
= enable_ust_channel(app
, ua_sess
, ua_chan
);
868 * Create UST app channel and create it on the tracer.
870 static struct ust_app_channel
*create_ust_app_channel(
871 struct ust_app_session
*ua_sess
, struct ltt_ust_channel
*uchan
,
875 struct cds_lfht_iter iter
;
876 struct cds_lfht_node
*ua_chan_node
;
877 struct ust_app_channel
*ua_chan
;
879 /* Lookup channel in the ust app session */
880 ua_chan_node
= hashtable_lookup(ua_sess
->channels
,
881 (void *)uchan
->name
, strlen(uchan
->name
), &iter
);
882 if (ua_chan_node
== NULL
) {
883 DBG2("Unable to find channel %s in ust session uid %u",
884 uchan
->name
, ua_sess
->uid
);
885 ua_chan
= alloc_ust_app_channel(uchan
->name
, &uchan
->attr
);
886 if (ua_chan
== NULL
) {
889 shadow_copy_channel(ua_chan
, uchan
);
891 hashtable_add_unique(ua_sess
->channels
, &ua_chan
->node
);
893 ua_chan
= caa_container_of(ua_chan_node
, struct ust_app_channel
, node
);
896 ret
= create_ust_channel(app
, ua_sess
, ua_chan
);
908 * Create UST app event and create it on the tracer side.
911 int create_ust_app_event(struct ust_app_session
*ua_sess
,
912 struct ust_app_channel
*ua_chan
, struct ltt_ust_event
*uevent
,
916 struct cds_lfht_iter iter
;
917 struct cds_lfht_node
*ua_event_node
;
918 struct ust_app_event
*ua_event
;
921 ua_event_node
= hashtable_lookup(ua_chan
->events
,
922 (void *)uevent
->attr
.name
, strlen(uevent
->attr
.name
), &iter
);
923 if (ua_event_node
!= NULL
) {
924 ERR("UST app event %s already exist. Stopping creation.",
929 /* Does not exist so create one */
930 ua_event
= alloc_ust_app_event(uevent
->attr
.name
, &uevent
->attr
);
931 if (ua_event
== NULL
) {
932 /* Only malloc can failed so something is really wrong */
936 shadow_copy_event(ua_event
, uevent
);
938 /* Create it on the tracer side */
939 ret
= create_ust_event(app
, ua_sess
, ua_chan
, ua_event
);
941 delete_ust_app_event(app
->key
.sock
, ua_event
);
945 ua_event
->enabled
= 1;
947 hashtable_add_unique(ua_chan
->events
, &ua_event
->node
);
955 * Create UST metadata and open it on the tracer side.
957 static int create_ust_app_metadata(struct ust_app_session
*ua_sess
,
958 char *pathname
, struct ust_app
*app
)
962 if (ua_sess
->metadata
== NULL
) {
963 /* Allocate UST metadata */
964 ua_sess
->metadata
= trace_ust_create_metadata(pathname
);
965 if (ua_sess
->metadata
== NULL
) {
966 ERR("UST app session %d creating metadata failed",
971 ret
= open_ust_metadata(app
, ua_sess
);
976 DBG2("UST metadata opened for app pid %d", app
->key
.pid
);
979 /* Open UST metadata stream */
980 if (ua_sess
->metadata
->stream_obj
== NULL
) {
981 ret
= create_ust_stream(app
, ua_sess
);
986 ret
= mkdir(ua_sess
->path
, S_IRWXU
| S_IRWXG
);
988 PERROR("mkdir UST metadata");
992 ret
= snprintf(ua_sess
->metadata
->pathname
, PATH_MAX
,
993 "%s/metadata", ua_sess
->path
);
995 PERROR("asprintf UST create stream");
999 DBG2("UST metadata stream object created for app pid %d",
1002 ERR("Attempting to create stream without metadata opened");
1013 * Return pointer to traceable apps list.
1015 struct cds_lfht
*ust_app_get_ht(void)
1021 * Return ust app pointer or NULL if not found.
1023 struct ust_app
*ust_app_find_by_pid(pid_t pid
)
1025 struct cds_lfht_node
*node
;
1026 struct cds_lfht_iter iter
;
1029 node
= hashtable_lookup(ust_app_ht
,
1030 (void *)((unsigned long) pid
), sizeof(void *), &iter
);
1032 DBG2("UST app no found with pid %d", pid
);
1037 DBG2("Found UST app by pid %d", pid
);
1039 return caa_container_of(node
, struct ust_app
, node
);
1047 * Using pid and uid (of the app), allocate a new ust_app struct and
1048 * add it to the global traceable app list.
1050 * On success, return 0, else return malloc -ENOMEM, or -EINVAL if app
1051 * bitness is not supported.
1053 int ust_app_register(struct ust_register_msg
*msg
, int sock
)
1055 struct ust_app
*lta
;
1057 if ((msg
->bits_per_long
== 64 && ust_consumerd64_fd
== -EINVAL
)
1058 || (msg
->bits_per_long
== 32 && ust_consumerd32_fd
== -EINVAL
)) {
1059 ERR("Registration failed: application \"%s\" (pid: %d) has "
1060 "%d-bit long, but no consumerd for this long size is available.\n",
1061 msg
->name
, msg
->pid
, msg
->bits_per_long
);
1065 lta
= zmalloc(sizeof(struct ust_app
));
1071 lta
->ppid
= msg
->ppid
;
1072 lta
->uid
= msg
->uid
;
1073 lta
->gid
= msg
->gid
;
1074 lta
->bits_per_long
= msg
->bits_per_long
;
1075 lta
->v_major
= msg
->major
;
1076 lta
->v_minor
= msg
->minor
;
1077 strncpy(lta
->name
, msg
->name
, sizeof(lta
->name
));
1078 lta
->name
[16] = '\0';
1079 lta
->sessions
= hashtable_new(0);
1082 lta
->key
.pid
= msg
->pid
;
1083 hashtable_node_init(<a
->node
, (void *)((unsigned long)lta
->key
.pid
),
1085 lta
->key
.sock
= sock
;
1086 hashtable_node_init(<a
->key
.node
, (void *)((unsigned long)lta
->key
.sock
),
1090 hashtable_add_unique(ust_app_sock_key_map
, <a
->key
.node
);
1091 hashtable_add_unique(ust_app_ht
, <a
->node
);
1094 DBG("App registered with pid:%d ppid:%d uid:%d gid:%d sock:%d name:%s"
1095 " (version %d.%d)", lta
->key
.pid
, lta
->ppid
, lta
->uid
, lta
->gid
,
1096 lta
->key
.sock
, lta
->name
, lta
->v_major
, lta
->v_minor
);
1102 * Unregister app by removing it from the global traceable app list and freeing
1105 * The socket is already closed at this point so no close to sock.
1107 void ust_app_unregister(int sock
)
1109 struct ust_app
*lta
;
1110 struct cds_lfht_node
*node
;
1111 struct cds_lfht_iter iter
;
1115 lta
= find_app_by_sock(sock
);
1117 ERR("Unregister app sock %d not found!", sock
);
1121 DBG("PID %d unregistering with sock %d", lta
->key
.pid
, sock
);
1123 /* Get the node reference for a call_rcu */
1124 node
= hashtable_lookup(ust_app_ht
,
1125 (void *)((unsigned long) lta
->key
.pid
), sizeof(void *), &iter
);
1127 ERR("Unable to find app sock %d by pid %d", sock
, lta
->key
.pid
);
1131 ret
= hashtable_del(ust_app_ht
, &iter
);
1133 call_rcu(&node
->head
, delete_ust_app_rcu
);
1140 * Return traceable_app_count
1142 unsigned long ust_app_list_count(void)
1144 unsigned long count
;
1147 count
= hashtable_get_count(ust_app_ht
);
1154 * Fill events array with all events name of all registered apps.
1156 int ust_app_list_events(struct lttng_event
**events
)
1159 size_t nbmem
, count
= 0;
1160 struct cds_lfht_iter iter
;
1161 struct ust_app
*app
;
1162 struct lttng_event
*tmp
;
1164 nbmem
= UST_APP_EVENT_LIST_SIZE
;
1165 tmp
= zmalloc(nbmem
* sizeof(struct lttng_event
));
1167 PERROR("zmalloc ust app events");
1174 cds_lfht_for_each_entry(ust_app_ht
, &iter
, app
, node
) {
1175 handle
= ustctl_tracepoint_list(app
->key
.sock
);
1177 ERR("UST app list events getting handle failed for app pid %d",
1182 while ((ret
= ustctl_tracepoint_list_get(app
->key
.sock
, handle
,
1183 tmp
[count
].name
)) != -ENOENT
) {
1184 if (count
> nbmem
) {
1185 DBG2("Reallocating event list from %zu to %zu bytes", nbmem
,
1186 nbmem
+ UST_APP_EVENT_LIST_SIZE
);
1187 nbmem
+= UST_APP_EVENT_LIST_SIZE
;
1188 tmp
= realloc(tmp
, nbmem
* sizeof(struct lttng_event
));
1190 PERROR("realloc ust app events");
1196 tmp
[count
].type
= LTTNG_UST_TRACEPOINT
;
1197 tmp
[count
].pid
= app
->key
.pid
;
1198 tmp
[count
].enabled
= -1;
1206 DBG2("UST app list events done (%zu events)", count
);
1215 * Free and clean all traceable apps of the global list.
1217 void ust_app_clean_list(void)
1220 struct cds_lfht_iter iter
;
1221 struct ust_app
*app
;
1223 DBG2("UST app cleaning registered apps hash table");
1227 cds_lfht_for_each_entry(ust_app_ht
, &iter
, app
, node
) {
1228 ret
= hashtable_del(ust_app_ht
, &iter
);
1230 call_rcu(&iter
.node
->head
, delete_ust_app_rcu
);
1233 hashtable_destroy(ust_app_ht
);
1234 hashtable_destroy(ust_app_sock_key_map
);
1240 * Init UST app hash table.
1242 void ust_app_ht_alloc(void)
1244 ust_app_ht
= hashtable_new(0);
1245 ust_app_sock_key_map
= hashtable_new(0);
1249 * For a specific UST session, disable the channel for all registered apps.
1251 int ust_app_disable_channel_glb(struct ltt_ust_session
*usess
,
1252 struct ltt_ust_channel
*uchan
)
1255 struct cds_lfht_iter iter
;
1256 struct cds_lfht_node
*ua_chan_node
;
1257 struct ust_app
*app
;
1258 struct ust_app_session
*ua_sess
;
1259 struct ust_app_channel
*ua_chan
;
1261 if (usess
== NULL
|| uchan
== NULL
) {
1262 ERR("Disabling UST global channel with NULL values");
1267 DBG2("UST app disabling channel %s from global domain for session uid %d",
1268 uchan
->name
, usess
->uid
);
1272 /* For every registered applications */
1273 cds_lfht_for_each_entry(ust_app_ht
, &iter
, app
, node
) {
1274 ua_sess
= lookup_session_by_app(usess
, app
);
1275 if (ua_sess
== NULL
) {
1280 ua_chan_node
= hashtable_lookup(ua_sess
->channels
,
1281 (void *)uchan
->name
, strlen(uchan
->name
), &iter
);
1282 /* If the session if found for the app, the channel must be there */
1283 assert(ua_chan_node
);
1285 ua_chan
= caa_container_of(ua_chan_node
, struct ust_app_channel
, node
);
1286 /* The channel must not be already disabled */
1287 assert(ua_chan
->enabled
== 1);
1289 /* Disable channel onto application */
1290 ret
= disable_ust_app_channel(ua_sess
, ua_chan
, app
);
1292 /* XXX: We might want to report this error at some point... */
1304 * For a specific UST session, enable the channel for all registered apps.
1306 int ust_app_enable_channel_glb(struct ltt_ust_session
*usess
,
1307 struct ltt_ust_channel
*uchan
)
1310 struct cds_lfht_iter iter
;
1311 struct ust_app
*app
;
1312 struct ust_app_session
*ua_sess
;
1314 if (usess
== NULL
|| uchan
== NULL
) {
1315 ERR("Adding UST global channel to NULL values");
1320 DBG2("UST app enabling channel %s to global domain for session uid %d",
1321 uchan
->name
, usess
->uid
);
1325 /* For every registered applications */
1326 cds_lfht_for_each_entry(ust_app_ht
, &iter
, app
, node
) {
1327 ua_sess
= lookup_session_by_app(usess
, app
);
1328 if (ua_sess
== NULL
) {
1332 /* Enable channel onto application */
1333 ret
= enable_ust_app_channel(ua_sess
, uchan
, app
);
1335 /* XXX: We might want to report this error at some point... */
1347 * Disable an event in a channel and for a specific session.
1349 int ust_app_disable_event_glb(struct ltt_ust_session
*usess
,
1350 struct ltt_ust_channel
*uchan
, struct ltt_ust_event
*uevent
)
1353 struct cds_lfht_iter iter
, uiter
;
1354 struct cds_lfht_node
*ua_chan_node
, *ua_event_node
;
1355 struct ust_app
*app
;
1356 struct ust_app_session
*ua_sess
;
1357 struct ust_app_channel
*ua_chan
;
1358 struct ust_app_event
*ua_event
;
1360 DBG("UST app disabling event %s for all apps in channel "
1361 "%s for session uid %d", uevent
->attr
.name
, uchan
->name
, usess
->uid
);
1365 /* For all registered applications */
1366 cds_lfht_for_each_entry(ust_app_ht
, &iter
, app
, node
) {
1367 ua_sess
= lookup_session_by_app(usess
, app
);
1368 if (ua_sess
== NULL
) {
1373 /* Lookup channel in the ust app session */
1374 ua_chan_node
= hashtable_lookup(ua_sess
->channels
,
1375 (void *)uchan
->name
, strlen(uchan
->name
), &uiter
);
1376 if (ua_chan_node
== NULL
) {
1377 DBG2("Channel %s not found in session uid %d for app pid %d."
1378 "Skipping", uchan
->name
, usess
->uid
, app
->key
.pid
);
1381 ua_chan
= caa_container_of(ua_chan_node
, struct ust_app_channel
, node
);
1383 ua_event_node
= hashtable_lookup(ua_chan
->events
,
1384 (void *)uevent
->attr
.name
, strlen(uevent
->attr
.name
), &uiter
);
1385 if (ua_event_node
== NULL
) {
1386 DBG2("Event %s not found in channel %s for app pid %d."
1387 "Skipping", uevent
->attr
.name
, uchan
->name
, app
->key
.pid
);
1390 ua_event
= caa_container_of(ua_event_node
, struct ust_app_event
, node
);
1392 ret
= disable_ust_app_event(ua_sess
, ua_chan
, ua_event
, app
);
1394 /* XXX: Report error someday... */
1405 * For a specific UST session and UST channel, the event for all
1408 int ust_app_disable_all_event_glb(struct ltt_ust_session
*usess
,
1409 struct ltt_ust_channel
*uchan
)
1412 struct cds_lfht_iter iter
, uiter
;
1413 struct cds_lfht_node
*ua_chan_node
;
1414 struct ust_app
*app
;
1415 struct ust_app_session
*ua_sess
;
1416 struct ust_app_channel
*ua_chan
;
1417 struct ust_app_event
*ua_event
;
1419 DBG("UST app disabling all event for all apps in channel "
1420 "%s for session uid %d", uchan
->name
, usess
->uid
);
1424 /* For all registered applications */
1425 cds_lfht_for_each_entry(ust_app_ht
, &iter
, app
, node
) {
1426 ua_sess
= lookup_session_by_app(usess
, app
);
1427 /* If ua_sess is NULL, there is a code flow error */
1430 /* Lookup channel in the ust app session */
1431 ua_chan_node
= hashtable_lookup(ua_sess
->channels
, (void *)uchan
->name
,
1432 strlen(uchan
->name
), &uiter
);
1433 /* If the channel is not found, there is a code flow error */
1434 assert(ua_chan_node
);
1436 ua_chan
= caa_container_of(ua_chan_node
, struct ust_app_channel
, node
);
1438 /* Disable each events of channel */
1439 cds_lfht_for_each_entry(ua_chan
->events
, &uiter
, ua_event
, node
) {
1440 ret
= disable_ust_app_event(ua_sess
, ua_chan
, ua_event
, app
);
1442 /* XXX: Report error someday... */
1454 * For a specific UST session, create the channel for all registered apps.
1456 int ust_app_create_channel_glb(struct ltt_ust_session
*usess
,
1457 struct ltt_ust_channel
*uchan
)
1460 struct cds_lfht_iter iter
;
1461 struct ust_app
*app
;
1462 struct ust_app_session
*ua_sess
;
1463 struct ust_app_channel
*ua_chan
;
1465 if (usess
== NULL
|| uchan
== NULL
) {
1466 ERR("Adding UST global channel to NULL values");
1471 DBG2("UST app adding channel %s to global domain for session uid %d",
1472 uchan
->name
, usess
->uid
);
1476 /* For every registered applications */
1477 cds_lfht_for_each_entry(ust_app_ht
, &iter
, app
, node
) {
1479 * Create session on the tracer side and add it to app session HT. Note
1480 * that if session exist, it will simply return a pointer to the ust
1483 ua_sess
= create_ust_app_session(usess
, app
);
1484 if (ua_sess
== NULL
) {
1488 /* Create channel onto application */
1489 ua_chan
= create_ust_app_channel(ua_sess
, uchan
, app
);
1490 if (ua_chan
== NULL
) {
1502 * Enable event for a specific session and channel on the tracer.
1504 int ust_app_enable_event_glb(struct ltt_ust_session
*usess
,
1505 struct ltt_ust_channel
*uchan
, struct ltt_ust_event
*uevent
)
1508 struct cds_lfht_iter iter
, uiter
;
1509 struct cds_lfht_node
*ua_chan_node
, *ua_event_node
;
1510 struct ust_app
*app
;
1511 struct ust_app_session
*ua_sess
;
1512 struct ust_app_channel
*ua_chan
;
1513 struct ust_app_event
*ua_event
;
1515 DBG("UST app enabling event %s for all apps for session uid %d",
1516 uevent
->attr
.name
, usess
->uid
);
1519 * NOTE: At this point, this function is called only if the session and
1520 * channel passed are already created for all apps. and enabled on the
1526 /* For all registered applications */
1527 cds_lfht_for_each_entry(ust_app_ht
, &iter
, app
, node
) {
1528 ua_sess
= lookup_session_by_app(usess
, app
);
1529 /* If ua_sess is NULL, there is a code flow error */
1532 /* Lookup channel in the ust app session */
1533 ua_chan_node
= hashtable_lookup(ua_sess
->channels
, (void *)uchan
->name
,
1534 strlen(uchan
->name
), &uiter
);
1535 /* If the channel is not found, there is a code flow error */
1536 assert(ua_chan_node
);
1538 ua_chan
= caa_container_of(ua_chan_node
, struct ust_app_channel
, node
);
1540 ua_event_node
= hashtable_lookup(ua_sess
->channels
,
1541 (void*)uevent
->attr
.name
, strlen(uevent
->attr
.name
), &uiter
);
1542 if (ua_event_node
== NULL
) {
1543 DBG3("UST app enable event %s not found. Skipping app",
1547 ua_event
= caa_container_of(ua_event_node
, struct ust_app_event
, node
);
1549 ret
= enable_ust_app_event(ua_sess
, ua_event
, app
);
1551 /* XXX: Report error someday... */
1562 * For a specific existing UST session and UST channel, creates the event for
1563 * all registered apps.
1565 int ust_app_create_event_glb(struct ltt_ust_session
*usess
,
1566 struct ltt_ust_channel
*uchan
, struct ltt_ust_event
*uevent
)
1569 struct cds_lfht_iter iter
, uiter
;
1570 struct cds_lfht_node
*ua_chan_node
;
1571 struct ust_app
*app
;
1572 struct ust_app_session
*ua_sess
;
1573 struct ust_app_channel
*ua_chan
;
1575 DBG("UST app creating event %s for all apps for session uid %d",
1576 uevent
->attr
.name
, usess
->uid
);
1579 * NOTE: At this point, this function is called only if the session and
1580 * channel passed are already created for all apps. and enabled on the
1586 /* For all registered applications */
1587 cds_lfht_for_each_entry(ust_app_ht
, &iter
, app
, node
) {
1588 ua_sess
= lookup_session_by_app(usess
, app
);
1589 /* If ua_sess is NULL, there is a code flow error */
1592 /* Lookup channel in the ust app session */
1593 ua_chan_node
= hashtable_lookup(ua_sess
->channels
, (void *)uchan
->name
,
1594 strlen(uchan
->name
), &uiter
);
1595 /* If the channel is not found, there is a code flow error */
1596 assert(ua_chan_node
);
1598 ua_chan
= caa_container_of(ua_chan_node
, struct ust_app_channel
, node
);
1600 ret
= create_ust_app_event(ua_sess
, ua_chan
, uevent
, app
);
1612 * Start tracing for a specific UST session and app.
1614 int ust_app_start_trace(struct ltt_ust_session
*usess
, struct ust_app
*app
)
1617 struct cds_lfht_iter iter
;
1618 struct ust_app_session
*ua_sess
;
1619 struct ust_app_channel
*ua_chan
;
1620 struct ltt_ust_stream
*ustream
;
1623 DBG("Starting tracing for ust app pid %d", app
->key
.pid
);
1627 ua_sess
= lookup_session_by_app(usess
, app
);
1628 if (ua_sess
== NULL
) {
1629 goto error_rcu_unlock
;
1632 /* Upon restart, we skip the setup, already done */
1633 if (ua_sess
->started
) {
1637 ret
= create_ust_app_metadata(ua_sess
, usess
->pathname
, app
);
1639 goto error_rcu_unlock
;
1642 /* For each channel */
1643 cds_lfht_for_each_entry(ua_sess
->channels
, &iter
, ua_chan
, node
) {
1644 /* Create all streams */
1646 /* Create UST stream */
1647 ustream
= zmalloc(sizeof(*ustream
));
1648 if (ustream
== NULL
) {
1649 PERROR("zmalloc ust stream");
1650 goto error_rcu_unlock
;
1653 ret
= ustctl_create_stream(app
->key
.sock
, ua_chan
->obj
,
1656 /* Got all streams */
1659 ustream
->handle
= ustream
->obj
->handle
;
1661 /* Order is important */
1662 cds_list_add_tail(&ustream
->list
, &ua_chan
->streams
.head
);
1663 ret
= snprintf(ustream
->pathname
, PATH_MAX
, "%s/%s_%u",
1664 ua_sess
->path
, ua_chan
->name
,
1665 ua_chan
->streams
.count
++);
1667 PERROR("asprintf UST create stream");
1670 DBG2("UST stream %d ready at %s", ua_chan
->streams
.count
,
1675 switch (app
->bits_per_long
) {
1677 consumerd_fd
= ust_consumerd64_fd
;
1680 consumerd_fd
= ust_consumerd32_fd
;
1684 goto error_rcu_unlock
;
1687 /* Setup UST consumer socket and send fds to it */
1688 ret
= ust_consumer_send_session(consumerd_fd
, ua_sess
);
1690 goto error_rcu_unlock
;
1692 ua_sess
->started
= 1;
1695 /* This start the UST tracing */
1696 ret
= ustctl_start_session(app
->key
.sock
, ua_sess
->handle
);
1698 ERR("Error starting tracing for app pid: %d", app
->key
.pid
);
1699 goto error_rcu_unlock
;
1704 /* Quiescent wait after starting trace */
1705 ustctl_wait_quiescent(app
->key
.sock
);
1715 * Stop tracing for a specific UST session and app.
1717 int ust_app_stop_trace(struct ltt_ust_session
*usess
, struct ust_app
*app
)
1720 struct ust_app_session
*ua_sess
;
1722 DBG("Stopping tracing for ust app pid %d", app
->key
.pid
);
1726 ua_sess
= lookup_session_by_app(usess
, app
);
1727 if (ua_sess
== NULL
) {
1728 /* Only malloc can failed so something is really wrong */
1729 goto error_rcu_unlock
;
1732 #if 0 /* only useful when periodical flush will be supported */
1733 /* need to keep a handle on shm in session for this. */
1734 /* Flush all buffers before stopping */
1735 ret
= ustctl_flush_buffer(usess
->sock
, usess
->metadata
->obj
);
1737 ERR("UST metadata flush failed");
1740 cds_list_for_each_entry(ustchan
, &usess
->channels
.head
, list
) {
1741 ret
= ustctl_flush_buffer(usess
->sock
, ustchan
->obj
);
1743 ERR("UST flush buffer error");
1748 /* This inhibits UST tracing */
1749 ret
= ustctl_stop_session(app
->key
.sock
, ua_sess
->handle
);
1751 ERR("Error stopping tracing for app pid: %d", app
->key
.pid
);
1752 goto error_rcu_unlock
;
1757 /* Quiescent wait after stopping trace */
1758 ustctl_wait_quiescent(app
->key
.sock
);
1768 * Destroy a specific UST session in apps.
1770 int ust_app_destroy_trace(struct ltt_ust_session
*usess
, struct ust_app
*app
)
1772 struct ust_app_session
*ua_sess
;
1773 struct lttng_ust_object_data obj
;
1774 struct cds_lfht_iter iter
;
1775 struct cds_lfht_node
*node
;
1778 DBG("Destroy tracing for ust app pid %d", app
->key
.pid
);
1782 __lookup_session_by_app(usess
, app
, &iter
);
1783 node
= hashtable_iter_get_node(&iter
);
1785 /* Only malloc can failed so something is really wrong */
1786 goto error_rcu_unlock
;
1788 ua_sess
= caa_container_of(node
, struct ust_app_session
, node
);
1789 ret
= hashtable_del(app
->sessions
, &iter
);
1791 delete_ust_app_session(app
->key
.sock
, ua_sess
);
1792 obj
.handle
= ua_sess
->handle
;
1795 obj
.memory_map_size
= 0;
1796 ustctl_release_object(app
->key
.sock
, &obj
);
1800 /* Quiescent wait after stopping trace */
1801 ustctl_wait_quiescent(app
->key
.sock
);
1811 * Start tracing for the UST session.
1813 int ust_app_start_trace_all(struct ltt_ust_session
*usess
)
1816 struct cds_lfht_iter iter
;
1817 struct ust_app
*app
;
1819 DBG("Starting all UST traces");
1823 cds_lfht_for_each_entry(ust_app_ht
, &iter
, app
, node
) {
1824 ret
= ust_app_start_trace(usess
, app
);
1826 /* Continue to next apps even on error */
1837 * Start tracing for the UST session.
1839 int ust_app_stop_trace_all(struct ltt_ust_session
*usess
)
1842 struct cds_lfht_iter iter
;
1843 struct ust_app
*app
;
1845 DBG("Stopping all UST traces");
1849 cds_lfht_for_each_entry(ust_app_ht
, &iter
, app
, node
) {
1850 ret
= ust_app_stop_trace(usess
, app
);
1852 /* Continue to next apps even on error */
1863 * Destroy app UST session.
1865 int ust_app_destroy_trace_all(struct ltt_ust_session
*usess
)
1868 struct cds_lfht_iter iter
;
1869 struct ust_app
*app
;
1871 DBG("Destroy all UST traces");
1875 cds_lfht_for_each_entry(ust_app_ht
, &iter
, app
, node
) {
1876 ret
= ust_app_destroy_trace(usess
, app
);
1878 /* Continue to next apps even on error */
1889 * Add channels/events from UST global domain to registered apps at sock.
1891 void ust_app_global_update(struct ltt_ust_session
*usess
, int sock
)
1894 struct cds_lfht_iter iter
;
1895 struct ust_app
*app
;
1896 struct ust_app_session
*ua_sess
;
1897 struct ust_app_channel
*ua_chan
;
1898 struct ust_app_event
*ua_event
;
1900 if (usess
== NULL
) {
1901 ERR("No UST session on global update. Returning");
1905 DBG2("UST app global update for app sock %d for session uid %d", sock
,
1910 app
= find_app_by_sock(sock
);
1912 ERR("Failed to update app sock %d", sock
);
1916 ua_sess
= create_ust_app_session(usess
, app
);
1917 if (ua_sess
== NULL
) {
1922 * We can iterate safely here over all UST app session sicne the create ust
1923 * app session above made a shadow copy of the UST global domain from the
1926 cds_lfht_for_each_entry(ua_sess
->channels
, &iter
, ua_chan
, node
) {
1927 ret
= create_ust_channel(app
, ua_sess
, ua_chan
);
1929 /* FIXME: Should we quit here or continue... */
1933 /* For each events */
1934 cds_lfht_for_each_entry(ua_chan
->events
, &iter
, ua_event
, node
) {
1935 ret
= create_ust_event(app
, ua_sess
, ua_chan
, ua_event
);
1937 /* FIXME: Should we quit here or continue... */
1943 if (usess
->start_trace
) {
1944 ret
= ust_app_start_trace(usess
, app
);
1949 DBG2("UST trace started for app pid %d", app
->key
.pid
);