tracepoint: Refactor representation of nested types
[lttng-ust.git] / liblttng-ust / lttng-filter.c
CommitLineData
2d78951a
MD
1/*
2 * lttng-filter.c
3 *
4 * LTTng UST filter code.
5 *
7e50015d 6 * Copyright (C) 2010-2016 Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
2d78951a 7 *
7e50015d
MD
8 * Permission is hereby granted, free of charge, to any person obtaining a copy
9 * of this software and associated documentation files (the "Software"), to deal
10 * in the Software without restriction, including without limitation the rights
11 * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
12 * copies of the Software, and to permit persons to whom the Software is
13 * furnished to do so, subject to the following conditions:
2d78951a 14 *
7e50015d
MD
15 * The above copyright notice and this permission notice shall be included in
16 * all copies or substantial portions of the Software.
2d78951a 17 *
7e50015d
MD
18 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
19 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
20 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
21 * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
22 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
23 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
24 * SOFTWARE.
2d78951a
MD
25 */
26
3fbec7dc 27#define _LGPL_SOURCE
b4051ad8 28#include <stddef.h>
fb31eb73
FD
29#include <stdint.h>
30
f488575f 31#include <urcu/rculist.h>
fb31eb73 32
97b58163 33#include "lttng-filter.h"
cd54f6d9
MD
34
35static const char *opnames[] = {
36 [ FILTER_OP_UNKNOWN ] = "UNKNOWN",
37
38 [ FILTER_OP_RETURN ] = "RETURN",
39
40 /* binary */
41 [ FILTER_OP_MUL ] = "MUL",
42 [ FILTER_OP_DIV ] = "DIV",
43 [ FILTER_OP_MOD ] = "MOD",
44 [ FILTER_OP_PLUS ] = "PLUS",
45 [ FILTER_OP_MINUS ] = "MINUS",
0039e2d8
MD
46 [ FILTER_OP_BIT_RSHIFT ] = "BIT_RSHIFT",
47 [ FILTER_OP_BIT_LSHIFT ] = "BIT_LSHIFT",
47e5f13e
MD
48 [ FILTER_OP_BIT_AND ] = "BIT_AND",
49 [ FILTER_OP_BIT_OR ] = "BIT_OR",
50 [ FILTER_OP_BIT_XOR ] = "BIT_XOR",
226106c0
MD
51
52 /* binary comparators */
cd54f6d9
MD
53 [ FILTER_OP_EQ ] = "EQ",
54 [ FILTER_OP_NE ] = "NE",
55 [ FILTER_OP_GT ] = "GT",
56 [ FILTER_OP_LT ] = "LT",
57 [ FILTER_OP_GE ] = "GE",
58 [ FILTER_OP_LE ] = "LE",
59
226106c0
MD
60 /* string binary comparators */
61 [ FILTER_OP_EQ_STRING ] = "EQ_STRING",
62 [ FILTER_OP_NE_STRING ] = "NE_STRING",
63 [ FILTER_OP_GT_STRING ] = "GT_STRING",
64 [ FILTER_OP_LT_STRING ] = "LT_STRING",
65 [ FILTER_OP_GE_STRING ] = "GE_STRING",
66 [ FILTER_OP_LE_STRING ] = "LE_STRING",
67
68 /* s64 binary comparators */
69 [ FILTER_OP_EQ_S64 ] = "EQ_S64",
70 [ FILTER_OP_NE_S64 ] = "NE_S64",
71 [ FILTER_OP_GT_S64 ] = "GT_S64",
72 [ FILTER_OP_LT_S64 ] = "LT_S64",
73 [ FILTER_OP_GE_S64 ] = "GE_S64",
74 [ FILTER_OP_LE_S64 ] = "LE_S64",
75
76 /* double binary comparators */
77 [ FILTER_OP_EQ_DOUBLE ] = "EQ_DOUBLE",
78 [ FILTER_OP_NE_DOUBLE ] = "NE_DOUBLE",
79 [ FILTER_OP_GT_DOUBLE ] = "GT_DOUBLE",
80 [ FILTER_OP_LT_DOUBLE ] = "LT_DOUBLE",
81 [ FILTER_OP_GE_DOUBLE ] = "GE_DOUBLE",
82 [ FILTER_OP_LE_DOUBLE ] = "LE_DOUBLE",
83
1e5f62b4
MD
84 /* Mixed S64-double binary comparators */
85 [ FILTER_OP_EQ_DOUBLE_S64 ] = "EQ_DOUBLE_S64",
86 [ FILTER_OP_NE_DOUBLE_S64 ] = "NE_DOUBLE_S64",
87 [ FILTER_OP_GT_DOUBLE_S64 ] = "GT_DOUBLE_S64",
88 [ FILTER_OP_LT_DOUBLE_S64 ] = "LT_DOUBLE_S64",
89 [ FILTER_OP_GE_DOUBLE_S64 ] = "GE_DOUBLE_S64",
90 [ FILTER_OP_LE_DOUBLE_S64 ] = "LE_DOUBLE_S64",
91
92 [ FILTER_OP_EQ_S64_DOUBLE ] = "EQ_S64_DOUBLE",
93 [ FILTER_OP_NE_S64_DOUBLE ] = "NE_S64_DOUBLE",
94 [ FILTER_OP_GT_S64_DOUBLE ] = "GT_S64_DOUBLE",
95 [ FILTER_OP_LT_S64_DOUBLE ] = "LT_S64_DOUBLE",
96 [ FILTER_OP_GE_S64_DOUBLE ] = "GE_S64_DOUBLE",
97 [ FILTER_OP_LE_S64_DOUBLE ] = "LE_S64_DOUBLE",
226106c0 98
cd54f6d9
MD
99 /* unary */
100 [ FILTER_OP_UNARY_PLUS ] = "UNARY_PLUS",
101 [ FILTER_OP_UNARY_MINUS ] = "UNARY_MINUS",
102 [ FILTER_OP_UNARY_NOT ] = "UNARY_NOT",
226106c0
MD
103 [ FILTER_OP_UNARY_PLUS_S64 ] = "UNARY_PLUS_S64",
104 [ FILTER_OP_UNARY_MINUS_S64 ] = "UNARY_MINUS_S64",
105 [ FILTER_OP_UNARY_NOT_S64 ] = "UNARY_NOT_S64",
106 [ FILTER_OP_UNARY_PLUS_DOUBLE ] = "UNARY_PLUS_DOUBLE",
107 [ FILTER_OP_UNARY_MINUS_DOUBLE ] = "UNARY_MINUS_DOUBLE",
108 [ FILTER_OP_UNARY_NOT_DOUBLE ] = "UNARY_NOT_DOUBLE",
cd54f6d9
MD
109
110 /* logical */
111 [ FILTER_OP_AND ] = "AND",
112 [ FILTER_OP_OR ] = "OR",
113
77aa5901 114 /* load field ref */
cd54f6d9 115 [ FILTER_OP_LOAD_FIELD_REF ] = "LOAD_FIELD_REF",
2f0145d1
MD
116 [ FILTER_OP_LOAD_FIELD_REF_STRING ] = "LOAD_FIELD_REF_STRING",
117 [ FILTER_OP_LOAD_FIELD_REF_SEQUENCE ] = "LOAD_FIELD_REF_SEQUENCE",
118 [ FILTER_OP_LOAD_FIELD_REF_S64 ] = "LOAD_FIELD_REF_S64",
119 [ FILTER_OP_LOAD_FIELD_REF_DOUBLE ] = "LOAD_FIELD_REF_DOUBLE",
120
77aa5901 121 /* load from immediate operand */
cd54f6d9
MD
122 [ FILTER_OP_LOAD_STRING ] = "LOAD_STRING",
123 [ FILTER_OP_LOAD_S64 ] = "LOAD_S64",
da6eed25 124 [ FILTER_OP_LOAD_DOUBLE ] = "LOAD_DOUBLE",
49905038
MD
125
126 /* cast */
127 [ FILTER_OP_CAST_TO_S64 ] = "CAST_TO_S64",
128 [ FILTER_OP_CAST_DOUBLE_TO_S64 ] = "CAST_DOUBLE_TO_S64",
129 [ FILTER_OP_CAST_NOP ] = "CAST_NOP",
77aa5901
MD
130
131 /* get context ref */
132 [ FILTER_OP_GET_CONTEXT_REF ] = "GET_CONTEXT_REF",
133 [ FILTER_OP_GET_CONTEXT_REF_STRING ] = "GET_CONTEXT_REF_STRING",
134 [ FILTER_OP_GET_CONTEXT_REF_S64 ] = "GET_CONTEXT_REF_S64",
135 [ FILTER_OP_GET_CONTEXT_REF_DOUBLE ] = "GET_CONTEXT_REF_DOUBLE",
f6753f2d
MD
136
137 /* load userspace field ref */
138 [ FILTER_OP_LOAD_FIELD_REF_USER_STRING ] = "LOAD_FIELD_REF_USER_STRING",
139 [ FILTER_OP_LOAD_FIELD_REF_USER_SEQUENCE ] = "LOAD_FIELD_REF_USER_SEQUENCE",
140
141 /*
142 * load immediate star globbing pattern (literal string)
143 * from immediate.
144 */
145 [ FILTER_OP_LOAD_STAR_GLOB_STRING ] = "LOAD_STAR_GLOB_STRING",
146
147 /* globbing pattern binary operator: apply to */
148 [ FILTER_OP_EQ_STAR_GLOB_STRING ] = "EQ_STAR_GLOB_STRING",
149 [ FILTER_OP_NE_STAR_GLOB_STRING ] = "NE_STAR_GLOB_STRING",
47e5f13e
MD
150
151 /*
152 * Instructions for recursive traversal through composed types.
153 */
154 [ FILTER_OP_GET_CONTEXT_ROOT ] = "GET_CONTEXT_ROOT",
155 [ FILTER_OP_GET_APP_CONTEXT_ROOT ] = "GET_APP_CONTEXT_ROOT",
156 [ FILTER_OP_GET_PAYLOAD_ROOT ] = "GET_PAYLOAD_ROOT",
157
158 [ FILTER_OP_GET_SYMBOL ] = "GET_SYMBOL",
159 [ FILTER_OP_GET_SYMBOL_FIELD ] = "GET_SYMBOL_FIELD",
160 [ FILTER_OP_GET_INDEX_U16 ] = "GET_INDEX_U16",
161 [ FILTER_OP_GET_INDEX_U64 ] = "GET_INDEX_U64",
162
163 [ FILTER_OP_LOAD_FIELD ] = "LOAD_FIELD",
164 [ FILTER_OP_LOAD_FIELD_S8 ] = "LOAD_FIELD_S8",
165 [ FILTER_OP_LOAD_FIELD_S16 ] = "LOAD_FIELD_S16",
166 [ FILTER_OP_LOAD_FIELD_S32 ] = "LOAD_FIELD_S32",
167 [ FILTER_OP_LOAD_FIELD_S64 ] = "LOAD_FIELD_S64",
168 [ FILTER_OP_LOAD_FIELD_U8 ] = "LOAD_FIELD_U8",
169 [ FILTER_OP_LOAD_FIELD_U16 ] = "LOAD_FIELD_U16",
170 [ FILTER_OP_LOAD_FIELD_U32 ] = "LOAD_FIELD_U32",
171 [ FILTER_OP_LOAD_FIELD_U64 ] = "LOAD_FIELD_U64",
172 [ FILTER_OP_LOAD_FIELD_STRING ] = "LOAD_FIELD_STRING",
173 [ FILTER_OP_LOAD_FIELD_SEQUENCE ] = "LOAD_FIELD_SEQUENCE",
174 [ FILTER_OP_LOAD_FIELD_DOUBLE ] = "LOAD_FIELD_DOUBLE",
0039e2d8
MD
175
176 [ FILTER_OP_UNARY_BIT_NOT ] = "UNARY_BIT_NOT",
93c591bb
MD
177
178 [ FILTER_OP_RETURN_S64 ] = "RETURN_S64",
cd54f6d9
MD
179};
180
cd54f6d9
MD
181const char *print_op(enum filter_op op)
182{
183 if (op >= NR_FILTER_OPS)
184 return "UNKNOWN";
185 else
186 return opnames[op];
187}
188
cd54f6d9 189static
7dd08bec 190int apply_field_reloc(struct lttng_event *event,
cd54f6d9
MD
191 struct bytecode_runtime *runtime,
192 uint32_t runtime_len,
193 uint32_t reloc_offset,
47e5f13e
MD
194 const char *field_name,
195 enum filter_op filter_op)
cd54f6d9
MD
196{
197 const struct lttng_event_desc *desc;
198 const struct lttng_event_field *fields, *field = NULL;
199 unsigned int nr_fields, i;
2f0145d1 200 struct load_op *op;
cd54f6d9
MD
201 uint32_t field_offset = 0;
202
77aa5901 203 dbg_printf("Apply field reloc: %u %s\n", reloc_offset, field_name);
cd54f6d9
MD
204
205 /* Lookup event by name */
206 desc = event->desc;
207 if (!desc)
208 return -EINVAL;
209 fields = desc->fields;
210 if (!fields)
211 return -EINVAL;
212 nr_fields = desc->nr_fields;
213 for (i = 0; i < nr_fields; i++) {
218deb69
MD
214 if (fields[i].u.ext.nofilter) {
215 continue;
216 }
cd54f6d9
MD
217 if (!strcmp(fields[i].name, field_name)) {
218 field = &fields[i];
219 break;
220 }
221 /* compute field offset */
222 switch (fields[i].type.atype) {
223 case atype_integer:
224 case atype_enum:
218deb69 225 case atype_enum_nestable:
cd54f6d9
MD
226 field_offset += sizeof(int64_t);
227 break;
228 case atype_array:
218deb69 229 case atype_array_nestable:
cd54f6d9 230 case atype_sequence:
218deb69 231 case atype_sequence_nestable:
cd54f6d9
MD
232 field_offset += sizeof(unsigned long);
233 field_offset += sizeof(void *);
234 break;
235 case atype_string:
236 field_offset += sizeof(void *);
237 break;
238 case atype_float:
239 field_offset += sizeof(double);
da6eed25 240 break;
cd54f6d9
MD
241 default:
242 return -EINVAL;
243 }
244 }
245 if (!field)
246 return -EINVAL;
247
248 /* Check if field offset is too large for 16-bit offset */
5b4839a8 249 if (field_offset > FILTER_BYTECODE_MAX_LEN - 1)
cd54f6d9
MD
250 return -EINVAL;
251
252 /* set type */
47e5f13e
MD
253 op = (struct load_op *) &runtime->code[reloc_offset];
254
255 switch (filter_op) {
256 case FILTER_OP_LOAD_FIELD_REF:
257 {
258 struct field_ref *field_ref;
259
260 field_ref = (struct field_ref *) op->data;
261 switch (field->type.atype) {
262 case atype_integer:
263 case atype_enum:
218deb69 264 case atype_enum_nestable:
47e5f13e
MD
265 op->op = FILTER_OP_LOAD_FIELD_REF_S64;
266 break;
267 case atype_array:
218deb69 268 case atype_array_nestable:
47e5f13e 269 case atype_sequence:
218deb69 270 case atype_sequence_nestable:
47e5f13e
MD
271 op->op = FILTER_OP_LOAD_FIELD_REF_SEQUENCE;
272 break;
273 case atype_string:
274 op->op = FILTER_OP_LOAD_FIELD_REF_STRING;
275 break;
276 case atype_float:
277 op->op = FILTER_OP_LOAD_FIELD_REF_DOUBLE;
278 break;
279 default:
280 return -EINVAL;
281 }
282 /* set offset */
283 field_ref->offset = (uint16_t) field_offset;
da6eed25 284 break;
47e5f13e 285 }
cd54f6d9
MD
286 default:
287 return -EINVAL;
288 }
2d78951a
MD
289 return 0;
290}
291
77aa5901
MD
292static
293int apply_context_reloc(struct lttng_event *event,
294 struct bytecode_runtime *runtime,
295 uint32_t runtime_len,
296 uint32_t reloc_offset,
47e5f13e
MD
297 const char *context_name,
298 enum filter_op filter_op)
77aa5901 299{
77aa5901
MD
300 struct load_op *op;
301 struct lttng_ctx_field *ctx_field;
302 int idx;
53569322 303 struct lttng_session *session = runtime->p.session;
77aa5901
MD
304
305 dbg_printf("Apply context reloc: %u %s\n", reloc_offset, context_name);
306
307 /* Get context index */
53569322
MD
308 idx = lttng_get_context_index(session->ctx, context_name);
309 if (idx < 0) {
310 if (lttng_context_is_app(context_name)) {
311 int ret;
312
313 ret = lttng_ust_add_app_context_to_ctx_rcu(context_name,
314 &session->ctx);
315 if (ret)
316 return ret;
317 idx = lttng_get_context_index(session->ctx,
318 context_name);
319 if (idx < 0)
320 return -ENOENT;
321 } else {
322 return -ENOENT;
323 }
324 }
77aa5901
MD
325 /* Check if idx is too large for 16-bit offset */
326 if (idx > FILTER_BYTECODE_MAX_LEN - 1)
327 return -EINVAL;
328
329 /* Get context return type */
53569322 330 ctx_field = &session->ctx->fields[idx];
47e5f13e
MD
331 op = (struct load_op *) &runtime->code[reloc_offset];
332
333 switch (filter_op) {
334 case FILTER_OP_GET_CONTEXT_REF:
335 {
336 struct field_ref *field_ref;
337
338 field_ref = (struct field_ref *) op->data;
339 switch (ctx_field->event_field.type.atype) {
340 case atype_integer:
341 case atype_enum:
218deb69 342 case atype_enum_nestable:
47e5f13e
MD
343 op->op = FILTER_OP_GET_CONTEXT_REF_S64;
344 break;
345 /* Sequence and array supported as string */
346 case atype_string:
347 case atype_array:
218deb69 348 case atype_array_nestable:
47e5f13e 349 case atype_sequence:
218deb69 350 case atype_sequence_nestable:
47e5f13e
MD
351 op->op = FILTER_OP_GET_CONTEXT_REF_STRING;
352 break;
353 case atype_float:
354 op->op = FILTER_OP_GET_CONTEXT_REF_DOUBLE;
355 break;
356 case atype_dynamic:
357 op->op = FILTER_OP_GET_CONTEXT_REF;
358 break;
359 default:
360 return -EINVAL;
361 }
362 /* set offset to context index within channel contexts */
363 field_ref->offset = (uint16_t) idx;
53569322 364 break;
47e5f13e 365 }
77aa5901
MD
366 default:
367 return -EINVAL;
368 }
77aa5901
MD
369 return 0;
370}
371
372static
373int apply_reloc(struct lttng_event *event,
374 struct bytecode_runtime *runtime,
375 uint32_t runtime_len,
376 uint32_t reloc_offset,
377 const char *name)
378{
379 struct load_op *op;
380
381 dbg_printf("Apply reloc: %u %s\n", reloc_offset, name);
382
383 /* Ensure that the reloc is within the code */
384 if (runtime_len - reloc_offset < sizeof(uint16_t))
385 return -EINVAL;
386
47e5f13e 387 op = (struct load_op *) &runtime->code[reloc_offset];
77aa5901
MD
388 switch (op->op) {
389 case FILTER_OP_LOAD_FIELD_REF:
390 return apply_field_reloc(event, runtime, runtime_len,
47e5f13e 391 reloc_offset, name, op->op);
77aa5901
MD
392 case FILTER_OP_GET_CONTEXT_REF:
393 return apply_context_reloc(event, runtime, runtime_len,
47e5f13e
MD
394 reloc_offset, name, op->op);
395 case FILTER_OP_GET_SYMBOL:
396 case FILTER_OP_GET_SYMBOL_FIELD:
397 /*
398 * Will be handled by load specialize phase or
399 * dynamically by interpreter.
400 */
401 return 0;
77aa5901
MD
402 default:
403 ERR("Unknown reloc op type %u\n", op->op);
404 return -EINVAL;
405 }
406 return 0;
407}
408
f488575f
MD
409static
410int bytecode_is_linked(struct lttng_ust_filter_bytecode_node *filter_bytecode,
7dd08bec 411 struct lttng_event *event)
f488575f
MD
412{
413 struct lttng_bytecode_runtime *bc_runtime;
414
e58095ef
MD
415 cds_list_for_each_entry(bc_runtime,
416 &event->bytecode_runtime_head, node) {
f488575f
MD
417 if (bc_runtime->bc == filter_bytecode)
418 return 1;
419 }
420 return 0;
421}
422
cd54f6d9
MD
423/*
424 * Take a bytecode with reloc table and link it to an event to create a
425 * bytecode runtime.
426 */
2d78951a 427static
7dd08bec 428int _lttng_filter_event_link_bytecode(struct lttng_event *event,
e58095ef
MD
429 struct lttng_ust_filter_bytecode_node *filter_bytecode,
430 struct cds_list_head *insert_loc)
2d78951a 431{
cd54f6d9
MD
432 int ret, offset, next_offset;
433 struct bytecode_runtime *runtime = NULL;
434 size_t runtime_alloc_len;
435
2d78951a
MD
436 if (!filter_bytecode)
437 return 0;
cd54f6d9 438 /* Bytecode already linked */
f488575f 439 if (bytecode_is_linked(filter_bytecode, event))
cd54f6d9 440 return 0;
2d78951a 441
f488575f 442 dbg_printf("Linking...\n");
cd54f6d9
MD
443
444 /* We don't need the reloc table in the runtime */
f488575f 445 runtime_alloc_len = sizeof(*runtime) + filter_bytecode->bc.reloc_offset;
cd54f6d9
MD
446 runtime = zmalloc(runtime_alloc_len);
447 if (!runtime) {
448 ret = -ENOMEM;
e0a7d7ab 449 goto alloc_error;
cd54f6d9 450 }
f488575f 451 runtime->p.bc = filter_bytecode;
53569322 452 runtime->p.session = event->chan->session;
f488575f 453 runtime->len = filter_bytecode->bc.reloc_offset;
cd54f6d9 454 /* copy original bytecode */
47e5f13e 455 memcpy(runtime->code, filter_bytecode->bc.data, runtime->len);
cd54f6d9
MD
456 /*
457 * apply relocs. Those are a uint16_t (offset in bytecode)
458 * followed by a string (field name).
459 */
f488575f
MD
460 for (offset = filter_bytecode->bc.reloc_offset;
461 offset < filter_bytecode->bc.len;
cd54f6d9
MD
462 offset = next_offset) {
463 uint16_t reloc_offset =
f488575f 464 *(uint16_t *) &filter_bytecode->bc.data[offset];
77aa5901 465 const char *name =
f488575f 466 (const char *) &filter_bytecode->bc.data[offset + sizeof(uint16_t)];
cd54f6d9 467
77aa5901 468 ret = apply_reloc(event, runtime, runtime->len, reloc_offset, name);
cd54f6d9
MD
469 if (ret) {
470 goto link_error;
471 }
77aa5901 472 next_offset = offset + sizeof(uint16_t) + strlen(name) + 1;
cd54f6d9 473 }
9522a886
MD
474 /* Validate bytecode */
475 ret = lttng_filter_validate_bytecode(runtime);
476 if (ret) {
477 goto link_error;
478 }
08c84b15 479 /* Specialize bytecode */
47e5f13e 480 ret = lttng_filter_specialize_bytecode(event, runtime);
08c84b15
MD
481 if (ret) {
482 goto link_error;
483 }
f488575f 484 runtime->p.filter = lttng_filter_interpret_bytecode;
21af05a9 485 runtime->p.link_failed = 0;
e58095ef 486 cds_list_add_rcu(&runtime->p.node, insert_loc);
f488575f 487 dbg_printf("Linking successful.\n");
2d78951a 488 return 0;
cd54f6d9
MD
489
490link_error:
f488575f 491 runtime->p.filter = lttng_filter_false;
21af05a9 492 runtime->p.link_failed = 1;
e58095ef 493 cds_list_add_rcu(&runtime->p.node, insert_loc);
e0a7d7ab 494alloc_error:
f488575f 495 dbg_printf("Linking failed.\n");
cd54f6d9 496 return ret;
2d78951a
MD
497}
498
e58095ef 499void lttng_filter_sync_state(struct lttng_bytecode_runtime *runtime)
2d78951a 500{
e58095ef 501 struct lttng_ust_filter_bytecode_node *bc = runtime->bc;
f488575f 502
21af05a9 503 if (!bc->enabler->enabled || runtime->link_failed)
e58095ef 504 runtime->filter = lttng_filter_false;
21af05a9
MD
505 else
506 runtime->filter = lttng_filter_interpret_bytecode;
2d78951a
MD
507}
508
509/*
e58095ef 510 * Link bytecode for all enablers referenced by an event.
2d78951a 511 */
e58095ef
MD
512void lttng_enabler_event_link_bytecode(struct lttng_event *event,
513 struct lttng_enabler *enabler)
2d78951a 514{
e58095ef
MD
515 struct lttng_ust_filter_bytecode_node *bc;
516 struct lttng_bytecode_runtime *runtime;
517
518 /* Can only be called for events with desc attached */
519 assert(event->desc);
520
521 /* Link each bytecode. */
522 cds_list_for_each_entry(bc, &enabler->filter_bytecode_head, node) {
523 int found = 0, ret;
524 struct cds_list_head *insert_loc;
525
526 cds_list_for_each_entry(runtime,
527 &event->bytecode_runtime_head, node) {
528 if (runtime->bc == bc) {
529 found = 1;
530 break;
531 }
532 }
533 /* Skip bytecode already linked */
534 if (found)
535 continue;
536
537 /*
538 * Insert at specified priority (seqnum) in increasing
539 * order.
540 */
541 cds_list_for_each_entry_reverse(runtime,
542 &event->bytecode_runtime_head, node) {
543 if (runtime->bc->bc.seqnum < bc->bc.seqnum) {
544 /* insert here */
545 insert_loc = &runtime->node;
546 goto add_within;
547 }
548 }
549 /* Add to head to list */
550 insert_loc = &event->bytecode_runtime_head;
551 add_within:
f488575f 552 dbg_printf("linking bytecode\n");
e58095ef
MD
553 ret = _lttng_filter_event_link_bytecode(event, bc,
554 insert_loc);
555 if (ret) {
556 dbg_printf("[lttng filter] warning: cannot link event bytecode\n");
557 }
2d78951a 558 }
2d78951a
MD
559}
560
561/*
e58095ef 562 * We own the filter_bytecode if we return success.
2d78951a 563 */
e58095ef 564int lttng_filter_enabler_attach_bytecode(struct lttng_enabler *enabler,
f488575f 565 struct lttng_ust_filter_bytecode_node *filter_bytecode)
2d78951a 566{
e58095ef 567 cds_list_add(&filter_bytecode->node, &enabler->filter_bytecode_head);
2d78951a
MD
568 return 0;
569}
f488575f 570
7dd08bec 571void lttng_free_event_filter_runtime(struct lttng_event *event)
f488575f
MD
572{
573 struct bytecode_runtime *runtime, *tmp;
574
575 cds_list_for_each_entry_safe(runtime, tmp,
e58095ef 576 &event->bytecode_runtime_head, p.node) {
47e5f13e 577 free(runtime->data);
f488575f
MD
578 free(runtime);
579 }
580}
This page took 0.058773 seconds and 4 git commands to generate.