1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
|
#
# Some code for parsing libvirt's capabilities XML
#
# Copyright 2007, 2012-2014 Red Hat, Inc.
# Mark McLoughlin <markmc@redhat.com>
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; either version 2 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program; if not, write to the Free Software
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
# MA 02110-1301 USA.
import re
from .cpu import CPU as DomainCPU
from .xmlbuilder import XMLBuilder, XMLChildProperty
from .xmlbuilder import XMLProperty as _XMLProperty
# Disable test suite property tracking
class XMLProperty(_XMLProperty):
_track = False
##########################
# CPU model list objects #
##########################
class _CPUMapModel(XMLBuilder):
"""
Single <model> instance from cpu_map.xml
"""
_XML_ROOT_NAME = "model"
name = XMLProperty("./@name")
class _CPUMapArch(XMLBuilder):
"""
Single <arch> instance of valid CPU from cpu_map.xml
"""
_XML_ROOT_NAME = "arch"
arch = XMLProperty("./@name")
models = XMLChildProperty(_CPUMapModel)
class _CPUMapFileValues(XMLBuilder):
"""
Fallback method to lists cpu models, parsed directly from libvirt's local
cpu_map.xml
"""
# This is overwritten as part of the test suite
_cpu_filename = "/usr/share/libvirt/cpu_map.xml"
def __init__(self, conn):
xml = file(self._cpu_filename).read()
XMLBuilder.__init__(self, conn, parsexml=xml)
self._archmap = {}
_cpuvalues = XMLChildProperty(_CPUMapArch)
##############
# Public API #
##############
def get_cpus(self, arch):
if re.match(r'i[4-9]86', arch):
arch = "x86"
elif arch == "x86_64":
arch = "x86"
cpumap = self._archmap.get(arch)
if not cpumap:
for vals in self._cpuvalues:
if vals.arch == arch:
cpumap = vals
if not cpumap:
# Create a stub object
cpumap = _CPUMapArch(self.conn)
self._archmap[arch] = cpumap
return [m.name for m in cpumap.models]
class _CPUAPIValues(object):
"""
Lists valid values for cpu models obtained from libvirt's getCPUModelNames
"""
def __init__(self, conn):
self.conn = conn
self._cpus = None
def get_cpus(self, arch):
if self._cpus is not None:
return self._cpus
if self.conn.check_support(self.conn.SUPPORT_CONN_CPU_MODEL_NAMES):
names = self.conn.getCPUModelNames(arch, 0)
# Bindings were broke for a long time, so catch -1
if names != -1:
self._cpus = names
return self._cpus
return []
###################################
# capabilities host <cpu> parsing #
###################################
class _CapsCPU(DomainCPU):
arch = XMLProperty("./arch")
# capabilities used to just expose these properties as bools
_svm_bool = XMLProperty("./features/svm", is_bool=True)
_vmx_bool = XMLProperty("./features/vmx", is_bool=True)
_pae_bool = XMLProperty("./features/pae", is_bool=True)
_nonpae_bool = XMLProperty("./features/nonpae", is_bool=True)
##############
# Public API #
##############
def has_feature(self, name):
if name == "svm" and self._svm_bool:
return True
if name == "vmx" and self._vmx_bool:
return True
if name == "pae" and self._pae_bool:
return True
if name == "nonpae" and self._nonpae_bool:
return True
return name in [f.name for f in self.features]
###########################
# Caps <topology> parsers #
###########################
class _CapsTopologyCPU(XMLBuilder):
_XML_ROOT_NAME = "cpu"
id = XMLProperty("./@id")
class _TopologyCell(XMLBuilder):
_XML_ROOT_NAME = "cell"
id = XMLProperty("./@id")
cpus = XMLChildProperty(_CapsTopologyCPU, relative_xpath="./cpus")
class _CapsTopology(XMLBuilder):
_XML_ROOT_NAME = "topology"
cells = XMLChildProperty(_TopologyCell, relative_xpath="./cells")
######################################
# Caps <host> and <secmodel> parsers #
######################################
class _CapsSecmodelBaselabel(XMLBuilder):
_XML_ROOT_NAME = "baselabel"
type = XMLProperty("./@type")
content = XMLProperty(".")
class _CapsSecmodel(XMLBuilder):
_XML_ROOT_NAME = "secmodel"
model = XMLProperty("./model")
baselabels = XMLChildProperty(_CapsSecmodelBaselabel)
class _CapsHost(XMLBuilder):
_XML_ROOT_NAME = "host"
secmodels = XMLChildProperty(_CapsSecmodel)
cpu = XMLChildProperty(_CapsCPU, is_single=True)
topology = XMLChildProperty(_CapsTopology, is_single=True)
################################
# <guest> and <domain> parsers #
################################
class _CapsMachine(XMLBuilder):
_XML_ROOT_NAME = "machine"
name = XMLProperty(".")
canonical = XMLProperty("./@canonical")
class _CapsDomain(XMLBuilder):
def __init__(self, *args, **kwargs):
XMLBuilder.__init__(self, *args, **kwargs)
self.machines = []
for m in self._machines:
self.machines.append(m.name)
if m.canonical:
self.machines.append(m.canonical)
self._recommended_machine = None
_XML_ROOT_NAME = "domain"
hypervisor_type = XMLProperty("./@type")
emulator = XMLProperty("./emulator")
_machines = XMLChildProperty(_CapsMachine)
###############
# Public APIs #
###############
def get_recommended_machine(self, conn, capsguest):
if self._recommended_machine:
return self._recommended_machine
if not conn.is_test() and not conn.is_qemu():
return None
if capsguest.arch in ["ppc64", "ppc64le"] and "pseries" in self.machines:
return "pseries"
if capsguest.arch in ["armv7l", "aarch64"]:
if "virt" in self.machines:
return "virt"
if "vexpress-a15" in self.machines:
return "vexpress-a15"
return None
def set_recommended_machine(self, machine):
self._recommended_machine = machine
def is_accelerated(self):
return self.hypervisor_type in ["kvm"]
class _CapsGuestFeatures(XMLBuilder):
_XML_ROOT_NAME = "features"
pae = XMLProperty("./pae", is_bool=True)
nonpae = XMLProperty("./nonpae", is_bool=True)
acpi = XMLProperty("./acpi", is_bool=True)
apic = XMLProperty("./apci", is_bool=True)
class _CapsGuest(XMLBuilder):
def __init__(self, *args, **kwargs):
XMLBuilder.__init__(self, *args, **kwargs)
self.machines = []
for m in self._machines:
self.machines.append(m.name)
if m.canonical:
self.machines.append(m.canonical)
for d in self.domains:
if not d.emulator:
d.emulator = self.emulator
if not d.machines:
d.machines = self.machines
_XML_ROOT_NAME = "guest"
os_type = XMLProperty("./os_type")
arch = XMLProperty("./arch/@name")
loader = XMLProperty("./arch/loader")
emulator = XMLProperty("./arch/emulator")
domains = XMLChildProperty(_CapsDomain, relative_xpath="./arch")
features = XMLChildProperty(_CapsGuestFeatures, is_single=True)
_machines = XMLChildProperty(_CapsMachine, relative_xpath="./arch")
###############
# Public APIs #
###############
def bestDomainType(self, dtype=None, machine=None):
"""
Return the recommended domain for use if the user does not explicitly
request one.
"""
domains = []
for d in self.domains:
d.set_recommended_machine(None)
if dtype and d.hypervisor_type != dtype.lower():
continue
if machine and machine not in d.machines:
continue
if machine:
d.set_recommended_machine(machine)
domains.append(d)
if not domains:
return None
priority = ["kvm", "xen", "qemu"]
for t in priority:
for d in domains:
if d.hypervisor_type == t:
return d
# Fallback, just return last item in list
return domains[-1]
############################
# Main capabilities object #
############################
class Capabilities(XMLBuilder):
# Set by the test suite to force a particular code path
_force_cpumap = False
def __init__(self, *args, **kwargs):
XMLBuilder.__init__(self, *args, **kwargs)
self._cpu_values = None
_XML_ROOT_NAME = "capabilities"
host = XMLChildProperty(_CapsHost, is_single=True)
guests = XMLChildProperty(_CapsGuest)
###################
# Private helpers #
###################
def _is_xen(self):
for g in self.guests:
if g.os_type != "xen":
continue
for d in g.domains:
if d.hypervisor_type == "xen":
return True
return False
##############
# Public API #
##############
def has_install_options(self):
"""
Return True if there are any install options available
"""
for g in self.guests:
if len(g.domains) > 0:
return True
return False
def is_kvm_available(self):
"""
Return True if kvm guests can be installed
"""
for g in self.guests:
if g.os_type != "hvm":
continue
for d in g.domains:
if d.hypervisor_type == "kvm":
return True
return False
def supports_pae(self):
"""
Return True if capabilities report support for PAE
"""
for g in self.guests:
if g.features.pae:
return True
return False
def get_cpu_values(self, arch):
if not arch:
return []
if self._cpu_values:
return self._cpu_values.get_cpus(arch)
order = [_CPUAPIValues, _CPUMapFileValues]
if self._force_cpumap:
order = [_CPUMapFileValues]
# Iterate over the available methods until a set of CPU models is found
for mode in order:
cpu_values = mode(self.conn)
cpus = cpu_values.get_cpus(arch)
if len(cpus) > 0:
self._cpu_values = cpu_values
return cpus
return []
############################
# Public XML building APIs #
############################
def _guestForOSType(self, typ=None, arch=None):
if self.host is None:
return None
archs = [arch]
if arch is None:
archs = [self.host.cpu.arch, None]
for a in archs:
for g in self.guests:
if ((typ is None or g.os_type == typ) and
(a is None or g.arch == a)):
return g
def guest_lookup(self, os_type=None, arch=None, typ=None, machine=None):
"""
Simple virtualization availability lookup
Convenience function for looking up 'Guest' and 'Domain' capabilities
objects for the desired virt type. If type, arch, or os_type are none,
we return the default virt type associated with those values. These are
typically:
- os_type : hvm, then xen
- typ : kvm over plain qemu
- arch : host arch over all others
Otherwise the default will be the first listed in the capabilities xml.
This function throws C{ValueError}s if any of the requested values are
not found.
@param typ: Virtualization type ('hvm', 'xen', ...)
@param arch: Guest architecture ('x86_64', 'i686' ...)
@param os_type: Hypervisor name ('qemu', 'kvm', 'xen', ...)
@param machine: Optional machine type to emulate
@returns: A (Capabilities Guest, Capabilities Domain) tuple
"""
guest = self._guestForOSType(os_type, arch)
if not guest:
archstr = _("for arch '%s'") % arch
if not arch:
archstr = ""
osstr = _("virtualization type '%s'") % os_type
if not os_type:
osstr = _("any virtualization options")
raise ValueError(_("Host does not support %(virttype)s %(arch)s") %
{'virttype' : osstr, 'arch' : archstr})
domain = guest.bestDomainType(dtype=typ, machine=machine)
if domain is None:
machinestr = " with machine '%s'" % machine
if not machine:
machinestr = ""
raise ValueError(_("Host does not support domain type %(domain)s"
"%(machine)s for virtualization type "
"'%(virttype)s' arch '%(arch)s'") %
{'domain': typ, 'virttype': guest.os_type,
'arch': guest.arch, 'machine': machinestr})
return (guest, domain)
def build_virtinst_guest(self, conn, guest, domain):
from .guest import Guest
gobj = Guest(conn)
gobj.type = domain.hypervisor_type
gobj.os.os_type = guest.os_type
gobj.os.arch = guest.arch
gobj.os.loader = guest.loader
gobj.emulator = domain.emulator
gobj.os.machine = domain.get_recommended_machine(conn, guest)
return gobj
|