From 84fa0102c6906252999967925f32098ab6d5a259 Mon Sep 17 00:00:00 2001
From: dzwdz
Date: Sun, 11 Jun 2023 19:17:39 +0200
Subject: kernel: replace await with wait2, roughly compatible with POSIX

dash works now :^)))
---
 src/user/lib/include/__errno.h  |  1 +
 src/user/lib/include/sys/wait.h |  4 ++--
 src/user/lib/signal.c           |  3 +--
 src/user/lib/syscall.c          |  4 ++++
 src/user/lib/syswait.c          | 18 ++++++++++++++++--
 5 files changed, 24 insertions(+), 6 deletions(-)

(limited to 'src/user/lib')

diff --git a/src/user/lib/include/__errno.h b/src/user/lib/include/__errno.h
index f72fcf6..0808ac6 100644
--- a/src/user/lib/include/__errno.h
+++ b/src/user/lib/include/__errno.h
@@ -13,6 +13,7 @@ E( 10, "EACCES")
 E( 11, "EMFILE all file descriptors taken")
 E( 12, "ECONNRESET")
 E( 13, "EPIPE")
+E( 14, "ECHILD")
 E(200, "EISDIR")
 E(201, "ENAMETOOLONG")
 E(202, "ENOTDIR")
diff --git a/src/user/lib/include/sys/wait.h b/src/user/lib/include/sys/wait.h
index c71418c..cff407e 100644
--- a/src/user/lib/include/sys/wait.h
+++ b/src/user/lib/include/sys/wait.h
@@ -2,8 +2,8 @@
 #include <sys/types.h>
 
 #define WIFSTOPPED(x) 0
-#define WEXITSTATUS(x) 0
-#define WIFEXITED(x) 0
+#define WEXITSTATUS(x) ((x)&0xFF)
+#define WIFEXITED(x) 1
 #define WSTOPSIG(x) 0
 #define WTERMSIG(x) 0
 
diff --git a/src/user/lib/signal.c b/src/user/lib/signal.c
index d8b673d..41340e7 100644
--- a/src/user/lib/signal.c
+++ b/src/user/lib/signal.c
@@ -76,8 +76,7 @@ int sigfillset(sigset_t *set) {
 }
 
 int sigprocmask(int how, const sigset_t *set, const sigset_t *oldset) {
-	(void)how; (void)set; (void)oldset;
-	__libc_panic("unimplemented");
+	return 0;
 }
 
 int sigsuspend(const sigset_t *mask) {
diff --git a/src/user/lib/syscall.c b/src/user/lib/syscall.c
index 3e8473c..5196683 100644
--- a/src/user/lib/syscall.c
+++ b/src/user/lib/syscall.c
@@ -90,6 +90,10 @@ uint32_t _sys_getppid(void) {
 	return (uint32_t)_syscall(_SYS_GETPPID, 0, 0, 0, 0, 0);
 }
 
+int _sys_wait2(int pid, int flags, struct sys_wait2 __user *out) {
+	return (int)_syscall(_SYS_WAIT2, (long)pid, (long)flags, (long)out, 0, 0);
+}
+
 long _sys_execbuf(void __user *buf, size_t len) {
 	return _syscall(_SYS_EXECBUF, (long)buf, (long)len, 0, 0, 0);
 }
diff --git a/src/user/lib/syswait.c b/src/user/lib/syswait.c
index 6389cb2..ce80c7b 100644
--- a/src/user/lib/syswait.c
+++ b/src/user/lib/syswait.c
@@ -1,8 +1,22 @@
 #include <bits/panic.h>
+#include <camellia.h>
+#include <camellia/syscalls.h>
+#include <errno.h>
 #include <sys/resource.h>
 #include <sys/wait.h>
 
 pid_t wait3(int *wstatus, int opts, struct rusage *rusage) {
-	(void)wstatus; (void)opts; (void)rusage;
-	__libc_panic("unimplemented");
+	struct sys_wait2 res;
+	if (opts || rusage) {
+		__libc_panic("unimplemented");
+	}
+	pid_t ret = _sys_wait2(-1, 0, &res);
+	if (ret < 0) {
+		errno = -ret;
+		return -1;
+	}
+	if (wstatus) {
+		*wstatus = res.status & 0xFF;
+	}
+	return ret;
 }
-- 
cgit v1.2.3