2 """Main CGI script for web interface"""
15 from StringIO import StringIO
17 def revertStandardError():
18 """Move stderr to stdout, and return the contents of the old stderr."""
20 if not isinstance(errio, StringIO):
22 sys.stderr = sys.stdout
27 """Revert stderr to stdout, and print the contents of stderr"""
28 if isinstance(sys.stderr, StringIO):
29 print revertStandardError()
31 if __name__ == '__main__':
33 atexit.register(printError)
36 from Cheetah.Template import Template
39 from webcommon import State
41 from getafsgroups import getAfsGroupMembers
42 from invirt import database
43 from invirt.database import Machine, CDROM, session, connect, MachineAccess, Type, Autoinstall
44 from invirt.config import structs as config
45 from invirt.common import InvalidInput, CodeError
48 if path.startswith('/'):
53 return path[:i], path[i:]
57 self.start_time = time.time()
60 def checkpoint(self, s):
61 self.checkpoints.append((s, time.time()))
64 return ('Timing info:\n%s\n' %
65 '\n'.join(['%s: %s' % (d, t - self.start_time) for
66 (d, t) in self.checkpoints]))
68 checkpoint = Checkpoint()
71 return "'" + string.replace('\\', '\\\\').replace("'", "\\'").replace('\n', '\\n') + "'"
74 """Return HTML code for a (?) link to a specified help topic"""
75 return ('<span class="helplink"><a href="help?' +
76 cgi.escape(urllib.urlencode(dict(subject=subj, simple='true')))
77 +'" target="_blank" ' +
78 'onclick="return helppopup(' + cgi.escape(jquote(subj)) + ')">(?)</a></span>')
80 def makeErrorPre(old, addition):
84 return old[:-6] + '\n----\n' + str(addition) + '</pre>'
86 return '<p>STDERR:</p><pre>' + str(addition) + '</pre>'
88 Template.database = database
89 Template.config = config
90 Template.helppopup = staticmethod(helppopup)
94 """Class to store a dictionary that will be converted to JSON"""
95 def __init__(self, **kws):
103 return simplejson.dumps(self.data)
105 def addError(self, text):
106 """Add stderr text to be displayed on the website."""
108 makeErrorPre(self.data.get('err'), text)
111 """Class to store default values for fields."""
120 def __init__(self, max_memory=None, max_disk=None, **kws):
121 if max_memory is not None:
122 self.memory = min(self.memory, max_memory)
123 if max_disk is not None:
124 self.max_disk = min(self.disk, max_disk)
126 setattr(self, key, kws[key])
130 DEFAULT_HEADERS = {'Content-Type': 'text/html'}
132 def invalidInput(op, username, fields, err, emsg):
133 """Print an error page when an InvalidInput exception occurs"""
134 d = dict(op=op, user=username, err_field=err.err_field,
135 err_value=str(err.err_value), stderr=emsg,
136 errorMessage=str(err))
137 return templates.invalid(searchList=[d])
140 """Does the machine with a given status list support VNC?"""
144 if l[0] == 'device' and l[1][0] == 'vfb':
146 return 'location' in d
149 def parseCreate(username, state, fields):
150 kws = dict([(kw, fields.getfirst(kw)) for kw in 'name description owner memory disksize vmtype cdrom autoinstall'.split()])
151 validate = validation.Validate(username, state, strict=True, **kws)
152 return dict(contact=username, name=validate.name, description=validate.description, memory=validate.memory,
153 disksize=validate.disksize, owner=validate.owner, machine_type=validate.vmtype,
154 cdrom=getattr(validate, 'cdrom', None),
155 autoinstall=getattr(validate, 'autoinstall', None))
157 def create(username, state, path, fields):
158 """Handler for create requests."""
160 parsed_fields = parseCreate(username, state, fields)
161 machine = controls.createVm(username, state, **parsed_fields)
162 except InvalidInput, err:
166 state.clear() #Changed global state
167 d = getListDict(username, state)
170 for field in fields.keys():
171 setattr(d['defaults'], field, fields.getfirst(field))
173 d['new_machine'] = parsed_fields['name']
174 return templates.list(searchList=[d])
177 def getListDict(username, state):
178 """Gets the list of local variables used by list.tmpl."""
179 checkpoint.checkpoint('Starting')
180 machines = state.machines
181 checkpoint.checkpoint('Got my machines')
184 xmlist = state.xmlist
185 checkpoint.checkpoint('Got uptimes')
186 can_clone = 'ice3' not in state.xmlist_raw
192 m.uptime = xmlist[m]['uptime']
193 if xmlist[m]['console']:
198 has_vnc[m] = "ParaVM"+helppopup("ParaVM Console")
199 max_memory = validation.maxMemory(username, state)
200 max_disk = validation.maxDisk(username)
201 checkpoint.checkpoint('Got max mem/disk')
202 defaults = Defaults(max_memory=max_memory,
206 checkpoint.checkpoint('Got defaults')
207 def sortkey(machine):
208 return (machine.owner != username, machine.owner, machine.name)
209 machines = sorted(machines, key=sortkey)
210 d = dict(user=username,
211 cant_add_vm=validation.cantAddVm(username, state),
212 max_memory=max_memory,
220 def listVms(username, state, path, fields):
221 """Handler for list requests."""
222 checkpoint.checkpoint('Getting list dict')
223 d = getListDict(username, state)
224 checkpoint.checkpoint('Got list dict')
225 return templates.list(searchList=[d])
227 def vnc(username, state, path, fields):
230 Note that due to same-domain restrictions, the applet connects to
231 the webserver, which needs to forward those requests to the xen
232 server. The Xen server runs another proxy that (1) authenticates
233 and (2) finds the correct port for the VM.
235 You might want iptables like:
237 -t nat -A PREROUTING -s ! 18.181.0.60 -i eth1 -p tcp -m tcp \
238 --dport 10003 -j DNAT --to-destination 18.181.0.60:10003
239 -t nat -A POSTROUTING -d 18.181.0.60 -o eth1 -p tcp -m tcp \
240 --dport 10003 -j SNAT --to-source 18.187.7.142
241 -A FORWARD -d 18.181.0.60 -i eth1 -o eth1 -p tcp -m tcp \
242 --dport 10003 -j ACCEPT
244 Remember to enable iptables!
245 echo 1 > /proc/sys/net/ipv4/ip_forward
247 machine = validation.Validate(username, state, machine_id=fields.getfirst('machine_id')).machine
249 token = controls.vnctoken(machine)
250 host = controls.listHost(machine)
252 port = 10003 + [h.hostname for h in config.hosts].index(host)
256 status = controls.statusInfo(machine)
257 has_vnc = hasVnc(status)
259 d = dict(user=username,
263 hostname=state.environ.get('SERVER_NAME', 'localhost'),
266 return templates.vnc(searchList=[d])
268 def getHostname(nic):
269 """Find the hostname associated with a NIC.
271 XXX this should be merged with the similar logic in DNS and DHCP.
273 if nic.hostname and '.' in nic.hostname:
276 return nic.machine.name + '.' + config.dns.domains[0]
281 def getNicInfo(data_dict, machine):
282 """Helper function for info, get data on nics for a machine.
284 Modifies data_dict to include the relevant data, and returns a list
285 of (key, name) pairs to display "name: data_dict[key]" to the user.
287 data_dict['num_nics'] = len(machine.nics)
288 nic_fields_template = [('nic%s_hostname', 'NIC %s Hostname'),
289 ('nic%s_mac', 'NIC %s MAC Addr'),
290 ('nic%s_ip', 'NIC %s IP'),
293 for i in range(len(machine.nics)):
294 nic_fields.extend([(x % i, y % i) for x, y in nic_fields_template])
296 data_dict['nic%s_hostname' % i] = getHostname(machine.nics[i])
297 data_dict['nic%s_mac' % i] = machine.nics[i].mac_addr
298 data_dict['nic%s_ip' % i] = machine.nics[i].ip
299 if len(machine.nics) == 1:
300 nic_fields = [(x, y.replace('NIC 0 ', '')) for x, y in nic_fields]
303 def getDiskInfo(data_dict, machine):
304 """Helper function for info, get data on disks for a machine.
306 Modifies data_dict to include the relevant data, and returns a list
307 of (key, name) pairs to display "name: data_dict[key]" to the user.
309 data_dict['num_disks'] = len(machine.disks)
310 disk_fields_template = [('%s_size', '%s size')]
312 for disk in machine.disks:
313 name = disk.guest_device_name
314 disk_fields.extend([(x % name, y % name) for x, y in
315 disk_fields_template])
316 data_dict['%s_size' % name] = "%0.1f GiB" % (disk.size / 1024.)
319 def command(username, state, path, fields):
320 """Handler for running commands like boot and delete on a VM."""
321 back = fields.getfirst('back')
323 d = controls.commandResult(username, state, fields)
324 if d['command'] == 'Delete VM':
326 except InvalidInput, err:
329 print >> sys.stderr, err
334 return templates.command(searchList=[d])
336 state.clear() #Changed global state
337 d = getListDict(username, state)
339 return templates.list(searchList=[d])
341 machine = validation.Validate(username, state, machine_id=fields.getfirst('machine_id')).machine
342 return ({'Status': '303 See Other',
343 'Location': 'info?machine_id=%d' % machine.machine_id},
344 "You shouldn't see this message.")
346 raise InvalidInput('back', back, 'Not a known back page.')
348 def modifyDict(username, state, fields):
349 """Modify a machine as specified by CGI arguments.
351 Return a list of local variables for modify.tmpl.
356 kws = dict([(kw, fields.getfirst(kw)) for kw in 'machine_id owner admin contact name description memory vmtype disksize'.split()])
357 validate = validation.Validate(username, state, **kws)
358 machine = validate.machine
359 oldname = machine.name
361 if hasattr(validate, 'memory'):
362 machine.memory = validate.memory
364 if hasattr(validate, 'vmtype'):
365 machine.type = validate.vmtype
367 if hasattr(validate, 'disksize'):
368 disksize = validate.disksize
369 disk = machine.disks[0]
370 if disk.size != disksize:
371 olddisk[disk.guest_device_name] = disksize
373 session.save_or_update(disk)
376 if hasattr(validate, 'owner') and validate.owner != machine.owner:
377 machine.owner = validate.owner
379 if hasattr(validate, 'name'):
380 machine.name = validate.name
381 if hasattr(validate, 'description'):
382 machine.description = validate.description
383 if hasattr(validate, 'admin') and validate.admin != machine.administrator:
384 machine.administrator = validate.admin
386 if hasattr(validate, 'contact'):
387 machine.contact = validate.contact
389 session.save_or_update(machine)
391 cache_acls.refreshMachine(machine)
396 for diskname in olddisk:
397 controls.resizeDisk(oldname, diskname, str(olddisk[diskname]))
398 if hasattr(validate, 'name'):
399 controls.renameMachine(machine, oldname, validate.name)
400 return dict(user=username,
404 def modify(username, state, path, fields):
405 """Handler for modifying attributes of a machine."""
407 modify_dict = modifyDict(username, state, fields)
408 except InvalidInput, err:
410 machine = validation.Validate(username, state, machine_id=fields.getfirst('machine_id')).machine
412 machine = modify_dict['machine']
415 info_dict = infoDict(username, state, machine)
416 info_dict['err'] = err
418 for field in fields.keys():
419 setattr(info_dict['defaults'], field, fields.getfirst(field))
420 info_dict['result'] = result
421 return templates.info(searchList=[info_dict])
424 def helpHandler(username, state, path, fields):
425 """Handler for help messages."""
426 simple = fields.getfirst('simple')
427 subjects = fields.getlist('subject')
431 The autoinstaller builds a minimal Debian or Ubuntu system to run as a
432 ParaVM. You can access the resulting system by logging into the <a
433 href="help?simple=true&subject=ParaVM+Console">serial console server</a>
434 with your Kerberos tickets; there is no root password so sshd will
437 <p>Under the covers, the autoinstaller uses our own patched version of
438 xen-create-image, which is a tool based on debootstrap. If you log
439 into the serial console while the install is running, you can watch
442 'ParaVM Console': """
443 ParaVM machines do not support local console access over VNC. To
444 access the serial console of these machines, you can SSH with Kerberos
445 to %s, using the name of the machine as your
446 username.""" % config.console.hostname,
448 HVM machines use the virtualization features of the processor, while
449 ParaVM machines use Xen's emulation of virtualization features. You
450 want an HVM virtualized machine.""",
452 Don't ask us! We're as mystified as you are.""",
454 The owner field is used to determine <a
455 href="help?subject=Quotas">quotas</a>. It must be the name of a
456 locker that you are an AFS administrator of. In particular, you or an
457 AFS group you are a member of must have AFS rlidwka bits on the
458 locker. You can check who administers the LOCKER locker using the
459 commands 'attach LOCKER; fs la /mit/LOCKER' on Athena.) See also <a
460 href="help?subject=Administrator">administrator</a>.""",
462 The administrator field determines who can access the console and
463 power on and off the machine. This can be either a user or a moira
466 Quotas are determined on a per-locker basis. Each locker may have a
467 maximum of 512 megabytes of active ram, 50 gigabytes of disk, and 4
470 <strong>Framebuffer:</strong> At a Linux boot prompt in your VM, try
471 setting <tt>fb=false</tt> to disable the framebuffer. If you don't,
472 your machine will run just fine, but the applet's display of the
473 console will suffer artifacts.
476 <strong>Windows Vista:</strong> The Vista image is licensed for all MIT students and will automatically activate off the network; see <a href="/static/msca-email.txt">the licensing confirmation e-mail</a> for details. The installer req uires 512 MB RAM and at least 7.5 GB disk space (15 GB or more recommended).<br>
477 <strong>Windows XP:</strong> This is the volume license CD image. You will need your own volume license key to complete the install. We do not have these available for the general MIT community; ask your department if they have one.
482 subjects = sorted(help_mapping.keys())
484 d = dict(user=username,
487 mapping=help_mapping)
489 return templates.help(searchList=[d])
492 def badOperation(u, s, p, e):
493 """Function called when accessing an unknown URI."""
494 return ({'Status': '404 Not Found'}, 'Invalid operation.')
496 def infoDict(username, state, machine):
497 """Get the variables used by info.tmpl."""
498 status = controls.statusInfo(machine)
499 checkpoint.checkpoint('Getting status info')
500 has_vnc = hasVnc(status)
502 main_status = dict(name=machine.name,
503 memory=str(machine.memory))
507 main_status = dict(status[1:])
508 main_status['host'] = controls.listHost(machine)
509 start_time = float(main_status.get('start_time', 0))
510 uptime = datetime.timedelta(seconds=int(time.time()-start_time))
511 cpu_time_float = float(main_status.get('cpu_time', 0))
512 cputime = datetime.timedelta(seconds=int(cpu_time_float))
513 checkpoint.checkpoint('Status')
514 display_fields = """name uptime memory state cpu_weight on_reboot
515 on_poweroff on_crash on_xend_start on_xend_stop bootloader""".split()
516 display_fields = [('name', 'Name'),
517 ('description', 'Description'),
519 ('administrator', 'Administrator'),
520 ('contact', 'Contact'),
523 ('uptime', 'uptime'),
524 ('cputime', 'CPU usage'),
525 ('host', 'Hosted on'),
528 ('state', 'state (xen format)'),
529 ('cpu_weight', 'CPU weight'+helppopup('CPU Weight')),
530 ('on_reboot', 'Action on VM reboot'),
531 ('on_poweroff', 'Action on VM poweroff'),
532 ('on_crash', 'Action on VM crash'),
533 ('on_xend_start', 'Action on Xen start'),
534 ('on_xend_stop', 'Action on Xen stop'),
535 ('bootloader', 'Bootloader options'),
539 machine_info['name'] = machine.name
540 machine_info['description'] = machine.description
541 machine_info['type'] = machine.type.hvm and 'HVM' or 'ParaVM'
542 machine_info['owner'] = machine.owner
543 machine_info['administrator'] = machine.administrator
544 machine_info['contact'] = machine.contact
546 nic_fields = getNicInfo(machine_info, machine)
547 nic_point = display_fields.index('NIC_INFO')
548 display_fields = (display_fields[:nic_point] + nic_fields +
549 display_fields[nic_point+1:])
551 disk_fields = getDiskInfo(machine_info, machine)
552 disk_point = display_fields.index('DISK_INFO')
553 display_fields = (display_fields[:disk_point] + disk_fields +
554 display_fields[disk_point+1:])
556 main_status['memory'] += ' MiB'
557 for field, disp in display_fields:
558 if field in ('uptime', 'cputime') and locals()[field] is not None:
559 fields.append((disp, locals()[field]))
560 elif field in machine_info:
561 fields.append((disp, machine_info[field]))
562 elif field in main_status:
563 fields.append((disp, main_status[field]))
566 #fields.append((disp, None))
568 checkpoint.checkpoint('Got fields')
571 max_mem = validation.maxMemory(machine.owner, state, machine, False)
572 checkpoint.checkpoint('Got mem')
573 max_disk = validation.maxDisk(machine.owner, machine)
574 defaults = Defaults()
575 for name in 'machine_id name description administrator owner memory contact'.split():
576 setattr(defaults, name, getattr(machine, name))
577 defaults.type = machine.type.type_id
578 defaults.disk = "%0.2f" % (machine.disks[0].size/1024.)
579 checkpoint.checkpoint('Got defaults')
580 d = dict(user=username,
581 on=status is not None,
589 owner_help=helppopup("Owner"),
593 def info(username, state, path, fields):
594 """Handler for info on a single VM."""
595 machine = validation.Validate(username, state, machine_id=fields.getfirst('machine_id')).machine
596 d = infoDict(username, state, machine)
597 checkpoint.checkpoint('Got infodict')
598 return templates.info(searchList=[d])
600 def unauthFront(_, _2, _3, fields):
601 """Information for unauth'd users."""
602 return templates.unauth(searchList=[{'simple' : True}])
604 def admin(username, state, path, fields):
606 return ({'Status': '303 See Other',
607 'Location': 'admin/'},
608 "You shouldn't see this message.")
609 if not username in getAfsGroupMembers(config.web.adminacl, 'athena.mit.edu'):
610 raise InvalidInput('username', username,
611 'Not in admin group %s.' % config.web.adminacl)
612 newstate = State(username, isadmin=True)
613 newstate.environ = state.environ
614 return handler(username, newstate, path, fields)
616 def throwError(_, __, ___, ____):
617 """Throw an error, to test the error-tracing mechanisms."""
618 raise RuntimeError("test of the emergency broadcast system")
620 mapping = dict(list=listVms,
630 errortest=throwError)
632 def printHeaders(headers):
633 """Print a dictionary as HTTP headers."""
634 for key, value in headers.iteritems():
635 print '%s: %s' % (key, value)
638 def send_error_mail(subject, body):
641 to = config.web.errormail
647 """ % (to, config.web.hostname, subject, body)
648 p = subprocess.Popen(['/usr/sbin/sendmail', '-f', to, to],
649 stdin=subprocess.PIPE)
654 def show_error(op, username, fields, err, emsg, traceback):
655 """Print an error page when an exception occurs"""
656 d = dict(op=op, user=username, fields=fields,
657 errorMessage=str(err), stderr=emsg, traceback=traceback)
658 details = templates.error_raw(searchList=[d])
659 exclude = config.web.errormail_exclude
660 if username not in exclude and '*' not in exclude:
661 send_error_mail('xvm error on %s for %s: %s' % (op, username, err),
663 d['details'] = details
664 return templates.error(searchList=[d])
666 def getUser(environ):
667 """Return the current user based on the SSL environment variables"""
668 user = environ.get('REMOTE_USER')
672 if environ.get('AUTH_TYPE') == 'Negotiate':
673 # Convert the krb5 principal into a krb4 username
674 if not user.endswith('@%s' % config.authn[0].realm):
677 return user.split('@')[0].replace('/', '.')
681 def handler(username, state, path, fields):
682 operation, path = pathSplit(path)
685 print 'Starting', operation
686 fun = mapping.get(operation, badOperation)
687 return fun(username, state, path, fields)
690 def __init__(self, environ, start_response):
691 self.environ = environ
692 self.start = start_response
694 self.username = getUser(environ)
695 self.state = State(self.username)
696 self.state.environ = environ
701 start_time = time.time()
702 database.clear_cache()
703 sys.stderr = StringIO()
704 fields = cgi.FieldStorage(fp=self.environ['wsgi.input'], environ=self.environ)
705 operation = self.environ.get('PATH_INFO', '')
707 self.start("301 Moved Permanently", [('Location', './')])
709 if self.username is None:
713 checkpoint.checkpoint('Before')
714 output = handler(self.username, self.state, operation, fields)
715 checkpoint.checkpoint('After')
717 headers = dict(DEFAULT_HEADERS)
718 if isinstance(output, tuple):
719 new_headers, output = output
720 headers.update(new_headers)
721 e = revertStandardError()
723 if hasattr(output, 'addError'):
726 # This only happens on redirects, so it'd be a pain to get
727 # the message to the user. Maybe in the response is useful.
728 output = output + '\n\nstderr:\n' + e
729 output_string = str(output)
730 checkpoint.checkpoint('output as a string')
731 except Exception, err:
732 if not fields.has_key('js'):
733 if isinstance(err, InvalidInput):
734 self.start('200 OK', [('Content-Type', 'text/html')])
735 e = revertStandardError()
736 yield str(invalidInput(operation, self.username, fields,
740 self.start('500 Internal Server Error',
741 [('Content-Type', 'text/html')])
742 e = revertStandardError()
743 s = show_error(operation, self.username, fields,
744 err, e, traceback.format_exc())
747 status = headers.setdefault('Status', '200 OK')
748 del headers['Status']
749 self.start(status, headers.items())
751 if fields.has_key('timedebug'):
752 yield '<pre>%s</pre>' % cgi.escape(str(checkpoint))
759 from flup.server.fcgi_fork import WSGIServer
760 WSGIServer(constructor()).run()
762 if __name__ == '__main__':