2023-07-22 23:59:49 +03:00
|
|
|
import json
|
|
|
|
import logging
|
2023-08-24 22:36:12 +03:00
|
|
|
from base64 import b64decode, standard_b64encode
|
|
|
|
from time import sleep, time
|
2023-07-22 23:59:49 +03:00
|
|
|
|
|
|
|
import libvirt
|
|
|
|
import libvirt_qemu
|
|
|
|
|
2023-09-02 00:52:28 +03:00
|
|
|
from ..exceptions import GuestAgentError
|
2023-07-29 14:29:37 +03:00
|
|
|
from .base import VirtualMachineBase
|
2023-07-22 23:59:49 +03:00
|
|
|
|
|
|
|
|
|
|
|
logger = logging.getLogger(__name__)
|
|
|
|
|
2023-08-27 23:42:56 +03:00
|
|
|
QEMU_TIMEOUT = 60 # in seconds
|
|
|
|
POLL_INTERVAL = 0.3 # also in seconds
|
2023-07-22 23:59:49 +03:00
|
|
|
|
|
|
|
|
2023-08-31 20:37:41 +03:00
|
|
|
class GuestAgent(VirtualMachineBase):
|
2023-07-22 23:59:49 +03:00
|
|
|
"""
|
|
|
|
Interacting with QEMU guest agent. Methods:
|
|
|
|
|
|
|
|
execute()
|
|
|
|
Low-level method for executing QEMU command as dict. Command dict
|
|
|
|
internally converts to JSON. See method docstring for more info.
|
|
|
|
shellexec()
|
|
|
|
High-level method for executing shell commands on guest. Command
|
|
|
|
must be passed as string. Wraps execute() method.
|
2023-09-23 21:24:56 +03:00
|
|
|
|
|
|
|
TODO:
|
|
|
|
check() method. Ping guest agent and check supported commands.
|
2023-07-22 23:59:49 +03:00
|
|
|
"""
|
|
|
|
|
2023-08-27 23:42:56 +03:00
|
|
|
def __init__(self, domain: libvirt.virDomain, timeout: int | None = None,
|
2023-08-24 22:36:12 +03:00
|
|
|
flags: int | None = None):
|
2023-08-27 23:42:56 +03:00
|
|
|
super().__init__(domain)
|
2023-07-28 01:01:32 +03:00
|
|
|
self.timeout = timeout or QEMU_TIMEOUT # timeout for guest agent
|
2023-07-22 23:59:49 +03:00
|
|
|
self.flags = flags or libvirt_qemu.VIR_DOMAIN_QEMU_MONITOR_COMMAND_DEFAULT
|
2023-09-02 00:52:28 +03:00
|
|
|
self.last_pid = None
|
2023-07-22 23:59:49 +03:00
|
|
|
|
2023-08-24 22:36:12 +03:00
|
|
|
def execute(self,
|
|
|
|
command: dict,
|
|
|
|
stdin: str | None = None,
|
|
|
|
capture_output: bool = False,
|
|
|
|
decode_output: bool = False,
|
|
|
|
wait: bool = True,
|
|
|
|
timeout: int = QEMU_TIMEOUT
|
|
|
|
) -> tuple[bool | None, int | None, str | None, str | None]:
|
2023-07-22 23:59:49 +03:00
|
|
|
"""
|
2023-08-24 22:36:12 +03:00
|
|
|
Execute command on guest and return output if `capture_output` is True.
|
2023-07-22 23:59:49 +03:00
|
|
|
See https://wiki.qemu.org/Documentation/QMP for QEMU commands reference.
|
2023-08-24 22:36:12 +03:00
|
|
|
If `wait` is True poll guest command output with POLL_INTERVAL. Raise
|
2023-08-31 20:37:41 +03:00
|
|
|
GuestAgentError on `timeout` reached (in seconds).
|
2023-07-22 23:59:49 +03:00
|
|
|
Return values:
|
|
|
|
tuple(
|
|
|
|
exited: bool | None,
|
|
|
|
exitcode: int | None,
|
|
|
|
stdout: str | None,
|
|
|
|
stderr: str | None
|
|
|
|
)
|
2023-08-24 22:36:12 +03:00
|
|
|
stdout and stderr are base64 encoded strings or None. stderr and stdout
|
|
|
|
will be decoded if `decode_output` is True.
|
2023-07-22 23:59:49 +03:00
|
|
|
"""
|
|
|
|
# todo command dict schema validation
|
|
|
|
if capture_output:
|
|
|
|
command['arguments']['capture-output'] = True
|
|
|
|
if isinstance(stdin, str):
|
|
|
|
command['arguments']['input-data'] = standard_b64encode(
|
2023-08-24 22:36:12 +03:00
|
|
|
stdin.encode('utf-8')).decode('utf-8')
|
2023-07-22 23:59:49 +03:00
|
|
|
|
|
|
|
# Execute command on guest
|
|
|
|
cmd_out = self._execute(command)
|
|
|
|
|
|
|
|
if capture_output:
|
2023-09-02 00:52:28 +03:00
|
|
|
self.last_pid = json.loads(cmd_out)['return']['pid']
|
2023-07-22 23:59:49 +03:00
|
|
|
return self._get_cmd_result(
|
2023-09-02 00:52:28 +03:00
|
|
|
self.last_pid,
|
2023-07-22 23:59:49 +03:00
|
|
|
decode_output=decode_output,
|
|
|
|
wait=wait,
|
|
|
|
timeout=timeout,
|
|
|
|
)
|
|
|
|
return None, None, None, None
|
|
|
|
|
2023-08-24 22:36:12 +03:00
|
|
|
def shellexec(self,
|
|
|
|
command: str,
|
|
|
|
stdin: str | None = None,
|
|
|
|
executable: str = '/bin/sh',
|
|
|
|
capture_output: bool = False,
|
|
|
|
decode_output: bool = False,
|
|
|
|
wait: bool = True,
|
|
|
|
timeout: int = QEMU_TIMEOUT
|
|
|
|
) -> tuple[bool | None, int | None, str | None, str | None]:
|
2023-07-22 23:59:49 +03:00
|
|
|
"""
|
|
|
|
Execute command on guest with selected shell. /bin/sh by default.
|
2023-08-24 22:36:12 +03:00
|
|
|
Otherwise of execute() this function brings shell command as string.
|
2023-07-22 23:59:49 +03:00
|
|
|
"""
|
|
|
|
cmd = {
|
|
|
|
'execute': 'guest-exec',
|
|
|
|
'arguments': {
|
|
|
|
'path': executable,
|
|
|
|
'arg': ['-c', command],
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return self.execute(
|
|
|
|
cmd,
|
|
|
|
stdin=stdin,
|
|
|
|
capture_output=capture_output,
|
|
|
|
decode_output=decode_output,
|
|
|
|
wait=wait,
|
|
|
|
timeout=timeout,
|
|
|
|
)
|
|
|
|
|
2023-09-02 00:52:28 +03:00
|
|
|
def poll_pid(self, pid: int):
|
|
|
|
# Нужно цепляться к PID и вывести результат
|
|
|
|
pass
|
|
|
|
|
2023-07-22 23:59:49 +03:00
|
|
|
def _execute(self, command: dict):
|
2023-08-27 23:42:56 +03:00
|
|
|
logging.debug('Execute command: vm=%s cmd=%s', self.domain_name,
|
|
|
|
command)
|
|
|
|
if self.domain_info['state'] != libvirt.VIR_DOMAIN_RUNNING:
|
|
|
|
raise GuestAgentError(
|
|
|
|
f'Cannot execute command: vm={self.domain_name} is not running')
|
2023-07-22 23:59:49 +03:00
|
|
|
try:
|
|
|
|
return libvirt_qemu.qemuAgentCommand(
|
|
|
|
self.domain, # virDomain object
|
|
|
|
json.dumps(command),
|
|
|
|
self.timeout,
|
|
|
|
self.flags,
|
|
|
|
)
|
|
|
|
except libvirt.libvirtError as err:
|
2023-08-31 20:37:41 +03:00
|
|
|
raise GuestAgentError(
|
|
|
|
f'Cannot execute command on vm={self.domain_name}: {err}'
|
|
|
|
) from err
|
2023-07-22 23:59:49 +03:00
|
|
|
|
|
|
|
def _get_cmd_result(
|
2023-08-24 22:36:12 +03:00
|
|
|
self, pid: int, decode_output: bool = False, wait: bool = True,
|
|
|
|
timeout: int = QEMU_TIMEOUT):
|
2023-07-22 23:59:49 +03:00
|
|
|
"""Get executed command result. See GuestAgent.execute() for info."""
|
2023-08-24 22:36:12 +03:00
|
|
|
cmd = {'execute': 'guest-exec-status', 'arguments': {'pid': pid}}
|
2023-07-22 23:59:49 +03:00
|
|
|
|
|
|
|
if not wait:
|
|
|
|
output = json.loads(self._execute(cmd))
|
|
|
|
return self._return_tuple(output, decode=decode_output)
|
|
|
|
|
2023-08-27 23:42:56 +03:00
|
|
|
logger.debug('Start polling command pid=%s on vm=%s', pid,
|
|
|
|
self.domain_name)
|
2023-07-22 23:59:49 +03:00
|
|
|
start_time = time()
|
|
|
|
while True:
|
|
|
|
output = json.loads(self._execute(cmd))
|
|
|
|
if output['return']['exited']:
|
|
|
|
break
|
|
|
|
sleep(POLL_INTERVAL)
|
|
|
|
now = time()
|
|
|
|
if now - start_time > timeout:
|
2023-08-31 20:37:41 +03:00
|
|
|
raise GuestAgentError(
|
2023-08-27 23:42:56 +03:00
|
|
|
f'Polling command pid={pid} on vm={self.domain_name} '
|
|
|
|
f'took longer than {timeout} seconds.'
|
2023-07-22 23:59:49 +03:00
|
|
|
)
|
2023-08-27 23:42:56 +03:00
|
|
|
logger.debug('Polling command pid=%s on vm=%s finished, '
|
|
|
|
'time taken: %s seconds',
|
|
|
|
pid, self.domain_name, int(time() - start_time))
|
2023-07-22 23:59:49 +03:00
|
|
|
return self._return_tuple(output, decode=decode_output)
|
|
|
|
|
2023-08-24 22:36:12 +03:00
|
|
|
def _return_tuple(self, output: dict, decode: bool = False):
|
|
|
|
output = output['return']
|
|
|
|
exited = output['exited']
|
|
|
|
exitcode = output['exitcode']
|
|
|
|
stdout = stderr = None
|
2023-07-22 23:59:49 +03:00
|
|
|
|
2023-08-24 22:36:12 +03:00
|
|
|
if 'out-data' in output.keys():
|
|
|
|
stdout = output['out-data']
|
|
|
|
if 'err-data' in output.keys():
|
|
|
|
stderr = output['err-data']
|
2023-07-22 23:59:49 +03:00
|
|
|
|
2023-08-24 22:36:12 +03:00
|
|
|
if decode:
|
|
|
|
stdout = b64decode(stdout).decode('utf-8') if stdout else None
|
|
|
|
stderr = b64decode(stderr).decode('utf-8') if stderr else None
|
2023-07-22 23:59:49 +03:00
|
|
|
|
|
|
|
return exited, exitcode, stdout, stderr
|