Version 2.7.7
[lttng-modules.git] / lttng-context-vppid.c
1 /*
2 * lttng-context-vppid.c
3 *
4 * LTTng vPPID context.
5 *
6 * Copyright (C) 2009-2012 Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
7 *
8 * This library is free software; you can redistribute it and/or
9 * modify it under the terms of the GNU Lesser General Public
10 * License as published by the Free Software Foundation; only
11 * version 2.1 of the License.
12 *
13 * This library is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
16 * Lesser General Public License for more details.
17 *
18 * You should have received a copy of the GNU Lesser General Public
19 * License along with this library; if not, write to the Free Software
20 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
21 */
22
23 #include <linux/module.h>
24 #include <linux/slab.h>
25 #include <linux/sched.h>
26 #include <linux/syscalls.h>
27 #include "lttng-events.h"
28 #include "wrapper/ringbuffer/frontend_types.h"
29 #include "wrapper/vmalloc.h"
30 #include "lttng-tracer.h"
31
32 static
33 size_t vppid_get_size(size_t offset)
34 {
35 size_t size = 0;
36
37 size += lib_ring_buffer_align(offset, lttng_alignof(pid_t));
38 size += sizeof(pid_t);
39 return size;
40 }
41
42 static
43 void vppid_record(struct lttng_ctx_field *field,
44 struct lib_ring_buffer_ctx *ctx,
45 struct lttng_channel *chan)
46 {
47 struct task_struct *parent;
48 pid_t vppid;
49
50 /*
51 * current nsproxy can be NULL when scheduled out of exit. pid_vnr uses
52 * the current thread nsproxy to perform the lookup.
53 */
54
55 /*
56 * TODO: when we eventually add RCU subsystem instrumentation,
57 * taking the rcu read lock here will trigger RCU tracing
58 * recursively. We should modify the kernel synchronization so
59 * it synchronizes both for RCU and RCU sched, and rely on
60 * rcu_read_lock_sched_notrace.
61 */
62
63 rcu_read_lock();
64 parent = rcu_dereference(current->real_parent);
65 if (!current->nsproxy)
66 vppid = 0;
67 else
68 vppid = task_tgid_vnr(parent);
69 rcu_read_unlock();
70 lib_ring_buffer_align_ctx(ctx, lttng_alignof(vppid));
71 chan->ops->event_write(ctx, &vppid, sizeof(vppid));
72 }
73
74 static
75 void vppid_get_value(struct lttng_ctx_field *field,
76 union lttng_ctx_value *value)
77 {
78 struct task_struct *parent;
79 pid_t vppid;
80
81 /*
82 * current nsproxy can be NULL when scheduled out of exit. pid_vnr uses
83 * the current thread nsproxy to perform the lookup.
84 */
85
86 /*
87 * TODO: when we eventually add RCU subsystem instrumentation,
88 * taking the rcu read lock here will trigger RCU tracing
89 * recursively. We should modify the kernel synchronization so
90 * it synchronizes both for RCU and RCU sched, and rely on
91 * rcu_read_lock_sched_notrace.
92 */
93
94 rcu_read_lock();
95 parent = rcu_dereference(current->real_parent);
96 if (!current->nsproxy)
97 vppid = 0;
98 else
99 vppid = task_tgid_vnr(parent);
100 rcu_read_unlock();
101 value->s64 = vppid;
102 }
103
104 int lttng_add_vppid_to_ctx(struct lttng_ctx **ctx)
105 {
106 struct lttng_ctx_field *field;
107
108 field = lttng_append_context(ctx);
109 if (!field)
110 return -ENOMEM;
111 if (lttng_find_context(*ctx, "vppid")) {
112 lttng_remove_context_field(ctx, field);
113 return -EEXIST;
114 }
115 field->event_field.name = "vppid";
116 field->event_field.type.atype = atype_integer;
117 field->event_field.type.u.basic.integer.size = sizeof(pid_t) * CHAR_BIT;
118 field->event_field.type.u.basic.integer.alignment = lttng_alignof(pid_t) * CHAR_BIT;
119 field->event_field.type.u.basic.integer.signedness = lttng_is_signed_type(pid_t);
120 field->event_field.type.u.basic.integer.reverse_byte_order = 0;
121 field->event_field.type.u.basic.integer.base = 10;
122 field->event_field.type.u.basic.integer.encoding = lttng_encode_none;
123 field->get_size = vppid_get_size;
124 field->record = vppid_record;
125 field->get_value = vppid_get_value;
126 lttng_context_update(*ctx);
127 wrapper_vmalloc_sync_all();
128 return 0;
129 }
130 EXPORT_SYMBOL_GPL(lttng_add_vppid_to_ctx);
This page took 0.033292 seconds and 4 git commands to generate.