Fix: use-after-free in UST test case
authorFrancis Deslauriers <francis.deslauriers@efficios.com>
Tue, 28 Aug 2018 19:38:22 +0000 (15:38 -0400)
committerJérémie Galarneau <jeremie.galarneau@efficios.com>
Wed, 29 Aug 2018 21:32:45 +0000 (17:32 -0400)
Create a copy of the exclusion structure to be able to compare both
struct after the event is created.

Reported-by: Coverity (1395194) Read from pointer after free
Signed-off-by: Francis Deslauriers <francis.deslauriers@efficios.com>
Signed-off-by: Jérémie Galarneau <jeremie.galarneau@efficios.com>
tests/unit/test_ust_data.c

index b80cb5b5402eeb26ca2f67cb301a96d8b4714343..2d31aa4b0d4a41f3c73ca7f13a708a0e01800400 100644 (file)
@@ -185,6 +185,7 @@ static void test_create_ust_event_exclusion(void)
        char *name;
        char *random_name;
        struct lttng_event_exclusion *exclusion;
+       struct lttng_event_exclusion *exclusion_copy = NULL;
        const int exclusion_count = 2;
 
        memset(&ev, 0, sizeof(ev));
@@ -227,12 +228,31 @@ static void test_create_ust_event_exclusion(void)
                goto end;
        }
 
+       exclusion_copy = zmalloc(sizeof(*exclusion) +
+               LTTNG_SYMBOL_NAME_LEN * exclusion_count);
+       if (!exclusion_copy) {
+               skip(2, "zmalloc failed");
+               goto end;
+       }
+
+       /*
+        * We are giving ownership of the exclusion struct to the
+        * trace_ust_create_event() function. Make a copy of the exclusion struct
+        * so we can compare it later.
+        */
+
        exclusion->count = exclusion_count;
        strncpy(LTTNG_EVENT_EXCLUSION_NAME_AT(exclusion, 0),
                get_random_string(), LTTNG_SYMBOL_NAME_LEN);
        strncpy(LTTNG_EVENT_EXCLUSION_NAME_AT(exclusion, 1),
                get_random_string(), LTTNG_SYMBOL_NAME_LEN);
 
+       exclusion_copy->count = exclusion_count;
+       strncpy(LTTNG_EVENT_EXCLUSION_NAME_AT(exclusion_copy, 0),
+               LTTNG_EVENT_EXCLUSION_NAME_AT(exclusion, 0), LTTNG_SYMBOL_NAME_LEN);
+       strncpy(LTTNG_EVENT_EXCLUSION_NAME_AT(exclusion_copy, 1),
+               LTTNG_EVENT_EXCLUSION_NAME_AT(exclusion, 1), LTTNG_SYMBOL_NAME_LEN);
+
        ret = trace_ust_create_event(&ev, NULL, NULL, exclusion, false, &event);
        ok(ret == LTTNG_OK, "Create UST event with different exclusion names");
 
@@ -246,13 +266,14 @@ static void test_create_ust_event_exclusion(void)
           strcmp(event->attr.name, ev.name) == 0 &&
           event->exclusion != NULL &&
           event->exclusion->count == exclusion_count &&
-          !memcmp(event->exclusion->names, exclusion->names,
+          !memcmp(event->exclusion->names, exclusion_copy->names,
                LTTNG_SYMBOL_NAME_LEN * exclusion_count) &&
           event->attr.name[LTTNG_UST_SYM_NAME_LEN - 1] == '\0',
           "Validate UST event and exclusion");
 
        trace_ust_destroy_event(event);
 end:
+       free(exclusion_copy);
        return;
 }
 
This page took 0.026834 seconds and 4 git commands to generate.