Move alignment into event write callback
[lttng-modules.git] / src / lttng-context-vpid.c
1 /* SPDX-License-Identifier: (GPL-2.0-only or LGPL-2.1-only)
2 *
3 * lttng-context-vpid.c
4 *
5 * LTTng vPID context.
6 *
7 * Copyright (C) 2009-2012 Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
8 */
9
10 #include <linux/module.h>
11 #include <linux/slab.h>
12 #include <linux/sched.h>
13 #include <lttng/events.h>
14 #include <lttng/events-internal.h>
15 #include <ringbuffer/frontend_types.h>
16 #include <wrapper/vmalloc.h>
17 #include <lttng/tracer.h>
18
19 static
20 size_t vpid_get_size(void *priv, struct lttng_kernel_probe_ctx *probe_ctx, size_t offset)
21 {
22 size_t size = 0;
23
24 size += lib_ring_buffer_align(offset, lttng_alignof(pid_t));
25 size += sizeof(pid_t);
26 return size;
27 }
28
29 static
30 void vpid_record(void *priv, struct lttng_kernel_probe_ctx *probe_ctx,
31 struct lttng_kernel_ring_buffer_ctx *ctx,
32 struct lttng_kernel_channel_buffer *chan)
33 {
34 pid_t vpid;
35
36 /*
37 * nsproxy can be NULL when scheduled out of exit.
38 */
39 if (!current->nsproxy)
40 vpid = 0;
41 else
42 vpid = task_tgid_vnr(current);
43 chan->ops->event_write(ctx, &vpid, sizeof(vpid), lttng_alignof(vpid));
44 }
45
46 static
47 void vpid_get_value(void *priv,
48 struct lttng_kernel_probe_ctx *lttng_probe_ctx,
49 struct lttng_ctx_value *value)
50 {
51 pid_t vpid;
52
53 /*
54 * nsproxy can be NULL when scheduled out of exit.
55 */
56 if (!current->nsproxy)
57 vpid = 0;
58 else
59 vpid = task_tgid_vnr(current);
60 value->u.s64 = vpid;
61 }
62
63 static const struct lttng_kernel_ctx_field *ctx_field = lttng_kernel_static_ctx_field(
64 lttng_kernel_static_event_field("vpid",
65 lttng_kernel_static_type_integer_from_type(pid_t, __BYTE_ORDER, 10),
66 false, false, false),
67 vpid_get_size,
68 vpid_record,
69 vpid_get_value,
70 NULL, NULL);
71
72 int lttng_add_vpid_to_ctx(struct lttng_kernel_ctx **ctx)
73 {
74 int ret;
75
76 if (lttng_kernel_find_context(*ctx, ctx_field->event_field->name))
77 return -EEXIST;
78 ret = lttng_kernel_context_append(ctx, ctx_field);
79 wrapper_vmalloc_sync_mappings();
80 return ret;
81 }
82 EXPORT_SYMBOL_GPL(lttng_add_vpid_to_ctx);
This page took 0.030217 seconds and 4 git commands to generate.