Cleanup: use DEFINE_URCU_TLS_INIT for all CONFIG_RCU_TLS configurations
[lttng-ust.git] / liblttng-ust / lttng-context-ipc-ns.c
CommitLineData
735bef47
MJ
1/*
2 * lttng-context-ipc-ns.c
3 *
4 * LTTng UST ipc 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
b4051ad8 25#include <stddef.h>
735bef47
MJ
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
735bef47
MJ
37/*
38 * We cache the result to ensure we don't stat(2) the proc filesystem on
39 * each event.
40 */
a251a209 41static DEFINE_URCU_TLS_INIT(ino_t, cached_ipc_ns, NS_INO_UNINITIALIZED);
735bef47
MJ
42
43static
44ino_t get_ipc_ns(void)
45{
46 struct stat sb;
47 ino_t ipc_ns;
48
49 ipc_ns = CMM_LOAD_SHARED(URCU_TLS(cached_ipc_ns));
50
51 /*
52 * If the cache is populated, do nothing and return the
53 * cached inode number.
54 */
55 if (caa_likely(ipc_ns != NS_INO_UNINITIALIZED))
56 return ipc_ns;
57
58 /*
59 * At this point we have to populate the cache, set the initial
60 * value to NS_INO_UNAVAILABLE (0), if we fail to get the inode
61 * number from the proc filesystem, this is the value we will
62 * cache.
63 */
64 ipc_ns = NS_INO_UNAVAILABLE;
65
66 /*
67 * /proc/thread-self was introduced in kernel v3.17
68 */
69 if (stat("/proc/thread-self/ns/ipc", &sb) == 0) {
70 ipc_ns = sb.st_ino;
71 } else {
72 char proc_ns_path[LTTNG_PROC_NS_PATH_MAX];
73
74 if (snprintf(proc_ns_path, LTTNG_PROC_NS_PATH_MAX,
75 "/proc/self/task/%d/ns/ipc",
76 lttng_gettid()) >= 0) {
77
78 if (stat(proc_ns_path, &sb) == 0) {
79 ipc_ns = sb.st_ino;
80 }
81 }
82 }
83
84 /*
85 * And finally, store the inode number in the cache.
86 */
87 CMM_STORE_SHARED(URCU_TLS(cached_ipc_ns), ipc_ns);
88
89 return ipc_ns;
90}
91
92/*
93 * The ipc namespace can change for 3 reasons
94 * * clone(2) called with CLONE_NEWIPC
95 * * setns(2) called with the fd of a different ipc ns
96 * * unshare(2) called with CLONE_NEWIPC
97 */
98void lttng_context_ipc_ns_reset(void)
99{
100 CMM_STORE_SHARED(URCU_TLS(cached_ipc_ns), NS_INO_UNINITIALIZED);
101}
102
103static
104size_t ipc_ns_get_size(struct lttng_ctx_field *field, size_t offset)
105{
106 size_t size = 0;
107
108 size += lib_ring_buffer_align(offset, lttng_alignof(ino_t));
109 size += sizeof(ino_t);
110 return size;
111}
112
113static
114void ipc_ns_record(struct lttng_ctx_field *field,
115 struct lttng_ust_lib_ring_buffer_ctx *ctx,
116 struct lttng_channel *chan)
117{
118 ino_t ipc_ns;
119
120 ipc_ns = get_ipc_ns();
121 lib_ring_buffer_align_ctx(ctx, lttng_alignof(ipc_ns));
122 chan->ops->event_write(ctx, &ipc_ns, sizeof(ipc_ns));
123}
124
125static
126void ipc_ns_get_value(struct lttng_ctx_field *field,
127 struct lttng_ctx_value *value)
128{
129 value->u.s64 = get_ipc_ns();
130}
131
132int lttng_add_ipc_ns_to_ctx(struct lttng_ctx **ctx)
133{
134 struct lttng_ctx_field *field;
135
136 field = lttng_append_context(ctx);
137 if (!field)
138 return -ENOMEM;
139 if (lttng_find_context(*ctx, "ipc_ns")) {
140 lttng_remove_context_field(ctx, field);
141 return -EEXIST;
142 }
143 field->event_field.name = "ipc_ns";
144 field->event_field.type.atype = atype_integer;
145 field->event_field.type.u.basic.integer.size = sizeof(ino_t) * CHAR_BIT;
146 field->event_field.type.u.basic.integer.alignment = lttng_alignof(ino_t) * CHAR_BIT;
147 field->event_field.type.u.basic.integer.signedness = lttng_is_signed_type(ino_t);
148 field->event_field.type.u.basic.integer.reverse_byte_order = 0;
149 field->event_field.type.u.basic.integer.base = 10;
150 field->event_field.type.u.basic.integer.encoding = lttng_encode_none;
151 field->get_size = ipc_ns_get_size;
152 field->record = ipc_ns_record;
153 field->get_value = ipc_ns_get_value;
154 lttng_context_update(*ctx);
155 return 0;
156}
157
158/*
159 * * Force a read (imply TLS fixup for dlopen) of TLS variables.
160 * */
161void lttng_fixup_ipc_ns_tls(void)
162{
163 asm volatile ("" : : "m" (URCU_TLS(cached_ipc_ns)));
164}
This page took 0.028659 seconds and 4 git commands to generate.