lttng_ust_init_thread: initialise cached context values
[lttng-ust.git] / src / lib / lttng-ust / lttng-context-cgroup-ns.c
CommitLineData
735bef47 1/*
c0c0989a 2 * SPDX-License-Identifier: LGPL-2.1-only
735bef47
MJ
3 *
4 * Copyright (C) 2009-2012 Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
c0c0989a 5 * Copyright (C) 2019 Michael Jeanson <mjeanson@efficios.com>
735bef47 6 *
c0c0989a 7 * LTTng UST cgroup namespace context.
735bef47
MJ
8 */
9
10#define _LGPL_SOURCE
9af5d97a 11#include <limits.h>
b4051ad8 12#include <stddef.h>
735bef47
MJ
13#include <sys/types.h>
14#include <sys/stat.h>
15#include <unistd.h>
16#include <lttng/ust-events.h>
17#include <lttng/ust-tracer.h>
9d315d6d 18#include "common/compat/tid.h"
735bef47 19#include <urcu/tls-compat.h>
0b4b8811 20#include <lttng/ust-ringbuffer-context.h>
fc80554e
MJ
21
22#include "context-internal.h"
735bef47 23#include "lttng-tracer-core.h"
c5e8ef85 24#include "common/ns.h"
735bef47
MJ
25
26
27/*
28 * We cache the result to ensure we don't stat(2) the proc filesystem on
29 * each event.
30 */
a251a209 31static DEFINE_URCU_TLS_INIT(ino_t, cached_cgroup_ns, NS_INO_UNINITIALIZED);
735bef47
MJ
32
33static
34ino_t get_cgroup_ns(void)
35{
36 struct stat sb;
37 ino_t cgroup_ns;
38
39 cgroup_ns = CMM_LOAD_SHARED(URCU_TLS(cached_cgroup_ns));
40
41 /*
42 * If the cache is populated, do nothing and return the
43 * cached inode number.
44 */
45 if (caa_likely(cgroup_ns != NS_INO_UNINITIALIZED))
46 return cgroup_ns;
47
48 /*
49 * At this point we have to populate the cache, set the initial
50 * value to NS_INO_UNAVAILABLE (0), if we fail to get the inode
51 * number from the proc filesystem, this is the value we will
52 * cache.
53 */
54 cgroup_ns = NS_INO_UNAVAILABLE;
55
56 /*
57 * /proc/thread-self was introduced in kernel v3.17
58 */
59 if (stat("/proc/thread-self/ns/cgroup", &sb) == 0) {
60 cgroup_ns = sb.st_ino;
61 } else {
62 char proc_ns_path[LTTNG_PROC_NS_PATH_MAX];
63
64 if (snprintf(proc_ns_path, LTTNG_PROC_NS_PATH_MAX,
65 "/proc/self/task/%d/ns/cgroup",
66 lttng_gettid()) >= 0) {
67
68 if (stat(proc_ns_path, &sb) == 0) {
69 cgroup_ns = sb.st_ino;
70 }
71 }
72 }
73
74 /*
75 * And finally, store the inode number in the cache.
76 */
77 CMM_STORE_SHARED(URCU_TLS(cached_cgroup_ns), cgroup_ns);
78
79 return cgroup_ns;
80}
81
82/*
83 * The cgroup namespace can change for 3 reasons
84 * * clone(2) called with CLONE_NEWCGROUP
85 * * setns(2) called with the fd of a different cgroup ns
86 * * unshare(2) called with CLONE_NEWCGROUP
87 */
88void lttng_context_cgroup_ns_reset(void)
89{
90 CMM_STORE_SHARED(URCU_TLS(cached_cgroup_ns), NS_INO_UNINITIALIZED);
91}
92
93static
4e48b5d2 94size_t cgroup_ns_get_size(void *priv __attribute__((unused)),
b2e37d27 95 struct lttng_ust_probe_ctx *probe_ctx __attribute__((unused)),
2208d8b5 96 size_t offset)
735bef47
MJ
97{
98 size_t size = 0;
99
b5457df5 100 size += lttng_ust_ring_buffer_align(offset, lttng_ust_rb_alignof(ino_t));
735bef47
MJ
101 size += sizeof(ino_t);
102 return size;
103}
104
105static
4e48b5d2 106void cgroup_ns_record(void *priv __attribute__((unused)),
b2e37d27
MD
107 struct lttng_ust_probe_ctx *probe_ctx __attribute__((unused)),
108 struct lttng_ust_ring_buffer_ctx *ctx,
109 struct lttng_ust_channel_buffer *chan)
735bef47
MJ
110{
111 ino_t cgroup_ns;
112
113 cgroup_ns = get_cgroup_ns();
8936b6c0
MD
114 chan->ops->event_write(ctx, &cgroup_ns, sizeof(cgroup_ns),
115 lttng_ust_rb_alignof(cgroup_ns));
735bef47
MJ
116}
117
118static
4e48b5d2 119void cgroup_ns_get_value(void *priv __attribute__((unused)),
b2e37d27 120 struct lttng_ust_probe_ctx *probe_ctx __attribute__((unused)),
daacdbfc 121 struct lttng_ust_ctx_value *value)
735bef47 122{
b2e37d27 123 value->u.u64 = get_cgroup_ns();
735bef47
MJ
124}
125
4e48b5d2
MD
126static const struct lttng_ust_ctx_field *ctx_field = lttng_ust_static_ctx_field(
127 lttng_ust_static_event_field("cgroup_ns",
128 lttng_ust_static_type_integer(sizeof(ino_t) * CHAR_BIT,
129 lttng_ust_rb_alignof(ino_t) * CHAR_BIT,
130 lttng_ust_is_signed_type(ino_t),
baa8acf3 131 LTTNG_UST_BYTE_ORDER, 10),
4e48b5d2
MD
132 false, false),
133 cgroup_ns_get_size,
134 cgroup_ns_record,
135 cgroup_ns_get_value,
136 NULL, NULL);
137
daacdbfc 138int lttng_add_cgroup_ns_to_ctx(struct lttng_ust_ctx **ctx)
735bef47 139{
a084756d
MD
140 int ret;
141
4e48b5d2 142 if (lttng_find_context(*ctx, ctx_field->event_field->name)) {
a084756d
MD
143 ret = -EEXIST;
144 goto error_find_context;
145 }
4e48b5d2
MD
146 ret = lttng_ust_context_append(ctx, ctx_field);
147 if (ret)
148 return ret;
735bef47 149 return 0;
a084756d 150
a084756d 151error_find_context:
a084756d 152 return ret;
735bef47
MJ
153}
154
155/*
a9fd951a
MJ
156 * Force a read (imply TLS allocation for dlopen) of TLS variables.
157 */
c246521d 158void lttng_ust_cgroup_ns_init_thread(int flags)
735bef47
MJ
159{
160 asm volatile ("" : : "m" (URCU_TLS(cached_cgroup_ns)));
c246521d
NL
161 if (flags & LTTNG_UST_INIT_THREAD_CONTEXT_CACHE)
162 (void)get_cgroup_ns();
735bef47 163}
This page took 0.038568 seconds and 4 git commands to generate.