2 * Copyright (C) 2011 - David Goulet <david.goulet@polymtl.ca>
4 * This program is free software; you can redistribute it and/or modify
5 * it under the terms of the GNU General Public License, version 2 only,
6 * as published by the Free Software Foundation.
8 * This program is distributed in the hope that it will be useful,
9 * but WITHOUT ANY WARRANTY; without even the implied warranty of
10 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
11 * GNU General Public License for more details.
13 * You should have received a copy of the GNU General Public License along
14 * with this program; if not, write to the Free Software Foundation, Inc.,
15 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
26 #include <common/common.h>
27 #include <common/defaults.h>
29 #include "buffer-registry.h"
30 #include "trace-ust.h"
36 * Match function for the events hash table lookup.
38 * Matches by name only. Used by the disable command.
40 int trace_ust_ht_match_event_by_name(struct cds_lfht_node
*node
,
43 struct ltt_ust_event
*event
;
49 event
= caa_container_of(node
, struct ltt_ust_event
, node
.node
);
53 if (strncmp(event
->attr
.name
, name
, sizeof(event
->attr
.name
)) != 0) {
65 * Match function for the hash table lookup.
67 * It matches an ust event based on three attributes which are the event name,
68 * the filter bytecode and the loglevel.
70 int trace_ust_ht_match_event(struct cds_lfht_node
*node
, const void *_key
)
72 struct ltt_ust_event
*event
;
73 const struct ltt_ust_ht_key
*key
;
78 event
= caa_container_of(node
, struct ltt_ust_event
, node
.node
);
81 /* Match the 4 elements of the key: name, filter, loglevel, exclusions. */
84 if (strncmp(event
->attr
.name
, key
->name
, sizeof(event
->attr
.name
)) != 0) {
89 if (event
->attr
.loglevel
!= key
->loglevel
) {
90 if (event
->attr
.loglevel_type
== LTTNG_UST_LOGLEVEL_ALL
91 && key
->loglevel
== 0 && event
->attr
.loglevel
== -1) {
93 * Match is accepted. This is because on event creation, the
94 * loglevel is set to -1 if the event loglevel type is ALL so 0 and
95 * -1 are accepted for this loglevel type since 0 is the one set by
96 * the API when receiving an enable event.
103 /* Only one of the filters is NULL, fail. */
104 if ((key
->filter
&& !event
->filter
) || (!key
->filter
&& event
->filter
)) {
108 if (key
->filter
&& event
->filter
) {
109 /* Both filters exists, check length followed by the bytecode. */
110 if (event
->filter
->len
!= key
->filter
->len
||
111 memcmp(event
->filter
->data
, key
->filter
->data
,
112 event
->filter
->len
) != 0) {
117 /* If only one of the exclusions is NULL, fail. */
118 if ((key
->exclusion
&& !event
->exclusion
) || (!key
->exclusion
&& event
->exclusion
)) {
122 if (key
->exclusion
&& event
->exclusion
) {
123 /* Both exclusions exist; check count followed by names. */
124 if (event
->exclusion
->count
!= key
->exclusion
->count
||
125 memcmp(event
->exclusion
->names
, key
->exclusion
->names
,
126 event
->exclusion
->count
* LTTNG_SYMBOL_NAME_LEN
) != 0) {
138 * Find the channel in the hashtable and return channel pointer. RCU read side
139 * lock MUST be acquired before calling this.
141 struct ltt_ust_channel
*trace_ust_find_channel_by_name(struct lttng_ht
*ht
,
144 struct lttng_ht_node_str
*node
;
145 struct lttng_ht_iter iter
;
148 * If we receive an empty string for channel name, it means the
149 * default channel name is requested.
152 name
= DEFAULT_CHANNEL_NAME
;
154 lttng_ht_lookup(ht
, (void *)name
, &iter
);
155 node
= lttng_ht_iter_get_node_str(&iter
);
160 DBG2("Trace UST channel %s found by name", name
);
162 return caa_container_of(node
, struct ltt_ust_channel
, node
);
165 DBG2("Trace UST channel %s not found by name", name
);
170 * Find the event in the hashtable and return event pointer. RCU read side lock
171 * MUST be acquired before calling this.
173 struct ltt_ust_event
*trace_ust_find_event(struct lttng_ht
*ht
,
174 char *name
, struct lttng_filter_bytecode
*filter
, int loglevel
,
175 struct lttng_event_exclusion
*exclusion
)
177 struct lttng_ht_node_str
*node
;
178 struct lttng_ht_iter iter
;
179 struct ltt_ust_ht_key key
;
186 key
.loglevel
= loglevel
;
187 key
.exclusion
= exclusion
;
189 cds_lfht_lookup(ht
->ht
, ht
->hash_fct((void *) name
, lttng_ht_seed
),
190 trace_ust_ht_match_event
, &key
, &iter
.iter
);
191 node
= lttng_ht_iter_get_node_str(&iter
);
196 DBG2("Trace UST event %s found", key
.name
);
198 return caa_container_of(node
, struct ltt_ust_event
, node
);
201 DBG2("Trace UST event %s NOT found", key
.name
);
206 * Lookup an agent in the session agents hash table by domain type and return
207 * the object if found else NULL.
209 * RCU read side lock must be acquired before calling and only released
210 * once the agent is no longer in scope or being used.
212 struct agent
*trace_ust_find_agent(struct ltt_ust_session
*session
,
213 enum lttng_domain_type domain_type
)
215 struct agent
*agt
= NULL
;
216 struct lttng_ht_node_u64
*node
;
217 struct lttng_ht_iter iter
;
222 DBG3("Trace ust agent lookup for domain %d", domain_type
);
226 lttng_ht_lookup(session
->agents
, &key
, &iter
);
227 node
= lttng_ht_iter_get_node_u64(&iter
);
231 agt
= caa_container_of(node
, struct agent
, node
);
238 * Allocate and initialize a ust session data structure.
240 * Return pointer to structure or NULL.
242 struct ltt_ust_session
*trace_ust_create_session(uint64_t session_id
)
244 struct ltt_ust_session
*lus
;
246 /* Allocate a new ltt ust session */
247 lus
= zmalloc(sizeof(struct ltt_ust_session
));
249 PERROR("create ust session zmalloc");
253 /* Init data structure */
254 lus
->id
= session_id
;
257 /* Set default metadata channel attribute. */
258 lus
->metadata_attr
.overwrite
= DEFAULT_CHANNEL_OVERWRITE
;
259 lus
->metadata_attr
.subbuf_size
= default_get_metadata_subbuf_size();
260 lus
->metadata_attr
.num_subbuf
= DEFAULT_METADATA_SUBBUF_NUM
;
261 lus
->metadata_attr
.switch_timer_interval
= DEFAULT_METADATA_SWITCH_TIMER
;
262 lus
->metadata_attr
.read_timer_interval
= DEFAULT_METADATA_READ_TIMER
;
263 lus
->metadata_attr
.output
= LTTNG_UST_MMAP
;
266 * Default buffer type. This can be changed through an enable channel
267 * requesting a different type. Note that this can only be changed once
268 * during the session lifetime which is at the first enable channel and
269 * only before start. The flag buffer_type_changed indicates the status.
271 lus
->buffer_type
= LTTNG_BUFFER_PER_UID
;
272 /* Once set to 1, the buffer_type is immutable for the session. */
273 lus
->buffer_type_changed
= 0;
274 /* Init it in case it get used after allocation. */
275 CDS_INIT_LIST_HEAD(&lus
->buffer_reg_uid_list
);
277 /* Alloc UST global domain channels' HT */
278 lus
->domain_global
.channels
= lttng_ht_new(0, LTTNG_HT_TYPE_STRING
);
279 /* Alloc agent hash table. */
280 lus
->agents
= lttng_ht_new(0, LTTNG_HT_TYPE_U64
);
282 lus
->consumer
= consumer_create_output(CONSUMER_DST_LOCAL
);
283 if (lus
->consumer
== NULL
) {
287 DBG2("UST trace session create successful");
292 ht_cleanup_push(lus
->domain_global
.channels
);
293 ht_cleanup_push(lus
->agents
);
300 * Allocate and initialize a ust channel data structure.
302 * Return pointer to structure or NULL.
304 struct ltt_ust_channel
*trace_ust_create_channel(struct lttng_channel
*chan
,
305 enum lttng_domain_type domain
)
307 struct ltt_ust_channel
*luc
;
311 luc
= zmalloc(sizeof(struct ltt_ust_channel
));
313 PERROR("ltt_ust_channel zmalloc");
317 luc
->domain
= domain
;
319 /* Copy UST channel attributes */
320 luc
->attr
.overwrite
= chan
->attr
.overwrite
;
321 luc
->attr
.subbuf_size
= chan
->attr
.subbuf_size
;
322 luc
->attr
.num_subbuf
= chan
->attr
.num_subbuf
;
323 luc
->attr
.switch_timer_interval
= chan
->attr
.switch_timer_interval
;
324 luc
->attr
.read_timer_interval
= chan
->attr
.read_timer_interval
;
325 luc
->attr
.output
= (enum lttng_ust_output
) chan
->attr
.output
;
327 /* Translate to UST output enum */
328 switch (luc
->attr
.output
) {
330 luc
->attr
.output
= LTTNG_UST_MMAP
;
335 * If we receive an empty string for channel name, it means the
336 * default channel name is requested.
338 if (chan
->name
[0] == '\0') {
339 strncpy(luc
->name
, DEFAULT_CHANNEL_NAME
, sizeof(luc
->name
));
341 /* Copy channel name */
342 strncpy(luc
->name
, chan
->name
, sizeof(luc
->name
));
344 luc
->name
[LTTNG_UST_SYM_NAME_LEN
- 1] = '\0';
347 lttng_ht_node_init_str(&luc
->node
, luc
->name
);
348 CDS_INIT_LIST_HEAD(&luc
->ctx_list
);
350 /* Alloc hash tables */
351 luc
->events
= lttng_ht_new(0, LTTNG_HT_TYPE_STRING
);
352 luc
->ctx
= lttng_ht_new(0, LTTNG_HT_TYPE_ULONG
);
354 /* On-disk circular buffer parameters */
355 luc
->tracefile_size
= chan
->attr
.tracefile_size
;
356 luc
->tracefile_count
= chan
->attr
.tracefile_count
;
358 DBG2("Trace UST channel %s created", luc
->name
);
365 * Allocate and initialize a ust event. Set name and event type.
366 * We own filter_expression, filter, and exclusion.
368 * Return pointer to structure or NULL.
370 struct ltt_ust_event
*trace_ust_create_event(struct lttng_event
*ev
,
371 char *filter_expression
,
372 struct lttng_filter_bytecode
*filter
,
373 struct lttng_event_exclusion
*exclusion
,
376 struct ltt_ust_event
*lue
;
380 lue
= zmalloc(sizeof(struct ltt_ust_event
));
382 PERROR("ust event zmalloc");
386 lue
->internal
= internal_event
;
389 case LTTNG_EVENT_PROBE
:
390 lue
->attr
.instrumentation
= LTTNG_UST_PROBE
;
392 case LTTNG_EVENT_FUNCTION
:
393 lue
->attr
.instrumentation
= LTTNG_UST_FUNCTION
;
395 case LTTNG_EVENT_FUNCTION_ENTRY
:
396 lue
->attr
.instrumentation
= LTTNG_UST_FUNCTION
;
398 case LTTNG_EVENT_TRACEPOINT
:
399 lue
->attr
.instrumentation
= LTTNG_UST_TRACEPOINT
;
402 ERR("Unknown ust instrumentation type (%d)", ev
->type
);
403 goto error_free_event
;
406 /* Copy event name */
407 strncpy(lue
->attr
.name
, ev
->name
, LTTNG_UST_SYM_NAME_LEN
);
408 lue
->attr
.name
[LTTNG_UST_SYM_NAME_LEN
- 1] = '\0';
410 switch (ev
->loglevel_type
) {
411 case LTTNG_EVENT_LOGLEVEL_ALL
:
412 lue
->attr
.loglevel_type
= LTTNG_UST_LOGLEVEL_ALL
;
413 lue
->attr
.loglevel
= -1; /* Force to -1 */
415 case LTTNG_EVENT_LOGLEVEL_RANGE
:
416 lue
->attr
.loglevel_type
= LTTNG_UST_LOGLEVEL_RANGE
;
417 lue
->attr
.loglevel
= ev
->loglevel
;
419 case LTTNG_EVENT_LOGLEVEL_SINGLE
:
420 lue
->attr
.loglevel_type
= LTTNG_UST_LOGLEVEL_SINGLE
;
421 lue
->attr
.loglevel
= ev
->loglevel
;
424 ERR("Unknown ust loglevel type (%d)", ev
->loglevel_type
);
425 goto error_free_event
;
429 lue
->filter_expression
= filter_expression
;
430 lue
->filter
= filter
;
431 lue
->exclusion
= exclusion
;
434 lttng_ht_node_init_str(&lue
->node
, lue
->attr
.name
);
436 DBG2("Trace UST event %s, loglevel (%d,%d) created",
437 lue
->attr
.name
, lue
->attr
.loglevel_type
,
445 free(filter_expression
);
452 int trace_ust_context_type_event_to_ust(enum lttng_event_context_type type
)
457 case LTTNG_EVENT_CONTEXT_VTID
:
458 utype
= LTTNG_UST_CONTEXT_VTID
;
460 case LTTNG_EVENT_CONTEXT_VPID
:
461 utype
= LTTNG_UST_CONTEXT_VPID
;
463 case LTTNG_EVENT_CONTEXT_PTHREAD_ID
:
464 utype
= LTTNG_UST_CONTEXT_PTHREAD_ID
;
466 case LTTNG_EVENT_CONTEXT_PROCNAME
:
467 utype
= LTTNG_UST_CONTEXT_PROCNAME
;
469 case LTTNG_EVENT_CONTEXT_IP
:
470 utype
= LTTNG_UST_CONTEXT_IP
;
472 case LTTNG_EVENT_CONTEXT_PERF_THREAD_COUNTER
:
473 if (!ustctl_has_perf_counters()) {
475 WARN("Perf counters not implemented in UST");
477 utype
= LTTNG_UST_CONTEXT_PERF_THREAD_COUNTER
;
481 ERR("Invalid UST context");
489 * Return 1 if contexts match, 0 otherwise.
491 int trace_ust_match_context(struct ltt_ust_context
*uctx
,
492 struct lttng_event_context
*ctx
)
496 utype
= trace_ust_context_type_event_to_ust(ctx
->ctx
);
500 if (uctx
->ctx
.ctx
!= utype
) {
504 case LTTNG_UST_CONTEXT_PERF_THREAD_COUNTER
:
505 if (uctx
->ctx
.u
.perf_counter
.type
506 != ctx
->u
.perf_counter
.type
) {
509 if (uctx
->ctx
.u
.perf_counter
.config
510 != ctx
->u
.perf_counter
.config
) {
513 if (strncmp(uctx
->ctx
.u
.perf_counter
.name
,
514 ctx
->u
.perf_counter
.name
,
515 LTTNG_UST_SYM_NAME_LEN
)) {
527 * Allocate and initialize an UST context.
529 * Return pointer to structure or NULL.
531 struct ltt_ust_context
*trace_ust_create_context(
532 struct lttng_event_context
*ctx
)
534 struct ltt_ust_context
*uctx
;
539 utype
= trace_ust_context_type_event_to_ust(ctx
->ctx
);
544 uctx
= zmalloc(sizeof(struct ltt_ust_context
));
546 PERROR("zmalloc ltt_ust_context");
550 uctx
->ctx
.ctx
= (enum lttng_ust_context_type
) utype
;
552 case LTTNG_UST_CONTEXT_PERF_THREAD_COUNTER
:
553 uctx
->ctx
.u
.perf_counter
.type
= ctx
->u
.perf_counter
.type
;
554 uctx
->ctx
.u
.perf_counter
.config
= ctx
->u
.perf_counter
.config
;
555 strncpy(uctx
->ctx
.u
.perf_counter
.name
, ctx
->u
.perf_counter
.name
,
556 LTTNG_UST_SYM_NAME_LEN
);
557 uctx
->ctx
.u
.perf_counter
.name
[LTTNG_UST_SYM_NAME_LEN
- 1] = '\0';
562 lttng_ht_node_init_ulong(&uctx
->node
, (unsigned long) uctx
->ctx
.ctx
);
571 void destroy_pid_tracker_node_rcu(struct rcu_head
*head
)
573 struct ust_pid_tracker_node
*tracker_node
=
574 caa_container_of(head
, struct ust_pid_tracker_node
, node
.head
);
579 void destroy_pid_tracker_node(struct ust_pid_tracker_node
*tracker_node
)
582 call_rcu(&tracker_node
->node
.head
, destroy_pid_tracker_node_rcu
);
586 int init_pid_tracker(struct ust_pid_tracker
*pid_tracker
)
590 pid_tracker
->ht
= lttng_ht_new(0, LTTNG_HT_TYPE_ULONG
);
591 if (!pid_tracker
->ht
) {
601 * Teardown pid tracker content, but don't free pid_tracker object.
604 void fini_pid_tracker(struct ust_pid_tracker
*pid_tracker
)
606 struct ust_pid_tracker_node
*tracker_node
;
607 struct lttng_ht_iter iter
;
609 if (!pid_tracker
->ht
) {
613 cds_lfht_for_each_entry(pid_tracker
->ht
->ht
,
614 &iter
.iter
, tracker_node
, node
.node
) {
615 int ret
= lttng_ht_del(pid_tracker
->ht
, &iter
);
618 destroy_pid_tracker_node(tracker_node
);
621 ht_cleanup_push(pid_tracker
->ht
);
622 pid_tracker
->ht
= NULL
;
626 struct ust_pid_tracker_node
*pid_tracker_lookup(
627 struct ust_pid_tracker
*pid_tracker
, int pid
,
628 struct lttng_ht_iter
*iter
)
630 unsigned long _pid
= (unsigned long) pid
;
631 struct lttng_ht_node_ulong
*node
;
633 lttng_ht_lookup(pid_tracker
->ht
, (void *) _pid
, iter
);
634 node
= lttng_ht_iter_get_node_ulong(iter
);
636 return caa_container_of(node
, struct ust_pid_tracker_node
,
644 int pid_tracker_add_pid(struct ust_pid_tracker
*pid_tracker
, int pid
)
646 int retval
= LTTNG_OK
;
647 struct ust_pid_tracker_node
*tracker_node
;
648 struct lttng_ht_iter iter
;
651 retval
= LTTNG_ERR_INVALID
;
654 tracker_node
= pid_tracker_lookup(pid_tracker
, pid
, &iter
);
656 /* Already exists. */
657 retval
= LTTNG_ERR_PID_TRACKED
;
660 tracker_node
= zmalloc(sizeof(*tracker_node
));
662 retval
= LTTNG_ERR_NOMEM
;
665 lttng_ht_node_init_ulong(&tracker_node
->node
, (unsigned long) pid
);
666 lttng_ht_add_unique_ulong(pid_tracker
->ht
, &tracker_node
->node
);
672 int pid_tracker_del_pid(struct ust_pid_tracker
*pid_tracker
, int pid
)
674 int retval
= LTTNG_OK
, ret
;
675 struct ust_pid_tracker_node
*tracker_node
;
676 struct lttng_ht_iter iter
;
679 retval
= LTTNG_ERR_INVALID
;
682 tracker_node
= pid_tracker_lookup(pid_tracker
, pid
, &iter
);
685 retval
= LTTNG_ERR_PID_NOT_TRACKED
;
688 ret
= lttng_ht_del(pid_tracker
->ht
, &iter
);
691 destroy_pid_tracker_node(tracker_node
);
697 * The session lock is held when calling this function.
699 int trace_ust_pid_tracker_lookup(struct ltt_ust_session
*session
, int pid
)
701 struct lttng_ht_iter iter
;
703 if (!session
->pid_tracker
.ht
) {
706 if (pid_tracker_lookup(&session
->pid_tracker
, pid
, &iter
)) {
713 * Called with the session lock held.
715 int trace_ust_track_pid(struct ltt_ust_session
*session
, int pid
)
717 int retval
= LTTNG_OK
;
720 /* Track all pids: destroy tracker if exists. */
721 if (session
->pid_tracker
.ht
) {
722 fini_pid_tracker(&session
->pid_tracker
);
723 /* Ensure all apps have session. */
724 ust_app_global_update_all(session
);
729 if (!session
->pid_tracker
.ht
) {
730 /* Create tracker. */
731 if (init_pid_tracker(&session
->pid_tracker
)) {
732 ERR("Error initializing PID tracker");
733 retval
= LTTNG_ERR_NOMEM
;
736 ret
= pid_tracker_add_pid(&session
->pid_tracker
, pid
);
737 if (ret
!= LTTNG_OK
) {
739 fini_pid_tracker(&session
->pid_tracker
);
742 /* Remove all apps from session except pid. */
743 ust_app_global_update_all(session
);
747 ret
= pid_tracker_add_pid(&session
->pid_tracker
, pid
);
748 if (ret
!= LTTNG_OK
) {
752 /* Add session to application */
753 app
= ust_app_find_by_pid(pid
);
755 ust_app_global_update(session
, app
);
764 * Called with the session lock held.
766 int trace_ust_untrack_pid(struct ltt_ust_session
*session
, int pid
)
768 int retval
= LTTNG_OK
;
771 /* Create empty tracker, replace old tracker. */
772 struct ust_pid_tracker tmp_tracker
;
774 tmp_tracker
= session
->pid_tracker
;
775 if (init_pid_tracker(&session
->pid_tracker
)) {
776 ERR("Error initializing PID tracker");
777 retval
= LTTNG_ERR_NOMEM
;
778 /* Rollback operation. */
779 session
->pid_tracker
= tmp_tracker
;
782 fini_pid_tracker(&tmp_tracker
);
784 /* Remove session from all applications */
785 ust_app_global_update_all(session
);
790 if (!session
->pid_tracker
.ht
) {
791 /* No PID being tracked. */
792 retval
= LTTNG_ERR_PID_NOT_TRACKED
;
795 /* Remove PID from tracker */
796 ret
= pid_tracker_del_pid(&session
->pid_tracker
, pid
);
797 if (ret
!= LTTNG_OK
) {
801 /* Remove session from application. */
802 app
= ust_app_find_by_pid(pid
);
804 ust_app_global_update(session
, app
);
812 * Called with session lock held.
814 ssize_t
trace_ust_list_tracker_pids(struct ltt_ust_session
*session
,
817 struct ust_pid_tracker_node
*tracker_node
;
818 struct lttng_ht_iter iter
;
819 unsigned long count
, i
= 0;
824 if (!session
->pid_tracker
.ht
) {
825 /* Tracker disabled. Set first entry to -1. */
826 pids
= zmalloc(sizeof(*pids
));
837 cds_lfht_count_nodes(session
->pid_tracker
.ht
->ht
,
838 &approx
[0], &count
, &approx
[1]);
839 pids
= zmalloc(sizeof(*pids
) * count
);
844 cds_lfht_for_each_entry(session
->pid_tracker
.ht
->ht
,
845 &iter
.iter
, tracker_node
, node
.node
) {
846 pids
[i
++] = tracker_node
->node
.key
;
856 * RCU safe free context structure.
858 static void destroy_context_rcu(struct rcu_head
*head
)
860 struct lttng_ht_node_ulong
*node
=
861 caa_container_of(head
, struct lttng_ht_node_ulong
, head
);
862 struct ltt_ust_context
*ctx
=
863 caa_container_of(node
, struct ltt_ust_context
, node
);
869 * Cleanup UST context hash table.
871 static void destroy_contexts(struct lttng_ht
*ht
)
874 struct lttng_ht_node_ulong
*node
;
875 struct lttng_ht_iter iter
;
876 struct ltt_ust_context
*ctx
;
881 cds_lfht_for_each_entry(ht
->ht
, &iter
.iter
, node
, node
) {
882 /* Remove from ordered list. */
883 ctx
= caa_container_of(node
, struct ltt_ust_context
, node
);
884 cds_list_del(&ctx
->list
);
885 /* Remove from channel's hash table. */
886 ret
= lttng_ht_del(ht
, &iter
);
888 call_rcu(&node
->head
, destroy_context_rcu
);
897 * Cleanup ust event structure.
899 void trace_ust_destroy_event(struct ltt_ust_event
*event
)
903 DBG2("Trace destroy UST event %s", event
->attr
.name
);
904 free(event
->filter_expression
);
906 free(event
->exclusion
);
911 * URCU intermediate call to complete destroy event.
913 static void destroy_event_rcu(struct rcu_head
*head
)
915 struct lttng_ht_node_str
*node
=
916 caa_container_of(head
, struct lttng_ht_node_str
, head
);
917 struct ltt_ust_event
*event
=
918 caa_container_of(node
, struct ltt_ust_event
, node
);
920 trace_ust_destroy_event(event
);
924 * Cleanup UST events hashtable.
926 static void destroy_events(struct lttng_ht
*events
)
929 struct lttng_ht_node_str
*node
;
930 struct lttng_ht_iter iter
;
935 cds_lfht_for_each_entry(events
->ht
, &iter
.iter
, node
, node
) {
936 ret
= lttng_ht_del(events
, &iter
);
938 call_rcu(&node
->head
, destroy_event_rcu
);
942 ht_cleanup_push(events
);
946 * Cleanup ust channel structure.
948 * Should _NOT_ be called with RCU read lock held.
950 static void _trace_ust_destroy_channel(struct ltt_ust_channel
*channel
)
954 DBG2("Trace destroy UST channel %s", channel
->name
);
960 * URCU intermediate call to complete destroy channel.
962 static void destroy_channel_rcu(struct rcu_head
*head
)
964 struct lttng_ht_node_str
*node
=
965 caa_container_of(head
, struct lttng_ht_node_str
, head
);
966 struct ltt_ust_channel
*channel
=
967 caa_container_of(node
, struct ltt_ust_channel
, node
);
969 _trace_ust_destroy_channel(channel
);
972 void trace_ust_destroy_channel(struct ltt_ust_channel
*channel
)
974 /* Destroying all events of the channel */
975 destroy_events(channel
->events
);
976 /* Destroying all context of the channel */
977 destroy_contexts(channel
->ctx
);
979 call_rcu(&channel
->node
.head
, destroy_channel_rcu
);
983 * Remove an UST channel from a channel HT.
985 void trace_ust_delete_channel(struct lttng_ht
*ht
,
986 struct ltt_ust_channel
*channel
)
989 struct lttng_ht_iter iter
;
994 iter
.iter
.node
= &channel
->node
.node
;
995 ret
= lttng_ht_del(ht
, &iter
);
1000 * Iterate over a hash table containing channels and cleanup safely.
1002 static void destroy_channels(struct lttng_ht
*channels
)
1004 struct lttng_ht_node_str
*node
;
1005 struct lttng_ht_iter iter
;
1010 cds_lfht_for_each_entry(channels
->ht
, &iter
.iter
, node
, node
) {
1011 struct ltt_ust_channel
*chan
=
1012 caa_container_of(node
, struct ltt_ust_channel
, node
);
1014 trace_ust_delete_channel(channels
, chan
);
1015 trace_ust_destroy_channel(chan
);
1019 ht_cleanup_push(channels
);
1023 * Cleanup UST global domain.
1025 static void destroy_domain_global(struct ltt_ust_domain_global
*dom
)
1029 destroy_channels(dom
->channels
);
1033 * Cleanup ust session structure
1035 * Should *NOT* be called with RCU read-side lock held.
1037 void trace_ust_destroy_session(struct ltt_ust_session
*session
)
1040 struct buffer_reg_uid
*reg
, *sreg
;
1041 struct lttng_ht_iter iter
;
1045 DBG2("Trace UST destroy session %" PRIu64
, session
->id
);
1047 /* Cleaning up UST domain */
1048 destroy_domain_global(&session
->domain_global
);
1051 cds_lfht_for_each_entry(session
->agents
->ht
, &iter
.iter
, agt
, node
.node
) {
1052 int ret
= lttng_ht_del(session
->agents
, &iter
);
1059 ht_cleanup_push(session
->agents
);
1061 /* Cleanup UID buffer registry object(s). */
1062 cds_list_for_each_entry_safe(reg
, sreg
, &session
->buffer_reg_uid_list
,
1064 cds_list_del(®
->lnode
);
1065 buffer_reg_uid_remove(reg
);
1066 buffer_reg_uid_destroy(reg
, session
->consumer
);
1069 consumer_output_put(session
->consumer
);
1071 fini_pid_tracker(&session
->pid_tracker
);