def _create_storage_pool(host_ip, uuid, request_id): ''' 创建存储池 :param host_ip: :param uuid: :return: ''' connect_storages = instanceManager.libvirt_get_connect( host_ip, conn_type='storages') pool_status, pool_name = instanceManager.libvirt_create_storage_pool( connect_storages, uuid) if pool_status: logging.info('create storage pool successful') message = '创建存储池成功' threadlock = threading.Lock() threadlock.acquire() v2v_op.updata_v2v_message(request_id, message) v2v_op.updata_v2v_ontask(request_id, '0') in_a_s.update_instance_actions(request_id, esx_v2vActions.CREATE_STOR_POOL, ActionStatus.SUCCSESS, message) v2v_op.update_v2v_step(request_id, esx_v2vActions.CREATE_STOR_POOL) threadlock.release() else: msg = "创建存储池失败" threadlock = threading.Lock() threadlock.acquire() v2v_op.updata_v2v_message(request_id, msg) v2v_op.updata_v2v_ontask(request_id, '0') v2v_op.update_v2v_actions(request_id, ActionStatus.FAILD) in_a_s.update_instance_actions(request_id, esx_v2vActions.CREATE_STOR_POOL, ActionStatus.FAILD, msg) threadlock.release()
def vm_start2(kvmhost, vmname, request_id, modulename, vm_uuid): command = 'virsh start ' + vmname remote_user = ANSIABLE_REMOTE_USER remote_pass = decrypt(KVMHOST_LOGIN_PASS) become_user = OPENSTACK_DEV_USER become_pass = decrypt(KVMHOST_SU_PASS) vmstart = ansible_run_shell(kvmhost, command) if 'contacted' not in vmstart: message = 'vm启动失败' threadlock = threading.Lock() threadlock.acquire() v2v_op.updata_v2v_message(request_id, message) v2v_op.update_v2v_actions(request_id, ActionStatus.FAILD) v2v_op.updata_v2v_ontask(request_id, '0') in_a_s.update_instance_actions(request_id, esx_v2vActions.VM_START2, ActionStatus.FAILD, message) threadlock.release() elif vmstart['contacted'] == {}: message = 'vm启动失败' threadlock = threading.Lock() threadlock.acquire() v2v_op.updata_v2v_message(request_id, message) v2v_op.update_v2v_actions(request_id, ActionStatus.FAILD) v2v_op.updata_v2v_ontask(request_id, '0') in_a_s.update_instance_actions(request_id, esx_v2vActions.VM_START2, ActionStatus.FAILD, message) threadlock.release() elif 'failed' in vmstart['contacted'][kvmhost]: message = 'vm启动失败' threadlock = threading.Lock() threadlock.acquire() v2v_op.updata_v2v_message(request_id, message) v2v_op.update_v2v_actions(request_id, ActionStatus.FAILD) v2v_op.updata_v2v_ontask(request_id, '0') in_a_s.update_instance_actions(request_id, esx_v2vActions.VM_START2, ActionStatus.FAILD, message) threadlock.release() elif vmstart['contacted'][kvmhost]['stdout'] == '': message = 'vm启动失败' threadlock = threading.Lock() threadlock.acquire() v2v_op.updata_v2v_message(request_id, message) v2v_op.update_v2v_actions(request_id, ActionStatus.FAILD) v2v_op.updata_v2v_ontask(request_id, '0') in_a_s.update_instance_actions(request_id, esx_v2vActions.VM_START2, ActionStatus.FAILD, message) threadlock.release() else: message = 'vm启动成功' threadlock = threading.Lock() threadlock.acquire() v2v_op.updata_v2v_message(request_id, message) in_a_s.update_instance_actions(request_id, esx_v2vActions.VM_START2, ActionStatus.SUCCSESS, message) v2v_op.updata_v2v_ontask(request_id, '0') v2v_op.update_v2v_step(request_id, esx_v2vActions.VM_START2) threadlock.release()
def win_vm_std(request_id): v2v_task = v2v_op.v2vTaskService().get_v2v_task_by_requestid(request_id) vmip = v2v_task['vm_ip'] ostype = 'Windows' ip_data = ip_s.IPService().get_ip_by_ip_address(vmip) vmmask_int = int(ip_data['netmask']) vmmask = exchange_maskint(vmmask_int) vmgateway = ip_data['gateway_ip'] vmname = v2v_task['vm_name'] dns1 = ip_data['dns1'] dns2 = ip_data['dns2'] host_ip = v2v_task['dest_host'] cloudarea = v2v_task['cloud_area'] connect_instance = instanceManager.libvirt_get_connect( host_ip, conn_type='instance', vmname=vmname) inject_stauts, mesg = instanceManager.v2v_esx_win_inject( connect_instance, vmname, vmip, vmgateway, dns1, dns2, vmmask, ostype, cloudarea) if inject_stauts: message = "信息注入成功" threadlock = threading.Lock() threadlock.acquire() v2v_op.updata_v2v_message(request_id, message) in_a_s.update_instance_actions(request_id, esx_v2vActions.WINDOWS_STD, ActionStatus.SUCCSESS, message) v2v_op.update_v2v_step(request_id, esx_v2vActions.WINDOWS_STD) v2v_op.updata_v2v_ontask(request_id, '0') vm_uuid = v2v_op.v2vTaskService().get_v2v_task_by_requestid( request_id)['vm_uuid'] v2v_op.update_v2v_actions(request_id, 1) v2v_op.update_v2v_step(request_id, esx_v2vActions.WINDOWS_STD) where_data = {'uuid': vm_uuid} update_data = {'status': '3'} ins_s.InstanceService().update_instance_info(update_data, where_data) threadlock.release() else: message = "信息注入失败" threadlock = threading.Lock() threadlock.acquire() v2v_op.updata_v2v_message(request_id, message) v2v_op.update_v2v_actions(request_id, ActionStatus.FAILD) v2v_op.updata_v2v_ontask(request_id, '0') in_a_s.update_instance_actions(request_id, esx_v2vActions.WINDOWS_STD, ActionStatus.FAILD, message) threadlock.release()
def createdir(kvmhost, request_id, modulename, dir): command = 'mkdir -p ' + dir remote_user = ANSIABLE_REMOTE_USER remote_pass = decrypt(KVMHOST_LOGIN_PASS) become_user = OPENSTACK_DEV_USER become_pass = decrypt(KVMHOST_SU_PASS) dir_result = ansible_run_shell(kvmhost, command) if 'contacted' not in dir_result: message = '创建vm目录失败' threadlock = threading.Lock() threadlock.acquire() v2v_op.updata_v2v_message(request_id, message) v2v_op.update_v2v_actions(request_id, ActionStatus.FAILD) v2v_op.updata_v2v_ontask(request_id, '0') in_a_s.update_instance_actions(request_id, esx_v2vActions.CREATE_DEST_DIR, ActionStatus.FAILD, message) threadlock.release() elif dir_result['contacted'] == {}: message = '创建vm目录失败' threadlock = threading.Lock() threadlock.acquire() v2v_op.updata_v2v_message(request_id, message) v2v_op.update_v2v_actions(request_id, ActionStatus.FAILD) v2v_op.updata_v2v_ontask(request_id, '0') in_a_s.update_instance_actions(request_id, esx_v2vActions.CREATE_DEST_DIR, ActionStatus.FAILD, message) threadlock.release() elif 'failed' in dir_result['contacted'][kvmhost]: message = '创建vm目录失败' threadlock = threading.Lock() threadlock.acquire() v2v_op.updata_v2v_message(request_id, message) v2v_op.update_v2v_actions(request_id, ActionStatus.FAILD) v2v_op.updata_v2v_ontask(request_id, '0') in_a_s.update_instance_actions(request_id, esx_v2vActions.CREATE_DEST_DIR, ActionStatus.FAILD, message) threadlock.release() else: data = dir message = '创建vm目录成功' threadlock = threading.Lock() threadlock.acquire() v2v_op.updata_v2v_message(request_id, message) in_a_s.update_instance_actions(request_id, esx_v2vActions.CREATE_DEST_DIR, ActionStatus.SUCCSESS, message) v2v_op.update_v2v_step(request_id, esx_v2vActions.CREATE_DEST_DIR) v2v_op.updata_v2v_ontask(request_id, '0') v2v_op.update_v2v_destdir(request_id, data) threadlock.release()
def virt_v2v(dest_dir, kvmhost, request_id, vmware_vm): virtv2v_command = 'cd '+ dest_dir +';virt-v2v -i libvirtxml /app/tmp/'+\ vmware_vm + '/'+vmware_vm+'.xml -o local -os ' + dest_dir +' -of qcow2 --network bond0' remote_user = ANSIABLE_REMOTE_USER remote_pass = decrypt(KVMHOST_LOGIN_PASS) become_user = OPENSTACK_DEV_USER become_pass = decrypt(KVMHOST_SU_PASS) virtv2v = ansible_run_shell(kvmhost, virtv2v_command) if 'contacted' not in virtv2v: message = '无法连接kvmhost' threadlock = threading.Lock() threadlock.acquire() v2v_op.updata_v2v_message(request_id, message) v2v_op.update_v2v_actions(request_id, ActionStatus.FAILD) v2v_op.updata_v2v_ontask(request_id, '0') in_a_s.update_instance_actions(request_id, esx_v2vActions.VIRT_V2V_FILES, ActionStatus.FAILD, message) threadlock.release() elif virtv2v['contacted'] == {}: message = '无法连接kvmhost' threadlock = threading.Lock() threadlock.acquire() v2v_op.updata_v2v_message(request_id, message) v2v_op.update_v2v_actions(request_id, ActionStatus.FAILD) v2v_op.updata_v2v_ontask(request_id, '0') in_a_s.update_instance_actions(request_id, esx_v2vActions.VIRT_V2V_FILES, ActionStatus.FAILD, message) threadlock.release() elif 'error' in virtv2v['contacted'][kvmhost]['stderr']: message = '转化vm文件失败' threadlock = threading.Lock() threadlock.acquire() v2v_op.updata_v2v_message(request_id, message) v2v_op.update_v2v_actions(request_id, ActionStatus.FAILD) v2v_op.updata_v2v_ontask(request_id, '0') in_a_s.update_instance_actions(request_id, esx_v2vActions.VIRT_V2V_FILES, ActionStatus.FAILD, message) threadlock.release() else: message = '转化vm文件成功' threadlock = threading.Lock() threadlock.acquire() v2v_op.updata_v2v_message(request_id, message) in_a_s.update_instance_actions(request_id, esx_v2vActions.VIRT_V2V_FILES, ActionStatus.SUCCSESS, message) v2v_op.update_v2v_step(request_id, esx_v2vActions.VIRT_V2V_FILES) v2v_op.updata_v2v_ontask(request_id, '0') threadlock.release()
def ch_sys_disk_name(dest_dir, kvmhost, vmware_vm, vm_name, request_id): remote_user = ANSIABLE_REMOTE_USER remote_pass = decrypt(KVMHOST_LOGIN_PASS) become_user = OPENSTACK_DEV_USER become_pass = decrypt(KVMHOST_SU_PASS) change_sysdisk_name = 'cd ' + dest_dir + ';mv ' + vmware_vm + '-sda ' + vm_name + '.img' chsysdiskname = ansible_run_shell(kvmhost, change_sysdisk_name) if 'contacted' not in chsysdiskname: message = '无法连接kvmhost' threadlock = threading.Lock() threadlock.acquire() v2v_op.updata_v2v_message(request_id, message) v2v_op.update_v2v_actions(request_id, ActionStatus.FAILD) v2v_op.updata_v2v_ontask(request_id, '0') in_a_s.update_instance_actions(request_id, esx_v2vActions.VM_SYS_DISK_STD, ActionStatus.FAILD, message) threadlock.release() elif chsysdiskname['contacted'] == {}: message = '无法连接kvmhost' threadlock = threading.Lock() threadlock.acquire() v2v_op.updata_v2v_message(request_id, message) v2v_op.update_v2v_actions(request_id, ActionStatus.FAILD) v2v_op.updata_v2v_ontask(request_id, '0') in_a_s.update_instance_actions(request_id, esx_v2vActions.VM_SYS_DISK_STD, ActionStatus.FAILD, message) threadlock.release() elif 'error' in chsysdiskname['contacted'][kvmhost]['stderr']: message = '标准化vm系统盘文件失败' threadlock = threading.Lock() threadlock.acquire() v2v_op.updata_v2v_message(request_id, message) v2v_op.update_v2v_actions(request_id, ActionStatus.FAILD) v2v_op.updata_v2v_ontask(request_id, '0') in_a_s.update_instance_actions(request_id, esx_v2vActions.VM_SYS_DISK_STD, ActionStatus.FAILD, message) threadlock.release() else: message = '标准化vm系统盘文件成功' threadlock = threading.Lock() threadlock.acquire() v2v_op.updata_v2v_message(request_id, message) in_a_s.update_instance_actions(request_id, esx_v2vActions.VM_SYS_DISK_STD, ActionStatus.SUCCSESS, message) v2v_op.update_v2v_step(request_id, esx_v2vActions.VM_SYS_DISK_STD) v2v_op.updata_v2v_ontask(request_id, '0') threadlock.release()
def rmrawfile(kvmhost, vmware_vm, request_id): remote_user = ANSIABLE_REMOTE_USER remote_pass = decrypt(KVMHOST_LOGIN_PASS) become_user = OPENSTACK_DEV_USER become_pass = decrypt(KVMHOST_SU_PASS) rm_raw_file = 'cd /app/tmp/' + vmware_vm + '/;rm -f ' + vmware_vm + '*;rmdir /app/tmp/' + vmware_vm rmrawfile = ansible_run_shell(kvmhost, rm_raw_file) if 'contacted' not in rmrawfile: message = '无法连接kvmhost' threadlock = threading.Lock() threadlock.acquire() v2v_op.updata_v2v_message(request_id, message) v2v_op.update_v2v_actions(request_id, ActionStatus.FAILD) v2v_op.updata_v2v_ontask(request_id, '0') in_a_s.update_instance_actions(request_id, esx_v2vActions.DELETE_TMP_FILE, ActionStatus.FAILD, message) threadlock.release() elif rmrawfile['contacted'] == {}: message = '无法连接kvmhost' threadlock = threading.Lock() threadlock.acquire() v2v_op.updata_v2v_message(request_id, message) v2v_op.update_v2v_actions(request_id, ActionStatus.FAILD) v2v_op.updata_v2v_ontask(request_id, '0') in_a_s.update_instance_actions(request_id, esx_v2vActions.DELETE_TMP_FILE, ActionStatus.FAILD, message) threadlock.release() elif 'error' in rmrawfile['contacted'][kvmhost]['stderr']: message = '删除转化临时文件失败' threadlock = threading.Lock() threadlock.acquire() v2v_op.updata_v2v_message(request_id, message) v2v_op.update_v2v_actions(request_id, ActionStatus.FAILD) v2v_op.updata_v2v_ontask(request_id, '0') in_a_s.update_instance_actions(request_id, esx_v2vActions.DELETE_TMP_FILE, ActionStatus.FAILD, message) threadlock.release() else: message = '删除转化临时文件完成' threadlock = threading.Lock() threadlock.acquire() v2v_op.updata_v2v_message(request_id, message) in_a_s.update_instance_actions(request_id, esx_v2vActions.DELETE_TMP_FILE, ActionStatus.SUCCSESS, message) v2v_op.update_v2v_step(request_id, esx_v2vActions.DELETE_TMP_FILE) v2v_op.updata_v2v_ontask(request_id, '0') threadlock.release()
def win_disk_ch(vm_name, kvmhost, request_id): vmsd, msg = vm_shutdown(kvmhost, vm_name) if not vmsd: message = msg threadlock = threading.Lock() threadlock.acquire() v2v_op.updata_v2v_message(request_id, message) v2v_op.update_v2v_actions(request_id, ActionStatus.FAILD) v2v_op.updata_v2v_ontask(request_id, '0') in_a_s.update_instance_actions(request_id, esx_v2vActions.WINDOWS_DISK_CH, ActionStatus.FAILD, message) threadlock.release() else: disktype = 'virtio' v2v_win_disk_ch = instanceManager.v2v_win_disk_ch( kvmhost, vm_name, disktype) if not v2v_win_disk_ch: message = '修改磁盘格式失败' threadlock = threading.Lock() threadlock.acquire() v2v_op.updata_v2v_message(request_id, message) v2v_op.update_v2v_actions(request_id, ActionStatus.FAILD) v2v_op.updata_v2v_ontask(request_id, '0') in_a_s.update_instance_actions(request_id, esx_v2vActions.WINDOWS_DISK_CH, ActionStatus.FAILD, message) threadlock.release() else: message = '修改磁盘格式成功' threadlock = threading.Lock() threadlock.acquire() v2v_op.updata_v2v_message(request_id, message) in_a_s.update_instance_actions(request_id, esx_v2vActions.WINDOWS_DISK_CH, ActionStatus.SUCCSESS, message) v2v_op.updata_v2v_ontask(request_id, '0') v2v_op.update_v2v_step(request_id, esx_v2vActions.WINDOWS_DISK_CH) threadlock.release()
def v2v_esx_disk_attach_static(vm_name, kvmhost, request_id): create_disk = 'cd /tmp;rm -f diskimg;qemu-img create -f qcow2 diskimg 20G' remote_user = ANSIABLE_REMOTE_USER remote_pass = decrypt(KVMHOST_LOGIN_PASS) become_user = OPENSTACK_DEV_USER become_pass = decrypt(KVMHOST_SU_PASS) createdisk = ansible_run_shell(kvmhost, create_disk) if 'contacted' not in createdisk: message = '连接目标kvmhost失败' threadlock = threading.Lock() threadlock.acquire() v2v_op.updata_v2v_message(request_id, message) v2v_op.update_v2v_actions(request_id, ActionStatus.FAILD) v2v_op.updata_v2v_ontask(request_id, '0') in_a_s.update_instance_actions(request_id, esx_v2vActions.ATTACH_DISK, ActionStatus.FAILD, message) threadlock.release() elif createdisk['contacted'] == {}: message = '连接目标kvmhost失败' threadlock = threading.Lock() threadlock.acquire() v2v_op.updata_v2v_message(request_id, message) v2v_op.update_v2v_actions(request_id, ActionStatus.FAILD) v2v_op.updata_v2v_ontask(request_id, '0') in_a_s.update_instance_actions(request_id, esx_v2vActions.ATTACH_DISK, ActionStatus.FAILD, message) threadlock.release() elif 'failed' in createdisk['contacted'][kvmhost]: message = '创建临时磁盘失败' threadlock = threading.Lock() threadlock.acquire() v2v_op.updata_v2v_message(request_id, message) v2v_op.update_v2v_actions(request_id, ActionStatus.FAILD) v2v_op.updata_v2v_ontask(request_id, '0') in_a_s.update_instance_actions(request_id, esx_v2vActions.ATTACH_DISK, ActionStatus.FAILD, message) threadlock.release() else: time.sleep(200) xml = """ <disk type='file' device='disk'> <driver name='qemu' type='qcow2'/> <source file='/tmp/diskimg'/> <target dev='vdi' bus='virtio'/> </disk>""" att_device = instanceManager.v2v_esx_attach_device( kvmhost, vm_name, xml) if not att_device: message = '添加临时磁盘失败' threadlock = threading.Lock() threadlock.acquire() v2v_op.updata_v2v_message(request_id, message) v2v_op.update_v2v_actions(request_id, ActionStatus.FAILD) v2v_op.updata_v2v_ontask(request_id, '0') in_a_s.update_instance_actions(request_id, esx_v2vActions.ATTACH_DISK, ActionStatus.FAILD, message) threadlock.release() else: message = '添加临时磁盘成功' time.sleep(15) threadlock = threading.Lock() threadlock.acquire() v2v_op.updata_v2v_message(request_id, message) in_a_s.update_instance_actions(request_id, esx_v2vActions.ATTACH_DISK, ActionStatus.SUCCSESS, message) v2v_op.updata_v2v_ontask(request_id, '0') v2v_op.update_v2v_step(request_id, esx_v2vActions.ATTACH_DISK) threadlock.release()
def vm_start1(kvmhost, vmname, request_id, modulename, vm_ostype): command = 'virsh start ' + vmname remote_user = ANSIABLE_REMOTE_USER remote_pass = decrypt(KVMHOST_LOGIN_PASS) become_user = OPENSTACK_DEV_USER become_pass = decrypt(KVMHOST_SU_PASS) vmstart = ansible_run_shell(kvmhost, command) if 'contacted' not in vmstart: message = 'vm启动失败' threadlock = threading.Lock() threadlock.acquire() v2v_op.updata_v2v_message(request_id, message) v2v_op.update_v2v_actions(request_id, ActionStatus.FAILD) v2v_op.updata_v2v_ontask(request_id, '0') in_a_s.update_instance_actions(request_id, esx_v2vActions.VM_START1, ActionStatus.FAILD, message) threadlock.release() elif vmstart['contacted'] == {}: message = 'vm启动失败' threadlock = threading.Lock() threadlock.acquire() v2v_op.updata_v2v_message(request_id, message) v2v_op.update_v2v_actions(request_id, ActionStatus.FAILD) v2v_op.updata_v2v_ontask(request_id, '0') in_a_s.update_instance_actions(request_id, esx_v2vActions.VM_START1, ActionStatus.FAILD, message) threadlock.release() elif 'failed' in vmstart['contacted'][kvmhost]: message = 'vm启动失败' threadlock = threading.Lock() threadlock.acquire() v2v_op.updata_v2v_message(request_id, message) v2v_op.update_v2v_actions(request_id, ActionStatus.FAILD) v2v_op.updata_v2v_ontask(request_id, '0') in_a_s.update_instance_actions(request_id, esx_v2vActions.VM_START1, ActionStatus.FAILD, message) threadlock.release() elif vmstart['contacted'][kvmhost]['stdout'] == '': message = 'vm启动失败' threadlock = threading.Lock() threadlock.acquire() v2v_op.updata_v2v_message(request_id, message) v2v_op.update_v2v_actions(request_id, ActionStatus.FAILD) v2v_op.updata_v2v_ontask(request_id, '0') in_a_s.update_instance_actions(request_id, esx_v2vActions.VM_START1, ActionStatus.FAILD, message) threadlock.release() else: message = 'vm启动成功' threadlock = threading.Lock() threadlock.acquire() v2v_op.updata_v2v_message(request_id, message) in_a_s.update_instance_actions(request_id, esx_v2vActions.VM_START1, ActionStatus.SUCCSESS, message) v2v_op.updata_v2v_ontask(request_id, '0') v2v_op.update_v2v_step(request_id, esx_v2vActions.VM_START1) if vm_ostype == "Linux": vm_uuid = v2v_op.v2vTaskService().get_v2v_task_by_requestid( request_id)['vm_uuid'] where_data = {'uuid': vm_uuid} update_data = {'status': '3'} ins_s.InstanceService().update_instance_info( update_data, where_data) v2v_op.update_v2v_actions(request_id, 1) threadlock.release()
def vm_define(request_id, vm_ostype, kvmhost, hostname, memory_mb, vcpu, uuid, volumes_d, vlan, mac): ''' :param libvirt_connect_create: :param hostname: 主机名 :param memory_mb: 内存大小 :param vcpu: cpu个数 :param uuid: instance uuid :param volumes_d: 磁盘的字典 :param net_card: :param mac: mac地址 :param disk_xml: 磁盘的xml文件 :return: ''' connect_create = instanceManager.libvirt_get_connect(kvmhost) if not connect_create: message = '连接kvmhost libvirt失败' threadlock = threading.Lock() threadlock.acquire() v2v_op.updata_v2v_message(request_id, message) v2v_op.update_v2v_actions(request_id, ActionStatus.FAILD) v2v_op.updata_v2v_ontask(request_id, '0') in_a_s.update_instance_actions(request_id, esx_v2vActions.VM_DEFINE1, ActionStatus.FAILD, message) threadlock.release() else: vm_vlan = 'br_bond0.' + vlan connect_create.refresh_storage_pool_by_name(uuid) succeed_create_xml = False retry_create_xml = 0 while retry_create_xml < 3 and not succeed_create_xml: try: if vm_ostype == "Linux": instance_xml = connect_create.v2v_esx_xml( hostname, memory_mb, vcpu, False, uuid, volumes_d, 'default', vm_vlan, True, mac) else: instance_xml = connect_create.v2v_esx_xml( hostname, memory_mb, vcpu, False, uuid, volumes_d, 'default', vm_vlan, False, mac) succeed_create_xml = True except libvirtError as err: logging.error( "create host connect failed ,name: %s ;because %s" % (hostname, err)) retry_create_xml += 1 time.sleep(5) if retry_create_xml == 3: message = "vm注册失败" threadlock = threading.Lock() threadlock.acquire() v2v_op.updata_v2v_message(request_id, message) v2v_op.update_v2v_actions(request_id, ActionStatus.FAILD) v2v_op.updata_v2v_ontask(request_id, '0') in_a_s.update_instance_actions(request_id, esx_v2vActions.VM_DEFINE1, ActionStatus.FAILD, message) threadlock.release() return False, err else: message = 'vm注册成功' threadlock = threading.Lock() threadlock.acquire() v2v_op.updata_v2v_message(request_id, message) in_a_s.update_instance_actions(request_id, esx_v2vActions.VM_DEFINE1, ActionStatus.SUCCSESS, message) v2v_op.update_v2v_step(request_id, esx_v2vActions.VM_DEFINE1) v2v_op.updata_v2v_ontask(request_id, '0') threadlock.release() return True, instance_xml
def vm_data_disk_std(dest_dir, kvmhost, vm_name, request_id, vmware_vm): datadisk_tag, datadisk_res = get_vm_data_disk(dest_dir, kvmhost) if not datadisk_tag: fail_msg = datadisk_res threadlock = threading.Lock() threadlock.acquire() v2v_op.updata_v2v_message(request_id, fail_msg) v2v_op.update_v2v_actions(request_id, ActionStatus.FAILD) v2v_op.updata_v2v_ontask(request_id, '0') in_a_s.update_instance_actions(request_id, esx_v2vActions.VM_DATA_DISK_STD, ActionStatus.FAILD, fail_msg) threadlock.release() else: if int(datadisk_res) == 0: message = "该vm无数据盘" vmlistdata = '0' v2v_op.up_esxv2v_vlist(request_id, vmlistdata) rm_vmfolder_res, rm_vmfolder_msg = del_vm_folder_file( dest_dir, kvmhost, vmware_vm) if not rm_vmfolder_res: message = "重命名vm数据盘成功,临时文件清理失败" else: message = "重命名vm数据盘成功" threadlock = threading.Lock() threadlock.acquire() v2v_op.updata_v2v_message(request_id, message) in_a_s.update_instance_actions(request_id, esx_v2vActions.VM_DATA_DISK_STD, ActionStatus.SUCCSESS, message) v2v_op.update_v2v_step(request_id, esx_v2vActions.VM_DATA_DISK_STD) v2v_op.updata_v2v_ontask(request_id, '0') threadlock.release() else: total = 0 datanum = int(datadisk_res) tag = 1 volumetag = [ 'tag', '-sdb', '-sdc', '-sdd', '-sde', '-sdf', '-sdg', '-sdh', '-sdi', '-sdj' ] while tag <= datanum: datadisk = vmware_vm + volumetag[tag] res, res_msg = vm_data_disk_rename(datadisk, dest_dir, tag, vm_name, kvmhost) tag = tag + 1 total = total + res if total > 0: message = "重命名vm数据盘失败" threadlock = threading.Lock() threadlock.acquire() v2v_op.updata_v2v_message(request_id, message) v2v_op.update_v2v_actions(request_id, ActionStatus.FAILD) v2v_op.updata_v2v_ontask(request_id, '0') in_a_s.update_instance_actions(request_id, esx_v2vActions.VM_DATA_DISK_STD, ActionStatus.FAILD, message) threadlock.release() else: v2v_op.up_esxv2v_vlist(request_id, str(datanum)) rm_vmfolder_res, rm_vmfolder_msg = del_vm_folder_file( dest_dir, kvmhost, vmware_vm) if not rm_vmfolder_res: message = "重命名vm数据盘成功,临时文件清理失败" else: message = "重命名vm数据盘成功" threadlock = threading.Lock() threadlock.acquire() v2v_op.updata_v2v_message(request_id, message) in_a_s.update_instance_actions(request_id, esx_v2vActions.VM_DATA_DISK_STD, ActionStatus.SUCCSESS, message) v2v_op.update_v2v_step(request_id, esx_v2vActions.VM_DATA_DISK_STD) v2v_op.updata_v2v_ontask(request_id, '0') threadlock.release()
def virt_v2v_copy_to_local(dest_dir, kvmhost, esx_ip, esx_passwd, vmware_vm, request_id): echopass_command = 'mkdir -p /tmp/' + esx_ip + ';echo ' + esx_passwd + ' >> /tmp/' + esx_ip + '/passwd' remote_user = ANSIABLE_REMOTE_USER remote_pass = decrypt(KVMHOST_LOGIN_PASS) become_user = OPENSTACK_DEV_USER become_pass = decrypt(KVMHOST_SU_PASS) echopass = ansible_run_shell(kvmhost, echopass_command) if 'contacted' not in echopass: message = '无法连接kvmhost' threadlock = threading.Lock() threadlock.acquire() v2v_op.updata_v2v_message(request_id, message) v2v_op.update_v2v_actions(request_id, ActionStatus.FAILD) v2v_op.updata_v2v_ontask(request_id, '0') in_a_s.update_instance_actions(request_id, esx_v2vActions.COPY_FILE_TO_LOCAL, ActionStatus.FAILD, message) threadlock.release() elif echopass['contacted'] == {}: message = '无法连接kvmhost' threadlock = threading.Lock() threadlock.acquire() v2v_op.updata_v2v_message(request_id, message) v2v_op.update_v2v_actions(request_id, ActionStatus.FAILD) v2v_op.updata_v2v_ontask(request_id, '0') in_a_s.update_instance_actions(request_id, esx_v2vActions.COPY_FILE_TO_LOCAL, ActionStatus.FAILD, message) threadlock.release() elif "error" in echopass['contacted'][kvmhost]['stderr']: message = '记录esxi密码失败' threadlock = threading.Lock() threadlock.acquire() v2v_op.updata_v2v_message(request_id, message) v2v_op.update_v2v_actions(request_id, ActionStatus.FAILD) v2v_op.updata_v2v_ontask(request_id, '0') in_a_s.update_instance_actions(request_id, esx_v2vActions.COPY_FILE_TO_LOCAL, ActionStatus.FAILD, message) threadlock.release() else: rmfilefirst = 'rm -f /app/tmp/' + vmware_vm + '/' + vmware_vm + '*' rmfile_first = ansible_run_shell(kvmhost, rmfilefirst) if rmfile_first['contacted'] == {} or "error" in rmfile_first[ 'contacted'][kvmhost]['stderr']: message = "清除临时文件失败" threadlock = threading.Lock() threadlock.acquire() v2v_op.updata_v2v_message(request_id, message) v2v_op.update_v2v_actions(request_id, ActionStatus.FAILD) v2v_op.updata_v2v_ontask(request_id, '0') in_a_s.update_instance_actions(request_id, esx_v2vActions.COPY_FILE_TO_LOCAL, ActionStatus.FAILD, message) threadlock.release() else: copy_to_local_command = 'mkdir -p /app/tmp/'+ vmware_vm +'/;export TMPDIR=/app/tmp;cd /app/tmp/'+ vmware_vm +'/;virt-v2v-copy-to-local -ic esx://root@' \ + esx_ip + '?no_verify=1 ' + vmware_vm + ' --password-file ' + '/tmp/' + esx_ip + '/passwd' copy_local = ansible_run_shell(kvmhost, copy_to_local_command) if copy_local['contacted'] == {}: message = '无法连接kvmhost' threadlock = threading.Lock() threadlock.acquire() v2v_op.updata_v2v_message(request_id, message) v2v_op.update_v2v_actions(request_id, ActionStatus.FAILD) v2v_op.updata_v2v_ontask(request_id, '0') in_a_s.update_instance_actions( request_id, esx_v2vActions.COPY_FILE_TO_LOCAL, ActionStatus.FAILD, message) threadlock.release() elif 'error' in copy_local['contacted'][kvmhost]['stderr']: message = '拷贝vm文件到目标host失败' threadlock = threading.Lock() threadlock.acquire() v2v_op.updata_v2v_message(request_id, message) v2v_op.update_v2v_actions(request_id, ActionStatus.FAILD) v2v_op.updata_v2v_ontask(request_id, '0') in_a_s.update_instance_actions( request_id, esx_v2vActions.COPY_FILE_TO_LOCAL, ActionStatus.FAILD, message) threadlock.release() else: rm_esxpass_com = "rm -f /tmp/" + esx_ip + '/passwd;rmdir /tmp/' + esx_ip rmesxpass_com = ansible_run_shell(kvmhost, rm_esxpass_com) if rmesxpass_com['contacted'] == {} or 'error' in rmesxpass_com[ 'contacted'][kvmhost]['stderr']: message = 'vm文件拷贝成功,删除esxi密码文件失败' else: message = 'vm文件拷贝成功,删除esxi密码文件成功' threadlock = threading.Lock() threadlock.acquire() v2v_op.updata_v2v_message(request_id, message) in_a_s.update_instance_actions( request_id, esx_v2vActions.COPY_FILE_TO_LOCAL, ActionStatus.SUCCSESS, message) v2v_op.update_v2v_step(request_id, esx_v2vActions.COPY_FILE_TO_LOCAL) v2v_op.updata_v2v_ontask(request_id, '0') threadlock.release()