vm.py 10.4 KB
Newer Older
tarokkk committed
1 2
import lxml.etree as ET

Bach Dániel committed
3 4 5 6
from os import getenv

NATIVE_OVS = getenv('NATIVE_OVS') == 'True'

tarokkk committed
7 8 9 10 11
# VM Instance class


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

    def __init__(self,
                 name,
                 vcpu,
Őry Máté committed
26
                 memory_max,
27
                 memory=None,
Guba Sándor committed
28
                 emulator='/usr/bin/kvm',
29
                 cpu_share=100,
tarokkk committed
30
                 arch="x86_64",
31
                 boot_menu=False,
32
                 vm_type="test",
tarokkk committed
33 34
                 network_list=None,
                 disk_list=None,
35
                 graphics=None,
Guba Sándor committed
36
                 acpi=True,
37
                 raw_data="",
Guba Sándor committed
38
                 boot_token="",
user committed
39 40
                 seclabel_type="dynamic",
                 seclabel_mode="apparmor"):
tarokkk committed
41
        '''Default Virtual Machine constructor
42 43 44
        name    - unique name for the instance
        vcpu    - nubmer of processors
        memory_max  - maximum virtual memory (actual memory maybe add late)
45
        memory
46 47 48 49 50 51 52 53
        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
54 55
        seclabel_type - libvirt security label type
        seclabel_mode - libvirt security mode (selinux, apparmor)
tarokkk committed
56 57
        '''
        self.name = name
58
        self.emulator = emulator
tarokkk committed
59 60 61
        self.vcpu = vcpu
        self.cpu_share = cpu_share
        self.memory_max = memory_max
62 63 64 65
        if memory is None:
            self.memory = memory_max
        else:
            self.memory = memory
tarokkk committed
66
        self.arch = arch
67
        self.boot_menu = boot_menu
tarokkk committed
68
        self.vm_type = vm_type
tarokkk committed
69 70
        self.network_list = network_list
        self.disk_list = disk_list
71 72
        self.graphics = graphics
        self.acpi = acpi
Guba Sándor committed
73
        self.raw_data = raw_data
user committed
74 75
        self.seclabel_type = seclabel_type
        self.seclabel_mode = seclabel_mode
Guba Sándor committed
76
        self.boot_token = boot_token
tarokkk committed
77

78 79 80
    @classmethod
    def deserialize(cls, desc):
        desc['disk_list'] = [VMDisk.deserialize(d) for d in desc['disk_list']]
81 82
        desc['network_list'] = [VMNetwork.deserialize(
            n) for n in desc['network_list']]
83 84
        return cls(**desc)

tarokkk committed
85 86 87 88 89 90 91 92 93 94 95 96
    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
97 98 99
        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
100 101
        # Cpu tune
        cputune = ET.SubElement(xml_top, 'cputune')
102
        ET.SubElement(cputune, 'shares').text = str(self.cpu_share)
tarokkk committed
103 104 105
        # Os specific options
        os = ET.SubElement(xml_top, 'os')
        ET.SubElement(os, 'type', attrib={'arch': self.arch}).text = "hvm"
106 107
        ET.SubElement(os, 'bootmenu', attrib={
                      'enable': "yes" if self.boot_menu else "no"})
tarokkk committed
108 109
        # Devices
        devices = ET.SubElement(xml_top, 'devices')
110
        ET.SubElement(devices, 'emulator').text = self.emulator
tarokkk committed
111 112 113 114
        for disk in self.disk_list:
            devices.append(disk.build_xml())
        for network in self.network_list:
            devices.append(network.build_xml())
Guba Sándor committed
115 116 117 118 119 120 121 122 123 124
        # Serial console
        serial = ET.SubElement(devices,
                               'console',
                               attrib={'type': 'unix'})
        ET.SubElement(serial,
                      'target',
                      attrib={'port': '0'})
        ET.SubElement(serial,
                      'source',
                      attrib={'mode': 'bind',
125 126
                              'path': '/var/lib/libvirt/serial/%s'
                              % self.name})
127 128 129 130 131 132 133
        # Console/graphics section
        if self.graphics is not None:
            ET.SubElement(devices,
                          'graphics',
                          attrib={
                              'type': self.graphics['type'],
                              'listen': self.graphics['listen'],
134
                              'port': str(self.graphics['port']),
Őry Máté committed
135 136
                              # 'passwd': self.graphics['passwd'],
                              # TODO: Add this as option
137
                          })
Guba Sándor committed
138 139 140 141
            ET.SubElement(devices,
                          'input',
                          attrib={
                              'type': 'tablet',
Őry Máté committed
142
                              'bus': 'usb', })
Guba Sándor committed
143
        # Features (TODO: features as list)
144 145 146
        features = ET.SubElement(xml_top, 'features')
        if self.acpi:
            ET.SubElement(features, 'acpi')
Guba Sándor committed
147
        # Building raw data into xml
148
        if self.raw_data:
Guba Sándor committed
149
            xml_top.append(ET.fromstring(self.raw_data))
user committed
150 151 152 153 154
        # Security label
        ET.SubElement(xml_top, 'seclabel', attrib={
            'type': self.seclabel_type,
            'mode': self.seclabel_mode
        })
tarokkk committed
155 156 157 158 159 160 161 162
        return xml_top

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

tarokkk committed
163 164

class VMDisk:
tarokkk committed
165

tarokkk committed
166 167 168 169 170 171 172 173 174
    '''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
175
    target_device = None
tarokkk committed
176 177 178 179 180 181 182

    def __init__(self,
                 source,
                 disk_type="file",
                 disk_device="disk",
                 driver_name="qemu",
                 driver_type="qcow2",
user committed
183
                 driver_cache="none",
184
                 target_device="vda"):
tarokkk committed
185 186 187 188 189 190
        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
191
        self.target_device = target_device
tarokkk committed
192

193 194 195 196
    @classmethod
    def deserialize(cls, desc):
        return cls(**desc)

197
    def build_xml(self):
tarokkk committed
198 199 200 201 202
        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
203 204 205 206 207 208 209 210
        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
211

212 213 214 215 216 217
    def dump_xml(self):
        return ET.tostring(self.build_xml(),
                           encoding='utf8',
                           method='xml',
                           pretty_print=True)

tarokkk committed
218 219

class VMNetwork:
220

tarokkk committed
221 222
    ''' Virtual Machine network representing class
    name            -- network device name
tarokkk committed
223
    bridge          -- bridg for the port
tarokkk committed
224
    mac             -- the MAC address of the quest interface
225 226
    ipv4            -- the IPv4 address of virtual machine (Flow control)
    ipv6            -- the IPv6 address of virtual machine (Flow controlo)
tarokkk committed
227
    vlan            -- Port VLAN configuration
tarokkk committed
228 229 230 231
    network_type    -- need to be "ethernet" by default
    model           -- available models in libvirt
    QoS             -- CIRCLE QoS class?
    comment         -- Any comment
Guba Sándor committed
232
    managed         -- Apply managed flow rules for spoofing prevent
tarokkk committed
233 234 235 236
    script          -- Executable network script /bin/true by default
    '''
    # Class attributes
    name = None
tarokkk committed
237
    bridge = None
tarokkk committed
238 239 240 241 242 243
    network_type = None
    mac = None
    model = None
    QoS = None
    script_exec = '/bin/true'
    comment = None
tarokkk committed
244
    vlan = 0
245 246
    ipv4 = None
    ipv6 = None
Guba Sándor committed
247
    managed = False
tarokkk committed
248 249 250 251

    def __init__(self,
                 name,
                 mac,
252
                 bridge="cloud",
253 254
                 ipv4=None,
                 ipv6=None,
Bach Dániel committed
255
                 network_type=None,
256
                 virtual_port=None,
tarokkk committed
257
                 model='virtio',
tarokkk committed
258
                 QoS=None,
Guba Sándor committed
259 260
                 vlan=0,
                 managed=False):
tarokkk committed
261
        self.name = name
tarokkk committed
262
        self.bridge = bridge
tarokkk committed
263
        self.mac = mac
264 265
        self.ipv4 = ipv4
        self.ipv6 = ipv6
tarokkk committed
266
        self.model = model
Bach Dániel committed
267 268
        if not network_type:
            if NATIVE_OVS:
Bach Dániel committed
269 270
                self.network_type = 'bridge'
                self.virtual_port = 'openvswitch'
Bach Dániel committed
271 272
            else:
                self.network_type = 'ethernet'
Bach Dániel committed
273
                self.virtual_port = virtual_port
Bach Dániel committed
274 275 276
        else:
            self.network_type = network_type
            self.virtual_port = virtual_port
tarokkk committed
277
        self.QoS = QoS
tarokkk committed
278
        self.vlan = vlan
Guba Sándor committed
279
        self.managed = managed
tarokkk committed
280

281 282 283 284
    @classmethod
    def deserialize(cls, desc):
        return cls(**desc)

tarokkk committed
285
    # XML dump
286
    def build_xml(self):
tarokkk committed
287
        xml_top = ET.Element('interface', attrib={'type': self.network_type})
288 289
        if self.vlan > 0 and self.network_type == "bridge":
            xml_vlan = ET.SubElement(xml_top, 'vlan')
Bach Dániel committed
290
            ET.SubElement(xml_vlan, 'tag', attrib={'id': str(self.vlan)})
291 292 293 294 295 296 297
        if self.network_type == "bridge":
            ET.SubElement(xml_top, 'source', attrib={'bridge': self.bridge})
        if self.network_type == "ethernet":
            ET.SubElement(xml_top, 'script', attrib={'path': self.script_exec})
        if self.virtual_port is not None:
            ET.SubElement(xml_top, 'virtualport',
                          attrib={'type': self.virtual_port})
tarokkk committed
298 299 300
        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})
301
        ET.SubElement(xml_top, 'rom', attrib={'bar': 'off'})
tarokkk committed
302
        return xml_top
303 304 305

    def dump_xml(self):
        return ET.tostring(self.build_xml(), encoding='utf8',
306
                           method='xml',
Bach Dániel committed
307
                           pretty_print=True)