vm.py 10.1 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

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

74 75 76
    @classmethod
    def deserialize(cls, desc):
        desc['disk_list'] = [VMDisk.deserialize(d) for d in desc['disk_list']]
77 78
        desc['network_list'] = [VMNetwork.deserialize(
            n) for n in desc['network_list']]
79 80
        return cls(**desc)

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

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

tarokkk committed
159 160

class VMDisk:
tarokkk committed
161

tarokkk committed
162 163 164 165 166 167 168 169 170
    '''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
171
    target_device = None
tarokkk committed
172 173 174 175 176 177 178

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

189 190 191 192
    @classmethod
    def deserialize(cls, desc):
        return cls(**desc)

193
    def build_xml(self):
tarokkk committed
194 195 196 197 198
        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
199 200 201 202 203 204 205 206
        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
207

208 209 210 211 212 213
    def dump_xml(self):
        return ET.tostring(self.build_xml(),
                           encoding='utf8',
                           method='xml',
                           pretty_print=True)

tarokkk committed
214 215

class VMNetwork:
216

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

    def __init__(self,
                 name,
                 mac,
248
                 bridge="cloud",
249 250
                 ipv4=None,
                 ipv6=None,
tarokkk committed
251
                 network_type='ethernet',
252
                 virtual_port=None,
tarokkk committed
253
                 model='virtio',
tarokkk committed
254
                 QoS=None,
Guba Sándor committed
255 256
                 vlan=0,
                 managed=False):
tarokkk committed
257
        self.name = name
tarokkk committed
258
        self.bridge = bridge
tarokkk committed
259 260
        self.network_type = network_type
        self.mac = mac
261 262
        self.ipv4 = ipv4
        self.ipv6 = ipv6
tarokkk committed
263
        self.model = model
264
        self.virtual_port = virtual_port
tarokkk committed
265
        self.QoS = QoS
tarokkk committed
266
        self.vlan = vlan
Guba Sándor committed
267
        self.managed = managed
tarokkk committed
268

269 270 271 272
    @classmethod
    def deserialize(cls, desc):
        return cls(**desc)

tarokkk committed
273
    # XML dump
274
    def build_xml(self):
tarokkk committed
275
        xml_top = ET.Element('interface', attrib={'type': self.network_type})
276 277 278 279 280 281 282 283 284 285
        if self.vlan > 0 and self.network_type == "bridge":
            xml_vlan = ET.SubElement(xml_top, 'vlan')
            ET.SubElement(xml_vlan, 'tag', attrib={'id': self.vlan})
        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
286 287 288
        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})
289
        ET.SubElement(xml_top, 'rom', attrib={'bar': 'off'})
tarokkk committed
290
        return xml_top
291 292 293

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