fix: redundant decl of channel_destroy (-Wredundant-decls)
[lttng-ust.git] / liblttng-ust / lttng-events.c
1 /*
2 * SPDX-License-Identifier: LGPL-2.1-only
3 *
4 * Copyright (C) 2010-2012 Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
5 *
6 * Holds LTTng per-session event registry.
7 */
8
9 #define _LGPL_SOURCE
10 #include <stdio.h>
11 #include <assert.h>
12 #include <errno.h>
13 #include <limits.h>
14 #include <pthread.h>
15 #include <sys/shm.h>
16 #include <sys/ipc.h>
17 #include <stdint.h>
18 #include <stddef.h>
19 #include <inttypes.h>
20 #include <time.h>
21 #include <stdbool.h>
22 #include <unistd.h>
23 #include <dlfcn.h>
24 #include <lttng/ust-endian.h>
25
26 #include <urcu/arch.h>
27 #include <urcu/compiler.h>
28 #include <urcu/hlist.h>
29 #include <urcu/list.h>
30 #include <urcu/uatomic.h>
31
32 #include <lttng/tracepoint.h>
33 #include <lttng/ust-events.h>
34
35 #include <usterr-signal-safe.h>
36 #include <ust-helper.h>
37 #include <lttng/ust-ctl.h>
38 #include <ust-comm.h>
39 #include <ust-fd.h>
40 #include <ust-dynamic-type.h>
41 #include <ust-context-provider.h>
42 #include "error.h"
43 #include "compat.h"
44 #include "lttng-ust-uuid.h"
45
46 #include "tracepoint-internal.h"
47 #include "string-utils.h"
48 #include "lttng-bytecode.h"
49 #include "lttng-tracer.h"
50 #include "lttng-tracer-core.h"
51 #include "lttng-ust-statedump.h"
52 #include "context-internal.h"
53 #include "ust-events-internal.h"
54 #include "wait.h"
55 #include "../libringbuffer/shm.h"
56 #include "../libringbuffer/frontend_types.h"
57 #include "../libringbuffer/frontend.h"
58 #include "../libcounter/counter.h"
59 #include "jhash.h"
60 #include <lttng/ust-abi.h>
61
62 /*
63 * All operations within this file are called by the communication
64 * thread, under ust_lock protection.
65 */
66
67 static CDS_LIST_HEAD(sessions);
68 static CDS_LIST_HEAD(event_notifier_groups);
69
70 struct cds_list_head *lttng_get_sessions(void)
71 {
72 return &sessions;
73 }
74
75 static void _lttng_event_destroy(struct lttng_ust_event_common *event);
76 static void _lttng_enum_destroy(struct lttng_enum *_enum);
77
78 static
79 void lttng_session_lazy_sync_event_enablers(struct lttng_ust_session *session);
80 static
81 void lttng_session_sync_event_enablers(struct lttng_ust_session *session);
82 static
83 void lttng_event_notifier_group_sync_enablers(
84 struct lttng_event_notifier_group *event_notifier_group);
85 static
86 void lttng_enabler_destroy(struct lttng_enabler *enabler);
87
88 bool lttng_ust_validate_event_name(const struct lttng_ust_event_desc *desc)
89 {
90 if (strlen(desc->probe_desc->provider_name) + 1 +
91 strlen(desc->event_name) >= LTTNG_UST_ABI_SYM_NAME_LEN)
92 return false;
93 return true;
94 }
95
96 void lttng_ust_format_event_name(const struct lttng_ust_event_desc *desc,
97 char *name)
98 {
99 strcpy(name, desc->probe_desc->provider_name);
100 strcat(name, ":");
101 strcat(name, desc->event_name);
102 }
103
104 /*
105 * Called with ust lock held.
106 */
107 int lttng_session_active(void)
108 {
109 struct lttng_ust_session_private *iter;
110
111 cds_list_for_each_entry(iter, &sessions, node) {
112 if (iter->pub->active)
113 return 1;
114 }
115 return 0;
116 }
117
118 static
119 int lttng_loglevel_match(int loglevel,
120 unsigned int has_loglevel,
121 enum lttng_ust_abi_loglevel_type req_type,
122 int req_loglevel)
123 {
124 if (!has_loglevel)
125 loglevel = TRACE_DEFAULT;
126 switch (req_type) {
127 case LTTNG_UST_ABI_LOGLEVEL_RANGE:
128 if (loglevel <= req_loglevel
129 || (req_loglevel == -1 && loglevel <= TRACE_DEBUG))
130 return 1;
131 else
132 return 0;
133 case LTTNG_UST_ABI_LOGLEVEL_SINGLE:
134 if (loglevel == req_loglevel
135 || (req_loglevel == -1 && loglevel <= TRACE_DEBUG))
136 return 1;
137 else
138 return 0;
139 case LTTNG_UST_ABI_LOGLEVEL_ALL:
140 default:
141 if (loglevel <= TRACE_DEBUG)
142 return 1;
143 else
144 return 0;
145 }
146 }
147
148 struct lttng_ust_session *lttng_session_create(void)
149 {
150 struct lttng_ust_session *session;
151 struct lttng_ust_session_private *session_priv;
152 int i;
153
154 session = zmalloc(sizeof(struct lttng_ust_session));
155 if (!session)
156 return NULL;
157 session->struct_size = sizeof(struct lttng_ust_session);
158 session_priv = zmalloc(sizeof(struct lttng_ust_session_private));
159 if (!session_priv) {
160 free(session);
161 return NULL;
162 }
163 session->priv = session_priv;
164 session_priv->pub = session;
165 if (lttng_context_init_all(&session->priv->ctx)) {
166 free(session_priv);
167 free(session);
168 return NULL;
169 }
170 CDS_INIT_LIST_HEAD(&session->priv->chan_head);
171 CDS_INIT_LIST_HEAD(&session->priv->events_head);
172 CDS_INIT_LIST_HEAD(&session->priv->enums_head);
173 CDS_INIT_LIST_HEAD(&session->priv->enablers_head);
174 for (i = 0; i < LTTNG_UST_EVENT_HT_SIZE; i++)
175 CDS_INIT_HLIST_HEAD(&session->priv->events_ht.table[i]);
176 for (i = 0; i < LTTNG_UST_ENUM_HT_SIZE; i++)
177 CDS_INIT_HLIST_HEAD(&session->priv->enums_ht.table[i]);
178 cds_list_add(&session->priv->node, &sessions);
179 return session;
180 }
181
182 struct lttng_counter *lttng_ust_counter_create(
183 const char *counter_transport_name,
184 size_t number_dimensions, const struct lttng_counter_dimension *dimensions)
185 {
186 struct lttng_counter_transport *counter_transport = NULL;
187 struct lttng_counter *counter = NULL;
188
189 counter_transport = lttng_counter_transport_find(counter_transport_name);
190 if (!counter_transport)
191 goto notransport;
192 counter = zmalloc(sizeof(struct lttng_counter));
193 if (!counter)
194 goto nomem;
195
196 counter->ops = &counter_transport->ops;
197 counter->transport = counter_transport;
198
199 counter->counter = counter->ops->counter_create(
200 number_dimensions, dimensions, 0,
201 -1, 0, NULL, false);
202 if (!counter->counter) {
203 goto create_error;
204 }
205
206 return counter;
207
208 create_error:
209 free(counter);
210 nomem:
211 notransport:
212 return NULL;
213 }
214
215 static
216 void lttng_ust_counter_destroy(struct lttng_counter *counter)
217 {
218 counter->ops->counter_destroy(counter->counter);
219 free(counter);
220 }
221
222 struct lttng_event_notifier_group *lttng_event_notifier_group_create(void)
223 {
224 struct lttng_event_notifier_group *event_notifier_group;
225 int i;
226
227 event_notifier_group = zmalloc(sizeof(struct lttng_event_notifier_group));
228 if (!event_notifier_group)
229 return NULL;
230
231 /* Add all contexts. */
232 if (lttng_context_init_all(&event_notifier_group->ctx)) {
233 free(event_notifier_group);
234 return NULL;
235 }
236
237 CDS_INIT_LIST_HEAD(&event_notifier_group->enablers_head);
238 CDS_INIT_LIST_HEAD(&event_notifier_group->event_notifiers_head);
239 for (i = 0; i < LTTNG_UST_EVENT_NOTIFIER_HT_SIZE; i++)
240 CDS_INIT_HLIST_HEAD(&event_notifier_group->event_notifiers_ht.table[i]);
241
242 cds_list_add(&event_notifier_group->node, &event_notifier_groups);
243
244 return event_notifier_group;
245 }
246
247 /*
248 * Only used internally at session destruction.
249 */
250 static
251 void _lttng_channel_unmap(struct lttng_ust_channel_buffer *lttng_chan)
252 {
253 struct lttng_ust_lib_ring_buffer_channel *chan;
254 struct lttng_ust_shm_handle *handle;
255
256 cds_list_del(&lttng_chan->priv->node);
257 lttng_destroy_context(lttng_chan->priv->ctx);
258 chan = lttng_chan->priv->rb_chan;
259 handle = chan->handle;
260 channel_destroy(chan, handle, 0);
261 free(lttng_chan->parent);
262 free(lttng_chan->priv);
263 free(lttng_chan);
264 }
265
266 static
267 void register_event(struct lttng_ust_event_common *event)
268 {
269 int ret;
270 struct lttng_ust_event_desc *desc;
271 char name[LTTNG_UST_ABI_SYM_NAME_LEN];
272
273 assert(event->priv->registered == 0);
274 desc = event->priv->desc;
275 lttng_ust_format_event_name(desc, name);
276 ret = lttng_ust_tp_probe_register_queue_release(name,
277 desc->probe_callback,
278 event, desc->signature);
279 WARN_ON_ONCE(ret);
280 if (!ret)
281 event->priv->registered = 1;
282 }
283
284 static
285 void unregister_event(struct lttng_ust_event_common *event)
286 {
287 int ret;
288 struct lttng_ust_event_desc *desc;
289 char name[LTTNG_UST_ABI_SYM_NAME_LEN];
290
291 assert(event->priv->registered == 1);
292 desc = event->priv->desc;
293 lttng_ust_format_event_name(desc, name);
294 ret = lttng_ust_tp_probe_unregister_queue_release(name,
295 desc->probe_callback,
296 event);
297 WARN_ON_ONCE(ret);
298 if (!ret)
299 event->priv->registered = 0;
300 }
301
302 static
303 void _lttng_event_unregister(struct lttng_ust_event_common *event)
304 {
305 if (event->priv->registered)
306 unregister_event(event);
307 }
308
309 void lttng_session_destroy(struct lttng_ust_session *session)
310 {
311 struct lttng_ust_channel_buffer_private *chan, *tmpchan;
312 struct lttng_ust_event_recorder_private *event_recorder_priv, *tmpevent_recorder_priv;
313 struct lttng_enum *_enum, *tmp_enum;
314 struct lttng_event_enabler *event_enabler, *event_tmpenabler;
315
316 CMM_ACCESS_ONCE(session->active) = 0;
317 cds_list_for_each_entry(event_recorder_priv, &session->priv->events_head, node) {
318 _lttng_event_unregister(event_recorder_priv->parent.pub);
319 }
320 lttng_ust_urcu_synchronize_rcu(); /* Wait for in-flight events to complete */
321 lttng_ust_tp_probe_prune_release_queue();
322 cds_list_for_each_entry_safe(event_enabler, event_tmpenabler,
323 &session->priv->enablers_head, node)
324 lttng_event_enabler_destroy(event_enabler);
325 cds_list_for_each_entry_safe(event_recorder_priv, tmpevent_recorder_priv,
326 &session->priv->events_head, node)
327 _lttng_event_destroy(event_recorder_priv->parent.pub);
328 cds_list_for_each_entry_safe(_enum, tmp_enum,
329 &session->priv->enums_head, node)
330 _lttng_enum_destroy(_enum);
331 cds_list_for_each_entry_safe(chan, tmpchan, &session->priv->chan_head, node)
332 _lttng_channel_unmap(chan->pub);
333 cds_list_del(&session->priv->node);
334 lttng_destroy_context(session->priv->ctx);
335 free(session->priv);
336 free(session);
337 }
338
339 void lttng_event_notifier_group_destroy(
340 struct lttng_event_notifier_group *event_notifier_group)
341 {
342 int close_ret;
343 struct lttng_event_notifier_enabler *notifier_enabler, *tmpnotifier_enabler;
344 struct lttng_ust_event_notifier_private *event_notifier_priv, *tmpevent_notifier_priv;
345
346 if (!event_notifier_group) {
347 return;
348 }
349
350 cds_list_for_each_entry(event_notifier_priv,
351 &event_notifier_group->event_notifiers_head, node)
352 _lttng_event_unregister(event_notifier_priv->parent.pub);
353
354 lttng_ust_urcu_synchronize_rcu();
355
356 cds_list_for_each_entry_safe(notifier_enabler, tmpnotifier_enabler,
357 &event_notifier_group->enablers_head, node)
358 lttng_event_notifier_enabler_destroy(notifier_enabler);
359
360 cds_list_for_each_entry_safe(event_notifier_priv, tmpevent_notifier_priv,
361 &event_notifier_group->event_notifiers_head, node)
362 _lttng_event_destroy(event_notifier_priv->parent.pub);
363
364 if (event_notifier_group->error_counter)
365 lttng_ust_counter_destroy(event_notifier_group->error_counter);
366
367 /* Close the notification fd to the listener of event_notifiers. */
368
369 lttng_ust_lock_fd_tracker();
370 close_ret = close(event_notifier_group->notification_fd);
371 if (!close_ret) {
372 lttng_ust_delete_fd_from_tracker(
373 event_notifier_group->notification_fd);
374 } else {
375 PERROR("close");
376 abort();
377 }
378 lttng_ust_unlock_fd_tracker();
379
380 cds_list_del(&event_notifier_group->node);
381
382 free(event_notifier_group);
383 }
384
385 static
386 void lttng_enabler_destroy(struct lttng_enabler *enabler)
387 {
388 struct lttng_ust_bytecode_node *filter_node, *tmp_filter_node;
389 struct lttng_ust_excluder_node *excluder_node, *tmp_excluder_node;
390
391 if (!enabler) {
392 return;
393 }
394
395 /* Destroy filter bytecode */
396 cds_list_for_each_entry_safe(filter_node, tmp_filter_node,
397 &enabler->filter_bytecode_head, node) {
398 free(filter_node);
399 }
400
401 /* Destroy excluders */
402 cds_list_for_each_entry_safe(excluder_node, tmp_excluder_node,
403 &enabler->excluder_head, node) {
404 free(excluder_node);
405 }
406 }
407
408 void lttng_event_notifier_enabler_destroy(struct lttng_event_notifier_enabler *event_notifier_enabler)
409 {
410 if (!event_notifier_enabler) {
411 return;
412 }
413
414 cds_list_del(&event_notifier_enabler->node);
415
416 lttng_enabler_destroy(lttng_event_notifier_enabler_as_enabler(event_notifier_enabler));
417
418 free(event_notifier_enabler);
419 }
420
421 static
422 int lttng_enum_create(struct lttng_ust_enum_desc *desc,
423 struct lttng_ust_session *session)
424 {
425 const char *enum_name = desc->name;
426 struct lttng_enum *_enum;
427 struct cds_hlist_head *head;
428 int ret = 0;
429 size_t name_len = strlen(enum_name);
430 uint32_t hash;
431 int notify_socket;
432
433 /* Check if this enum is already registered for this session. */
434 hash = jhash(enum_name, name_len, 0);
435 head = &session->priv->enums_ht.table[hash & (LTTNG_UST_ENUM_HT_SIZE - 1)];
436
437 _enum = lttng_ust_enum_get_from_desc(session, desc);
438 if (_enum) {
439 ret = -EEXIST;
440 goto exist;
441 }
442
443 notify_socket = lttng_get_notify_socket(session->priv->owner);
444 if (notify_socket < 0) {
445 ret = notify_socket;
446 goto socket_error;
447 }
448
449 _enum = zmalloc(sizeof(*_enum));
450 if (!_enum) {
451 ret = -ENOMEM;
452 goto cache_error;
453 }
454 _enum->session = session;
455 _enum->desc = desc;
456
457 ret = ustcomm_register_enum(notify_socket,
458 session->priv->objd,
459 enum_name,
460 desc->nr_entries,
461 desc->entries,
462 &_enum->id);
463 if (ret < 0) {
464 DBG("Error (%d) registering enumeration to sessiond", ret);
465 goto sessiond_register_error;
466 }
467 cds_list_add(&_enum->node, &session->priv->enums_head);
468 cds_hlist_add_head(&_enum->hlist, head);
469 return 0;
470
471 sessiond_register_error:
472 free(_enum);
473 cache_error:
474 socket_error:
475 exist:
476 return ret;
477 }
478
479 static
480 int lttng_create_enum_check(struct lttng_ust_type_common *type,
481 struct lttng_ust_session *session)
482 {
483 switch (type->type) {
484 case lttng_ust_type_enum:
485 {
486 struct lttng_ust_enum_desc *enum_desc;
487 int ret;
488
489 enum_desc = lttng_ust_get_type_enum(type)->desc;
490 ret = lttng_enum_create(enum_desc, session);
491 if (ret && ret != -EEXIST) {
492 DBG("Unable to create enum error: (%d)", ret);
493 return ret;
494 }
495 break;
496 }
497 case lttng_ust_type_dynamic:
498 {
499 struct lttng_ust_event_field *tag_field_generic;
500 struct lttng_ust_enum_desc *enum_desc;
501 int ret;
502
503 tag_field_generic = lttng_ust_dynamic_type_tag_field();
504 enum_desc = lttng_ust_get_type_enum(tag_field_generic->type)->desc;
505 ret = lttng_enum_create(enum_desc, session);
506 if (ret && ret != -EEXIST) {
507 DBG("Unable to create enum error: (%d)", ret);
508 return ret;
509 }
510 break;
511 }
512 default:
513 /* TODO: nested types when they become supported. */
514 break;
515 }
516 return 0;
517 }
518
519 static
520 int lttng_create_all_event_enums(size_t nr_fields,
521 struct lttng_ust_event_field **event_fields,
522 struct lttng_ust_session *session)
523 {
524 size_t i;
525 int ret;
526
527 /* For each field, ensure enum is part of the session. */
528 for (i = 0; i < nr_fields; i++) {
529 struct lttng_ust_type_common *type = event_fields[i]->type;
530
531 ret = lttng_create_enum_check(type, session);
532 if (ret)
533 return ret;
534 }
535 return 0;
536 }
537
538 static
539 int lttng_create_all_ctx_enums(size_t nr_fields,
540 struct lttng_ust_ctx_field **ctx_fields,
541 struct lttng_ust_session *session)
542 {
543 size_t i;
544 int ret;
545
546 /* For each field, ensure enum is part of the session. */
547 for (i = 0; i < nr_fields; i++) {
548 struct lttng_ust_type_common *type = ctx_fields[i]->event_field->type;
549
550 ret = lttng_create_enum_check(type, session);
551 if (ret)
552 return ret;
553 }
554 return 0;
555 }
556
557 /*
558 * Ensure that a state-dump will be performed for this session at the end
559 * of the current handle_message().
560 */
561 int lttng_session_statedump(struct lttng_ust_session *session)
562 {
563 session->priv->statedump_pending = 1;
564 lttng_ust_sockinfo_session_enabled(session->priv->owner);
565 return 0;
566 }
567
568 int lttng_session_enable(struct lttng_ust_session *session)
569 {
570 int ret = 0;
571 struct lttng_ust_channel_buffer_private *chan;
572 int notify_socket;
573
574 if (session->active) {
575 ret = -EBUSY;
576 goto end;
577 }
578
579 notify_socket = lttng_get_notify_socket(session->priv->owner);
580 if (notify_socket < 0)
581 return notify_socket;
582
583 /* Set transient enabler state to "enabled" */
584 session->priv->tstate = 1;
585
586 /* We need to sync enablers with session before activation. */
587 lttng_session_sync_event_enablers(session);
588
589 /*
590 * Snapshot the number of events per channel to know the type of header
591 * we need to use.
592 */
593 cds_list_for_each_entry(chan, &session->priv->chan_head, node) {
594 struct lttng_ust_ctx *ctx;
595 struct lttng_ust_ctx_field **fields = NULL;
596 size_t nr_fields = 0;
597 uint32_t chan_id;
598
599 /* don't change it if session stop/restart */
600 if (chan->header_type)
601 continue;
602 ctx = chan->ctx;
603 if (ctx) {
604 nr_fields = ctx->nr_fields;
605 fields = ctx->fields;
606 ret = lttng_create_all_ctx_enums(nr_fields, fields,
607 session);
608 if (ret < 0) {
609 DBG("Error (%d) adding enum to session", ret);
610 return ret;
611 }
612 }
613 ret = ustcomm_register_channel(notify_socket,
614 session,
615 session->priv->objd,
616 chan->parent.objd,
617 nr_fields,
618 fields,
619 &chan_id,
620 &chan->header_type);
621 if (ret) {
622 DBG("Error (%d) registering channel to sessiond", ret);
623 return ret;
624 }
625 if (chan_id != chan->id) {
626 DBG("Error: channel registration id (%u) does not match id assigned at creation (%u)",
627 chan_id, chan->id);
628 return -EINVAL;
629 }
630 }
631
632 /* Set atomically the state to "active" */
633 CMM_ACCESS_ONCE(session->active) = 1;
634 CMM_ACCESS_ONCE(session->priv->been_active) = 1;
635
636 ret = lttng_session_statedump(session);
637 if (ret)
638 return ret;
639 end:
640 return ret;
641 }
642
643 int lttng_session_disable(struct lttng_ust_session *session)
644 {
645 int ret = 0;
646
647 if (!session->active) {
648 ret = -EBUSY;
649 goto end;
650 }
651 /* Set atomically the state to "inactive" */
652 CMM_ACCESS_ONCE(session->active) = 0;
653
654 /* Set transient enabler state to "disabled" */
655 session->priv->tstate = 0;
656 lttng_session_sync_event_enablers(session);
657 end:
658 return ret;
659 }
660
661 int lttng_channel_enable(struct lttng_ust_channel_common *lttng_channel)
662 {
663 int ret = 0;
664
665 if (lttng_channel->enabled) {
666 ret = -EBUSY;
667 goto end;
668 }
669 /* Set transient enabler state to "enabled" */
670 lttng_channel->priv->tstate = 1;
671 lttng_session_sync_event_enablers(lttng_channel->session);
672 /* Set atomically the state to "enabled" */
673 CMM_ACCESS_ONCE(lttng_channel->enabled) = 1;
674 end:
675 return ret;
676 }
677
678 int lttng_channel_disable(struct lttng_ust_channel_common *lttng_channel)
679 {
680 int ret = 0;
681
682 if (!lttng_channel->enabled) {
683 ret = -EBUSY;
684 goto end;
685 }
686 /* Set atomically the state to "disabled" */
687 CMM_ACCESS_ONCE(lttng_channel->enabled) = 0;
688 /* Set transient enabler state to "enabled" */
689 lttng_channel->priv->tstate = 0;
690 lttng_session_sync_event_enablers(lttng_channel->session);
691 end:
692 return ret;
693 }
694
695 static inline
696 struct cds_hlist_head *borrow_hash_table_bucket(
697 struct cds_hlist_head *hash_table,
698 unsigned int hash_table_size,
699 struct lttng_ust_event_desc *desc)
700 {
701 char name[LTTNG_UST_ABI_SYM_NAME_LEN];
702 size_t name_len;
703 uint32_t hash;
704
705 lttng_ust_format_event_name(desc, name);
706 name_len = strlen(name);
707
708 hash = jhash(name, name_len, 0);
709 return &hash_table[hash & (hash_table_size - 1)];
710 }
711
712 /*
713 * Supports event creation while tracing session is active.
714 */
715 static
716 int lttng_event_recorder_create(struct lttng_ust_event_desc *desc,
717 struct lttng_ust_channel_buffer *chan)
718 {
719 char name[LTTNG_UST_ABI_SYM_NAME_LEN];
720 struct lttng_ust_event_recorder *event_recorder;
721 struct lttng_ust_event_recorder_private *event_recorder_priv;
722 struct lttng_ust_session *session = chan->parent->session;
723 struct cds_hlist_head *head;
724 int ret = 0;
725 int notify_socket, loglevel;
726 const char *uri;
727
728 head = borrow_hash_table_bucket(chan->parent->session->priv->events_ht.table,
729 LTTNG_UST_EVENT_HT_SIZE, desc);
730
731 notify_socket = lttng_get_notify_socket(session->priv->owner);
732 if (notify_socket < 0) {
733 ret = notify_socket;
734 goto socket_error;
735 }
736
737 ret = lttng_create_all_event_enums(desc->nr_fields, desc->fields,
738 session);
739 if (ret < 0) {
740 DBG("Error (%d) adding enum to session", ret);
741 goto create_enum_error;
742 }
743
744 /*
745 * Check if loglevel match. Refuse to connect event if not.
746 */
747 event_recorder = zmalloc(sizeof(struct lttng_ust_event_recorder));
748 if (!event_recorder) {
749 ret = -ENOMEM;
750 goto cache_error;
751 }
752 event_recorder->struct_size = sizeof(struct lttng_ust_event_recorder);
753
754 event_recorder->parent = zmalloc(sizeof(struct lttng_ust_event_common));
755 if (!event_recorder->parent) {
756 ret = -ENOMEM;
757 goto parent_error;
758 }
759 event_recorder->parent->struct_size = sizeof(struct lttng_ust_event_common);
760 event_recorder->parent->type = LTTNG_UST_EVENT_TYPE_RECORDER;
761 event_recorder->parent->child = event_recorder;
762
763 event_recorder_priv = zmalloc(sizeof(struct lttng_ust_event_recorder_private));
764 if (!event_recorder_priv) {
765 ret = -ENOMEM;
766 goto priv_error;
767 }
768 event_recorder->priv = event_recorder_priv;
769 event_recorder_priv->pub = event_recorder;
770 event_recorder->parent->priv = &event_recorder_priv->parent;
771 event_recorder_priv->parent.pub = event_recorder->parent;
772
773 event_recorder->chan = chan;
774
775 /* Event will be enabled by enabler sync. */
776 event_recorder->parent->run_filter = lttng_ust_interpret_event_filter;
777 event_recorder->parent->enabled = 0;
778 event_recorder->parent->priv->registered = 0;
779 CDS_INIT_LIST_HEAD(&event_recorder->parent->priv->filter_bytecode_runtime_head);
780 CDS_INIT_LIST_HEAD(&event_recorder->parent->priv->enablers_ref_head);
781 event_recorder->parent->priv->desc = desc;
782
783 if (desc->loglevel)
784 loglevel = *(*event_recorder->parent->priv->desc->loglevel);
785 else
786 loglevel = TRACE_DEFAULT;
787 if (desc->model_emf_uri)
788 uri = *(desc->model_emf_uri);
789 else
790 uri = NULL;
791
792 lttng_ust_format_event_name(desc, name);
793
794 /* Fetch event ID from sessiond */
795 ret = ustcomm_register_event(notify_socket,
796 session,
797 session->priv->objd,
798 chan->priv->parent.objd,
799 name,
800 loglevel,
801 desc->signature,
802 desc->nr_fields,
803 desc->fields,
804 uri,
805 &event_recorder->priv->id);
806 if (ret < 0) {
807 DBG("Error (%d) registering event to sessiond", ret);
808 goto sessiond_register_error;
809 }
810
811 cds_list_add(&event_recorder_priv->node, &chan->parent->session->priv->events_head);
812 cds_hlist_add_head(&event_recorder_priv->hlist, head);
813 return 0;
814
815 sessiond_register_error:
816 free(event_recorder_priv);
817 priv_error:
818 free(event_recorder->parent);
819 parent_error:
820 free(event_recorder);
821 cache_error:
822 create_enum_error:
823 socket_error:
824 return ret;
825 }
826
827 static
828 int lttng_event_notifier_create(struct lttng_ust_event_desc *desc,
829 uint64_t token, uint64_t error_counter_index,
830 struct lttng_event_notifier_group *event_notifier_group)
831 {
832 struct lttng_ust_event_notifier *event_notifier;
833 struct lttng_ust_event_notifier_private *event_notifier_priv;
834 struct cds_hlist_head *head;
835 int ret = 0;
836
837 /*
838 * Get the hashtable bucket the created lttng_event_notifier object
839 * should be inserted.
840 */
841 head = borrow_hash_table_bucket(
842 event_notifier_group->event_notifiers_ht.table,
843 LTTNG_UST_EVENT_NOTIFIER_HT_SIZE, desc);
844
845 event_notifier = zmalloc(sizeof(struct lttng_ust_event_notifier));
846 if (!event_notifier) {
847 ret = -ENOMEM;
848 goto error;
849 }
850 event_notifier->struct_size = sizeof(struct lttng_ust_event_notifier);
851
852 event_notifier->parent = zmalloc(sizeof(struct lttng_ust_event_common));
853 if (!event_notifier->parent) {
854 ret = -ENOMEM;
855 goto parent_error;
856 }
857 event_notifier->parent->struct_size = sizeof(struct lttng_ust_event_common);
858 event_notifier->parent->type = LTTNG_UST_EVENT_TYPE_NOTIFIER;
859 event_notifier->parent->child = event_notifier;
860
861 event_notifier_priv = zmalloc(sizeof(struct lttng_ust_event_notifier_private));
862 if (!event_notifier_priv) {
863 ret = -ENOMEM;
864 goto priv_error;
865 }
866 event_notifier->priv = event_notifier_priv;
867 event_notifier_priv->pub = event_notifier;
868 event_notifier->parent->priv = &event_notifier_priv->parent;
869 event_notifier_priv->parent.pub = event_notifier->parent;
870
871 event_notifier_priv->group = event_notifier_group;
872 event_notifier_priv->parent.user_token = token;
873 event_notifier_priv->error_counter_index = error_counter_index;
874
875 /* Event notifier will be enabled by enabler sync. */
876 event_notifier->parent->run_filter = lttng_ust_interpret_event_filter;
877 event_notifier->parent->enabled = 0;
878 event_notifier_priv->parent.registered = 0;
879
880 CDS_INIT_LIST_HEAD(&event_notifier->parent->priv->filter_bytecode_runtime_head);
881 CDS_INIT_LIST_HEAD(&event_notifier->priv->capture_bytecode_runtime_head);
882 CDS_INIT_LIST_HEAD(&event_notifier_priv->parent.enablers_ref_head);
883 event_notifier_priv->parent.desc = desc;
884 event_notifier->notification_send = lttng_event_notifier_notification_send;
885
886 cds_list_add(&event_notifier_priv->node,
887 &event_notifier_group->event_notifiers_head);
888 cds_hlist_add_head(&event_notifier_priv->hlist, head);
889
890 return 0;
891
892 priv_error:
893 free(event_notifier->parent);
894 parent_error:
895 free(event_notifier);
896 error:
897 return ret;
898 }
899
900 static
901 int lttng_desc_match_star_glob_enabler(struct lttng_ust_event_desc *desc,
902 struct lttng_enabler *enabler)
903 {
904 char name[LTTNG_UST_ABI_SYM_NAME_LEN];
905 int loglevel = 0;
906 unsigned int has_loglevel = 0;
907
908 lttng_ust_format_event_name(desc, name);
909 assert(enabler->format_type == LTTNG_ENABLER_FORMAT_STAR_GLOB);
910 if (!strutils_star_glob_match(enabler->event_param.name, SIZE_MAX,
911 name, SIZE_MAX))
912 return 0;
913 if (desc->loglevel) {
914 loglevel = *(*desc->loglevel);
915 has_loglevel = 1;
916 }
917 if (!lttng_loglevel_match(loglevel,
918 has_loglevel,
919 enabler->event_param.loglevel_type,
920 enabler->event_param.loglevel))
921 return 0;
922 return 1;
923 }
924
925 static
926 int lttng_desc_match_event_enabler(struct lttng_ust_event_desc *desc,
927 struct lttng_enabler *enabler)
928 {
929 char name[LTTNG_UST_ABI_SYM_NAME_LEN];
930 int loglevel = 0;
931 unsigned int has_loglevel = 0;
932
933 lttng_ust_format_event_name(desc, name);
934 assert(enabler->format_type == LTTNG_ENABLER_FORMAT_EVENT);
935 if (strcmp(name, enabler->event_param.name))
936 return 0;
937 if (desc->loglevel) {
938 loglevel = *(*desc->loglevel);
939 has_loglevel = 1;
940 }
941 if (!lttng_loglevel_match(loglevel,
942 has_loglevel,
943 enabler->event_param.loglevel_type,
944 enabler->event_param.loglevel))
945 return 0;
946 return 1;
947 }
948
949 static
950 int lttng_desc_match_enabler(struct lttng_ust_event_desc *desc,
951 struct lttng_enabler *enabler)
952 {
953 switch (enabler->format_type) {
954 case LTTNG_ENABLER_FORMAT_STAR_GLOB:
955 {
956 struct lttng_ust_excluder_node *excluder;
957
958 if (!lttng_desc_match_star_glob_enabler(desc, enabler)) {
959 return 0;
960 }
961
962 /*
963 * If the matching event matches with an excluder,
964 * return 'does not match'
965 */
966 cds_list_for_each_entry(excluder, &enabler->excluder_head, node) {
967 int count;
968
969 for (count = 0; count < excluder->excluder.count; count++) {
970 int len;
971 char *excluder_name;
972
973 excluder_name = (char *) (excluder->excluder.names)
974 + count * LTTNG_UST_ABI_SYM_NAME_LEN;
975 len = strnlen(excluder_name, LTTNG_UST_ABI_SYM_NAME_LEN);
976 if (len > 0) {
977 char name[LTTNG_UST_ABI_SYM_NAME_LEN];
978
979 lttng_ust_format_event_name(desc, name);
980 if (strutils_star_glob_match(excluder_name, len, name, SIZE_MAX)) {
981 return 0;
982 }
983 }
984 }
985 }
986 return 1;
987 }
988 case LTTNG_ENABLER_FORMAT_EVENT:
989 return lttng_desc_match_event_enabler(desc, enabler);
990 default:
991 return -EINVAL;
992 }
993 }
994
995 static
996 int lttng_event_enabler_match_event(struct lttng_event_enabler *event_enabler,
997 struct lttng_ust_event_recorder *event_recorder)
998 {
999 if (lttng_desc_match_enabler(event_recorder->parent->priv->desc,
1000 lttng_event_enabler_as_enabler(event_enabler))
1001 && event_recorder->chan == event_enabler->chan)
1002 return 1;
1003 else
1004 return 0;
1005 }
1006
1007 static
1008 int lttng_event_notifier_enabler_match_event_notifier(
1009 struct lttng_event_notifier_enabler *event_notifier_enabler,
1010 struct lttng_ust_event_notifier *event_notifier)
1011 {
1012 int desc_matches = lttng_desc_match_enabler(event_notifier->priv->parent.desc,
1013 lttng_event_notifier_enabler_as_enabler(event_notifier_enabler));
1014
1015 if (desc_matches && event_notifier->priv->group == event_notifier_enabler->group &&
1016 event_notifier->priv->parent.user_token == event_notifier_enabler->user_token)
1017 return 1;
1018 else
1019 return 0;
1020 }
1021
1022 static
1023 struct lttng_enabler_ref *lttng_enabler_ref(
1024 struct cds_list_head *enabler_ref_list,
1025 struct lttng_enabler *enabler)
1026 {
1027 struct lttng_enabler_ref *enabler_ref;
1028
1029 cds_list_for_each_entry(enabler_ref, enabler_ref_list, node) {
1030 if (enabler_ref->ref == enabler)
1031 return enabler_ref;
1032 }
1033 return NULL;
1034 }
1035
1036 /*
1037 * Create struct lttng_event if it is missing and present in the list of
1038 * tracepoint probes.
1039 */
1040 static
1041 void lttng_create_event_recorder_if_missing(struct lttng_event_enabler *event_enabler)
1042 {
1043 struct lttng_ust_session *session = event_enabler->chan->parent->session;
1044 struct lttng_ust_probe_desc *probe_desc;
1045 struct lttng_ust_event_desc *desc;
1046 struct lttng_ust_event_recorder_private *event_recorder_priv;
1047 int i;
1048 struct cds_list_head *probe_list;
1049
1050 probe_list = lttng_get_probe_list_head();
1051 /*
1052 * For each probe event, if we find that a probe event matches
1053 * our enabler, create an associated lttng_event if not
1054 * already present.
1055 */
1056 cds_list_for_each_entry(probe_desc, probe_list, head) {
1057 for (i = 0; i < probe_desc->nr_events; i++) {
1058 int ret;
1059 bool found = false;
1060 struct cds_hlist_head *head;
1061 struct cds_hlist_node *node;
1062
1063 desc = probe_desc->event_desc[i];
1064 if (!lttng_desc_match_enabler(desc,
1065 lttng_event_enabler_as_enabler(event_enabler)))
1066 continue;
1067
1068 head = borrow_hash_table_bucket(
1069 session->priv->events_ht.table,
1070 LTTNG_UST_EVENT_HT_SIZE, desc);
1071
1072 cds_hlist_for_each_entry(event_recorder_priv, node, head, hlist) {
1073 if (event_recorder_priv->parent.desc == desc
1074 && event_recorder_priv->pub->chan == event_enabler->chan) {
1075 found = true;
1076 break;
1077 }
1078 }
1079 if (found)
1080 continue;
1081
1082 /*
1083 * We need to create an event for this
1084 * event probe.
1085 */
1086 ret = lttng_event_recorder_create(probe_desc->event_desc[i],
1087 event_enabler->chan);
1088 if (ret) {
1089 DBG("Unable to create event \"%s:%s\", error %d\n",
1090 probe_desc->provider_name,
1091 probe_desc->event_desc[i]->event_name, ret);
1092 }
1093 }
1094 }
1095 }
1096
1097 static
1098 void probe_provider_event_for_each(struct lttng_ust_probe_desc *provider_desc,
1099 void (*event_func)(struct lttng_ust_event_common *event))
1100 {
1101 struct cds_hlist_node *node, *tmp_node;
1102 struct cds_list_head *sessionsp;
1103 unsigned int i;
1104
1105 /* Get handle on list of sessions. */
1106 sessionsp = lttng_get_sessions();
1107
1108 /*
1109 * Iterate over all events in the probe provider descriptions and
1110 * sessions to queue the unregistration of the events.
1111 */
1112 for (i = 0; i < provider_desc->nr_events; i++) {
1113 struct lttng_ust_event_desc *event_desc;
1114 struct lttng_event_notifier_group *event_notifier_group;
1115 struct lttng_ust_event_recorder_private *event_recorder_priv;
1116 struct lttng_ust_event_notifier_private *event_notifier_priv;
1117 struct lttng_ust_session_private *session_priv;
1118 struct cds_hlist_head *head;
1119
1120 event_desc = provider_desc->event_desc[i];
1121
1122 /*
1123 * Iterate over all session to find the current event
1124 * description.
1125 */
1126 cds_list_for_each_entry(session_priv, sessionsp, node) {
1127 /*
1128 * Get the list of events in the hashtable bucket and
1129 * iterate to find the event matching this descriptor.
1130 */
1131 head = borrow_hash_table_bucket(
1132 session_priv->events_ht.table,
1133 LTTNG_UST_EVENT_HT_SIZE, event_desc);
1134
1135 cds_hlist_for_each_entry_safe(event_recorder_priv, node, tmp_node, head, hlist) {
1136 if (event_desc == event_recorder_priv->parent.desc) {
1137 event_func(event_recorder_priv->parent.pub);
1138 break;
1139 }
1140 }
1141 }
1142
1143 /*
1144 * Iterate over all event_notifier groups to find the current event
1145 * description.
1146 */
1147 cds_list_for_each_entry(event_notifier_group, &event_notifier_groups, node) {
1148 /*
1149 * Get the list of event_notifiers in the hashtable bucket and
1150 * iterate to find the event_notifier matching this
1151 * descriptor.
1152 */
1153 head = borrow_hash_table_bucket(
1154 event_notifier_group->event_notifiers_ht.table,
1155 LTTNG_UST_EVENT_NOTIFIER_HT_SIZE, event_desc);
1156
1157 cds_hlist_for_each_entry_safe(event_notifier_priv, node, tmp_node, head, hlist) {
1158 if (event_desc == event_notifier_priv->parent.desc) {
1159 event_func(event_notifier_priv->parent.pub);
1160 break;
1161 }
1162 }
1163 }
1164 }
1165 }
1166
1167 static
1168 void _event_enum_destroy(struct lttng_ust_event_common *event)
1169 {
1170
1171 switch (event->type) {
1172 case LTTNG_UST_EVENT_TYPE_RECORDER:
1173 {
1174 struct lttng_ust_event_recorder *event_recorder = event->child;
1175 struct lttng_ust_session *session = event_recorder->chan->parent->session;
1176 unsigned int i;
1177
1178 /* Destroy enums of the current event. */
1179 for (i = 0; i < event_recorder->parent->priv->desc->nr_fields; i++) {
1180 struct lttng_ust_enum_desc *enum_desc;
1181 struct lttng_ust_event_field *field;
1182 struct lttng_enum *curr_enum;
1183
1184 field = event_recorder->parent->priv->desc->fields[i];
1185 switch (field->type->type) {
1186 case lttng_ust_type_enum:
1187 enum_desc = lttng_ust_get_type_enum(field->type)->desc;
1188 break;
1189 default:
1190 continue;
1191 }
1192
1193 curr_enum = lttng_ust_enum_get_from_desc(session, enum_desc);
1194 if (curr_enum) {
1195 _lttng_enum_destroy(curr_enum);
1196 }
1197 }
1198 break;
1199 }
1200 case LTTNG_UST_EVENT_TYPE_NOTIFIER:
1201 break;
1202 default:
1203 abort();
1204 }
1205 /* Destroy event. */
1206 _lttng_event_destroy(event);
1207 }
1208
1209 /*
1210 * Iterate over all the UST sessions to unregister and destroy all probes from
1211 * the probe provider descriptor received as argument. Must me called with the
1212 * ust_lock held.
1213 */
1214 void lttng_probe_provider_unregister_events(
1215 struct lttng_ust_probe_desc *provider_desc)
1216 {
1217 /*
1218 * Iterate over all events in the probe provider descriptions and sessions
1219 * to queue the unregistration of the events.
1220 */
1221 probe_provider_event_for_each(provider_desc, _lttng_event_unregister);
1222
1223 /* Wait for grace period. */
1224 lttng_ust_urcu_synchronize_rcu();
1225 /* Prune the unregistration queue. */
1226 lttng_ust_tp_probe_prune_release_queue();
1227
1228 /*
1229 * It is now safe to destroy the events and remove them from the event list
1230 * and hashtables.
1231 */
1232 probe_provider_event_for_each(provider_desc, _event_enum_destroy);
1233 }
1234
1235 /*
1236 * Create events associated with an event enabler (if not already present),
1237 * and add backward reference from the event to the enabler.
1238 */
1239 static
1240 int lttng_event_enabler_ref_event_recorders(struct lttng_event_enabler *event_enabler)
1241 {
1242 struct lttng_ust_session *session = event_enabler->chan->parent->session;
1243 struct lttng_ust_event_recorder_private *event_recorder_priv;
1244
1245 if (!lttng_event_enabler_as_enabler(event_enabler)->enabled)
1246 goto end;
1247
1248 /* First ensure that probe events are created for this enabler. */
1249 lttng_create_event_recorder_if_missing(event_enabler);
1250
1251 /* For each event matching enabler in session event list. */
1252 cds_list_for_each_entry(event_recorder_priv, &session->priv->events_head, node) {
1253 struct lttng_enabler_ref *enabler_ref;
1254
1255 if (!lttng_event_enabler_match_event(event_enabler, event_recorder_priv->pub))
1256 continue;
1257
1258 enabler_ref = lttng_enabler_ref(&event_recorder_priv->parent.enablers_ref_head,
1259 lttng_event_enabler_as_enabler(event_enabler));
1260 if (!enabler_ref) {
1261 /*
1262 * If no backward ref, create it.
1263 * Add backward ref from event to enabler.
1264 */
1265 enabler_ref = zmalloc(sizeof(*enabler_ref));
1266 if (!enabler_ref)
1267 return -ENOMEM;
1268 enabler_ref->ref = lttng_event_enabler_as_enabler(
1269 event_enabler);
1270 cds_list_add(&enabler_ref->node,
1271 &event_recorder_priv->parent.enablers_ref_head);
1272 }
1273
1274 /*
1275 * Link filter bytecodes if not linked yet.
1276 */
1277 lttng_enabler_link_bytecode(event_recorder_priv->parent.desc,
1278 &session->priv->ctx,
1279 &event_recorder_priv->parent.filter_bytecode_runtime_head,
1280 &lttng_event_enabler_as_enabler(event_enabler)->filter_bytecode_head);
1281
1282 /* TODO: merge event context. */
1283 }
1284 end:
1285 return 0;
1286 }
1287
1288 /*
1289 * Called at library load: connect the probe on all enablers matching
1290 * this event.
1291 * Called with session mutex held.
1292 */
1293 int lttng_fix_pending_events(void)
1294 {
1295 struct lttng_ust_session_private *session_priv;
1296
1297 cds_list_for_each_entry(session_priv, &sessions, node) {
1298 lttng_session_lazy_sync_event_enablers(session_priv->pub);
1299 }
1300 return 0;
1301 }
1302
1303 int lttng_fix_pending_event_notifiers(void)
1304 {
1305 struct lttng_event_notifier_group *event_notifier_group;
1306
1307 cds_list_for_each_entry(event_notifier_group, &event_notifier_groups, node) {
1308 lttng_event_notifier_group_sync_enablers(event_notifier_group);
1309 }
1310 return 0;
1311 }
1312
1313 /*
1314 * For each session of the owner thread, execute pending statedump.
1315 * Only dump state for the sessions owned by the caller thread, because
1316 * we don't keep ust_lock across the entire iteration.
1317 */
1318 void lttng_handle_pending_statedump(void *owner)
1319 {
1320 struct lttng_ust_session_private *session_priv;
1321
1322 /* Execute state dump */
1323 do_lttng_ust_statedump(owner);
1324
1325 /* Clear pending state dump */
1326 if (ust_lock()) {
1327 goto end;
1328 }
1329 cds_list_for_each_entry(session_priv, &sessions, node) {
1330 if (session_priv->owner != owner)
1331 continue;
1332 if (!session_priv->statedump_pending)
1333 continue;
1334 session_priv->statedump_pending = 0;
1335 }
1336 end:
1337 ust_unlock();
1338 return;
1339 }
1340
1341 static
1342 void _lttng_event_destroy(struct lttng_ust_event_common *event)
1343 {
1344 struct lttng_enabler_ref *enabler_ref, *tmp_enabler_ref;
1345
1346 lttng_free_event_filter_runtime(event);
1347 /* Free event enabler refs */
1348 cds_list_for_each_entry_safe(enabler_ref, tmp_enabler_ref,
1349 &event->priv->enablers_ref_head, node)
1350 free(enabler_ref);
1351
1352 switch (event->type) {
1353 case LTTNG_UST_EVENT_TYPE_RECORDER:
1354 {
1355 struct lttng_ust_event_recorder *event_recorder = event->child;
1356
1357 /* Remove from event list. */
1358 cds_list_del(&event_recorder->priv->node);
1359 /* Remove from event hash table. */
1360 cds_hlist_del(&event_recorder->priv->hlist);
1361
1362 lttng_destroy_context(event_recorder->priv->ctx);
1363 free(event_recorder->parent);
1364 free(event_recorder->priv);
1365 free(event_recorder);
1366 break;
1367 }
1368 case LTTNG_UST_EVENT_TYPE_NOTIFIER:
1369 {
1370 struct lttng_ust_event_notifier *event_notifier = event->child;
1371
1372 /* Remove from event list. */
1373 cds_list_del(&event_notifier->priv->node);
1374 /* Remove from event hash table. */
1375 cds_hlist_del(&event_notifier->priv->hlist);
1376
1377 free(event_notifier->priv);
1378 free(event_notifier->parent);
1379 free(event_notifier);
1380 break;
1381 }
1382 default:
1383 abort();
1384 }
1385 }
1386
1387 static
1388 void _lttng_enum_destroy(struct lttng_enum *_enum)
1389 {
1390 cds_list_del(&_enum->node);
1391 cds_hlist_del(&_enum->hlist);
1392 free(_enum);
1393 }
1394
1395 void lttng_ust_abi_events_exit(void)
1396 {
1397 struct lttng_ust_session_private *session_priv, *tmpsession_priv;
1398
1399 cds_list_for_each_entry_safe(session_priv, tmpsession_priv, &sessions, node)
1400 lttng_session_destroy(session_priv->pub);
1401 }
1402
1403 /*
1404 * Enabler management.
1405 */
1406 struct lttng_event_enabler *lttng_event_enabler_create(
1407 enum lttng_enabler_format_type format_type,
1408 struct lttng_ust_abi_event *event_param,
1409 struct lttng_ust_channel_buffer *chan)
1410 {
1411 struct lttng_event_enabler *event_enabler;
1412
1413 event_enabler = zmalloc(sizeof(*event_enabler));
1414 if (!event_enabler)
1415 return NULL;
1416 event_enabler->base.format_type = format_type;
1417 CDS_INIT_LIST_HEAD(&event_enabler->base.filter_bytecode_head);
1418 CDS_INIT_LIST_HEAD(&event_enabler->base.excluder_head);
1419 memcpy(&event_enabler->base.event_param, event_param,
1420 sizeof(event_enabler->base.event_param));
1421 event_enabler->chan = chan;
1422 /* ctx left NULL */
1423 event_enabler->base.enabled = 0;
1424 cds_list_add(&event_enabler->node, &event_enabler->chan->parent->session->priv->enablers_head);
1425 lttng_session_lazy_sync_event_enablers(event_enabler->chan->parent->session);
1426
1427 return event_enabler;
1428 }
1429
1430 struct lttng_event_notifier_enabler *lttng_event_notifier_enabler_create(
1431 struct lttng_event_notifier_group *event_notifier_group,
1432 enum lttng_enabler_format_type format_type,
1433 struct lttng_ust_abi_event_notifier *event_notifier_param)
1434 {
1435 struct lttng_event_notifier_enabler *event_notifier_enabler;
1436
1437 event_notifier_enabler = zmalloc(sizeof(*event_notifier_enabler));
1438 if (!event_notifier_enabler)
1439 return NULL;
1440 event_notifier_enabler->base.format_type = format_type;
1441 CDS_INIT_LIST_HEAD(&event_notifier_enabler->base.filter_bytecode_head);
1442 CDS_INIT_LIST_HEAD(&event_notifier_enabler->capture_bytecode_head);
1443 CDS_INIT_LIST_HEAD(&event_notifier_enabler->base.excluder_head);
1444
1445 event_notifier_enabler->user_token = event_notifier_param->event.token;
1446 event_notifier_enabler->error_counter_index = event_notifier_param->error_counter_index;
1447 event_notifier_enabler->num_captures = 0;
1448
1449 memcpy(&event_notifier_enabler->base.event_param.name,
1450 event_notifier_param->event.name,
1451 sizeof(event_notifier_enabler->base.event_param.name));
1452 event_notifier_enabler->base.event_param.instrumentation =
1453 event_notifier_param->event.instrumentation;
1454 event_notifier_enabler->base.event_param.loglevel =
1455 event_notifier_param->event.loglevel;
1456 event_notifier_enabler->base.event_param.loglevel_type =
1457 event_notifier_param->event.loglevel_type;
1458
1459 event_notifier_enabler->base.enabled = 0;
1460 event_notifier_enabler->group = event_notifier_group;
1461
1462 cds_list_add(&event_notifier_enabler->node,
1463 &event_notifier_group->enablers_head);
1464
1465 lttng_event_notifier_group_sync_enablers(event_notifier_group);
1466
1467 return event_notifier_enabler;
1468 }
1469
1470 int lttng_event_enabler_enable(struct lttng_event_enabler *event_enabler)
1471 {
1472 lttng_event_enabler_as_enabler(event_enabler)->enabled = 1;
1473 lttng_session_lazy_sync_event_enablers(event_enabler->chan->parent->session);
1474
1475 return 0;
1476 }
1477
1478 int lttng_event_enabler_disable(struct lttng_event_enabler *event_enabler)
1479 {
1480 lttng_event_enabler_as_enabler(event_enabler)->enabled = 0;
1481 lttng_session_lazy_sync_event_enablers(event_enabler->chan->parent->session);
1482
1483 return 0;
1484 }
1485
1486 static
1487 void _lttng_enabler_attach_filter_bytecode(struct lttng_enabler *enabler,
1488 struct lttng_ust_bytecode_node **bytecode)
1489 {
1490 (*bytecode)->enabler = enabler;
1491 cds_list_add_tail(&(*bytecode)->node, &enabler->filter_bytecode_head);
1492 /* Take ownership of bytecode */
1493 *bytecode = NULL;
1494 }
1495
1496 int lttng_event_enabler_attach_filter_bytecode(struct lttng_event_enabler *event_enabler,
1497 struct lttng_ust_bytecode_node **bytecode)
1498 {
1499 _lttng_enabler_attach_filter_bytecode(
1500 lttng_event_enabler_as_enabler(event_enabler), bytecode);
1501
1502 lttng_session_lazy_sync_event_enablers(event_enabler->chan->parent->session);
1503 return 0;
1504 }
1505
1506 static
1507 void _lttng_enabler_attach_exclusion(struct lttng_enabler *enabler,
1508 struct lttng_ust_excluder_node **excluder)
1509 {
1510 (*excluder)->enabler = enabler;
1511 cds_list_add_tail(&(*excluder)->node, &enabler->excluder_head);
1512 /* Take ownership of excluder */
1513 *excluder = NULL;
1514 }
1515
1516 int lttng_event_enabler_attach_exclusion(struct lttng_event_enabler *event_enabler,
1517 struct lttng_ust_excluder_node **excluder)
1518 {
1519 _lttng_enabler_attach_exclusion(
1520 lttng_event_enabler_as_enabler(event_enabler), excluder);
1521
1522 lttng_session_lazy_sync_event_enablers(event_enabler->chan->parent->session);
1523 return 0;
1524 }
1525
1526 int lttng_event_notifier_enabler_enable(
1527 struct lttng_event_notifier_enabler *event_notifier_enabler)
1528 {
1529 lttng_event_notifier_enabler_as_enabler(event_notifier_enabler)->enabled = 1;
1530 lttng_event_notifier_group_sync_enablers(event_notifier_enabler->group);
1531
1532 return 0;
1533 }
1534
1535 int lttng_event_notifier_enabler_disable(
1536 struct lttng_event_notifier_enabler *event_notifier_enabler)
1537 {
1538 lttng_event_notifier_enabler_as_enabler(event_notifier_enabler)->enabled = 0;
1539 lttng_event_notifier_group_sync_enablers(event_notifier_enabler->group);
1540
1541 return 0;
1542 }
1543
1544 int lttng_event_notifier_enabler_attach_filter_bytecode(
1545 struct lttng_event_notifier_enabler *event_notifier_enabler,
1546 struct lttng_ust_bytecode_node **bytecode)
1547 {
1548 _lttng_enabler_attach_filter_bytecode(
1549 lttng_event_notifier_enabler_as_enabler(event_notifier_enabler),
1550 bytecode);
1551
1552 lttng_event_notifier_group_sync_enablers(event_notifier_enabler->group);
1553 return 0;
1554 }
1555
1556 int lttng_event_notifier_enabler_attach_capture_bytecode(
1557 struct lttng_event_notifier_enabler *event_notifier_enabler,
1558 struct lttng_ust_bytecode_node **bytecode)
1559 {
1560 (*bytecode)->enabler = lttng_event_notifier_enabler_as_enabler(
1561 event_notifier_enabler);
1562 cds_list_add_tail(&(*bytecode)->node,
1563 &event_notifier_enabler->capture_bytecode_head);
1564 /* Take ownership of bytecode */
1565 *bytecode = NULL;
1566 event_notifier_enabler->num_captures++;
1567
1568 lttng_event_notifier_group_sync_enablers(event_notifier_enabler->group);
1569 return 0;
1570 }
1571
1572 int lttng_event_notifier_enabler_attach_exclusion(
1573 struct lttng_event_notifier_enabler *event_notifier_enabler,
1574 struct lttng_ust_excluder_node **excluder)
1575 {
1576 _lttng_enabler_attach_exclusion(
1577 lttng_event_notifier_enabler_as_enabler(event_notifier_enabler),
1578 excluder);
1579
1580 lttng_event_notifier_group_sync_enablers(event_notifier_enabler->group);
1581 return 0;
1582 }
1583
1584 int lttng_attach_context(struct lttng_ust_abi_context *context_param,
1585 union lttng_ust_abi_args *uargs,
1586 struct lttng_ust_ctx **ctx, struct lttng_ust_session *session)
1587 {
1588 /*
1589 * We cannot attach a context after trace has been started for a
1590 * session because the metadata does not allow expressing this
1591 * information outside of the original channel scope.
1592 */
1593 if (session->priv->been_active)
1594 return -EPERM;
1595
1596 switch (context_param->ctx) {
1597 case LTTNG_UST_ABI_CONTEXT_PTHREAD_ID:
1598 return lttng_add_pthread_id_to_ctx(ctx);
1599 case LTTNG_UST_ABI_CONTEXT_PERF_THREAD_COUNTER:
1600 {
1601 struct lttng_ust_abi_perf_counter_ctx *perf_ctx_param;
1602
1603 perf_ctx_param = &context_param->u.perf_counter;
1604 return lttng_add_perf_counter_to_ctx(
1605 perf_ctx_param->type,
1606 perf_ctx_param->config,
1607 perf_ctx_param->name,
1608 ctx);
1609 }
1610 case LTTNG_UST_ABI_CONTEXT_VTID:
1611 return lttng_add_vtid_to_ctx(ctx);
1612 case LTTNG_UST_ABI_CONTEXT_VPID:
1613 return lttng_add_vpid_to_ctx(ctx);
1614 case LTTNG_UST_ABI_CONTEXT_PROCNAME:
1615 return lttng_add_procname_to_ctx(ctx);
1616 case LTTNG_UST_ABI_CONTEXT_IP:
1617 return lttng_add_ip_to_ctx(ctx);
1618 case LTTNG_UST_ABI_CONTEXT_CPU_ID:
1619 return lttng_add_cpu_id_to_ctx(ctx);
1620 case LTTNG_UST_ABI_CONTEXT_APP_CONTEXT:
1621 return lttng_ust_add_app_context_to_ctx_rcu(uargs->app_context.ctxname,
1622 ctx);
1623 case LTTNG_UST_ABI_CONTEXT_CGROUP_NS:
1624 return lttng_add_cgroup_ns_to_ctx(ctx);
1625 case LTTNG_UST_ABI_CONTEXT_IPC_NS:
1626 return lttng_add_ipc_ns_to_ctx(ctx);
1627 case LTTNG_UST_ABI_CONTEXT_MNT_NS:
1628 return lttng_add_mnt_ns_to_ctx(ctx);
1629 case LTTNG_UST_ABI_CONTEXT_NET_NS:
1630 return lttng_add_net_ns_to_ctx(ctx);
1631 case LTTNG_UST_ABI_CONTEXT_PID_NS:
1632 return lttng_add_pid_ns_to_ctx(ctx);
1633 case LTTNG_UST_ABI_CONTEXT_TIME_NS:
1634 return lttng_add_time_ns_to_ctx(ctx);
1635 case LTTNG_UST_ABI_CONTEXT_USER_NS:
1636 return lttng_add_user_ns_to_ctx(ctx);
1637 case LTTNG_UST_ABI_CONTEXT_UTS_NS:
1638 return lttng_add_uts_ns_to_ctx(ctx);
1639 case LTTNG_UST_ABI_CONTEXT_VUID:
1640 return lttng_add_vuid_to_ctx(ctx);
1641 case LTTNG_UST_ABI_CONTEXT_VEUID:
1642 return lttng_add_veuid_to_ctx(ctx);
1643 case LTTNG_UST_ABI_CONTEXT_VSUID:
1644 return lttng_add_vsuid_to_ctx(ctx);
1645 case LTTNG_UST_ABI_CONTEXT_VGID:
1646 return lttng_add_vgid_to_ctx(ctx);
1647 case LTTNG_UST_ABI_CONTEXT_VEGID:
1648 return lttng_add_vegid_to_ctx(ctx);
1649 case LTTNG_UST_ABI_CONTEXT_VSGID:
1650 return lttng_add_vsgid_to_ctx(ctx);
1651 default:
1652 return -EINVAL;
1653 }
1654 }
1655
1656 int lttng_event_enabler_attach_context(struct lttng_event_enabler *enabler,
1657 struct lttng_ust_abi_context *context_param)
1658 {
1659 return -ENOSYS;
1660 }
1661
1662 void lttng_event_enabler_destroy(struct lttng_event_enabler *event_enabler)
1663 {
1664 if (!event_enabler) {
1665 return;
1666 }
1667 cds_list_del(&event_enabler->node);
1668
1669 lttng_enabler_destroy(lttng_event_enabler_as_enabler(event_enabler));
1670
1671 lttng_destroy_context(event_enabler->ctx);
1672 free(event_enabler);
1673 }
1674
1675 /*
1676 * lttng_session_sync_event_enablers should be called just before starting a
1677 * session.
1678 */
1679 static
1680 void lttng_session_sync_event_enablers(struct lttng_ust_session *session)
1681 {
1682 struct lttng_event_enabler *event_enabler;
1683 struct lttng_ust_event_recorder_private *event_recorder_priv;
1684
1685 cds_list_for_each_entry(event_enabler, &session->priv->enablers_head, node)
1686 lttng_event_enabler_ref_event_recorders(event_enabler);
1687 /*
1688 * For each event, if at least one of its enablers is enabled,
1689 * and its channel and session transient states are enabled, we
1690 * enable the event, else we disable it.
1691 */
1692 cds_list_for_each_entry(event_recorder_priv, &session->priv->events_head, node) {
1693 struct lttng_enabler_ref *enabler_ref;
1694 struct lttng_ust_bytecode_runtime *runtime;
1695 int enabled = 0, has_enablers_without_filter_bytecode = 0;
1696 int nr_filters = 0;
1697
1698 /* Enable events */
1699 cds_list_for_each_entry(enabler_ref,
1700 &event_recorder_priv->parent.enablers_ref_head, node) {
1701 if (enabler_ref->ref->enabled) {
1702 enabled = 1;
1703 break;
1704 }
1705 }
1706 /*
1707 * Enabled state is based on union of enablers, with
1708 * intesection of session and channel transient enable
1709 * states.
1710 */
1711 enabled = enabled && session->priv->tstate && event_recorder_priv->pub->chan->priv->parent.tstate;
1712
1713 CMM_STORE_SHARED(event_recorder_priv->pub->parent->enabled, enabled);
1714 /*
1715 * Sync tracepoint registration with event enabled
1716 * state.
1717 */
1718 if (enabled) {
1719 if (!event_recorder_priv->parent.registered)
1720 register_event(event_recorder_priv->parent.pub);
1721 } else {
1722 if (event_recorder_priv->parent.registered)
1723 unregister_event(event_recorder_priv->parent.pub);
1724 }
1725
1726 /* Check if has enablers without bytecode enabled */
1727 cds_list_for_each_entry(enabler_ref,
1728 &event_recorder_priv->parent.enablers_ref_head, node) {
1729 if (enabler_ref->ref->enabled
1730 && cds_list_empty(&enabler_ref->ref->filter_bytecode_head)) {
1731 has_enablers_without_filter_bytecode = 1;
1732 break;
1733 }
1734 }
1735 event_recorder_priv->parent.has_enablers_without_filter_bytecode =
1736 has_enablers_without_filter_bytecode;
1737
1738 /* Enable filters */
1739 cds_list_for_each_entry(runtime,
1740 &event_recorder_priv->parent.filter_bytecode_runtime_head, node) {
1741 lttng_bytecode_sync_state(runtime);
1742 nr_filters++;
1743 }
1744 CMM_STORE_SHARED(event_recorder_priv->parent.pub->eval_filter,
1745 !(has_enablers_without_filter_bytecode || !nr_filters));
1746 }
1747 lttng_ust_tp_probe_prune_release_queue();
1748 }
1749
1750 /* Support for event notifier is introduced by probe provider major version 2. */
1751 static
1752 bool lttng_ust_probe_supports_event_notifier(struct lttng_ust_probe_desc *probe_desc)
1753 {
1754 return probe_desc->major >= 2;
1755 }
1756
1757 static
1758 void lttng_create_event_notifier_if_missing(
1759 struct lttng_event_notifier_enabler *event_notifier_enabler)
1760 {
1761 struct lttng_event_notifier_group *event_notifier_group = event_notifier_enabler->group;
1762 struct lttng_ust_probe_desc *probe_desc;
1763 struct cds_list_head *probe_list;
1764 int i;
1765
1766 probe_list = lttng_get_probe_list_head();
1767
1768 cds_list_for_each_entry(probe_desc, probe_list, head) {
1769 for (i = 0; i < probe_desc->nr_events; i++) {
1770 int ret;
1771 bool found = false;
1772 struct lttng_ust_event_desc *desc;
1773 struct lttng_ust_event_notifier_private *event_notifier_priv;
1774 struct cds_hlist_head *head;
1775 struct cds_hlist_node *node;
1776
1777 desc = probe_desc->event_desc[i];
1778
1779 if (!lttng_desc_match_enabler(desc,
1780 lttng_event_notifier_enabler_as_enabler(event_notifier_enabler)))
1781 continue;
1782
1783 /*
1784 * Given the current event_notifier group, get the bucket that
1785 * the target event_notifier would be if it was already
1786 * created.
1787 */
1788 head = borrow_hash_table_bucket(
1789 event_notifier_group->event_notifiers_ht.table,
1790 LTTNG_UST_EVENT_NOTIFIER_HT_SIZE, desc);
1791
1792 cds_hlist_for_each_entry(event_notifier_priv, node, head, hlist) {
1793 /*
1794 * Check if event_notifier already exists by checking
1795 * if the event_notifier and enabler share the same
1796 * description and id.
1797 */
1798 if (event_notifier_priv->parent.desc == desc &&
1799 event_notifier_priv->parent.user_token == event_notifier_enabler->user_token) {
1800 found = true;
1801 break;
1802 }
1803 }
1804
1805 if (found)
1806 continue;
1807
1808 /* Check that the probe supports event notifiers, else report the error. */
1809 if (!lttng_ust_probe_supports_event_notifier(probe_desc)) {
1810 ERR("Probe \"%s\" contains event \"%s:%s\" which matches an enabled event notifier, "
1811 "but its version (%u.%u) is too old and does not implement event notifiers. "
1812 "It needs to be recompiled against a newer version of LTTng-UST, otherwise "
1813 "this event will not generate any notification.",
1814 probe_desc->provider_name,
1815 probe_desc->provider_name, desc->event_name,
1816 probe_desc->major,
1817 probe_desc->minor);
1818 continue;
1819 }
1820 /*
1821 * We need to create a event_notifier for this event probe.
1822 */
1823 ret = lttng_event_notifier_create(desc,
1824 event_notifier_enabler->user_token,
1825 event_notifier_enabler->error_counter_index,
1826 event_notifier_group);
1827 if (ret) {
1828 DBG("Unable to create event_notifier \"%s:%s\", error %d\n",
1829 probe_desc->provider_name,
1830 probe_desc->event_desc[i]->event_name, ret);
1831 }
1832 }
1833 }
1834 }
1835
1836 /*
1837 * Create event_notifiers associated with a event_notifier enabler (if not already present).
1838 */
1839 static
1840 int lttng_event_notifier_enabler_ref_event_notifiers(
1841 struct lttng_event_notifier_enabler *event_notifier_enabler)
1842 {
1843 struct lttng_event_notifier_group *event_notifier_group = event_notifier_enabler->group;
1844 struct lttng_ust_event_notifier_private *event_notifier_priv;
1845
1846 /*
1847 * Only try to create event_notifiers for enablers that are enabled, the user
1848 * might still be attaching filter or exclusion to the
1849 * event_notifier_enabler.
1850 */
1851 if (!lttng_event_notifier_enabler_as_enabler(event_notifier_enabler)->enabled)
1852 goto end;
1853
1854 /* First, ensure that probe event_notifiers are created for this enabler. */
1855 lttng_create_event_notifier_if_missing(event_notifier_enabler);
1856
1857 /* Link the created event_notifier with its associated enabler. */
1858 cds_list_for_each_entry(event_notifier_priv, &event_notifier_group->event_notifiers_head, node) {
1859 struct lttng_enabler_ref *enabler_ref;
1860
1861 if (!lttng_event_notifier_enabler_match_event_notifier(event_notifier_enabler, event_notifier_priv->pub))
1862 continue;
1863
1864 enabler_ref = lttng_enabler_ref(&event_notifier_priv->parent.enablers_ref_head,
1865 lttng_event_notifier_enabler_as_enabler(event_notifier_enabler));
1866 if (!enabler_ref) {
1867 /*
1868 * If no backward ref, create it.
1869 * Add backward ref from event_notifier to enabler.
1870 */
1871 enabler_ref = zmalloc(sizeof(*enabler_ref));
1872 if (!enabler_ref)
1873 return -ENOMEM;
1874
1875 enabler_ref->ref = lttng_event_notifier_enabler_as_enabler(
1876 event_notifier_enabler);
1877 cds_list_add(&enabler_ref->node,
1878 &event_notifier_priv->parent.enablers_ref_head);
1879 }
1880
1881 /*
1882 * Link filter bytecodes if not linked yet.
1883 */
1884 lttng_enabler_link_bytecode(event_notifier_priv->parent.desc,
1885 &event_notifier_group->ctx,
1886 &event_notifier_priv->parent.filter_bytecode_runtime_head,
1887 &lttng_event_notifier_enabler_as_enabler(event_notifier_enabler)->filter_bytecode_head);
1888
1889 /*
1890 * Link capture bytecodes if not linked yet.
1891 */
1892 lttng_enabler_link_bytecode(event_notifier_priv->parent.desc,
1893 &event_notifier_group->ctx, &event_notifier_priv->capture_bytecode_runtime_head,
1894 &event_notifier_enabler->capture_bytecode_head);
1895
1896 event_notifier_priv->num_captures = event_notifier_enabler->num_captures;
1897 }
1898 end:
1899 return 0;
1900 }
1901
1902 static
1903 void lttng_event_notifier_group_sync_enablers(struct lttng_event_notifier_group *event_notifier_group)
1904 {
1905 struct lttng_event_notifier_enabler *event_notifier_enabler;
1906 struct lttng_ust_event_notifier_private *event_notifier_priv;
1907
1908 cds_list_for_each_entry(event_notifier_enabler, &event_notifier_group->enablers_head, node)
1909 lttng_event_notifier_enabler_ref_event_notifiers(event_notifier_enabler);
1910
1911 /*
1912 * For each event_notifier, if at least one of its enablers is enabled,
1913 * we enable the event_notifier, else we disable it.
1914 */
1915 cds_list_for_each_entry(event_notifier_priv, &event_notifier_group->event_notifiers_head, node) {
1916 struct lttng_enabler_ref *enabler_ref;
1917 struct lttng_ust_bytecode_runtime *runtime;
1918 int enabled = 0, has_enablers_without_filter_bytecode = 0;
1919 int nr_filters = 0, nr_captures = 0;
1920
1921 /* Enable event_notifiers */
1922 cds_list_for_each_entry(enabler_ref,
1923 &event_notifier_priv->parent.enablers_ref_head, node) {
1924 if (enabler_ref->ref->enabled) {
1925 enabled = 1;
1926 break;
1927 }
1928 }
1929
1930 CMM_STORE_SHARED(event_notifier_priv->pub->parent->enabled, enabled);
1931 /*
1932 * Sync tracepoint registration with event_notifier enabled
1933 * state.
1934 */
1935 if (enabled) {
1936 if (!event_notifier_priv->parent.registered)
1937 register_event(event_notifier_priv->parent.pub);
1938 } else {
1939 if (event_notifier_priv->parent.registered)
1940 unregister_event(event_notifier_priv->parent.pub);
1941 }
1942
1943 /* Check if has enablers without bytecode enabled */
1944 cds_list_for_each_entry(enabler_ref,
1945 &event_notifier_priv->parent.enablers_ref_head, node) {
1946 if (enabler_ref->ref->enabled
1947 && cds_list_empty(&enabler_ref->ref->filter_bytecode_head)) {
1948 has_enablers_without_filter_bytecode = 1;
1949 break;
1950 }
1951 }
1952 event_notifier_priv->parent.has_enablers_without_filter_bytecode =
1953 has_enablers_without_filter_bytecode;
1954
1955 /* Enable filters */
1956 cds_list_for_each_entry(runtime,
1957 &event_notifier_priv->parent.filter_bytecode_runtime_head, node) {
1958 lttng_bytecode_sync_state(runtime);
1959 nr_filters++;
1960 }
1961 CMM_STORE_SHARED(event_notifier_priv->parent.pub->eval_filter,
1962 !(has_enablers_without_filter_bytecode || !nr_filters));
1963
1964 /* Enable captures. */
1965 cds_list_for_each_entry(runtime,
1966 &event_notifier_priv->capture_bytecode_runtime_head, node) {
1967 lttng_bytecode_sync_state(runtime);
1968 nr_captures++;
1969 }
1970 CMM_STORE_SHARED(event_notifier_priv->pub->eval_capture,
1971 !!nr_captures);
1972 }
1973 lttng_ust_tp_probe_prune_release_queue();
1974 }
1975
1976 /*
1977 * Apply enablers to session events, adding events to session if need
1978 * be. It is required after each modification applied to an active
1979 * session, and right before session "start".
1980 * "lazy" sync means we only sync if required.
1981 */
1982 static
1983 void lttng_session_lazy_sync_event_enablers(struct lttng_ust_session *session)
1984 {
1985 /* We can skip if session is not active */
1986 if (!session->active)
1987 return;
1988 lttng_session_sync_event_enablers(session);
1989 }
1990
1991 /*
1992 * Update all sessions with the given app context.
1993 * Called with ust lock held.
1994 * This is invoked when an application context gets loaded/unloaded. It
1995 * ensures the context callbacks are in sync with the application
1996 * context (either app context callbacks, or dummy callbacks).
1997 */
1998 void lttng_ust_context_set_session_provider(const char *name,
1999 size_t (*get_size)(struct lttng_ust_ctx_field *field, size_t offset),
2000 void (*record)(struct lttng_ust_ctx_field *field,
2001 struct lttng_ust_lib_ring_buffer_ctx *ctx,
2002 struct lttng_ust_channel_buffer *chan),
2003 void (*get_value)(struct lttng_ust_ctx_field *field,
2004 struct lttng_ust_ctx_value *value))
2005 {
2006 struct lttng_ust_session_private *session_priv;
2007
2008 cds_list_for_each_entry(session_priv, &sessions, node) {
2009 struct lttng_ust_channel_buffer_private *chan;
2010 struct lttng_ust_event_recorder_private *event_recorder_priv;
2011 int ret;
2012
2013 ret = lttng_ust_context_set_provider_rcu(&session_priv->ctx,
2014 name, get_size, record, get_value);
2015 if (ret)
2016 abort();
2017 cds_list_for_each_entry(chan, &session_priv->chan_head, node) {
2018 ret = lttng_ust_context_set_provider_rcu(&chan->ctx,
2019 name, get_size, record, get_value);
2020 if (ret)
2021 abort();
2022 }
2023 cds_list_for_each_entry(event_recorder_priv, &session_priv->events_head, node) {
2024 ret = lttng_ust_context_set_provider_rcu(&event_recorder_priv->ctx,
2025 name, get_size, record, get_value);
2026 if (ret)
2027 abort();
2028 }
2029 }
2030 }
2031
2032 /*
2033 * Update all event_notifier groups with the given app context.
2034 * Called with ust lock held.
2035 * This is invoked when an application context gets loaded/unloaded. It
2036 * ensures the context callbacks are in sync with the application
2037 * context (either app context callbacks, or dummy callbacks).
2038 */
2039 void lttng_ust_context_set_event_notifier_group_provider(const char *name,
2040 size_t (*get_size)(struct lttng_ust_ctx_field *field, size_t offset),
2041 void (*record)(struct lttng_ust_ctx_field *field,
2042 struct lttng_ust_lib_ring_buffer_ctx *ctx,
2043 struct lttng_ust_channel_buffer *chan),
2044 void (*get_value)(struct lttng_ust_ctx_field *field,
2045 struct lttng_ust_ctx_value *value))
2046 {
2047 struct lttng_event_notifier_group *event_notifier_group;
2048
2049 cds_list_for_each_entry(event_notifier_group, &event_notifier_groups, node) {
2050 int ret;
2051
2052 ret = lttng_ust_context_set_provider_rcu(
2053 &event_notifier_group->ctx,
2054 name, get_size, record, get_value);
2055 if (ret)
2056 abort();
2057 }
2058 }
2059
2060 int lttng_ust_session_uuid_validate(struct lttng_ust_session *session,
2061 unsigned char *uuid)
2062 {
2063 if (!session)
2064 return 0;
2065 /* Compare UUID with session. */
2066 if (session->priv->uuid_set) {
2067 if (memcmp(session->priv->uuid, uuid, LTTNG_UST_UUID_LEN)) {
2068 return -1;
2069 }
2070 } else {
2071 memcpy(session->priv->uuid, uuid, LTTNG_UST_UUID_LEN);
2072 session->priv->uuid_set = true;
2073 }
2074 return 0;
2075
2076 }
This page took 0.069633 seconds and 5 git commands to generate.