]> git.ozlabs.org Git - ccan/commitdiff
coroutine: Enable valgrind
authorDavid Gibson <david@gibson.dropbear.id.au>
Sat, 24 Dec 2016 10:08:55 +0000 (21:08 +1100)
committerDavid Gibson <david@gibson.dropbear.id.au>
Tue, 24 Jan 2017 10:22:27 +0000 (21:22 +1100)
Currently valgrind checks are disabled on the coroutine module,
because switching stacks tends to confuse it.  We can work around this
by using the valgrind client interface to explicitly inform it about
the stacks we create.

Signed-off-by: David Gibson <david@gibson.dropbear.id.au>
ccan/coroutine/_info
ccan/coroutine/coroutine.c
ccan/coroutine/coroutine.h

index 07e4b967e72777752a393eacafe32d7988afd12c..28032d8d113ca2a83321423b92b6685abfebe3b9 100644 (file)
@@ -37,8 +37,11 @@ int main(int argc, char *argv[])
        }
 
        if (strcmp(argv[1], "ccanlint") == 0) {
        }
 
        if (strcmp(argv[1], "ccanlint") == 0) {
-               /* Context switching really confuses valgrind */
+#if !HAVE_VALGRIND_MEMCHECK_H
+               /* valgrind needs extra information to cope with stack
+                * switching */
                printf("tests_pass_valgrind FAIL\n");
                printf("tests_pass_valgrind FAIL\n");
+#endif
                return 0;
        }
 
                return 0;
        }
 
index 60ba41691bc6dbf8e722873ccfa3297c8d9ad4a1..fa321ab85a6cf55a2fccb3113cc222352b26bc8d 100644 (file)
  * Stack management
  */
 
  * Stack management
  */
 
-struct coroutine_stack {
-       uint64_t magic;
-       size_t size;
-};
-
 /* Returns lowest stack addres, regardless of growth direction */
 static UNNEEDED void *coroutine_stack_base(struct coroutine_stack *stack)
 {
 /* Returns lowest stack addres, regardless of growth direction */
 static UNNEEDED void *coroutine_stack_base(struct coroutine_stack *stack)
 {
@@ -29,12 +24,38 @@ static UNNEEDED void *coroutine_stack_base(struct coroutine_stack *stack)
 #endif
 }
 
 #endif
 }
 
+#if HAVE_VALGRIND_MEMCHECK_H
+#include <valgrind/memcheck.h>
+static void vg_register_stack(struct coroutine_stack *stack)
+{
+       char *base = coroutine_stack_base(stack);
+
+       VALGRIND_MAKE_MEM_UNDEFINED(base, stack->size);
+       stack->valgrind_id = VALGRIND_STACK_REGISTER(base,
+                                                    base + stack->size - 1);
+}
+
+static void vg_deregister_stack(struct coroutine_stack *stack)
+{
+       VALGRIND_MAKE_MEM_UNDEFINED(coroutine_stack_base(stack), stack->size);
+       VALGRIND_STACK_DEREGISTER(stack->valgrind_id);
+}
+static bool vg_addressable(void *p, size_t len)
+{
+       return !VALGRIND_CHECK_MEM_IS_ADDRESSABLE(p, len);
+}
+#else
+#define vg_register_stack(stack)               do { } while (0)
+#define vg_deregister_stack(stack)             do { } while (0)
+#define vg_addressable(p, len)                 (true)
+#endif
+
 struct coroutine_stack *coroutine_stack_init(void *buf, size_t bufsize,
                                             size_t metasize)
 {
        struct coroutine_stack *stack;
 struct coroutine_stack *coroutine_stack_init(void *buf, size_t bufsize,
                                             size_t metasize)
 {
        struct coroutine_stack *stack;
+       size_t size = bufsize - sizeof(*stack) - metasize;
 
 
-       BUILD_ASSERT(COROUTINE_STK_OVERHEAD == sizeof(*stack));
 #ifdef MINSIGSTKSZ
        BUILD_ASSERT(COROUTINE_MIN_STKSZ >= MINSIGSTKSZ);
 #endif
 #ifdef MINSIGSTKSZ
        BUILD_ASSERT(COROUTINE_MIN_STKSZ >= MINSIGSTKSZ);
 #endif
@@ -50,20 +71,22 @@ struct coroutine_stack *coroutine_stack_init(void *buf, size_t bufsize,
 #endif
 
        stack->magic = COROUTINE_STACK_MAGIC;
 #endif
 
        stack->magic = COROUTINE_STACK_MAGIC;
-       stack->size = bufsize - sizeof(*stack) - metasize;
-
+       stack->size = size;
+       vg_register_stack(stack);
        return stack;
 }
 
 void coroutine_stack_release(struct coroutine_stack *stack, size_t metasize)
 {
        return stack;
 }
 
 void coroutine_stack_release(struct coroutine_stack *stack, size_t metasize)
 {
+       vg_deregister_stack(stack);
        memset(stack, 0, sizeof(*stack));
 }
 
 struct coroutine_stack *coroutine_stack_check(struct coroutine_stack *stack,
                                              const char *abortstr)
 {
        memset(stack, 0, sizeof(*stack));
 }
 
 struct coroutine_stack *coroutine_stack_check(struct coroutine_stack *stack,
                                              const char *abortstr)
 {
-       if (stack && (stack->magic == COROUTINE_STACK_MAGIC)
+       if (stack && vg_addressable(stack, sizeof(*stack))
+           && (stack->magic == COROUTINE_STACK_MAGIC)
            && (stack->size >= COROUTINE_MIN_STKSZ))
                return stack;
 
            && (stack->size >= COROUTINE_MIN_STKSZ))
                return stack;
 
index 1d746f493f1c7f1b0c653e05e7850446ab8a0e36..7a8c88f112eccc2b021037c40c9bd04faa8465ad 100644 (file)
  * Describes a stack suitable for executing a coroutine.  This
  * structure is always contained within the stack it describes.
  */
  * Describes a stack suitable for executing a coroutine.  This
  * structure is always contained within the stack it describes.
  */
-struct coroutine_stack;
+struct coroutine_stack {
+       uint64_t magic;
+       size_t size;
+       int valgrind_id;
+};
 
 /**
  * struct coroutine_state
 
 /**
  * struct coroutine_state
@@ -37,7 +41,7 @@ struct coroutine_state;
  * Number of bytes of a stack which coroutine needs for its own
  * tracking information.
  */
  * Number of bytes of a stack which coroutine needs for its own
  * tracking information.
  */
-#define COROUTINE_STK_OVERHEAD         (sizeof(uint64_t) + sizeof(size_t))
+#define COROUTINE_STK_OVERHEAD sizeof(struct coroutine_stack)
 
 /**
  * COROUTINE_MIN_STKSZ - Minimum coroutine stack size
 
 /**
  * COROUTINE_MIN_STKSZ - Minimum coroutine stack size