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
;
74 int ev_loglevel_value
;
80 event
= caa_container_of(node
, struct ltt_ust_event
, node
.node
);
82 ev_loglevel_value
= event
->attr
.loglevel
;
84 /* Match the 4 elements of the key: name, filter, loglevel, exclusions. */
87 if (strncmp(event
->attr
.name
, key
->name
, sizeof(event
->attr
.name
)) != 0) {
91 /* Event loglevel value and type. */
92 ll_match
= loglevels_match(event
->attr
.loglevel_type
,
93 ev_loglevel_value
, key
->loglevel_type
,
94 key
->loglevel_value
, LTTNG_UST_LOGLEVEL_ALL
);
100 /* Only one of the filters is NULL, fail. */
101 if ((key
->filter
&& !event
->filter
) || (!key
->filter
&& event
->filter
)) {
105 if (key
->filter
&& event
->filter
) {
106 /* Both filters exists, check length followed by the bytecode. */
107 if (event
->filter
->len
!= key
->filter
->len
||
108 memcmp(event
->filter
->data
, key
->filter
->data
,
109 event
->filter
->len
) != 0) {
114 /* If only one of the exclusions is NULL, fail. */
115 if ((key
->exclusion
&& !event
->exclusion
) || (!key
->exclusion
&& event
->exclusion
)) {
119 if (key
->exclusion
&& event
->exclusion
) {
120 /* Both exclusions exist; check count followed by names. */
121 if (event
->exclusion
->count
!= key
->exclusion
->count
||
122 memcmp(event
->exclusion
->names
, key
->exclusion
->names
,
123 event
->exclusion
->count
* LTTNG_SYMBOL_NAME_LEN
) != 0) {
135 * Find the channel in the hashtable and return channel pointer. RCU read side
136 * lock MUST be acquired before calling this.
138 struct ltt_ust_channel
*trace_ust_find_channel_by_name(struct lttng_ht
*ht
,
141 struct lttng_ht_node_str
*node
;
142 struct lttng_ht_iter iter
;
145 * If we receive an empty string for channel name, it means the
146 * default channel name is requested.
149 name
= DEFAULT_CHANNEL_NAME
;
151 lttng_ht_lookup(ht
, (void *)name
, &iter
);
152 node
= lttng_ht_iter_get_node_str(&iter
);
157 DBG2("Trace UST channel %s found by name", name
);
159 return caa_container_of(node
, struct ltt_ust_channel
, node
);
162 DBG2("Trace UST channel %s not found by name", name
);
167 * Find the event in the hashtable and return event pointer. RCU read side lock
168 * MUST be acquired before calling this.
170 struct ltt_ust_event
*trace_ust_find_event(struct lttng_ht
*ht
,
171 char *name
, struct lttng_filter_bytecode
*filter
,
172 enum lttng_ust_loglevel_type loglevel_type
, int loglevel_value
,
173 struct lttng_event_exclusion
*exclusion
)
175 struct lttng_ht_node_str
*node
;
176 struct lttng_ht_iter iter
;
177 struct ltt_ust_ht_key key
;
184 key
.loglevel_type
= loglevel_type
;
185 key
.loglevel_value
= loglevel_value
;
186 key
.exclusion
= exclusion
;
188 cds_lfht_lookup(ht
->ht
, ht
->hash_fct((void *) name
, lttng_ht_seed
),
189 trace_ust_ht_match_event
, &key
, &iter
.iter
);
190 node
= lttng_ht_iter_get_node_str(&iter
);
195 DBG2("Trace UST event %s found", key
.name
);
197 return caa_container_of(node
, struct ltt_ust_event
, node
);
200 DBG2("Trace UST event %s NOT found", key
.name
);
205 * Lookup an agent in the session agents hash table by domain type and return
206 * the object if found else NULL.
208 * RCU read side lock must be acquired before calling and only released
209 * once the agent is no longer in scope or being used.
211 struct agent
*trace_ust_find_agent(struct ltt_ust_session
*session
,
212 enum lttng_domain_type domain_type
)
214 struct agent
*agt
= NULL
;
215 struct lttng_ht_node_u64
*node
;
216 struct lttng_ht_iter iter
;
221 DBG3("Trace ust agent lookup for domain %d", domain_type
);
225 lttng_ht_lookup(session
->agents
, &key
, &iter
);
226 node
= lttng_ht_iter_get_node_u64(&iter
);
230 agt
= caa_container_of(node
, struct agent
, node
);
237 * Allocate and initialize a ust session data structure.
239 * Return pointer to structure or NULL.
241 struct ltt_ust_session
*trace_ust_create_session(uint64_t session_id
)
243 struct ltt_ust_session
*lus
;
245 /* Allocate a new ltt ust session */
246 lus
= zmalloc(sizeof(struct ltt_ust_session
));
248 PERROR("create ust session zmalloc");
252 /* Init data structure */
253 lus
->id
= session_id
;
256 /* Set default metadata channel attribute. */
257 lus
->metadata_attr
.overwrite
= DEFAULT_CHANNEL_OVERWRITE
;
258 lus
->metadata_attr
.subbuf_size
= default_get_metadata_subbuf_size();
259 lus
->metadata_attr
.num_subbuf
= DEFAULT_METADATA_SUBBUF_NUM
;
260 lus
->metadata_attr
.switch_timer_interval
= DEFAULT_METADATA_SWITCH_TIMER
;
261 lus
->metadata_attr
.read_timer_interval
= DEFAULT_METADATA_READ_TIMER
;
262 lus
->metadata_attr
.output
= LTTNG_UST_MMAP
;
265 * Default buffer type. This can be changed through an enable channel
266 * requesting a different type. Note that this can only be changed once
267 * during the session lifetime which is at the first enable channel and
268 * only before start. The flag buffer_type_changed indicates the status.
270 lus
->buffer_type
= LTTNG_BUFFER_PER_UID
;
271 /* Once set to 1, the buffer_type is immutable for the session. */
272 lus
->buffer_type_changed
= 0;
273 /* Init it in case it get used after allocation. */
274 CDS_INIT_LIST_HEAD(&lus
->buffer_reg_uid_list
);
276 /* Alloc UST global domain channels' HT */
277 lus
->domain_global
.channels
= lttng_ht_new(0, LTTNG_HT_TYPE_STRING
);
278 /* Alloc agent hash table. */
279 lus
->agents
= lttng_ht_new(0, LTTNG_HT_TYPE_U64
);
281 lus
->consumer
= consumer_create_output(CONSUMER_DST_LOCAL
);
282 if (lus
->consumer
== NULL
) {
286 DBG2("UST trace session create successful");
291 ht_cleanup_push(lus
->domain_global
.channels
);
292 ht_cleanup_push(lus
->agents
);
299 * Allocate and initialize a ust channel data structure.
301 * Return pointer to structure or NULL.
303 struct ltt_ust_channel
*trace_ust_create_channel(struct lttng_channel
*chan
,
304 enum lttng_domain_type domain
)
306 struct ltt_ust_channel
*luc
;
310 luc
= zmalloc(sizeof(struct ltt_ust_channel
));
312 PERROR("ltt_ust_channel zmalloc");
316 luc
->domain
= domain
;
318 /* Copy UST channel attributes */
319 luc
->attr
.overwrite
= chan
->attr
.overwrite
;
320 luc
->attr
.subbuf_size
= chan
->attr
.subbuf_size
;
321 luc
->attr
.num_subbuf
= chan
->attr
.num_subbuf
;
322 luc
->attr
.switch_timer_interval
= chan
->attr
.switch_timer_interval
;
323 luc
->attr
.read_timer_interval
= chan
->attr
.read_timer_interval
;
324 luc
->attr
.output
= (enum lttng_ust_output
) chan
->attr
.output
;
326 /* Translate to UST output enum */
327 switch (luc
->attr
.output
) {
329 luc
->attr
.output
= LTTNG_UST_MMAP
;
334 * If we receive an empty string for channel name, it means the
335 * default channel name is requested.
337 if (chan
->name
[0] == '\0') {
338 strncpy(luc
->name
, DEFAULT_CHANNEL_NAME
, sizeof(luc
->name
));
340 /* Copy channel name */
341 strncpy(luc
->name
, chan
->name
, sizeof(luc
->name
));
343 luc
->name
[LTTNG_UST_SYM_NAME_LEN
- 1] = '\0';
346 lttng_ht_node_init_str(&luc
->node
, luc
->name
);
347 CDS_INIT_LIST_HEAD(&luc
->ctx_list
);
349 /* Alloc hash tables */
350 luc
->events
= lttng_ht_new(0, LTTNG_HT_TYPE_STRING
);
351 luc
->ctx
= lttng_ht_new(0, LTTNG_HT_TYPE_ULONG
);
353 /* On-disk circular buffer parameters */
354 luc
->tracefile_size
= chan
->attr
.tracefile_size
;
355 luc
->tracefile_count
= chan
->attr
.tracefile_count
;
357 DBG2("Trace UST channel %s created", luc
->name
);
364 * Allocate and initialize a ust event. Set name and event type.
365 * We own filter_expression, filter, and exclusion.
367 * Return pointer to structure or NULL.
369 struct ltt_ust_event
*trace_ust_create_event(struct lttng_event
*ev
,
370 char *filter_expression
,
371 struct lttng_filter_bytecode
*filter
,
372 struct lttng_event_exclusion
*exclusion
,
375 struct ltt_ust_event
*lue
;
379 lue
= zmalloc(sizeof(struct ltt_ust_event
));
381 PERROR("ust event zmalloc");
385 lue
->internal
= internal_event
;
388 case LTTNG_EVENT_PROBE
:
389 lue
->attr
.instrumentation
= LTTNG_UST_PROBE
;
391 case LTTNG_EVENT_FUNCTION
:
392 lue
->attr
.instrumentation
= LTTNG_UST_FUNCTION
;
394 case LTTNG_EVENT_FUNCTION_ENTRY
:
395 lue
->attr
.instrumentation
= LTTNG_UST_FUNCTION
;
397 case LTTNG_EVENT_TRACEPOINT
:
398 lue
->attr
.instrumentation
= LTTNG_UST_TRACEPOINT
;
401 ERR("Unknown ust instrumentation type (%d)", ev
->type
);
402 goto error_free_event
;
405 /* Copy event name */
406 strncpy(lue
->attr
.name
, ev
->name
, LTTNG_UST_SYM_NAME_LEN
);
407 lue
->attr
.name
[LTTNG_UST_SYM_NAME_LEN
- 1] = '\0';
409 switch (ev
->loglevel_type
) {
410 case LTTNG_EVENT_LOGLEVEL_ALL
:
411 lue
->attr
.loglevel_type
= LTTNG_UST_LOGLEVEL_ALL
;
412 lue
->attr
.loglevel
= -1; /* Force to -1 */
414 case LTTNG_EVENT_LOGLEVEL_RANGE
:
415 lue
->attr
.loglevel_type
= LTTNG_UST_LOGLEVEL_RANGE
;
416 lue
->attr
.loglevel
= ev
->loglevel
;
418 case LTTNG_EVENT_LOGLEVEL_SINGLE
:
419 lue
->attr
.loglevel_type
= LTTNG_UST_LOGLEVEL_SINGLE
;
420 lue
->attr
.loglevel
= ev
->loglevel
;
423 ERR("Unknown ust loglevel type (%d)", ev
->loglevel_type
);
424 goto error_free_event
;
428 lue
->filter_expression
= filter_expression
;
429 lue
->filter
= filter
;
430 lue
->exclusion
= exclusion
;
433 lttng_ht_node_init_str(&lue
->node
, lue
->attr
.name
);
435 DBG2("Trace UST event %s, loglevel (%d,%d) created",
436 lue
->attr
.name
, lue
->attr
.loglevel_type
,
444 free(filter_expression
);
451 int trace_ust_context_type_event_to_ust(enum lttng_event_context_type type
)
456 case LTTNG_EVENT_CONTEXT_VTID
:
457 utype
= LTTNG_UST_CONTEXT_VTID
;
459 case LTTNG_EVENT_CONTEXT_VPID
:
460 utype
= LTTNG_UST_CONTEXT_VPID
;
462 case LTTNG_EVENT_CONTEXT_PTHREAD_ID
:
463 utype
= LTTNG_UST_CONTEXT_PTHREAD_ID
;
465 case LTTNG_EVENT_CONTEXT_PROCNAME
:
466 utype
= LTTNG_UST_CONTEXT_PROCNAME
;
468 case LTTNG_EVENT_CONTEXT_IP
:
469 utype
= LTTNG_UST_CONTEXT_IP
;
471 case LTTNG_EVENT_CONTEXT_PERF_THREAD_COUNTER
:
472 if (!ustctl_has_perf_counters()) {
474 WARN("Perf counters not implemented in UST");
476 utype
= LTTNG_UST_CONTEXT_PERF_THREAD_COUNTER
;
480 ERR("Invalid UST context");
488 * Return 1 if contexts match, 0 otherwise.
490 int trace_ust_match_context(struct ltt_ust_context
*uctx
,
491 struct lttng_event_context
*ctx
)
495 utype
= trace_ust_context_type_event_to_ust(ctx
->ctx
);
499 if (uctx
->ctx
.ctx
!= utype
) {
503 case LTTNG_UST_CONTEXT_PERF_THREAD_COUNTER
:
504 if (uctx
->ctx
.u
.perf_counter
.type
505 != ctx
->u
.perf_counter
.type
) {
508 if (uctx
->ctx
.u
.perf_counter
.config
509 != ctx
->u
.perf_counter
.config
) {
512 if (strncmp(uctx
->ctx
.u
.perf_counter
.name
,
513 ctx
->u
.perf_counter
.name
,
514 LTTNG_UST_SYM_NAME_LEN
)) {
526 * Allocate and initialize an UST context.
528 * Return pointer to structure or NULL.
530 struct ltt_ust_context
*trace_ust_create_context(
531 struct lttng_event_context
*ctx
)
533 struct ltt_ust_context
*uctx
;
538 utype
= trace_ust_context_type_event_to_ust(ctx
->ctx
);
543 uctx
= zmalloc(sizeof(struct ltt_ust_context
));
545 PERROR("zmalloc ltt_ust_context");
549 uctx
->ctx
.ctx
= (enum lttng_ust_context_type
) utype
;
551 case LTTNG_UST_CONTEXT_PERF_THREAD_COUNTER
:
552 uctx
->ctx
.u
.perf_counter
.type
= ctx
->u
.perf_counter
.type
;
553 uctx
->ctx
.u
.perf_counter
.config
= ctx
->u
.perf_counter
.config
;
554 strncpy(uctx
->ctx
.u
.perf_counter
.name
, ctx
->u
.perf_counter
.name
,
555 LTTNG_UST_SYM_NAME_LEN
);
556 uctx
->ctx
.u
.perf_counter
.name
[LTTNG_UST_SYM_NAME_LEN
- 1] = '\0';
561 lttng_ht_node_init_ulong(&uctx
->node
, (unsigned long) uctx
->ctx
.ctx
);
570 void destroy_pid_tracker_node_rcu(struct rcu_head
*head
)
572 struct ust_pid_tracker_node
*tracker_node
=
573 caa_container_of(head
, struct ust_pid_tracker_node
, node
.head
);
578 void destroy_pid_tracker_node(struct ust_pid_tracker_node
*tracker_node
)
581 call_rcu(&tracker_node
->node
.head
, destroy_pid_tracker_node_rcu
);
585 int init_pid_tracker(struct ust_pid_tracker
*pid_tracker
)
589 pid_tracker
->ht
= lttng_ht_new(0, LTTNG_HT_TYPE_ULONG
);
590 if (!pid_tracker
->ht
) {
600 * Teardown pid tracker content, but don't free pid_tracker object.
603 void fini_pid_tracker(struct ust_pid_tracker
*pid_tracker
)
605 struct ust_pid_tracker_node
*tracker_node
;
606 struct lttng_ht_iter iter
;
608 if (!pid_tracker
->ht
) {
612 cds_lfht_for_each_entry(pid_tracker
->ht
->ht
,
613 &iter
.iter
, tracker_node
, node
.node
) {
614 int ret
= lttng_ht_del(pid_tracker
->ht
, &iter
);
617 destroy_pid_tracker_node(tracker_node
);
620 ht_cleanup_push(pid_tracker
->ht
);
621 pid_tracker
->ht
= NULL
;
625 struct ust_pid_tracker_node
*pid_tracker_lookup(
626 struct ust_pid_tracker
*pid_tracker
, int pid
,
627 struct lttng_ht_iter
*iter
)
629 unsigned long _pid
= (unsigned long) pid
;
630 struct lttng_ht_node_ulong
*node
;
632 lttng_ht_lookup(pid_tracker
->ht
, (void *) _pid
, iter
);
633 node
= lttng_ht_iter_get_node_ulong(iter
);
635 return caa_container_of(node
, struct ust_pid_tracker_node
,
643 int pid_tracker_add_pid(struct ust_pid_tracker
*pid_tracker
, int pid
)
645 int retval
= LTTNG_OK
;
646 struct ust_pid_tracker_node
*tracker_node
;
647 struct lttng_ht_iter iter
;
650 retval
= LTTNG_ERR_INVALID
;
653 tracker_node
= pid_tracker_lookup(pid_tracker
, pid
, &iter
);
655 /* Already exists. */
656 retval
= LTTNG_ERR_PID_TRACKED
;
659 tracker_node
= zmalloc(sizeof(*tracker_node
));
661 retval
= LTTNG_ERR_NOMEM
;
664 lttng_ht_node_init_ulong(&tracker_node
->node
, (unsigned long) pid
);
665 lttng_ht_add_unique_ulong(pid_tracker
->ht
, &tracker_node
->node
);
671 int pid_tracker_del_pid(struct ust_pid_tracker
*pid_tracker
, int pid
)
673 int retval
= LTTNG_OK
, ret
;
674 struct ust_pid_tracker_node
*tracker_node
;
675 struct lttng_ht_iter iter
;
678 retval
= LTTNG_ERR_INVALID
;
681 tracker_node
= pid_tracker_lookup(pid_tracker
, pid
, &iter
);
684 retval
= LTTNG_ERR_PID_NOT_TRACKED
;
687 ret
= lttng_ht_del(pid_tracker
->ht
, &iter
);
690 destroy_pid_tracker_node(tracker_node
);
696 * The session lock is held when calling this function.
698 int trace_ust_pid_tracker_lookup(struct ltt_ust_session
*session
, int pid
)
700 struct lttng_ht_iter iter
;
702 if (!session
->pid_tracker
.ht
) {
705 if (pid_tracker_lookup(&session
->pid_tracker
, pid
, &iter
)) {
712 * Called with the session lock held.
714 int trace_ust_track_pid(struct ltt_ust_session
*session
, int pid
)
716 int retval
= LTTNG_OK
;
719 /* Track all pids: destroy tracker if exists. */
720 if (session
->pid_tracker
.ht
) {
721 fini_pid_tracker(&session
->pid_tracker
);
722 /* Ensure all apps have session. */
723 ust_app_global_update_all(session
);
728 if (!session
->pid_tracker
.ht
) {
729 /* Create tracker. */
730 if (init_pid_tracker(&session
->pid_tracker
)) {
731 ERR("Error initializing PID tracker");
732 retval
= LTTNG_ERR_NOMEM
;
735 ret
= pid_tracker_add_pid(&session
->pid_tracker
, pid
);
736 if (ret
!= LTTNG_OK
) {
738 fini_pid_tracker(&session
->pid_tracker
);
741 /* Remove all apps from session except pid. */
742 ust_app_global_update_all(session
);
746 ret
= pid_tracker_add_pid(&session
->pid_tracker
, pid
);
747 if (ret
!= LTTNG_OK
) {
751 /* Add session to application */
752 app
= ust_app_find_by_pid(pid
);
754 ust_app_global_update(session
, app
);
763 * Called with the session lock held.
765 int trace_ust_untrack_pid(struct ltt_ust_session
*session
, int pid
)
767 int retval
= LTTNG_OK
;
770 /* Create empty tracker, replace old tracker. */
771 struct ust_pid_tracker tmp_tracker
;
773 tmp_tracker
= session
->pid_tracker
;
774 if (init_pid_tracker(&session
->pid_tracker
)) {
775 ERR("Error initializing PID tracker");
776 retval
= LTTNG_ERR_NOMEM
;
777 /* Rollback operation. */
778 session
->pid_tracker
= tmp_tracker
;
781 fini_pid_tracker(&tmp_tracker
);
783 /* Remove session from all applications */
784 ust_app_global_update_all(session
);
789 if (!session
->pid_tracker
.ht
) {
790 /* No PID being tracked. */
791 retval
= LTTNG_ERR_PID_NOT_TRACKED
;
794 /* Remove PID from tracker */
795 ret
= pid_tracker_del_pid(&session
->pid_tracker
, pid
);
796 if (ret
!= LTTNG_OK
) {
800 /* Remove session from application. */
801 app
= ust_app_find_by_pid(pid
);
803 ust_app_global_update(session
, app
);
811 * Called with session lock held.
813 ssize_t
trace_ust_list_tracker_pids(struct ltt_ust_session
*session
,
816 struct ust_pid_tracker_node
*tracker_node
;
817 struct lttng_ht_iter iter
;
818 unsigned long count
, i
= 0;
823 if (!session
->pid_tracker
.ht
) {
824 /* Tracker disabled. Set first entry to -1. */
825 pids
= zmalloc(sizeof(*pids
));
836 cds_lfht_count_nodes(session
->pid_tracker
.ht
->ht
,
837 &approx
[0], &count
, &approx
[1]);
838 pids
= zmalloc(sizeof(*pids
) * count
);
843 cds_lfht_for_each_entry(session
->pid_tracker
.ht
->ht
,
844 &iter
.iter
, tracker_node
, node
.node
) {
845 pids
[i
++] = tracker_node
->node
.key
;
855 * RCU safe free context structure.
857 static void destroy_context_rcu(struct rcu_head
*head
)
859 struct lttng_ht_node_ulong
*node
=
860 caa_container_of(head
, struct lttng_ht_node_ulong
, head
);
861 struct ltt_ust_context
*ctx
=
862 caa_container_of(node
, struct ltt_ust_context
, node
);
868 * Cleanup UST context hash table.
870 static void destroy_contexts(struct lttng_ht
*ht
)
873 struct lttng_ht_node_ulong
*node
;
874 struct lttng_ht_iter iter
;
875 struct ltt_ust_context
*ctx
;
880 cds_lfht_for_each_entry(ht
->ht
, &iter
.iter
, node
, node
) {
881 /* Remove from ordered list. */
882 ctx
= caa_container_of(node
, struct ltt_ust_context
, node
);
883 cds_list_del(&ctx
->list
);
884 /* Remove from channel's hash table. */
885 ret
= lttng_ht_del(ht
, &iter
);
887 call_rcu(&node
->head
, destroy_context_rcu
);
896 * Cleanup ust event structure.
898 void trace_ust_destroy_event(struct ltt_ust_event
*event
)
902 DBG2("Trace destroy UST event %s", event
->attr
.name
);
903 free(event
->filter_expression
);
905 free(event
->exclusion
);
910 * URCU intermediate call to complete destroy event.
912 static void destroy_event_rcu(struct rcu_head
*head
)
914 struct lttng_ht_node_str
*node
=
915 caa_container_of(head
, struct lttng_ht_node_str
, head
);
916 struct ltt_ust_event
*event
=
917 caa_container_of(node
, struct ltt_ust_event
, node
);
919 trace_ust_destroy_event(event
);
923 * Cleanup UST events hashtable.
925 static void destroy_events(struct lttng_ht
*events
)
928 struct lttng_ht_node_str
*node
;
929 struct lttng_ht_iter iter
;
934 cds_lfht_for_each_entry(events
->ht
, &iter
.iter
, node
, node
) {
935 ret
= lttng_ht_del(events
, &iter
);
937 call_rcu(&node
->head
, destroy_event_rcu
);
941 ht_cleanup_push(events
);
945 * Cleanup ust channel structure.
947 * Should _NOT_ be called with RCU read lock held.
949 static void _trace_ust_destroy_channel(struct ltt_ust_channel
*channel
)
953 DBG2("Trace destroy UST channel %s", channel
->name
);
959 * URCU intermediate call to complete destroy channel.
961 static void destroy_channel_rcu(struct rcu_head
*head
)
963 struct lttng_ht_node_str
*node
=
964 caa_container_of(head
, struct lttng_ht_node_str
, head
);
965 struct ltt_ust_channel
*channel
=
966 caa_container_of(node
, struct ltt_ust_channel
, node
);
968 _trace_ust_destroy_channel(channel
);
971 void trace_ust_destroy_channel(struct ltt_ust_channel
*channel
)
973 /* Destroying all events of the channel */
974 destroy_events(channel
->events
);
975 /* Destroying all context of the channel */
976 destroy_contexts(channel
->ctx
);
978 call_rcu(&channel
->node
.head
, destroy_channel_rcu
);
982 * Remove an UST channel from a channel HT.
984 void trace_ust_delete_channel(struct lttng_ht
*ht
,
985 struct ltt_ust_channel
*channel
)
988 struct lttng_ht_iter iter
;
993 iter
.iter
.node
= &channel
->node
.node
;
994 ret
= lttng_ht_del(ht
, &iter
);
999 * Iterate over a hash table containing channels and cleanup safely.
1001 static void destroy_channels(struct lttng_ht
*channels
)
1003 struct lttng_ht_node_str
*node
;
1004 struct lttng_ht_iter iter
;
1009 cds_lfht_for_each_entry(channels
->ht
, &iter
.iter
, node
, node
) {
1010 struct ltt_ust_channel
*chan
=
1011 caa_container_of(node
, struct ltt_ust_channel
, node
);
1013 trace_ust_delete_channel(channels
, chan
);
1014 trace_ust_destroy_channel(chan
);
1018 ht_cleanup_push(channels
);
1022 * Cleanup UST global domain.
1024 static void destroy_domain_global(struct ltt_ust_domain_global
*dom
)
1028 destroy_channels(dom
->channels
);
1032 * Cleanup ust session structure
1034 * Should *NOT* be called with RCU read-side lock held.
1036 void trace_ust_destroy_session(struct ltt_ust_session
*session
)
1039 struct buffer_reg_uid
*reg
, *sreg
;
1040 struct lttng_ht_iter iter
;
1044 DBG2("Trace UST destroy session %" PRIu64
, session
->id
);
1046 /* Cleaning up UST domain */
1047 destroy_domain_global(&session
->domain_global
);
1050 cds_lfht_for_each_entry(session
->agents
->ht
, &iter
.iter
, agt
, node
.node
) {
1051 int ret
= lttng_ht_del(session
->agents
, &iter
);
1058 ht_cleanup_push(session
->agents
);
1060 /* Cleanup UID buffer registry object(s). */
1061 cds_list_for_each_entry_safe(reg
, sreg
, &session
->buffer_reg_uid_list
,
1063 cds_list_del(®
->lnode
);
1064 buffer_reg_uid_remove(reg
);
1065 buffer_reg_uid_destroy(reg
, session
->consumer
);
1068 consumer_output_put(session
->consumer
);
1070 fini_pid_tracker(&session
->pid_tracker
);