Move alignment into event write callback
[lttng-modules.git] / src / lttng-context-mnt-ns.c
CommitLineData
b7cdc182 1/* SPDX-License-Identifier: (GPL-2.0-only or LGPL-2.1-only)
a6cf40a4
MJ
2 *
3 * lttng-context-mnt-ns.c
4 *
5 * LTTng mount namespace context.
6 *
7 * Copyright (C) 2009-2012 Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
8 * 2019 Michael Jeanson <mjeanson@efficios.com>
9 *
10 */
11
12#include <linux/module.h>
13#include <linux/slab.h>
14#include <linux/sched.h>
2df37e95 15#include <lttng/events.h>
437d5aa5 16#include <lttng/events-internal.h>
7b1edb4c 17#include <linux/nsproxy.h>
24591303 18#include <ringbuffer/frontend_types.h>
a6cf40a4
MJ
19#include <wrapper/vmalloc.h>
20#include <wrapper/namespace.h>
2df37e95 21#include <lttng/tracer.h>
a6cf40a4
MJ
22
23#if !defined(LTTNG_MNT_NS_MISSING_HEADER) && \
5f4c791e 24 (LTTNG_LINUX_VERSION_CODE >= LTTNG_KERNEL_VERSION(3,8,0))
a6cf40a4
MJ
25
26#include <../fs/mount.h>
27
28static
a92e844e 29size_t mnt_ns_get_size(void *priv, struct lttng_kernel_probe_ctx *probe_ctx, size_t offset)
a6cf40a4
MJ
30{
31 size_t size = 0;
32
33 size += lib_ring_buffer_align(offset, lttng_alignof(unsigned int));
34 size += sizeof(unsigned int);
35 return size;
36}
37
38static
a92e844e 39void mnt_ns_record(void *priv, struct lttng_kernel_probe_ctx *probe_ctx,
8a57ec02 40 struct lttng_kernel_ring_buffer_ctx *ctx,
f7d06400 41 struct lttng_kernel_channel_buffer *chan)
a6cf40a4
MJ
42{
43 unsigned int mnt_ns_inum = 0;
44
45 /*
46 * nsproxy can be NULL when scheduled out of exit.
47 *
48 * As documented in 'linux/nsproxy.h' namespaces access rules, no
49 * precautions should be taken when accessing the current task's
50 * namespaces, just dereference the pointers.
51 */
52 if (current->nsproxy)
53 mnt_ns_inum = current->nsproxy->mnt_ns->lttng_ns_inum;
54
f5ffbd77 55 chan->ops->event_write(ctx, &mnt_ns_inum, sizeof(mnt_ns_inum), lttng_alignof(mnt_ns_inum));
a6cf40a4
MJ
56}
57
58static
2dc781e0 59void mnt_ns_get_value(void *priv,
a92e844e 60 struct lttng_kernel_probe_ctx *lttng_probe_ctx,
2dc781e0 61 struct lttng_ctx_value *value)
a6cf40a4
MJ
62{
63 unsigned int mnt_ns_inum = 0;
64
65 /*
66 * nsproxy can be NULL when scheduled out of exit.
67 *
68 * As documented in 'linux/nsproxy.h' namespaces access rules, no
69 * precautions should be taken when accessing the current task's
70 * namespaces, just dereference the pointers.
71 */
72 if (current->nsproxy)
73 mnt_ns_inum = current->nsproxy->mnt_ns->lttng_ns_inum;
74
2dc781e0 75 value->u.s64 = mnt_ns_inum;
a6cf40a4
MJ
76}
77
437d5aa5
MD
78static const struct lttng_kernel_ctx_field *ctx_field = lttng_kernel_static_ctx_field(
79 lttng_kernel_static_event_field("mnt_ns",
80 lttng_kernel_static_type_integer_from_type(unsigned int, __BYTE_ORDER, 10),
81 false, false, false),
82 mnt_ns_get_size,
437d5aa5
MD
83 mnt_ns_record,
84 mnt_ns_get_value,
85 NULL, NULL);
86
87int lttng_add_mnt_ns_to_ctx(struct lttng_kernel_ctx **ctx)
a6cf40a4 88{
437d5aa5 89 int ret;
a6cf40a4 90
437d5aa5 91 if (lttng_kernel_find_context(*ctx, ctx_field->event_field->name))
a6cf40a4 92 return -EEXIST;
437d5aa5 93 ret = lttng_kernel_context_append(ctx, ctx_field);
263b6c88 94 wrapper_vmalloc_sync_mappings();
437d5aa5 95 return ret;
a6cf40a4
MJ
96}
97EXPORT_SYMBOL_GPL(lttng_add_mnt_ns_to_ctx);
98
99#endif
This page took 0.039011 seconds and 4 git commands to generate.