2 * A Process Isolator based on Linux Containers
4 * (c) 2012 Martin Mares <mj@ucw.cz>
5 * (c) 2012 Bernard Blackham <bernard@blackham.com.au>
26 #include <sys/signal.h>
27 #include <sys/resource.h>
28 #include <sys/mount.h>
31 #define NONRET __attribute__((noreturn))
32 #define UNUSED __attribute__((unused))
33 #define ARRAY_SIZE(a) (int)(sizeof(a)/sizeof(a[0]))
35 #define BOX_DIR CONFIG_ISOLATE_BOX_DIR
36 #define BOX_UID CONFIG_ISOLATE_BOX_UID
37 #define BOX_GID CONFIG_ISOLATE_BOX_GID
39 static int timeout; /* milliseconds */
40 static int wall_timeout;
41 static int extra_timeout;
42 static int pass_environ;
44 static int memory_limit;
45 static int stack_limit;
46 static int max_processes = 1;
47 static char *redir_stdin, *redir_stdout, *redir_stderr;
50 static int cg_memory_limit;
52 static char *cg_root = "/sys/fs/cgroup";
54 static uid_t orig_uid;
55 static gid_t orig_gid;
58 static int partial_line;
59 static char cleanup_cmd[256];
61 static struct timeval start_time;
62 static int ticks_per_sec;
63 static int total_ms, wall_ms;
64 static volatile sig_atomic_t timer_tick;
66 static int error_pipes[2];
67 static int write_errors_to_fd;
68 static int read_errors_from_fd;
70 static void die(char *msg, ...) NONRET;
71 static void cg_stats(void);
72 static int get_wall_time_ms(void);
73 static int get_run_time_ms(struct rusage *rus);
77 static FILE *metafile;
80 meta_open(const char *name)
82 if (!strcmp(name, "-"))
87 metafile = fopen(name, "w");
89 die("Failed to open metafile '%s'",name);
95 if (metafile && metafile != stdout)
99 static void __attribute__((format(printf,1,2)))
100 meta_printf(const char *fmt, ...)
107 vfprintf(metafile, fmt, args);
112 final_stats(struct rusage *rus)
114 total_ms = get_run_time_ms(rus);
115 wall_ms = get_wall_time_ms();
117 meta_printf("time:%d.%03d\n", total_ms/1000, total_ms%1000);
118 meta_printf("time-wall:%d.%03d\n", wall_ms/1000, wall_ms%1000);
119 meta_printf("max-rss:%ld\n", rus->ru_maxrss);
120 meta_printf("csw-voluntary:%ld\n", rus->ru_nvcsw);
121 meta_printf("csw-forced:%ld\n", rus->ru_nivcsw);
126 /*** Messages and exits ***/
129 xsystem(const char *cmd)
131 int ret = system(cmd);
133 die("system(\"%s\"): %m", cmd);
134 if (!WIFEXITED(ret) || WEXITSTATUS(ret))
135 die("system(\"%s\"): Exited with status %d", cmd, ret);
143 kill(-box_pid, SIGKILL);
144 kill(box_pid, SIGKILL);
145 meta_printf("killed:1\n");
150 p = wait4(box_pid, &stat, 0, &rus);
151 while (p < 0 && errno == EINTR);
153 fprintf(stderr, "UGH: Lost track of the process (%m)\n");
158 if (rc < 2 && cleanup_cmd[0])
159 xsystem(cleanup_cmd);
173 /* Report an error of the sandbox itself */
174 static void NONRET __attribute__((format(printf,1,2)))
180 int n = vsnprintf(buf, sizeof(buf), msg, args);
182 if (write_errors_to_fd)
184 // We are inside the box, have to use error pipe for error reporting.
185 // We hope that the whole error message fits in PIPE_BUF bytes.
186 write(write_errors_to_fd, buf, n);
190 // Otherwise, we in the box keeper process, so we report errors normally
192 meta_printf("status:XX\nmessage:%s\n", buf);
198 /* Report an error of the program inside the sandbox */
199 static void NONRET __attribute__((format(printf,1,2)))
205 if (msg[0] && msg[1] && msg[2] == ':' && msg[3] == ' ')
207 meta_printf("status:%c%c\n", msg[0], msg[1]);
211 vsnprintf(buf, sizeof(buf), msg, args);
212 meta_printf("message:%s\n", buf);
218 /* Write a message, but only if in verbose mode */
219 static void __attribute__((format(printf,1,2)))
226 int len = strlen(msg);
228 partial_line = (msg[len-1] != '\n');
229 vfprintf(stderr, msg, args);
235 /*** Utility functions ***/
240 void *p = malloc(size);
242 die("Out of memory");
249 char *p = strdup(str);
251 die("Out of memory");
255 static int dir_exists(char *path)
258 return (stat(path, &st) >= 0 && S_ISDIR(st.st_mode));
261 /*** Environment rules ***/
264 char *var; // Variable to match
265 char *val; // ""=clear, NULL=inherit
267 struct env_rule *next;
270 static struct env_rule *first_env_rule;
271 static struct env_rule **last_env_rule = &first_env_rule;
273 static struct env_rule default_env_rules[] = {
274 { "LIBC_FATAL_STDERR_", "1" }
278 set_env_action(char *a0)
280 struct env_rule *r = xmalloc(sizeof(*r) + strlen(a0) + 1);
281 char *a = (char *)(r+1);
284 char *sep = strchr(a, '=');
296 last_env_rule = &r->next;
302 match_env_var(char *env_entry, struct env_rule *r)
304 if (strncmp(env_entry, r->var, r->var_len))
306 return (env_entry[r->var_len] == '=');
310 apply_env_rule(char **env, int *env_sizep, struct env_rule *r)
312 // First remove the variable if already set
314 while (pos < *env_sizep && !match_env_var(env[pos], r))
316 if (pos < *env_sizep)
319 env[pos] = env[*env_sizep];
320 env[*env_sizep] = NULL;
323 // What is the new value?
329 new = xmalloc(r->var_len + 1 + strlen(r->val) + 1);
330 sprintf(new, "%s=%s", r->var, r->val);
335 while (environ[pos] && !match_env_var(environ[pos], r))
337 if (!(new = environ[pos]))
341 // Add it at the end of the array
342 env[(*env_sizep)++] = new;
343 env[*env_sizep] = NULL;
347 setup_environment(void)
349 // Link built-in rules with user rules
350 for (int i=ARRAY_SIZE(default_env_rules)-1; i >= 0; i--)
352 default_env_rules[i].next = first_env_rule;
353 first_env_rule = &default_env_rules[i];
356 // Scan the original environment
357 char **orig_env = environ;
359 while (orig_env[orig_size])
362 // For each rule, reserve one more slot and calculate length
364 for (struct env_rule *r = first_env_rule; r; r=r->next)
367 r->var_len = strlen(r->var);
370 // Create a new environment
371 char **env = xmalloc((orig_size + num_rules + 1) * sizeof(char *));
375 memcpy(env, environ, orig_size * sizeof(char *));
382 // Apply the rules one by one
383 for (struct env_rule *r = first_env_rule; r; r=r->next)
384 apply_env_rule(env, &size, r);
386 // Return the new env and pass some gossip
389 fprintf(stderr, "Passing environment:\n");
390 for (int i=0; env[i]; i++)
391 fprintf(stderr, "\t%s\n", env[i]);
396 /*** Mount rules ***/
399 char *inside; // A relative path
400 char *outside; // This can be:
401 // - an absolute path
402 // - a relative path starting with "./"
403 // - one of the above prefixed with "?" to mean "only if exists"
405 struct dir_rule *next;
408 static struct dir_rule *first_dir_rule;
409 static struct dir_rule **last_dir_rule = &first_dir_rule;
411 static int add_dir_rule(char *in, char *out)
413 // Make sure that "in" is relative
426 !strncmp(o, "./", 2) ||
427 !strcmp(o, "procfs")))
431 // Override an existing rule
432 for (struct dir_rule *r = first_dir_rule; r; r=r->next)
433 if (!strcmp(r->inside, in))
440 struct dir_rule *r = xmalloc(sizeof(*r));
444 last_dir_rule = &r->next;
450 static int set_dir_action(char *arg)
453 char *sep = strchr(arg, '=');
458 return add_dir_rule(arg, (*sep ? sep : NULL));
462 char *out = xmalloc(1 + strlen(arg) + 1);
463 sprintf(out, "/%s", arg);
464 return add_dir_rule(arg, out);
468 static void init_dir_rules(void)
470 set_dir_action("box=./box");
471 set_dir_action("bin");
472 set_dir_action("dev");
473 set_dir_action("lib");
474 set_dir_action("lib64=?/lib64");
475 set_dir_action("proc=procfs");
476 set_dir_action("usr");
479 static void make_dir(char *path)
484 sep = strchr(sep, '/');
488 if (!dir_exists(path) && mkdir(path, 0777) < 0)
489 die("Cannot create directory %s: %m\n", path);
497 static void apply_dir_rules(void)
499 for (struct dir_rule *r = first_dir_rule; r; r=r->next)
501 char *in = r->inside;
502 char *out = r->outside;
505 msg("Not binding anything on %s\n", r->inside);
512 if (!dir_exists(out))
514 msg("Not binding %s on %s (does not exist)\n", out, r->inside);
520 snprintf(root_in, sizeof(root_in), "root/%s", in);
523 if (!strcmp(out, "procfs"))
525 msg("Mounting procfs on %s\n", in);
526 if (mount("none", root_in, "proc", 0, "") < 0)
527 die("Cannot mount proc on %s: %m", in);
531 msg("Binding %s on %s\n", out, in);
532 if (mount(out, root_in, "none", MS_BIND | MS_NOSUID | MS_NODEV, "") < 0)
533 die("Cannot bind %s on %s: %m", out, in);
538 /*** Control groups ***/
540 static char cg_path[256];
542 #define CG_BUFSIZE 1024
545 cg_read(char *attr, char *buf)
555 snprintf(path, sizeof(path), "%s/%s", cg_path, attr);
557 int fd = open(path, O_RDONLY);
562 die("Cannot read %s: %m", path);
565 int n = read(fd, buf, CG_BUFSIZE);
567 die("Cannot read %s: %m", path);
568 if (n >= CG_BUFSIZE - 1)
569 die("Attribute %s too long", path);
570 if (n > 0 && buf[n-1] == '\n')
575 msg("CG: Read %s = %s\n", attr, buf);
581 static void __attribute__((format(printf,2,3)))
582 cg_write(char *attr, char *fmt, ...)
587 char buf[CG_BUFSIZE];
588 int n = vsnprintf(buf, sizeof(buf), fmt, args);
590 die("cg_writef: Value for attribute %s is too long", attr);
593 msg("CG: Write %s = %s", attr, buf);
596 snprintf(path, sizeof(path), "%s/%s", cg_path, attr);
598 int fd = open(path, O_WRONLY | O_TRUNC);
600 die("Cannot write %s: %m", path);
602 int written = write(fd, buf, n);
604 die("Cannot set %s to %s: %m", path, buf);
606 die("Short write to %s (%d out of %d bytes)", path, written, n);
618 if (!dir_exists(cg_root))
619 die("Control group filesystem at %s not mounted", cg_root);
621 snprintf(cg_path, sizeof(cg_path), "%s/box-%d", cg_root, BOX_UID);
622 msg("Using control group %s\n", cg_path);
632 char buf[CG_BUFSIZE];
634 if (stat(cg_path, &st) >= 0 || errno != ENOENT)
636 msg("Control group %s already exists, trying to empty it.\n", cg_path);
637 if (rmdir(cg_path) < 0)
638 die("Failed to reset control group %s: %m", cg_path);
641 if (mkdir(cg_path, 0777) < 0)
642 die("Failed to create control group %s: %m", cg_path);
644 // If cpuset module is enabled, copy allowed cpus and memory nodes from parent group
645 if (cg_read("?../cpuset.cpus", buf))
646 cg_write("cpuset.cpus", "%s", buf);
647 if (cg_read("?../cpuset.mems", buf))
648 cg_write("cpuset.mems", "%s", buf);
657 msg("Entering control group %s\n", cg_path);
660 if (stat(cg_path, &st) < 0)
661 die("Control group %s does not exist: %m", cg_path);
665 cg_write("memory.limit_in_bytes", "%lld\n", (long long) cg_memory_limit << 10);
666 cg_write("memory.memsw.limit_in_bytes", "%lld\n", (long long) cg_memory_limit << 10);
670 cg_write("cpuacct.usage", "0\n");
672 cg_write("tasks", "%d\n", (int) getpid());
676 cg_get_run_time_ms(void)
681 char buf[CG_BUFSIZE];
682 cg_read("cpuacct.usage", buf);
683 unsigned long long ns = atoll(buf);
693 char buf[CG_BUFSIZE];
695 // Memory usage statistics
696 unsigned long long mem=0, memsw=0;
697 if (cg_read("?memory.max_usage_in_bytes", buf))
699 if (cg_read("?memory.memsw.max_usage_in_bytes", buf))
706 meta_printf("cg-mem:%lld\n", mem >> 10);
712 char buf[CG_BUFSIZE];
717 cg_read("tasks", buf);
719 die("Some tasks left in control group %s, failed to remove it", cg_path);
721 if (rmdir(cg_path) < 0)
722 die("Cannot remove control group %s: %m", cg_path);
725 /*** The keeper process ***/
728 signal_alarm(int unused UNUSED)
730 /* Time limit checks are synchronous, so we only schedule them there. */
736 signal_int(int unused UNUSED)
738 /* Interrupts are fatal, so no synchronization requirements. */
739 meta_printf("exitsig:%d\n", SIGINT);
740 err("SG: Interrupted");
743 #define PROC_BUF_SIZE 4096
745 read_proc_file(char *buf, char *name, int *fdp)
751 sprintf(buf, "/proc/%d/%s", (int) box_pid, name);
752 *fdp = open(buf, O_RDONLY);
754 die("open(%s): %m", buf);
756 lseek(*fdp, 0, SEEK_SET);
757 if ((c = read(*fdp, buf, PROC_BUF_SIZE-1)) < 0)
758 die("read on /proc/$pid/%s: %m", name);
759 if (c >= PROC_BUF_SIZE-1)
760 die("/proc/$pid/%s too long", name);
765 get_wall_time_ms(void)
767 struct timeval now, wall;
768 gettimeofday(&now, NULL);
769 timersub(&now, &start_time, &wall);
770 return wall.tv_sec*1000 + wall.tv_usec/1000;
774 get_run_time_ms(struct rusage *rus)
777 return cg_get_run_time_ms();
781 struct timeval total;
782 timeradd(&rus->ru_utime, &rus->ru_stime, &total);
783 return total.tv_sec*1000 + total.tv_usec/1000;
786 char buf[PROC_BUF_SIZE], *x;
788 static int proc_stat_fd;
790 read_proc_file(buf, "stat", &proc_stat_fd);
792 while (*x && *x != ' ')
797 die("proc stat syntax error 1");
798 while (*x && (*x != ')' || x[1] != ' '))
800 while (*x == ')' || *x == ' ')
802 if (sscanf(x, "%*c %*d %*d %*d %*d %*d %*d %*d %*d %*d %*d %d %d", &utime, &stime) != 2)
803 die("proc stat syntax error 2");
805 return (utime + stime) * 1000 / ticks_per_sec;
813 int wall_ms = get_wall_time_ms();
814 if (wall_ms > wall_timeout)
815 err("TO: Time limit exceeded (wall clock)");
817 fprintf(stderr, "[wall time check: %d msec]\n", wall_ms);
821 int ms = get_run_time_ms(NULL);
823 fprintf(stderr, "[time check: %d msec]\n", ms);
824 if (ms > timeout && ms > extra_timeout)
825 err("TO: Time limit exceeded");
832 read_errors_from_fd = error_pipes[0];
833 close(error_pipes[1]);
836 bzero(&sa, sizeof(sa));
837 sa.sa_handler = signal_int;
838 sigaction(SIGINT, &sa, NULL);
840 gettimeofday(&start_time, NULL);
841 ticks_per_sec = sysconf(_SC_CLK_TCK);
842 if (ticks_per_sec <= 0)
843 die("Invalid ticks_per_sec!");
845 if (timeout || wall_timeout)
847 sa.sa_handler = signal_alarm;
848 sigaction(SIGALRM, &sa, NULL);
862 p = wait4(box_pid, &stat, 0, &rus);
870 die("wait4: unknown pid %d exited!", p);
873 // Check error pipe if there is an internal error passed from inside the box
875 int n = read(read_errors_from_fd, interr, sizeof(interr) - 1);
885 if (WEXITSTATUS(stat))
887 meta_printf("exitcode:%d\n", WEXITSTATUS(stat));
888 err("RE: Exited with error status %d", WEXITSTATUS(stat));
890 if (timeout && total_ms > timeout)
891 err("TO: Time limit exceeded");
892 if (wall_timeout && wall_ms > wall_timeout)
893 err("TO: Time limit exceeded (wall clock)");
895 fprintf(stderr, "OK (%d.%03d sec real, %d.%03d sec wall)\n",
896 total_ms/1000, total_ms%1000,
897 wall_ms/1000, wall_ms%1000);
900 else if (WIFSIGNALED(stat))
902 meta_printf("exitsig:%d\n", WTERMSIG(stat));
904 err("SG: Caught fatal signal %d", WTERMSIG(stat));
906 else if (WIFSTOPPED(stat))
908 meta_printf("exitsig:%d\n", WSTOPSIG(stat));
910 err("SG: Stopped by signal %d", WSTOPSIG(stat));
913 die("wait4: unknown status %x, giving up!", stat);
917 /*** The process running inside the box ***/
922 if (mkdir("root", 0750) < 0 && errno != EEXIST)
923 die("mkdir('root'): %m");
925 if (mount("none", "root", "tmpfs", 0, "mode=755") < 0)
926 die("Cannot mount root ramdisk: %m");
930 if (chroot("root") < 0)
931 die("Chroot failed: %m");
933 if (chdir("root/box") < 0)
934 die("Cannot change current directory: %m");
938 setup_credentials(void)
940 if (setresgid(BOX_GID, BOX_GID, BOX_GID) < 0)
941 die("setresgid: %m");
942 if (setgroups(0, NULL) < 0)
943 die("setgroups: %m");
944 if (setresuid(BOX_UID, BOX_UID, BOX_UID) < 0)
945 die("setresuid: %m");
955 if (open(redir_stdin, O_RDONLY) != 0)
956 die("open(\"%s\"): %m", redir_stdin);
961 if (open(redir_stdout, O_WRONLY | O_CREAT | O_TRUNC, 0666) != 1)
962 die("open(\"%s\"): %m", redir_stdout);
967 if (open(redir_stderr, O_WRONLY | O_CREAT | O_TRUNC, 0666) != 2)
968 die("open(\"%s\"): %m", redir_stderr);
975 setup_rlim(const char *res_name, int res, rlim_t limit)
977 struct rlimit rl = { .rlim_cur = limit, .rlim_max = limit };
978 if (setrlimit(res, &rl) < 0)
979 die("setrlimit(%s, %jd)", res_name, (intmax_t) limit);
985 #define RLIM(res, val) setup_rlim("RLIMIT_" #res, RLIMIT_##res, val)
988 RLIM(AS, memory_limit * 1024);
990 RLIM(STACK, (stack_limit ? (rlim_t)stack_limit * 1024 : RLIM_INFINITY));
995 RLIM(NPROC, max_processes);
1001 box_inside(void *arg)
1004 write_errors_to_fd = error_pipes[1];
1005 close(error_pipes[0]);
1009 setup_credentials();
1012 char **env = setup_environment();
1014 execve(args[0], args, env);
1015 die("execve(\"%s\"): %m", args[0]);
1023 msg("Preparing sandbox directory\n");
1024 xsystem("rm -rf box");
1025 if (mkdir("box", 0700) < 0)
1026 die("Cannot create box: %m");
1027 if (chown("box", orig_uid, orig_gid) < 0)
1028 die("Cannot chown box: %m");
1036 if (!dir_exists("box"))
1037 die("Box directory not found, there isn't anything to clean up");
1039 msg("Deleting sandbox directory\n");
1040 xsystem("rm -rf box");
1047 if (!dir_exists("box"))
1048 die("Box directory not found, did you run `isolate --init'?");
1051 snprintf(cmd, sizeof(cmd), "chown -R %d.%d box", BOX_UID, BOX_GID);
1053 snprintf(cleanup_cmd, sizeof(cleanup_cmd), "chown -R %d.%d box", orig_uid, orig_gid);
1055 if (pipe(error_pipes) < 0)
1057 for (int i=0; i<2; i++)
1058 if (fcntl(error_pipes[i], F_SETFD, fcntl(error_pipes[i], F_GETFD) | FD_CLOEXEC) < 0 ||
1059 fcntl(error_pipes[i], F_SETFL, fcntl(error_pipes[i], F_GETFL) | O_NONBLOCK) < 0)
1060 die("fcntl on pipe: %m");
1063 box_inside, // Function to execute as the body of the new process
1064 argv, // Pass our stack
1065 SIGCHLD | CLONE_NEWIPC | CLONE_NEWNET | CLONE_NEWNS | CLONE_NEWPID,
1066 argv); // Pass the arguments
1070 die("clone returned 0");
1077 printf("Process isolator 1.0\n");
1078 printf("(c) 2012 Martin Mares and Bernard Blackham\n");
1079 printf("\nCompile-time configuration:\n");
1080 printf("Sandbox directory: %s\n", BOX_DIR);
1081 printf("Sandbox credentials: uid=%u gid=%u\n", BOX_UID, BOX_GID);
1089 fprintf(stderr, "Invalid arguments!\n");
1091 Usage: isolate [<options>] <command>\n\
1094 -c, --cg[=<parent>]\tPut process in a control group (optionally a sub-group of <parent>)\n\
1095 --cg-mem=<size>\tLimit memory usage of the control group to <size> KB\n\
1096 --cg-timing\t\tTime limits affects total run time of the control group\n\
1097 -d, --dir=<dir>\t\tMake a directory <dir> visible inside the sandbox\n\
1098 -d, --dir=<in>=<out>\tMake a directory <out> outside visible as <in> inside\n\
1099 -d, --dir=<in>=\t\tDelete a previously defined directory rule (even a default one)\n\
1100 -E, --env=<var>\t\tInherit the environment variable <var> from the parent process\n\
1101 -E, --env=<var>=<val>\tSet the environment variable <var> to <val>; unset it if <var> is empty\n\
1102 -x, --extra-time=<time>\tSet extra timeout, before which a timing-out program is not yet killed,\n\
1103 \t\t\tso that its real execution time is reported (seconds, fractions allowed)\n\
1104 -e, --full-env\t\tInherit full environment of the parent process\n\
1105 -m, --mem=<size>\tLimit address space to <size> KB\n\
1106 -M, --meta=<file>\tOutput process information to <file> (name:value)\n\
1107 -k, --stack=<size>\tLimit stack size to <size> KB (default: 0=unlimited)\n\
1108 -r, --stderr=<file>\tRedirect stderr to <file>\n\
1109 -i, --stdin=<file>\tRedirect stdin from <file>\n\
1110 -o, --stdout=<file>\tRedirect stdout to <file>\n\
1111 -p, --processes[=<max>]\tEnable multiple processes (at most <max> of them); needs --cg\n\
1112 -t, --time=<time>\tSet run time limit (seconds, fractions allowed)\n\
1113 -v, --verbose\t\tBe verbose (use multiple times for even more verbosity)\n\
1114 -w, --wall-time=<time>\tSet wall clock time limit (seconds, fractions allowed)\n\
1117 --init\t\tInitialize sandbox (and its control group when --cg is used)\n\
1118 --run -- <cmd> ...\tRun given command within sandbox\n\
1119 --cleanup\t\tClean up sandbox\n\
1120 --version\t\tDisplay program version and configuration\n\
1134 static const char short_opts[] = "c::d:eE:i:k:m:M:o:p::r:t:vw:x:";
1136 static const struct option long_opts[] = {
1137 { "cg", 2, NULL, 'c' },
1138 { "cg-mem", 1, NULL, OPT_CG_MEM },
1139 { "cg-timing", 0, NULL, OPT_CG_TIMING },
1140 { "cleanup", 0, NULL, OPT_CLEANUP },
1141 { "dir", 1, NULL, 'd' },
1142 { "env", 1, NULL, 'E' },
1143 { "extra-time", 1, NULL, 'x' },
1144 { "full-env", 0, NULL, 'e' },
1145 { "init", 0, NULL, OPT_INIT },
1146 { "mem", 1, NULL, 'm' },
1147 { "meta", 1, NULL, 'M' },
1148 { "processes", 2, NULL, 'p' },
1149 { "run", 0, NULL, OPT_RUN },
1150 { "stack", 1, NULL, 'k' },
1151 { "stderr", 1, NULL, 'r' },
1152 { "stdin", 1, NULL, 'i' },
1153 { "stdout", 1, NULL, 'o' },
1154 { "time", 1, NULL, 't' },
1155 { "verbose", 0, NULL, 'v' },
1156 { "version", 0, NULL, OPT_VERSION },
1157 { "wall-time", 1, NULL, 'w' },
1158 { NULL, 0, NULL, 0 }
1162 main(int argc, char **argv)
1165 enum opt_code mode = 0;
1169 while ((c = getopt_long(argc, argv, short_opts, long_opts, NULL)) >= 0)
1178 if (!set_dir_action(optarg))
1185 if (!set_env_action(optarg))
1189 stack_limit = atoi(optarg);
1192 redir_stdin = optarg;
1195 memory_limit = atoi(optarg);
1201 redir_stdout = optarg;
1205 max_processes = atoi(optarg);
1210 redir_stderr = optarg;
1213 timeout = 1000*atof(optarg);
1219 wall_timeout = 1000*atof(optarg);
1222 extra_timeout = 1000*atof(optarg);
1231 cg_memory_limit = atoi(optarg);
1242 if (mode == OPT_VERSION)
1249 die("Must be started as root");
1250 orig_uid = getuid();
1251 orig_gid = getgid();
1254 if (chdir(BOX_DIR) < 0)
1255 die("chdir(%s): %m", BOX_DIR);
1276 die("Internal error: mode mismatch");