Fix: timer_expire_entry changed in 4.19.312
[lttng-modules.git] / src / lttng-context-net-ns.c
CommitLineData
b7cdc182 1/* SPDX-License-Identifier: (GPL-2.0-only or LGPL-2.1-only)
a6cf40a4
MJ
2 *
3 * lttng-context-net-ns.c
4 *
5 * LTTng net namespace context.
6 *
7 * Copyright (C) 2009-2012 Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
8 * 2019 Michael Jeanson <mjeanson@efficios.com>
9 *
10 */
11
455d6bcc
MJ
12#ifdef CONFIG_NET_NS
13
a6cf40a4
MJ
14#include <linux/module.h>
15#include <linux/slab.h>
16#include <linux/sched.h>
7b1edb4c 17#include <linux/nsproxy.h>
a6cf40a4 18#include <net/net_namespace.h>
2df37e95 19#include <lttng/events.h>
0fe45627 20#include <lttng/events-internal.h>
24591303 21#include <ringbuffer/frontend_types.h>
a6cf40a4 22#include <wrapper/vmalloc.h>
2df37e95 23#include <lttng/tracer.h>
a6cf40a4 24
a6cf40a4 25static
a92e844e 26size_t net_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 net_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 unsigned int net_ns_inum = 0;
41
42 /*
43 * nsproxy can be NULL when scheduled out of exit.
44 *
45 * As documented in 'linux/nsproxy.h' namespaces access rules, no
46 * precautions should be taken when accessing the current task's
47 * namespaces, just dereference the pointers.
48 */
49 if (current->nsproxy)
93e5bcec 50 net_ns_inum = current->nsproxy->net_ns->ns.inum;
a6cf40a4 51
f5ffbd77 52 chan->ops->event_write(ctx, &net_ns_inum, sizeof(net_ns_inum), lttng_alignof(net_ns_inum));
a6cf40a4
MJ
53}
54
55static
2dc781e0 56void net_ns_get_value(void *priv,
a92e844e 57 struct lttng_kernel_probe_ctx *lttng_probe_ctx,
2dc781e0 58 struct lttng_ctx_value *value)
a6cf40a4
MJ
59{
60 unsigned int net_ns_inum = 0;
61
62 /*
63 * nsproxy can be NULL when scheduled out of exit.
64 *
65 * As documented in 'linux/nsproxy.h' namespaces access rules, no
66 * precautions should be taken when accessing the current task's
67 * namespaces, just dereference the pointers.
68 */
69 if (current->nsproxy)
93e5bcec 70 net_ns_inum = current->nsproxy->net_ns->ns.inum;
a6cf40a4 71
2dc781e0 72 value->u.s64 = net_ns_inum;
a6cf40a4
MJ
73}
74
437d5aa5
MD
75static const struct lttng_kernel_ctx_field *ctx_field = lttng_kernel_static_ctx_field(
76 lttng_kernel_static_event_field("net_ns",
77 lttng_kernel_static_type_integer_from_type(unsigned int, __BYTE_ORDER, 10),
4697aac7 78 false, false),
437d5aa5 79 net_ns_get_size,
437d5aa5
MD
80 net_ns_record,
81 net_ns_get_value,
82 NULL, NULL);
83
84int lttng_add_net_ns_to_ctx(struct lttng_kernel_ctx **ctx)
a6cf40a4 85{
437d5aa5 86 int ret;
a6cf40a4 87
437d5aa5 88 if (lttng_kernel_find_context(*ctx, ctx_field->event_field->name))
a6cf40a4 89 return -EEXIST;
437d5aa5 90 ret = lttng_kernel_context_append(ctx, ctx_field);
263b6c88 91 wrapper_vmalloc_sync_mappings();
437d5aa5 92 return ret;
a6cf40a4
MJ
93}
94EXPORT_SYMBOL_GPL(lttng_add_net_ns_to_ctx);
95
96#endif
This page took 0.048707 seconds and 4 git commands to generate.