blob: 2d16a627fe379bdb5d5228d934b3b9b1a53ad8fc [file] [log] [blame]
Darren Tucker3b4b2d32012-07-02 18:54:31 +10001/* $OpenBSD: sandbox-systrace.c,v 1.6 2012/06/30 14:35:09 markus Exp $ */
Damien Miller69ff1df2011-06-23 08:30:03 +10002/*
3 * Copyright (c) 2011 Damien Miller <djm@mindrot.org>
4 *
5 * Permission to use, copy, modify, and distribute this software for any
6 * purpose with or without fee is hereby granted, provided that the above
7 * copyright notice and this permission notice appear in all copies.
8 *
9 * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
10 * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
11 * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
12 * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
13 * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
14 * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
15 * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
16 */
17
18#include "includes.h"
19
20#ifdef SANDBOX_SYSTRACE
21
22#include <sys/types.h>
23#include <sys/param.h>
24#include <sys/ioctl.h>
25#include <sys/syscall.h>
26#include <sys/socket.h>
Darren Tucker3b4b2d32012-07-02 18:54:31 +100027#include <sys/wait.h>
Damien Miller69ff1df2011-06-23 08:30:03 +100028
29#include <dev/systrace.h>
30
31#include <errno.h>
32#include <fcntl.h>
33#include <limits.h>
Darren Tucker3b4b2d32012-07-02 18:54:31 +100034#include <signal.h>
Damien Miller69ff1df2011-06-23 08:30:03 +100035#include <stdarg.h>
36#include <stdio.h>
37#include <stdlib.h>
38#include <string.h>
39#include <unistd.h>
40
41#include "atomicio.h"
42#include "log.h"
Damien Millerdcbd41e2011-06-23 19:45:51 +100043#include "ssh-sandbox.h"
Damien Miller69ff1df2011-06-23 08:30:03 +100044#include "xmalloc.h"
45
Damien Miller35e48192011-08-06 06:16:23 +100046struct sandbox_policy {
47 int syscall;
48 int action;
49};
50
51/* Permitted syscalls in preauth. Unlisted syscalls get SYSTR_POLICY_KILL */
52static const struct sandbox_policy preauth_policy[] = {
53 { SYS_open, SYSTR_POLICY_NEVER },
54
55 { SYS___sysctl, SYSTR_POLICY_PERMIT },
56 { SYS_close, SYSTR_POLICY_PERMIT },
57 { SYS_exit, SYSTR_POLICY_PERMIT },
58 { SYS_getpid, SYSTR_POLICY_PERMIT },
59 { SYS_gettimeofday, SYSTR_POLICY_PERMIT },
60 { SYS_madvise, SYSTR_POLICY_PERMIT },
61 { SYS_mmap, SYSTR_POLICY_PERMIT },
62 { SYS_mprotect, SYSTR_POLICY_PERMIT },
Damien Miller560de922012-06-30 08:33:53 +100063 { SYS_mquery, SYSTR_POLICY_PERMIT },
Damien Miller35e48192011-08-06 06:16:23 +100064 { SYS_poll, SYSTR_POLICY_PERMIT },
65 { SYS_munmap, SYSTR_POLICY_PERMIT },
66 { SYS_read, SYSTR_POLICY_PERMIT },
67 { SYS_select, SYSTR_POLICY_PERMIT },
68 { SYS_sigprocmask, SYSTR_POLICY_PERMIT },
69 { SYS_write, SYSTR_POLICY_PERMIT },
70 { -1, -1 }
Damien Miller69ff1df2011-06-23 08:30:03 +100071};
72
73struct ssh_sandbox {
Damien Miller69ff1df2011-06-23 08:30:03 +100074 int systrace_fd;
75 pid_t child_pid;
Darren Tucker3b4b2d32012-07-02 18:54:31 +100076 void (*osigchld)(int);
Damien Miller69ff1df2011-06-23 08:30:03 +100077};
78
79struct ssh_sandbox *
80ssh_sandbox_init(void)
81{
82 struct ssh_sandbox *box;
Damien Miller69ff1df2011-06-23 08:30:03 +100083
84 debug3("%s: preparing systrace sandbox", __func__);
85 box = xcalloc(1, sizeof(*box));
Damien Miller69ff1df2011-06-23 08:30:03 +100086 box->systrace_fd = -1;
87 box->child_pid = 0;
Darren Tucker3b4b2d32012-07-02 18:54:31 +100088 box->osigchld = signal(SIGCHLD, SIG_IGN);
Damien Miller69ff1df2011-06-23 08:30:03 +100089
90 return box;
91}
92
93void
94ssh_sandbox_child(struct ssh_sandbox *box)
95{
Damien Miller69ff1df2011-06-23 08:30:03 +100096 debug3("%s: ready", __func__);
Darren Tucker3b4b2d32012-07-02 18:54:31 +100097 signal(SIGCHLD, box->osigchld);
98 if (kill(getpid(), SIGSTOP) != 0)
99 fatal("%s: kill(%d, SIGSTOP)", __func__, getpid());
Damien Miller69ff1df2011-06-23 08:30:03 +1000100 debug3("%s: started", __func__);
Damien Miller69ff1df2011-06-23 08:30:03 +1000101}
102
103static void
104ssh_sandbox_parent(struct ssh_sandbox *box, pid_t child_pid,
Damien Miller35e48192011-08-06 06:16:23 +1000105 const struct sandbox_policy *allowed_syscalls)
Damien Miller69ff1df2011-06-23 08:30:03 +1000106{
Darren Tucker3b4b2d32012-07-02 18:54:31 +1000107 int dev_systrace, i, j, found, status;
108 pid_t pid;
Damien Miller35e48192011-08-06 06:16:23 +1000109 struct systrace_policy policy;
Damien Miller69ff1df2011-06-23 08:30:03 +1000110
Darren Tucker3b4b2d32012-07-02 18:54:31 +1000111 /* Wait for the child to send itself a SIGSTOP */
Damien Miller69ff1df2011-06-23 08:30:03 +1000112 debug3("%s: wait for child %ld", __func__, (long)child_pid);
Darren Tucker3b4b2d32012-07-02 18:54:31 +1000113 do {
114 pid = waitpid(child_pid, &status, WUNTRACED);
115 } while (pid == -1 && errno == EINTR);
116 signal(SIGCHLD, box->osigchld);
117 if (!WIFSTOPPED(status)) {
118 if (WIFSIGNALED(status))
119 fatal("%s: child terminated with signal %d",
120 __func__, WTERMSIG(status));
121 if (WIFEXITED(status))
122 fatal("%s: child exited with status %d",
123 __func__, WEXITSTATUS(status));
124 fatal("%s: child not stopped", __func__);
125 }
126 debug3("%s: child %ld stopped", __func__, (long)child_pid);
Damien Miller69ff1df2011-06-23 08:30:03 +1000127 box->child_pid = child_pid;
Damien Miller69ff1df2011-06-23 08:30:03 +1000128
129 /* Set up systracing of child */
130 if ((dev_systrace = open("/dev/systrace", O_RDONLY)) == -1)
131 fatal("%s: open(\"/dev/systrace\"): %s", __func__,
132 strerror(errno));
133 if (ioctl(dev_systrace, STRIOCCLONE, &box->systrace_fd) == -1)
134 fatal("%s: ioctl(STRIOCCLONE, %d): %s", __func__,
135 dev_systrace, strerror(errno));
136 close(dev_systrace);
137 debug3("%s: systrace attach, fd=%d", __func__, box->systrace_fd);
138 if (ioctl(box->systrace_fd, STRIOCATTACH, &child_pid) == -1)
139 fatal("%s: ioctl(%d, STRIOCATTACH, %d): %s", __func__,
140 box->systrace_fd, child_pid, strerror(errno));
141
142 /* Allocate and assign policy */
Damien Miller35e48192011-08-06 06:16:23 +1000143 bzero(&policy, sizeof(policy));
144 policy.strp_op = SYSTR_POLICY_NEW;
145 policy.strp_maxents = SYS_MAXSYSCALL;
146 if (ioctl(box->systrace_fd, STRIOCPOLICY, &policy) == -1)
Damien Miller69ff1df2011-06-23 08:30:03 +1000147 fatal("%s: ioctl(%d, STRIOCPOLICY (new)): %s", __func__,
148 box->systrace_fd, strerror(errno));
149
Damien Miller35e48192011-08-06 06:16:23 +1000150 policy.strp_op = SYSTR_POLICY_ASSIGN;
151 policy.strp_pid = box->child_pid;
152 if (ioctl(box->systrace_fd, STRIOCPOLICY, &policy) == -1)
Damien Miller69ff1df2011-06-23 08:30:03 +1000153 fatal("%s: ioctl(%d, STRIOCPOLICY (assign)): %s",
154 __func__, box->systrace_fd, strerror(errno));
155
156 /* Set per-syscall policy */
157 for (i = 0; i < SYS_MAXSYSCALL; i++) {
Damien Miller35e48192011-08-06 06:16:23 +1000158 found = 0;
159 for (j = 0; allowed_syscalls[j].syscall != -1; j++) {
160 if (allowed_syscalls[j].syscall == i) {
Damien Miller69ff1df2011-06-23 08:30:03 +1000161 found = 1;
Damien Miller35e48192011-08-06 06:16:23 +1000162 break;
163 }
Damien Miller69ff1df2011-06-23 08:30:03 +1000164 }
Damien Miller35e48192011-08-06 06:16:23 +1000165 policy.strp_op = SYSTR_POLICY_MODIFY;
166 policy.strp_code = i;
167 policy.strp_policy = found ?
168 allowed_syscalls[j].action : SYSTR_POLICY_KILL;
Damien Miller69ff1df2011-06-23 08:30:03 +1000169 if (found)
170 debug3("%s: policy: enable syscall %d", __func__, i);
Damien Miller35e48192011-08-06 06:16:23 +1000171 if (ioctl(box->systrace_fd, STRIOCPOLICY, &policy) == -1)
Damien Miller69ff1df2011-06-23 08:30:03 +1000172 fatal("%s: ioctl(%d, STRIOCPOLICY (modify)): %s",
173 __func__, box->systrace_fd, strerror(errno));
174 }
175
176 /* Signal the child to start running */
177 debug3("%s: start child %ld", __func__, (long)child_pid);
Darren Tucker3b4b2d32012-07-02 18:54:31 +1000178 if (kill(box->child_pid, SIGCONT) != 0)
179 fatal("%s: kill(%d, SIGCONT)", __func__, box->child_pid);
Damien Miller69ff1df2011-06-23 08:30:03 +1000180}
181
182void
183ssh_sandbox_parent_finish(struct ssh_sandbox *box)
184{
185 /* Closing this before the child exits will terminate it */
186 close(box->systrace_fd);
187
188 free(box);
189 debug3("%s: finished", __func__);
190}
191
192void
193ssh_sandbox_parent_preauth(struct ssh_sandbox *box, pid_t child_pid)
194{
195 ssh_sandbox_parent(box, child_pid, preauth_policy);
196}
197
198#endif /* SANDBOX_SYSTRACE */