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 context safely. RCU read lock must be held before calling
43 void delete_ust_app_ctx(int sock
, struct ust_app_ctx
*ua_ctx
)
46 ustctl_release_object(sock
, ua_ctx
->obj
);
53 * Delete ust app event safely. RCU read lock must be held before calling
57 void delete_ust_app_event(int sock
, struct ust_app_event
*ua_event
)
60 struct cds_lfht_iter iter
;
61 struct ust_app_ctx
*ua_ctx
;
63 cds_lfht_for_each_entry(ua_event
->ctx
, &iter
, ua_ctx
, node
) {
64 ret
= hashtable_del(ua_event
->ctx
, &iter
);
66 delete_ust_app_ctx(sock
, ua_ctx
);
68 ret
= hashtable_destroy(ua_event
->ctx
);
71 if (ua_event
->obj
!= NULL
) {
72 ustctl_release_object(sock
, ua_event
->obj
);
79 * Delete ust app stream safely. RCU read lock must be held before calling
83 void delete_ust_app_stream(int sock
, struct ltt_ust_stream
*stream
)
86 ustctl_release_object(sock
, stream
->obj
);
93 * Delete ust app channel safely. RCU read lock must be held before calling
97 void delete_ust_app_channel(int sock
, struct ust_app_channel
*ua_chan
)
100 struct cds_lfht_iter iter
;
101 struct ust_app_event
*ua_event
;
102 struct ust_app_ctx
*ua_ctx
;
103 struct ltt_ust_stream
*stream
, *stmp
;
106 cds_list_for_each_entry_safe(stream
, stmp
, &ua_chan
->streams
.head
, list
) {
107 cds_list_del(&stream
->list
);
108 delete_ust_app_stream(sock
, stream
);
112 cds_lfht_for_each_entry(ua_chan
->ctx
, &iter
, ua_ctx
, node
) {
113 ret
= hashtable_del(ua_chan
->ctx
, &iter
);
115 delete_ust_app_ctx(sock
, ua_ctx
);
117 ret
= hashtable_destroy(ua_chan
->ctx
);
121 cds_lfht_for_each_entry(ua_chan
->events
, &iter
, ua_event
, node
) {
122 ret
= hashtable_del(ua_chan
->events
, &iter
);
124 delete_ust_app_event(sock
, ua_event
);
126 ret
= hashtable_destroy(ua_chan
->events
);
129 if (ua_chan
->obj
!= NULL
) {
130 ustctl_release_object(sock
, ua_chan
->obj
);
137 * Delete ust app session safely. RCU read lock must be held before calling
141 void delete_ust_app_session(int sock
, struct ust_app_session
*ua_sess
)
144 struct cds_lfht_iter iter
;
145 struct ust_app_channel
*ua_chan
;
147 if (ua_sess
->metadata
) {
148 if (ua_sess
->metadata
->stream_obj
) {
149 ustctl_release_object(sock
, ua_sess
->metadata
->stream_obj
);
150 free(ua_sess
->metadata
->stream_obj
);
152 if (ua_sess
->metadata
->obj
) {
153 ustctl_release_object(sock
, ua_sess
->metadata
->obj
);
154 free(ua_sess
->metadata
->obj
);
158 cds_lfht_for_each_entry(ua_sess
->channels
, &iter
, ua_chan
, node
) {
159 ret
= hashtable_del(ua_sess
->channels
, &iter
);
161 delete_ust_app_channel(sock
, ua_chan
);
163 ret
= hashtable_destroy(ua_sess
->channels
);
170 * Delete a traceable application structure from the global list. Never call
171 * this function outside of a call_rcu call.
174 void delete_ust_app(struct ust_app
*app
)
177 struct cds_lfht_node
*node
;
178 struct cds_lfht_iter iter
;
179 struct ust_app_session
*ua_sess
;
183 /* Remove from key hash table */
184 node
= hashtable_lookup(ust_app_sock_key_map
,
185 (void *) ((unsigned long) app
->key
.sock
), sizeof(void *), &iter
);
187 /* Not suppose to happen */
188 ERR("UST app key %d not found in key hash table", app
->key
.sock
);
192 ret
= hashtable_del(ust_app_sock_key_map
, &iter
);
194 ERR("UST app unable to delete app sock %d from key hash table",
197 DBG2("UST app pair sock %d key %d deleted",
198 app
->key
.sock
, app
->key
.pid
);
201 /* Socket is already closed at this point */
203 /* Delete ust app sessions info */
204 sock
= app
->key
.sock
;
208 cds_lfht_for_each_entry(app
->sessions
, &iter
, ua_sess
, node
) {
209 ret
= hashtable_del(app
->sessions
, &iter
);
211 delete_ust_app_session(app
->key
.sock
, ua_sess
);
213 ret
= hashtable_destroy(app
->sessions
);
217 * Wait until we have removed the key from the sock hash table
218 * before closing this socket, otherwise an application could
219 * re-use the socket ID and race with the teardown, using the
220 * same hash table entry.
224 DBG2("UST app pid %d deleted", app
->key
.pid
);
231 * URCU intermediate call to delete an UST app.
234 void delete_ust_app_rcu(struct rcu_head
*head
)
236 struct cds_lfht_node
*node
=
237 caa_container_of(head
, struct cds_lfht_node
, head
);
238 struct ust_app
*app
=
239 caa_container_of(node
, struct ust_app
, node
);
245 * Alloc new UST app session.
248 struct ust_app_session
*alloc_ust_app_session(void)
250 struct ust_app_session
*ua_sess
;
252 /* Init most of the default value by allocating and zeroing */
253 ua_sess
= zmalloc(sizeof(struct ust_app_session
));
254 if (ua_sess
== NULL
) {
259 ua_sess
->handle
= -1;
260 ua_sess
->channels
= hashtable_new_str(0);
269 * Alloc new UST app channel.
272 struct ust_app_channel
*alloc_ust_app_channel(char *name
,
273 struct lttng_ust_channel
*attr
)
275 struct ust_app_channel
*ua_chan
;
277 /* Init most of the default value by allocating and zeroing */
278 ua_chan
= zmalloc(sizeof(struct ust_app_channel
));
279 if (ua_chan
== NULL
) {
284 /* Setup channel name */
285 strncpy(ua_chan
->name
, name
, sizeof(ua_chan
->name
));
286 ua_chan
->name
[sizeof(ua_chan
->name
) - 1] = '\0';
288 ua_chan
->enabled
= 1;
289 ua_chan
->handle
= -1;
290 ua_chan
->ctx
= hashtable_new(0);
291 ua_chan
->events
= hashtable_new_str(0);
292 hashtable_node_init(&ua_chan
->node
, (void *) ua_chan
->name
,
293 strlen(ua_chan
->name
));
295 CDS_INIT_LIST_HEAD(&ua_chan
->streams
.head
);
297 /* Copy attributes */
299 memcpy(&ua_chan
->attr
, attr
, sizeof(ua_chan
->attr
));
302 DBG3("UST app channel %s allocated", ua_chan
->name
);
311 * Alloc new UST app event.
314 struct ust_app_event
*alloc_ust_app_event(char *name
,
315 struct lttng_ust_event
*attr
)
317 struct ust_app_event
*ua_event
;
319 /* Init most of the default value by allocating and zeroing */
320 ua_event
= zmalloc(sizeof(struct ust_app_event
));
321 if (ua_event
== NULL
) {
326 ua_event
->enabled
= 1;
327 strncpy(ua_event
->name
, name
, sizeof(ua_event
->name
));
328 ua_event
->name
[sizeof(ua_event
->name
) - 1] = '\0';
329 ua_event
->ctx
= hashtable_new(0);
330 hashtable_node_init(&ua_event
->node
, (void *) ua_event
->name
,
331 strlen(ua_event
->name
));
333 /* Copy attributes */
335 memcpy(&ua_event
->attr
, attr
, sizeof(ua_event
->attr
));
338 DBG3("UST app event %s allocated", ua_event
->name
);
347 * Alloc new UST app context.
350 struct ust_app_ctx
*alloc_ust_app_ctx(struct lttng_ust_context
*uctx
)
352 struct ust_app_ctx
*ua_ctx
;
354 ua_ctx
= zmalloc(sizeof(struct ust_app_ctx
));
355 if (ua_ctx
== NULL
) {
360 memcpy(&ua_ctx
->ctx
, uctx
, sizeof(ua_ctx
->ctx
));
363 DBG3("UST app context %d allocated", ua_ctx
->ctx
.ctx
);
370 * Find an ust_app using the sock and return it. RCU read side lock must be
371 * held before calling this helper function.
374 struct ust_app
*find_app_by_sock(int sock
)
376 struct cds_lfht_node
*node
;
377 struct ust_app_key
*key
;
378 struct cds_lfht_iter iter
;
380 node
= hashtable_lookup(ust_app_sock_key_map
,
381 (void *)((unsigned long) sock
), sizeof(void *), &iter
);
383 DBG2("UST app find by sock %d key not found", sock
);
387 key
= caa_container_of(node
, struct ust_app_key
, node
);
389 node
= hashtable_lookup(ust_app_ht
,
390 (void *)((unsigned long) key
->pid
), sizeof(void *), &iter
);
392 DBG2("UST app find by sock %d not found", sock
);
395 return caa_container_of(node
, struct ust_app
, node
);
402 * Create the channel context on the tracer.
405 int create_ust_channel_context(struct ust_app_channel
*ua_chan
,
406 struct ust_app_ctx
*ua_ctx
, struct ust_app
*app
)
410 ret
= ustctl_add_context(app
->key
.sock
, &ua_ctx
->ctx
,
411 ua_chan
->obj
, &ua_ctx
->obj
);
416 ua_ctx
->handle
= ua_ctx
->obj
->handle
;
418 DBG2("UST app context added to channel %s successfully", ua_chan
->name
);
425 * Create the event context on the tracer.
428 int create_ust_event_context(struct ust_app_event
*ua_event
,
429 struct ust_app_ctx
*ua_ctx
, struct ust_app
*app
)
433 ret
= ustctl_add_context(app
->key
.sock
, &ua_ctx
->ctx
,
434 ua_event
->obj
, &ua_ctx
->obj
);
439 ua_ctx
->handle
= ua_ctx
->obj
->handle
;
441 DBG2("UST app context added to event %s successfully", ua_event
->name
);
448 * Disable the specified event on to UST tracer for the UST session.
450 static int disable_ust_event(struct ust_app
*app
,
451 struct ust_app_session
*ua_sess
, struct ust_app_event
*ua_event
)
455 ret
= ustctl_disable(app
->key
.sock
, ua_event
->obj
);
457 ERR("UST app event %s disable failed for app (pid: %d) "
458 "and session handle %d with ret %d",
459 ua_event
->attr
.name
, app
->key
.pid
, ua_sess
->handle
, ret
);
463 DBG2("UST app event %s disabled successfully for app (pid: %d)",
464 ua_event
->attr
.name
, app
->key
.pid
);
471 * Disable the specified channel on to UST tracer for the UST session.
473 static int disable_ust_channel(struct ust_app
*app
,
474 struct ust_app_session
*ua_sess
, struct ust_app_channel
*ua_chan
)
478 ret
= ustctl_disable(app
->key
.sock
, ua_chan
->obj
);
480 ERR("UST app channel %s disable failed for app (pid: %d) "
481 "and session handle %d with ret %d",
482 ua_chan
->name
, app
->key
.pid
, ua_sess
->handle
, ret
);
486 DBG2("UST app channel %s disabled successfully for app (pid: %d)",
487 ua_chan
->name
, app
->key
.pid
);
494 * Enable the specified channel on to UST tracer for the UST session.
496 static int enable_ust_channel(struct ust_app
*app
,
497 struct ust_app_session
*ua_sess
, struct ust_app_channel
*ua_chan
)
501 ret
= ustctl_enable(app
->key
.sock
, ua_chan
->obj
);
503 ERR("UST app channel %s enable failed for app (pid: %d) "
504 "and session handle %d with ret %d",
505 ua_chan
->name
, app
->key
.pid
, ua_sess
->handle
, ret
);
509 ua_chan
->enabled
= 1;
511 DBG2("UST app channel %s enabled successfully for app (pid: %d)",
512 ua_chan
->name
, app
->key
.pid
);
519 * Enable the specified event on to UST tracer for the UST session.
521 static int enable_ust_event(struct ust_app
*app
,
522 struct ust_app_session
*ua_sess
, struct ust_app_event
*ua_event
)
526 ret
= ustctl_enable(app
->key
.sock
, ua_event
->obj
);
528 ERR("UST app event %s enable failed for app (pid: %d) "
529 "and session handle %d with ret %d",
530 ua_event
->attr
.name
, app
->key
.pid
, ua_sess
->handle
, ret
);
534 DBG2("UST app event %s enabled successfully for app (pid: %d)",
535 ua_event
->attr
.name
, app
->key
.pid
);
542 * Open metadata onto the UST tracer for a UST session.
544 static int open_ust_metadata(struct ust_app
*app
,
545 struct ust_app_session
*ua_sess
)
548 struct lttng_ust_channel_attr uattr
;
550 uattr
.overwrite
= ua_sess
->metadata
->attr
.overwrite
;
551 uattr
.subbuf_size
= ua_sess
->metadata
->attr
.subbuf_size
;
552 uattr
.num_subbuf
= ua_sess
->metadata
->attr
.num_subbuf
;
553 uattr
.switch_timer_interval
=
554 ua_sess
->metadata
->attr
.switch_timer_interval
;
555 uattr
.read_timer_interval
=
556 ua_sess
->metadata
->attr
.read_timer_interval
;
557 uattr
.output
= ua_sess
->metadata
->attr
.output
;
559 /* UST tracer metadata creation */
560 ret
= ustctl_open_metadata(app
->key
.sock
, ua_sess
->handle
, &uattr
,
561 &ua_sess
->metadata
->obj
);
563 ERR("UST app open metadata failed for app pid:%d",
573 * Create stream onto the UST tracer for a UST session.
575 static int create_ust_stream(struct ust_app
*app
,
576 struct ust_app_session
*ua_sess
)
580 ret
= ustctl_create_stream(app
->key
.sock
, ua_sess
->metadata
->obj
,
581 &ua_sess
->metadata
->stream_obj
);
583 ERR("UST create metadata stream failed");
592 * Create the specified channel onto the UST tracer for a UST session.
594 static int create_ust_channel(struct ust_app
*app
,
595 struct ust_app_session
*ua_sess
, struct ust_app_channel
*ua_chan
)
599 /* TODO: remove cast and use lttng-ust-abi.h */
600 ret
= ustctl_create_channel(app
->key
.sock
, ua_sess
->handle
,
601 (struct lttng_ust_channel_attr
*)&ua_chan
->attr
, &ua_chan
->obj
);
603 DBG("Error creating channel %s for app (pid: %d, sock: %d) "
604 "and session handle %d with ret %d",
605 ua_chan
->name
, app
->key
.pid
, app
->key
.sock
,
606 ua_sess
->handle
, ret
);
610 ua_chan
->handle
= ua_chan
->obj
->handle
;
611 ua_chan
->attr
.shm_fd
= ua_chan
->obj
->shm_fd
;
612 ua_chan
->attr
.wait_fd
= ua_chan
->obj
->wait_fd
;
613 ua_chan
->attr
.memory_map_size
= ua_chan
->obj
->memory_map_size
;
615 DBG2("UST app channel %s created successfully for pid:%d and sock:%d",
616 ua_chan
->name
, app
->key
.pid
, app
->key
.sock
);
618 /* If channel is not enabled, disable it on the tracer */
619 if (!ua_chan
->enabled
) {
620 ret
= disable_ust_channel(app
, ua_sess
, ua_chan
);
631 * Create the specified event onto the UST tracer for a UST session.
634 int create_ust_event(struct ust_app
*app
, struct ust_app_session
*ua_sess
,
635 struct ust_app_channel
*ua_chan
, struct ust_app_event
*ua_event
)
639 /* Create UST event on tracer */
640 ret
= ustctl_create_event(app
->key
.sock
, &ua_event
->attr
, ua_chan
->obj
,
643 ERR("Error ustctl create event %s for app pid: %d with ret %d",
644 ua_event
->attr
.name
, app
->key
.pid
, ret
);
648 ua_event
->handle
= ua_event
->obj
->handle
;
650 DBG2("UST app event %s created successfully for pid:%d",
651 ua_event
->attr
.name
, app
->key
.pid
);
653 /* If event not enabled, disable it on the tracer */
654 if (!ua_event
->enabled
) {
655 ret
= disable_ust_event(app
, ua_sess
, ua_event
);
666 * Copy data between an UST app event and a LTT event.
668 static void shadow_copy_event(struct ust_app_event
*ua_event
,
669 struct ltt_ust_event
*uevent
)
671 struct cds_lfht_iter iter
;
672 struct ltt_ust_context
*uctx
;
673 struct ust_app_ctx
*ua_ctx
;
675 strncpy(ua_event
->name
, uevent
->attr
.name
, sizeof(ua_event
->name
));
676 ua_event
->name
[sizeof(ua_event
->name
) - 1] = '\0';
678 /* Copy event attributes */
679 memcpy(&ua_event
->attr
, &uevent
->attr
, sizeof(ua_event
->attr
));
681 cds_lfht_for_each_entry(uevent
->ctx
, &iter
, uctx
, node
) {
682 ua_ctx
= alloc_ust_app_ctx(&uctx
->ctx
);
683 if (ua_ctx
== NULL
) {
686 hashtable_node_init(&ua_ctx
->node
,
687 (void *)((unsigned long) ua_ctx
->ctx
.ctx
), sizeof(void *));
688 hashtable_add_unique(ua_event
->ctx
, &ua_ctx
->node
);
693 * Copy data between an UST app channel and a LTT channel.
695 static void shadow_copy_channel(struct ust_app_channel
*ua_chan
,
696 struct ltt_ust_channel
*uchan
)
698 struct cds_lfht_iter iter
;
699 struct cds_lfht_node
*ua_event_node
;
700 struct ltt_ust_event
*uevent
;
701 struct ltt_ust_context
*uctx
;
702 struct ust_app_event
*ua_event
;
703 struct ust_app_ctx
*ua_ctx
;
705 DBG2("Shadow copy of UST app channel %s", ua_chan
->name
);
707 strncpy(ua_chan
->name
, uchan
->name
, sizeof(ua_chan
->name
));
708 ua_chan
->name
[sizeof(ua_chan
->name
) - 1] = '\0';
709 /* Copy event attributes */
710 memcpy(&ua_chan
->attr
, &uchan
->attr
, sizeof(ua_chan
->attr
));
712 cds_lfht_for_each_entry(uchan
->ctx
, &iter
, uctx
, node
) {
713 ua_ctx
= alloc_ust_app_ctx(&uctx
->ctx
);
714 if (ua_ctx
== NULL
) {
717 hashtable_node_init(&ua_ctx
->node
,
718 (void *)((unsigned long) ua_ctx
->ctx
.ctx
), sizeof(void *));
719 hashtable_add_unique(ua_chan
->ctx
, &ua_ctx
->node
);
722 /* Copy all events from ltt ust channel to ust app channel */
723 cds_lfht_for_each_entry(uchan
->events
, &iter
, uevent
, node
) {
724 struct cds_lfht_iter uiter
;
726 ua_event_node
= hashtable_lookup(ua_chan
->events
,
727 (void *) uevent
->attr
.name
, strlen(uevent
->attr
.name
),
729 if (ua_event_node
== NULL
) {
730 DBG2("UST event %s not found on shadow copy channel",
732 ua_event
= alloc_ust_app_event(uevent
->attr
.name
, &uevent
->attr
);
733 if (ua_event
== NULL
) {
736 shadow_copy_event(ua_event
, uevent
);
737 hashtable_add_unique(ua_chan
->events
, &ua_event
->node
);
741 DBG3("Shadow copy channel done");
745 * Copy data between a UST app session and a regular LTT session.
747 static void shadow_copy_session(struct ust_app_session
*ua_sess
,
748 struct ltt_ust_session
*usess
,
751 struct cds_lfht_node
*ua_chan_node
;
752 struct cds_lfht_iter iter
;
753 struct ltt_ust_channel
*uchan
;
754 struct ust_app_channel
*ua_chan
;
760 /* Get date and time for unique app path */
762 timeinfo
= localtime(&rawtime
);
763 strftime(datetime
, sizeof(datetime
), "%Y%m%d-%H%M%S", timeinfo
);
765 DBG2("Shadow copy of session handle %d", ua_sess
->handle
);
767 ua_sess
->uid
= usess
->uid
;
769 ret
= snprintf(ua_sess
->path
, PATH_MAX
,
771 usess
->pathname
, app
->name
, app
->key
.pid
,
774 PERROR("asprintf UST shadow copy session");
775 /* TODO: We cannot return an error from here.. */
779 /* TODO: support all UST domain */
781 /* Iterate over all channels in global domain. */
782 cds_lfht_for_each_entry(usess
->domain_global
.channels
, &iter
,
784 struct cds_lfht_iter uiter
;
786 ua_chan_node
= hashtable_lookup(ua_sess
->channels
,
787 (void *)uchan
->name
, strlen(uchan
->name
),
789 if (ua_chan_node
!= NULL
) {
793 DBG2("Channel %s not found on shadow session copy, creating it",
795 ua_chan
= alloc_ust_app_channel(uchan
->name
, &uchan
->attr
);
796 if (ua_chan
== NULL
) {
797 /* malloc failed... continuing */
801 shadow_copy_channel(ua_chan
, uchan
);
802 hashtable_add_unique(ua_sess
->channels
, &ua_chan
->node
);
807 * Lookup sesison wrapper.
810 void __lookup_session_by_app(struct ltt_ust_session
*usess
,
811 struct ust_app
*app
, struct cds_lfht_iter
*iter
)
813 /* Get right UST app session from app */
814 (void) hashtable_lookup(app
->sessions
,
815 (void *) ((unsigned long) usess
->uid
), sizeof(void *),
820 * Return ust app session from the app session hashtable using the UST session
823 static struct ust_app_session
*lookup_session_by_app(
824 struct ltt_ust_session
*usess
, struct ust_app
*app
)
826 struct cds_lfht_iter iter
;
827 struct cds_lfht_node
*node
;
829 __lookup_session_by_app(usess
, app
, &iter
);
830 node
= hashtable_iter_get_node(&iter
);
835 return caa_container_of(node
, struct ust_app_session
, node
);
842 * Create a UST session onto the tracer of app and add it the session
845 * Return ust app session or NULL on error.
847 static struct ust_app_session
*create_ust_app_session(
848 struct ltt_ust_session
*usess
, struct ust_app
*app
)
851 struct ust_app_session
*ua_sess
;
853 ua_sess
= lookup_session_by_app(usess
, app
);
854 if (ua_sess
== NULL
) {
855 DBG2("UST app pid: %d session uid %d not found, creating it",
856 app
->key
.pid
, usess
->uid
);
857 ua_sess
= alloc_ust_app_session();
858 if (ua_sess
== NULL
) {
859 /* Only malloc can failed so something is really wrong */
862 shadow_copy_session(ua_sess
, usess
, app
);
865 if (ua_sess
->handle
== -1) {
866 ret
= ustctl_create_session(app
->key
.sock
);
868 ERR("Error creating session for app pid %d, sock %d",
869 app
->key
.pid
, app
->key
.sock
);
870 /* TODO: free() ua_sess */
874 DBG2("UST app ustctl create session handle %d", ret
);
875 ua_sess
->handle
= ret
;
877 /* Add ust app session to app's HT */
878 hashtable_node_init(&ua_sess
->node
,
879 (void *)((unsigned long) ua_sess
->uid
), sizeof(void *));
880 hashtable_add_unique(app
->sessions
, &ua_sess
->node
);
882 DBG2("UST app session created successfully with handle %d", ret
);
892 * Create a context for the channel on the tracer.
895 int create_ust_app_channel_context(struct ust_app_session
*ua_sess
,
896 struct ust_app_channel
*ua_chan
, struct lttng_ust_context
*uctx
,
900 struct cds_lfht_iter iter
;
901 struct cds_lfht_node
*node
;
902 struct ust_app_ctx
*ua_ctx
;
904 DBG2("UST app adding context to channel %s", ua_chan
->name
);
906 node
= hashtable_lookup(ua_chan
->ctx
, (void *)((unsigned long)uctx
->ctx
),
907 sizeof(void *), &iter
);
913 ua_ctx
= alloc_ust_app_ctx(uctx
);
914 if (ua_ctx
== NULL
) {
920 hashtable_node_init(&ua_ctx
->node
,
921 (void *)((unsigned long) ua_ctx
->ctx
.ctx
), sizeof(void *));
922 hashtable_add_unique(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 cds_lfht_iter iter
;
943 struct cds_lfht_node
*node
;
944 struct ust_app_ctx
*ua_ctx
;
946 DBG2("UST app adding context to event %s", ua_event
->name
);
948 node
= hashtable_lookup(ua_event
->ctx
, (void *)((unsigned long)uctx
->ctx
),
949 sizeof(void *), &iter
);
955 ua_ctx
= alloc_ust_app_ctx(uctx
);
956 if (ua_ctx
== NULL
) {
962 hashtable_node_init(&ua_ctx
->node
,
963 (void *)((unsigned long) ua_ctx
->ctx
.ctx
), sizeof(void *));
964 hashtable_add_unique(ua_event
->ctx
, &ua_ctx
->node
);
966 ret
= create_ust_event_context(ua_event
, ua_ctx
, app
);
976 * Enable on the tracer side a ust app event for the session and channel.
979 int enable_ust_app_event(struct ust_app_session
*ua_sess
,
980 struct ust_app_event
*ua_event
, struct ust_app
*app
)
984 ret
= enable_ust_event(app
, ua_sess
, ua_event
);
989 ua_event
->enabled
= 1;
996 * Disable on the tracer side a ust app event for the session and channel.
998 static int disable_ust_app_event(struct ust_app_session
*ua_sess
,
999 struct ust_app_event
*ua_event
, struct ust_app
*app
)
1003 ret
= disable_ust_event(app
, ua_sess
, ua_event
);
1008 ua_event
->enabled
= 0;
1015 * Lookup ust app channel for session and disable it on the tracer side.
1018 int disable_ust_app_channel(struct ust_app_session
*ua_sess
,
1019 struct ust_app_channel
*ua_chan
, struct ust_app
*app
)
1023 ret
= disable_ust_channel(app
, ua_sess
, ua_chan
);
1028 ua_chan
->enabled
= 0;
1035 * Lookup ust app channel for session and enable it on the tracer side.
1037 static int enable_ust_app_channel(struct ust_app_session
*ua_sess
,
1038 struct ltt_ust_channel
*uchan
, struct ust_app
*app
)
1041 struct cds_lfht_iter iter
;
1042 struct cds_lfht_node
*ua_chan_node
;
1043 struct ust_app_channel
*ua_chan
;
1045 ua_chan_node
= hashtable_lookup(ua_sess
->channels
,
1046 (void *)uchan
->name
, strlen(uchan
->name
), &iter
);
1047 if (ua_chan_node
== NULL
) {
1048 DBG2("Unable to find channel %s in ust session uid %u",
1049 uchan
->name
, ua_sess
->uid
);
1053 ua_chan
= caa_container_of(ua_chan_node
, struct ust_app_channel
, node
);
1055 ret
= enable_ust_channel(app
, ua_sess
, ua_chan
);
1065 * Create UST app channel and create it on the tracer.
1067 static struct ust_app_channel
*create_ust_app_channel(
1068 struct ust_app_session
*ua_sess
, struct ltt_ust_channel
*uchan
,
1069 struct ust_app
*app
)
1072 struct cds_lfht_iter iter
;
1073 struct cds_lfht_node
*ua_chan_node
;
1074 struct ust_app_channel
*ua_chan
;
1076 /* Lookup channel in the ust app session */
1077 ua_chan_node
= hashtable_lookup(ua_sess
->channels
,
1078 (void *)uchan
->name
, strlen(uchan
->name
), &iter
);
1079 if (ua_chan_node
== NULL
) {
1080 DBG2("Unable to find channel %s in ust session uid %u",
1081 uchan
->name
, ua_sess
->uid
);
1082 ua_chan
= alloc_ust_app_channel(uchan
->name
, &uchan
->attr
);
1083 if (ua_chan
== NULL
) {
1086 shadow_copy_channel(ua_chan
, uchan
);
1088 hashtable_add_unique(ua_sess
->channels
, &ua_chan
->node
);
1090 ua_chan
= caa_container_of(ua_chan_node
, struct ust_app_channel
, node
);
1093 ret
= create_ust_channel(app
, ua_sess
, ua_chan
);
1105 * Create UST app event and create it on the tracer side.
1108 int create_ust_app_event(struct ust_app_session
*ua_sess
,
1109 struct ust_app_channel
*ua_chan
, struct ltt_ust_event
*uevent
,
1110 struct ust_app
*app
)
1113 struct cds_lfht_iter iter
;
1114 struct cds_lfht_node
*ua_event_node
;
1115 struct ust_app_event
*ua_event
;
1117 /* Get event node */
1118 ua_event_node
= hashtable_lookup(ua_chan
->events
,
1119 (void *)uevent
->attr
.name
, strlen(uevent
->attr
.name
), &iter
);
1120 if (ua_event_node
!= NULL
) {
1121 ERR("UST app event %s already exist. Stopping creation.",
1126 /* Does not exist so create one */
1127 ua_event
= alloc_ust_app_event(uevent
->attr
.name
, &uevent
->attr
);
1128 if (ua_event
== NULL
) {
1129 /* Only malloc can failed so something is really wrong */
1133 shadow_copy_event(ua_event
, uevent
);
1135 /* Create it on the tracer side */
1136 ret
= create_ust_event(app
, ua_sess
, ua_chan
, ua_event
);
1139 delete_ust_app_event(app
->key
.sock
, ua_event
);
1144 ua_event
->enabled
= 1;
1146 hashtable_add_unique(ua_chan
->events
, &ua_event
->node
);
1148 DBG2("UST app create event %s for PID %d completed",
1149 ua_event
->name
, app
->key
.pid
);
1157 * Create UST metadata and open it on the tracer side.
1159 static int create_ust_app_metadata(struct ust_app_session
*ua_sess
,
1160 char *pathname
, struct ust_app
*app
)
1164 if (ua_sess
->metadata
== NULL
) {
1165 /* Allocate UST metadata */
1166 ua_sess
->metadata
= trace_ust_create_metadata(pathname
);
1167 if (ua_sess
->metadata
== NULL
) {
1168 ERR("UST app session %d creating metadata failed",
1173 ret
= open_ust_metadata(app
, ua_sess
);
1178 DBG2("UST metadata opened for app pid %d", app
->key
.pid
);
1181 /* Open UST metadata stream */
1182 if (ua_sess
->metadata
->stream_obj
== NULL
) {
1183 ret
= create_ust_stream(app
, ua_sess
);
1188 ret
= mkdir(ua_sess
->path
, S_IRWXU
| S_IRWXG
);
1190 PERROR("mkdir UST metadata");
1194 ret
= snprintf(ua_sess
->metadata
->pathname
, PATH_MAX
,
1195 "%s/metadata", ua_sess
->path
);
1197 PERROR("asprintf UST create stream");
1201 DBG2("UST metadata stream object created for app pid %d",
1204 ERR("Attempting to create stream without metadata opened");
1215 * Return pointer to traceable apps list.
1217 struct cds_lfht
*ust_app_get_ht(void)
1223 * Return ust app pointer or NULL if not found.
1225 struct ust_app
*ust_app_find_by_pid(pid_t pid
)
1227 struct cds_lfht_node
*node
;
1228 struct cds_lfht_iter iter
;
1231 node
= hashtable_lookup(ust_app_ht
,
1232 (void *)((unsigned long) pid
), sizeof(void *), &iter
);
1234 DBG2("UST app no found with pid %d", pid
);
1239 DBG2("Found UST app by pid %d", pid
);
1241 return caa_container_of(node
, struct ust_app
, node
);
1249 * Using pid and uid (of the app), allocate a new ust_app struct and
1250 * add it to the global traceable app list.
1252 * On success, return 0, else return malloc -ENOMEM, or -EINVAL if app
1253 * bitness is not supported.
1255 int ust_app_register(struct ust_register_msg
*msg
, int sock
)
1257 struct ust_app
*lta
;
1259 if ((msg
->bits_per_long
== 64 && ust_consumerd64_fd
== -EINVAL
)
1260 || (msg
->bits_per_long
== 32 && ust_consumerd32_fd
== -EINVAL
)) {
1261 ERR("Registration failed: application \"%s\" (pid: %d) has "
1262 "%d-bit long, but no consumerd for this long size is available.\n",
1263 msg
->name
, msg
->pid
, msg
->bits_per_long
);
1267 lta
= zmalloc(sizeof(struct ust_app
));
1273 lta
->ppid
= msg
->ppid
;
1274 lta
->uid
= msg
->uid
;
1275 lta
->gid
= msg
->gid
;
1276 lta
->bits_per_long
= msg
->bits_per_long
;
1277 lta
->v_major
= msg
->major
;
1278 lta
->v_minor
= msg
->minor
;
1279 strncpy(lta
->name
, msg
->name
, sizeof(lta
->name
));
1280 lta
->name
[16] = '\0';
1281 lta
->sessions
= hashtable_new(0);
1284 lta
->key
.pid
= msg
->pid
;
1285 hashtable_node_init(<a
->node
, (void *)((unsigned long)lta
->key
.pid
),
1287 lta
->key
.sock
= sock
;
1288 hashtable_node_init(<a
->key
.node
, (void *)((unsigned long)lta
->key
.sock
),
1292 hashtable_add_unique(ust_app_sock_key_map
, <a
->key
.node
);
1293 hashtable_add_unique(ust_app_ht
, <a
->node
);
1296 DBG("App registered with pid:%d ppid:%d uid:%d gid:%d sock:%d name:%s"
1297 " (version %d.%d)", lta
->key
.pid
, lta
->ppid
, lta
->uid
, lta
->gid
,
1298 lta
->key
.sock
, lta
->name
, lta
->v_major
, lta
->v_minor
);
1304 * Unregister app by removing it from the global traceable app list and freeing
1307 * The socket is already closed at this point so no close to sock.
1309 void ust_app_unregister(int sock
)
1311 struct ust_app
*lta
;
1312 struct cds_lfht_node
*node
;
1313 struct cds_lfht_iter iter
;
1317 lta
= find_app_by_sock(sock
);
1319 ERR("Unregister app sock %d not found!", sock
);
1323 DBG("PID %d unregistering with sock %d", lta
->key
.pid
, sock
);
1325 /* Get the node reference for a call_rcu */
1326 node
= hashtable_lookup(ust_app_ht
,
1327 (void *)((unsigned long) lta
->key
.pid
), sizeof(void *), &iter
);
1329 ERR("Unable to find app sock %d by pid %d", sock
, lta
->key
.pid
);
1333 ret
= hashtable_del(ust_app_ht
, &iter
);
1335 call_rcu(&node
->head
, delete_ust_app_rcu
);
1342 * Return traceable_app_count
1344 unsigned long ust_app_list_count(void)
1346 unsigned long count
;
1349 count
= hashtable_get_count(ust_app_ht
);
1356 * Fill events array with all events name of all registered apps.
1358 int ust_app_list_events(struct lttng_event
**events
)
1361 size_t nbmem
, count
= 0;
1362 struct cds_lfht_iter iter
;
1363 struct ust_app
*app
;
1364 struct lttng_event
*tmp
;
1366 nbmem
= UST_APP_EVENT_LIST_SIZE
;
1367 tmp
= zmalloc(nbmem
* sizeof(struct lttng_event
));
1369 PERROR("zmalloc ust app events");
1376 cds_lfht_for_each_entry(ust_app_ht
, &iter
, app
, node
) {
1377 struct lttng_ust_tracepoint_iter iter
;
1379 handle
= ustctl_tracepoint_list(app
->key
.sock
);
1381 ERR("UST app list events getting handle failed for app pid %d",
1386 while ((ret
= ustctl_tracepoint_list_get(app
->key
.sock
, handle
,
1387 &iter
)) != -ENOENT
) {
1388 if (count
>= nbmem
) {
1389 DBG2("Reallocating event list from %zu to %zu entries", nbmem
,
1392 tmp
= realloc(tmp
, nbmem
* sizeof(struct lttng_event
));
1394 PERROR("realloc ust app events");
1399 memcpy(tmp
[count
].name
, iter
.name
, LTTNG_UST_SYM_NAME_LEN
);
1400 memcpy(tmp
[count
].loglevel
, iter
.loglevel
, LTTNG_UST_SYM_NAME_LEN
);
1401 tmp
[count
].loglevel_value
= iter
.loglevel_value
;
1402 tmp
[count
].type
= LTTNG_UST_TRACEPOINT
;
1403 tmp
[count
].pid
= app
->key
.pid
;
1404 tmp
[count
].enabled
= -1;
1412 DBG2("UST app list events done (%zu events)", count
);
1421 * Free and clean all traceable apps of the global list.
1423 void ust_app_clean_list(void)
1426 struct cds_lfht_iter iter
;
1427 struct ust_app
*app
;
1429 DBG2("UST app cleaning registered apps hash table");
1433 cds_lfht_for_each_entry(ust_app_ht
, &iter
, app
, node
) {
1434 ret
= hashtable_del(ust_app_ht
, &iter
);
1436 call_rcu(&iter
.node
->head
, delete_ust_app_rcu
);
1439 hashtable_destroy(ust_app_ht
);
1440 hashtable_destroy(ust_app_sock_key_map
);
1446 * Init UST app hash table.
1448 void ust_app_ht_alloc(void)
1450 ust_app_ht
= hashtable_new(0);
1451 ust_app_sock_key_map
= hashtable_new(0);
1455 * For a specific UST session, disable the channel for all registered apps.
1457 int ust_app_disable_channel_glb(struct ltt_ust_session
*usess
,
1458 struct ltt_ust_channel
*uchan
)
1461 struct cds_lfht_iter iter
;
1462 struct cds_lfht_node
*ua_chan_node
;
1463 struct ust_app
*app
;
1464 struct ust_app_session
*ua_sess
;
1465 struct ust_app_channel
*ua_chan
;
1467 if (usess
== NULL
|| uchan
== NULL
) {
1468 ERR("Disabling UST global channel with NULL values");
1473 DBG2("UST app disabling channel %s from global domain for session uid %d",
1474 uchan
->name
, usess
->uid
);
1478 /* For every registered applications */
1479 cds_lfht_for_each_entry(ust_app_ht
, &iter
, app
, node
) {
1480 ua_sess
= lookup_session_by_app(usess
, app
);
1481 if (ua_sess
== NULL
) {
1486 ua_chan_node
= hashtable_lookup(ua_sess
->channels
,
1487 (void *)uchan
->name
, strlen(uchan
->name
), &iter
);
1488 /* If the session if found for the app, the channel must be there */
1489 assert(ua_chan_node
);
1491 ua_chan
= caa_container_of(ua_chan_node
, struct ust_app_channel
, node
);
1492 /* The channel must not be already disabled */
1493 assert(ua_chan
->enabled
== 1);
1495 /* Disable channel onto application */
1496 ret
= disable_ust_app_channel(ua_sess
, ua_chan
, app
);
1498 /* XXX: We might want to report this error at some point... */
1510 * For a specific UST session, enable the channel for all registered apps.
1512 int ust_app_enable_channel_glb(struct ltt_ust_session
*usess
,
1513 struct ltt_ust_channel
*uchan
)
1516 struct cds_lfht_iter iter
;
1517 struct ust_app
*app
;
1518 struct ust_app_session
*ua_sess
;
1520 if (usess
== NULL
|| uchan
== NULL
) {
1521 ERR("Adding UST global channel to NULL values");
1526 DBG2("UST app enabling channel %s to global domain for session uid %d",
1527 uchan
->name
, usess
->uid
);
1531 /* For every registered applications */
1532 cds_lfht_for_each_entry(ust_app_ht
, &iter
, app
, node
) {
1533 ua_sess
= lookup_session_by_app(usess
, app
);
1534 if (ua_sess
== NULL
) {
1538 /* Enable channel onto application */
1539 ret
= enable_ust_app_channel(ua_sess
, uchan
, app
);
1541 /* XXX: We might want to report this error at some point... */
1553 * Disable an event in a channel and for a specific session.
1555 int ust_app_disable_event_glb(struct ltt_ust_session
*usess
,
1556 struct ltt_ust_channel
*uchan
, struct ltt_ust_event
*uevent
)
1559 struct cds_lfht_iter iter
, uiter
;
1560 struct cds_lfht_node
*ua_chan_node
, *ua_event_node
;
1561 struct ust_app
*app
;
1562 struct ust_app_session
*ua_sess
;
1563 struct ust_app_channel
*ua_chan
;
1564 struct ust_app_event
*ua_event
;
1566 DBG("UST app disabling event %s for all apps in channel "
1567 "%s for session uid %d", uevent
->attr
.name
, uchan
->name
, usess
->uid
);
1571 /* For all registered applications */
1572 cds_lfht_for_each_entry(ust_app_ht
, &iter
, app
, node
) {
1573 ua_sess
= lookup_session_by_app(usess
, app
);
1574 if (ua_sess
== NULL
) {
1579 /* Lookup channel in the ust app session */
1580 ua_chan_node
= hashtable_lookup(ua_sess
->channels
,
1581 (void *)uchan
->name
, strlen(uchan
->name
), &uiter
);
1582 if (ua_chan_node
== NULL
) {
1583 DBG2("Channel %s not found in session uid %d for app pid %d."
1584 "Skipping", uchan
->name
, usess
->uid
, app
->key
.pid
);
1587 ua_chan
= caa_container_of(ua_chan_node
, struct ust_app_channel
, node
);
1589 ua_event_node
= hashtable_lookup(ua_chan
->events
,
1590 (void *)uevent
->attr
.name
, strlen(uevent
->attr
.name
), &uiter
);
1591 if (ua_event_node
== NULL
) {
1592 DBG2("Event %s not found in channel %s for app pid %d."
1593 "Skipping", uevent
->attr
.name
, uchan
->name
, app
->key
.pid
);
1596 ua_event
= caa_container_of(ua_event_node
, struct ust_app_event
, node
);
1598 ret
= disable_ust_app_event(ua_sess
, ua_event
, app
);
1600 /* XXX: Report error someday... */
1611 * For a specific UST session and UST channel, the event for all
1614 int ust_app_disable_all_event_glb(struct ltt_ust_session
*usess
,
1615 struct ltt_ust_channel
*uchan
)
1618 struct cds_lfht_iter iter
, uiter
;
1619 struct cds_lfht_node
*ua_chan_node
;
1620 struct ust_app
*app
;
1621 struct ust_app_session
*ua_sess
;
1622 struct ust_app_channel
*ua_chan
;
1623 struct ust_app_event
*ua_event
;
1625 DBG("UST app disabling all event for all apps in channel "
1626 "%s for session uid %d", uchan
->name
, usess
->uid
);
1630 /* For all registered applications */
1631 cds_lfht_for_each_entry(ust_app_ht
, &iter
, app
, node
) {
1632 ua_sess
= lookup_session_by_app(usess
, app
);
1633 /* If ua_sess is NULL, there is a code flow error */
1636 /* Lookup channel in the ust app session */
1637 ua_chan_node
= hashtable_lookup(ua_sess
->channels
, (void *)uchan
->name
,
1638 strlen(uchan
->name
), &uiter
);
1639 /* If the channel is not found, there is a code flow error */
1640 assert(ua_chan_node
);
1642 ua_chan
= caa_container_of(ua_chan_node
, struct ust_app_channel
, node
);
1644 /* Disable each events of channel */
1645 cds_lfht_for_each_entry(ua_chan
->events
, &uiter
, ua_event
, node
) {
1646 ret
= disable_ust_app_event(ua_sess
, ua_event
, app
);
1648 /* XXX: Report error someday... */
1660 * For a specific UST session, create the channel for all registered apps.
1662 int ust_app_create_channel_glb(struct ltt_ust_session
*usess
,
1663 struct ltt_ust_channel
*uchan
)
1666 struct cds_lfht_iter iter
;
1667 struct ust_app
*app
;
1668 struct ust_app_session
*ua_sess
;
1669 struct ust_app_channel
*ua_chan
;
1671 if (usess
== NULL
|| uchan
== NULL
) {
1672 ERR("Adding UST global channel to NULL values");
1677 DBG2("UST app adding channel %s to global domain for session uid %d",
1678 uchan
->name
, usess
->uid
);
1682 /* For every registered applications */
1683 cds_lfht_for_each_entry(ust_app_ht
, &iter
, app
, node
) {
1685 * Create session on the tracer side and add it to app session HT. Note
1686 * that if session exist, it will simply return a pointer to the ust
1689 ua_sess
= create_ust_app_session(usess
, app
);
1690 if (ua_sess
== NULL
) {
1694 /* Create channel onto application */
1695 ua_chan
= create_ust_app_channel(ua_sess
, uchan
, app
);
1696 if (ua_chan
== NULL
) {
1708 * Enable event for a specific session and channel on the tracer.
1710 int ust_app_enable_event_glb(struct ltt_ust_session
*usess
,
1711 struct ltt_ust_channel
*uchan
, struct ltt_ust_event
*uevent
)
1714 struct cds_lfht_iter iter
, uiter
;
1715 struct cds_lfht_node
*ua_chan_node
, *ua_event_node
;
1716 struct ust_app
*app
;
1717 struct ust_app_session
*ua_sess
;
1718 struct ust_app_channel
*ua_chan
;
1719 struct ust_app_event
*ua_event
;
1721 DBG("UST app enabling event %s for all apps for session uid %d",
1722 uevent
->attr
.name
, usess
->uid
);
1725 * NOTE: At this point, this function is called only if the session and
1726 * channel passed are already created for all apps. and enabled on the
1732 /* For all registered applications */
1733 cds_lfht_for_each_entry(ust_app_ht
, &iter
, app
, node
) {
1734 ua_sess
= lookup_session_by_app(usess
, app
);
1735 /* If ua_sess is NULL, there is a code flow error */
1738 /* Lookup channel in the ust app session */
1739 ua_chan_node
= hashtable_lookup(ua_sess
->channels
, (void *)uchan
->name
,
1740 strlen(uchan
->name
), &uiter
);
1741 /* If the channel is not found, there is a code flow error */
1742 assert(ua_chan_node
);
1744 ua_chan
= caa_container_of(ua_chan_node
, struct ust_app_channel
, node
);
1746 ua_event_node
= hashtable_lookup(ua_chan
->events
,
1747 (void*)uevent
->attr
.name
, strlen(uevent
->attr
.name
), &uiter
);
1748 if (ua_event_node
== NULL
) {
1749 DBG3("UST app enable event %s not found for app PID %d."
1750 "Skipping app", uevent
->attr
.name
, app
->key
.pid
);
1753 ua_event
= caa_container_of(ua_event_node
, struct ust_app_event
, node
);
1755 ret
= enable_ust_app_event(ua_sess
, ua_event
, app
);
1767 * For a specific existing UST session and UST channel, creates the event for
1768 * all registered apps.
1770 int ust_app_create_event_glb(struct ltt_ust_session
*usess
,
1771 struct ltt_ust_channel
*uchan
, struct ltt_ust_event
*uevent
)
1774 struct cds_lfht_iter iter
, uiter
;
1775 struct cds_lfht_node
*ua_chan_node
;
1776 struct ust_app
*app
;
1777 struct ust_app_session
*ua_sess
;
1778 struct ust_app_channel
*ua_chan
;
1780 DBG("UST app creating event %s for all apps for session uid %d",
1781 uevent
->attr
.name
, usess
->uid
);
1784 * NOTE: At this point, this function is called only if the session and
1785 * channel passed are already created for all apps. and enabled on the
1791 /* For all registered applications */
1792 cds_lfht_for_each_entry(ust_app_ht
, &iter
, app
, node
) {
1793 ua_sess
= lookup_session_by_app(usess
, app
);
1794 /* If ua_sess is NULL, there is a code flow error */
1797 /* Lookup channel in the ust app session */
1798 ua_chan_node
= hashtable_lookup(ua_sess
->channels
, (void *)uchan
->name
,
1799 strlen(uchan
->name
), &uiter
);
1800 /* If the channel is not found, there is a code flow error */
1801 assert(ua_chan_node
);
1803 ua_chan
= caa_container_of(ua_chan_node
, struct ust_app_channel
, node
);
1805 ret
= create_ust_app_event(ua_sess
, ua_chan
, uevent
, app
);
1817 * Start tracing for a specific UST session and app.
1819 int ust_app_start_trace(struct ltt_ust_session
*usess
, struct ust_app
*app
)
1822 struct cds_lfht_iter iter
;
1823 struct ust_app_session
*ua_sess
;
1824 struct ust_app_channel
*ua_chan
;
1825 struct ltt_ust_stream
*ustream
;
1828 DBG("Starting tracing for ust app pid %d", app
->key
.pid
);
1832 ua_sess
= lookup_session_by_app(usess
, app
);
1833 if (ua_sess
== NULL
) {
1834 goto error_rcu_unlock
;
1837 /* Upon restart, we skip the setup, already done */
1838 if (ua_sess
->started
) {
1842 ret
= create_ust_app_metadata(ua_sess
, usess
->pathname
, app
);
1844 goto error_rcu_unlock
;
1847 /* For each channel */
1848 cds_lfht_for_each_entry(ua_sess
->channels
, &iter
, ua_chan
, node
) {
1849 /* Create all streams */
1851 /* Create UST stream */
1852 ustream
= zmalloc(sizeof(*ustream
));
1853 if (ustream
== NULL
) {
1854 PERROR("zmalloc ust stream");
1855 goto error_rcu_unlock
;
1858 ret
= ustctl_create_stream(app
->key
.sock
, ua_chan
->obj
,
1861 /* Got all streams */
1864 ustream
->handle
= ustream
->obj
->handle
;
1866 /* Order is important */
1867 cds_list_add_tail(&ustream
->list
, &ua_chan
->streams
.head
);
1868 ret
= snprintf(ustream
->pathname
, PATH_MAX
, "%s/%s_%u",
1869 ua_sess
->path
, ua_chan
->name
,
1870 ua_chan
->streams
.count
++);
1872 PERROR("asprintf UST create stream");
1875 DBG2("UST stream %d ready at %s", ua_chan
->streams
.count
,
1880 switch (app
->bits_per_long
) {
1882 consumerd_fd
= ust_consumerd64_fd
;
1885 consumerd_fd
= ust_consumerd32_fd
;
1889 goto error_rcu_unlock
;
1892 /* Setup UST consumer socket and send fds to it */
1893 ret
= ust_consumer_send_session(consumerd_fd
, ua_sess
);
1895 goto error_rcu_unlock
;
1897 ua_sess
->started
= 1;
1900 /* This start the UST tracing */
1901 ret
= ustctl_start_session(app
->key
.sock
, ua_sess
->handle
);
1903 ERR("Error starting tracing for app pid: %d", app
->key
.pid
);
1904 goto error_rcu_unlock
;
1909 /* Quiescent wait after starting trace */
1910 ustctl_wait_quiescent(app
->key
.sock
);
1920 * Stop tracing for a specific UST session and app.
1922 int ust_app_stop_trace(struct ltt_ust_session
*usess
, struct ust_app
*app
)
1925 struct ust_app_session
*ua_sess
;
1927 DBG("Stopping tracing for ust app pid %d", app
->key
.pid
);
1931 ua_sess
= lookup_session_by_app(usess
, app
);
1932 if (ua_sess
== NULL
) {
1933 /* Only malloc can failed so something is really wrong */
1934 goto error_rcu_unlock
;
1937 #if 0 /* only useful when periodical flush will be supported */
1938 /* need to keep a handle on shm in session for this. */
1939 /* Flush all buffers before stopping */
1940 ret
= ustctl_flush_buffer(usess
->sock
, usess
->metadata
->obj
);
1942 ERR("UST metadata flush failed");
1945 cds_list_for_each_entry(ustchan
, &usess
->channels
.head
, list
) {
1946 ret
= ustctl_flush_buffer(usess
->sock
, ustchan
->obj
);
1948 ERR("UST flush buffer error");
1953 /* This inhibits UST tracing */
1954 ret
= ustctl_stop_session(app
->key
.sock
, ua_sess
->handle
);
1956 ERR("Error stopping tracing for app pid: %d", app
->key
.pid
);
1957 goto error_rcu_unlock
;
1962 /* Quiescent wait after stopping trace */
1963 ustctl_wait_quiescent(app
->key
.sock
);
1973 * Destroy a specific UST session in apps.
1975 int ust_app_destroy_trace(struct ltt_ust_session
*usess
, struct ust_app
*app
)
1977 struct ust_app_session
*ua_sess
;
1978 struct lttng_ust_object_data obj
;
1979 struct cds_lfht_iter iter
;
1980 struct cds_lfht_node
*node
;
1983 DBG("Destroy tracing for ust app pid %d", app
->key
.pid
);
1987 __lookup_session_by_app(usess
, app
, &iter
);
1988 node
= hashtable_iter_get_node(&iter
);
1990 /* Only malloc can failed so something is really wrong */
1991 goto error_rcu_unlock
;
1993 ua_sess
= caa_container_of(node
, struct ust_app_session
, node
);
1994 ret
= hashtable_del(app
->sessions
, &iter
);
1996 delete_ust_app_session(app
->key
.sock
, ua_sess
);
1997 obj
.handle
= ua_sess
->handle
;
2000 obj
.memory_map_size
= 0;
2001 ustctl_release_object(app
->key
.sock
, &obj
);
2005 /* Quiescent wait after stopping trace */
2006 ustctl_wait_quiescent(app
->key
.sock
);
2016 * Start tracing for the UST session.
2018 int ust_app_start_trace_all(struct ltt_ust_session
*usess
)
2021 struct cds_lfht_iter iter
;
2022 struct ust_app
*app
;
2024 DBG("Starting all UST traces");
2028 cds_lfht_for_each_entry(ust_app_ht
, &iter
, app
, node
) {
2029 ret
= ust_app_start_trace(usess
, app
);
2031 /* Continue to next apps even on error */
2042 * Start tracing for the UST session.
2044 int ust_app_stop_trace_all(struct ltt_ust_session
*usess
)
2047 struct cds_lfht_iter iter
;
2048 struct ust_app
*app
;
2050 DBG("Stopping all UST traces");
2054 cds_lfht_for_each_entry(ust_app_ht
, &iter
, app
, node
) {
2055 ret
= ust_app_stop_trace(usess
, app
);
2057 /* Continue to next apps even on error */
2068 * Destroy app UST session.
2070 int ust_app_destroy_trace_all(struct ltt_ust_session
*usess
)
2073 struct cds_lfht_iter iter
;
2074 struct ust_app
*app
;
2076 DBG("Destroy all UST traces");
2080 cds_lfht_for_each_entry(ust_app_ht
, &iter
, app
, node
) {
2081 ret
= ust_app_destroy_trace(usess
, app
);
2083 /* Continue to next apps even on error */
2094 * Add channels/events from UST global domain to registered apps at sock.
2096 void ust_app_global_update(struct ltt_ust_session
*usess
, int sock
)
2099 struct cds_lfht_iter iter
;
2100 struct ust_app
*app
;
2101 struct ust_app_session
*ua_sess
;
2102 struct ust_app_channel
*ua_chan
;
2103 struct ust_app_event
*ua_event
;
2105 if (usess
== NULL
) {
2106 ERR("No UST session on global update. Returning");
2110 DBG2("UST app global update for app sock %d for session uid %d", sock
,
2115 app
= find_app_by_sock(sock
);
2117 ERR("Failed to update app sock %d", sock
);
2121 ua_sess
= create_ust_app_session(usess
, app
);
2122 if (ua_sess
== NULL
) {
2127 * We can iterate safely here over all UST app session sicne the create ust
2128 * app session above made a shadow copy of the UST global domain from the
2131 cds_lfht_for_each_entry(ua_sess
->channels
, &iter
, ua_chan
, node
) {
2132 ret
= create_ust_channel(app
, ua_sess
, ua_chan
);
2134 /* FIXME: Should we quit here or continue... */
2138 /* For each events */
2139 cds_lfht_for_each_entry(ua_chan
->events
, &iter
, ua_event
, node
) {
2140 ret
= create_ust_event(app
, ua_sess
, ua_chan
, ua_event
);
2142 /* FIXME: Should we quit here or continue... */
2148 if (usess
->start_trace
) {
2149 ret
= ust_app_start_trace(usess
, app
);
2154 DBG2("UST trace started for app pid %d", app
->key
.pid
);
2163 * Add context to a specific channel for global UST domain.
2165 int ust_app_add_ctx_channel_glb(struct ltt_ust_session
*usess
,
2166 struct ltt_ust_channel
*uchan
, struct ltt_ust_context
*uctx
)
2169 struct cds_lfht_node
*ua_chan_node
;
2170 struct cds_lfht_iter iter
, uiter
;
2171 struct ust_app_channel
*ua_chan
= NULL
;
2172 struct ust_app_session
*ua_sess
;
2173 struct ust_app
*app
;
2177 cds_lfht_for_each_entry(ust_app_ht
, &iter
, app
, node
) {
2178 ua_sess
= lookup_session_by_app(usess
, app
);
2179 if (ua_sess
== NULL
) {
2183 /* Lookup channel in the ust app session */
2184 ua_chan_node
= hashtable_lookup(ua_sess
->channels
,
2185 (void *)uchan
->name
, strlen(uchan
->name
), &uiter
);
2186 if (ua_chan_node
== NULL
) {
2189 ua_chan
= caa_container_of(ua_chan_node
, struct ust_app_channel
,
2192 ret
= create_ust_app_channel_context(ua_sess
, ua_chan
, &uctx
->ctx
, app
);
2198 /* Add ltt UST context node to ltt UST channel */
2199 hashtable_add_unique(uchan
->ctx
, &uctx
->node
);
2206 * Add context to a specific event in a channel for global UST domain.
2208 int ust_app_add_ctx_event_glb(struct ltt_ust_session
*usess
,
2209 struct ltt_ust_channel
*uchan
, struct ltt_ust_event
*uevent
,
2210 struct ltt_ust_context
*uctx
)
2213 struct cds_lfht_node
*ua_chan_node
, *ua_event_node
;
2214 struct cds_lfht_iter iter
, uiter
;
2215 struct ust_app_session
*ua_sess
;
2216 struct ust_app_event
*ua_event
;
2217 struct ust_app_channel
*ua_chan
= NULL
;
2218 struct ust_app
*app
;
2222 cds_lfht_for_each_entry(ust_app_ht
, &iter
, app
, node
) {
2223 ua_sess
= lookup_session_by_app(usess
, app
);
2224 if (ua_sess
== NULL
) {
2228 /* Lookup channel in the ust app session */
2229 ua_chan_node
= hashtable_lookup(ua_sess
->channels
,
2230 (void *)uchan
->name
, strlen(uchan
->name
), &uiter
);
2231 if (ua_chan_node
== NULL
) {
2234 ua_chan
= caa_container_of(ua_chan_node
, struct ust_app_channel
,
2237 ua_event_node
= hashtable_lookup(ua_chan
->events
,
2238 (void *)uevent
->attr
.name
, strlen(uevent
->attr
.name
), &uiter
);
2239 if (ua_event_node
== NULL
) {
2242 ua_event
= caa_container_of(ua_event_node
, struct ust_app_event
,
2245 ret
= create_ust_app_event_context(ua_sess
, ua_event
, &uctx
->ctx
, app
);
2251 /* Add ltt UST context node to ltt UST event */
2252 hashtable_add_unique(uevent
->ctx
, &uctx
->node
);
2259 * Enable event for a channel from a UST session for a specific PID.
2261 int ust_app_enable_event_pid(struct ltt_ust_session
*usess
,
2262 struct ltt_ust_channel
*uchan
, struct ltt_ust_event
*uevent
, pid_t pid
)
2265 struct cds_lfht_iter iter
;
2266 struct cds_lfht_node
*ua_chan_node
, *ua_event_node
;
2267 struct ust_app
*app
;
2268 struct ust_app_session
*ua_sess
;
2269 struct ust_app_channel
*ua_chan
;
2270 struct ust_app_event
*ua_event
;
2272 DBG("UST app enabling event %s for PID %d", uevent
->attr
.name
, pid
);
2276 app
= ust_app_find_by_pid(pid
);
2278 ERR("UST app enable event per PID %d not found", pid
);
2283 ua_sess
= lookup_session_by_app(usess
, app
);
2284 /* If ua_sess is NULL, there is a code flow error */
2287 /* Lookup channel in the ust app session */
2288 ua_chan_node
= hashtable_lookup(ua_sess
->channels
, (void *)uchan
->name
,
2289 strlen(uchan
->name
), &iter
);
2290 /* If the channel is not found, there is a code flow error */
2291 assert(ua_chan_node
);
2293 ua_chan
= caa_container_of(ua_chan_node
, struct ust_app_channel
, node
);
2295 ua_event_node
= hashtable_lookup(ua_chan
->events
,
2296 (void*)uevent
->attr
.name
, strlen(uevent
->attr
.name
), &iter
);
2297 if (ua_event_node
== NULL
) {
2298 ret
= create_ust_app_event(ua_sess
, ua_chan
, uevent
, app
);
2303 ua_event
= caa_container_of(ua_event_node
, struct ust_app_event
, node
);
2305 ret
= enable_ust_app_event(ua_sess
, ua_event
, app
);
2317 * Disable event for a channel from a UST session for a specific PID.
2319 int ust_app_disable_event_pid(struct ltt_ust_session
*usess
,
2320 struct ltt_ust_channel
*uchan
, struct ltt_ust_event
*uevent
, pid_t pid
)
2323 struct cds_lfht_iter iter
;
2324 struct cds_lfht_node
*ua_chan_node
, *ua_event_node
;
2325 struct ust_app
*app
;
2326 struct ust_app_session
*ua_sess
;
2327 struct ust_app_channel
*ua_chan
;
2328 struct ust_app_event
*ua_event
;
2330 DBG("UST app disabling event %s for PID %d", uevent
->attr
.name
, pid
);
2334 app
= ust_app_find_by_pid(pid
);
2336 ERR("UST app disable event per PID %d not found", pid
);
2341 ua_sess
= lookup_session_by_app(usess
, app
);
2342 /* If ua_sess is NULL, there is a code flow error */
2345 /* Lookup channel in the ust app session */
2346 ua_chan_node
= hashtable_lookup(ua_sess
->channels
, (void *)uchan
->name
,
2347 strlen(uchan
->name
), &iter
);
2348 if (ua_chan_node
== NULL
) {
2349 /* Channel does not exist, skip disabling */
2352 ua_chan
= caa_container_of(ua_chan_node
, struct ust_app_channel
, node
);
2354 ua_event_node
= hashtable_lookup(ua_chan
->events
,
2355 (void*)uevent
->attr
.name
, strlen(uevent
->attr
.name
), &iter
);
2356 if (ua_event_node
== NULL
) {
2357 /* Event does not exist, skip disabling */
2360 ua_event
= caa_container_of(ua_event_node
, struct ust_app_event
, node
);
2362 ret
= disable_ust_app_event(ua_sess
, ua_event
, app
);