2 * A Simple Sandbox for MO-Eval
4 * (c) 2001--2008 Martin Mares <mj@ucw.cz>
7 #define _LARGEFILE64_SOURCE
22 #include <sys/ptrace.h>
23 #include <sys/signal.h>
24 #include <sys/sysinfo.h>
25 #include <sys/syscall.h>
26 #include <sys/resource.h>
28 #define NONRET __attribute__((noreturn))
29 #define UNUSED __attribute__((unused))
30 #define ARRAY_SIZE(a) (int)(sizeof(a)/sizeof(a[0]))
32 static int filter_syscalls; /* 0=off, 1=liberal, 2=totalitarian */
33 static int timeout; /* milliseconds */
34 static int wall_timeout;
35 static int pass_environ;
36 static int file_access;
38 static int memory_limit;
39 static char *redir_stdin, *redir_stdout, *redir_stderr;
43 static int is_ptraced;
44 static volatile int timer_tick;
45 static struct timeval start_time;
46 static int ticks_per_sec;
48 static int partial_line;
50 static void die(char *msg, ...) NONRET;
54 static FILE *metafile;
57 meta_open(const char *name)
59 if (!strcmp(name, "-"))
64 metafile = fopen(name, "w");
66 die("Failed to open metafile '%s'",name);
72 if (metafile && metafile != stdout)
76 static void __attribute__((format(printf,1,2)))
77 meta_printf(const char *fmt, ...)
84 vfprintf(metafile, fmt, args);
88 static int total_ms, wall_ms;
91 final_stats(struct rusage *rus)
93 struct timeval total, now, wall;
94 timeradd(&rus->ru_utime, &rus->ru_stime, &total);
95 total_ms = total.tv_sec*1000 + total.tv_usec/1000;
96 gettimeofday(&now, NULL);
97 // FIXME: We are not guaranteed to have start_time always initialized
98 timersub(&now, &start_time, &wall);
99 wall_ms = wall.tv_sec*1000 + wall.tv_usec/1000;
101 meta_printf("time:%d.%03d\n", total_ms/1000, total_ms%1000);
102 meta_printf("time-wall:%d.%03d\n", wall_ms/1000, wall_ms%1000);
105 /*** Messages and exits ***/
113 ptrace(PTRACE_KILL, box_pid);
114 kill(-box_pid, SIGKILL);
115 kill(box_pid, SIGKILL);
119 int p = wait4(box_pid, &stat, 0, &rus);
121 fprintf(stderr, "UGH: Lost track of the process\n");
137 static void NONRET __attribute__((format(printf,1,2)))
144 vsnprintf(buf, sizeof(buf), msg, args);
145 meta_printf("status:XX\nmessage:%s\n", buf);
151 static void NONRET __attribute__((format(printf,1,2)))
157 if (msg[0] && msg[1] && msg[2] == ':' && msg[3] == ' ')
159 meta_printf("status:%c%c\n", msg[0], msg[1]);
163 vsnprintf(buf, sizeof(buf), msg, args);
164 meta_printf("message:%s\n", buf);
170 static void __attribute__((format(printf,1,2)))
177 int len = strlen(msg);
179 partial_line = (msg[len-1] != '\n');
180 vfprintf(stderr, msg, args);
189 void *p = malloc(size);
191 die("Out of memory");
195 /*** Syscall rules ***/
197 static const char * const syscall_names[] = {
198 #include "box/syscall-table.h"
200 #define NUM_SYSCALLS ARRAY_SIZE(syscall_names)
201 #define NUM_ACTIONS (NUM_SYSCALLS+64)
204 A_DEFAULT, // Use the default action
205 A_NO, // Always forbid
206 A_YES, // Always permit
207 A_FILENAME, // Permit if arg1 is a known filename
208 A_LIBERAL = 128, // Valid only in liberal mode
211 static unsigned char syscall_action[NUM_ACTIONS] = {
212 #define S(x) [__NR_##x]
214 // Syscalls permitted for specific file names
215 S(open) = A_FILENAME,
216 S(creat) = A_FILENAME,
217 S(unlink) = A_FILENAME,
218 S(oldstat) = A_FILENAME,
219 S(access) = A_FILENAME,
220 S(oldlstat) = A_FILENAME,
221 S(truncate) = A_FILENAME,
222 S(stat) = A_FILENAME,
223 S(lstat) = A_FILENAME,
224 S(truncate64) = A_FILENAME,
225 S(stat64) = A_FILENAME,
226 S(lstat64) = A_FILENAME,
227 S(readlink) = A_FILENAME,
229 // Syscalls permitted always
244 S(ftruncate) = A_YES,
246 S(personality) = A_YES,
250 S(getresuid) = A_YES,
258 S(ftruncate64) = A_YES,
267 S(set_thread_area) = A_YES,
268 S(get_thread_area) = A_YES,
269 S(exit_group) = A_YES,
271 // Syscalls permitted only in liberal mode
272 S(time) = A_YES | A_LIBERAL,
273 S(alarm) = A_YES | A_LIBERAL,
274 S(pause) = A_YES | A_LIBERAL,
275 S(signal) = A_YES | A_LIBERAL,
276 S(fchmod) = A_YES | A_LIBERAL,
277 S(sigaction) = A_YES | A_LIBERAL,
278 S(sgetmask) = A_YES | A_LIBERAL,
279 S(ssetmask) = A_YES | A_LIBERAL,
280 S(sigsuspend) = A_YES | A_LIBERAL,
281 S(sigpending) = A_YES | A_LIBERAL,
282 S(getrlimit) = A_YES | A_LIBERAL,
283 S(getrusage) = A_YES | A_LIBERAL,
284 S(ugetrlimit) = A_YES | A_LIBERAL,
285 S(gettimeofday) = A_YES | A_LIBERAL,
286 S(select) = A_YES | A_LIBERAL,
287 S(readdir) = A_YES | A_LIBERAL,
288 S(setitimer) = A_YES | A_LIBERAL,
289 S(getitimer) = A_YES | A_LIBERAL,
290 S(sigreturn) = A_YES | A_LIBERAL,
291 S(mprotect) = A_YES | A_LIBERAL,
292 S(sigprocmask) = A_YES | A_LIBERAL,
293 S(getdents) = A_YES | A_LIBERAL,
294 S(getdents64) = A_YES | A_LIBERAL,
295 S(_newselect) = A_YES | A_LIBERAL,
296 S(fdatasync) = A_YES | A_LIBERAL,
297 S(mremap) = A_YES | A_LIBERAL,
298 S(poll) = A_YES | A_LIBERAL,
299 S(getcwd) = A_YES | A_LIBERAL,
300 S(nanosleep) = A_YES | A_LIBERAL,
301 S(rt_sigreturn) = A_YES | A_LIBERAL,
302 S(rt_sigaction) = A_YES | A_LIBERAL,
303 S(rt_sigprocmask) = A_YES | A_LIBERAL,
304 S(rt_sigpending) = A_YES | A_LIBERAL,
305 S(rt_sigtimedwait) = A_YES | A_LIBERAL,
306 S(rt_sigqueueinfo) = A_YES | A_LIBERAL,
307 S(rt_sigsuspend) = A_YES | A_LIBERAL,
308 S(mmap2) = A_YES | A_LIBERAL,
309 S(_sysctl) = A_YES | A_LIBERAL,
314 syscall_name(unsigned int id, char *buf)
316 if (id < NUM_SYSCALLS && syscall_names[id])
317 return syscall_names[id];
320 sprintf(buf, "#%d", id);
326 syscall_by_name(char *name)
328 for (unsigned int i=0; i<NUM_SYSCALLS; i++)
329 if (syscall_names[i] && !strcmp(syscall_names[i], name))
336 unsigned long l = strtoul(name, &ep, 0);
339 if (l >= NUM_ACTIONS)
345 set_syscall_action(char *a)
347 char *sep = strchr(a, '=');
348 enum action act = A_YES;
352 if (!strcmp(sep, "yes"))
354 else if (!strcmp(sep, "no"))
356 else if (!strcmp(sep, "file"))
362 int sys = syscall_by_name(a);
364 die("Unknown syscall `%s'", a);
365 if (sys >= NUM_ACTIONS)
366 die("Syscall `%s' out of range", a);
367 syscall_action[sys] = act;
376 struct path_rule *next;
379 static struct path_rule default_path_rules[] = {
382 { "/usr/lib/", A_YES },
383 { "/opt/lib/", A_YES },
384 { "/usr/share/zoneinfo/", A_YES },
385 { "/usr/share/locale/", A_YES },
386 { "/dev/null", A_YES },
387 { "/dev/zero", A_YES },
388 { "/proc/meminfo", A_YES },
389 { "/proc/self/stat", A_YES },
390 { "/proc/self/exe", A_YES }, // Needed by FPC 2.0.x runtime
393 static struct path_rule *user_path_rules;
394 static struct path_rule **last_path_rule = &user_path_rules;
397 set_path_action(char *a)
399 char *sep = strchr(a, '=');
400 enum action act = A_YES;
404 if (!strcmp(sep, "yes"))
406 else if (!strcmp(sep, "no"))
412 struct path_rule *r = xmalloc(sizeof(*r) + strlen(a) + 1);
413 r->path = (char *)(r+1);
418 last_path_rule = &r->next;
423 match_path_rule(struct path_rule *r, char *path)
427 if (*rr++ != *path++)
429 if (rr[-1] == '/' && !path[-1])
433 if (rr > r->path && rr[-1] != '/' && *path)
438 /*** Environment rules ***/
441 char *var; // Variable to match
442 char *val; // ""=clear, NULL=inherit
444 struct env_rule *next;
447 static struct env_rule *first_env_rule;
448 static struct env_rule **last_env_rule = &first_env_rule;
450 static struct env_rule default_env_rules[] = {
451 { "LIBC_FATAL_STDERR_", "1" }
455 set_env_action(char *a0)
457 struct env_rule *r = xmalloc(sizeof(*r) + strlen(a0) + 1);
458 char *a = (char *)(r+1);
461 char *sep = strchr(a, '=');
473 last_env_rule = &r->next;
479 match_env_var(char *env_entry, struct env_rule *r)
481 if (strncmp(env_entry, r->var, r->var_len))
483 return (env_entry[r->var_len] == '=');
487 apply_env_rule(char **env, int *env_sizep, struct env_rule *r)
489 // First remove the variable if already set
491 while (pos < *env_sizep && !match_env_var(env[pos], r))
493 if (pos < *env_sizep)
496 env[pos] = env[*env_sizep];
497 env[*env_sizep] = NULL;
500 // What is the new value?
506 new = xmalloc(r->var_len + 1 + strlen(r->val) + 1);
507 sprintf(new, "%s=%s", r->var, r->val);
512 while (environ[pos] && !match_env_var(environ[pos], r))
514 if (!(new = environ[pos]))
518 // Add it at the end of the array
519 env[(*env_sizep)++] = new;
520 env[*env_sizep] = NULL;
524 setup_environment(void)
526 // Link built-in rules with user rules
527 for (int i=ARRAY_SIZE(default_env_rules)-1; i >= 0; i--)
529 default_env_rules[i].next = first_env_rule;
530 first_env_rule = &default_env_rules[i];
533 // Scan the original environment
534 char **orig_env = environ;
536 while (orig_env[orig_size])
539 // For each rule, reserve one more slot and calculate length
541 for (struct env_rule *r = first_env_rule; r; r=r->next)
544 r->var_len = strlen(r->var);
547 // Create a new environment
548 char **env = xmalloc((orig_size + num_rules + 1) * sizeof(char *));
552 memcpy(env, environ, orig_size * sizeof(char *));
559 // Apply the rules one by one
560 for (struct env_rule *r = first_env_rule; r; r=r->next)
561 apply_env_rule(env, &size, r);
563 // Return the new env and pass some gossip
566 fprintf(stderr, "Passing environment:\n");
567 for (int i=0; env[i]; i++)
568 fprintf(stderr, "\t%s\n", env[i]);
573 /*** Syscall checks ***/
576 valid_filename(unsigned long addr)
578 char namebuf[4096], *p, *end;
582 err("FA: File access forbidden");
583 if (file_access >= 9)
588 sprintf(namebuf, "/proc/%d/mem", (int) box_pid);
589 mem_fd = open(namebuf, O_RDONLY);
591 die("open(%s): %m", namebuf);
598 int remains = PAGE_SIZE - (addr & (PAGE_SIZE-1));
599 int l = namebuf + sizeof(namebuf) - end;
603 err("FA: Access to file with name too long");
604 if (lseek64(mem_fd, addr, SEEK_SET) < 0)
605 die("lseek64(mem): %m");
606 remains = read(mem_fd, end, l);
608 die("read(mem): %m");
610 err("FA: Access to file with name out of memory");
617 msg("[%s] ", namebuf);
618 if (file_access >= 3)
621 // Everything in current directory is permitted
622 if (!strchr(namebuf, '/') && strcmp(namebuf, ".."))
625 // ".." anywhere in the path is forbidden
626 enum action act = A_DEFAULT;
627 if (strstr(namebuf, ".."))
631 for (struct path_rule *r = user_path_rules; r && !act; r=r->next)
632 act = match_path_rule(r, namebuf);
634 // Scan built-in rules
635 if (file_access >= 2)
636 for (int i=0; i<ARRAY_SIZE(default_path_rules) && !act; i++)
637 act = match_path_rule(&default_path_rules[i], namebuf);
640 err("FA: Forbidden access to file `%s'", namebuf);
644 valid_syscall(struct user *u)
646 unsigned int sys = u->regs.orig_eax;
647 enum action act = (sys < NUM_ACTIONS) ? syscall_action[sys] : A_DEFAULT;
651 if (filter_syscalls == 1)
663 valid_filename(u->regs.ebx);
671 if (u->regs.ebx == box_pid)
673 meta_printf("exitsig:%d\n", (int)u->regs.ecx);
674 err("SG: Committed suicide by signal %d", (int)u->regs.ecx);
678 if (u->regs.ebx == box_pid && u->regs.ecx == box_pid)
680 meta_printf("exitsig:%d\n", (int)u->regs.edx);
681 err("SG: Committed suicide by signal %d", (int)u->regs.edx);
690 signal_alarm(int unused UNUSED)
692 /* Time limit checks are synchronous, so we only schedule them there. */
698 signal_int(int unused UNUSED)
700 /* Interrupts are fatal, so no synchronization requirements. */
701 meta_printf("exitsig:%d\n", SIGINT);
702 err("SG: Interrupted");
710 struct timeval now, wall;
712 gettimeofday(&now, NULL);
713 timersub(&now, &start_time, &wall);
714 wall_ms = wall.tv_sec*1000 + wall.tv_usec/1000;
715 if (wall_ms > wall_timeout)
716 err("TO: Time limit exceeded (wall clock)");
718 fprintf(stderr, "[wall time check: %d msec]\n", wall_ms);
723 int c, utime, stime, ms;
724 static int proc_status_fd;
727 sprintf(buf, "/proc/%d/stat", (int) box_pid);
728 proc_status_fd = open(buf, O_RDONLY);
729 if (proc_status_fd < 0)
730 die("open(%s): %m", buf);
732 lseek(proc_status_fd, 0, SEEK_SET);
733 if ((c = read(proc_status_fd, buf, sizeof(buf)-1)) < 0)
734 die("read on /proc/$pid/stat: %m");
735 if (c >= (int) sizeof(buf) - 1)
736 die("/proc/$pid/stat too long");
739 while (*x && *x != ' ')
744 die("proc syntax error 1");
745 while (*x && (*x != ')' || x[1] != ' '))
747 while (*x == ')' || *x == ' ')
749 if (sscanf(x, "%*c %*d %*d %*d %*d %*d %*d %*d %*d %*d %*d %d %d", &utime, &stime) != 2)
750 die("proc syntax error 2");
751 ms = (utime + stime) * 1000 / ticks_per_sec;
753 fprintf(stderr, "[time check: %d msec]\n", ms);
755 err("TO: Time limit exceeded");
762 int syscall_count = 0;
766 bzero(&sa, sizeof(sa));
767 sa.sa_handler = signal_int;
768 sigaction(SIGINT, &sa, NULL);
769 gettimeofday(&start_time, NULL);
770 ticks_per_sec = sysconf(_SC_CLK_TCK);
771 if (ticks_per_sec <= 0)
772 die("Invalid ticks_per_sec!");
773 if (timeout || wall_timeout)
775 sa.sa_handler = signal_alarm;
776 sigaction(SIGALRM, &sa, NULL);
789 p = wait4(box_pid, &stat, WUNTRACED, &rus);
797 die("wait4: unknown pid %d exited!", p);
802 // FIXME: If the process has exited before being ptraced, signal an internal error
803 if (WEXITSTATUS(stat))
805 meta_printf("exitcode:%d\n", WEXITSTATUS(stat));
806 err("RE: Exited with error status %d", WEXITSTATUS(stat));
808 if (timeout && total_ms > timeout)
809 err("TO: Time limit exceeded");
810 if (wall_timeout && wall_ms > wall_timeout)
811 err("TO: Time limit exceeded (wall clock)");
813 fprintf(stderr, "OK (%d.%03d sec real, %d.%03d sec wall, %d syscalls)\n",
814 total_ms/1000, total_ms%1000,
815 wall_ms/1000, wall_ms%1000,
819 if (WIFSIGNALED(stat))
822 meta_printf("exitsig:%d\n", WTERMSIG(stat));
823 err("SG: Caught fatal signal %d%s", WTERMSIG(stat), (syscall_count ? "" : " during startup"));
825 if (WIFSTOPPED(stat))
827 int sig = WSTOPSIG(stat);
831 static int stop_count = -1;
832 if (ptrace(PTRACE_GETREGS, box_pid, NULL, &u) < 0)
833 die("ptrace(PTRACE_GETREGS): %m");
835 if (!stop_count) /* Traceme request */
836 msg(">> Traceme request caught\n");
837 else if (stop_count & 1) /* Syscall entry */
840 msg(">> Syscall %-12s (%08lx,%08lx,%08lx) ", syscall_name(u.regs.orig_eax, namebuf), u.regs.ebx, u.regs.ecx, u.regs.edx);
844 if (u.regs.orig_eax == __NR_execve)
847 else if (valid_syscall(&u))
852 * Unfortunately, PTRACE_KILL kills _after_ the syscall completes,
853 * so we have to change it to something harmless (e.g., an undefined
854 * syscall) and make the program continue.
856 unsigned int sys = u.regs.orig_eax;
857 u.regs.orig_eax = 0xffffffff;
858 if (ptrace(PTRACE_SETREGS, box_pid, NULL, &u) < 0)
859 die("ptrace(PTRACE_SETREGS): %m");
860 err("FO: Forbidden syscall %s", syscall_name(sys, namebuf));
863 else /* Syscall return */
864 msg("= %ld\n", u.regs.eax);
865 ptrace(PTRACE_SYSCALL, box_pid, 0, 0);
867 else if (sig != SIGSTOP && sig != SIGXCPU && sig != SIGXFSZ)
869 msg(">> Signal %d\n", sig);
870 ptrace(PTRACE_SYSCALL, box_pid, 0, sig);
874 meta_printf("exitsig:%d", sig);
875 err("SG: Received signal %d", sig);
879 die("wait4: unknown status %x, giving up!", stat);
884 box_inside(int argc, char **argv)
889 memcpy(args, argv, argc * sizeof(char *));
891 if (set_cwd && chdir(set_cwd))
896 if (open(redir_stdin, O_RDONLY) != 0)
897 die("open(\"%s\"): %m", redir_stdin);
902 if (open(redir_stdout, O_WRONLY | O_CREAT | O_TRUNC, 0666) != 1)
903 die("open(\"%s\"): %m", redir_stdout);
908 if (open(redir_stderr, O_WRONLY | O_CREAT | O_TRUNC, 0666) != 2)
909 die("open(\"%s\"): %m", redir_stderr);
916 rl.rlim_cur = rl.rlim_max = memory_limit * 1024;
917 if (setrlimit(RLIMIT_AS, &rl) < 0)
918 die("setrlimit: %m");
920 rl.rlim_cur = rl.rlim_max = 64;
921 if (setrlimit(RLIMIT_NOFILE, &rl) < 0)
922 die("setrlimit: %m");
925 if (ptrace(PTRACE_TRACEME) < 0)
926 die("ptrace(PTRACE_TRACEME): %m");
927 /* Trick: Make sure that we are stopped until the boxkeeper wakes up. */
928 signal(SIGCHLD, SIG_IGN);
931 execve(args[0], args, setup_environment());
932 die("execve(\"%s\"): %m", args[0]);
938 fprintf(stderr, "Invalid arguments!\n");
940 Usage: box [<options>] -- <command> <arguments>\n\
943 -a <level>\tSet file access level (0=none, 1=cwd, 2=/etc,/lib,..., 3=whole fs, 9=no checks; needs -f)\n\
944 -c <dir>\tChange directory to <dir> first\n\
945 -e\t\tInherit full environment of the parent process\n\
946 -E <var>\tInherit the environment variable <var> from the parent process\n\
947 -E <var>=<val>\tSet the environment variable <var> to <val>; unset it if <var> is empty\n\
948 -f\t\tFilter system calls (-ff=very restricted)\n\
949 -i <file>\tRedirect stdin from <file>\n\
950 -m <size>\tLimit address space to <size> KB\n\
951 -M <file>\tOutput process information to <file> (name:value)\n\
952 -o <file>\tRedirect stdout to <file>\n\
953 -p <path>\tPermit access to the specified path (or subtree if it ends with a `/')\n\
954 -p <path>=<act>\tDefine action for the specified path (<act>=yes/no)\n\
955 -r <file>\tRedirect stderr to <file>\n\
956 -s <sys>\tPermit the specified syscall (be careful)\n\
957 -s <sys>=<act>\tDefine action for the specified syscall (<act>=yes/no/file)\n\
958 -t <time>\tSet run time limit (seconds, fractions allowed)\n\
959 -T\t\tAllow syscalls for measuring run time\n\
960 -v\t\tBe verbose (use multiple times for even more verbosity)\n\
961 -w <time>\tSet wall clock time limit (seconds, fractions allowed)\n\
967 main(int argc, char **argv)
972 while ((c = getopt(argc, argv, "a:c:eE:fi:m:M:o:p:r:s:t:Tvw:")) >= 0)
976 file_access = atol(optarg);
985 if (!set_env_action(optarg))
992 redir_stdin = optarg;
995 memory_limit = atol(optarg);
1001 redir_stdout = optarg;
1004 if (!set_path_action(optarg))
1008 redir_stderr = optarg;
1011 if (!set_syscall_action(optarg))
1015 timeout = 1000*atof(optarg);
1018 syscall_action[__NR_times] = A_YES;
1024 wall_timeout = 1000*atof(optarg);
1033 if (setreuid(uid, uid) < 0)
1034 die("setreuid: %m");
1039 box_inside(argc-optind, argv+optind);
1042 die("Internal error: fell over edge of the world");