mirror of
https://github.com/projectacrn/acrn-hypervisor.git
synced 2025-04-29 04:04:05 +00:00
This patch includes: 1.add load_order(PRE_LAUNCHED_VM/SERVICE_VM/POST_LAUNCHED_VM) parameter 2.change vm_type parameter to values as RTVM, STANDARD_VM, TEE, REE TEE and REE are hide in UI. 3.deduce vm severity in vm_configuration from vm_type and load_order This patch not includes: change for scenario_config and functions called by scenario_config about checking v2->v3: *Refine template load_order v1->v2: *Change variable name from vm_type to load_order *Change LoadOptionType to LoadOrderType *Change VMOptionsType to VMType *Add TEE_VM/REE_VM description *Refine acrn:is-pre-launched-vm Tracked-On: #6690 Signed-off-by: hangliu1 <hang1.liu@linux.intel.com> Reviewed-by: Junjie Mao <junjie.mao@intel.com>
701 lines
24 KiB
Python
701 lines
24 KiB
Python
# Copyright (C) 2019 Intel Corporation. All rights reserved.
|
|
#
|
|
# SPDX-License-Identifier: BSD-3-Clause
|
|
#
|
|
|
|
import os
|
|
import getopt
|
|
import re
|
|
|
|
import common
|
|
import board_cfg_lib
|
|
import scenario_cfg_lib
|
|
import lxml
|
|
import lxml.etree
|
|
|
|
ERR_LIST = {}
|
|
BOOT_TYPE = ['no', 'ovmf']
|
|
RTOS_TYPE = ['no', 'Soft RT', 'Hard RT']
|
|
DM_VUART0 = ['Disable', 'Enable']
|
|
y_n = ['y', 'n']
|
|
USER_VM_TYPES = ['CLEARLINUX', 'ANDROID', 'ALIOS', 'PREEMPT-RT LINUX', 'VXWORKS', 'WINDOWS', 'ZEPHYR', 'YOCTO', 'UBUNTU', 'GENERIC LINUX']
|
|
LINUX_LIKE_OS = ['CLEARLINUX', 'PREEMPT-RT LINUX', 'YOCTO', 'UBUNTU', 'GENERIC LINUX']
|
|
|
|
PT_SUB_PCI = {}
|
|
PT_SUB_PCI['usb_xdci'] = ['USB controller']
|
|
PT_SUB_PCI['gpu'] = ['VGA compatible controller']
|
|
PT_SUB_PCI['ipu'] = ['Multimedia controller']
|
|
PT_SUB_PCI['ipu_i2c'] = ['Signal processing controller']
|
|
PT_SUB_PCI['cse'] = ['Communication controller']
|
|
PT_SUB_PCI['audio'] = ['Audio device', 'Multimedia audio controller']
|
|
PT_SUB_PCI['audio_codec'] = ['Signal processing controller']
|
|
PT_SUB_PCI['sd_card'] = ['SD Host controller']
|
|
PT_SUB_PCI['wifi'] = ['Ethernet controller', 'Network controller', '802.1a controller',
|
|
'802.1b controller', 'Wireless controller']
|
|
PT_SUB_PCI['bluetooth'] = ['Signal processing controller']
|
|
PT_SUB_PCI['ethernet'] = ['Ethernet controller', 'Network controller']
|
|
PT_SUB_PCI['sata'] = ['SATA controller']
|
|
PT_SUB_PCI['nvme'] = ['Non-Volatile memory controller']
|
|
|
|
# passthrough devices for board
|
|
PASSTHRU_DEVS = ['usb_xdci', 'gpu', 'ipu', 'ipu_i2c', 'cse', 'audio', 'sata',
|
|
'nvme', 'audio_codec', 'sd_card', 'ethernet', 'wifi', 'bluetooth']
|
|
|
|
PT_SLOT = {
|
|
"hostbridge":0,
|
|
"lpc":1,
|
|
"pci-gvt":2,
|
|
"virtio-blk":3,
|
|
"igd-lpc":31,
|
|
}
|
|
|
|
|
|
MOUNT_FLAG_DIC = {}
|
|
|
|
|
|
def usage(file_name):
|
|
""" This is usage for how to use this tool """
|
|
print("usage= {} [h]".format(file_name), end="")
|
|
print("--board <board_info_file> --scenario <scenario_info_file> --launch <launch_info_file> --user_vmid <user_vmid id> --out [output folder]")
|
|
print('board_info_file : file name of the board info')
|
|
print('scenario_info_file : file name of the scenario info')
|
|
print('launch_info_file : file name of the launch info')
|
|
print('user_vmid : this is the relative id for post launch vm in scenario info XML:[1..max post launch vm]')
|
|
print('output folder : path to acrn-hypervisor_folder')
|
|
|
|
|
|
def get_param(args):
|
|
"""
|
|
Get the script parameters from command line
|
|
:param args: this the command line of string for the script without script name
|
|
"""
|
|
vm_th = '0'
|
|
err_dic = {}
|
|
board_info_file = False
|
|
scenario_info_file = False
|
|
launch_info_file = False
|
|
output_folder = False
|
|
param_list = ['--board', '--scenario', '--launch', '--user_vmid']
|
|
|
|
for arg_str in param_list:
|
|
|
|
if arg_str not in args:
|
|
usage(args[0])
|
|
err_dic['common error: wrong parameter'] = "wrong usage"
|
|
return (err_dic, board_info_file, scenario_info_file, launch_info_file, int(vm_th), output_folder)
|
|
|
|
args_list = args[1:]
|
|
(optlist, args_list) = getopt.getopt(args_list, '', ['board=', 'scenario=', 'launch=', 'user_vmid=', 'out='])
|
|
for arg_k, arg_v in optlist:
|
|
if arg_k == '--board':
|
|
board_info_file = arg_v
|
|
if arg_k == '--scenario':
|
|
scenario_info_file = arg_v
|
|
if arg_k == '--launch':
|
|
launch_info_file = arg_v
|
|
if arg_k == '--out':
|
|
output_folder = arg_v
|
|
if '--user_vmid' in args:
|
|
if arg_k == '--user_vmid':
|
|
vm_th = arg_v
|
|
if not vm_th.isnumeric():
|
|
err_dic['common error: wrong parameter'] = "--user_vmid should be a number"
|
|
return (err_dic, board_info_file, scenario_info_file, launch_info_file, int(vm_th), output_folder)
|
|
|
|
if not board_info_file or not scenario_info_file or not launch_info_file:
|
|
usage(args[0])
|
|
err_dic['common error: wrong parameter'] = "wrong usage"
|
|
return (err_dic, board_info_file, scenario_info_file, launch_info_file, int(vm_th), output_folder)
|
|
|
|
if not os.path.exists(board_info_file):
|
|
err_dic['common error: wrong parameter'] = "{} does not exist!".format(board_info_file)
|
|
return (err_dic, board_info_file, scenario_info_file, launch_info_file, int(vm_th), output_folder)
|
|
|
|
if not os.path.exists(scenario_info_file):
|
|
err_dic['common error: wrong parameter'] = "{} does not exist!".format(scenario_info_file)
|
|
return (err_dic, board_info_file, scenario_info_file, launch_info_file, int(vm_th), output_folder)
|
|
|
|
if not os.path.exists(launch_info_file):
|
|
err_dic['common error: wrong parameter'] = "{} does not exist!".format(launch_info_file)
|
|
return (err_dic, board_info_file, scenario_info_file, launch_info_file, int(vm_th), output_folder)
|
|
|
|
return (err_dic, board_info_file, scenario_info_file, launch_info_file, int(vm_th), output_folder)
|
|
|
|
|
|
def launch_vm_cnt(config_file):
|
|
"""
|
|
Get post vm number
|
|
:param config_file: it is a file what contains information for script to read from
|
|
:return: total post vm number in launch file
|
|
"""
|
|
post_vm_count = 0
|
|
|
|
# get post vm number
|
|
root = common.get_config_root(config_file)
|
|
for item in root:
|
|
if item.tag == "user_vm":
|
|
post_vm_count += 1
|
|
|
|
return post_vm_count
|
|
|
|
|
|
def get_post_num_list():
|
|
"""
|
|
Get post vm number list
|
|
:return: total post dic: {launch_id:scenario_id} in launch file
|
|
"""
|
|
post_vm_list = []
|
|
|
|
# get post vm number
|
|
root = common.get_config_root(common.LAUNCH_INFO_FILE)
|
|
for item in root:
|
|
if item.tag == "user_vm":
|
|
post_vm_list.append(int(item.attrib['id']))
|
|
|
|
return post_vm_list
|
|
|
|
|
|
def post_vm_cnt(config_file):
|
|
"""
|
|
Calculate the pre launched vm number
|
|
:param config_file: it is a file what contains information for script to read from
|
|
:return: number of post launched vm
|
|
"""
|
|
post_launch_cnt = 0
|
|
|
|
for load_order in common.LOAD_ORDER.values():
|
|
if load_order == "POST_LAUNCHED_VM":
|
|
post_launch_cnt += 1
|
|
|
|
return post_launch_cnt
|
|
|
|
|
|
def get_post_vm_cnt():
|
|
"""
|
|
Get board name from launch.xml at fist line
|
|
:param scenario_file: it is a file what contains scenario information for script to read from
|
|
"""
|
|
launch_vm_count = launch_vm_cnt(common.LAUNCH_INFO_FILE)
|
|
post_vm_count = post_vm_cnt(common.SCENARIO_INFO_FILE)
|
|
return (launch_vm_count, post_vm_count)
|
|
|
|
|
|
def is_config_file_match():
|
|
|
|
match = True
|
|
# check if the board config match scenario config
|
|
(err_dic, scenario_for_board) = common.get_xml_attrib(common.SCENARIO_INFO_FILE, "board")
|
|
(err_dic, board_name) = common.get_xml_attrib(common.BOARD_INFO_FILE, "board")
|
|
if scenario_for_board != board_name:
|
|
err_dic['scenario config'] = "The board xml file does not match scenario xml file!"
|
|
match = False
|
|
|
|
# check if the board config match launch config
|
|
(err_dic, launch_for_board) = common.get_xml_attrib(common.LAUNCH_INFO_FILE, "board")
|
|
if launch_for_board != board_name:
|
|
err_dic['launch config'] = "The board xml file does not match scenario xml file!"
|
|
match = False
|
|
|
|
return (err_dic, match)
|
|
|
|
|
|
def get_sos_vmid():
|
|
|
|
sos_id = ''
|
|
for vm_i,load_order in common.LOAD_ORDER.items():
|
|
if load_order == "SERVICE_VM":
|
|
sos_id = vm_i
|
|
break
|
|
|
|
return sos_id
|
|
|
|
|
|
def get_bdf_from_tag(config_file, branch_tag, tag_str):
|
|
bdf_list = {}
|
|
bdf_list = common.get_leaf_tag_map(config_file, branch_tag, tag_str)
|
|
|
|
# split b:d:f from pci description
|
|
for idx, bdf_v in bdf_list.items():
|
|
if bdf_v:
|
|
bdf_list[idx] = bdf_v.split()[0]
|
|
|
|
return bdf_list
|
|
|
|
|
|
def get_vpid_from_bdf(bdf_vpid_map, bdf_list):
|
|
vpid_list = {}
|
|
post_vm_list = get_post_num_list()
|
|
for p_id in post_vm_list:
|
|
for bdf_k, vpid_v in bdf_vpid_map.items():
|
|
if bdf_k == bdf_list[p_id]:
|
|
# print("k:{}, v{}".format(bdf_k, bdf_list[p_id]))
|
|
# convert "808x:0xxx" to "808x 0xxx"
|
|
tmp_vpid = " ".join(vpid_v.split(':'))
|
|
vpid_list[p_id] = tmp_vpid
|
|
elif not bdf_list[p_id]:
|
|
vpid_list[p_id] = ''
|
|
|
|
return vpid_list
|
|
|
|
|
|
def get_user_vm_type():
|
|
"""
|
|
Get User VM name from launch.xml at fist line
|
|
"""
|
|
user_vm_types = common.get_leaf_tag_map(common.LAUNCH_INFO_FILE, "user_vm_type")
|
|
|
|
return user_vm_types
|
|
|
|
|
|
def get_user_vm_names():
|
|
user_vm_names = common.get_leaf_tag_map(common.LAUNCH_INFO_FILE, "vm_name")
|
|
return user_vm_names
|
|
|
|
|
|
def is_bdf_format(bdf_str):
|
|
bdf_len = 7
|
|
status = True
|
|
if not bdf_str:
|
|
return status
|
|
|
|
bdf_str_len = len(bdf_str)
|
|
if ':' in bdf_str and '.' in bdf_str and bdf_len == bdf_str_len:
|
|
status = True
|
|
else:
|
|
status = False
|
|
|
|
return status
|
|
|
|
|
|
def is_vpid_format(vpid_str):
|
|
status = True
|
|
if not vpid_str:
|
|
return status
|
|
|
|
vpid_len = 9
|
|
vpid_str_len = len(vpid_str)
|
|
|
|
if ' ' in vpid_str and vpid_len == vpid_str_len:
|
|
status = True
|
|
else:
|
|
status = False
|
|
|
|
return status
|
|
|
|
|
|
def pt_devs_check(bdf_list, vpid_list, item):
|
|
i_cnt = 1
|
|
|
|
# check bdf
|
|
for bdf_str in bdf_list.values():
|
|
if is_bdf_format(bdf_str):
|
|
continue
|
|
else:
|
|
key = "user_vm:id={},passthrough_devices,{}".format(i_cnt, item)
|
|
ERR_LIST[key] = "Unkonw the BDF format of {} device".format(item)
|
|
i_cnt += 1
|
|
|
|
# check vpid
|
|
i_cnt = 1
|
|
for vpid_str in vpid_list.values():
|
|
if is_vpid_format(vpid_str):
|
|
continue
|
|
else:
|
|
key = "user_vm:id={},passthrough_devices,{}".format(i_cnt, item)
|
|
ERR_LIST[key] = "Unkonw the Vendor:Product ID format of {} device".format(item)
|
|
|
|
i_cnt += 1
|
|
|
|
|
|
def empty_err(i_cnt, item):
|
|
"""
|
|
add empty error message into ERR_LIST
|
|
:param i_cnt: the launch vm index from config xml
|
|
:param item: the item of tag from config xml
|
|
:return: None
|
|
"""
|
|
key = "user_vm:id={},{}".format(i_cnt, item)
|
|
ERR_LIST[key] = "The parameter should not be empty"
|
|
|
|
|
|
def args_aval_check(arg_list, item, avl_list):
|
|
"""
|
|
check arguments from config xml are available and validate
|
|
:param arg_list: the list of arguments from config xml
|
|
:param item: the item of tag from config xml
|
|
:param avl_list: available argument which are allowed to chose
|
|
:return: None
|
|
"""
|
|
# args should be set into launch xml from webUI
|
|
i_cnt = 1
|
|
skip_check_list = ['']
|
|
if item in skip_check_list:
|
|
return
|
|
|
|
for arg_str in arg_list.values():
|
|
if arg_str == None or not arg_str.strip():
|
|
empty_err(i_cnt, item)
|
|
i_cnt += 1
|
|
continue
|
|
|
|
if arg_str not in avl_list:
|
|
key = "user_vm:id={},{}".format(i_cnt, item)
|
|
ERR_LIST[key] = "The {} is invalidate".format(item)
|
|
i_cnt += 1
|
|
|
|
|
|
def mem_size_check(arg_list, item):
|
|
"""
|
|
check memory size list which are set from webUI
|
|
:param arg_list: the list of arguments from config xml
|
|
:param item: the item of tag from config xml
|
|
:return: None
|
|
"""
|
|
# get total memory information
|
|
total_mem_mb = board_cfg_lib.get_total_mem()
|
|
|
|
# available check
|
|
i_cnt = 1
|
|
for arg_str in arg_list.values():
|
|
if arg_str == None or not arg_str.strip():
|
|
empty_err(i_cnt, item)
|
|
i_cnt += 1
|
|
continue
|
|
|
|
mem_size_set = int(arg_str.strip())
|
|
if mem_size_set > total_mem_mb:
|
|
key = "user_vm:id={},{}".format(i_cnt, item)
|
|
ERR_LIST[key] = "{}MB should be less than total memory {}MB".format(item)
|
|
i_cnt += 1
|
|
|
|
|
|
def virtual_dev_slot(dev):
|
|
max_slot = 31
|
|
base_slot = 3
|
|
|
|
# get devices slot which already stored
|
|
if dev in list(PT_SLOT.keys()):
|
|
return PT_SLOT[dev]
|
|
|
|
# alloc a new slot for device
|
|
for slot_num in range(base_slot, max_slot):
|
|
if slot_num not in list(PT_SLOT.values()):
|
|
|
|
if (slot_num == 6 and 14 in list(PT_SLOT.values())) or (slot_num == 14 and 6 in list(PT_SLOT.values())):
|
|
continue
|
|
if (slot_num == 7 and 15 in list(PT_SLOT.values())) or (slot_num == 15 and 7 in list(PT_SLOT.values())):
|
|
continue
|
|
|
|
PT_SLOT[dev] = slot_num
|
|
break
|
|
|
|
return slot_num
|
|
|
|
|
|
def get_slot(bdf_list, dev):
|
|
|
|
slot_list = {}
|
|
post_vm_list = get_post_num_list()
|
|
for p_id in post_vm_list:
|
|
if not bdf_list[p_id]:
|
|
slot_list[p_id] = ''
|
|
else:
|
|
slot_fun = virtual_dev_slot(dev)
|
|
PT_SLOT[dev] = slot_fun
|
|
slot_list[p_id] = slot_fun
|
|
|
|
return slot_list
|
|
|
|
|
|
def reset_pt_slot():
|
|
|
|
global PT_SLOT
|
|
|
|
PT_SLOT = {
|
|
"hostbridge":0,
|
|
"lpc":1,
|
|
"pci-gvt":2,
|
|
"virtio-blk":3,
|
|
"igd-lpc":31,
|
|
}
|
|
|
|
|
|
def get_pt_dev():
|
|
""" Get passthrough device list """
|
|
cap_pt = PASSTHRU_DEVS
|
|
|
|
return cap_pt
|
|
|
|
|
|
def get_vuart1_from_scenario(vmid):
|
|
"""Get the vmid's vuart1 base"""
|
|
vuart1 = common.get_vuart_info_id(common.SCENARIO_INFO_FILE, 1)
|
|
return vuart1[vmid]['base']
|
|
|
|
|
|
def pt_devs_check_audio(audio_map, audio_codec_map):
|
|
"""
|
|
Check the connections about audio/audio_codec pass-through devices
|
|
If audio_codec is selected as pass-through device, the audio device
|
|
must to be chosen as pass-through device either.
|
|
:param audio_map: the dictionary contains vmid and bdf of audio device
|
|
:param audio_codec_map: the dictionary contains vmid and bdf of audio_codec device
|
|
"""
|
|
for vmid in list(audio_map.keys()):
|
|
bdf_audio = audio_map[vmid]
|
|
bdf_codec = audio_codec_map[vmid]
|
|
if not bdf_audio and bdf_codec:
|
|
key = "user_vm:id={},passthrough_devices,{}".format(vmid, 'audio_codec')
|
|
ERR_LIST[key] = "Audio codec device should be pass through together with Audio devcie!"
|
|
|
|
|
|
def check_block_mount(virtio_blk_dic):
|
|
(blk_dev_list, num) = board_cfg_lib.get_rootfs(common.BOARD_INFO_FILE)
|
|
for vmid in list(virtio_blk_dic.keys()):
|
|
mount_flags = []
|
|
for blk in virtio_blk_dic[vmid]:
|
|
rootfs_img = ''
|
|
if not blk:
|
|
mount_flags.append(False)
|
|
continue
|
|
|
|
if ':' in blk:
|
|
blk_dev = blk.split(':')[0]
|
|
rootfs_img = blk.split(':')[1]
|
|
else:
|
|
blk_dev = blk
|
|
|
|
if blk_dev in blk_dev_list and rootfs_img:
|
|
mount_flags.append(True)
|
|
else:
|
|
mount_flags.append(False)
|
|
|
|
MOUNT_FLAG_DIC[vmid] = mount_flags
|
|
|
|
|
|
def check_sriov_param(sriov_dev, pt_sel):
|
|
for dev_type in ['gpu', 'network']:
|
|
for vm_id, dev_bdf in sriov_dev[dev_type].items():
|
|
if not dev_bdf:
|
|
continue
|
|
pt_devname = dev_type
|
|
if pt_devname == 'network':
|
|
pt_devname = 'ethernet'
|
|
if pt_sel.bdf[pt_devname][vm_id]:
|
|
ERR_LIST[
|
|
'vmid:{} sriov {}'.format(vm_id, dev_type)
|
|
] = 'this vm has {} passthrough and sriov {} at same time!'.format(pt_devname, dev_type)
|
|
if not re.match(r'^[\da-fA-F]{2}:[0-3][\da-fA-F]\.[0-7]$', dev_bdf):
|
|
ERR_LIST['vmid:{} sriov {}'.format(vm_id, dev_type)] = 'sriov {} bdf error'.format(dev_type)
|
|
|
|
|
|
def bdf_duplicate_check(bdf_dic):
|
|
"""
|
|
Check if exist duplicate slot
|
|
:param bdf_dic: contains all selected pass-through devices
|
|
:return: None
|
|
"""
|
|
bdf_used = []
|
|
for dev in bdf_dic.keys():
|
|
dev_bdf_dic = bdf_dic[dev]
|
|
for vm_i in dev_bdf_dic.keys():
|
|
dev_bdf = dev_bdf_dic[vm_i]
|
|
if not dev_bdf:
|
|
continue
|
|
|
|
if dev_bdf in bdf_used:
|
|
key = "user_vm:id={},{},{}".format(vm_i, 'passthrough_devices', dev)
|
|
ERR_LIST[key] = "You select the same device for {} pass-through !".format(dev)
|
|
return
|
|
else:
|
|
bdf_used.append(dev_bdf)
|
|
|
|
|
|
def get_gpu_bdf():
|
|
|
|
pci_lines = board_cfg_lib.get_info(common.BOARD_INFO_FILE, "<PCI_DEVICE>", "</PCI_DEVICE>")
|
|
|
|
for line in pci_lines:
|
|
if "VGA compatible controller" in line:
|
|
global gpu_bdf
|
|
gpu_bdf = line.split('\t')[1]
|
|
gpu_bdf = gpu_bdf[0:7]
|
|
return gpu_bdf
|
|
|
|
|
|
def get_vpid_by_bdf(bdf):
|
|
vpid = ''
|
|
vpid_lines = board_cfg_lib.get_info(common.BOARD_INFO_FILE, "<PCI_VID_PID>", "</PCI_VID_PID>")
|
|
|
|
for vpid_line in vpid_lines:
|
|
if bdf in vpid_line:
|
|
vpid = " ".join(vpid_line.split()[2].split(':'))
|
|
return vpid
|
|
|
|
|
|
def get_gpu_vpid():
|
|
gpu_bdf = get_gpu_bdf()
|
|
return get_vpid_by_bdf(gpu_bdf)
|
|
|
|
|
|
def user_vm_cpu_affinity(user_vmid_cpu_affinity):
|
|
|
|
cpu_affinity = {}
|
|
sos_vm_id = get_sos_vmid()
|
|
for user_vmid,cpu_affinity_list in user_vmid_cpu_affinity.items():
|
|
cpu_affinity[int(user_vmid) + int(sos_vm_id)] = cpu_affinity_list
|
|
return cpu_affinity
|
|
|
|
|
|
def check_slot(slot_db):
|
|
|
|
slot_values = {}
|
|
# init list of slot values for Post VM
|
|
for dev in slot_db.keys():
|
|
for user_vmid in slot_db[dev].keys():
|
|
slot_values[user_vmid] = []
|
|
break
|
|
|
|
# get slot values for Passthrough devices
|
|
for dev in PASSTHRU_DEVS:
|
|
if dev == 'gpu':
|
|
continue
|
|
for user_vmid,slot_str in slot_db[dev].items():
|
|
if not slot_str:
|
|
continue
|
|
slot_values[user_vmid].append(slot_str)
|
|
|
|
# update slot values and replace the fun=0 if there is no fun 0 in bdf list
|
|
for dev in PASSTHRU_DEVS:
|
|
if dev == 'gpu':
|
|
continue
|
|
for user_vmid,slot_str in slot_db[dev].items():
|
|
if not slot_str or ':' not in str(slot_str):
|
|
continue
|
|
bus_slot = slot_str[0:-1]
|
|
bus_slot_fun0 = bus_slot + "0"
|
|
if bus_slot_fun0 not in slot_values[user_vmid]:
|
|
slot_db[dev][user_vmid] = bus_slot_fun0
|
|
slot_values[user_vmid].append(bus_slot_fun0)
|
|
|
|
|
|
def is_linux_like(user_vm_type):
|
|
|
|
is_linux = False
|
|
if user_vm_type in LINUX_LIKE_OS:
|
|
is_linux = True
|
|
|
|
return is_linux
|
|
|
|
|
|
def set_shm_regions(launch_item_values, scenario_info):
|
|
|
|
try:
|
|
raw_shmem_regions = common.get_hv_item_tag(scenario_info, "FEATURES", "IVSHMEM", "IVSHMEM_REGION")
|
|
load_orders = common.get_leaf_tag_map(scenario_info, "load_order")
|
|
shm_enabled = common.get_hv_item_tag(scenario_info, "FEATURES", "IVSHMEM", "IVSHMEM_ENABLED")
|
|
except:
|
|
return
|
|
|
|
sos_vm_id = 0
|
|
for vm_id,load_order in load_orders.items():
|
|
if load_order in ['SERVICE_VM']:
|
|
sos_vm_id = vm_id
|
|
elif load_order in ['POST_LAUNCHED_VM']:
|
|
user_vmid = vm_id - sos_vm_id
|
|
shm_region_key = 'user_vm:id={},shm_regions,shm_region'.format(user_vmid)
|
|
launch_item_values[shm_region_key] = ['']
|
|
if shm_enabled == 'y':
|
|
for shmem_region in raw_shmem_regions:
|
|
if shmem_region is None or shmem_region.strip() == '':
|
|
continue
|
|
try:
|
|
shm_splited = shmem_region.split(',')
|
|
name = shm_splited[0].strip()
|
|
size = shm_splited[1].strip()
|
|
vm_id_list = [x.strip() for x in shm_splited[2].split(':')]
|
|
if str(vm_id) in vm_id_list:
|
|
launch_item_values[shm_region_key].append(','.join([name, size]))
|
|
except Exception as e:
|
|
print(e)
|
|
|
|
|
|
def set_pci_vuarts(launch_item_values, scenario_info):
|
|
try:
|
|
launch_item_values['user_vm,console_vuart'] = DM_VUART0
|
|
load_orders = common.get_leaf_tag_map(scenario_info, 'load_order')
|
|
sos_vm_id = 0
|
|
for vm_id,load_order in load_orders.items():
|
|
if load_order in ['SERVICE_VM']:
|
|
sos_vm_id = vm_id
|
|
for vm in list(common.get_config_root(scenario_info)):
|
|
if vm.tag == 'vm' and load_orders[int(vm.attrib['id'])] == 'POST_LAUNCHED_VM':
|
|
user_vmid = int(vm.attrib['id']) - sos_vm_id
|
|
pci_vuart_key = 'user_vm:id={},communication_vuarts,communication_vuart'.format(user_vmid)
|
|
for elem in list(vm):
|
|
if elem.tag == 'communication_vuart':
|
|
for sub_elem in list(elem):
|
|
if sub_elem.tag == 'base' and sub_elem.text == 'PCI_VUART':
|
|
if pci_vuart_key not in launch_item_values.keys():
|
|
launch_item_values[pci_vuart_key] = ['', elem.attrib['id']]
|
|
else:
|
|
launch_item_values[pci_vuart_key].append(elem.attrib['id'])
|
|
except:
|
|
return
|
|
|
|
|
|
def check_shm_regions(launch_shm_regions, scenario_info):
|
|
launch_item_values = {}
|
|
set_shm_regions(launch_item_values, scenario_info)
|
|
|
|
for user_vmid, shm_regions in launch_shm_regions.items():
|
|
shm_region_key = 'user_vm:id={},shm_regions,shm_region'.format(user_vmid)
|
|
for shm_region in shm_regions:
|
|
if shm_region_key not in launch_item_values.keys() or shm_region not in launch_item_values[shm_region_key]:
|
|
ERR_LIST[shm_region_key] = "shm {} should be configured in scenario setting and the size should be decimal" \
|
|
"in MB and spaces should not exist.".format(shm_region)
|
|
return
|
|
|
|
|
|
def check_console_vuart(launch_console_vuart, vuart0, scenario_info):
|
|
vuarts = common.get_vuart_info(scenario_info)
|
|
|
|
for user_vmid, console_vuart_enable in launch_console_vuart.items():
|
|
key = 'user_vm:id={},console_vuart'.format(user_vmid)
|
|
if console_vuart_enable == "Enable" and vuart0[user_vmid] == "Enable":
|
|
ERR_LIST[key] = "vuart0 and console_vuart of user_vm {} should not be enabled " \
|
|
"at the same time".format(user_vmid)
|
|
return
|
|
if console_vuart_enable == "Enable" and int(user_vmid) in vuarts.keys() \
|
|
and 0 in vuarts[user_vmid] and vuarts[user_vmid][0]['base'] == "INVALID_PCI_BASE":
|
|
ERR_LIST[key] = "console_vuart of user_vm {} should be enabled in scenario setting".format(user_vmid)
|
|
return
|
|
|
|
|
|
def check_communication_vuart(launch_communication_vuarts, scenario_info):
|
|
vuarts = common.get_vuart_info(scenario_info)
|
|
vuart1_setting = common.get_vuart_info_id(common.SCENARIO_INFO_FILE, 1)
|
|
|
|
for user_vmid, vuart_list in launch_communication_vuarts.items():
|
|
vuart_key = 'user_vm:id={},communication_vuarts,communication_vuart'.format(user_vmid)
|
|
for vuart_id in vuart_list:
|
|
if not vuart_id:
|
|
return
|
|
if int(vuart_id) not in vuarts[user_vmid].keys():
|
|
ERR_LIST[vuart_key] = "communication_vuart {} of user_vm {} should be configured" \
|
|
"in scenario setting.".format(vuart_id, user_vmid)
|
|
return
|
|
if int(vuart_id) == 1 and vuarts[user_vmid][1]['base'] != "INVALID_PCI_BASE":
|
|
if user_vmid in vuart1_setting.keys() and vuart1_setting[user_vmid]['base'] != "INVALID_COM_BASE":
|
|
ERR_LIST[vuart_key] = "user_vm {}'s communication_vuart 1 and legacy_vuart 1 should " \
|
|
"not be configured at the same time.".format(user_vmid)
|
|
return
|
|
|
|
def check_enable_ptm(launch_enable_ptm, scenario_info):
|
|
scenario_etree = lxml.etree.parse(scenario_info)
|
|
enable_ptm_vm_list = scenario_etree.xpath("//vm[PTM = 'y']/@id")
|
|
for user_vmid, enable_ptm in launch_enable_ptm.items():
|
|
key = 'user_vm:id={},enable_ptm'.format(user_vmid)
|
|
if enable_ptm == 'y' and str(user_vmid) not in enable_ptm_vm_list:
|
|
ERR_LIST[key] = "PTM of user_vm:{} set to 'n' in scenario xml".format(user_vmid)
|