Refactoring: type description structures
[lttng-modules.git] / src / lttng-context-uts-ns.c
CommitLineData
b7cdc182 1/* SPDX-License-Identifier: (GPL-2.0-only or LGPL-2.1-only)
a6cf40a4
MJ
2 *
3 * lttng-context-uts-ns.c
4 *
5 * LTTng uts 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/utsname.h>
2df37e95 16#include <lttng/events.h>
437d5aa5 17#include <lttng/events-internal.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(CONFIG_UTS_NS) && \
5f4c791e 24 (LTTNG_LINUX_VERSION_CODE >= LTTNG_KERNEL_VERSION(3,8,0))
a6cf40a4
MJ
25
26static
27size_t uts_ns_get_size(size_t offset)
28{
29 size_t size = 0;
30
31 size += lib_ring_buffer_align(offset, lttng_alignof(unsigned int));
32 size += sizeof(unsigned int);
33 return size;
34}
35
36static
437d5aa5 37void uts_ns_record(struct lttng_kernel_ctx_field *field,
a6cf40a4
MJ
38 struct lib_ring_buffer_ctx *ctx,
39 struct lttng_channel *chan)
40{
41 unsigned int uts_ns_inum = 0;
42
43 /*
44 * nsproxy can be NULL when scheduled out of exit.
45 *
46 * As documented in 'linux/nsproxy.h' namespaces access rules, no
47 * precautions should be taken when accessing the current task's
48 * namespaces, just dereference the pointers.
49 */
50 if (current->nsproxy)
51 uts_ns_inum = current->nsproxy->uts_ns->lttng_ns_inum;
52
53 lib_ring_buffer_align_ctx(ctx, lttng_alignof(uts_ns_inum));
54 chan->ops->event_write(ctx, &uts_ns_inum, sizeof(uts_ns_inum));
55}
56
57static
437d5aa5 58void uts_ns_get_value(struct lttng_kernel_ctx_field *field,
a6cf40a4
MJ
59 struct lttng_probe_ctx *lttng_probe_ctx,
60 union lttng_ctx_value *value)
61{
62 unsigned int uts_ns_inum = 0;
63
64 /*
65 * nsproxy can be NULL when scheduled out of exit.
66 *
67 * As documented in 'linux/nsproxy.h' namespaces access rules, no
68 * precautions should be taken when accessing the current task's
69 * namespaces, just dereference the pointers.
70 */
71 if (current->nsproxy)
72 uts_ns_inum = current->nsproxy->uts_ns->lttng_ns_inum;
73
74 value->s64 = uts_ns_inum;
75}
76
437d5aa5
MD
77static const struct lttng_kernel_ctx_field *ctx_field = lttng_kernel_static_ctx_field(
78 lttng_kernel_static_event_field("uts_ns",
79 lttng_kernel_static_type_integer_from_type(unsigned int, __BYTE_ORDER, 10),
80 false, false, false),
81 uts_ns_get_size,
82 NULL,
83 uts_ns_record,
84 uts_ns_get_value,
85 NULL, NULL);
86
87int lttng_add_uts_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_uts_ns_to_ctx);
98
99#endif
This page took 0.036823 seconds and 4 git commands to generate.