aboutgitcodebugslistschat
path: root/Makefile
diff options
context:
space:
mode:
authorDavid Gibson <david@gibson.dropbear.id.au>2023-11-16 20:15:58 +1100
committerStefano Brivio <sbrivio@redhat.com>2023-11-19 09:10:12 +0100
commitf7724647b19e0e20d6a11e0405f15e4ff169394e (patch)
treeb0064ee7a8ab08fb353cf98f95cf482fea6dd422 /Makefile
parent457ff122e33cf6a6e559b073f41c530e42d9c597 (diff)
downloadpasst-f7724647b19e0e20d6a11e0405f15e4ff169394e.tar
passt-f7724647b19e0e20d6a11e0405f15e4ff169394e.tar.gz
passt-f7724647b19e0e20d6a11e0405f15e4ff169394e.tar.bz2
passt-f7724647b19e0e20d6a11e0405f15e4ff169394e.tar.lz
passt-f7724647b19e0e20d6a11e0405f15e4ff169394e.tar.xz
passt-f7724647b19e0e20d6a11e0405f15e4ff169394e.tar.zst
passt-f7724647b19e0e20d6a11e0405f15e4ff169394e.zip
valgrind: Adjust suppression for MSG_TRUNC with NULL buffer
valgrind complains if we pass a NULL buffer to recv(), even if we use MSG_TRUNC, in which case it's actually safe. For a long time we've had a valgrind suppression for this. It singles out the recv() in tcp_sock_consume(), the only place we use MSG_TRUNC. However, tcp_sock_consume() only has a single caller, which makes it a prime candidate for inlining. If inlined, it won't appear on the stack and valgrind won't match the correct suppression. It appears that certain compiler versions (for example gcc-13.2.1 in Fedora 39) will inline this function even with the -O0 we use for valgrind builds. This breaks the suppression leading to a spurious failure in the tests. There's not really any way to adjust the suppression itself without making it overly broad (we don't want to match other recv() calls). So, as a hack explicitly prevent inlining of this function when we're making a valgrind build. To accomplish this add an explicit -DVALGRIND when making such a build. Signed-off-by: David Gibson <david@gibson.dropbear.id.au> Signed-off-by: Stefano Brivio <sbrivio@redhat.com>
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index ff21459..57b2544 100644
--- a/Makefile
+++ b/Makefile
@@ -128,7 +128,7 @@ qrap: $(QRAP_SRCS) passt.h
valgrind: EXTRA_SYSCALLS += rt_sigprocmask rt_sigtimedwait rt_sigaction \
getpid gettid kill clock_gettime mmap \
munmap open unlink gettimeofday futex
-valgrind: FLAGS:=-g -O0 $(filter-out -O%,$(FLAGS))
+valgrind: FLAGS:=-g -O0 $(filter-out -O%,$(FLAGS)) -DVALGRIND
valgrind: all
.PHONY: clean