2 * Copyright (C) 2011 - David Goulet <david.goulet@polymtl.ca>
3 * Copyright (C) 2016 - Jérémie Galarneau <jeremie.galarneau@efficios.com>
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License, version 2 only,
7 * as published by the Free Software Foundation.
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 along
15 * with this program; if not, write to the Free Software Foundation, Inc.,
16 * 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
) {
122 /* Check exclusion counts first. */
123 if (event
->exclusion
->count
!= key
->exclusion
->count
) {
127 /* Compare names individually. */
128 for (i
= 0; i
< event
->exclusion
->count
; ++i
) {
131 const char *name_ev
=
132 LTTNG_EVENT_EXCLUSION_NAME_AT(
133 event
->exclusion
, i
);
136 * Compare this exclusion name to all the key's
139 for (j
= 0; j
< key
->exclusion
->count
; ++j
) {
140 const char *name_key
=
141 LTTNG_EVENT_EXCLUSION_NAME_AT(
144 if (!strncmp(name_ev
, name_key
,
145 LTTNG_SYMBOL_NAME_LEN
)) {
153 * If the current exclusion name was not found amongst
154 * the key's exclusion names, then there's no match.
169 * Find the channel in the hashtable and return channel pointer. RCU read side
170 * lock MUST be acquired before calling this.
172 struct ltt_ust_channel
*trace_ust_find_channel_by_name(struct lttng_ht
*ht
,
175 struct lttng_ht_node_str
*node
;
176 struct lttng_ht_iter iter
;
179 * If we receive an empty string for channel name, it means the
180 * default channel name is requested.
183 name
= DEFAULT_CHANNEL_NAME
;
185 lttng_ht_lookup(ht
, (void *)name
, &iter
);
186 node
= lttng_ht_iter_get_node_str(&iter
);
191 DBG2("Trace UST channel %s found by name", name
);
193 return caa_container_of(node
, struct ltt_ust_channel
, node
);
196 DBG2("Trace UST channel %s not found by name", name
);
201 * Find the event in the hashtable and return event pointer. RCU read side lock
202 * MUST be acquired before calling this.
204 struct ltt_ust_event
*trace_ust_find_event(struct lttng_ht
*ht
,
205 char *name
, struct lttng_filter_bytecode
*filter
,
206 enum lttng_ust_loglevel_type loglevel_type
, int loglevel_value
,
207 struct lttng_event_exclusion
*exclusion
)
209 struct lttng_ht_node_str
*node
;
210 struct lttng_ht_iter iter
;
211 struct ltt_ust_ht_key key
;
218 key
.loglevel_type
= loglevel_type
;
219 key
.loglevel_value
= loglevel_value
;
220 key
.exclusion
= exclusion
;
222 cds_lfht_lookup(ht
->ht
, ht
->hash_fct((void *) name
, lttng_ht_seed
),
223 trace_ust_ht_match_event
, &key
, &iter
.iter
);
224 node
= lttng_ht_iter_get_node_str(&iter
);
229 DBG2("Trace UST event %s found", key
.name
);
231 return caa_container_of(node
, struct ltt_ust_event
, node
);
234 DBG2("Trace UST event %s NOT found", key
.name
);
239 * Lookup an agent in the session agents hash table by domain type and return
240 * the object if found else NULL.
242 * RCU read side lock must be acquired before calling and only released
243 * once the agent is no longer in scope or being used.
245 struct agent
*trace_ust_find_agent(struct ltt_ust_session
*session
,
246 enum lttng_domain_type domain_type
)
248 struct agent
*agt
= NULL
;
249 struct lttng_ht_node_u64
*node
;
250 struct lttng_ht_iter iter
;
255 DBG3("Trace ust agent lookup for domain %d", domain_type
);
259 lttng_ht_lookup(session
->agents
, &key
, &iter
);
260 node
= lttng_ht_iter_get_node_u64(&iter
);
264 agt
= caa_container_of(node
, struct agent
, node
);
271 * Allocate and initialize a ust session data structure.
273 * Return pointer to structure or NULL.
275 struct ltt_ust_session
*trace_ust_create_session(uint64_t session_id
)
277 struct ltt_ust_session
*lus
;
279 /* Allocate a new ltt ust session */
280 lus
= zmalloc(sizeof(struct ltt_ust_session
));
282 PERROR("create ust session zmalloc");
286 /* Init data structure */
287 lus
->id
= session_id
;
290 /* Set default metadata channel attribute. */
291 lus
->metadata_attr
.overwrite
= DEFAULT_CHANNEL_OVERWRITE
;
292 lus
->metadata_attr
.subbuf_size
= default_get_metadata_subbuf_size();
293 lus
->metadata_attr
.num_subbuf
= DEFAULT_METADATA_SUBBUF_NUM
;
294 lus
->metadata_attr
.switch_timer_interval
= DEFAULT_METADATA_SWITCH_TIMER
;
295 lus
->metadata_attr
.read_timer_interval
= DEFAULT_METADATA_READ_TIMER
;
296 lus
->metadata_attr
.output
= LTTNG_UST_MMAP
;
299 * Default buffer type. This can be changed through an enable channel
300 * requesting a different type. Note that this can only be changed once
301 * during the session lifetime which is at the first enable channel and
302 * only before start. The flag buffer_type_changed indicates the status.
304 lus
->buffer_type
= LTTNG_BUFFER_PER_UID
;
305 /* Once set to 1, the buffer_type is immutable for the session. */
306 lus
->buffer_type_changed
= 0;
307 /* Init it in case it get used after allocation. */
308 CDS_INIT_LIST_HEAD(&lus
->buffer_reg_uid_list
);
310 /* Alloc UST global domain channels' HT */
311 lus
->domain_global
.channels
= lttng_ht_new(0, LTTNG_HT_TYPE_STRING
);
312 /* Alloc agent hash table. */
313 lus
->agents
= lttng_ht_new(0, LTTNG_HT_TYPE_U64
);
315 lus
->consumer
= consumer_create_output(CONSUMER_DST_LOCAL
);
316 if (lus
->consumer
== NULL
) {
320 DBG2("UST trace session create successful");
325 ht_cleanup_push(lus
->domain_global
.channels
);
326 ht_cleanup_push(lus
->agents
);
333 * Allocate and initialize a ust channel data structure.
335 * Return pointer to structure or NULL.
337 struct ltt_ust_channel
*trace_ust_create_channel(struct lttng_channel
*chan
,
338 enum lttng_domain_type domain
)
340 struct ltt_ust_channel
*luc
;
344 luc
= zmalloc(sizeof(struct ltt_ust_channel
));
346 PERROR("ltt_ust_channel zmalloc");
350 luc
->domain
= domain
;
352 /* Copy UST channel attributes */
353 luc
->attr
.overwrite
= chan
->attr
.overwrite
;
354 luc
->attr
.subbuf_size
= chan
->attr
.subbuf_size
;
355 luc
->attr
.num_subbuf
= chan
->attr
.num_subbuf
;
356 luc
->attr
.switch_timer_interval
= chan
->attr
.switch_timer_interval
;
357 luc
->attr
.read_timer_interval
= chan
->attr
.read_timer_interval
;
358 luc
->attr
.output
= (enum lttng_ust_output
) chan
->attr
.output
;
359 luc
->monitor_timer_interval
= ((struct lttng_channel_extended
*)
360 chan
->attr
.extended
.ptr
)->monitor_timer_interval
;
361 luc
->attr
.u
.s
.blocking_timeout
= ((struct lttng_channel_extended
*)
362 chan
->attr
.extended
.ptr
)->blocking_timeout
;
364 /* Translate to UST output enum */
365 switch (luc
->attr
.output
) {
367 luc
->attr
.output
= LTTNG_UST_MMAP
;
372 * If we receive an empty string for channel name, it means the
373 * default channel name is requested.
375 if (chan
->name
[0] == '\0') {
376 strncpy(luc
->name
, DEFAULT_CHANNEL_NAME
, sizeof(luc
->name
));
378 /* Copy channel name */
379 strncpy(luc
->name
, chan
->name
, sizeof(luc
->name
));
381 luc
->name
[LTTNG_UST_SYM_NAME_LEN
- 1] = '\0';
384 lttng_ht_node_init_str(&luc
->node
, luc
->name
);
385 CDS_INIT_LIST_HEAD(&luc
->ctx_list
);
387 /* Alloc hash tables */
388 luc
->events
= lttng_ht_new(0, LTTNG_HT_TYPE_STRING
);
389 luc
->ctx
= lttng_ht_new(0, LTTNG_HT_TYPE_ULONG
);
391 /* On-disk circular buffer parameters */
392 luc
->tracefile_size
= chan
->attr
.tracefile_size
;
393 luc
->tracefile_count
= chan
->attr
.tracefile_count
;
395 DBG2("Trace UST channel %s created", luc
->name
);
402 * Validates an exclusion list.
404 * Returns 0 if valid, negative value if invalid.
406 static int validate_exclusion(struct lttng_event_exclusion
*exclusion
)
413 for (i
= 0; i
< exclusion
->count
; ++i
) {
416 LTTNG_EVENT_EXCLUSION_NAME_AT(exclusion
, i
);
418 for (j
= 0; j
< i
; ++j
) {
420 LTTNG_EVENT_EXCLUSION_NAME_AT(exclusion
, j
);
422 if (!strncmp(name_a
, name_b
, LTTNG_SYMBOL_NAME_LEN
)) {
435 * Allocate and initialize a ust event. Set name and event type.
436 * We own filter_expression, filter, and exclusion.
438 * Return an lttng_error_code
440 enum lttng_error_code
trace_ust_create_event(struct lttng_event
*ev
,
441 char *filter_expression
,
442 struct lttng_filter_bytecode
*filter
,
443 struct lttng_event_exclusion
*exclusion
,
445 struct ltt_ust_event
**ust_event
)
447 struct ltt_ust_event
*local_ust_event
;
448 enum lttng_error_code ret
= LTTNG_OK
;
452 if (exclusion
&& validate_exclusion(exclusion
)) {
453 ret
= LTTNG_ERR_INVALID
;
457 local_ust_event
= zmalloc(sizeof(struct ltt_ust_event
));
458 if (local_ust_event
== NULL
) {
459 PERROR("ust event zmalloc");
460 ret
= LTTNG_ERR_NOMEM
;
464 local_ust_event
->internal
= internal_event
;
467 case LTTNG_EVENT_PROBE
:
468 local_ust_event
->attr
.instrumentation
= LTTNG_UST_PROBE
;
470 case LTTNG_EVENT_FUNCTION
:
471 local_ust_event
->attr
.instrumentation
= LTTNG_UST_FUNCTION
;
473 case LTTNG_EVENT_FUNCTION_ENTRY
:
474 local_ust_event
->attr
.instrumentation
= LTTNG_UST_FUNCTION
;
476 case LTTNG_EVENT_TRACEPOINT
:
477 local_ust_event
->attr
.instrumentation
= LTTNG_UST_TRACEPOINT
;
480 ERR("Unknown ust instrumentation type (%d)", ev
->type
);
481 ret
= LTTNG_ERR_INVALID
;
482 goto error_free_event
;
485 /* Copy event name */
486 strncpy(local_ust_event
->attr
.name
, ev
->name
, LTTNG_UST_SYM_NAME_LEN
);
487 local_ust_event
->attr
.name
[LTTNG_UST_SYM_NAME_LEN
- 1] = '\0';
489 switch (ev
->loglevel_type
) {
490 case LTTNG_EVENT_LOGLEVEL_ALL
:
491 local_ust_event
->attr
.loglevel_type
= LTTNG_UST_LOGLEVEL_ALL
;
492 local_ust_event
->attr
.loglevel
= -1; /* Force to -1 */
494 case LTTNG_EVENT_LOGLEVEL_RANGE
:
495 local_ust_event
->attr
.loglevel_type
= LTTNG_UST_LOGLEVEL_RANGE
;
496 local_ust_event
->attr
.loglevel
= ev
->loglevel
;
498 case LTTNG_EVENT_LOGLEVEL_SINGLE
:
499 local_ust_event
->attr
.loglevel_type
= LTTNG_UST_LOGLEVEL_SINGLE
;
500 local_ust_event
->attr
.loglevel
= ev
->loglevel
;
503 ERR("Unknown ust loglevel type (%d)", ev
->loglevel_type
);
504 ret
= LTTNG_ERR_INVALID
;
505 goto error_free_event
;
509 local_ust_event
->filter_expression
= filter_expression
;
510 local_ust_event
->filter
= filter
;
511 local_ust_event
->exclusion
= exclusion
;
514 lttng_ht_node_init_str(&local_ust_event
->node
, local_ust_event
->attr
.name
);
516 DBG2("Trace UST event %s, loglevel (%d,%d) created",
517 local_ust_event
->attr
.name
, local_ust_event
->attr
.loglevel_type
,
518 local_ust_event
->attr
.loglevel
);
520 *ust_event
= local_ust_event
;
525 free(local_ust_event
);
527 free(filter_expression
);
534 int trace_ust_context_type_event_to_ust(
535 enum lttng_event_context_type type
)
540 case LTTNG_EVENT_CONTEXT_VTID
:
541 utype
= LTTNG_UST_CONTEXT_VTID
;
543 case LTTNG_EVENT_CONTEXT_VPID
:
544 utype
= LTTNG_UST_CONTEXT_VPID
;
546 case LTTNG_EVENT_CONTEXT_PTHREAD_ID
:
547 utype
= LTTNG_UST_CONTEXT_PTHREAD_ID
;
549 case LTTNG_EVENT_CONTEXT_PROCNAME
:
550 utype
= LTTNG_UST_CONTEXT_PROCNAME
;
552 case LTTNG_EVENT_CONTEXT_IP
:
553 utype
= LTTNG_UST_CONTEXT_IP
;
555 case LTTNG_EVENT_CONTEXT_PERF_THREAD_COUNTER
:
556 if (!ustctl_has_perf_counters()) {
558 WARN("Perf counters not implemented in UST");
560 utype
= LTTNG_UST_CONTEXT_PERF_THREAD_COUNTER
;
563 case LTTNG_EVENT_CONTEXT_APP_CONTEXT
:
564 utype
= LTTNG_UST_CONTEXT_APP_CONTEXT
;
574 * Return 1 if contexts match, 0 otherwise.
576 int trace_ust_match_context(struct ltt_ust_context
*uctx
,
577 struct lttng_event_context
*ctx
)
581 utype
= trace_ust_context_type_event_to_ust(ctx
->ctx
);
585 if (uctx
->ctx
.ctx
!= utype
) {
589 case LTTNG_UST_CONTEXT_PERF_THREAD_COUNTER
:
590 if (uctx
->ctx
.u
.perf_counter
.type
591 != ctx
->u
.perf_counter
.type
) {
594 if (uctx
->ctx
.u
.perf_counter
.config
595 != ctx
->u
.perf_counter
.config
) {
598 if (strncmp(uctx
->ctx
.u
.perf_counter
.name
,
599 ctx
->u
.perf_counter
.name
,
600 LTTNG_UST_SYM_NAME_LEN
)) {
604 case LTTNG_UST_CONTEXT_APP_CONTEXT
:
605 assert(uctx
->ctx
.u
.app_ctx
.provider_name
);
606 assert(uctx
->ctx
.u
.app_ctx
.ctx_name
);
607 if (strcmp(uctx
->ctx
.u
.app_ctx
.provider_name
,
608 ctx
->u
.app_ctx
.provider_name
) ||
609 strcmp(uctx
->ctx
.u
.app_ctx
.ctx_name
,
610 ctx
->u
.app_ctx
.ctx_name
)) {
621 * Allocate and initialize an UST context.
623 * Return pointer to structure or NULL.
625 struct ltt_ust_context
*trace_ust_create_context(
626 struct lttng_event_context
*ctx
)
628 struct ltt_ust_context
*uctx
= NULL
;
633 utype
= trace_ust_context_type_event_to_ust(ctx
->ctx
);
635 ERR("Invalid UST context");
639 uctx
= zmalloc(sizeof(struct ltt_ust_context
));
641 PERROR("zmalloc ltt_ust_context");
645 uctx
->ctx
.ctx
= (enum lttng_ust_context_type
) utype
;
647 case LTTNG_UST_CONTEXT_PERF_THREAD_COUNTER
:
648 uctx
->ctx
.u
.perf_counter
.type
= ctx
->u
.perf_counter
.type
;
649 uctx
->ctx
.u
.perf_counter
.config
= ctx
->u
.perf_counter
.config
;
650 strncpy(uctx
->ctx
.u
.perf_counter
.name
, ctx
->u
.perf_counter
.name
,
651 LTTNG_UST_SYM_NAME_LEN
);
652 uctx
->ctx
.u
.perf_counter
.name
[LTTNG_UST_SYM_NAME_LEN
- 1] = '\0';
654 case LTTNG_UST_CONTEXT_APP_CONTEXT
:
656 char *provider_name
= NULL
, *ctx_name
= NULL
;
658 provider_name
= strdup(ctx
->u
.app_ctx
.provider_name
);
659 if (!provider_name
) {
662 uctx
->ctx
.u
.app_ctx
.provider_name
= provider_name
;
664 ctx_name
= strdup(ctx
->u
.app_ctx
.ctx_name
);
668 uctx
->ctx
.u
.app_ctx
.ctx_name
= ctx_name
;
674 lttng_ht_node_init_ulong(&uctx
->node
, (unsigned long) uctx
->ctx
.ctx
);
678 trace_ust_destroy_context(uctx
);
683 void destroy_pid_tracker_node_rcu(struct rcu_head
*head
)
685 struct ust_pid_tracker_node
*tracker_node
=
686 caa_container_of(head
, struct ust_pid_tracker_node
, node
.head
);
691 void destroy_pid_tracker_node(struct ust_pid_tracker_node
*tracker_node
)
694 call_rcu(&tracker_node
->node
.head
, destroy_pid_tracker_node_rcu
);
698 int init_pid_tracker(struct ust_pid_tracker
*pid_tracker
)
702 pid_tracker
->ht
= lttng_ht_new(0, LTTNG_HT_TYPE_ULONG
);
703 if (!pid_tracker
->ht
) {
713 * Teardown pid tracker content, but don't free pid_tracker object.
716 void fini_pid_tracker(struct ust_pid_tracker
*pid_tracker
)
718 struct ust_pid_tracker_node
*tracker_node
;
719 struct lttng_ht_iter iter
;
721 if (!pid_tracker
->ht
) {
725 cds_lfht_for_each_entry(pid_tracker
->ht
->ht
,
726 &iter
.iter
, tracker_node
, node
.node
) {
727 int ret
= lttng_ht_del(pid_tracker
->ht
, &iter
);
730 destroy_pid_tracker_node(tracker_node
);
733 ht_cleanup_push(pid_tracker
->ht
);
734 pid_tracker
->ht
= NULL
;
738 struct ust_pid_tracker_node
*pid_tracker_lookup(
739 struct ust_pid_tracker
*pid_tracker
, int pid
,
740 struct lttng_ht_iter
*iter
)
742 unsigned long _pid
= (unsigned long) pid
;
743 struct lttng_ht_node_ulong
*node
;
745 lttng_ht_lookup(pid_tracker
->ht
, (void *) _pid
, iter
);
746 node
= lttng_ht_iter_get_node_ulong(iter
);
748 return caa_container_of(node
, struct ust_pid_tracker_node
,
756 int pid_tracker_add_pid(struct ust_pid_tracker
*pid_tracker
, int pid
)
758 int retval
= LTTNG_OK
;
759 struct ust_pid_tracker_node
*tracker_node
;
760 struct lttng_ht_iter iter
;
763 retval
= LTTNG_ERR_INVALID
;
766 tracker_node
= pid_tracker_lookup(pid_tracker
, pid
, &iter
);
768 /* Already exists. */
769 retval
= LTTNG_ERR_PID_TRACKED
;
772 tracker_node
= zmalloc(sizeof(*tracker_node
));
774 retval
= LTTNG_ERR_NOMEM
;
777 lttng_ht_node_init_ulong(&tracker_node
->node
, (unsigned long) pid
);
778 lttng_ht_add_unique_ulong(pid_tracker
->ht
, &tracker_node
->node
);
784 int pid_tracker_del_pid(struct ust_pid_tracker
*pid_tracker
, int pid
)
786 int retval
= LTTNG_OK
, ret
;
787 struct ust_pid_tracker_node
*tracker_node
;
788 struct lttng_ht_iter iter
;
791 retval
= LTTNG_ERR_INVALID
;
794 tracker_node
= pid_tracker_lookup(pid_tracker
, pid
, &iter
);
797 retval
= LTTNG_ERR_PID_NOT_TRACKED
;
800 ret
= lttng_ht_del(pid_tracker
->ht
, &iter
);
803 destroy_pid_tracker_node(tracker_node
);
809 * The session lock is held when calling this function.
811 int trace_ust_pid_tracker_lookup(struct ltt_ust_session
*session
, int pid
)
813 struct lttng_ht_iter iter
;
815 if (!session
->pid_tracker
.ht
) {
818 if (pid_tracker_lookup(&session
->pid_tracker
, pid
, &iter
)) {
825 * Called with the session lock held.
827 int trace_ust_track_pid(struct ltt_ust_session
*session
, int pid
)
829 int retval
= LTTNG_OK
;
832 /* Track all pids: destroy tracker if exists. */
833 if (session
->pid_tracker
.ht
) {
834 fini_pid_tracker(&session
->pid_tracker
);
835 /* Ensure all apps have session. */
836 ust_app_global_update_all(session
);
841 if (!session
->pid_tracker
.ht
) {
842 /* Create tracker. */
843 if (init_pid_tracker(&session
->pid_tracker
)) {
844 ERR("Error initializing PID tracker");
845 retval
= LTTNG_ERR_NOMEM
;
848 ret
= pid_tracker_add_pid(&session
->pid_tracker
, pid
);
849 if (ret
!= LTTNG_OK
) {
851 fini_pid_tracker(&session
->pid_tracker
);
854 /* Remove all apps from session except pid. */
855 ust_app_global_update_all(session
);
859 ret
= pid_tracker_add_pid(&session
->pid_tracker
, pid
);
860 if (ret
!= LTTNG_OK
) {
864 /* Add session to application */
865 app
= ust_app_find_by_pid(pid
);
867 ust_app_global_update(session
, app
);
876 * Called with the session lock held.
878 int trace_ust_untrack_pid(struct ltt_ust_session
*session
, int pid
)
880 int retval
= LTTNG_OK
;
883 /* Create empty tracker, replace old tracker. */
884 struct ust_pid_tracker tmp_tracker
;
886 tmp_tracker
= session
->pid_tracker
;
887 if (init_pid_tracker(&session
->pid_tracker
)) {
888 ERR("Error initializing PID tracker");
889 retval
= LTTNG_ERR_NOMEM
;
890 /* Rollback operation. */
891 session
->pid_tracker
= tmp_tracker
;
894 fini_pid_tracker(&tmp_tracker
);
896 /* Remove session from all applications */
897 ust_app_global_update_all(session
);
902 if (!session
->pid_tracker
.ht
) {
903 /* No PID being tracked. */
904 retval
= LTTNG_ERR_PID_NOT_TRACKED
;
907 /* Remove PID from tracker */
908 ret
= pid_tracker_del_pid(&session
->pid_tracker
, pid
);
909 if (ret
!= LTTNG_OK
) {
913 /* Remove session from application. */
914 app
= ust_app_find_by_pid(pid
);
916 ust_app_global_update(session
, app
);
924 * Called with session lock held.
926 ssize_t
trace_ust_list_tracker_pids(struct ltt_ust_session
*session
,
929 struct ust_pid_tracker_node
*tracker_node
;
930 struct lttng_ht_iter iter
;
931 unsigned long count
, i
= 0;
936 if (!session
->pid_tracker
.ht
) {
937 /* Tracker disabled. Set first entry to -1. */
938 pids
= zmalloc(sizeof(*pids
));
949 cds_lfht_count_nodes(session
->pid_tracker
.ht
->ht
,
950 &approx
[0], &count
, &approx
[1]);
951 pids
= zmalloc(sizeof(*pids
) * count
);
956 cds_lfht_for_each_entry(session
->pid_tracker
.ht
->ht
,
957 &iter
.iter
, tracker_node
, node
.node
) {
958 pids
[i
++] = tracker_node
->node
.key
;
968 * RCU safe free context structure.
970 static void destroy_context_rcu(struct rcu_head
*head
)
972 struct lttng_ht_node_ulong
*node
=
973 caa_container_of(head
, struct lttng_ht_node_ulong
, head
);
974 struct ltt_ust_context
*ctx
=
975 caa_container_of(node
, struct ltt_ust_context
, node
);
977 trace_ust_destroy_context(ctx
);
981 * Cleanup UST context hash table.
983 static void destroy_contexts(struct lttng_ht
*ht
)
986 struct lttng_ht_node_ulong
*node
;
987 struct lttng_ht_iter iter
;
988 struct ltt_ust_context
*ctx
;
993 cds_lfht_for_each_entry(ht
->ht
, &iter
.iter
, node
, node
) {
994 /* Remove from ordered list. */
995 ctx
= caa_container_of(node
, struct ltt_ust_context
, node
);
996 cds_list_del(&ctx
->list
);
997 /* Remove from channel's hash table. */
998 ret
= lttng_ht_del(ht
, &iter
);
1000 call_rcu(&node
->head
, destroy_context_rcu
);
1005 ht_cleanup_push(ht
);
1009 * Cleanup ust event structure.
1011 void trace_ust_destroy_event(struct ltt_ust_event
*event
)
1015 DBG2("Trace destroy UST event %s", event
->attr
.name
);
1016 free(event
->filter_expression
);
1017 free(event
->filter
);
1018 free(event
->exclusion
);
1023 * Cleanup ust context structure.
1025 void trace_ust_destroy_context(struct ltt_ust_context
*ctx
)
1029 if (ctx
->ctx
.ctx
== LTTNG_UST_CONTEXT_APP_CONTEXT
) {
1030 free(ctx
->ctx
.u
.app_ctx
.provider_name
);
1031 free(ctx
->ctx
.u
.app_ctx
.ctx_name
);
1037 * URCU intermediate call to complete destroy event.
1039 static void destroy_event_rcu(struct rcu_head
*head
)
1041 struct lttng_ht_node_str
*node
=
1042 caa_container_of(head
, struct lttng_ht_node_str
, head
);
1043 struct ltt_ust_event
*event
=
1044 caa_container_of(node
, struct ltt_ust_event
, node
);
1046 trace_ust_destroy_event(event
);
1050 * Cleanup UST events hashtable.
1052 static void destroy_events(struct lttng_ht
*events
)
1055 struct lttng_ht_node_str
*node
;
1056 struct lttng_ht_iter iter
;
1061 cds_lfht_for_each_entry(events
->ht
, &iter
.iter
, node
, node
) {
1062 ret
= lttng_ht_del(events
, &iter
);
1064 call_rcu(&node
->head
, destroy_event_rcu
);
1068 ht_cleanup_push(events
);
1072 * Cleanup ust channel structure.
1074 * Should _NOT_ be called with RCU read lock held.
1076 static void _trace_ust_destroy_channel(struct ltt_ust_channel
*channel
)
1080 DBG2("Trace destroy UST channel %s", channel
->name
);
1086 * URCU intermediate call to complete destroy channel.
1088 static void destroy_channel_rcu(struct rcu_head
*head
)
1090 struct lttng_ht_node_str
*node
=
1091 caa_container_of(head
, struct lttng_ht_node_str
, head
);
1092 struct ltt_ust_channel
*channel
=
1093 caa_container_of(node
, struct ltt_ust_channel
, node
);
1095 _trace_ust_destroy_channel(channel
);
1098 void trace_ust_destroy_channel(struct ltt_ust_channel
*channel
)
1100 /* Destroying all events of the channel */
1101 destroy_events(channel
->events
);
1102 /* Destroying all context of the channel */
1103 destroy_contexts(channel
->ctx
);
1105 call_rcu(&channel
->node
.head
, destroy_channel_rcu
);
1109 * Remove an UST channel from a channel HT.
1111 void trace_ust_delete_channel(struct lttng_ht
*ht
,
1112 struct ltt_ust_channel
*channel
)
1115 struct lttng_ht_iter iter
;
1120 iter
.iter
.node
= &channel
->node
.node
;
1121 ret
= lttng_ht_del(ht
, &iter
);
1126 * Iterate over a hash table containing channels and cleanup safely.
1128 static void destroy_channels(struct lttng_ht
*channels
)
1130 struct lttng_ht_node_str
*node
;
1131 struct lttng_ht_iter iter
;
1136 cds_lfht_for_each_entry(channels
->ht
, &iter
.iter
, node
, node
) {
1137 struct ltt_ust_channel
*chan
=
1138 caa_container_of(node
, struct ltt_ust_channel
, node
);
1140 trace_ust_delete_channel(channels
, chan
);
1141 trace_ust_destroy_channel(chan
);
1145 ht_cleanup_push(channels
);
1149 * Cleanup UST global domain.
1151 static void destroy_domain_global(struct ltt_ust_domain_global
*dom
)
1155 destroy_channels(dom
->channels
);
1159 * Cleanup ust session structure
1161 * Should *NOT* be called with RCU read-side lock held.
1163 void trace_ust_destroy_session(struct ltt_ust_session
*session
)
1166 struct buffer_reg_uid
*reg
, *sreg
;
1167 struct lttng_ht_iter iter
;
1171 DBG2("Trace UST destroy session %" PRIu64
, session
->id
);
1173 /* Cleaning up UST domain */
1174 destroy_domain_global(&session
->domain_global
);
1177 cds_lfht_for_each_entry(session
->agents
->ht
, &iter
.iter
, agt
, node
.node
) {
1178 int ret
= lttng_ht_del(session
->agents
, &iter
);
1185 ht_cleanup_push(session
->agents
);
1187 /* Cleanup UID buffer registry object(s). */
1188 cds_list_for_each_entry_safe(reg
, sreg
, &session
->buffer_reg_uid_list
,
1190 cds_list_del(®
->lnode
);
1191 buffer_reg_uid_remove(reg
);
1192 buffer_reg_uid_destroy(reg
, session
->consumer
);
1195 consumer_output_put(session
->consumer
);
1197 fini_pid_tracker(&session
->pid_tracker
);