Слияние кода завершено, страница обновится автоматически
#
# Project Kimchi
#
# Copyright IBM Corp, 2015-2017
#
# This library is free software; you can redistribute it and/or
# modify it under the terms of the GNU Lesser General Public
# License as published by the Free Software Foundation; either
# version 2.1 of the License, or (at your option) any later version.
#
# This library 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
# Lesser General Public License for more details.
#
# You should have received a copy of the GNU Lesser General Public
# License along with this library; if not, write to the Free Software
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
import copy
import glob
import os
import distro
from collections import defaultdict
from distutils.version import LooseVersion
import psutil
from configobj import ConfigObj
from wok.config import PluginPaths
from wok.exception import InvalidParameter
from wok.plugins.kimchi.config import kimchiPaths
from wok.utils import wok_log
SUPPORTED_ARCHS = {
'x86': ('i386', 'i686', 'x86_64'),
'power': ('ppc', 'ppc64'),
'ppc64le': ('ppc64le'),
's390x': ('s390x'),
}
# Memory devices slot limits by architecture
HOST_DISTRO = distro.linux_distribution(full_distribution_name=False)
MEM_DEV_SLOTS = {
'ppc64': 32 if HOST_DISTRO and HOST_DISTRO[0] == 'Ubuntu' else 256,
'ppc64le': 32 if HOST_DISTRO and HOST_DISTRO[0] == 'Ubuntu' else 256,
'x86_64': 256,
'i686': 256,
'i386': 256,
's390x': 256,
}
template_specs = {
'x86': {
'old': dict(disk_bus='ide', nic_model='e1000', sound_model='ich6'),
'modern': dict(
disk_bus='virtio', nic_model='virtio', sound_model='ich6', tablet_bus='usb'
),
},
'power': {
'old': dict(
disk_bus='scsi',
nic_model='spapr-vlan',
cdrom_bus='scsi',
kbd_type='kbd',
kbd_bus='usb',
mouse_bus='usb',
tablet_bus='usb',
),
'modern': dict(
disk_bus='virtio',
nic_model='virtio',
cdrom_bus='scsi',
kbd_bus='usb',
kbd_type='kbd',
mouse_bus='usb',
tablet_bus='usb',
),
},
'ppc64le': {
'old': dict(
disk_bus='virtio',
nic_model='virtio',
cdrom_bus='scsi',
kbd_bus='usb',
kbd_type='keyboard',
mouse_bus='usb',
tablet_bus='usb',
),
'modern': dict(
disk_bus='virtio',
nic_model='virtio',
cdrom_bus='scsi',
kbd_bus='usb',
kbd_type='keyboard',
mouse_bus='usb',
tablet_bus='usb',
),
},
's390x': {
'old': dict(disk_bus='virtio', nic_model='virtio', cdrom_bus='scsi'),
'modern': dict(disk_bus='virtio', nic_model='virtio', cdrom_bus='scsi'),
},
}
custom_specs = {
'fedora': {'22': {'x86': dict(video_model='qxl')}},
'windows': {'xp': {'x86': dict(nic_model='pcnet')}},
}
modern_version_bases = {
'x86': {
'debian': '6.0',
'ubuntu': '7.10',
'opensuse': '10.3',
'centos': '5.3',
'rhel': '6.0',
'fedora': '16',
'gentoo': '0',
'sles': '11',
'arch': '0',
},
'power': {
'rhel': '6.5',
'fedora': '19',
'ubuntu': '14.04',
'opensuse': '13.1',
'sles': '11sp3',
},
'ppc64le': {
'rhel': '6.5',
'fedora': '19',
'ubuntu': '14.04',
'opensuse': '13.1',
'sles': '11sp3',
},
}
icon_available_distros = [
icon[5:-4]
for icon in glob.glob1('%s/images/' % PluginPaths('kimchi').ui_dir, 'icon-*.png')
]
def _get_arch():
for arch, sub_archs in SUPPORTED_ARCHS.items():
if os.uname()[4] in sub_archs:
return arch
def _get_default_template_mem():
if hasattr(psutil, 'virtual_memory'):
mem = psutil.virtual_memory().total >> 10 >> 10
else:
mem = psutil.TOTAL_PHYMEM >> 10 >> 10
return 2048 if mem > 2048 else mem
def _get_tmpl_defaults():
"""
ConfigObj returns a dict like below when no changes were made in the
template configuration file (template.conf)
{'main': {}, 'memory': {}, 'storage': {'disk.0': {}}, 'processor': {},
'graphics': {}}
The default values should be like below:
{'main': {'networks': ['default']},
'memory': {'current': 1024, 'maxmemory': 1024},
'storage': { 'disk.0': {'format': 'qcow2', 'size': '10',
'pool': '/plugins/kimchi/storagepools/default'}},
'processor': {'vcpus': '1', 'maxvcpus': 1},
'graphics': {'type': 'spice', 'listen': '127.0.0.1'}}
The default values on s390x architecture:
{'memory': {'current': 1024, 'maxmemory': 1024},
'storage': { 'disk.0': {'format': 'qcow2', 'size': '10',
'pool': '/plugins/kimchi/storagepools/default'}},
'processor': {'vcpus': '1', 'maxvcpus': 1},
'graphics': {'type': 'spice', 'listen': '127.0.0.1'}}
"""
# Create dict with default values
tmpl_defaults = defaultdict(dict)
host_arch = _get_arch()
tmpl_defaults['main']['networks'] = ['default']
if host_arch in ['s390x', 's390']:
tmpl_defaults['main']['networks'] = []
tmpl_defaults['memory'] = {
'current': _get_default_template_mem(),
'maxmemory': _get_default_template_mem(),
}
tmpl_defaults['storage']['disk.0'] = {
'size': 10,
'format': 'qcow2',
'pool': 'default',
}
is_on_s390x = True if _get_arch() == 's390x' else False
if is_on_s390x:
tmpl_defaults['storage']['disk.0']['path'] = '/var/lib/libvirt/images/'
del tmpl_defaults['storage']['disk.0']['pool']
tmpl_defaults['processor']['vcpus'] = 1
tmpl_defaults['processor']['maxvcpus'] = 1
tmpl_defaults['graphics'] = {'type': 'vnc', 'listen': '127.0.0.1'}
default_config = ConfigObj(tmpl_defaults)
# Load template configuration file
config_file = os.path.join(kimchiPaths.sysconf_dir, 'template.conf')
config = ConfigObj(config_file)
# File configuration takes preference.
# In s390x, file configuration can have storage pool or path.
# Default configuration for s390x is storage path.
# In case file conf has storage pool then storage pool takes preference.
# When conf file has explicitly storage pool: "defaults" should
# have storage pool and default configured path should be removed,
# as either storage can be path or pool, cannot be both.
# When conf file does not explicity storage pool or have explicitly
# storage path: "default" should have storage path only and cannot
# have default pool.
#
# Check file conf has storage configured.
if is_on_s390x and config.get('storage').get('disk.0'):
# remove storage from default_config as file configuration takes
# preference.
default_config.pop('storage')
# Get storage configuration present in conf file
config_pool = config.get('storage').get('disk.0').get('pool')
config_path = config.get('storage').get('disk.0').get('path')
# If storage configured in conf file then it should have either
# pool or path.
if not config_pool and not config_path:
raise InvalidParameter('KCHTMPL0040E')
# On s390x if config file has both path and pool uncommented
# then path should take preference.
if config_pool and config_path:
wok_log.warning(
'Both default pool and path are specified in'
+ ' template.conf. Hence default pool is being'
+ ' ignored and only default path will be used'
)
config.get('storage').get('disk.0').pop('pool')
# Merge default configuration with file configuration
default_config.merge(config)
# Create a dict with default values according to data structure
# expected by VMTemplate
defaults = {
'domain': 'kvm',
'arch': os.uname()[4],
'cdrom_bus': 'ide',
'cdrom_index': 2,
'mouse_bus': 'ps2',
}
# Parse main section to get networks and memory values
defaults.update(default_config.pop('main'))
defaults['memory'] = default_config.pop('memory')
defaults['memory']['current'] = int(defaults['memory']['current'])
defaults['memory']['maxmemory'] = int(defaults['memory']['maxmemory'])
# for s390x architecture, set default console as virtio
if is_on_s390x:
defaults['console'] = 'virtio'
# Parse storage section to get disks values
storage_section = default_config.pop('storage')
defaults['disks'] = []
for index, disk in enumerate(storage_section.keys()):
data = storage_section[disk]
data['index'] = int(disk.split('.')[1])
# Right now 'Path' is only supported on s390x
if storage_section[disk].get('path') and is_on_s390x:
data['path'] = storage_section[disk].pop('path')
if 'size' not in storage_section[disk]:
data['size'] = tmpl_defaults['storage']['disk.0']['size']
else:
data['size'] = storage_section[disk].pop('size')
if 'format' not in storage_section[disk]:
data['format'] = tmpl_defaults['storage']['disk.0']['format']
else:
data['format'] = storage_section[disk].pop('format')
else:
data['pool'] = {
'name': '/plugins/kimchi/storagepools/'
+ storage_section[disk].pop('pool')
}
defaults['disks'].append(data)
# Parse processor section to get vcpus and cpu_topology values
processor_section = default_config.pop('processor')
defaults['cpu_info'] = {
'vcpus': processor_section.pop('vcpus'),
'maxvcpus': processor_section.pop('maxvcpus'),
}
if len(processor_section.keys()) > 0:
defaults['cpu_info']['topology'] = processor_section
# Update defaults values with graphics values
defaults['graphics'] = default_config.pop('graphics')
# Setting default memory device slots
defaults['mem_dev_slots'] = MEM_DEV_SLOTS.get(os.uname()[4], 256)
return defaults
# Set defaults values according to template.conf file
defaults = _get_tmpl_defaults()
def get_template_default(template_type, field):
host_arch = _get_arch()
# Assuming 'power' = 'ppc64le' because lookup() does the same,
# claiming libvirt compatibility.
host_arch = 'power' if host_arch == 'ppc64le' else host_arch
tmpl_defaults = copy.deepcopy(defaults)
tmpl_defaults.update(template_specs[host_arch][template_type])
return tmpl_defaults[field]
def lookup(distro, version):
"""
Lookup all parameters needed to run a VM of a known or unknown operating
system type and version. The data is constructed by starting with the
'defaults' and merging the parameters given for the identified OS. If
known, a link to a remote install CD is added.
"""
params = copy.deepcopy(defaults)
params['os_distro'] = distro
params['os_version'] = version
arch = _get_arch()
# set up arch to ppc64 instead of ppc64le due to libvirt compatibility
if params['arch'] == 'ppc64le':
params['arch'] = 'ppc64'
# On s390x, template spec does not change based on version.
if params['arch'] == 's390x' or arch == 's390x':
params.update(template_specs[arch]['old'])
if not distro:
params['os_distro'] = params['os_version'] = 'unknown'
elif distro in modern_version_bases[arch]:
if LooseVersion(version) >= LooseVersion(modern_version_bases[arch][distro]):
params.update(template_specs[arch]['modern'])
else:
params.update(template_specs[arch]['old'])
else:
params['os_distro'] = params['os_version'] = 'unknown'
params.update(template_specs[arch]['old'])
# Get custom specifications
specs = custom_specs.get(distro, {})
for v, config in specs.items():
if LooseVersion(version) >= LooseVersion(v):
params.update(config.get(arch, {}))
if distro in icon_available_distros:
params['icon'] = 'plugins/kimchi/images/icon-%s.png' % distro
else:
params['icon'] = 'plugins/kimchi/images/icon-vm.png'
return params
Вы можете оставить комментарий после Вход в систему
Неприемлемый контент может быть отображен здесь и не будет показан на странице. Вы можете проверить и изменить его с помощью соответствующей функции редактирования.
Если вы подтверждаете, что содержание не содержит непристойной лексики/перенаправления на рекламу/насилия/вульгарной порнографии/нарушений/пиратства/ложного/незначительного или незаконного контента, связанного с национальными законами и предписаниями, вы можете нажать «Отправить» для подачи апелляции, и мы обработаем ее как можно скорее.
Опубликовать ( 0 )