aboutsummaryrefslogtreecommitdiffstats
path: root/st.c
diff options
context:
space:
mode:
authorHiltjo Posthuma <hiltjo@codemadness.org>2018-05-25 11:59:28 +0200
committerHiltjo Posthuma <hiltjo@codemadness.org>2018-05-25 11:59:28 +0200
commit30ce2cc002585409b36c630512c6ca4db8f88f15 (patch)
treea723de654153adcdd84bf51844ff7800e2f555f3 /st.c
parent041912a791e8c2f4d5d2415b16210d29d7e701c5 (diff)
downloadst-30ce2cc002585409b36c630512c6ca4db8f88f15.tar.gz
Pledge on OpenBSD
Diffstat (limited to 'st.c')
-rw-r--r--st.c8
1 files changed, 8 insertions, 0 deletions
diff --git a/st.c b/st.c
index 0628707..b9750f2 100644
--- a/st.c
+++ b/st.c
@@ -28,6 +28,10 @@
#include <libutil.h>
#endif
+#ifndef __OpenBSD__
+#define pledge(a,b) 0
+#endif
+
/* Arbitrary sizes */
#define UTF_INVALID 0xFFFD
#define UTF_SIZ 4
@@ -806,9 +810,13 @@ ttynew(char *line, char *cmd, char *out, char **args)
die("ioctl TIOCSCTTY failed: %s\n", strerror(errno));
close(s);
close(m);
+ if (pledge("stdio getpw proc exec", NULL) == -1)
+ die("pledge\n");
execsh(cmd, args);
break;
default:
+ if (pledge("stdio rpath tty proc", NULL) == -1)
+ die("pledge\n");
close(s);
cmdfd = m;
signal(SIGCHLD, sigchld);
remember that computers suck.