aboutgitcodebugslistschat
path: root/pasta.h
diff options
context:
space:
mode:
authorStefano Brivio <sbrivio@redhat.com>2023-02-12 12:22:59 +0100
committerStefano Brivio <sbrivio@redhat.com>2023-02-12 12:22:59 +0100
commitd8921dafe506599fd7ff723b211f9113faff9ada (patch)
tree12477d15170f135b4004b635d4bf8e7ae4de938e /pasta.h
parent54502cca7f7a89eadce92bb7a2b6ab61b878a5c6 (diff)
downloadpasst-d8921dafe506599fd7ff723b211f9113faff9ada.tar
passt-d8921dafe506599fd7ff723b211f9113faff9ada.tar.gz
passt-d8921dafe506599fd7ff723b211f9113faff9ada.tar.bz2
passt-d8921dafe506599fd7ff723b211f9113faff9ada.tar.lz
passt-d8921dafe506599fd7ff723b211f9113faff9ada.tar.xz
passt-d8921dafe506599fd7ff723b211f9113faff9ada.tar.zst
passt-d8921dafe506599fd7ff723b211f9113faff9ada.zip
pasta: Wait for tap to be set up before spawning command
Adapted from a patch by Paul Holzinger: when pasta spawns a command, operating without a pre-existing user and network namespace, it needs to wait for the tap device to be configured and its handler ready, before the command is actually executed. Otherwise, something like: pasta --config-net nslookup passt.top usually fails as the nslookup command is issued before the network interface is ready. We can't adopt a simpler approach based on SIGSTOP and SIGCONT here: the child runs in a separate PID namespace, so it can't send SIGSTOP to itself as the kernel sees the child as init process and blocks the delivery of the signal. We could send SIGSTOP from the parent, but this wouldn't avoid the possible condition where the child isn't ready to wait for it when the parent sends it, also raised by Paul -- and SIGSTOP can't be blocked, so it can never be pending. Use SIGUSR1 instead: mask it before clone(), so that the child starts with it blocked, and can safely wait for it. Once the parent is ready, it sends SIGUSR1 to the child. If SIGUSR1 is sent before the child is waiting for it, the kernel will queue it for us, because it's blocked. Reported-by: Paul Holzinger <pholzing@redhat.com> Fixes: 1392bc5ca002 ("Allow pasta to take a command to execute") Signed-off-by: Stefano Brivio <sbrivio@redhat.com>
Diffstat (limited to 'pasta.h')
-rw-r--r--pasta.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/pasta.h b/pasta.h
index a8b9893..0ccb7e9 100644
--- a/pasta.h
+++ b/pasta.h
@@ -6,6 +6,8 @@
#ifndef PASTA_H
#define PASTA_H
+extern int pasta_child_pid;
+
void pasta_open_ns(struct ctx *c, const char *netns);
void pasta_start_ns(struct ctx *c, uid_t uid, gid_t gid,
int argc, char *argv[]);