-
Notifications
You must be signed in to change notification settings - Fork 0
/
lttng-filter.c
557 lines (493 loc) · 15.1 KB
/
lttng-filter.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
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
/* SPDX-License-Identifier: MIT
*
* lttng-filter.c
*
* LTTng modules filter code.
*
* Copyright (C) 2010-2016 Mathieu Desnoyers <[email protected]>
*/
#include <linux/list.h>
#include <linux/slab.h>
#include <lttng-filter.h>
static const char *opnames[] = {
[ FILTER_OP_UNKNOWN ] = "UNKNOWN",
[ FILTER_OP_RETURN ] = "RETURN",
/* binary */
[ FILTER_OP_MUL ] = "MUL",
[ FILTER_OP_DIV ] = "DIV",
[ FILTER_OP_MOD ] = "MOD",
[ FILTER_OP_PLUS ] = "PLUS",
[ FILTER_OP_MINUS ] = "MINUS",
[ FILTER_OP_BIT_RSHIFT ] = "BIT_RSHIFT",
[ FILTER_OP_BIT_LSHIFT ] = "BIT_LSHIFT",
[ FILTER_OP_BIT_AND ] = "BIT_AND",
[ FILTER_OP_BIT_OR ] = "BIT_OR",
[ FILTER_OP_BIT_XOR ] = "BIT_XOR",
/* binary comparators */
[ FILTER_OP_EQ ] = "EQ",
[ FILTER_OP_NE ] = "NE",
[ FILTER_OP_GT ] = "GT",
[ FILTER_OP_LT ] = "LT",
[ FILTER_OP_GE ] = "GE",
[ FILTER_OP_LE ] = "LE",
/* string binary comparators */
[ FILTER_OP_EQ_STRING ] = "EQ_STRING",
[ FILTER_OP_NE_STRING ] = "NE_STRING",
[ FILTER_OP_GT_STRING ] = "GT_STRING",
[ FILTER_OP_LT_STRING ] = "LT_STRING",
[ FILTER_OP_GE_STRING ] = "GE_STRING",
[ FILTER_OP_LE_STRING ] = "LE_STRING",
/* s64 binary comparators */
[ FILTER_OP_EQ_S64 ] = "EQ_S64",
[ FILTER_OP_NE_S64 ] = "NE_S64",
[ FILTER_OP_GT_S64 ] = "GT_S64",
[ FILTER_OP_LT_S64 ] = "LT_S64",
[ FILTER_OP_GE_S64 ] = "GE_S64",
[ FILTER_OP_LE_S64 ] = "LE_S64",
/* double binary comparators */
[ FILTER_OP_EQ_DOUBLE ] = "EQ_DOUBLE",
[ FILTER_OP_NE_DOUBLE ] = "NE_DOUBLE",
[ FILTER_OP_GT_DOUBLE ] = "GT_DOUBLE",
[ FILTER_OP_LT_DOUBLE ] = "LT_DOUBLE",
[ FILTER_OP_GE_DOUBLE ] = "GE_DOUBLE",
[ FILTER_OP_LE_DOUBLE ] = "LE_DOUBLE",
/* Mixed S64-double binary comparators */
[ FILTER_OP_EQ_DOUBLE_S64 ] = "EQ_DOUBLE_S64",
[ FILTER_OP_NE_DOUBLE_S64 ] = "NE_DOUBLE_S64",
[ FILTER_OP_GT_DOUBLE_S64 ] = "GT_DOUBLE_S64",
[ FILTER_OP_LT_DOUBLE_S64 ] = "LT_DOUBLE_S64",
[ FILTER_OP_GE_DOUBLE_S64 ] = "GE_DOUBLE_S64",
[ FILTER_OP_LE_DOUBLE_S64 ] = "LE_DOUBLE_S64",
[ FILTER_OP_EQ_S64_DOUBLE ] = "EQ_S64_DOUBLE",
[ FILTER_OP_NE_S64_DOUBLE ] = "NE_S64_DOUBLE",
[ FILTER_OP_GT_S64_DOUBLE ] = "GT_S64_DOUBLE",
[ FILTER_OP_LT_S64_DOUBLE ] = "LT_S64_DOUBLE",
[ FILTER_OP_GE_S64_DOUBLE ] = "GE_S64_DOUBLE",
[ FILTER_OP_LE_S64_DOUBLE ] = "LE_S64_DOUBLE",
/* unary */
[ FILTER_OP_UNARY_PLUS ] = "UNARY_PLUS",
[ FILTER_OP_UNARY_MINUS ] = "UNARY_MINUS",
[ FILTER_OP_UNARY_NOT ] = "UNARY_NOT",
[ FILTER_OP_UNARY_PLUS_S64 ] = "UNARY_PLUS_S64",
[ FILTER_OP_UNARY_MINUS_S64 ] = "UNARY_MINUS_S64",
[ FILTER_OP_UNARY_NOT_S64 ] = "UNARY_NOT_S64",
[ FILTER_OP_UNARY_PLUS_DOUBLE ] = "UNARY_PLUS_DOUBLE",
[ FILTER_OP_UNARY_MINUS_DOUBLE ] = "UNARY_MINUS_DOUBLE",
[ FILTER_OP_UNARY_NOT_DOUBLE ] = "UNARY_NOT_DOUBLE",
/* logical */
[ FILTER_OP_AND ] = "AND",
[ FILTER_OP_OR ] = "OR",
/* load field ref */
[ FILTER_OP_LOAD_FIELD_REF ] = "LOAD_FIELD_REF",
[ FILTER_OP_LOAD_FIELD_REF_STRING ] = "LOAD_FIELD_REF_STRING",
[ FILTER_OP_LOAD_FIELD_REF_SEQUENCE ] = "LOAD_FIELD_REF_SEQUENCE",
[ FILTER_OP_LOAD_FIELD_REF_S64 ] = "LOAD_FIELD_REF_S64",
[ FILTER_OP_LOAD_FIELD_REF_DOUBLE ] = "LOAD_FIELD_REF_DOUBLE",
/* load from immediate operand */
[ FILTER_OP_LOAD_STRING ] = "LOAD_STRING",
[ FILTER_OP_LOAD_S64 ] = "LOAD_S64",
[ FILTER_OP_LOAD_DOUBLE ] = "LOAD_DOUBLE",
/* cast */
[ FILTER_OP_CAST_TO_S64 ] = "CAST_TO_S64",
[ FILTER_OP_CAST_DOUBLE_TO_S64 ] = "CAST_DOUBLE_TO_S64",
[ FILTER_OP_CAST_NOP ] = "CAST_NOP",
/* get context ref */
[ FILTER_OP_GET_CONTEXT_REF ] = "GET_CONTEXT_REF",
[ FILTER_OP_GET_CONTEXT_REF_STRING ] = "GET_CONTEXT_REF_STRING",
[ FILTER_OP_GET_CONTEXT_REF_S64 ] = "GET_CONTEXT_REF_S64",
[ FILTER_OP_GET_CONTEXT_REF_DOUBLE ] = "GET_CONTEXT_REF_DOUBLE",
/* load userspace field ref */
[ FILTER_OP_LOAD_FIELD_REF_USER_STRING ] = "LOAD_FIELD_REF_USER_STRING",
[ FILTER_OP_LOAD_FIELD_REF_USER_SEQUENCE ] = "LOAD_FIELD_REF_USER_SEQUENCE",
/*
* load immediate star globbing pattern (literal string)
* from immediate.
*/
[ FILTER_OP_LOAD_STAR_GLOB_STRING ] = "LOAD_STAR_GLOB_STRING",
/* globbing pattern binary operator: apply to */
[ FILTER_OP_EQ_STAR_GLOB_STRING ] = "EQ_STAR_GLOB_STRING",
[ FILTER_OP_NE_STAR_GLOB_STRING ] = "NE_STAR_GLOB_STRING",
/*
* Instructions for recursive traversal through composed types.
*/
[ FILTER_OP_GET_CONTEXT_ROOT ] = "GET_CONTEXT_ROOT",
[ FILTER_OP_GET_APP_CONTEXT_ROOT ] = "GET_APP_CONTEXT_ROOT",
[ FILTER_OP_GET_PAYLOAD_ROOT ] = "GET_PAYLOAD_ROOT",
[ FILTER_OP_GET_SYMBOL ] = "GET_SYMBOL",
[ FILTER_OP_GET_SYMBOL_FIELD ] = "GET_SYMBOL_FIELD",
[ FILTER_OP_GET_INDEX_U16 ] = "GET_INDEX_U16",
[ FILTER_OP_GET_INDEX_U64 ] = "GET_INDEX_U64",
[ FILTER_OP_LOAD_FIELD ] = "LOAD_FIELD",
[ FILTER_OP_LOAD_FIELD_S8 ] = "LOAD_FIELD_S8",
[ FILTER_OP_LOAD_FIELD_S16 ] = "LOAD_FIELD_S16",
[ FILTER_OP_LOAD_FIELD_S32 ] = "LOAD_FIELD_S32",
[ FILTER_OP_LOAD_FIELD_S64 ] = "LOAD_FIELD_S64",
[ FILTER_OP_LOAD_FIELD_U8 ] = "LOAD_FIELD_U8",
[ FILTER_OP_LOAD_FIELD_U16 ] = "LOAD_FIELD_U16",
[ FILTER_OP_LOAD_FIELD_U32 ] = "LOAD_FIELD_U32",
[ FILTER_OP_LOAD_FIELD_U64 ] = "LOAD_FIELD_U64",
[ FILTER_OP_LOAD_FIELD_STRING ] = "LOAD_FIELD_STRING",
[ FILTER_OP_LOAD_FIELD_SEQUENCE ] = "LOAD_FIELD_SEQUENCE",
[ FILTER_OP_LOAD_FIELD_DOUBLE ] = "LOAD_FIELD_DOUBLE",
[ FILTER_OP_UNARY_BIT_NOT ] = "UNARY_BIT_NOT",
[ FILTER_OP_RETURN_S64 ] = "RETURN_S64",
};
const char *lttng_filter_print_op(enum filter_op op)
{
if (op >= NR_FILTER_OPS)
return "UNKNOWN";
else
return opnames[op];
}
static
int apply_field_reloc(struct lttng_event *event,
struct bytecode_runtime *runtime,
uint32_t runtime_len,
uint32_t reloc_offset,
const char *field_name,
enum filter_op filter_op)
{
const struct lttng_event_desc *desc;
const struct lttng_event_field *fields, *field = NULL;
unsigned int nr_fields, i;
struct load_op *op;
uint32_t field_offset = 0;
dbg_printk("Apply field reloc: %u %s\n", reloc_offset, field_name);
/* Lookup event by name */
desc = event->desc;
if (!desc)
return -EINVAL;
fields = desc->fields;
if (!fields)
return -EINVAL;
nr_fields = desc->nr_fields;
for (i = 0; i < nr_fields; i++) {
if (!strcmp(fields[i].name, field_name)) {
field = &fields[i];
break;
}
/* compute field offset */
switch (fields[i].type.atype) {
case atype_integer:
case atype_enum:
field_offset += sizeof(int64_t);
break;
case atype_array:
case atype_sequence:
case atype_array_bitfield:
case atype_sequence_bitfield:
field_offset += sizeof(unsigned long);
field_offset += sizeof(void *);
break;
case atype_string:
field_offset += sizeof(void *);
break;
case atype_struct: /* Unsupported. */
case atype_array_compound: /* Unsupported. */
case atype_sequence_compound: /* Unsupported. */
case atype_variant: /* Unsupported. */
default:
return -EINVAL;
}
}
if (!field)
return -EINVAL;
/* Check if field offset is too large for 16-bit offset */
if (field_offset > LTTNG_KERNEL_FILTER_BYTECODE_MAX_LEN - 1)
return -EINVAL;
/* set type */
op = (struct load_op *) &runtime->code[reloc_offset];
switch (filter_op) {
case FILTER_OP_LOAD_FIELD_REF:
{
struct field_ref *field_ref;
field_ref = (struct field_ref *) op->data;
switch (field->type.atype) {
case atype_integer:
case atype_enum:
op->op = FILTER_OP_LOAD_FIELD_REF_S64;
break;
case atype_array:
case atype_sequence:
if (field->user)
op->op = FILTER_OP_LOAD_FIELD_REF_USER_SEQUENCE;
else
op->op = FILTER_OP_LOAD_FIELD_REF_SEQUENCE;
break;
case atype_string:
if (field->user)
op->op = FILTER_OP_LOAD_FIELD_REF_USER_STRING;
else
op->op = FILTER_OP_LOAD_FIELD_REF_STRING;
break;
case atype_struct: /* Unsupported. */
case atype_array_compound: /* Unsupported. */
case atype_sequence_compound: /* Unsupported. */
case atype_variant: /* Unsupported. */
case atype_array_bitfield: /* Unsupported. */
case atype_sequence_bitfield: /* Unsupported. */
default:
return -EINVAL;
}
/* set offset */
field_ref->offset = (uint16_t) field_offset;
break;
}
default:
return -EINVAL;
}
return 0;
}
static
int apply_context_reloc(struct lttng_event *event,
struct bytecode_runtime *runtime,
uint32_t runtime_len,
uint32_t reloc_offset,
const char *context_name,
enum filter_op filter_op)
{
struct load_op *op;
struct lttng_ctx_field *ctx_field;
int idx;
dbg_printk("Apply context reloc: %u %s\n", reloc_offset, context_name);
/* Get context index */
idx = lttng_get_context_index(lttng_static_ctx, context_name);
if (idx < 0)
return -ENOENT;
/* Check if idx is too large for 16-bit offset */
if (idx > LTTNG_KERNEL_FILTER_BYTECODE_MAX_LEN - 1)
return -EINVAL;
/* Get context return type */
ctx_field = <tng_static_ctx->fields[idx];
op = (struct load_op *) &runtime->code[reloc_offset];
switch (filter_op) {
case FILTER_OP_GET_CONTEXT_REF:
{
struct field_ref *field_ref;
field_ref = (struct field_ref *) op->data;
switch (ctx_field->event_field.type.atype) {
case atype_integer:
case atype_enum:
op->op = FILTER_OP_GET_CONTEXT_REF_S64;
break;
/* Sequence and array supported as string */
case atype_string:
case atype_array:
case atype_sequence:
BUG_ON(ctx_field->event_field.user);
op->op = FILTER_OP_GET_CONTEXT_REF_STRING;
break;
case atype_struct: /* Unsupported. */
case atype_array_compound: /* Unsupported. */
case atype_sequence_compound: /* Unsupported. */
case atype_variant: /* Unsupported. */
case atype_array_bitfield: /* Unsupported. */
case atype_sequence_bitfield: /* Unsupported. */
default:
return -EINVAL;
}
/* set offset to context index within channel contexts */
field_ref->offset = (uint16_t) idx;
break;
}
default:
return -EINVAL;
}
return 0;
}
static
int apply_reloc(struct lttng_event *event,
struct bytecode_runtime *runtime,
uint32_t runtime_len,
uint32_t reloc_offset,
const char *name)
{
struct load_op *op;
dbg_printk("Apply reloc: %u %s\n", reloc_offset, name);
/* Ensure that the reloc is within the code */
if (runtime_len - reloc_offset < sizeof(uint16_t))
return -EINVAL;
op = (struct load_op *) &runtime->code[reloc_offset];
switch (op->op) {
case FILTER_OP_LOAD_FIELD_REF:
return apply_field_reloc(event, runtime, runtime_len,
reloc_offset, name, op->op);
case FILTER_OP_GET_CONTEXT_REF:
return apply_context_reloc(event, runtime, runtime_len,
reloc_offset, name, op->op);
case FILTER_OP_GET_SYMBOL:
case FILTER_OP_GET_SYMBOL_FIELD:
/*
* Will be handled by load specialize phase or
* dynamically by interpreter.
*/
return 0;
default:
printk(KERN_WARNING "Unknown reloc op type %u\n", op->op);
return -EINVAL;
}
return 0;
}
static
int bytecode_is_linked(struct lttng_filter_bytecode_node *filter_bytecode,
struct lttng_event *event)
{
struct lttng_bytecode_runtime *bc_runtime;
list_for_each_entry(bc_runtime,
&event->bytecode_runtime_head, node) {
if (bc_runtime->bc == filter_bytecode)
return 1;
}
return 0;
}
/*
* Take a bytecode with reloc table and link it to an event to create a
* bytecode runtime.
*/
static
int _lttng_filter_event_link_bytecode(struct lttng_event *event,
struct lttng_filter_bytecode_node *filter_bytecode,
struct list_head *insert_loc)
{
int ret, offset, next_offset;
struct bytecode_runtime *runtime = NULL;
size_t runtime_alloc_len;
if (!filter_bytecode)
return 0;
/* Bytecode already linked */
if (bytecode_is_linked(filter_bytecode, event))
return 0;
dbg_printk("Linking...\n");
/* We don't need the reloc table in the runtime */
runtime_alloc_len = sizeof(*runtime) + filter_bytecode->bc.reloc_offset;
runtime = kzalloc(runtime_alloc_len, GFP_KERNEL);
if (!runtime) {
ret = -ENOMEM;
goto alloc_error;
}
runtime->p.bc = filter_bytecode;
runtime->p.event = event;
runtime->len = filter_bytecode->bc.reloc_offset;
/* copy original bytecode */
memcpy(runtime->code, filter_bytecode->bc.data, runtime->len);
/*
* apply relocs. Those are a uint16_t (offset in bytecode)
* followed by a string (field name).
*/
for (offset = filter_bytecode->bc.reloc_offset;
offset < filter_bytecode->bc.len;
offset = next_offset) {
uint16_t reloc_offset =
*(uint16_t *) &filter_bytecode->bc.data[offset];
const char *name =
(const char *) &filter_bytecode->bc.data[offset + sizeof(uint16_t)];
ret = apply_reloc(event, runtime, runtime->len, reloc_offset, name);
if (ret) {
goto link_error;
}
next_offset = offset + sizeof(uint16_t) + strlen(name) + 1;
}
/* Validate bytecode */
ret = lttng_filter_validate_bytecode(runtime);
if (ret) {
goto link_error;
}
/* Specialize bytecode */
ret = lttng_filter_specialize_bytecode(event, runtime);
if (ret) {
goto link_error;
}
runtime->p.filter = lttng_filter_interpret_bytecode;
runtime->p.link_failed = 0;
list_add_rcu(&runtime->p.node, insert_loc);
dbg_printk("Linking successful.\n");
return 0;
link_error:
runtime->p.filter = lttng_filter_false;
runtime->p.link_failed = 1;
list_add_rcu(&runtime->p.node, insert_loc);
alloc_error:
dbg_printk("Linking failed.\n");
return ret;
}
void lttng_filter_sync_state(struct lttng_bytecode_runtime *runtime)
{
struct lttng_filter_bytecode_node *bc = runtime->bc;
if (!bc->enabler->enabled || runtime->link_failed)
runtime->filter = lttng_filter_false;
else
runtime->filter = lttng_filter_interpret_bytecode;
}
/*
* Link bytecode for all enablers referenced by an event.
*/
void lttng_enabler_event_link_bytecode(struct lttng_event *event,
struct lttng_enabler *enabler)
{
struct lttng_filter_bytecode_node *bc;
struct lttng_bytecode_runtime *runtime;
/* Can only be called for events with desc attached */
WARN_ON_ONCE(!event->desc);
/* Link each bytecode. */
list_for_each_entry(bc, &enabler->filter_bytecode_head, node) {
int found = 0, ret;
struct list_head *insert_loc;
list_for_each_entry(runtime,
&event->bytecode_runtime_head, node) {
if (runtime->bc == bc) {
found = 1;
break;
}
}
/* Skip bytecode already linked */
if (found)
continue;
/*
* Insert at specified priority (seqnum) in increasing
* order.
*/
list_for_each_entry_reverse(runtime,
&event->bytecode_runtime_head, node) {
if (runtime->bc->bc.seqnum < bc->bc.seqnum) {
/* insert here */
insert_loc = &runtime->node;
goto add_within;
}
}
/* Add to head to list */
insert_loc = &event->bytecode_runtime_head;
add_within:
dbg_printk("linking bytecode\n");
ret = _lttng_filter_event_link_bytecode(event, bc,
insert_loc);
if (ret) {
dbg_printk("[lttng filter] warning: cannot link event bytecode\n");
}
}
}
/*
* We own the filter_bytecode if we return success.
*/
int lttng_filter_enabler_attach_bytecode(struct lttng_enabler *enabler,
struct lttng_filter_bytecode_node *filter_bytecode)
{
list_add(&filter_bytecode->node, &enabler->filter_bytecode_head);
return 0;
}
void lttng_free_enabler_filter_bytecode(struct lttng_enabler *enabler)
{
struct lttng_filter_bytecode_node *filter_bytecode, *tmp;
list_for_each_entry_safe(filter_bytecode, tmp,
&enabler->filter_bytecode_head, node) {
kfree(filter_bytecode);
}
}
void lttng_free_event_filter_runtime(struct lttng_event *event)
{
struct bytecode_runtime *runtime, *tmp;
list_for_each_entry_safe(runtime, tmp,
&event->bytecode_runtime_head, p.node) {
kfree(runtime->data);
kfree(runtime);
}
}