X-Git-Url: http://xvm.mit.edu/gitweb/invirt/packages/invirt-web.git/blobdiff_plain/72d59c7b46a21de59874b84c418a01073f55e139..2ceb21a06962e780e76e376870f489725ebd3381:/code/main.py diff --git a/code/main.py b/code/main.py index 6dcb70d..7531852 100755 --- a/code/main.py +++ b/code/main.py @@ -17,7 +17,7 @@ def revertStandardError(): """Move stderr to stdout, and return the contents of the old stderr.""" errio = sys.stderr if not isinstance(errio, StringIO): - return None + return '' sys.stderr = sys.stdout errio.seek(0) return errio.read() @@ -120,6 +120,9 @@ DEFAULT_HEADERS = {'Content-Type': 'text/html'} def error(op, username, fields, err, emsg): """Print an error page when a CodeError occurs""" + send_error_mail('xvm error on %s for %s: %s' % (op, username, err), + 'error on %s for %s: %s\n\n%s\n' + % (op, username, err, emsg)) d = dict(op=op, user=username, errorMessage=str(err), stderr=emsg) return templates.error(searchList=[d]) @@ -339,7 +342,7 @@ def command(username, state, fields): return templates.list(searchList=[d]) elif back == 'info': machine = validation.Validate(username, state, machine_id=fields.getfirst('machine_id')).machine - return ({'Status': '302', + return ({'Status': '303 See Other', 'Location': '/info?machine_id=%d' % machine.machine_id}, "You shouldn't see this message.") else: @@ -377,7 +380,7 @@ def modifyDict(username, state, fields): machine.owner = validate.owner update_acl = True if hasattr(validate, 'name'): - machine.name = name + machine.name = validate.name if hasattr(validate, 'admin') and validate.admin != machine.administrator: machine.administrator = validate.admin update_acl = True @@ -579,6 +582,10 @@ def unauthFront(_, _2, fields): """Information for unauth'd users.""" return templates.unauth(searchList=[{'simple' : True}]) +def throwError(_, __, ___): + """Throw an error, to test the error-tracing mechanisms.""" + raise CodeError("test of the emergency broadcast system") + mapping = dict(list=listVms, vnc=vnc, command=command, @@ -586,7 +593,8 @@ mapping = dict(list=listVms, info=info, create=create, help=helpHandler, - unauth=unauthFront) + unauth=unauthFront, + errortest=throwError) def printHeaders(headers): """Print a dictionary as HTTP headers.""" @@ -594,6 +602,20 @@ def printHeaders(headers): print '%s: %s' % (key, value) print +def send_error_mail(subject, body): + import subprocess + + to = 'xvm@mit.edu' + mail = """To: %s +From: root@xvm.mit.edu +Subject: %s + +%s +""" % (to, subject, body) + p = subprocess.Popen(['/usr/sbin/sendmail', to], stdin=subprocess.PIPE) + p.stdin.write(mail) + p.stdin.close() + p.wait() def getUser(environ): """Return the current user based on the SSL environment variables""" @@ -668,14 +690,23 @@ class App: return self.start('500 Internal Server Error', [('Content-Type', 'text/plain')]) import traceback - yield '''Uh-oh! We experienced an error.' -Please email xvm-dev@mit.edu with the contents of this page.' + send_error_mail('xvm error: %s' % (err,), + '%s\n' % (traceback.format_exc(),)) + yield '''Uh-oh! We experienced an error. +Sorry about that. We've gotten mail about it. + +Feel free to poke us at xvm@mit.edu if this bug is +consistently biting you and we don't seem to be fixing it. + +In case you're curious, the gory details are here. ---- %s ---- %s ----''' % (str(err), traceback.format_exc()) - self.start('200 OK', headers.items()) + status = headers.setdefault('Status', '200 OK') + del headers['Status'] + self.start(status, headers.items()) yield output_string if fields.has_key('timedebug'): yield '
%s
' % cgi.escape(str(checkpoint))