forked from avocado-framework/avocado-vt
-
Notifications
You must be signed in to change notification settings - Fork 0
/
guest_agent.py
727 lines (600 loc) · 23.6 KB
/
guest_agent.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
"""
Interfaces to the virt agent.
:copyright: 2008-2012 Red Hat Inc.
"""
import socket
import time
import logging
import random
import base64
try:
import json
except ImportError:
logging.warning("Could not import json module. "
"virt agent functionality disabled.")
from .qemu_monitor import Monitor, MonitorError
from . import error_context
from avocado.utils import process
class VAgentError(MonitorError):
pass
class VAgentConnectError(VAgentError):
pass
class VAgentSocketError(VAgentError):
def __init__(self, msg, e):
VAgentError.__init__(self)
self.msg = msg
self.e = e
def __str__(self):
return "%s (%s)" % (self.msg, self.e)
class VAgentLockError(VAgentError):
pass
class VAgentProtocolError(VAgentError):
pass
class VAgentNotSupportedError(VAgentError):
pass
class VAgentCmdError(VAgentError):
def __init__(self, cmd, args, data):
VAgentError.__init__(self)
self.ecmd = cmd
self.eargs = args
self.edata = data
def __str__(self):
return ("Virt Agent command %r failed (arguments: %r, "
"error message: %r)" % (self.ecmd, self.eargs, self.edata))
class VAgentCmdNotSupportedError(VAgentError):
def __init__(self, cmd):
VAgentError.__init__(self)
self.ecmd = cmd
def __str__(self):
return("The command %s is not supported by the current version qga"
% self.ecmd)
class VAgentSyncError(VAgentError):
def __init__(self, vm_name):
VAgentError.__init__(self)
self.vm_name = vm_name
def __str__(self):
return "Could not sync with guest agent in vm '%s'" % self.vm_name
class VAgentSuspendError(VAgentError):
pass
class VAgentSuspendUnknownModeError(VAgentSuspendError):
def __init__(self, mode):
VAgentSuspendError.__init__(self)
self.mode = mode
def __str__(self):
return "Not supported suspend mode '%s'" % self.mode
class VAgentFreezeStatusError(VAgentError):
def __init__(self, vm_name, status, expected):
VAgentError.__init__(self)
self.vm_name = vm_name
self.status = status
self.expected = expected
def __str__(self):
return ("Unexpected guest FS status '%s' (expected '%s') in vm "
"'%s'" % (self.status, self.expected, self.vm_name))
class QemuAgent(Monitor):
"""
Wraps qemu guest agent commands.
"""
READ_OBJECTS_TIMEOUT = 5
CMD_TIMEOUT = 20
RESPONSE_TIMEOUT = 20
PROMPT_TIMEOUT = 20
SERIAL_TYPE_VIRTIO = "virtio"
SERIAL_TYPE_ISA = "isa"
SUPPORTED_SERIAL_TYPE = [SERIAL_TYPE_VIRTIO, SERIAL_TYPE_ISA]
SHUTDOWN_MODE_POWERDOWN = "powerdown"
SHUTDOWN_MODE_REBOOT = "reboot"
SHUTDOWN_MODE_HALT = "halt"
SUSPEND_MODE_DISK = "disk"
SUSPEND_MODE_RAM = "ram"
SUSPEND_MODE_HYBRID = "hybrid"
FSFREEZE_STATUS_FROZEN = "frozen"
FSFREEZE_STATUS_THAWED = "thawed"
def __init__(self, vm, name, serial_type, serial_filename,
get_supported_cmds=False, suppress_exceptions=False):
"""
Connect to the guest agent socket, Also make sure the json
module is available.
:param vm: The VM object who has this GuestAgent.
:param name: Guest agent identifier.
:param serial_type: Specific which serial type (firtio or isa) guest
agent will use.
:param serial_filename: Guest agent socket filename.
:param get_supported_cmds: Try to get supported cmd list when initiation.
:param suppress_exceptions: If True, ignore VAgentError exception.
:raise VAgentConnectError: Raised if the connection fails and
suppress_exceptions is False
:raise VAgentNotSupportedError: Raised if the serial type is
neither 'virtio' nor 'isa' and suppress_exceptions is False
:raise VAgentNotSupportedError: Raised if json isn't available and
suppress_exceptions is False
"""
try:
if serial_type not in self.SUPPORTED_SERIAL_TYPE:
raise VAgentNotSupportedError("Not supported serial type: "
"'%s'" % serial_type)
Monitor.__init__(self, vm, name, serial_filename)
# Make sure json is available
try:
json
except NameError:
raise VAgentNotSupportedError("guest agent requires the json"
" module (Python 2.6 and up)")
# Set a reference to the VM object that has this GuestAgent.
self.vm = vm
if get_supported_cmds:
self._get_supported_cmds()
# pylint: disable=E0712
except VAgentError as e:
self._close_sock()
if suppress_exceptions:
logging.warn(e)
else:
raise
# Methods only used inside this class
def _build_cmd(self, cmd, args=None):
obj = {"execute": cmd}
if args is not None:
obj["arguments"] = args
return obj
def _read_objects(self, timeout=READ_OBJECTS_TIMEOUT):
"""
Read lines from the guest agent socket and try to decode them.
Stop when all available lines have been successfully decoded, or when
timeout expires. Return all decoded objects.
:param timeout: Time to wait for all lines to decode successfully
:return: A list of objects
"""
if not self._data_available():
return []
s = ""
end_time = time.time() + timeout
while self._data_available(end_time - time.time()):
s += self._recvall()
# Make sure all lines are decodable
for line in s.splitlines():
if line:
try:
json.loads(line)
except Exception:
# Found an incomplete or broken line -- keep reading
break
else:
# All lines are OK -- stop reading
break
# Decode all decodable lines
objs = []
for line in s.splitlines():
try:
if line[0] == '\xff':
line = line[1:]
objs += [json.loads(line)]
self._log_lines(line)
except Exception:
pass
return objs
def _send(self, data):
"""
Send raw data without waiting for response.
:param data: Data to send
:raise VAgentSocketError: Raised if a socket error occurs
"""
try:
self._socket.sendall(data)
self._log_lines(str(data))
except socket.error as e:
raise VAgentSocketError("Could not send data: %r" % data, e)
def _get_response(self, timeout=RESPONSE_TIMEOUT):
"""
Read a response from the guest agent socket.
:param id: If not None, look for a response with this id
:param timeout: Time duration to wait for response
:return: The response dict
"""
end_time = time.time() + timeout
while self._data_available(end_time - time.time()):
for obj in self._read_objects():
if isinstance(obj, dict):
if "return" in obj or "error" in obj:
return obj
# Return empty dict when timeout.
return {}
def _sync(self, sync_mode="guest-sync", timeout=RESPONSE_TIMEOUT * 3):
"""
Helper for guest agent socket sync.
The guest agent doesn't provide a command id in its response,
so we have to send 'guest-sync' cmd by ourselves to keep the
socket synced.
:param timeout: Time duration to wait for response
:param sync_mode: sync or sync-delimited
:return: True if socket is synced.
"""
def check_result(response):
if response:
self._log_response(cmd, r)
if "return" in response:
return response["return"]
if "error" in response:
raise VAgentError("Get an error message when waiting for sync"
" with qemu guest agent, check the debug log"
" for the future message,"
" detail: '%s'" % r["error"])
cmd = sync_mode
rnd_num = random.randint(1000, 9999)
args = {"id": rnd_num}
self._log_command(cmd)
cmdobj = self._build_cmd(cmd, args)
data = json.dumps(cmdobj) + "\n"
# Send command
r = self.cmd_raw(data)
if check_result(r) == rnd_num:
return True
# We don't get the correct response of 'guest-sync' cmd,
# thus wait for the response until timeout.
start_time = time.time()
while (time.time() - start_time) < timeout:
r = self._get_response()
if check_result(r) == rnd_num:
return True
return False
def _get_supported_cmds(self):
"""
Get supported qmp cmds list.
"""
synced = self._sync()
if not synced:
raise VAgentSyncError(self.vm.name)
cmds = self.guest_info()
if cmds and "supported_commands" in cmds:
cmd_list = cmds["supported_commands"]
self._supported_cmds = [n["name"] for n in cmd_list if
isinstance(n, dict) and "name" in n]
if not self._supported_cmds:
# If initiation fails, set supported list to a None-only list.
self._supported_cmds = [None]
logging.warn("Could not get supported guest agent cmds list")
def check_has_command(self, cmd):
"""
Check wheter guest agent support 'cmd'.
:param cmd: command string which will be checked.
:return: True if cmd is supported, False if not supported.
"""
# Initiate supported cmds list if it's empty.
if not self._supported_cmds:
self._get_supported_cmds()
# If the first element in supported cmd list is 'None', it means
# autotest fails to get the cmd list, so bypass cmd checking.
if self._supported_cmds[0] is None:
return True
if cmd and cmd in self._supported_cmds:
return True
raise VAgentCmdNotSupportedError(cmd)
def _log_command(self, cmd, debug=True, extra_str=""):
"""
Print log message beening sent.
:param cmd: Command string.
:param debug: Whether to print the commands.
:param extra_str: Extra string would be printed in log.
"""
if self.debug_log or debug:
logging.debug("(vagent %s) Sending command '%s' %s",
self.name, cmd, extra_str)
def _log_response(self, cmd, resp, debug=True):
"""
Print log message for guest agent cmd's response.
:param cmd: Command string.
:param resp: Response from guest agent command.
:param debug: Whether to print the commands.
"""
def _log_output(o, indent=0):
logging.debug("(vagent %s) %s%s",
self.name, " " * indent, o)
def _dump_list(li, indent=0):
for l in li:
if isinstance(l, dict):
_dump_dict(l, indent + 2)
else:
_log_output(str(l), indent)
def _dump_dict(di, indent=0):
for k, v in di.iteritems():
o = "%s%s: " % (" " * indent, k)
if isinstance(v, dict):
_log_output(o, indent)
_dump_dict(v, indent + 2)
elif isinstance(v, list):
_log_output(o, indent)
_dump_list(v, indent + 2)
else:
o += str(v)
_log_output(o, indent)
if self.debug_log or debug:
logging.debug("(vagent %s) Response to '%s' "
"(re-formated)", self.name, cmd)
if isinstance(resp, dict):
_dump_dict(resp)
elif isinstance(resp, list):
_dump_list(resp)
else:
for l in str(resp).splitlines():
_log_output(l)
# Public methods
def cmd(self, cmd, args=None, timeout=CMD_TIMEOUT, debug=True,
success_resp=True):
"""
Send a guest agent command and return the response if success_resp.
:param cmd: Command to send
:param args: A dict containing command arguments, or None
:param timeout: Time duration to wait for response
:param debug: Whether to print the commands being sent and responses
:param fd: file object or file descriptor to pass
:return: The response received
:raise VAgentLockError: Raised if the lock cannot be acquired
:raise VAgentSocketError: Raised if a socket error occurs
:raise VAgentProtocolError: Raised if no response is received
:raise VAgentCmdError: Raised if the response is an error message
"""
self._log_command(cmd, debug)
# Send command
cmdobj = self._build_cmd(cmd, args)
data = json.dumps(cmdobj) + "\n"
r = self.cmd_raw(data, timeout, success_resp)
if not success_resp:
return ""
if "return" in r:
ret = r["return"]
if ret:
self._log_response(cmd, ret, debug)
return ret
if "error" in r:
raise VAgentCmdError(cmd, args, r["error"])
def cmd_raw(self, data, timeout=CMD_TIMEOUT, success_resp=True):
"""
Send a raw string to the guest agent and return the response.
Unlike cmd(), return the raw response dict without performing
any checks on it.
:param data: The data to send
:param timeout: Time duration to wait for response
:return: The response received
:raise VAgentLockError: Raised if the lock cannot be acquired
:raise VAgentSocketError: Raised if a socket error occurs
:raise VAgentProtocolError: Raised if no response is received
"""
if not self._acquire_lock():
raise VAgentLockError("Could not acquire exclusive lock to send "
"data: %r" % data)
try:
self._read_objects()
self._send(data)
# Return directly for some cmd without any response.
if not success_resp:
return {}
# Read response
r = self._get_response(timeout)
finally:
self._lock.release()
if r is None:
raise VAgentProtocolError(
"Received no response to data: %r" % data)
return r
def cmd_obj(self, obj, timeout=CMD_TIMEOUT):
"""
Transform a Python object to JSON, send the resulting string to
the guest agent, and return the response.
Unlike cmd(), return the raw response dict without performing any
checks on it.
:param obj: The object to send
:param timeout: Time duration to wait for response
:return: The response received
:raise VAgentLockError: Raised if the lock cannot be acquired
:raise VAgentSocketError: Raised if a socket error occurs
:raise VAgentProtocolError: Raised if no response is received
"""
return self.cmd_raw(json.dumps(obj) + "\n", timeout)
def verify_responsive(self):
"""
Make sure the guest agent is responsive by sending a command.
"""
cmd = "guest-ping"
if self.check_has_command(cmd):
self.cmd(cmd=cmd, debug=False)
@error_context.context_aware
def shutdown(self, mode=SHUTDOWN_MODE_POWERDOWN):
"""
Send "guest-shutdown", this cmd would not return any response.
:param mode: Speicfy shutdown mode, now qemu guest agent supports
'powerdown', 'reboot', 'halt' 3 modes.
:return: True if shutdown cmd is sent successfully, False if
'shutdown' is unsupported.
"""
cmd = "guest-shutdown"
self.check_has_command(cmd)
args = None
if mode in [self.SHUTDOWN_MODE_POWERDOWN, self.SHUTDOWN_MODE_REBOOT,
self.SHUTDOWN_MODE_HALT]:
args = {"mode": mode}
self.cmd(cmd=cmd, args=args, success_resp=False)
return True
@error_context.context_aware
def sync(self, sync_mode="guest-sync"):
"""
Sync guest agent with cmd 'guest-sync' or 'guest-sync-delimited'.
"""
cmd = sync_mode
self.check_has_command(cmd)
synced = self._sync(sync_mode)
if not synced:
raise VAgentSyncError(self.vm.name)
@error_context.context_aware
def set_user_password(self, password, crypted=False, username="root"):
"""
Set the new password for the user
"""
cmd = "guest-set-user-password"
self.check_has_command(cmd)
if crypted:
openssl_cmd = "openssl passwd -crypt %s" % password
password = process.system_output(openssl_cmd).strip('\n')
args = {"crypted": crypted, "username": username,
"password": base64.b64encode(password)}
return self.cmd(cmd=cmd, args=args)
@error_context.context_aware
def get_vcpus(self):
"""
Get the vcpus infomation
"""
cmd = "guest-get-vcpus"
self.check_has_command(cmd)
return self.cmd(cmd=cmd)
@error_context.context_aware
def set_vcpus(self, action):
"""
Set the status of vcpus, bring up/down the vcpus following action
"""
cmd = "guest-set-vcpus"
self.check_has_command(cmd)
return self.cmd(cmd=cmd, args=action)
@error_context.context_aware
def get_time(self):
"""
Get the time of guest, return the time from Epoch of 1970-01-01 in UTC
in nanoseconds
"""
cmd = "guest-get-time"
self.check_has_command(cmd)
return self.cmd(cmd=cmd)
@error_context.context_aware
def set_time(self, nanoseconds=None):
"""
set the time of guest, the params passed in is in nanoseconds
"""
cmd = "guest-set-time"
args = None
self.check_has_command(cmd)
if nanoseconds:
args = {"time": nanoseconds}
return self.cmd(cmd=cmd, args=args)
@error_context.context_aware
def guest_info(self):
"""
Send "guest-info", return all supported cmds.
"""
cmd = "guest-info"
return self.cmd(cmd=cmd, debug=False)
@error_context.context_aware
def fstrim(self):
"""
Discard unused blocks on a mounted filesystem by guest agent operation
"""
cmd = "guest-fstrim"
self.check_has_command(cmd)
return self.cmd(cmd)
@error_context.context_aware
def get_network_interface(self):
"""
Get the network interfaces of the guest by guest agent operation
"""
cmd = "guest-network-get-interfaces"
self.check_has_command(cmd)
return self.cmd(cmd)
@error_context.context_aware
def suspend(self, mode=SUSPEND_MODE_RAM):
"""
This function tries to execute the scripts provided by the pm-utils
package via guest agent interface. If it's not available, the suspend
operation will be performed by manually writing to a sysfs file.
Notes:
#. For the best results it's strongly recommended to have the
``pm-utils`` package installed in the guest.
#. The ``ram`` and 'hybrid' mode require QEMU to support the
``system_wakeup`` command. Thus, it's *required* to query QEMU
for the presence of the ``system_wakeup`` command before issuing
guest agent command.
:param mode: Specify suspend mode, could be one of ``disk``, ``ram``,
``hybrid``.
:return: True if shutdown cmd is sent successfully, False if
``suspend`` is unsupported.
:raise VAgentSuspendUnknownModeError: Raise if mode is not supported.
"""
error_context.context(
"Suspend guest '%s' to '%s'" % (self.vm.name, mode))
if mode not in [self.SUSPEND_MODE_DISK, self.SUSPEND_MODE_RAM,
self.SUSPEND_MODE_HYBRID]:
raise VAgentSuspendUnknownModeError("Not supported suspend"
" mode '%s'" % mode)
cmd = "guest-suspend-%s" % mode
self.check_has_command(cmd)
# First, sync with guest.
self.sync()
# Then send suspend cmd.
self.cmd(cmd=cmd, success_resp=False)
return True
def get_fsfreeze_status(self):
"""
Get guest 'fsfreeze' status. The status could be 'frozen' or 'thawed'.
"""
cmd = "guest-fsfreeze-status"
if self.check_has_command(cmd):
return self.cmd(cmd=cmd)
def verify_fsfreeze_status(self, expected):
"""
Verify the guest agent fsfreeze status is same as expected, if not,
raise a VAgentFreezeStatusError.
:param expected: The expected status.
:raise VAgentFreezeStatusError: Raise if the guest fsfreeze status is
unexpected.
"""
status = self.get_fsfreeze_status()
if status != expected:
raise VAgentFreezeStatusError(self.vm.name, status, expected)
@error_context.context_aware
def fsfreeze(self, check_status=True):
"""
Freeze File system on guest.
:param check_status: Force this function to check the fsreeze status
before/after sending cmd.
:return: Frozen FS number if cmd succeed, -1 if guest agent doesn't
support fsfreeze cmd.
"""
error_context.context("Freeze all FS in guest '%s'" % self.vm.name)
if check_status:
self.verify_fsfreeze_status(self.FSFREEZE_STATUS_THAWED)
cmd = "guest-fsfreeze-freeze"
if self.check_has_command(cmd):
ret = self.cmd(cmd=cmd)
if check_status:
try:
self.verify_fsfreeze_status(self.FSFREEZE_STATUS_FROZEN)
# pylint: disable=E0712
except VAgentFreezeStatusError:
# When the status is incorrect, reset fsfreeze status to
# 'thawed'.
self.cmd(cmd="guest-fsreeze-thaw")
raise
return ret
return -1
@error_context.context_aware
def fsthaw(self, check_status=True):
"""
Thaw File system on guest.
:param check_status: Force this function to check the fsreeze status
before/after sending cmd.
:return: Thaw FS number if cmd succeed, -1 if guest agent doesn't
support fsfreeze cmd.
"""
error_context.context("thaw all FS in guest '%s'" % self.vm.name)
if check_status:
self.verify_fsfreeze_status(self.FSFREEZE_STATUS_FROZEN)
cmd = "guest-fsfreeze-thaw"
if self.check_has_command(cmd):
ret = self.cmd(cmd=cmd)
if check_status:
try:
self.verify_fsfreeze_status(self.FSFREEZE_STATUS_THAWED)
# pylint: disable=E0712
except VAgentFreezeStatusError:
# When the status is incorrect, reset fsfreeze status to
# 'thawed'.
self.cmd(cmd=cmd)
raise
return ret
return -1