Move lttng_ust_fixup_fd_tracker_tls to private header
[lttng-ust.git] / liblttng-ust / lttng-tracer-core.h
1 /*
2 * SPDX-License-Identifier: LGPL-2.1-only
3 *
4 * Copyright (C) 2005-2011 Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
5 *
6 * This contains the core definitions for the Linux Trace Toolkit.
7 */
8
9 #ifndef _LTTNG_TRACER_CORE_H
10 #define _LTTNG_TRACER_CORE_H
11
12 #include <stddef.h>
13 #include <urcu/arch.h>
14 #include <urcu/list.h>
15 #include <lttng/ust-tracer.h>
16 #include <lttng/bug.h>
17 #include <lttng/ringbuffer-config.h>
18 #include <usterr-signal-safe.h>
19 #include <ust-helper.h>
20
21 /*
22 * The longuest possible namespace proc path is with the cgroup ns
23 * and the maximum theoretical linux pid of 536870912 :
24 *
25 * /proc/self/task/536870912/ns/cgroup
26 */
27 #define LTTNG_PROC_NS_PATH_MAX 40
28
29 struct lttng_session;
30 struct lttng_channel;
31 struct lttng_event;
32 struct lttng_ctx_field;
33 struct lttng_ust_lib_ring_buffer_ctx;
34 struct lttng_ctx_value;
35 struct lttng_event_notifier;
36
37 int ust_lock(void) __attribute__ ((warn_unused_result));
38 void ust_lock_nocheck(void);
39 void ust_unlock(void);
40
41 void lttng_fixup_event_tls(void);
42 void lttng_fixup_vtid_tls(void);
43 void lttng_fixup_procname_tls(void);
44 void lttng_fixup_cgroup_ns_tls(void);
45 void lttng_fixup_ipc_ns_tls(void);
46 void lttng_fixup_net_ns_tls(void);
47 LTTNG_HIDDEN
48 void lttng_fixup_time_ns_tls(void);
49 void lttng_fixup_uts_ns_tls(void);
50
51 LTTNG_HIDDEN
52 void lttng_ust_fixup_fd_tracker_tls(void);
53
54 const char *lttng_ust_obj_get_name(int id);
55
56 int lttng_get_notify_socket(void *owner);
57
58 LTTNG_HIDDEN
59 char* lttng_ust_sockinfo_get_procname(void *owner);
60
61 void lttng_ust_sockinfo_session_enabled(void *owner);
62
63 void lttng_ust_malloc_wrapper_init(void);
64
65 ssize_t lttng_ust_read(int fd, void *buf, size_t len);
66
67 size_t lttng_ust_dummy_get_size(struct lttng_ctx_field *field, size_t offset);
68 void lttng_ust_dummy_record(struct lttng_ctx_field *field,
69 struct lttng_ust_lib_ring_buffer_ctx *ctx,
70 struct lttng_channel *chan);
71 void lttng_ust_dummy_get_value(struct lttng_ctx_field *field,
72 struct lttng_ctx_value *value);
73 int lttng_context_is_app(const char *name);
74 void lttng_ust_fixup_tls(void);
75
76 extern void (*lttng_ust_liburcu_bp_before_fork)(void);
77 extern void (*lttng_ust_liburcu_bp_after_fork_parent)(void);
78 extern void (*lttng_ust_liburcu_bp_after_fork_child)(void);
79
80 LTTNG_HIDDEN
81 void lttng_event_notifier_notification_send(
82 struct lttng_event_notifier *event_notifier,
83 const char *stack_data);
84
85 LTTNG_HIDDEN
86 struct lttng_counter_transport *lttng_counter_transport_find(const char *name);
87 LTTNG_HIDDEN
88 void lttng_counter_transport_register(struct lttng_counter_transport *transport);
89 LTTNG_HIDDEN
90 void lttng_counter_transport_unregister(struct lttng_counter_transport *transport);
91
92 #ifdef HAVE_PERF_EVENT
93 void lttng_ust_fixup_perf_counter_tls(void);
94 void lttng_perf_lock(void);
95 void lttng_perf_unlock(void);
96 #else /* #ifdef HAVE_PERF_EVENT */
97 static inline
98 void lttng_ust_fixup_perf_counter_tls(void)
99 {
100 }
101 static inline
102 void lttng_perf_lock(void)
103 {
104 }
105 static inline
106 void lttng_perf_unlock(void)
107 {
108 }
109 #endif /* #else #ifdef HAVE_PERF_EVENT */
110
111 #endif /* _LTTNG_TRACER_CORE_H */
This page took 0.03277 seconds and 5 git commands to generate.