Move headers under include/
[lttng-modules.git] / 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
12#include <linux/module.h>
13#include <linux/slab.h>
14#include <linux/sched.h>
7b1edb4c 15#include <linux/nsproxy.h>
a6cf40a4 16#include <net/net_namespace.h>
b5304713
MD
17#include <lttng/lttng-events.h>
18#include <ringbuffer/frontend_types.h>
19#include <lttng/lttng-tracer.h>
a6cf40a4 20
9f920259 21#if defined(CONFIG_NET_NS)
a6cf40a4
MJ
22
23static
24size_t net_ns_get_size(size_t offset)
25{
26 size_t size = 0;
27
28 size += lib_ring_buffer_align(offset, lttng_alignof(unsigned int));
29 size += sizeof(unsigned int);
30 return size;
31}
32
33static
34void net_ns_record(struct lttng_ctx_field *field,
35 struct lib_ring_buffer_ctx *ctx,
36 struct lttng_channel *chan)
37{
38 unsigned int net_ns_inum = 0;
39
40 /*
41 * nsproxy can be NULL when scheduled out of exit.
42 *
43 * As documented in 'linux/nsproxy.h' namespaces access rules, no
44 * precautions should be taken when accessing the current task's
45 * namespaces, just dereference the pointers.
46 */
47 if (current->nsproxy)
6388029c 48 net_ns_inum = current->nsproxy->net_ns->ns.inum;
a6cf40a4
MJ
49
50 lib_ring_buffer_align_ctx(ctx, lttng_alignof(net_ns_inum));
51 chan->ops->event_write(ctx, &net_ns_inum, sizeof(net_ns_inum));
52}
53
54static
55void net_ns_get_value(struct lttng_ctx_field *field,
56 struct lttng_probe_ctx *lttng_probe_ctx,
57 union lttng_ctx_value *value)
58{
59 unsigned int net_ns_inum = 0;
60
61 /*
62 * nsproxy can be NULL when scheduled out of exit.
63 *
64 * As documented in 'linux/nsproxy.h' namespaces access rules, no
65 * precautions should be taken when accessing the current task's
66 * namespaces, just dereference the pointers.
67 */
68 if (current->nsproxy)
6388029c 69 net_ns_inum = current->nsproxy->net_ns->ns.inum;
a6cf40a4
MJ
70
71 value->s64 = net_ns_inum;
72}
73
74int lttng_add_net_ns_to_ctx(struct lttng_ctx **ctx)
75{
76 struct lttng_ctx_field *field;
77
78 field = lttng_append_context(ctx);
79 if (!field)
80 return -ENOMEM;
81 if (lttng_find_context(*ctx, "net_ns")) {
82 lttng_remove_context_field(ctx, field);
83 return -EEXIST;
84 }
85 field->event_field.name = "net_ns";
86 field->event_field.type.atype = atype_integer;
ceabb767
MD
87 field->event_field.type.u.integer.size = sizeof(unsigned int) * CHAR_BIT;
88 field->event_field.type.u.integer.alignment = lttng_alignof(unsigned int) * CHAR_BIT;
89 field->event_field.type.u.integer.signedness = lttng_is_signed_type(unsigned int);
90 field->event_field.type.u.integer.reverse_byte_order = 0;
91 field->event_field.type.u.integer.base = 10;
92 field->event_field.type.u.integer.encoding = lttng_encode_none;
a6cf40a4
MJ
93 field->get_size = net_ns_get_size;
94 field->record = net_ns_record;
95 field->get_value = net_ns_get_value;
96 lttng_context_update(*ctx);
a6cf40a4
MJ
97 return 0;
98}
99EXPORT_SYMBOL_GPL(lttng_add_net_ns_to_ctx);
100
101#endif
This page took 0.027027 seconds and 4 git commands to generate.