1
/* IVLE - Informatics Virtual Learning Environment
2
* Copyright (C) 2007-2008 The University of Melbourne
4
* This program is free software; you can redistribute it and/or modify
5
* it under the terms of the GNU General Public License as published by
6
* the Free Software Foundation; either version 2 of the License, or
7
* (at your option) any later version.
9
* This program is distributed in the hope that it will be useful,
10
* but WITHOUT ANY WARRANTY; without even the implied warranty of
11
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12
* GNU General Public License for more details.
14
* You should have received a copy of the GNU General Public License
15
* along with this program; if not, write to the Free Software
16
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
19
* Author: Tom Conway, Matt Giuca
22
* This program runs a given program in a given working dir.
23
* First, it chroots to a jail path and setuids to a given user ID.
24
* This is intented to provide a safe execution environment for arbitrary
25
* programs and scripts.
27
* Scripts (such as Python programs) should be executed by supplying
28
* "/usr/bin/python" as the program, and the script as the first argument.
30
* Usage: trampoline uid jail-path working-path program [args...]
31
* Must run as root. Will safely setuid to the supplied uid, checking that it
32
* is not root. Recommended that the file is set up as follows:
33
* sudo chown root:root trampoline; sudo chroot +s trampoline
40
#include <sys/types.h>
43
/* conf.h is admin-configured by the setup process.
44
* It defines jail_base.
48
/* Returns TRUE if the given uid is allowed to execute trampoline.
49
* Only root or the web server should be allowed to execute.
50
* This is determined by the whitelist allowed_uids in conf.h.
52
int uid_allowed(int uid)
55
/* root is always allowed to execute trampoline */
58
/* loop over all allowed_uids */
59
for (i=(sizeof(allowed_uids)/sizeof(*allowed_uids))-1; i>=0; i--)
61
if (allowed_uids[i] == uid)
64
/* default to disallowing */
68
/* Turn the process into a daemon using the standard
75
/* already a daemon */
76
if ( getppid() == 1 ) return;
78
/* Fork off the parent process */
83
/* If we got a good PID, then we can exit the parent process. */
88
/* At this point we are executing as the child process */
90
/* Change the file mode mask */
93
/* Create a new SID for the child process */
99
/* Change the current working directory. This prevents the current
100
directory from being locked; hence not being able to remove it. */
101
if ((chdir("/")) < 0) {
105
/* Redirect standard files to /dev/null */
106
freopen( "/dev/null", "r", stdin);
107
freopen( "/dev/null", "w", stdout);
108
freopen( "/dev/null", "w", stderr);
111
static void usage(const char* nm)
114
"usage: %s [-d] <uid> <jail> <cwd> <program> [args...]\n", nm);
118
int main(int argc, char* const argv[])
128
/* Disallow execution from all users but the whitelisted ones, and root */
129
if (!uid_allowed(getuid()))
131
fprintf(stderr, "only the web server may execute trampoline\n");
135
/* Args check and usage */
141
if (strcmp(argv[arg_num], "-d") == 0)
150
uid = atoi(argv[arg_num++]);
151
jailpath = argv[arg_num++];
152
work_dir = argv[arg_num++];
153
prog = argv[arg_num];
154
args = argv + arg_num;
156
/* Disallow suiding to the root user */
159
fprintf(stderr, "cannot set up a jail as root\n");
167
* Begin with jail_base
169
if (strlen(jailpath) < 1 || jailpath[0] != '/'
170
|| strstr(jailpath, "/..")
171
|| strncmp(jailpath, jail_base, strlen(jail_base)))
173
fprintf(stderr, "bad jail path: %s\n", jailpath);
177
/* chroot into the jail.
178
* Henceforth this process, and its children, cannot see anything above
180
if (chroot(jailpath))
182
perror("could not chroot");
186
/* chdir into the specified working directory */
189
perror("could not chdir");
193
/* setuid to the given user ID.
194
* Henceforth we will be running as this user instead of root.
198
perror("could not setuid");
207
/* exec (replace this process with the a new instance of the target
208
* program). Pass along all the arguments.
209
* Note that for script execution, the "program" will be the interpreter,
210
* and the first argument will be the script. */
213
/* XXX if (daemon_mode) use syslog? */
214
/* nb exec won't return unless there was an error */
215
perror("could not exec");