VirtualBox

source: vbox/trunk/src/VBox/ValidationKit/testdriver/vbox.py

Last change on this file was 107205, checked in by vboxsync, 7 weeks ago

testdriver/vbox.py: Added getGuestAdditionsRevision() [build fix].

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 220.3 KB
Line 
1# -*- coding: utf-8 -*-
2# $Id: vbox.py 107205 2024-12-02 06:38:20Z vboxsync $
3# pylint: disable=too-many-lines
4
5"""
6VirtualBox Specific base testdriver.
7"""
8
9__copyright__ = \
10"""
11Copyright (C) 2010-2024 Oracle and/or its affiliates.
12
13This file is part of VirtualBox base platform packages, as
14available from https://www.virtualbox.org.
15
16This program is free software; you can redistribute it and/or
17modify it under the terms of the GNU General Public License
18as published by the Free Software Foundation, in version 3 of the
19License.
20
21This program is distributed in the hope that it will be useful, but
22WITHOUT ANY WARRANTY; without even the implied warranty of
23MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
24General Public License for more details.
25
26You should have received a copy of the GNU General Public License
27along with this program; if not, see <https://www.gnu.org/licenses>.
28
29The contents of this file may alternatively be used under the terms
30of the Common Development and Distribution License Version 1.0
31(CDDL), a copy of it is provided in the "COPYING.CDDL" file included
32in the VirtualBox distribution, in which case the provisions of the
33CDDL are applicable instead of those of the GPL.
34
35You may elect to license modified versions of this file under the
36terms and conditions of either the GPL or the CDDL or both.
37
38SPDX-License-Identifier: GPL-3.0-only OR CDDL-1.0
39"""
40__version__ = "$Revision: 107205 $"
41
42# pylint: disable=unnecessary-semicolon
43
44# Standard Python imports.
45import datetime
46import os
47import platform
48import re;
49import sys
50import threading
51import time
52import traceback
53
54# Figure out where the validation kit lives and make sure it's in the path.
55try: __file__ # pylint: disable=used-before-assignment
56except: __file__ = sys.argv[0];
57g_ksValidationKitDir = os.path.dirname(os.path.dirname(os.path.abspath(__file__)));
58if g_ksValidationKitDir not in sys.path:
59 sys.path.append(g_ksValidationKitDir);
60
61# Validation Kit imports.
62from common import utils;
63from testdriver import base;
64from testdriver import btresolver;
65from testdriver import reporter;
66from testdriver import vboxcon;
67from testdriver import vboxtestvms;
68
69# Python 3 hacks:
70if sys.version_info[0] >= 3:
71 xrange = range; # pylint: disable=redefined-builtin,invalid-name
72 long = int; # pylint: disable=redefined-builtin,invalid-name
73
74#
75# Exception and Error Unification Hacks.
76# Note! This is pretty gross stuff. Be warned!
77# TODO: Find better ways of doing these things, preferrably in vboxapi.
78#
79
80ComException = None; # pylint: disable=invalid-name
81__fnComExceptionGetAttr__ = None; # pylint: disable=invalid-name
82
83def __MyDefaultGetAttr(oSelf, sName):
84 """ __getattribute__/__getattr__ default fake."""
85 try:
86 oAttr = oSelf.__dict__[sName];
87 except:
88 oAttr = dir(oSelf)[sName];
89 return oAttr;
90
91def __MyComExceptionGetAttr(oSelf, sName):
92 """ ComException.__getattr__ wrapper - both XPCOM and COM. """
93 try:
94 oAttr = __fnComExceptionGetAttr__(oSelf, sName);
95 except AttributeError:
96 if platform.system() == 'Windows':
97 if sName == 'errno':
98 oAttr = __fnComExceptionGetAttr__(oSelf, 'hresult');
99 elif sName == 'msg':
100 oAttr = __fnComExceptionGetAttr__(oSelf, 'strerror');
101 else:
102 raise;
103 else:
104 if sName == 'hresult':
105 oAttr = __fnComExceptionGetAttr__(oSelf, 'errno');
106 elif sName == 'strerror':
107 oAttr = __fnComExceptionGetAttr__(oSelf, 'msg');
108 elif sName == 'excepinfo':
109 oAttr = None;
110 elif sName == 'argerror':
111 oAttr = None;
112 else:
113 raise;
114 #print '__MyComExceptionGetAttr(,%s) -> "%s"' % (sName, oAttr);
115 return oAttr;
116
117def __deployExceptionHacks__(oNativeComExceptionClass):
118 """
119 Deploys the exception and error hacks that helps unifying COM and XPCOM
120 exceptions and errors.
121 """
122 global ComException # pylint: disable=invalid-name
123 global __fnComExceptionGetAttr__ # pylint: disable=invalid-name
124
125 # Hook up our attribute getter for the exception class (ASSUMES new-style).
126 if __fnComExceptionGetAttr__ is None:
127 try:
128 __fnComExceptionGetAttr__ = getattr(oNativeComExceptionClass, '__getattr__');
129 except:
130 try:
131 __fnComExceptionGetAttr__ = getattr(oNativeComExceptionClass, '__getattribute__');
132 except:
133 __fnComExceptionGetAttr__ = __MyDefaultGetAttr;
134 setattr(oNativeComExceptionClass, '__getattr__', __MyComExceptionGetAttr)
135
136 # Make the modified classes accessible (are there better ways to do this?)
137 ComException = oNativeComExceptionClass
138 return None;
139
140
141
142#
143# Utility functions.
144#
145
146def isIpAddrValid(sIpAddr):
147 """
148 Checks if a IPv4 address looks valid. This will return false for
149 localhost and similar.
150 Returns True / False.
151 """
152 if sIpAddr is None: return False;
153 if len(sIpAddr.split('.')) != 4: return False;
154 if sIpAddr.endswith('.0'): return False;
155 if sIpAddr.endswith('.255'): return False;
156 if sIpAddr.startswith('127.'): return False;
157 if sIpAddr.startswith('169.254.'): return False;
158 if sIpAddr.startswith('192.0.2.'): return False;
159 if sIpAddr.startswith('224.0.0.'): return False;
160 return True;
161
162def stringifyErrorInfo(oErrInfo):
163 """
164 Stringifies the error information in a IVirtualBoxErrorInfo object.
165
166 Returns string with error info.
167 """
168 try:
169 rc = oErrInfo.resultCode;
170 sText = oErrInfo.text;
171 sIid = oErrInfo.interfaceID;
172 sComponent = oErrInfo.component;
173 except:
174 sRet = 'bad error object (%s)?' % (oErrInfo,);
175 traceback.print_exc();
176 else:
177 sRet = 'rc=%s text="%s" IID=%s component=%s' % (ComError.toString(rc), sText, sIid, sComponent);
178 return sRet;
179
180def reportError(oErr, sText):
181 """
182 Report a VirtualBox error on oErr. oErr can be IVirtualBoxErrorInfo
183 or IProgress. Anything else is ignored.
184
185 Returns the same a reporter.error().
186 """
187 try:
188 oErrObj = oErr.errorInfo; # IProgress.
189 except:
190 oErrObj = oErr;
191 reporter.error(sText);
192 return reporter.error(stringifyErrorInfo(oErrObj));
193
194def formatComOrXpComException(oType, oXcpt):
195 """
196 Callback installed with the reporter to better format COM exceptions.
197 Similar to format_exception_only, only it returns None if not interested.
198 """
199 _ = oType;
200 oVBoxMgr = vboxcon.goHackModuleClass.oVBoxMgr;
201 if oVBoxMgr is None:
202 return None;
203 if not oVBoxMgr.xcptIsOurXcptKind(oXcpt): # pylint: disable=not-callable
204 return None;
205
206 if platform.system() == 'Windows':
207 hrc = oXcpt.hresult;
208 if hrc == ComError.DISP_E_EXCEPTION and oXcpt.excepinfo is not None and len(oXcpt.excepinfo) > 5:
209 hrc = oXcpt.excepinfo[5];
210 sWhere = oXcpt.excepinfo[1];
211 sMsg = oXcpt.excepinfo[2];
212 else:
213 sWhere = None;
214 sMsg = oXcpt.strerror;
215 else:
216 hrc = oXcpt.errno;
217 sWhere = None;
218 sMsg = oXcpt.msg;
219
220 sHrc = oVBoxMgr.xcptToString(hrc); # pylint: disable=not-callable
221 if sHrc.find('(') < 0:
222 sHrc = '%s (%#x)' % (sHrc, hrc & 0xffffffff,);
223
224 asRet = ['COM-Xcpt: %s' % (sHrc,)];
225 if sMsg and sWhere:
226 asRet.append('--------- %s: %s' % (sWhere, sMsg,));
227 elif sMsg:
228 asRet.append('--------- %s' % (sMsg,));
229 return asRet;
230 #if sMsg and sWhere:
231 # return ['COM-Xcpt: %s - %s: %s' % (sHrc, sWhere, sMsg,)];
232 #if sMsg:
233 # return ['COM-Xcpt: %s - %s' % (sHrc, sMsg,)];
234 #return ['COM-Xcpt: %s' % (sHrc,)];
235
236#
237# Classes
238#
239
240class ComError(object):
241 """
242 Unified COM and XPCOM status code repository.
243 This works more like a module than a class since it's replacing a module.
244 """
245
246 # The VBOX_E_XXX bits:
247 __VBOX_E_BASE = -2135228416;
248 VBOX_E_OBJECT_NOT_FOUND = __VBOX_E_BASE + 1;
249 VBOX_E_INVALID_VM_STATE = __VBOX_E_BASE + 2;
250 VBOX_E_VM_ERROR = __VBOX_E_BASE + 3;
251 VBOX_E_FILE_ERROR = __VBOX_E_BASE + 4;
252 VBOX_E_IPRT_ERROR = __VBOX_E_BASE + 5;
253 VBOX_E_PDM_ERROR = __VBOX_E_BASE + 6;
254 VBOX_E_INVALID_OBJECT_STATE = __VBOX_E_BASE + 7;
255 VBOX_E_HOST_ERROR = __VBOX_E_BASE + 8;
256 VBOX_E_NOT_SUPPORTED = __VBOX_E_BASE + 9;
257 VBOX_E_XML_ERROR = __VBOX_E_BASE + 10;
258 VBOX_E_INVALID_SESSION_STATE = __VBOX_E_BASE + 11;
259 VBOX_E_OBJECT_IN_USE = __VBOX_E_BASE + 12;
260 VBOX_E_DONT_CALL_AGAIN = __VBOX_E_BASE + 13;
261
262 # Reverse lookup table.
263 dDecimalToConst = {}; # pylint: disable=invalid-name
264
265 def __init__(self):
266 raise base.GenError('No instances, please');
267
268 @staticmethod
269 def copyErrors(oNativeComErrorClass):
270 """
271 Copy all error codes from oNativeComErrorClass to this class and
272 install compatability mappings.
273 """
274
275 # First, add the VBOX_E_XXX constants to dDecimalToConst.
276 for sAttr in dir(ComError):
277 if sAttr.startswith('VBOX_E'):
278 oAttr = getattr(ComError, sAttr);
279 ComError.dDecimalToConst[oAttr] = sAttr;
280
281 # Copy all error codes from oNativeComErrorClass to this class.
282 for sAttr in dir(oNativeComErrorClass):
283 if sAttr[0].isupper():
284 oAttr = getattr(oNativeComErrorClass, sAttr);
285 setattr(ComError, sAttr, oAttr);
286 if isinstance(oAttr, int):
287 ComError.dDecimalToConst[oAttr] = sAttr;
288
289 # Install mappings to the other platform.
290 if platform.system() == 'Windows':
291 ComError.NS_OK = ComError.S_OK;
292 ComError.NS_ERROR_FAILURE = ComError.E_FAIL;
293 ComError.NS_ERROR_ABORT = ComError.E_ABORT;
294 ComError.NS_ERROR_NULL_POINTER = ComError.E_POINTER;
295 ComError.NS_ERROR_NO_INTERFACE = ComError.E_NOINTERFACE;
296 ComError.NS_ERROR_INVALID_ARG = ComError.E_INVALIDARG;
297 ComError.NS_ERROR_OUT_OF_MEMORY = ComError.E_OUTOFMEMORY;
298 ComError.NS_ERROR_NOT_IMPLEMENTED = ComError.E_NOTIMPL;
299 ComError.NS_ERROR_UNEXPECTED = ComError.E_UNEXPECTED;
300 else:
301 ComError.E_ACCESSDENIED = -2147024891; # see VBox/com/defs.h
302 ComError.S_OK = ComError.NS_OK;
303 ComError.E_FAIL = ComError.NS_ERROR_FAILURE;
304 ComError.E_ABORT = ComError.NS_ERROR_ABORT;
305 ComError.E_POINTER = ComError.NS_ERROR_NULL_POINTER;
306 ComError.E_NOINTERFACE = ComError.NS_ERROR_NO_INTERFACE;
307 ComError.E_INVALIDARG = ComError.NS_ERROR_INVALID_ARG;
308 ComError.E_OUTOFMEMORY = ComError.NS_ERROR_OUT_OF_MEMORY;
309 ComError.E_NOTIMPL = ComError.NS_ERROR_NOT_IMPLEMENTED;
310 ComError.E_UNEXPECTED = ComError.NS_ERROR_UNEXPECTED;
311 ComError.DISP_E_EXCEPTION = -2147352567; # For COM compatability only.
312 return True;
313
314 @staticmethod
315 def getXcptResult(oXcpt):
316 """
317 Gets the result code for an exception.
318 Returns COM status code (or E_UNEXPECTED).
319 """
320 if platform.system() == 'Windows':
321 # The DISP_E_EXCEPTION + excptinfo fun needs checking up, only
322 # empirical info on it so far.
323 try:
324 hrXcpt = oXcpt.hresult;
325 except AttributeError:
326 hrXcpt = ComError.E_UNEXPECTED;
327 if hrXcpt == ComError.DISP_E_EXCEPTION and oXcpt.excepinfo is not None:
328 hrXcpt = oXcpt.excepinfo[5];
329 else:
330 try:
331 hrXcpt = oXcpt.errno;
332 except AttributeError:
333 hrXcpt = ComError.E_UNEXPECTED;
334 return hrXcpt;
335
336 @staticmethod
337 def equal(oXcpt, hr):
338 """
339 Checks if the ComException e is not equal to the COM status code hr.
340 This takes DISP_E_EXCEPTION & excepinfo into account.
341
342 This method can be used with any Exception derivate, however it will
343 only return True for classes similar to the two ComException variants.
344 """
345 if platform.system() == 'Windows':
346 # The DISP_E_EXCEPTION + excptinfo fun needs checking up, only
347 # empirical info on it so far.
348 try:
349 hrXcpt = oXcpt.hresult;
350 except AttributeError:
351 return False;
352 if hrXcpt == ComError.DISP_E_EXCEPTION and oXcpt.excepinfo is not None:
353 hrXcpt = oXcpt.excepinfo[5];
354 else:
355 try:
356 hrXcpt = oXcpt.errno;
357 except AttributeError:
358 return False;
359 return hrXcpt == hr;
360
361 @staticmethod
362 def notEqual(oXcpt, hr):
363 """
364 Checks if the ComException e is not equal to the COM status code hr.
365 See equal() for more details.
366 """
367 return not ComError.equal(oXcpt, hr)
368
369 @staticmethod
370 def toString(hr):
371 """
372 Converts the specified COM status code to a string.
373 """
374 try:
375 sStr = ComError.dDecimalToConst[int(hr)];
376 except KeyError:
377 hrLong = long(hr);
378 sStr = '%#x (%d)' % (hrLong, hrLong);
379 return sStr;
380
381
382class Build(object): # pylint: disable=too-few-public-methods
383 """
384 A VirtualBox build.
385
386 Note! After dropping the installation of VBox from this code and instead
387 realizing that with the vboxinstall.py wrapper driver, this class is
388 of much less importance and contains unnecessary bits and pieces.
389 """
390
391 def __init__(self, oDriver, strInstallPath):
392 """
393 Construct a build object from a build file name and/or install path.
394 """
395 # Initialize all members first.
396 self.oDriver = oDriver;
397 self.sInstallPath = strInstallPath;
398 self.sSdkPath = None;
399 self.sSrcRoot = None;
400 self.sKind = None;
401 self.sDesignation = None;
402 self.sType = None;
403 self.sOs = None;
404 self.sArch = None;
405 self.sGuestAdditionsIso = None;
406
407 # Figure out the values as best we can.
408 if strInstallPath is None:
409 #
410 # Both parameters are None, which means we're falling back on a
411 # build in the development tree.
412 #
413 self.sKind = "development";
414
415 if self.sType is None:
416 self.sType = os.environ.get("KBUILD_TYPE", "release");
417 if self.sOs is None:
418 self.sOs = os.environ.get("KBUILD_TARGET", oDriver.sHost);
419 if self.sArch is None:
420 self.sArch = os.environ.get("KBUILD_TARGET_ARCH", oDriver.sHostArch);
421
422 sOut = os.path.join('out', self.sOs + '.' + self.sArch, self.sType);
423 sSearch = os.environ.get('VBOX_TD_DEV_TREE', os.path.dirname(__file__)); # Env.var. for older trees or testboxscript.
424 sCandidat = None;
425 for i in range(0, 10): # pylint: disable=unused-variable
426 sBldDir = os.path.join(sSearch, sOut);
427 if os.path.isdir(sBldDir):
428 sCandidat = os.path.join(sBldDir, 'bin', 'VBoxSVC' + base.exeSuff());
429 if os.path.isfile(sCandidat):
430 self.sSdkPath = os.path.join(sBldDir, 'bin/sdk');
431 break;
432 sCandidat = os.path.join(sBldDir, 'dist/VirtualBox.app/Contents/MacOS/VBoxSVC');
433 if os.path.isfile(sCandidat):
434 self.sSdkPath = os.path.join(sBldDir, 'dist/sdk');
435 break;
436 sSearch = os.path.abspath(os.path.join(sSearch, '..'));
437 if sCandidat is None or not os.path.isfile(sCandidat):
438 raise base.GenError();
439 self.sInstallPath = os.path.abspath(os.path.dirname(sCandidat));
440 self.sSrcRoot = os.path.abspath(sSearch);
441
442 self.sDesignation = os.environ.get('TEST_BUILD_DESIGNATION', None);
443 if self.sDesignation is None:
444 try:
445 oFile = utils.openNoInherit(os.path.join(self.sSrcRoot, sOut, 'revision.kmk'), 'r');
446 except:
447 pass;
448 else:
449 s = oFile.readline();
450 oFile.close();
451 oMatch = re.search("VBOX_SVN_REV=(\\d+)", s);
452 if oMatch is not None:
453 self.sDesignation = oMatch.group(1);
454
455 if self.sDesignation is None:
456 self.sDesignation = 'XXXXX'
457 else:
458 #
459 # We've been pointed to an existing installation, this could be
460 # in the out dir of a svn checkout, untarred VBoxAll or a real
461 # installation directory.
462 #
463 self.sKind = "preinstalled";
464 self.sType = "release";
465 self.sOs = oDriver.sHost;
466 self.sArch = oDriver.sHostArch;
467 self.sInstallPath = os.path.abspath(strInstallPath);
468 self.sSdkPath = os.path.join(self.sInstallPath, 'sdk');
469 self.sSrcRoot = None;
470 self.sDesignation = os.environ.get('TEST_BUILD_DESIGNATION', 'XXXXX');
471 ## @todo Much more work is required here.
472
473 # Try Determine the build type.
474 sVBoxManage = os.path.join(self.sInstallPath, 'VBoxManage' + base.exeSuff());
475 if os.path.isfile(sVBoxManage):
476 try:
477 (iExit, sStdOut, _) = utils.processOutputUnchecked([sVBoxManage, '--dump-build-type']);
478 sStdOut = sStdOut.strip();
479 if iExit == 0 and sStdOut in ('release', 'debug', 'strict', 'dbgopt', 'asan'):
480 self.sType = sStdOut;
481 reporter.log('Build: Detected build type: %s' % (self.sType));
482 else:
483 reporter.log('Build: --dump-build-type -> iExit=%u sStdOut=%s' % (iExit, sStdOut,));
484 except:
485 reporter.logXcpt('Build: Running "%s --dump-build-type" failed!' % (sVBoxManage,));
486 else:
487 reporter.log3('Build: sVBoxManage=%s not found' % (sVBoxManage,));
488
489 # Do some checks.
490 if utils.getHostOs() != 'darwin': # On macOS VMMR0.r0 might not be present anymore, especially on arm64.
491 sVMMR0 = os.path.join(self.sInstallPath, 'VMMR0.r0');
492 if not os.path.isfile(sVMMR0) and utils.getHostOs() == 'solaris': # solaris is special.
493 sVMMR0 = os.path.join(self.sInstallPath, 'amd64' if utils.getHostArch() == 'amd64' else 'i386', 'VMMR0.r0');
494 if not os.path.isfile(sVMMR0):
495 raise base.GenError('%s is missing' % (sVMMR0,));
496
497 # Guest additions location is different on windows for some _stupid_ reason.
498 if self.sOs == 'win' and self.sKind != 'development':
499 self.sGuestAdditionsIso = '%s/VBoxGuestAdditions.iso' % (self.sInstallPath,);
500 elif self.sOs == 'darwin':
501 self.sGuestAdditionsIso = '%s/VBoxGuestAdditions.iso' % (self.sInstallPath,);
502 elif self.sOs == 'solaris':
503 self.sGuestAdditionsIso = '%s/VBoxGuestAdditions.iso' % (self.sInstallPath,);
504 else:
505 self.sGuestAdditionsIso = '%s/additions/VBoxGuestAdditions.iso' % (self.sInstallPath,);
506
507 # __init__ end;
508
509 def isDevBuild(self):
510 """ Returns True if it's development build (kind), otherwise False. """
511 return self.sKind == 'development';
512
513
514class EventHandlerBase(object):
515 """
516 Base class for both Console and VirtualBox event handlers.
517 """
518
519 def __init__(self, dArgs, fpApiVer, sName = None):
520 self.oVBoxMgr = dArgs['oVBoxMgr'];
521 self.oEventSrc = dArgs['oEventSrc']; # Console/VirtualBox for < 3.3
522 self.oListener = dArgs['oListener'];
523 self.fPassive = self.oListener is not None;
524 self.sName = sName
525 self.fShutdown = False;
526 self.oThread = None;
527 self.fpApiVer = fpApiVer;
528 self.dEventNo2Name = {};
529 for sKey, iValue in self.oVBoxMgr.constants.all_values('VBoxEventType').items():
530 self.dEventNo2Name[iValue] = sKey;
531
532 def threadForPassiveMode(self):
533 """
534 The thread procedure for the event processing thread.
535 """
536 assert self.fPassive is not None;
537 while not self.fShutdown:
538 try:
539 oEvt = self.oEventSrc.getEvent(self.oListener, 500);
540 except:
541 if not self.oVBoxMgr.xcptIsDeadInterface(): reporter.logXcpt();
542 else: reporter.log('threadForPassiveMode/%s: interface croaked (ignored)' % (self.sName,));
543 break;
544 if oEvt:
545 self.handleEvent(oEvt);
546 if not self.fShutdown:
547 try:
548 self.oEventSrc.eventProcessed(self.oListener, oEvt);
549 except:
550 reporter.logXcpt();
551 break;
552 self.unregister(fWaitForThread = False);
553 return None;
554
555 def startThreadForPassiveMode(self):
556 """
557 Called when working in passive mode.
558 """
559 self.oThread = threading.Thread(target = self.threadForPassiveMode, args=(), name='PAS-%s' % (self.sName,) );
560 self.oThread.setDaemon(True); # pylint: disable=deprecated-method
561 self.oThread.start();
562 return None;
563
564 def unregister(self, fWaitForThread = True):
565 """
566 Unregister the event handler.
567 """
568 fRc = False;
569 if not self.fShutdown:
570 self.fShutdown = True;
571
572 if self.oEventSrc is not None:
573 if self.fpApiVer < 3.3:
574 try:
575 self.oEventSrc.unregisterCallback(self.oListener);
576 fRc = True;
577 except:
578 reporter.errorXcpt('unregisterCallback failed on %s' % (self.oListener,));
579 else:
580 try:
581 self.oEventSrc.unregisterListener(self.oListener);
582 fRc = True;
583 except:
584 if self.oVBoxMgr.xcptIsDeadInterface():
585 reporter.log('unregisterListener failed on %s because of dead interface (%s)'
586 % (self.oListener, self.oVBoxMgr.xcptToString(),));
587 else:
588 reporter.errorXcpt('unregisterListener failed on %s' % (self.oListener,));
589
590 if self.oThread is not None \
591 and self.oThread != threading.current_thread():
592 self.oThread.join();
593 self.oThread = None;
594
595 _ = fWaitForThread;
596 return fRc;
597
598 def handleEvent(self, oEvt):
599 """
600 Compatibility wrapper that child classes implement.
601 """
602 _ = oEvt;
603 return None;
604
605 @staticmethod
606 def registerDerivedEventHandler(oVBoxMgr, fpApiVer, oSubClass, dArgsCopy, # pylint: disable=too-many-arguments
607 oSrcParent, sSrcParentNm, sICallbackNm,
608 fMustSucceed = True, sLogSuffix = '', aenmEvents = None):
609 """
610 Registers the callback / event listener.
611 """
612 dArgsCopy['oVBoxMgr'] = oVBoxMgr;
613 dArgsCopy['oListener'] = None;
614 if fpApiVer < 3.3:
615 dArgsCopy['oEventSrc'] = oSrcParent;
616 try:
617 oRet = oVBoxMgr.createCallback(sICallbackNm, oSubClass, dArgsCopy);
618 except:
619 reporter.errorXcpt('%s::createCallback(%s) failed%s' % (sSrcParentNm, sICallbackNm, sLogSuffix,));
620 else:
621 try:
622 oSrcParent.registerCallback(oRet);
623 return oRet;
624 except Exception as oXcpt:
625 if fMustSucceed or ComError.notEqual(oXcpt, ComError.E_UNEXPECTED):
626 reporter.errorXcpt('%s::registerCallback(%s)%s' % (sSrcParentNm, oRet, sLogSuffix,));
627 else:
628 #
629 # Scalable event handling introduced in VBox 4.0.
630 #
631 fPassive = sys.platform == 'win32'; # or webservices.
632
633 if not aenmEvents:
634 aenmEvents = (vboxcon.VBoxEventType_Any,);
635
636 try:
637 oEventSrc = oSrcParent.eventSource;
638 dArgsCopy['oEventSrc'] = oEventSrc;
639 if not fPassive:
640 oListener = oRet = oVBoxMgr.createListener(oSubClass, dArgsCopy);
641 else:
642 oListener = oEventSrc.createListener();
643 dArgsCopy['oListener'] = oListener;
644 oRet = oSubClass(dArgsCopy);
645 except Exception as oXcpt:
646 reporter.errorXcpt('%s::eventSource.createListener(%s, %s) failed: %s; fPassive=%s%s'
647 % (sSrcParentNm, oSubClass, dArgsCopy, oXcpt, fPassive, sLogSuffix));
648 else:
649 try:
650 oEventSrc.registerListener(oListener, aenmEvents, not fPassive);
651 except Exception as oXcpt:
652 if fMustSucceed or ComError.notEqual(oXcpt, ComError.E_UNEXPECTED):
653 reporter.errorXcpt('%s::eventSource.registerListener(%s) failed%s'
654 % (sSrcParentNm, oListener, sLogSuffix));
655 else:
656 if not fPassive:
657 if sys.platform == 'win32':
658 from win32com.server.util import unwrap # pylint: disable=import-error
659 oRet = unwrap(oRet);
660 oRet.oListener = oListener;
661 else:
662 oRet.startThreadForPassiveMode();
663 return oRet;
664 return None;
665
666
667
668
669class ConsoleEventHandlerBase(EventHandlerBase):
670 """
671 Base class for handling IConsole events.
672
673 The class has IConsoleCallback (<=3.2) compatible callback methods which
674 the user can override as needed.
675
676 Note! This class must not inherit from object or we'll get type errors in VBoxPython.
677 """
678 def __init__(self, dArgs, sName = None):
679 self.oSession = dArgs['oSession'];
680 self.oConsole = dArgs['oConsole'];
681 if sName is None:
682 sName = self.oSession.sName;
683 EventHandlerBase.__init__(self, dArgs, self.oSession.fpApiVer, sName);
684
685
686 # pylint: disable=missing-docstring,too-many-arguments,unused-argument
687 def onMousePointerShapeChange(self, fVisible, fAlpha, xHot, yHot, cx, cy, abShape):
688 reporter.log2('onMousePointerShapeChange/%s' % (self.sName));
689 def onMouseCapabilityChange(self, fSupportsAbsolute, *aArgs): # Extra argument was added in 3.2.
690 reporter.log2('onMouseCapabilityChange/%s' % (self.sName));
691 def onKeyboardLedsChange(self, fNumLock, fCapsLock, fScrollLock):
692 reporter.log2('onKeyboardLedsChange/%s' % (self.sName));
693 def onStateChange(self, eState):
694 reporter.log2('onStateChange/%s' % (self.sName));
695 def onAdditionsStateChange(self):
696 reporter.log2('onAdditionsStateChange/%s' % (self.sName));
697 def onNetworkAdapterChange(self, oNic):
698 reporter.log2('onNetworkAdapterChange/%s' % (self.sName));
699 def onSerialPortChange(self, oPort):
700 reporter.log2('onSerialPortChange/%s' % (self.sName));
701 def onParallelPortChange(self, oPort):
702 reporter.log2('onParallelPortChange/%s' % (self.sName));
703 def onStorageControllerChange(self):
704 reporter.log2('onStorageControllerChange/%s' % (self.sName));
705 def onMediumChange(self, attachment):
706 reporter.log2('onMediumChange/%s' % (self.sName));
707 def onCPUChange(self, iCpu, fAdd):
708 reporter.log2('onCPUChange/%s' % (self.sName));
709 def onVRDPServerChange(self):
710 reporter.log2('onVRDPServerChange/%s' % (self.sName));
711 def onRemoteDisplayInfoChange(self):
712 reporter.log2('onRemoteDisplayInfoChange/%s' % (self.sName));
713 def onUSBControllerChange(self):
714 reporter.log2('onUSBControllerChange/%s' % (self.sName));
715 def onUSBDeviceStateChange(self, oDevice, fAttached, oError):
716 reporter.log2('onUSBDeviceStateChange/%s' % (self.sName));
717 def onSharedFolderChange(self, fGlobal):
718 reporter.log2('onSharedFolderChange/%s' % (self.sName));
719 def onRuntimeError(self, fFatal, sErrId, sMessage):
720 reporter.log2('onRuntimeError/%s' % (self.sName));
721 def onCanShowWindow(self):
722 reporter.log2('onCanShowWindow/%s' % (self.sName));
723 return True
724 def onShowWindow(self):
725 reporter.log2('onShowWindow/%s' % (self.sName));
726 return None;
727 # pylint: enable=missing-docstring,too-many-arguments,unused-argument
728
729 def handleEvent(self, oEvt):
730 """
731 Compatibility wrapper.
732 """
733 try:
734 oEvtBase = self.oVBoxMgr.queryInterface(oEvt, 'IEvent');
735 eType = oEvtBase.type;
736 except:
737 reporter.logXcpt();
738 return None;
739 if eType == vboxcon.VBoxEventType_OnRuntimeError:
740 try:
741 oEvtIt = self.oVBoxMgr.queryInterface(oEvtBase, 'IRuntimeErrorEvent');
742 return self.onRuntimeError(oEvtIt.fatal, oEvtIt.id, oEvtIt.message)
743 except:
744 reporter.logXcpt();
745 ## @todo implement the other events.
746 try:
747 if eType not in (vboxcon.VBoxEventType_OnMousePointerShapeChanged,
748 vboxcon.VBoxEventType_OnCursorPositionChanged):
749 if eType in self.dEventNo2Name:
750 reporter.log2('%s(%s)/%s' % (self.dEventNo2Name[eType], str(eType), self.sName));
751 else:
752 reporter.log2('%s/%s' % (str(eType), self.sName));
753 except AttributeError: # Handle older VBox versions which don't have a specific event.
754 pass;
755 return None;
756
757
758class VirtualBoxEventHandlerBase(EventHandlerBase):
759 """
760 Base class for handling IVirtualBox events.
761
762 The class has IConsoleCallback (<=3.2) compatible callback methods which
763 the user can override as needed.
764
765 Note! This class must not inherit from object or we'll get type errors in VBoxPython.
766 """
767 def __init__(self, dArgs, sName = "emanon"):
768 self.oVBoxMgr = dArgs['oVBoxMgr'];
769 self.oVBox = dArgs['oVBox'];
770 EventHandlerBase.__init__(self, dArgs, self.oVBox.fpApiVer, sName);
771
772 # pylint: disable=missing-docstring,unused-argument
773 def onMachineStateChange(self, sMachineId, eState):
774 pass;
775 def onMachineDataChange(self, sMachineId):
776 pass;
777 def onExtraDataCanChange(self, sMachineId, sKey, sValue):
778 # The COM bridge does tuples differently. Not very funny if you ask me... ;-)
779 if self.oVBoxMgr.type == 'MSCOM':
780 return '', 0, True;
781 return True, ''
782 def onExtraDataChange(self, sMachineId, sKey, sValue):
783 pass;
784 def onMediumRegistered(self, sMediumId, eMediumType, fRegistered):
785 pass;
786 def onMachineRegistered(self, sMachineId, fRegistered):
787 pass;
788 def onSessionStateChange(self, sMachineId, eState):
789 pass;
790 def onSnapshotTaken(self, sMachineId, sSnapshotId):
791 pass;
792 def onSnapshotDiscarded(self, sMachineId, sSnapshotId):
793 pass;
794 def onSnapshotChange(self, sMachineId, sSnapshotId):
795 pass;
796 def onGuestPropertyChange(self, sMachineId, sName, sValue, sFlags, fWasDeleted):
797 pass;
798 # pylint: enable=missing-docstring,unused-argument
799
800 def handleEvent(self, oEvt):
801 """
802 Compatibility wrapper.
803 """
804 try:
805 oEvtBase = self.oVBoxMgr.queryInterface(oEvt, 'IEvent');
806 eType = oEvtBase.type;
807 except:
808 reporter.logXcpt();
809 return None;
810 if eType == vboxcon.VBoxEventType_OnMachineStateChanged:
811 try:
812 oEvtIt = self.oVBoxMgr.queryInterface(oEvtBase, 'IMachineStateChangedEvent');
813 return self.onMachineStateChange(oEvtIt.machineId, oEvtIt.state)
814 except:
815 reporter.logXcpt();
816 elif eType == vboxcon.VBoxEventType_OnGuestPropertyChanged:
817 try:
818 oEvtIt = self.oVBoxMgr.queryInterface(oEvtBase, 'IGuestPropertyChangedEvent');
819 if hasattr(oEvtIt, 'fWasDeleted'): # Since 7.0 we have a dedicated flag
820 fWasDeleted = oEvtIt.fWasDeleted;
821 else:
822 fWasDeleted = False; # Don't indicate deletion here -- there can be empty guest properties.
823 return self.onGuestPropertyChange(oEvtIt.machineId, oEvtIt.name, oEvtIt.value, oEvtIt.flags, fWasDeleted);
824 except:
825 reporter.logXcpt();
826 ## @todo implement the other events.
827 if eType in self.dEventNo2Name:
828 reporter.log2('%s(%s)/%s' % (self.dEventNo2Name[eType], str(eType), self.sName));
829 else:
830 reporter.log2('%s/%s' % (str(eType), self.sName));
831 return None;
832
833
834class SessionConsoleEventHandler(ConsoleEventHandlerBase):
835 """
836 For catching machine state changes and waking up the task machinery at that point.
837 """
838 def __init__(self, dArgs):
839 ConsoleEventHandlerBase.__init__(self, dArgs);
840
841 def onMachineStateChange(self, sMachineId, eState): # pylint: disable=unused-argument
842 """ Just interrupt the wait loop here so it can check again. """
843 _ = sMachineId; _ = eState;
844 self.oVBoxMgr.interruptWaitEvents();
845
846 def onRuntimeError(self, fFatal, sErrId, sMessage):
847 reporter.log('onRuntimeError/%s: fFatal=%d sErrId=%s sMessage=%s' % (self.sName, fFatal, sErrId, sMessage));
848 oSession = self.oSession;
849 if oSession is not None: # paranoia
850 if sErrId == 'HostMemoryLow':
851 oSession.signalHostMemoryLow();
852 if sys.platform == 'win32':
853 from testdriver import winbase;
854 winbase.logMemoryStats();
855 oSession.signalTask();
856 self.oVBoxMgr.interruptWaitEvents();
857
858
859
860class TestDriver(base.TestDriver): # pylint: disable=too-many-instance-attributes
861 """
862 This is the VirtualBox test driver.
863 """
864
865 def __init__(self):
866 base.TestDriver.__init__(self);
867 self.fImportedVBoxApi = False;
868 self.fpApiVer = 3.2;
869 self.uRevision = 0;
870 self.uApiRevision = 0;
871 self.oBuild = None;
872 self.oVBoxMgr = None;
873 self.oVBox = None;
874 self.aoRemoteSessions = [];
875 self.aoVMs = []; ## @todo not sure if this list will be of any use.
876 self.oTestVmManager = vboxtestvms.TestVmManager(self.sResourcePath);
877 self.oTestVmSet = vboxtestvms.TestVmSet();
878 self.sSessionTypeDef = 'headless';
879 self.sSessionType = self.sSessionTypeDef;
880 self.fEnableVrdp = True;
881 self.uVrdpBasePortDef = 6000;
882 self.uVrdpBasePort = self.uVrdpBasePortDef;
883 self.sDefBridgedNic = None;
884 self.fUseDefaultSvc = False;
885 self.sLogSelfGroups = '';
886 self.sLogSelfFlags = 'time';
887 self.sLogSelfDest = '';
888 self.sLogSessionGroups = '';
889 self.sLogSessionFlags = 'time';
890 self.sLogSessionDest = '';
891 self.sLogSvcGroups = '';
892 self.sLogSvcFlags = 'time';
893 self.sLogSvcDest = '';
894 self.sSelfLogFile = None;
895 self.sSessionLogFile = None;
896 self.sVBoxSvcLogFile = None;
897 self.oVBoxSvcProcess = None;
898 self.sVBoxSvcPidFile = None;
899 self.fVBoxSvcInDebugger = False;
900 self.fVBoxSvcWaitForDebugger = False;
901 self.sVBoxValidationKit = None;
902 self.sVBoxValidationKitIso = None;
903 self.sVBoxBootSectors = None;
904 self.fAlwaysUploadLogs = False;
905 self.fAlwaysUploadScreenshots = False;
906 self.fAlwaysUploadRecordings = False; # Only upload recording files on failure by default.
907 self.fEnableDebugger = True;
908 self.fVmNoTerminate = False; # Whether to skip exit handling and tearing down the VMs.
909 self.adRecordingFiles = [];
910 self.fRecordingEnabled = False; # Don't record by default (yet).
911 self.fRecordingAudio = False; # Don't record audio by default.
912 self.cSecsRecordingMax = 0; # No recording time limit in seconds.
913 self.cMbRecordingMax = 195; # The test manager web server has a configured upload limit of 200 MiBs.
914 ## @todo Can we query the configured value here
915 # (via `from testmanager import config`)?
916
917 # Drop LD_PRELOAD and enable memory leak detection in LSAN_OPTIONS from vboxinstall.py
918 # before doing build detection. This is a little crude and inflexible...
919 if 'LD_PRELOAD' in os.environ:
920 del os.environ['LD_PRELOAD'];
921 if 'LSAN_OPTIONS' in os.environ:
922 asLSanOptions = os.environ['LSAN_OPTIONS'].split(':');
923 try: asLSanOptions.remove('detect_leaks=0');
924 except: pass;
925 if asLSanOptions: os.environ['LSAN_OPTIONS'] = ':'.join(asLSanOptions);
926 else: del os.environ['LSAN_OPTIONS'];
927
928 # Quietly detect build and validation kit.
929 self._detectBuild(False);
930 self._detectValidationKit(False);
931
932 # Make sure all debug logs goes to the scratch area unless
933 # specified otherwise (more of this later on).
934 if 'VBOX_LOG_DEST' not in os.environ:
935 os.environ['VBOX_LOG_DEST'] = 'nodeny dir=%s' % (self.sScratchPath);
936
937
938 def _detectBuild(self, fQuiet = False):
939 """
940 This is used internally to try figure a locally installed build when
941 running tests manually.
942 """
943 if self.oBuild is not None:
944 return True;
945
946 # Try dev build first since that's where I'll be using it first...
947 if True is True: # pylint: disable=comparison-with-itself,comparison-of-constants
948 try:
949 self.oBuild = Build(self, None);
950 reporter.log('VBox %s build at %s (%s).'
951 % (self.oBuild.sType, self.oBuild.sInstallPath, self.oBuild.sDesignation,));
952 return True;
953 except base.GenError:
954 pass;
955
956 # Try default installation locations.
957 if self.sHost == 'win':
958 sProgFiles = os.environ.get('ProgramFiles', 'C:\\Program Files');
959 asLocs = [
960 os.path.join(sProgFiles, 'Oracle', 'VirtualBox'),
961 os.path.join(sProgFiles, 'OracleVM', 'VirtualBox'),
962 os.path.join(sProgFiles, 'Sun', 'VirtualBox'),
963 ];
964 elif self.sHost == 'solaris':
965 asLocs = [ '/opt/VirtualBox-3.2', '/opt/VirtualBox-3.1', '/opt/VirtualBox-3.0', '/opt/VirtualBox' ];
966 elif self.sHost == 'darwin':
967 asLocs = [ '/Applications/VirtualBox.app/Contents/MacOS' ];
968 elif self.sHost == 'linux':
969 asLocs = [ '/opt/VirtualBox-3.2', '/opt/VirtualBox-3.1', '/opt/VirtualBox-3.0', '/opt/VirtualBox' ];
970 else:
971 asLocs = [ '/opt/VirtualBox' ];
972 if 'VBOX_INSTALL_PATH' in os.environ:
973 asLocs.insert(0, os.environ['VBOX_INSTALL_PATH']);
974
975 for sLoc in asLocs:
976 try:
977 self.oBuild = Build(self, sLoc);
978 reporter.log('VBox %s build at %s (%s).'
979 % (self.oBuild.sType, self.oBuild.sInstallPath, self.oBuild.sDesignation,));
980 return True;
981 except base.GenError:
982 pass;
983
984 if not fQuiet:
985 reporter.error('failed to find VirtualBox installation');
986 return False;
987
988 def _detectValidationKit(self, fQuiet = False):
989 """
990 This is used internally by the constructor to try locate an unzipped
991 VBox Validation Kit somewhere in the immediate proximity.
992 """
993 if self.sVBoxValidationKit is not None:
994 return True;
995
996 #
997 # Normally it's found where we're running from, which is the same as
998 # the script directly on the testboxes.
999 #
1000 asCandidates = [self.sScriptPath, ];
1001 if g_ksValidationKitDir not in asCandidates:
1002 asCandidates.append(g_ksValidationKitDir);
1003 if os.getcwd() not in asCandidates:
1004 asCandidates.append(os.getcwd());
1005 if self.oBuild is not None and self.oBuild.sInstallPath not in asCandidates:
1006 asCandidates.append(self.oBuild.sInstallPath);
1007
1008 #
1009 # When working out of the tree, we'll search the current directory
1010 # as well as parent dirs.
1011 #
1012 for sDir in list(asCandidates):
1013 for i in range(10):
1014 sDir = os.path.dirname(sDir);
1015 if sDir not in asCandidates:
1016 asCandidates.append(sDir);
1017
1018 #
1019 # Do the searching.
1020 #
1021 sCandidate = None;
1022 for i, _ in enumerate(asCandidates):
1023 sCandidate = asCandidates[i];
1024 if os.path.isfile(os.path.join(sCandidate, 'VBoxValidationKit.iso')):
1025 break;
1026 sCandidate = os.path.join(sCandidate, 'validationkit');
1027 if os.path.isfile(os.path.join(sCandidate, 'VBoxValidationKit.iso')):
1028 break;
1029 sCandidate = None;
1030
1031 fRc = sCandidate is not None;
1032 if fRc is False:
1033 if not fQuiet:
1034 reporter.error('failed to find VBox Validation Kit installation (candidates: %s)' % (asCandidates,));
1035 sCandidate = os.path.join(self.sScriptPath, 'validationkit'); # Don't leave the values as None.
1036
1037 #
1038 # Set the member values.
1039 #
1040 self.sVBoxValidationKit = sCandidate;
1041 self.sVBoxValidationKitIso = os.path.join(sCandidate, 'VBoxValidationKit.iso');
1042 self.sVBoxBootSectors = os.path.join(sCandidate, 'bootsectors');
1043 return fRc;
1044
1045 def _makeEnvironmentChanges(self):
1046 """
1047 Make the necessary VBox related environment changes.
1048 Children not importing the VBox API should call this.
1049 """
1050 # Make sure we've got our own VirtualBox config and VBoxSVC (on XPCOM at least).
1051 if not self.fUseDefaultSvc:
1052 os.environ['VBOX_USER_HOME'] = os.path.join(self.sScratchPath, 'VBoxUserHome');
1053 sUser = os.environ.get('USERNAME', os.environ.get('USER', os.environ.get('LOGNAME', 'unknown')));
1054 os.environ['VBOX_IPC_SOCKETID'] = sUser + '-VBoxTest';
1055 return True;
1056
1057 @staticmethod
1058 def makeApiRevision(uMajor, uMinor, uBuild, uApiRevision):
1059 """ Calculates an API revision number. """
1060 return (long(uMajor) << 56) | (long(uMinor) << 48) | (long(uBuild) << 40) | uApiRevision;
1061
1062 def importVBoxApi(self):
1063 """
1064 Import the 'vboxapi' module from the VirtualBox build we're using and
1065 instantiate the two basic objects.
1066
1067 This will try detect an development or installed build if no build has
1068 been associated with the driver yet.
1069 """
1070 reporter.log2('importVBoxApi started\n')
1071 if self.fImportedVBoxApi:
1072 return True;
1073
1074 self._makeEnvironmentChanges();
1075
1076 # Do the detecting.
1077 self._detectBuild();
1078 if self.oBuild is None:
1079 return False;
1080
1081 # Avoid crashing when loading the 32-bit module (or whatever it is that goes bang).
1082 if self.oBuild.sArch == 'x86' \
1083 and self.sHost == 'darwin' \
1084 and platform.architecture()[0] == '64bit' \
1085 and self.oBuild.sKind == 'development' \
1086 and os.getenv('VERSIONER_PYTHON_PREFER_32_BIT') != 'yes':
1087 reporter.log("WARNING: 64-bit python on darwin, 32-bit VBox development build => crash");
1088 reporter.log("WARNING: bash-3.2$ /usr/bin/python2.5 ./testdriver");
1089 reporter.log("WARNING: or");
1090 reporter.log("WARNING: bash-3.2$ VERSIONER_PYTHON_PREFER_32_BIT=yes ./testdriver");
1091 return False;
1092
1093 # Start VBoxSVC and load the vboxapi bits.
1094 if self._startVBoxSVC() is True:
1095 assert(self.oVBoxSvcProcess is not None);
1096
1097 sSavedSysPath = sys.path;
1098 self._setupVBoxApi();
1099 sys.path = sSavedSysPath;
1100
1101 # Adjust the default machine folder.
1102 if self.fImportedVBoxApi and not self.fUseDefaultSvc and self.fpApiVer >= 4.0:
1103 sNewFolder = os.path.join(self.sScratchPath, 'VBoxUserHome', 'Machines');
1104 try:
1105 self.oVBox.systemProperties.defaultMachineFolder = sNewFolder;
1106 except:
1107 self.fImportedVBoxApi = False;
1108 self.oVBoxMgr = None;
1109 self.oVBox = None;
1110 reporter.logXcpt("defaultMachineFolder exception (sNewFolder=%s)" % (sNewFolder,));
1111
1112 # Kill VBoxSVC on failure.
1113 if self.oVBoxMgr is None:
1114 self._stopVBoxSVC();
1115 else:
1116 assert(self.oVBoxSvcProcess is None);
1117 reporter.log2('importVBoxApi finished\n')
1118 return self.fImportedVBoxApi;
1119
1120 def _printEnv(self, dEnv = os.environ, fRaw = False): # pylint: disable=dangerous-default-value
1121 """
1122 Prints the given environment block to log2.
1123
1124 Uses the default environment block if not specified explicitly.
1125 Removes any control characters found to not mess up the screen output.
1126 """
1127 for sKey, sVal in sorted(dEnv.items()):
1128 reporter.log2('%s=%s' % (sKey, sVal if fRaw else re.sub(r'[\x00-\x1f]', '', sVal)));
1129
1130 def _startVBoxSVC(self): # pylint: disable=too-many-statements
1131 """ Starts VBoxSVC. """
1132 assert(self.oVBoxSvcProcess is None);
1133
1134 # Setup vbox logging for VBoxSVC now and start it manually. This way
1135 # we can control both logging and shutdown.
1136 self.sVBoxSvcLogFile = '%s/VBoxSVC-debug.log' % (self.sScratchPath,);
1137 try: os.remove(self.sVBoxSvcLogFile);
1138 except: pass;
1139 os.environ['VBOX_LOG'] = self.sLogSvcGroups;
1140 os.environ['VBOX_LOG_FLAGS'] = '%s append' % (self.sLogSvcFlags,); # Append becuse of VBoxXPCOMIPCD.
1141 if self.sLogSvcDest:
1142 os.environ['VBOX_LOG_DEST'] = 'nodeny ' + self.sLogSvcDest;
1143 else:
1144 os.environ['VBOX_LOG_DEST'] = 'nodeny file=%s' % (self.sVBoxSvcLogFile,);
1145 os.environ['VBOXSVC_RELEASE_LOG_FLAGS'] = 'time append';
1146
1147 reporter.log2('VBoxSVC environment:');
1148 self._printEnv();
1149
1150 # Always leave a pid file behind so we can kill it during cleanup-before.
1151 self.sVBoxSvcPidFile = '%s/VBoxSVC.pid' % (self.sScratchPath,);
1152 fWritePidFile = True;
1153
1154 cMsFudge = 1;
1155 sVBoxSVC = '%s/VBoxSVC' % (self.oBuild.sInstallPath,); ## @todo .exe and stuff.
1156 if self.fVBoxSvcInDebugger:
1157 if self.sHost in ('darwin', 'freebsd', 'linux', 'solaris', ):
1158 # Start VBoxSVC in gdb in a new terminal.
1159 #sTerm = '/usr/bin/gnome-terminal'; - doesn't work, some fork+exec stuff confusing us.
1160 sTerm = '/usr/bin/xterm';
1161 if not os.path.isfile(sTerm): sTerm = '/usr/X11/bin/xterm';
1162 if not os.path.isfile(sTerm): sTerm = '/usr/X11R6/bin/xterm';
1163 if not os.path.isfile(sTerm): sTerm = '/usr/bin/xterm';
1164 if not os.path.isfile(sTerm): sTerm = 'xterm';
1165 sGdb = '/usr/bin/gdb';
1166 if not os.path.isfile(sGdb): sGdb = '/usr/local/bin/gdb';
1167 if not os.path.isfile(sGdb): sGdb = '/usr/sfw/bin/gdb';
1168 if not os.path.isfile(sGdb): sGdb = 'gdb';
1169 sGdbCmdLine = '%s --args %s --pidfile %s' % (sGdb, sVBoxSVC, self.sVBoxSvcPidFile);
1170 # Cool tweak to run performance analysis instead of gdb:
1171 #sGdb = '/usr/bin/valgrind';
1172 #sGdbCmdLine = '%s --tool=callgrind --collect-atstart=no -- %s --pidfile %s' \
1173 # % (sGdb, sVBoxSVC, self.sVBoxSvcPidFile);
1174 reporter.log('term="%s" gdb="%s"' % (sTerm, sGdbCmdLine));
1175 os.environ['SHELL'] = self.sOrgShell; # Non-working shell may cause gdb and/or the term problems.
1176 ## @todo -e is deprecated; use "-- <args>".
1177 self.oVBoxSvcProcess = base.Process.spawnp(sTerm, sTerm, '-e', sGdbCmdLine);
1178 os.environ['SHELL'] = self.sOurShell;
1179 if self.oVBoxSvcProcess is not None:
1180 reporter.log('Press enter or return after starting VBoxSVC in the debugger...');
1181 sys.stdin.read(1);
1182 fWritePidFile = False;
1183
1184 elif self.sHost == 'win':
1185 sWinDbg = 'c:\\Program Files\\Debugging Tools for Windows\\windbg.exe';
1186 if not os.path.isfile(sWinDbg): sWinDbg = 'c:\\Program Files\\Debugging Tools for Windows (x64)\\windbg.exe';
1187 if not os.path.isfile(sWinDbg): sWinDbg = 'c:\\Programme\\Debugging Tools for Windows\\windbg.exe'; # Localization rulez! pylint: disable=line-too-long
1188 if not os.path.isfile(sWinDbg): sWinDbg = 'c:\\Programme\\Debugging Tools for Windows (x64)\\windbg.exe';
1189 if not os.path.isfile(sWinDbg): sWinDbg = 'windbg'; # WinDbg must be in the path; better than nothing.
1190 # Assume that everything WinDbg needs is defined using the environment variables.
1191 # See WinDbg help for more information.
1192 reporter.log('windbg="%s"' % (sWinDbg));
1193 self.oVBoxSvcProcess = base.Process.spawn(sWinDbg, sWinDbg, sVBoxSVC + base.exeSuff());
1194 if self.oVBoxSvcProcess is not None:
1195 reporter.log('Press enter or return after starting VBoxSVC in the debugger...');
1196 sys.stdin.read(1);
1197 fWritePidFile = False;
1198 ## @todo add a pipe interface similar to xpcom if feasible, i.e. if
1199 # we can get actual handle values for pipes in python.
1200
1201 else:
1202 reporter.error('Port me!');
1203 else: # Run without a debugger attached.
1204 if self.sHost in ('darwin', 'freebsd', 'linux', 'solaris', ):
1205 #
1206 # XPCOM - We can use a pipe to let VBoxSVC notify us when it's ready.
1207 #
1208 iPipeR, iPipeW = os.pipe();
1209 if hasattr(os, 'set_inheritable'):
1210 os.set_inheritable(iPipeW, True); # pylint: disable=no-member
1211
1212 # For VBox < 7.1 this is required.
1213 os.environ['NSPR_INHERIT_FDS'] = 'vboxsvc:startup-pipe:5:0x%x' % (iPipeW,);
1214 reporter.log2("NSPR_INHERIT_FDS=%s" % (os.environ['NSPR_INHERIT_FDS']));
1215
1216 # New way since VBox 7.1
1217 os.environ['VBOX_STARTUP_PIPE_FD'] = '%u' % (iPipeW,);
1218 reporter.log2("VBOX_STARTUP_PIPE_FD=%s" % (os.environ['VBOX_STARTUP_PIPE_FD']));
1219
1220 self.oVBoxSvcProcess = base.Process.spawn(sVBoxSVC, sVBoxSVC, '--auto-shutdown'); # SIGUSR1 requirement.
1221 try: # Try make sure we get the SIGINT and not VBoxSVC.
1222 os.setpgid(self.oVBoxSvcProcess.getPid(), 0); # pylint: disable=no-member
1223 os.setpgid(0, 0); # pylint: disable=no-member
1224 except:
1225 reporter.logXcpt();
1226
1227 os.close(iPipeW);
1228 try:
1229 sResponse = os.read(iPipeR, 32);
1230 except:
1231 reporter.logXcpt();
1232 sResponse = None;
1233 os.close(iPipeR);
1234
1235 if hasattr(sResponse, 'decode'):
1236 sResponse = sResponse.decode('utf-8', 'ignore');
1237
1238 if sResponse is None or sResponse.strip() != 'READY':
1239 reporter.error('VBoxSVC failed starting up... (sResponse=%s)' % (sResponse,));
1240 if not self.oVBoxSvcProcess.wait(5000):
1241 self.oVBoxSvcProcess.terminate();
1242 self.oVBoxSvcProcess.wait(5000);
1243 self.oVBoxSvcProcess = None;
1244
1245 elif self.sHost == 'win':
1246 #
1247 # Windows - Just fudge it for now.
1248 #
1249 cMsFudge = 2000;
1250 self.oVBoxSvcProcess = base.Process.spawn(sVBoxSVC, sVBoxSVC);
1251
1252 else:
1253 reporter.error('Port me!');
1254
1255 #
1256 # Enable automatic crash reporting if we succeeded.
1257 #
1258 if self.oVBoxSvcProcess is not None:
1259 self.oVBoxSvcProcess.enableCrashReporting('crash/report/svc', 'crash/dump/svc');
1260
1261 #
1262 # Wait for debugger to attach.
1263 #
1264 if self.oVBoxSvcProcess is not None and self.fVBoxSvcWaitForDebugger:
1265 reporter.log('Press any key after attaching to VBoxSVC (pid %s) with a debugger...'
1266 % (self.oVBoxSvcProcess.getPid(),));
1267 sys.stdin.read(1);
1268
1269 #
1270 # Fudge and pid file.
1271 #
1272 if self.oVBoxSvcProcess is not None and not self.oVBoxSvcProcess.wait(cMsFudge):
1273 if fWritePidFile:
1274 iPid = self.oVBoxSvcProcess.getPid();
1275 try:
1276 oFile = utils.openNoInherit(self.sVBoxSvcPidFile, "w+");
1277 oFile.write('%s' % (iPid,));
1278 oFile.close();
1279 except:
1280 reporter.logXcpt('sPidFile=%s' % (self.sVBoxSvcPidFile,));
1281 reporter.log('VBoxSVC PID=%u' % (iPid,));
1282
1283 #
1284 # Finally add the task so we'll notice when it dies in a relatively timely manner.
1285 #
1286 self.addTask(self.oVBoxSvcProcess);
1287 else:
1288 self.oVBoxSvcProcess = None;
1289 try: os.remove(self.sVBoxSvcPidFile);
1290 except: pass;
1291
1292 return self.oVBoxSvcProcess is not None;
1293
1294
1295 def _killVBoxSVCByPidFile(self, sPidFile):
1296 """ Kill a VBoxSVC given the pid from it's pid file. """
1297
1298 # Read the pid file.
1299 if not os.path.isfile(sPidFile):
1300 return False;
1301 try:
1302 oFile = utils.openNoInherit(sPidFile, "r");
1303 sPid = oFile.readline().strip();
1304 oFile.close();
1305 except:
1306 reporter.logXcpt('sPidfile=%s' % (sPidFile,));
1307 return False;
1308
1309 # Convert the pid to an integer and validate the range a little bit.
1310 try:
1311 iPid = long(sPid);
1312 except:
1313 reporter.logXcpt('sPidfile=%s sPid="%s"' % (sPidFile, sPid));
1314 return False;
1315 if iPid <= 0:
1316 reporter.log('negative pid - sPidfile=%s sPid="%s" iPid=%d' % (sPidFile, sPid, iPid));
1317 return False;
1318
1319 # Take care checking that it's VBoxSVC we're about to inhume.
1320 if base.processCheckPidAndName(iPid, "VBoxSVC") is not True:
1321 reporter.log('Ignoring stale VBoxSVC pid file (pid=%s)' % (iPid,));
1322 return False;
1323
1324 # Loop thru our different ways of getting VBoxSVC to terminate.
1325 for aHow in [ [ base.sendUserSignal1, 5000, 'Dropping VBoxSVC a SIGUSR1 hint...'], \
1326 [ base.processInterrupt, 5000, 'Dropping VBoxSVC a SIGINT hint...'], \
1327 [ base.processTerminate, 7500, 'VBoxSVC is still around, killing it...'] ]:
1328 reporter.log(aHow[2]);
1329 if aHow[0](iPid) is True:
1330 msStart = base.timestampMilli();
1331 while base.timestampMilli() - msStart < 5000 \
1332 and base.processExists(iPid):
1333 time.sleep(0.2);
1334
1335 fRc = not base.processExists(iPid);
1336 if fRc is True:
1337 break;
1338 if fRc:
1339 reporter.log('Successfully killed VBoxSVC (pid=%s)' % (iPid,));
1340 else:
1341 reporter.log('Failed to kill VBoxSVC (pid=%s)' % (iPid,));
1342 return fRc;
1343
1344 def _stopVBoxSVC(self):
1345 """
1346 Stops VBoxSVC. Try the polite way first.
1347 """
1348
1349 if self.oVBoxSvcProcess:
1350 self.removeTask(self.oVBoxSvcProcess);
1351 self.oVBoxSvcProcess.enableCrashReporting(None, None); # Disables it.
1352
1353 fRc = False;
1354 if self.oVBoxSvcProcess is not None \
1355 and not self.fVBoxSvcInDebugger:
1356 # by process object.
1357 if self.oVBoxSvcProcess.isRunning():
1358 reporter.log('Dropping VBoxSVC a SIGUSR1 hint...');
1359 if not self.oVBoxSvcProcess.sendUserSignal1() \
1360 or not self.oVBoxSvcProcess.wait(5000):
1361 reporter.log('Dropping VBoxSVC a SIGINT hint...');
1362 if not self.oVBoxSvcProcess.interrupt() \
1363 or not self.oVBoxSvcProcess.wait(5000):
1364 reporter.log('VBoxSVC is still around, killing it...');
1365 self.oVBoxSvcProcess.terminate();
1366 self.oVBoxSvcProcess.wait(7500);
1367 else:
1368 reporter.log('VBoxSVC is no longer running...');
1369
1370 if not self.oVBoxSvcProcess.isRunning():
1371 iExit = self.oVBoxSvcProcess.getExitCode();
1372 if iExit != 0 or not self.oVBoxSvcProcess.isNormalExit():
1373 reporter.error("VBoxSVC exited with status %d (%#x)" % (iExit, self.oVBoxSvcProcess.uExitCode));
1374 self.oVBoxSvcProcess = None;
1375 else:
1376 # by pid file.
1377 self._killVBoxSVCByPidFile('%s/VBoxSVC.pid' % (self.sScratchPath,));
1378 return fRc;
1379
1380 def _setupVBoxApi(self):
1381 """
1382 Import and set up the vboxapi.
1383 The caller saves and restores sys.path.
1384 """
1385
1386 # Setup vbox logging for self (the test driver).
1387 self.sSelfLogFile = '%s/VBoxTestDriver.log' % (self.sScratchPath,);
1388 try: os.remove(self.sSelfLogFile);
1389 except: pass;
1390 os.environ['VBOX_LOG'] = self.sLogSelfGroups;
1391 os.environ['VBOX_LOG_FLAGS'] = '%s append' % (self.sLogSelfFlags, );
1392 if self.sLogSelfDest:
1393 os.environ['VBOX_LOG_DEST'] = 'nodeny ' + self.sLogSelfDest;
1394 else:
1395 os.environ['VBOX_LOG_DEST'] = 'nodeny file=%s' % (self.sSelfLogFile,);
1396 os.environ['VBOX_RELEASE_LOG_FLAGS'] = 'time append';
1397
1398 reporter.log2('Self environment:');
1399 self._printEnv();
1400
1401 # Hack the sys.path + environment so the vboxapi can be found.
1402 sys.path.insert(0, self.oBuild.sInstallPath);
1403 if self.oBuild.sSdkPath is not None:
1404 sys.path.insert(0, os.path.join(self.oBuild.sSdkPath, 'installer'))
1405 sys.path.insert(0, os.path.join(self.oBuild.sSdkPath, 'installer', 'python', 'vboxapi', 'src')) # For >= VBox 7.1
1406 sys.path.insert(1, os.path.join(self.oBuild.sSdkPath, 'install')); # stupid stupid windows installer (VBox < 7.1)!
1407 sys.path.insert(2, os.path.join(self.oBuild.sSdkPath, 'bindings', 'xpcom', 'python'))
1408 os.environ['VBOX_PROGRAM_PATH'] = self.oBuild.sInstallPath;
1409 reporter.log("sys.path: %s" % (sys.path));
1410
1411 try:
1412 from vboxapi import VirtualBoxManager; # pylint: disable=import-error
1413 except:
1414 reporter.logXcpt('Error importing vboxapi (Python %s)' % (sys.version,));
1415 return False;
1416
1417 # Exception and error hacks.
1418 try:
1419 # pylint: disable=import-error
1420 if self.sHost == 'win':
1421 from pythoncom import com_error as NativeComExceptionClass # pylint: disable=no-name-in-module
1422 import winerror as NativeComErrorClass
1423 else:
1424 from xpcom import Exception as NativeComExceptionClass
1425 from xpcom import nsError as NativeComErrorClass
1426 # pylint: enable=import-error
1427 except:
1428 reporter.logXcpt('Error importing (XP)COM related stuff for exception hacks and errors');
1429 return False;
1430 __deployExceptionHacks__(NativeComExceptionClass)
1431 ComError.copyErrors(NativeComErrorClass);
1432
1433 # Create the manager.
1434 try:
1435 self.oVBoxMgr = VirtualBoxManager(None, None)
1436 except:
1437 self.oVBoxMgr = None;
1438 reporter.logXcpt('VirtualBoxManager exception');
1439 return False;
1440
1441 # Figure the API version.
1442 try:
1443 oVBox = self.oVBoxMgr.getVirtualBox();
1444
1445 try:
1446 sVer = oVBox.version;
1447 except:
1448 reporter.logXcpt('Failed to get VirtualBox version, assuming 4.0.0');
1449 sVer = "4.0.0";
1450 reporter.log("IVirtualBox.version=%s" % (sVer,));
1451
1452 # Convert the string to three integer values and check ranges.
1453 asVerComponents = sVer.split('.');
1454 try:
1455 sLast = asVerComponents[2].split('_')[0].split('r')[0];
1456 aiVerComponents = (int(asVerComponents[0]), int(asVerComponents[1]), int(sLast));
1457 except:
1458 raise base.GenError('Malformed version "%s"' % (sVer,));
1459 if aiVerComponents[0] < 3 or aiVerComponents[0] > 19:
1460 raise base.GenError('Malformed version "%s" - 1st component is out of bounds 3..19: %u'
1461 % (sVer, aiVerComponents[0]));
1462 if aiVerComponents[1] < 0 or aiVerComponents[1] > 9:
1463 raise base.GenError('Malformed version "%s" - 2nd component is out of bounds 0..9: %u'
1464 % (sVer, aiVerComponents[1]));
1465 if aiVerComponents[2] < 0 or aiVerComponents[2] > 99:
1466 raise base.GenError('Malformed version "%s" - 3rd component is out of bounds 0..99: %u'
1467 % (sVer, aiVerComponents[2]));
1468
1469 # Convert the three integers into a floating point value. The API is stable within a
1470 # x.y release, so the third component only indicates whether it's a stable or
1471 # development build of the next release.
1472 self.fpApiVer = aiVerComponents[0] + 0.1 * aiVerComponents[1];
1473 if aiVerComponents[2] >= 71:
1474 if self.fpApiVer not in [6.1, 5.2, 4.3, 3.2,]:
1475 self.fpApiVer += 0.1;
1476 else:
1477 self.fpApiVer = int(self.fpApiVer) + 1.0;
1478 # fudge value to be always bigger than the nominal value (0.1 gets rounded down)
1479 if round(self.fpApiVer, 1) > self.fpApiVer:
1480 self.fpApiVer += sys.float_info.epsilon * self.fpApiVer / 2.0;
1481
1482 try:
1483 self.uRevision = oVBox.revision;
1484 except:
1485 reporter.logXcpt('Failed to get VirtualBox revision, assuming 0');
1486 self.uRevision = 0;
1487 reporter.log("IVirtualBox.revision=%u" % (self.uRevision,));
1488
1489 try:
1490 self.uApiRevision = oVBox.APIRevision;
1491 except:
1492 reporter.logXcpt('Failed to get VirtualBox APIRevision, faking it.');
1493 self.uApiRevision = self.makeApiRevision(aiVerComponents[0], aiVerComponents[1], aiVerComponents[2], 0);
1494 reporter.log("IVirtualBox.APIRevision=%#x" % (self.uApiRevision,));
1495
1496 # Patch VBox manage to gloss over portability issues (error constants, etc).
1497 self._patchVBoxMgr();
1498
1499 # Wrap oVBox.
1500 from testdriver.vboxwrappers import VirtualBoxWrapper;
1501 self.oVBox = VirtualBoxWrapper(oVBox, self.oVBoxMgr, self.fpApiVer, self);
1502
1503 # Install the constant wrapping hack.
1504 vboxcon.goHackModuleClass.oVBoxMgr = self.oVBoxMgr; # VBoxConstantWrappingHack.
1505 vboxcon.fpApiVer = self.fpApiVer;
1506 reporter.setComXcptFormatter(formatComOrXpComException);
1507
1508 # Enable possibly not production ready code which should be tested.
1509 if self.fpApiVer >= 7.1 and utils.getHostArch() == 'arm64':
1510 self.oVBox.setExtraData('VBoxInternal2/EnableX86OnArm', '1');
1511
1512 except:
1513 self.oVBoxMgr = None;
1514 self.oVBox = None;
1515 reporter.logXcpt("getVirtualBox / API version exception");
1516 return False;
1517
1518 # Done
1519 self.fImportedVBoxApi = True;
1520 reporter.log('Found version %s (%s)' % (self.fpApiVer, sVer));
1521 return True;
1522
1523 def _patchVBoxMgr(self):
1524 """
1525 Glosses over missing self.oVBoxMgr methods on older VBox versions.
1526 """
1527
1528 def _xcptGetResult(oSelf, oXcpt = None):
1529 """ See vboxapi. """
1530 _ = oSelf;
1531 if oXcpt is None: oXcpt = sys.exc_info()[1];
1532 if sys.platform == 'win32':
1533 import winerror; # pylint: disable=import-error
1534 hrXcpt = oXcpt.hresult;
1535 if hrXcpt == winerror.DISP_E_EXCEPTION:
1536 hrXcpt = oXcpt.excepinfo[5];
1537 else:
1538 hrXcpt = oXcpt.error;
1539 return hrXcpt;
1540
1541 def _xcptIsDeadInterface(oSelf, oXcpt = None):
1542 """ See vboxapi. """
1543 return oSelf.xcptGetStatus(oXcpt) in [
1544 0x80004004, -2147467260, # NS_ERROR_ABORT
1545 0x800706be, -2147023170, # NS_ERROR_CALL_FAILED (RPC_S_CALL_FAILED)
1546 0x800706ba, -2147023174, # RPC_S_SERVER_UNAVAILABLE.
1547 0x800706be, -2147023170, # RPC_S_CALL_FAILED.
1548 0x800706bf, -2147023169, # RPC_S_CALL_FAILED_DNE.
1549 0x80010108, -2147417848, # RPC_E_DISCONNECTED.
1550 0x800706b5, -2147023179, # RPC_S_UNKNOWN_IF
1551 ];
1552
1553 def _xcptIsOurXcptKind(oSelf, oXcpt = None):
1554 """ See vboxapi. """
1555 _ = oSelf;
1556 if oXcpt is None: oXcpt = sys.exc_info()[1];
1557 if sys.platform == 'win32':
1558 from pythoncom import com_error as NativeComExceptionClass # pylint: disable=import-error,no-name-in-module
1559 else:
1560 from xpcom import Exception as NativeComExceptionClass # pylint: disable=import-error
1561 return isinstance(oXcpt, NativeComExceptionClass);
1562
1563 def _xcptIsEqual(oSelf, oXcpt, hrStatus):
1564 """ See vboxapi. """
1565 hrXcpt = oSelf.xcptGetResult(oXcpt);
1566 return hrXcpt == hrStatus or hrXcpt == hrStatus - 0x100000000; # pylint: disable=consider-using-in
1567
1568 def _xcptToString(oSelf, oXcpt):
1569 """ See vboxapi. """
1570 _ = oSelf;
1571 if oXcpt is None: oXcpt = sys.exc_info()[1];
1572 return str(oXcpt);
1573
1574 def _getEnumValueName(oSelf, sEnumTypeNm, oEnumValue, fTypePrefix = False):
1575 """ See vboxapi. """
1576 _ = oSelf; _ = fTypePrefix;
1577 return '%s::%s' % (sEnumTypeNm, oEnumValue);
1578
1579 # Add utilities found in newer vboxapi revision.
1580 if not hasattr(self.oVBoxMgr, 'xcptIsDeadInterface'):
1581 import types;
1582 self.oVBoxMgr.xcptGetResult = types.MethodType(_xcptGetResult, self.oVBoxMgr);
1583 self.oVBoxMgr.xcptIsDeadInterface = types.MethodType(_xcptIsDeadInterface, self.oVBoxMgr);
1584 self.oVBoxMgr.xcptIsOurXcptKind = types.MethodType(_xcptIsOurXcptKind, self.oVBoxMgr);
1585 self.oVBoxMgr.xcptIsEqual = types.MethodType(_xcptIsEqual, self.oVBoxMgr);
1586 self.oVBoxMgr.xcptToString = types.MethodType(_xcptToString, self.oVBoxMgr);
1587 if not hasattr(self.oVBoxMgr, 'getEnumValueName'):
1588 import types;
1589 self.oVBoxMgr.getEnumValueName = types.MethodType(_getEnumValueName, self.oVBoxMgr);
1590
1591
1592 def _teardownVBoxApi(self): # pylint: disable=too-many-statements
1593 """
1594 Drop all VBox object references and shutdown com/xpcom.
1595 """
1596 if not self.fImportedVBoxApi:
1597 return True;
1598 import gc;
1599
1600 # Drop all references we've have to COM objects.
1601 self.aoRemoteSessions = [];
1602 self.aoVMs = [];
1603 self.oVBoxMgr = None;
1604 self.oVBox = None;
1605 vboxcon.goHackModuleClass.oVBoxMgr = None; # VBoxConstantWrappingHack.
1606 reporter.setComXcptFormatter(None);
1607
1608 # Do garbage collection to try get rid of those objects.
1609 try:
1610 gc.collect();
1611 except:
1612 reporter.logXcpt();
1613 self.fImportedVBoxApi = False;
1614
1615 # Check whether the python is still having any COM objects/interfaces around.
1616 cVBoxMgrs = 0;
1617 aoObjsLeftBehind = [];
1618 if self.sHost == 'win':
1619 import pythoncom; # pylint: disable=import-error
1620 try:
1621 cIfs = pythoncom._GetInterfaceCount(); # pylint: disable=no-member,protected-access
1622 cObjs = pythoncom._GetGatewayCount(); # pylint: disable=no-member,protected-access
1623 if cObjs == 0 and cIfs == 0:
1624 reporter.log('_teardownVBoxApi: no interfaces or objects left behind.');
1625 else:
1626 reporter.log('_teardownVBoxApi: Python COM still has %s objects and %s interfaces...' % ( cObjs, cIfs));
1627
1628 from win32com.client import DispatchBaseClass; # pylint: disable=import-error
1629 for oObj in gc.get_objects():
1630 if isinstance(oObj, DispatchBaseClass):
1631 reporter.log('_teardownVBoxApi: %s' % (oObj,));
1632 aoObjsLeftBehind.append(oObj);
1633 elif utils.getObjectTypeName(oObj) == 'VirtualBoxManager':
1634 reporter.log('_teardownVBoxApi: %s' % (oObj,));
1635 cVBoxMgrs += 1;
1636 aoObjsLeftBehind.append(oObj);
1637 oObj = None;
1638 except:
1639 reporter.logXcpt();
1640
1641 # If not being used, we can safely uninitialize COM.
1642 if cIfs == 0 and cObjs == 0 and cVBoxMgrs == 0 and not aoObjsLeftBehind:
1643 reporter.log('_teardownVBoxApi: Calling CoUninitialize...');
1644 try: pythoncom.CoUninitialize(); # pylint: disable=no-member
1645 except: reporter.logXcpt();
1646 else:
1647 reporter.log('_teardownVBoxApi: Returned from CoUninitialize.');
1648 else:
1649 try:
1650 # XPCOM doesn't crash and burn like COM if you shut it down with interfaces and objects around.
1651 # Also, it keeps a number of internal objects and interfaces around to do its job, so shutting
1652 # it down before we go looking for dangling interfaces is more or less required.
1653 from xpcom import _xpcom as _xpcom; # pylint: disable=import-error,useless-import-alias
1654 hrc = _xpcom.DeinitCOM();
1655 cIfs = _xpcom._GetInterfaceCount(); # pylint: disable=protected-access
1656 cObjs = _xpcom._GetGatewayCount(); # pylint: disable=protected-access
1657
1658 if cObjs == 0 and cIfs == 0:
1659 reporter.log('_teardownVBoxApi: No XPCOM interfaces or objects active. (hrc=%#x)' % (hrc,));
1660 else:
1661 reporter.log('_teardownVBoxApi: %s XPCOM objects and %s interfaces still around! (hrc=%#x)'
1662 % (cObjs, cIfs, hrc));
1663 if hasattr(_xpcom, '_DumpInterfaces'):
1664 try: _xpcom._DumpInterfaces(); # pylint: disable=protected-access
1665 except: reporter.logXcpt('_teardownVBoxApi: _DumpInterfaces failed');
1666
1667 from xpcom.client import Component; # pylint: disable=import-error
1668 for oObj in gc.get_objects():
1669 if isinstance(oObj, Component):
1670 reporter.log('_teardownVBoxApi: %s' % (oObj,));
1671 aoObjsLeftBehind.append(oObj);
1672 if utils.getObjectTypeName(oObj) == 'VirtualBoxManager':
1673 reporter.log('_teardownVBoxApi: %s' % (oObj,));
1674 cVBoxMgrs += 1;
1675 aoObjsLeftBehind.append(oObj);
1676 oObj = None;
1677 except:
1678 reporter.logXcpt();
1679
1680 # Try get the referrers to (XP)COM interfaces and objects that was left behind.
1681 for iObj in range(len(aoObjsLeftBehind)): # pylint: disable=consider-using-enumerate
1682 try:
1683 aoReferrers = gc.get_referrers(aoObjsLeftBehind[iObj]);
1684 reporter.log('_teardownVBoxApi: Found %u referrers to %s:' % (len(aoReferrers), aoObjsLeftBehind[iObj],));
1685 for oReferrer in aoReferrers:
1686 oMyFrame = sys._getframe(0); # pylint: disable=protected-access
1687 if oReferrer is oMyFrame:
1688 reporter.log('_teardownVBoxApi: - frame of this function');
1689 elif oReferrer is aoObjsLeftBehind:
1690 reporter.log('_teardownVBoxApi: - aoObjsLeftBehind');
1691 else:
1692 fPrinted = False;
1693 if isinstance(oReferrer, (dict, list, tuple)):
1694 try:
1695 aoSubReferreres = gc.get_referrers(oReferrer);
1696 for oSubRef in aoSubReferreres:
1697 if not isinstance(oSubRef, list) \
1698 and not isinstance(oSubRef, dict) \
1699 and oSubRef is not oMyFrame \
1700 and oSubRef is not aoSubReferreres:
1701 reporter.log('_teardownVBoxApi: - %s :: %s:'
1702 % (utils.getObjectTypeName(oSubRef), utils.getObjectTypeName(oReferrer)));
1703 fPrinted = True;
1704 break;
1705 del aoSubReferreres;
1706 except:
1707 reporter.logXcpt('subref');
1708 if not fPrinted:
1709 reporter.log('_teardownVBoxApi: - %s:' % (utils.getObjectTypeName(oReferrer),));
1710 try:
1711 import pprint;
1712 for sLine in pprint.pformat(oReferrer, width = 130).split('\n'):
1713 reporter.log('_teardownVBoxApi: %s' % (sLine,));
1714 except:
1715 reporter.log('_teardownVBoxApi: %s' % (oReferrer,));
1716 except:
1717 reporter.logXcpt();
1718 del aoObjsLeftBehind;
1719
1720 # Force garbage collection again, just for good measure.
1721 try:
1722 gc.collect();
1723 time.sleep(0.5); # fudge factor
1724 except:
1725 reporter.logXcpt();
1726 return True;
1727
1728 def _powerOffAllVms(self):
1729 """
1730 Tries to power off all running VMs.
1731 """
1732 for oSession in self.aoRemoteSessions:
1733 uPid = oSession.getPid();
1734 if uPid is not None:
1735 reporter.log('_powerOffAllVms: PID is %s for %s, trying to kill it.' % (uPid, oSession.sName,));
1736 base.processKill(uPid);
1737 else:
1738 reporter.log('_powerOffAllVms: No PID for %s' % (oSession.sName,));
1739 oSession.close();
1740 return None;
1741
1742
1743
1744 #
1745 # Build type, OS and arch getters.
1746 #
1747
1748 def getBuildType(self):
1749 """
1750 Get the build type.
1751 """
1752 if not self._detectBuild():
1753 return 'release';
1754 return self.oBuild.sType;
1755
1756 def getBuildOs(self):
1757 """
1758 Get the build OS.
1759 """
1760 if not self._detectBuild():
1761 return self.sHost;
1762 return self.oBuild.sOs;
1763
1764 def getBuildArch(self):
1765 """
1766 Get the build arch.
1767 """
1768 if not self._detectBuild():
1769 return self.sHostArch;
1770 return self.oBuild.sArch;
1771
1772 def getGuestAdditionsIso(self):
1773 """
1774 Get the path to the guest addition iso.
1775 """
1776 if not self._detectBuild():
1777 return None;
1778 return self.oBuild.sGuestAdditionsIso;
1779
1780 @staticmethod
1781 def versionToTuple(sVer, fIgnoreErrors = False):
1782 """
1783 Returns a semantic versioning string as a tuple.
1784 """
1785 try:
1786 # Regular expression taken from semver.org (recommended regular expression for semantic version strings).
1787 # Creative Commons ― CC BY 3.0
1788 #
1789 # Modified to also recognize our semantics:
1790 # - We use "-BETA2" instead of "_BETA2".
1791 oRegEx = re.compile(r'^(0|[1-9]\d*)\.(0|[1-9]\d*)\.(0|[1-9]\d*)(?:[-|_]((?:0|[1-9]\d*|\d*[a-zA-Z-][0-9a-zA-Z-]*)(?:\.(?:0|[1-9]\d*|\d*[a-zA-Z-][0-9a-zA-Z-]*))*))?(?:\+([0-9a-zA-Z-]+(?:\.[0-9a-zA-Z-]+)*))?$'); # pylint: disable=line-too-long
1792 oMatch = oRegEx.search(sVer);
1793 return oMatch.groups();
1794 except:
1795 if not fIgnoreErrors:
1796 reporter.logXcpt('Handling regex for "%s" failed' % (sVer,));
1797 return None;
1798
1799 @staticmethod
1800 def compareVersion(sVer1, sVer2, fIgnoreErrors = False):
1801 """
1802 Compares two version numbers and returns the result.
1803
1804 Takes either strings or version tuples as input.
1805
1806 Returns 0 if both versions match.
1807 Return -1 if version 1 is bigger than version 2.
1808 Return 1 if version 2 is bigger than version 1.
1809 Returns None on error.
1810 """
1811 assert sVer1 is not None;
1812 assert sVer2 is not None;
1813 try:
1814 tpVer1 = TestDriver.versionToTuple(sVer1, fIgnoreErrors);
1815 if tpVer1 is None:
1816 return None;
1817 tpVer2 = TestDriver.versionToTuple(sVer2, fIgnoreErrors);
1818 if tpVer2 is None:
1819 return None;
1820 if tpVer1 == tpVer2:
1821 return 0;
1822 return 1 if tuple(map(str, tpVer2)) > tuple(map(str, tpVer1)) else -1;
1823 except:
1824 if not fIgnoreErrors:
1825 reporter.logXcpt();
1826 return None;
1827
1828 @staticmethod
1829 def isVersionEqualOrBigger(sVer1, sVer2, fIgnoreErrors = False):
1830 """
1831 Checks whether version 1 is equal or bigger than version 2.
1832
1833 Returns True if version 1 is equal or bigger than version 2, False if not.
1834 """
1835 return not TestDriver.compareVersion(sVer1, sVer2, fIgnoreErrors);
1836
1837 def getGuestAdditionsVersion(self, oSession, fIgnoreErrors = False):
1838 """
1839 Returns the installed Guest Additions version.
1840
1841 Returns version as a string (e.g. "7.0.6-beta2-whatever"), or None if not found / on error.
1842 """
1843 assert oSession is not None;
1844 try:
1845 return oSession.o.console.guest.additionsVersion;
1846 except:
1847 if not fIgnoreErrors:
1848 reporter.errorXcpt('Getting the Guest Additions version failed');
1849 return None;
1850
1851 def getGuestAdditionsRevision(self, oSession, fIgnoreErrors = False):
1852 """
1853 Returns the installed Guest Additions (SVN) revision.
1854
1855 Returns revision as a string (e.g. "123456"), or None if not found / on error.
1856 """
1857 assert oSession is not None;
1858 try:
1859 return oSession.o.console.guest.additionsRevision;
1860 except:
1861 if not fIgnoreErrors:
1862 reporter.errorXcpt('Getting the Guest Additions revision failed');
1863 return None;
1864
1865 #
1866 # Override everything from the base class so the testdrivers don't have to
1867 # check whether we have overridden a method or not.
1868 #
1869
1870 def showUsage(self):
1871 rc = base.TestDriver.showUsage(self);
1872 reporter.log('');
1873 reporter.log('Generic VirtualBox Options:');
1874 reporter.log(' --vbox-session-type <type>');
1875 reporter.log(' Sets the session type. Typical values are: gui, headless, sdl');
1876 reporter.log(' Default: %s' % (self.sSessionTypeDef));
1877 reporter.log(' --vrdp, --no-vrdp');
1878 reporter.log(' Enables VRDP, ports starting at 6000');
1879 reporter.log(' Default: --vrdp');
1880 reporter.log(' --vrdp-base-port <port>');
1881 reporter.log(' Sets the base for VRDP port assignments.');
1882 reporter.log(' Default: %s' % (self.uVrdpBasePortDef));
1883 reporter.log(' --vbox-default-bridged-nic <interface>');
1884 reporter.log(' Sets the default interface for bridged networking.');
1885 reporter.log(' Default: autodetect');
1886 reporter.log(' --vbox-use-svc-defaults');
1887 reporter.log(' Use default locations and files for VBoxSVC. This is useful');
1888 reporter.log(' for automatically configuring the test VMs for debugging.');
1889 reporter.log(' --vbox-log');
1890 reporter.log(' The VBox logger group settings for everyone.');
1891 reporter.log(' --vbox-log-flags');
1892 reporter.log(' The VBox logger flags settings for everyone.');
1893 reporter.log(' --vbox-log-dest');
1894 reporter.log(' The VBox logger destination settings for everyone.');
1895 reporter.log(' --vbox-self-log');
1896 reporter.log(' The VBox logger group settings for the testdriver.');
1897 reporter.log(' --vbox-self-log-flags');
1898 reporter.log(' The VBox logger flags settings for the testdriver.');
1899 reporter.log(' --vbox-self-log-dest');
1900 reporter.log(' The VBox logger destination settings for the testdriver.');
1901 reporter.log(' --vbox-session-log');
1902 reporter.log(' The VM session logger group settings.');
1903 reporter.log(' --vbox-session-log-flags');
1904 reporter.log(' The VM session logger flags.');
1905 reporter.log(' --vbox-session-log-dest');
1906 reporter.log(' The VM session logger destination settings.');
1907 reporter.log(' --vbox-svc-log');
1908 reporter.log(' The VBoxSVC logger group settings.');
1909 reporter.log(' --vbox-svc-log-flags');
1910 reporter.log(' The VBoxSVC logger flag settings.');
1911 reporter.log(' --vbox-svc-log-dest');
1912 reporter.log(' The VBoxSVC logger destination settings.');
1913 reporter.log(' --vbox-svc-debug');
1914 reporter.log(' Start VBoxSVC in a debugger.');
1915 reporter.log(' --vbox-svc-wait-debug');
1916 reporter.log(' Start VBoxSVC and wait for debugger to attach to it.');
1917 reporter.log(' --vbox-always-upload-logs');
1918 reporter.log(' Whether to always upload log files, or only do so on failure.');
1919 reporter.log(' --vbox-always-upload-screenshots');
1920 reporter.log(' Whether to always upload final screen shots, or only do so on failure.');
1921 reporter.log(' --vbox-always-upload-recordings, --no-vbox-always-upload-recordings');
1922 reporter.log(' Whether to always upload recordings, or only do so on failure.');
1923 reporter.log(' Default: --no-vbox-always-upload-recordings');
1924 reporter.log(' --vbox-debugger, --no-vbox-debugger');
1925 reporter.log(' Enables the VBox debugger, port at 5000');
1926 reporter.log(' Default: --vbox-debugger');
1927 reporter.log(' --vbox-recording, --no-vbox-recording');
1928 reporter.log(' Enables/disables recording.');
1929 reporter.log(' Default: --no-vbox-recording');
1930 reporter.log(' --vbox-recording-audio, --no-vbox-recording-audio');
1931 reporter.log(' Enables/disables audio recording.');
1932 reporter.log(' Default: --no-vbox-recording-audio');
1933 reporter.log(' --vbox-recording-max-time <seconds>');
1934 reporter.log(' Limits the maximum recording time in seconds.');
1935 reporter.log(' Default: Unlimited.');
1936 reporter.log(' --vbox-recording-max-file-size <MiB>');
1937 reporter.log(' Limits the maximum per-file size in MiB.');
1938 reporter.log(' Explicitly specify 0 for unlimited size.');
1939 reporter.log(' Default: 195 MB.');
1940 reporter.log(' --vbox-vm-no-terminate');
1941 reporter.log(' Does not terminate the test VM after running the test driver.');
1942 if self.oTestVmSet is not None:
1943 self.oTestVmSet.showUsage();
1944 return rc;
1945
1946 def parseOption(self, asArgs, iArg): # pylint: disable=too-many-branches,too-many-statements
1947 if asArgs[iArg] == '--vbox-session-type':
1948 iArg += 1;
1949 if iArg >= len(asArgs):
1950 raise base.InvalidOption('The "--vbox-session-type" takes an argument');
1951 self.sSessionType = asArgs[iArg];
1952 elif asArgs[iArg] == '--vrdp':
1953 self.fEnableVrdp = True;
1954 elif asArgs[iArg] == '--no-vrdp':
1955 self.fEnableVrdp = False;
1956 elif asArgs[iArg] == '--vrdp-base-port':
1957 iArg += 1;
1958 if iArg >= len(asArgs):
1959 raise base.InvalidOption('The "--vrdp-base-port" takes an argument');
1960 try: self.uVrdpBasePort = int(asArgs[iArg]);
1961 except: raise base.InvalidOption('The "--vrdp-base-port" value "%s" is not a valid integer' % (asArgs[iArg],));
1962 if self.uVrdpBasePort <= 0 or self.uVrdpBasePort >= 65530:
1963 raise base.InvalidOption('The "--vrdp-base-port" value "%s" is not in the valid range (1..65530)'
1964 % (asArgs[iArg],));
1965 elif asArgs[iArg] == '--vbox-default-bridged-nic':
1966 iArg += 1;
1967 if iArg >= len(asArgs):
1968 raise base.InvalidOption('The "--vbox-default-bridged-nic" takes an argument');
1969 self.sDefBridgedNic = asArgs[iArg];
1970 elif asArgs[iArg] == '--vbox-use-svc-defaults':
1971 self.fUseDefaultSvc = True;
1972 elif asArgs[iArg] == '--vbox-self-log':
1973 iArg += 1;
1974 if iArg >= len(asArgs):
1975 raise base.InvalidOption('The "--vbox-self-log" takes an argument');
1976 self.sLogSelfGroups = asArgs[iArg];
1977 elif asArgs[iArg] == '--vbox-self-log-flags':
1978 iArg += 1;
1979 if iArg >= len(asArgs):
1980 raise base.InvalidOption('The "--vbox-self-log-flags" takes an argument');
1981 self.sLogSelfFlags = asArgs[iArg];
1982 elif asArgs[iArg] == '--vbox-self-log-dest':
1983 iArg += 1;
1984 if iArg >= len(asArgs):
1985 raise base.InvalidOption('The "--vbox-self-log-dest" takes an argument');
1986 self.sLogSelfDest = asArgs[iArg];
1987 elif asArgs[iArg] == '--vbox-session-log':
1988 iArg += 1;
1989 if iArg >= len(asArgs):
1990 raise base.InvalidOption('The "--vbox-session-log" takes an argument');
1991 self.sLogSessionGroups = asArgs[iArg];
1992 elif asArgs[iArg] == '--vbox-session-log-flags':
1993 iArg += 1;
1994 if iArg >= len(asArgs):
1995 raise base.InvalidOption('The "--vbox-session-log-flags" takes an argument');
1996 self.sLogSessionFlags = asArgs[iArg];
1997 elif asArgs[iArg] == '--vbox-session-log-dest':
1998 iArg += 1;
1999 if iArg >= len(asArgs):
2000 raise base.InvalidOption('The "--vbox-session-log-dest" takes an argument');
2001 self.sLogSessionDest = asArgs[iArg];
2002 elif asArgs[iArg] == '--vbox-svc-log':
2003 iArg += 1;
2004 if iArg >= len(asArgs):
2005 raise base.InvalidOption('The "--vbox-svc-log" takes an argument');
2006 self.sLogSvcGroups = asArgs[iArg];
2007 elif asArgs[iArg] == '--vbox-svc-log-flags':
2008 iArg += 1;
2009 if iArg >= len(asArgs):
2010 raise base.InvalidOption('The "--vbox-svc-log-flags" takes an argument');
2011 self.sLogSvcFlags = asArgs[iArg];
2012 elif asArgs[iArg] == '--vbox-svc-log-dest':
2013 iArg += 1;
2014 if iArg >= len(asArgs):
2015 raise base.InvalidOption('The "--vbox-svc-log-dest" takes an argument');
2016 self.sLogSvcDest = asArgs[iArg];
2017 elif asArgs[iArg] == '--vbox-log':
2018 iArg += 1;
2019 if iArg >= len(asArgs):
2020 raise base.InvalidOption('The "--vbox-log" takes an argument');
2021 self.sLogSelfGroups = asArgs[iArg];
2022 self.sLogSessionGroups = asArgs[iArg];
2023 self.sLogSvcGroups = asArgs[iArg];
2024 elif asArgs[iArg] == '--vbox-log-flags':
2025 iArg += 1;
2026 if iArg >= len(asArgs):
2027 raise base.InvalidOption('The "--vbox-svc-flags" takes an argument');
2028 self.sLogSelfFlags = asArgs[iArg];
2029 self.sLogSessionFlags = asArgs[iArg];
2030 self.sLogSvcFlags = asArgs[iArg];
2031 elif asArgs[iArg] == '--vbox-log-dest':
2032 iArg += 1;
2033 if iArg >= len(asArgs):
2034 raise base.InvalidOption('The "--vbox-log-dest" takes an argument');
2035 self.sLogSelfDest = asArgs[iArg];
2036 self.sLogSessionDest = asArgs[iArg];
2037 self.sLogSvcDest = asArgs[iArg];
2038 elif asArgs[iArg] == '--vbox-svc-debug':
2039 self.fVBoxSvcInDebugger = True;
2040 elif asArgs[iArg] == '--vbox-svc-wait-debug':
2041 self.fVBoxSvcWaitForDebugger = True;
2042 elif asArgs[iArg] == '--vbox-always-upload-logs':
2043 self.fAlwaysUploadLogs = True;
2044 elif asArgs[iArg] == '--vbox-always-upload-screenshots':
2045 self.fAlwaysUploadScreenshots = True;
2046 elif asArgs[iArg] == '--no-vbox-always-upload-recordings':
2047 self.fAlwaysUploadRecordings = False;
2048 elif asArgs[iArg] == '--vbox-always-upload-recordings':
2049 self.fAlwaysUploadRecordings = True;
2050 elif asArgs[iArg] == '--vbox-debugger':
2051 self.fEnableDebugger = True;
2052 elif asArgs[iArg] == '--no-vbox-debugger':
2053 self.fEnableDebugger = False;
2054 elif asArgs[iArg] == '--vbox-recording':
2055 self.fRecordingEnabled = True;
2056 elif asArgs[iArg] == '--vbox-no-recording':
2057 self.fRecordingEnabled = False;
2058 elif asArgs[iArg] == '--no-vbox-recording-audio':
2059 self.fRecordingAudio = False;
2060 elif asArgs[iArg] == '--vbox-recording-audio':
2061 self.fRecordingAudio = True;
2062 elif asArgs[iArg] == '--vbox-recording-max-time':
2063 iArg += 1;
2064 if iArg >= len(asArgs):
2065 raise base.InvalidOption('The "--vbox-recording-max-time" takes an argument');
2066 self.cSecsRecordingMax = int(asArgs[iArg]);
2067 elif asArgs[iArg] == '--vbox-recording-max-file-size':
2068 iArg += 1;
2069 if iArg >= len(asArgs):
2070 raise base.InvalidOption('The "--vbox-recording-max-file-size" takes an argument');
2071 self.cMbRecordingMax = int(asArgs[iArg]);
2072 elif asArgs[iArg] == '--vbox-vm-no-terminate':
2073 self.fVmNoTerminate = True;
2074 else:
2075 # Relevant for selecting VMs to test?
2076 if self.oTestVmSet is not None:
2077 iRc = self.oTestVmSet.parseOption(asArgs, iArg);
2078 if iRc != iArg:
2079 return iRc;
2080
2081 # Hand it to the base class.
2082 return base.TestDriver.parseOption(self, asArgs, iArg);
2083 return iArg + 1;
2084
2085 def completeOptions(self):
2086 return base.TestDriver.completeOptions(self);
2087
2088 def getNetworkAdapterNameFromType(self, oNic):
2089 """
2090 Returns the network adapter name from a given adapter type.
2091
2092 Returns an empty string if not found / invalid.
2093 """
2094 sAdpName = '';
2095 if oNic.adapterType in (vboxcon.NetworkAdapterType_Am79C970A, \
2096 vboxcon.NetworkAdapterType_Am79C973, \
2097 vboxcon.NetworkAdapterType_Am79C960):
2098 sAdpName = 'pcnet';
2099 elif oNic.adapterType in (vboxcon.NetworkAdapterType_I82540EM, \
2100 vboxcon.NetworkAdapterType_I82543GC, \
2101 vboxcon.NetworkAdapterType_I82545EM):
2102 sAdpName = 'e1000';
2103 elif oNic.adapterType == vboxcon.NetworkAdapterType_Virtio:
2104 sAdpName = 'virtio-net';
2105 return sAdpName;
2106
2107 def getResourceSet(self):
2108 asRsrcs = [];
2109 if self.oTestVmSet is not None:
2110 asRsrcs.extend(self.oTestVmSet.getResourceSet());
2111 asRsrcs.extend(base.TestDriver.getResourceSet(self));
2112 return asRsrcs;
2113
2114 def actionExtract(self):
2115 return base.TestDriver.actionExtract(self);
2116
2117 def actionVerify(self):
2118 return base.TestDriver.actionVerify(self);
2119
2120 def actionConfig(self):
2121 return base.TestDriver.actionConfig(self);
2122
2123 def actionExecute(self):
2124 return base.TestDriver.actionExecute(self);
2125
2126 def actionCleanupBefore(self):
2127 """
2128 Kill any VBoxSVC left behind by a previous test run.
2129 """
2130 self._killVBoxSVCByPidFile('%s/VBoxSVC.pid' % (self.sScratchPath,));
2131 return base.TestDriver.actionCleanupBefore(self);
2132
2133 def actionCleanupAfter(self):
2134 """
2135 Clean up the VBox bits and then call the base driver.
2136
2137 If your test driver overrides this, it should normally call us at the
2138 end of the job.
2139 """
2140 cErrorsEntry = reporter.getErrorCount();
2141
2142 # Kill any left over VM processes.
2143 self._powerOffAllVms();
2144
2145 # Drop all VBox object references and shutdown xpcom then
2146 # terminating VBoxSVC, with extreme prejudice if need be.
2147 self._teardownVBoxApi();
2148 self._stopVBoxSVC();
2149
2150 # Add the VBoxSVC and testdriver debug+release log files.
2151 if self.fAlwaysUploadLogs or reporter.getErrorCount() > 0:
2152 if self.sVBoxSvcLogFile is not None and os.path.isfile(self.sVBoxSvcLogFile):
2153 reporter.addLogFile(self.sVBoxSvcLogFile, 'log/debug/svc', 'Debug log file for VBoxSVC');
2154 self.sVBoxSvcLogFile = None;
2155
2156 if self.sSelfLogFile is not None and os.path.isfile(self.sSelfLogFile):
2157 reporter.addLogFile(self.sSelfLogFile, 'log/debug/client', 'Debug log file for the test driver');
2158 self.sSelfLogFile = None;
2159
2160 if self.sSessionLogFile is not None and os.path.isfile(self.sSessionLogFile):
2161 reporter.addLogFile(self.sSessionLogFile, 'log/debug/session', 'Debug log file for the VM session');
2162 self.sSessionLogFile = None;
2163
2164 sVBoxSvcRelLog = os.path.join(self.sScratchPath, 'VBoxUserHome', 'VBoxSVC.log');
2165 if os.path.isfile(sVBoxSvcRelLog):
2166 reporter.addLogFile(sVBoxSvcRelLog, 'log/release/svc', 'Release log file for VBoxSVC');
2167 for sSuff in [ '.1', '.2', '.3', '.4', '.5', '.6', '.7', '.8' ]:
2168 if os.path.isfile(sVBoxSvcRelLog + sSuff):
2169 reporter.addLogFile(sVBoxSvcRelLog + sSuff, 'log/release/svc', 'Release log file for VBoxSVC');
2170
2171 # Finally, call the base driver to wipe the scratch space.
2172 fRc = base.TestDriver.actionCleanupAfter(self);
2173
2174 # Flag failure if the error count increased.
2175 if reporter.getErrorCount() > cErrorsEntry:
2176 fRc = False;
2177 return fRc;
2178
2179
2180 def actionAbort(self):
2181 """
2182 Terminate VBoxSVC if we've got a pid file.
2183 """
2184 #
2185 # Take default action first, then kill VBoxSVC. The other way around
2186 # is problematic since the testscript would continue running and possibly
2187 # trigger a new VBoxSVC to start.
2188 #
2189 fRc1 = base.TestDriver.actionAbort(self);
2190 fRc2 = self._killVBoxSVCByPidFile('%s/VBoxSVC.pid' % (self.sScratchPath,));
2191 return fRc1 is True and fRc2 is True;
2192
2193 def onExit(self, iRc):
2194 """
2195 Stop VBoxSVC if we've started it.
2196 """
2197 if not self.fVmNoTerminate \
2198 and self.oVBoxSvcProcess is not None:
2199 reporter.log('*** Shutting down the VBox API... (iRc=%s)' % (iRc,));
2200 self._powerOffAllVms();
2201 self._teardownVBoxApi();
2202 self._stopVBoxSVC();
2203 reporter.log('*** VBox API shutdown done.');
2204 return base.TestDriver.onExit(self, iRc);
2205
2206
2207 #
2208 # Task wait method override.
2209 #
2210
2211 def notifyAboutReadyTask(self, oTask):
2212 """
2213 Overriding base.TestDriver.notifyAboutReadyTask.
2214 """
2215 try:
2216 self.oVBoxMgr.interruptWaitEvents();
2217 reporter.log2('vbox.notifyAboutReadyTask: called interruptWaitEvents');
2218 except:
2219 reporter.logXcpt('vbox.notifyAboutReadyTask');
2220 return base.TestDriver.notifyAboutReadyTask(self, oTask);
2221
2222 def waitForTasksSleepWorker(self, cMsTimeout):
2223 """
2224 Overriding base.TestDriver.waitForTasksSleepWorker.
2225 """
2226 try:
2227 rc = self.oVBoxMgr.waitForEvents(int(cMsTimeout));
2228 _ = rc; #reporter.log2('vbox.waitForTasksSleepWorker(%u): true (waitForEvents -> %s)' % (cMsTimeout, rc));
2229 reporter.doPollWork('vbox.TestDriver.waitForTasksSleepWorker');
2230 return True;
2231 except KeyboardInterrupt:
2232 raise;
2233 except:
2234 reporter.logXcpt('vbox.waitForTasksSleepWorker');
2235 return False;
2236
2237 #
2238 # Utility methods.
2239 #
2240
2241 def processEvents(self, cMsTimeout = 0):
2242 """
2243 Processes events, returning after the first batch has been processed
2244 or the time limit has been reached.
2245
2246 Only Ctrl-C exception, no return.
2247 """
2248 try:
2249 self.oVBoxMgr.waitForEvents(cMsTimeout);
2250 except KeyboardInterrupt:
2251 raise;
2252 except:
2253 pass;
2254 return None;
2255
2256 def processPendingEvents(self):
2257 """ processEvents(0) - no waiting. """
2258 return self.processEvents(0);
2259
2260 def sleep(self, cSecs):
2261 """
2262 Sleep for a specified amount of time, processing XPCOM events all the while.
2263 """
2264 cMsTimeout = long(cSecs * 1000);
2265 msStart = base.timestampMilli();
2266 self.processEvents(0);
2267 while True:
2268 cMsElapsed = base.timestampMilli() - msStart;
2269 if cMsElapsed > cMsTimeout:
2270 break;
2271 #reporter.log2('cMsTimeout=%s - cMsElapsed=%d => %s' % (cMsTimeout, cMsElapsed, cMsTimeout - cMsElapsed));
2272 self.processEvents(cMsTimeout - cMsElapsed);
2273 return None;
2274
2275 def _logVmInfoUnsafe(self, oVM): # pylint: disable=too-many-statements,too-many-branches
2276 """
2277 Internal worker for logVmInfo that is wrapped in try/except.
2278 """
2279 reporter.log(" Name: %s" % (oVM.name,));
2280 reporter.log(" ID: %s" % (oVM.id,));
2281 oOsType = self.oVBox.getGuestOSType(oVM.OSTypeId);
2282 if self.fpApiVer >= 7.1:
2283 if oVM.platform.architecture == vboxcon.PlatformArchitecture_ARM:
2284 sArch = 'ARM';
2285 else:
2286 sArch = 'x86';
2287 reporter.log(" Architecture: %s" % (sArch,));
2288 else: # x86 only.
2289 reporter.log(" Architecture: x86");
2290 reporter.log(" OS Type: %s - %s" % (oVM.OSTypeId, oOsType.description,));
2291 reporter.log(" Machine state: %s" % (oVM.state,));
2292 reporter.log(" Session state: %s" % (oVM.sessionState,));
2293 if self.fpApiVer >= 4.2:
2294 reporter.log(" Session PID: %u (%#x)" % (oVM.sessionPID, oVM.sessionPID,));
2295 else:
2296 reporter.log(" Session PID: %u (%#x)" % (oVM.sessionPid, oVM.sessionPid,));
2297 if self.fpApiVer >= 5.0:
2298 reporter.log(" Session Name: %s" % (oVM.sessionName,));
2299 else:
2300 reporter.log(" Session Name: %s" % (oVM.sessionType,));
2301 reporter.log(" CPUs: %s" % (oVM.CPUCount,));
2302 reporter.log(" RAM: %sMB" % (oVM.memorySize,));
2303 if self.fpApiVer >= 6.1 and hasattr(oVM, 'graphicsAdapter'):
2304 reporter.log(" VRAM: %sMB" % (oVM.graphicsAdapter.VRAMSize,));
2305 reporter.log(" Monitors: %s" % (oVM.graphicsAdapter.monitorCount,));
2306 reporter.log(" GraphicsController: %s"
2307 % (self.oVBoxMgr.getEnumValueName('GraphicsControllerType', # pylint: disable=not-callable
2308 oVM.graphicsAdapter.graphicsControllerType),));
2309 else:
2310 reporter.log(" VRAM: %sMB" % (oVM.VRAMSize,));
2311 reporter.log(" Monitors: %s" % (oVM.monitorCount,));
2312 reporter.log(" GraphicsController: %s"
2313 % (self.oVBoxMgr.getEnumValueName('GraphicsControllerType', oVM.graphicsControllerType),)); # pylint: disable=not-callable
2314 if self.fpApiVer >= 7.1:
2315 reporter.log(" Chipset: %s" % (self.oVBoxMgr.getEnumValueName('ChipsetType', oVM.platform.chipsetType),));# pylint: disable=not-callable
2316 if hasattr(vboxcon, 'IommuType_None'):
2317 reporter.log(" IOMMU: %s" % (self.oVBoxMgr.getEnumValueName('IommuType', oVM.platform.iommuType),));# pylint: disable=not-callable
2318 reporter.log(" Firmware: %s"
2319 % (self.oVBoxMgr.getEnumValueName('FirmwareType', oVM.firmwareSettings.firmwareType),)); # pylint: disable=not-callable
2320 if oVM.platform.architecture == vboxcon.PlatformArchitecture_x86:
2321 reporter.log(" HwVirtEx: %s"
2322 % (oVM.platform.x86.getHWVirtExProperty(vboxcon.HWVirtExPropertyType_Enabled),));
2323 reporter.log(" VPID support: %s"
2324 % (oVM.platform.x86.getHWVirtExProperty(vboxcon.HWVirtExPropertyType_VPID),));
2325 reporter.log(" Nested paging: %s"
2326 % (oVM.platform.x86.getHWVirtExProperty(vboxcon.HWVirtExPropertyType_NestedPaging),));
2327 else:
2328 reporter.log(" Chipset: %s" % (self.oVBoxMgr.getEnumValueName('ChipsetType', oVM.chipsetType),)); # pylint: disable=not-callable
2329 if self.fpApiVer >= 6.2 and hasattr(vboxcon, 'IommuType_None'):
2330 reporter.log(" IOMMU: %s" % (self.oVBoxMgr.getEnumValueName('IommuType', oVM.iommuType),)); # pylint: disable=not-callable
2331 reporter.log(" Firmware: %s" % (self.oVBoxMgr.getEnumValueName('FirmwareType', oVM.firmwareType),)); # pylint: disable=not-callable
2332 reporter.log(" HwVirtEx: %s" % (oVM.getHWVirtExProperty(vboxcon.HWVirtExPropertyType_Enabled),));
2333 reporter.log(" VPID support: %s" % (oVM.getHWVirtExProperty(vboxcon.HWVirtExPropertyType_VPID),));
2334 reporter.log(" Nested paging: %s" % (oVM.getHWVirtExProperty(vboxcon.HWVirtExPropertyType_NestedPaging),));
2335 atCpuPropertyTypesX86 = [
2336 ( 'PAE', 'PAE: '),
2337 ( 'LongMode', 'Long-mode: '),
2338 ( 'HWVirt', 'Nested VT-x/AMD-V: '),
2339 ( 'APIC', 'APIC: '),
2340 ( 'X2APIC', 'X2APIC: '),
2341 ( 'TripleFaultReset', 'TripleFaultReset: '),
2342 ( 'IBPBOnVMExit', 'IBPBOnVMExit: '),
2343 ( 'SpecCtrl', 'SpecCtrl: '),
2344 ( 'SpecCtrlByHost', 'SpecCtrlByHost: '),
2345 ## @todo r=andy Add missing properties.
2346 ];
2347 fnGetCpuPropertyX86 = None;
2348 if self.fpApiVer >= 7.1:
2349 sCpuPropertyTypeNamePrefix = 'CpuPropertyTypeX86_';
2350 if oVM.platform.architecture == vboxcon.PlatformArchitecture_x86:
2351 fnGetCpuPropertyX86 = oVM.platform.x86.getCPUProperty;
2352 else:
2353 sCpuPropertyTypeNamePrefix = 'CpuPropertyType_';
2354 fnGetCpuPropertyX86 = oVM.getCPUProperty;
2355 if fnGetCpuPropertyX86:
2356 for sEnumValue, sDesc in atCpuPropertyTypesX86:
2357 if hasattr(vboxcon, sCpuPropertyTypeNamePrefix + sEnumValue):
2358 reporter.log(" %s%s" % (sDesc, fnGetCpuPropertyX86(getattr(vboxcon, sEnumValue)),));
2359 if self.fpApiVer >= 7.1:
2360 reporter.log(" ACPI: %s" % (oVM.firmwareSettings.ACPIEnabled,));
2361 reporter.log(" IO-APIC: %s" % (oVM.firmwareSettings.IOAPICEnabled,));
2362 if oVM.platform.architecture == vboxcon.PlatformArchitecture_x86:
2363 reporter.log(" HPET: %s" % (oVM.platform.x86.HPETEnabled,));
2364 else:
2365 reporter.log(" ACPI: %s" % (oVM.BIOSSettings.ACPIEnabled,));
2366 reporter.log(" IO-APIC: %s" % (oVM.BIOSSettings.IOAPICEnabled,));
2367 if self.fpApiVer >= 3.2:
2368 if self.fpApiVer >= 4.2:
2369 reporter.log(" HPET: %s" % (oVM.HPETEnabled,));
2370 else:
2371 reporter.log(" HPET: %s" % (oVM.hpetEnabled,));
2372 if self.fpApiVer >= 6.1 and hasattr(oVM, 'graphicsAdapter'):
2373 if self.fpApiVer >= 7.1 and hasattr(oVM.graphicsAdapter, 'isFeatureEnabled'):
2374 fAccelerate3DEnabled = \
2375 oVM.graphicsAdapter.isFeatureEnabled(vboxcon.GraphicsFeature_Acceleration3D);
2376 fAccelerate2DVideoEnabled = \
2377 oVM.graphicsAdapter.isFeatureEnabled(vboxcon.GraphicsFeature_Acceleration2DVideo);
2378 else:
2379 fAccelerate3DEnabled = oVM.graphicsAdapter.accelerate3DEnabled;
2380 fAccelerate2DVideoEnabled = oVM.graphicsAdapter.accelerate2DVideoEnabled;
2381 else:
2382 fAccelerate3DEnabled = oVM.accelerate3DEnabled;
2383 fAccelerate2DVideoEnabled = oVM.accelerate2DVideoEnabled;
2384 reporter.log(" 3D acceleration: %s" % (fAccelerate3DEnabled,));
2385 reporter.log(" 2D acceleration: %s" % (fAccelerate2DVideoEnabled,));
2386 reporter.log(" TeleporterEnabled: %s" % (oVM.teleporterEnabled,));
2387 reporter.log(" TeleporterPort: %s" % (oVM.teleporterPort,));
2388 reporter.log(" TeleporterAddress: %s" % (oVM.teleporterAddress,));
2389 reporter.log(" TeleporterPassword: %s" % (oVM.teleporterPassword,));
2390 reporter.log(" Clipboard mode: %s" % (oVM.clipboardMode,));
2391 if self.fpApiVer >= 5.0:
2392 reporter.log(" Drag and drop mode: %s" % (oVM.dnDMode,));
2393 elif self.fpApiVer >= 4.3:
2394 reporter.log(" Drag and drop mode: %s" % (oVM.dragAndDropMode,));
2395 if self.fpApiVer >= 4.0:
2396 reporter.log(" VRDP server: %s" % (oVM.VRDEServer.enabled,));
2397 try: sPorts = oVM.VRDEServer.getVRDEProperty("TCP/Ports");
2398 except: sPorts = "";
2399 reporter.log(" VRDP server ports: %s" % (sPorts,));
2400 reporter.log(" VRDP auth: %s (%s)" % (oVM.VRDEServer.authType, oVM.VRDEServer.authLibrary,));
2401 else:
2402 reporter.log(" VRDP server: %s" % (oVM.VRDPServer.enabled,));
2403 reporter.log(" VRDP server ports: %s" % (oVM.VRDPServer.ports,));
2404 reporter.log(" Last changed: %s" % (oVM.lastStateChange,));
2405
2406 aoControllers = self.oVBoxMgr.getArray(oVM, 'storageControllers')
2407 if aoControllers:
2408 reporter.log(" Controllers:");
2409 for oCtrl in aoControllers:
2410 reporter.log(" %s %s bus: %s type: %s" % (oCtrl.name, oCtrl.controllerType, oCtrl.bus, oCtrl.controllerType,));
2411 if self.fpApiVer >= 7.0:
2412 oAdapter = oVM.audioSettings.adapter;
2413 else:
2414 oAdapter = oVM.audioAdapter;
2415 reporter.log(" AudioController: %s"
2416 % (self.oVBoxMgr.getEnumValueName('AudioControllerType', oAdapter.audioController),)); # pylint: disable=not-callable
2417 reporter.log(" AudioEnabled: %s" % (oAdapter.enabled,));
2418 if self.fpApiVer >= 7.0:
2419 reporter.log(" AudioEnabled In: %s" % (oAdapter.enabledIn,));
2420 reporter.log(" AudioEnabled Out: %s" % (oAdapter.enabledOut,));
2421 reporter.log(" Host AudioDriver: %s"
2422 % (self.oVBoxMgr.getEnumValueName('AudioDriverType', oAdapter.audioDriver),)); # pylint: disable=not-callable
2423
2424 self.processPendingEvents();
2425 aoAttachments = self.oVBoxMgr.getArray(oVM, 'mediumAttachments')
2426 if aoAttachments:
2427 reporter.log(" Attachments:");
2428 for oAtt in aoAttachments:
2429 sCtrl = "Controller: %s port: %s device: %s type: %s" % (oAtt.controller, oAtt.port, oAtt.device, oAtt.type);
2430 oMedium = oAtt.medium
2431 if oAtt.type == vboxcon.DeviceType_HardDisk:
2432 reporter.log(" %s: HDD" % sCtrl);
2433 reporter.log(" Id: %s" % (oMedium.id,));
2434 reporter.log(" Name: %s" % (oMedium.name,));
2435 reporter.log(" Format: %s" % (oMedium.format,));
2436 reporter.log(" Location: %s" % (oMedium.location,));
2437
2438 if oAtt.type == vboxcon.DeviceType_DVD:
2439 reporter.log(" %s: DVD" % sCtrl);
2440 if oMedium:
2441 reporter.log(" Id: %s" % (oMedium.id,));
2442 reporter.log(" Name: %s" % (oMedium.name,));
2443 if oMedium.hostDrive:
2444 reporter.log(" Host DVD %s" % (oMedium.location,));
2445 if oAtt.passthrough:
2446 reporter.log(" [passthrough mode]");
2447 else:
2448 reporter.log(" Virtual image: %s" % (oMedium.location,));
2449 reporter.log(" Size: %s" % (oMedium.size,));
2450 else:
2451 reporter.log(" empty");
2452
2453 if oAtt.type == vboxcon.DeviceType_Floppy:
2454 reporter.log(" %s: Floppy" % sCtrl);
2455 if oMedium:
2456 reporter.log(" Id: %s" % (oMedium.id,));
2457 reporter.log(" Name: %s" % (oMedium.name,));
2458 if oMedium.hostDrive:
2459 reporter.log(" Host floppy: %s" % (oMedium.location,));
2460 else:
2461 reporter.log(" Virtual image: %s" % (oMedium.location,));
2462 reporter.log(" Size: %s" % (oMedium.size,));
2463 else:
2464 reporter.log(" empty");
2465 self.processPendingEvents();
2466
2467 reporter.log(" Network Adapter:");
2468 for iSlot in range(0, 32):
2469 try: oNic = oVM.getNetworkAdapter(iSlot)
2470 except: break;
2471 if not oNic.enabled:
2472 reporter.log2(" slot #%d found but not enabled, skipping" % (iSlot,));
2473 continue;
2474 reporter.log(" slot #%d: type: %s (%s) MAC Address: %s lineSpeed: %s"
2475 % (iSlot, self.oVBoxMgr.getEnumValueName('NetworkAdapterType', oNic.adapterType), # pylint: disable=not-callable
2476 oNic.adapterType, oNic.MACAddress, oNic.lineSpeed) );
2477
2478 if oNic.attachmentType == vboxcon.NetworkAttachmentType_NAT:
2479 reporter.log(" attachmentType: NAT (%s)" % (oNic.attachmentType,));
2480 if self.fpApiVer >= 4.1:
2481 reporter.log(" nat-network: %s" % (oNic.NATNetwork,));
2482 if self.fpApiVer >= 7.0 and hasattr(oNic.NATEngine, 'localhostReachable'):
2483 reporter.log(" localhostReachable: %s" % (oNic.NATEngine.localhostReachable,));
2484
2485 elif oNic.attachmentType == vboxcon.NetworkAttachmentType_Bridged:
2486 reporter.log(" attachmentType: Bridged (%s)" % (oNic.attachmentType,));
2487 if self.fpApiVer >= 4.1:
2488 reporter.log(" hostInterface: %s" % (oNic.bridgedInterface,));
2489 else:
2490 reporter.log(" hostInterface: %s" % (oNic.hostInterface,));
2491 elif oNic.attachmentType == vboxcon.NetworkAttachmentType_Internal:
2492 reporter.log(" attachmentType: Internal (%s)" % (oNic.attachmentType,));
2493 reporter.log(" intnet-name: %s" % (oNic.internalNetwork,));
2494 elif oNic.attachmentType == vboxcon.NetworkAttachmentType_HostOnly:
2495 reporter.log(" attachmentType: HostOnly (%s)" % (oNic.attachmentType,));
2496 if self.fpApiVer >= 4.1:
2497 reporter.log(" hostInterface: %s" % (oNic.hostOnlyInterface,));
2498 else:
2499 reporter.log(" hostInterface: %s" % (oNic.hostInterface,));
2500 else:
2501 if self.fpApiVer >= 7.0:
2502 if oNic.attachmentType == vboxcon.NetworkAttachmentType_HostOnlyNetwork:
2503 reporter.log(" attachmentType: HostOnlyNetwork (%s)" % (oNic.attachmentType,));
2504 reporter.log(" hostonly-net: %s" % (oNic.hostOnlyNetwork,));
2505 elif self.fpApiVer >= 4.1:
2506 if oNic.attachmentType == vboxcon.NetworkAttachmentType_Generic:
2507 reporter.log(" attachmentType: Generic (%s)" % (oNic.attachmentType,));
2508 reporter.log(" generic-driver: %s" % (oNic.GenericDriver,));
2509 else:
2510 reporter.log(" attachmentType: unknown-%s" % (oNic.attachmentType,));
2511 else:
2512 reporter.log(" attachmentType: unknown-%s" % (oNic.attachmentType,));
2513 if oNic.traceEnabled:
2514 reporter.log(" traceFile: %s" % (oNic.traceFile,));
2515 self.processPendingEvents();
2516
2517 reporter.log(" Serial ports:");
2518 for iSlot in range(0, 8):
2519 try: oPort = oVM.getSerialPort(iSlot);
2520 except: break;
2521 if oPort is not None and oPort.enabled:
2522 enmHostMode = oPort.hostMode;
2523 if self.fpApiVer >= 7.1:
2524 sIOAddressOrBase = oPort.IOAddress;
2525 else:
2526 sIOAddressOrBase = oPort.IOBase;
2527 reporter.log(" slot #%d: hostMode: %s (%s) I/O address: %s IRQ: %s server: %s path: %s" %
2528 (iSlot, self.oVBoxMgr.getEnumValueName('PortMode', enmHostMode), # pylint: disable=not-callable
2529 enmHostMode, sIOAddressOrBase, oPort.IRQ, oPort.server, oPort.path,) );
2530 self.processPendingEvents();
2531
2532 return True;
2533
2534 def logVmInfo(self, oVM): # pylint: disable=too-many-statements,too-many-branches
2535 """
2536 Logs VM configuration details.
2537
2538 This is copy, past, search, replace and edit of infoCmd from vboxshell.py.
2539 """
2540 try:
2541 fRc = self._logVmInfoUnsafe(oVM);
2542 except:
2543 reporter.logXcpt();
2544 fRc = False;
2545 return fRc;
2546
2547 def logVmInfoByName(self, sName):
2548 """
2549 logVmInfo + getVmByName.
2550 """
2551 return self.logVmInfo(self.getVmByName(sName));
2552
2553 def tryFindGuestOsId(self, sIdOrDesc):
2554 """
2555 Takes a guest OS ID or Description and returns the ID.
2556 If nothing matching it is found, the input is returned unmodified.
2557 """
2558
2559 if self.fpApiVer >= 4.0:
2560 if sIdOrDesc == 'Solaris (64 bit)':
2561 sIdOrDesc = 'Oracle Solaris 10 5/09 and earlier (64 bit)';
2562
2563 try:
2564 aoGuestTypes = self.oVBoxMgr.getArray(self.oVBox, 'GuestOSTypes');
2565 except:
2566 reporter.logXcpt();
2567 else:
2568 for oGuestOS in aoGuestTypes:
2569 try:
2570 sId = oGuestOS.id;
2571 sDesc = oGuestOS.description;
2572 except:
2573 reporter.logXcpt();
2574 else:
2575 if sIdOrDesc in (sId, sDesc,):
2576 sIdOrDesc = sId;
2577 break;
2578 self.processPendingEvents();
2579 return sIdOrDesc
2580
2581 def resourceFindVmHd(self, sVmName, sFlavor):
2582 """
2583 Search the test resources for the most recent VM HD.
2584
2585 Returns path relative to the test resource root.
2586 """
2587 ## @todo implement a proper search algo here.
2588 return '4.2/' + sFlavor + '/' + sVmName + '/t-' + sVmName + '.vdi';
2589
2590
2591 #
2592 # VM Api wrappers that logs errors, hides exceptions and other details.
2593 #
2594
2595 def createTestVMOnly(self, sName, sKind, sPlatformArchitecture = 'x86'):
2596 """
2597 Creates and registers a test VM without doing any kind of configuration.
2598 Uses x86 as a platform architecture by default (only >= 7.1).
2599
2600 Returns VM object (IMachine) on success, None on failure.
2601 """
2602 if not self.importVBoxApi():
2603 return None;
2604
2605 # Default to x86 if not explicitly specified.
2606 if self.fpApiVer >= 7.1:
2607 if not sPlatformArchitecture \
2608 or sPlatformArchitecture == 'x86':
2609 enmPlatformArchitecture = vboxcon.PlatformArchitecture_x86;
2610 elif sPlatformArchitecture == 'ARM':
2611 enmPlatformArchitecture = vboxcon.PlatformArchitecture_ARM;
2612 else:
2613 reporter.error('Unkown platform architecture "%s"' % (sPlatformArchitecture,));
2614 return None;
2615 elif sPlatformArchitecture != 'x86': # < 7.1 only has x86 support.
2616 reporter.errorXcpt('This host version of VirtualBox only supports x86 as platform architecture');
2617 return None;
2618
2619 # create + register the VM
2620 try:
2621 if self.fpApiVer >= 7.1: # Introduces platform support (x86 + ARM).
2622 oVM = self.oVBox.createMachine("", sName, enmPlatformArchitecture, [], self.tryFindGuestOsId(sKind), \
2623 "", "", "", "");
2624 elif self.fpApiVer >= 7.0: # Introduces VM encryption (three new parameters, empty for now).
2625 oVM = self.oVBox.createMachine("", sName, [], self.tryFindGuestOsId(sKind), "", "", "", "");
2626 elif self.fpApiVer >= 4.2: # Introduces grouping (third parameter, empty for now).
2627 oVM = self.oVBox.createMachine("", sName, [], self.tryFindGuestOsId(sKind), "");
2628 elif self.fpApiVer >= 4.0:
2629 oVM = self.oVBox.createMachine("", sName, self.tryFindGuestOsId(sKind), "", False);
2630 elif self.fpApiVer >= 3.2:
2631 oVM = self.oVBox.createMachine(sName, self.tryFindGuestOsId(sKind), "", "", False);
2632 else:
2633 oVM = self.oVBox.createMachine(sName, self.tryFindGuestOsId(sKind), "", "");
2634 try:
2635 oVM.saveSettings();
2636 try:
2637 self.oVBox.registerMachine(oVM);
2638 return oVM;
2639 except:
2640 reporter.logXcpt();
2641 raise;
2642 except:
2643 reporter.logXcpt();
2644 if self.fpApiVer >= 4.0:
2645 try:
2646 if self.fpApiVer >= 4.3:
2647 oProgress = oVM.deleteConfig([]);
2648 else:
2649 oProgress = oVM.delete(None);
2650 self.waitOnProgress(oProgress);
2651 except:
2652 reporter.logXcpt();
2653 else:
2654 try: oVM.deleteSettings();
2655 except: reporter.logXcpt();
2656 raise;
2657 except:
2658 reporter.errorXcpt('failed to create vm "%s"' % (sName));
2659 return None;
2660
2661 # pylint: disable=too-many-arguments,too-many-locals,too-many-statements,too-many-branches
2662 def createTestVM(self,
2663 sName,
2664 iGroup,
2665 sHd = None,
2666 cMbRam = None,
2667 cCpus = 1,
2668 fVirtEx = None,
2669 fNestedPaging = None,
2670 sDvdImage = None,
2671 sKind = "Other",
2672 fIoApic = None,
2673 fNstHwVirt = None,
2674 fPae = None,
2675 fFastBootLogo = True,
2676 eNic0Type = None,
2677 eNic0AttachType = None,
2678 sNic0NetName = 'default',
2679 sNic0MacAddr = 'grouped',
2680 sFloppy = None,
2681 fNatForwardingForTxs = None,
2682 sHddControllerType = 'IDE Controller',
2683 fVmmDevTestingPart = None,
2684 fVmmDevTestingMmio = False,
2685 sFirmwareType = 'bios',
2686 sChipsetType = 'piix3',
2687 sIommuType = 'none',
2688 sDvdControllerType = 'IDE Controller',
2689 sCom1RawFile = None,
2690 fSecureBoot = False,
2691 sUefiMokPathPrefix = None,
2692 sGraphicsControllerType = None,
2693 sPlatformArchitecture = 'x86'):
2694 """
2695 Creates a test VM with a immutable HD from the test resources.
2696 """
2697 # create + register the VM
2698 oVM = self.createTestVMOnly(sName, sKind, sPlatformArchitecture);
2699 if not oVM:
2700 return None;
2701
2702 # Configure the VM.
2703 fRc = True;
2704 oSession = self.openSession(oVM);
2705 if oSession is not None:
2706 fRc = oSession.setupPreferredConfig();
2707
2708 if fRc and cMbRam is not None :
2709 fRc = oSession.setRamSize(cMbRam);
2710 if fRc and cCpus is not None:
2711 fRc = oSession.setCpuCount(cCpus);
2712 if fRc and sDvdImage is not None:
2713 fRc = oSession.attachDvd(sDvdImage, sDvdControllerType);
2714 if fRc and sHd is not None:
2715 fRc = oSession.attachHd(sHd, sHddControllerType);
2716 if fRc and sFloppy is not None:
2717 fRc = oSession.attachFloppy(sFloppy);
2718 if fRc and eNic0Type is not None:
2719 fRc = oSession.setNicType(eNic0Type, 0);
2720 if fRc and (eNic0AttachType is not None or (sNic0NetName is not None and sNic0NetName != 'default')):
2721 fRc = oSession.setNicAttachment(eNic0AttachType, sNic0NetName, 0);
2722 if fRc and sNic0MacAddr is not None:
2723 if sNic0MacAddr == 'grouped':
2724 sNic0MacAddr = '%02X' % (iGroup);
2725 fRc = oSession.setNicMacAddress(sNic0MacAddr, 0);
2726 # Needed to reach the host (localhost) from the guest. See xTracker #9896.
2727 if fRc and self.fpApiVer >= 7.0:
2728 fRc = oSession.setNicLocalhostReachable(True, 0);
2729 if fRc and fNatForwardingForTxs is True:
2730 fRc = oSession.setupNatForwardingForTxs();
2731 if fRc and fFastBootLogo is not None:
2732 fRc = oSession.setupBootLogo(fFastBootLogo);
2733 if fRc and self.fEnableVrdp:
2734 fRc = oSession.setupVrdp(True, self.uVrdpBasePort + iGroup);
2735 if fRc and fVmmDevTestingPart is not None:
2736 fRc = oSession.enableVmmDevTestingPart(fVmmDevTestingPart, fVmmDevTestingMmio);
2737 if fRc and sFirmwareType == 'bios':
2738 fRc = oSession.setFirmwareType(vboxcon.FirmwareType_BIOS);
2739 elif fRc and sFirmwareType == 'efi':
2740 fRc = oSession.setFirmwareType(vboxcon.FirmwareType_EFI);
2741 if fRc and self.fpApiVer >= 7.0 and fSecureBoot:
2742 fRc = oSession.enableSecureBoot(fSecureBoot, sUefiMokPathPrefix);
2743 if fRc and self.fEnableDebugger:
2744 fRc = oSession.setExtraData('VBoxInternal/DBGC/Enabled', '1');
2745 if fRc and self.fRecordingEnabled:
2746 try:
2747 if self.fpApiVer >= 6.1: # Only for VBox 6.1 and up now.
2748 reporter.log('Recording enabled');
2749 if self.cSecsRecordingMax > 0:
2750 reporter.log('Recording time limit is set to %d seconds' % (self.cSecsRecordingMax));
2751 if self.cMbRecordingMax > 0:
2752 reporter.log('Recording file limit is set to %d MB' % (self.cMbRecordingMax));
2753 oRecSettings = oSession.o.machine.recordingSettings;
2754 oRecSettings.enabled = True; # For VBox < 7.1 this also starts recording.
2755 if self.fpApiVer >= 7.1:
2756 # For VBox >= 7.1 we have to explicitly start the recording.
2757 oRecSettings.start();
2758 aoScreens = self.oVBoxMgr.getArray(oRecSettings, 'screens');
2759 for oScreen in aoScreens:
2760 try:
2761 oScreen.enabled = True;
2762 sRecFile = os.path.join(self.sScratchPath, "recording-%s.webm" % (sName));
2763 oScreen.filename = sRecFile;
2764 sRecFile = oScreen.filename; # Get back the file from Main, in case it was modified somehow.
2765 dRecFile = { 'id' : oScreen.id, 'file' : sRecFile };
2766 self.adRecordingFiles.append(dRecFile);
2767 if self.fpApiVer >= 7.0:
2768 aFeatures = [ vboxcon.RecordingFeature_Video, ];
2769 if self.fRecordingAudio:
2770 aFeatures.append(vboxcon.RecordingFeature_Audio);
2771 try:
2772 oScreen.setFeatures(aFeatures);
2773 except: ## @todo Figure out why this is needed on Windows.
2774 oScreen.features = aFeatures;
2775 else: # <= VBox 6.1 the feature were kept as a ULONG.
2776 uFeatures = vboxcon.RecordingFeature_Video;
2777 if self.fRecordingAudio:
2778 uFeatures = uFeatures | vboxcon.RecordingFeature_Audio;
2779 oScreen.features = uFeatures;
2780 reporter.log2('Recording screen %d to "%s"' % (dRecFile['id'], dRecFile['file'],));
2781 oScreen.maxTime = self.cSecsRecordingMax;
2782 oScreen.maxFileSize = self.cMbRecordingMax;
2783 except:
2784 reporter.errorXcpt('failed to configure recording for "%s" (screen %d)' % (sName, oScreen.id));
2785 else:
2786 # Not fatal.
2787 reporter.log('Recording only available for VBox >= 6.1, sorry!')
2788 except:
2789 reporter.errorXcpt('failed to configure recording for "%s"' % (sName));
2790 if fRc:
2791 if sChipsetType == 'piix3':
2792 fRc = oSession.setChipsetType(vboxcon.ChipsetType_PIIX3);
2793 elif sChipsetType == 'ich9':
2794 fRc = oSession.setChipsetType(vboxcon.ChipsetType_ICH9);
2795 elif self.fpApiVer >= 7.1 \
2796 and sChipsetType == 'armv8virtual': # ARM only is for VBox >= 7.1.
2797 fRc = oSession.setChipsetType(vboxcon.ChipsetType_ARMv8Virtual);
2798 else: # This is fatal.
2799 reporter.log('Unknown chipset type "%s" specified' % (sChipsetType,));
2800 if fRc and sCom1RawFile:
2801 fRc = oSession.setupSerialToRawFile(0, sCom1RawFile);
2802 if fRc and self.fpApiVer >= 6.2 and hasattr(vboxcon, 'IommuType_AMD') and sIommuType == 'amd':
2803 fRc = oSession.setIommuType(vboxcon.IommuType_AMD);
2804 elif fRc and self.fpApiVer >= 6.2 and hasattr(vboxcon, 'IommuType_Intel') and sIommuType == 'intel':
2805 fRc = oSession.setIommuType(vboxcon.IommuType_Intel);
2806 if fRc and sGraphicsControllerType is not None:
2807 if sGraphicsControllerType == 'VBoxSVGA':
2808 fRc = oSession.setVideoControllerType(vboxcon.GraphicsControllerType_VBoxSVGA);
2809 elif sGraphicsControllerType == 'VMSVGA':
2810 fRc = oSession.setVideoControllerType(vboxcon.GraphicsControllerType_VMSVGA);
2811 elif sGraphicsControllerType == 'VBoxVGA':
2812 fRc = oSession.setVideoControllerType(vboxcon.GraphicsControllerType_VBoxVGA);
2813 elif sGraphicsControllerType == 'QemuRamFb':
2814 fRc = oSession.setVideoControllerType(vboxcon.GraphicsControllerType_QemuRamFB);
2815
2816 #
2817 # x86-specifics.
2818 #
2819 if sPlatformArchitecture == 'x86':
2820 if fRc and fVirtEx is not None:
2821 fRc = oSession.enableVirtExX86(fVirtEx);
2822 if fRc and fNestedPaging is not None:
2823 fRc = oSession.enableNestedPagingX86(fNestedPaging);
2824 if fRc and fIoApic is not None:
2825 fRc = oSession.enableIoApic(fIoApic);
2826 if fRc and fNstHwVirt is not None:
2827 fRc = oSession.enableNestedHwVirtX86(fNstHwVirt);
2828 if fRc and fPae is not None:
2829 fRc = oSession.enablePaeX86(fPae);
2830
2831 #
2832 # ARM-specifics.
2833 #
2834 elif sPlatformArchitecture == 'ARM':
2835 pass; ## @todo BUGBUG Add stuff for ARM here.
2836
2837 if fRc: fRc = oSession.saveSettings();
2838 if not fRc: oSession.discardSettings(True);
2839 oSession.close();
2840 if not fRc:
2841 if self.fpApiVer >= 4.0:
2842 try: oVM.unregister(vboxcon.CleanupMode_Full);
2843 except: reporter.logXcpt();
2844 try:
2845 if self.fpApiVer >= 4.3:
2846 oProgress = oVM.deleteConfig([]);
2847 else:
2848 oProgress = oVM.delete([]);
2849 self.waitOnProgress(oProgress);
2850 except:
2851 reporter.logXcpt();
2852 else:
2853 try: self.oVBox.unregisterMachine(oVM.id);
2854 except: reporter.logXcpt();
2855 try: oVM.deleteSettings();
2856 except: reporter.logXcpt();
2857 return None;
2858
2859 # success.
2860 reporter.log('created "%s" with name "%s"' % (oVM.id, sName));
2861 self.aoVMs.append(oVM);
2862 self.logVmInfo(oVM); # testing...
2863 return oVM;
2864 # pylint: enable=too-many-arguments,too-many-locals,too-many-statements
2865
2866 def createTestVmWithDefaults(self, # pylint: disable=too-many-arguments
2867 sName,
2868 iGroup,
2869 sKind,
2870 sPlatformArchitecture = 'x86',
2871 sDvdImage = None,
2872 fFastBootLogo = True,
2873 eNic0AttachType = None,
2874 sNic0NetName = 'default',
2875 sNic0MacAddr = 'grouped',
2876 fVmmDevTestingPart = None,
2877 fVmmDevTestingMmio = False,
2878 sCom1RawFile = None):
2879 """
2880 Creates a test VM with all defaults and no HDs.
2881
2882 Defaults to the x86 platform architecture if not explicitly specified otherwise.
2883 """
2884 # create + register the VM
2885 oVM = self.createTestVMOnly(sName, sKind, sPlatformArchitecture);
2886 if oVM is not None:
2887 # Configure the VM with defaults according to sKind.
2888 fRc = True;
2889 oSession = self.openSession(oVM);
2890 if oSession is not None:
2891 if self.fpApiVer >= 6.0:
2892 try:
2893 oSession.o.machine.applyDefaults('');
2894 except:
2895 reporter.errorXcpt('failed to apply defaults to vm "%s"' % (sName,));
2896 fRc = False;
2897 else:
2898 reporter.error("Implement applyDefaults for vbox version %s" % (self.fpApiVer,));
2899 #fRc = oSession.setupPreferredConfig();
2900 fRc = False;
2901
2902 # Apply the specified configuration:
2903 if fRc and sDvdImage is not None:
2904 #fRc = oSession.insertDvd(sDvdImage); # attachDvd
2905 reporter.error('Implement: oSession.insertDvd(%s)' % (sDvdImage,));
2906 fRc = False;
2907
2908 if fRc and fFastBootLogo is not None:
2909 fRc = oSession.setupBootLogo(fFastBootLogo);
2910
2911 if fRc and (eNic0AttachType is not None or (sNic0NetName is not None and sNic0NetName != 'default')):
2912 fRc = oSession.setNicAttachment(eNic0AttachType, sNic0NetName, 0);
2913 if fRc and sNic0MacAddr is not None:
2914 if sNic0MacAddr == 'grouped':
2915 sNic0MacAddr = '%02X' % (iGroup,);
2916 fRc = oSession.setNicMacAddress(sNic0MacAddr, 0);
2917 # Needed to reach the host (localhost) from the guest. See xTracker #9896.
2918 if fRc and self.fpApiVer >= 7.0:
2919 fRc = oSession.setNicLocalhostReachable(True, 0);
2920
2921 if fRc and self.fEnableVrdp:
2922 fRc = oSession.setupVrdp(True, self.uVrdpBasePort + iGroup);
2923
2924 if fRc and fVmmDevTestingPart is not None:
2925 fRc = oSession.enableVmmDevTestingPart(fVmmDevTestingPart, fVmmDevTestingMmio);
2926
2927 if fRc and sCom1RawFile:
2928 fRc = oSession.setupSerialToRawFile(0, sCom1RawFile);
2929
2930 # Save the settings if we were successfull, otherwise discard them.
2931 if fRc:
2932 fRc = oSession.saveSettings();
2933 if not fRc:
2934 oSession.discardSettings(True);
2935 oSession.close();
2936
2937 if fRc is True:
2938 # If we've been successful, add the VM to the list and return it.
2939 # success.
2940 reporter.log('created "%s" with name "%s"' % (oVM.id, sName, ));
2941 self.aoVMs.append(oVM);
2942 self.logVmInfo(oVM); # testing...
2943 return oVM;
2944
2945 # Failed. Unregister the machine and delete it.
2946 if self.fpApiVer >= 4.0:
2947 try: oVM.unregister(vboxcon.CleanupMode_Full);
2948 except: reporter.logXcpt();
2949 try:
2950 if self.fpApiVer >= 4.3:
2951 oProgress = oVM.deleteConfig([]);
2952 else:
2953 oProgress = oVM.delete([]);
2954 self.waitOnProgress(oProgress);
2955 except:
2956 reporter.logXcpt();
2957 else:
2958 try: self.oVBox.unregisterMachine(oVM.id);
2959 except: reporter.logXcpt();
2960 try: oVM.deleteSettings();
2961 except: reporter.logXcpt();
2962 return None;
2963
2964 def addTestMachine(self, sNameOrId, fQuiet = False):
2965 """
2966 Adds an already existing (that is, configured) test VM to the
2967 test VM list.
2968
2969 Returns the VM object on success, None if failed.
2970 """
2971 # find + add the VM to the list.
2972 oVM = None;
2973 try:
2974 if self.fpApiVer >= 4.0:
2975 oVM = self.oVBox.findMachine(sNameOrId);
2976 else:
2977 reporter.error('fpApiVer=%s - did you remember to initialize the API' % (self.fpApiVer,));
2978 except:
2979 reporter.errorXcpt('could not find vm "%s"' % (sNameOrId,));
2980
2981 if oVM:
2982 self.aoVMs.append(oVM);
2983 if not fQuiet:
2984 reporter.log('Added "%s" with name "%s"' % (oVM.id, sNameOrId));
2985 self.logVmInfo(oVM);
2986 return oVM;
2987
2988 def forgetTestMachine(self, oVM, fQuiet = False):
2989 """
2990 Forget about an already known test VM in the test VM list.
2991
2992 Returns True on success, False if failed.
2993 """
2994 try:
2995 sUuid = oVM.id;
2996 sName = oVM.name;
2997 except:
2998 reporter.errorXcpt('failed to get the UUID for VM "%s"' % (oVM,));
2999 return False;
3000 try:
3001 self.aoVMs.remove(oVM);
3002 if not fQuiet:
3003 reporter.log('Removed "%s" with name "%s"' % (sUuid, sName));
3004 except:
3005 reporter.errorXcpt('could not find vm "%s"' % (sName,));
3006 return False;
3007 return True;
3008
3009 def openSession(self, oVM):
3010 """
3011 Opens a session for the VM. Returns the a Session wrapper object that
3012 will automatically close the session when the wrapper goes out of scope.
3013
3014 On failure None is returned and an error is logged.
3015 """
3016 try:
3017 sUuid = oVM.id;
3018 except:
3019 reporter.errorXcpt('failed to get the UUID for VM "%s"' % (oVM,));
3020 return None;
3021
3022 # This loop is a kludge to deal with us racing the closing of the
3023 # direct session of a previous VM run. See waitOnDirectSessionClose.
3024 for i in range(10):
3025 try:
3026 if self.fpApiVer <= 3.2:
3027 oSession = self.oVBoxMgr.openMachineSession(sUuid);
3028 else:
3029 oSession = self.oVBoxMgr.openMachineSession(oVM);
3030 break;
3031 except:
3032 if i == 9:
3033 reporter.errorXcpt('failed to open session for "%s" ("%s")' % (sUuid, oVM));
3034 return None;
3035 if i > 0:
3036 reporter.logXcpt('warning: failed to open session for "%s" ("%s") - retrying in %u secs' % (sUuid, oVM, i));
3037 self.waitOnDirectSessionClose(oVM, 5000 + i * 1000);
3038 from testdriver.vboxwrappers import SessionWrapper;
3039 return SessionWrapper(oSession, oVM, self.oVBox, self.oVBoxMgr, self, False);
3040
3041 #
3042 # Guest locations.
3043 #
3044
3045 @staticmethod
3046 def getGuestTempDir(oTestVm):
3047 """
3048 Helper for finding a temporary directory in the test VM.
3049
3050 Note! It may be necessary to create it!
3051 """
3052 if oTestVm.isWindows():
3053 return "C:\\Temp";
3054 if oTestVm.isOS2():
3055 return "C:\\Temp";
3056 return '/var/tmp';
3057
3058 @staticmethod
3059 def getGuestSystemDir(oTestVm, sPathPrefix = ''):
3060 """
3061 Helper for finding a system directory in the test VM that we can play around with.
3062 sPathPrefix can be used to specify other directories, such as /usr/local/bin/ or /usr/bin, for instance.
3063
3064 On Windows this is always the System32 directory, so this function can be used as
3065 basis for locating other files in or under that directory.
3066 """
3067 if oTestVm.isWindows():
3068 return oTestVm.pathJoin(TestDriver.getGuestWinDir(oTestVm), 'System32');
3069 if oTestVm.isOS2():
3070 return 'C:\\OS2\\DLL';
3071
3072 # OL / RHEL symlinks "/bin"/ to "/usr/bin". To avoid (unexpectedly) following symlinks, use "/usr/bin" then instead.
3073 if not sPathPrefix \
3074 and oTestVm.sKind in ('Oracle_64', 'Oracle'): ## @todo Does this apply for "RedHat" as well?
3075 return "/usr/bin";
3076
3077 return sPathPrefix + "/bin";
3078
3079 @staticmethod
3080 def getGuestSystemAdminDir(oTestVm, sPathPrefix = ''):
3081 """
3082 Helper for finding a system admin directory ("sbin") in the test VM that we can play around with.
3083 sPathPrefix can be used to specify other directories, such as /usr/local/sbin/ or /usr/sbin, for instance.
3084
3085 On Windows this is always the System32 directory, so this function can be used as
3086 basis for locating other files in or under that directory.
3087 On UNIX-y systems this always is the "sh" shell to guarantee a common shell syntax.
3088 """
3089 if oTestVm.isWindows():
3090 return oTestVm.pathJoin(TestDriver.getGuestWinDir(oTestVm), 'System32');
3091 if oTestVm.isOS2():
3092 return 'C:\\OS2\\DLL'; ## @todo r=andy Not sure here.
3093
3094 # OL / RHEL symlinks "/sbin"/ to "/usr/sbin". To avoid (unexpectedly) following symlinks, use "/usr/sbin" then instead.
3095 if not sPathPrefix \
3096 and oTestVm.sKind in ('Oracle_64', 'Oracle'): ## @todo Does this apply for "RedHat" as well?
3097 return "/usr/sbin";
3098
3099 return sPathPrefix + "/sbin";
3100
3101 @staticmethod
3102 def getGuestWinDir(oTestVm):
3103 """
3104 Helper for finding the Windows directory in the test VM that we can play around with.
3105 ASSUMES that we always install Windows on drive C.
3106
3107 Returns the Windows directory, or an empty string when executed on a non-Windows guest (asserts).
3108 """
3109 sWinDir = '';
3110 if oTestVm.isWindows():
3111 if oTestVm.sKind in ['WindowsNT4', 'WindowsNT3x', 'Windows2000',]:
3112 sWinDir = 'C:\\WinNT\\';
3113 else:
3114 sWinDir = 'C:\\Windows\\';
3115 assert sWinDir != '', 'Retrieving Windows directory for non-Windows OS';
3116 return sWinDir;
3117
3118 @staticmethod
3119 def getGuestSystemShell(oTestVm):
3120 """
3121 Helper for finding the default system shell in the test VM.
3122 """
3123 if oTestVm.isWindows():
3124 return TestDriver.getGuestSystemDir(oTestVm) + '\\cmd.exe';
3125 if oTestVm.isOS2():
3126 return TestDriver.getGuestSystemDir(oTestVm) + '\\..\\CMD.EXE';
3127 return "/bin/sh";
3128
3129 @staticmethod
3130 def getGuestSystemFileForReading(oTestVm):
3131 """
3132 Helper for finding a file in the test VM that we can read.
3133 """
3134 if oTestVm.isWindows():
3135 return TestDriver.getGuestSystemDir(oTestVm) + '\\ntdll.dll';
3136 if oTestVm.isOS2():
3137 return TestDriver.getGuestSystemDir(oTestVm) + '\\DOSCALL1.DLL';
3138 return "/bin/sh";
3139
3140 def getVmByName(self, sName):
3141 """
3142 Get a test VM by name. Returns None if not found, logged.
3143 """
3144 # Look it up in our 'cache'.
3145 for oVM in self.aoVMs:
3146 try:
3147 #reporter.log2('cur: %s / %s (oVM=%s)' % (oVM.name, oVM.id, oVM));
3148 if oVM.name == sName:
3149 return oVM;
3150 except:
3151 reporter.errorXcpt('failed to get the name from the VM "%s"' % (oVM));
3152
3153 # Look it up the standard way.
3154 return self.addTestMachine(sName, fQuiet = True);
3155
3156 def getVmByUuid(self, sUuid):
3157 """
3158 Get a test VM by uuid. Returns None if not found, logged.
3159 """
3160 # Look it up in our 'cache'.
3161 for oVM in self.aoVMs:
3162 try:
3163 if oVM.id == sUuid:
3164 return oVM;
3165 except:
3166 reporter.errorXcpt('failed to get the UUID from the VM "%s"' % (oVM));
3167
3168 # Look it up the standard way.
3169 return self.addTestMachine(sUuid, fQuiet = True);
3170
3171 def waitOnProgress(self, oProgress, cMsTimeout = 1000000, fErrorOnTimeout = True, cMsInterval = 1000):
3172 """
3173 Waits for a progress object to complete. Returns the status code.
3174 """
3175 # Wait for progress no longer than cMsTimeout time period.
3176 tsStart = datetime.datetime.now()
3177 while True:
3178 self.processPendingEvents();
3179 try:
3180 if oProgress.completed:
3181 break;
3182 except:
3183 return -1;
3184 self.processPendingEvents();
3185
3186 tsNow = datetime.datetime.now()
3187 tsDelta = tsNow - tsStart
3188 if ((tsDelta.microseconds + tsDelta.seconds * 1000000) // 1000) > cMsTimeout:
3189 if fErrorOnTimeout:
3190 reporter.errorTimeout('Timeout while waiting for progress.')
3191 return -1
3192
3193 reporter.doPollWork('vbox.TestDriver.waitOnProgress');
3194 try: oProgress.waitForCompletion(cMsInterval);
3195 except: return -2;
3196
3197 try: rc = oProgress.resultCode;
3198 except: rc = -2;
3199 self.processPendingEvents();
3200 return rc;
3201
3202 def waitOnDirectSessionClose(self, oVM, cMsTimeout):
3203 """
3204 Waits for the VM process to close it's current direct session.
3205
3206 Returns None.
3207 """
3208 # Get the original values so we're not subject to
3209 try:
3210 eCurState = oVM.sessionState;
3211 if self.fpApiVer >= 5.0:
3212 sCurName = sOrgName = oVM.sessionName;
3213 else:
3214 sCurName = sOrgName = oVM.sessionType;
3215 if self.fpApiVer >= 4.2:
3216 iCurPid = iOrgPid = oVM.sessionPID;
3217 else:
3218 iCurPid = iOrgPid = oVM.sessionPid;
3219 except Exception as oXcpt:
3220 if ComError.notEqual(oXcpt, ComError.E_ACCESSDENIED):
3221 reporter.logXcpt();
3222 self.processPendingEvents();
3223 return None;
3224 self.processPendingEvents();
3225
3226 msStart = base.timestampMilli();
3227 while iCurPid == iOrgPid \
3228 and sCurName == sOrgName \
3229 and sCurName != '' \
3230 and base.timestampMilli() - msStart < cMsTimeout \
3231 and eCurState in (vboxcon.SessionState_Unlocking, vboxcon.SessionState_Spawning, vboxcon.SessionState_Locked,):
3232 self.processEvents(1000);
3233 try:
3234 eCurState = oVM.sessionState;
3235 sCurName = oVM.sessionName if self.fpApiVer >= 5.0 else oVM.sessionType;
3236 iCurPid = oVM.sessionPID if self.fpApiVer >= 4.2 else oVM.sessionPid;
3237 except Exception as oXcpt:
3238 if ComError.notEqual(oXcpt, ComError.E_ACCESSDENIED):
3239 reporter.logXcpt();
3240 break;
3241 self.processPendingEvents();
3242 self.processPendingEvents();
3243 return None;
3244
3245 def uploadStartupLogFile(self, oVM, sVmName):
3246 """
3247 Uploads the VBoxStartup.log when present.
3248 """
3249 fRc = True;
3250 try:
3251 sLogFile = os.path.join(oVM.logFolder, 'VBoxHardening.log');
3252 except:
3253 reporter.logXcpt();
3254 fRc = False;
3255 else:
3256 if os.path.isfile(sLogFile):
3257 reporter.addLogFile(sLogFile, 'log/release/vm', '%s hardening log' % (sVmName, ),
3258 sAltName = '%s-%s' % (sVmName, os.path.basename(sLogFile),));
3259 return fRc;
3260
3261 def annotateAndUploadProcessReport(self, sProcessReport, sFilename, sKind, sDesc):
3262 """
3263 Annotates the given VM process report and uploads it if successfull.
3264 """
3265 fRc = False;
3266 if self.oBuild is not None and self.oBuild.sInstallPath is not None:
3267 oResolver = btresolver.BacktraceResolver(self.sScratchPath, self.oBuild.sInstallPath,
3268 self.getBuildOs(), self.getBuildArch(),
3269 fnLog = reporter.log);
3270 fRcTmp = oResolver.prepareEnv();
3271 if fRcTmp:
3272 reporter.log('Successfully prepared environment');
3273 sReportDbgSym = oResolver.annotateReport(sProcessReport);
3274 if sReportDbgSym and len(sReportDbgSym) > 8:
3275 reporter.addLogString(sReportDbgSym, sFilename, sKind, sDesc);
3276 fRc = True;
3277 else:
3278 reporter.log('Annotating report failed');
3279 oResolver.cleanupEnv();
3280 return fRc;
3281
3282 def startVmEx(self, oVM, fWait = True, sType = None, sName = None, asEnv = None): # pylint: disable=too-many-locals,too-many-statements
3283 """
3284 Start the VM, returning the VM session and progress object on success.
3285 The session is also added to the task list and to the aoRemoteSessions set.
3286
3287 asEnv is a list of string on the putenv() form.
3288
3289 On failure (None, None) is returned and an error is logged.
3290 """
3291 # Massage and check the input.
3292 if sType is None:
3293 sType = self.sSessionType;
3294 if sName is None:
3295 try: sName = oVM.name;
3296 except: sName = 'bad-vm-handle';
3297 reporter.log('startVmEx: sName=%s fWait=%s sType=%s' % (sName, fWait, sType));
3298 if oVM is None:
3299 return (None, None);
3300
3301 ## @todo Do this elsewhere.
3302 # Hack alert. Disables all annoying GUI popups.
3303 if sType == 'gui' and not self.aoRemoteSessions:
3304 try:
3305 self.oVBox.setExtraData('GUI/Input/AutoCapture', 'false');
3306 if self.fpApiVer >= 3.2:
3307 self.oVBox.setExtraData('GUI/LicenseAgreed', '8');
3308 else:
3309 self.oVBox.setExtraData('GUI/LicenseAgreed', '7');
3310 self.oVBox.setExtraData('GUI/RegistrationData', 'triesLeft=0');
3311 self.oVBox.setExtraData('GUI/SUNOnlineData', 'triesLeft=0');
3312 self.oVBox.setExtraData('GUI/SuppressMessages', 'confirmVMReset,remindAboutMouseIntegrationOn,'
3313 'remindAboutMouseIntegrationOff,remindAboutPausedVMInput,confirmInputCapture,'
3314 'confirmGoingFullscreen,remindAboutInaccessibleMedia,remindAboutWrongColorDepth,'
3315 'confirmRemoveMedium,allPopupPanes,allMessageBoxes,all');
3316 self.oVBox.setExtraData('GUI/UpdateDate', 'never');
3317 self.oVBox.setExtraData('GUI/PreventBetaWarning', self.oVBox.version);
3318 except:
3319 reporter.logXcpt();
3320
3321 # The UUID for the name.
3322 try:
3323 sUuid = oVM.id;
3324 except:
3325 reporter.errorXcpt('failed to get the UUID for VM "%s"' % (oVM));
3326 return (None, None);
3327 self.processPendingEvents();
3328
3329 # Construct the environment.
3330 self.sSessionLogFile = '%s/VM-%s.log' % (self.sScratchPath, sUuid);
3331 try: os.remove(self.sSessionLogFile);
3332 except: pass;
3333 if self.sLogSessionDest:
3334 sLogDest = self.sLogSessionDest;
3335 else:
3336 sLogDest = 'file=%s' % (self.sSessionLogFile,);
3337 asEnvFinal = [
3338 'VBOX_LOG=%s' % (self.sLogSessionGroups,),
3339 'VBOX_LOG_FLAGS=%s' % (self.sLogSessionFlags,),
3340 'VBOX_LOG_DEST=nodeny %s' % (sLogDest,),
3341 'VBOX_RELEASE_LOG_FLAGS=append time',
3342 ];
3343 if sType == 'gui':
3344 asEnvFinal.append('VBOX_GUI_DBG_ENABLED=1');
3345 if asEnv is not None and asEnv:
3346 asEnvFinal += asEnv;
3347
3348 reporter.log2('Session environment:\n%s' % (asEnvFinal,));
3349
3350 # Shortcuts for local testing.
3351 oProgress = oWrapped = None;
3352 oTestVM = self.oTestVmSet.findTestVmByName(sName) if self.oTestVmSet is not None else None;
3353 try:
3354 if oTestVM is not None \
3355 and oTestVM.fSnapshotRestoreCurrent is True:
3356 if oVM.state is vboxcon.MachineState_Running:
3357 reporter.log2('Machine "%s" already running.' % (sName,));
3358 oProgress = None;
3359 oWrapped = self.openSession(oVM);
3360 else:
3361 reporter.log2('Checking if snapshot for machine "%s" exists.' % (sName,));
3362 oSessionWrapperRestore = self.openSession(oVM);
3363 if oSessionWrapperRestore is not None:
3364 oSnapshotCur = oVM.currentSnapshot;
3365 if oSnapshotCur is not None:
3366 reporter.log2('Restoring snapshot for machine "%s".' % (sName,));
3367 oSessionWrapperRestore.restoreSnapshot(oSnapshotCur);
3368 reporter.log2('Current snapshot for machine "%s" restored.' % (sName,));
3369 else:
3370 reporter.log('warning: no current snapshot for machine "%s" found.' % (sName,));
3371 oSessionWrapperRestore.close();
3372 except:
3373 reporter.errorXcpt();
3374 return (None, None);
3375
3376 oSession = None; # Must be initialized, otherwise the log statement at the end of the function can fail.
3377
3378 # Open a remote session, wait for this operation to complete.
3379 # (The loop is a kludge to deal with us racing the closing of the
3380 # direct session of a previous VM run. See waitOnDirectSessionClose.)
3381 if oWrapped is None:
3382 for i in range(10):
3383 try:
3384 if self.fpApiVer < 4.3 \
3385 or (self.fpApiVer == 4.3 and not hasattr(self.oVBoxMgr, 'getSessionObject')):
3386 oSession = self.oVBoxMgr.mgr.getSessionObject(self.oVBox); # pylint: disable=no-member
3387 elif self.fpApiVer < 5.2 \
3388 or (self.fpApiVer == 5.2 and hasattr(self.oVBoxMgr, 'vbox')):
3389 oSession = self.oVBoxMgr.getSessionObject(self.oVBox); # pylint: disable=no-member
3390 else:
3391 oSession = self.oVBoxMgr.getSessionObject(); # pylint: disable=no-member,no-value-for-parameter
3392 if self.fpApiVer < 3.3:
3393 oProgress = self.oVBox.openRemoteSession(oSession, sUuid, sType, '\n'.join(asEnvFinal));
3394 else:
3395 if self.uApiRevision >= self.makeApiRevision(6, 1, 0, 1):
3396 oProgress = oVM.launchVMProcess(oSession, sType, asEnvFinal);
3397 else:
3398 oProgress = oVM.launchVMProcess(oSession, sType, '\n'.join(asEnvFinal));
3399 break;
3400 except:
3401 if i == 9:
3402 reporter.errorXcpt('failed to start VM "%s" ("%s"), aborting.' % (sUuid, sName));
3403 return (None, None);
3404 oSession = None;
3405 if i >= 0:
3406 reporter.logXcpt('warning: failed to start VM "%s" ("%s") - retrying in %u secs.' % (sUuid, oVM, i)); # pylint: disable=line-too-long
3407 self.waitOnDirectSessionClose(oVM, 5000 + i * 1000);
3408 if fWait and oProgress is not None:
3409 rc = self.waitOnProgress(oProgress);
3410 if rc < 0:
3411 self.waitOnDirectSessionClose(oVM, 5000);
3412
3413 # VM failed to power up, still collect VBox.log, need to wrap the session object
3414 # in order to use the helper for adding the log files to the report.
3415 from testdriver.vboxwrappers import SessionWrapper;
3416 oTmp = SessionWrapper(oSession, oVM, self.oVBox, self.oVBoxMgr, self, True, sName, self.sSessionLogFile);
3417 oTmp.addLogsToReport();
3418
3419 # Try to collect a stack trace of the process for further investigation of any startup hangs.
3420 uPid = oTmp.getPid();
3421 if uPid is not None:
3422 sHostProcessInfoHung = utils.processGetInfo(uPid, fSudo = True);
3423 if sHostProcessInfoHung is not None:
3424 reporter.log('Trying to annotate the hung VM startup process report, please stand by...');
3425 fRcTmp = self.annotateAndUploadProcessReport(sHostProcessInfoHung, 'vmprocess-startup-hung.log',
3426 'process/report/vm', 'Annotated hung VM process state during startup'); # pylint: disable=line-too-long
3427 # Upload the raw log for manual annotation in case resolving failed.
3428 if not fRcTmp:
3429 reporter.log('Failed to annotate hung VM process report, uploading raw report');
3430 reporter.addLogString(sHostProcessInfoHung, 'vmprocess-startup-hung.log', 'process/report/vm',
3431 'Hung VM process state during startup');
3432
3433 try:
3434 if oSession is not None:
3435 oSession.close();
3436 except: pass;
3437 reportError(oProgress, 'failed to open session for "%s"' % (sName));
3438 self.uploadStartupLogFile(oVM, sName);
3439 return (None, None);
3440 reporter.log2('waitOnProgress -> %s' % (rc,));
3441
3442 # Wrap up the session object and push on to the list before returning it.
3443 if oWrapped is None:
3444 from testdriver.vboxwrappers import SessionWrapper;
3445 oWrapped = SessionWrapper(oSession, oVM, self.oVBox, self.oVBoxMgr, self, True, sName, self.sSessionLogFile);
3446
3447 oWrapped.registerEventHandlerForTask();
3448 self.aoRemoteSessions.append(oWrapped);
3449 if oWrapped is not self.aoRemoteSessions[len(self.aoRemoteSessions) - 1]:
3450 reporter.error('not by reference: oWrapped=%s aoRemoteSessions[%s]=%s'
3451 % (oWrapped, len(self.aoRemoteSessions) - 1,
3452 self.aoRemoteSessions[len(self.aoRemoteSessions) - 1]));
3453 self.addTask(oWrapped);
3454
3455 reporter.log2('startVmEx: oSession=%s, oSessionWrapper=%s, oProgress=%s' % (oSession, oWrapped, oProgress));
3456
3457 from testdriver.vboxwrappers import ProgressWrapper;
3458 return (oWrapped, ProgressWrapper(oProgress, self.oVBoxMgr, self,
3459 'starting %s' % (sName,)) if oProgress else None);
3460
3461 def startVm(self, oVM, sType=None, sName = None, asEnv = None):
3462 """ Simplified version of startVmEx. """
3463 oSession, _ = self.startVmEx(oVM, True, sType, sName, asEnv = asEnv);
3464 return oSession;
3465
3466 def startVmByNameEx(self, sName, fWait=True, sType=None, asEnv = None):
3467 """
3468 Start the VM, returning the VM session and progress object on success.
3469 The session is also added to the task list and to the aoRemoteSessions set.
3470
3471 On failure (None, None) is returned and an error is logged.
3472 """
3473 oVM = self.getVmByName(sName);
3474 if oVM is None:
3475 return (None, None);
3476 return self.startVmEx(oVM, fWait, sType, sName, asEnv = asEnv);
3477
3478 def startVmByName(self, sName, sType=None, asEnv = None):
3479 """
3480 Start the VM, returning the VM session on success. The session is
3481 also added to the task list and to the aoRemoteSessions set.
3482
3483 On failure None is returned and an error is logged.
3484 """
3485 oSession, _ = self.startVmByNameEx(sName, True, sType, asEnv = asEnv);
3486 return oSession;
3487
3488 def terminateVmBySession(self, oSession, oProgress = None, fTakeScreenshot = None): # pylint: disable=too-many-statements
3489 """
3490 Terminates the VM specified by oSession and adds the release logs to
3491 the test report.
3492
3493 This will try achieve this by using powerOff, but will resort to
3494 tougher methods if that fails.
3495
3496 The session will always be removed from the task list.
3497 The session will be closed unless we fail to kill the process.
3498 The session will be removed from the remote session list if closed.
3499
3500 The progress object (a wrapper!) is for teleportation and similar VM
3501 operations, it will be attempted canceled before powering off the VM.
3502 Failures are logged but ignored.
3503 The progress object will always be removed from the task list.
3504
3505 Returns True if powerOff and session close both succeed.
3506 Returns False if on failure (logged), including when we successfully
3507 kill the VM process.
3508 """
3509
3510 reporter.log2('terminateVmBySession: oSession=%s (pid=%s) oProgress=%s' % (oSession.sName, oSession.getPid(), oProgress));
3511
3512 if self.fVmNoTerminate:
3513 reporter.log('terminateVmBySession: Skipping, as --vbox-vm-no-terminate was specified');
3514 # Make sure that we still process the events the VM needs.
3515 self.sleep(24 * 60 * 60 * 1000);
3516
3517 # Call getPid first to make sure the PID is cached in the wrapper.
3518 oSession.getPid();
3519
3520 #
3521 # If the host is out of memory, just skip all the info collection as it
3522 # requires memory too and seems to wedge.
3523 #
3524 sHostProcessInfo = None;
3525 sHostProcessInfoHung = None;
3526 sLastScreenshotPath = None;
3527 sOsKernelLog = None;
3528 sVgaText = None;
3529 asMiscInfos = [];
3530
3531 if not oSession.fHostMemoryLow:
3532 # Try to fetch the VM process info before meddling with its state.
3533 if self.fAlwaysUploadLogs or reporter.testErrorCount() > 0:
3534 sHostProcessInfo = utils.processGetInfo(oSession.getPid(), fSudo = True);
3535
3536 #
3537 # Pause the VM if we're going to take any screenshots or dig into the
3538 # guest. Failures are quitely ignored.
3539 #
3540 if self.fAlwaysUploadLogs or reporter.testErrorCount() > 0:
3541 try:
3542 if oSession.oVM.state in [ vboxcon.MachineState_Running,
3543 vboxcon.MachineState_LiveSnapshotting,
3544 vboxcon.MachineState_Teleporting ]:
3545 oSession.o.console.pause();
3546 except:
3547 reporter.logXcpt();
3548
3549 #
3550 # Take Screenshot and upload it (see below) to Test Manager if appropriate/requested.
3551 #
3552 if fTakeScreenshot is True or self.fAlwaysUploadScreenshots or reporter.testErrorCount() > 0:
3553 sLastScreenshotPath = os.path.join(self.sScratchPath, "LastScreenshot-%s.png" % oSession.sName);
3554 fRc = oSession.takeScreenshot(sLastScreenshotPath);
3555 if fRc is not True:
3556 sLastScreenshotPath = None;
3557
3558 # Query the OS kernel log from the debugger if appropriate/requested.
3559 if self.fAlwaysUploadLogs or reporter.testErrorCount() > 0:
3560 sOsKernelLog = oSession.queryOsKernelLog();
3561
3562 # Do "info vgatext all" separately.
3563 if self.fAlwaysUploadLogs or reporter.testErrorCount() > 0:
3564 sVgaText = oSession.queryDbgInfoVgaText();
3565
3566 # Various infos (do after kernel because of symbols).
3567 if self.fAlwaysUploadLogs or reporter.testErrorCount() > 0:
3568 # Dump the guest stack for all CPUs.
3569 cCpus = oSession.getCpuCount();
3570 if cCpus > 0:
3571 for iCpu in xrange(0, cCpus):
3572 sThis = oSession.queryDbgGuestStack(iCpu);
3573 if sThis:
3574 asMiscInfos += [
3575 '================ start guest stack VCPU %s ================\n' % (iCpu,),
3576 sThis,
3577 '================ end guest stack VCPU %s ==================\n' % (iCpu,),
3578 ];
3579
3580 for sInfo, sArg in [ ('mode', 'all'),
3581 ('fflags', ''),
3582 ('cpumguest', 'verbose all'),
3583 ('cpumguestinstr', 'symbol all'),
3584 ('exits', ''),
3585 ('pic', ''),
3586 ('apic', ''),
3587 ('apiclvt', ''),
3588 ('apictimer', ''),
3589 ('ioapic', ''),
3590 ('pit', ''),
3591 ('phys', ''),
3592 ('clocks', ''),
3593 ('timers', ''),
3594 ('gdt', ''),
3595 ('ldt', ''),
3596 ]:
3597 if sInfo in ['apic',] and self.fpApiVer < 5.1: # asserts and burns
3598 continue;
3599 sThis = oSession.queryDbgInfo(sInfo, sArg);
3600 if sThis:
3601 if sThis[-1] != '\n':
3602 sThis += '\n';
3603 asMiscInfos += [
3604 '================ start %s %s ================\n' % (sInfo, sArg),
3605 sThis,
3606 '================ end %s %s ==================\n' % (sInfo, sArg),
3607 ];
3608
3609 #
3610 # Terminate the VM
3611 #
3612
3613 # Cancel the progress object if specified.
3614 if oProgress is not None:
3615 if not oProgress.isCompleted() and oProgress.isCancelable():
3616 reporter.log2('terminateVmBySession: canceling "%s"...' % (oProgress.sName));
3617 try:
3618 oProgress.o.cancel();
3619 except:
3620 reporter.logXcpt();
3621 else:
3622 oProgress.wait();
3623 self.removeTask(oProgress);
3624
3625 # Check if the VM has terminated by itself before powering it off.
3626 fClose = True;
3627 fRc = True;
3628 if oSession.needsPoweringOff():
3629 reporter.log('terminateVmBySession: powering off "%s"...' % (oSession.sName,));
3630 fRc = oSession.powerOff(fFudgeOnFailure = False);
3631 if fRc is not True:
3632 # power off failed, try terminate it in a nice manner.
3633 fRc = False;
3634 uPid = oSession.getPid();
3635 if uPid is not None:
3636 #
3637 # Collect some information about the VM process first to have
3638 # some state information for further investigation why powering off failed.
3639 #
3640 sHostProcessInfoHung = utils.processGetInfo(uPid, fSudo = True);
3641
3642 # Exterminate...
3643 reporter.error('terminateVmBySession: Terminating PID %u (VM %s)' % (uPid, oSession.sName));
3644 fClose = base.processTerminate(uPid);
3645 if fClose is True:
3646 self.waitOnDirectSessionClose(oSession.oVM, 5000);
3647 fClose = oSession.waitForTask(1000);
3648
3649 if fClose is not True:
3650 # Being nice failed...
3651 reporter.error('terminateVmBySession: Termination failed, trying to kill PID %u (VM %s) instead' \
3652 % (uPid, oSession.sName));
3653 fClose = base.processKill(uPid);
3654 if fClose is True:
3655 self.waitOnDirectSessionClose(oSession.oVM, 5000);
3656 fClose = oSession.waitForTask(1000);
3657 if fClose is not True:
3658 reporter.error('terminateVmBySession: Failed to kill PID %u (VM %s)' % (uPid, oSession.sName));
3659
3660 # The final steps.
3661 if fClose is True:
3662 reporter.log('terminateVmBySession: closing session "%s"...' % (oSession.sName,));
3663 oSession.close();
3664 self.waitOnDirectSessionClose(oSession.oVM, 10000);
3665 try:
3666 eState = oSession.oVM.state;
3667 except:
3668 reporter.logXcpt();
3669 else:
3670 if eState == vboxcon.MachineState_Aborted:
3671 reporter.error('terminateVmBySession: The VM "%s" aborted!' % (oSession.sName,));
3672 self.removeTask(oSession);
3673
3674 #
3675 # Add the release log, debug log and a screenshot of the VM to the test report.
3676 #
3677 if self.fAlwaysUploadLogs or reporter.testErrorCount() > 0:
3678 oSession.addLogsToReport();
3679
3680 # Add a screenshot if it has been requested and taken successfully.
3681 if sLastScreenshotPath is not None:
3682 if reporter.testErrorCount() > 0:
3683 reporter.addLogFile(sLastScreenshotPath, 'screenshot/failure', 'Last VM screenshot');
3684 else:
3685 reporter.addLogFile(sLastScreenshotPath, 'screenshot/success', 'Last VM screenshot');
3686
3687 # Add the guest OS log if it has been requested and taken successfully.
3688 if sOsKernelLog is not None:
3689 reporter.addLogString(sOsKernelLog, 'kernel.log', 'log/guest/kernel', 'Guest OS kernel log');
3690
3691 # Add "info vgatext all" if we've got it.
3692 if sVgaText is not None:
3693 reporter.addLogString(sVgaText, 'vgatext.txt', 'info/vgatext', 'info vgatext all');
3694
3695 # Add the "info xxxx" items if we've got any.
3696 if asMiscInfos:
3697 reporter.addLogString(u''.join(asMiscInfos), 'info.txt', 'info/collection', 'A bunch of info items.');
3698
3699 # Add the host process info if we were able to retrieve it.
3700 if sHostProcessInfo is not None:
3701 reporter.log('Trying to annotate the VM process report, please stand by...');
3702 fRcTmp = self.annotateAndUploadProcessReport(sHostProcessInfo, 'vmprocess.log',
3703 'process/report/vm', 'Annotated VM process state');
3704 # Upload the raw log for manual annotation in case resolving failed.
3705 if not fRcTmp:
3706 reporter.log('Failed to annotate VM process report, uploading raw report');
3707 reporter.addLogString(sHostProcessInfo, 'vmprocess.log', 'process/report/vm', 'VM process state');
3708
3709 # Add the host process info for failed power off attempts if we were able to retrieve it.
3710 if sHostProcessInfoHung is not None:
3711 reporter.log('Trying to annotate the hung VM process report, please stand by...');
3712 fRcTmp = self.annotateAndUploadProcessReport(sHostProcessInfoHung, 'vmprocess-hung.log',
3713 'process/report/vm', 'Annotated hung VM process state');
3714 # Upload the raw log for manual annotation in case resolving failed.
3715 if not fRcTmp:
3716 reporter.log('Failed to annotate hung VM process report, uploading raw report');
3717 fRcTmp = reporter.addLogString(sHostProcessInfoHung, 'vmprocess-hung.log', 'process/report/vm',
3718 'Hung VM process state');
3719 if not fRcTmp:
3720 try: reporter.log('******* START vmprocess-hung.log *******\n%s\n******* END vmprocess-hung.log *******\n'
3721 % (sHostProcessInfoHung,));
3722 except: pass; # paranoia
3723
3724 # Upload the screen video recordings if appropriate.
3725 if self.fAlwaysUploadRecordings or reporter.testErrorCount() > 0:
3726 reporter.log2('Uploading %d screen recordings ...' % (len(self.adRecordingFiles),));
3727 for dRecFile in self.adRecordingFiles:
3728 reporter.log2('Uploading screen recording "%s" (screen %d)' % (dRecFile['file'], dRecFile['id']));
3729 reporter.addLogFile(dRecFile['file'],
3730 'screenrecording/failure' if reporter.testErrorCount() > 0 else 'screenrecording/success',
3731 'Recording of screen #%d' % (dRecFile['id'],));
3732
3733 return fRc;
3734
3735
3736 #
3737 # Some information query functions (mix).
3738 #
3739 # Methods require the VBox API. If the information is provided by both
3740 # the testboxscript as well as VBox API, we'll check if it matches.
3741 #
3742
3743 def _hasHostCpuFeature(self, sEnvVar, sEnum, fpApiMinVer, fQuiet):
3744 """
3745 Common Worker for hasHostNestedPaging() and hasHostHwVirt().
3746
3747 Returns True / False.
3748 Raises exception on environment / host mismatch.
3749 """
3750 fEnv = os.environ.get(sEnvVar, None);
3751 if fEnv is not None:
3752 fEnv = fEnv.lower() not in [ 'false', 'f', 'not', 'no', 'n', '0', ];
3753
3754 fVBox = None;
3755 self.importVBoxApi();
3756 if self.fpApiVer >= fpApiMinVer and hasattr(vboxcon, sEnum):
3757 try:
3758 fVBox = self.oVBox.host.getProcessorFeature(getattr(vboxcon, sEnum));
3759 except:
3760 if not fQuiet:
3761 reporter.logXcpt();
3762
3763 if fVBox is not None:
3764 if fEnv is not None:
3765 if fEnv != fVBox and not fQuiet:
3766 reporter.log('TestBox configuration overwritten: fVBox=%s (%s) vs. fEnv=%s (%s)'
3767 % (fVBox, sEnum, fEnv, sEnvVar));
3768 return fEnv;
3769 return fVBox;
3770 if fEnv is not None:
3771 return fEnv;
3772 return False;
3773
3774 def hasHostHwVirt(self, fQuiet = False):
3775 """
3776 Checks if hardware assisted virtualization is supported by the host.
3777
3778 Returns True / False.
3779 Raises exception on environment / host mismatch.
3780 """
3781 return self._hasHostCpuFeature('TESTBOX_HAS_HW_VIRT', 'ProcessorFeature_HWVirtEx', 3.1, fQuiet);
3782
3783 def hasHostNestedPaging(self, fQuiet = False):
3784 """
3785 Checks if nested paging is supported by the host.
3786
3787 Returns True / False.
3788 Raises exception on environment / host mismatch.
3789 """
3790 return self._hasHostCpuFeature('TESTBOX_HAS_NESTED_PAGING', 'ProcessorFeature_NestedPaging', 4.2, fQuiet) \
3791 and self.hasHostHwVirt(fQuiet);
3792
3793 def hasHostNestedHwVirt(self, fQuiet = False):
3794 """
3795 Checks if nested hardware-assisted virtualization is supported by the host.
3796
3797 Returns True / False.
3798 Raises exception on environment / host mismatch.
3799 """
3800 return self._hasHostCpuFeature('TESTBOX_HAS_NESTED_HWVIRT', 'ProcessorFeature_NestedHWVirt', 6.0, fQuiet) \
3801 and self.hasHostHwVirt(fQuiet);
3802
3803 def hasHostLongMode(self, fQuiet = False):
3804 """
3805 Checks if the host supports 64-bit guests.
3806
3807 Returns True / False.
3808 Raises exception on environment / host mismatch.
3809 """
3810 # Note that the testboxscript doesn't export this variable atm.
3811 return self._hasHostCpuFeature('TESTBOX_HAS_LONG_MODE', 'ProcessorFeature_LongMode', 3.1, fQuiet);
3812
3813 def getHostCpuCount(self, fQuiet = False):
3814 """
3815 Returns the number of CPUs on the host.
3816
3817 Returns True / False.
3818 Raises exception on environment / host mismatch.
3819 """
3820 cEnv = os.environ.get('TESTBOX_CPU_COUNT', None);
3821 if cEnv is not None:
3822 cEnv = int(cEnv);
3823
3824 try:
3825 cVBox = self.oVBox.host.processorOnlineCount;
3826 except:
3827 if not fQuiet:
3828 reporter.logXcpt();
3829 cVBox = None;
3830
3831 if cVBox is not None:
3832 if cEnv is not None:
3833 assert cVBox == cEnv, 'Misconfigured TestBox: VBox: %u CPUs, testboxscript: %u CPUs' % (cVBox, cEnv);
3834 return cVBox;
3835 if cEnv is not None:
3836 return cEnv;
3837 return 1;
3838
3839 def _getHostCpuDesc(self, fQuiet = False):
3840 """
3841 Internal method used for getting the host CPU description from VBoxSVC.
3842 Returns description string, on failure an empty string is returned.
3843 """
3844 try:
3845 return self.oVBox.host.getProcessorDescription(0);
3846 except:
3847 if not fQuiet:
3848 reporter.logXcpt();
3849 return '';
3850
3851 def isHostCpuAmd(self, fQuiet = False):
3852 """
3853 Checks if the host CPU vendor is AMD.
3854
3855 Returns True / False.
3856 """
3857 sCpuDesc = self._getHostCpuDesc(fQuiet);
3858 return 'AMD' in sCpuDesc or sCpuDesc == 'AuthenticAMD';
3859
3860 def isHostCpuIntel(self, fQuiet = False):
3861 """
3862 Checks if the host CPU vendor is Intel.
3863
3864 Returns True / False.
3865 """
3866 sCpuDesc = self._getHostCpuDesc(fQuiet);
3867 return sCpuDesc.startswith("Intel") or sCpuDesc == 'GenuineIntel';
3868
3869 def isHostCpuVia(self, fQuiet = False):
3870 """
3871 Checks if the host CPU vendor is VIA (or Centaur).
3872
3873 Returns True / False.
3874 """
3875 sCpuDesc = self._getHostCpuDesc(fQuiet);
3876 return sCpuDesc.startswith("VIA") or sCpuDesc == 'CentaurHauls';
3877
3878 def isHostCpuShanghai(self, fQuiet = False):
3879 """
3880 Checks if the host CPU vendor is Shanghai (or Zhaoxin).
3881
3882 Returns True / False.
3883 """
3884 sCpuDesc = self._getHostCpuDesc(fQuiet);
3885 return sCpuDesc.startswith("ZHAOXIN") or sCpuDesc.strip(' ') == 'Shanghai';
3886
3887 def isHostCpuP4(self, fQuiet = False):
3888 """
3889 Checks if the host CPU is a Pentium 4 / Pentium D.
3890
3891 Returns True / False.
3892 """
3893 if not self.isHostCpuIntel(fQuiet):
3894 return False;
3895
3896 if self.fpApiVer >= 7.1:
3897 (uFamilyModel, _, _, _) = self.oVBox.host.x86.getProcessorCPUIDLeaf(0, 0x1, 0);
3898 else:
3899 (uFamilyModel, _, _, _) = self.oVBox.host.getProcessorCPUIDLeaf(0, 0x1, 0);
3900 return ((uFamilyModel >> 8) & 0xf) == 0xf;
3901
3902 def hasRawModeSupport(self, fQuiet = False):
3903 """
3904 Checks if raw-mode is supported by VirtualBox that the testbox is
3905 configured for it.
3906
3907 Returns True / False.
3908 Raises no exceptions.
3909
3910 Note! Differs from the rest in that we don't require the
3911 TESTBOX_WITH_RAW_MODE value to match the API. It is
3912 sometimes helpful to disable raw-mode on individual
3913 test boxes. (This probably goes for
3914 """
3915 # The environment variable can be used to disable raw-mode.
3916 fEnv = os.environ.get('TESTBOX_WITH_RAW_MODE', None);
3917 if fEnv is not None:
3918 fEnv = fEnv.lower() not in [ 'false', 'f', 'not', 'no', 'n', '0', ];
3919 if fEnv is False:
3920 return False;
3921
3922 # Starting with 5.0 GA / RC2 the API can tell us whether VBox was built
3923 # with raw-mode support or not.
3924 self.importVBoxApi();
3925 if self.fpApiVer >= 5.0:
3926 try:
3927 if self.fpApiVer >= 7.1:
3928 # @todo r=aeichner Not entirely correct as we can support multiple platforms on a single host
3929 # each having an individual raw-mode status. Not relevant right now because
3930 # there is no raw-mode at all currently.
3931 oPlatformProperties = self.oVBox.getPlatformProperties(self.oVBox.host.architecture);
3932 fVBox = oPlatformProperties.rawModeSupported;
3933 else:
3934 fVBox = self.oVBox.systemProperties.rawModeSupported;
3935 except:
3936 if not fQuiet:
3937 reporter.logXcpt();
3938 fVBox = True;
3939 if fVBox is False:
3940 return False;
3941
3942 return True;
3943
3944 #
3945 # Testdriver execution methods.
3946 #
3947
3948 def handleTask(self, oTask, sMethod):
3949 """
3950 Callback method for handling unknown tasks in the various run loops.
3951
3952 The testdriver should override this if it already tasks running when
3953 calling startVmAndConnectToTxsViaTcp, txsRunTest or similar methods.
3954 Call super to handle unknown tasks.
3955
3956 Returns True if handled, False if not.
3957 """
3958 reporter.error('%s: unknown task %s' % (sMethod, oTask));
3959 return False;
3960
3961 def txsDoTask(self, oSession, oTxsSession, fnAsync, aArgs):
3962 """
3963 Generic TXS task wrapper which waits both on the TXS and the session tasks.
3964
3965 Returns False on error, logged.
3966 Returns task result on success.
3967 """
3968 # All async methods ends with the following two args.
3969 cMsTimeout = aArgs[-2];
3970 fIgnoreErrors = aArgs[-1];
3971
3972 fRemoveVm = self.addTask(oSession);
3973 fRemoveTxs = self.addTask(oTxsSession);
3974
3975 reporter.log2('txsDoTask(%s): Running' % (str(fnAsync)));
3976 rc = fnAsync(*aArgs); # pylint: disable=star-args
3977 if rc is True:
3978 rc = False;
3979 oTask = self.waitForTasks(cMsTimeout + 1);
3980 if oTask is oTxsSession:
3981 if oTxsSession.isSuccess():
3982 rc = oTxsSession.getResult();
3983 elif fIgnoreErrors is True:
3984 reporter.log( 'txsDoTask(%s): task failed (%s)' % (str(fnAsync), oTxsSession.getLastReply()[1],));
3985 else:
3986 reporter.error('txsDoTask(%s): task failed (%s)' % (str(fnAsync), oTxsSession.getLastReply()[1],));
3987 else:
3988 oTxsSession.cancelTask();
3989 if oTask is None:
3990 if fIgnoreErrors is True:
3991 reporter.log( 'txsDoTask(%s): The task timed out.' % (str(fnAsync)));
3992 else:
3993 reporter.errorTimeout('txsDoTask(%s): The task timed out.' % (str(fnAsync)));
3994 elif oTask is oSession:
3995 reporter.error('txsDoTask(%s): The VM terminated unexpectedly' % (str(fnAsync)));
3996 else:
3997 if fIgnoreErrors is True:
3998 reporter.log( 'txsDoTask(%s): An unknown task %s was returned' % (str(fnAsync), oTask,));
3999 else:
4000 reporter.error('txsDoTask(%s): An unknown task %s was returned' % (str(fnAsync), oTask,));
4001 else:
4002 reporter.error('txsDoTask(%s) returned %s' % (str(fnAsync), rc,));
4003
4004 if fRemoveTxs:
4005 self.removeTask(oTxsSession);
4006 if fRemoveVm:
4007 self.removeTask(oSession);
4008 return rc;
4009
4010 # pylint: disable=missing-docstring
4011
4012 def txsDisconnect(self, oSession, oTxsSession, cMsTimeout = 30000, fIgnoreErrors = False):
4013 return self.txsDoTask(oSession, oTxsSession, oTxsSession.asyncDisconnect,
4014 (self.adjustTimeoutMs(cMsTimeout), fIgnoreErrors));
4015
4016 def txsVer(self, oSession, oTxsSession, cMsTimeout = 30000, fIgnoreErrors = False):
4017 return self.txsDoTask(oSession, oTxsSession, oTxsSession.asyncVer,
4018 (self.adjustTimeoutMs(cMsTimeout), fIgnoreErrors));
4019
4020 def txsUuid(self, oSession, oTxsSession, cMsTimeout = 30000, fIgnoreErrors = False):
4021 return self.txsDoTask(oSession, oTxsSession, oTxsSession.asyncUuid,
4022 (self.adjustTimeoutMs(cMsTimeout), fIgnoreErrors));
4023
4024 def txsMkDir(self, oSession, oTxsSession, sRemoteDir, fMode = 0o700, cMsTimeout = 30000, fIgnoreErrors = False):
4025 return self.txsDoTask(oSession, oTxsSession, oTxsSession.asyncMkDir,
4026 (sRemoteDir, fMode, self.adjustTimeoutMs(cMsTimeout), fIgnoreErrors));
4027
4028 def txsMkDirPath(self, oSession, oTxsSession, sRemoteDir, fMode = 0o700, cMsTimeout = 30000, fIgnoreErrors = False):
4029 return self.txsDoTask(oSession, oTxsSession, oTxsSession.asyncMkDirPath,
4030 (sRemoteDir, fMode, self.adjustTimeoutMs(cMsTimeout), fIgnoreErrors));
4031
4032 def txsMkSymlink(self, oSession, oTxsSession, sLinkTarget, sLink, cMsTimeout = 30000, fIgnoreErrors = False):
4033 return self.txsDoTask(oSession, oTxsSession, oTxsSession.asyncMkSymlink,
4034 (sLinkTarget, sLink, self.adjustTimeoutMs(cMsTimeout), fIgnoreErrors));
4035
4036 def txsRmDir(self, oSession, oTxsSession, sRemoteDir, cMsTimeout = 30000, fIgnoreErrors = False):
4037 return self.txsDoTask(oSession, oTxsSession, oTxsSession.asyncRmDir,
4038 (sRemoteDir, self.adjustTimeoutMs(cMsTimeout), fIgnoreErrors));
4039
4040 def txsRmFile(self, oSession, oTxsSession, sRemoteFile, cMsTimeout = 30000, fIgnoreErrors = False):
4041 return self.txsDoTask(oSession, oTxsSession, oTxsSession.asyncRmFile,
4042 (sRemoteFile, self.adjustTimeoutMs(cMsTimeout), fIgnoreErrors));
4043
4044 def txsRmSymlink(self, oSession, oTxsSession, sRemoteSymlink, cMsTimeout = 30000, fIgnoreErrors = False):
4045 return self.txsDoTask(oSession, oTxsSession, oTxsSession.asyncRmSymlink,
4046 (sRemoteSymlink, self.adjustTimeoutMs(cMsTimeout), fIgnoreErrors));
4047
4048 def txsRmTree(self, oSession, oTxsSession, sRemoteTree, cMsTimeout = 30000, fIgnoreErrors = False):
4049 return self.txsDoTask(oSession, oTxsSession, oTxsSession.asyncRmTree,
4050 (sRemoteTree, self.adjustTimeoutMs(cMsTimeout), fIgnoreErrors));
4051
4052 def txsIsDir(self, oSession, oTxsSession, sRemoteDir, cMsTimeout = 30000, fIgnoreErrors = False):
4053 return self.txsDoTask(oSession, oTxsSession, oTxsSession.asyncIsDir,
4054 (sRemoteDir, self.adjustTimeoutMs(cMsTimeout), fIgnoreErrors));
4055
4056 def txsIsFile(self, oSession, oTxsSession, sRemoteFile, cMsTimeout = 30000, fIgnoreErrors = False):
4057 return self.txsDoTask(oSession, oTxsSession, oTxsSession.asyncIsFile,
4058 (sRemoteFile, self.adjustTimeoutMs(cMsTimeout), fIgnoreErrors));
4059
4060 def txsIsSymlink(self, oSession, oTxsSession, sRemoteSymlink, cMsTimeout = 30000, fIgnoreErrors = False):
4061 return self.txsDoTask(oSession, oTxsSession, oTxsSession.asyncIsSymlink,
4062 (sRemoteSymlink, self.adjustTimeoutMs(cMsTimeout), fIgnoreErrors));
4063
4064 def txsCopyFile(self, oSession, oTxsSession, sSrcFile, sDstFile, fMode = 0, cMsTimeout = 30000, fIgnoreErrors = False):
4065 return self.txsDoTask(oSession, oTxsSession, oTxsSession.asyncCopyFile, \
4066 (sSrcFile, sDstFile, fMode, self.adjustTimeoutMs(cMsTimeout), fIgnoreErrors));
4067
4068 def txsUploadFile(self, oSession, oTxsSession, sLocalFile, sRemoteFile, cMsTimeout = 30000, fIgnoreErrors = False):
4069 return self.txsDoTask(oSession, oTxsSession, oTxsSession.asyncUploadFile, \
4070 (sLocalFile, sRemoteFile, self.adjustTimeoutMs(cMsTimeout), fIgnoreErrors));
4071
4072 def txsUploadString(self, oSession, oTxsSession, sContent, sRemoteFile, cMsTimeout = 30000, fIgnoreErrors = False):
4073 return self.txsDoTask(oSession, oTxsSession, oTxsSession.asyncUploadString, \
4074 (sContent, sRemoteFile, self.adjustTimeoutMs(cMsTimeout), fIgnoreErrors));
4075
4076 def txsDownloadFile(self, oSession, oTxsSession, sRemoteFile, sLocalFile, cMsTimeout = 30000, fIgnoreErrors = False):
4077 return self.txsDoTask(oSession, oTxsSession, oTxsSession.asyncDownloadFile, \
4078 (sRemoteFile, sLocalFile, self.adjustTimeoutMs(cMsTimeout), fIgnoreErrors));
4079
4080 def txsDownloadFiles(self, oSession, oTxsSession, aasFiles, fAddToLog = True, fIgnoreErrors = False):
4081 """
4082 Convenience function to get files from the guest, storing them in the
4083 scratch and adding them to the test result set (optional, but default).
4084
4085 The aasFiles parameter contains an array of with guest-path + host-path
4086 pairs, optionally a file 'kind', description and an alternative upload
4087 filename can also be specified.
4088
4089 Host paths are relative to the scratch directory or they must be given
4090 in absolute form. The guest path should be using guest path style.
4091
4092 Returns True on success.
4093 Returns False on failure (unless fIgnoreErrors is set), logged.
4094 """
4095 for asEntry in aasFiles:
4096 # Unpack:
4097 sGstFile = asEntry[0];
4098 sHstFile = asEntry[1];
4099 sKind = asEntry[2] if len(asEntry) > 2 and asEntry[2] else 'misc/other';
4100 sDescription = asEntry[3] if len(asEntry) > 3 and asEntry[3] else '';
4101 sAltName = asEntry[4] if len(asEntry) > 4 and asEntry[4] else None;
4102 assert len(asEntry) <= 5 and sGstFile and sHstFile;
4103 if not os.path.isabs(sHstFile):
4104 sHstFile = os.path.join(self.sScratchPath, sHstFile);
4105
4106 reporter.log2('Downloading file "%s" to "%s" ...' % (sGstFile, sHstFile,));
4107
4108 try: os.unlink(sHstFile); ## @todo txsDownloadFile doesn't truncate the output file.
4109 except: pass;
4110
4111 fRc = self.txsDownloadFile(oSession, oTxsSession, sGstFile, sHstFile, 30 * 1000, fIgnoreErrors);
4112 if fRc:
4113 if fAddToLog:
4114 reporter.addLogFile(sHstFile, sKind, sDescription, sAltName);
4115 else:
4116 if fIgnoreErrors is not True:
4117 return reporter.error('error downloading file "%s" to "%s"' % (sGstFile, sHstFile));
4118 reporter.log('warning: file "%s" was not downloaded, ignoring.' % (sGstFile,));
4119 return True;
4120
4121 def txsDownloadString(self, oSession, oTxsSession, sRemoteFile, sEncoding = 'utf-8', fIgnoreEncodingErrors = True,
4122 cMsTimeout = 30000, fIgnoreErrors = False):
4123 return self.txsDoTask(oSession, oTxsSession, oTxsSession.asyncDownloadString,
4124 (sRemoteFile, sEncoding, fIgnoreEncodingErrors, self.adjustTimeoutMs(cMsTimeout), fIgnoreErrors));
4125
4126 def txsPackFile(self, oSession, oTxsSession, sRemoteFile, sRemoteSource, cMsTimeout = 30000, fIgnoreErrors = False):
4127 return self.txsDoTask(oSession, oTxsSession, oTxsSession.asyncPackFile, \
4128 (sRemoteFile, sRemoteSource, self.adjustTimeoutMs(cMsTimeout), fIgnoreErrors));
4129
4130 def txsUnpackFile(self, oSession, oTxsSession, sRemoteFile, sRemoteDir, cMsTimeout = 30000, fIgnoreErrors = False):
4131 return self.txsDoTask(oSession, oTxsSession, oTxsSession.asyncUnpackFile, \
4132 (sRemoteFile, sRemoteDir, self.adjustTimeoutMs(cMsTimeout), fIgnoreErrors));
4133
4134 def txsExpandString(self, oSession, oTxsSession, sString, cMsTimeout = 30000, fIgnoreErrors = False):
4135 return self.txsDoTask(oSession, oTxsSession, oTxsSession.asyncExpandString, \
4136 (sString, self.adjustTimeoutMs(cMsTimeout), fIgnoreErrors));
4137
4138 # pylint: enable=missing-docstring
4139
4140 def txsCdWait(self,
4141 oSession, # type: vboxwrappers.SessionWrapper
4142 oTxsSession, # type: txsclient.Session
4143 cMsTimeout = 30000, # type: int
4144 sFile = None # type: String
4145 ): # -> bool
4146 """
4147 Mostly an internal helper for txsRebootAndReconnectViaTcp and
4148 startVmAndConnectToTxsViaTcp that waits for the CDROM drive to become
4149 ready. It does this by polling for a file it knows to exist on the CD.
4150
4151 Returns True on success.
4152
4153 Returns False on failure, logged.
4154 """
4155
4156 if sFile is None:
4157 sFile = 'valkit.txt';
4158
4159 reporter.log('txsCdWait: Waiting for file "%s" to become available ...' % (sFile,));
4160
4161 fRemoveVm = self.addTask(oSession);
4162 fRemoveTxs = self.addTask(oTxsSession);
4163 cMsTimeout = self.adjustTimeoutMs(cMsTimeout);
4164 msStart = base.timestampMilli();
4165 cMsTimeout2 = cMsTimeout;
4166 fRc = oTxsSession.asyncIsFile('${CDROM}/%s' % (sFile,), cMsTimeout2);
4167 if fRc is True:
4168 while True:
4169 # wait for it to complete.
4170 oTask = self.waitForTasks(cMsTimeout2 + 1);
4171 if oTask is not oTxsSession:
4172 oTxsSession.cancelTask();
4173 if oTask is None:
4174 reporter.errorTimeout('txsCdWait: The task timed out (after %s ms).'
4175 % (base.timestampMilli() - msStart,));
4176 elif oTask is oSession:
4177 reporter.error('txsCdWait: The VM terminated unexpectedly');
4178 else:
4179 reporter.error('txsCdWait: An unknown task %s was returned' % (oTask,));
4180 fRc = False;
4181 break;
4182 if oTxsSession.isSuccess():
4183 break;
4184
4185 # Check for timeout.
4186 cMsElapsed = base.timestampMilli() - msStart;
4187 if cMsElapsed >= cMsTimeout:
4188 reporter.error('txsCdWait: timed out');
4189 fRc = False;
4190 break;
4191 # delay.
4192 self.sleep(1);
4193
4194 # resubmit the task.
4195 cMsTimeout2 = msStart + cMsTimeout - base.timestampMilli();
4196 cMsTimeout2 = max(cMsTimeout2, 500);
4197 fRc = oTxsSession.asyncIsFile('${CDROM}/%s' % (sFile,), cMsTimeout2);
4198 if fRc is not True:
4199 reporter.error('txsCdWait: asyncIsFile failed');
4200 break;
4201 else:
4202 reporter.error('txsCdWait: asyncIsFile failed');
4203
4204 if not fRc:
4205 # Do some diagnosis to find out why this failed.
4206 ## @todo Identify guest OS type and only run one of the following commands.
4207 fIsNotWindows = True;
4208 reporter.log('txsCdWait: Listing root contents of ${CDROM}:');
4209 if fIsNotWindows:
4210 reporter.log('txsCdWait: Tiggering udevadm ...');
4211 oTxsSession.syncExec("/sbin/udevadm", ("/sbin/udevadm", "trigger", "--verbose"), fIgnoreErrors = True);
4212 time.sleep(15);
4213 oTxsSession.syncExec("/bin/ls", ("/bin/ls", "-al", "${CDROM}"), fIgnoreErrors = True);
4214 reporter.log('txsCdWait: Listing media directory:');
4215 oTxsSession.syncExec('/bin/ls', ('/bin/ls', '-l', '-a', '-R', '/media'), fIgnoreErrors = True);
4216 reporter.log('txsCdWait: Listing mount points / drives:');
4217 oTxsSession.syncExec('/bin/mount', ('/bin/mount',), fIgnoreErrors = True);
4218 oTxsSession.syncExec('/bin/cat', ('/bin/cat', '/etc/fstab'), fIgnoreErrors = True);
4219 oTxsSession.syncExec('/bin/dmesg', ('/bin/dmesg',), fIgnoreErrors = True);
4220 oTxsSession.syncExec('/usr/bin/lshw', ('/usr/bin/lshw', '-c', 'disk'), fIgnoreErrors = True);
4221 oTxsSession.syncExec('/bin/journalctl',
4222 ('/bin/journalctl', '-x', '-b'), fIgnoreErrors = True);
4223 oTxsSession.syncExec('/bin/journalctl',
4224 ('/bin/journalctl', '-x', '-b', '/usr/lib/udisks2/udisksd'), fIgnoreErrors = True);
4225 oTxsSession.syncExec('/usr/bin/udisksctl',
4226 ('/usr/bin/udisksctl', 'info', '-b', '/dev/sr0'), fIgnoreErrors = True);
4227 oTxsSession.syncExec('/bin/systemctl',
4228 ('/bin/systemctl', 'status', 'udisks2'), fIgnoreErrors = True);
4229 oTxsSession.syncExec('/bin/ps',
4230 ('/bin/ps', '-a', '-u', '-x'), fIgnoreErrors = True);
4231 reporter.log('txsCdWait: Mounting manually ...');
4232 for _ in range(3):
4233 oTxsSession.syncExec('/bin/mount', ('/bin/mount', '/dev/sr0', '${CDROM}'), fIgnoreErrors = True);
4234 time.sleep(5);
4235 reporter.log('txsCdWait: Re-Listing media directory:');
4236 oTxsSession.syncExec('/bin/ls', ('/bin/ls', '-l', '-a', '-R', '/media'), fIgnoreErrors = True);
4237 else:
4238 # ASSUMES that we always install Windows on drive C right now.
4239 sWinDir = "C:\\Windows\\System32\\";
4240 # Should work since WinXP Pro.
4241 oTxsSession.syncExec(sWinDir + "wbem\\WMIC.exe",
4242 ("WMIC.exe", "logicaldisk", "get",
4243 "deviceid, volumename, description"),
4244 fIgnoreErrors = True);
4245 oTxsSession.syncExec(sWinDir + " cmd.exe",
4246 ('cmd.exe', '/C', 'dir', '${CDROM}'),
4247 fIgnoreErrors = True);
4248
4249 if fRemoveTxs:
4250 self.removeTask(oTxsSession);
4251 if fRemoveVm:
4252 self.removeTask(oSession);
4253 return fRc;
4254
4255 def txsDoConnectViaTcp(self, oSession, cMsTimeout, fNatForwardingForTxs = False):
4256 """
4257 Mostly an internal worker for connecting to TXS via TCP used by the
4258 *ViaTcp methods.
4259
4260 Returns a tuplet with True/False and TxsSession/None depending on the
4261 result. Errors are logged.
4262 """
4263
4264 reporter.log2('txsDoConnectViaTcp: oSession=%s, cMsTimeout=%s, fNatForwardingForTxs=%s'
4265 % (oSession, cMsTimeout, fNatForwardingForTxs));
4266
4267 cMsTimeout = self.adjustTimeoutMs(cMsTimeout);
4268 oTxsConnect = oSession.txsConnectViaTcp(cMsTimeout, fNatForwardingForTxs = fNatForwardingForTxs);
4269 if oTxsConnect is not None:
4270 self.addTask(oTxsConnect);
4271 fRemoveVm = self.addTask(oSession);
4272 oTask = self.waitForTasks(cMsTimeout + 1);
4273 reporter.log2('txsDoConnectViaTcp: waitForTasks returned %s' % (oTask,));
4274 self.removeTask(oTxsConnect);
4275 if oTask is oTxsConnect:
4276 oTxsSession = oTxsConnect.getResult();
4277 if oTxsSession is not None:
4278 reporter.log('txsDoConnectViaTcp: Connected to TXS on %s.' % (oTxsSession.oTransport.sHostname,));
4279 return (True, oTxsSession);
4280
4281 reporter.error('txsDoConnectViaTcp: failed to connect to TXS.');
4282 else:
4283 oTxsConnect.cancelTask();
4284 if oTask is None:
4285 reporter.errorTimeout('txsDoConnectViaTcp: connect stage 1 timed out');
4286 elif oTask is oSession:
4287 oSession.reportPrematureTermination('txsDoConnectViaTcp: ');
4288 else:
4289 reporter.error('txsDoConnectViaTcp: unknown/wrong task %s' % (oTask,));
4290 if fRemoveVm:
4291 self.removeTask(oSession);
4292 else:
4293 reporter.error('txsDoConnectViaTcp: txsConnectViaTcp failed');
4294 return (False, None);
4295
4296 def startVmAndConnectToTxsViaTcp(self, sVmName, fCdWait = False, cMsTimeout = 15*60000, \
4297 cMsCdWait = 30000, sFileCdWait = None, \
4298 fNatForwardingForTxs = False):
4299 """
4300 Starts the specified VM and tries to connect to its TXS via TCP.
4301 The VM will be powered off if TXS doesn't respond before the specified
4302 time has elapsed.
4303
4304 Returns a the VM and TXS sessions (a two tuple) on success. The VM
4305 session is in the task list, the TXS session is not.
4306 Returns (None, None) on failure, fully logged.
4307 """
4308
4309 # Zap the guest IP to make sure we're not getting a stale entry
4310 # (unless we're restoring the VM of course).
4311 oTestVM = self.oTestVmSet.findTestVmByName(sVmName) if self.oTestVmSet is not None else None;
4312 if oTestVM