summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGuido van Rossum <guido@python.org>1998-07-09 13:52:38 (GMT)
committerGuido van Rossum <guido@python.org>1998-07-09 13:52:38 (GMT)
commiteeb64287f1e735ead3eced61804cca81452cff79 (patch)
treec3196a26ba016f1f15a80335ebd264651f2ade2f
parentf029548ac207ecf48373b90b24ccbcc42cf9d1ba (diff)
downloadcpython-eeb64287f1e735ead3eced61804cca81452cff79.zip
cpython-eeb64287f1e735ead3eced61804cca81452cff79.tar.gz
cpython-eeb64287f1e735ead3eced61804cca81452cff79.tar.bz2
(1) Added a sys.exc_info() emulation. (It returns None for the traceback.)
(2) Made the test script a bit fancier -- you can now use it to run arbitrary scripts in restricted mode, and it will do the right thing. (The interactive mode is still pretty lame; should integrate this with code.interact().)
-rw-r--r--Lib/rexec.py72
1 files changed, 57 insertions, 15 deletions
diff --git a/Lib/rexec.py b/Lib/rexec.py
index c3782c3..792fb8e 100644
--- a/Lib/rexec.py
+++ b/Lib/rexec.py
@@ -216,6 +216,7 @@ class RExec(ihooks._Verbose):
m.modules = self.modules
m.argv = ['RESTRICTED']
m.path = map(None, self.ok_path)
+ m.exc_info = self.r_exc_info
m = self.modules['sys']
l = self.modules.keys() + list(self.ok_builtin_modules)
l.sort()
@@ -359,28 +360,69 @@ class RExec(ihooks._Verbose):
raise IOError, "can't open files for writing in restricted mode"
return open(file, mode, buf)
+ # Restricted version of sys.exc_info()
+
+ def r_exc_info(self):
+ ty, va, tr = sys.exc_info()
+ tr = None
+ return ty, va, tr
+
def test():
- import traceback
- r = RExec(verbose=('-v' in sys.argv[1:]))
- print "*** RESTRICTED *** Python", sys.version
- print sys.copyright
- while 1:
+ import sys, getopt, traceback
+ opts, args = getopt.getopt(sys.argv[1:], 'vt:')
+ verbose = 0
+ trusted = []
+ for o, a in opts:
+ if o == '-v':
+ verbose = verbose+1
+ if o == '-t':
+ trusted.append(a)
+ r = RExec(verbose=verbose)
+ if trusted:
+ r.ok_builtin_modules = r.ok_builtin_modules + tuple(trusted)
+ if args:
+ r.modules['sys'].argv = args
+ r.modules['sys'].path.insert(0, os.path.dirname(args[0]))
+ else:
+ r.modules['sys'].path.insert(0, "")
+ fp = sys.stdin
+ if args and args[0] != '-':
try:
+ fp = open(args[0])
+ except IOError, msg:
+ print "%s: can't open file %s" % (sys.argv[0], `args[0]`)
+ return 1
+ if fp.isatty():
+ print "*** RESTRICTED *** Python", sys.version
+ print sys.copyright
+ while 1:
try:
- s = raw_input('>>> ')
- except EOFError:
- print
- break
- if s and s[0] != '#':
- s = s + '\n'
- c = compile(s, '<stdin>', 'single')
- r.r_exec(c)
+ try:
+ s = raw_input('>>> ')
+ except EOFError:
+ print
+ break
+ if s and s[0] != '#':
+ s = s + '\n'
+ c = compile(s, '<stdin>', 'single')
+ r.s_exec(c)
+ except SystemExit, n:
+ return n
+ except:
+ traceback.print_exc()
+ else:
+ text = fp.read()
+ fp.close()
+ c = compile(text, fp.name, 'exec')
+ try:
+ r.s_exec(c)
except SystemExit, n:
- sys.exit(n)
+ return n
except:
traceback.print_exc()
+ return 1
if __name__ == '__main__':
- test()
+ sys.exit(test())