[101] | 1 | # -*- mode: python; -*- |
---|
[829] | 2 | from invirt.database import models, connect |
---|
[842] | 3 | from invirt.config import structs as config |
---|
[109] | 4 | import re |
---|
[223] | 5 | import tempfile |
---|
| 6 | from subprocess import call |
---|
[24] | 7 | |
---|
[829] | 8 | connect() |
---|
[146] | 9 | prefix = "d_" |
---|
[24] | 10 | |
---|
[109] | 11 | # 'machine_name', and optionally 'cdrom_image', should get passed in |
---|
| 12 | # from the xm create call |
---|
| 13 | |
---|
| 14 | def check(b): |
---|
| 15 | if not b: |
---|
[117] | 16 | import sys |
---|
| 17 | sys.exit(1) |
---|
[109] | 18 | |
---|
[85] | 19 | machine = models.Machine.get_by(name=machine_name) |
---|
[109] | 20 | check(machine is not None) |
---|
[762] | 21 | machine_type = models.Type.get_by(type_id=machine.type_id) |
---|
[24] | 22 | |
---|
| 23 | memory = machine.memory |
---|
| 24 | maxmem = memory |
---|
[109] | 25 | check(re.match('^[A-Za-z0-9][A-Za-z0-9._-]*$', machine.name)) |
---|
[146] | 26 | name = prefix + machine.name |
---|
[109] | 27 | check(re.match('^[0-9a-f-]+$', machine.uuid)) |
---|
[24] | 28 | uuid = machine.uuid |
---|
| 29 | |
---|
| 30 | vcpus = machine.cpus |
---|
| 31 | |
---|
[65] | 32 | diskioemu = "" |
---|
| 33 | viftype = "" |
---|
[24] | 34 | |
---|
[762] | 35 | pae = machine_type.pae |
---|
| 36 | acpi = machine_type.acpi |
---|
| 37 | apic = machine_type.apic |
---|
| 38 | |
---|
| 39 | vif = [] |
---|
| 40 | |
---|
| 41 | disk = [] |
---|
| 42 | |
---|
| 43 | if machine_type.hvm: |
---|
| 44 | codepath = 'hvm' |
---|
| 45 | else: |
---|
| 46 | codepath = 'paravm' |
---|
| 47 | |
---|
| 48 | if 'mirror' in locals(): #Installer |
---|
[828] | 49 | disk.append('phy:/dev/xenvg/d_foobar3_hda,hdb,r') |
---|
[762] | 50 | |
---|
| 51 | kernel = '/boot/vmlinuz-2.6.24-19-xen' #From hardy |
---|
| 52 | ramdisk = '/boot/initrd.img-2.6.24-19-xen' |
---|
| 53 | |
---|
| 54 | if not machine.nics: |
---|
| 55 | raise RuntimeError('You must have a nic to autoinstall') |
---|
| 56 | n = machine.nics[0] |
---|
| 57 | extra = 'ro noresume' |
---|
[842] | 58 | extra += (' ip=%s::%s:%s:%s:eth0:off' |
---|
| 59 | % (n.ip, config.network.gateway, config.network.netmask, machine.name)) |
---|
[762] | 60 | extra += ' mirror=%s dist=%s' % (mirror, dist) |
---|
| 61 | extra += ' imagesize=%s' % imagesize |
---|
[828] | 62 | if 'noinstall' in locals(): |
---|
| 63 | extra += ' noinstall' |
---|
[762] | 64 | root = '/dev/hdb1' |
---|
| 65 | codepath = None |
---|
| 66 | elif 'cdrom_image' in locals(): |
---|
| 67 | check(re.match('^[A-Za-z0-9][A-Za-z0-9_.-]*$', cdrom_image)) |
---|
| 68 | disk.append('file:/srv/images/' + cdrom_image + '.iso,hdc:cdrom,r') |
---|
| 69 | boot = 'd' |
---|
| 70 | codepath = 'hvm' |
---|
| 71 | |
---|
| 72 | if codepath == 'hvm': |
---|
[65] | 73 | ioemu = "ioemu:" |
---|
[101] | 74 | viftype = "type=ioemu, " |
---|
[65] | 75 | kernel = 'hvmloader' |
---|
| 76 | builder = 'hvm' |
---|
| 77 | vnc = 1 |
---|
[104] | 78 | vncpasswd = 'moocow' |
---|
| 79 | device_model = '/usr/sbin/qemu-dm-sipb' |
---|
[762] | 80 | serial = "pty" |
---|
| 81 | elif codepath == 'paravm': |
---|
| 82 | bootloader = '/usr/lib/xen-default/bin/pygrub' |
---|
[65] | 83 | |
---|
| 84 | |
---|
| 85 | for n in machine.nics: |
---|
[109] | 86 | check(re.match('^[0-9a-fA-F:]+$', n.mac_addr) and re.match('^[0-9.]*$', n.ip)) |
---|
[101] | 87 | d = '%smac=%s, ip=%s, bridge=xenbr0, script=vif-sipbroute' % (viftype, n.mac_addr, n.ip) |
---|
[84] | 88 | vif.append(d) |
---|
[65] | 89 | |
---|
[24] | 90 | for d in machine.disks: |
---|
[109] | 91 | check(re.match('^[A-Za-z0-9]+$', d.guest_device_name)) |
---|
[146] | 92 | device = '/dev/xenvg/' + prefix + machine.name + '_' + d.guest_device_name |
---|
[65] | 93 | dspec = 'phy:%s,%s%s,w' % (device, diskioemu, d.guest_device_name) |
---|
[24] | 94 | disk.append(dspec) |
---|
| 95 | |
---|
[433] | 96 | usbdevice = 'tablet' |
---|
| 97 | |
---|
[24] | 98 | on_poweroff = 'destroy' |
---|
| 99 | on_reboot = 'restart' |
---|
[109] | 100 | on_crash = 'destroy' |
---|
| 101 | if machine.autorestart: |
---|
| 102 | on_crash = 'restart' |
---|