about summary refs log tree commit diff
path: root/chat.c
diff options
context:
space:
mode:
authorJune McEnroe <june@causal.agency>2021-01-06 21:09:51 -0500
committerJune McEnroe <june@causal.agency>2021-01-06 21:47:56 -0500
commit9ea029c5805f00861db3dfc09b6c9483fe77c5cf (patch)
treea7ed3bc0130ad4872f3a02a7f6eb67c42d4cd674 /chat.c
parentCollapse whitespace while wrapping and discard trailing space (diff)
downloadcatgirl-9ea029c5805f00861db3dfc09b6c9483fe77c5cf.tar.gz
catgirl-9ea029c5805f00861db3dfc09b6c9483fe77c5cf.zip
Sandbox with pledge(2) on OpenBSD
Diffstat (limited to 'chat.c')
-rw-r--r--chat.c5
1 files changed, 5 insertions, 0 deletions
diff --git a/chat.c b/chat.c
index 296c0c4..016d604 100644
--- a/chat.c
+++ b/chat.c
@@ -125,6 +125,11 @@ static void signalHandler(int signal) {
 int main(int argc, char *argv[]) {
 	setlocale(LC_CTYPE, "");
 
+#ifdef __OpenBSD__
+	int error = pledge("stdio rpath wpath cpath inet dns tty proc exec", NULL);
+	if (error) err(EX_OSERR, "pledge");
+#endif
+
 	bool insecure = false;
 	const char *bind = NULL;
 	const char *host = NULL;