aboutgitcodebugslistschat
path: root/udp.c
diff options
context:
space:
mode:
authorDavid Gibson <david@gibson.dropbear.id.au>2023-01-16 14:15:27 +1000
committerStefano Brivio <sbrivio@redhat.com>2023-02-12 23:42:24 +0100
commit7a8ed9459dfe803c529d61d3741d8d4f8f67ea92 (patch)
tree53b322cc77a651623e9498aecd516993743619a6 /udp.c
parentcc6d8286d1043d04eb8518e39cebcb9e086dca17 (diff)
downloadpasst-7a8ed9459dfe803c529d61d3741d8d4f8f67ea92.tar
passt-7a8ed9459dfe803c529d61d3741d8d4f8f67ea92.tar.gz
passt-7a8ed9459dfe803c529d61d3741d8d4f8f67ea92.tar.bz2
passt-7a8ed9459dfe803c529d61d3741d8d4f8f67ea92.tar.lz
passt-7a8ed9459dfe803c529d61d3741d8d4f8f67ea92.tar.xz
passt-7a8ed9459dfe803c529d61d3741d8d4f8f67ea92.tar.zst
passt-7a8ed9459dfe803c529d61d3741d8d4f8f67ea92.zip
Make assertions actually useful
There are some places in passt/pasta which #include <assert.h> and make various assertions. If we hit these something has already gone wrong, but they're there so that we a useful message instead of cryptic misbehaviour if assumptions we thought were correct turn out not to be. Except.. the glibc implementation of assert() uses syscalls that aren't in our seccomp filter, so we'll get a SIGSYS before it actually prints the message. Work around this by adding our own ASSERT() implementation using our existing err() function to log the message, and an abort(). The abort() probably also won't work exactly right with seccomp, but once we've printed the message, dying with a SIGSYS works just as well as dying with a SIGABRT. Signed-off-by: David Gibson <david@gibson.dropbear.id.au> Signed-off-by: Stefano Brivio <sbrivio@redhat.com>
Diffstat (limited to 'udp.c')
-rw-r--r--udp.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/udp.c b/udp.c
index adb47e8..2e9b7e6 100644
--- a/udp.c
+++ b/udp.c
@@ -108,7 +108,6 @@
#include <sys/uio.h>
#include <unistd.h>
#include <time.h>
-#include <assert.h>
#include "checksum.h"
#include "util.h"
@@ -248,7 +247,7 @@ static void udp_invert_portmap(struct udp_port_fwd *fwd)
{
int i;
- assert(ARRAY_SIZE(fwd->f.delta) == ARRAY_SIZE(fwd->rdelta));
+ ASSERT(ARRAY_SIZE(fwd->f.delta) == ARRAY_SIZE(fwd->rdelta));
for (i = 0; i < ARRAY_SIZE(fwd->f.delta); i++) {
in_port_t delta = fwd->f.delta[i];