cd9e2bc1f1de694ae3e04c3dae470d44fa1b896f
[lttng-ust.git] / liblttng-ust / lttng-context-cgroup-ns.c
1 /*
2 * lttng-context-cgroup-ns.c
3 *
4 * LTTng UST cgroup namespace context.
5 *
6 * Copyright (C) 2009-2012 Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
7 * 2019 Michael Jeanson <mjeanson@efficios.com>
8 *
9 * This library is free software; you can redistribute it and/or
10 * modify it under the terms of the GNU Lesser General Public
11 * License as published by the Free Software Foundation; only
12 * version 2.1 of the License.
13 *
14 * This library is distributed in the hope that it will be useful,
15 * but WITHOUT ANY WARRANTY; without even the implied warranty of
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
17 * Lesser General Public License for more details.
18 *
19 * You should have received a copy of the GNU Lesser General Public
20 * License along with this library; if not, write to the Free Software
21 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
22 */
23
24 #define _LGPL_SOURCE
25 #include <stddef.h>
26 #include <sys/types.h>
27 #include <sys/stat.h>
28 #include <unistd.h>
29 #include <lttng/ust-events.h>
30 #include <lttng/ust-tracer.h>
31 #include <lttng/ringbuffer-config.h>
32 #include <lttng/ust-tid.h>
33 #include <urcu/tls-compat.h>
34 #include "lttng-tracer-core.h"
35 #include "ns.h"
36
37
38 /*
39 * We cache the result to ensure we don't stat(2) the proc filesystem on
40 * each event.
41 */
42 #ifdef CONFIG_RCU_TLS
43 static DEFINE_URCU_TLS(ino_t, cached_cgroup_ns) = NS_INO_UNINITIALIZED;
44 #else
45 static DEFINE_URCU_TLS_INIT(ino_t, cached_cgroup_ns, NS_INO_UNINITIALIZED);
46 #endif
47
48 static
49 ino_t get_cgroup_ns(void)
50 {
51 struct stat sb;
52 ino_t cgroup_ns;
53
54 cgroup_ns = CMM_LOAD_SHARED(URCU_TLS(cached_cgroup_ns));
55
56 /*
57 * If the cache is populated, do nothing and return the
58 * cached inode number.
59 */
60 if (caa_likely(cgroup_ns != NS_INO_UNINITIALIZED))
61 return cgroup_ns;
62
63 /*
64 * At this point we have to populate the cache, set the initial
65 * value to NS_INO_UNAVAILABLE (0), if we fail to get the inode
66 * number from the proc filesystem, this is the value we will
67 * cache.
68 */
69 cgroup_ns = NS_INO_UNAVAILABLE;
70
71 /*
72 * /proc/thread-self was introduced in kernel v3.17
73 */
74 if (stat("/proc/thread-self/ns/cgroup", &sb) == 0) {
75 cgroup_ns = sb.st_ino;
76 } else {
77 char proc_ns_path[LTTNG_PROC_NS_PATH_MAX];
78
79 if (snprintf(proc_ns_path, LTTNG_PROC_NS_PATH_MAX,
80 "/proc/self/task/%d/ns/cgroup",
81 lttng_gettid()) >= 0) {
82
83 if (stat(proc_ns_path, &sb) == 0) {
84 cgroup_ns = sb.st_ino;
85 }
86 }
87 }
88
89 /*
90 * And finally, store the inode number in the cache.
91 */
92 CMM_STORE_SHARED(URCU_TLS(cached_cgroup_ns), cgroup_ns);
93
94 return cgroup_ns;
95 }
96
97 /*
98 * The cgroup namespace can change for 3 reasons
99 * * clone(2) called with CLONE_NEWCGROUP
100 * * setns(2) called with the fd of a different cgroup ns
101 * * unshare(2) called with CLONE_NEWCGROUP
102 */
103 void lttng_context_cgroup_ns_reset(void)
104 {
105 CMM_STORE_SHARED(URCU_TLS(cached_cgroup_ns), NS_INO_UNINITIALIZED);
106 }
107
108 static
109 size_t cgroup_ns_get_size(struct lttng_ctx_field *field, size_t offset)
110 {
111 size_t size = 0;
112
113 size += lib_ring_buffer_align(offset, lttng_alignof(ino_t));
114 size += sizeof(ino_t);
115 return size;
116 }
117
118 static
119 void cgroup_ns_record(struct lttng_ctx_field *field,
120 struct lttng_ust_lib_ring_buffer_ctx *ctx,
121 struct lttng_channel *chan)
122 {
123 ino_t cgroup_ns;
124
125 cgroup_ns = get_cgroup_ns();
126 lib_ring_buffer_align_ctx(ctx, lttng_alignof(cgroup_ns));
127 chan->ops->event_write(ctx, &cgroup_ns, sizeof(cgroup_ns));
128 }
129
130 static
131 void cgroup_ns_get_value(struct lttng_ctx_field *field,
132 struct lttng_ctx_value *value)
133 {
134 value->u.s64 = get_cgroup_ns();
135 }
136
137 int lttng_add_cgroup_ns_to_ctx(struct lttng_ctx **ctx)
138 {
139 struct lttng_ctx_field *field;
140
141 field = lttng_append_context(ctx);
142 if (!field)
143 return -ENOMEM;
144 if (lttng_find_context(*ctx, "cgroup_ns")) {
145 lttng_remove_context_field(ctx, field);
146 return -EEXIST;
147 }
148 field->event_field.name = "cgroup_ns";
149 field->event_field.type.atype = atype_integer;
150 field->event_field.type.u.basic.integer.size = sizeof(ino_t) * CHAR_BIT;
151 field->event_field.type.u.basic.integer.alignment = lttng_alignof(ino_t) * CHAR_BIT;
152 field->event_field.type.u.basic.integer.signedness = lttng_is_signed_type(ino_t);
153 field->event_field.type.u.basic.integer.reverse_byte_order = 0;
154 field->event_field.type.u.basic.integer.base = 10;
155 field->event_field.type.u.basic.integer.encoding = lttng_encode_none;
156 field->get_size = cgroup_ns_get_size;
157 field->record = cgroup_ns_record;
158 field->get_value = cgroup_ns_get_value;
159 lttng_context_update(*ctx);
160 return 0;
161 }
162
163 /*
164 * * Force a read (imply TLS fixup for dlopen) of TLS variables.
165 * */
166 void lttng_fixup_cgroup_ns_tls(void)
167 {
168 asm volatile ("" : : "m" (URCU_TLS(cached_cgroup_ns)));
169 }
This page took 0.031423 seconds and 3 git commands to generate.