Fix: callstack: NULL pointer dereference: length field also need fdata
[lttng-modules.git] / src / lttng-context-callstack.c
1 /* SPDX-License-Identifier: (GPL-2.0-only or LGPL-2.1-only)
2 *
3 * lttng-context-callstack.c
4 *
5 * LTTng callstack event context.
6 *
7 * Copyright (C) 2014 Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
8 * Copyright (C) 2014 Francis Giraldeau <francis.giraldeau@gmail.com>
9 *
10 * The callstack context can be added to any kernel event. It records
11 * either the kernel or the userspace callstack, up to a max depth. The
12 * context is a CTF sequence, such that it uses only the space required
13 * for the number of callstack entries.
14 *
15 * It allocates callstack buffers per-CPU up to 4 interrupt nesting.
16 * This nesting limit is the same as defined in the ring buffer. It
17 * therefore uses a fixed amount of memory, proportional to the number
18 * of CPUs:
19 *
20 * size = cpus * nest * depth * sizeof(unsigned long)
21 *
22 * Which is 4096 bytes per CPU on 64-bit host and a depth of 128.
23 * The allocation is done at the initialization to avoid memory
24 * allocation overhead while tracing, using a shallow stack.
25 *
26 * The kernel callstack is recovered using save_stack_trace(), and the
27 * userspace callstack uses save_stack_trace_user(). They rely on frame
28 * pointers. These are usually available for the kernel, but the
29 * compiler option -fomit-frame-pointer frequently used in popular Linux
30 * distributions may cause the userspace callstack to be unreliable, and
31 * is a known limitation of this approach. If frame pointers are not
32 * available, it produces no error, but the callstack will be empty. We
33 * still provide the feature, because it works well for runtime
34 * environments having frame pointers. In the future, unwind support
35 * and/or last branch record may provide a solution to this problem.
36 *
37 * The symbol name resolution is left to the trace reader.
38 */
39
40 #include <linux/module.h>
41 #include <linux/slab.h>
42 #include <linux/sched.h>
43 #include <linux/utsname.h>
44 #include <linux/stacktrace.h>
45 #include <linux/spinlock.h>
46 #include <ringbuffer/backend.h>
47 #include <ringbuffer/frontend.h>
48 #include <lttng/events.h>
49 #include <lttng/tracer.h>
50 #include <lttng/endian.h>
51 #include "wrapper/vmalloc.h"
52
53 #ifdef CONFIG_ARCH_STACKWALK
54 #include "lttng-context-callstack-stackwalk-impl.h"
55 #else
56 #include "lttng-context-callstack-legacy-impl.h"
57 #endif
58
59 static
60 void field_data_free(struct field_data *fdata)
61 {
62 if (!fdata)
63 return;
64 free_percpu(fdata->cs_percpu);
65 kfree(fdata);
66 }
67
68 static
69 struct field_data __percpu *field_data_create(enum lttng_cs_ctx_modes mode)
70 {
71 struct lttng_cs __percpu *cs_set;
72 struct field_data *fdata;
73
74 fdata = kzalloc(sizeof(*fdata), GFP_KERNEL);
75 if (!fdata)
76 return NULL;
77 cs_set = alloc_percpu(struct lttng_cs);
78 if (!cs_set)
79 goto error_alloc;
80 lttng_cs_set_init(cs_set);
81 fdata->cs_percpu = cs_set;
82 fdata->mode = mode;
83 return fdata;
84
85 error_alloc:
86 field_data_free(fdata);
87 return NULL;
88 }
89
90 static
91 void lttng_callstack_sequence_destroy(struct lttng_ctx_field *field)
92 {
93 struct field_data *fdata = field->priv;
94
95 field_data_free(fdata);
96 }
97
98 static const struct lttng_type sequence_elem_type =
99 __type_integer(unsigned long, 0, 0, -1, __BYTE_ORDER, 16, none);
100
101 static
102 int __lttng_add_callstack_generic(struct lttng_ctx **ctx,
103 enum lttng_cs_ctx_modes mode)
104 {
105 const char *ctx_name = lttng_cs_ctx_mode_name(mode);
106 const char *ctx_length_name = lttng_cs_ctx_mode_length_name(mode);
107 struct lttng_ctx_field *length_field, *sequence_field;
108 ssize_t length_index, sequence_index;
109 struct lttng_event_field *field;
110 struct field_data *fdata;
111 int ret;
112
113 ret = init_type(mode);
114 if (ret)
115 return ret;
116 if (lttng_find_context(*ctx, ctx_name))
117 return -EEXIST;
118 length_index = lttng_append_context_index(ctx);
119 if (length_index < 0) {
120 ret = -ENOMEM;
121 goto error_length;
122 }
123 sequence_index = lttng_append_context_index(ctx);
124 if (sequence_index < 0) {
125 ret = -ENOMEM;
126 goto error_sequence;
127 }
128 length_field = lttng_get_context_field_from_index(*ctx, length_index);
129 WARN_ON_ONCE(!length_field);
130 sequence_field = lttng_get_context_field_from_index(*ctx, sequence_index);
131 WARN_ON_ONCE(!sequence_field);
132 fdata = field_data_create(mode);
133 if (!fdata) {
134 ret = -ENOMEM;
135 goto error_create;
136 }
137
138 field = &length_field->event_field;
139 field->name = ctx_length_name;
140 field->type.atype = atype_integer;
141 field->type.u.integer.size = sizeof(unsigned int) * CHAR_BIT;
142 field->type.u.integer.alignment = lttng_alignof(unsigned int) * CHAR_BIT;
143 field->type.u.integer.signedness = lttng_is_signed_type(unsigned int);
144 field->type.u.integer.reverse_byte_order = 0;
145 field->type.u.integer.base = 10;
146 field->type.u.integer.encoding = lttng_encode_none;
147 length_field->get_size_arg = lttng_callstack_length_get_size;
148 length_field->record = lttng_callstack_length_record;
149 length_field->priv = fdata;
150
151 field = &sequence_field->event_field;
152 field->name = ctx_name;
153 field->type.atype = atype_sequence_nestable;
154 field->type.u.sequence_nestable.elem_type = &sequence_elem_type;
155 field->type.u.sequence_nestable.alignment = 0;
156 sequence_field->get_size_arg = lttng_callstack_sequence_get_size;
157 sequence_field->record = lttng_callstack_sequence_record;
158 sequence_field->priv = fdata;
159 sequence_field->destroy = lttng_callstack_sequence_destroy;
160
161 wrapper_vmalloc_sync_mappings();
162 return 0;
163
164 error_create:
165 lttng_remove_context_field_index(ctx, sequence_index);
166 error_sequence:
167 lttng_remove_context_field_index(ctx, length_index);
168 error_length:
169 return ret;
170 }
171
172 /**
173 * lttng_add_callstack_to_ctx - add callstack event context
174 *
175 * @ctx: the lttng_ctx pointer to initialize
176 * @type: the context type
177 *
178 * Supported callstack type supported:
179 * LTTNG_KERNEL_CONTEXT_CALLSTACK_KERNEL
180 * Records the callstack of the kernel
181 * LTTNG_KERNEL_CONTEXT_CALLSTACK_USER
182 * Records the callstack of the userspace program (from the kernel)
183 *
184 * Return 0 for success, or error code.
185 */
186 int lttng_add_callstack_to_ctx(struct lttng_ctx **ctx, int type)
187 {
188 switch (type) {
189 case LTTNG_KERNEL_CONTEXT_CALLSTACK_KERNEL:
190 return __lttng_add_callstack_generic(ctx, CALLSTACK_KERNEL);
191 #ifdef CONFIG_X86
192 case LTTNG_KERNEL_CONTEXT_CALLSTACK_USER:
193 return __lttng_add_callstack_generic(ctx, CALLSTACK_USER);
194 #endif
195 default:
196 return -EINVAL;
197 }
198 }
199 EXPORT_SYMBOL_GPL(lttng_add_callstack_to_ctx);
This page took 0.033373 seconds and 4 git commands to generate.