forked from lttng/lttng-modules
-
Notifications
You must be signed in to change notification settings - Fork 1
/
lttng-tracepoint.c
451 lines (402 loc) · 9.71 KB
/
lttng-tracepoint.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
/*
* lttng-tracepoint.c
*
* LTTng adaptation layer for Linux kernel 3.15+ tracepoints.
*
* Copyright (C) 2014 Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; only
* version 2.1 of the License.
*
* This library is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with this library; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*/
#include <linux/mutex.h>
#include <linux/err.h>
#include <linux/notifier.h>
#include <linux/tracepoint.h>
#include <linux/slab.h>
#include <linux/jhash.h>
#include <linux/module.h>
#include "lttng-tracepoint.h"
#include "wrapper/list.h"
/*
* Protect the tracepoint table. lttng_tracepoint_mutex nests within
* kernel/tracepoint.c tp_modlist_mutex. kernel/tracepoint.c
* tracepoint_mutex nests within lttng_tracepoint_mutex.
*/
static
DEFINE_MUTEX(lttng_tracepoint_mutex);
#define TRACEPOINT_HASH_BITS 6
#define TRACEPOINT_TABLE_SIZE (1 << TRACEPOINT_HASH_BITS)
static
struct hlist_head tracepoint_table[TRACEPOINT_TABLE_SIZE];
/*
* The tracepoint entry is the node contained within the hash table. It
* is a mapping from the "string" key to the struct tracepoint pointer.
*/
struct tracepoint_entry {
struct hlist_node hlist;
struct tracepoint *tp;
int refcount;
struct list_head probes;
char name[0];
};
struct lttng_tp_probe {
struct tracepoint_func tp_func;
struct list_head list;
};
static
int add_probe(struct tracepoint_entry *e, void *probe, void *data)
{
struct lttng_tp_probe *p;
int found = 0;
list_for_each_entry(p, &e->probes, list) {
if (p->tp_func.func == probe && p->tp_func.data == data) {
found = 1;
break;
}
}
if (found)
return -EEXIST;
p = kmalloc(sizeof(struct lttng_tp_probe), GFP_KERNEL);
if (!p)
return -ENOMEM;
p->tp_func.func = probe;
p->tp_func.data = data;
list_add(&p->list, &e->probes);
return 0;
}
static
int remove_probe(struct tracepoint_entry *e, void *probe, void *data)
{
struct lttng_tp_probe *p;
int found = 0;
list_for_each_entry(p, &e->probes, list) {
if (p->tp_func.func == probe && p->tp_func.data == data) {
found = 1;
break;
}
}
if (found) {
list_del(&p->list);
kfree(p);
return 0;
} else {
WARN_ON(1);
return -ENOENT;
}
}
/*
* Get tracepoint if the tracepoint is present in the tracepoint hash table.
* Must be called with lttng_tracepoint_mutex held.
* Returns NULL if not present.
*/
static
struct tracepoint_entry *get_tracepoint(const char *name)
{
struct hlist_head *head;
struct tracepoint_entry *e;
u32 hash = jhash(name, strlen(name), 0);
head = &tracepoint_table[hash & (TRACEPOINT_TABLE_SIZE - 1)];
lttng_hlist_for_each_entry(e, head, hlist) {
if (!strcmp(name, e->name))
return e;
}
return NULL;
}
/*
* Add the tracepoint to the tracepoint hash table. Must be called with
* lttng_tracepoint_mutex held.
*/
static
struct tracepoint_entry *add_tracepoint(const char *name)
{
struct hlist_head *head;
struct tracepoint_entry *e;
size_t name_len = strlen(name) + 1;
u32 hash = jhash(name, name_len - 1, 0);
head = &tracepoint_table[hash & (TRACEPOINT_TABLE_SIZE - 1)];
lttng_hlist_for_each_entry(e, head, hlist) {
if (!strcmp(name, e->name)) {
printk(KERN_NOTICE
"tracepoint %s busy\n", name);
return ERR_PTR(-EEXIST); /* Already there */
}
}
/*
* Using kmalloc here to allocate a variable length element. Could
* cause some memory fragmentation if overused.
*/
e = kmalloc(sizeof(struct tracepoint_entry) + name_len, GFP_KERNEL);
if (!e)
return ERR_PTR(-ENOMEM);
memcpy(&e->name[0], name, name_len);
e->tp = NULL;
e->refcount = 0;
INIT_LIST_HEAD(&e->probes);
hlist_add_head(&e->hlist, head);
return e;
}
/*
* Remove the tracepoint from the tracepoint hash table. Must be called
* with lttng_tracepoint_mutex held.
*/
static
void remove_tracepoint(struct tracepoint_entry *e)
{
hlist_del(&e->hlist);
kfree(e);
}
int lttng_tracepoint_probe_register(const char *name, void *probe, void *data)
{
struct tracepoint_entry *e;
int ret = 0;
mutex_lock(<tng_tracepoint_mutex);
e = get_tracepoint(name);
if (!e) {
e = add_tracepoint(name);
if (IS_ERR(e)) {
ret = PTR_ERR(e);
goto end;
}
}
/* add (probe, data) to entry */
ret = add_probe(e, probe, data);
if (ret)
goto end;
e->refcount++;
if (e->tp) {
ret = tracepoint_probe_register(e->tp, probe, data);
WARN_ON_ONCE(ret);
ret = 0;
}
end:
mutex_unlock(<tng_tracepoint_mutex);
return ret;
}
int lttng_tracepoint_probe_unregister(const char *name, void *probe, void *data)
{
struct tracepoint_entry *e;
int ret = 0;
mutex_lock(<tng_tracepoint_mutex);
e = get_tracepoint(name);
if (!e) {
ret = -ENOENT;
goto end;
}
/* remove (probe, data) from entry */
ret = remove_probe(e, probe, data);
if (ret)
goto end;
if (e->tp) {
ret = tracepoint_probe_unregister(e->tp, probe, data);
WARN_ON_ONCE(ret);
ret = 0;
}
if (!--e->refcount)
remove_tracepoint(e);
end:
mutex_unlock(<tng_tracepoint_mutex);
return ret;
}
#ifdef CONFIG_MODULES
static
int lttng_tracepoint_coming(struct tp_module *tp_mod)
{
int i;
mutex_lock(<tng_tracepoint_mutex);
for (i = 0; i < tp_mod->mod->num_tracepoints; i++) {
struct tracepoint *tp;
struct tracepoint_entry *e;
struct lttng_tp_probe *p;
tp = tp_mod->mod->tracepoints_ptrs[i];
e = get_tracepoint(tp->name);
if (!e) {
e = add_tracepoint(tp->name);
if (IS_ERR(e)) {
pr_warn("LTTng: error (%ld) adding tracepoint\n",
PTR_ERR(e));
continue;
}
}
/* If already enabled, just check consistency */
if (e->tp) {
WARN_ON(e->tp != tp);
continue;
}
e->tp = tp;
e->refcount++;
/* register each (probe, data) */
list_for_each_entry(p, &e->probes, list) {
int ret;
ret = tracepoint_probe_register(e->tp,
p->tp_func.func, p->tp_func.data);
WARN_ON_ONCE(ret);
}
}
mutex_unlock(<tng_tracepoint_mutex);
return 0;
}
static
int lttng_tracepoint_going(struct tp_module *tp_mod)
{
int i;
mutex_lock(<tng_tracepoint_mutex);
for (i = 0; i < tp_mod->mod->num_tracepoints; i++) {
struct tracepoint *tp;
struct tracepoint_entry *e;
struct lttng_tp_probe *p;
tp = tp_mod->mod->tracepoints_ptrs[i];
e = get_tracepoint(tp->name);
if (!e || !e->tp)
continue;
/* unregister each (probe, data) */
list_for_each_entry(p, &e->probes, list) {
int ret;
ret = tracepoint_probe_unregister(e->tp,
p->tp_func.func, p->tp_func.data);
WARN_ON_ONCE(ret);
}
e->tp = NULL;
if (!--e->refcount)
remove_tracepoint(e);
}
mutex_unlock(<tng_tracepoint_mutex);
return 0;
}
static
int lttng_tracepoint_notify(struct notifier_block *self,
unsigned long val, void *data)
{
struct tp_module *tp_mod = data;
int ret = 0;
switch (val) {
case MODULE_STATE_COMING:
ret = lttng_tracepoint_coming(tp_mod);
break;
case MODULE_STATE_GOING:
ret = lttng_tracepoint_going(tp_mod);
break;
default:
break;
}
return ret;
}
static
struct notifier_block lttng_tracepoint_notifier = {
.notifier_call = lttng_tracepoint_notify,
.priority = 0,
};
static
int lttng_tracepoint_module_init(void)
{
return register_tracepoint_module_notifier(<tng_tracepoint_notifier);
}
static
void lttng_tracepoint_module_exit(void)
{
WARN_ON(unregister_tracepoint_module_notifier(<tng_tracepoint_notifier));
}
#else /* #ifdef CONFIG_MODULES */
static
int lttng_tracepoint_module_init(void)
{
return 0;
}
static
void lttng_tracepoint_module_exit(void)
{
}
#endif /* #else #ifdef CONFIG_MODULES */
static
void lttng_kernel_tracepoint_add(struct tracepoint *tp, void *priv)
{
struct tracepoint_entry *e;
struct lttng_tp_probe *p;
int *ret = priv;
mutex_lock(<tng_tracepoint_mutex);
e = get_tracepoint(tp->name);
if (!e) {
e = add_tracepoint(tp->name);
if (IS_ERR(e)) {
pr_warn("LTTng: error (%ld) adding tracepoint\n",
PTR_ERR(e));
*ret = (int) PTR_ERR(e);
goto end;
}
}
/* If already enabled, just check consistency */
if (e->tp) {
WARN_ON(e->tp != tp);
goto end;
}
e->tp = tp;
e->refcount++;
/* register each (probe, data) */
list_for_each_entry(p, &e->probes, list) {
int ret;
ret = tracepoint_probe_register(e->tp,
p->tp_func.func, p->tp_func.data);
WARN_ON_ONCE(ret);
}
end:
mutex_unlock(<tng_tracepoint_mutex);
}
static
void lttng_kernel_tracepoint_remove(struct tracepoint *tp, void *priv)
{
struct tracepoint_entry *e;
int *ret = priv;
mutex_lock(<tng_tracepoint_mutex);
e = get_tracepoint(tp->name);
if (!e || e->refcount != 1 || !list_empty(&e->probes)) {
*ret = -EINVAL;
goto end;
}
remove_tracepoint(e);
end:
mutex_unlock(<tng_tracepoint_mutex);
}
int __init lttng_tracepoint_init(void)
{
int ret = 0;
for_each_kernel_tracepoint(lttng_kernel_tracepoint_add, &ret);
if (ret)
goto error;
ret = lttng_tracepoint_module_init();
if (ret)
goto error_module;
return 0;
error_module:
{
int error_ret = 0;
for_each_kernel_tracepoint(lttng_kernel_tracepoint_remove,
&error_ret);
WARN_ON(error_ret);
}
error:
return ret;
}
void lttng_tracepoint_exit(void)
{
int i, ret = 0;
lttng_tracepoint_module_exit();
for_each_kernel_tracepoint(lttng_kernel_tracepoint_remove, &ret);
WARN_ON(ret);
mutex_lock(<tng_tracepoint_mutex);
for (i = 0; i < TRACEPOINT_TABLE_SIZE; i++) {
struct hlist_head *head = &tracepoint_table[i];
/* All tracepoints should be removed */
WARN_ON(!hlist_empty(head));
}
mutex_unlock(<tng_tracepoint_mutex);
}