Refactoring: struct lttng_stack_ctx
[lttng-ust.git] / liblttng-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
b4051ad8 11#include <stddef.h>
735bef47
MJ
12#include <sys/types.h>
13#include <sys/stat.h>
14#include <unistd.h>
15#include <lttng/ust-events.h>
16#include <lttng/ust-tracer.h>
17#include <lttng/ringbuffer-config.h>
ae4b659d 18#include <ust-tid.h>
735bef47 19#include <urcu/tls-compat.h>
fc80554e
MJ
20
21#include "context-internal.h"
735bef47
MJ
22#include "lttng-tracer-core.h"
23#include "ns.h"
24
25
26/*
27 * We cache the result to ensure we don't stat(2) the proc filesystem on
28 * each event.
29 */
a251a209 30static DEFINE_URCU_TLS_INIT(ino_t, cached_cgroup_ns, NS_INO_UNINITIALIZED);
735bef47
MJ
31
32static
33ino_t get_cgroup_ns(void)
34{
35 struct stat sb;
36 ino_t cgroup_ns;
37
38 cgroup_ns = CMM_LOAD_SHARED(URCU_TLS(cached_cgroup_ns));
39
40 /*
41 * If the cache is populated, do nothing and return the
42 * cached inode number.
43 */
44 if (caa_likely(cgroup_ns != NS_INO_UNINITIALIZED))
45 return cgroup_ns;
46
47 /*
48 * At this point we have to populate the cache, set the initial
49 * value to NS_INO_UNAVAILABLE (0), if we fail to get the inode
50 * number from the proc filesystem, this is the value we will
51 * cache.
52 */
53 cgroup_ns = NS_INO_UNAVAILABLE;
54
55 /*
56 * /proc/thread-self was introduced in kernel v3.17
57 */
58 if (stat("/proc/thread-self/ns/cgroup", &sb) == 0) {
59 cgroup_ns = sb.st_ino;
60 } else {
61 char proc_ns_path[LTTNG_PROC_NS_PATH_MAX];
62
63 if (snprintf(proc_ns_path, LTTNG_PROC_NS_PATH_MAX,
64 "/proc/self/task/%d/ns/cgroup",
65 lttng_gettid()) >= 0) {
66
67 if (stat(proc_ns_path, &sb) == 0) {
68 cgroup_ns = sb.st_ino;
69 }
70 }
71 }
72
73 /*
74 * And finally, store the inode number in the cache.
75 */
76 CMM_STORE_SHARED(URCU_TLS(cached_cgroup_ns), cgroup_ns);
77
78 return cgroup_ns;
79}
80
81/*
82 * The cgroup namespace can change for 3 reasons
83 * * clone(2) called with CLONE_NEWCGROUP
84 * * setns(2) called with the fd of a different cgroup ns
85 * * unshare(2) called with CLONE_NEWCGROUP
86 */
87void lttng_context_cgroup_ns_reset(void)
88{
89 CMM_STORE_SHARED(URCU_TLS(cached_cgroup_ns), NS_INO_UNINITIALIZED);
90}
91
92static
93size_t cgroup_ns_get_size(struct lttng_ctx_field *field, size_t offset)
94{
95 size_t size = 0;
96
97 size += lib_ring_buffer_align(offset, lttng_alignof(ino_t));
98 size += sizeof(ino_t);
99 return size;
100}
101
102static
103void cgroup_ns_record(struct lttng_ctx_field *field,
104 struct lttng_ust_lib_ring_buffer_ctx *ctx,
105 struct lttng_channel *chan)
106{
107 ino_t cgroup_ns;
108
109 cgroup_ns = get_cgroup_ns();
110 lib_ring_buffer_align_ctx(ctx, lttng_alignof(cgroup_ns));
111 chan->ops->event_write(ctx, &cgroup_ns, sizeof(cgroup_ns));
112}
113
114static
115void cgroup_ns_get_value(struct lttng_ctx_field *field,
116 struct lttng_ctx_value *value)
117{
118 value->u.s64 = get_cgroup_ns();
119}
120
121int lttng_add_cgroup_ns_to_ctx(struct lttng_ctx **ctx)
122{
123 struct lttng_ctx_field *field;
124
125 field = lttng_append_context(ctx);
126 if (!field)
127 return -ENOMEM;
128 if (lttng_find_context(*ctx, "cgroup_ns")) {
129 lttng_remove_context_field(ctx, field);
130 return -EEXIST;
131 }
132 field->event_field.name = "cgroup_ns";
133 field->event_field.type.atype = atype_integer;
218deb69
MD
134 field->event_field.type.u.integer.size = sizeof(ino_t) * CHAR_BIT;
135 field->event_field.type.u.integer.alignment = lttng_alignof(ino_t) * CHAR_BIT;
136 field->event_field.type.u.integer.signedness = lttng_is_signed_type(ino_t);
137 field->event_field.type.u.integer.reverse_byte_order = 0;
138 field->event_field.type.u.integer.base = 10;
139 field->event_field.type.u.integer.encoding = lttng_encode_none;
735bef47
MJ
140 field->get_size = cgroup_ns_get_size;
141 field->record = cgroup_ns_record;
142 field->get_value = cgroup_ns_get_value;
143 lttng_context_update(*ctx);
144 return 0;
145}
146
147/*
148 * * Force a read (imply TLS fixup for dlopen) of TLS variables.
149 * */
150void lttng_fixup_cgroup_ns_tls(void)
151{
152 asm volatile ("" : : "m" (URCU_TLS(cached_cgroup_ns)));
153}
This page took 0.028432 seconds and 4 git commands to generate.