Rename struct lib_ring_buffer_ctx to struct lttng_kernel_ring_buffer_ctx
[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_channel *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 lib_ring_buffer_align_ctx(ctx, lttng_alignof(vpid));
44 chan->ops->event_write(ctx, &vpid, sizeof(vpid));
45 }
46
47 static
48 void vpid_get_value(void *priv,
49 struct lttng_kernel_probe_ctx *lttng_probe_ctx,
50 struct lttng_ctx_value *value)
51 {
52 pid_t vpid;
53
54 /*
55 * nsproxy can be NULL when scheduled out of exit.
56 */
57 if (!current->nsproxy)
58 vpid = 0;
59 else
60 vpid = task_tgid_vnr(current);
61 value->u.s64 = vpid;
62 }
63
64 static const struct lttng_kernel_ctx_field *ctx_field = lttng_kernel_static_ctx_field(
65 lttng_kernel_static_event_field("vpid",
66 lttng_kernel_static_type_integer_from_type(pid_t, __BYTE_ORDER, 10),
67 false, false, false),
68 vpid_get_size,
69 vpid_record,
70 vpid_get_value,
71 NULL, NULL);
72
73 int lttng_add_vpid_to_ctx(struct lttng_kernel_ctx **ctx)
74 {
75 int ret;
76
77 if (lttng_kernel_find_context(*ctx, ctx_field->event_field->name))
78 return -EEXIST;
79 ret = lttng_kernel_context_append(ctx, ctx_field);
80 wrapper_vmalloc_sync_mappings();
81 return ret;
82 }
83 EXPORT_SYMBOL_GPL(lttng_add_vpid_to_ctx);
This page took 0.033898 seconds and 4 git commands to generate.