Commit | Line | Data |
---|---|---|
b7cdc182 | 1 | /* SPDX-License-Identifier: (GPL-2.0-only or LGPL-2.1-only) |
9f36eaed | 2 | * |
886d51a3 | 3 | * lttng-context-ppid.c |
b64bc438 MD |
4 | * |
5 | * LTTng PPID 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 | |
20 | static | |
a92e844e | 21 | size_t ppid_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 | ||
30 | static | |
a92e844e | 31 | void ppid_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 MD |
34 | { |
35 | pid_t ppid; | |
36 | ||
1638c9b4 MD |
37 | /* |
38 | * TODO: when we eventually add RCU subsystem instrumentation, | |
39 | * taking the rcu read lock here will trigger RCU tracing | |
40 | * recursively. We should modify the kernel synchronization so | |
41 | * it synchronizes both for RCU and RCU sched, and rely on | |
42 | * rcu_read_lock_sched_notrace. | |
43 | */ | |
b64bc438 MD |
44 | rcu_read_lock(); |
45 | ppid = task_tgid_nr(current->real_parent); | |
46 | rcu_read_unlock(); | |
f5ffbd77 | 47 | chan->ops->event_write(ctx, &ppid, sizeof(ppid), lttng_alignof(ppid)); |
b64bc438 MD |
48 | } |
49 | ||
f127e61e | 50 | static |
2dc781e0 | 51 | void ppid_get_value(void *priv, |
a92e844e | 52 | struct lttng_kernel_probe_ctx *lttng_probe_ctx, |
2dc781e0 | 53 | struct lttng_ctx_value *value) |
f127e61e MD |
54 | { |
55 | pid_t ppid; | |
56 | ||
57 | /* | |
58 | * TODO: when we eventually add RCU subsystem instrumentation, | |
59 | * taking the rcu read lock here will trigger RCU tracing | |
60 | * recursively. We should modify the kernel synchronization so | |
61 | * it synchronizes both for RCU and RCU sched, and rely on | |
62 | * rcu_read_lock_sched_notrace. | |
63 | */ | |
64 | rcu_read_lock(); | |
65 | ppid = task_tgid_nr(current->real_parent); | |
66 | rcu_read_unlock(); | |
2dc781e0 | 67 | value->u.s64 = ppid; |
f127e61e MD |
68 | } |
69 | ||
437d5aa5 MD |
70 | static const struct lttng_kernel_ctx_field *ctx_field = lttng_kernel_static_ctx_field( |
71 | lttng_kernel_static_event_field("ppid", | |
72 | lttng_kernel_static_type_integer_from_type(pid_t, __BYTE_ORDER, 10), | |
4697aac7 | 73 | false, false), |
437d5aa5 | 74 | ppid_get_size, |
437d5aa5 MD |
75 | ppid_record, |
76 | ppid_get_value, | |
77 | NULL, NULL); | |
78 | ||
79 | int lttng_add_ppid_to_ctx(struct lttng_kernel_ctx **ctx) | |
b64bc438 | 80 | { |
437d5aa5 | 81 | int ret; |
b64bc438 | 82 | |
437d5aa5 | 83 | if (lttng_kernel_find_context(*ctx, ctx_field->event_field->name)) |
44252f0f | 84 | return -EEXIST; |
437d5aa5 | 85 | ret = lttng_kernel_context_append(ctx, ctx_field); |
263b6c88 | 86 | wrapper_vmalloc_sync_mappings(); |
437d5aa5 | 87 | return ret; |
b64bc438 MD |
88 | } |
89 | EXPORT_SYMBOL_GPL(lttng_add_ppid_to_ctx); |