Fix: lttng-ust 2.13 should not try to use notifiers from 2.12 or prior probes
[deliverable/lttng-ust.git] / liblttng-ust / lttng-events.c
index 53bb1100cab922b7fd86a0349c69ce3b057bfb98..16d75da95b0c265d4785ca61de0513caa29476eb 100644 (file)
@@ -1708,6 +1708,13 @@ void lttng_session_sync_event_enablers(struct lttng_session *session)
        __tracepoint_probe_prune_release_queue();
 }
 
+/* Support for event notifier is introduced by probe provider major version 2. */
+static
+bool lttng_ust_probe_supports_event_notifier(struct lttng_probe_desc *probe_desc)
+{
+       return probe_desc->major >= 2;
+}
+
 static
 void lttng_create_event_notifier_if_missing(
                struct lttng_event_notifier_enabler *event_notifier_enabler)
@@ -1759,6 +1766,18 @@ void lttng_create_event_notifier_if_missing(
                        if (found)
                                continue;
 
+                       /* Check that the probe supports event notifiers, else report the error. */
+                       if (!lttng_ust_probe_supports_event_notifier(probe_desc)) {
+                               ERR("Probe \"%s\" contains event \"%s\" which matches an enabled event notifier, "
+                                       "but its version (%u.%u) is too old and does not implement event notifiers. "
+                                       "It needs to be recompiled against a newer version of LTTng-UST, otherwise "
+                                       "this event will not generate any notification.",
+                                       probe_desc->provider,
+                                       desc->name,
+                                       probe_desc->major,
+                                       probe_desc->minor);
+                               continue;
+                       }
                        /*
                         * We need to create a event_notifier for this event probe.
                         */
This page took 0.02339 seconds and 5 git commands to generate.