Drop support for kernels < 4.4 from 'wrapper/splice.h'
[lttng-modules.git] / src / lttng-context-pid-ns.c
CommitLineData
b7cdc182 1/* SPDX-License-Identifier: (GPL-2.0-only or LGPL-2.1-only)
a6cf40a4
MJ
2 *
3 * lttng-context-pid-ns.c
4 *
5 * LTTng pid 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>
15#include <linux/pid_namespace.h>
2df37e95 16#include <lttng/events.h>
437d5aa5 17#include <lttng/events-internal.h>
24591303 18#include <ringbuffer/frontend_types.h>
a6cf40a4 19#include <wrapper/vmalloc.h>
2df37e95 20#include <lttng/tracer.h>
a6cf40a4
MJ
21
22#if defined(CONFIG_PID_NS) && \
5f4c791e 23 (LTTNG_LINUX_VERSION_CODE >= LTTNG_KERNEL_VERSION(3,8,0))
a6cf40a4
MJ
24
25static
a92e844e 26size_t pid_ns_get_size(void *priv, struct lttng_kernel_probe_ctx *probe_ctx, size_t offset)
a6cf40a4
MJ
27{
28 size_t size = 0;
29
30 size += lib_ring_buffer_align(offset, lttng_alignof(unsigned int));
31 size += sizeof(unsigned int);
32 return size;
33}
34
35static
a92e844e 36void pid_ns_record(void *priv, struct lttng_kernel_probe_ctx *probe_ctx,
8a57ec02 37 struct lttng_kernel_ring_buffer_ctx *ctx,
f7d06400 38 struct lttng_kernel_channel_buffer *chan)
a6cf40a4
MJ
39{
40 struct pid_namespace *ns;
41 unsigned int pid_ns_inum = 0;
42
43 /*
44 * The pid namespace is an exception -- it's accessed using
45 * task_active_pid_ns. The pid namespace in nsproxy is the
46 * namespace that children will use.
47 */
48 ns = task_active_pid_ns(current);
49
50 if (ns)
93e5bcec 51 pid_ns_inum = ns->ns.inum;
a6cf40a4 52
f5ffbd77 53 chan->ops->event_write(ctx, &pid_ns_inum, sizeof(pid_ns_inum), lttng_alignof(pid_ns_inum));
a6cf40a4
MJ
54}
55
56static
2dc781e0 57void pid_ns_get_value(void *priv,
a92e844e 58 struct lttng_kernel_probe_ctx *lttng_probe_ctx,
2dc781e0 59 struct lttng_ctx_value *value)
a6cf40a4
MJ
60{
61 struct pid_namespace *ns;
62 unsigned int pid_ns_inum = 0;
63
64 /*
65 * The pid namespace is an exception -- it's accessed using
66 * task_active_pid_ns. The pid namespace in nsproxy is the
67 * namespace that children will use.
68 */
69 ns = task_active_pid_ns(current);
70
71 if (ns)
93e5bcec 72 pid_ns_inum = ns->ns.inum;
a6cf40a4 73
2dc781e0 74 value->u.s64 = pid_ns_inum;
a6cf40a4
MJ
75}
76
437d5aa5
MD
77static const struct lttng_kernel_ctx_field *ctx_field = lttng_kernel_static_ctx_field(
78 lttng_kernel_static_event_field("pid_ns",
79 lttng_kernel_static_type_integer_from_type(unsigned int, __BYTE_ORDER, 10),
4697aac7 80 false, false),
437d5aa5 81 pid_ns_get_size,
437d5aa5
MD
82 pid_ns_record,
83 pid_ns_get_value,
84 NULL, NULL);
85
86int lttng_add_pid_ns_to_ctx(struct lttng_kernel_ctx **ctx)
a6cf40a4 87{
437d5aa5 88 int ret;
a6cf40a4 89
437d5aa5 90 if (lttng_kernel_find_context(*ctx, ctx_field->event_field->name))
a6cf40a4 91 return -EEXIST;
437d5aa5 92 ret = lttng_kernel_context_append(ctx, ctx_field);
263b6c88 93 wrapper_vmalloc_sync_mappings();
437d5aa5 94 return ret;
a6cf40a4
MJ
95}
96EXPORT_SYMBOL_GPL(lttng_add_pid_ns_to_ctx);
97
98#endif
This page took 0.053375 seconds and 4 git commands to generate.