Fix: event probes attached before event enabled
[lttng-ust.git] / liblttng-ust / lttng-events.c
1 /*
2 * lttng-events.c
3 *
4 * Holds LTTng per-session event registry.
5 *
6 * Copyright (C) 2010-2012 Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
7 *
8 * This library is free software; you can redistribute it and/or
9 * modify it under the terms of the GNU Lesser General Public
10 * License as published by the Free Software Foundation; only
11 * version 2.1 of the License.
12 *
13 * This library is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
16 * Lesser General Public License for more details.
17 *
18 * You should have received a copy of the GNU Lesser General Public
19 * License along with this library; if not, write to the Free Software
20 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
21 */
22
23 #define _GNU_SOURCE
24 #define _LGPL_SOURCE
25 #include <stdio.h>
26 #include <urcu/list.h>
27 #include <urcu/hlist.h>
28 #include <pthread.h>
29 #include <errno.h>
30 #include <sys/shm.h>
31 #include <sys/ipc.h>
32 #include <stdint.h>
33 #include <stddef.h>
34 #include <inttypes.h>
35 #include <time.h>
36 #include <stdbool.h>
37 #include <lttng/ust-endian.h>
38 #include "clock.h"
39
40 #include <urcu-bp.h>
41 #include <urcu/compiler.h>
42 #include <urcu/uatomic.h>
43 #include <urcu/arch.h>
44
45 #include <lttng/tracepoint.h>
46 #include <lttng/ust-events.h>
47
48 #include <usterr-signal-safe.h>
49 #include <helper.h>
50 #include <lttng/ust-ctl.h>
51 #include <ust-comm.h>
52 #include <lttng/ust-dynamic-type.h>
53 #include <lttng/ust-context-provider.h>
54 #include "error.h"
55 #include "compat.h"
56 #include "lttng-ust-uuid.h"
57
58 #include "tracepoint-internal.h"
59 #include "string-utils.h"
60 #include "lttng-tracer.h"
61 #include "lttng-tracer-core.h"
62 #include "lttng-ust-statedump.h"
63 #include "wait.h"
64 #include "../libringbuffer/shm.h"
65 #include "jhash.h"
66
67 /*
68 * All operations within this file are called by the communication
69 * thread, under ust_lock protection.
70 */
71
72 static CDS_LIST_HEAD(sessions);
73
74 struct cds_list_head *_lttng_get_sessions(void)
75 {
76 return &sessions;
77 }
78
79 static void _lttng_event_destroy(struct lttng_event *event);
80 static void _lttng_enum_destroy(struct lttng_enum *_enum);
81
82 static
83 void lttng_session_lazy_sync_enablers(struct lttng_session *session);
84 static
85 void lttng_session_sync_enablers(struct lttng_session *session);
86 static
87 void lttng_enabler_destroy(struct lttng_enabler *enabler);
88
89 /*
90 * Called with ust lock held.
91 */
92 int lttng_session_active(void)
93 {
94 struct lttng_session *iter;
95
96 cds_list_for_each_entry(iter, &sessions, node) {
97 if (iter->active)
98 return 1;
99 }
100 return 0;
101 }
102
103 static
104 int lttng_loglevel_match(int loglevel,
105 unsigned int has_loglevel,
106 enum lttng_ust_loglevel_type req_type,
107 int req_loglevel)
108 {
109 if (!has_loglevel)
110 loglevel = TRACE_DEFAULT;
111 switch (req_type) {
112 case LTTNG_UST_LOGLEVEL_RANGE:
113 if (loglevel <= req_loglevel
114 || (req_loglevel == -1 && loglevel <= TRACE_DEBUG))
115 return 1;
116 else
117 return 0;
118 case LTTNG_UST_LOGLEVEL_SINGLE:
119 if (loglevel == req_loglevel
120 || (req_loglevel == -1 && loglevel <= TRACE_DEBUG))
121 return 1;
122 else
123 return 0;
124 case LTTNG_UST_LOGLEVEL_ALL:
125 default:
126 if (loglevel <= TRACE_DEBUG)
127 return 1;
128 else
129 return 0;
130 }
131 }
132
133 void synchronize_trace(void)
134 {
135 synchronize_rcu();
136 }
137
138 struct lttng_session *lttng_session_create(void)
139 {
140 struct lttng_session *session;
141 int i;
142
143 session = zmalloc(sizeof(struct lttng_session));
144 if (!session)
145 return NULL;
146 if (lttng_session_context_init(&session->ctx)) {
147 free(session);
148 return NULL;
149 }
150 CDS_INIT_LIST_HEAD(&session->chan_head);
151 CDS_INIT_LIST_HEAD(&session->events_head);
152 CDS_INIT_LIST_HEAD(&session->enums_head);
153 CDS_INIT_LIST_HEAD(&session->enablers_head);
154 for (i = 0; i < LTTNG_UST_EVENT_HT_SIZE; i++)
155 CDS_INIT_HLIST_HEAD(&session->events_ht.table[i]);
156 for (i = 0; i < LTTNG_UST_ENUM_HT_SIZE; i++)
157 CDS_INIT_HLIST_HEAD(&session->enums_ht.table[i]);
158 cds_list_add(&session->node, &sessions);
159 return session;
160 }
161
162 /*
163 * Only used internally at session destruction.
164 */
165 static
166 void _lttng_channel_unmap(struct lttng_channel *lttng_chan)
167 {
168 struct channel *chan;
169 struct lttng_ust_shm_handle *handle;
170
171 cds_list_del(&lttng_chan->node);
172 lttng_destroy_context(lttng_chan->ctx);
173 chan = lttng_chan->chan;
174 handle = lttng_chan->handle;
175 /*
176 * note: lttng_chan is private data contained within handle. It
177 * will be freed along with the handle.
178 */
179 channel_destroy(chan, handle, 0);
180 }
181
182 static
183 void register_event(struct lttng_event *event)
184 {
185 int ret;
186 const struct lttng_event_desc *desc;
187
188 assert(event->registered == 0);
189 desc = event->desc;
190 ret = __tracepoint_probe_register_queue_release(desc->name,
191 desc->probe_callback,
192 event, desc->signature);
193 WARN_ON_ONCE(ret);
194 if (!ret)
195 event->registered = 1;
196 }
197
198 static
199 void unregister_event(struct lttng_event *event)
200 {
201 int ret;
202 const struct lttng_event_desc *desc;
203
204 assert(event->registered == 1);
205 desc = event->desc;
206 ret = __tracepoint_probe_unregister_queue_release(desc->name,
207 desc->probe_callback,
208 event);
209 WARN_ON_ONCE(ret);
210 if (!ret)
211 event->registered = 0;
212 }
213
214 /*
215 * Only used internally at session destruction.
216 */
217 static
218 void _lttng_event_unregister(struct lttng_event *event)
219 {
220 if (event->registered)
221 unregister_event(event);
222 }
223
224 void lttng_session_destroy(struct lttng_session *session)
225 {
226 struct lttng_channel *chan, *tmpchan;
227 struct lttng_event *event, *tmpevent;
228 struct lttng_enum *_enum, *tmp_enum;
229 struct lttng_enabler *enabler, *tmpenabler;
230
231 CMM_ACCESS_ONCE(session->active) = 0;
232 cds_list_for_each_entry(event, &session->events_head, node) {
233 _lttng_event_unregister(event);
234 }
235 synchronize_trace(); /* Wait for in-flight events to complete */
236 __tracepoint_probe_prune_release_queue();
237 cds_list_for_each_entry_safe(enabler, tmpenabler,
238 &session->enablers_head, node)
239 lttng_enabler_destroy(enabler);
240 cds_list_for_each_entry_safe(event, tmpevent,
241 &session->events_head, node)
242 _lttng_event_destroy(event);
243 cds_list_for_each_entry_safe(_enum, tmp_enum,
244 &session->enums_head, node)
245 _lttng_enum_destroy(_enum);
246 cds_list_for_each_entry_safe(chan, tmpchan, &session->chan_head, node)
247 _lttng_channel_unmap(chan);
248 cds_list_del(&session->node);
249 lttng_destroy_context(session->ctx);
250 free(session);
251 }
252
253 static
254 int lttng_enum_create(const struct lttng_enum_desc *desc,
255 struct lttng_session *session)
256 {
257 const char *enum_name = desc->name;
258 struct lttng_enum *_enum;
259 struct cds_hlist_head *head;
260 int ret = 0;
261 size_t name_len = strlen(enum_name);
262 uint32_t hash;
263 int notify_socket;
264
265 /* Check if this enum is already registered for this session. */
266 hash = jhash(enum_name, name_len, 0);
267 head = &session->enums_ht.table[hash & (LTTNG_UST_ENUM_HT_SIZE - 1)];
268
269 _enum = lttng_ust_enum_get_from_desc(session, desc);
270 if (_enum) {
271 ret = -EEXIST;
272 goto exist;
273 }
274
275 notify_socket = lttng_get_notify_socket(session->owner);
276 if (notify_socket < 0) {
277 ret = notify_socket;
278 goto socket_error;
279 }
280
281 _enum = zmalloc(sizeof(*_enum));
282 if (!_enum) {
283 ret = -ENOMEM;
284 goto cache_error;
285 }
286 _enum->session = session;
287 _enum->desc = desc;
288
289 ret = ustcomm_register_enum(notify_socket,
290 session->objd,
291 enum_name,
292 desc->nr_entries,
293 desc->entries,
294 &_enum->id);
295 if (ret < 0) {
296 DBG("Error (%d) registering enumeration to sessiond", ret);
297 goto sessiond_register_error;
298 }
299 cds_list_add(&_enum->node, &session->enums_head);
300 cds_hlist_add_head(&_enum->hlist, head);
301 return 0;
302
303 sessiond_register_error:
304 free(_enum);
305 cache_error:
306 socket_error:
307 exist:
308 return ret;
309 }
310
311 static
312 int lttng_create_enum_check(const struct lttng_type *type,
313 struct lttng_session *session)
314 {
315 switch (type->atype) {
316 case atype_enum:
317 {
318 const struct lttng_enum_desc *enum_desc;
319 int ret;
320
321 enum_desc = type->u.basic.enumeration.desc;
322 ret = lttng_enum_create(enum_desc, session);
323 if (ret && ret != -EEXIST) {
324 DBG("Unable to create enum error: (%d)", ret);
325 return ret;
326 }
327 break;
328 }
329 case atype_dynamic:
330 {
331 const struct lttng_event_field *tag_field_generic;
332 const struct lttng_enum_desc *enum_desc;
333 int ret;
334
335 tag_field_generic = lttng_ust_dynamic_type_tag_field();
336 enum_desc = tag_field_generic->type.u.basic.enumeration.desc;
337 ret = lttng_enum_create(enum_desc, session);
338 if (ret && ret != -EEXIST) {
339 DBG("Unable to create enum error: (%d)", ret);
340 return ret;
341 }
342 break;
343 }
344 default:
345 /* TODO: nested types when they become supported. */
346 break;
347 }
348 return 0;
349 }
350
351 static
352 int lttng_create_all_event_enums(size_t nr_fields,
353 const struct lttng_event_field *event_fields,
354 struct lttng_session *session)
355 {
356 size_t i;
357 int ret;
358
359 /* For each field, ensure enum is part of the session. */
360 for (i = 0; i < nr_fields; i++) {
361 const struct lttng_type *type = &event_fields[i].type;
362
363 ret = lttng_create_enum_check(type, session);
364 if (ret)
365 return ret;
366 }
367 return 0;
368 }
369
370 static
371 int lttng_create_all_ctx_enums(size_t nr_fields,
372 const struct lttng_ctx_field *ctx_fields,
373 struct lttng_session *session)
374 {
375 size_t i;
376 int ret;
377
378 /* For each field, ensure enum is part of the session. */
379 for (i = 0; i < nr_fields; i++) {
380 const struct lttng_type *type = &ctx_fields[i].event_field.type;
381
382 ret = lttng_create_enum_check(type, session);
383 if (ret)
384 return ret;
385 }
386 return 0;
387 }
388
389 /*
390 * Ensure that a state-dump will be performed for this session at the end
391 * of the current handle_message().
392 */
393 int lttng_session_statedump(struct lttng_session *session)
394 {
395 session->statedump_pending = 1;
396 lttng_ust_sockinfo_session_enabled(session->owner);
397 return 0;
398 }
399
400 int lttng_session_enable(struct lttng_session *session)
401 {
402 int ret = 0;
403 struct lttng_channel *chan;
404 int notify_socket;
405
406 if (session->active) {
407 ret = -EBUSY;
408 goto end;
409 }
410
411 notify_socket = lttng_get_notify_socket(session->owner);
412 if (notify_socket < 0)
413 return notify_socket;
414
415 /* Set transient enabler state to "enabled" */
416 session->tstate = 1;
417
418 /*
419 * Snapshot the number of events per channel to know the type of header
420 * we need to use.
421 */
422 cds_list_for_each_entry(chan, &session->chan_head, node) {
423 const struct lttng_ctx *ctx;
424 const struct lttng_ctx_field *fields = NULL;
425 size_t nr_fields = 0;
426 uint32_t chan_id;
427
428 /* don't change it if session stop/restart */
429 if (chan->header_type)
430 continue;
431 ctx = chan->ctx;
432 if (ctx) {
433 nr_fields = ctx->nr_fields;
434 fields = ctx->fields;
435 ret = lttng_create_all_ctx_enums(nr_fields, fields,
436 session);
437 if (ret < 0) {
438 DBG("Error (%d) adding enum to session", ret);
439 return ret;
440 }
441 }
442 ret = ustcomm_register_channel(notify_socket,
443 session,
444 session->objd,
445 chan->objd,
446 nr_fields,
447 fields,
448 &chan_id,
449 &chan->header_type);
450 if (ret) {
451 DBG("Error (%d) registering channel to sessiond", ret);
452 return ret;
453 }
454 if (chan_id != chan->id) {
455 DBG("Error: channel registration id (%u) does not match id assigned at creation (%u)",
456 chan_id, chan->id);
457 return -EINVAL;
458 }
459 }
460
461 /* We need to sync enablers with session before activation. */
462 lttng_session_sync_enablers(session);
463
464 /* Set atomically the state to "active" */
465 CMM_ACCESS_ONCE(session->active) = 1;
466 CMM_ACCESS_ONCE(session->been_active) = 1;
467
468 ret = lttng_session_statedump(session);
469 if (ret)
470 return ret;
471 end:
472 return ret;
473 }
474
475 int lttng_session_disable(struct lttng_session *session)
476 {
477 int ret = 0;
478
479 if (!session->active) {
480 ret = -EBUSY;
481 goto end;
482 }
483 /* Set atomically the state to "inactive" */
484 CMM_ACCESS_ONCE(session->active) = 0;
485
486 /* Set transient enabler state to "disabled" */
487 session->tstate = 0;
488 lttng_session_sync_enablers(session);
489 end:
490 return ret;
491 }
492
493 int lttng_channel_enable(struct lttng_channel *channel)
494 {
495 int ret = 0;
496
497 if (channel->enabled) {
498 ret = -EBUSY;
499 goto end;
500 }
501 /* Set transient enabler state to "enabled" */
502 channel->tstate = 1;
503 lttng_session_sync_enablers(channel->session);
504 /* Set atomically the state to "enabled" */
505 CMM_ACCESS_ONCE(channel->enabled) = 1;
506 end:
507 return ret;
508 }
509
510 int lttng_channel_disable(struct lttng_channel *channel)
511 {
512 int ret = 0;
513
514 if (!channel->enabled) {
515 ret = -EBUSY;
516 goto end;
517 }
518 /* Set atomically the state to "disabled" */
519 CMM_ACCESS_ONCE(channel->enabled) = 0;
520 /* Set transient enabler state to "enabled" */
521 channel->tstate = 0;
522 lttng_session_sync_enablers(channel->session);
523 end:
524 return ret;
525 }
526
527 /*
528 * Supports event creation while tracing session is active.
529 */
530 static
531 int lttng_event_create(const struct lttng_event_desc *desc,
532 struct lttng_channel *chan)
533 {
534 const char *event_name = desc->name;
535 struct lttng_event *event;
536 struct lttng_session *session = chan->session;
537 struct cds_hlist_head *head;
538 int ret = 0;
539 size_t name_len = strlen(event_name);
540 uint32_t hash;
541 int notify_socket, loglevel;
542 const char *uri;
543
544 hash = jhash(event_name, name_len, 0);
545 head = &chan->session->events_ht.table[hash & (LTTNG_UST_EVENT_HT_SIZE - 1)];
546
547 notify_socket = lttng_get_notify_socket(session->owner);
548 if (notify_socket < 0) {
549 ret = notify_socket;
550 goto socket_error;
551 }
552
553 ret = lttng_create_all_event_enums(desc->nr_fields, desc->fields,
554 session);
555 if (ret < 0) {
556 DBG("Error (%d) adding enum to session", ret);
557 goto create_enum_error;
558 }
559
560 /*
561 * Check if loglevel match. Refuse to connect event if not.
562 */
563 event = zmalloc(sizeof(struct lttng_event));
564 if (!event) {
565 ret = -ENOMEM;
566 goto cache_error;
567 }
568 event->chan = chan;
569
570 /* Event will be enabled by enabler sync. */
571 event->enabled = 0;
572 event->registered = 0;
573 CDS_INIT_LIST_HEAD(&event->bytecode_runtime_head);
574 CDS_INIT_LIST_HEAD(&event->enablers_ref_head);
575 event->desc = desc;
576
577 if (desc->loglevel)
578 loglevel = *(*event->desc->loglevel);
579 else
580 loglevel = TRACE_DEFAULT;
581 if (desc->u.ext.model_emf_uri)
582 uri = *(desc->u.ext.model_emf_uri);
583 else
584 uri = NULL;
585
586 /* Fetch event ID from sessiond */
587 ret = ustcomm_register_event(notify_socket,
588 session,
589 session->objd,
590 chan->objd,
591 event_name,
592 loglevel,
593 desc->signature,
594 desc->nr_fields,
595 desc->fields,
596 uri,
597 &event->id);
598 if (ret < 0) {
599 DBG("Error (%d) registering event to sessiond", ret);
600 goto sessiond_register_error;
601 }
602
603 /* Populate lttng_event structure before tracepoint registration. */
604 cmm_smp_wmb();
605 cds_list_add(&event->node, &chan->session->events_head);
606 cds_hlist_add_head(&event->hlist, head);
607 return 0;
608
609 sessiond_register_error:
610 free(event);
611 cache_error:
612 create_enum_error:
613 socket_error:
614 return ret;
615 }
616
617 static
618 int lttng_desc_match_star_glob_enabler(const struct lttng_event_desc *desc,
619 struct lttng_enabler *enabler)
620 {
621 int loglevel = 0;
622 unsigned int has_loglevel = 0;
623
624 assert(enabler->type == LTTNG_ENABLER_STAR_GLOB);
625 if (!strutils_star_glob_match(enabler->event_param.name, SIZE_MAX,
626 desc->name, SIZE_MAX))
627 return 0;
628 if (desc->loglevel) {
629 loglevel = *(*desc->loglevel);
630 has_loglevel = 1;
631 }
632 if (!lttng_loglevel_match(loglevel,
633 has_loglevel,
634 enabler->event_param.loglevel_type,
635 enabler->event_param.loglevel))
636 return 0;
637 return 1;
638 }
639
640 static
641 int lttng_desc_match_event_enabler(const struct lttng_event_desc *desc,
642 struct lttng_enabler *enabler)
643 {
644 int loglevel = 0;
645 unsigned int has_loglevel = 0;
646
647 assert(enabler->type == LTTNG_ENABLER_EVENT);
648 if (strcmp(desc->name, enabler->event_param.name))
649 return 0;
650 if (desc->loglevel) {
651 loglevel = *(*desc->loglevel);
652 has_loglevel = 1;
653 }
654 if (!lttng_loglevel_match(loglevel,
655 has_loglevel,
656 enabler->event_param.loglevel_type,
657 enabler->event_param.loglevel))
658 return 0;
659 return 1;
660 }
661
662 static
663 int lttng_desc_match_enabler(const struct lttng_event_desc *desc,
664 struct lttng_enabler *enabler)
665 {
666 switch (enabler->type) {
667 case LTTNG_ENABLER_STAR_GLOB:
668 {
669 struct lttng_ust_excluder_node *excluder;
670
671 if (!lttng_desc_match_star_glob_enabler(desc, enabler)) {
672 return 0;
673 }
674
675 /*
676 * If the matching event matches with an excluder,
677 * return 'does not match'
678 */
679 cds_list_for_each_entry(excluder, &enabler->excluder_head, node) {
680 int count;
681
682 for (count = 0; count < excluder->excluder.count; count++) {
683 int len;
684 char *excluder_name;
685
686 excluder_name = (char *) (excluder->excluder.names)
687 + count * LTTNG_UST_SYM_NAME_LEN;
688 len = strnlen(excluder_name, LTTNG_UST_SYM_NAME_LEN);
689 if (len > 0 && strutils_star_glob_match(excluder_name, len, desc->name, SIZE_MAX))
690 return 0;
691 }
692 }
693 return 1;
694 }
695 case LTTNG_ENABLER_EVENT:
696 return lttng_desc_match_event_enabler(desc, enabler);
697 default:
698 return -EINVAL;
699 }
700 }
701
702 static
703 int lttng_event_match_enabler(struct lttng_event *event,
704 struct lttng_enabler *enabler)
705 {
706 if (lttng_desc_match_enabler(event->desc, enabler)
707 && event->chan == enabler->chan)
708 return 1;
709 else
710 return 0;
711 }
712
713 static
714 struct lttng_enabler_ref * lttng_event_enabler_ref(struct lttng_event *event,
715 struct lttng_enabler *enabler)
716 {
717 struct lttng_enabler_ref *enabler_ref;
718
719 cds_list_for_each_entry(enabler_ref,
720 &event->enablers_ref_head, node) {
721 if (enabler_ref->ref == enabler)
722 return enabler_ref;
723 }
724 return NULL;
725 }
726
727 /*
728 * Create struct lttng_event if it is missing and present in the list of
729 * tracepoint probes.
730 */
731 static
732 void lttng_create_event_if_missing(struct lttng_enabler *enabler)
733 {
734 struct lttng_session *session = enabler->chan->session;
735 struct lttng_probe_desc *probe_desc;
736 const struct lttng_event_desc *desc;
737 struct lttng_event *event;
738 int i;
739 struct cds_list_head *probe_list;
740
741 probe_list = lttng_get_probe_list_head();
742 /*
743 * For each probe event, if we find that a probe event matches
744 * our enabler, create an associated lttng_event if not
745 * already present.
746 */
747 cds_list_for_each_entry(probe_desc, probe_list, head) {
748 for (i = 0; i < probe_desc->nr_events; i++) {
749 int found = 0, ret;
750 struct cds_hlist_head *head;
751 struct cds_hlist_node *node;
752 const char *event_name;
753 size_t name_len;
754 uint32_t hash;
755
756 desc = probe_desc->event_desc[i];
757 if (!lttng_desc_match_enabler(desc, enabler))
758 continue;
759 event_name = desc->name;
760 name_len = strlen(event_name);
761
762 /*
763 * Check if already created.
764 */
765 hash = jhash(event_name, name_len, 0);
766 head = &session->events_ht.table[hash & (LTTNG_UST_EVENT_HT_SIZE - 1)];
767 cds_hlist_for_each_entry(event, node, head, hlist) {
768 if (event->desc == desc
769 && event->chan == enabler->chan) {
770 found = 1;
771 break;
772 }
773 }
774 if (found)
775 continue;
776
777 /*
778 * We need to create an event for this
779 * event probe.
780 */
781 ret = lttng_event_create(probe_desc->event_desc[i],
782 enabler->chan);
783 if (ret) {
784 DBG("Unable to create event %s, error %d\n",
785 probe_desc->event_desc[i]->name, ret);
786 }
787 }
788 }
789 }
790
791 /*
792 * Iterate over all the UST sessions to unregister and destroy all probes from
793 * the probe provider descriptor received as argument. Must me called with the
794 * ust_lock held.
795 */
796 void lttng_probe_provider_unregister_events(struct lttng_probe_desc *provider_desc)
797 {
798 struct cds_hlist_node *node, *tmp_node;
799 struct cds_list_head *sessionsp;
800 struct lttng_session *session;
801 struct cds_hlist_head *head;
802 struct lttng_event *event;
803 unsigned int i, j;
804
805 /* Get handle on list of sessions. */
806 sessionsp = _lttng_get_sessions();
807
808 /*
809 * Iterate over all events in the probe provider descriptions and sessions
810 * to queue the unregistration of the events.
811 */
812 for (i = 0; i < provider_desc->nr_events; i++) {
813 const struct lttng_event_desc *event_desc;
814 const char *event_name;
815 size_t name_len;
816 uint32_t hash;
817
818 event_desc = provider_desc->event_desc[i];
819 event_name = event_desc->name;
820 name_len = strlen(event_name);
821 hash = jhash(event_name, name_len, 0);
822
823 /* Iterate over all session to find the current event description. */
824 cds_list_for_each_entry(session, sessionsp, node) {
825 /*
826 * Get the list of events in the hashtable bucket and iterate to
827 * find the event matching this descriptor.
828 */
829 head = &session->events_ht.table[hash & (LTTNG_UST_EVENT_HT_SIZE - 1)];
830 cds_hlist_for_each_entry(event, node, head, hlist) {
831 if (event_desc == event->desc) {
832 /* Queue the unregistration of this event. */
833 _lttng_event_unregister(event);
834 break;
835 }
836 }
837 }
838 }
839
840 /* Wait for grace period. */
841 synchronize_trace();
842 /* Prune the unregistration queue. */
843 __tracepoint_probe_prune_release_queue();
844
845 /*
846 * It is now safe to destroy the events and remove them from the event list
847 * and hashtables.
848 */
849 for (i = 0; i < provider_desc->nr_events; i++) {
850 const struct lttng_event_desc *event_desc;
851 const char *event_name;
852 size_t name_len;
853 uint32_t hash;
854
855 event_desc = provider_desc->event_desc[i];
856 event_name = event_desc->name;
857 name_len = strlen(event_name);
858 hash = jhash(event_name, name_len, 0);
859
860 /* Iterate over all sessions to find the current event description. */
861 cds_list_for_each_entry(session, sessionsp, node) {
862 /*
863 * Get the list of events in the hashtable bucket and iterate to
864 * find the event matching this descriptor.
865 */
866 head = &session->events_ht.table[hash & (LTTNG_UST_EVENT_HT_SIZE - 1)];
867 cds_hlist_for_each_entry_safe(event, node, tmp_node, head, hlist) {
868 if (event_desc == event->desc) {
869 /* Destroy enums of the current event. */
870 for (j = 0; j < event->desc->nr_fields; j++) {
871 const struct lttng_enum_desc *enum_desc;
872 const struct lttng_event_field *field;
873 struct lttng_enum *curr_enum;
874
875 field = &(event->desc->fields[j]);
876 if (field->type.atype != atype_enum) {
877 continue;
878 }
879
880 enum_desc = field->type.u.basic.enumeration.desc;
881 curr_enum = lttng_ust_enum_get_from_desc(session, enum_desc);
882 if (curr_enum) {
883 _lttng_enum_destroy(curr_enum);
884 }
885 }
886
887 /* Destroy event. */
888 _lttng_event_destroy(event);
889 break;
890 }
891 }
892 }
893 }
894 }
895
896 /*
897 * Create events associated with an enabler (if not already present),
898 * and add backward reference from the event to the enabler.
899 */
900 static
901 int lttng_enabler_ref_events(struct lttng_enabler *enabler)
902 {
903 struct lttng_session *session = enabler->chan->session;
904 struct lttng_event *event;
905
906 if (!enabler->enabled)
907 goto end;
908
909 /* First ensure that probe events are created for this enabler. */
910 lttng_create_event_if_missing(enabler);
911
912 /* For each event matching enabler in session event list. */
913 cds_list_for_each_entry(event, &session->events_head, node) {
914 struct lttng_enabler_ref *enabler_ref;
915
916 if (!lttng_event_match_enabler(event, enabler))
917 continue;
918
919 enabler_ref = lttng_event_enabler_ref(event, enabler);
920 if (!enabler_ref) {
921 /*
922 * If no backward ref, create it.
923 * Add backward ref from event to enabler.
924 */
925 enabler_ref = zmalloc(sizeof(*enabler_ref));
926 if (!enabler_ref)
927 return -ENOMEM;
928 enabler_ref->ref = enabler;
929 cds_list_add(&enabler_ref->node,
930 &event->enablers_ref_head);
931 }
932
933 /*
934 * Link filter bytecodes if not linked yet.
935 */
936 lttng_enabler_event_link_bytecode(event, enabler);
937
938 /* TODO: merge event context. */
939 }
940 end:
941 return 0;
942 }
943
944 /*
945 * Called at library load: connect the probe on all enablers matching
946 * this event.
947 * Called with session mutex held.
948 */
949 int lttng_fix_pending_events(void)
950 {
951 struct lttng_session *session;
952
953 cds_list_for_each_entry(session, &sessions, node) {
954 lttng_session_lazy_sync_enablers(session);
955 }
956 return 0;
957 }
958
959 /*
960 * For each session of the owner thread, execute pending statedump.
961 * Only dump state for the sessions owned by the caller thread, because
962 * we don't keep ust_lock across the entire iteration.
963 */
964 void lttng_handle_pending_statedump(void *owner)
965 {
966 struct lttng_session *session;
967
968 /* Execute state dump */
969 do_lttng_ust_statedump(owner);
970
971 /* Clear pending state dump */
972 if (ust_lock()) {
973 goto end;
974 }
975 cds_list_for_each_entry(session, &sessions, node) {
976 if (session->owner != owner)
977 continue;
978 if (!session->statedump_pending)
979 continue;
980 session->statedump_pending = 0;
981 }
982 end:
983 ust_unlock();
984 return;
985 }
986
987 /*
988 * Only used internally at session destruction.
989 */
990 static
991 void _lttng_event_destroy(struct lttng_event *event)
992 {
993 struct lttng_enabler_ref *enabler_ref, *tmp_enabler_ref;
994
995 /* Remove from event list. */
996 cds_list_del(&event->node);
997 /* Remove from event hash table. */
998 cds_hlist_del(&event->hlist);
999
1000 lttng_destroy_context(event->ctx);
1001 lttng_free_event_filter_runtime(event);
1002 /* Free event enabler refs */
1003 cds_list_for_each_entry_safe(enabler_ref, tmp_enabler_ref,
1004 &event->enablers_ref_head, node)
1005 free(enabler_ref);
1006 free(event);
1007 }
1008
1009 static
1010 void _lttng_enum_destroy(struct lttng_enum *_enum)
1011 {
1012 cds_list_del(&_enum->node);
1013 cds_hlist_del(&_enum->hlist);
1014 free(_enum);
1015 }
1016
1017 void lttng_ust_events_exit(void)
1018 {
1019 struct lttng_session *session, *tmpsession;
1020
1021 cds_list_for_each_entry_safe(session, tmpsession, &sessions, node)
1022 lttng_session_destroy(session);
1023 }
1024
1025 /*
1026 * Enabler management.
1027 */
1028 struct lttng_enabler *lttng_enabler_create(enum lttng_enabler_type type,
1029 struct lttng_ust_event *event_param,
1030 struct lttng_channel *chan)
1031 {
1032 struct lttng_enabler *enabler;
1033
1034 enabler = zmalloc(sizeof(*enabler));
1035 if (!enabler)
1036 return NULL;
1037 enabler->type = type;
1038 CDS_INIT_LIST_HEAD(&enabler->filter_bytecode_head);
1039 CDS_INIT_LIST_HEAD(&enabler->excluder_head);
1040 memcpy(&enabler->event_param, event_param,
1041 sizeof(enabler->event_param));
1042 enabler->chan = chan;
1043 /* ctx left NULL */
1044 enabler->enabled = 0;
1045 cds_list_add(&enabler->node, &enabler->chan->session->enablers_head);
1046 lttng_session_lazy_sync_enablers(enabler->chan->session);
1047 return enabler;
1048 }
1049
1050 int lttng_enabler_enable(struct lttng_enabler *enabler)
1051 {
1052 enabler->enabled = 1;
1053 lttng_session_lazy_sync_enablers(enabler->chan->session);
1054 return 0;
1055 }
1056
1057 int lttng_enabler_disable(struct lttng_enabler *enabler)
1058 {
1059 enabler->enabled = 0;
1060 lttng_session_lazy_sync_enablers(enabler->chan->session);
1061 return 0;
1062 }
1063
1064 int lttng_enabler_attach_bytecode(struct lttng_enabler *enabler,
1065 struct lttng_ust_filter_bytecode_node *bytecode)
1066 {
1067 bytecode->enabler = enabler;
1068 cds_list_add_tail(&bytecode->node, &enabler->filter_bytecode_head);
1069 lttng_session_lazy_sync_enablers(enabler->chan->session);
1070 return 0;
1071 }
1072
1073 int lttng_enabler_attach_exclusion(struct lttng_enabler *enabler,
1074 struct lttng_ust_excluder_node *excluder)
1075 {
1076 excluder->enabler = enabler;
1077 cds_list_add_tail(&excluder->node, &enabler->excluder_head);
1078 lttng_session_lazy_sync_enablers(enabler->chan->session);
1079 return 0;
1080 }
1081
1082 int lttng_attach_context(struct lttng_ust_context *context_param,
1083 union ust_args *uargs,
1084 struct lttng_ctx **ctx, struct lttng_session *session)
1085 {
1086 /*
1087 * We cannot attach a context after trace has been started for a
1088 * session because the metadata does not allow expressing this
1089 * information outside of the original channel scope.
1090 */
1091 if (session->been_active)
1092 return -EPERM;
1093
1094 switch (context_param->ctx) {
1095 case LTTNG_UST_CONTEXT_PTHREAD_ID:
1096 return lttng_add_pthread_id_to_ctx(ctx);
1097 case LTTNG_UST_CONTEXT_PERF_THREAD_COUNTER:
1098 {
1099 struct lttng_ust_perf_counter_ctx *perf_ctx_param;
1100
1101 perf_ctx_param = &context_param->u.perf_counter;
1102 return lttng_add_perf_counter_to_ctx(
1103 perf_ctx_param->type,
1104 perf_ctx_param->config,
1105 perf_ctx_param->name,
1106 ctx);
1107 }
1108 case LTTNG_UST_CONTEXT_VTID:
1109 return lttng_add_vtid_to_ctx(ctx);
1110 case LTTNG_UST_CONTEXT_VPID:
1111 return lttng_add_vpid_to_ctx(ctx);
1112 case LTTNG_UST_CONTEXT_PROCNAME:
1113 return lttng_add_procname_to_ctx(ctx);
1114 case LTTNG_UST_CONTEXT_IP:
1115 return lttng_add_ip_to_ctx(ctx);
1116 case LTTNG_UST_CONTEXT_CPU_ID:
1117 return lttng_add_cpu_id_to_ctx(ctx);
1118 case LTTNG_UST_CONTEXT_APP_CONTEXT:
1119 return lttng_ust_add_app_context_to_ctx_rcu(uargs->app_context.ctxname,
1120 ctx);
1121 default:
1122 return -EINVAL;
1123 }
1124 }
1125
1126 int lttng_enabler_attach_context(struct lttng_enabler *enabler,
1127 struct lttng_ust_context *context_param)
1128 {
1129 #if 0 // disabled for now.
1130 struct lttng_session *session = enabler->chan->session;
1131 int ret;
1132
1133 ret = lttng_attach_context(context_param, &enabler->ctx,
1134 session);
1135 if (ret)
1136 return ret;
1137 lttng_session_lazy_sync_enablers(enabler->chan->session);
1138 #endif
1139 return -ENOSYS;
1140 }
1141
1142 static
1143 void lttng_enabler_destroy(struct lttng_enabler *enabler)
1144 {
1145 struct lttng_ust_filter_bytecode_node *filter_node, *tmp_filter_node;
1146 struct lttng_ust_excluder_node *excluder_node, *tmp_excluder_node;
1147
1148 /* Destroy filter bytecode */
1149 cds_list_for_each_entry_safe(filter_node, tmp_filter_node,
1150 &enabler->filter_bytecode_head, node) {
1151 free(filter_node);
1152 }
1153
1154 /* Destroy excluders */
1155 cds_list_for_each_entry_safe(excluder_node, tmp_excluder_node,
1156 &enabler->excluder_head, node) {
1157 free(excluder_node);
1158 }
1159
1160 /* Destroy contexts */
1161 lttng_destroy_context(enabler->ctx);
1162
1163 cds_list_del(&enabler->node);
1164 free(enabler);
1165 }
1166
1167 /*
1168 * lttng_session_sync_enablers should be called just before starting a
1169 * session.
1170 */
1171 static
1172 void lttng_session_sync_enablers(struct lttng_session *session)
1173 {
1174 struct lttng_enabler *enabler;
1175 struct lttng_event *event;
1176
1177 cds_list_for_each_entry(enabler, &session->enablers_head, node)
1178 lttng_enabler_ref_events(enabler);
1179 /*
1180 * For each event, if at least one of its enablers is enabled,
1181 * and its channel and session transient states are enabled, we
1182 * enable the event, else we disable it.
1183 */
1184 cds_list_for_each_entry(event, &session->events_head, node) {
1185 struct lttng_enabler_ref *enabler_ref;
1186 struct lttng_bytecode_runtime *runtime;
1187 int enabled = 0, has_enablers_without_bytecode = 0;
1188
1189 /* Enable events */
1190 cds_list_for_each_entry(enabler_ref,
1191 &event->enablers_ref_head, node) {
1192 if (enabler_ref->ref->enabled) {
1193 enabled = 1;
1194 break;
1195 }
1196 }
1197 /*
1198 * Enabled state is based on union of enablers, with
1199 * intesection of session and channel transient enable
1200 * states.
1201 */
1202 enabled = enabled && session->tstate && event->chan->tstate;
1203
1204 CMM_STORE_SHARED(event->enabled, enabled);
1205 /*
1206 * Sync tracepoint registration with event enabled
1207 * state.
1208 */
1209 if (enabled) {
1210 if (!event->registered)
1211 register_event(event);
1212 } else {
1213 if (event->registered)
1214 unregister_event(event);
1215 }
1216
1217 /* Check if has enablers without bytecode enabled */
1218 cds_list_for_each_entry(enabler_ref,
1219 &event->enablers_ref_head, node) {
1220 if (enabler_ref->ref->enabled
1221 && cds_list_empty(&enabler_ref->ref->filter_bytecode_head)) {
1222 has_enablers_without_bytecode = 1;
1223 break;
1224 }
1225 }
1226 event->has_enablers_without_bytecode =
1227 has_enablers_without_bytecode;
1228
1229 /* Enable filters */
1230 cds_list_for_each_entry(runtime,
1231 &event->bytecode_runtime_head, node) {
1232 lttng_filter_sync_state(runtime);
1233 }
1234 }
1235 __tracepoint_probe_prune_release_queue();
1236 }
1237
1238 /*
1239 * Apply enablers to session events, adding events to session if need
1240 * be. It is required after each modification applied to an active
1241 * session, and right before session "start".
1242 * "lazy" sync means we only sync if required.
1243 */
1244 static
1245 void lttng_session_lazy_sync_enablers(struct lttng_session *session)
1246 {
1247 /* We can skip if session is not active */
1248 if (!session->active)
1249 return;
1250 lttng_session_sync_enablers(session);
1251 }
1252
1253 /*
1254 * Update all sessions with the given app context.
1255 * Called with ust lock held.
1256 * This is invoked when an application context gets loaded/unloaded. It
1257 * ensures the context callbacks are in sync with the application
1258 * context (either app context callbacks, or dummy callbacks).
1259 */
1260 void lttng_ust_context_set_session_provider(const char *name,
1261 size_t (*get_size)(struct lttng_ctx_field *field, size_t offset),
1262 void (*record)(struct lttng_ctx_field *field,
1263 struct lttng_ust_lib_ring_buffer_ctx *ctx,
1264 struct lttng_channel *chan),
1265 void (*get_value)(struct lttng_ctx_field *field,
1266 struct lttng_ctx_value *value))
1267 {
1268 struct lttng_session *session;
1269
1270 cds_list_for_each_entry(session, &sessions, node) {
1271 struct lttng_channel *chan;
1272 struct lttng_event *event;
1273 int ret;
1274
1275 ret = lttng_ust_context_set_provider_rcu(&session->ctx,
1276 name, get_size, record, get_value);
1277 if (ret)
1278 abort();
1279 cds_list_for_each_entry(chan, &session->chan_head, node) {
1280 ret = lttng_ust_context_set_provider_rcu(&chan->ctx,
1281 name, get_size, record, get_value);
1282 if (ret)
1283 abort();
1284 }
1285 cds_list_for_each_entry(event, &session->events_head, node) {
1286 ret = lttng_ust_context_set_provider_rcu(&event->ctx,
1287 name, get_size, record, get_value);
1288 if (ret)
1289 abort();
1290 }
1291 }
1292 }
This page took 0.055787 seconds and 4 git commands to generate.