Fix: memory leak in apply_context_reloc
authorMathieu Desnoyers <mathieu.desnoyers@efficios.com>
Thu, 26 Nov 2020 20:50:45 +0000 (15:50 -0500)
committerMathieu Desnoyers <mathieu.desnoyers@efficios.com>
Thu, 26 Nov 2020 20:50:45 +0000 (15:50 -0500)
Fixes commit b77aaa1b8edf2 ("Decouple `struct lttng_session` from filter code")

lttng_ust_add_app_context_to_ctx_rcu should be able to update the
session ctx field and not only the local ctx pointer.

Signed-off-by: Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
Change-Id: I1bfdc7a1a2b6f9c579206e996572e36bf30d60e7

liblttng-ust/lttng-bytecode.c

index 30d3cbd105d2eb029f83482ab1f013ade312c496..a30dd1825cec23e021ec1590d198d5d889feb990 100644 (file)
@@ -298,21 +298,21 @@ int apply_context_reloc(struct bytecode_runtime *runtime,
        struct load_op *op;
        struct lttng_ctx_field *ctx_field;
        int idx;
-       struct lttng_ctx *ctx = *runtime->p.pctx;
+       struct lttng_ctx **pctx = runtime->p.pctx;
 
        dbg_printf("Apply context reloc: %u %s\n", reloc_offset, context_name);
 
        /* Get context index */
-       idx = lttng_get_context_index(ctx, context_name);
+       idx = lttng_get_context_index(*pctx, context_name);
        if (idx < 0) {
                if (lttng_context_is_app(context_name)) {
                        int ret;
 
                        ret = lttng_ust_add_app_context_to_ctx_rcu(context_name,
-                                       &ctx);
+                                       pctx);
                        if (ret)
                                return ret;
-                       idx = lttng_get_context_index(ctx, context_name);
+                       idx = lttng_get_context_index(*pctx, context_name);
                        if (idx < 0)
                                return -ENOENT;
                } else {
@@ -324,7 +324,7 @@ int apply_context_reloc(struct bytecode_runtime *runtime,
                return -EINVAL;
 
        /* Get context return type */
-       ctx_field = &ctx->fields[idx];
+       ctx_field = &(*pctx)->fields[idx];
        op = (struct load_op *) &runtime->code[reloc_offset];
 
        switch (bytecode_op) {
This page took 0.025568 seconds and 4 git commands to generate.