Fix: timer_expire_entry changed in 4.19.312
[lttng-modules.git] / src / lttng-context-vppid.c
CommitLineData
b7cdc182 1/* SPDX-License-Identifier: (GPL-2.0-only or LGPL-2.1-only)
9f36eaed 2 *
886d51a3 3 * lttng-context-vppid.c
b64bc438
MD
4 *
5 * LTTng vPPID context.
6 *
886d51a3 7 * Copyright (C) 2009-2012 Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
b64bc438
MD
8 */
9
10#include <linux/module.h>
11#include <linux/slab.h>
12#include <linux/sched.h>
13#include <linux/syscalls.h>
2df37e95 14#include <lttng/events.h>
437d5aa5 15#include <lttng/events-internal.h>
24591303 16#include <ringbuffer/frontend_types.h>
241ae9a8 17#include <wrapper/vmalloc.h>
2df37e95 18#include <lttng/tracer.h>
b64bc438
MD
19
20static
a92e844e 21size_t vppid_get_size(void *priv, struct lttng_kernel_probe_ctx *probe_ctx, size_t offset)
b64bc438
MD
22{
23 size_t size = 0;
24
a90917c3 25 size += lib_ring_buffer_align(offset, lttng_alignof(pid_t));
b64bc438
MD
26 size += sizeof(pid_t);
27 return size;
28}
29
30static
a92e844e 31void vppid_record(void *priv, struct lttng_kernel_probe_ctx *probe_ctx,
8a57ec02 32 struct lttng_kernel_ring_buffer_ctx *ctx,
f7d06400 33 struct lttng_kernel_channel_buffer *chan)
b64bc438 34{
90f96adf 35 struct task_struct *parent;
b64bc438
MD
36 pid_t vppid;
37
90f96adf 38 /*
de544ea5
MD
39 * current nsproxy can be NULL when scheduled out of exit. pid_vnr uses
40 * the current thread nsproxy to perform the lookup.
90f96adf 41 */
1638c9b4
MD
42
43 /*
44 * TODO: when we eventually add RCU subsystem instrumentation,
45 * taking the rcu read lock here will trigger RCU tracing
46 * recursively. We should modify the kernel synchronization so
47 * it synchronizes both for RCU and RCU sched, and rely on
48 * rcu_read_lock_sched_notrace.
49 */
50
b64bc438 51 rcu_read_lock();
90f96adf 52 parent = rcu_dereference(current->real_parent);
de544ea5 53 if (!current->nsproxy)
90f96adf
MD
54 vppid = 0;
55 else
56 vppid = task_tgid_vnr(parent);
b64bc438 57 rcu_read_unlock();
f5ffbd77 58 chan->ops->event_write(ctx, &vppid, sizeof(vppid), lttng_alignof(vppid));
b64bc438
MD
59}
60
f127e61e 61static
2dc781e0 62void vppid_get_value(void *priv,
a92e844e 63 struct lttng_kernel_probe_ctx *lttng_probe_ctx,
2dc781e0 64 struct lttng_ctx_value *value)
f127e61e
MD
65{
66 struct task_struct *parent;
67 pid_t vppid;
68
69 /*
70 * current nsproxy can be NULL when scheduled out of exit. pid_vnr uses
71 * the current thread nsproxy to perform the lookup.
72 */
73
74 /*
75 * TODO: when we eventually add RCU subsystem instrumentation,
76 * taking the rcu read lock here will trigger RCU tracing
77 * recursively. We should modify the kernel synchronization so
78 * it synchronizes both for RCU and RCU sched, and rely on
79 * rcu_read_lock_sched_notrace.
80 */
81
82 rcu_read_lock();
83 parent = rcu_dereference(current->real_parent);
84 if (!current->nsproxy)
85 vppid = 0;
86 else
87 vppid = task_tgid_vnr(parent);
88 rcu_read_unlock();
2dc781e0 89 value->u.s64 = vppid;
f127e61e
MD
90}
91
437d5aa5
MD
92static const struct lttng_kernel_ctx_field *ctx_field = lttng_kernel_static_ctx_field(
93 lttng_kernel_static_event_field("vppid",
94 lttng_kernel_static_type_integer_from_type(pid_t, __BYTE_ORDER, 10),
4697aac7 95 false, false),
437d5aa5 96 vppid_get_size,
437d5aa5
MD
97 vppid_record,
98 vppid_get_value,
99 NULL, NULL);
100
101int lttng_add_vppid_to_ctx(struct lttng_kernel_ctx **ctx)
b64bc438 102{
437d5aa5 103 int ret;
b64bc438 104
437d5aa5 105 if (lttng_kernel_find_context(*ctx, ctx_field->event_field->name))
44252f0f 106 return -EEXIST;
437d5aa5 107 ret = lttng_kernel_context_append(ctx, ctx_field);
263b6c88 108 wrapper_vmalloc_sync_mappings();
437d5aa5 109 return ret;
b64bc438
MD
110}
111EXPORT_SYMBOL_GPL(lttng_add_vppid_to_ctx);
This page took 0.06159 seconds and 4 git commands to generate.