vm.py 8.66 KB
Newer Older
tarokkk committed
1 2 3 4 5 6 7
import lxml.etree as ET

# VM Instance class


class VMInstance:
    name = None
tarokkk committed
8 9 10
    arch = None
    vm_type = None
    os_boot = None
tarokkk committed
11 12 13 14 15
    vcpu = None
    cpu_share = None
    memory_max = None
    network_list = list()
    disk_list = list()
16
    graphics = dict
Guba Sándor committed
17
    raw_data = None
tarokkk committed
18 19 20 21 22

    def __init__(self,
                 name,
                 vcpu,
                 memory_max,
23 24
                 memory=None,
                 cpu_share=100,
tarokkk committed
25
                 arch="x86_64",
26
                 boot_menu=False,
tarokkk committed
27 28 29
                 vm_type="kvm",
                 network_list=None,
                 disk_list=None,
30
                 graphics=None,
Guba Sándor committed
31
                 acpi=True,
user committed
32 33 34
                 raw_data=None,
                 seclabel_type="dynamic",
                 seclabel_mode="apparmor"):
tarokkk committed
35
        '''Default Virtual Machine constructor
36 37 38
        name    - unique name for the instance
        vcpu    - nubmer of processors
        memory_max  - maximum virtual memory (actual memory maybe add late)
39
        memory
40 41 42 43 44 45 46 47
        cpu_share   - KVM process priority (0-100)
        arch        - libvirt arch parameter default x86_64
        os_boot     - boot device default hd
        vm_type     - hypervisor type default kvm
        network_list    - VMNetwork list
        disk_list   - VMDIsk list
        graphics    - Dict that keys are: type, listen, port, passwd
        acpi        - True/False to enable acpi
user committed
48 49
        seclabel_type - libvirt security label type
        seclabel_mode - libvirt security mode (selinux, apparmor)
tarokkk committed
50 51 52 53 54
        '''
        self.name = name
        self.vcpu = vcpu
        self.cpu_share = cpu_share
        self.memory_max = memory_max
55 56 57 58
        if memory is None:
            self.memory = memory_max
        else:
            self.memory = memory
tarokkk committed
59
        self.arch = arch
60
        self.boot_menu = boot_menu
tarokkk committed
61
        self.vm_type = vm_type
tarokkk committed
62 63
        self.network_list = network_list
        self.disk_list = disk_list
64 65
        self.graphics = graphics
        self.acpi = acpi
Guba Sándor committed
66
        self.raw_data = raw_data
user committed
67 68
        self.seclabel_type = seclabel_type
        self.seclabel_mode = seclabel_mode
tarokkk committed
69

70 71 72 73 74 75
    @classmethod
    def deserialize(cls, desc):
        desc['disk_list'] = [VMDisk.deserialize(d) for d in desc['disk_list']]
        desc['network_list'] = [VMNetwork.deserialize(n) for n in desc['network_list']]
        return cls(**desc)

tarokkk committed
76 77 78 79 80 81 82 83 84 85 86 87
    def build_xml(self):
        '''Return the root Element Tree object
        '''
        ET.register_namespace(
            'qemu', 'http://libvirt.org/schemas/domain/qemu/1.0')
        xml_top = ET.Element(
            'domain',
            attrib={
                'type': self.vm_type
            })
        # Basic virtual machine paramaters
        ET.SubElement(xml_top, 'name').text = self.name
88 89 90
        ET.SubElement(xml_top, 'vcpu').text = str(self.vcpu)
        ET.SubElement(xml_top, 'memory').text = str(self.memory_max)
        ET.SubElement(xml_top, 'currentMemory').text = str(self.memory)
tarokkk committed
91 92
        # Cpu tune
        cputune = ET.SubElement(xml_top, 'cputune')
93
        ET.SubElement(cputune, 'shares').text = str(self.cpu_share)
tarokkk committed
94 95 96
        # Os specific options
        os = ET.SubElement(xml_top, 'os')
        ET.SubElement(os, 'type', attrib={'arch': self.arch}).text = "hvm"
97 98
        ET.SubElement(os, 'bootmenu', attrib={
                      'enable': "yes" if self.boot_menu else "no"})
tarokkk committed
99 100 101 102 103 104 105
        # Devices
        devices = ET.SubElement(xml_top, 'devices')
        ET.SubElement(devices, 'emulator').text = '/usr/bin/kvm'
        for disk in self.disk_list:
            devices.append(disk.build_xml())
        for network in self.network_list:
            devices.append(network.build_xml())
106 107 108 109 110 111 112 113 114 115
        # Console/graphics section
        if self.graphics is not None:
            ET.SubElement(devices,
                          'graphics',
                          attrib={
                              'type': self.graphics['type'],
                              'listen': self.graphics['listen'],
                              'port': self.graphics['port'],
                              'passwd': self.graphics['passwd'],
                          })
Guba Sándor committed
116
        # Features (TODO: features as list)
117 118 119
        features = ET.SubElement(xml_top, 'features')
        if self.acpi:
            ET.SubElement(features, 'acpi')
Guba Sándor committed
120 121 122
        # Building raw data into xml
        if self.raw_data is not None:
            xml_top.append(ET.fromstring(self.raw_data))
user committed
123 124 125 126 127
        # Security label
        ET.SubElement(xml_top, 'seclabel', attrib={
            'type': self.seclabel_type,
            'mode': self.seclabel_mode
        })
tarokkk committed
128 129 130 131 132 133 134 135
        return xml_top

    def dump_xml(self):
        return ET.tostring(self.build_xml(),
                           encoding='utf8',
                           method='xml',
                           pretty_print=True)

tarokkk committed
136 137

class VMDisk:
tarokkk committed
138

tarokkk committed
139 140 141 142 143 144 145 146 147
    '''Virtual MAchine disk representing class
    '''
    name = None
    source = None
    disk_type = None
    disk_device = None
    driver_name = None
    driver_type = None
    driver_cache = None
tarokkk committed
148
    target_device = None
tarokkk committed
149 150 151 152 153 154 155 156

    def __init__(self,
                 name,
                 source,
                 disk_type="file",
                 disk_device="disk",
                 driver_name="qemu",
                 driver_type="qcow2",
user committed
157
                 driver_cache="none",
158
                 target_device="vda"):
tarokkk committed
159 160 161 162 163 164 165
        self.name = name
        self.source = source
        self.disk_type = disk_type
        self.disk_device = disk_device
        self.driver_name = driver_name
        self.driver_type = driver_type
        self.driver_cache = driver_cache
tarokkk committed
166
        self.target_device = target_device
tarokkk committed
167

168 169 170 171
    @classmethod
    def deserialize(cls, desc):
        return cls(**desc)

172
    def build_xml(self):
tarokkk committed
173 174 175 176 177
        xml_top = ET.Element('disk',
                             attrib={'type': self.disk_type,
                                     'device': self.disk_device})
        ET.SubElement(xml_top, 'source',
                      attrib={self.disk_type: self.source})
tarokkk committed
178 179 180 181 182 183 184 185
        ET.SubElement(xml_top, 'target',
                      attrib={'dev': self.target_device})
        ET.SubElement(xml_top, 'driver',
                      attrib={
                          'name': self.driver_name,
                          'type': self.driver_type,
                          'cache': self.driver_cache})
        return xml_top
tarokkk committed
186

187 188 189 190 191 192
    def dump_xml(self):
        return ET.tostring(self.build_xml(),
                           encoding='utf8',
                           method='xml',
                           pretty_print=True)

tarokkk committed
193 194

class VMNetwork:
195

tarokkk committed
196 197
    ''' Virtual Machine network representing class
    name            -- network device name
tarokkk committed
198
    bridge          -- bridg for the port
tarokkk committed
199
    mac             -- the MAC address of the quest interface
200 201
    ipv4            -- the IPv4 address of virtual machine (Flow control)
    ipv6            -- the IPv6 address of virtual machine (Flow controlo)
tarokkk committed
202
    vlan            -- Port VLAN configuration
tarokkk committed
203 204 205 206
    network_type    -- need to be "ethernet" by default
    model           -- available models in libvirt
    QoS             -- CIRCLE QoS class?
    comment         -- Any comment
Guba Sándor committed
207
    managed         -- Apply managed flow rules for spoofing prevent
tarokkk committed
208 209 210 211
    script          -- Executable network script /bin/true by default
    '''
    # Class attributes
    name = None
tarokkk committed
212
    bridge = None
tarokkk committed
213 214 215 216 217 218
    network_type = None
    mac = None
    model = None
    QoS = None
    script_exec = '/bin/true'
    comment = None
tarokkk committed
219
    vlan = 0
220 221
    ipv4 = None
    ipv6 = None
Guba Sándor committed
222
    managed = False
tarokkk committed
223 224 225 226

    def __init__(self,
                 name,
                 mac,
227
                 bridge="cloud",
228 229
                 ipv4=None,
                 ipv6=None,
tarokkk committed
230 231
                 network_type='ethernet',
                 model='virtio',
tarokkk committed
232
                 QoS=None,
Guba Sándor committed
233 234
                 vlan=0,
                 managed=False):
tarokkk committed
235
        self.name = name
tarokkk committed
236
        self.bridge = bridge
tarokkk committed
237 238
        self.network_type = network_type
        self.mac = mac
239 240
        self.ipv4 = ipv4
        self.ipv6 = ipv6
tarokkk committed
241 242
        self.model = model
        self.QoS = QoS
tarokkk committed
243
        self.vlan = vlan
Guba Sándor committed
244
        self.managed = managed
tarokkk committed
245

246 247 248 249
    @classmethod
    def deserialize(cls, desc):
        return cls(**desc)

tarokkk committed
250
    # XML dump
251
    def build_xml(self):
tarokkk committed
252 253 254 255 256
        xml_top = ET.Element('interface', attrib={'type': self.network_type})
        ET.SubElement(xml_top, 'target', attrib={'dev': self.name})
        ET.SubElement(xml_top, 'mac', attrib={'address': self.mac})
        ET.SubElement(xml_top, 'model', attrib={'type': self.model})
        ET.SubElement(xml_top, 'script', attrib={'path': self.script_exec})
257
        ET.SubElement(xml_top, 'rom', attrib={'bar': 'off'})
tarokkk committed
258
        return xml_top
259 260 261 262

    def dump_xml(self):
        return ET.tostring(self.build_xml(), encoding='utf8',
                           method='xml', pretty_print=True)