37
37
# working on smaller output
39
39
CGI_BLOCK_SIZE = 65535
40
PATH = "/usr/local/bin:/usr/bin:/bin"
41
42
def interpret_file(req, owner, jail_dir, filename, interpreter, gentle=True):
42
43
"""Serves a file by interpreting it using one of IVLE's builtin
73
74
# (Note that paths "relative" to the jail actually begin with a '/' as
74
75
# they are absolute in the jailspace)
76
return interpreter(owner.unixid, jail_dir, working_dir, filename_abs, req,
77
return interpreter(owner, jail_dir, working_dir, filename_abs, req,
89
90
self.headers = {} # Header names : values
91
def execute_cgi(interpreter, uid, jail_dir, working_dir, script_path,
92
def execute_cgi(interpreter, owner, jail_dir, working_dir, script_path,
94
95
trampoline: Full path on the local system to the CGI wrapper program
96
uid: User ID of the owner of the file.
97
owner: User object of the owner of the file.
97
98
jail_dir: Absolute path of owner's jail directory.
98
99
working_dir: Directory containing the script file relative to owner's
129
130
f.seek(0) # Rewind, for reading
131
132
# Set up the environment
132
# This automatically asks mod_python to load up the CGI variables into the
133
# environment (which is a good first approximation)
134
old_env = os.environ.copy()
135
for k in os.environ.keys():
137
for (k,v) in req.get_cgi_environ().items():
139
fixup_environ(req, script_path)
133
environ = cgi_environ(req, script_path, owner)
141
135
# usage: tramp uid jail_dir working_dir script_path
142
cmd_line = [trampoline, str(uid), req.config['paths']['jails']['mounts'],
143
req.config['paths']['jails']['src'],
144
req.config['paths']['jails']['template'],
145
jail_dir, working_dir, interpreter, script_path]
136
cmd_line = [trampoline, str(owner.unixid),
137
req.config['paths']['jails']['mounts'],
138
req.config['paths']['jails']['src'],
139
req.config['paths']['jails']['template'],
140
jail_dir, working_dir, interpreter, script_path]
146
141
# Popen doesn't like unicode strings. It hateses them.
147
142
cmd_line = [(s.encode('utf-8') if isinstance(s, unicode) else s)
148
143
for s in cmd_line]
149
144
pid = subprocess.Popen(cmd_line,
150
145
stdin=f, stdout=subprocess.PIPE, stderr=subprocess.STDOUT,
153
# Restore the environment
154
for k in os.environ.keys():
156
for (k,v) in old_env.items():
146
cwd=tramp_dir, env=environ)
159
148
# We don't want any output! Bail out after the process terminates.
229
218
# Is this an internal IVLE error condition?
230
219
hs = cgiflags.headers
231
220
if 'X-IVLE-Error-Type' in hs:
232
t = hs['X-IVLE-Error-Type']
233
if t == IVLEError.__name__:
234
raise IVLEError(int(hs['X-IVLE-Error-Code']),
235
hs['X-IVLE-Error-Message'])
238
raise IVLEJailError(hs['X-IVLE-Error-Type'],
239
hs['X-IVLE-Error-Message'],
240
hs['X-IVLE-Error-Info'])
242
raise IVLEError(500, 'bad error headers written by CGI')
222
raise IVLEJailError(hs['X-IVLE-Error-Type'],
223
hs['X-IVLE-Error-Message'],
224
hs['X-IVLE-Error-Info'])
226
raise AssertionError("Bad error headers written by CGI.")
244
228
# Check to make sure the required headers were written
245
229
if cgiflags.wrote_html_warning or not cgiflags.gentle:
361
345
# python-server-page
364
def fixup_environ(req, script_path):
365
"""Assuming os.environ has been written with the CGI variables from
366
apache, make a few changes for security and correctness.
348
def cgi_environ(req, script_path, user):
349
"""Gets CGI variables from apache and makes a few changes for security and
368
352
Does not modify req, only reads it.
371
355
# Comments here are on the heavy side, explained carefully for security
372
356
# reasons. Please read carefully before making changes.
358
# This automatically asks mod_python to load up the CGI variables into the
359
# environment (which is a good first approximation)
360
for (k,v) in req.get_cgi_environ().items():
374
363
# Remove DOCUMENT_ROOT and SCRIPT_FILENAME. Not part of CGI spec and
375
364
# exposes unnecessary details about server.
418
407
env['SERVER_SOFTWARE'] = "IVLE/" + ivle.__version__
420
409
# Additional environment variables
421
username = split_path(req.path)[0]
410
username = user.login
422
411
env['HOME'] = os.path.join('/home', username)
424
415
class ExecutionError(Exception):
444
435
for s in cmd_line]
445
436
proc = subprocess.Popen(cmd_line,
446
437
stdin=subprocess.PIPE, stdout=subprocess.PIPE,
447
stderr=subprocess.PIPE, cwd=tramp_dir, close_fds=True)
438
stderr=subprocess.PIPE, cwd=tramp_dir, close_fds=True,
439
env={'HOME': os.path.join('/home', user.login),
442
'LOGNAME': user.login})
449
444
(stdout, stderr) = proc.communicate()
450
445
exitcode = proc.returncode
452
447
if exitcode != 0:
453
raise ExecutionError('subprocess ended with code %d, stderr %s' %
454
(exitcode, proc.stderr.read()))
448
raise ExecutionError('subprocess ended with code %d, stderr: "%s"' %
455
450
return (stdout, stderr)