Move alignment into event write callback
[lttng-modules.git] / src / lttng-context-time-ns.c
CommitLineData
876e2e92
MJ
1/* SPDX-License-Identifier: (GPL-2.0-only or LGPL-2.1-only)
2 *
3 * lttng-context-time-ns.c
4 *
5 * LTTng time namespace context.
6 *
7 * Copyright (C) 2009-2012 Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
8 * 2020 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/nsproxy.h>
16#include <linux/time_namespace.h>
17#include <lttng/events.h>
437d5aa5 18#include <lttng/events-internal.h>
876e2e92
MJ
19#include <ringbuffer/frontend_types.h>
20#include <wrapper/vmalloc.h>
21#include <wrapper/namespace.h>
22#include <lttng/tracer.h>
23
24#if defined(CONFIG_TIME_NS)
25
26static
a92e844e 27size_t time_ns_get_size(void *priv, struct lttng_kernel_probe_ctx *probe_ctx, size_t offset)
876e2e92
MJ
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
a92e844e 37void time_ns_record(void *priv, struct lttng_kernel_probe_ctx *probe_ctx,
8a57ec02 38 struct lttng_kernel_ring_buffer_ctx *ctx,
f7d06400 39 struct lttng_kernel_channel_buffer *chan)
876e2e92
MJ
40{
41 unsigned int time_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 time_ns_inum = current->nsproxy->time_ns->lttng_ns_inum;
52
f5ffbd77 53 chan->ops->event_write(ctx, &time_ns_inum, sizeof(time_ns_inum), lttng_alignof(time_ns_inum));
876e2e92
MJ
54}
55
56static
2dc781e0 57void time_ns_get_value(void *priv,
a92e844e 58 struct lttng_kernel_probe_ctx *lttng_probe_ctx,
2dc781e0 59 struct lttng_ctx_value *value)
876e2e92
MJ
60{
61 unsigned int time_ns_inum = 0;
62
63 /*
64 * nsproxy can be NULL when scheduled out of exit.
65 *
66 * As documented in 'linux/nsproxy.h' namespaces access rules, no
67 * precautions should be taken when accessing the current task's
68 * namespaces, just dereference the pointers.
69 */
70 if (current->nsproxy)
71 time_ns_inum = current->nsproxy->time_ns->lttng_ns_inum;
72
2dc781e0 73 value->u.s64 = time_ns_inum;
876e2e92
MJ
74}
75
437d5aa5
MD
76static const struct lttng_kernel_ctx_field *ctx_field = lttng_kernel_static_ctx_field(
77 lttng_kernel_static_event_field("time_ns",
78 lttng_kernel_static_type_integer_from_type(unsigned int, __BYTE_ORDER, 10),
79 false, false, false),
80 time_ns_get_size,
437d5aa5
MD
81 time_ns_record,
82 time_ns_get_value,
83 NULL, NULL);
84
85int lttng_add_time_ns_to_ctx(struct lttng_kernel_ctx **ctx)
876e2e92 86{
437d5aa5 87 int ret;
876e2e92 88
437d5aa5 89 if (lttng_kernel_find_context(*ctx, ctx_field->event_field->name))
876e2e92 90 return -EEXIST;
437d5aa5 91 ret = lttng_kernel_context_append(ctx, ctx_field);
876e2e92 92 wrapper_vmalloc_sync_mappings();
437d5aa5 93 return ret;
876e2e92
MJ
94}
95EXPORT_SYMBOL_GPL(lttng_add_time_ns_to_ctx);
96
97#endif
This page took 0.035012 seconds and 4 git commands to generate.