89
89
self.headers = {} # Header names : values
91
def execute_cgi(interpreter, trampoline, uid, jail_dir, working_dir,
92
script_path, req, gentle):
91
def execute_cgi(interpreter, uid, jail_dir, working_dir, script_path,
94
94
trampoline: Full path on the local system to the CGI wrapper program
137
139
fixup_environ(req, script_path)
139
141
# usage: tramp uid jail_dir working_dir script_path
140
pid = subprocess.Popen(
141
[trampoline, str(uid), ivle.conf.jail_base, ivle.conf.jail_src_base,
142
ivle.conf.jail_system, jail_dir, working_dir, interpreter,
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]
146
# Popen doesn't like unicode strings. It hateses them.
147
cmd_line = [(s.encode('utf-8') if isinstance(s, unicode) else s)
149
pid = subprocess.Popen(cmd_line,
144
150
stdin=f, stdout=subprocess.PIPE, stderr=subprocess.STDOUT,
343
349
""" % (warning, text))
345
location_cgi_python = os.path.join(ivle.conf.lib_path, "trampoline")
347
351
# Mapping of interpreter names (as given in conf/app/server.py) to
348
352
# interpreter functions.
350
354
interpreter_objects = {
352
: functools.partial(execute_cgi, "/usr/bin/python",
353
location_cgi_python),
356
: functools.partial(execute_cgi, "/usr/bin/python"),
355
: functools.partial(execute_cgi, None,
356
location_cgi_python),
358
: functools.partial(execute_cgi, None),
357
359
# Should also have:
359
361
# python-server-page
404
406
if script_path and script_path.startswith('/home'):
405
407
normscript = os.path.normpath(script_path)
407
uri_into_jail = studpath.url_to_jailpaths(os.path.normpath(req.path))[2]
409
uri_into_jail = studpath.to_home_path(os.path.normpath(req.path))
409
411
# PATH_INFO is wrong because the script doesn't physically exist.
410
412
env['PATH_INFO'] = uri_into_jail[len(normscript):]
414
416
# SERVER_SOFTWARE is actually not Apache but IVLE, since we are
415
417
# custom-making the CGI request.
416
env['SERVER_SOFTWARE'] = "IVLE/" + str(ivle.conf.ivle_version)
418
env['SERVER_SOFTWARE'] = "IVLE/" + ivle.__version__
418
420
# Additional environment variables
419
username = studpath.url_to_jailpaths(req.path)[0]
421
username = split_path(req.path)[0]
420
422
env['HOME'] = os.path.join('/home', username)
422
424
class ExecutionError(Exception):
425
def execute_raw(user, jail_dir, working_dir, binary, args):
427
def execute_raw(config, user, jail_dir, working_dir, binary, args):
426
428
'''Execute a binary in a user's jail, returning the raw output.
428
430
The binary is executed in the given working directory with the given
429
431
args. A tuple of (stdout, stderr) is returned.
432
tramp = location_cgi_python
433
tramp_dir = os.path.split(location_cgi_python)[0]
434
tramp = os.path.join(config['paths']['lib'], 'trampoline')
435
tramp_dir = os.path.split(tramp)[0]
435
437
# Fire up trampoline. Vroom, vroom.
436
proc = subprocess.Popen(
437
[tramp, str(user.unixid), ivle.conf.jail_base,
438
ivle.conf.jail_src_base, ivle.conf.jail_system, jail_dir,
439
working_dir, binary] + args,
438
cmd_line = [tramp, str(user.unixid), config['paths']['jails']['mounts'],
439
config['paths']['jails']['src'],
440
config['paths']['jails']['template'],
441
jail_dir, working_dir, binary] + args
442
# Popen doesn't like unicode strings. It hateses them.
443
cmd_line = [(s.encode('utf-8') if isinstance(s, unicode) else s)
445
proc = subprocess.Popen(cmd_line,
440
446
stdin=subprocess.PIPE, stdout=subprocess.PIPE,
441
447
stderr=subprocess.PIPE, cwd=tramp_dir, close_fds=True)