Version 2.9.7
[lttng-ust.git] / liblttng-ust / lttng-filter.c
index 4bb7d4dc87f0793705a11804d7fe91fefab5a427..911f8e7848aa4c3d6a907cdf56715e5213a78084 100644 (file)
@@ -20,6 +20,7 @@
  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
  */
 
+#define _LGPL_SOURCE
 #include <urcu/rculist.h>
 #include "lttng-filter.h"
 
@@ -228,20 +229,34 @@ int apply_context_reloc(struct lttng_event *event,
        struct load_op *op;
        struct lttng_ctx_field *ctx_field;
        int idx;
+       struct lttng_session *session = runtime->p.session;
 
        dbg_printf("Apply context reloc: %u %s\n", reloc_offset, context_name);
 
        /* Get context index */
-       idx = lttng_get_context_index(event->chan->ctx, context_name);
-       if (idx < 0)
-               return -ENOENT;
-
+       idx = lttng_get_context_index(session->ctx, 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,
+                                       &session->ctx);
+                       if (ret)
+                               return ret;
+                       idx = lttng_get_context_index(session->ctx,
+                               context_name);
+                       if (idx < 0)
+                               return -ENOENT;
+               } else {
+                       return -ENOENT;
+               }
+       }
        /* Check if idx is too large for 16-bit offset */
        if (idx > FILTER_BYTECODE_MAX_LEN - 1)
                return -EINVAL;
 
        /* Get context return type */
-       ctx_field = &event->chan->ctx->fields[idx];
+       ctx_field = &session->ctx->fields[idx];
        op = (struct load_op *) &runtime->data[reloc_offset];
        field_ref = (struct field_ref *) op->data;
        switch (ctx_field->event_field.type.atype) {
@@ -258,6 +273,9 @@ int apply_context_reloc(struct lttng_event *event,
        case atype_float:
                op->op = FILTER_OP_GET_CONTEXT_REF_DOUBLE;
                break;
+       case atype_dynamic:
+               op->op = FILTER_OP_GET_CONTEXT_REF;
+               break;
        default:
                return -EINVAL;
        }
@@ -339,6 +357,7 @@ int _lttng_filter_event_link_bytecode(struct lttng_event *event,
                goto alloc_error;
        }
        runtime->p.bc = filter_bytecode;
+       runtime->p.session = event->chan->session;
        runtime->len = filter_bytecode->bc.reloc_offset;
        /* copy original bytecode */
        memcpy(runtime->data, filter_bytecode->bc.data, runtime->len);
This page took 0.032054 seconds and 4 git commands to generate.