2 * SPDX-License-Identifier: LGPL-2.1-only
4 * Copyright 2010-2012 (C) Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
6 * Holds LTTng probes registry.
12 #include <urcu/list.h>
13 #include <urcu/hlist.h>
14 #include <lttng/ust-events.h>
15 #include <lttng/tracepoint.h>
16 #include "tracepoint-internal.h"
18 #include <ust-helper.h>
21 #include "lttng-tracer-core.h"
24 #include "ust-events-internal.h"
27 * probe list is protected by ust_lock()/ust_unlock().
29 static CDS_LIST_HEAD(_probe_list
);
32 * List of probes registered by not yet processed.
34 static CDS_LIST_HEAD(lazy_probe_init
);
37 * lazy_nesting counter ensures we don't trigger lazy probe registration
38 * fixup while we are performing the fixup. It is protected by the ust
41 static int lazy_nesting
;
44 * Validate that each event within the probe provider refers to the
45 * right probe, and that the resulting name is not too long.
48 bool check_event_provider(const struct lttng_ust_probe_desc
*probe_desc
)
52 for (i
= 0; i
< probe_desc
->nr_events
; i
++) {
53 const struct lttng_ust_event_desc
*event_desc
= probe_desc
->event_desc
[i
];
55 if (event_desc
->probe_desc
!= probe_desc
) {
56 ERR("Error registering probe provider '%s'. Event '%s:%s' refers to the wrong provider descriptor.",
57 probe_desc
->provider_name
, probe_desc
->provider_name
, event_desc
->event_name
);
58 return false; /* provider mismatch */
60 if (!lttng_ust_validate_event_name(event_desc
)) {
61 ERR("Error registering probe provider '%s'. Event '%s:%s' name is too long.",
62 probe_desc
->provider_name
, probe_desc
->provider_name
, event_desc
->event_name
);
63 return false; /* provider mismatch */
70 * Called under ust lock.
73 void lttng_lazy_probe_register(struct lttng_ust_registered_probe
*reg_probe
)
75 struct lttng_ust_registered_probe
*iter
;
76 struct cds_list_head
*probe_list
;
79 * The provider ensures there are no duplicate event names.
80 * Duplicated TRACEPOINT_EVENT event names would generate a
81 * compile-time error due to duplicated symbol names.
85 * We sort the providers by struct lttng_ust_probe_desc pointer
88 probe_list
= &_probe_list
;
89 cds_list_for_each_entry_reverse(iter
, probe_list
, head
) {
90 BUG_ON(iter
== reg_probe
); /* Should never be in the list twice */
91 if (iter
< reg_probe
) {
92 /* We belong to the location right after iter. */
93 cds_list_add(®_probe
->head
, &iter
->head
);
97 /* We should be added at the head of the list */
98 cds_list_add(®_probe
->head
, probe_list
);
100 DBG("just registered probe %s containing %u events",
101 reg_probe
->desc
->provider_name
, reg_probe
->desc
->nr_events
);
105 * Called under ust lock.
108 void fixup_lazy_probes(void)
110 struct lttng_ust_registered_probe
*iter
, *tmp
;
114 cds_list_for_each_entry_safe(iter
, tmp
,
115 &lazy_probe_init
, lazy_init_head
) {
116 lttng_lazy_probe_register(iter
);
118 cds_list_del(&iter
->lazy_init_head
);
120 ret
= lttng_fix_pending_events();
126 * Called under ust lock.
128 struct cds_list_head
*lttng_get_probe_list_head(void)
130 if (!lazy_nesting
&& !cds_list_empty(&lazy_probe_init
))
136 int check_provider_version(const struct lttng_ust_probe_desc
*desc
)
139 * Check tracepoint provider version compatibility.
141 if (desc
->major
<= LTTNG_UST_PROVIDER_MAJOR
) {
142 DBG("Provider \"%s\" accepted, version %u.%u is compatible "
143 "with LTTng UST provider version %u.%u.",
144 desc
->provider_name
, desc
->major
, desc
->minor
,
145 LTTNG_UST_PROVIDER_MAJOR
,
146 LTTNG_UST_PROVIDER_MINOR
);
147 if (desc
->major
< LTTNG_UST_PROVIDER_MAJOR
) {
148 DBG("However, some LTTng UST features might not be "
149 "available for this provider unless it is "
150 "recompiled against a more recent LTTng UST.");
152 return 1; /* accept */
154 ERR("Provider \"%s\" rejected, version %u.%u is incompatible "
155 "with LTTng UST provider version %u.%u. Please upgrade "
157 desc
->provider_name
, desc
->major
, desc
->minor
,
158 LTTNG_UST_PROVIDER_MAJOR
,
159 LTTNG_UST_PROVIDER_MINOR
);
160 return 0; /* reject */
164 struct lttng_ust_registered_probe
*lttng_ust_probe_register(const struct lttng_ust_probe_desc
*desc
)
166 struct lttng_ust_registered_probe
*reg_probe
= NULL
;
168 lttng_ust_fixup_tls();
171 * If version mismatch, don't register, but don't trigger assert
172 * on caller. The version check just prints an error.
174 if (!check_provider_version(desc
))
176 if (!check_event_provider(desc
))
181 reg_probe
= zmalloc(sizeof(struct lttng_ust_registered_probe
));
184 reg_probe
->desc
= desc
;
185 cds_list_add(®_probe
->lazy_init_head
, &lazy_probe_init
);
188 DBG("adding probe %s containing %u events to lazy registration list",
189 desc
->provider_name
, desc
->nr_events
);
191 * If there is at least one active session, we need to register
192 * the probe immediately, since we cannot delay event
193 * registration because they are needed ASAP.
195 if (lttng_session_active())
198 lttng_fix_pending_event_notifiers();
204 void lttng_ust_probe_unregister(struct lttng_ust_registered_probe
*reg_probe
)
206 lttng_ust_fixup_tls();
210 if (!check_provider_version(reg_probe
->desc
))
214 if (!reg_probe
->lazy
)
215 cds_list_del(®_probe
->head
);
217 cds_list_del(®_probe
->lazy_init_head
);
219 lttng_probe_provider_unregister_events(reg_probe
->desc
);
220 DBG("just unregistered probes of provider %s", reg_probe
->desc
->provider_name
);
225 void lttng_probes_prune_event_list(struct lttng_ust_tracepoint_list
*list
)
227 struct tp_list_entry
*list_entry
, *tmp
;
229 cds_list_for_each_entry_safe(list_entry
, tmp
, &list
->head
, head
) {
230 cds_list_del(&list_entry
->head
);
236 * called with UST lock held.
238 int lttng_probes_get_event_list(struct lttng_ust_tracepoint_list
*list
)
240 struct lttng_ust_registered_probe
*reg_probe
;
241 struct cds_list_head
*probe_list
;
244 probe_list
= lttng_get_probe_list_head();
245 CDS_INIT_LIST_HEAD(&list
->head
);
246 cds_list_for_each_entry(reg_probe
, probe_list
, head
) {
247 const struct lttng_ust_probe_desc
*probe_desc
= reg_probe
->desc
;
249 for (i
= 0; i
< probe_desc
->nr_events
; i
++) {
250 const struct lttng_ust_event_desc
*event_desc
=
251 probe_desc
->event_desc
[i
];
252 struct tp_list_entry
*list_entry
;
254 /* Skip event if name is too long. */
255 if (!lttng_ust_validate_event_name(event_desc
))
257 list_entry
= zmalloc(sizeof(*list_entry
));
260 cds_list_add(&list_entry
->head
, &list
->head
);
261 lttng_ust_format_event_name(event_desc
, list_entry
->tp
.name
);
262 if (!event_desc
->loglevel
) {
263 list_entry
->tp
.loglevel
= TRACE_DEFAULT
;
265 list_entry
->tp
.loglevel
= *(*event_desc
->loglevel
);
269 if (cds_list_empty(&list
->head
))
273 cds_list_first_entry(&list
->head
, struct tp_list_entry
, head
);
277 lttng_probes_prune_event_list(list
);
282 * Return current iteration position, advance internal iterator to next.
283 * Return NULL if end of list.
285 struct lttng_ust_abi_tracepoint_iter
*
286 lttng_ust_tracepoint_list_get_iter_next(struct lttng_ust_tracepoint_list
*list
)
288 struct tp_list_entry
*entry
;
293 if (entry
->head
.next
== &list
->head
)
296 list
->iter
= cds_list_entry(entry
->head
.next
,
297 struct tp_list_entry
, head
);
301 void lttng_probes_prune_field_list(struct lttng_ust_field_list
*list
)
303 struct tp_field_list_entry
*list_entry
, *tmp
;
305 cds_list_for_each_entry_safe(list_entry
, tmp
, &list
->head
, head
) {
306 cds_list_del(&list_entry
->head
);
312 * called with UST lock held.
314 int lttng_probes_get_field_list(struct lttng_ust_field_list
*list
)
316 struct lttng_ust_registered_probe
*reg_probe
;
317 struct cds_list_head
*probe_list
;
320 probe_list
= lttng_get_probe_list_head();
321 CDS_INIT_LIST_HEAD(&list
->head
);
322 cds_list_for_each_entry(reg_probe
, probe_list
, head
) {
323 const struct lttng_ust_probe_desc
*probe_desc
= reg_probe
->desc
;
325 for (i
= 0; i
< probe_desc
->nr_events
; i
++) {
326 const struct lttng_ust_event_desc
*event_desc
=
327 probe_desc
->event_desc
[i
];
330 if (event_desc
->nr_fields
== 0) {
331 /* Events without fields. */
332 struct tp_field_list_entry
*list_entry
;
334 /* Skip event if name is too long. */
335 if (!lttng_ust_validate_event_name(event_desc
))
337 list_entry
= zmalloc(sizeof(*list_entry
));
340 cds_list_add(&list_entry
->head
, &list
->head
);
341 lttng_ust_format_event_name(event_desc
, list_entry
->field
.event_name
);
342 list_entry
->field
.field_name
[0] = '\0';
343 list_entry
->field
.type
= LTTNG_UST_ABI_FIELD_OTHER
;
344 if (!event_desc
->loglevel
) {
345 list_entry
->field
.loglevel
= TRACE_DEFAULT
;
347 list_entry
->field
.loglevel
= *(*event_desc
->loglevel
);
349 list_entry
->field
.nowrite
= 1;
352 for (j
= 0; j
< event_desc
->nr_fields
; j
++) {
353 const struct lttng_ust_event_field
*event_field
=
354 event_desc
->fields
[j
];
355 struct tp_field_list_entry
*list_entry
;
357 /* Skip event if name is too long. */
358 if (!lttng_ust_validate_event_name(event_desc
))
360 list_entry
= zmalloc(sizeof(*list_entry
));
363 cds_list_add(&list_entry
->head
, &list
->head
);
364 lttng_ust_format_event_name(event_desc
, list_entry
->field
.event_name
);
365 strncpy(list_entry
->field
.field_name
,
367 LTTNG_UST_ABI_SYM_NAME_LEN
);
368 list_entry
->field
.field_name
[LTTNG_UST_ABI_SYM_NAME_LEN
- 1] = '\0';
369 switch (event_field
->type
->type
) {
370 case lttng_ust_type_integer
:
371 list_entry
->field
.type
= LTTNG_UST_ABI_FIELD_INTEGER
;
373 case lttng_ust_type_string
:
374 list_entry
->field
.type
= LTTNG_UST_ABI_FIELD_STRING
;
376 case lttng_ust_type_array
:
377 if (lttng_ust_get_type_array(event_field
->type
)->encoding
== lttng_ust_string_encoding_none
)
378 list_entry
->field
.type
= LTTNG_UST_ABI_FIELD_OTHER
;
380 list_entry
->field
.type
= LTTNG_UST_ABI_FIELD_STRING
;
382 case lttng_ust_type_sequence
:
383 if (lttng_ust_get_type_sequence(event_field
->type
)->encoding
== lttng_ust_string_encoding_none
)
384 list_entry
->field
.type
= LTTNG_UST_ABI_FIELD_OTHER
;
386 list_entry
->field
.type
= LTTNG_UST_ABI_FIELD_STRING
;
388 case lttng_ust_type_float
:
389 list_entry
->field
.type
= LTTNG_UST_ABI_FIELD_FLOAT
;
391 case lttng_ust_type_enum
:
392 list_entry
->field
.type
= LTTNG_UST_ABI_FIELD_ENUM
;
395 list_entry
->field
.type
= LTTNG_UST_ABI_FIELD_OTHER
;
397 if (!event_desc
->loglevel
) {
398 list_entry
->field
.loglevel
= TRACE_DEFAULT
;
400 list_entry
->field
.loglevel
= *(*event_desc
->loglevel
);
402 list_entry
->field
.nowrite
= event_field
->nowrite
;
406 if (cds_list_empty(&list
->head
))
410 cds_list_first_entry(&list
->head
,
411 struct tp_field_list_entry
, head
);
415 lttng_probes_prune_field_list(list
);
420 * Return current iteration position, advance internal iterator to next.
421 * Return NULL if end of list.
423 struct lttng_ust_abi_field_iter
*
424 lttng_ust_field_list_get_iter_next(struct lttng_ust_field_list
*list
)
426 struct tp_field_list_entry
*entry
;
431 if (entry
->head
.next
== &list
->head
)
434 list
->iter
= cds_list_entry(entry
->head
.next
,
435 struct tp_field_list_entry
, head
);
436 return &entry
->field
;