aboutgitcodelistschat:MatrixIRC
path: root/seitan.c
diff options
context:
space:
mode:
authorAlice Frosi <afrosi@redhat.com>2023-01-16 17:22:51 +0100
committerAlice Frosi <afrosi@redhat.com>2023-01-17 13:05:41 +0100
commit8d44fb83386c1834163f037b077c03cf6cc7f748 (patch)
treeb2355286bf41b2b0210df6f4563b5d5a70bfc5c6 /seitan.c
parentf9c6d862789eb5961502862882d2dc33eff854b8 (diff)
downloadseitan-8d44fb83386c1834163f037b077c03cf6cc7f748.tar
seitan-8d44fb83386c1834163f037b077c03cf6cc7f748.tar.gz
seitan-8d44fb83386c1834163f037b077c03cf6cc7f748.tar.bz2
seitan-8d44fb83386c1834163f037b077c03cf6cc7f748.tar.lz
seitan-8d44fb83386c1834163f037b077c03cf6cc7f748.tar.xz
seitan-8d44fb83386c1834163f037b077c03cf6cc7f748.tar.zst
seitan-8d44fb83386c1834163f037b077c03cf6cc7f748.zip
Use signals instead of connect for synchronization
The connect syscall was used to synchronize seitan and the eater for the seccomp installation filter and notifier initialization. However, we assume that the fd 0 is always free, and this might not always be the case. Try to implement an alternative and more robust solution. Signed-off-by: Alice Frosi <afrosi@redhat.com>
Diffstat (limited to 'seitan.c')
-rw-r--r--seitan.c16
1 files changed, 16 insertions, 0 deletions
diff --git a/seitan.c b/seitan.c
index b227fc8..6c66593 100644
--- a/seitan.c
+++ b/seitan.c
@@ -168,6 +168,19 @@ struct table {
static struct table t[16];
+static int pidfd_send_signal(int pidfd, int sig, siginfo_t *info,
+ unsigned int flags)
+{
+ return syscall(__NR_pidfd_send_signal, pidfd, sig, info, flags);
+}
+
+static void unblock_eater(int pidfd){
+ if (pidfd_send_signal(pidfd, SIGCONT, NULL, 0) == -1) {
+ perror("pidfd_send_signal");
+ exit(EXIT_FAILURE);
+ }
+}
+
int handle(struct seccomp_notif *req, int notifyfd)
{
char path[PATH_MAX + 1];
@@ -259,6 +272,9 @@ int main(int argc, char **argv)
perror("epoll_ctl: notifier");
exit(EXIT_FAILURE);
}
+ /* Unblock seitan-loader */
+ unblock_eater(pidfd);
+
while(running) {
nevents = epoll_wait(epollfd, events, EPOLL_EVENTS, -1);
if (nevents < 0 ) {