public inbox for passt-dev@passt.top
 help / color / mirror / code / Atom feed
* [PATCH] util: In ASSERT(), use "fprintf(stderr, ...)" rather than err(...)
@ 2024-08-05 14:10 Laurent Vivier
  2024-08-05 14:34 ` Stefano Brivio
  2024-08-06  0:27 ` David Gibson
  0 siblings, 2 replies; 8+ messages in thread
From: Laurent Vivier @ 2024-08-05 14:10 UTC (permalink / raw)
  To: passt-dev; +Cc: Laurent Vivier

We use our own implementation of assert() because the glic implementation
uses syscalls that aren't in our seccomp filter, see 7a8ed9459dfe
("Make assertions actually useful"). And we replaced it by an err(),
followed by an abort() (that is also catched by seccomp).
We don't have a coredump or a backtrace but we have at least the
error message... only if logging is enabled.

As this kind of information is needed in any case, replace the "err()"
function by an "fprintf(stderr, ...)".

Signed-off-by: Laurent Vivier <lvivier@redhat.com>
---
 util.h | 7 +++++--
 1 file changed, 5 insertions(+), 2 deletions(-)

diff --git a/util.h b/util.h
index b7541ce24e5a..b44b4bfdccd7 100644
--- a/util.h
+++ b/util.h
@@ -13,6 +13,7 @@
 #include <stdint.h>
 #include <string.h>
 #include <signal.h>
+#include <stdio.h>
 #include <arpa/inet.h>
 
 #include "log.h"
@@ -67,8 +68,10 @@
 #define ASSERT(expr)							\
 	do {								\
 		if (!(expr)) {						\
-			err("ASSERTION FAILED in %s (%s:%d): %s",	\
-			    __func__, __FILE__, __LINE__, STRINGIFY(expr)); \
+			fprintf(stderr,					\
+				"ASSERTION FAILED in %s (%s:%d): %s\n",	\
+				__func__, __FILE__, __LINE__,		\
+				STRINGIFY(expr));			\
 			/* This may actually SIGSYS, due to seccomp,	\
 			 * but that will still get the job done		\
 			 */						\
-- 
@@ -13,6 +13,7 @@
 #include <stdint.h>
 #include <string.h>
 #include <signal.h>
+#include <stdio.h>
 #include <arpa/inet.h>
 
 #include "log.h"
@@ -67,8 +68,10 @@
 #define ASSERT(expr)							\
 	do {								\
 		if (!(expr)) {						\
-			err("ASSERTION FAILED in %s (%s:%d): %s",	\
-			    __func__, __FILE__, __LINE__, STRINGIFY(expr)); \
+			fprintf(stderr,					\
+				"ASSERTION FAILED in %s (%s:%d): %s\n",	\
+				__func__, __FILE__, __LINE__,		\
+				STRINGIFY(expr));			\
 			/* This may actually SIGSYS, due to seccomp,	\
 			 * but that will still get the job done		\
 			 */						\
-- 
2.45.2


^ permalink raw reply related	[flat|nested] 8+ messages in thread

* Re: [PATCH] util: In ASSERT(), use "fprintf(stderr, ...)" rather than err(...)
  2024-08-05 14:10 [PATCH] util: In ASSERT(), use "fprintf(stderr, ...)" rather than err(...) Laurent Vivier
@ 2024-08-05 14:34 ` Stefano Brivio
  2024-08-05 15:52   ` Laurent Vivier
  2024-08-06  0:27 ` David Gibson
  1 sibling, 1 reply; 8+ messages in thread
From: Stefano Brivio @ 2024-08-05 14:34 UTC (permalink / raw)
  To: Laurent Vivier; +Cc: passt-dev

On Mon,  5 Aug 2024 16:10:27 +0200
Laurent Vivier <lvivier@redhat.com> wrote:

> We use our own implementation of assert() because the glic implementation
> uses syscalls that aren't in our seccomp filter, see 7a8ed9459dfe
> ("Make assertions actually useful"). And we replaced it by an err(),
> followed by an abort() (that is also catched by seccomp).
> We don't have a coredump or a backtrace but we have at least the
> error message... only if logging is enabled.

...wait, err() should always end up somewhere (syslog, log file, or
stderr). If you pick stderr, and we closed stderr, then the error will
not be reported anywhere (or, possibly worse, on a socket that happens
to have number 2).

In which case are you losing messages?

-- 
Stefano


^ permalink raw reply	[flat|nested] 8+ messages in thread

* Re: [PATCH] util: In ASSERT(), use "fprintf(stderr, ...)" rather than err(...)
  2024-08-05 14:34 ` Stefano Brivio
@ 2024-08-05 15:52   ` Laurent Vivier
  2024-08-05 16:12     ` Stefano Brivio
  0 siblings, 1 reply; 8+ messages in thread
From: Laurent Vivier @ 2024-08-05 15:52 UTC (permalink / raw)
  To: Stefano Brivio; +Cc: passt-dev

On 05/08/2024 16:34, Stefano Brivio wrote:
> On Mon,  5 Aug 2024 16:10:27 +0200
> Laurent Vivier <lvivier@redhat.com> wrote:
> 
>> We use our own implementation of assert() because the glic implementation
>> uses syscalls that aren't in our seccomp filter, see 7a8ed9459dfe
>> ("Make assertions actually useful"). And we replaced it by an err(),
>> followed by an abort() (that is also catched by seccomp).
>> We don't have a coredump or a backtrace but we have at least the
>> error message... only if logging is enabled.
> 
> ...wait, err() should always end up somewhere (syslog, log file, or
> stderr). If you pick stderr, and we closed stderr, then the error will
> not be reported anywhere (or, possibly worse, on a socket that happens
> to have number 2).
> 
> In which case are you losing messages?
> 

Try something:

diff --git a/udp.c b/udp.c
index a92014806a73..7e179d3b863b 100644
--- a/udp.c
+++ b/udp.c
@@ -707,6 +707,8 @@ void udp_listen_sock_handler(const struct ctx *c, union epoll_ref ref,
         if ((n = udp_sock_recv(c, ref.fd, events, mmh_recv)) <= 0)
                 return;

+       ASSERT(0);
+
         /* We divide datagrams into batches based on how we need to send them,
          * determined by udp_meta[i].tosidx.  To avoid either two passes through
          * the array, or recalculating tosidx for a single entry, we have to

And then generate some UDP traffic.

This exits only with:

Bad system call

Oh, wait, I can see the error in the syslog... but it's not very intuitive as we have the 
"Bad system call" displayed in the terminal.

So, ignore my patch.

Laurent


^ permalink raw reply related	[flat|nested] 8+ messages in thread

* Re: [PATCH] util: In ASSERT(), use "fprintf(stderr, ...)" rather than err(...)
  2024-08-05 15:52   ` Laurent Vivier
@ 2024-08-05 16:12     ` Stefano Brivio
  0 siblings, 0 replies; 8+ messages in thread
From: Stefano Brivio @ 2024-08-05 16:12 UTC (permalink / raw)
  To: Laurent Vivier; +Cc: passt-dev, David Gibson

On Mon, 5 Aug 2024 17:52:06 +0200
Laurent Vivier <lvivier@redhat.com> wrote:

> On 05/08/2024 16:34, Stefano Brivio wrote:
> > On Mon,  5 Aug 2024 16:10:27 +0200
> > Laurent Vivier <lvivier@redhat.com> wrote:
> >   
> >> We use our own implementation of assert() because the glic implementation
> >> uses syscalls that aren't in our seccomp filter, see 7a8ed9459dfe
> >> ("Make assertions actually useful"). And we replaced it by an err(),
> >> followed by an abort() (that is also catched by seccomp).
> >> We don't have a coredump or a backtrace but we have at least the
> >> error message... only if logging is enabled.  
> > 
> > ...wait, err() should always end up somewhere (syslog, log file, or
> > stderr). If you pick stderr, and we closed stderr, then the error will
> > not be reported anywhere (or, possibly worse, on a socket that happens
> > to have number 2).
> > 
> > In which case are you losing messages?
> >   
> 
> Try something:
> 
> diff --git a/udp.c b/udp.c
> index a92014806a73..7e179d3b863b 100644
> --- a/udp.c
> +++ b/udp.c
> @@ -707,6 +707,8 @@ void udp_listen_sock_handler(const struct ctx *c, union epoll_ref ref,
>          if ((n = udp_sock_recv(c, ref.fd, events, mmh_recv)) <= 0)
>                  return;
> 
> +       ASSERT(0);
> +
>          /* We divide datagrams into batches based on how we need to send them,
>           * determined by udp_meta[i].tosidx.  To avoid either two passes through
>           * the array, or recalculating tosidx for a single entry, we have to
> 
> And then generate some UDP traffic.
> 
> This exits only with:
> 
> Bad system call
> 
> Oh, wait, I can see the error in the syslog... but it's not very intuitive as we have the 
> "Bad system call" displayed in the terminal.

Oops, this is an actual issue: if you run passt in foreground, then
err() should _also_ print to stderr, see commit bca0fefa32e0 ("conf,
passt: Make --stderr do nothing, and deprecate it")... but it doesn't.

That's because we set the log_runtime flag once we're ready (whether
we daemonised or not), and then we have:

	if (debug_print || !log_conf_parsed ||
	    (!log_runtime && (log_mask & LOG_MASK(LOG_PRI(pri))))) {
		(void)vfprintf(stderr, format, ap);
		if (newline && format[strlen(format)] != '\n')
			fprintf(stderr, "\n");
	}

See also https://archives.passt.top/passt-dev/ZnTUrhu8LNWi-krS@zatzit/.

Still, while we want to keep pasta usable, we should make sure we print
to stderr when passt is running in foreground. I'll send another
patch...

-- 
Stefano


^ permalink raw reply	[flat|nested] 8+ messages in thread

* Re: [PATCH] util: In ASSERT(), use "fprintf(stderr, ...)" rather than err(...)
  2024-08-05 14:10 [PATCH] util: In ASSERT(), use "fprintf(stderr, ...)" rather than err(...) Laurent Vivier
  2024-08-05 14:34 ` Stefano Brivio
@ 2024-08-06  0:27 ` David Gibson
  2024-08-06  9:27   ` Laurent Vivier
  1 sibling, 1 reply; 8+ messages in thread
From: David Gibson @ 2024-08-06  0:27 UTC (permalink / raw)
  To: Laurent Vivier; +Cc: passt-dev

[-- Attachment #1: Type: text/plain, Size: 2009 bytes --]

On Mon, Aug 05, 2024 at 04:10:27PM +0200, Laurent Vivier wrote:
> We use our own implementation of assert() because the glic implementation
> uses syscalls that aren't in our seccomp filter, see 7a8ed9459dfe
> ("Make assertions actually useful"). And we replaced it by an err(),
> followed by an abort() (that is also catched by seccomp).

I think Stefano's said everything I would on the change itself, but..

> We don't have a coredump or a backtrace but we have at least the
> error message... only if logging is enabled.

Whether we get a coredump shouldn't be affected by our weird ASSERT()
here.  If coredumps are enabled (which they're not by default on
current distros, AFAICT), we should still get a coredump with the
SIGSYS here, just as we would for a SIGABRT.

> As this kind of information is needed in any case, replace the "err()"
> function by an "fprintf(stderr, ...)".
> 
> Signed-off-by: Laurent Vivier <lvivier@redhat.com>
> ---
>  util.h | 7 +++++--
>  1 file changed, 5 insertions(+), 2 deletions(-)
> 
> diff --git a/util.h b/util.h
> index b7541ce24e5a..b44b4bfdccd7 100644
> --- a/util.h
> +++ b/util.h
> @@ -13,6 +13,7 @@
>  #include <stdint.h>
>  #include <string.h>
>  #include <signal.h>
> +#include <stdio.h>
>  #include <arpa/inet.h>
>  
>  #include "log.h"
> @@ -67,8 +68,10 @@
>  #define ASSERT(expr)							\
>  	do {								\
>  		if (!(expr)) {						\
> -			err("ASSERTION FAILED in %s (%s:%d): %s",	\
> -			    __func__, __FILE__, __LINE__, STRINGIFY(expr)); \
> +			fprintf(stderr,					\
> +				"ASSERTION FAILED in %s (%s:%d): %s\n",	\
> +				__func__, __FILE__, __LINE__,		\
> +				STRINGIFY(expr));			\
>  			/* This may actually SIGSYS, due to seccomp,	\
>  			 * but that will still get the job done		\
>  			 */						\

-- 
David Gibson (he or they)	| I'll have my music baroque, and my code
david AT gibson.dropbear.id.au	| minimalist, thank you, not the other way
				| around.
http://www.ozlabs.org/~dgibson

[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 833 bytes --]

^ permalink raw reply	[flat|nested] 8+ messages in thread

* Re: [PATCH] util: In ASSERT(), use "fprintf(stderr, ...)" rather than err(...)
  2024-08-06  0:27 ` David Gibson
@ 2024-08-06  9:27   ` Laurent Vivier
  2024-08-06 11:43     ` Stefano Brivio
  2024-08-06 12:28     ` David Gibson
  0 siblings, 2 replies; 8+ messages in thread
From: Laurent Vivier @ 2024-08-06  9:27 UTC (permalink / raw)
  To: David Gibson; +Cc: passt-dev

On 06/08/2024 02:27, David Gibson wrote:
> On Mon, Aug 05, 2024 at 04:10:27PM +0200, Laurent Vivier wrote:
>> We use our own implementation of assert() because the glic implementation
>> uses syscalls that aren't in our seccomp filter, see 7a8ed9459dfe
>> ("Make assertions actually useful"). And we replaced it by an err(),
>> followed by an abort() (that is also catched by seccomp).
> 
> I think Stefano's said everything I would on the change itself, but..
> 
>> We don't have a coredump or a backtrace but we have at least the
>> error message... only if logging is enabled.
> 
> Whether we get a coredump shouldn't be affected by our weird ASSERT()
> here.  If coredumps are enabled (which they're not by default on
> current distros, AFAICT), we should still get a coredump with the
> SIGSYS here, just as we would for a SIGABRT.
> 

I don't know what, but there is something that prevent passts to generate a core dump
(I tried abort(), (char *)0 = 0, it works with a simple program, not with passt).

Moreover, if we use gdb it doesn't stop on the syscall but exit and we cannot locate the 
exit point. And as strace doesn't report the syscall that generates the SIGSYS, it makes 
hard to find which one it is.

Thanks,
Laurent


^ permalink raw reply	[flat|nested] 8+ messages in thread

* Re: [PATCH] util: In ASSERT(), use "fprintf(stderr, ...)" rather than err(...)
  2024-08-06  9:27   ` Laurent Vivier
@ 2024-08-06 11:43     ` Stefano Brivio
  2024-08-06 12:28     ` David Gibson
  1 sibling, 0 replies; 8+ messages in thread
From: Stefano Brivio @ 2024-08-06 11:43 UTC (permalink / raw)
  To: Laurent Vivier; +Cc: David Gibson, passt-dev

On Tue, 6 Aug 2024 11:27:40 +0200
Laurent Vivier <lvivier@redhat.com> wrote:

> On 06/08/2024 02:27, David Gibson wrote:
> > On Mon, Aug 05, 2024 at 04:10:27PM +0200, Laurent Vivier wrote:  
> >> We use our own implementation of assert() because the glic implementation
> >> uses syscalls that aren't in our seccomp filter, see 7a8ed9459dfe
> >> ("Make assertions actually useful"). And we replaced it by an err(),
> >> followed by an abort() (that is also catched by seccomp).  
> > 
> > I think Stefano's said everything I would on the change itself, but..
> >   
> >> We don't have a coredump or a backtrace but we have at least the
> >> error message... only if logging is enabled.  
> > 
> > Whether we get a coredump shouldn't be affected by our weird ASSERT()
> > here.  If coredumps are enabled (which they're not by default on
> > current distros, AFAICT), we should still get a coredump with the
> > SIGSYS here, just as we would for a SIGABRT.
> >   
> 
> I don't know what, but there is something that prevent passts to generate a core dump
> (I tried abort(), (char *)0 = 0, it works with a simple program, not with passt).

This:

  isolation.c:374:	prctl(PR_SET_DUMPABLE, 0);

> Moreover, if we use gdb it doesn't stop on the syscall but exit and we cannot locate the 
> exit point. And as strace doesn't report the syscall that generates the SIGSYS, it makes 
> hard to find which one it is.

This is probably caused by the seccomp filter instead. You could skip
applying that by commenting this out:

        if (prctl(PR_SET_NO_NEW_PRIVS, 1, 0, 0, 0) ||
            prctl(PR_SET_SECCOMP, SECCOMP_MODE_FILTER, &prog))
                die_perror("Failed to apply seccomp filter");

and find out which system call causes that... maybe we could add it to
the 'make valgrind' target, then, or add a 'make debug' one. It's just
important to clearly show that users should *not* use any such target
for regular operation.

-- 
Stefano


^ permalink raw reply	[flat|nested] 8+ messages in thread

* Re: [PATCH] util: In ASSERT(), use "fprintf(stderr, ...)" rather than err(...)
  2024-08-06  9:27   ` Laurent Vivier
  2024-08-06 11:43     ` Stefano Brivio
@ 2024-08-06 12:28     ` David Gibson
  1 sibling, 0 replies; 8+ messages in thread
From: David Gibson @ 2024-08-06 12:28 UTC (permalink / raw)
  To: Laurent Vivier; +Cc: passt-dev

[-- Attachment #1: Type: text/plain, Size: 1691 bytes --]

On Tue, Aug 06, 2024 at 11:27:40AM +0200, Laurent Vivier wrote:
> On 06/08/2024 02:27, David Gibson wrote:
> > On Mon, Aug 05, 2024 at 04:10:27PM +0200, Laurent Vivier wrote:
> > > We use our own implementation of assert() because the glic implementation
> > > uses syscalls that aren't in our seccomp filter, see 7a8ed9459dfe
> > > ("Make assertions actually useful"). And we replaced it by an err(),
> > > followed by an abort() (that is also catched by seccomp).
> > 
> > I think Stefano's said everything I would on the change itself, but..
> > 
> > > We don't have a coredump or a backtrace but we have at least the
> > > error message... only if logging is enabled.
> > 
> > Whether we get a coredump shouldn't be affected by our weird ASSERT()
> > here.  If coredumps are enabled (which they're not by default on
> > current distros, AFAICT), we should still get a coredump with the
> > SIGSYS here, just as we would for a SIGABRT.
> > 
> 
> I don't know what, but there is something that prevent passts to generate a core dump
> (I tried abort(), (char *)0 = 0, it works with a simple program, not with passt).
> 
> Moreover, if we use gdb it doesn't stop on the syscall but exit and we
> cannot locate the exit point. And as strace doesn't report the syscall that
> generates the SIGSYS, it makes hard to find which one it is.

Oh... that'll be the PR_SET_DUMPABLE.  That'll stop strace, gdb, core
dumps, ..

I routinely comment that out when debugging.

-- 
David Gibson (he or they)	| I'll have my music baroque, and my code
david AT gibson.dropbear.id.au	| minimalist, thank you, not the other way
				| around.
http://www.ozlabs.org/~dgibson

[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 833 bytes --]

^ permalink raw reply	[flat|nested] 8+ messages in thread

end of thread, other threads:[~2024-08-07  1:04 UTC | newest]

Thread overview: 8+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2024-08-05 14:10 [PATCH] util: In ASSERT(), use "fprintf(stderr, ...)" rather than err(...) Laurent Vivier
2024-08-05 14:34 ` Stefano Brivio
2024-08-05 15:52   ` Laurent Vivier
2024-08-05 16:12     ` Stefano Brivio
2024-08-06  0:27 ` David Gibson
2024-08-06  9:27   ` Laurent Vivier
2024-08-06 11:43     ` Stefano Brivio
2024-08-06 12:28     ` David Gibson

Code repositories for project(s) associated with this public inbox

	https://passt.top/passt

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for IMAP folder(s).