Blob


1 /*
2 * Copyright (c) 2021 Omar Polo <op@omarpolo.com>
3 *
4 * Permission to use, copy, modify, and distribute this software for any
5 * purpose with or without fee is hereby granted, provided that the above
6 * copyright notice and this permission notice appear in all copies.
7 *
8 * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
9 * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
10 * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
11 * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
12 * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
13 * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
14 * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
15 */
17 #include "gmid.h"
18 #include "logger.h"
20 #if defined(__OpenBSD__)
22 #include <unistd.h>
24 void
25 sandbox_server_process(void)
26 {
27 struct vhost *h;
28 struct location *l;
30 TAILQ_FOREACH(h, &hosts, vhosts) {
31 TAILQ_FOREACH(l, &h->locations, locations) {
32 if (*l->dir == '\0')
33 continue;
35 if (unveil(l->dir, "rw") == -1)
36 fatal("unveil %s for domain %s",
37 l->dir,
38 h->domain);
39 }
40 }
42 if (pledge("stdio recvfd rpath unix inet dns", NULL) == -1)
43 fatal("pledge");
44 }
46 void
47 sandbox_logger_process(void)
48 {
49 if (pledge("stdio recvfd", NULL) == -1)
50 err(1, "pledge");
51 }
53 #else
55 #warning "No sandbox method known for this OS"
57 void
58 sandbox_server_process(void)
59 {
60 return;
61 }
63 void
64 sandbox_logger_process(void)
65 {
66 return;
67 }
69 #endif