2018-09-20 03:25:58 -04:00
|
|
|
#!/usr/bin/env python3
|
|
|
|
|
|
|
|
# vm.py - PVC client function library, VM fuctions
|
|
|
|
# Part of the Parallel Virtual Cluster (PVC) system
|
|
|
|
#
|
2023-12-29 11:16:59 -05:00
|
|
|
# Copyright (C) 2018-2024 Joshua M. Boniface <joshua@boniface.me>
|
2018-09-20 03:25:58 -04:00
|
|
|
#
|
|
|
|
# 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
|
2021-03-25 16:57:17 -04:00
|
|
|
# the Free Software Foundation, version 3.
|
2018-09-20 03:25:58 -04:00
|
|
|
#
|
|
|
|
# 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, see <https://www.gnu.org/licenses/>.
|
|
|
|
#
|
|
|
|
###############################################################################
|
|
|
|
|
|
|
|
import time
|
|
|
|
import re
|
2023-10-17 10:15:06 -04:00
|
|
|
import os.path
|
2018-09-20 03:25:58 -04:00
|
|
|
import lxml.objectify
|
2021-05-23 16:41:42 -04:00
|
|
|
import lxml.etree
|
Implement friendlier VM mirror commands
Adds two helper commands which automate sending and promoting VM
snapshots as "vm mirror" commands.
"vm mirror create" replicates the functionality of "snapshot create" and
"snapshot send", performing both in one single task using an
autogenerated dated snapshot name for automatic cross-cluster
replication.
"vm mirror promote" replicates the functionality of "vm shutdown",
"snapshot create", "snapshot send", "vm start" (remote), and,
optionally, "vm remove", performing in one single task an entire
cross-cluster VM move with or without retaining the copy on the local
cluster (if retained, the local copy becomes a snapshot mirror of the
remote, flipping their statuses).
2024-10-08 22:53:12 -04:00
|
|
|
import rados
|
|
|
|
import requests
|
2019-04-11 19:06:06 -04:00
|
|
|
|
2021-07-01 17:24:47 -04:00
|
|
|
from concurrent.futures import ThreadPoolExecutor
|
2023-10-17 10:15:06 -04:00
|
|
|
from datetime import datetime
|
2023-10-24 01:08:36 -04:00
|
|
|
from distutils.util import strtobool
|
2023-10-17 10:15:06 -04:00
|
|
|
from json import dump as jdump
|
2023-10-23 11:00:54 -04:00
|
|
|
from json import load as jload
|
2023-11-05 22:32:41 -05:00
|
|
|
from json import loads as jloads
|
|
|
|
from libvirt import open as lvopen
|
2024-01-10 14:18:44 -05:00
|
|
|
from os import scandir
|
Implement friendlier VM mirror commands
Adds two helper commands which automate sending and promoting VM
snapshots as "vm mirror" commands.
"vm mirror create" replicates the functionality of "snapshot create" and
"snapshot send", performing both in one single task using an
autogenerated dated snapshot name for automatic cross-cluster
replication.
"vm mirror promote" replicates the functionality of "vm shutdown",
"snapshot create", "snapshot send", "vm start" (remote), and,
optionally, "vm remove", performing in one single task an entire
cross-cluster VM move with or without retaining the copy on the local
cluster (if retained, the local copy becomes a snapshot mirror of the
remote, flipping their statuses).
2024-10-08 22:53:12 -04:00
|
|
|
from packaging.version import parse as parse_version
|
|
|
|
from rbd import Image as RBDImage
|
2023-10-24 01:08:36 -04:00
|
|
|
from shutil import rmtree
|
|
|
|
from socket import gethostname
|
|
|
|
from uuid import UUID
|
2021-06-28 12:27:43 -04:00
|
|
|
|
2020-02-08 18:48:59 -05:00
|
|
|
import daemon_lib.common as common
|
|
|
|
import daemon_lib.ceph as ceph
|
2023-11-05 22:32:41 -05:00
|
|
|
|
2021-06-21 22:21:54 -04:00
|
|
|
from daemon_lib.network import set_sriov_vf_vm, unset_sriov_vf_vm
|
2023-11-05 22:32:41 -05:00
|
|
|
from daemon_lib.celery import start, update, fail, finish
|
2019-06-27 11:19:48 -04:00
|
|
|
|
2020-11-07 14:45:24 -05:00
|
|
|
|
2018-09-20 03:25:58 -04:00
|
|
|
#
|
|
|
|
# Cluster search functions
|
|
|
|
#
|
2021-05-29 21:17:19 -04:00
|
|
|
def getClusterDomainList(zkhandler):
|
2018-09-20 03:25:58 -04:00
|
|
|
# Get a list of UUIDs by listing the children of /domains
|
2021-11-06 03:02:43 -04:00
|
|
|
uuid_list = zkhandler.children("base.domain")
|
2018-09-20 03:25:58 -04:00
|
|
|
name_list = []
|
|
|
|
# For each UUID, get the corresponding name from the data
|
|
|
|
for uuid in uuid_list:
|
2021-11-06 03:02:43 -04:00
|
|
|
name_list.append(zkhandler.read(("domain", uuid)))
|
2018-09-20 03:25:58 -04:00
|
|
|
return uuid_list, name_list
|
|
|
|
|
2020-11-07 14:45:24 -05:00
|
|
|
|
2021-05-29 21:17:19 -04:00
|
|
|
def searchClusterByUUID(zkhandler, uuid):
|
2018-09-20 03:25:58 -04:00
|
|
|
try:
|
|
|
|
# Get the lists
|
2021-05-29 21:17:19 -04:00
|
|
|
uuid_list, name_list = getClusterDomainList(zkhandler)
|
2018-09-20 03:25:58 -04:00
|
|
|
# We're looking for UUID, so find that element ID
|
|
|
|
index = uuid_list.index(uuid)
|
|
|
|
# Get the name_list element at that index
|
|
|
|
name = name_list[index]
|
|
|
|
except ValueError:
|
|
|
|
# We didn't find anything
|
|
|
|
return None
|
|
|
|
|
|
|
|
return name
|
|
|
|
|
2020-11-07 14:45:24 -05:00
|
|
|
|
2021-05-29 21:17:19 -04:00
|
|
|
def searchClusterByName(zkhandler, name):
|
2018-09-20 03:25:58 -04:00
|
|
|
try:
|
|
|
|
# Get the lists
|
2021-05-29 21:17:19 -04:00
|
|
|
uuid_list, name_list = getClusterDomainList(zkhandler)
|
2018-09-20 03:25:58 -04:00
|
|
|
# We're looking for name, so find that element ID
|
|
|
|
index = name_list.index(name)
|
|
|
|
# Get the uuid_list element at that index
|
|
|
|
uuid = uuid_list[index]
|
|
|
|
except ValueError:
|
|
|
|
# We didn't find anything
|
|
|
|
return None
|
|
|
|
|
|
|
|
return uuid
|
|
|
|
|
2020-11-07 14:45:24 -05:00
|
|
|
|
2021-05-29 21:17:19 -04:00
|
|
|
def getDomainUUID(zkhandler, domain):
|
2019-06-27 11:19:48 -04:00
|
|
|
# Validate that VM exists in cluster
|
2018-09-20 03:25:58 -04:00
|
|
|
if common.validateUUID(domain):
|
2021-05-29 21:17:19 -04:00
|
|
|
dom_name = searchClusterByUUID(zkhandler, domain)
|
|
|
|
dom_uuid = searchClusterByName(zkhandler, dom_name)
|
2018-09-20 03:25:58 -04:00
|
|
|
else:
|
2021-05-29 21:17:19 -04:00
|
|
|
dom_uuid = searchClusterByName(zkhandler, domain)
|
|
|
|
dom_name = searchClusterByUUID(zkhandler, dom_uuid)
|
2018-09-20 03:25:58 -04:00
|
|
|
|
|
|
|
return dom_uuid
|
|
|
|
|
2020-11-07 14:45:24 -05:00
|
|
|
|
2021-05-29 21:17:19 -04:00
|
|
|
def getDomainName(zkhandler, domain):
|
2019-06-27 11:19:48 -04:00
|
|
|
# Validate that VM exists in cluster
|
2018-09-25 02:26:37 -04:00
|
|
|
if common.validateUUID(domain):
|
2021-05-29 21:17:19 -04:00
|
|
|
dom_name = searchClusterByUUID(zkhandler, domain)
|
|
|
|
dom_uuid = searchClusterByName(zkhandler, dom_name)
|
2018-09-25 02:26:37 -04:00
|
|
|
else:
|
2021-05-29 21:17:19 -04:00
|
|
|
dom_uuid = searchClusterByName(zkhandler, domain)
|
|
|
|
dom_name = searchClusterByUUID(zkhandler, dom_uuid)
|
2018-09-25 02:26:37 -04:00
|
|
|
|
|
|
|
return dom_name
|
|
|
|
|
2020-11-07 14:45:24 -05:00
|
|
|
|
2021-05-29 21:17:19 -04:00
|
|
|
#
|
|
|
|
# Helper functions
|
|
|
|
#
|
|
|
|
def change_state(zkhandler, dom_uuid, new_state):
|
2021-11-06 03:02:43 -04:00
|
|
|
lock = zkhandler.exclusivelock(("domain.state", dom_uuid))
|
2021-09-12 15:41:05 -04:00
|
|
|
with lock:
|
2021-11-06 03:02:43 -04:00
|
|
|
zkhandler.write([(("domain.state", dom_uuid), new_state)])
|
2021-05-29 21:17:19 -04:00
|
|
|
|
2021-09-12 15:41:05 -04:00
|
|
|
# Wait for 1/2 second to allow state to flow to all nodes
|
|
|
|
time.sleep(0.5)
|
2021-05-29 21:17:19 -04:00
|
|
|
|
|
|
|
|
2018-09-20 03:25:58 -04:00
|
|
|
#
|
|
|
|
# Direct functions
|
|
|
|
#
|
2021-05-29 21:17:19 -04:00
|
|
|
def is_migrated(zkhandler, domain):
|
2019-07-25 14:33:50 -04:00
|
|
|
# Validate that VM exists in cluster
|
2021-05-29 21:17:19 -04:00
|
|
|
dom_uuid = getDomainUUID(zkhandler, domain)
|
2019-07-25 14:33:50 -04:00
|
|
|
if not dom_uuid:
|
|
|
|
return False, 'ERROR: Could not find VM "{}" in the cluster!'.format(domain)
|
|
|
|
|
2021-11-06 03:02:43 -04:00
|
|
|
last_node = zkhandler.read(("domain.last_node", dom_uuid))
|
2019-07-25 14:33:50 -04:00
|
|
|
if last_node:
|
|
|
|
return True
|
2019-07-25 15:45:45 -04:00
|
|
|
else:
|
2019-07-25 14:33:50 -04:00
|
|
|
return False
|
|
|
|
|
2020-11-07 14:45:24 -05:00
|
|
|
|
2021-11-06 03:02:43 -04:00
|
|
|
def define_vm(
|
|
|
|
zkhandler,
|
|
|
|
config_data,
|
|
|
|
target_node,
|
|
|
|
node_limit,
|
|
|
|
node_selector,
|
|
|
|
node_autostart,
|
|
|
|
migration_method=None,
|
2024-01-10 16:13:31 -05:00
|
|
|
migration_max_downtime=300,
|
2021-11-06 03:02:43 -04:00
|
|
|
profile=None,
|
|
|
|
tags=[],
|
|
|
|
initial_state="stop",
|
|
|
|
):
|
2018-09-20 03:25:58 -04:00
|
|
|
# Parse the XML data
|
2019-07-09 10:22:23 -04:00
|
|
|
try:
|
|
|
|
parsed_xml = lxml.objectify.fromstring(config_data)
|
2024-08-16 10:46:04 -04:00
|
|
|
except Exception as e:
|
|
|
|
return False, f"ERROR: Failed to parse XML data: {e}"
|
|
|
|
|
|
|
|
# Extract the required items from the XML document and error if not valid
|
|
|
|
next_field = 0
|
|
|
|
next_map = {
|
|
|
|
0: "uuid",
|
|
|
|
1: "name",
|
|
|
|
2: "memory",
|
|
|
|
3: "vcpu",
|
|
|
|
4: "networks",
|
|
|
|
5: "disks",
|
|
|
|
}
|
|
|
|
try:
|
|
|
|
dom_uuid = parsed_xml.uuid.text
|
|
|
|
next_field += 1
|
|
|
|
dom_name = parsed_xml.name.text
|
|
|
|
next_field += 1
|
|
|
|
parsed_memory = int(parsed_xml.memory.text)
|
|
|
|
next_field += 1
|
|
|
|
parsed_vcpu = int(parsed_xml.vcpu.text)
|
|
|
|
next_field += 1
|
|
|
|
dnetworks = common.getDomainNetworks(parsed_xml, {})
|
|
|
|
next_field += 1
|
|
|
|
ddisks = common.getDomainDisks(parsed_xml, {})
|
|
|
|
next_field += 1
|
|
|
|
except Exception as e:
|
|
|
|
return (
|
|
|
|
False,
|
|
|
|
f'ERROR: Failed to parse XML data: field data for "{next_map[next_field]}" is not valid: {e}',
|
|
|
|
)
|
2018-09-20 03:25:58 -04:00
|
|
|
|
2019-12-09 09:56:59 -05:00
|
|
|
# Ensure that the UUID and name are unique
|
2021-11-06 03:02:43 -04:00
|
|
|
if searchClusterByUUID(zkhandler, dom_uuid) or searchClusterByName(
|
|
|
|
zkhandler, dom_name
|
|
|
|
):
|
|
|
|
return (
|
|
|
|
False,
|
|
|
|
'ERROR: Specified VM "{}" or UUID "{}" matches an existing VM on the cluster'.format(
|
|
|
|
dom_name, dom_uuid
|
|
|
|
),
|
|
|
|
)
|
2019-12-09 09:56:59 -05:00
|
|
|
|
2019-06-24 13:37:56 -04:00
|
|
|
if not target_node:
|
2021-05-29 21:17:19 -04:00
|
|
|
target_node = common.findTargetNode(zkhandler, dom_uuid)
|
2019-06-24 13:25:24 -04:00
|
|
|
else:
|
|
|
|
# Verify node is valid
|
2021-05-29 21:17:19 -04:00
|
|
|
valid_node = common.verifyNode(zkhandler, target_node)
|
2019-06-24 13:25:24 -04:00
|
|
|
if not valid_node:
|
2019-07-09 10:22:23 -04:00
|
|
|
return False, 'ERROR: Specified node "{}" is invalid.'.format(target_node)
|
|
|
|
|
2021-09-13 01:46:53 -04:00
|
|
|
# Validate the new RAM against the current active node
|
2021-11-06 03:02:43 -04:00
|
|
|
node_total_memory = int(zkhandler.read(("node.memory.total", target_node)))
|
2024-08-16 10:46:04 -04:00
|
|
|
if parsed_memory >= node_total_memory:
|
2021-11-06 03:02:43 -04:00
|
|
|
return (
|
|
|
|
False,
|
|
|
|
'ERROR: VM configuration specifies more memory ({} MiB) than node "{}" has available ({} MiB).'.format(
|
2024-08-16 10:46:04 -04:00
|
|
|
parsed_memory, target_node, node_total_memory
|
2021-11-06 03:02:43 -04:00
|
|
|
),
|
|
|
|
)
|
2021-09-13 01:46:53 -04:00
|
|
|
|
|
|
|
# Validate the number of vCPUs against the current active node
|
2021-11-06 03:02:43 -04:00
|
|
|
node_total_cpus = int(zkhandler.read(("node.data.static", target_node)).split()[0])
|
2024-08-16 10:46:04 -04:00
|
|
|
if parsed_vcpu >= (node_total_cpus - 2):
|
2021-11-06 03:02:43 -04:00
|
|
|
return (
|
|
|
|
False,
|
|
|
|
'ERROR: VM configuration specifies more vCPUs ({}) than node "{}" has available ({} minus 2).'.format(
|
2024-08-16 10:46:04 -04:00
|
|
|
parsed_vcpu, target_node, node_total_cpus
|
2021-11-06 03:02:43 -04:00
|
|
|
),
|
|
|
|
)
|
2021-09-13 01:46:53 -04:00
|
|
|
|
2021-06-21 22:21:54 -04:00
|
|
|
# If a SR-IOV network device is being added, set its used state
|
|
|
|
for network in dnetworks:
|
2021-11-06 03:02:43 -04:00
|
|
|
if network["type"] in ["direct", "hostdev"]:
|
|
|
|
dom_node = zkhandler.read(("domain.node", dom_uuid))
|
2021-06-21 22:21:54 -04:00
|
|
|
|
|
|
|
# Check if the network is already in use
|
2021-11-06 03:02:43 -04:00
|
|
|
is_used = zkhandler.read(
|
|
|
|
("node.sriov.vf", dom_node, "sriov_vf.used", network["source"])
|
|
|
|
)
|
|
|
|
if is_used == "True":
|
|
|
|
used_by_name = searchClusterByUUID(
|
|
|
|
zkhandler,
|
|
|
|
zkhandler.read(
|
|
|
|
(
|
|
|
|
"node.sriov.vf",
|
|
|
|
dom_node,
|
|
|
|
"sriov_vf.used_by",
|
|
|
|
network["source"],
|
|
|
|
)
|
|
|
|
),
|
|
|
|
)
|
|
|
|
return (
|
|
|
|
False,
|
|
|
|
'ERROR: Attempted to use SR-IOV network "{}" which is already used by VM "{}" on node "{}".'.format(
|
|
|
|
network["source"], used_by_name, dom_node
|
|
|
|
),
|
|
|
|
)
|
2021-06-21 22:21:54 -04:00
|
|
|
|
|
|
|
# We must update the "used" section
|
2021-11-06 03:02:43 -04:00
|
|
|
set_sriov_vf_vm(
|
|
|
|
zkhandler,
|
|
|
|
dom_uuid,
|
|
|
|
dom_node,
|
|
|
|
network["source"],
|
|
|
|
network["mac"],
|
|
|
|
network["type"],
|
|
|
|
)
|
2021-06-21 22:21:54 -04:00
|
|
|
|
2019-07-09 10:22:23 -04:00
|
|
|
# Obtain the RBD disk list using the common functions
|
|
|
|
rbd_list = []
|
|
|
|
for disk in ddisks:
|
2021-11-06 03:02:43 -04:00
|
|
|
if disk["type"] == "rbd":
|
|
|
|
rbd_list.append(disk["name"])
|
2018-09-20 03:25:58 -04:00
|
|
|
|
2019-12-19 12:03:46 -05:00
|
|
|
# Join the limit
|
2019-12-19 13:22:38 -05:00
|
|
|
if isinstance(node_limit, list) and node_limit:
|
2021-11-06 03:02:43 -04:00
|
|
|
formatted_node_limit = ",".join(node_limit)
|
2019-12-19 12:03:46 -05:00
|
|
|
else:
|
2021-11-06 03:02:43 -04:00
|
|
|
formatted_node_limit = ""
|
2019-12-19 12:03:46 -05:00
|
|
|
|
|
|
|
# Join the RBD list
|
2019-12-19 13:22:38 -05:00
|
|
|
if isinstance(rbd_list, list) and rbd_list:
|
2021-11-06 03:02:43 -04:00
|
|
|
formatted_rbd_list = ",".join(rbd_list)
|
2019-12-19 12:03:46 -05:00
|
|
|
else:
|
2021-11-06 03:02:43 -04:00
|
|
|
formatted_rbd_list = ""
|
2019-12-19 12:03:46 -05:00
|
|
|
|
2018-09-20 03:25:58 -04:00
|
|
|
# Add the new domain to Zookeeper
|
2021-11-06 03:02:43 -04:00
|
|
|
zkhandler.write(
|
|
|
|
[
|
|
|
|
(("domain", dom_uuid), dom_name),
|
|
|
|
(("domain.xml", dom_uuid), config_data),
|
|
|
|
(("domain.state", dom_uuid), initial_state),
|
|
|
|
(("domain.profile", dom_uuid), profile),
|
|
|
|
(("domain.stats", dom_uuid), ""),
|
|
|
|
(("domain.node", dom_uuid), target_node),
|
|
|
|
(("domain.last_node", dom_uuid), ""),
|
|
|
|
(("domain.failed_reason", dom_uuid), ""),
|
|
|
|
(("domain.storage.volumes", dom_uuid), formatted_rbd_list),
|
|
|
|
(("domain.console.log", dom_uuid), ""),
|
|
|
|
(("domain.console.vnc", dom_uuid), ""),
|
|
|
|
(("domain.meta.autostart", dom_uuid), node_autostart),
|
2022-11-07 11:59:53 -05:00
|
|
|
(("domain.meta.migrate_method", dom_uuid), str(migration_method).lower()),
|
2024-01-10 16:13:31 -05:00
|
|
|
(
|
|
|
|
("domain.meta.migrate_max_downtime", dom_uuid),
|
|
|
|
int(migration_max_downtime),
|
|
|
|
),
|
2021-11-06 03:02:43 -04:00
|
|
|
(("domain.meta.node_limit", dom_uuid), formatted_node_limit),
|
2022-11-07 11:59:53 -05:00
|
|
|
(("domain.meta.node_selector", dom_uuid), str(node_selector).lower()),
|
2021-11-06 03:02:43 -04:00
|
|
|
(("domain.meta.tags", dom_uuid), ""),
|
|
|
|
(("domain.migrate.sync_lock", dom_uuid), ""),
|
2024-05-16 09:23:31 -04:00
|
|
|
(("domain.snapshots", dom_uuid), ""),
|
2021-11-06 03:02:43 -04:00
|
|
|
]
|
|
|
|
)
|
2018-09-20 03:25:58 -04:00
|
|
|
|
2021-07-13 19:04:56 -04:00
|
|
|
for tag in tags:
|
2021-11-06 03:02:43 -04:00
|
|
|
tag_name = tag["name"]
|
|
|
|
zkhandler.write(
|
|
|
|
[
|
|
|
|
(("domain.meta.tags", dom_uuid, "tag.name", tag_name), tag["name"]),
|
|
|
|
(("domain.meta.tags", dom_uuid, "tag.type", tag_name), tag["type"]),
|
|
|
|
(
|
|
|
|
("domain.meta.tags", dom_uuid, "tag.protected", tag_name),
|
|
|
|
tag["protected"],
|
|
|
|
),
|
|
|
|
]
|
|
|
|
)
|
|
|
|
|
|
|
|
return True, 'Added new VM with Name "{}" and UUID "{}" to database.'.format(
|
|
|
|
dom_name, dom_uuid
|
|
|
|
)
|
2018-09-20 03:25:58 -04:00
|
|
|
|
2020-11-07 14:45:24 -05:00
|
|
|
|
2021-11-06 03:02:43 -04:00
|
|
|
def modify_vm_metadata(
|
|
|
|
zkhandler,
|
|
|
|
domain,
|
|
|
|
node_limit,
|
|
|
|
node_selector,
|
|
|
|
node_autostart,
|
|
|
|
provisioner_profile,
|
|
|
|
migration_method,
|
2024-01-10 16:13:31 -05:00
|
|
|
migration_max_downtime,
|
2021-11-06 03:02:43 -04:00
|
|
|
):
|
2021-05-29 21:17:19 -04:00
|
|
|
dom_uuid = getDomainUUID(zkhandler, domain)
|
2019-10-12 01:17:39 -04:00
|
|
|
if not dom_uuid:
|
|
|
|
return False, 'ERROR: Could not find VM "{}" in the cluster!'.format(domain)
|
|
|
|
|
2021-06-13 13:41:21 -04:00
|
|
|
update_list = list()
|
|
|
|
|
2019-10-12 01:17:39 -04:00
|
|
|
if node_limit is not None:
|
2021-11-06 03:02:43 -04:00
|
|
|
update_list.append((("domain.meta.node_limit", dom_uuid), node_limit))
|
2019-10-12 01:17:39 -04:00
|
|
|
|
|
|
|
if node_selector is not None:
|
2022-11-07 11:59:53 -05:00
|
|
|
update_list.append(
|
|
|
|
(("domain.meta.node_selector", dom_uuid), str(node_selector).lower())
|
|
|
|
)
|
2019-10-12 01:17:39 -04:00
|
|
|
|
|
|
|
if node_autostart is not None:
|
2021-11-06 03:02:43 -04:00
|
|
|
update_list.append((("domain.meta.autostart", dom_uuid), node_autostart))
|
2019-10-12 01:17:39 -04:00
|
|
|
|
2020-01-30 11:45:46 -05:00
|
|
|
if provisioner_profile is not None:
|
2021-11-06 03:02:43 -04:00
|
|
|
update_list.append((("domain.profile", dom_uuid), provisioner_profile))
|
2020-01-30 11:45:46 -05:00
|
|
|
|
2020-10-29 11:31:32 -04:00
|
|
|
if migration_method is not None:
|
2022-11-07 11:59:53 -05:00
|
|
|
update_list.append(
|
|
|
|
(("domain.meta.migrate_method", dom_uuid), str(migration_method).lower())
|
|
|
|
)
|
2021-06-13 13:41:21 -04:00
|
|
|
|
2024-01-10 16:13:31 -05:00
|
|
|
if migration_max_downtime is not None:
|
|
|
|
update_list.append(
|
|
|
|
(
|
|
|
|
("domain.meta.migrate_max_downtime", dom_uuid),
|
|
|
|
int(migration_max_downtime),
|
|
|
|
)
|
|
|
|
)
|
|
|
|
|
2021-06-13 13:41:21 -04:00
|
|
|
if len(update_list) < 1:
|
2021-11-06 03:02:43 -04:00
|
|
|
return False, "ERROR: No updates to apply."
|
2021-06-13 13:41:21 -04:00
|
|
|
|
|
|
|
zkhandler.write(update_list)
|
2020-10-29 11:31:32 -04:00
|
|
|
|
2019-10-12 01:17:39 -04:00
|
|
|
return True, 'Successfully modified PVC metadata of VM "{}".'.format(domain)
|
|
|
|
|
2020-11-07 14:45:24 -05:00
|
|
|
|
2021-07-13 19:04:56 -04:00
|
|
|
def modify_vm_tag(zkhandler, domain, action, tag, protected=False):
|
2021-07-13 01:46:50 -04:00
|
|
|
dom_uuid = getDomainUUID(zkhandler, domain)
|
|
|
|
if not dom_uuid:
|
|
|
|
return False, 'ERROR: Could not find VM "{}" in the cluster!'.format(domain)
|
|
|
|
|
2021-11-06 03:02:43 -04:00
|
|
|
if action == "add":
|
|
|
|
zkhandler.write(
|
|
|
|
[
|
|
|
|
(("domain.meta.tags", dom_uuid, "tag.name", tag), tag),
|
|
|
|
(("domain.meta.tags", dom_uuid, "tag.type", tag), "user"),
|
|
|
|
(("domain.meta.tags", dom_uuid, "tag.protected", tag), protected),
|
|
|
|
]
|
|
|
|
)
|
2021-07-13 19:04:56 -04:00
|
|
|
|
|
|
|
return True, 'Successfully added tag "{}" to VM "{}".'.format(tag, domain)
|
2021-11-06 03:02:43 -04:00
|
|
|
elif action == "remove":
|
|
|
|
if not zkhandler.exists(("domain.meta.tags", dom_uuid, "tag", tag)):
|
2021-07-13 19:04:56 -04:00
|
|
|
return False, 'The tag "{}" does not exist.'.format(tag)
|
|
|
|
|
2021-11-06 03:02:43 -04:00
|
|
|
if zkhandler.read(("domain.meta.tags", dom_uuid, "tag.type", tag)) != "user":
|
|
|
|
return (
|
|
|
|
False,
|
|
|
|
'The tag "{}" is not a user tag and cannot be removed.'.format(tag),
|
|
|
|
)
|
|
|
|
|
|
|
|
if bool(
|
|
|
|
strtobool(
|
|
|
|
zkhandler.read(("domain.meta.tags", dom_uuid, "tag.protected", tag))
|
|
|
|
)
|
|
|
|
):
|
2021-07-13 19:04:56 -04:00
|
|
|
return False, 'The tag "{}" is protected and cannot be removed.'.format(tag)
|
|
|
|
|
2021-11-06 03:02:43 -04:00
|
|
|
zkhandler.delete([(("domain.meta.tags", dom_uuid, "tag", tag))])
|
2021-07-13 19:04:56 -04:00
|
|
|
|
|
|
|
return True, 'Successfully removed tag "{}" from VM "{}".'.format(tag, domain)
|
2021-07-13 01:46:50 -04:00
|
|
|
else:
|
2021-11-06 03:02:43 -04:00
|
|
|
return False, "Specified tag action is not available."
|
2021-07-13 01:46:50 -04:00
|
|
|
|
|
|
|
|
2021-05-29 21:17:19 -04:00
|
|
|
def modify_vm(zkhandler, domain, restart, new_vm_config):
|
|
|
|
dom_uuid = getDomainUUID(zkhandler, domain)
|
2019-04-11 19:06:06 -04:00
|
|
|
if not dom_uuid:
|
2018-09-20 03:25:58 -04:00
|
|
|
return False, 'ERROR: Could not find VM "{}" in the cluster!'.format(domain)
|
2021-05-29 21:17:19 -04:00
|
|
|
dom_name = getDomainName(zkhandler, domain)
|
2018-09-20 03:25:58 -04:00
|
|
|
|
2020-05-12 11:07:58 -04:00
|
|
|
# Parse and valiate the XML
|
|
|
|
try:
|
|
|
|
parsed_xml = lxml.objectify.fromstring(new_vm_config)
|
2020-11-06 19:24:10 -05:00
|
|
|
except Exception:
|
2021-11-06 03:02:43 -04:00
|
|
|
return False, "ERROR: Failed to parse new XML data."
|
2021-06-21 22:21:54 -04:00
|
|
|
|
2024-08-16 10:46:04 -04:00
|
|
|
# Extract the required items from the XML document and error if not valid
|
|
|
|
next_field = 0
|
|
|
|
next_map = {
|
|
|
|
0: "uuid",
|
|
|
|
1: "name",
|
|
|
|
2: "memory",
|
|
|
|
3: "vcpu",
|
|
|
|
4: "networks",
|
|
|
|
5: "disks",
|
|
|
|
}
|
|
|
|
try:
|
|
|
|
dom_uuid = parsed_xml.uuid.text
|
|
|
|
next_field += 1
|
|
|
|
dom_name = parsed_xml.name.text
|
|
|
|
next_field += 1
|
|
|
|
parsed_memory = int(parsed_xml.memory.text)
|
|
|
|
next_field += 1
|
|
|
|
parsed_vcpu = int(parsed_xml.vcpu.text)
|
|
|
|
next_field += 1
|
|
|
|
dnetworks = common.getDomainNetworks(parsed_xml, {})
|
|
|
|
next_field += 1
|
|
|
|
ddisks = common.getDomainDisks(parsed_xml, {})
|
|
|
|
next_field += 1
|
|
|
|
except Exception as e:
|
|
|
|
return (
|
|
|
|
False,
|
|
|
|
f'ERROR: Failed to parse XML data: field data for "{next_map[next_field]}" is not valid: {e}',
|
|
|
|
)
|
|
|
|
|
2021-06-22 02:21:55 -04:00
|
|
|
# Get our old network list for comparison purposes
|
2021-11-06 03:02:43 -04:00
|
|
|
old_vm_config = zkhandler.read(("domain.xml", dom_uuid))
|
2021-06-22 02:21:55 -04:00
|
|
|
old_parsed_xml = lxml.objectify.fromstring(old_vm_config)
|
|
|
|
old_dnetworks = common.getDomainNetworks(old_parsed_xml, {})
|
|
|
|
|
2021-09-13 01:46:53 -04:00
|
|
|
# Validate the new RAM against the current active node
|
2021-11-06 03:02:43 -04:00
|
|
|
node_name = zkhandler.read(("domain.node", dom_uuid))
|
|
|
|
node_total_memory = int(zkhandler.read(("node.memory.total", node_name)))
|
2024-08-16 10:46:04 -04:00
|
|
|
if parsed_memory >= node_total_memory:
|
2021-11-06 03:02:43 -04:00
|
|
|
return (
|
|
|
|
False,
|
|
|
|
'ERROR: Updated VM configuration specifies more memory ({} MiB) than node "{}" has available ({} MiB).'.format(
|
2024-08-16 10:46:04 -04:00
|
|
|
parsed_memory, node_name, node_total_memory
|
2021-11-06 03:02:43 -04:00
|
|
|
),
|
|
|
|
)
|
2021-09-13 01:46:53 -04:00
|
|
|
|
|
|
|
# Validate the number of vCPUs against the current active node
|
2021-11-06 03:02:43 -04:00
|
|
|
node_total_cpus = int(zkhandler.read(("node.data.static", node_name)).split()[0])
|
2024-08-16 10:46:04 -04:00
|
|
|
if parsed_vcpu >= (node_total_cpus - 2):
|
2021-11-06 03:02:43 -04:00
|
|
|
return (
|
|
|
|
False,
|
|
|
|
'ERROR: Updated VM configuration specifies more vCPUs ({}) than node "{}" has available ({} minus 2).'.format(
|
2024-08-16 10:46:04 -04:00
|
|
|
parsed_vcpu, node_name, node_total_cpus
|
2021-11-06 03:02:43 -04:00
|
|
|
),
|
|
|
|
)
|
2021-09-13 01:46:53 -04:00
|
|
|
|
2021-06-21 22:21:54 -04:00
|
|
|
# If a SR-IOV network device is being added, set its used state
|
|
|
|
for network in dnetworks:
|
2021-06-22 02:21:55 -04:00
|
|
|
# Ignore networks that are already there
|
2021-11-06 03:02:43 -04:00
|
|
|
if network["source"] in [net["source"] for net in old_dnetworks]:
|
2021-06-22 02:21:55 -04:00
|
|
|
continue
|
|
|
|
|
2021-11-06 03:02:43 -04:00
|
|
|
if network["type"] in ["direct", "hostdev"]:
|
|
|
|
dom_node = zkhandler.read(("domain.node", dom_uuid))
|
2021-06-21 22:21:54 -04:00
|
|
|
|
|
|
|
# Check if the network is already in use
|
2021-11-06 03:02:43 -04:00
|
|
|
is_used = zkhandler.read(
|
|
|
|
("node.sriov.vf", dom_node, "sriov_vf.used", network["source"])
|
|
|
|
)
|
|
|
|
if is_used == "True":
|
|
|
|
used_by_name = searchClusterByUUID(
|
|
|
|
zkhandler,
|
|
|
|
zkhandler.read(
|
|
|
|
(
|
|
|
|
"node.sriov.vf",
|
|
|
|
dom_node,
|
|
|
|
"sriov_vf.used_by",
|
|
|
|
network["source"],
|
|
|
|
)
|
|
|
|
),
|
|
|
|
)
|
|
|
|
return (
|
|
|
|
False,
|
|
|
|
'ERROR: Attempted to use SR-IOV network "{}" which is already used by VM "{}" on node "{}".'.format(
|
|
|
|
network["source"], used_by_name, dom_node
|
|
|
|
),
|
|
|
|
)
|
2021-06-21 22:21:54 -04:00
|
|
|
|
|
|
|
# We must update the "used" section
|
2021-11-06 03:02:43 -04:00
|
|
|
set_sriov_vf_vm(
|
|
|
|
zkhandler,
|
|
|
|
dom_uuid,
|
|
|
|
dom_node,
|
|
|
|
network["source"],
|
|
|
|
network["mac"],
|
|
|
|
network["type"],
|
|
|
|
)
|
2021-06-21 22:21:54 -04:00
|
|
|
|
|
|
|
# If a SR-IOV network device is being removed, unset its used state
|
|
|
|
for network in old_dnetworks:
|
2021-11-06 03:02:43 -04:00
|
|
|
if network["type"] in ["direct", "hostdev"]:
|
|
|
|
if network["mac"] not in [n["mac"] for n in dnetworks]:
|
|
|
|
dom_node = zkhandler.read(("domain.node", dom_uuid))
|
2021-06-21 22:21:54 -04:00
|
|
|
# We must update the "used" section
|
2021-11-06 03:02:43 -04:00
|
|
|
unset_sriov_vf_vm(zkhandler, dom_node, network["source"])
|
2020-05-12 11:07:58 -04:00
|
|
|
|
|
|
|
# Obtain the RBD disk list using the common functions
|
|
|
|
rbd_list = []
|
|
|
|
for disk in ddisks:
|
2021-11-06 03:02:43 -04:00
|
|
|
if disk["type"] == "rbd":
|
|
|
|
rbd_list.append(disk["name"])
|
2020-05-12 11:07:58 -04:00
|
|
|
|
|
|
|
# Join the RBD list
|
|
|
|
if isinstance(rbd_list, list) and rbd_list:
|
2021-11-06 03:02:43 -04:00
|
|
|
formatted_rbd_list = ",".join(rbd_list)
|
2020-05-12 11:07:58 -04:00
|
|
|
else:
|
2021-11-06 03:02:43 -04:00
|
|
|
formatted_rbd_list = ""
|
2020-05-12 11:07:58 -04:00
|
|
|
|
2018-09-20 03:25:58 -04:00
|
|
|
# Add the modified config to Zookeeper
|
2021-11-06 03:02:43 -04:00
|
|
|
zkhandler.write(
|
|
|
|
[
|
|
|
|
(("domain", dom_uuid), dom_name),
|
|
|
|
(("domain.storage.volumes", dom_uuid), formatted_rbd_list),
|
|
|
|
(("domain.xml", dom_uuid), new_vm_config),
|
|
|
|
]
|
|
|
|
)
|
2018-09-20 03:25:58 -04:00
|
|
|
|
2020-01-30 11:15:07 -05:00
|
|
|
if restart:
|
2021-11-06 03:02:43 -04:00
|
|
|
change_state(zkhandler, dom_uuid, "restart")
|
2020-01-30 11:15:07 -05:00
|
|
|
|
2020-11-07 18:01:26 -05:00
|
|
|
return True, 'Successfully modified configuration of VM "{}".'.format(domain)
|
2018-09-20 03:25:58 -04:00
|
|
|
|
2020-11-07 14:45:24 -05:00
|
|
|
|
2021-05-29 21:17:19 -04:00
|
|
|
def dump_vm(zkhandler, domain):
|
|
|
|
dom_uuid = getDomainUUID(zkhandler, domain)
|
2019-04-11 19:06:06 -04:00
|
|
|
if not dom_uuid:
|
2019-03-12 21:09:54 -04:00
|
|
|
return False, 'ERROR: Could not find VM "{}" in the cluster!'.format(domain)
|
|
|
|
|
|
|
|
# Gram the domain XML and dump it to stdout
|
2021-11-06 03:02:43 -04:00
|
|
|
vm_xml = zkhandler.read(("domain.xml", dom_uuid))
|
2019-03-12 21:09:54 -04:00
|
|
|
|
2019-05-20 22:15:28 -04:00
|
|
|
return True, vm_xml
|
2019-03-12 21:09:54 -04:00
|
|
|
|
2020-11-07 14:45:24 -05:00
|
|
|
|
2021-05-29 21:17:19 -04:00
|
|
|
def rename_vm(zkhandler, domain, new_domain):
|
|
|
|
dom_uuid = getDomainUUID(zkhandler, domain)
|
2021-05-23 16:41:42 -04:00
|
|
|
if not dom_uuid:
|
|
|
|
return False, 'ERROR: Could not find VM "{}" in the cluster!'.format(domain)
|
|
|
|
|
|
|
|
# Verify that the VM is in a stopped state; renaming is not supported otherwise
|
2021-11-06 03:02:43 -04:00
|
|
|
state = zkhandler.read(("domain.state", dom_uuid))
|
2024-09-11 10:12:29 -04:00
|
|
|
if state not in ["stop", "disable", "mirror"]:
|
2021-11-06 03:02:43 -04:00
|
|
|
return (
|
|
|
|
False,
|
|
|
|
'ERROR: VM "{}" is not in stopped state; VMs cannot be renamed while running.'.format(
|
|
|
|
domain
|
|
|
|
),
|
|
|
|
)
|
2021-05-23 16:41:42 -04:00
|
|
|
|
|
|
|
# Parse and valiate the XML
|
2021-05-29 21:17:19 -04:00
|
|
|
vm_config = common.getDomainXML(zkhandler, dom_uuid)
|
2021-05-23 16:41:42 -04:00
|
|
|
|
|
|
|
# Obtain the RBD disk list using the common functions
|
|
|
|
ddisks = common.getDomainDisks(vm_config, {})
|
|
|
|
pool_list = []
|
|
|
|
rbd_list = []
|
|
|
|
for disk in ddisks:
|
2021-11-06 03:02:43 -04:00
|
|
|
if disk["type"] == "rbd":
|
|
|
|
pool_list.append(disk["name"].split("/")[0])
|
|
|
|
rbd_list.append(disk["name"].split("/")[1])
|
2021-05-23 16:41:42 -04:00
|
|
|
|
|
|
|
# Rename each volume in turn
|
|
|
|
for idx, rbd in enumerate(rbd_list):
|
|
|
|
rbd_new = re.sub(r"{}".format(domain), new_domain, rbd)
|
|
|
|
# Skip renaming if nothing changed
|
|
|
|
if rbd_new == rbd:
|
|
|
|
continue
|
2021-05-29 21:17:19 -04:00
|
|
|
ceph.rename_volume(zkhandler, pool_list[idx], rbd, rbd_new)
|
2021-05-23 16:41:42 -04:00
|
|
|
|
|
|
|
# Replace the name in the config
|
2021-11-06 03:02:43 -04:00
|
|
|
vm_config_new = (
|
|
|
|
lxml.etree.tostring(vm_config, encoding="ascii", method="xml")
|
|
|
|
.decode()
|
|
|
|
.replace(domain, new_domain)
|
|
|
|
)
|
2021-05-23 16:41:42 -04:00
|
|
|
|
|
|
|
# Get VM information
|
2021-05-29 21:17:19 -04:00
|
|
|
_b, dom_info = get_info(zkhandler, dom_uuid)
|
2021-05-23 16:41:42 -04:00
|
|
|
|
2024-08-20 11:37:28 -04:00
|
|
|
# Edit the VM data
|
|
|
|
zkhandler.write(
|
|
|
|
[
|
|
|
|
(("domain", dom_uuid), new_domain),
|
|
|
|
(("domain.xml", dom_uuid), vm_config_new),
|
|
|
|
]
|
2021-11-06 03:02:43 -04:00
|
|
|
)
|
2021-05-23 16:41:42 -04:00
|
|
|
|
|
|
|
return True, 'Successfully renamed VM "{}" to "{}".'.format(domain, new_domain)
|
|
|
|
|
|
|
|
|
2021-05-29 21:17:19 -04:00
|
|
|
def undefine_vm(zkhandler, domain):
|
2019-06-27 11:19:48 -04:00
|
|
|
# Validate that VM exists in cluster
|
2021-05-29 21:17:19 -04:00
|
|
|
dom_uuid = getDomainUUID(zkhandler, domain)
|
2019-04-11 19:06:06 -04:00
|
|
|
if not dom_uuid:
|
2018-09-20 03:25:58 -04:00
|
|
|
return False, 'ERROR: Could not find VM "{}" in the cluster!'.format(domain)
|
|
|
|
|
|
|
|
# Shut down the VM
|
2021-11-06 03:02:43 -04:00
|
|
|
current_vm_state = zkhandler.read(("domain.state", dom_uuid))
|
|
|
|
if current_vm_state != "stop":
|
|
|
|
change_state(zkhandler, dom_uuid, "stop")
|
2019-06-27 11:19:48 -04:00
|
|
|
|
|
|
|
# Gracefully terminate the class instances
|
2021-11-06 03:02:43 -04:00
|
|
|
change_state(zkhandler, dom_uuid, "delete")
|
2018-09-20 03:25:58 -04:00
|
|
|
|
|
|
|
# Delete the configurations
|
2021-11-06 03:02:43 -04:00
|
|
|
zkhandler.delete([("domain", dom_uuid)])
|
2019-06-27 11:19:48 -04:00
|
|
|
|
|
|
|
return True, 'Undefined VM "{}" from the cluster.'.format(domain)
|
|
|
|
|
2020-11-07 14:45:24 -05:00
|
|
|
|
2021-05-29 21:17:19 -04:00
|
|
|
def remove_vm(zkhandler, domain):
|
2019-06-27 11:19:48 -04:00
|
|
|
# Validate that VM exists in cluster
|
2021-05-29 21:17:19 -04:00
|
|
|
dom_uuid = getDomainUUID(zkhandler, domain)
|
2019-06-27 11:19:48 -04:00
|
|
|
if not dom_uuid:
|
|
|
|
return False, 'ERROR: Could not find VM "{}" in the cluster!'.format(domain)
|
|
|
|
|
2021-05-29 21:17:19 -04:00
|
|
|
disk_list = common.getDomainDiskList(zkhandler, dom_uuid)
|
2019-06-27 11:19:48 -04:00
|
|
|
|
|
|
|
# Shut down the VM
|
2021-11-06 03:02:43 -04:00
|
|
|
current_vm_state = zkhandler.read(("domain.state", dom_uuid))
|
|
|
|
if current_vm_state != "stop":
|
|
|
|
change_state(zkhandler, dom_uuid, "stop")
|
2019-06-27 11:19:48 -04:00
|
|
|
|
2021-05-29 21:17:19 -04:00
|
|
|
# Wait for 1 second to allow state to flow to all nodes
|
|
|
|
time.sleep(1)
|
2019-06-27 11:19:48 -04:00
|
|
|
|
|
|
|
# Remove disks
|
|
|
|
for disk in disk_list:
|
|
|
|
# vmpool/vmname_volume
|
2021-07-09 15:48:57 -04:00
|
|
|
try:
|
2021-11-06 03:02:43 -04:00
|
|
|
disk_pool, disk_name = disk.split("/")
|
2021-07-09 15:48:57 -04:00
|
|
|
except ValueError:
|
|
|
|
continue
|
|
|
|
|
2021-07-09 15:39:06 -04:00
|
|
|
retcode, message = ceph.remove_volume(zkhandler, disk_pool, disk_name)
|
|
|
|
if not retcode:
|
2021-11-06 03:02:43 -04:00
|
|
|
if re.match("^ERROR: No volume with name", message):
|
2021-07-09 15:48:57 -04:00
|
|
|
continue
|
|
|
|
else:
|
|
|
|
return False, message
|
2021-07-09 15:39:06 -04:00
|
|
|
|
|
|
|
# Gracefully terminate the class instances
|
2021-11-06 03:02:43 -04:00
|
|
|
change_state(zkhandler, dom_uuid, "delete")
|
2021-07-09 15:39:06 -04:00
|
|
|
|
|
|
|
# Wait for 1/2 second to allow state to flow to all nodes
|
|
|
|
time.sleep(0.5)
|
|
|
|
|
|
|
|
# Delete the VM configuration from Zookeeper
|
2021-11-06 03:02:43 -04:00
|
|
|
zkhandler.delete([("domain", dom_uuid)])
|
2018-09-20 03:25:58 -04:00
|
|
|
|
2021-07-09 15:39:06 -04:00
|
|
|
return True, 'Removed VM "{}" and its disks from the cluster.'.format(domain)
|
2018-09-20 03:25:58 -04:00
|
|
|
|
2020-11-07 14:45:24 -05:00
|
|
|
|
2024-10-08 23:51:48 -04:00
|
|
|
def start_vm(zkhandler, domain, force=False):
|
2019-06-27 11:19:48 -04:00
|
|
|
# Validate that VM exists in cluster
|
2021-05-29 21:17:19 -04:00
|
|
|
dom_uuid = getDomainUUID(zkhandler, domain)
|
2019-04-11 19:06:06 -04:00
|
|
|
if not dom_uuid:
|
2018-09-20 03:25:58 -04:00
|
|
|
return False, 'ERROR: Could not find VM "{}" in the cluster!'.format(domain)
|
|
|
|
|
2024-10-08 23:51:48 -04:00
|
|
|
current_vm_state = zkhandler.read(("domain.state", dom_uuid))
|
|
|
|
if current_vm_state in ["mirror"] and not force:
|
|
|
|
return (
|
|
|
|
False,
|
|
|
|
'ERROR: VM "{}" is a snapshot mirror and start not forced!'.format(domain),
|
|
|
|
)
|
|
|
|
|
2018-09-20 03:25:58 -04:00
|
|
|
# Set the VM to start
|
2021-11-06 03:02:43 -04:00
|
|
|
change_state(zkhandler, dom_uuid, "start")
|
2018-09-20 03:25:58 -04:00
|
|
|
|
2019-07-05 16:38:54 -04:00
|
|
|
return True, 'Starting VM "{}".'.format(domain)
|
2018-09-20 03:25:58 -04:00
|
|
|
|
2020-11-07 14:45:24 -05:00
|
|
|
|
2021-05-29 21:17:19 -04:00
|
|
|
def restart_vm(zkhandler, domain, wait=False):
|
2019-06-27 11:19:48 -04:00
|
|
|
# Validate that VM exists in cluster
|
2021-05-29 21:17:19 -04:00
|
|
|
dom_uuid = getDomainUUID(zkhandler, domain)
|
2019-04-11 19:06:06 -04:00
|
|
|
if not dom_uuid:
|
2018-09-20 03:25:58 -04:00
|
|
|
return False, 'ERROR: Could not find VM "{}" in the cluster!'.format(domain)
|
|
|
|
|
|
|
|
# Get state and verify we're OK to proceed
|
2021-11-06 03:02:43 -04:00
|
|
|
current_state = zkhandler.read(("domain.state", dom_uuid))
|
|
|
|
if current_state != "start":
|
2019-07-05 16:38:54 -04:00
|
|
|
return False, 'ERROR: VM "{}" is not in "start" state!'.format(domain)
|
2018-09-20 03:25:58 -04:00
|
|
|
|
2020-02-19 09:45:31 -05:00
|
|
|
retmsg = 'Restarting VM "{}".'.format(domain)
|
|
|
|
|
|
|
|
# Set the VM to restart
|
2021-11-06 03:02:43 -04:00
|
|
|
change_state(zkhandler, dom_uuid, "restart")
|
2018-09-20 03:25:58 -04:00
|
|
|
|
2020-02-19 09:45:31 -05:00
|
|
|
if wait:
|
2021-11-06 03:02:43 -04:00
|
|
|
while zkhandler.read(("domain.state", dom_uuid)) == "restart":
|
2021-06-13 13:41:21 -04:00
|
|
|
time.sleep(0.5)
|
2020-02-19 09:45:31 -05:00
|
|
|
retmsg = 'Restarted VM "{}"'.format(domain)
|
2018-09-20 03:25:58 -04:00
|
|
|
|
2020-02-19 09:45:31 -05:00
|
|
|
return True, retmsg
|
|
|
|
|
2020-11-07 14:45:24 -05:00
|
|
|
|
2021-05-29 21:17:19 -04:00
|
|
|
def shutdown_vm(zkhandler, domain, wait=False):
|
2019-06-27 11:19:48 -04:00
|
|
|
# Validate that VM exists in cluster
|
2021-05-29 21:17:19 -04:00
|
|
|
dom_uuid = getDomainUUID(zkhandler, domain)
|
2019-04-11 19:06:06 -04:00
|
|
|
if not dom_uuid:
|
2018-09-20 03:25:58 -04:00
|
|
|
return False, 'ERROR: Could not find VM "{}" in the cluster!'.format(domain)
|
|
|
|
|
|
|
|
# Get state and verify we're OK to proceed
|
2021-11-06 03:02:43 -04:00
|
|
|
current_state = zkhandler.read(("domain.state", dom_uuid))
|
|
|
|
if current_state != "start":
|
2019-07-05 16:38:54 -04:00
|
|
|
return False, 'ERROR: VM "{}" is not in "start" state!'.format(domain)
|
2018-09-20 03:25:58 -04:00
|
|
|
|
2020-02-19 09:45:31 -05:00
|
|
|
retmsg = 'Shutting down VM "{}"'.format(domain)
|
|
|
|
|
2018-09-20 03:25:58 -04:00
|
|
|
# Set the VM to shutdown
|
2021-11-06 03:02:43 -04:00
|
|
|
change_state(zkhandler, dom_uuid, "shutdown")
|
2020-02-19 09:45:31 -05:00
|
|
|
|
|
|
|
if wait:
|
2021-11-06 03:02:43 -04:00
|
|
|
while zkhandler.read(("domain.state", dom_uuid)) == "shutdown":
|
2021-06-13 13:41:21 -04:00
|
|
|
time.sleep(0.5)
|
2020-02-19 10:04:58 -05:00
|
|
|
retmsg = 'Shut down VM "{}"'.format(domain)
|
2018-09-20 03:25:58 -04:00
|
|
|
|
2020-02-19 09:45:31 -05:00
|
|
|
return True, retmsg
|
2018-09-20 03:25:58 -04:00
|
|
|
|
2020-11-07 14:45:24 -05:00
|
|
|
|
2024-10-08 23:51:48 -04:00
|
|
|
def stop_vm(zkhandler, domain, force=False):
|
2019-06-27 11:19:48 -04:00
|
|
|
# Validate that VM exists in cluster
|
2021-05-29 21:17:19 -04:00
|
|
|
dom_uuid = getDomainUUID(zkhandler, domain)
|
2019-04-11 19:06:06 -04:00
|
|
|
if not dom_uuid:
|
2018-09-20 03:25:58 -04:00
|
|
|
return False, 'ERROR: Could not find VM "{}" in the cluster!'.format(domain)
|
|
|
|
|
2024-10-08 23:51:48 -04:00
|
|
|
current_vm_state = zkhandler.read(("domain.state", dom_uuid))
|
|
|
|
if current_vm_state in ["mirror"] and not force:
|
|
|
|
return False, 'ERROR: VM "{}" is a snapshot mirror and stop not forced!'.format(
|
|
|
|
domain
|
|
|
|
)
|
|
|
|
|
2021-05-29 21:17:19 -04:00
|
|
|
# Set the VM to stop
|
2021-11-06 03:02:43 -04:00
|
|
|
change_state(zkhandler, dom_uuid, "stop")
|
2018-09-20 03:25:58 -04:00
|
|
|
|
2019-07-05 16:38:54 -04:00
|
|
|
return True, 'Forcibly stopping VM "{}".'.format(domain)
|
2018-09-20 03:25:58 -04:00
|
|
|
|
2020-11-07 14:45:24 -05:00
|
|
|
|
2021-11-06 03:53:44 -04:00
|
|
|
def disable_vm(zkhandler, domain, force=False):
|
2019-10-23 23:37:42 -04:00
|
|
|
# Validate that VM exists in cluster
|
2021-05-29 21:17:19 -04:00
|
|
|
dom_uuid = getDomainUUID(zkhandler, domain)
|
2019-10-23 23:37:42 -04:00
|
|
|
if not dom_uuid:
|
|
|
|
return False, 'ERROR: Could not find VM "{}" in the cluster!'.format(domain)
|
|
|
|
|
2021-11-06 03:53:44 -04:00
|
|
|
# Get state and perform a shutdown/stop if VM is online
|
2024-10-08 23:51:48 -04:00
|
|
|
current_vm_state = zkhandler.read(("domain.state", dom_uuid))
|
|
|
|
if current_vm_state in ["mirror"] and not force:
|
|
|
|
return (
|
|
|
|
False,
|
|
|
|
'ERROR: VM "{}" is a snapshot mirror and disable not forced!'.format(
|
|
|
|
domain
|
|
|
|
),
|
|
|
|
)
|
|
|
|
elif current_vm_state in ["start"]:
|
2021-11-06 03:53:44 -04:00
|
|
|
if force:
|
|
|
|
change_state(zkhandler, dom_uuid, "stop")
|
|
|
|
# Wait for the command to be registered by the node
|
|
|
|
time.sleep(0.5)
|
|
|
|
else:
|
|
|
|
change_state(zkhandler, dom_uuid, "shutdown")
|
|
|
|
# Wait for the shutdown to complete
|
|
|
|
while zkhandler.read(("domain.state", dom_uuid)) != "stop":
|
|
|
|
time.sleep(0.5)
|
2019-10-23 23:37:42 -04:00
|
|
|
|
2021-05-29 21:17:19 -04:00
|
|
|
# Set the VM to disable
|
2021-11-06 03:02:43 -04:00
|
|
|
change_state(zkhandler, dom_uuid, "disable")
|
2019-10-23 23:37:42 -04:00
|
|
|
|
2021-11-06 03:53:44 -04:00
|
|
|
return True, 'Disabled VM "{}".'.format(domain)
|
2019-10-23 23:37:42 -04:00
|
|
|
|
2020-11-07 14:45:24 -05:00
|
|
|
|
2021-06-21 23:18:34 -04:00
|
|
|
def update_vm_sriov_nics(zkhandler, dom_uuid, source_node, target_node):
|
|
|
|
# Update all the SR-IOV device states on both nodes, used during migrations but called by the node-side
|
2021-11-06 03:02:43 -04:00
|
|
|
vm_config = zkhandler.read(("domain.xml", dom_uuid))
|
2021-06-21 23:18:34 -04:00
|
|
|
parsed_xml = lxml.objectify.fromstring(vm_config)
|
2024-08-16 10:46:04 -04:00
|
|
|
# Extract the required items from the XML document and error if not valid
|
|
|
|
try:
|
|
|
|
dnetworks = common.getDomainNetworks(parsed_xml, {})
|
|
|
|
except Exception as e:
|
|
|
|
return (
|
|
|
|
False,
|
|
|
|
f'ERROR: Failed to parse XML data: field data for "networks" is not valid: {e}',
|
|
|
|
)
|
|
|
|
|
2021-06-21 23:18:34 -04:00
|
|
|
retcode = True
|
2021-11-06 03:02:43 -04:00
|
|
|
retmsg = ""
|
2021-06-21 23:18:34 -04:00
|
|
|
for network in dnetworks:
|
2021-11-06 03:02:43 -04:00
|
|
|
if network["type"] in ["direct", "hostdev"]:
|
2021-06-21 23:18:34 -04:00
|
|
|
# Check if the network is already in use
|
2021-11-06 03:02:43 -04:00
|
|
|
is_used = zkhandler.read(
|
|
|
|
("node.sriov.vf", target_node, "sriov_vf.used", network["source"])
|
|
|
|
)
|
|
|
|
if is_used == "True":
|
|
|
|
used_by_name = searchClusterByUUID(
|
|
|
|
zkhandler,
|
|
|
|
zkhandler.read(
|
|
|
|
(
|
|
|
|
"node.sriov.vf",
|
|
|
|
target_node,
|
|
|
|
"sriov_vf.used_by",
|
|
|
|
network["source"],
|
|
|
|
)
|
|
|
|
),
|
|
|
|
)
|
2021-06-21 23:18:34 -04:00
|
|
|
if retcode:
|
2021-06-21 23:46:47 -04:00
|
|
|
retcode_this = False
|
2021-11-06 03:02:43 -04:00
|
|
|
retmsg = 'Attempting to use SR-IOV network "{}" which is already used by VM "{}"'.format(
|
|
|
|
network["source"], used_by_name
|
|
|
|
)
|
2021-06-21 23:46:47 -04:00
|
|
|
else:
|
|
|
|
retcode_this = True
|
2021-06-21 23:18:34 -04:00
|
|
|
|
|
|
|
# We must update the "used" section
|
2021-06-21 23:46:47 -04:00
|
|
|
if retcode_this:
|
2021-06-21 23:18:34 -04:00
|
|
|
# This conditional ensure that if we failed the is_used check, we don't try to overwrite the information of a VF that belongs to another VM
|
2021-11-06 03:02:43 -04:00
|
|
|
set_sriov_vf_vm(
|
|
|
|
zkhandler,
|
|
|
|
dom_uuid,
|
|
|
|
target_node,
|
|
|
|
network["source"],
|
|
|
|
network["mac"],
|
|
|
|
network["type"],
|
|
|
|
)
|
2021-06-21 23:18:34 -04:00
|
|
|
# ... but we still want to free the old node in an case
|
2021-11-06 03:02:43 -04:00
|
|
|
unset_sriov_vf_vm(zkhandler, source_node, network["source"])
|
2021-06-21 23:18:34 -04:00
|
|
|
|
2021-06-21 23:46:47 -04:00
|
|
|
if not retcode_this:
|
|
|
|
retcode = retcode_this
|
|
|
|
|
2021-06-21 23:18:34 -04:00
|
|
|
return retcode, retmsg
|
|
|
|
|
|
|
|
|
2021-05-29 21:17:19 -04:00
|
|
|
def move_vm(zkhandler, domain, target_node, wait=False, force_live=False):
|
2019-06-27 11:19:48 -04:00
|
|
|
# Validate that VM exists in cluster
|
2021-05-29 21:17:19 -04:00
|
|
|
dom_uuid = getDomainUUID(zkhandler, domain)
|
2019-04-11 19:06:06 -04:00
|
|
|
if not dom_uuid:
|
2018-09-20 03:25:58 -04:00
|
|
|
return False, 'ERROR: Could not find VM "{}" in the cluster!'.format(domain)
|
|
|
|
|
2020-02-19 09:45:31 -05:00
|
|
|
# Get state and verify we're OK to proceed
|
2021-11-06 03:02:43 -04:00
|
|
|
current_state = zkhandler.read(("domain.state", dom_uuid))
|
|
|
|
if current_state != "start":
|
2020-02-19 09:45:31 -05:00
|
|
|
# If the current state isn't start, preserve it; we're not doing live migration
|
|
|
|
target_state = current_state
|
|
|
|
else:
|
2020-06-06 11:49:21 -04:00
|
|
|
if force_live:
|
2021-11-06 03:02:43 -04:00
|
|
|
target_state = "migrate-live"
|
2020-06-06 11:49:21 -04:00
|
|
|
else:
|
2021-11-06 03:02:43 -04:00
|
|
|
target_state = "migrate"
|
2020-02-19 09:45:31 -05:00
|
|
|
|
2021-11-06 03:02:43 -04:00
|
|
|
current_node = zkhandler.read(("domain.node", dom_uuid))
|
2018-09-20 03:25:58 -04:00
|
|
|
|
2019-06-24 13:37:56 -04:00
|
|
|
if not target_node:
|
2021-05-29 21:17:19 -04:00
|
|
|
target_node = common.findTargetNode(zkhandler, dom_uuid)
|
2018-09-20 03:25:58 -04:00
|
|
|
else:
|
2019-06-24 13:25:24 -04:00
|
|
|
# Verify node is valid
|
2021-05-29 21:17:19 -04:00
|
|
|
valid_node = common.verifyNode(zkhandler, target_node)
|
2019-06-24 13:25:24 -04:00
|
|
|
if not valid_node:
|
2019-10-12 01:50:15 -04:00
|
|
|
return False, 'ERROR: Specified node "{}" is invalid.'.format(target_node)
|
2019-06-24 13:25:24 -04:00
|
|
|
|
2019-10-12 01:45:44 -04:00
|
|
|
# Check if node is within the limit
|
2021-11-06 03:02:43 -04:00
|
|
|
node_limit = zkhandler.read(("domain.meta.node_limit", dom_uuid))
|
|
|
|
if node_limit and target_node not in node_limit.split(","):
|
|
|
|
return (
|
|
|
|
False,
|
|
|
|
'ERROR: Specified node "{}" is not in the allowed list of nodes for VM "{}".'.format(
|
|
|
|
target_node, domain
|
|
|
|
),
|
|
|
|
)
|
2019-10-12 01:45:44 -04:00
|
|
|
|
2019-06-24 13:25:24 -04:00
|
|
|
# Verify if node is current node
|
2018-10-14 02:01:35 -04:00
|
|
|
if target_node == current_node:
|
2021-11-06 03:02:43 -04:00
|
|
|
last_node = zkhandler.read(("domain.last_node", dom_uuid))
|
2020-06-06 11:21:58 -04:00
|
|
|
if last_node:
|
2021-11-06 03:02:43 -04:00
|
|
|
zkhandler.write([(("domain.last_node", dom_uuid), "")])
|
|
|
|
return True, 'Making temporary migration permanent for VM "{}".'.format(
|
|
|
|
domain
|
|
|
|
)
|
2020-06-06 11:21:58 -04:00
|
|
|
|
2021-11-06 03:02:43 -04:00
|
|
|
return False, 'ERROR: VM "{}" is already running on node "{}".'.format(
|
|
|
|
domain, current_node
|
|
|
|
)
|
2018-09-20 03:25:58 -04:00
|
|
|
|
2019-10-17 12:16:21 -04:00
|
|
|
if not target_node:
|
2021-11-06 03:02:43 -04:00
|
|
|
return (
|
|
|
|
False,
|
|
|
|
'ERROR: Could not find a valid migration target for VM "{}".'.format(
|
|
|
|
domain
|
|
|
|
),
|
|
|
|
)
|
2019-10-17 12:16:21 -04:00
|
|
|
|
2020-02-19 09:45:31 -05:00
|
|
|
retmsg = 'Permanently migrating VM "{}" to node "{}".'.format(domain, target_node)
|
2018-09-20 03:25:58 -04:00
|
|
|
|
2021-11-06 03:02:43 -04:00
|
|
|
lock = zkhandler.exclusivelock(("domain.state", dom_uuid))
|
2021-05-29 21:17:19 -04:00
|
|
|
with lock:
|
2021-11-06 03:02:43 -04:00
|
|
|
zkhandler.write(
|
|
|
|
[
|
|
|
|
(("domain.state", dom_uuid), target_state),
|
|
|
|
(("domain.node", dom_uuid), target_node),
|
|
|
|
(("domain.last_node", dom_uuid), ""),
|
|
|
|
]
|
|
|
|
)
|
2021-05-29 21:17:19 -04:00
|
|
|
|
|
|
|
# Wait for 1/2 second for migration to start
|
|
|
|
time.sleep(0.5)
|
2018-09-20 03:25:58 -04:00
|
|
|
|
2021-06-22 00:00:50 -04:00
|
|
|
# Update any SR-IOV NICs
|
|
|
|
update_vm_sriov_nics(zkhandler, dom_uuid, current_node, target_node)
|
|
|
|
|
2020-02-19 09:45:31 -05:00
|
|
|
if wait:
|
2021-11-06 03:02:43 -04:00
|
|
|
while zkhandler.read(("domain.state", dom_uuid)) == target_state:
|
2021-06-13 13:41:21 -04:00
|
|
|
time.sleep(0.5)
|
2020-02-19 09:45:31 -05:00
|
|
|
retmsg = 'Permanently migrated VM "{}" to node "{}"'.format(domain, target_node)
|
|
|
|
|
|
|
|
return True, retmsg
|
|
|
|
|
2020-11-07 14:45:24 -05:00
|
|
|
|
2021-11-06 03:02:43 -04:00
|
|
|
def migrate_vm(
|
|
|
|
zkhandler, domain, target_node, force_migrate, wait=False, force_live=False
|
|
|
|
):
|
2019-06-27 11:19:48 -04:00
|
|
|
# Validate that VM exists in cluster
|
2021-05-29 21:17:19 -04:00
|
|
|
dom_uuid = getDomainUUID(zkhandler, domain)
|
2019-04-11 19:06:06 -04:00
|
|
|
if not dom_uuid:
|
2018-09-20 03:25:58 -04:00
|
|
|
return False, 'ERROR: Could not find VM "{}" in the cluster!'.format(domain)
|
|
|
|
|
|
|
|
# Get state and verify we're OK to proceed
|
2021-11-06 03:02:43 -04:00
|
|
|
current_state = zkhandler.read(("domain.state", dom_uuid))
|
|
|
|
if current_state != "start":
|
2020-02-19 09:45:31 -05:00
|
|
|
# If the current state isn't start, preserve it; we're not doing live migration
|
|
|
|
target_state = current_state
|
2018-09-20 03:25:58 -04:00
|
|
|
else:
|
2020-06-06 11:49:21 -04:00
|
|
|
if force_live:
|
2021-11-06 03:02:43 -04:00
|
|
|
target_state = "migrate-live"
|
2020-06-06 11:49:21 -04:00
|
|
|
else:
|
2021-11-06 03:02:43 -04:00
|
|
|
target_state = "migrate"
|
2018-09-20 03:25:58 -04:00
|
|
|
|
2021-11-06 03:02:43 -04:00
|
|
|
current_node = zkhandler.read(("domain.node", dom_uuid))
|
|
|
|
last_node = zkhandler.read(("domain.last_node", dom_uuid))
|
2018-09-20 03:25:58 -04:00
|
|
|
|
2019-06-24 13:37:56 -04:00
|
|
|
if last_node and not force_migrate:
|
2020-02-19 10:18:41 -05:00
|
|
|
return False, 'ERROR: VM "{}" has been previously migrated.'.format(domain)
|
2018-09-20 03:25:58 -04:00
|
|
|
|
2019-06-24 13:37:56 -04:00
|
|
|
if not target_node:
|
2021-05-29 21:17:19 -04:00
|
|
|
target_node = common.findTargetNode(zkhandler, dom_uuid)
|
2018-09-20 03:25:58 -04:00
|
|
|
else:
|
2019-06-24 13:25:24 -04:00
|
|
|
# Verify node is valid
|
2021-05-29 21:17:19 -04:00
|
|
|
valid_node = common.verifyNode(zkhandler, target_node)
|
2019-06-24 13:25:24 -04:00
|
|
|
if not valid_node:
|
2019-10-12 01:50:15 -04:00
|
|
|
return False, 'ERROR: Specified node "{}" is invalid.'.format(target_node)
|
2019-06-24 13:25:24 -04:00
|
|
|
|
2019-10-12 01:45:44 -04:00
|
|
|
# Check if node is within the limit
|
2021-11-06 03:02:43 -04:00
|
|
|
node_limit = zkhandler.read(("domain.meta.node_limit", dom_uuid))
|
|
|
|
if node_limit and target_node not in node_limit.split(","):
|
|
|
|
return (
|
|
|
|
False,
|
|
|
|
'ERROR: Specified node "{}" is not in the allowed list of nodes for VM "{}".'.format(
|
|
|
|
target_node, domain
|
|
|
|
),
|
|
|
|
)
|
2019-10-12 01:45:44 -04:00
|
|
|
|
2019-06-24 13:25:24 -04:00
|
|
|
# Verify if node is current node
|
2018-10-14 02:01:35 -04:00
|
|
|
if target_node == current_node:
|
2021-11-06 03:02:43 -04:00
|
|
|
return False, 'ERROR: VM "{}" is already running on node "{}".'.format(
|
|
|
|
domain, current_node
|
|
|
|
)
|
2018-09-20 03:25:58 -04:00
|
|
|
|
2019-10-17 12:16:21 -04:00
|
|
|
if not target_node:
|
2021-11-06 03:02:43 -04:00
|
|
|
return (
|
|
|
|
False,
|
|
|
|
'ERROR: Could not find a valid migration target for VM "{}".'.format(
|
|
|
|
domain
|
|
|
|
),
|
|
|
|
)
|
2019-10-17 12:16:21 -04:00
|
|
|
|
2019-07-07 15:10:48 -04:00
|
|
|
# Don't overwrite an existing last_node when using force_migrate
|
2021-06-22 00:00:50 -04:00
|
|
|
real_current_node = current_node # Used for the SR-IOV update
|
2019-07-07 15:10:48 -04:00
|
|
|
if last_node and force_migrate:
|
|
|
|
current_node = last_node
|
|
|
|
|
2020-02-19 09:45:31 -05:00
|
|
|
retmsg = 'Migrating VM "{}" to node "{}".'.format(domain, target_node)
|
|
|
|
|
2021-11-06 03:02:43 -04:00
|
|
|
lock = zkhandler.exclusivelock(("domain.state", dom_uuid))
|
2021-05-29 21:17:19 -04:00
|
|
|
with lock:
|
2021-11-06 03:02:43 -04:00
|
|
|
zkhandler.write(
|
|
|
|
[
|
|
|
|
(("domain.state", dom_uuid), target_state),
|
|
|
|
(("domain.node", dom_uuid), target_node),
|
|
|
|
(("domain.last_node", dom_uuid), current_node),
|
|
|
|
]
|
|
|
|
)
|
2021-05-29 21:17:19 -04:00
|
|
|
|
|
|
|
# Wait for 1/2 second for migration to start
|
|
|
|
time.sleep(0.5)
|
2018-09-20 03:25:58 -04:00
|
|
|
|
2021-06-22 00:00:50 -04:00
|
|
|
# Update any SR-IOV NICs
|
|
|
|
update_vm_sriov_nics(zkhandler, dom_uuid, real_current_node, target_node)
|
|
|
|
|
2020-02-19 09:45:31 -05:00
|
|
|
if wait:
|
2021-11-06 03:02:43 -04:00
|
|
|
while zkhandler.read(("domain.state", dom_uuid)) == target_state:
|
2021-06-13 13:41:21 -04:00
|
|
|
time.sleep(0.5)
|
2020-02-19 09:45:31 -05:00
|
|
|
retmsg = 'Migrated VM "{}" to node "{}"'.format(domain, target_node)
|
|
|
|
|
|
|
|
return True, retmsg
|
2018-09-20 03:25:58 -04:00
|
|
|
|
2020-11-07 14:45:24 -05:00
|
|
|
|
2021-05-29 21:17:19 -04:00
|
|
|
def unmigrate_vm(zkhandler, domain, wait=False, force_live=False):
|
2019-06-27 11:19:48 -04:00
|
|
|
# Validate that VM exists in cluster
|
2021-05-29 21:17:19 -04:00
|
|
|
dom_uuid = getDomainUUID(zkhandler, domain)
|
2019-04-11 19:06:06 -04:00
|
|
|
if not dom_uuid:
|
2018-09-20 03:25:58 -04:00
|
|
|
return False, 'ERROR: Could not find VM "{}" in the cluster!'.format(domain)
|
|
|
|
|
|
|
|
# Get state and verify we're OK to proceed
|
2021-11-06 03:02:43 -04:00
|
|
|
current_state = zkhandler.read(("domain.state", dom_uuid))
|
|
|
|
if current_state != "start":
|
2019-03-20 10:19:01 -04:00
|
|
|
# If the current state isn't start, preserve it; we're not doing live migration
|
|
|
|
target_state = current_state
|
2018-09-20 03:25:58 -04:00
|
|
|
else:
|
2020-06-06 11:49:21 -04:00
|
|
|
if force_live:
|
2021-11-06 03:02:43 -04:00
|
|
|
target_state = "migrate-live"
|
2020-06-06 11:49:21 -04:00
|
|
|
else:
|
2021-11-06 03:02:43 -04:00
|
|
|
target_state = "migrate"
|
2018-09-20 03:25:58 -04:00
|
|
|
|
2021-11-06 03:02:43 -04:00
|
|
|
current_node = zkhandler.read(("domain.node", dom_uuid))
|
|
|
|
target_node = zkhandler.read(("domain.last_node", dom_uuid))
|
2018-09-20 03:25:58 -04:00
|
|
|
|
2021-11-06 03:02:43 -04:00
|
|
|
if target_node == "":
|
2019-07-05 16:38:54 -04:00
|
|
|
return False, 'ERROR: VM "{}" has not been previously migrated.'.format(domain)
|
2018-09-20 03:25:58 -04:00
|
|
|
|
2020-02-19 09:45:31 -05:00
|
|
|
retmsg = 'Unmigrating VM "{}" back to node "{}".'.format(domain, target_node)
|
|
|
|
|
2021-11-06 03:02:43 -04:00
|
|
|
lock = zkhandler.exclusivelock(("domain.state", dom_uuid))
|
2021-05-29 21:17:19 -04:00
|
|
|
with lock:
|
2021-11-06 03:02:43 -04:00
|
|
|
zkhandler.write(
|
|
|
|
[
|
|
|
|
(("domain.state", dom_uuid), target_state),
|
|
|
|
(("domain.node", dom_uuid), target_node),
|
|
|
|
(("domain.last_node", dom_uuid), ""),
|
|
|
|
]
|
|
|
|
)
|
2021-05-29 21:17:19 -04:00
|
|
|
|
|
|
|
# Wait for 1/2 second for migration to start
|
|
|
|
time.sleep(0.5)
|
2018-09-20 03:25:58 -04:00
|
|
|
|
2021-06-22 00:00:50 -04:00
|
|
|
# Update any SR-IOV NICs
|
|
|
|
update_vm_sriov_nics(zkhandler, dom_uuid, current_node, target_node)
|
|
|
|
|
2020-02-19 09:45:31 -05:00
|
|
|
if wait:
|
2021-11-06 03:02:43 -04:00
|
|
|
while zkhandler.read(("domain.state", dom_uuid)) == target_state:
|
2021-06-13 13:41:21 -04:00
|
|
|
time.sleep(0.5)
|
2020-02-19 09:45:31 -05:00
|
|
|
retmsg = 'Unmigrated VM "{}" back to node "{}"'.format(domain, target_node)
|
|
|
|
|
|
|
|
return True, retmsg
|
2018-09-20 03:25:58 -04:00
|
|
|
|
2020-11-07 14:45:24 -05:00
|
|
|
|
2021-05-29 21:17:19 -04:00
|
|
|
def get_console_log(zkhandler, domain, lines=1000):
|
2019-06-27 11:19:48 -04:00
|
|
|
# Validate that VM exists in cluster
|
2021-05-29 21:17:19 -04:00
|
|
|
dom_uuid = getDomainUUID(zkhandler, domain)
|
2019-04-11 19:06:06 -04:00
|
|
|
if not dom_uuid:
|
|
|
|
return False, 'ERROR: Could not find VM "{}" in the cluster!'.format(domain)
|
|
|
|
|
|
|
|
# Get the data from ZK
|
2021-11-06 03:02:43 -04:00
|
|
|
console_log = zkhandler.read(("domain.console.log", dom_uuid))
|
2019-04-11 19:06:06 -04:00
|
|
|
|
2021-07-09 13:08:00 -04:00
|
|
|
if console_log is None:
|
2021-11-06 03:02:43 -04:00
|
|
|
return True, ""
|
2021-07-09 13:08:00 -04:00
|
|
|
|
2019-04-11 19:06:06 -04:00
|
|
|
# Shrink the log buffer to length lines
|
2021-11-06 03:02:43 -04:00
|
|
|
shrunk_log = console_log.split("\n")[-lines:]
|
|
|
|
loglines = "\n".join(shrunk_log)
|
2019-04-11 19:06:06 -04:00
|
|
|
|
2019-12-25 19:10:12 -05:00
|
|
|
return True, loglines
|
2019-04-11 19:06:06 -04:00
|
|
|
|
2020-11-07 14:45:24 -05:00
|
|
|
|
2021-05-29 21:17:19 -04:00
|
|
|
def get_info(zkhandler, domain):
|
2019-06-27 11:19:48 -04:00
|
|
|
# Validate that VM exists in cluster
|
2021-05-29 21:17:19 -04:00
|
|
|
dom_uuid = getDomainUUID(zkhandler, domain)
|
2019-05-20 22:15:28 -04:00
|
|
|
if not dom_uuid:
|
2021-11-06 03:02:43 -04:00
|
|
|
return False, 'ERROR: No VM named "{}" is present in the cluster.'.format(
|
|
|
|
domain
|
|
|
|
)
|
2019-05-20 22:15:28 -04:00
|
|
|
|
|
|
|
# Gather information from XML config and print it
|
2021-05-29 21:17:19 -04:00
|
|
|
domain_information = common.getInformationFromXML(zkhandler, dom_uuid)
|
2019-06-24 13:37:56 -04:00
|
|
|
if not domain_information:
|
2019-05-20 22:15:28 -04:00
|
|
|
return False, 'ERROR: Could not get information about VM "{}".'.format(domain)
|
|
|
|
|
|
|
|
return True, domain_information
|
|
|
|
|
2020-11-07 14:45:24 -05:00
|
|
|
|
2023-10-17 11:01:38 -04:00
|
|
|
def get_list(
|
|
|
|
zkhandler, node=None, state=None, tag=None, limit=None, is_fuzzy=True, negate=False
|
|
|
|
):
|
|
|
|
if node is not None:
|
2018-09-20 03:25:58 -04:00
|
|
|
# Verify node is valid
|
2021-05-29 21:17:19 -04:00
|
|
|
if not common.verifyNode(zkhandler, node):
|
2019-07-08 22:37:26 -04:00
|
|
|
return False, 'Specified node "{}" is invalid.'.format(node)
|
2018-09-20 03:25:58 -04:00
|
|
|
|
2023-10-17 11:01:38 -04:00
|
|
|
if state is not None:
|
2021-11-06 03:02:43 -04:00
|
|
|
valid_states = [
|
|
|
|
"start",
|
|
|
|
"restart",
|
|
|
|
"shutdown",
|
|
|
|
"stop",
|
|
|
|
"disable",
|
|
|
|
"fail",
|
|
|
|
"migrate",
|
|
|
|
"unmigrate",
|
|
|
|
"provision",
|
2024-09-11 10:12:29 -04:00
|
|
|
"mirror",
|
2021-11-06 03:02:43 -04:00
|
|
|
]
|
2020-11-06 20:37:52 -05:00
|
|
|
if state not in valid_states:
|
2019-03-20 11:31:54 -04:00
|
|
|
return False, 'VM state "{}" is not valid.'.format(state)
|
|
|
|
|
2021-11-06 03:02:43 -04:00
|
|
|
full_vm_list = zkhandler.children("base.domain")
|
2022-08-09 12:05:40 -04:00
|
|
|
full_vm_list.sort()
|
2018-09-20 03:25:58 -04:00
|
|
|
|
2019-03-12 23:52:59 -04:00
|
|
|
# Set our limit to a sensible regex
|
2023-10-17 11:01:38 -04:00
|
|
|
if limit is not None:
|
2021-06-28 12:27:43 -04:00
|
|
|
# Check if the limit is a UUID
|
|
|
|
is_limit_uuid = False
|
2019-03-12 23:52:59 -04:00
|
|
|
try:
|
2021-06-28 12:27:43 -04:00
|
|
|
uuid_obj = UUID(limit, version=4)
|
|
|
|
limit = str(uuid_obj)
|
|
|
|
is_limit_uuid = True
|
|
|
|
except ValueError:
|
|
|
|
pass
|
|
|
|
|
|
|
|
if is_fuzzy and not is_limit_uuid:
|
|
|
|
try:
|
|
|
|
# Implcitly assume fuzzy limits
|
2021-11-06 03:02:43 -04:00
|
|
|
if not re.match(r"\^.*", limit):
|
|
|
|
limit = ".*" + limit
|
|
|
|
if not re.match(r".*\$", limit):
|
|
|
|
limit = limit + ".*"
|
2021-06-28 12:27:43 -04:00
|
|
|
except Exception as e:
|
2021-11-06 03:02:43 -04:00
|
|
|
return False, "Regex Error: {}".format(e)
|
2019-03-12 23:52:59 -04:00
|
|
|
|
2021-06-23 19:14:26 -04:00
|
|
|
get_vm_info = dict()
|
2018-09-25 02:20:32 -04:00
|
|
|
for vm in full_vm_list:
|
2021-11-06 03:02:43 -04:00
|
|
|
name = zkhandler.read(("domain", vm))
|
2021-06-23 19:14:26 -04:00
|
|
|
is_limit_match = False
|
2021-07-14 00:51:48 -04:00
|
|
|
is_tag_match = False
|
2021-06-23 19:14:26 -04:00
|
|
|
is_node_match = False
|
|
|
|
is_state_match = False
|
|
|
|
|
|
|
|
# Check on limit
|
2023-10-17 11:01:38 -04:00
|
|
|
if limit is not None:
|
2021-06-28 12:27:43 -04:00
|
|
|
# Try to match the limit against the UUID (if applicable) and name
|
2018-09-20 03:25:58 -04:00
|
|
|
try:
|
2021-12-06 16:35:29 -05:00
|
|
|
if is_limit_uuid and re.fullmatch(limit, vm):
|
2021-06-28 12:27:43 -04:00
|
|
|
is_limit_match = True
|
2021-12-06 16:35:29 -05:00
|
|
|
if re.fullmatch(limit, name):
|
2021-06-23 19:14:26 -04:00
|
|
|
is_limit_match = True
|
2018-09-20 03:25:58 -04:00
|
|
|
except Exception as e:
|
2021-11-06 03:02:43 -04:00
|
|
|
return False, "Regex Error: {}".format(e)
|
2018-09-20 03:25:58 -04:00
|
|
|
else:
|
2021-06-23 19:14:26 -04:00
|
|
|
is_limit_match = True
|
|
|
|
|
2023-10-17 11:01:38 -04:00
|
|
|
if tag is not None:
|
2021-11-06 03:02:43 -04:00
|
|
|
vm_tags = zkhandler.children(("domain.meta.tags", vm))
|
2021-10-07 11:13:30 -04:00
|
|
|
if negate and tag not in vm_tags:
|
|
|
|
is_tag_match = True
|
|
|
|
if not negate and tag in vm_tags:
|
2021-07-14 00:51:48 -04:00
|
|
|
is_tag_match = True
|
|
|
|
else:
|
|
|
|
is_tag_match = True
|
|
|
|
|
2021-06-23 19:14:26 -04:00
|
|
|
# Check on node
|
2023-10-17 11:01:38 -04:00
|
|
|
if node is not None:
|
2021-11-06 03:02:43 -04:00
|
|
|
vm_node = zkhandler.read(("domain.node", vm))
|
2021-10-07 11:13:30 -04:00
|
|
|
if negate and vm_node != node:
|
|
|
|
is_node_match = True
|
|
|
|
if not negate and vm_node == node:
|
2021-06-23 19:14:26 -04:00
|
|
|
is_node_match = True
|
|
|
|
else:
|
|
|
|
is_node_match = True
|
|
|
|
|
|
|
|
# Check on state
|
2023-10-17 11:01:38 -04:00
|
|
|
if state is not None:
|
2021-11-06 03:02:43 -04:00
|
|
|
vm_state = zkhandler.read(("domain.state", vm))
|
2021-10-07 11:13:30 -04:00
|
|
|
if negate and vm_state != state:
|
|
|
|
is_state_match = True
|
|
|
|
if not negate and vm_state == state:
|
2021-06-23 19:14:26 -04:00
|
|
|
is_state_match = True
|
|
|
|
else:
|
|
|
|
is_state_match = True
|
|
|
|
|
2021-11-06 03:02:43 -04:00
|
|
|
get_vm_info[vm] = (
|
|
|
|
True
|
|
|
|
if is_limit_match and is_tag_match and is_node_match and is_state_match
|
|
|
|
else False
|
|
|
|
)
|
2021-07-01 17:24:47 -04:00
|
|
|
|
|
|
|
# Obtain our VM data in a thread pool
|
|
|
|
# This helps parallelize the numerous Zookeeper calls a bit, within the bounds of the GIL, and
|
|
|
|
# should help prevent this task from becoming absurdly slow with very large numbers of VMs.
|
|
|
|
# The max_workers is capped at 32 to avoid creating an absurd number of threads especially if
|
|
|
|
# the list gets called multiple times simultaneously by the API, but still provides a noticeable
|
|
|
|
# speedup.
|
|
|
|
vm_execute_list = [vm for vm in full_vm_list if get_vm_info[vm]]
|
|
|
|
vm_data_list = list()
|
2021-11-06 03:02:43 -04:00
|
|
|
with ThreadPoolExecutor(max_workers=32, thread_name_prefix="vm_list") as executor:
|
2021-07-01 17:24:47 -04:00
|
|
|
futures = []
|
|
|
|
for vm_uuid in vm_execute_list:
|
2021-11-06 03:02:43 -04:00
|
|
|
futures.append(
|
|
|
|
executor.submit(common.getInformationFromXML, zkhandler, vm_uuid)
|
|
|
|
)
|
2021-07-01 17:24:47 -04:00
|
|
|
for future in futures:
|
2021-07-09 13:05:37 -04:00
|
|
|
try:
|
|
|
|
vm_data_list.append(future.result())
|
|
|
|
except Exception:
|
|
|
|
pass
|
2021-07-01 17:24:47 -04:00
|
|
|
|
2022-08-12 17:46:29 -04:00
|
|
|
return True, sorted(vm_data_list, key=lambda d: d["name"])
|
2023-10-17 10:15:06 -04:00
|
|
|
|
|
|
|
|
2024-05-16 09:23:31 -04:00
|
|
|
#
|
2024-08-20 16:42:18 -04:00
|
|
|
# VM Backup Tasks
|
2024-05-16 09:23:31 -04:00
|
|
|
#
|
2024-08-20 16:42:18 -04:00
|
|
|
def backup_vm(
|
|
|
|
zkhandler, domain, backup_path, incremental_parent=None, retain_snapshot=False
|
|
|
|
):
|
|
|
|
# 0a. Set datestring in YYYYMMDDHHMMSS format
|
|
|
|
now = datetime.now()
|
|
|
|
datestring = now.strftime("%Y%m%d%H%M%S")
|
2024-05-16 09:23:31 -04:00
|
|
|
|
2024-08-20 16:42:18 -04:00
|
|
|
snapshot_name = f"backup_{datestring}"
|
2024-05-16 09:23:31 -04:00
|
|
|
|
2024-08-19 18:46:07 -04:00
|
|
|
# 0b. Validations part 1
|
|
|
|
# Validate that the target path is valid
|
2024-08-20 16:42:18 -04:00
|
|
|
if not re.match(r"^/", backup_path):
|
2024-08-19 18:46:07 -04:00
|
|
|
return (
|
|
|
|
False,
|
2024-08-20 16:42:18 -04:00
|
|
|
f"ERROR in backup {datestring}: Target path {backup_path} is not a valid absolute path on the primary coordinator!",
|
2024-08-19 18:46:07 -04:00
|
|
|
)
|
|
|
|
|
|
|
|
# Ensure that backup_path (on this node) exists
|
2024-08-20 16:42:18 -04:00
|
|
|
if not os.path.isdir(backup_path):
|
2024-08-19 18:46:07 -04:00
|
|
|
return (
|
|
|
|
False,
|
2024-08-20 16:42:18 -04:00
|
|
|
f"ERROR in backup {datestring}: Target path {backup_path} does not exist!",
|
2024-08-19 18:46:07 -04:00
|
|
|
)
|
|
|
|
|
|
|
|
# 1a. Create destination directory
|
2024-08-20 16:42:18 -04:00
|
|
|
vm_target_root = f"{backup_path}/{domain}"
|
|
|
|
vm_target_backup = f"{backup_path}/{domain}/{datestring}/pvcdisks"
|
|
|
|
if not os.path.isdir(vm_target_backup):
|
2024-08-19 18:46:07 -04:00
|
|
|
try:
|
2024-08-20 16:42:18 -04:00
|
|
|
os.makedirs(vm_target_backup)
|
2024-08-19 18:46:07 -04:00
|
|
|
except Exception as e:
|
|
|
|
return (
|
|
|
|
False,
|
2024-08-20 16:42:18 -04:00
|
|
|
f"ERROR in backup {datestring}: Failed to create backup directory: {e}",
|
2024-08-19 18:46:07 -04:00
|
|
|
)
|
|
|
|
|
|
|
|
tstart = time.time()
|
2024-08-20 16:42:18 -04:00
|
|
|
backup_type = "incremental" if incremental_parent is not None else "full"
|
2024-08-19 18:46:07 -04:00
|
|
|
|
2024-08-20 16:42:18 -04:00
|
|
|
# 1b. Prepare backup JSON write (it will write on any result
|
|
|
|
def write_pvcbackup_json(
|
2024-08-19 18:46:07 -04:00
|
|
|
result=False,
|
|
|
|
result_message="",
|
2024-08-20 13:59:05 -04:00
|
|
|
vm_detail=None,
|
2024-08-20 16:42:18 -04:00
|
|
|
backup_files=None,
|
|
|
|
backup_files_size=0,
|
2024-08-19 18:46:07 -04:00
|
|
|
ttot=None,
|
|
|
|
):
|
|
|
|
if ttot is None:
|
|
|
|
tend = time.time()
|
|
|
|
ttot = round(tend - tstart, 2)
|
|
|
|
|
2024-08-20 16:42:18 -04:00
|
|
|
backup_details = {
|
|
|
|
"type": backup_type,
|
|
|
|
"datestring": datestring,
|
2024-08-19 18:46:07 -04:00
|
|
|
"incremental_parent": incremental_parent,
|
2024-08-20 16:42:18 -04:00
|
|
|
"retained_snapshot": retain_snapshot,
|
2024-08-19 18:46:07 -04:00
|
|
|
"result": result,
|
|
|
|
"result_message": result_message,
|
|
|
|
"runtime_secs": ttot,
|
2024-08-20 11:08:14 -04:00
|
|
|
"vm_detail": vm_detail,
|
2024-08-20 16:42:18 -04:00
|
|
|
"backup_files": backup_files,
|
|
|
|
"backup_size_bytes": backup_files_size,
|
2024-08-19 18:46:07 -04:00
|
|
|
}
|
2024-08-20 16:42:18 -04:00
|
|
|
with open(f"{vm_target_root}/{datestring}/pvcbackup.json", "w") as fh:
|
|
|
|
jdump(backup_details, fh)
|
2024-08-19 18:46:07 -04:00
|
|
|
|
|
|
|
# 2. Validations part 2
|
2024-08-20 16:42:18 -04:00
|
|
|
# Disallow retaining snapshots with an incremental parent
|
|
|
|
if incremental_parent is not None and retain_snapshot:
|
|
|
|
error_message = "Retaining snapshots of incremental backups is not supported!"
|
|
|
|
write_pvcbackup_json(result=False, result_message=f"ERROR: {error_message}")
|
|
|
|
return (
|
|
|
|
False,
|
|
|
|
f"ERROR in backup {datestring}: {error_message}",
|
|
|
|
)
|
|
|
|
|
2024-08-19 18:46:07 -04:00
|
|
|
# Validate that VM exists in cluster
|
|
|
|
dom_uuid = getDomainUUID(zkhandler, domain)
|
|
|
|
if not dom_uuid:
|
|
|
|
error_message = f'Could not find VM "{domain}" in the cluster!'
|
2024-08-20 16:42:18 -04:00
|
|
|
write_pvcbackup_json(result=False, result_message=f"ERROR: {error_message}")
|
|
|
|
return False, f"ERROR in backup {datestring}: {error_message}"
|
2024-08-19 18:46:07 -04:00
|
|
|
|
2024-08-20 11:08:14 -04:00
|
|
|
# 3. Get information about VM
|
|
|
|
vm_detail = get_list(zkhandler, limit=dom_uuid, is_fuzzy=False)[1][0]
|
|
|
|
if not isinstance(vm_detail, dict):
|
|
|
|
error_message = f"VM listing returned invalid data: {vm_detail}"
|
2024-08-20 16:42:18 -04:00
|
|
|
write_pvcbackup_json(result=False, result_message=f"ERROR: {error_message}")
|
|
|
|
return False, f"ERROR in backup {datestring}: {error_message}"
|
2024-08-20 11:08:14 -04:00
|
|
|
|
2024-08-20 16:42:18 -04:00
|
|
|
vm_volumes = list()
|
|
|
|
for disk in vm_detail["disks"]:
|
|
|
|
if disk["type"] != "rbd":
|
|
|
|
continue
|
2024-08-19 18:46:07 -04:00
|
|
|
|
2024-08-20 16:42:18 -04:00
|
|
|
pool, volume = disk["name"].split("/")
|
2024-08-19 18:46:07 -04:00
|
|
|
|
2024-08-20 16:42:18 -04:00
|
|
|
retcode, retdata = ceph.get_list_volume(zkhandler, pool, volume, is_fuzzy=False)
|
|
|
|
if not retcode or len(retdata) != 1:
|
|
|
|
if len(retdata) < 1:
|
|
|
|
retdata = "No volumes returned."
|
|
|
|
elif len(retdata) > 1:
|
|
|
|
retdata = "Multiple volumes returned."
|
2024-08-19 18:46:07 -04:00
|
|
|
|
2024-08-20 16:42:18 -04:00
|
|
|
error_message = (
|
|
|
|
f"Failed to get volume details for {pool}/{volume}: {retdata}"
|
|
|
|
)
|
|
|
|
write_pvcbackup_json(
|
|
|
|
result=False,
|
|
|
|
result_message=f"ERROR: {error_message}",
|
|
|
|
vm_detail=vm_detail,
|
|
|
|
)
|
|
|
|
return (
|
|
|
|
False,
|
|
|
|
f"ERROR in backup {datestring}: {error_message}",
|
|
|
|
)
|
2024-08-20 11:08:14 -04:00
|
|
|
|
2024-08-20 16:42:18 -04:00
|
|
|
try:
|
|
|
|
size = retdata[0]["stats"]["size"]
|
|
|
|
except Exception as e:
|
|
|
|
error_message = f"Failed to get volume size for {pool}/{volume}: {e}"
|
|
|
|
write_pvcbackup_json(
|
|
|
|
result=False,
|
|
|
|
result_message=f"ERROR: {error_message}",
|
|
|
|
vm_detail=vm_detail,
|
|
|
|
)
|
|
|
|
return (
|
|
|
|
False,
|
|
|
|
f"ERROR in backup {datestring}: {error_message}",
|
|
|
|
)
|
2024-08-19 18:46:07 -04:00
|
|
|
|
2024-08-20 16:42:18 -04:00
|
|
|
vm_volumes.append((pool, volume, size))
|
|
|
|
|
|
|
|
# 4a. Validate that all volumes exist (they should, but just in case)
|
|
|
|
for pool, volume, _ in vm_volumes:
|
|
|
|
if not ceph.verifyVolume(zkhandler, pool, volume):
|
|
|
|
error_message = f"VM defines a volume {pool}/{volume} which does not exist!"
|
|
|
|
write_pvcbackup_json(
|
|
|
|
result=False,
|
|
|
|
result_message=f"ERROR: {error_message}",
|
|
|
|
vm_detail=vm_detail,
|
|
|
|
)
|
|
|
|
return (
|
|
|
|
False,
|
|
|
|
f"ERROR in backup {datestring}: {error_message}",
|
|
|
|
)
|
|
|
|
|
|
|
|
# 4b. Validate that, if an incremental_parent is given, it is valid
|
|
|
|
# The incremental parent is just a datestring
|
2024-08-19 18:46:07 -04:00
|
|
|
if incremental_parent is not None:
|
2024-08-20 16:42:18 -04:00
|
|
|
for pool, volume, _ in vm_volumes:
|
|
|
|
if not ceph.verifySnapshot(
|
|
|
|
zkhandler, pool, volume, f"backup_{incremental_parent}"
|
|
|
|
):
|
|
|
|
error_message = f"Incremental parent {incremental_parent} given, but no snapshots were found; cannot export an incremental backup."
|
|
|
|
write_pvcbackup_json(
|
|
|
|
result=False,
|
|
|
|
result_message=f"ERROR: {error_message}",
|
|
|
|
vm_detail=vm_detail,
|
|
|
|
)
|
|
|
|
return (
|
|
|
|
False,
|
|
|
|
f"ERROR in backup {datestring}: {error_message}",
|
|
|
|
)
|
|
|
|
|
2024-08-19 18:46:07 -04:00
|
|
|
export_fileext = "rbddiff"
|
|
|
|
else:
|
|
|
|
export_fileext = "rbdimg"
|
|
|
|
|
2024-08-20 16:42:18 -04:00
|
|
|
# 4c. Validate that there's enough space on the target
|
|
|
|
# TODO
|
|
|
|
|
|
|
|
# 5. Take snapshot of each disks with the name @backup_{datestring}
|
|
|
|
is_snapshot_create_failed = False
|
|
|
|
which_snapshot_create_failed = list()
|
|
|
|
for pool, volume, _ in vm_volumes:
|
|
|
|
retcode, retmsg = ceph.add_snapshot(zkhandler, pool, volume, snapshot_name)
|
|
|
|
if not retcode:
|
|
|
|
is_snapshot_create_failed = True
|
|
|
|
which_snapshot_create_failed.append(f"{pool}/{volume}")
|
|
|
|
|
|
|
|
if is_snapshot_create_failed:
|
|
|
|
for pool, volume, _ in vm_volumes:
|
|
|
|
if ceph.verifySnapshot(zkhandler, pool, volume, snapshot_name):
|
|
|
|
ceph.remove_snapshot(zkhandler, pool, volume, snapshot_name)
|
|
|
|
|
|
|
|
error_message = f'Failed to create snapshot for volume(s) {", ".join(which_snapshot_create_failed)}'
|
|
|
|
write_pvcbackup_json(
|
|
|
|
result=False,
|
|
|
|
result_message=f"ERROR: {error_message}",
|
|
|
|
vm_detail=vm_detail,
|
|
|
|
)
|
|
|
|
return (
|
|
|
|
False,
|
|
|
|
f"ERROR in backup {datestring}: {error_message}",
|
|
|
|
)
|
|
|
|
|
2024-08-19 18:46:07 -04:00
|
|
|
# 6. Dump snapshot to folder with `rbd export` (full) or `rbd export-diff` (incremental)
|
|
|
|
is_snapshot_export_failed = False
|
|
|
|
which_snapshot_export_failed = list()
|
2024-08-20 16:42:18 -04:00
|
|
|
backup_files = list()
|
|
|
|
for pool, volume, size in vm_volumes:
|
2024-08-19 18:46:07 -04:00
|
|
|
if incremental_parent is not None:
|
2024-08-20 16:42:18 -04:00
|
|
|
incremental_parent_snapshot_name = f"backup_{incremental_parent}"
|
2024-08-19 18:46:07 -04:00
|
|
|
retcode, stdout, stderr = common.run_os_command(
|
2024-08-20 16:42:18 -04:00
|
|
|
f"rbd export-diff --from-snap {incremental_parent_snapshot_name} {pool}/{volume}@{snapshot_name} {vm_target_backup}/{pool}.{volume}.{export_fileext}"
|
2024-08-19 18:46:07 -04:00
|
|
|
)
|
|
|
|
if retcode:
|
|
|
|
is_snapshot_export_failed = True
|
|
|
|
which_snapshot_export_failed.append(f"{pool}/{volume}")
|
|
|
|
else:
|
2024-08-20 16:42:18 -04:00
|
|
|
backup_files.append(
|
|
|
|
(f"pvcdisks/{pool}.{volume}.{export_fileext}", size)
|
|
|
|
)
|
2024-08-19 18:46:07 -04:00
|
|
|
else:
|
|
|
|
retcode, stdout, stderr = common.run_os_command(
|
2024-08-20 16:42:18 -04:00
|
|
|
f"rbd export --export-format 2 {pool}/{volume}@{snapshot_name} {vm_target_backup}/{pool}.{volume}.{export_fileext}"
|
2024-08-19 18:46:07 -04:00
|
|
|
)
|
|
|
|
if retcode:
|
|
|
|
is_snapshot_export_failed = True
|
|
|
|
which_snapshot_export_failed.append(f"{pool}/{volume}")
|
|
|
|
else:
|
2024-08-20 16:42:18 -04:00
|
|
|
backup_files.append(
|
|
|
|
(f"pvcdisks/{pool}.{volume}.{export_fileext}", size)
|
|
|
|
)
|
2024-08-19 18:46:07 -04:00
|
|
|
|
|
|
|
def get_dir_size(path):
|
|
|
|
total = 0
|
|
|
|
with scandir(path) as it:
|
|
|
|
for entry in it:
|
|
|
|
if entry.is_file():
|
|
|
|
total += entry.stat().st_size
|
|
|
|
elif entry.is_dir():
|
|
|
|
total += get_dir_size(entry.path)
|
|
|
|
return total
|
|
|
|
|
2024-08-20 16:42:18 -04:00
|
|
|
backup_files_size = get_dir_size(vm_target_backup)
|
2024-08-19 18:46:07 -04:00
|
|
|
|
|
|
|
if is_snapshot_export_failed:
|
2024-08-20 16:42:18 -04:00
|
|
|
for pool, volume, _ in vm_volumes:
|
|
|
|
if ceph.verifySnapshot(zkhandler, pool, volume, snapshot_name):
|
|
|
|
ceph.remove_snapshot(zkhandler, pool, volume, snapshot_name)
|
|
|
|
|
2024-08-19 18:46:07 -04:00
|
|
|
error_message = f'Failed to export snapshot for volume(s) {", ".join(which_snapshot_export_failed)}'
|
2024-08-20 16:42:18 -04:00
|
|
|
write_pvcbackup_json(
|
2024-08-19 18:46:07 -04:00
|
|
|
result=False,
|
|
|
|
result_message=f"ERROR: {error_message}",
|
2024-08-20 16:42:18 -04:00
|
|
|
vm_detail=vm_detail,
|
|
|
|
backup_files=backup_files,
|
|
|
|
backup_files_size=backup_files_size,
|
2024-08-19 18:46:07 -04:00
|
|
|
)
|
|
|
|
return (
|
|
|
|
False,
|
2024-08-20 16:42:18 -04:00
|
|
|
f"ERROR in backup {datestring}: {error_message}",
|
2024-08-19 18:46:07 -04:00
|
|
|
)
|
|
|
|
|
2024-08-20 16:42:18 -04:00
|
|
|
# 8. Remove snapshots if retain_snapshot is False
|
|
|
|
is_snapshot_remove_failed = False
|
|
|
|
which_snapshot_remove_failed = list()
|
|
|
|
if not retain_snapshot:
|
|
|
|
for pool, volume, _ in vm_volumes:
|
|
|
|
if ceph.verifySnapshot(zkhandler, pool, volume, snapshot_name):
|
|
|
|
retcode, retmsg = ceph.remove_snapshot(
|
|
|
|
zkhandler, pool, volume, snapshot_name
|
|
|
|
)
|
|
|
|
if not retcode:
|
|
|
|
is_snapshot_remove_failed = True
|
|
|
|
which_snapshot_remove_failed.append(f"{pool}/{volume}")
|
|
|
|
|
2024-08-19 18:46:07 -04:00
|
|
|
tend = time.time()
|
|
|
|
ttot = round(tend - tstart, 2)
|
|
|
|
|
|
|
|
retlines = list()
|
|
|
|
|
2024-08-20 16:42:18 -04:00
|
|
|
if is_snapshot_remove_failed:
|
|
|
|
retlines.append(
|
|
|
|
f"WARNING: Failed to remove snapshot(s) as requested for volume(s) {', '.join(which_snapshot_remove_failed)}"
|
|
|
|
)
|
|
|
|
|
2024-08-19 18:46:07 -04:00
|
|
|
myhostname = gethostname().split(".")[0]
|
2024-08-20 16:42:18 -04:00
|
|
|
if retain_snapshot:
|
|
|
|
result_message = f"Successfully backed up VM '{domain}' ({backup_type}@{datestring}, snapshots retained) to '{myhostname}:{backup_path}' in {ttot}s."
|
|
|
|
else:
|
|
|
|
result_message = f"Successfully backed up VM '{domain}' ({backup_type}@{datestring}) to '{myhostname}:{backup_path}' in {ttot}s."
|
2024-08-19 18:46:07 -04:00
|
|
|
retlines.append(result_message)
|
|
|
|
|
2024-08-20 16:42:18 -04:00
|
|
|
write_pvcbackup_json(
|
2024-08-19 18:46:07 -04:00
|
|
|
result=True,
|
|
|
|
result_message=result_message,
|
2024-08-20 13:59:05 -04:00
|
|
|
vm_detail=vm_detail,
|
2024-08-20 16:42:18 -04:00
|
|
|
backup_files=backup_files,
|
|
|
|
backup_files_size=backup_files_size,
|
2024-08-19 18:46:07 -04:00
|
|
|
ttot=ttot,
|
|
|
|
)
|
|
|
|
|
|
|
|
return True, "\n".join(retlines)
|
|
|
|
|
|
|
|
|
2024-08-20 16:42:18 -04:00
|
|
|
def remove_backup(zkhandler, domain, backup_path, datestring):
|
2024-08-20 10:53:56 -04:00
|
|
|
tstart = time.time()
|
|
|
|
|
2024-08-20 16:42:18 -04:00
|
|
|
# 0. Validation
|
|
|
|
# Validate that VM exists in cluster
|
2024-08-20 10:53:56 -04:00
|
|
|
dom_uuid = getDomainUUID(zkhandler, domain)
|
2024-08-20 16:42:18 -04:00
|
|
|
if not dom_uuid:
|
|
|
|
return False, 'ERROR: Could not find VM "{}" in the cluster!'.format(domain)
|
2024-08-20 10:53:56 -04:00
|
|
|
|
|
|
|
# Validate that the source path is valid
|
2024-08-20 16:42:18 -04:00
|
|
|
if not re.match(r"^/", backup_path):
|
2024-08-20 10:53:56 -04:00
|
|
|
return (
|
|
|
|
False,
|
2024-08-20 16:42:18 -04:00
|
|
|
f"ERROR: Source path {backup_path} is not a valid absolute path on the primary coordinator!",
|
2024-08-20 10:53:56 -04:00
|
|
|
)
|
|
|
|
|
2024-08-20 16:42:18 -04:00
|
|
|
# Ensure that backup_path (on this node) exists
|
|
|
|
if not os.path.isdir(backup_path):
|
|
|
|
return False, f"ERROR: Source path {backup_path} does not exist!"
|
2024-08-20 10:53:56 -04:00
|
|
|
|
|
|
|
# Ensure that domain path (on this node) exists
|
2024-08-20 16:42:18 -04:00
|
|
|
vm_backup_path = f"{backup_path}/{domain}"
|
|
|
|
if not os.path.isdir(vm_backup_path):
|
|
|
|
return False, f"ERROR: Source VM path {vm_backup_path} does not exist!"
|
2024-08-20 10:53:56 -04:00
|
|
|
|
|
|
|
# Ensure that the archives are present
|
2024-08-20 16:42:18 -04:00
|
|
|
backup_source_pvcbackup_file = f"{vm_backup_path}/{datestring}/pvcbackup.json"
|
|
|
|
if not os.path.isfile(backup_source_pvcbackup_file):
|
|
|
|
return False, "ERROR: The specified source backup files do not exist!"
|
|
|
|
|
|
|
|
backup_source_pvcdisks_path = f"{vm_backup_path}/{datestring}/pvcdisks"
|
|
|
|
if not os.path.isdir(backup_source_pvcdisks_path):
|
|
|
|
return False, "ERROR: The specified source backup files do not exist!"
|
2024-08-20 10:53:56 -04:00
|
|
|
|
2024-08-20 16:42:18 -04:00
|
|
|
# 1. Read the backup file and get VM details
|
2024-08-20 10:53:56 -04:00
|
|
|
try:
|
2024-08-20 16:42:18 -04:00
|
|
|
with open(backup_source_pvcbackup_file) as fh:
|
|
|
|
backup_source_details = jload(fh)
|
2024-08-20 10:53:56 -04:00
|
|
|
except Exception as e:
|
2024-08-20 16:42:18 -04:00
|
|
|
return False, f"ERROR: Failed to read source backup details: {e}"
|
2024-08-20 10:53:56 -04:00
|
|
|
|
2024-08-20 16:42:18 -04:00
|
|
|
# 2. Remove snapshots
|
|
|
|
is_snapshot_remove_failed = False
|
|
|
|
which_snapshot_remove_failed = list()
|
|
|
|
if backup_source_details["retained_snapshot"]:
|
|
|
|
for volume_file, _ in backup_source_details.get("backup_files"):
|
|
|
|
pool, volume, _ = volume_file.split("/")[-1].split(".")
|
|
|
|
snapshot = f"backup_{datestring}"
|
|
|
|
retcode, retmsg = ceph.remove_snapshot(zkhandler, pool, volume, snapshot)
|
|
|
|
if not retcode:
|
|
|
|
is_snapshot_remove_failed = True
|
|
|
|
which_snapshot_remove_failed.append(f"{pool}/{volume}")
|
|
|
|
|
|
|
|
# 3. Remove files
|
|
|
|
is_files_remove_failed = False
|
|
|
|
msg_files_remove_failed = None
|
|
|
|
try:
|
|
|
|
rmtree(f"{vm_backup_path}/{datestring}")
|
|
|
|
except Exception as e:
|
|
|
|
is_files_remove_failed = True
|
|
|
|
msg_files_remove_failed = e
|
|
|
|
|
|
|
|
tend = time.time()
|
|
|
|
ttot = round(tend - tstart, 2)
|
|
|
|
retlines = list()
|
|
|
|
|
|
|
|
if is_snapshot_remove_failed:
|
|
|
|
retlines.append(
|
|
|
|
f"WARNING: Failed to remove snapshot(s) as requested for volume(s) {', '.join(which_snapshot_remove_failed)}"
|
|
|
|
)
|
|
|
|
|
|
|
|
if is_files_remove_failed:
|
|
|
|
retlines.append(
|
|
|
|
f"WARNING: Failed to remove backup file(s) from {backup_path}: {msg_files_remove_failed}"
|
|
|
|
)
|
|
|
|
|
|
|
|
myhostname = gethostname().split(".")[0]
|
|
|
|
retlines.append(
|
|
|
|
f"Removed VM backup {datestring} for '{domain}' from '{myhostname}:{backup_path}' in {ttot}s."
|
|
|
|
)
|
|
|
|
|
|
|
|
return True, "\n".join(retlines)
|
|
|
|
|
|
|
|
|
|
|
|
def restore_vm(zkhandler, domain, backup_path, datestring, retain_snapshot=False):
|
|
|
|
tstart = time.time()
|
|
|
|
|
|
|
|
# 0. Validations
|
|
|
|
# Validate that VM does not exist in cluster
|
|
|
|
dom_uuid = getDomainUUID(zkhandler, domain)
|
|
|
|
if dom_uuid:
|
|
|
|
return (
|
|
|
|
False,
|
|
|
|
f'ERROR: VM "{domain}" already exists in the cluster! Remove or rename it before restoring a backup.',
|
|
|
|
)
|
|
|
|
|
|
|
|
# Validate that the source path is valid
|
|
|
|
if not re.match(r"^/", backup_path):
|
|
|
|
return (
|
|
|
|
False,
|
|
|
|
f"ERROR: Source path {backup_path} is not a valid absolute path on the primary coordinator!",
|
|
|
|
)
|
|
|
|
|
|
|
|
# Ensure that backup_path (on this node) exists
|
|
|
|
if not os.path.isdir(backup_path):
|
|
|
|
return False, f"ERROR: Source path {backup_path} does not exist!"
|
|
|
|
|
|
|
|
# Ensure that domain path (on this node) exists
|
|
|
|
vm_backup_path = f"{backup_path}/{domain}"
|
|
|
|
if not os.path.isdir(vm_backup_path):
|
|
|
|
return False, f"ERROR: Source VM path {vm_backup_path} does not exist!"
|
|
|
|
|
|
|
|
# Ensure that the archives are present
|
|
|
|
backup_source_pvcbackup_file = f"{vm_backup_path}/{datestring}/pvcbackup.json"
|
|
|
|
if not os.path.isfile(backup_source_pvcbackup_file):
|
|
|
|
return False, "ERROR: The specified source backup files do not exist!"
|
|
|
|
|
|
|
|
# 1. Read the backup file and get VM details
|
|
|
|
try:
|
|
|
|
with open(backup_source_pvcbackup_file) as fh:
|
|
|
|
backup_source_details = jload(fh)
|
|
|
|
except Exception as e:
|
|
|
|
return False, f"ERROR: Failed to read source backup details: {e}"
|
|
|
|
|
|
|
|
# Handle incrementals
|
|
|
|
incremental_parent = backup_source_details.get("incremental_parent", None)
|
|
|
|
if incremental_parent is not None:
|
|
|
|
backup_source_parent_pvcbackup_file = (
|
|
|
|
f"{vm_backup_path}/{incremental_parent}/pvcbackup.json"
|
|
|
|
)
|
|
|
|
if not os.path.isfile(backup_source_parent_pvcbackup_file):
|
|
|
|
return (
|
|
|
|
False,
|
|
|
|
"ERROR: The specified backup is incremental but the required incremental parent source backup files do not exist!",
|
|
|
|
)
|
|
|
|
|
|
|
|
try:
|
|
|
|
with open(backup_source_parent_pvcbackup_file) as fh:
|
|
|
|
backup_source_parent_details = jload(fh)
|
|
|
|
except Exception as e:
|
|
|
|
return (
|
|
|
|
False,
|
|
|
|
f"ERROR: Failed to read source incremental parent backup details: {e}",
|
|
|
|
)
|
|
|
|
|
|
|
|
# 2. Import VM config and metadata in provision state
|
|
|
|
try:
|
|
|
|
retcode, retmsg = define_vm(
|
|
|
|
zkhandler,
|
|
|
|
backup_source_details["vm_detail"]["xml"],
|
|
|
|
backup_source_details["vm_detail"]["node"],
|
|
|
|
backup_source_details["vm_detail"]["node_limit"],
|
|
|
|
backup_source_details["vm_detail"]["node_selector"],
|
|
|
|
backup_source_details["vm_detail"]["node_autostart"],
|
|
|
|
backup_source_details["vm_detail"]["migration_method"],
|
|
|
|
backup_source_details["vm_detail"]["migration_max_downtime"],
|
|
|
|
backup_source_details["vm_detail"]["profile"],
|
|
|
|
backup_source_details["vm_detail"]["tags"],
|
|
|
|
"restore",
|
|
|
|
)
|
|
|
|
if not retcode:
|
|
|
|
return False, f"ERROR: Failed to define restored VM: {retmsg}"
|
|
|
|
except Exception as e:
|
|
|
|
return False, f"ERROR: Failed to parse VM backup details: {e}"
|
|
|
|
|
|
|
|
# 4. Import volumes
|
2024-08-20 10:53:56 -04:00
|
|
|
is_snapshot_remove_failed = False
|
|
|
|
which_snapshot_remove_failed = list()
|
|
|
|
if incremental_parent is not None:
|
2024-08-20 16:42:18 -04:00
|
|
|
for volume_file, volume_size in backup_source_details.get("backup_files"):
|
2024-08-20 10:53:56 -04:00
|
|
|
pool, volume, _ = volume_file.split("/")[-1].split(".")
|
|
|
|
try:
|
|
|
|
parent_volume_file = [
|
|
|
|
f[0]
|
2024-08-20 16:42:18 -04:00
|
|
|
for f in backup_source_parent_details.get("backup_files")
|
2024-08-20 10:53:56 -04:00
|
|
|
if f[0].split("/")[-1].replace(".rbdimg", "")
|
|
|
|
== volume_file.split("/")[-1].replace(".rbddiff", "")
|
|
|
|
][0]
|
|
|
|
except Exception as e:
|
|
|
|
return (
|
|
|
|
False,
|
2024-08-20 16:42:18 -04:00
|
|
|
f"ERROR: Failed to find parent volume for volume {pool}/{volume}; backup may be corrupt or invalid: {e}",
|
2024-08-20 10:53:56 -04:00
|
|
|
)
|
|
|
|
|
|
|
|
# First we create the expected volumes then clean them up
|
|
|
|
# This process is a bit of a hack because rbd import does not expect an existing volume,
|
|
|
|
# but we need the information in PVC.
|
2024-08-20 16:42:18 -04:00
|
|
|
# Thus create the RBD volume using ceph.add_volume based on the backup size, and then
|
2024-08-20 10:53:56 -04:00
|
|
|
# manually remove the RBD volume (leaving the PVC metainfo)
|
|
|
|
retcode, retmsg = ceph.add_volume(zkhandler, pool, volume, volume_size)
|
|
|
|
if not retcode:
|
2024-08-20 16:42:18 -04:00
|
|
|
return False, f"ERROR: Failed to create restored volume: {retmsg}"
|
2024-08-20 10:53:56 -04:00
|
|
|
|
|
|
|
retcode, stdout, stderr = common.run_os_command(
|
|
|
|
f"rbd remove {pool}/{volume}"
|
|
|
|
)
|
|
|
|
if retcode:
|
|
|
|
return (
|
|
|
|
False,
|
|
|
|
f"ERROR: Failed to remove temporary RBD volume '{pool}/{volume}': {stderr}",
|
|
|
|
)
|
|
|
|
|
2024-08-20 16:42:18 -04:00
|
|
|
# Next we import the parent images
|
2024-08-20 10:53:56 -04:00
|
|
|
retcode, stdout, stderr = common.run_os_command(
|
2024-08-20 16:42:18 -04:00
|
|
|
f"rbd import --export-format 2 --dest-pool {pool} {backup_path}/{domain}/{incremental_parent}/{parent_volume_file} {volume}"
|
2024-08-20 10:53:56 -04:00
|
|
|
)
|
|
|
|
if retcode:
|
|
|
|
return (
|
|
|
|
False,
|
2024-08-20 16:42:18 -04:00
|
|
|
f"ERROR: Failed to import parent backup image {parent_volume_file}: {stderr}",
|
2024-08-20 13:59:05 -04:00
|
|
|
)
|
|
|
|
|
2024-08-20 10:53:56 -04:00
|
|
|
# Then we import the incremental diffs
|
|
|
|
retcode, stdout, stderr = common.run_os_command(
|
2024-08-20 16:42:18 -04:00
|
|
|
f"rbd import-diff {backup_path}/{domain}/{datestring}/{volume_file} {pool}/{volume}"
|
2024-08-20 10:53:56 -04:00
|
|
|
)
|
|
|
|
if retcode:
|
|
|
|
return (
|
|
|
|
False,
|
2024-08-20 16:42:18 -04:00
|
|
|
f"ERROR: Failed to import incremental backup image {volume_file}: {stderr}",
|
2024-08-20 10:53:56 -04:00
|
|
|
)
|
|
|
|
|
2024-08-20 16:42:18 -04:00
|
|
|
# Finally we remove the parent and child snapshots (no longer required required)
|
|
|
|
if retain_snapshot:
|
|
|
|
retcode, retmsg = ceph.add_snapshot(
|
|
|
|
zkhandler,
|
|
|
|
pool,
|
|
|
|
volume,
|
|
|
|
f"backup_{incremental_parent}",
|
|
|
|
zk_only=True,
|
2024-08-20 10:53:56 -04:00
|
|
|
)
|
2024-08-20 16:42:18 -04:00
|
|
|
if not retcode:
|
|
|
|
return (
|
|
|
|
False,
|
|
|
|
f"ERROR: Failed to add imported image snapshot for {parent_volume_file}: {retmsg}",
|
|
|
|
)
|
|
|
|
else:
|
2024-08-20 13:59:05 -04:00
|
|
|
retcode, stdout, stderr = common.run_os_command(
|
2024-08-20 16:42:18 -04:00
|
|
|
f"rbd snap rm {pool}/{volume}@backup_{incremental_parent}"
|
2024-08-20 13:59:05 -04:00
|
|
|
)
|
|
|
|
if retcode:
|
|
|
|
is_snapshot_remove_failed = True
|
|
|
|
which_snapshot_remove_failed.append(f"{pool}/{volume}")
|
2024-08-20 16:42:18 -04:00
|
|
|
retcode, stdout, stderr = common.run_os_command(
|
|
|
|
f"rbd snap rm {pool}/{volume}@backup_{datestring}"
|
2024-08-20 13:59:05 -04:00
|
|
|
)
|
2024-08-20 16:42:18 -04:00
|
|
|
if retcode:
|
|
|
|
is_snapshot_remove_failed = True
|
|
|
|
which_snapshot_remove_failed.append(f"{pool}/{volume}")
|
2024-08-20 10:53:56 -04:00
|
|
|
|
|
|
|
else:
|
2024-08-20 16:42:18 -04:00
|
|
|
for volume_file, volume_size in backup_source_details.get("backup_files"):
|
2024-08-20 10:53:56 -04:00
|
|
|
pool, volume, _ = volume_file.split("/")[-1].split(".")
|
|
|
|
|
|
|
|
# First we create the expected volumes then clean them up
|
|
|
|
# This process is a bit of a hack because rbd import does not expect an existing volume,
|
|
|
|
# but we need the information in PVC.
|
2024-08-20 16:42:18 -04:00
|
|
|
# Thus create the RBD volume using ceph.add_volume based on the backup size, and then
|
2024-08-20 10:53:56 -04:00
|
|
|
# manually remove the RBD volume (leaving the PVC metainfo)
|
|
|
|
retcode, retmsg = ceph.add_volume(zkhandler, pool, volume, volume_size)
|
|
|
|
if not retcode:
|
2024-08-20 16:42:18 -04:00
|
|
|
return False, f"ERROR: Failed to create restored volume: {retmsg}"
|
2024-08-20 10:53:56 -04:00
|
|
|
|
|
|
|
retcode, stdout, stderr = common.run_os_command(
|
|
|
|
f"rbd remove {pool}/{volume}"
|
|
|
|
)
|
|
|
|
if retcode:
|
|
|
|
return (
|
|
|
|
False,
|
|
|
|
f"ERROR: Failed to remove temporary RBD volume '{pool}/{volume}': {stderr}",
|
|
|
|
)
|
|
|
|
|
|
|
|
# Then we perform the actual import
|
|
|
|
retcode, stdout, stderr = common.run_os_command(
|
2024-08-20 16:42:18 -04:00
|
|
|
f"rbd import --export-format 2 --dest-pool {pool} {backup_path}/{domain}/{datestring}/{volume_file} {volume}"
|
2024-08-20 10:53:56 -04:00
|
|
|
)
|
|
|
|
if retcode:
|
|
|
|
return (
|
|
|
|
False,
|
2024-08-20 16:42:18 -04:00
|
|
|
f"ERROR: Failed to import backup image {volume_file}: {stderr}",
|
2024-08-20 10:53:56 -04:00
|
|
|
)
|
|
|
|
|
2024-08-20 16:42:18 -04:00
|
|
|
# Finally we remove the source snapshot (not required)
|
|
|
|
if retain_snapshot:
|
|
|
|
retcode, retmsg = ceph.add_snapshot(
|
|
|
|
zkhandler,
|
|
|
|
pool,
|
|
|
|
volume,
|
|
|
|
f"backup_{datestring}",
|
|
|
|
zk_only=True,
|
2024-08-20 13:59:05 -04:00
|
|
|
)
|
2024-08-20 16:42:18 -04:00
|
|
|
if not retcode:
|
|
|
|
return (
|
|
|
|
False,
|
|
|
|
f"ERROR: Failed to add imported image snapshot for {volume_file}: {retmsg}",
|
|
|
|
)
|
|
|
|
else:
|
|
|
|
retcode, stdout, stderr = common.run_os_command(
|
|
|
|
f"rbd snap rm {pool}/{volume}@backup_{datestring}"
|
|
|
|
)
|
|
|
|
if retcode:
|
|
|
|
return (
|
|
|
|
False,
|
|
|
|
f"ERROR: Failed to remove imported image snapshot for {volume_file}: {stderr}",
|
|
|
|
)
|
2024-08-20 13:59:05 -04:00
|
|
|
|
2024-08-20 10:53:56 -04:00
|
|
|
# 5. Start VM
|
|
|
|
retcode, retmsg = start_vm(zkhandler, domain)
|
|
|
|
if not retcode:
|
2024-08-20 16:42:18 -04:00
|
|
|
return False, f"ERROR: Failed to start restored VM {domain}: {retmsg}"
|
2024-08-20 10:53:56 -04:00
|
|
|
|
|
|
|
tend = time.time()
|
|
|
|
ttot = round(tend - tstart, 2)
|
|
|
|
retlines = list()
|
|
|
|
|
|
|
|
if is_snapshot_remove_failed:
|
|
|
|
retlines.append(
|
|
|
|
f"WARNING: Failed to remove hanging snapshot(s) as requested for volume(s) {', '.join(which_snapshot_remove_failed)}"
|
|
|
|
)
|
|
|
|
|
2024-08-20 16:42:18 -04:00
|
|
|
myhostname = gethostname().split(".")[0]
|
2024-08-20 10:53:56 -04:00
|
|
|
retlines.append(
|
2024-08-20 16:42:18 -04:00
|
|
|
f"Successfully restored VM backup {datestring} for '{domain}' from '{myhostname}:{backup_path}' in {ttot}s."
|
2024-08-20 10:53:56 -04:00
|
|
|
)
|
|
|
|
|
|
|
|
return True, "\n".join(retlines)
|
|
|
|
|
|
|
|
|
2024-05-16 09:23:31 -04:00
|
|
|
#
|
2024-08-20 16:42:18 -04:00
|
|
|
# Celery worker tasks (must be run on node, outputs log messages to worker)
|
2024-05-16 09:23:31 -04:00
|
|
|
#
|
2024-08-20 16:42:18 -04:00
|
|
|
def vm_worker_helper_getdom(tuuid):
|
|
|
|
lv_conn = None
|
|
|
|
libvirt_uri = "qemu:///system"
|
2023-10-17 10:15:06 -04:00
|
|
|
|
2024-08-20 16:42:18 -04:00
|
|
|
# Convert (text) UUID into bytes
|
|
|
|
buuid = UUID(tuuid).bytes
|
2023-10-17 10:15:06 -04:00
|
|
|
|
2024-08-20 16:42:18 -04:00
|
|
|
try:
|
|
|
|
lv_conn = lvopen(libvirt_uri)
|
|
|
|
if lv_conn is None:
|
|
|
|
raise Exception("Failed to open local libvirt connection")
|
2024-01-10 10:37:29 -05:00
|
|
|
|
2024-08-20 16:42:18 -04:00
|
|
|
# Lookup the UUID
|
|
|
|
dom = lv_conn.lookupByUUID(buuid)
|
|
|
|
except Exception as e:
|
|
|
|
print(f"Error: {e}")
|
|
|
|
dom = None
|
|
|
|
finally:
|
|
|
|
if lv_conn is not None:
|
|
|
|
lv_conn.close()
|
2024-01-10 10:37:29 -05:00
|
|
|
|
2024-08-20 16:42:18 -04:00
|
|
|
return dom
|
2024-01-10 10:37:29 -05:00
|
|
|
|
|
|
|
|
2024-08-20 16:42:18 -04:00
|
|
|
def vm_worker_flush_locks(zkhandler, celery, domain, force_unlock=False):
|
|
|
|
current_stage = 0
|
|
|
|
total_stages = 3
|
|
|
|
start(
|
|
|
|
celery,
|
|
|
|
f"Flushing RBD locks for VM {domain} [forced={force_unlock}]",
|
|
|
|
current=current_stage,
|
|
|
|
total=total_stages,
|
|
|
|
)
|
2024-01-10 10:37:29 -05:00
|
|
|
|
|
|
|
dom_uuid = getDomainUUID(zkhandler, domain)
|
|
|
|
|
2024-08-20 16:42:18 -04:00
|
|
|
# Check that the domain is stopped (unless force_unlock is set)
|
|
|
|
domain_state = zkhandler.read(("domain.state", dom_uuid))
|
2024-09-11 10:12:29 -04:00
|
|
|
if not force_unlock and domain_state not in ["stop", "disable", "fail", "mirror"]:
|
2024-08-20 16:42:18 -04:00
|
|
|
fail(
|
|
|
|
celery,
|
2024-09-11 10:12:29 -04:00
|
|
|
f"VM state {domain_state} not in [stop, disable, fail, mirror] and not forcing",
|
2024-08-20 16:42:18 -04:00
|
|
|
)
|
2024-08-20 17:40:44 -04:00
|
|
|
return False
|
2023-10-17 11:51:03 -04:00
|
|
|
|
2024-08-20 16:42:18 -04:00
|
|
|
# Get the list of RBD images
|
|
|
|
rbd_list = zkhandler.read(("domain.storage.volumes", dom_uuid)).split(",")
|
2023-10-23 22:23:17 -04:00
|
|
|
|
2024-08-20 16:42:18 -04:00
|
|
|
current_stage += 1
|
|
|
|
update(
|
|
|
|
celery,
|
|
|
|
f"Obtaining RBD locks for VM {domain}",
|
|
|
|
current=current_stage,
|
|
|
|
total=total_stages,
|
|
|
|
)
|
2023-10-23 22:23:17 -04:00
|
|
|
|
2024-08-20 16:42:18 -04:00
|
|
|
# Prepare a list of locks
|
|
|
|
rbd_locks = list()
|
|
|
|
for rbd in rbd_list:
|
|
|
|
# Check if a lock exists
|
|
|
|
(
|
|
|
|
lock_list_retcode,
|
|
|
|
lock_list_stdout,
|
|
|
|
lock_list_stderr,
|
|
|
|
) = common.run_os_command(f"rbd lock list --format json {rbd}")
|
2024-01-10 10:37:29 -05:00
|
|
|
|
2024-08-20 16:42:18 -04:00
|
|
|
if lock_list_retcode != 0:
|
|
|
|
fail(
|
|
|
|
celery,
|
|
|
|
f"Failed to obtain lock list for volume {rbd}: {lock_list_stderr}",
|
2023-10-24 01:20:44 -04:00
|
|
|
)
|
2024-08-20 17:40:44 -04:00
|
|
|
return False
|
2023-10-23 22:23:17 -04:00
|
|
|
|
|
|
|
try:
|
2024-08-20 16:42:18 -04:00
|
|
|
lock_list = jloads(lock_list_stdout)
|
2023-10-23 22:23:17 -04:00
|
|
|
except Exception as e:
|
2024-08-20 16:42:18 -04:00
|
|
|
fail(
|
|
|
|
celery,
|
|
|
|
f"Failed to parse JSON lock list for volume {rbd}: {e}",
|
2024-01-10 14:18:44 -05:00
|
|
|
)
|
2024-08-20 17:40:44 -04:00
|
|
|
return False
|
2023-10-23 22:23:17 -04:00
|
|
|
|
2024-08-20 16:42:18 -04:00
|
|
|
if lock_list:
|
|
|
|
for lock in lock_list:
|
|
|
|
rbd_locks.append({"rbd": rbd, "lock": lock})
|
2023-10-17 10:15:06 -04:00
|
|
|
|
2024-08-20 16:42:18 -04:00
|
|
|
current_stage += 1
|
|
|
|
update(
|
|
|
|
celery,
|
|
|
|
f"Freeing RBD locks for VM {domain}",
|
|
|
|
current=current_stage,
|
|
|
|
total=total_stages,
|
|
|
|
)
|
2023-10-17 10:15:06 -04:00
|
|
|
|
2024-08-20 16:42:18 -04:00
|
|
|
for _lock in rbd_locks:
|
|
|
|
rbd = _lock["rbd"]
|
|
|
|
lock = _lock["lock"]
|
|
|
|
|
|
|
|
(
|
|
|
|
lock_remove_retcode,
|
|
|
|
lock_remove_stdout,
|
|
|
|
lock_remove_stderr,
|
|
|
|
) = common.run_os_command(
|
|
|
|
f"rbd lock remove {rbd} \"{lock['id']}\" \"{lock['locker']}\""
|
|
|
|
)
|
|
|
|
|
|
|
|
if lock_remove_retcode != 0:
|
2024-10-15 10:36:50 -04:00
|
|
|
if force_unlock and "No such file or directory" in lock_remove_stderr:
|
|
|
|
continue
|
|
|
|
else:
|
|
|
|
fail(
|
|
|
|
celery,
|
|
|
|
f"Failed to free RBD lock {lock['id']} on volume {rbd}: {lock_remove_stderr}",
|
|
|
|
)
|
|
|
|
return False
|
2024-08-20 16:42:18 -04:00
|
|
|
|
|
|
|
current_stage += 1
|
|
|
|
return finish(
|
|
|
|
celery,
|
|
|
|
f"Successfully flushed RBD locks for VM {domain}",
|
|
|
|
current=4,
|
|
|
|
total=4,
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
|
|
def vm_worker_attach_device(zkhandler, celery, domain, xml_spec):
|
|
|
|
current_stage = 0
|
|
|
|
total_stages = 1
|
|
|
|
start(
|
|
|
|
celery,
|
|
|
|
f"Hot-attaching XML device to VM {domain}",
|
|
|
|
current=current_stage,
|
|
|
|
total=total_stages,
|
|
|
|
)
|
|
|
|
|
|
|
|
dom_uuid = getDomainUUID(zkhandler, domain)
|
|
|
|
|
|
|
|
state = zkhandler.read(("domain.state", dom_uuid))
|
|
|
|
if state not in ["start"]:
|
|
|
|
fail(
|
|
|
|
celery,
|
|
|
|
f"VM {domain} not in start state; hot-attach unnecessary or impossible",
|
|
|
|
)
|
2024-08-20 17:40:44 -04:00
|
|
|
return False
|
2024-08-20 16:42:18 -04:00
|
|
|
|
|
|
|
dom = vm_worker_helper_getdom(dom_uuid)
|
|
|
|
if dom is None:
|
|
|
|
fail(
|
|
|
|
celery,
|
|
|
|
f"Failed to find Libvirt object for VM {domain}",
|
|
|
|
)
|
2024-08-20 17:40:44 -04:00
|
|
|
return False
|
2024-08-20 16:42:18 -04:00
|
|
|
|
|
|
|
try:
|
|
|
|
dom.attachDevice(xml_spec)
|
|
|
|
except Exception as e:
|
|
|
|
fail(celery, e)
|
2024-08-20 17:40:44 -04:00
|
|
|
return False
|
2024-08-20 16:42:18 -04:00
|
|
|
|
|
|
|
current_stage += 1
|
|
|
|
return finish(
|
|
|
|
celery,
|
|
|
|
f"Successfully hot-attached XML device to VM {domain}",
|
|
|
|
current=current_stage,
|
|
|
|
total=total_stages,
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
|
|
def vm_worker_detach_device(zkhandler, celery, domain, xml_spec):
|
|
|
|
current_stage = 0
|
|
|
|
total_stages = 1
|
|
|
|
start(
|
|
|
|
celery,
|
|
|
|
f"Hot-detaching XML device from VM {domain}",
|
|
|
|
current=current_stage,
|
|
|
|
total=total_stages,
|
|
|
|
)
|
|
|
|
|
|
|
|
dom_uuid = getDomainUUID(zkhandler, domain)
|
|
|
|
|
|
|
|
state = zkhandler.read(("domain.state", dom_uuid))
|
|
|
|
if state not in ["start"]:
|
|
|
|
fail(
|
|
|
|
celery,
|
|
|
|
f"VM {domain} not in start state; hot-detach unnecessary or impossible",
|
|
|
|
)
|
2024-08-20 17:40:44 -04:00
|
|
|
return False
|
2024-08-20 16:42:18 -04:00
|
|
|
|
|
|
|
dom = vm_worker_helper_getdom(dom_uuid)
|
|
|
|
if dom is None:
|
|
|
|
fail(
|
|
|
|
celery,
|
|
|
|
f"Failed to find Libvirt object for VM {domain}",
|
|
|
|
)
|
2024-08-20 17:40:44 -04:00
|
|
|
return False
|
2024-08-20 16:42:18 -04:00
|
|
|
|
|
|
|
try:
|
|
|
|
dom.detachDevice(xml_spec)
|
|
|
|
except Exception as e:
|
|
|
|
fail(celery, e)
|
2024-08-20 17:40:44 -04:00
|
|
|
return False
|
2024-08-20 16:42:18 -04:00
|
|
|
|
|
|
|
current_stage += 1
|
|
|
|
return finish(
|
|
|
|
celery,
|
|
|
|
f"Successfully hot-detached XML device from VM {domain}",
|
|
|
|
current=current_stage,
|
|
|
|
total=total_stages,
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
|
|
def vm_worker_create_snapshot(
|
2024-08-23 11:21:02 -04:00
|
|
|
zkhandler,
|
|
|
|
celery,
|
|
|
|
domain,
|
|
|
|
snapshot_name=None,
|
|
|
|
zk_only=False,
|
2024-08-20 16:42:18 -04:00
|
|
|
):
|
2024-08-20 23:01:52 -04:00
|
|
|
if snapshot_name is None:
|
|
|
|
now = datetime.now()
|
|
|
|
snapshot_name = now.strftime("%Y%m%d%H%M%S")
|
|
|
|
|
2024-08-25 15:17:46 -04:00
|
|
|
current_stage = 0
|
|
|
|
total_stages = 1
|
2024-08-20 17:43:46 -04:00
|
|
|
start(
|
|
|
|
celery,
|
|
|
|
f"Creating snapshot '{snapshot_name}' of VM '{domain}'",
|
|
|
|
current=current_stage,
|
|
|
|
total=total_stages,
|
|
|
|
)
|
|
|
|
|
2024-08-20 16:42:18 -04:00
|
|
|
# Validate that VM exists in cluster
|
|
|
|
dom_uuid = getDomainUUID(zkhandler, domain)
|
|
|
|
if not dom_uuid:
|
|
|
|
fail(
|
|
|
|
celery,
|
|
|
|
f"Could not find VM '{domain}' in the cluster",
|
|
|
|
)
|
2024-08-20 17:40:44 -04:00
|
|
|
return False
|
2024-08-20 16:42:18 -04:00
|
|
|
|
2024-08-20 23:01:52 -04:00
|
|
|
reg = re.compile("^[a-z0-9.-_]+$")
|
|
|
|
if not reg.match(snapshot_name):
|
|
|
|
fail(
|
|
|
|
celery,
|
|
|
|
"Snapshot name '{snapshot_name}' contains invalid characters; only alphanumeric, '.', '-', and '_' characters are allowed",
|
|
|
|
)
|
|
|
|
return False
|
2024-08-20 16:42:18 -04:00
|
|
|
|
2024-08-20 23:01:52 -04:00
|
|
|
current_snapshots = zkhandler.children(("domain.snapshots", dom_uuid))
|
|
|
|
if current_snapshots and snapshot_name in current_snapshots:
|
|
|
|
fail(
|
|
|
|
celery,
|
|
|
|
f"Snapshot name '{snapshot_name}' already exists for VM '{domain}'!",
|
|
|
|
)
|
|
|
|
return False
|
2024-08-20 16:42:18 -04:00
|
|
|
|
|
|
|
# Get the list of all RBD volumes
|
|
|
|
rbd_list = zkhandler.read(("domain.storage.volumes", dom_uuid)).split(",")
|
|
|
|
|
2024-08-25 15:17:46 -04:00
|
|
|
total_stages += 1 + len(rbd_list)
|
2024-08-20 16:42:18 -04:00
|
|
|
|
|
|
|
snap_list = list()
|
|
|
|
|
|
|
|
# If a snapshot fails, clean up any snapshots that were successfuly created
|
|
|
|
def cleanup_failure():
|
|
|
|
for snapshot in snap_list:
|
|
|
|
rbd, snapshot_name = snapshot.split("@")
|
|
|
|
pool, volume = rbd.split("/")
|
|
|
|
# We capture no output here, because if this fails too we're in a deep
|
|
|
|
# error chain and will just ignore it
|
|
|
|
ceph.remove_snapshot(zkhandler, pool, volume, snapshot_name)
|
|
|
|
|
|
|
|
# Iterrate through and create a snapshot for each RBD volume
|
|
|
|
for rbd in rbd_list:
|
|
|
|
current_stage += 1
|
|
|
|
update(
|
|
|
|
celery,
|
|
|
|
f"Creating RBD snapshot of {rbd}",
|
|
|
|
current=current_stage,
|
|
|
|
total=total_stages,
|
|
|
|
)
|
|
|
|
|
|
|
|
pool, volume = rbd.split("/")
|
|
|
|
ret, msg = ceph.add_snapshot(
|
|
|
|
zkhandler, pool, volume, snapshot_name, zk_only=zk_only
|
|
|
|
)
|
|
|
|
if not ret:
|
|
|
|
cleanup_failure()
|
|
|
|
fail(
|
|
|
|
celery,
|
|
|
|
msg.replace("ERROR: ", ""),
|
|
|
|
)
|
2024-08-20 17:40:44 -04:00
|
|
|
return False
|
2024-08-20 16:42:18 -04:00
|
|
|
else:
|
|
|
|
snap_list.append(f"{pool}/{volume}@{snapshot_name}")
|
|
|
|
|
|
|
|
current_stage += 1
|
|
|
|
update(
|
|
|
|
celery,
|
|
|
|
"Creating VM configuration snapshot",
|
|
|
|
current=current_stage,
|
|
|
|
total=total_stages,
|
|
|
|
)
|
|
|
|
|
|
|
|
# Get the current timestamp
|
|
|
|
tstart = time.time()
|
|
|
|
# Get the current domain XML
|
|
|
|
vm_config = zkhandler.read(("domain.xml", dom_uuid))
|
|
|
|
|
|
|
|
# Add the snapshot entry to Zookeeper
|
|
|
|
zkhandler.write(
|
|
|
|
[
|
|
|
|
(
|
|
|
|
(
|
|
|
|
"domain.snapshots",
|
|
|
|
dom_uuid,
|
|
|
|
"domain_snapshot.name",
|
|
|
|
snapshot_name,
|
|
|
|
),
|
|
|
|
snapshot_name,
|
|
|
|
),
|
|
|
|
(
|
|
|
|
(
|
|
|
|
"domain.snapshots",
|
|
|
|
dom_uuid,
|
|
|
|
"domain_snapshot.timestamp",
|
|
|
|
snapshot_name,
|
|
|
|
),
|
|
|
|
tstart,
|
|
|
|
),
|
|
|
|
(
|
|
|
|
(
|
|
|
|
"domain.snapshots",
|
|
|
|
dom_uuid,
|
|
|
|
"domain_snapshot.xml",
|
|
|
|
snapshot_name,
|
|
|
|
),
|
|
|
|
vm_config,
|
|
|
|
),
|
|
|
|
(
|
|
|
|
(
|
|
|
|
"domain.snapshots",
|
|
|
|
dom_uuid,
|
|
|
|
"domain_snapshot.rbd_snapshots",
|
|
|
|
snapshot_name,
|
|
|
|
),
|
|
|
|
",".join(snap_list),
|
|
|
|
),
|
|
|
|
]
|
|
|
|
)
|
|
|
|
|
|
|
|
current_stage += 1
|
|
|
|
return finish(
|
|
|
|
celery,
|
|
|
|
f"Successfully created snapshot '{snapshot_name}' of VM '{domain}'",
|
|
|
|
current=current_stage,
|
|
|
|
total=total_stages,
|
|
|
|
)
|
|
|
|
|
|
|
|
|
2024-08-23 11:21:02 -04:00
|
|
|
def vm_worker_remove_snapshot(
|
|
|
|
zkhandler,
|
|
|
|
celery,
|
|
|
|
domain,
|
|
|
|
snapshot_name,
|
|
|
|
):
|
2024-08-25 15:17:46 -04:00
|
|
|
current_stage = 0
|
|
|
|
total_stages = 1
|
2024-08-20 17:43:46 -04:00
|
|
|
start(
|
|
|
|
celery,
|
|
|
|
f"Removing snapshot '{snapshot_name}' of VM '{domain}'",
|
|
|
|
current=current_stage,
|
|
|
|
total=total_stages,
|
|
|
|
)
|
|
|
|
|
2024-08-20 16:42:18 -04:00
|
|
|
# Validate that VM exists in cluster
|
|
|
|
dom_uuid = getDomainUUID(zkhandler, domain)
|
|
|
|
if not dom_uuid:
|
|
|
|
fail(
|
|
|
|
celery,
|
|
|
|
f"Could not find VM '{domain}' in the cluster",
|
|
|
|
)
|
2024-08-20 17:40:44 -04:00
|
|
|
return False
|
2024-08-20 16:42:18 -04:00
|
|
|
|
|
|
|
if not zkhandler.exists(
|
|
|
|
("domain.snapshots", dom_uuid, "domain_snapshot.name", snapshot_name)
|
|
|
|
):
|
|
|
|
fail(
|
|
|
|
celery,
|
|
|
|
f"Could not find snapshot '{snapshot_name}' of VM '{domain}'!",
|
|
|
|
)
|
2024-08-20 17:40:44 -04:00
|
|
|
return False
|
2024-08-20 16:42:18 -04:00
|
|
|
|
|
|
|
_snapshots = zkhandler.read(
|
|
|
|
("domain.snapshots", dom_uuid, "domain_snapshot.rbd_snapshots", snapshot_name)
|
|
|
|
)
|
|
|
|
rbd_snapshots = _snapshots.split(",")
|
|
|
|
|
2024-10-09 00:37:13 -04:00
|
|
|
total_stages += 1 + len(rbd_snapshots)
|
2024-08-20 16:42:18 -04:00
|
|
|
|
|
|
|
for snap in rbd_snapshots:
|
|
|
|
current_stage += 1
|
|
|
|
update(
|
|
|
|
celery,
|
2024-08-25 15:58:25 -04:00
|
|
|
f"Removing RBD snapshot {snap}",
|
2024-08-20 16:42:18 -04:00
|
|
|
current=current_stage,
|
|
|
|
total=total_stages,
|
|
|
|
)
|
|
|
|
|
|
|
|
rbd, name = snap.split("@")
|
|
|
|
pool, volume = rbd.split("/")
|
|
|
|
ret, msg = ceph.remove_snapshot(zkhandler, pool, volume, name)
|
|
|
|
if not ret:
|
|
|
|
fail(
|
|
|
|
celery,
|
|
|
|
msg.replace("ERROR: ", ""),
|
|
|
|
)
|
2024-08-20 17:40:44 -04:00
|
|
|
return False
|
2024-08-20 16:42:18 -04:00
|
|
|
|
|
|
|
current_stage += 1
|
|
|
|
update(
|
|
|
|
celery,
|
2024-08-25 15:17:46 -04:00
|
|
|
"Removing VM configuration snapshot",
|
2024-08-20 16:42:18 -04:00
|
|
|
current=current_stage,
|
|
|
|
total=total_stages,
|
|
|
|
)
|
|
|
|
|
|
|
|
ret = zkhandler.delete(
|
|
|
|
("domain.snapshots", dom_uuid, "domain_snapshot.name", snapshot_name)
|
|
|
|
)
|
|
|
|
if not ret:
|
2024-08-20 17:40:44 -04:00
|
|
|
fail(
|
|
|
|
celery,
|
2024-08-25 15:17:46 -04:00
|
|
|
f'Failed to remove snapshot "{snapshot_name}" of VM "{domain}" from Zookeeper',
|
2024-08-20 16:42:18 -04:00
|
|
|
)
|
2024-08-20 17:40:44 -04:00
|
|
|
return False
|
2024-08-20 16:42:18 -04:00
|
|
|
|
|
|
|
current_stage += 1
|
|
|
|
return finish(
|
|
|
|
celery,
|
|
|
|
f"Successfully removed snapshot '{snapshot_name}' of VM '{domain}'",
|
|
|
|
current=current_stage,
|
|
|
|
total=total_stages,
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
|
|
def vm_worker_rollback_snapshot(zkhandler, celery, domain, snapshot_name):
|
2024-08-20 17:43:46 -04:00
|
|
|
current_stage = 0
|
|
|
|
total_stages = 1
|
|
|
|
start(
|
|
|
|
celery,
|
|
|
|
f"Rolling back to snapshot '{snapshot_name}' of VM '{domain}'",
|
|
|
|
current=current_stage,
|
|
|
|
total=total_stages,
|
|
|
|
)
|
|
|
|
|
2024-08-20 16:42:18 -04:00
|
|
|
# Validate that VM exists in cluster
|
|
|
|
dom_uuid = getDomainUUID(zkhandler, domain)
|
|
|
|
if not dom_uuid:
|
|
|
|
fail(
|
|
|
|
celery,
|
|
|
|
f"Could not find VM '{domain}' in the cluster",
|
|
|
|
)
|
2024-08-20 17:40:44 -04:00
|
|
|
return False
|
2024-08-20 16:42:18 -04:00
|
|
|
|
|
|
|
# Verify that the VM is in a stopped state; renaming is not supported otherwise
|
|
|
|
state = zkhandler.read(("domain.state", dom_uuid))
|
2024-09-11 10:12:29 -04:00
|
|
|
if state not in ["stop", "disable", "mirror"]:
|
2024-08-20 16:42:18 -04:00
|
|
|
fail(
|
|
|
|
celery,
|
|
|
|
f"VM '{domain}' is not stopped or disabled; VMs cannot be rolled back while running",
|
|
|
|
)
|
2024-08-20 17:40:44 -04:00
|
|
|
return False
|
2024-08-20 16:42:18 -04:00
|
|
|
|
|
|
|
# Verify that the snapshot exists
|
|
|
|
if not zkhandler.exists(
|
|
|
|
("domain.snapshots", dom_uuid, "domain_snapshot.name", snapshot_name)
|
|
|
|
):
|
|
|
|
fail(
|
|
|
|
celery,
|
|
|
|
f"Could not find snapshot '{snapshot_name}' of VM '{domain}'",
|
|
|
|
)
|
|
|
|
|
|
|
|
_snapshots = zkhandler.read(
|
|
|
|
("domain.snapshots", dom_uuid, "domain_snapshot.rbd_snapshots", snapshot_name)
|
|
|
|
)
|
|
|
|
rbd_snapshots = _snapshots.split(",")
|
|
|
|
|
2024-10-09 00:37:13 -04:00
|
|
|
total_stages += 1 + len(rbd_snapshots)
|
2024-08-20 16:42:18 -04:00
|
|
|
|
|
|
|
for snap in rbd_snapshots:
|
|
|
|
current_stage += 1
|
|
|
|
update(
|
|
|
|
celery,
|
2024-08-25 15:58:25 -04:00
|
|
|
f"Rolling back RBD snapshot {snap}",
|
2024-08-20 16:42:18 -04:00
|
|
|
current=current_stage,
|
|
|
|
total=total_stages,
|
|
|
|
)
|
|
|
|
|
|
|
|
rbd, name = snap.split("@")
|
|
|
|
pool, volume = rbd.split("/")
|
|
|
|
ret, msg = ceph.rollback_snapshot(zkhandler, pool, volume, name)
|
|
|
|
if not ret:
|
|
|
|
fail(
|
|
|
|
celery,
|
|
|
|
msg.replace("ERROR: ", ""),
|
|
|
|
)
|
2024-08-20 17:40:44 -04:00
|
|
|
return False
|
2024-08-20 16:42:18 -04:00
|
|
|
|
|
|
|
current_stage += 1
|
|
|
|
update(
|
|
|
|
celery,
|
|
|
|
"Rolling back VM configuration snapshot",
|
|
|
|
current=current_stage,
|
|
|
|
total=total_stages,
|
|
|
|
)
|
|
|
|
|
|
|
|
# Get the snapshot domain XML
|
|
|
|
vm_config = zkhandler.read(
|
|
|
|
("domain.snapshots", dom_uuid, "domain_snapshot.xml", snapshot_name)
|
|
|
|
)
|
|
|
|
|
|
|
|
# Write the restored config to the main XML config
|
|
|
|
zkhandler.write(
|
|
|
|
[
|
|
|
|
(
|
|
|
|
(
|
|
|
|
"domain.xml",
|
|
|
|
dom_uuid,
|
|
|
|
),
|
|
|
|
vm_config,
|
|
|
|
),
|
|
|
|
]
|
|
|
|
)
|
|
|
|
|
|
|
|
current_stage += 1
|
|
|
|
return finish(
|
|
|
|
celery,
|
|
|
|
f"Successfully rolled back to snapshot '{snapshot_name}' of VM '{domain}'",
|
|
|
|
current=current_stage,
|
|
|
|
total=total_stages,
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
|
|
def vm_worker_export_snapshot(
|
2024-08-23 11:21:02 -04:00
|
|
|
zkhandler,
|
|
|
|
celery,
|
|
|
|
domain,
|
|
|
|
snapshot_name,
|
|
|
|
export_path,
|
|
|
|
incremental_parent=None,
|
2024-08-20 16:42:18 -04:00
|
|
|
):
|
2024-08-25 15:17:46 -04:00
|
|
|
current_stage = 0
|
|
|
|
total_stages = 1
|
2024-08-20 17:43:46 -04:00
|
|
|
start(
|
|
|
|
celery,
|
|
|
|
f"Exporting snapshot '{snapshot_name}' of VM '{domain}' to '{export_path}'",
|
|
|
|
current=current_stage,
|
|
|
|
total=total_stages,
|
|
|
|
)
|
|
|
|
|
2024-08-20 16:42:18 -04:00
|
|
|
# Validate that the target path is valid
|
|
|
|
if not re.match(r"^/", export_path):
|
|
|
|
fail(
|
|
|
|
celery,
|
|
|
|
f"Target path '{export_path}' is not a valid absolute path",
|
|
|
|
)
|
2024-08-20 17:40:44 -04:00
|
|
|
return False
|
2024-08-20 16:42:18 -04:00
|
|
|
|
|
|
|
# Ensure that backup_path (on this node) exists
|
|
|
|
myhostname = gethostname().split(".")[0]
|
|
|
|
if not os.path.isdir(export_path):
|
|
|
|
fail(
|
|
|
|
celery,
|
2024-08-23 10:23:51 -04:00
|
|
|
f"Target path '{export_path}' does not exist on node '{myhostname}'",
|
2024-08-20 16:42:18 -04:00
|
|
|
)
|
2024-08-20 17:40:44 -04:00
|
|
|
return False
|
2024-08-20 16:42:18 -04:00
|
|
|
|
|
|
|
# Validate that VM exists in cluster
|
|
|
|
dom_uuid = getDomainUUID(zkhandler, domain)
|
|
|
|
if not dom_uuid:
|
|
|
|
fail(
|
|
|
|
celery,
|
|
|
|
f"Could not find VM '{domain}' in the cluster",
|
|
|
|
)
|
2024-08-20 17:40:44 -04:00
|
|
|
return False
|
2024-08-20 16:42:18 -04:00
|
|
|
|
|
|
|
if not zkhandler.exists(
|
|
|
|
("domain.snapshots", dom_uuid, "domain_snapshot.name", snapshot_name)
|
|
|
|
):
|
|
|
|
fail(
|
|
|
|
celery,
|
|
|
|
f"Could not find snapshot '{snapshot_name}' of VM '{domain}'",
|
|
|
|
)
|
2024-08-20 17:40:44 -04:00
|
|
|
return False
|
2024-08-20 16:42:18 -04:00
|
|
|
|
|
|
|
if incremental_parent is not None and not zkhandler.exists(
|
|
|
|
("domain.snapshots", dom_uuid, "domain_snapshot.name", incremental_parent)
|
|
|
|
):
|
|
|
|
fail(
|
|
|
|
celery,
|
|
|
|
f"Could not find snapshot '{snapshot_name}' of VM '{domain}'",
|
|
|
|
)
|
2024-08-20 17:40:44 -04:00
|
|
|
return False
|
2024-08-20 16:42:18 -04:00
|
|
|
|
|
|
|
# Get details about VM snapshot
|
|
|
|
_, snapshot_timestamp, snapshot_xml, snapshot_rbdsnaps = zkhandler.read_many(
|
|
|
|
[
|
|
|
|
(
|
|
|
|
(
|
|
|
|
"domain.snapshots",
|
|
|
|
dom_uuid,
|
|
|
|
"domain_snapshot.name",
|
|
|
|
snapshot_name,
|
2024-01-10 10:37:29 -05:00
|
|
|
)
|
2024-08-20 16:42:18 -04:00
|
|
|
),
|
|
|
|
(
|
|
|
|
(
|
|
|
|
"domain.snapshots",
|
|
|
|
dom_uuid,
|
|
|
|
"domain_snapshot.timestamp",
|
|
|
|
snapshot_name,
|
|
|
|
)
|
|
|
|
),
|
|
|
|
(
|
|
|
|
(
|
|
|
|
"domain.snapshots",
|
|
|
|
dom_uuid,
|
|
|
|
"domain_snapshot.xml",
|
|
|
|
snapshot_name,
|
|
|
|
)
|
|
|
|
),
|
|
|
|
(
|
|
|
|
(
|
|
|
|
"domain.snapshots",
|
|
|
|
dom_uuid,
|
|
|
|
"domain_snapshot.rbd_snapshots",
|
|
|
|
snapshot_name,
|
2023-10-17 10:15:06 -04:00
|
|
|
)
|
2024-08-20 16:42:18 -04:00
|
|
|
),
|
|
|
|
]
|
|
|
|
)
|
|
|
|
snapshot_rbdsnaps = snapshot_rbdsnaps.split(",")
|
2023-10-17 10:15:06 -04:00
|
|
|
|
2024-10-09 00:37:13 -04:00
|
|
|
total_stages += 1 + len(snapshot_rbdsnaps)
|
2023-10-17 10:15:06 -04:00
|
|
|
|
2024-08-20 16:42:18 -04:00
|
|
|
# Create destination directory
|
|
|
|
export_target_path = f"{export_path}/{domain}/{snapshot_name}/images"
|
|
|
|
try:
|
|
|
|
os.makedirs(export_target_path)
|
|
|
|
except Exception as e:
|
|
|
|
fail(
|
|
|
|
celery,
|
|
|
|
f"Failed to create target directory '{export_target_path}': {e}",
|
|
|
|
)
|
2024-08-20 17:40:44 -04:00
|
|
|
return False
|
2023-10-23 11:00:54 -04:00
|
|
|
|
2024-08-20 16:42:18 -04:00
|
|
|
def export_cleanup():
|
|
|
|
from shutil import rmtree
|
|
|
|
|
|
|
|
rmtree(f"{export_path}/{domain}/{snapshot_name}")
|
|
|
|
|
|
|
|
export_type = "incremental" if incremental_parent is not None else "full"
|
|
|
|
|
|
|
|
# Get information about VM
|
|
|
|
vm_detail = get_list(zkhandler, limit=dom_uuid, is_fuzzy=False)[1][0]
|
|
|
|
if not isinstance(vm_detail, dict):
|
|
|
|
fail(celery, f"VM listing returned invalid data: {vm_detail}")
|
2024-08-20 17:40:44 -04:00
|
|
|
return False
|
2024-08-20 16:42:18 -04:00
|
|
|
|
|
|
|
# Override the current XML with the snapshot XML; but all other metainfo is current
|
|
|
|
vm_detail["xml"] = snapshot_xml
|
|
|
|
|
|
|
|
# Get the list of volumes
|
|
|
|
snapshot_volumes = list()
|
|
|
|
for rbdsnap in snapshot_rbdsnaps:
|
|
|
|
pool, _volume = rbdsnap.split("/")
|
|
|
|
volume, name = _volume.split("@")
|
|
|
|
ret, snapshots = ceph.get_list_snapshot(
|
|
|
|
zkhandler, pool, volume, limit=name, is_fuzzy=False
|
|
|
|
)
|
|
|
|
if ret:
|
|
|
|
snapshot_volumes += snapshots
|
|
|
|
|
|
|
|
# Set the export filetype
|
|
|
|
if incremental_parent is not None:
|
|
|
|
export_fileext = "rbddiff"
|
|
|
|
else:
|
|
|
|
export_fileext = "rbdimg"
|
2023-10-17 10:15:06 -04:00
|
|
|
|
2024-08-20 16:42:18 -04:00
|
|
|
# Dump snapshot to folder with `rbd export` (full) or `rbd export-diff` (incremental)
|
|
|
|
export_files = list()
|
|
|
|
for snapshot_volume in snapshot_volumes:
|
|
|
|
pool = snapshot_volume["pool"]
|
|
|
|
volume = snapshot_volume["volume"]
|
|
|
|
snapshot_name = snapshot_volume["snapshot"]
|
|
|
|
size = snapshot_volume["stats"]["size"]
|
|
|
|
snap = f"{pool}/{volume}@{snapshot_name}"
|
2024-01-10 10:37:29 -05:00
|
|
|
|
2024-08-20 16:42:18 -04:00
|
|
|
current_stage += 1
|
|
|
|
update(
|
|
|
|
celery,
|
2024-08-25 15:58:25 -04:00
|
|
|
f"Exporting RBD snapshot {snap}",
|
2024-08-20 16:42:18 -04:00
|
|
|
current=current_stage,
|
|
|
|
total=total_stages,
|
2023-10-17 10:15:06 -04:00
|
|
|
)
|
|
|
|
|
|
|
|
if incremental_parent is not None:
|
|
|
|
retcode, stdout, stderr = common.run_os_command(
|
2024-08-20 16:42:18 -04:00
|
|
|
f"rbd export-diff --from-snap {incremental_parent} {pool}/{volume}@{snapshot_name} {export_target_path}/{pool}.{volume}.{export_fileext}"
|
2023-10-17 10:15:06 -04:00
|
|
|
)
|
|
|
|
if retcode:
|
2024-08-20 16:42:18 -04:00
|
|
|
export_cleanup()
|
|
|
|
fail(
|
|
|
|
celery, f"Failed to export snapshot for volume(s) '{pool}/{volume}'"
|
2024-01-10 10:37:29 -05:00
|
|
|
)
|
2024-08-20 17:40:44 -04:00
|
|
|
return False
|
2024-08-20 16:42:18 -04:00
|
|
|
else:
|
|
|
|
export_files.append((f"images/{pool}.{volume}.{export_fileext}", size))
|
2023-10-17 10:15:06 -04:00
|
|
|
else:
|
|
|
|
retcode, stdout, stderr = common.run_os_command(
|
2024-08-20 16:42:18 -04:00
|
|
|
f"rbd export --export-format 2 {pool}/{volume}@{snapshot_name} {export_target_path}/{pool}.{volume}.{export_fileext}"
|
2023-10-17 10:15:06 -04:00
|
|
|
)
|
|
|
|
if retcode:
|
2024-08-20 16:42:18 -04:00
|
|
|
export_cleanup()
|
|
|
|
fail(
|
|
|
|
celery, f"Failed to export snapshot for volume(s) '{pool}/{volume}'"
|
2024-01-10 14:18:44 -05:00
|
|
|
)
|
2024-08-20 17:40:44 -04:00
|
|
|
return False
|
2024-08-20 16:42:18 -04:00
|
|
|
else:
|
|
|
|
export_files.append((f"images/{pool}.{volume}.{export_fileext}", size))
|
|
|
|
|
|
|
|
current_stage += 1
|
|
|
|
update(
|
|
|
|
celery,
|
|
|
|
"Writing snapshot details",
|
|
|
|
current=current_stage,
|
|
|
|
total=total_stages,
|
|
|
|
)
|
2024-01-10 14:18:44 -05:00
|
|
|
|
|
|
|
def get_dir_size(path):
|
|
|
|
total = 0
|
|
|
|
with scandir(path) as it:
|
|
|
|
for entry in it:
|
|
|
|
if entry.is_file():
|
|
|
|
total += entry.stat().st_size
|
|
|
|
elif entry.is_dir():
|
|
|
|
total += get_dir_size(entry.path)
|
|
|
|
return total
|
2023-10-17 10:15:06 -04:00
|
|
|
|
2024-08-20 16:42:18 -04:00
|
|
|
export_files_size = get_dir_size(export_target_path)
|
2023-10-24 01:08:36 -04:00
|
|
|
|
2024-08-20 16:42:18 -04:00
|
|
|
export_details = {
|
|
|
|
"type": export_type,
|
|
|
|
"snapshot_name": snapshot_name,
|
|
|
|
"incremental_parent": incremental_parent,
|
|
|
|
"vm_detail": vm_detail,
|
|
|
|
"export_files": export_files,
|
|
|
|
"export_size_bytes": export_files_size,
|
|
|
|
}
|
2023-10-24 01:08:36 -04:00
|
|
|
try:
|
2024-08-20 16:42:18 -04:00
|
|
|
with open(f"{export_path}/{domain}/{snapshot_name}/snapshot.json", "w") as fh:
|
|
|
|
jdump(export_details, fh)
|
2023-10-24 01:08:36 -04:00
|
|
|
except Exception as e:
|
2024-08-20 16:42:18 -04:00
|
|
|
export_cleanup()
|
|
|
|
fail(celery, f"Failed to export configuration snapshot: {e}")
|
2024-08-20 17:40:44 -04:00
|
|
|
return False
|
2023-10-24 01:08:36 -04:00
|
|
|
|
2024-08-20 16:42:18 -04:00
|
|
|
current_stage += 1
|
|
|
|
return finish(
|
|
|
|
celery,
|
|
|
|
f"Successfully exported snapshot '{snapshot_name}' of VM '{domain}' to '{export_path}'",
|
|
|
|
current=current_stage,
|
|
|
|
total=total_stages,
|
2023-10-24 01:20:44 -04:00
|
|
|
)
|
2023-10-24 01:08:36 -04:00
|
|
|
|
|
|
|
|
2024-08-20 16:42:18 -04:00
|
|
|
def vm_worker_import_snapshot(
|
|
|
|
zkhandler, celery, domain, snapshot_name, import_path, retain_snapshot=True
|
|
|
|
):
|
|
|
|
myhostname = gethostname().split(".")[0]
|
2023-10-23 11:00:54 -04:00
|
|
|
|
2024-08-20 17:43:46 -04:00
|
|
|
current_stage = 0
|
|
|
|
total_stages = 1
|
|
|
|
start(
|
|
|
|
celery,
|
|
|
|
f"Importing snapshot '{snapshot_name}' of VM '{domain}' from '{import_path}'",
|
|
|
|
current=current_stage,
|
|
|
|
total=total_stages,
|
|
|
|
)
|
|
|
|
|
2023-10-23 11:00:54 -04:00
|
|
|
# 0. Validations
|
|
|
|
# Validate that VM does not exist in cluster
|
|
|
|
dom_uuid = getDomainUUID(zkhandler, domain)
|
|
|
|
if dom_uuid:
|
2024-08-20 16:42:18 -04:00
|
|
|
fail(
|
|
|
|
celery,
|
2024-08-20 17:03:48 -04:00
|
|
|
f"VM '{domain}' (UUID '{dom_uuid}') already exists in the cluster; remove it before importing a snapshot",
|
2023-10-23 11:00:54 -04:00
|
|
|
)
|
2024-08-20 17:40:44 -04:00
|
|
|
return False
|
2023-10-23 11:00:54 -04:00
|
|
|
|
2023-10-24 01:08:36 -04:00
|
|
|
# Validate that the source path is valid
|
2024-08-20 16:42:18 -04:00
|
|
|
if not re.match(r"^/", import_path):
|
|
|
|
fail(
|
|
|
|
celery,
|
|
|
|
f"Source path '{import_path}; is not a valid absolute path",
|
2023-10-23 11:00:54 -04:00
|
|
|
)
|
2024-08-20 17:40:44 -04:00
|
|
|
return False
|
2023-10-23 11:00:54 -04:00
|
|
|
|
2024-08-20 16:42:18 -04:00
|
|
|
# Ensure that import_path (on this node) exists
|
|
|
|
if not os.path.isdir(import_path):
|
|
|
|
fail(
|
|
|
|
celery,
|
|
|
|
f"Source path '{import_path}' does not exist on node '{myhostname}'",
|
|
|
|
)
|
2024-08-20 17:40:44 -04:00
|
|
|
return False
|
2023-10-23 11:00:54 -04:00
|
|
|
|
|
|
|
# Ensure that domain path (on this node) exists
|
2024-08-20 16:42:18 -04:00
|
|
|
vm_import_path = f"{import_path}/{domain}"
|
|
|
|
if not os.path.isdir(vm_import_path):
|
|
|
|
fail(celery, f"Source VM path '{vm_import_path}' does not exist")
|
2024-08-20 17:40:44 -04:00
|
|
|
return False
|
2023-10-23 11:00:54 -04:00
|
|
|
|
|
|
|
# Ensure that the archives are present
|
2024-08-20 16:42:18 -04:00
|
|
|
export_source_snapshot_file = f"{vm_import_path}/{snapshot_name}/snapshot.json"
|
|
|
|
if not os.path.isfile(export_source_snapshot_file):
|
2024-08-23 11:21:02 -04:00
|
|
|
fail(celery, f"The specified source export '{snapshot_name}' do not exist")
|
2024-08-20 17:40:44 -04:00
|
|
|
return False
|
2023-10-23 11:00:54 -04:00
|
|
|
|
2024-08-20 16:42:18 -04:00
|
|
|
# Read the export file and get VM details
|
2023-10-23 22:23:17 -04:00
|
|
|
try:
|
2024-08-20 16:42:18 -04:00
|
|
|
with open(export_source_snapshot_file) as fh:
|
|
|
|
export_source_details = jload(fh)
|
2023-10-23 22:23:17 -04:00
|
|
|
except Exception as e:
|
2024-08-20 16:42:18 -04:00
|
|
|
fail(
|
|
|
|
celery,
|
|
|
|
f"Failed to read source export details: {e}",
|
|
|
|
)
|
2024-08-20 17:40:44 -04:00
|
|
|
return False
|
2023-10-23 22:23:17 -04:00
|
|
|
|
2024-08-20 17:03:48 -04:00
|
|
|
# Check that another VM with the same UUID doesn't already exist (rename is not enough!)
|
|
|
|
dom_name = getDomainName(zkhandler, export_source_details["vm_detail"]["uuid"])
|
|
|
|
if dom_name:
|
|
|
|
fail(
|
|
|
|
celery,
|
|
|
|
f"VM UUID '{export_source_details['vm_detail']['uuid']}' (Name '{dom_name}') already exists in the cluster; remove it before importing a snapshot",
|
|
|
|
)
|
2024-08-20 17:40:44 -04:00
|
|
|
return False
|
2024-08-20 17:03:48 -04:00
|
|
|
|
2023-10-23 22:23:17 -04:00
|
|
|
# Handle incrementals
|
2024-08-20 16:42:18 -04:00
|
|
|
incremental_parent = export_source_details.get("incremental_parent", None)
|
2023-10-23 11:00:54 -04:00
|
|
|
if incremental_parent is not None:
|
2024-08-20 16:42:18 -04:00
|
|
|
export_source_parent_snapshot_file = (
|
|
|
|
f"{vm_import_path}/{incremental_parent}/snapshot.json"
|
2023-10-23 11:00:54 -04:00
|
|
|
)
|
2024-08-20 16:42:18 -04:00
|
|
|
if not os.path.isfile(export_source_parent_snapshot_file):
|
|
|
|
fail(
|
|
|
|
celery,
|
|
|
|
f"Export is incremental but required incremental parent files do not exist at '{myhostname}:{vm_import_path}/{incremental_parent}'",
|
2023-10-23 11:00:54 -04:00
|
|
|
)
|
2024-08-20 17:40:44 -04:00
|
|
|
return False
|
2023-10-23 11:00:54 -04:00
|
|
|
|
2023-10-23 22:23:17 -04:00
|
|
|
try:
|
2024-08-20 16:42:18 -04:00
|
|
|
with open(export_source_parent_snapshot_file) as fh:
|
|
|
|
export_source_parent_details = jload(fh)
|
2023-10-23 22:23:17 -04:00
|
|
|
except Exception as e:
|
2024-08-20 16:42:18 -04:00
|
|
|
fail(
|
|
|
|
celery,
|
|
|
|
f"Failed to read source incremental parent export details: {e}",
|
2023-10-24 01:20:44 -04:00
|
|
|
)
|
2024-08-20 17:40:44 -04:00
|
|
|
return False
|
2023-10-23 22:23:17 -04:00
|
|
|
|
2024-10-09 00:37:13 -04:00
|
|
|
total_stages += 3 * len(export_source_details.get("export_files"))
|
2024-08-20 16:42:18 -04:00
|
|
|
if incremental_parent is not None:
|
2024-08-20 17:43:46 -04:00
|
|
|
total_stages += 3
|
2024-08-20 16:42:18 -04:00
|
|
|
total_stages += len(export_source_parent_details.get("export_files"))
|
2023-10-23 11:00:54 -04:00
|
|
|
|
2023-10-23 22:23:17 -04:00
|
|
|
# 4. Import volumes
|
|
|
|
if incremental_parent is not None:
|
2024-08-20 16:42:18 -04:00
|
|
|
for volume_file, volume_size in export_source_details.get("export_files"):
|
|
|
|
volume_size = f"{volume_size}B"
|
2023-10-24 01:20:44 -04:00
|
|
|
pool, volume, _ = volume_file.split("/")[-1].split(".")
|
2024-08-20 16:42:18 -04:00
|
|
|
|
2023-10-23 22:23:17 -04:00
|
|
|
try:
|
2023-10-24 01:20:44 -04:00
|
|
|
parent_volume_file = [
|
|
|
|
f[0]
|
2024-08-20 16:42:18 -04:00
|
|
|
for f in export_source_parent_details.get("export_files")
|
2023-10-24 01:20:44 -04:00
|
|
|
if f[0].split("/")[-1].replace(".rbdimg", "")
|
|
|
|
== volume_file.split("/")[-1].replace(".rbddiff", "")
|
|
|
|
][0]
|
2023-10-23 22:23:17 -04:00
|
|
|
except Exception as e:
|
2024-08-20 16:42:18 -04:00
|
|
|
fail(
|
|
|
|
celery,
|
|
|
|
f"Failed to find parent volume for volume {pool}/{volume}; export may be corrupt or invalid: {e}",
|
2023-10-24 01:20:44 -04:00
|
|
|
)
|
2024-08-20 17:40:44 -04:00
|
|
|
return False
|
2023-10-23 11:00:54 -04:00
|
|
|
|
2023-10-23 22:23:17 -04:00
|
|
|
# First we create the expected volumes then clean them up
|
|
|
|
# This process is a bit of a hack because rbd import does not expect an existing volume,
|
|
|
|
# but we need the information in PVC.
|
2024-08-20 16:42:18 -04:00
|
|
|
# Thus create the RBD volume using ceph.add_volume based on the export size, and then
|
2023-10-23 22:23:17 -04:00
|
|
|
# manually remove the RBD volume (leaving the PVC metainfo)
|
2024-08-20 16:42:18 -04:00
|
|
|
current_stage += 1
|
|
|
|
update(
|
|
|
|
celery,
|
|
|
|
f"Preparing RBD volume {pool}/{volume}",
|
|
|
|
current=current_stage,
|
|
|
|
total=total_stages,
|
2023-10-23 22:23:17 -04:00
|
|
|
)
|
|
|
|
|
|
|
|
retcode, retmsg = ceph.add_volume(zkhandler, pool, volume, volume_size)
|
|
|
|
if not retcode:
|
2024-08-20 16:42:18 -04:00
|
|
|
fail(celery, f"Failed to create imported volume: {retmsg}")
|
2024-08-20 17:40:44 -04:00
|
|
|
return False
|
2023-10-23 22:23:17 -04:00
|
|
|
|
|
|
|
retcode, stdout, stderr = common.run_os_command(
|
|
|
|
f"rbd remove {pool}/{volume}"
|
|
|
|
)
|
|
|
|
if retcode:
|
2024-08-20 16:42:18 -04:00
|
|
|
fail(
|
|
|
|
celery,
|
|
|
|
f"Failed to remove temporary RBD volume '{pool}/{volume}': {stderr}",
|
2023-10-24 01:20:44 -04:00
|
|
|
)
|
2024-08-20 17:40:44 -04:00
|
|
|
return False
|
2023-10-23 22:23:17 -04:00
|
|
|
|
2024-08-20 16:42:18 -04:00
|
|
|
current_stage += 1
|
|
|
|
update(
|
|
|
|
celery,
|
2024-08-25 15:58:25 -04:00
|
|
|
f"Importing RBD snapshot {pool}/{volume}@{incremental_parent}",
|
2024-08-20 16:42:18 -04:00
|
|
|
current=current_stage,
|
|
|
|
total=total_stages,
|
|
|
|
)
|
|
|
|
|
|
|
|
# Next we import the parent image
|
2023-10-23 22:23:17 -04:00
|
|
|
retcode, stdout, stderr = common.run_os_command(
|
2024-08-20 16:42:18 -04:00
|
|
|
f"rbd import --export-format 2 --dest-pool {pool} {import_path}/{domain}/{incremental_parent}/{parent_volume_file} {volume}"
|
2023-10-23 22:23:17 -04:00
|
|
|
)
|
|
|
|
if retcode:
|
2024-08-20 16:42:18 -04:00
|
|
|
fail(
|
|
|
|
celery,
|
|
|
|
f"Failed to import parent export image {parent_volume_file}: {stderr}",
|
2023-10-24 00:23:12 -04:00
|
|
|
)
|
2024-08-20 17:40:44 -04:00
|
|
|
return False
|
2023-11-05 22:32:41 -05:00
|
|
|
|
2024-08-20 16:42:18 -04:00
|
|
|
# Import VM config and metadata in import state, from the *source* details
|
|
|
|
current_stage += 1
|
|
|
|
update(
|
2023-11-05 22:32:41 -05:00
|
|
|
celery,
|
2024-08-20 16:42:18 -04:00
|
|
|
f"Importing VM configuration snapshot {incremental_parent}",
|
|
|
|
current=current_stage,
|
|
|
|
total=total_stages,
|
2023-11-05 22:32:41 -05:00
|
|
|
)
|
|
|
|
|
2024-08-20 16:42:18 -04:00
|
|
|
try:
|
|
|
|
retcode, retmsg = define_vm(
|
|
|
|
zkhandler,
|
|
|
|
export_source_parent_details["vm_detail"]["xml"],
|
|
|
|
export_source_parent_details["vm_detail"]["node"],
|
|
|
|
export_source_parent_details["vm_detail"]["node_limit"],
|
|
|
|
export_source_parent_details["vm_detail"]["node_selector"],
|
|
|
|
export_source_parent_details["vm_detail"]["node_autostart"],
|
|
|
|
export_source_parent_details["vm_detail"]["migration_method"],
|
|
|
|
export_source_parent_details["vm_detail"]["migration_max_downtime"],
|
|
|
|
export_source_parent_details["vm_detail"]["profile"],
|
|
|
|
export_source_parent_details["vm_detail"]["tags"],
|
|
|
|
"import",
|
|
|
|
)
|
|
|
|
if not retcode:
|
|
|
|
fail(
|
|
|
|
celery,
|
|
|
|
f"Failed to define imported VM: {retmsg}",
|
|
|
|
)
|
2024-08-20 17:40:44 -04:00
|
|
|
return False
|
2024-08-20 16:42:18 -04:00
|
|
|
except Exception as e:
|
2023-11-05 22:32:41 -05:00
|
|
|
fail(
|
|
|
|
celery,
|
2024-08-20 16:42:18 -04:00
|
|
|
f"Failed to parse VM export details: {e}",
|
2023-11-05 22:32:41 -05:00
|
|
|
)
|
2024-08-20 17:40:44 -04:00
|
|
|
return False
|
2023-11-05 22:32:41 -05:00
|
|
|
|
2024-08-20 16:42:18 -04:00
|
|
|
# Handle the VM snapshots
|
|
|
|
if retain_snapshot:
|
|
|
|
current_stage += 1
|
|
|
|
update(
|
2023-11-09 14:05:15 -05:00
|
|
|
celery,
|
2024-08-20 16:42:18 -04:00
|
|
|
"Recreating incremental parent snapshot",
|
|
|
|
current=current_stage,
|
|
|
|
total=total_stages,
|
2023-11-09 14:05:15 -05:00
|
|
|
)
|
2023-11-05 22:32:41 -05:00
|
|
|
|
2024-08-20 16:42:18 -04:00
|
|
|
# Create the parent snapshot
|
2024-08-20 17:40:44 -04:00
|
|
|
retcode = vm_worker_create_snapshot(
|
2024-08-20 16:42:18 -04:00
|
|
|
zkhandler, None, domain, snapshot_name=incremental_parent, zk_only=True
|
|
|
|
)
|
2024-08-20 17:40:44 -04:00
|
|
|
if retcode is False:
|
2024-08-20 16:42:18 -04:00
|
|
|
fail(
|
|
|
|
celery,
|
2024-08-20 17:40:44 -04:00
|
|
|
f"Failed to create imported snapshot for {incremental_parent} (parent)",
|
2024-08-20 16:42:18 -04:00
|
|
|
)
|
2024-08-20 17:40:44 -04:00
|
|
|
return False
|
2023-11-05 22:32:41 -05:00
|
|
|
|
2024-08-20 16:42:18 -04:00
|
|
|
for volume_file, volume_size in export_source_details.get("export_files"):
|
|
|
|
current_stage += 1
|
|
|
|
update(
|
|
|
|
celery,
|
2024-08-25 15:58:25 -04:00
|
|
|
f"Importing RBD snapshot {pool}/{volume}@{snapshot_name}",
|
2024-08-20 16:42:18 -04:00
|
|
|
current=current_stage,
|
|
|
|
total=total_stages,
|
|
|
|
)
|
2023-11-05 22:32:41 -05:00
|
|
|
|
2024-08-20 16:42:18 -04:00
|
|
|
volume_size = f"{volume_size}B"
|
|
|
|
pool, volume, _ = volume_file.split("/")[-1].split(".")
|
|
|
|
# Then we import the incremental diffs
|
|
|
|
retcode, stdout, stderr = common.run_os_command(
|
|
|
|
f"rbd import-diff {import_path}/{domain}/{snapshot_name}/{volume_file} {pool}/{volume}"
|
|
|
|
)
|
|
|
|
if retcode:
|
|
|
|
fail(
|
|
|
|
celery,
|
|
|
|
f"Failed to import incremental export image {volume_file}: {stderr}",
|
|
|
|
)
|
2024-08-20 17:40:44 -04:00
|
|
|
return False
|
2023-11-05 22:32:41 -05:00
|
|
|
|
2024-08-20 16:42:18 -04:00
|
|
|
if not retain_snapshot:
|
|
|
|
retcode, stdout, stderr = common.run_os_command(
|
|
|
|
f"rbd snap rm {pool}/{volume}@{incremental_parent}"
|
|
|
|
)
|
|
|
|
if retcode:
|
|
|
|
fail(
|
|
|
|
celery,
|
|
|
|
f"Failed to remove imported image snapshot '{pool}/{volume}@{incremental_parent}': {stderr}",
|
|
|
|
)
|
2024-08-20 17:40:44 -04:00
|
|
|
return False
|
2024-08-20 16:42:18 -04:00
|
|
|
|
|
|
|
retcode, stdout, stderr = common.run_os_command(
|
|
|
|
f"rbd snap rm {pool}/{volume}@{snapshot_name}"
|
|
|
|
)
|
|
|
|
if retcode:
|
|
|
|
fail(
|
|
|
|
celery,
|
|
|
|
f"Failed to remove imported image snapshot '{pool}/{volume}@{snapshot_name}': {stderr}",
|
|
|
|
)
|
2024-08-20 17:40:44 -04:00
|
|
|
return False
|
2024-08-20 16:42:18 -04:00
|
|
|
|
|
|
|
# Now update VM config and metadata, from the *current* details
|
|
|
|
current_stage += 1
|
|
|
|
update(
|
|
|
|
celery,
|
|
|
|
f"Importing VM configuration snapshot {snapshot_name}",
|
|
|
|
current=current_stage,
|
|
|
|
total=total_stages,
|
2023-11-05 22:32:41 -05:00
|
|
|
)
|
|
|
|
|
2024-08-20 16:42:18 -04:00
|
|
|
try:
|
|
|
|
retcode, retmsg = modify_vm(
|
|
|
|
zkhandler,
|
|
|
|
domain,
|
|
|
|
False,
|
|
|
|
export_source_details["vm_detail"]["xml"],
|
|
|
|
)
|
|
|
|
if not retcode:
|
|
|
|
fail(
|
|
|
|
celery,
|
|
|
|
f"Failed to modify imported VM: {retmsg}",
|
|
|
|
)
|
2024-08-20 17:40:44 -04:00
|
|
|
return False
|
2024-08-20 16:42:18 -04:00
|
|
|
|
|
|
|
retcode, retmsg = move_vm(
|
|
|
|
zkhandler,
|
|
|
|
domain,
|
|
|
|
export_source_details["vm_detail"]["node"],
|
|
|
|
)
|
|
|
|
if not retcode:
|
|
|
|
# We don't actually care if this fails, because it just means the vm was never moved
|
|
|
|
pass
|
|
|
|
|
|
|
|
retcode, retmsg = modify_vm_metadata(
|
|
|
|
zkhandler,
|
|
|
|
domain,
|
|
|
|
export_source_details["vm_detail"]["node_limit"],
|
|
|
|
export_source_details["vm_detail"]["node_selector"],
|
|
|
|
export_source_details["vm_detail"]["node_autostart"],
|
|
|
|
export_source_details["vm_detail"]["profile"],
|
|
|
|
export_source_details["vm_detail"]["migration_method"],
|
|
|
|
export_source_details["vm_detail"]["migration_max_downtime"],
|
|
|
|
)
|
|
|
|
if not retcode:
|
|
|
|
fail(
|
|
|
|
celery,
|
|
|
|
f"Failed to modify imported VM: {retmsg}",
|
|
|
|
)
|
2024-08-20 17:40:44 -04:00
|
|
|
return False
|
2024-08-20 16:42:18 -04:00
|
|
|
except Exception as e:
|
2023-11-05 22:32:41 -05:00
|
|
|
fail(
|
|
|
|
celery,
|
2024-08-20 16:42:18 -04:00
|
|
|
f"Failed to parse VM export details: {e}",
|
2023-11-05 22:32:41 -05:00
|
|
|
)
|
2024-08-20 17:40:44 -04:00
|
|
|
return False
|
2023-11-05 22:32:41 -05:00
|
|
|
|
2024-08-20 16:42:18 -04:00
|
|
|
if retain_snapshot:
|
|
|
|
current_stage += 1
|
|
|
|
update(
|
|
|
|
celery,
|
|
|
|
"Recreating imported snapshot",
|
|
|
|
current=current_stage,
|
|
|
|
total=total_stages,
|
|
|
|
)
|
2023-11-09 14:05:15 -05:00
|
|
|
|
2024-08-20 16:42:18 -04:00
|
|
|
# Create the child snapshot
|
2024-08-20 17:40:44 -04:00
|
|
|
retcode = vm_worker_create_snapshot(
|
2024-08-20 16:42:18 -04:00
|
|
|
zkhandler, None, domain, snapshot_name=snapshot_name, zk_only=True
|
|
|
|
)
|
2024-08-20 17:40:44 -04:00
|
|
|
if retcode is False:
|
2024-08-20 16:42:18 -04:00
|
|
|
fail(
|
|
|
|
celery,
|
2024-08-20 17:40:44 -04:00
|
|
|
f"Failed to create imported snapshot for {snapshot_name}",
|
2024-08-20 16:42:18 -04:00
|
|
|
)
|
2024-08-20 17:40:44 -04:00
|
|
|
return False
|
2024-08-20 16:42:18 -04:00
|
|
|
else:
|
|
|
|
for volume_file, volume_size in export_source_details.get("export_files"):
|
|
|
|
volume_size = f"{volume_size}B"
|
|
|
|
pool, volume, _ = volume_file.split("/")[-1].split(".")
|
2023-11-05 22:32:41 -05:00
|
|
|
|
2024-08-20 16:42:18 -04:00
|
|
|
# First we create the expected volumes then clean them up
|
|
|
|
# This process is a bit of a hack because rbd import does not expect an existing volume,
|
|
|
|
# but we need the information in PVC.
|
|
|
|
# Thus create the RBD volume using ceph.add_volume based on the export size, and then
|
|
|
|
# manually remove the RBD volume (leaving the PVC metainfo)
|
|
|
|
current_stage += 1
|
|
|
|
update(
|
|
|
|
celery,
|
|
|
|
f"Preparing RBD volume {pool}/{volume}",
|
|
|
|
current=current_stage,
|
|
|
|
total=total_stages,
|
|
|
|
)
|
2023-11-05 22:32:41 -05:00
|
|
|
|
2024-08-20 16:42:18 -04:00
|
|
|
retcode, retmsg = ceph.add_volume(zkhandler, pool, volume, volume_size)
|
|
|
|
if not retcode:
|
|
|
|
fail(
|
|
|
|
celery,
|
|
|
|
f"Failed to create imported volume: {retmsg}",
|
|
|
|
)
|
2024-08-20 17:40:44 -04:00
|
|
|
return False
|
2023-11-05 22:32:41 -05:00
|
|
|
|
2024-08-20 16:42:18 -04:00
|
|
|
retcode, stdout, stderr = common.run_os_command(
|
|
|
|
f"rbd remove {pool}/{volume}"
|
|
|
|
)
|
|
|
|
if retcode:
|
|
|
|
fail(
|
|
|
|
celery,
|
|
|
|
f"Failed to remove temporary RBD volume '{pool}/{volume}': {stderr}",
|
|
|
|
)
|
2024-08-20 17:40:44 -04:00
|
|
|
return False
|
2023-11-05 22:32:41 -05:00
|
|
|
|
2024-08-20 16:42:18 -04:00
|
|
|
# Then we perform the actual import
|
|
|
|
current_stage += 1
|
|
|
|
update(
|
|
|
|
celery,
|
2024-08-25 15:58:25 -04:00
|
|
|
f"Importing RBD snapshot {pool}/{volume}@{snapshot_name}",
|
2024-08-20 16:42:18 -04:00
|
|
|
current=current_stage,
|
|
|
|
total=total_stages,
|
|
|
|
)
|
2023-11-05 22:32:41 -05:00
|
|
|
|
2024-08-20 16:42:18 -04:00
|
|
|
retcode, stdout, stderr = common.run_os_command(
|
|
|
|
f"rbd import --export-format 2 --dest-pool {pool} {import_path}/{domain}/{snapshot_name}/{volume_file} {volume}"
|
|
|
|
)
|
|
|
|
if retcode:
|
|
|
|
fail(
|
|
|
|
celery,
|
|
|
|
f"Failed to import export image {volume_file}: {stderr}",
|
|
|
|
)
|
2023-11-05 22:32:41 -05:00
|
|
|
|
2024-08-20 16:42:18 -04:00
|
|
|
if not retain_snapshot:
|
|
|
|
retcode, stdout, stderr = common.run_os_command(
|
|
|
|
f"rbd snap rm {pool}/{volume}@{snapshot_name}"
|
|
|
|
)
|
|
|
|
if retcode:
|
|
|
|
fail(
|
|
|
|
celery,
|
|
|
|
f"Failed to remove imported image snapshot '{pool}/{volume}@{snapshot_name}': {stderr}",
|
|
|
|
)
|
2024-08-20 17:40:44 -04:00
|
|
|
return False
|
2023-11-05 22:32:41 -05:00
|
|
|
|
2024-08-20 16:42:18 -04:00
|
|
|
# Import VM config and metadata in provision state
|
|
|
|
current_stage += 1
|
|
|
|
update(
|
|
|
|
celery,
|
|
|
|
f"Importing VM configuration snapshot {snapshot_name}",
|
|
|
|
current=current_stage,
|
|
|
|
total=total_stages,
|
|
|
|
)
|
2023-11-09 14:05:15 -05:00
|
|
|
|
2024-08-20 16:42:18 -04:00
|
|
|
try:
|
|
|
|
retcode, retmsg = define_vm(
|
|
|
|
zkhandler,
|
|
|
|
export_source_details["vm_detail"]["xml"],
|
|
|
|
export_source_details["vm_detail"]["node"],
|
|
|
|
export_source_details["vm_detail"]["node_limit"],
|
|
|
|
export_source_details["vm_detail"]["node_selector"],
|
|
|
|
export_source_details["vm_detail"]["node_autostart"],
|
|
|
|
export_source_details["vm_detail"]["migration_method"],
|
|
|
|
export_source_details["vm_detail"]["migration_max_downtime"],
|
|
|
|
export_source_details["vm_detail"]["profile"],
|
|
|
|
export_source_details["vm_detail"]["tags"],
|
|
|
|
"import",
|
|
|
|
)
|
|
|
|
if not retcode:
|
|
|
|
fail(
|
|
|
|
celery,
|
2024-08-23 10:23:51 -04:00
|
|
|
f"Failed to define imported VM: {retmsg}",
|
2024-08-20 16:42:18 -04:00
|
|
|
)
|
2024-08-20 17:40:44 -04:00
|
|
|
return False
|
2024-08-20 16:42:18 -04:00
|
|
|
except Exception as e:
|
|
|
|
fail(
|
|
|
|
celery,
|
2024-08-23 10:23:51 -04:00
|
|
|
f"Failed to parse VM export details: {e}",
|
2024-08-20 16:42:18 -04:00
|
|
|
)
|
2024-08-20 17:40:44 -04:00
|
|
|
return False
|
2023-11-05 22:32:41 -05:00
|
|
|
|
2024-08-20 16:42:18 -04:00
|
|
|
# Finally we handle the VM snapshot
|
|
|
|
if retain_snapshot:
|
|
|
|
current_stage += 1
|
|
|
|
update(
|
|
|
|
celery,
|
|
|
|
"Recreating imported snapshot",
|
|
|
|
current=current_stage,
|
|
|
|
total=total_stages,
|
|
|
|
)
|
2023-11-05 22:32:41 -05:00
|
|
|
|
2024-08-20 17:40:44 -04:00
|
|
|
retcode = vm_worker_create_snapshot(
|
2024-08-20 16:42:18 -04:00
|
|
|
zkhandler, None, domain, snapshot_name=snapshot_name, zk_only=True
|
|
|
|
)
|
2024-08-20 17:40:44 -04:00
|
|
|
if retcode is False:
|
2024-08-20 16:42:18 -04:00
|
|
|
fail(
|
|
|
|
celery,
|
2024-08-20 17:40:44 -04:00
|
|
|
f"Failed to create imported snapshot for {snapshot_name}",
|
2024-08-20 16:42:18 -04:00
|
|
|
)
|
2024-08-20 17:40:44 -04:00
|
|
|
return False
|
2023-11-05 22:32:41 -05:00
|
|
|
|
2024-08-20 16:42:18 -04:00
|
|
|
# 5. Start VM
|
|
|
|
retcode, retmsg = start_vm(zkhandler, domain)
|
|
|
|
if not retcode:
|
2023-11-09 14:05:15 -05:00
|
|
|
fail(
|
|
|
|
celery,
|
2024-08-23 10:23:51 -04:00
|
|
|
f"Failed to start imported VM {domain}: {retmsg}",
|
2023-11-09 14:05:15 -05:00
|
|
|
)
|
2024-08-20 17:40:44 -04:00
|
|
|
return False
|
2023-11-05 22:32:41 -05:00
|
|
|
|
2024-08-20 17:43:46 -04:00
|
|
|
current_stage += 1
|
2023-11-09 14:05:15 -05:00
|
|
|
return finish(
|
|
|
|
celery,
|
2024-08-20 16:42:18 -04:00
|
|
|
f"Successfully imported VM '{domain}' at snapshot '{snapshot_name}' from '{myhostname}:{import_path}'",
|
2023-11-09 14:05:15 -05:00
|
|
|
current=current_stage,
|
2024-08-20 16:42:18 -04:00
|
|
|
total=total_stages,
|
2023-11-09 14:05:15 -05:00
|
|
|
)
|
2024-09-28 10:49:14 -04:00
|
|
|
|
|
|
|
|
|
|
|
def vm_worker_send_snapshot(
|
|
|
|
zkhandler,
|
|
|
|
celery,
|
|
|
|
domain,
|
|
|
|
snapshot_name,
|
|
|
|
destination_api_uri,
|
|
|
|
destination_api_key,
|
|
|
|
destination_api_verify_ssl=True,
|
|
|
|
incremental_parent=None,
|
|
|
|
destination_storage_pool=None,
|
|
|
|
):
|
|
|
|
|
|
|
|
current_stage = 0
|
|
|
|
total_stages = 1
|
|
|
|
start(
|
|
|
|
celery,
|
|
|
|
f"Sending snapshot '{snapshot_name}' of VM '{domain}' to remote cluster '{destination_api_uri}'",
|
|
|
|
current=current_stage,
|
|
|
|
total=total_stages,
|
|
|
|
)
|
|
|
|
|
|
|
|
# Validate that VM exists in cluster
|
|
|
|
dom_uuid = getDomainUUID(zkhandler, domain)
|
|
|
|
if not dom_uuid:
|
|
|
|
fail(
|
|
|
|
celery,
|
|
|
|
f"Could not find VM '{domain}' in the cluster",
|
|
|
|
)
|
|
|
|
return False
|
|
|
|
|
|
|
|
# Get our side's VM configuration details
|
Implement friendlier VM mirror commands
Adds two helper commands which automate sending and promoting VM
snapshots as "vm mirror" commands.
"vm mirror create" replicates the functionality of "snapshot create" and
"snapshot send", performing both in one single task using an
autogenerated dated snapshot name for automatic cross-cluster
replication.
"vm mirror promote" replicates the functionality of "vm shutdown",
"snapshot create", "snapshot send", "vm start" (remote), and,
optionally, "vm remove", performing in one single task an entire
cross-cluster VM move with or without retaining the copy on the local
cluster (if retained, the local copy becomes a snapshot mirror of the
remote, flipping their statuses).
2024-10-08 22:53:12 -04:00
|
|
|
try:
|
|
|
|
vm_detail = get_list(zkhandler, limit=dom_uuid, is_fuzzy=False)[1][0]
|
|
|
|
except KeyError:
|
|
|
|
vm_detail = None
|
|
|
|
|
2024-09-28 10:49:14 -04:00
|
|
|
if not isinstance(vm_detail, dict):
|
|
|
|
fail(
|
|
|
|
celery,
|
|
|
|
f"VM listing returned invalid data: {vm_detail}",
|
|
|
|
)
|
|
|
|
return False
|
|
|
|
|
|
|
|
# Check if the snapshot exists
|
|
|
|
if not zkhandler.exists(
|
|
|
|
("domain.snapshots", dom_uuid, "domain_snapshot.name", snapshot_name)
|
|
|
|
):
|
|
|
|
fail(
|
|
|
|
celery,
|
|
|
|
f"Could not find snapshot '{snapshot_name}' of VM '{domain}'",
|
|
|
|
)
|
|
|
|
return False
|
|
|
|
|
|
|
|
# Check if the incremental parent exists
|
|
|
|
if incremental_parent is not None and not zkhandler.exists(
|
|
|
|
("domain.snapshots", dom_uuid, "domain_snapshot.name", incremental_parent)
|
|
|
|
):
|
|
|
|
fail(
|
|
|
|
celery,
|
|
|
|
f"Could not find snapshot '{snapshot_name}' of VM '{domain}'",
|
|
|
|
)
|
|
|
|
return False
|
|
|
|
|
2024-09-29 01:31:13 -04:00
|
|
|
vm_name = vm_detail["name"]
|
|
|
|
|
2024-09-28 10:49:14 -04:00
|
|
|
# Validate that the destination cluster can be reached
|
|
|
|
destination_api_timeout = (3.05, 172800)
|
|
|
|
destination_api_headers = {
|
|
|
|
"X-Api-Key": destination_api_key,
|
|
|
|
}
|
|
|
|
|
2024-09-30 16:30:23 -04:00
|
|
|
session = requests.Session()
|
|
|
|
session.headers.update(destination_api_headers)
|
|
|
|
session.verify = destination_api_verify_ssl
|
|
|
|
session.timeout = destination_api_timeout
|
|
|
|
|
2024-09-28 10:49:14 -04:00
|
|
|
try:
|
|
|
|
# Hit the API root; this should return "PVC API version x"
|
2024-09-30 16:30:23 -04:00
|
|
|
response = session.get(
|
2024-09-28 10:49:14 -04:00
|
|
|
f"{destination_api_uri}/",
|
|
|
|
timeout=destination_api_timeout,
|
|
|
|
params=None,
|
|
|
|
data=None,
|
|
|
|
)
|
|
|
|
if "PVC API" not in response.json().get("message"):
|
|
|
|
raise ValueError("Remote API is not a PVC API or incorrect URI given")
|
|
|
|
except requests.exceptions.ConnectionError as e:
|
|
|
|
fail(
|
|
|
|
celery,
|
|
|
|
f"Connection to remote API timed out: {e}",
|
|
|
|
)
|
|
|
|
return False
|
|
|
|
except ValueError as e:
|
|
|
|
fail(
|
|
|
|
celery,
|
|
|
|
f"Connection to remote API is not valid: {e}",
|
|
|
|
)
|
|
|
|
return False
|
|
|
|
except Exception as e:
|
|
|
|
fail(
|
|
|
|
celery,
|
|
|
|
f"Connection to remote API failed: {e}",
|
|
|
|
)
|
|
|
|
return False
|
|
|
|
|
|
|
|
# Hit the API "/status" endpoint to validate API key and cluster status
|
2024-09-30 16:30:23 -04:00
|
|
|
response = session.get(
|
2024-09-28 10:49:14 -04:00
|
|
|
f"{destination_api_uri}/status",
|
|
|
|
params=None,
|
|
|
|
data=None,
|
|
|
|
)
|
|
|
|
destination_cluster_status = response.json()
|
|
|
|
current_destination_pvc_version = destination_cluster_status.get(
|
|
|
|
"pvc_version", None
|
|
|
|
)
|
|
|
|
if current_destination_pvc_version is None:
|
|
|
|
fail(
|
|
|
|
celery,
|
|
|
|
"Connection to remote API failed: no PVC version information returned",
|
|
|
|
)
|
|
|
|
return False
|
|
|
|
|
2024-10-15 11:31:50 -04:00
|
|
|
expected_destination_pvc_version = "0.9.101"
|
2024-09-28 10:49:14 -04:00
|
|
|
# Work around development versions
|
|
|
|
current_destination_pvc_version = re.sub(
|
|
|
|
r"~git-.*", "", current_destination_pvc_version
|
|
|
|
)
|
|
|
|
# Compare versions
|
|
|
|
if parse_version(current_destination_pvc_version) < parse_version(
|
|
|
|
expected_destination_pvc_version
|
|
|
|
):
|
|
|
|
fail(
|
|
|
|
celery,
|
|
|
|
f"Remote PVC cluster is too old: requires version {expected_destination_pvc_version} or higher",
|
|
|
|
)
|
|
|
|
return False
|
|
|
|
|
|
|
|
# Check if the VM already exists on the remote
|
2024-09-30 16:30:23 -04:00
|
|
|
response = session.get(
|
2024-09-28 10:49:14 -04:00
|
|
|
f"{destination_api_uri}/vm/{domain}",
|
|
|
|
params=None,
|
|
|
|
data=None,
|
|
|
|
)
|
Implement friendlier VM mirror commands
Adds two helper commands which automate sending and promoting VM
snapshots as "vm mirror" commands.
"vm mirror create" replicates the functionality of "snapshot create" and
"snapshot send", performing both in one single task using an
autogenerated dated snapshot name for automatic cross-cluster
replication.
"vm mirror promote" replicates the functionality of "vm shutdown",
"snapshot create", "snapshot send", "vm start" (remote), and,
optionally, "vm remove", performing in one single task an entire
cross-cluster VM move with or without retaining the copy on the local
cluster (if retained, the local copy becomes a snapshot mirror of the
remote, flipping their statuses).
2024-10-08 22:53:12 -04:00
|
|
|
destination_vm_detail = response.json()
|
|
|
|
if type(destination_vm_detail) is list and len(destination_vm_detail) > 0:
|
|
|
|
destination_vm_detail = destination_vm_detail[0]
|
2024-09-29 01:31:13 -04:00
|
|
|
else:
|
Implement friendlier VM mirror commands
Adds two helper commands which automate sending and promoting VM
snapshots as "vm mirror" commands.
"vm mirror create" replicates the functionality of "snapshot create" and
"snapshot send", performing both in one single task using an
autogenerated dated snapshot name for automatic cross-cluster
replication.
"vm mirror promote" replicates the functionality of "vm shutdown",
"snapshot create", "snapshot send", "vm start" (remote), and,
optionally, "vm remove", performing in one single task an entire
cross-cluster VM move with or without retaining the copy on the local
cluster (if retained, the local copy becomes a snapshot mirror of the
remote, flipping their statuses).
2024-10-08 22:53:12 -04:00
|
|
|
destination_vm_detail = {}
|
2024-09-29 01:31:13 -04:00
|
|
|
|
Implement friendlier VM mirror commands
Adds two helper commands which automate sending and promoting VM
snapshots as "vm mirror" commands.
"vm mirror create" replicates the functionality of "snapshot create" and
"snapshot send", performing both in one single task using an
autogenerated dated snapshot name for automatic cross-cluster
replication.
"vm mirror promote" replicates the functionality of "vm shutdown",
"snapshot create", "snapshot send", "vm start" (remote), and,
optionally, "vm remove", performing in one single task an entire
cross-cluster VM move with or without retaining the copy on the local
cluster (if retained, the local copy becomes a snapshot mirror of the
remote, flipping their statuses).
2024-10-08 22:53:12 -04:00
|
|
|
current_destination_vm_state = destination_vm_detail.get("state", None)
|
2024-09-28 10:49:14 -04:00
|
|
|
if (
|
|
|
|
current_destination_vm_state is not None
|
|
|
|
and current_destination_vm_state != "mirror"
|
|
|
|
):
|
|
|
|
fail(
|
|
|
|
celery,
|
|
|
|
"Remote PVC VM exists and is not a mirror",
|
|
|
|
)
|
|
|
|
return False
|
|
|
|
|
|
|
|
# Get details about VM snapshot
|
|
|
|
_, snapshot_timestamp, snapshot_xml, snapshot_rbdsnaps = zkhandler.read_many(
|
|
|
|
[
|
|
|
|
(
|
|
|
|
(
|
|
|
|
"domain.snapshots",
|
|
|
|
dom_uuid,
|
|
|
|
"domain_snapshot.name",
|
|
|
|
snapshot_name,
|
|
|
|
)
|
|
|
|
),
|
|
|
|
(
|
|
|
|
(
|
|
|
|
"domain.snapshots",
|
|
|
|
dom_uuid,
|
|
|
|
"domain_snapshot.timestamp",
|
|
|
|
snapshot_name,
|
|
|
|
)
|
|
|
|
),
|
|
|
|
(
|
|
|
|
(
|
|
|
|
"domain.snapshots",
|
|
|
|
dom_uuid,
|
|
|
|
"domain_snapshot.xml",
|
|
|
|
snapshot_name,
|
|
|
|
)
|
|
|
|
),
|
|
|
|
(
|
|
|
|
(
|
|
|
|
"domain.snapshots",
|
|
|
|
dom_uuid,
|
|
|
|
"domain_snapshot.rbd_snapshots",
|
|
|
|
snapshot_name,
|
|
|
|
)
|
|
|
|
),
|
|
|
|
]
|
|
|
|
)
|
|
|
|
snapshot_rbdsnaps = snapshot_rbdsnaps.split(",")
|
|
|
|
|
|
|
|
# Get details about remote VM snapshots
|
Implement friendlier VM mirror commands
Adds two helper commands which automate sending and promoting VM
snapshots as "vm mirror" commands.
"vm mirror create" replicates the functionality of "snapshot create" and
"snapshot send", performing both in one single task using an
autogenerated dated snapshot name for automatic cross-cluster
replication.
"vm mirror promote" replicates the functionality of "vm shutdown",
"snapshot create", "snapshot send", "vm start" (remote), and,
optionally, "vm remove", performing in one single task an entire
cross-cluster VM move with or without retaining the copy on the local
cluster (if retained, the local copy becomes a snapshot mirror of the
remote, flipping their statuses).
2024-10-08 22:53:12 -04:00
|
|
|
destination_vm_snapshots = destination_vm_detail.get("snapshots", [])
|
2024-09-28 10:49:14 -04:00
|
|
|
|
|
|
|
# Check if this snapshot is in the remote list already
|
|
|
|
if snapshot_name in [s["name"] for s in destination_vm_snapshots]:
|
|
|
|
fail(
|
|
|
|
celery,
|
|
|
|
f"Snapshot {snapshot_name} already exists on the target",
|
|
|
|
)
|
|
|
|
return False
|
|
|
|
|
|
|
|
# Check if this snapshot is older than the latest remote VM snapshot
|
|
|
|
if (
|
|
|
|
len(destination_vm_snapshots) > 0
|
|
|
|
and snapshot_timestamp < destination_vm_snapshots[0]["timestamp"]
|
|
|
|
):
|
|
|
|
fail(
|
|
|
|
celery,
|
|
|
|
f"Target has a newer snapshot ({destination_vm_snapshots[0]['name']}); cannot send old snapshot {snapshot_name}",
|
|
|
|
)
|
|
|
|
return False
|
|
|
|
|
|
|
|
# Check that our incremental parent exists on the remote VM
|
|
|
|
if incremental_parent is not None:
|
|
|
|
if incremental_parent not in [s["name"] for s in destination_vm_snapshots]:
|
|
|
|
fail(
|
|
|
|
celery,
|
|
|
|
f"Can not send incremental for a snapshot ({incremental_parent}) which does not exist on the target",
|
|
|
|
)
|
|
|
|
return False
|
|
|
|
|
|
|
|
# Begin send, set stages
|
2024-10-09 00:37:13 -04:00
|
|
|
total_stages += 1 + (3 * len(snapshot_rbdsnaps))
|
2024-09-28 10:49:14 -04:00
|
|
|
|
2024-09-30 02:31:06 -04:00
|
|
|
current_stage += 1
|
|
|
|
update(
|
|
|
|
celery,
|
|
|
|
f"Sending VM configuration for {vm_name}@{snapshot_name}",
|
|
|
|
current=current_stage,
|
|
|
|
total=total_stages,
|
|
|
|
)
|
|
|
|
|
|
|
|
send_params = {
|
|
|
|
"snapshot": snapshot_name,
|
|
|
|
"source_snapshot": incremental_parent,
|
|
|
|
}
|
2024-10-11 10:14:38 -04:00
|
|
|
|
|
|
|
response = session.post(
|
|
|
|
f"{destination_api_uri}/vm/{vm_name}/snapshot/receive/config",
|
|
|
|
headers={"Content-Type": "application/json"},
|
|
|
|
params=send_params,
|
|
|
|
json=vm_detail,
|
|
|
|
)
|
|
|
|
if response.status_code != 200:
|
2024-09-30 02:31:06 -04:00
|
|
|
fail(
|
|
|
|
celery,
|
2024-10-11 10:14:38 -04:00
|
|
|
f"Failed to send config: {response.json()['message']}",
|
2024-09-30 02:31:06 -04:00
|
|
|
)
|
|
|
|
return False
|
|
|
|
|
2024-09-28 10:49:14 -04:00
|
|
|
# Create the block devices on the remote side if this is a new VM send
|
2024-09-30 18:44:32 -04:00
|
|
|
block_t_start = time.time()
|
|
|
|
block_total_mb = 0
|
|
|
|
|
2024-09-28 10:49:14 -04:00
|
|
|
for rbd_detail in [r for r in vm_detail["disks"] if r["type"] == "rbd"]:
|
|
|
|
rbd_name = rbd_detail["name"]
|
|
|
|
pool, volume = rbd_name.split("/")
|
|
|
|
|
|
|
|
current_stage += 1
|
|
|
|
update(
|
|
|
|
celery,
|
|
|
|
f"Preparing remote volume for {rbd_name}@{snapshot_name}",
|
|
|
|
current=current_stage,
|
|
|
|
total=total_stages,
|
|
|
|
)
|
|
|
|
|
|
|
|
# Get the storage volume details
|
|
|
|
retcode, retdata = ceph.get_list_volume(zkhandler, pool, volume, is_fuzzy=False)
|
|
|
|
if not retcode or len(retdata) != 1:
|
|
|
|
if len(retdata) < 1:
|
|
|
|
error_message = f"No detail returned for volume {rbd_name}"
|
|
|
|
elif len(retdata) > 1:
|
|
|
|
error_message = f"Multiple details returned for volume {rbd_name}"
|
|
|
|
else:
|
|
|
|
error_message = f"Error getting details for volume {rbd_name}"
|
|
|
|
fail(
|
|
|
|
celery,
|
|
|
|
error_message,
|
|
|
|
)
|
|
|
|
return False
|
|
|
|
|
|
|
|
try:
|
2024-09-30 20:51:59 -04:00
|
|
|
local_volume_size = ceph.format_bytes_fromhuman(retdata[0]["stats"]["size"])
|
2024-09-28 10:49:14 -04:00
|
|
|
except Exception as e:
|
|
|
|
error_message = f"Failed to get volume size for {rbd_name}: {e}"
|
|
|
|
|
|
|
|
if destination_storage_pool is not None:
|
|
|
|
pool = destination_storage_pool
|
|
|
|
|
2024-09-30 20:51:59 -04:00
|
|
|
current_stage += 1
|
|
|
|
update(
|
|
|
|
celery,
|
|
|
|
f"Checking remote volume {rbd_name} for compliance",
|
|
|
|
current=current_stage,
|
|
|
|
total=total_stages,
|
|
|
|
)
|
|
|
|
|
|
|
|
# Check if the volume exists on the target
|
|
|
|
response = session.get(
|
|
|
|
f"{destination_api_uri}/storage/ceph/volume/{pool}/{volume}",
|
|
|
|
params=None,
|
|
|
|
data=None,
|
|
|
|
)
|
|
|
|
if response.status_code != 404 and current_destination_vm_state is None:
|
|
|
|
fail(
|
2024-09-28 10:49:14 -04:00
|
|
|
celery,
|
2024-09-30 20:51:59 -04:00
|
|
|
f"Remote storage pool {pool} already contains volume {volume}",
|
2024-09-28 10:49:14 -04:00
|
|
|
)
|
2024-09-30 20:51:59 -04:00
|
|
|
return False
|
2024-09-28 10:49:14 -04:00
|
|
|
|
2024-09-30 20:51:59 -04:00
|
|
|
if current_destination_vm_state is not None:
|
|
|
|
try:
|
|
|
|
remote_volume_size = ceph.format_bytes_fromhuman(
|
|
|
|
response.json()[0]["stats"]["size"]
|
2024-09-28 10:49:14 -04:00
|
|
|
)
|
2024-09-30 20:51:59 -04:00
|
|
|
except Exception as e:
|
|
|
|
error_message = f"Failed to get volume size for remote {rbd_name}: {e}"
|
|
|
|
fail(celery, error_message)
|
2024-09-28 10:49:14 -04:00
|
|
|
return False
|
|
|
|
|
2024-09-30 20:51:59 -04:00
|
|
|
if local_volume_size != remote_volume_size:
|
|
|
|
response = session.put(
|
|
|
|
f"{destination_api_uri}/storage/ceph/volume/{pool}/{volume}",
|
|
|
|
params={"new_size": local_volume_size, "force": True},
|
|
|
|
)
|
|
|
|
if response.status_code != 200:
|
|
|
|
fail(
|
|
|
|
celery,
|
|
|
|
"Failed to resize remote volume to match local volume",
|
|
|
|
)
|
|
|
|
return False
|
|
|
|
|
2024-09-28 10:49:14 -04:00
|
|
|
# Send the volume to the remote
|
|
|
|
cluster = rados.Rados(conffile="/etc/ceph/ceph.conf")
|
|
|
|
cluster.connect()
|
|
|
|
ioctx = cluster.open_ioctx(pool)
|
Implement friendlier VM mirror commands
Adds two helper commands which automate sending and promoting VM
snapshots as "vm mirror" commands.
"vm mirror create" replicates the functionality of "snapshot create" and
"snapshot send", performing both in one single task using an
autogenerated dated snapshot name for automatic cross-cluster
replication.
"vm mirror promote" replicates the functionality of "vm shutdown",
"snapshot create", "snapshot send", "vm start" (remote), and,
optionally, "vm remove", performing in one single task an entire
cross-cluster VM move with or without retaining the copy on the local
cluster (if retained, the local copy becomes a snapshot mirror of the
remote, flipping their statuses).
2024-10-08 22:53:12 -04:00
|
|
|
image = RBDImage(ioctx, name=volume, snapshot=snapshot_name, read_only=True)
|
2024-09-28 10:49:14 -04:00
|
|
|
size = image.size()
|
2024-09-30 18:44:32 -04:00
|
|
|
chunk_size_mb = 1024
|
2024-09-28 10:49:14 -04:00
|
|
|
|
|
|
|
if incremental_parent is not None:
|
|
|
|
# Diff between incremental_parent and snapshot
|
2024-09-30 02:31:06 -04:00
|
|
|
celery_message = (
|
2024-09-30 16:30:23 -04:00
|
|
|
f"Sending diff of {rbd_name}@{incremental_parent} → {snapshot_name}"
|
2024-09-30 02:31:06 -04:00
|
|
|
)
|
2024-09-28 10:49:14 -04:00
|
|
|
else:
|
|
|
|
# Full image transfer
|
|
|
|
celery_message = f"Sending full image of {rbd_name}@{snapshot_name}"
|
|
|
|
|
2024-09-30 02:31:06 -04:00
|
|
|
current_stage += 1
|
|
|
|
update(
|
|
|
|
celery,
|
|
|
|
celery_message,
|
|
|
|
current=current_stage,
|
|
|
|
total=total_stages,
|
|
|
|
)
|
|
|
|
|
|
|
|
if incremental_parent is not None:
|
2024-09-30 04:15:17 -04:00
|
|
|
# Createa single session to reuse connections
|
2024-09-30 02:31:06 -04:00
|
|
|
send_params = {
|
|
|
|
"pool": pool,
|
|
|
|
"volume": volume,
|
|
|
|
"snapshot": snapshot_name,
|
|
|
|
"source_snapshot": incremental_parent,
|
|
|
|
}
|
|
|
|
|
2024-09-30 16:30:23 -04:00
|
|
|
session.params.update(send_params)
|
|
|
|
|
|
|
|
# Send 32 objects (128MB) at once
|
|
|
|
send_max_objects = 32
|
|
|
|
batch_size_mb = 4 * send_max_objects
|
|
|
|
batch_size = batch_size_mb * 1024 * 1024
|
|
|
|
|
2024-09-30 04:15:17 -04:00
|
|
|
total_chunks = 0
|
|
|
|
|
|
|
|
def diff_cb_count(offset, length, exists):
|
|
|
|
nonlocal total_chunks
|
|
|
|
if exists:
|
|
|
|
total_chunks += 1
|
|
|
|
|
|
|
|
current_chunk = 0
|
2024-09-30 16:30:23 -04:00
|
|
|
buffer = list()
|
|
|
|
buffer_size = 0
|
|
|
|
last_chunk_time = time.time()
|
|
|
|
|
|
|
|
def send_batch_multipart(buffer):
|
|
|
|
nonlocal last_chunk_time
|
|
|
|
files = {}
|
|
|
|
for i in range(len(buffer)):
|
|
|
|
files[f"object_{i}"] = (
|
|
|
|
f"object_{i}",
|
|
|
|
buffer[i],
|
|
|
|
"application/octet-stream",
|
|
|
|
)
|
2024-10-11 10:14:38 -04:00
|
|
|
|
|
|
|
response = session.put(
|
|
|
|
f"{destination_api_uri}/vm/{vm_name}/snapshot/receive/block",
|
|
|
|
files=files,
|
|
|
|
stream=True,
|
|
|
|
)
|
|
|
|
if response.status_code != 200:
|
2024-09-30 16:30:23 -04:00
|
|
|
fail(
|
|
|
|
celery,
|
2024-10-11 10:14:38 -04:00
|
|
|
f"Failed to send diff batch: {response.json()['message']}",
|
2024-09-30 16:30:23 -04:00
|
|
|
)
|
|
|
|
return False
|
2024-09-30 04:15:17 -04:00
|
|
|
|
2024-09-30 16:30:23 -04:00
|
|
|
current_chunk_time = time.time()
|
|
|
|
chunk_time = current_chunk_time - last_chunk_time
|
|
|
|
last_chunk_time = current_chunk_time
|
|
|
|
chunk_speed = round(batch_size_mb / chunk_time, 1)
|
|
|
|
update(
|
|
|
|
celery,
|
|
|
|
celery_message + f" ({chunk_speed} MB/s)",
|
|
|
|
current=current_stage,
|
|
|
|
total=total_stages,
|
2024-09-30 04:15:17 -04:00
|
|
|
)
|
2024-09-30 16:30:23 -04:00
|
|
|
|
|
|
|
def add_block_to_multipart(buffer, offset, length, data):
|
|
|
|
part_data = (
|
|
|
|
offset.to_bytes(8, "big") + length.to_bytes(8, "big") + data
|
|
|
|
) # Add header and data
|
|
|
|
buffer.append(part_data)
|
2024-09-30 02:31:06 -04:00
|
|
|
|
|
|
|
def diff_cb_send(offset, length, exists):
|
2024-09-30 16:30:23 -04:00
|
|
|
nonlocal current_chunk, buffer, buffer_size
|
2024-09-30 02:31:06 -04:00
|
|
|
if exists:
|
2024-09-30 16:30:23 -04:00
|
|
|
# Read the data for the current block
|
2024-09-30 02:31:06 -04:00
|
|
|
data = image.read(offset, length)
|
2024-09-30 16:30:23 -04:00
|
|
|
# Add the block to the multipart buffer
|
|
|
|
add_block_to_multipart(buffer, offset, length, data)
|
2024-09-30 04:15:17 -04:00
|
|
|
current_chunk += 1
|
2024-09-30 16:30:23 -04:00
|
|
|
buffer_size += len(data)
|
|
|
|
if buffer_size >= batch_size:
|
|
|
|
send_batch_multipart(buffer)
|
|
|
|
buffer.clear() # Clear the buffer after sending
|
|
|
|
buffer_size = 0 # Reset buffer size
|
2024-09-30 02:31:06 -04:00
|
|
|
|
|
|
|
try:
|
|
|
|
image.set_snap(snapshot_name)
|
2024-09-30 04:15:17 -04:00
|
|
|
image.diff_iterate(
|
|
|
|
0, size, incremental_parent, diff_cb_count, whole_object=True
|
|
|
|
)
|
2024-09-30 18:44:32 -04:00
|
|
|
block_total_mb += total_chunks * 4
|
2024-09-30 02:31:06 -04:00
|
|
|
image.diff_iterate(
|
|
|
|
0, size, incremental_parent, diff_cb_send, whole_object=True
|
|
|
|
)
|
2024-09-30 16:30:23 -04:00
|
|
|
|
|
|
|
if buffer:
|
|
|
|
send_batch_multipart(buffer)
|
|
|
|
buffer.clear() # Clear the buffer after sending
|
|
|
|
buffer_size = 0 # Reset buffer size
|
2024-09-30 02:31:06 -04:00
|
|
|
except Exception:
|
|
|
|
fail(
|
|
|
|
celery,
|
|
|
|
f"Failed to send snapshot: {response.json()['message']}",
|
|
|
|
)
|
|
|
|
return False
|
|
|
|
finally:
|
|
|
|
image.close()
|
|
|
|
ioctx.close()
|
|
|
|
cluster.shutdown()
|
|
|
|
else:
|
|
|
|
|
|
|
|
def full_chunker():
|
2024-09-30 18:44:32 -04:00
|
|
|
nonlocal block_total_mb
|
2024-09-28 10:49:14 -04:00
|
|
|
chunk_size = 1024 * 1024 * chunk_size_mb
|
|
|
|
current_chunk = 0
|
|
|
|
last_chunk_time = time.time()
|
|
|
|
while current_chunk < size:
|
|
|
|
chunk = image.read(current_chunk, chunk_size)
|
|
|
|
yield chunk
|
|
|
|
current_chunk += chunk_size
|
2024-09-30 18:44:32 -04:00
|
|
|
block_total_mb += len(chunk) / 1024 / 1024
|
2024-09-28 10:49:14 -04:00
|
|
|
current_chunk_time = time.time()
|
|
|
|
chunk_time = current_chunk_time - last_chunk_time
|
|
|
|
last_chunk_time = current_chunk_time
|
|
|
|
chunk_speed = round(chunk_size_mb / chunk_time, 1)
|
|
|
|
update(
|
|
|
|
celery,
|
|
|
|
celery_message + f" ({chunk_speed} MB/s)",
|
|
|
|
current=current_stage,
|
|
|
|
total=total_stages,
|
|
|
|
)
|
|
|
|
|
2024-09-30 02:31:06 -04:00
|
|
|
send_params = {
|
|
|
|
"pool": pool,
|
|
|
|
"volume": volume,
|
|
|
|
"snapshot": snapshot_name,
|
|
|
|
"size": size,
|
|
|
|
"source_snapshot": incremental_parent,
|
|
|
|
}
|
2024-09-28 10:49:14 -04:00
|
|
|
|
2024-09-30 02:31:06 -04:00
|
|
|
try:
|
2024-09-30 16:30:23 -04:00
|
|
|
response = session.post(
|
2024-09-30 02:31:06 -04:00
|
|
|
f"{destination_api_uri}/vm/{vm_name}/snapshot/receive/block",
|
2024-09-30 16:30:23 -04:00
|
|
|
headers={"Content-Type": "application/octet-stream"},
|
2024-09-30 02:31:06 -04:00
|
|
|
params=send_params,
|
|
|
|
data=full_chunker(),
|
|
|
|
)
|
2024-10-11 10:14:38 -04:00
|
|
|
if response.status_code != 200:
|
|
|
|
fail(
|
|
|
|
celery,
|
|
|
|
f"Failed to send snapshot: {response.json()['message']}",
|
|
|
|
)
|
|
|
|
return False
|
2024-09-30 02:31:06 -04:00
|
|
|
finally:
|
|
|
|
image.close()
|
|
|
|
ioctx.close()
|
|
|
|
cluster.shutdown()
|
2024-09-28 10:49:14 -04:00
|
|
|
|
|
|
|
send_params = {
|
|
|
|
"pool": pool,
|
|
|
|
"volume": volume,
|
|
|
|
"snapshot": snapshot_name,
|
|
|
|
}
|
|
|
|
try:
|
2024-09-30 16:30:23 -04:00
|
|
|
response = session.patch(
|
2024-09-29 01:31:13 -04:00
|
|
|
f"{destination_api_uri}/vm/{vm_name}/snapshot/receive/block",
|
2024-09-28 10:49:14 -04:00
|
|
|
params=send_params,
|
|
|
|
)
|
2024-10-11 10:14:38 -04:00
|
|
|
if response.status_code != 200:
|
|
|
|
fail(
|
|
|
|
celery,
|
|
|
|
f"Failed to send snapshot: {response.json()['message']}",
|
|
|
|
)
|
|
|
|
return False
|
2024-09-28 10:49:14 -04:00
|
|
|
finally:
|
|
|
|
image.close()
|
|
|
|
ioctx.close()
|
|
|
|
cluster.shutdown()
|
|
|
|
|
2024-09-30 18:44:32 -04:00
|
|
|
block_t_end = time.time()
|
|
|
|
block_mbps = round(block_total_mb / (block_t_end - block_t_start), 1)
|
|
|
|
|
2024-09-29 01:31:13 -04:00
|
|
|
current_stage += 1
|
|
|
|
return finish(
|
|
|
|
celery,
|
2024-09-30 18:44:32 -04:00
|
|
|
f"Successfully sent snapshot '{snapshot_name}' of VM '{domain}' to remote cluster '{destination_api_uri}' (average {block_mbps} MB/s)",
|
2024-09-29 01:31:13 -04:00
|
|
|
current=current_stage,
|
|
|
|
total=total_stages,
|
|
|
|
)
|
Implement friendlier VM mirror commands
Adds two helper commands which automate sending and promoting VM
snapshots as "vm mirror" commands.
"vm mirror create" replicates the functionality of "snapshot create" and
"snapshot send", performing both in one single task using an
autogenerated dated snapshot name for automatic cross-cluster
replication.
"vm mirror promote" replicates the functionality of "vm shutdown",
"snapshot create", "snapshot send", "vm start" (remote), and,
optionally, "vm remove", performing in one single task an entire
cross-cluster VM move with or without retaining the copy on the local
cluster (if retained, the local copy becomes a snapshot mirror of the
remote, flipping their statuses).
2024-10-08 22:53:12 -04:00
|
|
|
|
|
|
|
|
|
|
|
def vm_worker_create_mirror(
|
|
|
|
zkhandler,
|
|
|
|
celery,
|
|
|
|
domain,
|
|
|
|
destination_api_uri,
|
|
|
|
destination_api_key,
|
|
|
|
destination_api_verify_ssl,
|
|
|
|
destination_storage_pool,
|
|
|
|
):
|
|
|
|
now = datetime.now()
|
2024-10-09 00:47:06 -04:00
|
|
|
datestring = now.strftime("%Y%m%d%H%M%S")
|
|
|
|
snapshot_name = f"mr{datestring}"
|
Implement friendlier VM mirror commands
Adds two helper commands which automate sending and promoting VM
snapshots as "vm mirror" commands.
"vm mirror create" replicates the functionality of "snapshot create" and
"snapshot send", performing both in one single task using an
autogenerated dated snapshot name for automatic cross-cluster
replication.
"vm mirror promote" replicates the functionality of "vm shutdown",
"snapshot create", "snapshot send", "vm start" (remote), and,
optionally, "vm remove", performing in one single task an entire
cross-cluster VM move with or without retaining the copy on the local
cluster (if retained, the local copy becomes a snapshot mirror of the
remote, flipping their statuses).
2024-10-08 22:53:12 -04:00
|
|
|
|
|
|
|
current_stage = 0
|
|
|
|
total_stages = 1
|
|
|
|
start(
|
|
|
|
celery,
|
|
|
|
f"Creating mirror of VM '{domain}' to cluster '{destination_api_uri}'",
|
|
|
|
current=current_stage,
|
|
|
|
total=total_stages,
|
|
|
|
)
|
|
|
|
|
|
|
|
# Validate that VM exists in cluster
|
|
|
|
dom_uuid = getDomainUUID(zkhandler, domain)
|
|
|
|
if not dom_uuid:
|
|
|
|
fail(
|
|
|
|
celery,
|
|
|
|
f"Could not find VM '{domain}' in the cluster",
|
|
|
|
)
|
|
|
|
return False
|
|
|
|
|
|
|
|
current_snapshots = zkhandler.children(("domain.snapshots", dom_uuid))
|
|
|
|
if current_snapshots and snapshot_name in current_snapshots:
|
|
|
|
# This should never actually happen since snapshots with mirror are dated, but worth
|
|
|
|
# checking just in case someone tries to be sneaky
|
|
|
|
fail(
|
|
|
|
celery,
|
|
|
|
f"Snapshot name '{snapshot_name}' already exists for VM '{domain}'!",
|
|
|
|
)
|
|
|
|
return False
|
|
|
|
|
|
|
|
# Get our side's VM configuration details
|
|
|
|
try:
|
|
|
|
vm_detail = get_list(zkhandler, limit=dom_uuid, is_fuzzy=False)[1][0]
|
|
|
|
except KeyError:
|
|
|
|
vm_detail = None
|
|
|
|
|
|
|
|
if not isinstance(vm_detail, dict):
|
|
|
|
fail(
|
|
|
|
celery,
|
|
|
|
f"VM listing returned invalid data: {vm_detail}",
|
|
|
|
)
|
|
|
|
return False
|
|
|
|
|
|
|
|
vm_name = vm_detail["name"]
|
|
|
|
|
|
|
|
# Validate that the destination cluster can be reached
|
|
|
|
destination_api_timeout = (3.05, 172800)
|
|
|
|
destination_api_headers = {
|
|
|
|
"X-Api-Key": destination_api_key,
|
|
|
|
}
|
|
|
|
|
|
|
|
session = requests.Session()
|
|
|
|
session.headers.update(destination_api_headers)
|
|
|
|
session.verify = destination_api_verify_ssl
|
|
|
|
session.timeout = destination_api_timeout
|
|
|
|
|
|
|
|
try:
|
|
|
|
# Hit the API root; this should return "PVC API version x"
|
|
|
|
response = session.get(
|
|
|
|
f"{destination_api_uri}/",
|
|
|
|
timeout=destination_api_timeout,
|
|
|
|
params=None,
|
|
|
|
data=None,
|
|
|
|
)
|
|
|
|
if "PVC API" not in response.json().get("message"):
|
|
|
|
raise ValueError("Remote API is not a PVC API or incorrect URI given")
|
|
|
|
except requests.exceptions.ConnectionError as e:
|
|
|
|
fail(
|
|
|
|
celery,
|
|
|
|
f"Connection to remote API timed out: {e}",
|
|
|
|
)
|
|
|
|
return False
|
|
|
|
except ValueError as e:
|
|
|
|
fail(
|
|
|
|
celery,
|
|
|
|
f"Connection to remote API is not valid: {e}",
|
|
|
|
)
|
|
|
|
return False
|
|
|
|
except Exception as e:
|
|
|
|
fail(
|
|
|
|
celery,
|
|
|
|
f"Connection to remote API failed: {e}",
|
|
|
|
)
|
|
|
|
return False
|
|
|
|
|
|
|
|
# Hit the API "/status" endpoint to validate API key and cluster status
|
|
|
|
response = session.get(
|
|
|
|
f"{destination_api_uri}/status",
|
|
|
|
params=None,
|
|
|
|
data=None,
|
|
|
|
)
|
|
|
|
destination_cluster_status = response.json()
|
|
|
|
current_destination_pvc_version = destination_cluster_status.get(
|
|
|
|
"pvc_version", None
|
|
|
|
)
|
|
|
|
if current_destination_pvc_version is None:
|
|
|
|
fail(
|
|
|
|
celery,
|
|
|
|
"Connection to remote API failed: no PVC version information returned",
|
|
|
|
)
|
|
|
|
return False
|
|
|
|
|
2024-10-15 11:31:50 -04:00
|
|
|
expected_destination_pvc_version = "0.9.101"
|
Implement friendlier VM mirror commands
Adds two helper commands which automate sending and promoting VM
snapshots as "vm mirror" commands.
"vm mirror create" replicates the functionality of "snapshot create" and
"snapshot send", performing both in one single task using an
autogenerated dated snapshot name for automatic cross-cluster
replication.
"vm mirror promote" replicates the functionality of "vm shutdown",
"snapshot create", "snapshot send", "vm start" (remote), and,
optionally, "vm remove", performing in one single task an entire
cross-cluster VM move with or without retaining the copy on the local
cluster (if retained, the local copy becomes a snapshot mirror of the
remote, flipping their statuses).
2024-10-08 22:53:12 -04:00
|
|
|
# Work around development versions
|
|
|
|
current_destination_pvc_version = re.sub(
|
|
|
|
r"~git-.*", "", current_destination_pvc_version
|
|
|
|
)
|
|
|
|
# Compare versions
|
|
|
|
if parse_version(current_destination_pvc_version) < parse_version(
|
|
|
|
expected_destination_pvc_version
|
|
|
|
):
|
|
|
|
fail(
|
|
|
|
celery,
|
|
|
|
f"Remote PVC cluster is too old: requires version {expected_destination_pvc_version} or higher",
|
|
|
|
)
|
|
|
|
return False
|
|
|
|
|
|
|
|
# Check if the VM already exists on the remote
|
|
|
|
response = session.get(
|
|
|
|
f"{destination_api_uri}/vm/{domain}",
|
|
|
|
params=None,
|
|
|
|
data=None,
|
|
|
|
)
|
|
|
|
destination_vm_detail = response.json()
|
|
|
|
if type(destination_vm_detail) is list and len(destination_vm_detail) > 0:
|
|
|
|
destination_vm_detail = destination_vm_detail[0]
|
|
|
|
else:
|
|
|
|
destination_vm_detail = {}
|
|
|
|
|
|
|
|
current_destination_vm_state = destination_vm_detail.get("state", None)
|
|
|
|
if (
|
|
|
|
current_destination_vm_state is not None
|
|
|
|
and current_destination_vm_state != "mirror"
|
|
|
|
):
|
|
|
|
fail(
|
|
|
|
celery,
|
|
|
|
"Remote PVC VM exists and is not a mirror",
|
|
|
|
)
|
|
|
|
return False
|
|
|
|
|
|
|
|
# Get the list of all RBD volumes
|
|
|
|
rbd_list = zkhandler.read(("domain.storage.volumes", dom_uuid)).split(",")
|
|
|
|
|
|
|
|
# Snapshot creation stages
|
|
|
|
total_stages += 1 + len(rbd_list)
|
|
|
|
# Snapshot sending stages
|
2024-10-09 00:44:20 -04:00
|
|
|
total_stages += 1 + (3 * len(rbd_list))
|
Implement friendlier VM mirror commands
Adds two helper commands which automate sending and promoting VM
snapshots as "vm mirror" commands.
"vm mirror create" replicates the functionality of "snapshot create" and
"snapshot send", performing both in one single task using an
autogenerated dated snapshot name for automatic cross-cluster
replication.
"vm mirror promote" replicates the functionality of "vm shutdown",
"snapshot create", "snapshot send", "vm start" (remote), and,
optionally, "vm remove", performing in one single task an entire
cross-cluster VM move with or without retaining the copy on the local
cluster (if retained, the local copy becomes a snapshot mirror of the
remote, flipping their statuses).
2024-10-08 22:53:12 -04:00
|
|
|
|
|
|
|
#
|
|
|
|
# 1. Create snapshot
|
|
|
|
#
|
|
|
|
|
|
|
|
snap_list = list()
|
|
|
|
|
|
|
|
# If a snapshot fails, clean up any snapshots that were successfuly created
|
|
|
|
def cleanup_failure():
|
|
|
|
for snapshot in snap_list:
|
|
|
|
rbd, snapshot_name = snapshot.split("@")
|
|
|
|
pool, volume = rbd.split("/")
|
|
|
|
# We capture no output here, because if this fails too we're in a deep
|
|
|
|
# error chain and will just ignore it
|
|
|
|
ceph.remove_snapshot(zkhandler, pool, volume, snapshot_name)
|
|
|
|
|
|
|
|
# Iterrate through and create a snapshot for each RBD volume
|
|
|
|
for rbd in rbd_list:
|
|
|
|
current_stage += 1
|
|
|
|
update(
|
|
|
|
celery,
|
|
|
|
f"Creating RBD snapshot of {rbd}",
|
|
|
|
current=current_stage,
|
|
|
|
total=total_stages,
|
|
|
|
)
|
|
|
|
|
|
|
|
pool, volume = rbd.split("/")
|
|
|
|
ret, msg = ceph.add_snapshot(
|
|
|
|
zkhandler, pool, volume, snapshot_name, zk_only=False
|
|
|
|
)
|
|
|
|
if not ret:
|
|
|
|
cleanup_failure()
|
|
|
|
fail(
|
|
|
|
celery,
|
|
|
|
msg.replace("ERROR: ", ""),
|
|
|
|
)
|
|
|
|
return False
|
|
|
|
else:
|
|
|
|
snap_list.append(f"{pool}/{volume}@{snapshot_name}")
|
|
|
|
|
|
|
|
current_stage += 1
|
|
|
|
update(
|
|
|
|
celery,
|
|
|
|
"Creating VM configuration snapshot",
|
|
|
|
current=current_stage,
|
|
|
|
total=total_stages,
|
|
|
|
)
|
|
|
|
|
|
|
|
# Get the current timestamp
|
|
|
|
tstart = time.time()
|
|
|
|
# Get the current domain XML
|
|
|
|
vm_config = zkhandler.read(("domain.xml", dom_uuid))
|
|
|
|
|
|
|
|
# Add the snapshot entry to Zookeeper
|
|
|
|
zkhandler.write(
|
|
|
|
[
|
|
|
|
(
|
|
|
|
(
|
|
|
|
"domain.snapshots",
|
|
|
|
dom_uuid,
|
|
|
|
"domain_snapshot.name",
|
|
|
|
snapshot_name,
|
|
|
|
),
|
|
|
|
snapshot_name,
|
|
|
|
),
|
|
|
|
(
|
|
|
|
(
|
|
|
|
"domain.snapshots",
|
|
|
|
dom_uuid,
|
|
|
|
"domain_snapshot.timestamp",
|
|
|
|
snapshot_name,
|
|
|
|
),
|
|
|
|
tstart,
|
|
|
|
),
|
|
|
|
(
|
|
|
|
(
|
|
|
|
"domain.snapshots",
|
|
|
|
dom_uuid,
|
|
|
|
"domain_snapshot.xml",
|
|
|
|
snapshot_name,
|
|
|
|
),
|
|
|
|
vm_config,
|
|
|
|
),
|
|
|
|
(
|
|
|
|
(
|
|
|
|
"domain.snapshots",
|
|
|
|
dom_uuid,
|
|
|
|
"domain_snapshot.rbd_snapshots",
|
|
|
|
snapshot_name,
|
|
|
|
),
|
|
|
|
",".join(snap_list),
|
|
|
|
),
|
|
|
|
]
|
|
|
|
)
|
|
|
|
|
|
|
|
#
|
|
|
|
# 2. Send snapshot to remote
|
|
|
|
#
|
|
|
|
|
2024-10-09 00:33:00 -04:00
|
|
|
# Re-get our side's VM configuration details (since we now have the snapshot)
|
|
|
|
vm_detail = get_list(zkhandler, limit=dom_uuid, is_fuzzy=False)[1][0]
|
|
|
|
|
Implement friendlier VM mirror commands
Adds two helper commands which automate sending and promoting VM
snapshots as "vm mirror" commands.
"vm mirror create" replicates the functionality of "snapshot create" and
"snapshot send", performing both in one single task using an
autogenerated dated snapshot name for automatic cross-cluster
replication.
"vm mirror promote" replicates the functionality of "vm shutdown",
"snapshot create", "snapshot send", "vm start" (remote), and,
optionally, "vm remove", performing in one single task an entire
cross-cluster VM move with or without retaining the copy on the local
cluster (if retained, the local copy becomes a snapshot mirror of the
remote, flipping their statuses).
2024-10-08 22:53:12 -04:00
|
|
|
# Determine if there's a valid shared snapshot to send an incremental diff from
|
2024-10-09 00:27:42 -04:00
|
|
|
if destination_vm_detail:
|
|
|
|
local_snapshots = {s["name"] for s in vm_detail["snapshots"]}
|
|
|
|
remote_snapshots = {s["name"] for s in destination_vm_detail["snapshots"]}
|
|
|
|
incremental_parent = next(
|
|
|
|
(s for s in local_snapshots if s in remote_snapshots), None
|
|
|
|
)
|
|
|
|
else:
|
|
|
|
incremental_parent = None
|
Implement friendlier VM mirror commands
Adds two helper commands which automate sending and promoting VM
snapshots as "vm mirror" commands.
"vm mirror create" replicates the functionality of "snapshot create" and
"snapshot send", performing both in one single task using an
autogenerated dated snapshot name for automatic cross-cluster
replication.
"vm mirror promote" replicates the functionality of "vm shutdown",
"snapshot create", "snapshot send", "vm start" (remote), and,
optionally, "vm remove", performing in one single task an entire
cross-cluster VM move with or without retaining the copy on the local
cluster (if retained, the local copy becomes a snapshot mirror of the
remote, flipping their statuses).
2024-10-08 22:53:12 -04:00
|
|
|
|
|
|
|
current_stage += 1
|
|
|
|
update(
|
|
|
|
celery,
|
|
|
|
f"Sending VM configuration for {vm_name}@{snapshot_name}",
|
|
|
|
current=current_stage,
|
|
|
|
total=total_stages,
|
|
|
|
)
|
|
|
|
|
|
|
|
send_params = {
|
|
|
|
"snapshot": snapshot_name,
|
|
|
|
"source_snapshot": incremental_parent,
|
|
|
|
}
|
2024-10-11 10:14:38 -04:00
|
|
|
|
|
|
|
response = session.post(
|
|
|
|
f"{destination_api_uri}/vm/{vm_name}/snapshot/receive/config",
|
|
|
|
headers={"Content-Type": "application/json"},
|
|
|
|
params=send_params,
|
|
|
|
json=vm_detail,
|
|
|
|
)
|
|
|
|
if response.status_code != 200:
|
Implement friendlier VM mirror commands
Adds two helper commands which automate sending and promoting VM
snapshots as "vm mirror" commands.
"vm mirror create" replicates the functionality of "snapshot create" and
"snapshot send", performing both in one single task using an
autogenerated dated snapshot name for automatic cross-cluster
replication.
"vm mirror promote" replicates the functionality of "vm shutdown",
"snapshot create", "snapshot send", "vm start" (remote), and,
optionally, "vm remove", performing in one single task an entire
cross-cluster VM move with or without retaining the copy on the local
cluster (if retained, the local copy becomes a snapshot mirror of the
remote, flipping their statuses).
2024-10-08 22:53:12 -04:00
|
|
|
fail(
|
|
|
|
celery,
|
2024-10-11 10:14:38 -04:00
|
|
|
f"Failed to send config: {response.json()['message']}",
|
Implement friendlier VM mirror commands
Adds two helper commands which automate sending and promoting VM
snapshots as "vm mirror" commands.
"vm mirror create" replicates the functionality of "snapshot create" and
"snapshot send", performing both in one single task using an
autogenerated dated snapshot name for automatic cross-cluster
replication.
"vm mirror promote" replicates the functionality of "vm shutdown",
"snapshot create", "snapshot send", "vm start" (remote), and,
optionally, "vm remove", performing in one single task an entire
cross-cluster VM move with or without retaining the copy on the local
cluster (if retained, the local copy becomes a snapshot mirror of the
remote, flipping their statuses).
2024-10-08 22:53:12 -04:00
|
|
|
)
|
|
|
|
return False
|
|
|
|
|
|
|
|
# Create the block devices on the remote side if this is a new VM send
|
|
|
|
block_t_start = time.time()
|
|
|
|
block_total_mb = 0
|
|
|
|
|
|
|
|
for rbd_detail in [r for r in vm_detail["disks"] if r["type"] == "rbd"]:
|
|
|
|
rbd_name = rbd_detail["name"]
|
|
|
|
pool, volume = rbd_name.split("/")
|
|
|
|
|
|
|
|
current_stage += 1
|
|
|
|
update(
|
|
|
|
celery,
|
|
|
|
f"Preparing remote volume for {rbd_name}@{snapshot_name}",
|
|
|
|
current=current_stage,
|
|
|
|
total=total_stages,
|
|
|
|
)
|
|
|
|
|
|
|
|
# Get the storage volume details
|
|
|
|
retcode, retdata = ceph.get_list_volume(zkhandler, pool, volume, is_fuzzy=False)
|
|
|
|
if not retcode or len(retdata) != 1:
|
|
|
|
if len(retdata) < 1:
|
|
|
|
error_message = f"No detail returned for volume {rbd_name}"
|
|
|
|
elif len(retdata) > 1:
|
|
|
|
error_message = f"Multiple details returned for volume {rbd_name}"
|
|
|
|
else:
|
|
|
|
error_message = f"Error getting details for volume {rbd_name}"
|
|
|
|
fail(
|
|
|
|
celery,
|
|
|
|
error_message,
|
|
|
|
)
|
|
|
|
return False
|
|
|
|
|
|
|
|
try:
|
|
|
|
local_volume_size = ceph.format_bytes_fromhuman(retdata[0]["stats"]["size"])
|
|
|
|
except Exception as e:
|
|
|
|
error_message = f"Failed to get volume size for {rbd_name}: {e}"
|
|
|
|
|
|
|
|
if destination_storage_pool is not None:
|
|
|
|
pool = destination_storage_pool
|
|
|
|
|
|
|
|
current_stage += 1
|
|
|
|
update(
|
|
|
|
celery,
|
|
|
|
f"Checking remote volume {rbd_name} for compliance",
|
|
|
|
current=current_stage,
|
|
|
|
total=total_stages,
|
|
|
|
)
|
|
|
|
|
|
|
|
# Check if the volume exists on the target
|
|
|
|
response = session.get(
|
|
|
|
f"{destination_api_uri}/storage/ceph/volume/{pool}/{volume}",
|
|
|
|
params=None,
|
|
|
|
data=None,
|
|
|
|
)
|
|
|
|
if response.status_code != 404 and current_destination_vm_state is None:
|
|
|
|
fail(
|
|
|
|
celery,
|
|
|
|
f"Remote storage pool {pool} already contains volume {volume}",
|
|
|
|
)
|
|
|
|
return False
|
|
|
|
|
|
|
|
if current_destination_vm_state is not None:
|
|
|
|
try:
|
|
|
|
remote_volume_size = ceph.format_bytes_fromhuman(
|
|
|
|
response.json()[0]["stats"]["size"]
|
|
|
|
)
|
|
|
|
except Exception as e:
|
|
|
|
error_message = f"Failed to get volume size for remote {rbd_name}: {e}"
|
|
|
|
fail(celery, error_message)
|
|
|
|
return False
|
|
|
|
|
|
|
|
if local_volume_size != remote_volume_size:
|
|
|
|
response = session.put(
|
|
|
|
f"{destination_api_uri}/storage/ceph/volume/{pool}/{volume}",
|
|
|
|
params={"new_size": local_volume_size, "force": True},
|
|
|
|
)
|
|
|
|
if response.status_code != 200:
|
|
|
|
fail(
|
|
|
|
celery,
|
|
|
|
"Failed to resize remote volume to match local volume",
|
|
|
|
)
|
|
|
|
return False
|
|
|
|
|
|
|
|
# Send the volume to the remote
|
|
|
|
cluster = rados.Rados(conffile="/etc/ceph/ceph.conf")
|
|
|
|
cluster.connect()
|
|
|
|
ioctx = cluster.open_ioctx(pool)
|
|
|
|
image = RBDImage(ioctx, name=volume, snapshot=snapshot_name, read_only=True)
|
|
|
|
size = image.size()
|
|
|
|
chunk_size_mb = 1024
|
|
|
|
|
|
|
|
if incremental_parent is not None:
|
|
|
|
# Diff between incremental_parent and snapshot
|
|
|
|
celery_message = (
|
|
|
|
f"Sending diff of {rbd_name}@{incremental_parent} → {snapshot_name}"
|
|
|
|
)
|
|
|
|
else:
|
|
|
|
# Full image transfer
|
|
|
|
celery_message = f"Sending full image of {rbd_name}@{snapshot_name}"
|
|
|
|
|
|
|
|
current_stage += 1
|
|
|
|
update(
|
|
|
|
celery,
|
|
|
|
celery_message,
|
|
|
|
current=current_stage,
|
|
|
|
total=total_stages,
|
|
|
|
)
|
|
|
|
|
|
|
|
if incremental_parent is not None:
|
|
|
|
# Createa single session to reuse connections
|
|
|
|
send_params = {
|
|
|
|
"pool": pool,
|
|
|
|
"volume": volume,
|
|
|
|
"snapshot": snapshot_name,
|
|
|
|
"source_snapshot": incremental_parent,
|
|
|
|
}
|
|
|
|
|
|
|
|
session.params.update(send_params)
|
|
|
|
|
|
|
|
# Send 32 objects (128MB) at once
|
|
|
|
send_max_objects = 32
|
|
|
|
batch_size_mb = 4 * send_max_objects
|
|
|
|
batch_size = batch_size_mb * 1024 * 1024
|
|
|
|
|
|
|
|
total_chunks = 0
|
|
|
|
|
|
|
|
def diff_cb_count(offset, length, exists):
|
|
|
|
nonlocal total_chunks
|
|
|
|
if exists:
|
|
|
|
total_chunks += 1
|
|
|
|
|
|
|
|
current_chunk = 0
|
|
|
|
buffer = list()
|
|
|
|
buffer_size = 0
|
|
|
|
last_chunk_time = time.time()
|
|
|
|
|
|
|
|
def send_batch_multipart(buffer):
|
|
|
|
nonlocal last_chunk_time
|
|
|
|
files = {}
|
|
|
|
for i in range(len(buffer)):
|
|
|
|
files[f"object_{i}"] = (
|
|
|
|
f"object_{i}",
|
|
|
|
buffer[i],
|
|
|
|
"application/octet-stream",
|
|
|
|
)
|
2024-10-11 10:14:38 -04:00
|
|
|
|
|
|
|
response = session.put(
|
|
|
|
f"{destination_api_uri}/vm/{vm_name}/snapshot/receive/block",
|
|
|
|
files=files,
|
|
|
|
stream=True,
|
|
|
|
)
|
|
|
|
if response.status_code != 200:
|
Implement friendlier VM mirror commands
Adds two helper commands which automate sending and promoting VM
snapshots as "vm mirror" commands.
"vm mirror create" replicates the functionality of "snapshot create" and
"snapshot send", performing both in one single task using an
autogenerated dated snapshot name for automatic cross-cluster
replication.
"vm mirror promote" replicates the functionality of "vm shutdown",
"snapshot create", "snapshot send", "vm start" (remote), and,
optionally, "vm remove", performing in one single task an entire
cross-cluster VM move with or without retaining the copy on the local
cluster (if retained, the local copy becomes a snapshot mirror of the
remote, flipping their statuses).
2024-10-08 22:53:12 -04:00
|
|
|
fail(
|
|
|
|
celery,
|
2024-10-11 10:14:38 -04:00
|
|
|
f"Failed to send diff batch: {response.json()['message']}",
|
Implement friendlier VM mirror commands
Adds two helper commands which automate sending and promoting VM
snapshots as "vm mirror" commands.
"vm mirror create" replicates the functionality of "snapshot create" and
"snapshot send", performing both in one single task using an
autogenerated dated snapshot name for automatic cross-cluster
replication.
"vm mirror promote" replicates the functionality of "vm shutdown",
"snapshot create", "snapshot send", "vm start" (remote), and,
optionally, "vm remove", performing in one single task an entire
cross-cluster VM move with or without retaining the copy on the local
cluster (if retained, the local copy becomes a snapshot mirror of the
remote, flipping their statuses).
2024-10-08 22:53:12 -04:00
|
|
|
)
|
|
|
|
return False
|
|
|
|
|
|
|
|
current_chunk_time = time.time()
|
|
|
|
chunk_time = current_chunk_time - last_chunk_time
|
|
|
|
last_chunk_time = current_chunk_time
|
|
|
|
chunk_speed = round(batch_size_mb / chunk_time, 1)
|
|
|
|
update(
|
|
|
|
celery,
|
|
|
|
celery_message + f" ({chunk_speed} MB/s)",
|
|
|
|
current=current_stage,
|
|
|
|
total=total_stages,
|
|
|
|
)
|
|
|
|
|
|
|
|
def add_block_to_multipart(buffer, offset, length, data):
|
|
|
|
part_data = (
|
|
|
|
offset.to_bytes(8, "big") + length.to_bytes(8, "big") + data
|
|
|
|
) # Add header and data
|
|
|
|
buffer.append(part_data)
|
|
|
|
|
|
|
|
def diff_cb_send(offset, length, exists):
|
|
|
|
nonlocal current_chunk, buffer, buffer_size
|
|
|
|
if exists:
|
|
|
|
# Read the data for the current block
|
|
|
|
data = image.read(offset, length)
|
|
|
|
# Add the block to the multipart buffer
|
|
|
|
add_block_to_multipart(buffer, offset, length, data)
|
|
|
|
current_chunk += 1
|
|
|
|
buffer_size += len(data)
|
|
|
|
if buffer_size >= batch_size:
|
|
|
|
send_batch_multipart(buffer)
|
|
|
|
buffer.clear() # Clear the buffer after sending
|
|
|
|
buffer_size = 0 # Reset buffer size
|
|
|
|
|
|
|
|
try:
|
|
|
|
image.set_snap(snapshot_name)
|
|
|
|
image.diff_iterate(
|
|
|
|
0, size, incremental_parent, diff_cb_count, whole_object=True
|
|
|
|
)
|
|
|
|
block_total_mb += total_chunks * 4
|
|
|
|
image.diff_iterate(
|
|
|
|
0, size, incremental_parent, diff_cb_send, whole_object=True
|
|
|
|
)
|
|
|
|
|
|
|
|
if buffer:
|
|
|
|
send_batch_multipart(buffer)
|
|
|
|
buffer.clear() # Clear the buffer after sending
|
|
|
|
buffer_size = 0 # Reset buffer size
|
|
|
|
except Exception:
|
|
|
|
fail(
|
|
|
|
celery,
|
2024-10-09 01:00:51 -04:00
|
|
|
f"Failed to create mirror: {response.json()['message']}",
|
Implement friendlier VM mirror commands
Adds two helper commands which automate sending and promoting VM
snapshots as "vm mirror" commands.
"vm mirror create" replicates the functionality of "snapshot create" and
"snapshot send", performing both in one single task using an
autogenerated dated snapshot name for automatic cross-cluster
replication.
"vm mirror promote" replicates the functionality of "vm shutdown",
"snapshot create", "snapshot send", "vm start" (remote), and,
optionally, "vm remove", performing in one single task an entire
cross-cluster VM move with or without retaining the copy on the local
cluster (if retained, the local copy becomes a snapshot mirror of the
remote, flipping their statuses).
2024-10-08 22:53:12 -04:00
|
|
|
)
|
|
|
|
return False
|
|
|
|
finally:
|
|
|
|
image.close()
|
|
|
|
ioctx.close()
|
|
|
|
cluster.shutdown()
|
|
|
|
else:
|
|
|
|
|
|
|
|
def full_chunker():
|
|
|
|
nonlocal block_total_mb
|
|
|
|
chunk_size = 1024 * 1024 * chunk_size_mb
|
|
|
|
current_chunk = 0
|
|
|
|
last_chunk_time = time.time()
|
|
|
|
while current_chunk < size:
|
|
|
|
chunk = image.read(current_chunk, chunk_size)
|
|
|
|
yield chunk
|
|
|
|
current_chunk += chunk_size
|
|
|
|
block_total_mb += len(chunk) / 1024 / 1024
|
|
|
|
current_chunk_time = time.time()
|
|
|
|
chunk_time = current_chunk_time - last_chunk_time
|
|
|
|
last_chunk_time = current_chunk_time
|
|
|
|
chunk_speed = round(chunk_size_mb / chunk_time, 1)
|
|
|
|
update(
|
|
|
|
celery,
|
|
|
|
celery_message + f" ({chunk_speed} MB/s)",
|
|
|
|
current=current_stage,
|
|
|
|
total=total_stages,
|
|
|
|
)
|
|
|
|
|
|
|
|
send_params = {
|
|
|
|
"pool": pool,
|
|
|
|
"volume": volume,
|
|
|
|
"snapshot": snapshot_name,
|
|
|
|
"size": size,
|
|
|
|
"source_snapshot": incremental_parent,
|
|
|
|
}
|
|
|
|
|
|
|
|
try:
|
|
|
|
response = session.post(
|
|
|
|
f"{destination_api_uri}/vm/{vm_name}/snapshot/receive/block",
|
|
|
|
headers={"Content-Type": "application/octet-stream"},
|
|
|
|
params=send_params,
|
|
|
|
data=full_chunker(),
|
|
|
|
)
|
2024-10-11 10:14:38 -04:00
|
|
|
if response.status_code != 200:
|
|
|
|
fail(
|
|
|
|
celery,
|
|
|
|
f"Failed to create mirror: {response.json()['message']}",
|
|
|
|
)
|
|
|
|
return False
|
Implement friendlier VM mirror commands
Adds two helper commands which automate sending and promoting VM
snapshots as "vm mirror" commands.
"vm mirror create" replicates the functionality of "snapshot create" and
"snapshot send", performing both in one single task using an
autogenerated dated snapshot name for automatic cross-cluster
replication.
"vm mirror promote" replicates the functionality of "vm shutdown",
"snapshot create", "snapshot send", "vm start" (remote), and,
optionally, "vm remove", performing in one single task an entire
cross-cluster VM move with or without retaining the copy on the local
cluster (if retained, the local copy becomes a snapshot mirror of the
remote, flipping their statuses).
2024-10-08 22:53:12 -04:00
|
|
|
finally:
|
|
|
|
image.close()
|
|
|
|
ioctx.close()
|
|
|
|
cluster.shutdown()
|
|
|
|
|
|
|
|
send_params = {
|
|
|
|
"pool": pool,
|
|
|
|
"volume": volume,
|
|
|
|
"snapshot": snapshot_name,
|
|
|
|
}
|
|
|
|
try:
|
|
|
|
response = session.patch(
|
|
|
|
f"{destination_api_uri}/vm/{vm_name}/snapshot/receive/block",
|
|
|
|
params=send_params,
|
|
|
|
)
|
2024-10-11 10:14:38 -04:00
|
|
|
if response.status_code != 200:
|
|
|
|
fail(
|
|
|
|
celery,
|
|
|
|
f"Failed to create mirror: {response.json()['message']}",
|
|
|
|
)
|
|
|
|
return False
|
Implement friendlier VM mirror commands
Adds two helper commands which automate sending and promoting VM
snapshots as "vm mirror" commands.
"vm mirror create" replicates the functionality of "snapshot create" and
"snapshot send", performing both in one single task using an
autogenerated dated snapshot name for automatic cross-cluster
replication.
"vm mirror promote" replicates the functionality of "vm shutdown",
"snapshot create", "snapshot send", "vm start" (remote), and,
optionally, "vm remove", performing in one single task an entire
cross-cluster VM move with or without retaining the copy on the local
cluster (if retained, the local copy becomes a snapshot mirror of the
remote, flipping their statuses).
2024-10-08 22:53:12 -04:00
|
|
|
finally:
|
|
|
|
image.close()
|
|
|
|
ioctx.close()
|
|
|
|
cluster.shutdown()
|
|
|
|
|
|
|
|
block_t_end = time.time()
|
|
|
|
block_mbps = round(block_total_mb / (block_t_end - block_t_start), 1)
|
|
|
|
|
2024-10-09 00:38:59 -04:00
|
|
|
if incremental_parent is not None:
|
|
|
|
verb = "updated"
|
|
|
|
else:
|
|
|
|
verb = "created"
|
|
|
|
|
Implement friendlier VM mirror commands
Adds two helper commands which automate sending and promoting VM
snapshots as "vm mirror" commands.
"vm mirror create" replicates the functionality of "snapshot create" and
"snapshot send", performing both in one single task using an
autogenerated dated snapshot name for automatic cross-cluster
replication.
"vm mirror promote" replicates the functionality of "vm shutdown",
"snapshot create", "snapshot send", "vm start" (remote), and,
optionally, "vm remove", performing in one single task an entire
cross-cluster VM move with or without retaining the copy on the local
cluster (if retained, the local copy becomes a snapshot mirror of the
remote, flipping their statuses).
2024-10-08 22:53:12 -04:00
|
|
|
current_stage += 1
|
|
|
|
return finish(
|
|
|
|
celery,
|
2024-10-09 00:38:59 -04:00
|
|
|
f"Successfully {verb} mirror of VM '{domain}' (snapshot '{snapshot_name}') on remote cluster '{destination_api_uri}' (average {block_mbps} MB/s)",
|
Implement friendlier VM mirror commands
Adds two helper commands which automate sending and promoting VM
snapshots as "vm mirror" commands.
"vm mirror create" replicates the functionality of "snapshot create" and
"snapshot send", performing both in one single task using an
autogenerated dated snapshot name for automatic cross-cluster
replication.
"vm mirror promote" replicates the functionality of "vm shutdown",
"snapshot create", "snapshot send", "vm start" (remote), and,
optionally, "vm remove", performing in one single task an entire
cross-cluster VM move with or without retaining the copy on the local
cluster (if retained, the local copy becomes a snapshot mirror of the
remote, flipping their statuses).
2024-10-08 22:53:12 -04:00
|
|
|
current=current_stage,
|
|
|
|
total=total_stages,
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
|
|
def vm_worker_promote_mirror(
|
|
|
|
zkhandler,
|
|
|
|
celery,
|
|
|
|
domain,
|
|
|
|
destination_api_uri,
|
|
|
|
destination_api_key,
|
|
|
|
destination_api_verify_ssl,
|
|
|
|
destination_storage_pool,
|
|
|
|
remove_on_source=False,
|
|
|
|
):
|
|
|
|
now = datetime.now()
|
2024-10-09 00:47:06 -04:00
|
|
|
datestring = now.strftime("%Y%m%d%H%M%S")
|
|
|
|
snapshot_name = f"mr{datestring}"
|
Implement friendlier VM mirror commands
Adds two helper commands which automate sending and promoting VM
snapshots as "vm mirror" commands.
"vm mirror create" replicates the functionality of "snapshot create" and
"snapshot send", performing both in one single task using an
autogenerated dated snapshot name for automatic cross-cluster
replication.
"vm mirror promote" replicates the functionality of "vm shutdown",
"snapshot create", "snapshot send", "vm start" (remote), and,
optionally, "vm remove", performing in one single task an entire
cross-cluster VM move with or without retaining the copy on the local
cluster (if retained, the local copy becomes a snapshot mirror of the
remote, flipping their statuses).
2024-10-08 22:53:12 -04:00
|
|
|
|
|
|
|
current_stage = 0
|
|
|
|
total_stages = 1
|
|
|
|
start(
|
|
|
|
celery,
|
|
|
|
f"Creating mirror of VM '{domain}' to cluster '{destination_api_uri}'",
|
|
|
|
current=current_stage,
|
|
|
|
total=total_stages,
|
|
|
|
)
|
|
|
|
|
|
|
|
# Validate that VM exists in cluster
|
|
|
|
dom_uuid = getDomainUUID(zkhandler, domain)
|
|
|
|
if not dom_uuid:
|
|
|
|
fail(
|
|
|
|
celery,
|
|
|
|
f"Could not find VM '{domain}' in the cluster",
|
|
|
|
)
|
|
|
|
return False
|
|
|
|
|
|
|
|
current_snapshots = zkhandler.children(("domain.snapshots", dom_uuid))
|
|
|
|
if current_snapshots and snapshot_name in current_snapshots:
|
|
|
|
# This should never actually happen since snapshots with mirror are dated, but worth
|
|
|
|
# checking just in case someone tries to be sneaky
|
|
|
|
fail(
|
|
|
|
celery,
|
|
|
|
f"Snapshot name '{snapshot_name}' already exists for VM '{domain}'!",
|
|
|
|
)
|
|
|
|
return False
|
|
|
|
|
|
|
|
# Get our side's VM configuration details
|
|
|
|
try:
|
|
|
|
vm_detail = get_list(zkhandler, limit=dom_uuid, is_fuzzy=False)[1][0]
|
|
|
|
except KeyError:
|
|
|
|
vm_detail = None
|
|
|
|
|
|
|
|
if not isinstance(vm_detail, dict):
|
|
|
|
fail(
|
|
|
|
celery,
|
|
|
|
f"VM listing returned invalid data: {vm_detail}",
|
|
|
|
)
|
|
|
|
return False
|
|
|
|
|
|
|
|
vm_name = vm_detail["name"]
|
|
|
|
|
|
|
|
# Validate that the destination cluster can be reached
|
|
|
|
destination_api_timeout = (3.05, 172800)
|
|
|
|
destination_api_headers = {
|
|
|
|
"X-Api-Key": destination_api_key,
|
|
|
|
}
|
|
|
|
|
|
|
|
session = requests.Session()
|
|
|
|
session.headers.update(destination_api_headers)
|
|
|
|
session.verify = destination_api_verify_ssl
|
|
|
|
session.timeout = destination_api_timeout
|
|
|
|
|
|
|
|
try:
|
|
|
|
# Hit the API root; this should return "PVC API version x"
|
|
|
|
response = session.get(
|
|
|
|
f"{destination_api_uri}/",
|
|
|
|
timeout=destination_api_timeout,
|
|
|
|
params=None,
|
|
|
|
data=None,
|
|
|
|
)
|
|
|
|
if "PVC API" not in response.json().get("message"):
|
|
|
|
raise ValueError("Remote API is not a PVC API or incorrect URI given")
|
|
|
|
except requests.exceptions.ConnectionError as e:
|
|
|
|
fail(
|
|
|
|
celery,
|
|
|
|
f"Connection to remote API timed out: {e}",
|
|
|
|
)
|
|
|
|
return False
|
|
|
|
except ValueError as e:
|
|
|
|
fail(
|
|
|
|
celery,
|
|
|
|
f"Connection to remote API is not valid: {e}",
|
|
|
|
)
|
|
|
|
return False
|
|
|
|
except Exception as e:
|
|
|
|
fail(
|
|
|
|
celery,
|
|
|
|
f"Connection to remote API failed: {e}",
|
|
|
|
)
|
|
|
|
return False
|
|
|
|
|
|
|
|
# Hit the API "/status" endpoint to validate API key and cluster status
|
|
|
|
response = session.get(
|
|
|
|
f"{destination_api_uri}/status",
|
|
|
|
params=None,
|
|
|
|
data=None,
|
|
|
|
)
|
|
|
|
destination_cluster_status = response.json()
|
|
|
|
current_destination_pvc_version = destination_cluster_status.get(
|
|
|
|
"pvc_version", None
|
|
|
|
)
|
|
|
|
if current_destination_pvc_version is None:
|
|
|
|
fail(
|
|
|
|
celery,
|
|
|
|
"Connection to remote API failed: no PVC version information returned",
|
|
|
|
)
|
|
|
|
return False
|
|
|
|
|
2024-10-15 11:31:50 -04:00
|
|
|
expected_destination_pvc_version = "0.9.101"
|
Implement friendlier VM mirror commands
Adds two helper commands which automate sending and promoting VM
snapshots as "vm mirror" commands.
"vm mirror create" replicates the functionality of "snapshot create" and
"snapshot send", performing both in one single task using an
autogenerated dated snapshot name for automatic cross-cluster
replication.
"vm mirror promote" replicates the functionality of "vm shutdown",
"snapshot create", "snapshot send", "vm start" (remote), and,
optionally, "vm remove", performing in one single task an entire
cross-cluster VM move with or without retaining the copy on the local
cluster (if retained, the local copy becomes a snapshot mirror of the
remote, flipping their statuses).
2024-10-08 22:53:12 -04:00
|
|
|
# Work around development versions
|
|
|
|
current_destination_pvc_version = re.sub(
|
|
|
|
r"~git-.*", "", current_destination_pvc_version
|
|
|
|
)
|
|
|
|
# Compare versions
|
|
|
|
if parse_version(current_destination_pvc_version) < parse_version(
|
|
|
|
expected_destination_pvc_version
|
|
|
|
):
|
|
|
|
fail(
|
|
|
|
celery,
|
|
|
|
f"Remote PVC cluster is too old: requires version {expected_destination_pvc_version} or higher",
|
|
|
|
)
|
|
|
|
return False
|
|
|
|
|
|
|
|
# Check if the VM already exists on the remote
|
|
|
|
response = session.get(
|
|
|
|
f"{destination_api_uri}/vm/{domain}",
|
|
|
|
params=None,
|
|
|
|
data=None,
|
|
|
|
)
|
|
|
|
destination_vm_detail = response.json()
|
|
|
|
if type(destination_vm_detail) is list and len(destination_vm_detail) > 0:
|
|
|
|
destination_vm_detail = destination_vm_detail[0]
|
|
|
|
else:
|
|
|
|
destination_vm_detail = {}
|
|
|
|
|
|
|
|
current_destination_vm_state = destination_vm_detail.get("state", None)
|
|
|
|
if (
|
|
|
|
current_destination_vm_state is not None
|
|
|
|
and current_destination_vm_state != "mirror"
|
|
|
|
):
|
|
|
|
fail(
|
|
|
|
celery,
|
|
|
|
"Remote PVC VM exists and is not a mirror",
|
|
|
|
)
|
|
|
|
return False
|
|
|
|
|
|
|
|
# Get the list of all RBD volumes
|
|
|
|
rbd_list = zkhandler.read(("domain.storage.volumes", dom_uuid)).split(",")
|
|
|
|
|
2024-10-10 01:18:54 -04:00
|
|
|
previous_vm_state = vm_detail["state"]
|
|
|
|
|
Implement friendlier VM mirror commands
Adds two helper commands which automate sending and promoting VM
snapshots as "vm mirror" commands.
"vm mirror create" replicates the functionality of "snapshot create" and
"snapshot send", performing both in one single task using an
autogenerated dated snapshot name for automatic cross-cluster
replication.
"vm mirror promote" replicates the functionality of "vm shutdown",
"snapshot create", "snapshot send", "vm start" (remote), and,
optionally, "vm remove", performing in one single task an entire
cross-cluster VM move with or without retaining the copy on the local
cluster (if retained, the local copy becomes a snapshot mirror of the
remote, flipping their statuses).
2024-10-08 22:53:12 -04:00
|
|
|
# VM shutdown stages
|
|
|
|
total_stages += 1
|
|
|
|
# Snapshot creation stages
|
|
|
|
total_stages += 1 + len(rbd_list)
|
|
|
|
# Snapshot sending stages
|
2024-10-09 00:37:13 -04:00
|
|
|
total_stages += 1 + (3 * len(rbd_list))
|
Implement friendlier VM mirror commands
Adds two helper commands which automate sending and promoting VM
snapshots as "vm mirror" commands.
"vm mirror create" replicates the functionality of "snapshot create" and
"snapshot send", performing both in one single task using an
autogenerated dated snapshot name for automatic cross-cluster
replication.
"vm mirror promote" replicates the functionality of "vm shutdown",
"snapshot create", "snapshot send", "vm start" (remote), and,
optionally, "vm remove", performing in one single task an entire
cross-cluster VM move with or without retaining the copy on the local
cluster (if retained, the local copy becomes a snapshot mirror of the
remote, flipping their statuses).
2024-10-08 22:53:12 -04:00
|
|
|
# Cleanup stages
|
|
|
|
total_stages += 2
|
|
|
|
|
|
|
|
#
|
|
|
|
# 1. Shut down VM
|
|
|
|
#
|
|
|
|
|
|
|
|
current_stage += 1
|
|
|
|
update(
|
|
|
|
celery,
|
|
|
|
f"Shutting down VM '{vm_name}'",
|
|
|
|
current=current_stage,
|
|
|
|
total=total_stages,
|
|
|
|
)
|
|
|
|
|
2024-10-09 01:10:42 -04:00
|
|
|
if vm_detail["state"] in ["start"]:
|
|
|
|
retcode, retmsg = shutdown_vm(zkhandler, domain, wait=True)
|
|
|
|
if not retcode:
|
|
|
|
fail(
|
|
|
|
celery,
|
|
|
|
"Failed to shut down VM",
|
|
|
|
)
|
|
|
|
return False
|
Implement friendlier VM mirror commands
Adds two helper commands which automate sending and promoting VM
snapshots as "vm mirror" commands.
"vm mirror create" replicates the functionality of "snapshot create" and
"snapshot send", performing both in one single task using an
autogenerated dated snapshot name for automatic cross-cluster
replication.
"vm mirror promote" replicates the functionality of "vm shutdown",
"snapshot create", "snapshot send", "vm start" (remote), and,
optionally, "vm remove", performing in one single task an entire
cross-cluster VM move with or without retaining the copy on the local
cluster (if retained, the local copy becomes a snapshot mirror of the
remote, flipping their statuses).
2024-10-08 22:53:12 -04:00
|
|
|
|
|
|
|
#
|
|
|
|
# 2. Create snapshot
|
|
|
|
#
|
|
|
|
|
|
|
|
snap_list = list()
|
|
|
|
|
|
|
|
# If a snapshot fails, clean up any snapshots that were successfuly created
|
|
|
|
def cleanup_failure():
|
|
|
|
for snapshot in snap_list:
|
|
|
|
rbd, snapshot_name = snapshot.split("@")
|
|
|
|
pool, volume = rbd.split("/")
|
|
|
|
# We capture no output here, because if this fails too we're in a deep
|
|
|
|
# error chain and will just ignore it
|
|
|
|
ceph.remove_snapshot(zkhandler, pool, volume, snapshot_name)
|
|
|
|
|
|
|
|
# Iterrate through and create a snapshot for each RBD volume
|
|
|
|
for rbd in rbd_list:
|
|
|
|
current_stage += 1
|
|
|
|
update(
|
|
|
|
celery,
|
|
|
|
f"Creating RBD snapshot of {rbd}",
|
|
|
|
current=current_stage,
|
|
|
|
total=total_stages,
|
|
|
|
)
|
|
|
|
|
|
|
|
pool, volume = rbd.split("/")
|
|
|
|
ret, msg = ceph.add_snapshot(
|
|
|
|
zkhandler, pool, volume, snapshot_name, zk_only=False
|
|
|
|
)
|
|
|
|
if not ret:
|
|
|
|
cleanup_failure()
|
|
|
|
fail(
|
|
|
|
celery,
|
|
|
|
msg.replace("ERROR: ", ""),
|
|
|
|
)
|
|
|
|
return False
|
|
|
|
else:
|
|
|
|
snap_list.append(f"{pool}/{volume}@{snapshot_name}")
|
|
|
|
|
|
|
|
current_stage += 1
|
|
|
|
update(
|
|
|
|
celery,
|
|
|
|
"Creating VM configuration snapshot",
|
|
|
|
current=current_stage,
|
|
|
|
total=total_stages,
|
|
|
|
)
|
|
|
|
|
|
|
|
# Get the current timestamp
|
|
|
|
tstart = time.time()
|
|
|
|
# Get the current domain XML
|
|
|
|
vm_config = zkhandler.read(("domain.xml", dom_uuid))
|
|
|
|
|
|
|
|
# Add the snapshot entry to Zookeeper
|
|
|
|
zkhandler.write(
|
|
|
|
[
|
|
|
|
(
|
|
|
|
(
|
|
|
|
"domain.snapshots",
|
|
|
|
dom_uuid,
|
|
|
|
"domain_snapshot.name",
|
|
|
|
snapshot_name,
|
|
|
|
),
|
|
|
|
snapshot_name,
|
|
|
|
),
|
|
|
|
(
|
|
|
|
(
|
|
|
|
"domain.snapshots",
|
|
|
|
dom_uuid,
|
|
|
|
"domain_snapshot.timestamp",
|
|
|
|
snapshot_name,
|
|
|
|
),
|
|
|
|
tstart,
|
|
|
|
),
|
|
|
|
(
|
|
|
|
(
|
|
|
|
"domain.snapshots",
|
|
|
|
dom_uuid,
|
|
|
|
"domain_snapshot.xml",
|
|
|
|
snapshot_name,
|
|
|
|
),
|
|
|
|
vm_config,
|
|
|
|
),
|
|
|
|
(
|
|
|
|
(
|
|
|
|
"domain.snapshots",
|
|
|
|
dom_uuid,
|
|
|
|
"domain_snapshot.rbd_snapshots",
|
|
|
|
snapshot_name,
|
|
|
|
),
|
|
|
|
",".join(snap_list),
|
|
|
|
),
|
|
|
|
]
|
|
|
|
)
|
|
|
|
|
|
|
|
#
|
2024-10-09 00:33:00 -04:00
|
|
|
# 3. Send snapshot to remote
|
Implement friendlier VM mirror commands
Adds two helper commands which automate sending and promoting VM
snapshots as "vm mirror" commands.
"vm mirror create" replicates the functionality of "snapshot create" and
"snapshot send", performing both in one single task using an
autogenerated dated snapshot name for automatic cross-cluster
replication.
"vm mirror promote" replicates the functionality of "vm shutdown",
"snapshot create", "snapshot send", "vm start" (remote), and,
optionally, "vm remove", performing in one single task an entire
cross-cluster VM move with or without retaining the copy on the local
cluster (if retained, the local copy becomes a snapshot mirror of the
remote, flipping their statuses).
2024-10-08 22:53:12 -04:00
|
|
|
#
|
|
|
|
|
2024-10-09 00:33:00 -04:00
|
|
|
# Re-get our side's VM configuration details (since we now have the snapshot)
|
|
|
|
vm_detail = get_list(zkhandler, limit=dom_uuid, is_fuzzy=False)[1][0]
|
|
|
|
|
Implement friendlier VM mirror commands
Adds two helper commands which automate sending and promoting VM
snapshots as "vm mirror" commands.
"vm mirror create" replicates the functionality of "snapshot create" and
"snapshot send", performing both in one single task using an
autogenerated dated snapshot name for automatic cross-cluster
replication.
"vm mirror promote" replicates the functionality of "vm shutdown",
"snapshot create", "snapshot send", "vm start" (remote), and,
optionally, "vm remove", performing in one single task an entire
cross-cluster VM move with or without retaining the copy on the local
cluster (if retained, the local copy becomes a snapshot mirror of the
remote, flipping their statuses).
2024-10-08 22:53:12 -04:00
|
|
|
# Determine if there's a valid shared snapshot to send an incremental diff from
|
2024-10-09 01:14:19 -04:00
|
|
|
if destination_vm_detail:
|
|
|
|
local_snapshots = {s["name"] for s in vm_detail["snapshots"]}
|
|
|
|
remote_snapshots = {s["name"] for s in destination_vm_detail["snapshots"]}
|
|
|
|
incremental_parent = next(
|
|
|
|
(s for s in local_snapshots if s in remote_snapshots), None
|
|
|
|
)
|
|
|
|
else:
|
|
|
|
incremental_parent = None
|
Implement friendlier VM mirror commands
Adds two helper commands which automate sending and promoting VM
snapshots as "vm mirror" commands.
"vm mirror create" replicates the functionality of "snapshot create" and
"snapshot send", performing both in one single task using an
autogenerated dated snapshot name for automatic cross-cluster
replication.
"vm mirror promote" replicates the functionality of "vm shutdown",
"snapshot create", "snapshot send", "vm start" (remote), and,
optionally, "vm remove", performing in one single task an entire
cross-cluster VM move with or without retaining the copy on the local
cluster (if retained, the local copy becomes a snapshot mirror of the
remote, flipping their statuses).
2024-10-08 22:53:12 -04:00
|
|
|
|
|
|
|
current_stage += 1
|
|
|
|
update(
|
|
|
|
celery,
|
|
|
|
f"Sending VM configuration for {vm_name}@{snapshot_name}",
|
|
|
|
current=current_stage,
|
|
|
|
total=total_stages,
|
|
|
|
)
|
|
|
|
|
|
|
|
send_params = {
|
|
|
|
"snapshot": snapshot_name,
|
|
|
|
"source_snapshot": incremental_parent,
|
|
|
|
}
|
2024-10-11 10:14:38 -04:00
|
|
|
|
|
|
|
response = session.post(
|
|
|
|
f"{destination_api_uri}/vm/{vm_name}/snapshot/receive/config",
|
|
|
|
headers={"Content-Type": "application/json"},
|
|
|
|
params=send_params,
|
|
|
|
json=vm_detail,
|
|
|
|
)
|
|
|
|
if response.status_code != 200:
|
Implement friendlier VM mirror commands
Adds two helper commands which automate sending and promoting VM
snapshots as "vm mirror" commands.
"vm mirror create" replicates the functionality of "snapshot create" and
"snapshot send", performing both in one single task using an
autogenerated dated snapshot name for automatic cross-cluster
replication.
"vm mirror promote" replicates the functionality of "vm shutdown",
"snapshot create", "snapshot send", "vm start" (remote), and,
optionally, "vm remove", performing in one single task an entire
cross-cluster VM move with or without retaining the copy on the local
cluster (if retained, the local copy becomes a snapshot mirror of the
remote, flipping their statuses).
2024-10-08 22:53:12 -04:00
|
|
|
fail(
|
|
|
|
celery,
|
2024-10-11 10:14:38 -04:00
|
|
|
f"Failed to send config: {response.json()['message']}",
|
Implement friendlier VM mirror commands
Adds two helper commands which automate sending and promoting VM
snapshots as "vm mirror" commands.
"vm mirror create" replicates the functionality of "snapshot create" and
"snapshot send", performing both in one single task using an
autogenerated dated snapshot name for automatic cross-cluster
replication.
"vm mirror promote" replicates the functionality of "vm shutdown",
"snapshot create", "snapshot send", "vm start" (remote), and,
optionally, "vm remove", performing in one single task an entire
cross-cluster VM move with or without retaining the copy on the local
cluster (if retained, the local copy becomes a snapshot mirror of the
remote, flipping their statuses).
2024-10-08 22:53:12 -04:00
|
|
|
)
|
|
|
|
return False
|
|
|
|
|
|
|
|
# Create the block devices on the remote side if this is a new VM send
|
|
|
|
block_t_start = time.time()
|
|
|
|
block_total_mb = 0
|
|
|
|
|
|
|
|
for rbd_detail in [r for r in vm_detail["disks"] if r["type"] == "rbd"]:
|
|
|
|
rbd_name = rbd_detail["name"]
|
|
|
|
pool, volume = rbd_name.split("/")
|
|
|
|
|
|
|
|
current_stage += 1
|
|
|
|
update(
|
|
|
|
celery,
|
|
|
|
f"Preparing remote volume for {rbd_name}@{snapshot_name}",
|
|
|
|
current=current_stage,
|
|
|
|
total=total_stages,
|
|
|
|
)
|
|
|
|
|
|
|
|
# Get the storage volume details
|
|
|
|
retcode, retdata = ceph.get_list_volume(zkhandler, pool, volume, is_fuzzy=False)
|
|
|
|
if not retcode or len(retdata) != 1:
|
|
|
|
if len(retdata) < 1:
|
|
|
|
error_message = f"No detail returned for volume {rbd_name}"
|
|
|
|
elif len(retdata) > 1:
|
|
|
|
error_message = f"Multiple details returned for volume {rbd_name}"
|
|
|
|
else:
|
|
|
|
error_message = f"Error getting details for volume {rbd_name}"
|
|
|
|
fail(
|
|
|
|
celery,
|
|
|
|
error_message,
|
|
|
|
)
|
|
|
|
return False
|
|
|
|
|
|
|
|
try:
|
|
|
|
local_volume_size = ceph.format_bytes_fromhuman(retdata[0]["stats"]["size"])
|
|
|
|
except Exception as e:
|
|
|
|
error_message = f"Failed to get volume size for {rbd_name}: {e}"
|
|
|
|
|
|
|
|
if destination_storage_pool is not None:
|
|
|
|
pool = destination_storage_pool
|
|
|
|
|
|
|
|
current_stage += 1
|
|
|
|
update(
|
|
|
|
celery,
|
|
|
|
f"Checking remote volume {rbd_name} for compliance",
|
|
|
|
current=current_stage,
|
|
|
|
total=total_stages,
|
|
|
|
)
|
|
|
|
|
|
|
|
# Check if the volume exists on the target
|
|
|
|
response = session.get(
|
|
|
|
f"{destination_api_uri}/storage/ceph/volume/{pool}/{volume}",
|
|
|
|
params=None,
|
|
|
|
data=None,
|
|
|
|
)
|
|
|
|
if response.status_code != 404 and current_destination_vm_state is None:
|
|
|
|
fail(
|
|
|
|
celery,
|
|
|
|
f"Remote storage pool {pool} already contains volume {volume}",
|
|
|
|
)
|
|
|
|
return False
|
|
|
|
|
|
|
|
if current_destination_vm_state is not None:
|
|
|
|
try:
|
|
|
|
remote_volume_size = ceph.format_bytes_fromhuman(
|
|
|
|
response.json()[0]["stats"]["size"]
|
|
|
|
)
|
|
|
|
except Exception as e:
|
|
|
|
error_message = f"Failed to get volume size for remote {rbd_name}: {e}"
|
|
|
|
fail(celery, error_message)
|
|
|
|
return False
|
|
|
|
|
|
|
|
if local_volume_size != remote_volume_size:
|
|
|
|
response = session.put(
|
|
|
|
f"{destination_api_uri}/storage/ceph/volume/{pool}/{volume}",
|
|
|
|
params={"new_size": local_volume_size, "force": True},
|
|
|
|
)
|
|
|
|
if response.status_code != 200:
|
|
|
|
fail(
|
|
|
|
celery,
|
|
|
|
"Failed to resize remote volume to match local volume",
|
|
|
|
)
|
|
|
|
return False
|
|
|
|
|
|
|
|
# Send the volume to the remote
|
|
|
|
cluster = rados.Rados(conffile="/etc/ceph/ceph.conf")
|
|
|
|
cluster.connect()
|
|
|
|
ioctx = cluster.open_ioctx(pool)
|
|
|
|
image = RBDImage(ioctx, name=volume, snapshot=snapshot_name, read_only=True)
|
|
|
|
size = image.size()
|
|
|
|
chunk_size_mb = 1024
|
|
|
|
|
|
|
|
if incremental_parent is not None:
|
|
|
|
# Diff between incremental_parent and snapshot
|
|
|
|
celery_message = (
|
|
|
|
f"Sending diff of {rbd_name}@{incremental_parent} → {snapshot_name}"
|
|
|
|
)
|
|
|
|
else:
|
|
|
|
# Full image transfer
|
|
|
|
celery_message = f"Sending full image of {rbd_name}@{snapshot_name}"
|
|
|
|
|
|
|
|
current_stage += 1
|
|
|
|
update(
|
|
|
|
celery,
|
|
|
|
celery_message,
|
|
|
|
current=current_stage,
|
|
|
|
total=total_stages,
|
|
|
|
)
|
|
|
|
|
|
|
|
if incremental_parent is not None:
|
|
|
|
# Createa single session to reuse connections
|
|
|
|
send_params = {
|
|
|
|
"pool": pool,
|
|
|
|
"volume": volume,
|
|
|
|
"snapshot": snapshot_name,
|
|
|
|
"source_snapshot": incremental_parent,
|
|
|
|
}
|
|
|
|
|
|
|
|
session.params.update(send_params)
|
|
|
|
|
|
|
|
# Send 32 objects (128MB) at once
|
|
|
|
send_max_objects = 32
|
|
|
|
batch_size_mb = 4 * send_max_objects
|
|
|
|
batch_size = batch_size_mb * 1024 * 1024
|
|
|
|
|
|
|
|
total_chunks = 0
|
|
|
|
|
|
|
|
def diff_cb_count(offset, length, exists):
|
|
|
|
nonlocal total_chunks
|
|
|
|
if exists:
|
|
|
|
total_chunks += 1
|
|
|
|
|
|
|
|
current_chunk = 0
|
|
|
|
buffer = list()
|
|
|
|
buffer_size = 0
|
|
|
|
last_chunk_time = time.time()
|
|
|
|
|
|
|
|
def send_batch_multipart(buffer):
|
|
|
|
nonlocal last_chunk_time
|
|
|
|
files = {}
|
|
|
|
for i in range(len(buffer)):
|
|
|
|
files[f"object_{i}"] = (
|
|
|
|
f"object_{i}",
|
|
|
|
buffer[i],
|
|
|
|
"application/octet-stream",
|
|
|
|
)
|
2024-10-11 10:14:38 -04:00
|
|
|
|
|
|
|
response = session.put(
|
|
|
|
f"{destination_api_uri}/vm/{vm_name}/snapshot/receive/block",
|
|
|
|
files=files,
|
|
|
|
stream=True,
|
|
|
|
)
|
|
|
|
if response.status_code != 200:
|
Implement friendlier VM mirror commands
Adds two helper commands which automate sending and promoting VM
snapshots as "vm mirror" commands.
"vm mirror create" replicates the functionality of "snapshot create" and
"snapshot send", performing both in one single task using an
autogenerated dated snapshot name for automatic cross-cluster
replication.
"vm mirror promote" replicates the functionality of "vm shutdown",
"snapshot create", "snapshot send", "vm start" (remote), and,
optionally, "vm remove", performing in one single task an entire
cross-cluster VM move with or without retaining the copy on the local
cluster (if retained, the local copy becomes a snapshot mirror of the
remote, flipping their statuses).
2024-10-08 22:53:12 -04:00
|
|
|
fail(
|
|
|
|
celery,
|
2024-10-11 10:14:38 -04:00
|
|
|
f"Failed to send diff batch: {response.json()['message']}",
|
Implement friendlier VM mirror commands
Adds two helper commands which automate sending and promoting VM
snapshots as "vm mirror" commands.
"vm mirror create" replicates the functionality of "snapshot create" and
"snapshot send", performing both in one single task using an
autogenerated dated snapshot name for automatic cross-cluster
replication.
"vm mirror promote" replicates the functionality of "vm shutdown",
"snapshot create", "snapshot send", "vm start" (remote), and,
optionally, "vm remove", performing in one single task an entire
cross-cluster VM move with or without retaining the copy on the local
cluster (if retained, the local copy becomes a snapshot mirror of the
remote, flipping their statuses).
2024-10-08 22:53:12 -04:00
|
|
|
)
|
|
|
|
return False
|
|
|
|
|
|
|
|
current_chunk_time = time.time()
|
|
|
|
chunk_time = current_chunk_time - last_chunk_time
|
|
|
|
last_chunk_time = current_chunk_time
|
|
|
|
chunk_speed = round(batch_size_mb / chunk_time, 1)
|
|
|
|
update(
|
|
|
|
celery,
|
|
|
|
celery_message + f" ({chunk_speed} MB/s)",
|
|
|
|
current=current_stage,
|
|
|
|
total=total_stages,
|
|
|
|
)
|
|
|
|
|
|
|
|
def add_block_to_multipart(buffer, offset, length, data):
|
|
|
|
part_data = (
|
|
|
|
offset.to_bytes(8, "big") + length.to_bytes(8, "big") + data
|
|
|
|
) # Add header and data
|
|
|
|
buffer.append(part_data)
|
|
|
|
|
|
|
|
def diff_cb_send(offset, length, exists):
|
|
|
|
nonlocal current_chunk, buffer, buffer_size
|
|
|
|
if exists:
|
|
|
|
# Read the data for the current block
|
|
|
|
data = image.read(offset, length)
|
|
|
|
# Add the block to the multipart buffer
|
|
|
|
add_block_to_multipart(buffer, offset, length, data)
|
|
|
|
current_chunk += 1
|
|
|
|
buffer_size += len(data)
|
|
|
|
if buffer_size >= batch_size:
|
|
|
|
send_batch_multipart(buffer)
|
|
|
|
buffer.clear() # Clear the buffer after sending
|
|
|
|
buffer_size = 0 # Reset buffer size
|
|
|
|
|
|
|
|
try:
|
|
|
|
image.set_snap(snapshot_name)
|
|
|
|
image.diff_iterate(
|
|
|
|
0, size, incremental_parent, diff_cb_count, whole_object=True
|
|
|
|
)
|
|
|
|
block_total_mb += total_chunks * 4
|
|
|
|
image.diff_iterate(
|
|
|
|
0, size, incremental_parent, diff_cb_send, whole_object=True
|
|
|
|
)
|
|
|
|
|
|
|
|
if buffer:
|
|
|
|
send_batch_multipart(buffer)
|
|
|
|
buffer.clear() # Clear the buffer after sending
|
|
|
|
buffer_size = 0 # Reset buffer size
|
|
|
|
except Exception:
|
|
|
|
fail(
|
|
|
|
celery,
|
2024-10-09 01:00:51 -04:00
|
|
|
f"Failed to promote mirror: {response.json()['message']}",
|
Implement friendlier VM mirror commands
Adds two helper commands which automate sending and promoting VM
snapshots as "vm mirror" commands.
"vm mirror create" replicates the functionality of "snapshot create" and
"snapshot send", performing both in one single task using an
autogenerated dated snapshot name for automatic cross-cluster
replication.
"vm mirror promote" replicates the functionality of "vm shutdown",
"snapshot create", "snapshot send", "vm start" (remote), and,
optionally, "vm remove", performing in one single task an entire
cross-cluster VM move with or without retaining the copy on the local
cluster (if retained, the local copy becomes a snapshot mirror of the
remote, flipping their statuses).
2024-10-08 22:53:12 -04:00
|
|
|
)
|
|
|
|
return False
|
|
|
|
finally:
|
|
|
|
image.close()
|
|
|
|
ioctx.close()
|
|
|
|
cluster.shutdown()
|
|
|
|
else:
|
|
|
|
|
|
|
|
def full_chunker():
|
|
|
|
nonlocal block_total_mb
|
|
|
|
chunk_size = 1024 * 1024 * chunk_size_mb
|
|
|
|
current_chunk = 0
|
|
|
|
last_chunk_time = time.time()
|
|
|
|
while current_chunk < size:
|
|
|
|
chunk = image.read(current_chunk, chunk_size)
|
|
|
|
yield chunk
|
|
|
|
current_chunk += chunk_size
|
|
|
|
block_total_mb += len(chunk) / 1024 / 1024
|
|
|
|
current_chunk_time = time.time()
|
|
|
|
chunk_time = current_chunk_time - last_chunk_time
|
|
|
|
last_chunk_time = current_chunk_time
|
|
|
|
chunk_speed = round(chunk_size_mb / chunk_time, 1)
|
|
|
|
update(
|
|
|
|
celery,
|
|
|
|
celery_message + f" ({chunk_speed} MB/s)",
|
|
|
|
current=current_stage,
|
|
|
|
total=total_stages,
|
|
|
|
)
|
|
|
|
|
|
|
|
send_params = {
|
|
|
|
"pool": pool,
|
|
|
|
"volume": volume,
|
|
|
|
"snapshot": snapshot_name,
|
|
|
|
"size": size,
|
|
|
|
"source_snapshot": incremental_parent,
|
|
|
|
}
|
|
|
|
|
|
|
|
try:
|
|
|
|
response = session.post(
|
|
|
|
f"{destination_api_uri}/vm/{vm_name}/snapshot/receive/block",
|
|
|
|
headers={"Content-Type": "application/octet-stream"},
|
|
|
|
params=send_params,
|
|
|
|
data=full_chunker(),
|
|
|
|
)
|
2024-10-11 10:14:38 -04:00
|
|
|
if response.status_code != 200:
|
|
|
|
fail(
|
|
|
|
celery,
|
|
|
|
f"Failed to promote mirror: {response.json()['message']}",
|
|
|
|
)
|
|
|
|
return False
|
Implement friendlier VM mirror commands
Adds two helper commands which automate sending and promoting VM
snapshots as "vm mirror" commands.
"vm mirror create" replicates the functionality of "snapshot create" and
"snapshot send", performing both in one single task using an
autogenerated dated snapshot name for automatic cross-cluster
replication.
"vm mirror promote" replicates the functionality of "vm shutdown",
"snapshot create", "snapshot send", "vm start" (remote), and,
optionally, "vm remove", performing in one single task an entire
cross-cluster VM move with or without retaining the copy on the local
cluster (if retained, the local copy becomes a snapshot mirror of the
remote, flipping their statuses).
2024-10-08 22:53:12 -04:00
|
|
|
finally:
|
|
|
|
image.close()
|
|
|
|
ioctx.close()
|
|
|
|
cluster.shutdown()
|
|
|
|
|
|
|
|
send_params = {
|
|
|
|
"pool": pool,
|
|
|
|
"volume": volume,
|
|
|
|
"snapshot": snapshot_name,
|
|
|
|
}
|
|
|
|
try:
|
|
|
|
response = session.patch(
|
|
|
|
f"{destination_api_uri}/vm/{vm_name}/snapshot/receive/block",
|
|
|
|
params=send_params,
|
|
|
|
)
|
2024-10-11 10:14:38 -04:00
|
|
|
if response.status_code != 200:
|
|
|
|
fail(
|
|
|
|
celery,
|
|
|
|
f"Failed to promote mirror: {response.json()['message']}",
|
|
|
|
)
|
|
|
|
return False
|
Implement friendlier VM mirror commands
Adds two helper commands which automate sending and promoting VM
snapshots as "vm mirror" commands.
"vm mirror create" replicates the functionality of "snapshot create" and
"snapshot send", performing both in one single task using an
autogenerated dated snapshot name for automatic cross-cluster
replication.
"vm mirror promote" replicates the functionality of "vm shutdown",
"snapshot create", "snapshot send", "vm start" (remote), and,
optionally, "vm remove", performing in one single task an entire
cross-cluster VM move with or without retaining the copy on the local
cluster (if retained, the local copy becomes a snapshot mirror of the
remote, flipping their statuses).
2024-10-08 22:53:12 -04:00
|
|
|
finally:
|
|
|
|
image.close()
|
|
|
|
ioctx.close()
|
|
|
|
cluster.shutdown()
|
|
|
|
|
|
|
|
block_t_end = time.time()
|
|
|
|
block_mbps = round(block_total_mb / (block_t_end - block_t_start), 1)
|
|
|
|
|
|
|
|
#
|
|
|
|
# 4. Start VM on remote
|
|
|
|
#
|
|
|
|
|
2024-10-10 01:18:54 -04:00
|
|
|
if previous_vm_state not in ["start", "stop", "disable"]:
|
|
|
|
# Start up the VM if it was somehow in any other state
|
|
|
|
previous_vm_state = "start"
|
|
|
|
|
Implement friendlier VM mirror commands
Adds two helper commands which automate sending and promoting VM
snapshots as "vm mirror" commands.
"vm mirror create" replicates the functionality of "snapshot create" and
"snapshot send", performing both in one single task using an
autogenerated dated snapshot name for automatic cross-cluster
replication.
"vm mirror promote" replicates the functionality of "vm shutdown",
"snapshot create", "snapshot send", "vm start" (remote), and,
optionally, "vm remove", performing in one single task an entire
cross-cluster VM move with or without retaining the copy on the local
cluster (if retained, the local copy becomes a snapshot mirror of the
remote, flipping their statuses).
2024-10-08 22:53:12 -04:00
|
|
|
current_stage += 1
|
|
|
|
update(
|
|
|
|
celery,
|
2024-10-10 01:18:54 -04:00
|
|
|
f"Setting state '{previous_vm_state}' for VM '{vm_name}' on remote cluster",
|
Implement friendlier VM mirror commands
Adds two helper commands which automate sending and promoting VM
snapshots as "vm mirror" commands.
"vm mirror create" replicates the functionality of "snapshot create" and
"snapshot send", performing both in one single task using an
autogenerated dated snapshot name for automatic cross-cluster
replication.
"vm mirror promote" replicates the functionality of "vm shutdown",
"snapshot create", "snapshot send", "vm start" (remote), and,
optionally, "vm remove", performing in one single task an entire
cross-cluster VM move with or without retaining the copy on the local
cluster (if retained, the local copy becomes a snapshot mirror of the
remote, flipping their statuses).
2024-10-08 22:53:12 -04:00
|
|
|
current=current_stage,
|
|
|
|
total=total_stages,
|
|
|
|
)
|
|
|
|
|
2024-10-11 10:14:38 -04:00
|
|
|
response = session.post(
|
|
|
|
f"{destination_api_uri}/vm/{vm_name}/state",
|
|
|
|
headers={"Content-Type": "application/octet-stream"},
|
|
|
|
params={"state": previous_vm_state, "wait": True, "force": True},
|
|
|
|
)
|
|
|
|
if response.status_code != 200:
|
Implement friendlier VM mirror commands
Adds two helper commands which automate sending and promoting VM
snapshots as "vm mirror" commands.
"vm mirror create" replicates the functionality of "snapshot create" and
"snapshot send", performing both in one single task using an
autogenerated dated snapshot name for automatic cross-cluster
replication.
"vm mirror promote" replicates the functionality of "vm shutdown",
"snapshot create", "snapshot send", "vm start" (remote), and,
optionally, "vm remove", performing in one single task an entire
cross-cluster VM move with or without retaining the copy on the local
cluster (if retained, the local copy becomes a snapshot mirror of the
remote, flipping their statuses).
2024-10-08 22:53:12 -04:00
|
|
|
fail(
|
|
|
|
celery,
|
2024-10-09 01:00:51 -04:00
|
|
|
f"Failed to promote mirror: {response.json()['message']}",
|
Implement friendlier VM mirror commands
Adds two helper commands which automate sending and promoting VM
snapshots as "vm mirror" commands.
"vm mirror create" replicates the functionality of "snapshot create" and
"snapshot send", performing both in one single task using an
autogenerated dated snapshot name for automatic cross-cluster
replication.
"vm mirror promote" replicates the functionality of "vm shutdown",
"snapshot create", "snapshot send", "vm start" (remote), and,
optionally, "vm remove", performing in one single task an entire
cross-cluster VM move with or without retaining the copy on the local
cluster (if retained, the local copy becomes a snapshot mirror of the
remote, flipping their statuses).
2024-10-08 22:53:12 -04:00
|
|
|
)
|
|
|
|
return False
|
|
|
|
|
2024-10-09 00:33:00 -04:00
|
|
|
#
|
Implement friendlier VM mirror commands
Adds two helper commands which automate sending and promoting VM
snapshots as "vm mirror" commands.
"vm mirror create" replicates the functionality of "snapshot create" and
"snapshot send", performing both in one single task using an
autogenerated dated snapshot name for automatic cross-cluster
replication.
"vm mirror promote" replicates the functionality of "vm shutdown",
"snapshot create", "snapshot send", "vm start" (remote), and,
optionally, "vm remove", performing in one single task an entire
cross-cluster VM move with or without retaining the copy on the local
cluster (if retained, the local copy becomes a snapshot mirror of the
remote, flipping their statuses).
2024-10-08 22:53:12 -04:00
|
|
|
# 5. Set mirror state OR remove VM
|
2024-10-09 00:33:00 -04:00
|
|
|
#
|
|
|
|
|
Implement friendlier VM mirror commands
Adds two helper commands which automate sending and promoting VM
snapshots as "vm mirror" commands.
"vm mirror create" replicates the functionality of "snapshot create" and
"snapshot send", performing both in one single task using an
autogenerated dated snapshot name for automatic cross-cluster
replication.
"vm mirror promote" replicates the functionality of "vm shutdown",
"snapshot create", "snapshot send", "vm start" (remote), and,
optionally, "vm remove", performing in one single task an entire
cross-cluster VM move with or without retaining the copy on the local
cluster (if retained, the local copy becomes a snapshot mirror of the
remote, flipping their statuses).
2024-10-08 22:53:12 -04:00
|
|
|
if remove_on_source:
|
|
|
|
current_stage += 1
|
|
|
|
update(
|
|
|
|
celery,
|
|
|
|
f"Removing VM '{vm_name}' from local cluster",
|
|
|
|
current=current_stage,
|
|
|
|
total=total_stages,
|
|
|
|
)
|
|
|
|
|
|
|
|
retcode, retmsg = remove_vm(zkhandler, domain)
|
|
|
|
else:
|
|
|
|
current_stage += 1
|
|
|
|
update(
|
|
|
|
celery,
|
|
|
|
f"Setting VM '{vm_name}' state to mirror on local cluster",
|
|
|
|
current=current_stage,
|
|
|
|
total=total_stages,
|
|
|
|
)
|
|
|
|
|
|
|
|
change_state(zkhandler, dom_uuid, "mirror")
|
|
|
|
|
|
|
|
current_stage += 1
|
|
|
|
return finish(
|
|
|
|
celery,
|
|
|
|
f"Successfully promoted VM '{domain}' (snapshot '{snapshot_name}') on remote cluster '{destination_api_uri}' (average {block_mbps} MB/s)",
|
|
|
|
current=current_stage,
|
|
|
|
total=total_stages,
|
|
|
|
)
|