X-Git-Url: http://git.lttng.org/?a=blobdiff_plain;ds=sidebyside;f=liblttng-ust%2Flttng-bytecode.c;h=ef458055f14f7eec51f2a74c1acf9c8e107ebf60;hb=dc11f93f7d30cd383e35be41483cc024da59c7b8;hp=9bb7f11f77138439c511d5532ad2d9db238e8ca5;hpb=fc80554e0cd4c7739c64fe8bc8b87a77d3c19d07;p=lttng-ust.git diff --git a/liblttng-ust/lttng-bytecode.c b/liblttng-ust/lttng-bytecode.c index 9bb7f11f..ef458055 100644 --- a/liblttng-ust/lttng-bytecode.c +++ b/liblttng-ust/lttng-bytecode.c @@ -162,7 +162,7 @@ static const char *opnames[] = { [ BYTECODE_OP_RETURN_S64 ] = "RETURN_S64", }; -const char *print_op(enum bytecode_op op) +const char *lttng_bytecode_print_op(enum bytecode_op op) { if (op >= NR_BYTECODE_OPS) return "UNKNOWN"; @@ -171,7 +171,7 @@ const char *print_op(enum bytecode_op op) } static -int apply_field_reloc(const struct lttng_event_desc *event_desc, +int apply_field_reloc(const struct lttng_ust_event_desc *event_desc, struct bytecode_runtime *runtime, uint32_t runtime_len, uint32_t reloc_offset, @@ -203,13 +203,10 @@ int apply_field_reloc(const struct lttng_event_desc *event_desc, /* compute field offset */ switch (fields[i].type.atype) { case atype_integer: - case atype_enum: case atype_enum_nestable: field_offset += sizeof(int64_t); break; - case atype_array: case atype_array_nestable: - case atype_sequence: case atype_sequence_nestable: field_offset += sizeof(unsigned long); field_offset += sizeof(void *); @@ -228,7 +225,7 @@ int apply_field_reloc(const struct lttng_event_desc *event_desc, return -EINVAL; /* Check if field offset is too large for 16-bit offset */ - if (field_offset > FILTER_BYTECODE_MAX_LEN - 1) + if (field_offset > LTTNG_UST_ABI_FILTER_BYTECODE_MAX_LEN - 1) return -EINVAL; /* set type */ @@ -242,13 +239,10 @@ int apply_field_reloc(const struct lttng_event_desc *event_desc, field_ref = (struct field_ref *) op->data; switch (field->type.atype) { case atype_integer: - case atype_enum: case atype_enum_nestable: op->op = BYTECODE_OP_LOAD_FIELD_REF_S64; break; - case atype_array: case atype_array_nestable: - case atype_sequence: case atype_sequence_nestable: op->op = BYTECODE_OP_LOAD_FIELD_REF_SEQUENCE; break; @@ -281,7 +275,7 @@ int apply_context_reloc(struct bytecode_runtime *runtime, struct load_op *op; struct lttng_ctx_field *ctx_field; int idx; - struct lttng_ctx **pctx = runtime->p.pctx; + struct lttng_ctx **pctx = runtime->p.priv->pctx; dbg_printf("Apply context reloc: %u %s\n", reloc_offset, context_name); @@ -303,7 +297,7 @@ int apply_context_reloc(struct bytecode_runtime *runtime, } } /* Check if idx is too large for 16-bit offset */ - if (idx > FILTER_BYTECODE_MAX_LEN - 1) + if (idx > LTTNG_UST_ABI_FILTER_BYTECODE_MAX_LEN - 1) return -EINVAL; /* Get context return type */ @@ -318,15 +312,12 @@ int apply_context_reloc(struct bytecode_runtime *runtime, field_ref = (struct field_ref *) op->data; switch (ctx_field->event_field.type.atype) { case atype_integer: - case atype_enum: case atype_enum_nestable: op->op = BYTECODE_OP_GET_CONTEXT_REF_S64; break; /* Sequence and array supported as string */ case atype_string: - case atype_array: case atype_array_nestable: - case atype_sequence: case atype_sequence_nestable: op->op = BYTECODE_OP_GET_CONTEXT_REF_STRING; break; @@ -350,7 +341,7 @@ int apply_context_reloc(struct bytecode_runtime *runtime, } static -int apply_reloc(const struct lttng_event_desc *event_desc, +int apply_reloc(const struct lttng_ust_event_desc *event_desc, struct bytecode_runtime *runtime, uint32_t runtime_len, uint32_t reloc_offset, @@ -393,7 +384,7 @@ int bytecode_is_linked(struct lttng_ust_bytecode_node *bytecode, struct lttng_bytecode_runtime *bc_runtime; cds_list_for_each_entry(bc_runtime, bytecode_runtime_head, node) { - if (bc_runtime->bc == bytecode) + if (bc_runtime->priv->bc == bytecode) return 1; } return 0; @@ -404,19 +395,21 @@ int bytecode_is_linked(struct lttng_ust_bytecode_node *bytecode, * bytecode runtime. */ static -int link_bytecode(const struct lttng_event_desc *event_desc, +int link_bytecode(const struct lttng_ust_event_desc *event_desc, struct lttng_ctx **ctx, struct lttng_ust_bytecode_node *bytecode, + struct cds_list_head *bytecode_runtime_head, struct cds_list_head *insert_loc) { int ret, offset, next_offset; struct bytecode_runtime *runtime = NULL; + struct lttng_ust_bytecode_runtime_private *runtime_priv = NULL; size_t runtime_alloc_len; if (!bytecode) return 0; /* Bytecode already linked */ - if (bytecode_is_linked(bytecode, insert_loc)) + if (bytecode_is_linked(bytecode, bytecode_runtime_head)) return 0; dbg_printf("Linking...\n"); @@ -428,8 +421,17 @@ int link_bytecode(const struct lttng_event_desc *event_desc, ret = -ENOMEM; goto alloc_error; } - runtime->p.bc = bytecode; - runtime->p.pctx = ctx; + runtime_priv = zmalloc(sizeof(struct lttng_ust_bytecode_runtime_private)); + if (!runtime_priv) { + free(runtime); + runtime = NULL; + ret = -ENOMEM; + goto alloc_error; + } + runtime->p.priv = runtime_priv; + runtime_priv->pub = runtime; + runtime_priv->bc = bytecode; + runtime_priv->pctx = ctx; runtime->len = bytecode->bc.reloc_offset; /* copy original bytecode */ memcpy(runtime->code, bytecode->bc.data, runtime->len); @@ -473,7 +475,7 @@ int link_bytecode(const struct lttng_event_desc *event_desc, abort(); } - runtime->p.link_failed = 0; + runtime->p.priv->link_failed = 0; cds_list_add_rcu(&runtime->p.node, insert_loc); dbg_printf("Linking successful.\n"); return 0; @@ -490,7 +492,7 @@ link_error: abort(); } - runtime->p.link_failed = 1; + runtime_priv->link_failed = 1; cds_list_add_rcu(&runtime->p.node, insert_loc); alloc_error: dbg_printf("Linking failed.\n"); @@ -499,9 +501,9 @@ alloc_error: void lttng_bytecode_filter_sync_state(struct lttng_bytecode_runtime *runtime) { - struct lttng_ust_bytecode_node *bc = runtime->bc; + struct lttng_ust_bytecode_node *bc = runtime->priv->bc; - if (!bc->enabler->enabled || runtime->link_failed) + if (!bc->enabler->enabled || runtime->priv->link_failed) runtime->interpreter_funcs.filter = lttng_bytecode_filter_interpret_false; else runtime->interpreter_funcs.filter = lttng_bytecode_filter_interpret; @@ -509,9 +511,9 @@ void lttng_bytecode_filter_sync_state(struct lttng_bytecode_runtime *runtime) void lttng_bytecode_capture_sync_state(struct lttng_bytecode_runtime *runtime) { - struct lttng_ust_bytecode_node *bc = runtime->bc; + struct lttng_ust_bytecode_node *bc = runtime->priv->bc; - if (!bc->enabler->enabled || runtime->link_failed) + if (!bc->enabler->enabled || runtime->priv->link_failed) runtime->interpreter_funcs.capture = lttng_bytecode_capture_interpret_false; else runtime->interpreter_funcs.capture = lttng_bytecode_capture_interpret; @@ -525,7 +527,7 @@ void lttng_bytecode_capture_sync_state(struct lttng_bytecode_runtime *runtime) * This function is called after we confirmed that name enabler and the * instance are name matching (or glob pattern matching). */ -void lttng_enabler_link_bytecode(const struct lttng_event_desc *event_desc, +void lttng_enabler_link_bytecode(const struct lttng_ust_event_desc *event_desc, struct lttng_ctx **ctx, struct cds_list_head *instance_bytecode_head, struct cds_list_head *enabler_bytecode_head) @@ -545,7 +547,7 @@ void lttng_enabler_link_bytecode(const struct lttng_event_desc *event_desc, * linked with the instance. */ cds_list_for_each_entry(runtime, instance_bytecode_head, node) { - if (runtime->bc == enabler_bc) { + if (runtime->priv->bc == enabler_bc) { found = 1; break; } @@ -565,7 +567,7 @@ void lttng_enabler_link_bytecode(const struct lttng_event_desc *event_desc, */ cds_list_for_each_entry_reverse(runtime, instance_bytecode_head, node) { - if (runtime->bc->bc.seqnum <= enabler_bc->bc.seqnum) { + if (runtime->priv->bc->bc.seqnum <= enabler_bc->bc.seqnum) { /* insert here */ insert_loc = &runtime->node; goto add_within; @@ -576,7 +578,7 @@ void lttng_enabler_link_bytecode(const struct lttng_event_desc *event_desc, insert_loc = instance_bytecode_head; add_within: dbg_printf("linking bytecode\n"); - ret = link_bytecode(event_desc, ctx, enabler_bc, insert_loc); + ret = link_bytecode(event_desc, ctx, enabler_bc, instance_bytecode_head, insert_loc); if (ret) { dbg_printf("[lttng filter] warning: cannot link event bytecode\n"); } @@ -601,17 +603,12 @@ void free_filter_runtime(struct cds_list_head *bytecode_runtime_head) cds_list_for_each_entry_safe(runtime, tmp, bytecode_runtime_head, p.node) { free(runtime->data); + free(runtime->p.priv); free(runtime); } } -void lttng_free_event_filter_runtime(struct lttng_event *event) +void lttng_free_event_filter_runtime(struct lttng_ust_event_common *event) { free_filter_runtime(&event->filter_bytecode_runtime_head); } - -void lttng_free_event_notifier_filter_runtime( - struct lttng_event_notifier *event_notifier) -{ - free_filter_runtime(&event_notifier->filter_bytecode_runtime_head); -}