VirtualBox

source: vbox/trunk/src/VBox/Main/ConsoleImpl2.cpp@ 32695

Last change on this file since 32695 was 32672, checked in by vboxsync, 15 years ago

VMMDev: Use snapshot dir as default guest coredump dir.

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 181.3 KB
Line 
1/* $Id: ConsoleImpl2.cpp 32672 2010-09-21 16:42:52Z vboxsync $ */
2/** @file
3 * VBox Console COM Class implementation
4 *
5 * @remark We've split out the code that the 64-bit VC++ v8 compiler finds
6 * problematic to optimize so we can disable optimizations and later,
7 * perhaps, find a real solution for it (like rewriting the code and
8 * to stop resemble a tonne of spaghetti).
9 */
10
11/*
12 * Copyright (C) 2006-2010 Oracle Corporation
13 *
14 * This file is part of VirtualBox Open Source Edition (OSE), as
15 * available from http://www.virtualbox.org. This file is free software;
16 * you can redistribute it and/or modify it under the terms of the GNU
17 * General Public License (GPL) as published by the Free Software
18 * Foundation, in version 2 as it comes in the "COPYING" file of the
19 * VirtualBox OSE distribution. VirtualBox OSE is distributed in the
20 * hope that it will be useful, but WITHOUT ANY WARRANTY of any kind.
21 */
22
23/*******************************************************************************
24* Header Files *
25*******************************************************************************/
26// for some reason Windows burns in sdk\...\winsock.h if this isn't included first
27#include "VBox/com/ptr.h"
28
29#include "ConsoleImpl.h"
30#include "DisplayImpl.h"
31#ifdef VBOX_WITH_GUEST_CONTROL
32# include "GuestImpl.h"
33#endif
34#include "VMMDev.h"
35#include "Global.h"
36
37// generated header
38#include "SchemaDefs.h"
39
40#include "AutoCaller.h"
41#include "Logging.h"
42
43#include <iprt/buildconfig.h>
44#include <iprt/ctype.h>
45#include <iprt/dir.h>
46#include <iprt/file.h>
47#include <iprt/param.h>
48#include <iprt/path.h>
49#include <iprt/string.h>
50#include <iprt/system.h>
51#include <iprt/cpp/exception.h>
52#if 0 /* enable to play with lots of memory. */
53# include <iprt/env.h>
54#endif
55#include <iprt/stream.h>
56
57#include <VBox/vmapi.h>
58#include <VBox/err.h>
59#include <VBox/param.h>
60#include <VBox/pdmapi.h> /* For PDMR3DriverAttach/PDMR3DriverDetach */
61#include <VBox/version.h>
62#include <VBox/HostServices/VBoxClipboardSvc.h>
63#ifdef VBOX_WITH_CROGL
64# include <VBox/HostServices/VBoxCrOpenGLSvc.h>
65#endif
66#ifdef VBOX_WITH_GUEST_PROPS
67# include <VBox/HostServices/GuestPropertySvc.h>
68# include <VBox/com/defs.h>
69# include <VBox/com/array.h>
70# include <hgcm/HGCM.h> /** @todo it should be possible to register a service
71 * extension using a VMMDev callback. */
72# include <vector>
73#endif /* VBOX_WITH_GUEST_PROPS */
74#include <VBox/intnet.h>
75
76#include <VBox/com/com.h>
77#include <VBox/com/string.h>
78#include <VBox/com/array.h>
79
80#ifdef VBOX_WITH_NETFLT
81# if defined(RT_OS_SOLARIS)
82# include <zone.h>
83# elif defined(RT_OS_LINUX)
84# include <unistd.h>
85# include <sys/ioctl.h>
86# include <sys/socket.h>
87# include <linux/types.h>
88# include <linux/if.h>
89# include <linux/wireless.h>
90# elif defined(RT_OS_FREEBSD)
91# include <unistd.h>
92# include <sys/types.h>
93# include <sys/ioctl.h>
94# include <sys/socket.h>
95# include <net/if.h>
96# include <net80211/ieee80211_ioctl.h>
97# endif
98# if defined(RT_OS_WINDOWS)
99# include <VBox/WinNetConfig.h>
100# include <Ntddndis.h>
101# include <devguid.h>
102# else
103# include <HostNetworkInterfaceImpl.h>
104# include <netif.h>
105# include <stdlib.h>
106# endif
107#endif /* VBOX_WITH_NETFLT */
108
109#include "DHCPServerRunner.h"
110
111#if defined(RT_OS_DARWIN)
112
113# include "IOKit/IOKitLib.h"
114
115static int DarwinSmcKey(char *pabKey, uint32_t cbKey)
116{
117 /*
118 * Method as described in Amit Singh's article:
119 * http://osxbook.com/book/bonus/chapter7/tpmdrmmyth/
120 */
121 typedef struct
122 {
123 uint32_t key;
124 uint8_t pad0[22];
125 uint32_t datasize;
126 uint8_t pad1[10];
127 uint8_t cmd;
128 uint32_t pad2;
129 uint8_t data[32];
130 } AppleSMCBuffer;
131
132 AssertReturn(cbKey >= 65, VERR_INTERNAL_ERROR);
133
134 io_service_t service = IOServiceGetMatchingService(kIOMasterPortDefault,
135 IOServiceMatching("AppleSMC"));
136 if (!service)
137 return VERR_NOT_FOUND;
138
139 io_connect_t port = (io_connect_t)0;
140 kern_return_t kr = IOServiceOpen(service, mach_task_self(), 0, &port);
141 IOObjectRelease(service);
142
143 if (kr != kIOReturnSuccess)
144 return RTErrConvertFromDarwin(kr);
145
146 AppleSMCBuffer inputStruct = { 0, {0}, 32, {0}, 5, };
147 AppleSMCBuffer outputStruct;
148 size_t cbOutputStruct = sizeof(outputStruct);
149
150 for (int i = 0; i < 2; i++)
151 {
152 inputStruct.key = (uint32_t)((i == 0) ? 'OSK0' : 'OSK1');
153 kr = IOConnectCallStructMethod((mach_port_t)port,
154 (uint32_t)2,
155 (const void *)&inputStruct,
156 sizeof(inputStruct),
157 (void *)&outputStruct,
158 &cbOutputStruct);
159 if (kr != kIOReturnSuccess)
160 {
161 IOServiceClose(port);
162 return RTErrConvertFromDarwin(kr);
163 }
164
165 for (int j = 0; j < 32; j++)
166 pabKey[j + i*32] = outputStruct.data[j];
167 }
168
169 IOServiceClose(port);
170
171 pabKey[64] = 0;
172
173 return VINF_SUCCESS;
174}
175
176#endif /* RT_OS_DARWIN */
177
178/* Darwin compile cludge */
179#undef PVM
180
181/* Comment out the following line to remove VMWare compatibility hack. */
182#define VMWARE_NET_IN_SLOT_11
183
184/**
185 * Translate IDE StorageControllerType_T to string representation.
186 */
187const char* controllerString(StorageControllerType_T enmType)
188{
189 switch (enmType)
190 {
191 case StorageControllerType_PIIX3:
192 return "PIIX3";
193 case StorageControllerType_PIIX4:
194 return "PIIX4";
195 case StorageControllerType_ICH6:
196 return "ICH6";
197 default:
198 return "Unknown";
199 }
200}
201
202/**
203 * Simple class for storing network boot information.
204 */
205struct BootNic
206{
207 ULONG mInstance;
208 unsigned mPciDev;
209 unsigned mPciFn;
210 ULONG mBootPrio;
211 bool operator < (const BootNic &rhs) const
212 {
213 ULONG lval = mBootPrio - 1; /* 0 will wrap around and get the lowest priority. */
214 ULONG rval = rhs.mBootPrio - 1;
215 return lval < rval; /* Zero compares as highest number (lowest prio). */
216 }
217};
218
219/*
220 * VC++ 8 / amd64 has some serious trouble with this function.
221 * As a temporary measure, we'll drop global optimizations.
222 */
223#if defined(_MSC_VER) && defined(RT_ARCH_AMD64)
224# pragma optimize("g", off)
225#endif
226
227static int findEfiRom(IVirtualBox* vbox, FirmwareType_T aFirmwareType, Utf8Str& aEfiRomFile)
228{
229 int rc;
230 BOOL fPresent = FALSE;
231 Bstr aFilePath, empty;
232
233 rc = vbox->CheckFirmwarePresent(aFirmwareType, empty,
234 empty.asOutParam(), aFilePath.asOutParam(), &fPresent);
235 if (RT_FAILURE(rc))
236 AssertComRCReturn(rc, VERR_FILE_NOT_FOUND);
237
238 if (!fPresent)
239 return VERR_FILE_NOT_FOUND;
240
241 aEfiRomFile = Utf8Str(aFilePath);
242
243 return S_OK;
244}
245
246static int getSmcDeviceKey(IMachine *pMachine, BSTR *aKey, bool *pfGetKeyFromRealSMC)
247{
248 *pfGetKeyFromRealSMC = false;
249
250 /*
251 * The extra data takes precedence (if non-zero).
252 */
253 HRESULT hrc = pMachine->GetExtraData(Bstr("VBoxInternal2/SmcDeviceKey"), aKey);
254 if (FAILED(hrc))
255 return Global::vboxStatusCodeFromCOM(hrc);
256 if ( SUCCEEDED(hrc)
257 && *aKey
258 && **aKey)
259 return VINF_SUCCESS;
260
261#ifdef RT_OS_DARWIN
262 /*
263 * Query it here and now.
264 */
265 char abKeyBuf[65];
266 int rc = DarwinSmcKey(abKeyBuf, sizeof(abKeyBuf));
267 if (SUCCEEDED(rc))
268 {
269 Bstr(abKeyBuf).detachTo(aKey);
270 return rc;
271 }
272 LogRel(("Warning: DarwinSmcKey failed with rc=%Rrc!\n", rc));
273
274#else
275 /*
276 * Is it apple hardware in bootcamp?
277 */
278 /** @todo implement + test RTSYSDMISTR_MANUFACTURER on all hosts.
279 * Currently falling back on the product name. */
280 char szManufacturer[256];
281 szManufacturer[0] = '\0';
282 RTSystemQueryDmiString(RTSYSDMISTR_MANUFACTURER, szManufacturer, sizeof(szManufacturer));
283 if (szManufacturer[0] != '\0')
284 {
285 if ( !strcmp(szManufacturer, "Apple Computer, Inc.")
286 || !strcmp(szManufacturer, "Apple Inc.")
287 )
288 *pfGetKeyFromRealSMC = true;
289 }
290 else
291 {
292 char szProdName[256];
293 szProdName[0] = '\0';
294 RTSystemQueryDmiString(RTSYSDMISTR_PRODUCT_NAME, szProdName, sizeof(szProdName));
295 if ( ( !strncmp(szProdName, "Mac", 3)
296 || !strncmp(szProdName, "iMac", 4)
297 || !strncmp(szProdName, "iMac", 4)
298 || !strncmp(szProdName, "Xserve", 6)
299 )
300 && !strchr(szProdName, ' ') /* no spaces */
301 && RT_C_IS_DIGIT(szProdName[strlen(szProdName) - 1]) /* version number */
302 )
303 *pfGetKeyFromRealSMC = true;
304 }
305
306 int rc = VINF_SUCCESS;
307#endif
308
309 return rc;
310}
311
312class ConfigError : public iprt::Error
313{
314public:
315
316 ConfigError(const char *pcszFunction,
317 int vrc,
318 const char *pcszName)
319 : iprt::Error(Utf8StrFmt("%s failed: rc=%Rrc, pcszName=%s", pcszFunction, vrc, pcszName)),
320 m_vrc(vrc)
321 {
322 AssertMsgFailed(("%s\n", what())); // in strict mode, hit a breakpoint here
323 }
324
325 int m_vrc;
326};
327
328
329/**
330 * Helper that calls CFGMR3InsertString and throws an iprt::Error if that
331 * fails (C-string variant).
332 * @param pParent See CFGMR3InsertStringN.
333 * @param pcszNodeName See CFGMR3InsertStringN.
334 * @param pcszValue The string value.
335 */
336static void InsertConfigString(PCFGMNODE pNode,
337 const char *pcszName,
338 const char *pcszValue)
339{
340 int vrc = CFGMR3InsertString(pNode,
341 pcszName,
342 pcszValue);
343 if (RT_FAILURE(vrc))
344 throw ConfigError("CFGMR3InsertString", vrc, pcszName);
345}
346
347/**
348 * Helper that calls CFGMR3InsertString and throws an iprt::Error if that
349 * fails (Utf8Str variant).
350 * @param pParent See CFGMR3InsertStringN.
351 * @param pcszNodeName See CFGMR3InsertStringN.
352 * @param rStrValue The string value.
353 */
354static void InsertConfigString(PCFGMNODE pNode,
355 const char *pcszName,
356 const Utf8Str &rStrValue)
357{
358 int vrc = CFGMR3InsertStringN(pNode,
359 pcszName,
360 rStrValue.c_str(),
361 rStrValue.length());
362 if (RT_FAILURE(vrc))
363 throw ConfigError("CFGMR3InsertStringLengthKnown", vrc, pcszName);
364}
365
366/**
367 * Helper that calls CFGMR3InsertString and throws an iprt::Error if that
368 * fails (Bstr variant).
369 *
370 * @param pParent See CFGMR3InsertStringN.
371 * @param pcszNodeName See CFGMR3InsertStringN.
372 * @param rBstrValue The string value.
373 */
374static void InsertConfigString(PCFGMNODE pNode,
375 const char *pcszName,
376 const Bstr &rBstrValue)
377{
378 InsertConfigString(pNode, pcszName, Utf8Str(rBstrValue));
379}
380
381/**
382 * Helper that calls CFGMR3InsertBytes and throws an iprt::Error if that fails.
383 *
384 * @param pNode See CFGMR3InsertBytes.
385 * @param pcszName See CFGMR3InsertBytes.
386 * @param pvBytes See CFGMR3InsertBytes.
387 * @param cbBytes See CFGMR3InsertBytes.
388 */
389static void InsertConfigBytes(PCFGMNODE pNode,
390 const char *pcszName,
391 const void *pvBytes,
392 size_t cbBytes)
393{
394 int vrc = CFGMR3InsertBytes(pNode,
395 pcszName,
396 pvBytes,
397 cbBytes);
398 if (RT_FAILURE(vrc))
399 throw ConfigError("CFGMR3InsertBytes", vrc, pcszName);
400}
401
402/**
403 * Helper that calls CFGMR3InsertInteger and thows an iprt::Error if that
404 * fails.
405 *
406 * @param pNode See CFGMR3InsertInteger.
407 * @param pcszName See CFGMR3InsertInteger.
408 * @param u64Integer See CFGMR3InsertInteger.
409 */
410static void InsertConfigInteger(PCFGMNODE pNode,
411 const char *pcszName,
412 uint64_t u64Integer)
413{
414 int vrc = CFGMR3InsertInteger(pNode,
415 pcszName,
416 u64Integer);
417 if (RT_FAILURE(vrc))
418 throw ConfigError("CFGMR3InsertInteger", vrc, pcszName);
419}
420
421/**
422 * Helper that calls CFGMR3InsertNode and throws an iprt::Error if that fails.
423 *
424 * @param pNode See CFGMR3InsertNode.
425 * @param pcszName See CFGMR3InsertNode.
426 * @param ppChild See CFGMR3InsertNode.
427 */
428static void InsertConfigNode(PCFGMNODE pNode,
429 const char *pcszName,
430 PCFGMNODE *ppChild)
431{
432 int vrc = CFGMR3InsertNode(pNode, pcszName, ppChild);
433 if (RT_FAILURE(vrc))
434 throw ConfigError("CFGMR3InsertNode", vrc, pcszName);
435}
436
437/**
438 * Helper that calls CFGMR3RemoveValue and throws an iprt::Error if that fails.
439 *
440 * @param pNode See CFGMR3RemoveValue.
441 * @param pcszName See CFGMR3RemoveValue.
442 */
443static void RemoveConfigValue(PCFGMNODE pNode,
444 const char *pcszName)
445{
446 int vrc = CFGMR3RemoveValue(pNode, pcszName);
447 if (RT_FAILURE(vrc))
448 throw ConfigError("CFGMR3RemoveValue", vrc, pcszName);
449}
450
451
452/**
453 * Construct the VM configuration tree (CFGM).
454 *
455 * This is a callback for VMR3Create() call. It is called from CFGMR3Init()
456 * in the emulation thread (EMT). Any per thread COM/XPCOM initialization
457 * is done here.
458 *
459 * @param pVM VM handle.
460 * @param pvConsole Pointer to the VMPowerUpTask object.
461 * @return VBox status code.
462 *
463 * @note Locks the Console object for writing.
464 */
465DECLCALLBACK(int) Console::configConstructor(PVM pVM, void *pvConsole)
466{
467 LogFlowFuncEnter();
468 /* Note: hardcoded assumption about number of slots; see rom bios */
469 bool afPciDeviceNo[32] = {false};
470 bool fFdcEnabled = false;
471 BOOL fIs64BitGuest = false;
472
473#if !defined(VBOX_WITH_XPCOM)
474 {
475 /* initialize COM */
476 HRESULT hrc = CoInitializeEx(NULL,
477 COINIT_MULTITHREADED | COINIT_DISABLE_OLE1DDE |
478 COINIT_SPEED_OVER_MEMORY);
479 LogFlow(("Console::configConstructor(): CoInitializeEx()=%08X\n", hrc));
480 AssertComRCReturn(hrc, VERR_GENERAL_FAILURE);
481 }
482#endif
483
484 AssertReturn(pvConsole, VERR_GENERAL_FAILURE);
485 ComObjPtr<Console> pConsole = static_cast<Console *>(pvConsole);
486
487 AutoCaller autoCaller(pConsole);
488 AssertComRCReturn(autoCaller.rc(), VERR_ACCESS_DENIED);
489
490 /* lock the console because we widely use internal fields and methods */
491 AutoWriteLock alock(pConsole COMMA_LOCKVAL_SRC_POS);
492
493 /* Save the VM pointer in the machine object */
494 pConsole->mpVM = pVM;
495
496 ComPtr<IMachine> pMachine = pConsole->machine();
497
498 int rc;
499 HRESULT hrc;
500 Bstr bstr;
501
502#define H() AssertMsgReturn(!FAILED(hrc), ("hrc=%Rhrc\n", hrc), VERR_GENERAL_FAILURE)
503
504 /*
505 * Get necessary objects and frequently used parameters.
506 */
507 ComPtr<IVirtualBox> virtualBox;
508 hrc = pMachine->COMGETTER(Parent)(virtualBox.asOutParam()); H();
509
510 ComPtr<IHost> host;
511 hrc = virtualBox->COMGETTER(Host)(host.asOutParam()); H();
512
513 ComPtr<ISystemProperties> systemProperties;
514 hrc = virtualBox->COMGETTER(SystemProperties)(systemProperties.asOutParam()); H();
515
516 ComPtr<IBIOSSettings> biosSettings;
517 hrc = pMachine->COMGETTER(BIOSSettings)(biosSettings.asOutParam()); H();
518
519 hrc = pMachine->COMGETTER(HardwareUUID)(bstr.asOutParam()); H();
520 RTUUID HardwareUuid;
521 rc = RTUuidFromUtf16(&HardwareUuid, bstr.raw());
522 AssertMsgReturn(RT_SUCCESS(rc), ("rc=%Rrc\n", rc), rc);
523
524 ULONG cRamMBs;
525 hrc = pMachine->COMGETTER(MemorySize)(&cRamMBs); H();
526#if 0 /* enable to play with lots of memory. */
527 if (RTEnvExist("VBOX_RAM_SIZE"))
528 cRamMBs = RTStrToUInt64(RTEnvGet("VBOX_RAM_SIZE"));
529#endif
530 uint64_t const cbRam = cRamMBs * (uint64_t)_1M;
531 uint32_t cbRamHole = MM_RAM_HOLE_SIZE_DEFAULT;
532 uint64_t u64McfgBase = 0;
533 uint64_t u64McfgLength = 0;
534
535 ChipsetType_T chipsetType;
536 hrc = pMachine->COMGETTER(ChipsetType)(&chipsetType); H();
537 if (chipsetType == ChipsetType_ICH9)
538 {
539 u64McfgLength = 0x10000000;
540 cbRamHole += u64McfgLength;
541 u64McfgBase = _4G - cbRamHole;
542 }
543
544 ULONG cCpus = 1;
545 hrc = pMachine->COMGETTER(CPUCount)(&cCpus); H();
546
547 ULONG ulCpuPriority = 100;
548 hrc = pMachine->COMGETTER(CPUPriority)(&ulCpuPriority); H();
549
550 Bstr osTypeId;
551 hrc = pMachine->COMGETTER(OSTypeId)(osTypeId.asOutParam()); H();
552
553 BOOL fIOAPIC;
554 hrc = biosSettings->COMGETTER(IOAPICEnabled)(&fIOAPIC); H();
555
556 ComPtr<IGuestOSType> guestOSType;
557 hrc = virtualBox->GetGuestOSType(osTypeId, guestOSType.asOutParam()); H();
558
559 Bstr guestTypeFamilyId;
560 hrc = guestOSType->COMGETTER(FamilyId)(guestTypeFamilyId.asOutParam()); H();
561 BOOL fOsXGuest = guestTypeFamilyId == Bstr("MacOS");
562
563 /*
564 * Get root node first.
565 * This is the only node in the tree.
566 */
567 PCFGMNODE pRoot = CFGMR3GetRoot(pVM);
568 Assert(pRoot);
569
570 // InsertConfigString throws
571 try
572 {
573
574 /*
575 * Set the root (and VMM) level values.
576 */
577 hrc = pMachine->COMGETTER(Name)(bstr.asOutParam()); H();
578 InsertConfigString(pRoot, "Name", bstr);
579 InsertConfigBytes(pRoot, "UUID", &HardwareUuid, sizeof(HardwareUuid));
580 InsertConfigInteger(pRoot, "RamSize", cbRam);
581 InsertConfigInteger(pRoot, "RamHoleSize", cbRamHole);
582 InsertConfigInteger(pRoot, "NumCPUs", cCpus);
583 InsertConfigInteger(pRoot, "CpuPriority", ulCpuPriority);
584 InsertConfigInteger(pRoot, "TimerMillies", 10);
585#ifdef VBOX_WITH_RAW_MODE
586 InsertConfigInteger(pRoot, "RawR3Enabled", 1); /* boolean */
587 InsertConfigInteger(pRoot, "RawR0Enabled", 1); /* boolean */
588 /** @todo Config: RawR0, PATMEnabled and CSAMEnabled needs attention later. */
589 InsertConfigInteger(pRoot, "PATMEnabled", 1); /* boolean */
590 InsertConfigInteger(pRoot, "CSAMEnabled", 1); /* boolean */
591#endif
592 /* Not necessary, but to make sure these two settings end up in the release log. */
593 BOOL fPageFusion = FALSE;
594 hrc = pMachine->COMGETTER(PageFusionEnabled)(&fPageFusion); H();
595 InsertConfigInteger(pRoot, "PageFusion", fPageFusion); /* boolean */
596 ULONG ulBalloonSize = 0;
597 hrc = pMachine->COMGETTER(MemoryBalloonSize)(&ulBalloonSize); H();
598 InsertConfigInteger(pRoot, "MemBalloonSize", ulBalloonSize);
599
600 /*
601 * CPUM values.
602 */
603 PCFGMNODE pCPUM;
604 InsertConfigNode(pRoot, "CPUM", &pCPUM);
605
606 /* cpuid leaf overrides. */
607 static uint32_t const s_auCpuIdRanges[] =
608 {
609 UINT32_C(0x00000000), UINT32_C(0x0000000a),
610 UINT32_C(0x80000000), UINT32_C(0x8000000a)
611 };
612 for (unsigned i = 0; i < RT_ELEMENTS(s_auCpuIdRanges); i += 2)
613 for (uint32_t uLeaf = s_auCpuIdRanges[i]; uLeaf < s_auCpuIdRanges[i + 1]; uLeaf++)
614 {
615 ULONG ulEax, ulEbx, ulEcx, ulEdx;
616 hrc = pMachine->GetCPUIDLeaf(uLeaf, &ulEax, &ulEbx, &ulEcx, &ulEdx);
617 if (SUCCEEDED(hrc))
618 {
619 PCFGMNODE pLeaf;
620 InsertConfigNode(pCPUM, Utf8StrFmt("HostCPUID/%RX32", uLeaf).c_str(), &pLeaf);
621
622 InsertConfigInteger(pLeaf, "eax", ulEax);
623 InsertConfigInteger(pLeaf, "ebx", ulEbx);
624 InsertConfigInteger(pLeaf, "ecx", ulEcx);
625 InsertConfigInteger(pLeaf, "edx", ulEdx);
626 }
627 else if (hrc != E_INVALIDARG) H();
628 }
629
630 /* We must limit CPUID count for Windows NT 4, as otherwise it stops
631 with error 0x3e (MULTIPROCESSOR_CONFIGURATION_NOT_SUPPORTED). */
632 if (osTypeId == "WindowsNT4")
633 {
634 LogRel(("Limiting CPUID leaf count for NT4 guests\n"));
635 InsertConfigInteger(pCPUM, "NT4LeafLimit", true);
636 }
637
638 /* Expose extended MWAIT features to Mac OS X guests. */
639 if (fOsXGuest)
640 {
641 LogRel(("Using MWAIT extensions\n"));
642 InsertConfigInteger(pCPUM, "MWaitExtensions", true);
643 }
644
645 /*
646 * Hardware virtualization extensions.
647 */
648 BOOL fHWVirtExEnabled;
649 BOOL fHwVirtExtForced = false;
650#ifdef VBOX_WITH_RAW_MODE
651 hrc = pMachine->GetHWVirtExProperty(HWVirtExPropertyType_Enabled, &fHWVirtExEnabled); H();
652 if (cCpus > 1) /** @todo SMP: This isn't nice, but things won't work on mac otherwise. */
653 fHWVirtExEnabled = TRUE;
654# ifdef RT_OS_DARWIN
655 fHwVirtExtForced = fHWVirtExEnabled;
656# else
657 /* - With more than 4GB PGM will use different RAMRANGE sizes for raw
658 mode and hv mode to optimize lookup times.
659 - With more than one virtual CPU, raw-mode isn't a fallback option. */
660 fHwVirtExtForced = fHWVirtExEnabled
661 && ( cbRam > (_4G - cbRamHole)
662 || cCpus > 1);
663# endif
664#else /* !VBOX_WITH_RAW_MODE */
665 fHWVirtExEnabled = fHwVirtExtForced = true;
666#endif /* !VBOX_WITH_RAW_MODE */
667 /* only honor the property value if there was no other reason to enable it */
668 if (!fHwVirtExtForced)
669 {
670 hrc = pMachine->GetHWVirtExProperty(HWVirtExPropertyType_Force, &fHwVirtExtForced); H();
671 }
672 InsertConfigInteger(pRoot, "HwVirtExtForced", fHwVirtExtForced);
673
674 PCFGMNODE pHWVirtExt;
675 InsertConfigNode(pRoot, "HWVirtExt", &pHWVirtExt);
676 if (fHWVirtExEnabled)
677 {
678 InsertConfigInteger(pHWVirtExt, "Enabled", 1);
679
680 /* Indicate whether 64-bit guests are supported or not. */
681 /** @todo This is currently only forced off on 32-bit hosts only because it
682 * makes a lof of difference there (REM and Solaris performance).
683 */
684 BOOL fSupportsLongMode = false;
685 hrc = host->GetProcessorFeature(ProcessorFeature_LongMode,
686 &fSupportsLongMode); H();
687 hrc = guestOSType->COMGETTER(Is64Bit)(&fIs64BitGuest); H();
688
689 if (fSupportsLongMode && fIs64BitGuest)
690 {
691 InsertConfigInteger(pHWVirtExt, "64bitEnabled", 1);
692#if ARCH_BITS == 32 /* The recompiler must use VBoxREM64 (32-bit host only). */
693 PCFGMNODE pREM;
694 InsertConfigNode(pRoot, "REM", &pREM);
695 InsertConfigInteger(pREM, "64bitEnabled", 1);
696#endif
697 }
698#if ARCH_BITS == 32 /* 32-bit guests only. */
699 else
700 {
701 InsertConfigInteger(pHWVirtExt, "64bitEnabled", 0);
702 }
703#endif
704
705 /** @todo Not exactly pretty to check strings; VBOXOSTYPE would be better, but that requires quite a bit of API change in Main. */
706 if ( !fIs64BitGuest
707 && fIOAPIC
708 && ( osTypeId == "WindowsNT4"
709 || osTypeId == "Windows2000"
710 || osTypeId == "WindowsXP"
711 || osTypeId == "Windows2003"))
712 {
713 /* Only allow TPR patching for NT, Win2k, XP and Windows Server 2003. (32 bits mode)
714 * We may want to consider adding more guest OSes (Solaris) later on.
715 */
716 InsertConfigInteger(pHWVirtExt, "TPRPatchingEnabled", 1);
717 }
718 }
719
720 /* HWVirtEx exclusive mode */
721 BOOL fHWVirtExExclusive = true;
722 hrc = pMachine->GetHWVirtExProperty(HWVirtExPropertyType_Exclusive, &fHWVirtExExclusive); H();
723 InsertConfigInteger(pHWVirtExt, "Exclusive", fHWVirtExExclusive);
724
725 /* Nested paging (VT-x/AMD-V) */
726 BOOL fEnableNestedPaging = false;
727 hrc = pMachine->GetHWVirtExProperty(HWVirtExPropertyType_NestedPaging, &fEnableNestedPaging); H();
728 InsertConfigInteger(pHWVirtExt, "EnableNestedPaging", fEnableNestedPaging);
729
730 /* Large pages; requires nested paging */
731 BOOL fEnableLargePages = false;
732 hrc = pMachine->GetHWVirtExProperty(HWVirtExPropertyType_LargePages, &fEnableLargePages); H();
733 InsertConfigInteger(pHWVirtExt, "EnableLargePages", fEnableLargePages);
734
735 /* VPID (VT-x) */
736 BOOL fEnableVPID = false;
737 hrc = pMachine->GetHWVirtExProperty(HWVirtExPropertyType_VPID, &fEnableVPID); H();
738 InsertConfigInteger(pHWVirtExt, "EnableVPID", fEnableVPID);
739
740 /* Physical Address Extension (PAE) */
741 BOOL fEnablePAE = false;
742 hrc = pMachine->GetCPUProperty(CPUPropertyType_PAE, &fEnablePAE); H();
743 InsertConfigInteger(pRoot, "EnablePAE", fEnablePAE);
744
745 /* Synthetic CPU */
746 BOOL fSyntheticCpu = false;
747 hrc = pMachine->GetCPUProperty(CPUPropertyType_Synthetic, &fSyntheticCpu); H();
748 InsertConfigInteger(pRoot, "SyntheticCpu", fSyntheticCpu);
749
750 BOOL fPXEDebug;
751 hrc = biosSettings->COMGETTER(PXEDebugEnabled)(&fPXEDebug); H();
752
753 /*
754 * PDM config.
755 * Load drivers in VBoxC.[so|dll]
756 */
757 PCFGMNODE pPDM;
758 PCFGMNODE pDrivers;
759 PCFGMNODE pMod;
760 InsertConfigNode(pRoot, "PDM", &pPDM);
761 InsertConfigNode(pPDM, "Drivers", &pDrivers);
762 InsertConfigNode(pDrivers, "VBoxC", &pMod);
763#ifdef VBOX_WITH_XPCOM
764 // VBoxC is located in the components subdirectory
765 char szPathVBoxC[RTPATH_MAX];
766 rc = RTPathAppPrivateArch(szPathVBoxC, RTPATH_MAX - sizeof("/components/VBoxC")); AssertRC(rc);
767 strcat(szPathVBoxC, "/components/VBoxC");
768 InsertConfigString(pMod, "Path", szPathVBoxC);
769#else
770 InsertConfigString(pMod, "Path", "VBoxC");
771#endif
772
773 /*
774 * I/O settings (cach, max bandwidth, ...).
775 */
776 PCFGMNODE pPDMAc;
777 PCFGMNODE pPDMAcFile;
778 InsertConfigNode(pPDM, "AsyncCompletion", &pPDMAc);
779 InsertConfigNode(pPDMAc, "File", &pPDMAcFile);
780
781 /* Builtin I/O cache */
782 BOOL fIoCache = true;
783 hrc = pMachine->COMGETTER(IoCacheEnabled)(&fIoCache); H();
784 InsertConfigInteger(pPDMAcFile, "CacheEnabled", fIoCache);
785
786 /* I/O cache size */
787 ULONG ioCacheSize = 5;
788 hrc = pMachine->COMGETTER(IoCacheSize)(&ioCacheSize); H();
789 InsertConfigInteger(pPDMAcFile, "CacheSize", ioCacheSize * _1M);
790
791 /*
792 * Devices
793 */
794 PCFGMNODE pDevices = NULL; /* /Devices */
795 PCFGMNODE pDev = NULL; /* /Devices/Dev/ */
796 PCFGMNODE pInst = NULL; /* /Devices/Dev/0/ */
797 PCFGMNODE pCfg = NULL; /* /Devices/Dev/.../Config/ */
798 PCFGMNODE pLunL0 = NULL; /* /Devices/Dev/0/LUN#0/ */
799 PCFGMNODE pLunL1 = NULL; /* /Devices/Dev/0/LUN#0/AttachedDriver/ */
800 PCFGMNODE pLunL2 = NULL; /* /Devices/Dev/0/LUN#0/AttachedDriver/Config/ */
801 PCFGMNODE pBiosCfg = NULL; /* /Devices/pcbios/0/Config/ */
802 PCFGMNODE pNetBootCfg = NULL; /* /Devices/pcbios/0/Config/NetBoot/ */
803
804 InsertConfigNode(pRoot, "Devices", &pDevices);
805
806 /*
807 * PC Arch.
808 */
809 InsertConfigNode(pDevices, "pcarch", &pDev);
810 InsertConfigNode(pDev, "0", &pInst);
811 InsertConfigInteger(pInst, "Trusted", 1); /* boolean */
812 InsertConfigNode(pInst, "Config", &pCfg);
813
814 /*
815 * The time offset
816 */
817 LONG64 timeOffset;
818 hrc = biosSettings->COMGETTER(TimeOffset)(&timeOffset); H();
819 PCFGMNODE pTMNode;
820 InsertConfigNode(pRoot, "TM", &pTMNode);
821 InsertConfigInteger(pTMNode, "UTCOffset", timeOffset * 1000000);
822
823 /*
824 * DMA
825 */
826 InsertConfigNode(pDevices, "8237A", &pDev);
827 InsertConfigNode(pDev, "0", &pInst);
828 InsertConfigInteger(pInst, "Trusted", 1); /* boolean */
829
830 /*
831 * PCI buses.
832 */
833 uint32_t u32IocPciAddress, u32HbcPciAddress;
834 switch (chipsetType)
835 {
836 default:
837 Assert(false);
838 case ChipsetType_PIIX3:
839 InsertConfigNode(pDevices, "pci", &pDev);
840 u32HbcPciAddress = 0;
841 u32IocPciAddress = (0x1 << 16) | 0; // ISA controller
842 break;
843 case ChipsetType_ICH9:
844 InsertConfigNode(pDevices, "ich9pci", &pDev);
845 u32HbcPciAddress = (0x1d << 16) | 0;
846 u32IocPciAddress = (0x1f << 16) | 0; // LPC controller
847 break;
848 }
849 InsertConfigNode(pDev, "0", &pInst);
850 InsertConfigInteger(pInst, "Trusted", 1); /* boolean */
851 InsertConfigNode(pInst, "Config", &pCfg);
852 InsertConfigInteger(pCfg, "IOAPIC", fIOAPIC);
853
854#if 0 /* enable this to test PCI bridging */
855 InsertConfigNode(pDevices, "pcibridge", &pDev);
856 InsertConfigNode(pDev, "0", &pInst);
857 InsertConfigInteger(pInst, "Trusted", 1); /* boolean */
858 InsertConfigNode(pInst, "Config", &pCfg);
859 InsertConfigInteger(pInst, "PCIDeviceNo", 14);
860 InsertConfigInteger(pInst, "PCIFunctionNo", 0);
861 rc = CFGMR3InsertInteger(pInst, "PCIBusNo", 0);/* -> pci[0] */ RC_CHECK();
862
863 InsertConfigNode(pDev, "1", &pInst);
864 InsertConfigInteger(pInst, "Trusted", 1); /* boolean */
865 InsertConfigNode(pInst, "Config", &pCfg);
866 InsertConfigInteger(pInst, "PCIDeviceNo", 1);
867 InsertConfigInteger(pInst, "PCIFunctionNo", 0);
868 rc = CFGMR3InsertInteger(pInst, "PCIBusNo", 1);/* ->pcibridge[0] */ RC_CHECK();
869
870 InsertConfigNode(pDev, "2", &pInst);
871 InsertConfigInteger(pInst, "Trusted", 1); /* boolean */
872 InsertConfigNode(pInst, "Config", &pCfg);
873 InsertConfigInteger(pInst, "PCIDeviceNo", 3);
874 InsertConfigInteger(pInst, "PCIFunctionNo", 0);
875 rc = CFGMR3InsertInteger(pInst, "PCIBusNo", 1);/* ->pcibridge[0] */ RC_CHECK();
876#endif
877
878 /*
879 * Enable 3 following devices: HPET, SMC, LPC on MacOS X guests
880 */
881 /*
882 * High Precision Event Timer (HPET)
883 */
884 BOOL fHpetEnabled;
885 /* Other guests may wish to use HPET too, but MacOS X not functional without it */
886 hrc = pMachine->COMGETTER(HpetEnabled)(&fHpetEnabled); H();
887 /* so always enable HPET in extended profile */
888 fHpetEnabled |= fOsXGuest;
889 /* HPET is always present on ICH9 */
890 fHpetEnabled |= (chipsetType == ChipsetType_ICH9);
891 if (fHpetEnabled)
892 {
893 InsertConfigNode(pDevices, "hpet", &pDev);
894 InsertConfigNode(pDev, "0", &pInst);
895 InsertConfigInteger(pInst, "Trusted", 1); /* boolean */
896 }
897
898 /*
899 * System Management Controller (SMC)
900 */
901 BOOL fSmcEnabled;
902 fSmcEnabled = fOsXGuest;
903 if (fSmcEnabled)
904 {
905 InsertConfigNode(pDevices, "smc", &pDev);
906 InsertConfigNode(pDev, "0", &pInst);
907 InsertConfigInteger(pInst, "Trusted", 1); /* boolean */
908 InsertConfigNode(pInst, "Config", &pCfg);
909
910 bool fGetKeyFromRealSMC;
911 Bstr bstrKey;
912 rc = getSmcDeviceKey(pMachine, bstrKey.asOutParam(), &fGetKeyFromRealSMC);
913 AssertMsgReturn(RT_SUCCESS(rc), ("rc=%Rrc\n", rc), rc);
914
915 InsertConfigString(pCfg, "DeviceKey", bstrKey);
916 InsertConfigInteger(pCfg, "GetKeyFromRealSMC", fGetKeyFromRealSMC);
917 }
918
919 /*
920 * Low Pin Count (LPC) bus
921 */
922 BOOL fLpcEnabled;
923 /** @todo: implement appropriate getter */
924 fLpcEnabled = fOsXGuest || (chipsetType == ChipsetType_ICH9);
925 if (fLpcEnabled)
926 {
927 InsertConfigNode(pDevices, "lpc", &pDev);
928 InsertConfigNode(pDev, "0", &pInst);
929 InsertConfigInteger(pInst, "Trusted", 1); /* boolean */
930 }
931
932 /*
933 * PS/2 keyboard & mouse.
934 */
935 InsertConfigNode(pDevices, "pckbd", &pDev);
936 InsertConfigNode(pDev, "0", &pInst);
937 InsertConfigInteger(pInst, "Trusted", 1); /* boolean */
938 InsertConfigNode(pInst, "Config", &pCfg);
939
940 InsertConfigNode(pInst, "LUN#0", &pLunL0);
941 InsertConfigString(pLunL0, "Driver", "KeyboardQueue");
942 InsertConfigNode(pLunL0, "Config", &pCfg);
943 InsertConfigInteger(pCfg, "QueueSize", 64);
944
945 InsertConfigNode(pLunL0, "AttachedDriver", &pLunL1);
946 InsertConfigString(pLunL1, "Driver", "MainKeyboard");
947 InsertConfigNode(pLunL1, "Config", &pCfg);
948 Keyboard *pKeyboard = pConsole->mKeyboard;
949 InsertConfigInteger(pCfg, "Object", (uintptr_t)pKeyboard);
950
951 InsertConfigNode(pInst, "LUN#1", &pLunL0);
952 InsertConfigString(pLunL0, "Driver", "MouseQueue");
953 InsertConfigNode(pLunL0, "Config", &pCfg);
954 InsertConfigInteger(pCfg, "QueueSize", 128);
955
956 InsertConfigNode(pLunL0, "AttachedDriver", &pLunL1);
957 InsertConfigString(pLunL1, "Driver", "MainMouse");
958 InsertConfigNode(pLunL1, "Config", &pCfg);
959 Mouse *pMouse = pConsole->mMouse;
960 InsertConfigInteger(pCfg, "Object", (uintptr_t)pMouse);
961
962 /*
963 * i8254 Programmable Interval Timer And Dummy Speaker
964 */
965 InsertConfigNode(pDevices, "i8254", &pDev);
966 InsertConfigNode(pDev, "0", &pInst);
967 InsertConfigNode(pInst, "Config", &pCfg);
968#ifdef DEBUG
969 InsertConfigInteger(pInst, "Trusted", 1); /* boolean */
970#endif
971
972 /*
973 * i8259 Programmable Interrupt Controller.
974 */
975 InsertConfigNode(pDevices, "i8259", &pDev);
976 InsertConfigNode(pDev, "0", &pInst);
977 InsertConfigInteger(pInst, "Trusted", 1); /* boolean */
978 InsertConfigNode(pInst, "Config", &pCfg);
979
980 /*
981 * Advanced Programmable Interrupt Controller.
982 * SMP: Each CPU has a LAPIC, but we have a single device representing all LAPICs states,
983 * thus only single insert
984 */
985 InsertConfigNode(pDevices, "apic", &pDev);
986 InsertConfigNode(pDev, "0", &pInst);
987 InsertConfigInteger(pInst, "Trusted", 1); /* boolean */
988 InsertConfigNode(pInst, "Config", &pCfg);
989 InsertConfigInteger(pCfg, "IOAPIC", fIOAPIC);
990 InsertConfigInteger(pCfg, "NumCPUs", cCpus);
991
992 if (fIOAPIC)
993 {
994 /*
995 * I/O Advanced Programmable Interrupt Controller.
996 */
997 InsertConfigNode(pDevices, "ioapic", &pDev);
998 InsertConfigNode(pDev, "0", &pInst);
999 InsertConfigInteger(pInst, "Trusted", 1); /* boolean */
1000 InsertConfigNode(pInst, "Config", &pCfg);
1001 }
1002
1003 /*
1004 * RTC MC146818.
1005 */
1006 InsertConfigNode(pDevices, "mc146818", &pDev);
1007 InsertConfigNode(pDev, "0", &pInst);
1008 InsertConfigNode(pInst, "Config", &pCfg);
1009 BOOL fRTCUseUTC;
1010 hrc = pMachine->COMGETTER(RTCUseUTC)(&fRTCUseUTC); H();
1011 InsertConfigInteger(pCfg, "UseUTC", fRTCUseUTC ? 1 : 0);
1012
1013 /*
1014 * VGA.
1015 */
1016 InsertConfigNode(pDevices, "vga", &pDev);
1017 InsertConfigNode(pDev, "0", &pInst);
1018 InsertConfigInteger(pInst, "Trusted", 1); /* boolean */
1019 InsertConfigInteger(pInst, "PCIDeviceNo", 2);
1020 Assert(!afPciDeviceNo[2]);
1021 afPciDeviceNo[2] = true;
1022 InsertConfigInteger(pInst, "PCIFunctionNo", 0);
1023 InsertConfigNode(pInst, "Config", &pCfg);
1024 ULONG cVRamMBs;
1025 hrc = pMachine->COMGETTER(VRAMSize)(&cVRamMBs); H();
1026 InsertConfigInteger(pCfg, "VRamSize", cVRamMBs * _1M);
1027 ULONG cMonitorCount;
1028 hrc = pMachine->COMGETTER(MonitorCount)(&cMonitorCount); H();
1029 InsertConfigInteger(pCfg, "MonitorCount", cMonitorCount);
1030#ifdef VBOX_WITH_2X_4GB_ADDR_SPACE
1031 InsertConfigInteger(pCfg, "R0Enabled", fHWVirtExEnabled);
1032#endif
1033
1034 /*
1035 * BIOS logo
1036 */
1037 BOOL fFadeIn;
1038 hrc = biosSettings->COMGETTER(LogoFadeIn)(&fFadeIn); H();
1039 InsertConfigInteger(pCfg, "FadeIn", fFadeIn ? 1 : 0);
1040 BOOL fFadeOut;
1041 hrc = biosSettings->COMGETTER(LogoFadeOut)(&fFadeOut); H();
1042 InsertConfigInteger(pCfg, "FadeOut", fFadeOut ? 1: 0);
1043 ULONG logoDisplayTime;
1044 hrc = biosSettings->COMGETTER(LogoDisplayTime)(&logoDisplayTime); H();
1045 InsertConfigInteger(pCfg, "LogoTime", logoDisplayTime);
1046 Bstr logoImagePath;
1047 hrc = biosSettings->COMGETTER(LogoImagePath)(logoImagePath.asOutParam()); H();
1048 InsertConfigString(pCfg, "LogoFile", Utf8Str(logoImagePath ? logoImagePath : "") );
1049
1050 /*
1051 * Boot menu
1052 */
1053 BIOSBootMenuMode_T eBootMenuMode;
1054 int iShowBootMenu;
1055 biosSettings->COMGETTER(BootMenuMode)(&eBootMenuMode);
1056 switch (eBootMenuMode)
1057 {
1058 case BIOSBootMenuMode_Disabled: iShowBootMenu = 0; break;
1059 case BIOSBootMenuMode_MenuOnly: iShowBootMenu = 1; break;
1060 default: iShowBootMenu = 2; break;
1061 }
1062 InsertConfigInteger(pCfg, "ShowBootMenu", iShowBootMenu);
1063
1064 /* Custom VESA mode list */
1065 unsigned cModes = 0;
1066 for (unsigned iMode = 1; iMode <= 16; ++iMode)
1067 {
1068 char szExtraDataKey[sizeof("CustomVideoModeXX")];
1069 RTStrPrintf(szExtraDataKey, sizeof(szExtraDataKey), "CustomVideoMode%u", iMode);
1070 hrc = pMachine->GetExtraData(Bstr(szExtraDataKey), bstr.asOutParam()); H();
1071 if (bstr.isEmpty())
1072 break;
1073 InsertConfigString(pCfg, szExtraDataKey, bstr);
1074 ++cModes;
1075 }
1076 InsertConfigInteger(pCfg, "CustomVideoModes", cModes);
1077
1078 /* VESA height reduction */
1079 ULONG ulHeightReduction;
1080 IFramebuffer *pFramebuffer = pConsole->getDisplay()->getFramebuffer();
1081 if (pFramebuffer)
1082 {
1083 hrc = pFramebuffer->COMGETTER(HeightReduction)(&ulHeightReduction); H();
1084 }
1085 else
1086 {
1087 /* If framebuffer is not available, there is no height reduction. */
1088 ulHeightReduction = 0;
1089 }
1090 InsertConfigInteger(pCfg, "HeightReduction", ulHeightReduction);
1091
1092 /* Attach the display. */
1093 InsertConfigNode(pInst, "LUN#0", &pLunL0);
1094 InsertConfigString(pLunL0, "Driver", "MainDisplay");
1095 InsertConfigNode(pLunL0, "Config", &pCfg);
1096 Display *pDisplay = pConsole->mDisplay;
1097 InsertConfigInteger(pCfg, "Object", (uintptr_t)pDisplay);
1098
1099
1100 /*
1101 * Firmware.
1102 */
1103 FirmwareType_T eFwType = FirmwareType_BIOS;
1104 hrc = pMachine->COMGETTER(FirmwareType)(&eFwType); H();
1105
1106#ifdef VBOX_WITH_EFI
1107 BOOL fEfiEnabled = (eFwType >= FirmwareType_EFI) && (eFwType <= FirmwareType_EFIDUAL);
1108#else
1109 BOOL fEfiEnabled = false;
1110#endif
1111 if (!fEfiEnabled)
1112 {
1113 /*
1114 * PC Bios.
1115 */
1116 InsertConfigNode(pDevices, "pcbios", &pDev);
1117 InsertConfigNode(pDev, "0", &pInst);
1118 InsertConfigInteger(pInst, "Trusted", 1); /* boolean */
1119 InsertConfigNode(pInst, "Config", &pBiosCfg);
1120 InsertConfigInteger(pBiosCfg, "RamSize", cbRam);
1121 InsertConfigInteger(pBiosCfg, "RamHoleSize", cbRamHole);
1122 InsertConfigInteger(pBiosCfg, "NumCPUs", cCpus);
1123 InsertConfigString(pBiosCfg, "HardDiskDevice", "piix3ide");
1124 InsertConfigString(pBiosCfg, "FloppyDevice", "i82078");
1125 InsertConfigInteger(pBiosCfg, "IOAPIC", fIOAPIC);
1126 InsertConfigInteger(pBiosCfg, "PXEDebug", fPXEDebug);
1127 InsertConfigBytes(pBiosCfg, "UUID", &HardwareUuid,sizeof(HardwareUuid));
1128 InsertConfigNode(pBiosCfg, "NetBoot", &pNetBootCfg);
1129
1130 DeviceType_T bootDevice;
1131 if (SchemaDefs::MaxBootPosition > 9)
1132 {
1133 AssertMsgFailed(("Too many boot devices %d\n",
1134 SchemaDefs::MaxBootPosition));
1135 return VERR_INVALID_PARAMETER;
1136 }
1137
1138 for (ULONG pos = 1; pos <= SchemaDefs::MaxBootPosition; ++pos)
1139 {
1140 hrc = pMachine->GetBootOrder(pos, &bootDevice); H();
1141
1142 char szParamName[] = "BootDeviceX";
1143 szParamName[sizeof(szParamName) - 2] = ((char (pos - 1)) + '0');
1144
1145 const char *pszBootDevice;
1146 switch (bootDevice)
1147 {
1148 case DeviceType_Null:
1149 pszBootDevice = "NONE";
1150 break;
1151 case DeviceType_HardDisk:
1152 pszBootDevice = "IDE";
1153 break;
1154 case DeviceType_DVD:
1155 pszBootDevice = "DVD";
1156 break;
1157 case DeviceType_Floppy:
1158 pszBootDevice = "FLOPPY";
1159 break;
1160 case DeviceType_Network:
1161 pszBootDevice = "LAN";
1162 break;
1163 default:
1164 AssertMsgFailed(("Invalid bootDevice=%d\n", bootDevice));
1165 return VMSetError(pVM, VERR_INVALID_PARAMETER, RT_SRC_POS,
1166 N_("Invalid boot device '%d'"), bootDevice);
1167 }
1168 InsertConfigString(pBiosCfg, szParamName, pszBootDevice);
1169 }
1170 }
1171 else
1172 {
1173 Utf8Str efiRomFile;
1174
1175 /* Autodetect firmware type, basing on guest type */
1176 if (eFwType == FirmwareType_EFI)
1177 {
1178 eFwType =
1179 fIs64BitGuest ?
1180 (FirmwareType_T)FirmwareType_EFI64
1181 :
1182 (FirmwareType_T)FirmwareType_EFI32;
1183 }
1184 bool f64BitEntry = eFwType == FirmwareType_EFI64;
1185
1186 rc = findEfiRom(virtualBox, eFwType, efiRomFile);
1187 AssertMsgReturn(RT_SUCCESS(rc), ("rc=%Rrc\n", rc), rc);
1188
1189 /* Get boot args */
1190 Bstr bootArgs;
1191 hrc = pMachine->GetExtraData(Bstr("VBoxInternal2/EfiBootArgs"), bootArgs.asOutParam()); H();
1192
1193 /* Get device props */
1194 Bstr deviceProps;
1195 hrc = pMachine->GetExtraData(Bstr("VBoxInternal2/EfiDeviceProps"), deviceProps.asOutParam()); H();
1196 /* Get GOP mode settings */
1197 uint32_t u32GopMode = UINT32_MAX;
1198 hrc = pMachine->GetExtraData(Bstr("VBoxInternal2/EfiGopMode"), bstr.asOutParam()); H();
1199 if (!bstr.isEmpty())
1200 u32GopMode = Utf8Str(bstr).toUInt32();
1201
1202 /* UGA mode settings */
1203 uint32_t u32UgaHorisontal = 0;
1204 hrc = pMachine->GetExtraData(Bstr("VBoxInternal2/EfiUgaHorizontalResolution"), bstr.asOutParam()); H();
1205 if (!bstr.isEmpty())
1206 u32UgaHorisontal = Utf8Str(bstr).toUInt32();
1207
1208 uint32_t u32UgaVertical = 0;
1209 hrc = pMachine->GetExtraData(Bstr("VBoxInternal2/EfiUgaVerticalResolution"), bstr.asOutParam()); H();
1210 if (!bstr.isEmpty())
1211 u32UgaVertical = Utf8Str(bstr).toUInt32();
1212
1213 /*
1214 * EFI subtree.
1215 */
1216 InsertConfigNode(pDevices, "efi", &pDev);
1217 InsertConfigNode(pDev, "0", &pInst);
1218 InsertConfigInteger(pInst, "Trusted", 1); /* boolean */
1219 InsertConfigNode(pInst, "Config", &pCfg);
1220 InsertConfigInteger(pCfg, "RamSize", cbRam);
1221 InsertConfigInteger(pCfg, "RamHoleSize", cbRamHole);
1222 InsertConfigInteger(pCfg, "NumCPUs", cCpus);
1223 InsertConfigString(pCfg, "EfiRom", efiRomFile);
1224 InsertConfigString(pCfg, "BootArgs", bootArgs);
1225 InsertConfigString(pCfg, "DeviceProps", deviceProps);
1226 InsertConfigInteger(pCfg, "IOAPIC", fIOAPIC);
1227 InsertConfigBytes(pCfg, "UUID", &HardwareUuid,sizeof(HardwareUuid));
1228 InsertConfigInteger(pCfg, "64BitEntry", f64BitEntry); /* boolean */
1229 InsertConfigInteger(pCfg, "GopMode", u32GopMode);
1230 InsertConfigInteger(pCfg, "UgaHorizontalResolution", u32UgaHorisontal);
1231 InsertConfigInteger(pCfg, "UgaVerticalResolution", u32UgaVertical);
1232
1233 /* For OS X guests we'll force passing host's DMI info to the guest */
1234 if (fOsXGuest)
1235 {
1236 InsertConfigInteger(pCfg, "DmiUseHostInfo", 1);
1237 InsertConfigInteger(pCfg, "DmiExposeMemoryTable", 1);
1238 }
1239 }
1240
1241 /*
1242 * Storage controllers.
1243 */
1244 com::SafeIfaceArray<IStorageController> ctrls;
1245 PCFGMNODE aCtrlNodes[StorageControllerType_LsiLogicSas + 1] = {};
1246 hrc = pMachine->COMGETTER(StorageControllers)(ComSafeArrayAsOutParam(ctrls)); H();
1247
1248 for (size_t i = 0; i < ctrls.size(); ++i)
1249 {
1250 DeviceType_T *paLedDevType = NULL;
1251
1252 StorageControllerType_T enmCtrlType;
1253 rc = ctrls[i]->COMGETTER(ControllerType)(&enmCtrlType); H();
1254 AssertRelease((unsigned)enmCtrlType < RT_ELEMENTS(aCtrlNodes));
1255
1256 StorageBus_T enmBus;
1257 rc = ctrls[i]->COMGETTER(Bus)(&enmBus); H();
1258
1259 Bstr controllerName;
1260 rc = ctrls[i]->COMGETTER(Name)(controllerName.asOutParam()); H();
1261
1262 ULONG ulInstance = 999;
1263 rc = ctrls[i]->COMGETTER(Instance)(&ulInstance); H();
1264
1265 BOOL fUseHostIOCache;
1266 rc = ctrls[i]->COMGETTER(UseHostIOCache)(&fUseHostIOCache); H();
1267
1268 /* /Devices/<ctrldev>/ */
1269 const char *pszCtrlDev = pConsole->convertControllerTypeToDev(enmCtrlType);
1270 pDev = aCtrlNodes[enmCtrlType];
1271 if (!pDev)
1272 {
1273 InsertConfigNode(pDevices, pszCtrlDev, &pDev);
1274 aCtrlNodes[enmCtrlType] = pDev; /* IDE variants are handled in the switch */
1275 }
1276
1277 /* /Devices/<ctrldev>/<instance>/ */
1278 PCFGMNODE pCtlInst = NULL;
1279 InsertConfigNode(pDev, Utf8StrFmt("%u", ulInstance).c_str(), &pCtlInst);
1280
1281 /* Device config: /Devices/<ctrldev>/<instance>/<values> & /ditto/Config/<values> */
1282 InsertConfigInteger(pCtlInst, "Trusted", 1);
1283 InsertConfigNode(pCtlInst, "Config", &pCfg);
1284
1285 switch (enmCtrlType)
1286 {
1287 case StorageControllerType_LsiLogic:
1288 {
1289 InsertConfigInteger(pCtlInst, "PCIDeviceNo", 20);
1290 Assert(!afPciDeviceNo[20]);
1291 afPciDeviceNo[20] = true;
1292 InsertConfigInteger(pCtlInst, "PCIFunctionNo", 0);
1293
1294 /* Attach the status driver */
1295 InsertConfigNode(pCtlInst, "LUN#999", &pLunL0);
1296 InsertConfigString(pLunL0, "Driver", "MainStatus");
1297 InsertConfigNode(pLunL0, "Config", &pCfg);
1298 InsertConfigInteger(pCfg, "papLeds", (uintptr_t)&pConsole->mapStorageLeds[iLedScsi]);
1299 InsertConfigInteger(pCfg, "First", 0);
1300 Assert(cLedScsi >= 16);
1301 InsertConfigInteger(pCfg, "Last", 15);
1302 paLedDevType = &pConsole->maStorageDevType[iLedScsi];
1303 break;
1304 }
1305
1306 case StorageControllerType_BusLogic:
1307 {
1308 InsertConfigInteger(pCtlInst, "PCIDeviceNo", 21);
1309 Assert(!afPciDeviceNo[21]);
1310 afPciDeviceNo[21] = true;
1311 InsertConfigInteger(pCtlInst, "PCIFunctionNo", 0);
1312
1313 /* Attach the status driver */
1314 InsertConfigNode(pCtlInst, "LUN#999", &pLunL0);
1315 InsertConfigString(pLunL0, "Driver", "MainStatus");
1316 InsertConfigNode(pLunL0, "Config", &pCfg);
1317 InsertConfigInteger(pCfg, "papLeds", (uintptr_t)&pConsole->mapStorageLeds[iLedScsi]);
1318 InsertConfigInteger(pCfg, "First", 0);
1319 Assert(cLedScsi >= 16);
1320 InsertConfigInteger(pCfg, "Last", 15);
1321 paLedDevType = &pConsole->maStorageDevType[iLedScsi];
1322 break;
1323 }
1324
1325 case StorageControllerType_IntelAhci:
1326 {
1327 InsertConfigInteger(pCtlInst, "PCIDeviceNo", 13);
1328 Assert(!afPciDeviceNo[13]);
1329 afPciDeviceNo[13] = true;
1330 InsertConfigInteger(pCtlInst, "PCIFunctionNo", 0);
1331
1332 ULONG cPorts = 0;
1333 hrc = ctrls[i]->COMGETTER(PortCount)(&cPorts); H();
1334 InsertConfigInteger(pCfg, "PortCount", cPorts);
1335
1336 /* Needed configuration values for the bios. */
1337 if (pBiosCfg)
1338 {
1339 InsertConfigString(pBiosCfg, "SataHardDiskDevice", "ahci");
1340 }
1341
1342 for (uint32_t j = 0; j < 4; ++j)
1343 {
1344 static const char * const s_apszConfig[4] =
1345 { "PrimaryMaster", "PrimarySlave", "SecondaryMaster", "SecondarySlave" };
1346 static const char * const s_apszBiosConfig[4] =
1347 { "SataPrimaryMasterLUN", "SataPrimarySlaveLUN", "SataSecondaryMasterLUN", "SataSecondarySlaveLUN" };
1348
1349 LONG lPortNumber = -1;
1350 hrc = ctrls[i]->GetIDEEmulationPort(j, &lPortNumber); H();
1351 InsertConfigInteger(pCfg, s_apszConfig[j], lPortNumber);
1352 if (pBiosCfg)
1353 InsertConfigInteger(pBiosCfg, s_apszBiosConfig[j], lPortNumber);
1354 }
1355
1356 /* Attach the status driver */
1357 InsertConfigNode(pCtlInst, "LUN#999", &pLunL0);
1358 InsertConfigString(pLunL0, "Driver", "MainStatus");
1359 InsertConfigNode(pLunL0, "Config", &pCfg);
1360 AssertRelease(cPorts <= cLedSata);
1361 InsertConfigInteger(pCfg, "papLeds", (uintptr_t)&pConsole->mapStorageLeds[iLedSata]);
1362 InsertConfigInteger(pCfg, "First", 0);
1363 InsertConfigInteger(pCfg, "Last", cPorts - 1);
1364 paLedDevType = &pConsole->maStorageDevType[iLedSata];
1365 break;
1366 }
1367
1368 case StorageControllerType_PIIX3:
1369 case StorageControllerType_PIIX4:
1370 case StorageControllerType_ICH6:
1371 {
1372 /*
1373 * IDE (update this when the main interface changes)
1374 */
1375 InsertConfigInteger(pCtlInst, "PCIDeviceNo", 1);
1376 Assert(!afPciDeviceNo[1]);
1377 afPciDeviceNo[1] = true;
1378 InsertConfigInteger(pCtlInst, "PCIFunctionNo", 1);
1379 InsertConfigString(pCfg, "Type", controllerString(enmCtrlType));
1380
1381 /* Attach the status driver */
1382 InsertConfigNode(pCtlInst, "LUN#999", &pLunL0);
1383 InsertConfigString(pLunL0, "Driver", "MainStatus");
1384 InsertConfigNode(pLunL0, "Config", &pCfg);
1385 InsertConfigInteger(pCfg, "papLeds", (uintptr_t)&pConsole->mapStorageLeds[iLedIde]);
1386 InsertConfigInteger(pCfg, "First", 0);
1387 Assert(cLedIde >= 4);
1388 InsertConfigInteger(pCfg, "Last", 3);
1389 paLedDevType = &pConsole->maStorageDevType[iLedIde];
1390
1391 /* IDE flavors */
1392 aCtrlNodes[StorageControllerType_PIIX3] = pDev;
1393 aCtrlNodes[StorageControllerType_PIIX4] = pDev;
1394 aCtrlNodes[StorageControllerType_ICH6] = pDev;
1395 break;
1396 }
1397
1398 case StorageControllerType_I82078:
1399 {
1400 /*
1401 * i82078 Floppy drive controller
1402 */
1403 fFdcEnabled = true;
1404 InsertConfigInteger(pCfg, "IRQ", 6);
1405 InsertConfigInteger(pCfg, "DMA", 2);
1406 InsertConfigInteger(pCfg, "MemMapped", 0 );
1407 InsertConfigInteger(pCfg, "IOBase", 0x3f0);
1408
1409 /* Attach the status driver */
1410 InsertConfigNode(pCtlInst, "LUN#999", &pLunL0);
1411 InsertConfigString(pLunL0, "Driver", "MainStatus");
1412 InsertConfigNode(pLunL0, "Config", &pCfg);
1413 InsertConfigInteger(pCfg, "papLeds", (uintptr_t)&pConsole->mapStorageLeds[iLedFloppy]);
1414 InsertConfigInteger(pCfg, "First", 0);
1415 Assert(cLedFloppy >= 1);
1416 InsertConfigInteger(pCfg, "Last", 0);
1417 paLedDevType = &pConsole->maStorageDevType[iLedFloppy];
1418 break;
1419 }
1420
1421 case StorageControllerType_LsiLogicSas:
1422 {
1423 InsertConfigInteger(pCtlInst, "PCIDeviceNo", 22);
1424 Assert(!afPciDeviceNo[22]);
1425 afPciDeviceNo[22] = true;
1426 InsertConfigInteger(pCtlInst, "PCIFunctionNo", 0);
1427
1428 InsertConfigString(pCfg, "ControllerType", "SAS1068");
1429
1430 /* Attach the status driver */
1431 InsertConfigNode(pCtlInst, "LUN#999", &pLunL0);
1432 InsertConfigString(pLunL0, "Driver", "MainStatus");
1433 InsertConfigNode(pLunL0, "Config", &pCfg);
1434 InsertConfigInteger(pCfg, "papLeds", (uintptr_t)&pConsole->mapStorageLeds[iLedSas]);
1435 InsertConfigInteger(pCfg, "First", 0);
1436 Assert(cLedSas >= 8);
1437 InsertConfigInteger(pCfg, "Last", 7);
1438 paLedDevType = &pConsole->maStorageDevType[iLedSas];
1439 break;
1440 }
1441
1442 default:
1443 AssertMsgFailedReturn(("invalid storage controller type: %d\n", enmCtrlType), VERR_GENERAL_FAILURE);
1444 }
1445
1446 /* Attach the media to the storage controllers. */
1447 com::SafeIfaceArray<IMediumAttachment> atts;
1448 hrc = pMachine->GetMediumAttachmentsOfController(controllerName,
1449 ComSafeArrayAsOutParam(atts)); H();
1450
1451 for (size_t j = 0; j < atts.size(); ++j)
1452 {
1453 rc = pConsole->configMediumAttachment(pCtlInst,
1454 pszCtrlDev,
1455 ulInstance,
1456 enmBus,
1457 fUseHostIOCache,
1458 false /* fSetupMerge */,
1459 0 /* uMergeSource */,
1460 0 /* uMergeTarget */,
1461 atts[j],
1462 pConsole->mMachineState,
1463 NULL /* phrc */,
1464 false /* fAttachDetach */,
1465 false /* fForceUnmount */,
1466 pVM,
1467 paLedDevType);
1468 if (RT_FAILURE(rc))
1469 return rc;
1470 }
1471 H();
1472 }
1473 H();
1474
1475 /*
1476 * Network adapters
1477 */
1478#ifdef VMWARE_NET_IN_SLOT_11
1479 bool fSwapSlots3and11 = false;
1480#endif
1481 PCFGMNODE pDevPCNet = NULL; /* PCNet-type devices */
1482 InsertConfigNode(pDevices, "pcnet", &pDevPCNet);
1483#ifdef VBOX_WITH_E1000
1484 PCFGMNODE pDevE1000 = NULL; /* E1000-type devices */
1485 InsertConfigNode(pDevices, "e1000", &pDevE1000);
1486#endif
1487#ifdef VBOX_WITH_VIRTIO
1488 PCFGMNODE pDevVirtioNet = NULL; /* Virtio network devices */
1489 InsertConfigNode(pDevices, "virtio-net", &pDevVirtioNet);
1490#endif /* VBOX_WITH_VIRTIO */
1491 std::list<BootNic> llBootNics;
1492 for (ULONG ulInstance = 0; ulInstance < SchemaDefs::NetworkAdapterCount; ++ulInstance)
1493 {
1494 ComPtr<INetworkAdapter> networkAdapter;
1495 hrc = pMachine->GetNetworkAdapter(ulInstance, networkAdapter.asOutParam()); H();
1496 BOOL fEnabled = FALSE;
1497 hrc = networkAdapter->COMGETTER(Enabled)(&fEnabled); H();
1498 if (!fEnabled)
1499 continue;
1500
1501 /*
1502 * The virtual hardware type. Create appropriate device first.
1503 */
1504 const char *pszAdapterName = "pcnet";
1505 NetworkAdapterType_T adapterType;
1506 hrc = networkAdapter->COMGETTER(AdapterType)(&adapterType); H();
1507 switch (adapterType)
1508 {
1509 case NetworkAdapterType_Am79C970A:
1510 case NetworkAdapterType_Am79C973:
1511 pDev = pDevPCNet;
1512 break;
1513#ifdef VBOX_WITH_E1000
1514 case NetworkAdapterType_I82540EM:
1515 case NetworkAdapterType_I82543GC:
1516 case NetworkAdapterType_I82545EM:
1517 pDev = pDevE1000;
1518 pszAdapterName = "e1000";
1519 break;
1520#endif
1521#ifdef VBOX_WITH_VIRTIO
1522 case NetworkAdapterType_Virtio:
1523 pDev = pDevVirtioNet;
1524 pszAdapterName = "virtio-net";
1525 break;
1526#endif /* VBOX_WITH_VIRTIO */
1527 default:
1528 AssertMsgFailed(("Invalid network adapter type '%d' for slot '%d'",
1529 adapterType, ulInstance));
1530 return VMSetError(pVM, VERR_INVALID_PARAMETER, RT_SRC_POS,
1531 N_("Invalid network adapter type '%d' for slot '%d'"),
1532 adapterType, ulInstance);
1533 }
1534
1535 InsertConfigNode(pDev, Utf8StrFmt("%u", ulInstance).c_str(), &pInst);
1536 InsertConfigInteger(pInst, "Trusted", 1); /* boolean */
1537 /* the first network card gets the PCI ID 3, the next 3 gets 8..10,
1538 * next 4 get 16..19. */
1539 unsigned iPciDeviceNo = 3;
1540 if (ulInstance)
1541 {
1542 if (ulInstance < 4)
1543 iPciDeviceNo = ulInstance - 1 + 8;
1544 else
1545 iPciDeviceNo = ulInstance - 4 + 16;
1546 }
1547#ifdef VMWARE_NET_IN_SLOT_11
1548 /*
1549 * Dirty hack for PCI slot compatibility with VMWare,
1550 * it assigns slot 11 to the first network controller.
1551 */
1552 if (iPciDeviceNo == 3 && adapterType == NetworkAdapterType_I82545EM)
1553 {
1554 iPciDeviceNo = 0x11;
1555 fSwapSlots3and11 = true;
1556 }
1557 else if (iPciDeviceNo == 0x11 && fSwapSlots3and11)
1558 iPciDeviceNo = 3;
1559#endif
1560 InsertConfigInteger(pInst, "PCIDeviceNo", iPciDeviceNo);
1561 Assert(!afPciDeviceNo[iPciDeviceNo]);
1562 afPciDeviceNo[iPciDeviceNo] = true;
1563 InsertConfigInteger(pInst, "PCIFunctionNo", 0);
1564 InsertConfigNode(pInst, "Config", &pCfg);
1565#ifdef VBOX_WITH_2X_4GB_ADDR_SPACE /* not safe here yet. */
1566 if (pDev == pDevPCNet)
1567 {
1568 InsertConfigInteger(pCfg, "R0Enabled", false);
1569 }
1570#endif
1571 /*
1572 * Collect information needed for network booting and add it to the list.
1573 */
1574 BootNic nic;
1575
1576 nic.mInstance = ulInstance;
1577 nic.mPciDev = iPciDeviceNo;
1578 nic.mPciFn = 0;
1579
1580 hrc = networkAdapter->COMGETTER(BootPriority)(&nic.mBootPrio); H();
1581
1582 llBootNics.push_back(nic);
1583
1584 /*
1585 * The virtual hardware type. PCNet supports two types.
1586 */
1587 switch (adapterType)
1588 {
1589 case NetworkAdapterType_Am79C970A:
1590 InsertConfigInteger(pCfg, "Am79C973", 0);
1591 break;
1592 case NetworkAdapterType_Am79C973:
1593 InsertConfigInteger(pCfg, "Am79C973", 1);
1594 break;
1595 case NetworkAdapterType_I82540EM:
1596 InsertConfigInteger(pCfg, "AdapterType", 0);
1597 break;
1598 case NetworkAdapterType_I82543GC:
1599 InsertConfigInteger(pCfg, "AdapterType", 1);
1600 break;
1601 case NetworkAdapterType_I82545EM:
1602 InsertConfigInteger(pCfg, "AdapterType", 2);
1603 break;
1604 }
1605
1606 /*
1607 * Get the MAC address and convert it to binary representation
1608 */
1609 Bstr macAddr;
1610 hrc = networkAdapter->COMGETTER(MACAddress)(macAddr.asOutParam()); H();
1611 Assert(macAddr);
1612 Utf8Str macAddrUtf8 = macAddr;
1613 char *macStr = (char*)macAddrUtf8.c_str();
1614 Assert(strlen(macStr) == 12);
1615 RTMAC Mac;
1616 memset(&Mac, 0, sizeof(Mac));
1617 char *pMac = (char*)&Mac;
1618 for (uint32_t i = 0; i < 6; ++i)
1619 {
1620 char c1 = *macStr++ - '0';
1621 if (c1 > 9)
1622 c1 -= 7;
1623 char c2 = *macStr++ - '0';
1624 if (c2 > 9)
1625 c2 -= 7;
1626 *pMac++ = ((c1 & 0x0f) << 4) | (c2 & 0x0f);
1627 }
1628 InsertConfigBytes(pCfg, "MAC", &Mac, sizeof(Mac));
1629
1630 /*
1631 * Check if the cable is supposed to be unplugged
1632 */
1633 BOOL fCableConnected;
1634 hrc = networkAdapter->COMGETTER(CableConnected)(&fCableConnected); H();
1635 InsertConfigInteger(pCfg, "CableConnected", fCableConnected ? 1 : 0);
1636
1637 /*
1638 * Line speed to report from custom drivers
1639 */
1640 ULONG ulLineSpeed;
1641 hrc = networkAdapter->COMGETTER(LineSpeed)(&ulLineSpeed); H();
1642 InsertConfigInteger(pCfg, "LineSpeed", ulLineSpeed);
1643
1644 /*
1645 * Attach the status driver.
1646 */
1647 InsertConfigNode(pInst, "LUN#999", &pLunL0);
1648 InsertConfigString(pLunL0, "Driver", "MainStatus");
1649 InsertConfigNode(pLunL0, "Config", &pCfg);
1650 InsertConfigInteger(pCfg, "papLeds", (uintptr_t)&pConsole->mapNetworkLeds[ulInstance]);
1651
1652 /*
1653 * Configure the network card now
1654 */
1655 rc = pConsole->configNetwork(pszAdapterName,
1656 ulInstance,
1657 0,
1658 networkAdapter,
1659 pCfg,
1660 pLunL0,
1661 pInst,
1662 false /*fAttachDetach*/);
1663 if (RT_FAILURE(rc))
1664 return rc;
1665 }
1666
1667 /*
1668 * Build network boot information and transfer it to the BIOS.
1669 */
1670 if (pNetBootCfg && !llBootNics.empty()) /* NetBoot node doesn't exist for EFI! */
1671 {
1672 llBootNics.sort(); /* Sort the list by boot priority. */
1673
1674 char achBootIdx[] = "0";
1675 unsigned uBootIdx = 0;
1676
1677 for (std::list<BootNic>::iterator it = llBootNics.begin(); it != llBootNics.end(); ++it)
1678 {
1679 /* A NIC with priority 0 is only used if it's first in the list. */
1680 if (it->mBootPrio == 0 && uBootIdx != 0)
1681 break;
1682
1683 PCFGMNODE pNetBtDevCfg;
1684 achBootIdx[0] = '0' + uBootIdx++; /* Boot device order. */
1685 InsertConfigNode(pNetBootCfg, achBootIdx, &pNetBtDevCfg);
1686 InsertConfigInteger(pNetBtDevCfg, "NIC", it->mInstance);
1687 InsertConfigInteger(pNetBtDevCfg, "PCIDeviceNo", it->mPciDev);
1688 InsertConfigInteger(pNetBtDevCfg, "PCIFunctionNo", it->mPciFn);
1689 }
1690 }
1691
1692 /*
1693 * Serial (UART) Ports
1694 */
1695 InsertConfigNode(pDevices, "serial", &pDev);
1696 for (ULONG ulInstance = 0; ulInstance < SchemaDefs::SerialPortCount; ++ulInstance)
1697 {
1698 ComPtr<ISerialPort> serialPort;
1699 hrc = pMachine->GetSerialPort(ulInstance, serialPort.asOutParam()); H();
1700 BOOL fEnabled = FALSE;
1701 if (serialPort)
1702 hrc = serialPort->COMGETTER(Enabled)(&fEnabled); H();
1703 if (!fEnabled)
1704 continue;
1705
1706 InsertConfigNode(pDev, Utf8StrFmt("%u", ulInstance).c_str(), &pInst);
1707 InsertConfigNode(pInst, "Config", &pCfg);
1708
1709 ULONG ulIRQ;
1710 hrc = serialPort->COMGETTER(IRQ)(&ulIRQ); H();
1711 InsertConfigInteger(pCfg, "IRQ", ulIRQ);
1712 ULONG ulIOBase;
1713 hrc = serialPort->COMGETTER(IOBase)(&ulIOBase); H();
1714 InsertConfigInteger(pCfg, "IOBase", ulIOBase);
1715 BOOL fServer;
1716 hrc = serialPort->COMGETTER(Server)(&fServer); H();
1717 hrc = serialPort->COMGETTER(Path)(bstr.asOutParam()); H();
1718 PortMode_T eHostMode;
1719 hrc = serialPort->COMGETTER(HostMode)(&eHostMode); H();
1720 if (eHostMode != PortMode_Disconnected)
1721 {
1722 InsertConfigNode(pInst, "LUN#0", &pLunL0);
1723 if (eHostMode == PortMode_HostPipe)
1724 {
1725 InsertConfigString(pLunL0, "Driver", "Char");
1726 InsertConfigNode(pLunL0, "AttachedDriver", &pLunL1);
1727 InsertConfigString(pLunL1, "Driver", "NamedPipe");
1728 InsertConfigNode(pLunL1, "Config", &pLunL2);
1729 InsertConfigString(pLunL2, "Location", bstr);
1730 InsertConfigInteger(pLunL2, "IsServer", fServer);
1731 }
1732 else if (eHostMode == PortMode_HostDevice)
1733 {
1734 InsertConfigString(pLunL0, "Driver", "Host Serial");
1735 InsertConfigNode(pLunL0, "Config", &pLunL1);
1736 InsertConfigString(pLunL1, "DevicePath", bstr);
1737 }
1738 else if (eHostMode == PortMode_RawFile)
1739 {
1740 InsertConfigString(pLunL0, "Driver", "Char");
1741 InsertConfigNode(pLunL0, "AttachedDriver", &pLunL1);
1742 InsertConfigString(pLunL1, "Driver", "RawFile");
1743 InsertConfigNode(pLunL1, "Config", &pLunL2);
1744 InsertConfigString(pLunL2, "Location", bstr);
1745 }
1746 }
1747 }
1748
1749 /*
1750 * Parallel (LPT) Ports
1751 */
1752 InsertConfigNode(pDevices, "parallel", &pDev);
1753 for (ULONG ulInstance = 0; ulInstance < SchemaDefs::ParallelPortCount; ++ulInstance)
1754 {
1755 ComPtr<IParallelPort> parallelPort;
1756 hrc = pMachine->GetParallelPort(ulInstance, parallelPort.asOutParam()); H();
1757 BOOL fEnabled = FALSE;
1758 if (parallelPort)
1759 {
1760 hrc = parallelPort->COMGETTER(Enabled)(&fEnabled); H();
1761 }
1762 if (!fEnabled)
1763 continue;
1764
1765 InsertConfigNode(pDev, Utf8StrFmt("%u", ulInstance).c_str(), &pInst);
1766 InsertConfigNode(pInst, "Config", &pCfg);
1767
1768 ULONG ulIRQ;
1769 hrc = parallelPort->COMGETTER(IRQ)(&ulIRQ); H();
1770 InsertConfigInteger(pCfg, "IRQ", ulIRQ);
1771 ULONG ulIOBase;
1772 hrc = parallelPort->COMGETTER(IOBase)(&ulIOBase); H();
1773 InsertConfigInteger(pCfg, "IOBase", ulIOBase);
1774 InsertConfigNode(pInst, "LUN#0", &pLunL0);
1775 InsertConfigString(pLunL0, "Driver", "HostParallel");
1776 InsertConfigNode(pLunL0, "AttachedDriver", &pLunL1);
1777 hrc = parallelPort->COMGETTER(Path)(bstr.asOutParam()); H();
1778 InsertConfigString(pLunL1, "DevicePath", bstr);
1779 }
1780
1781 /*
1782 * VMM Device
1783 */
1784 InsertConfigNode(pDevices, "VMMDev", &pDev);
1785 InsertConfigNode(pDev, "0", &pInst);
1786 InsertConfigNode(pInst, "Config", &pCfg);
1787 InsertConfigInteger(pInst, "Trusted", 1); /* boolean */
1788 InsertConfigInteger(pInst, "PCIDeviceNo", 4);
1789 Assert(!afPciDeviceNo[4]);
1790 afPciDeviceNo[4] = true;
1791 InsertConfigInteger(pInst, "PCIFunctionNo", 0);
1792 Bstr hwVersion;
1793 hrc = pMachine->COMGETTER(HardwareVersion)(hwVersion.asOutParam()); H();
1794 InsertConfigInteger(pCfg, "RamSize", cbRam);
1795 if (hwVersion.compare(Bstr("1")) == 0) /* <= 2.0.x */
1796 InsertConfigInteger(pCfg, "HeapEnabled", 0);
1797 Bstr snapshotFolder;
1798 hrc = pMachine->COMGETTER(SnapshotFolder)(snapshotFolder.asOutParam()); H();
1799 InsertConfigString(pCfg, "GuestCoreDumpDir", snapshotFolder);
1800
1801 /* the VMM device's Main driver */
1802 InsertConfigNode(pInst, "LUN#0", &pLunL0);
1803 InsertConfigString(pLunL0, "Driver", "HGCM");
1804 InsertConfigNode(pLunL0, "Config", &pCfg);
1805 VMMDev *pVMMDev = pConsole->mVMMDev;
1806 InsertConfigInteger(pCfg, "Object", (uintptr_t)pVMMDev);
1807
1808 /*
1809 * Attach the status driver.
1810 */
1811 InsertConfigNode(pInst, "LUN#999", &pLunL0);
1812 InsertConfigString(pLunL0, "Driver", "MainStatus");
1813 InsertConfigNode(pLunL0, "Config", &pCfg);
1814 InsertConfigInteger(pCfg, "papLeds", (uintptr_t)&pConsole->mapSharedFolderLed);
1815 InsertConfigInteger(pCfg, "First", 0);
1816 InsertConfigInteger(pCfg, "Last", 0);
1817
1818 /*
1819 * Audio Sniffer Device
1820 */
1821 InsertConfigNode(pDevices, "AudioSniffer", &pDev);
1822 InsertConfigNode(pDev, "0", &pInst);
1823 InsertConfigNode(pInst, "Config", &pCfg);
1824
1825 /* the Audio Sniffer device's Main driver */
1826 InsertConfigNode(pInst, "LUN#0", &pLunL0);
1827 InsertConfigString(pLunL0, "Driver", "MainAudioSniffer");
1828 InsertConfigNode(pLunL0, "Config", &pCfg);
1829 AudioSniffer *pAudioSniffer = pConsole->mAudioSniffer;
1830 InsertConfigInteger(pCfg, "Object", (uintptr_t)pAudioSniffer);
1831
1832 /*
1833 * AC'97 ICH / SoundBlaster16 audio / Intel HD Audio
1834 */
1835 BOOL fAudioEnabled;
1836 ComPtr<IAudioAdapter> audioAdapter;
1837 hrc = pMachine->COMGETTER(AudioAdapter)(audioAdapter.asOutParam()); H();
1838 if (audioAdapter)
1839 hrc = audioAdapter->COMGETTER(Enabled)(&fAudioEnabled); H();
1840
1841 if (fAudioEnabled)
1842 {
1843 AudioControllerType_T audioController;
1844 hrc = audioAdapter->COMGETTER(AudioController)(&audioController); H();
1845 switch (audioController)
1846 {
1847 case AudioControllerType_AC97:
1848 {
1849 /* default: ICH AC97 */
1850 InsertConfigNode(pDevices, "ichac97", &pDev);
1851 InsertConfigNode(pDev, "0", &pInst);
1852 InsertConfigInteger(pInst, "Trusted", 1); /* boolean */
1853 InsertConfigInteger(pInst, "PCIDeviceNo", 5);
1854 Assert(!afPciDeviceNo[5]);
1855 afPciDeviceNo[5] = true;
1856 InsertConfigInteger(pInst, "PCIFunctionNo", 0);
1857 InsertConfigNode(pInst, "Config", &pCfg);
1858 break;
1859 }
1860 case AudioControllerType_SB16:
1861 {
1862 /* legacy SoundBlaster16 */
1863 InsertConfigNode(pDevices, "sb16", &pDev);
1864 InsertConfigNode(pDev, "0", &pInst);
1865 InsertConfigInteger(pInst, "Trusted", 1); /* boolean */
1866 InsertConfigNode(pInst, "Config", &pCfg);
1867 InsertConfigInteger(pCfg, "IRQ", 5);
1868 InsertConfigInteger(pCfg, "DMA", 1);
1869 InsertConfigInteger(pCfg, "DMA16", 5);
1870 InsertConfigInteger(pCfg, "Port", 0x220);
1871 InsertConfigInteger(pCfg, "Version", 0x0405);
1872 break;
1873 }
1874 case AudioControllerType_HDA:
1875 {
1876 /* Intel HD Audio */
1877 InsertConfigNode(pDevices, "hda", &pDev);
1878 InsertConfigNode(pDev, "0", &pInst);
1879 InsertConfigInteger(pInst, "Trusted", 1); /* boolean */
1880 InsertConfigInteger(pInst, "PCIDeviceNo", 5);
1881 Assert(!afPciDeviceNo[5]);
1882 afPciDeviceNo[5] = true;
1883 InsertConfigInteger(pInst, "PCIFunctionNo", 0);
1884 InsertConfigNode(pInst, "Config", &pCfg);
1885 }
1886 }
1887
1888 /* the Audio driver */
1889 InsertConfigNode(pInst, "LUN#0", &pLunL0);
1890 InsertConfigString(pLunL0, "Driver", "AUDIO");
1891 InsertConfigNode(pLunL0, "Config", &pCfg);
1892
1893 AudioDriverType_T audioDriver;
1894 hrc = audioAdapter->COMGETTER(AudioDriver)(&audioDriver); H();
1895 switch (audioDriver)
1896 {
1897 case AudioDriverType_Null:
1898 {
1899 InsertConfigString(pCfg, "AudioDriver", "null");
1900 break;
1901 }
1902#ifdef RT_OS_WINDOWS
1903#ifdef VBOX_WITH_WINMM
1904 case AudioDriverType_WinMM:
1905 {
1906 InsertConfigString(pCfg, "AudioDriver", "winmm");
1907 break;
1908 }
1909#endif
1910 case AudioDriverType_DirectSound:
1911 {
1912 InsertConfigString(pCfg, "AudioDriver", "dsound");
1913 break;
1914 }
1915#endif /* RT_OS_WINDOWS */
1916#ifdef RT_OS_SOLARIS
1917 case AudioDriverType_SolAudio:
1918 {
1919 InsertConfigString(pCfg, "AudioDriver", "solaudio");
1920 break;
1921 }
1922#endif
1923#ifdef RT_OS_LINUX
1924# ifdef VBOX_WITH_ALSA
1925 case AudioDriverType_ALSA:
1926 {
1927 InsertConfigString(pCfg, "AudioDriver", "alsa");
1928 break;
1929 }
1930# endif
1931# ifdef VBOX_WITH_PULSE
1932 case AudioDriverType_Pulse:
1933 {
1934 InsertConfigString(pCfg, "AudioDriver", "pulse");
1935 break;
1936 }
1937# endif
1938#endif /* RT_OS_LINUX */
1939#if defined(RT_OS_LINUX) || defined(RT_OS_FREEBSD) || defined(VBOX_WITH_SOLARIS_OSS)
1940 case AudioDriverType_OSS:
1941 {
1942 InsertConfigString(pCfg, "AudioDriver", "oss");
1943 break;
1944 }
1945#endif
1946#ifdef RT_OS_FREEBSD
1947# ifdef VBOX_WITH_PULSE
1948 case AudioDriverType_Pulse:
1949 {
1950 InsertConfigString(pCfg, "AudioDriver", "pulse");
1951 break;
1952 }
1953# endif
1954#endif
1955#ifdef RT_OS_DARWIN
1956 case AudioDriverType_CoreAudio:
1957 {
1958 InsertConfigString(pCfg, "AudioDriver", "coreaudio");
1959 break;
1960 }
1961#endif
1962 }
1963 hrc = pMachine->COMGETTER(Name)(bstr.asOutParam()); H();
1964 InsertConfigString(pCfg, "StreamName", bstr);
1965 }
1966
1967 /*
1968 * The USB Controller.
1969 */
1970 ComPtr<IUSBController> USBCtlPtr;
1971 hrc = pMachine->COMGETTER(USBController)(USBCtlPtr.asOutParam());
1972 if (USBCtlPtr)
1973 {
1974 BOOL fOhciEnabled;
1975 hrc = USBCtlPtr->COMGETTER(Enabled)(&fOhciEnabled); H();
1976 if (fOhciEnabled)
1977 {
1978 InsertConfigNode(pDevices, "usb-ohci", &pDev);
1979 InsertConfigNode(pDev, "0", &pInst);
1980 InsertConfigNode(pInst, "Config", &pCfg);
1981 InsertConfigInteger(pInst, "Trusted", 1); /* boolean */
1982 InsertConfigInteger(pInst, "PCIDeviceNo", 6);
1983 Assert(!afPciDeviceNo[6]);
1984 afPciDeviceNo[6] = true;
1985 InsertConfigInteger(pInst, "PCIFunctionNo", 0);
1986
1987 InsertConfigNode(pInst, "LUN#0", &pLunL0);
1988 InsertConfigString(pLunL0, "Driver", "VUSBRootHub");
1989 InsertConfigNode(pLunL0, "Config", &pCfg);
1990
1991 /*
1992 * Attach the status driver.
1993 */
1994 InsertConfigNode(pInst, "LUN#999", &pLunL0);
1995 InsertConfigString(pLunL0, "Driver", "MainStatus");
1996 InsertConfigNode(pLunL0, "Config", &pCfg);
1997 InsertConfigInteger(pCfg, "papLeds", (uintptr_t)&pConsole->mapUSBLed[0]);
1998 InsertConfigInteger(pCfg, "First", 0);
1999 InsertConfigInteger(pCfg, "Last", 0);
2000
2001#ifdef VBOX_WITH_EHCI
2002 BOOL fEhciEnabled;
2003 hrc = USBCtlPtr->COMGETTER(EnabledEhci)(&fEhciEnabled); H();
2004 if (fEhciEnabled)
2005 {
2006 InsertConfigNode(pDevices, "usb-ehci", &pDev);
2007 InsertConfigNode(pDev, "0", &pInst);
2008 InsertConfigNode(pInst, "Config", &pCfg);
2009 InsertConfigInteger(pInst, "Trusted", 1); /* boolean */
2010 InsertConfigInteger(pInst, "PCIDeviceNo", 11);
2011 Assert(!afPciDeviceNo[11]);
2012 afPciDeviceNo[11] = true;
2013 InsertConfigInteger(pInst, "PCIFunctionNo", 0);
2014
2015 InsertConfigNode(pInst, "LUN#0", &pLunL0);
2016 InsertConfigString(pLunL0, "Driver", "VUSBRootHub");
2017 InsertConfigNode(pLunL0, "Config", &pCfg);
2018
2019 /*
2020 * Attach the status driver.
2021 */
2022 InsertConfigNode(pInst, "LUN#999", &pLunL0);
2023 InsertConfigString(pLunL0, "Driver", "MainStatus");
2024 InsertConfigNode(pLunL0, "Config", &pCfg);
2025 InsertConfigInteger(pCfg, "papLeds", (uintptr_t)&pConsole->mapUSBLed[1]);
2026 InsertConfigInteger(pCfg, "First", 0);
2027 InsertConfigInteger(pCfg, "Last", 0);
2028 }
2029#endif
2030
2031 /*
2032 * Virtual USB Devices.
2033 */
2034 PCFGMNODE pUsbDevices = NULL;
2035 InsertConfigNode(pRoot, "USB", &pUsbDevices);
2036
2037#ifdef VBOX_WITH_USB
2038 {
2039 /*
2040 * Global USB options, currently unused as we'll apply the 2.0 -> 1.1 morphing
2041 * on a per device level now.
2042 */
2043 InsertConfigNode(pUsbDevices, "USBProxy", &pCfg);
2044 InsertConfigNode(pCfg, "GlobalConfig", &pCfg);
2045 // This globally enables the 2.0 -> 1.1 device morphing of proxied devies to keep windows quiet.
2046 //InsertConfigInteger(pCfg, "Force11Device", true);
2047 // The following breaks stuff, but it makes MSDs work in vista. (I include it here so
2048 // that it's documented somewhere.) Users needing it can use:
2049 // VBoxManage setextradata "myvm" "VBoxInternal/USB/USBProxy/GlobalConfig/Force11PacketSize" 1
2050 //InsertConfigInteger(pCfg, "Force11PacketSize", true);
2051 }
2052#endif
2053
2054# if 0 /* Virtual MSD*/
2055
2056 InsertConfigNode(pUsbDevices, "Msd", &pDev);
2057 InsertConfigNode(pDev, "0", &pInst);
2058 InsertConfigNode(pInst, "Config", &pCfg);
2059 InsertConfigNode(pInst, "LUN#0", &pLunL0);
2060
2061 InsertConfigString(pLunL0, "Driver", "SCSI");
2062 InsertConfigNode(pLunL0, "Config", &pCfg);
2063
2064 InsertConfigNode(pLunL0, "AttachedDriver", &pLunL1);
2065 InsertConfigString(pLunL1, "Driver", "Block");
2066 InsertConfigNode(pLunL1, "Config", &pCfg);
2067 InsertConfigString(pCfg, "Type", "HardDisk");
2068 InsertConfigInteger(pCfg, "Mountable", 0);
2069
2070 InsertConfigNode(pLunL1, "AttachedDriver", &pLunL2);
2071 InsertConfigString(pLunL2, "Driver", "VD");
2072 InsertConfigNode(pLunL2, "Config", &pCfg);
2073 InsertConfigString(pCfg, "Path", "/Volumes/DataHFS/bird/VDIs/linux.vdi");
2074 InsertConfigString(pCfg, "Format", "VDI");
2075# endif
2076
2077 /* Virtual USB Mouse/Tablet */
2078 PointingHidType_T aPointingHid;
2079 hrc = pMachine->COMGETTER(PointingHidType)(&aPointingHid); H();
2080 if (aPointingHid == PointingHidType_USBMouse || aPointingHid == PointingHidType_USBTablet)
2081 {
2082 InsertConfigNode(pUsbDevices, "HidMouse", &pDev);
2083 InsertConfigNode(pDev, "0", &pInst);
2084 InsertConfigNode(pInst, "Config", &pCfg);
2085
2086 if (aPointingHid == PointingHidType_USBTablet)
2087 {
2088 InsertConfigInteger(pCfg, "Absolute", 1);
2089 }
2090 else
2091 {
2092 InsertConfigInteger(pCfg, "Absolute", 0);
2093 }
2094 InsertConfigNode(pInst, "LUN#0", &pLunL0);
2095 InsertConfigString(pLunL0, "Driver", "MouseQueue");
2096 InsertConfigNode(pLunL0, "Config", &pCfg);
2097 InsertConfigInteger(pCfg, "QueueSize", 128);
2098
2099 InsertConfigNode(pLunL0, "AttachedDriver", &pLunL1);
2100 InsertConfigString(pLunL1, "Driver", "MainMouse");
2101 InsertConfigNode(pLunL1, "Config", &pCfg);
2102 pMouse = pConsole->mMouse;
2103 InsertConfigInteger(pCfg, "Object", (uintptr_t)pMouse);
2104 }
2105
2106 /* Virtual USB Keyboard */
2107 KeyboardHidType_T aKbdHid;
2108 hrc = pMachine->COMGETTER(KeyboardHidType)(&aKbdHid); H();
2109 if (aKbdHid == KeyboardHidType_USBKeyboard)
2110 {
2111 InsertConfigNode(pUsbDevices, "HidKeyboard", &pDev);
2112 InsertConfigNode(pDev, "0", &pInst);
2113 InsertConfigNode(pInst, "Config", &pCfg);
2114
2115 InsertConfigNode(pInst, "LUN#0", &pLunL0);
2116 InsertConfigString(pLunL0, "Driver", "KeyboardQueue");
2117 InsertConfigNode(pLunL0, "Config", &pCfg);
2118 InsertConfigInteger(pCfg, "QueueSize", 64);
2119
2120 InsertConfigNode(pLunL0, "AttachedDriver", &pLunL1);
2121 InsertConfigString(pLunL1, "Driver", "MainKeyboard");
2122 InsertConfigNode(pLunL1, "Config", &pCfg);
2123 pKeyboard = pConsole->mKeyboard;
2124 InsertConfigInteger(pCfg, "Object", (uintptr_t)pKeyboard);
2125 }
2126 }
2127 }
2128
2129 /*
2130 * Clipboard
2131 */
2132 {
2133 ClipboardMode_T mode = ClipboardMode_Disabled;
2134 hrc = pMachine->COMGETTER(ClipboardMode)(&mode); H();
2135
2136 if (mode != ClipboardMode_Disabled)
2137 {
2138 /* Load the service */
2139 rc = pConsole->mVMMDev->hgcmLoadService("VBoxSharedClipboard", "VBoxSharedClipboard");
2140
2141 if (RT_FAILURE(rc))
2142 {
2143 LogRel(("VBoxSharedClipboard is not available. rc = %Rrc\n", rc));
2144 /* That is not a fatal failure. */
2145 rc = VINF_SUCCESS;
2146 }
2147 else
2148 {
2149 /* Setup the service. */
2150 VBOXHGCMSVCPARM parm;
2151
2152 parm.type = VBOX_HGCM_SVC_PARM_32BIT;
2153
2154 switch (mode)
2155 {
2156 default:
2157 case ClipboardMode_Disabled:
2158 {
2159 LogRel(("VBoxSharedClipboard mode: Off\n"));
2160 parm.u.uint32 = VBOX_SHARED_CLIPBOARD_MODE_OFF;
2161 break;
2162 }
2163 case ClipboardMode_GuestToHost:
2164 {
2165 LogRel(("VBoxSharedClipboard mode: Guest to Host\n"));
2166 parm.u.uint32 = VBOX_SHARED_CLIPBOARD_MODE_GUEST_TO_HOST;
2167 break;
2168 }
2169 case ClipboardMode_HostToGuest:
2170 {
2171 LogRel(("VBoxSharedClipboard mode: Host to Guest\n"));
2172 parm.u.uint32 = VBOX_SHARED_CLIPBOARD_MODE_HOST_TO_GUEST;
2173 break;
2174 }
2175 case ClipboardMode_Bidirectional:
2176 {
2177 LogRel(("VBoxSharedClipboard mode: Bidirectional\n"));
2178 parm.u.uint32 = VBOX_SHARED_CLIPBOARD_MODE_BIDIRECTIONAL;
2179 break;
2180 }
2181 }
2182
2183 pConsole->mVMMDev->hgcmHostCall("VBoxSharedClipboard", VBOX_SHARED_CLIPBOARD_HOST_FN_SET_MODE, 1, &parm);
2184
2185 Log(("Set VBoxSharedClipboard mode\n"));
2186 }
2187 }
2188 }
2189
2190#ifdef VBOX_WITH_CROGL
2191 /*
2192 * crOpenGL
2193 */
2194 {
2195 BOOL fEnabled = false;
2196 hrc = pMachine->COMGETTER(Accelerate3DEnabled)(&fEnabled); H();
2197
2198 if (fEnabled)
2199 {
2200 /* Load the service */
2201 rc = pConsole->mVMMDev->hgcmLoadService("VBoxSharedCrOpenGL", "VBoxSharedCrOpenGL");
2202 if (RT_FAILURE(rc))
2203 {
2204 LogRel(("Failed to load Shared OpenGL service %Rrc\n", rc));
2205 /* That is not a fatal failure. */
2206 rc = VINF_SUCCESS;
2207 }
2208 else
2209 {
2210 LogRel(("Shared crOpenGL service loaded.\n"));
2211
2212 /* Setup the service. */
2213 VBOXHGCMSVCPARM parm;
2214 parm.type = VBOX_HGCM_SVC_PARM_PTR;
2215
2216 parm.u.pointer.addr = (IConsole*) (Console*) pConsole;
2217 parm.u.pointer.size = sizeof(IConsole *);
2218
2219 rc = pConsole->mVMMDev->hgcmHostCall("VBoxSharedCrOpenGL", SHCRGL_HOST_FN_SET_CONSOLE,
2220 SHCRGL_CPARMS_SET_CONSOLE, &parm);
2221 if (!RT_SUCCESS(rc))
2222 AssertMsgFailed(("SHCRGL_HOST_FN_SET_CONSOLE failed with %Rrc\n", rc));
2223
2224 parm.u.pointer.addr = pVM;
2225 parm.u.pointer.size = sizeof(pVM);
2226 rc = pConsole->mVMMDev->hgcmHostCall("VBoxSharedCrOpenGL", SHCRGL_HOST_FN_SET_VM,
2227 SHCRGL_CPARMS_SET_VM, &parm);
2228 if (!RT_SUCCESS(rc))
2229 AssertMsgFailed(("SHCRGL_HOST_FN_SET_VM failed with %Rrc\n", rc));
2230 }
2231
2232 }
2233 }
2234#endif
2235
2236#ifdef VBOX_WITH_GUEST_PROPS
2237 /*
2238 * Guest property service
2239 */
2240
2241 rc = configGuestProperties(pConsole);
2242#endif /* VBOX_WITH_GUEST_PROPS defined */
2243
2244#ifdef VBOX_WITH_GUEST_CONTROL
2245 /*
2246 * Guest control service
2247 */
2248
2249 rc = configGuestControl(pConsole);
2250#endif /* VBOX_WITH_GUEST_CONTROL defined */
2251
2252 /*
2253 * ACPI
2254 */
2255 BOOL fACPI;
2256 hrc = biosSettings->COMGETTER(ACPIEnabled)(&fACPI); H();
2257 if (fACPI)
2258 {
2259 BOOL fCpuHotPlug = false;
2260 BOOL fShowCpu = fOsXGuest;
2261 /* Always show the CPU leafs when we have multiple VCPUs or when the IO-APIC is enabled.
2262 * The Windows SMP kernel needs a CPU leaf or else its idle loop will burn cpu cycles; the
2263 * intelppm driver refuses to register an idle state handler.
2264 */
2265 if ((cCpus > 1) || fIOAPIC)
2266 fShowCpu = true;
2267
2268 hrc = pMachine->COMGETTER(CPUHotPlugEnabled)(&fCpuHotPlug); H();
2269
2270 InsertConfigNode(pDevices, "acpi", &pDev);
2271 InsertConfigNode(pDev, "0", &pInst);
2272 InsertConfigInteger(pInst, "Trusted", 1); /* boolean */
2273 InsertConfigNode(pInst, "Config", &pCfg);
2274 InsertConfigInteger(pCfg, "RamSize", cbRam);
2275 InsertConfigInteger(pCfg, "RamHoleSize", cbRamHole);
2276 InsertConfigInteger(pCfg, "NumCPUs", cCpus);
2277
2278 InsertConfigInteger(pCfg, "IOAPIC", fIOAPIC);
2279 InsertConfigInteger(pCfg, "FdcEnabled", fFdcEnabled);
2280 InsertConfigInteger(pCfg, "HpetEnabled", fHpetEnabled);
2281 InsertConfigInteger(pCfg, "SmcEnabled", fSmcEnabled);
2282 InsertConfigInteger(pCfg, "ShowRtc", fOsXGuest);
2283 if (fOsXGuest && !llBootNics.empty())
2284 {
2285 BootNic aNic = llBootNics.front();
2286 uint32_t u32NicPciAddr = (aNic.mPciDev << 16) | aNic.mPciFn;
2287 InsertConfigInteger(pCfg, "NicPciAddress", u32NicPciAddr);
2288 }
2289 if (fOsXGuest && fAudioEnabled)
2290 {
2291 /** @todo: don't hardcode */
2292 uint32_t u32AudioPciAddr = (5 << 16) | 0;
2293 InsertConfigInteger(pCfg, "AudioPciAddress", u32AudioPciAddr);
2294 }
2295 InsertConfigInteger(pCfg, "IocPciAddress", u32IocPciAddress);
2296 if (chipsetType == ChipsetType_ICH9)
2297 {
2298 InsertConfigInteger(pCfg, "McfgBase", u64McfgBase);
2299 InsertConfigInteger(pCfg, "McfgLength", u64McfgLength);
2300 }
2301 InsertConfigInteger(pCfg, "HostBusPciAddress", u32HbcPciAddress);
2302 InsertConfigInteger(pCfg, "ShowCpu", fShowCpu);
2303 InsertConfigInteger(pCfg, "CpuHotPlug", fCpuHotPlug);
2304 InsertConfigInteger(pInst, "PCIDeviceNo", 7);
2305 Assert(!afPciDeviceNo[7]);
2306 afPciDeviceNo[7] = true;
2307 InsertConfigInteger(pInst, "PCIFunctionNo", 0);
2308
2309 InsertConfigNode(pInst, "LUN#0", &pLunL0);
2310 InsertConfigString(pLunL0, "Driver", "ACPIHost");
2311 InsertConfigNode(pLunL0, "Config", &pCfg);
2312
2313 /* Attach the dummy CPU drivers */
2314 for (ULONG iCpuCurr = 1; iCpuCurr < cCpus; iCpuCurr++)
2315 {
2316 BOOL fCpuAttached = true;
2317
2318 if (fCpuHotPlug)
2319 {
2320 hrc = pMachine->GetCPUStatus(iCpuCurr, &fCpuAttached); H();
2321 }
2322
2323 if (fCpuAttached)
2324 {
2325 InsertConfigNode(pInst, Utf8StrFmt("LUN#%u", iCpuCurr).c_str(), &pLunL0);
2326 InsertConfigString(pLunL0, "Driver", "ACPICpu");
2327 InsertConfigNode(pLunL0, "Config", &pCfg);
2328 }
2329 }
2330 }
2331
2332 /*
2333 * CFGM overlay handling.
2334 *
2335 * Here we check the extra data entries for CFGM values
2336 * and create the nodes and insert the values on the fly. Existing
2337 * values will be removed and reinserted. CFGM is typed, so by default
2338 * we will guess whether it's a string or an integer (byte arrays are
2339 * not currently supported). It's possible to override this autodetection
2340 * by adding "string:", "integer:" or "bytes:" (future).
2341 *
2342 * We first perform a run on global extra data, then on the machine
2343 * extra data to support global settings with local overrides.
2344 */
2345 /** @todo add support for removing nodes and byte blobs. */
2346 SafeArray<BSTR> aGlobalExtraDataKeys;
2347 SafeArray<BSTR> aMachineExtraDataKeys;
2348 /*
2349 * Get the next key
2350 */
2351 if (FAILED(hrc = virtualBox->GetExtraDataKeys(ComSafeArrayAsOutParam(aGlobalExtraDataKeys))))
2352 AssertMsgFailed(("VirtualBox::GetExtraDataKeys failed with %Rrc\n", hrc));
2353
2354 // remember the no. of global values so we can call the correct method below
2355 size_t cGlobalValues = aGlobalExtraDataKeys.size();
2356
2357 if (FAILED(hrc = pMachine->GetExtraDataKeys(ComSafeArrayAsOutParam(aMachineExtraDataKeys))))
2358 AssertMsgFailed(("IMachine::GetExtraDataKeys failed with %Rrc\n", hrc));
2359
2360 // build a combined list from global keys...
2361 std::list<Utf8Str> llExtraDataKeys;
2362
2363 for (size_t i = 0; i < aGlobalExtraDataKeys.size(); ++i)
2364 llExtraDataKeys.push_back(Utf8Str(aGlobalExtraDataKeys[i]));
2365 // ... and machine keys
2366 for (size_t i = 0; i < aMachineExtraDataKeys.size(); ++i)
2367 llExtraDataKeys.push_back(Utf8Str(aMachineExtraDataKeys[i]));
2368
2369 size_t i2 = 0;
2370 for (std::list<Utf8Str>::const_iterator it = llExtraDataKeys.begin();
2371 it != llExtraDataKeys.end();
2372 ++it, ++i2)
2373 {
2374 const Utf8Str &strKey = *it;
2375
2376 /*
2377 * We only care about keys starting with "VBoxInternal/" (skip "G:" or "M:")
2378 */
2379 if (!strKey.startsWith("VBoxInternal/"))
2380 continue;
2381
2382 const char *pszExtraDataKey = strKey.c_str() + sizeof("VBoxInternal/") - 1;
2383
2384 // get the value
2385 Bstr bstrExtraDataValue;
2386 if (i2 < cGlobalValues)
2387 // this is still one of the global values:
2388 hrc = virtualBox->GetExtraData(Bstr(strKey), bstrExtraDataValue.asOutParam());
2389 else
2390 hrc = pMachine->GetExtraData(Bstr(strKey), bstrExtraDataValue.asOutParam());
2391 if (FAILED(hrc))
2392 LogRel(("Warning: Cannot get extra data key %s, rc = %Rrc\n", strKey.c_str(), hrc));
2393
2394 /*
2395 * The key will be in the format "Node1/Node2/Value" or simply "Value".
2396 * Split the two and get the node, delete the value and create the node
2397 * if necessary.
2398 */
2399 PCFGMNODE pNode;
2400 const char *pszCFGMValueName = strrchr(pszExtraDataKey, '/');
2401 if (pszCFGMValueName)
2402 {
2403 /* terminate the node and advance to the value (Utf8Str might not
2404 offically like this but wtf) */
2405 *(char*)pszCFGMValueName = '\0';
2406 ++pszCFGMValueName;
2407
2408 /* does the node already exist? */
2409 pNode = CFGMR3GetChild(pRoot, pszExtraDataKey);
2410 if (pNode)
2411 CFGMR3RemoveValue(pNode, pszCFGMValueName);
2412 else
2413 {
2414 /* create the node */
2415 rc = CFGMR3InsertNode(pRoot, pszExtraDataKey, &pNode);
2416 if (RT_FAILURE(rc))
2417 {
2418 AssertLogRelMsgRC(rc, ("failed to insert node '%s'\n", pszExtraDataKey));
2419 continue;
2420 }
2421 Assert(pNode);
2422 }
2423 }
2424 else
2425 {
2426 /* root value (no node path). */
2427 pNode = pRoot;
2428 pszCFGMValueName = pszExtraDataKey;
2429 pszExtraDataKey--;
2430 CFGMR3RemoveValue(pNode, pszCFGMValueName);
2431 }
2432
2433 /*
2434 * Now let's have a look at the value.
2435 * Empty strings means that we should remove the value, which we've
2436 * already done above.
2437 */
2438 Utf8Str strCFGMValueUtf8(bstrExtraDataValue);
2439 if (!strCFGMValueUtf8.isEmpty())
2440 {
2441 uint64_t u64Value;
2442
2443 /* check for type prefix first. */
2444 if (!strncmp(strCFGMValueUtf8.c_str(), "string:", sizeof("string:") - 1))
2445 InsertConfigString(pNode, pszCFGMValueName, strCFGMValueUtf8.c_str() + sizeof("string:") - 1);
2446 else if (!strncmp(strCFGMValueUtf8.c_str(), "integer:", sizeof("integer:") - 1))
2447 {
2448 rc = RTStrToUInt64Full(strCFGMValueUtf8.c_str() + sizeof("integer:") - 1, 0, &u64Value);
2449 if (RT_SUCCESS(rc))
2450 rc = CFGMR3InsertInteger(pNode, pszCFGMValueName, u64Value);
2451 }
2452 else if (!strncmp(strCFGMValueUtf8.c_str(), "bytes:", sizeof("bytes:") - 1))
2453 rc = VERR_NOT_IMPLEMENTED;
2454 /* auto detect type. */
2455 else if (RT_SUCCESS(RTStrToUInt64Full(strCFGMValueUtf8.c_str(), 0, &u64Value)))
2456 rc = CFGMR3InsertInteger(pNode, pszCFGMValueName, u64Value);
2457 else
2458 InsertConfigString(pNode, pszCFGMValueName, strCFGMValueUtf8);
2459 AssertLogRelMsgRC(rc, ("failed to insert CFGM value '%s' to key '%s'\n", strCFGMValueUtf8.c_str(), pszExtraDataKey));
2460 }
2461 }
2462 }
2463 catch (ConfigError &x)
2464 {
2465 // InsertConfig threw something:
2466 return x.m_vrc;
2467 }
2468
2469#undef H
2470
2471 /* Register VM state change handler */
2472 int rc2 = VMR3AtStateRegister(pVM, Console::vmstateChangeCallback, pConsole);
2473 AssertRC(rc2);
2474 if (RT_SUCCESS(rc))
2475 rc = rc2;
2476
2477 /* Register VM runtime error handler */
2478 rc2 = VMR3AtRuntimeErrorRegister(pVM, Console::setVMRuntimeErrorCallback, pConsole);
2479 AssertRC(rc2);
2480 if (RT_SUCCESS(rc))
2481 rc = rc2;
2482
2483 LogFlowFunc(("vrc = %Rrc\n", rc));
2484 LogFlowFuncLeave();
2485
2486 return rc;
2487}
2488
2489/**
2490 * Ellipsis to va_list wrapper for calling setVMRuntimeErrorCallback.
2491 */
2492/*static*/
2493void Console::setVMRuntimeErrorCallbackF(PVM pVM, void *pvConsole, uint32_t fFlags, const char *pszErrorId, const char *pszFormat, ...)
2494{
2495 va_list va;
2496 va_start(va, pszFormat);
2497 setVMRuntimeErrorCallback(pVM, pvConsole, fFlags, pszErrorId, pszFormat, va);
2498 va_end(va);
2499}
2500
2501/* XXX introduce RT format specifier */
2502static uint64_t formatDiskSize(uint64_t u64Size, const char **pszUnit)
2503{
2504 if (u64Size > INT64_C(5000)*_1G)
2505 {
2506 *pszUnit = "TB";
2507 return u64Size / _1T;
2508 }
2509 else if (u64Size > INT64_C(5000)*_1M)
2510 {
2511 *pszUnit = "GB";
2512 return u64Size / _1G;
2513 }
2514 else
2515 {
2516 *pszUnit = "MB";
2517 return u64Size / _1M;
2518 }
2519}
2520
2521int Console::configMediumAttachment(PCFGMNODE pCtlInst,
2522 const char *pcszDevice,
2523 unsigned uInstance,
2524 StorageBus_T enmBus,
2525 bool fUseHostIOCache,
2526 bool fSetupMerge,
2527 unsigned uMergeSource,
2528 unsigned uMergeTarget,
2529 IMediumAttachment *pMediumAtt,
2530 MachineState_T aMachineState,
2531 HRESULT *phrc,
2532 bool fAttachDetach,
2533 bool fForceUnmount,
2534 PVM pVM,
2535 DeviceType_T *paLedDevType)
2536{
2537 // InsertConfig* throws
2538 try
2539 {
2540 int rc = VINF_SUCCESS;
2541 HRESULT hrc;
2542 Bstr bstr;
2543
2544// #define RC_CHECK() AssertMsgReturn(RT_SUCCESS(rc), ("rc=%Rrc\n", rc), rc)
2545#define H() AssertMsgReturn(!FAILED(hrc), ("hrc=%Rhrc\n", hrc), VERR_GENERAL_FAILURE)
2546
2547 LONG lDev;
2548 hrc = pMediumAtt->COMGETTER(Device)(&lDev); H();
2549 LONG lPort;
2550 hrc = pMediumAtt->COMGETTER(Port)(&lPort); H();
2551 DeviceType_T lType;
2552 hrc = pMediumAtt->COMGETTER(Type)(&lType); H();
2553
2554 unsigned uLUN;
2555 PCFGMNODE pLunL0 = NULL;
2556 PCFGMNODE pCfg = NULL;
2557 hrc = Console::convertBusPortDeviceToLun(enmBus, lPort, lDev, uLUN); H();
2558
2559 /* First check if the LUN already exists. */
2560 pLunL0 = CFGMR3GetChildF(pCtlInst, "LUN#%u", uLUN);
2561 if (pLunL0)
2562 {
2563 if (fAttachDetach)
2564 {
2565 if (lType != DeviceType_HardDisk)
2566 {
2567 /* Unmount existing media only for floppy and DVD drives. */
2568 PPDMIBASE pBase;
2569 rc = PDMR3QueryLun(pVM, pcszDevice, uInstance, uLUN, &pBase);
2570 if (RT_FAILURE(rc))
2571 {
2572 if (rc == VERR_PDM_LUN_NOT_FOUND || rc == VERR_PDM_NO_DRIVER_ATTACHED_TO_LUN)
2573 rc = VINF_SUCCESS;
2574 AssertRC(rc);
2575 }
2576 else
2577 {
2578 PPDMIMOUNT pIMount = PDMIBASE_QUERY_INTERFACE(pBase, PDMIMOUNT);
2579 AssertReturn(pIMount, VERR_INVALID_POINTER);
2580
2581 /* Unmount the media. */
2582 rc = pIMount->pfnUnmount(pIMount, fForceUnmount);
2583 if (rc == VERR_PDM_MEDIA_NOT_MOUNTED)
2584 rc = VINF_SUCCESS;
2585 }
2586 }
2587
2588 rc = PDMR3DeviceDetach(pVM, pcszDevice, 0, uLUN, PDM_TACH_FLAGS_NOT_HOT_PLUG);
2589 if (rc == VERR_PDM_NO_DRIVER_ATTACHED_TO_LUN)
2590 rc = VINF_SUCCESS;
2591 AssertMsgReturn(RT_SUCCESS(rc), ("rc=%Rrc\n", rc), rc);
2592
2593 CFGMR3RemoveNode(pLunL0);
2594 }
2595 else
2596 AssertFailedReturn(VERR_INTERNAL_ERROR);
2597 }
2598
2599 InsertConfigNode(pCtlInst, Utf8StrFmt("LUN#%u", uLUN).c_str(), &pLunL0);
2600
2601 /* SCSI has a another driver between device and block. */
2602 if (enmBus == StorageBus_SCSI || enmBus == StorageBus_SAS)
2603 {
2604 InsertConfigString(pLunL0, "Driver", "SCSI");
2605 InsertConfigNode(pLunL0, "Config", &pCfg);
2606
2607 InsertConfigNode(pLunL0, "AttachedDriver", &pLunL0);
2608 }
2609
2610 ComPtr<IMedium> pMedium;
2611 hrc = pMediumAtt->COMGETTER(Medium)(pMedium.asOutParam()); H();
2612
2613 /*
2614 * 1. Only check this for hard disk images.
2615 * 2. Only check during VM creation and not later, especially not during
2616 * taking an online snapshot!
2617 */
2618 if ( lType == DeviceType_HardDisk
2619 && aMachineState == MachineState_Starting)
2620 {
2621 /*
2622 * Some sanity checks.
2623 */
2624 ComPtr<IMediumFormat> pMediumFormat;
2625 hrc = pMedium->COMGETTER(MediumFormat)(pMediumFormat.asOutParam()); H();
2626 ULONG uCaps;
2627 hrc = pMediumFormat->COMGETTER(Capabilities)(&uCaps); H();
2628 if (uCaps & MediumFormatCapabilities_File)
2629 {
2630 Bstr strFile;
2631 hrc = pMedium->COMGETTER(Location)(strFile.asOutParam()); H();
2632 Utf8Str utfFile = Utf8Str(strFile);
2633 Bstr strSnap;
2634 ComPtr<IMachine> pMachine = machine();
2635 hrc = pMachine->COMGETTER(SnapshotFolder)(strSnap.asOutParam()); H();
2636 Utf8Str utfSnap = Utf8Str(strSnap);
2637 RTFSTYPE enmFsTypeFile = RTFSTYPE_UNKNOWN;
2638 RTFSTYPE enmFsTypeSnap = RTFSTYPE_UNKNOWN;
2639 int rc2 = RTFsQueryType(utfFile.c_str(), &enmFsTypeFile);
2640 AssertMsgRCReturn(rc2, ("Querying the file type of '%s' failed!\n", utfFile.c_str()), rc2);
2641 /* Ignore the error code. On error, the file system type is still 'unknown' so
2642 * none of the following pathes is taken. This can happen for new VMs which
2643 * still don't have a snapshot folder. */
2644 (void)RTFsQueryType(utfSnap.c_str(), &enmFsTypeSnap);
2645 LogRel(("File system of '%s' is %s\n", utfFile.c_str(), RTFsTypeName(enmFsTypeFile)));
2646 LONG64 i64Size;
2647 hrc = pMedium->COMGETTER(LogicalSize)(&i64Size); H();
2648#ifdef RT_OS_WINDOWS
2649 if ( enmFsTypeFile == RTFSTYPE_FAT
2650 && i64Size >= _4G)
2651 {
2652 const char *pszUnit;
2653 uint64_t u64Print = formatDiskSize((uint64_t)i64Size, &pszUnit);
2654 setVMRuntimeErrorCallbackF(pVM, this, 0,
2655 "FatPartitionDetected",
2656 N_("The medium '%ls' has a logical size of %RU64%s "
2657 "but the file system the medium is located on seems "
2658 "to be FAT(32) which cannot handle files bigger than 4GB.\n"
2659 "We strongly recommend to put all your virtual disk images and "
2660 "the snapshot folder onto an NTFS partition"),
2661 strFile.raw(), u64Print, pszUnit);
2662 }
2663#else /* !RT_OS_WINDOWS */
2664 if ( enmFsTypeFile == RTFSTYPE_FAT
2665 || enmFsTypeFile == RTFSTYPE_EXT
2666 || enmFsTypeFile == RTFSTYPE_EXT2
2667 || enmFsTypeFile == RTFSTYPE_EXT3
2668 || enmFsTypeFile == RTFSTYPE_EXT4)
2669 {
2670 RTFILE file;
2671 rc = RTFileOpen(&file, utfFile.c_str(), RTFILE_O_READ | RTFILE_O_OPEN | RTFILE_O_DENY_NONE);
2672 if (RT_SUCCESS(rc))
2673 {
2674 RTFOFF maxSize;
2675 /* Careful: This function will work only on selected local file systems! */
2676 rc = RTFileGetMaxSizeEx(file, &maxSize);
2677 RTFileClose(file);
2678 if ( RT_SUCCESS(rc)
2679 && maxSize > 0
2680 && i64Size > (LONG64)maxSize)
2681 {
2682 const char *pszUnitSiz;
2683 const char *pszUnitMax;
2684 uint64_t u64PrintSiz = formatDiskSize((LONG64)i64Size, &pszUnitSiz);
2685 uint64_t u64PrintMax = formatDiskSize(maxSize, &pszUnitMax);
2686 setVMRuntimeErrorCallbackF(pVM, this, 0,
2687 "FatPartitionDetected", /* <= not exact but ... */
2688 N_("The medium '%ls' has a logical size of %RU64%s "
2689 "but the file system the medium is located on can "
2690 "only handle files up to %RU64%s in theory.\n"
2691 "We strongly recommend to put all your virtual disk "
2692 "images and the snapshot folder onto a proper "
2693 "file system (e.g. ext3) with a sufficient size"),
2694 strFile.raw(), u64PrintSiz, pszUnitSiz, u64PrintMax, pszUnitMax);
2695 }
2696 }
2697 }
2698#endif /* !RT_OS_WINDOWS */
2699
2700 /*
2701 * Snapshot folder:
2702 * Here we test only for a FAT partition as we had to create a dummy file otherwise
2703 */
2704 if ( enmFsTypeSnap == RTFSTYPE_FAT
2705 && i64Size >= _4G
2706 && !mfSnapshotFolderSizeWarningShown)
2707 {
2708 const char *pszUnit;
2709 uint64_t u64Print = formatDiskSize(i64Size, &pszUnit);
2710 setVMRuntimeErrorCallbackF(pVM, this, 0,
2711 "FatPartitionDetected",
2712#ifdef RT_OS_WINDOWS
2713 N_("The snapshot folder of this VM '%ls' seems to be located on "
2714 "a FAT(32) file system. The logical size of the medium '%ls' "
2715 "(%RU64%s) is bigger than the maximum file size this file "
2716 "system can handle (4GB).\n"
2717 "We strongly recommend to put all your virtual disk images and "
2718 "the snapshot folder onto an NTFS partition"),
2719#else
2720 N_("The snapshot folder of this VM '%ls' seems to be located on "
2721 "a FAT(32) file system. The logical size of the medium '%ls' "
2722 "(%RU64%s) is bigger than the maximum file size this file "
2723 "system can handle (4GB).\n"
2724 "We strongly recommend to put all your virtual disk images and "
2725 "the snapshot folder onto a proper file system (e.g. ext3)"),
2726#endif
2727 strSnap.raw(), strFile.raw(), u64Print, pszUnit);
2728 /* Show this particular warning only once */
2729 mfSnapshotFolderSizeWarningShown = true;
2730 }
2731
2732#ifdef RT_OS_LINUX
2733 /*
2734 * Ext4 bug: Check if the host I/O cache is disabled and the disk image is located
2735 * on an ext4 partition. Later we have to check the Linux kernel version!
2736 * This bug apparently applies to the XFS file system as well.
2737 * Linux 2.6.36 is known to be fixed (tested with 2.6.36-rc4).
2738 */
2739
2740 char szOsRelease[128];
2741 rc = RTSystemQueryOSInfo(RTSYSOSINFO_RELEASE, szOsRelease, sizeof(szOsRelease));
2742 bool fKernelHasODirectBug = RT_FAILURE(rc)
2743 || (RTStrVersionCompare(szOsRelease, "2.6.36-rc4") < 0);
2744
2745 if ( (uCaps & MediumFormatCapabilities_Asynchronous)
2746 && !fUseHostIOCache
2747 && fKernelHasODirectBug)
2748 {
2749 if ( enmFsTypeFile == RTFSTYPE_EXT4
2750 || enmFsTypeFile == RTFSTYPE_XFS)
2751 {
2752 setVMRuntimeErrorCallbackF(pVM, this, 0,
2753 "Ext4PartitionDetected",
2754 N_("The host I/O cache for at least one controller is disabled "
2755 "and the medium '%ls' for this VM "
2756 "is located on an %s partition. There is a known Linux "
2757 "kernel bug which can lead to the corruption of the virtual "
2758 "disk image under these conditions.\n"
2759 "Either enable the host I/O cache permanently in the VM "
2760 "settings or put the disk image and the snapshot folder "
2761 "onto a different file system.\n"
2762 "The host I/O cache will now be enabled for this medium"),
2763 strFile.raw(), enmFsTypeFile == RTFSTYPE_EXT4 ? "ext4" : "xfs");
2764 fUseHostIOCache = true;
2765 }
2766 else if ( ( enmFsTypeSnap == RTFSTYPE_EXT4
2767 || enmFsTypeSnap == RTFSTYPE_XFS)
2768 && !mfSnapshotFolderExt4WarningShown)
2769 {
2770 setVMRuntimeErrorCallbackF(pVM, this, 0,
2771 "Ext4PartitionDetected",
2772 N_("The host I/O cache for at least one controller is disabled "
2773 "and the snapshot folder for this VM "
2774 "is located on an %s partition. There is a known Linux "
2775 "kernel bug which can lead to the corruption of the virtual "
2776 "disk image under these conditions.\n"
2777 "Either enable the host I/O cache permanently in the VM "
2778 "settings or put the disk image and the snapshot folder "
2779 "onto a different file system.\n"
2780 "The host I/O cache will now be enabled for this medium"),
2781 enmFsTypeSnap == RTFSTYPE_EXT4 ? "ext4" : "xfs");
2782 fUseHostIOCache = true;
2783 mfSnapshotFolderExt4WarningShown = true;
2784 }
2785 }
2786#endif
2787 }
2788 }
2789
2790 BOOL fPassthrough;
2791 hrc = pMediumAtt->COMGETTER(Passthrough)(&fPassthrough); H();
2792 rc = configMedium(pLunL0,
2793 !!fPassthrough,
2794 lType,
2795 fUseHostIOCache,
2796 fSetupMerge,
2797 uMergeSource,
2798 uMergeTarget,
2799 pMedium,
2800 aMachineState,
2801 phrc);
2802 if (RT_FAILURE(rc))
2803 return rc;
2804
2805 if (fAttachDetach)
2806 {
2807 /* Attach the new driver. */
2808 rc = PDMR3DeviceAttach(pVM, pcszDevice, 0, uLUN,
2809 PDM_TACH_FLAGS_NOT_HOT_PLUG, NULL /*ppBase*/);
2810 AssertMsgReturn(RT_SUCCESS(rc), ("rc=%Rrc\n", rc), rc);
2811
2812 /* There is no need to handle removable medium mounting, as we
2813 * unconditionally replace everthing including the block driver level.
2814 * This means the new medium will be picked up automatically. */
2815 }
2816
2817 if (paLedDevType)
2818 paLedDevType[uLUN] = lType;
2819 }
2820 catch (ConfigError &x)
2821 {
2822 // InsertConfig threw something:
2823 return x.m_vrc;
2824 }
2825
2826#undef H
2827
2828 return VINF_SUCCESS;;
2829}
2830
2831int Console::configMedium(PCFGMNODE pLunL0,
2832 bool fPassthrough,
2833 DeviceType_T enmType,
2834 bool fUseHostIOCache,
2835 bool fSetupMerge,
2836 unsigned uMergeSource,
2837 unsigned uMergeTarget,
2838 IMedium *pMedium,
2839 MachineState_T aMachineState,
2840 HRESULT *phrc)
2841{
2842 // InsertConfig* throws
2843 try
2844 {
2845 int rc = VINF_SUCCESS;
2846 HRESULT hrc;
2847 Bstr bstr;
2848
2849#define H() AssertMsgReturnStmt(!FAILED(hrc), ("hrc=%Rhrc\n", hrc), if (phrc) *phrc = hrc, VERR_GENERAL_FAILURE)
2850
2851 PCFGMNODE pLunL1 = NULL;
2852 PCFGMNODE pCfg = NULL;
2853
2854 BOOL fHostDrive = FALSE;
2855 MediumType_T mediumType = MediumType_Normal;
2856 if (pMedium)
2857 {
2858 hrc = pMedium->COMGETTER(HostDrive)(&fHostDrive); H();
2859 hrc = pMedium->COMGETTER(Type)(&mediumType); H();
2860 }
2861
2862 if (fHostDrive)
2863 {
2864 Assert(pMedium);
2865 if (enmType == DeviceType_DVD)
2866 {
2867 InsertConfigString(pLunL0, "Driver", "HostDVD");
2868 InsertConfigNode(pLunL0, "Config", &pCfg);
2869
2870 hrc = pMedium->COMGETTER(Location)(bstr.asOutParam()); H();
2871 InsertConfigString(pCfg, "Path", bstr);
2872
2873 InsertConfigInteger(pCfg, "Passthrough", fPassthrough);
2874 }
2875 else if (enmType == DeviceType_Floppy)
2876 {
2877 InsertConfigString(pLunL0, "Driver", "HostFloppy");
2878 InsertConfigNode(pLunL0, "Config", &pCfg);
2879
2880 hrc = pMedium->COMGETTER(Location)(bstr.asOutParam()); H();
2881 InsertConfigString(pCfg, "Path", bstr);
2882 }
2883 }
2884 else
2885 {
2886 InsertConfigString(pLunL0, "Driver", "Block");
2887 InsertConfigNode(pLunL0, "Config", &pCfg);
2888 switch (enmType)
2889 {
2890 case DeviceType_DVD:
2891 InsertConfigString(pCfg, "Type", "DVD");
2892 InsertConfigInteger(pCfg, "Mountable", 1);
2893 break;
2894 case DeviceType_Floppy:
2895 InsertConfigString(pCfg, "Type", "Floppy 1.44");
2896 InsertConfigInteger(pCfg, "Mountable", 1);
2897 break;
2898 case DeviceType_HardDisk:
2899 default:
2900 InsertConfigString(pCfg, "Type", "HardDisk");
2901 InsertConfigInteger(pCfg, "Mountable", 0);
2902 }
2903
2904 if ( pMedium
2905 && ( enmType == DeviceType_DVD
2906 || enmType == DeviceType_Floppy
2907 ))
2908 {
2909 // if this medium represents an ISO image and this image is inaccessible,
2910 // the ignore it instead of causing a failure; this can happen when we
2911 // restore a VM state and the ISO has disappeared, e.g. because the Guest
2912 // Additions were mounted and the user upgraded VirtualBox. Previously
2913 // we failed on startup, but that's not good because the only way out then
2914 // would be to discard the VM state...
2915 MediumState_T mediumState;
2916 rc = pMedium->RefreshState(&mediumState);
2917 AssertMsgReturn(RT_SUCCESS(rc), ("rc=%Rrc\n", rc), rc);
2918
2919 if (mediumState == MediumState_Inaccessible)
2920 {
2921 Bstr loc;
2922 rc = pMedium->COMGETTER(Location)(loc.asOutParam());
2923 if (FAILED(rc)) return rc;
2924
2925 setVMRuntimeErrorCallbackF(mpVM,
2926 this,
2927 0,
2928 "DvdOrFloppyImageInaccessible",
2929 "The image file '%ls' is inaccessible and is being ignored. Please select a different image file for the virtual %s drive.",
2930 loc.raw(),
2931 (enmType == DeviceType_DVD) ? "DVD" : "floppy");
2932 pMedium = NULL;
2933 }
2934 }
2935
2936 if (pMedium)
2937 {
2938 /* Start with length of parent chain, as the list is reversed */
2939 unsigned uImage = 0;
2940 IMedium *pTmp = pMedium;
2941 while (pTmp)
2942 {
2943 uImage++;
2944 hrc = pTmp->COMGETTER(Parent)(&pTmp); H();
2945 }
2946 /* Index of last image */
2947 uImage--;
2948
2949#if 0 /* Enable for I/O debugging */
2950 InsertConfigNode(pLunL0, "AttachedDriver", &pLunL0);
2951 InsertConfigString(pLunL0, "Driver", "DiskIntegrity");
2952 InsertConfigNode(pLunL0, "Config", &pCfg);
2953 InsertConfigInteger(pCfg, "CheckConsistency", 0);
2954 InsertConfigInteger(pCfg, "CheckDoubleCompletions", 1);
2955#endif
2956
2957 InsertConfigNode(pLunL0, "AttachedDriver", &pLunL1);
2958 InsertConfigString(pLunL1, "Driver", "VD");
2959 InsertConfigNode(pLunL1, "Config", &pCfg);
2960
2961 hrc = pMedium->COMGETTER(Location)(bstr.asOutParam()); H();
2962 InsertConfigString(pCfg, "Path", bstr);
2963
2964 hrc = pMedium->COMGETTER(Format)(bstr.asOutParam()); H();
2965 InsertConfigString(pCfg, "Format", bstr);
2966
2967 /* DVDs are always readonly, floppies may be readonly */
2968 if (enmType == DeviceType_DVD)
2969 {
2970 InsertConfigInteger(pCfg, "ReadOnly", 1);
2971 }
2972 else if (enmType == DeviceType_Floppy)
2973 {
2974 InsertConfigInteger(pCfg, "MaybeReadOnly", 1);
2975 }
2976
2977 /* Start without exclusive write access to the images. */
2978 /** @todo Live Migration: I don't quite like this, we risk screwing up when
2979 * we're resuming the VM if some 3rd dude have any of the VDIs open
2980 * with write sharing denied. However, if the two VMs are sharing a
2981 * image it really is necessary....
2982 *
2983 * So, on the "lock-media" command, the target teleporter should also
2984 * make DrvVD undo TempReadOnly. It gets interesting if we fail after
2985 * that. Grumble. */
2986 else if ( aMachineState == MachineState_TeleportingIn
2987 || aMachineState == MachineState_FaultTolerantSyncing)
2988 {
2989 InsertConfigInteger(pCfg, "TempReadOnly", 1);
2990 }
2991
2992 /* Flag for opening the medium for sharing between VMs. This
2993 * is done at the moment only for the first (and only) medium
2994 * in the chain, as shared media can have no diffs. */
2995 if (mediumType == MediumType_Shareable)
2996 {
2997 InsertConfigInteger(pCfg, "Shareable", 1);
2998 }
2999
3000 if (!fUseHostIOCache)
3001 {
3002 InsertConfigInteger(pCfg, "UseNewIo", 1);
3003 }
3004
3005 if (fSetupMerge)
3006 {
3007 InsertConfigInteger(pCfg, "SetupMerge", 1);
3008 if (uImage == uMergeSource)
3009 {
3010 InsertConfigInteger(pCfg, "MergeSource", 1);
3011 }
3012 else if (uImage == uMergeTarget)
3013 {
3014 InsertConfigInteger(pCfg, "MergeTarget", 1);
3015 }
3016 }
3017
3018 /* Pass all custom parameters. */
3019 bool fHostIP = true;
3020 SafeArray<BSTR> names;
3021 SafeArray<BSTR> values;
3022 hrc = pMedium->GetProperties(NULL,
3023 ComSafeArrayAsOutParam(names),
3024 ComSafeArrayAsOutParam(values)); H();
3025
3026 if (names.size() != 0)
3027 {
3028 PCFGMNODE pVDC;
3029 InsertConfigNode(pCfg, "VDConfig", &pVDC);
3030 for (size_t ii = 0; ii < names.size(); ++ii)
3031 {
3032 if (values[ii] && *values[ii])
3033 {
3034 Utf8Str name = names[ii];
3035 Utf8Str value = values[ii];
3036 InsertConfigString(pVDC, name.c_str(), value);
3037 if ( name.compare("HostIPStack") == 0
3038 && value.compare("0") == 0)
3039 fHostIP = false;
3040 }
3041 }
3042 }
3043
3044 /* Create an inversed list of parents. */
3045 uImage--;
3046 IMedium *pParentMedium = pMedium;
3047 for (PCFGMNODE pParent = pCfg;; uImage--)
3048 {
3049 hrc = pParentMedium->COMGETTER(Parent)(&pMedium); H();
3050 if (!pMedium)
3051 break;
3052
3053 PCFGMNODE pCur;
3054 InsertConfigNode(pParent, "Parent", &pCur);
3055 hrc = pMedium->COMGETTER(Location)(bstr.asOutParam()); H();
3056 InsertConfigString(pCur, "Path", bstr);
3057
3058 hrc = pMedium->COMGETTER(Format)(bstr.asOutParam()); H();
3059 InsertConfigString(pCur, "Format", bstr);
3060
3061 if (fSetupMerge)
3062 {
3063 if (uImage == uMergeSource)
3064 {
3065 InsertConfigInteger(pCur, "MergeSource", 1);
3066 }
3067 else if (uImage == uMergeTarget)
3068 {
3069 InsertConfigInteger(pCur, "MergeTarget", 1);
3070 }
3071 }
3072
3073 /* Pass all custom parameters. */
3074 SafeArray<BSTR> aNames;
3075 SafeArray<BSTR> aValues;
3076 hrc = pMedium->GetProperties(NULL,
3077 ComSafeArrayAsOutParam(aNames),
3078 ComSafeArrayAsOutParam(aValues)); H();
3079
3080 if (aNames.size() != 0)
3081 {
3082 PCFGMNODE pVDC;
3083 InsertConfigNode(pCur, "VDConfig", &pVDC);
3084 for (size_t ii = 0; ii < aNames.size(); ++ii)
3085 {
3086 if (aValues[ii] && *aValues[ii])
3087 {
3088 Utf8Str name = aNames[ii];
3089 Utf8Str value = aValues[ii];
3090 InsertConfigString(pVDC, name.c_str(), value);
3091 if ( name.compare("HostIPStack") == 0
3092 && value.compare("0") == 0)
3093 fHostIP = false;
3094 }
3095 }
3096 }
3097
3098 /* Custom code: put marker to not use host IP stack to driver
3099 * configuration node. Simplifies life of DrvVD a bit. */
3100 if (!fHostIP)
3101 {
3102 InsertConfigInteger(pCfg, "HostIPStack", 0);
3103 }
3104
3105 /* next */
3106 pParent = pCur;
3107 pParentMedium = pMedium;
3108 }
3109 }
3110 }
3111 }
3112 catch (ConfigError &x)
3113 {
3114 // InsertConfig threw something:
3115 return x.m_vrc;
3116 }
3117
3118#undef H
3119
3120 return VINF_SUCCESS;
3121}
3122
3123/**
3124 * Construct the Network configuration tree
3125 *
3126 * @returns VBox status code.
3127 *
3128 * @param pszDevice The PDM device name.
3129 * @param uInstance The PDM device instance.
3130 * @param uLun The PDM LUN number of the drive.
3131 * @param aNetworkAdapter The network adapter whose attachment needs to be changed
3132 * @param pCfg Configuration node for the device
3133 * @param pLunL0 To store the pointer to the LUN#0.
3134 * @param pInst The instance CFGM node
3135 * @param fAttachDetach To determine if the network attachment should
3136 * be attached/detached after/before
3137 * configuration.
3138 *
3139 * @note Locks this object for writing.
3140 */
3141int Console::configNetwork(const char *pszDevice,
3142 unsigned uInstance,
3143 unsigned uLun,
3144 INetworkAdapter *aNetworkAdapter,
3145 PCFGMNODE pCfg,
3146 PCFGMNODE pLunL0,
3147 PCFGMNODE pInst,
3148 bool fAttachDetach)
3149{
3150 AutoCaller autoCaller(this);
3151 AssertComRCReturn(autoCaller.rc(), VERR_ACCESS_DENIED);
3152
3153 // InsertConfig* throws
3154 try
3155 {
3156 int rc = VINF_SUCCESS;
3157 HRESULT hrc;
3158 Bstr bstr;
3159
3160#define H() AssertMsgReturn(!FAILED(hrc), ("hrc=%Rhrc\n", hrc), VERR_GENERAL_FAILURE)
3161
3162 /*
3163 * Locking the object before doing VMR3* calls is quite safe here, since
3164 * we're on EMT. Write lock is necessary because we indirectly modify the
3165 * meAttachmentType member.
3166 */
3167 AutoWriteLock alock(this COMMA_LOCKVAL_SRC_POS);
3168
3169 PVM pVM = mpVM;
3170
3171 ComPtr<IMachine> pMachine = machine();
3172
3173 ComPtr<IVirtualBox> virtualBox;
3174 hrc = pMachine->COMGETTER(Parent)(virtualBox.asOutParam());
3175 H();
3176
3177 ComPtr<IHost> host;
3178 hrc = virtualBox->COMGETTER(Host)(host.asOutParam());
3179 H();
3180
3181 BOOL fSniffer;
3182 hrc = aNetworkAdapter->COMGETTER(TraceEnabled)(&fSniffer);
3183 H();
3184
3185 if (fAttachDetach && fSniffer)
3186 {
3187 const char *pszNetDriver = "IntNet";
3188 if (meAttachmentType[uInstance] == NetworkAttachmentType_NAT)
3189 pszNetDriver = "NAT";
3190#if !defined(VBOX_WITH_NETFLT) && defined(RT_OS_LINUX)
3191 if (meAttachmentType[uInstance] == NetworkAttachmentType_Bridged)
3192 pszNetDriver = "HostInterface";
3193#endif
3194
3195 rc = PDMR3DriverDetach(pVM, pszDevice, uInstance, uLun, pszNetDriver, 0, 0 /*fFlags*/);
3196 if (rc == VINF_PDM_NO_DRIVER_ATTACHED_TO_LUN)
3197 rc = VINF_SUCCESS;
3198 AssertLogRelRCReturn(rc, rc);
3199
3200 pLunL0 = CFGMR3GetChildF(pInst, "LUN#%u", uLun);
3201 PCFGMNODE pLunAD = CFGMR3GetChildF(pLunL0, "AttachedDriver");
3202 if (pLunAD)
3203 {
3204 CFGMR3RemoveNode(pLunAD);
3205 }
3206 else
3207 {
3208 CFGMR3RemoveNode(pLunL0);
3209 InsertConfigNode(pInst, "LUN#0", &pLunL0);
3210 InsertConfigString(pLunL0, "Driver", "NetSniffer");
3211 InsertConfigNode(pLunL0, "Config", &pCfg);
3212 hrc = aNetworkAdapter->COMGETTER(TraceFile)(bstr.asOutParam()); H();
3213 if (!bstr.isEmpty()) /* check convention for indicating default file. */
3214 InsertConfigString(pCfg, "File", bstr);
3215 }
3216 }
3217 else if (fAttachDetach && !fSniffer)
3218 {
3219 rc = PDMR3DeviceDetach(pVM, pszDevice, uInstance, uLun, 0 /*fFlags*/);
3220 if (rc == VINF_PDM_NO_DRIVER_ATTACHED_TO_LUN)
3221 rc = VINF_SUCCESS;
3222 AssertLogRelRCReturn(rc, rc);
3223
3224 /* nuke anything which might have been left behind. */
3225 CFGMR3RemoveNode(CFGMR3GetChildF(pInst, "LUN#%u", uLun));
3226 }
3227 else if (!fAttachDetach && fSniffer)
3228 {
3229 /* insert the sniffer filter driver. */
3230 InsertConfigNode(pInst, "LUN#0", &pLunL0);
3231 InsertConfigString(pLunL0, "Driver", "NetSniffer");
3232 InsertConfigNode(pLunL0, "Config", &pCfg);
3233 hrc = aNetworkAdapter->COMGETTER(TraceFile)(bstr.asOutParam()); H();
3234 if (!bstr.isEmpty()) /* check convention for indicating default file. */
3235 InsertConfigString(pCfg, "File", bstr);
3236 }
3237
3238 Bstr networkName, trunkName, trunkType;
3239 NetworkAttachmentType_T eAttachmentType;
3240 hrc = aNetworkAdapter->COMGETTER(AttachmentType)(&eAttachmentType); H();
3241 switch (eAttachmentType)
3242 {
3243 case NetworkAttachmentType_Null:
3244 break;
3245
3246 case NetworkAttachmentType_NAT:
3247 {
3248 ComPtr<INATEngine> natDriver;
3249 hrc = aNetworkAdapter->COMGETTER(NatDriver)(natDriver.asOutParam()); H();
3250 if (fSniffer)
3251 InsertConfigNode(pLunL0, "AttachedDriver", &pLunL0);
3252 else
3253 InsertConfigNode(pInst, "LUN#0", &pLunL0);
3254 InsertConfigString(pLunL0, "Driver", "NAT");
3255 InsertConfigNode(pLunL0, "Config", &pCfg);
3256
3257 /* Configure TFTP prefix and boot filename. */
3258 hrc = virtualBox->COMGETTER(HomeFolder)(bstr.asOutParam()); H();
3259 if (!bstr.isEmpty())
3260 InsertConfigString(pCfg, "TFTPPrefix", Utf8StrFmt("%ls%c%s", bstr.raw(), RTPATH_DELIMITER, "TFTP"));
3261 hrc = pMachine->COMGETTER(Name)(bstr.asOutParam()); H();
3262 InsertConfigString(pCfg, "BootFile", Utf8StrFmt("%ls.pxe", bstr.raw()));
3263
3264 hrc = natDriver->COMGETTER(Network)(bstr.asOutParam()); H();
3265 if (!bstr.isEmpty())
3266 InsertConfigString(pCfg, "Network", bstr);
3267 else
3268 {
3269 ULONG uSlot;
3270 hrc = aNetworkAdapter->COMGETTER(Slot)(&uSlot); H();
3271 InsertConfigString(pCfg, "Network", Utf8StrFmt("10.0.%d.0/24", uSlot+2));
3272 }
3273 hrc = natDriver->COMGETTER(HostIP)(bstr.asOutParam()); H();
3274 if (!bstr.isEmpty())
3275 InsertConfigString(pCfg, "BindIP", bstr);
3276 ULONG mtu = 0;
3277 ULONG sockSnd = 0;
3278 ULONG sockRcv = 0;
3279 ULONG tcpSnd = 0;
3280 ULONG tcpRcv = 0;
3281 hrc = natDriver->GetNetworkSettings(&mtu, &sockSnd, &sockRcv, &tcpSnd, &tcpRcv); H();
3282 if (mtu)
3283 InsertConfigInteger(pCfg, "SlirpMTU", mtu);
3284 if (sockRcv)
3285 InsertConfigInteger(pCfg, "SockRcv", sockRcv);
3286 if (sockSnd)
3287 InsertConfigInteger(pCfg, "SockSnd", sockSnd);
3288 if (tcpRcv)
3289 InsertConfigInteger(pCfg, "TcpRcv", tcpRcv);
3290 if (tcpSnd)
3291 InsertConfigInteger(pCfg, "TcpSnd", tcpSnd);
3292 hrc = natDriver->COMGETTER(TftpPrefix)(bstr.asOutParam()); H();
3293 if (!bstr.isEmpty())
3294 {
3295 RemoveConfigValue(pCfg, "TFTPPrefix");
3296 InsertConfigString(pCfg, "TFTPPrefix", bstr);
3297 }
3298 hrc = natDriver->COMGETTER(TftpBootFile)(bstr.asOutParam()); H();
3299 if (!bstr.isEmpty())
3300 {
3301 RemoveConfigValue(pCfg, "BootFile");
3302 InsertConfigString(pCfg, "BootFile", bstr);
3303 }
3304 hrc = natDriver->COMGETTER(TftpNextServer)(bstr.asOutParam()); H();
3305 if (!bstr.isEmpty())
3306 InsertConfigString(pCfg, "NextServer", bstr);
3307 BOOL fDnsFlag;
3308 hrc = natDriver->COMGETTER(DnsPassDomain)(&fDnsFlag); H();
3309 InsertConfigInteger(pCfg, "PassDomain", fDnsFlag);
3310 hrc = natDriver->COMGETTER(DnsProxy)(&fDnsFlag); H();
3311 InsertConfigInteger(pCfg, "DNSProxy", fDnsFlag);
3312 hrc = natDriver->COMGETTER(DnsUseHostResolver)(&fDnsFlag); H();
3313 InsertConfigInteger(pCfg, "UseHostResolver", fDnsFlag);
3314
3315 ULONG aliasMode;
3316 hrc = natDriver->COMGETTER(AliasMode)(&aliasMode); H();
3317 InsertConfigInteger(pCfg, "AliasMode", aliasMode);
3318
3319 /* port-forwarding */
3320 SafeArray<BSTR> pfs;
3321 hrc = natDriver->COMGETTER(Redirects)(ComSafeArrayAsOutParam(pfs)); H();
3322 PCFGMNODE pPF = NULL; /* /Devices/Dev/.../Config/PF#0/ */
3323 for (unsigned int i = 0; i < pfs.size(); ++i)
3324 {
3325 uint16_t port = 0;
3326 BSTR r = pfs[i];
3327 Utf8Str utf = Utf8Str(r);
3328 Utf8Str strName;
3329 Utf8Str strProto;
3330 Utf8Str strHostPort;
3331 Utf8Str strHostIP;
3332 Utf8Str strGuestPort;
3333 Utf8Str strGuestIP;
3334 size_t pos, ppos;
3335 pos = ppos = 0;
3336#define ITERATE_TO_NEXT_TERM(res, str, pos, ppos) \
3337 do { \
3338 pos = str.find(",", ppos); \
3339 if (pos == Utf8Str::npos) \
3340 { \
3341 Log(( #res " extracting from %s is failed\n", str.c_str())); \
3342 continue; \
3343 } \
3344 res = str.substr(ppos, pos - ppos); \
3345 Log2((#res " %s pos:%d, ppos:%d\n", res.c_str(), pos, ppos)); \
3346 ppos = pos + 1; \
3347 } while (0)
3348 ITERATE_TO_NEXT_TERM(strName, utf, pos, ppos);
3349 ITERATE_TO_NEXT_TERM(strProto, utf, pos, ppos);
3350 ITERATE_TO_NEXT_TERM(strHostIP, utf, pos, ppos);
3351 ITERATE_TO_NEXT_TERM(strHostPort, utf, pos, ppos);
3352 ITERATE_TO_NEXT_TERM(strGuestIP, utf, pos, ppos);
3353 strGuestPort = utf.substr(ppos, utf.length() - ppos);
3354#undef ITERATE_TO_NEXT_TERM
3355
3356 uint32_t proto = strProto.toUInt32();
3357 bool fValid = true;
3358 switch (proto)
3359 {
3360 case NATProtocol_UDP:
3361 strProto = "UDP";
3362 break;
3363 case NATProtocol_TCP:
3364 strProto = "TCP";
3365 break;
3366 default:
3367 fValid = false;
3368 }
3369 /* continue with next rule if no valid proto was passed */
3370 if (!fValid)
3371 continue;
3372
3373 InsertConfigNode(pCfg, strName.c_str(), &pPF);
3374 InsertConfigString(pPF, "Protocol", strProto);
3375
3376 if (!strHostIP.isEmpty())
3377 InsertConfigString(pPF, "BindIP", strHostIP);
3378
3379 if (!strGuestIP.isEmpty())
3380 InsertConfigString(pPF, "GuestIP", strGuestIP);
3381
3382 port = RTStrToUInt16(strHostPort.c_str());
3383 if (port)
3384 InsertConfigInteger(pPF, "HostPort", port);
3385
3386 port = RTStrToUInt16(strGuestPort.c_str());
3387 if (port)
3388 InsertConfigInteger(pPF, "GuestPort", port);
3389 }
3390 break;
3391 }
3392
3393 case NetworkAttachmentType_Bridged:
3394 {
3395#if (defined(RT_OS_LINUX) || defined(RT_OS_FREEBSD)) && !defined(VBOX_WITH_NETFLT)
3396 hrc = attachToTapInterface(aNetworkAdapter);
3397 if (FAILED(hrc))
3398 {
3399 switch (hrc)
3400 {
3401 case VERR_ACCESS_DENIED:
3402 return VMSetError(pVM, VERR_HOSTIF_INIT_FAILED, RT_SRC_POS, N_(
3403 "Failed to open '/dev/net/tun' for read/write access. Please check the "
3404 "permissions of that node. Either run 'chmod 0666 /dev/net/tun' or "
3405 "change the group of that node and make yourself a member of that group. Make "
3406 "sure that these changes are permanent, especially if you are "
3407 "using udev"));
3408 default:
3409 AssertMsgFailed(("Could not attach to host interface! Bad!\n"));
3410 return VMSetError(pVM, VERR_HOSTIF_INIT_FAILED, RT_SRC_POS, N_(
3411 "Failed to initialize Host Interface Networking"));
3412 }
3413 }
3414
3415 Assert((int)maTapFD[uInstance] >= 0);
3416 if ((int)maTapFD[uInstance] >= 0)
3417 {
3418 if (fSniffer)
3419 {
3420 InsertConfigNode(pLunL0, "AttachedDriver", &pLunL0);
3421 }
3422 else
3423 {
3424 InsertConfigNode(pInst, "LUN#0", &pLunL0);
3425 }
3426 InsertConfigString(pLunL0, "Driver", "HostInterface");
3427 InsertConfigNode(pLunL0, "Config", &pCfg);
3428 InsertConfigInteger(pCfg, "FileHandle", maTapFD[uInstance]);
3429 }
3430
3431#elif defined(VBOX_WITH_NETFLT)
3432 /*
3433 * This is the new VBoxNetFlt+IntNet stuff.
3434 */
3435 if (fSniffer)
3436 {
3437 InsertConfigNode(pLunL0, "AttachedDriver", &pLunL0);
3438 }
3439 else
3440 {
3441 InsertConfigNode(pInst, "LUN#0", &pLunL0);
3442 }
3443
3444 Bstr HifName;
3445 hrc = aNetworkAdapter->COMGETTER(HostInterface)(HifName.asOutParam());
3446 if (FAILED(hrc))
3447 {
3448 LogRel(("NetworkAttachmentType_Bridged: COMGETTER(HostInterface) failed, hrc (0x%x)", hrc));
3449 H();
3450 }
3451
3452 Utf8Str HifNameUtf8(HifName);
3453 const char *pszHifName = HifNameUtf8.c_str();
3454
3455# if defined(RT_OS_DARWIN)
3456 /* The name is on the form 'ifX: long name', chop it off at the colon. */
3457 char szTrunk[8];
3458 strncpy(szTrunk, pszHifName, sizeof(szTrunk));
3459 char *pszColon = (char *)memchr(szTrunk, ':', sizeof(szTrunk));
3460 if (!pszColon)
3461 {
3462 /*
3463 * Dynamic changing of attachment causes an attempt to configure
3464 * network with invalid host adapter (as it is must be changed before
3465 * the attachment), calling Detach here will cause a deadlock.
3466 * See #4750.
3467 * hrc = aNetworkAdapter->Detach(); H();
3468 */
3469 return VMSetError(pVM, VERR_INTERNAL_ERROR, RT_SRC_POS,
3470 N_("Malformed host interface networking name '%ls'"),
3471 HifName.raw());
3472 }
3473 *pszColon = '\0';
3474 const char *pszTrunk = szTrunk;
3475
3476# elif defined(RT_OS_SOLARIS)
3477 /* The name is on the form format 'ifX[:1] - long name, chop it off at space. */
3478 char szTrunk[256];
3479 strlcpy(szTrunk, pszHifName, sizeof(szTrunk));
3480 char *pszSpace = (char *)memchr(szTrunk, ' ', sizeof(szTrunk));
3481
3482 /*
3483 * Currently don't bother about malformed names here for the sake of people using
3484 * VBoxManage and setting only the NIC name from there. If there is a space we
3485 * chop it off and proceed, otherwise just use whatever we've got.
3486 */
3487 if (pszSpace)
3488 *pszSpace = '\0';
3489
3490 /* Chop it off at the colon (zone naming eg: e1000g:1 we need only the e1000g) */
3491 char *pszColon = (char *)memchr(szTrunk, ':', sizeof(szTrunk));
3492 if (pszColon)
3493 *pszColon = '\0';
3494
3495 const char *pszTrunk = szTrunk;
3496
3497# elif defined(RT_OS_WINDOWS)
3498 ComPtr<IHostNetworkInterface> hostInterface;
3499 hrc = host->FindHostNetworkInterfaceByName(HifName, hostInterface.asOutParam());
3500 if (!SUCCEEDED(hrc))
3501 {
3502 AssertLogRelMsgFailed(("NetworkAttachmentType_Bridged: FindByName failed, rc=%Rhrc (0x%x)", hrc, hrc));
3503 return VMSetError(pVM, VERR_INTERNAL_ERROR, RT_SRC_POS,
3504 N_("Inexistent host networking interface, name '%ls'"),
3505 HifName.raw());
3506 }
3507
3508 HostNetworkInterfaceType_T eIfType;
3509 hrc = hostInterface->COMGETTER(InterfaceType)(&eIfType);
3510 if (FAILED(hrc))
3511 {
3512 LogRel(("NetworkAttachmentType_Bridged: COMGETTER(InterfaceType) failed, hrc (0x%x)", hrc));
3513 H();
3514 }
3515
3516 if (eIfType != HostNetworkInterfaceType_Bridged)
3517 {
3518 return VMSetError(pVM, VERR_INTERNAL_ERROR, RT_SRC_POS,
3519 N_("Interface ('%ls') is not a Bridged Adapter interface"),
3520 HifName.raw());
3521 }
3522
3523 hrc = hostInterface->COMGETTER(Id)(bstr.asOutParam());
3524 if (FAILED(hrc))
3525 {
3526 LogRel(("NetworkAttachmentType_Bridged: COMGETTER(Id) failed, hrc (0x%x)", hrc));
3527 H();
3528 }
3529 Guid hostIFGuid(bstr);
3530
3531 INetCfg *pNc;
3532 ComPtr<INetCfgComponent> pAdaptorComponent;
3533 LPWSTR pszApp;
3534 int rc = VERR_INTNET_FLT_IF_NOT_FOUND;
3535
3536 hrc = VBoxNetCfgWinQueryINetCfg(FALSE /*fGetWriteLock*/,
3537 L"VirtualBox",
3538 &pNc,
3539 &pszApp);
3540 Assert(hrc == S_OK);
3541 if (hrc == S_OK)
3542 {
3543 /* get the adapter's INetCfgComponent*/
3544 hrc = VBoxNetCfgWinGetComponentByGuid(pNc, &GUID_DEVCLASS_NET, (GUID*)hostIFGuid.ptr(), pAdaptorComponent.asOutParam());
3545 if (hrc != S_OK)
3546 {
3547 VBoxNetCfgWinReleaseINetCfg(pNc, FALSE /*fHasWriteLock*/);
3548 LogRel(("NetworkAttachmentType_Bridged: VBoxNetCfgWinGetComponentByGuid failed, hrc (0x%x)", hrc));
3549 H();
3550 }
3551 }
3552#define VBOX_WIN_BINDNAME_PREFIX "\\DEVICE\\"
3553 char szTrunkName[INTNET_MAX_TRUNK_NAME];
3554 char *pszTrunkName = szTrunkName;
3555 wchar_t * pswzBindName;
3556 hrc = pAdaptorComponent->GetBindName(&pswzBindName);
3557 Assert(hrc == S_OK);
3558 if (hrc == S_OK)
3559 {
3560 int cwBindName = (int)wcslen(pswzBindName) + 1;
3561 int cbFullBindNamePrefix = sizeof(VBOX_WIN_BINDNAME_PREFIX);
3562 if (sizeof(szTrunkName) > cbFullBindNamePrefix + cwBindName)
3563 {
3564 strcpy(szTrunkName, VBOX_WIN_BINDNAME_PREFIX);
3565 pszTrunkName += cbFullBindNamePrefix-1;
3566 if (!WideCharToMultiByte(CP_ACP, 0, pswzBindName, cwBindName, pszTrunkName,
3567 sizeof(szTrunkName) - cbFullBindNamePrefix + 1, NULL, NULL))
3568 {
3569 DWORD err = GetLastError();
3570 hrc = HRESULT_FROM_WIN32(err);
3571 AssertMsgFailed(("%hrc=%Rhrc %#x\n", hrc, hrc));
3572 AssertLogRelMsgFailed(("NetworkAttachmentType_Bridged: WideCharToMultiByte failed, hr=%Rhrc (0x%x) err=%u\n", hrc, hrc, err));
3573 }
3574 }
3575 else
3576 {
3577 AssertLogRelMsgFailed(("NetworkAttachmentType_Bridged: insufficient szTrunkName buffer space\n"));
3578 /** @todo set appropriate error code */
3579 hrc = E_FAIL;
3580 }
3581
3582 if (hrc != S_OK)
3583 {
3584 AssertFailed();
3585 CoTaskMemFree(pswzBindName);
3586 VBoxNetCfgWinReleaseINetCfg(pNc, FALSE /*fHasWriteLock*/);
3587 H();
3588 }
3589
3590 /* we're not freeing the bind name since we'll use it later for detecting wireless*/
3591 }
3592 else
3593 {
3594 VBoxNetCfgWinReleaseINetCfg(pNc, FALSE /*fHasWriteLock*/);
3595 AssertLogRelMsgFailed(("NetworkAttachmentType_Bridged: VBoxNetCfgWinGetComponentByGuid failed, hrc (0x%x)", hrc));
3596 H();
3597 }
3598 const char *pszTrunk = szTrunkName;
3599 /* we're not releasing the INetCfg stuff here since we use it later to figure out whether it is wireless */
3600
3601# elif defined(RT_OS_LINUX) || defined(RT_OS_FREEBSD)
3602# if defined(RT_OS_FREEBSD)
3603 /*
3604 * If we bridge to a tap interface open it the `old' direct way.
3605 * This works and performs better than bridging a physical
3606 * interface via the current FreeBSD vboxnetflt implementation.
3607 */
3608 if (!strncmp(pszHifName, "tap", sizeof "tap" - 1)) {
3609 hrc = attachToTapInterface(aNetworkAdapter);
3610 if (FAILED(hrc))
3611 {
3612 switch (hrc)
3613 {
3614 case VERR_ACCESS_DENIED:
3615 return VMSetError(pVM, VERR_HOSTIF_INIT_FAILED, RT_SRC_POS, N_(
3616 "Failed to open '/dev/%s' for read/write access. Please check the "
3617 "permissions of that node, and that the net.link.tap.user_open "
3618 "sysctl is set. Either run 'chmod 0666 /dev/%s' or "
3619 "change the group of that node to vboxusers and make yourself "
3620 "a member of that group. Make sure that these changes are permanent."), pszHifName, pszHifName);
3621 default:
3622 AssertMsgFailed(("Could not attach to tap interface! Bad!\n"));
3623 return VMSetError(pVM, VERR_HOSTIF_INIT_FAILED, RT_SRC_POS, N_(
3624 "Failed to initialize Host Interface Networking"));
3625 }
3626 }
3627
3628 Assert((int)maTapFD[uInstance] >= 0);
3629 if ((int)maTapFD[uInstance] >= 0)
3630 {
3631 InsertConfigString(pLunL0, "Driver", "HostInterface");
3632 InsertConfigNode(pLunL0, "Config", &pCfg);
3633 InsertConfigInteger(pCfg, "FileHandle", maTapFD[uInstance]);
3634 }
3635 break;
3636 }
3637# endif
3638 /** @todo Check for malformed names. */
3639 const char *pszTrunk = pszHifName;
3640
3641 /* Issue a warning if the interface is down */
3642 {
3643 int iSock = socket(AF_INET, SOCK_DGRAM, 0);
3644 if (iSock >= 0)
3645 {
3646 struct ifreq Req;
3647
3648 memset(&Req, 0, sizeof(Req));
3649 strncpy(Req.ifr_name, pszHifName, sizeof(Req.ifr_name) - 1);
3650 if (ioctl(iSock, SIOCGIFFLAGS, &Req) >= 0)
3651 if ((Req.ifr_flags & IFF_UP) == 0)
3652 {
3653 setVMRuntimeErrorCallbackF(pVM, this, 0, "BridgedInterfaceDown", "Bridged interface %s is down. Guest will not be able to use this interface", pszHifName);
3654 }
3655
3656 close(iSock);
3657 }
3658 }
3659
3660# else
3661# error "PORTME (VBOX_WITH_NETFLT)"
3662# endif
3663
3664 InsertConfigString(pLunL0, "Driver", "IntNet");
3665 InsertConfigNode(pLunL0, "Config", &pCfg);
3666 InsertConfigString(pCfg, "Trunk", pszTrunk);
3667 InsertConfigInteger(pCfg, "TrunkType", kIntNetTrunkType_NetFlt);
3668 char szNetwork[INTNET_MAX_NETWORK_NAME];
3669 RTStrPrintf(szNetwork, sizeof(szNetwork), "HostInterfaceNetworking-%s", pszHifName);
3670 InsertConfigString(pCfg, "Network", szNetwork);
3671 networkName = Bstr(szNetwork);
3672 trunkName = Bstr(pszTrunk);
3673 trunkType = Bstr(TRUNKTYPE_NETFLT);
3674
3675# if defined(RT_OS_DARWIN)
3676 /** @todo Come up with a better deal here. Problem is that IHostNetworkInterface is completely useless here. */
3677 if ( strstr(pszHifName, "Wireless")
3678 || strstr(pszHifName, "AirPort" ))
3679 InsertConfigInteger(pCfg, "SharedMacOnWire", true);
3680# elif defined(RT_OS_LINUX)
3681 int iSock = socket(AF_INET, SOCK_DGRAM, 0);
3682 if (iSock >= 0)
3683 {
3684 struct iwreq WRq;
3685
3686 memset(&WRq, 0, sizeof(WRq));
3687 strncpy(WRq.ifr_name, pszHifName, IFNAMSIZ);
3688 bool fSharedMacOnWire = ioctl(iSock, SIOCGIWNAME, &WRq) >= 0;
3689 close(iSock);
3690 if (fSharedMacOnWire)
3691 {
3692 InsertConfigInteger(pCfg, "SharedMacOnWire", true);
3693 Log(("Set SharedMacOnWire\n"));
3694 }
3695 else
3696 Log(("Failed to get wireless name\n"));
3697 }
3698 else
3699 Log(("Failed to open wireless socket\n"));
3700# elif defined(RT_OS_FREEBSD)
3701 int iSock = socket(AF_INET, SOCK_DGRAM, 0);
3702 if (iSock >= 0)
3703 {
3704 struct ieee80211req WReq;
3705 uint8_t abData[32];
3706
3707 memset(&WReq, 0, sizeof(WReq));
3708 strncpy(WReq.i_name, pszHifName, sizeof(WReq.i_name));
3709 WReq.i_type = IEEE80211_IOC_SSID;
3710 WReq.i_val = -1;
3711 WReq.i_data = abData;
3712 WReq.i_len = sizeof(abData);
3713
3714 bool fSharedMacOnWire = ioctl(iSock, SIOCG80211, &WReq) >= 0;
3715 close(iSock);
3716 if (fSharedMacOnWire)
3717 {
3718 InsertConfigInteger(pCfg, "SharedMacOnWire", true);
3719 Log(("Set SharedMacOnWire\n"));
3720 }
3721 else
3722 Log(("Failed to get wireless name\n"));
3723 }
3724 else
3725 Log(("Failed to open wireless socket\n"));
3726# elif defined(RT_OS_WINDOWS)
3727# define DEVNAME_PREFIX L"\\\\.\\"
3728 /* we are getting the medium type via IOCTL_NDIS_QUERY_GLOBAL_STATS Io Control
3729 * there is a pretty long way till there though since we need to obtain the symbolic link name
3730 * for the adapter device we are going to query given the device Guid */
3731
3732
3733 /* prepend the "\\\\.\\" to the bind name to obtain the link name */
3734
3735 wchar_t FileName[MAX_PATH];
3736 wcscpy(FileName, DEVNAME_PREFIX);
3737 wcscpy((wchar_t*)(((char*)FileName) + sizeof(DEVNAME_PREFIX) - sizeof(FileName[0])), pswzBindName);
3738
3739 /* open the device */
3740 HANDLE hDevice = CreateFile(FileName,
3741 GENERIC_READ | GENERIC_WRITE, FILE_SHARE_READ | FILE_SHARE_WRITE,
3742 NULL,
3743 OPEN_EXISTING,
3744 FILE_ATTRIBUTE_NORMAL,
3745 NULL);
3746
3747 if (hDevice != INVALID_HANDLE_VALUE)
3748 {
3749 bool fSharedMacOnWire = false;
3750
3751 /* now issue the OID_GEN_PHYSICAL_MEDIUM query */
3752 DWORD Oid = OID_GEN_PHYSICAL_MEDIUM;
3753 NDIS_PHYSICAL_MEDIUM PhMedium;
3754 DWORD cbResult;
3755 if (DeviceIoControl(hDevice,
3756 IOCTL_NDIS_QUERY_GLOBAL_STATS,
3757 &Oid,
3758 sizeof(Oid),
3759 &PhMedium,
3760 sizeof(PhMedium),
3761 &cbResult,
3762 NULL))
3763 {
3764 /* that was simple, now examine PhMedium */
3765 if ( PhMedium == NdisPhysicalMediumWirelessWan
3766 || PhMedium == NdisPhysicalMediumWirelessLan
3767 || PhMedium == NdisPhysicalMediumNative802_11
3768 || PhMedium == NdisPhysicalMediumBluetooth)
3769 fSharedMacOnWire = true;
3770 }
3771 else
3772 {
3773 int winEr = GetLastError();
3774 LogRel(("Console::configConstructor: DeviceIoControl failed, err (0x%x), ignoring\n", winEr));
3775 Assert(winEr == ERROR_INVALID_PARAMETER || winEr == ERROR_NOT_SUPPORTED || winEr == ERROR_BAD_COMMAND);
3776 }
3777 CloseHandle(hDevice);
3778
3779 if (fSharedMacOnWire)
3780 {
3781 Log(("this is a wireless adapter"));
3782 InsertConfigInteger(pCfg, "SharedMacOnWire", true);
3783 Log(("Set SharedMacOnWire\n"));
3784 }
3785 else
3786 Log(("this is NOT a wireless adapter"));
3787 }
3788 else
3789 {
3790 int winEr = GetLastError();
3791 AssertLogRelMsgFailed(("Console::configConstructor: CreateFile failed, err (0x%x), ignoring\n", winEr));
3792 }
3793
3794 CoTaskMemFree(pswzBindName);
3795
3796 pAdaptorComponent.setNull();
3797 /* release the pNc finally */
3798 VBoxNetCfgWinReleaseINetCfg(pNc, FALSE /*fHasWriteLock*/);
3799# else
3800 /** @todo PORTME: wireless detection */
3801# endif
3802
3803# if defined(RT_OS_SOLARIS)
3804# if 0 /* bird: this is a bit questionable and might cause more trouble than its worth. */
3805 /* Zone access restriction, don't allow snopping the global zone. */
3806 zoneid_t ZoneId = getzoneid();
3807 if (ZoneId != GLOBAL_ZONEID)
3808 {
3809 InsertConfigInteger(pCfg, "IgnoreAllPromisc", true);
3810 }
3811# endif
3812# endif
3813
3814#elif defined(RT_OS_WINDOWS) /* not defined NetFlt */
3815 /* NOTHING TO DO HERE */
3816#elif defined(RT_OS_LINUX)
3817/// @todo aleksey: is there anything to be done here?
3818#elif defined(RT_OS_FREEBSD)
3819/** @todo FreeBSD: Check out this later (HIF networking). */
3820#else
3821# error "Port me"
3822#endif
3823 break;
3824 }
3825
3826 case NetworkAttachmentType_Internal:
3827 {
3828 hrc = aNetworkAdapter->COMGETTER(InternalNetwork)(bstr.asOutParam()); H();
3829 if (!bstr.isEmpty())
3830 {
3831 if (fSniffer)
3832 InsertConfigNode(pLunL0, "AttachedDriver", &pLunL0);
3833 else
3834 InsertConfigNode(pInst, "LUN#0", &pLunL0);
3835 InsertConfigString(pLunL0, "Driver", "IntNet");
3836 InsertConfigNode(pLunL0, "Config", &pCfg);
3837 InsertConfigString(pCfg, "Network", bstr);
3838 InsertConfigInteger(pCfg, "TrunkType", kIntNetTrunkType_WhateverNone);
3839 networkName = bstr;
3840 trunkType = Bstr(TRUNKTYPE_WHATEVER);
3841 }
3842 break;
3843 }
3844
3845 case NetworkAttachmentType_HostOnly:
3846 {
3847 if (fSniffer)
3848 InsertConfigNode(pLunL0, "AttachedDriver", &pLunL0);
3849 else
3850 InsertConfigNode(pInst, "LUN#0", &pLunL0);
3851
3852 InsertConfigString(pLunL0, "Driver", "IntNet");
3853 InsertConfigNode(pLunL0, "Config", &pCfg);
3854
3855 Bstr HifName;
3856 hrc = aNetworkAdapter->COMGETTER(HostInterface)(HifName.asOutParam());
3857 if (FAILED(hrc))
3858 {
3859 LogRel(("NetworkAttachmentType_HostOnly: COMGETTER(HostInterface) failed, hrc (0x%x)\n", hrc));
3860 H();
3861 }
3862
3863 Utf8Str HifNameUtf8(HifName);
3864 const char *pszHifName = HifNameUtf8.c_str();
3865 ComPtr<IHostNetworkInterface> hostInterface;
3866 rc = host->FindHostNetworkInterfaceByName(HifName, hostInterface.asOutParam());
3867 if (!SUCCEEDED(rc))
3868 {
3869 LogRel(("NetworkAttachmentType_HostOnly: FindByName failed, rc (0x%x)\n", rc));
3870 return VMSetError(pVM, VERR_INTERNAL_ERROR, RT_SRC_POS,
3871 N_("Inexistent host networking interface, name '%ls'"),
3872 HifName.raw());
3873 }
3874
3875 char szNetwork[INTNET_MAX_NETWORK_NAME];
3876 RTStrPrintf(szNetwork, sizeof(szNetwork), "HostInterfaceNetworking-%s", pszHifName);
3877
3878#if defined(RT_OS_WINDOWS)
3879# ifndef VBOX_WITH_NETFLT
3880 hrc = E_NOTIMPL;
3881 LogRel(("NetworkAttachmentType_HostOnly: Not Implemented\n"));
3882 H();
3883# else /* defined VBOX_WITH_NETFLT*/
3884 /** @todo r=bird: Put this in a function. */
3885
3886 HostNetworkInterfaceType_T eIfType;
3887 hrc = hostInterface->COMGETTER(InterfaceType)(&eIfType);
3888 if (FAILED(hrc))
3889 {
3890 LogRel(("NetworkAttachmentType_HostOnly: COMGETTER(InterfaceType) failed, hrc (0x%x)\n", hrc));
3891 H();
3892 }
3893
3894 if (eIfType != HostNetworkInterfaceType_HostOnly)
3895 return VMSetError(pVM, VERR_INTERNAL_ERROR, RT_SRC_POS,
3896 N_("Interface ('%ls') is not a Host-Only Adapter interface"),
3897 HifName.raw());
3898
3899 hrc = hostInterface->COMGETTER(Id)(bstr.asOutParam());
3900 if (FAILED(hrc))
3901 {
3902 LogRel(("NetworkAttachmentType_HostOnly: COMGETTER(Id) failed, hrc (0x%x)\n", hrc));
3903 H();
3904 }
3905 Guid hostIFGuid(bstr);
3906
3907 INetCfg *pNc;
3908 ComPtr<INetCfgComponent> pAdaptorComponent;
3909 LPWSTR pszApp;
3910 rc = VERR_INTNET_FLT_IF_NOT_FOUND;
3911
3912 hrc = VBoxNetCfgWinQueryINetCfg(FALSE,
3913 L"VirtualBox",
3914 &pNc,
3915 &pszApp);
3916 Assert(hrc == S_OK);
3917 if (hrc == S_OK)
3918 {
3919 /* get the adapter's INetCfgComponent*/
3920 hrc = VBoxNetCfgWinGetComponentByGuid(pNc, &GUID_DEVCLASS_NET, (GUID*)hostIFGuid.ptr(), pAdaptorComponent.asOutParam());
3921 if (hrc != S_OK)
3922 {
3923 VBoxNetCfgWinReleaseINetCfg(pNc, FALSE /*fHasWriteLock*/);
3924 LogRel(("NetworkAttachmentType_HostOnly: VBoxNetCfgWinGetComponentByGuid failed, hrc=%Rhrc (0x%x)\n", hrc, hrc));
3925 H();
3926 }
3927 }
3928#define VBOX_WIN_BINDNAME_PREFIX "\\DEVICE\\"
3929 char szTrunkName[INTNET_MAX_TRUNK_NAME];
3930 char *pszTrunkName = szTrunkName;
3931 wchar_t * pswzBindName;
3932 hrc = pAdaptorComponent->GetBindName(&pswzBindName);
3933 Assert(hrc == S_OK);
3934 if (hrc == S_OK)
3935 {
3936 int cwBindName = (int)wcslen(pswzBindName) + 1;
3937 int cbFullBindNamePrefix = sizeof(VBOX_WIN_BINDNAME_PREFIX);
3938 if (sizeof(szTrunkName) > cbFullBindNamePrefix + cwBindName)
3939 {
3940 strcpy(szTrunkName, VBOX_WIN_BINDNAME_PREFIX);
3941 pszTrunkName += cbFullBindNamePrefix-1;
3942 if (!WideCharToMultiByte(CP_ACP, 0, pswzBindName, cwBindName, pszTrunkName,
3943 sizeof(szTrunkName) - cbFullBindNamePrefix + 1, NULL, NULL))
3944 {
3945 DWORD err = GetLastError();
3946 hrc = HRESULT_FROM_WIN32(err);
3947 AssertLogRelMsgFailed(("NetworkAttachmentType_HostOnly: WideCharToMultiByte failed, hr=%Rhrc (0x%x) err=%u\n", hrc, hrc, err));
3948 }
3949 }
3950 else
3951 {
3952 AssertLogRelMsgFailed(("NetworkAttachmentType_HostOnly: insufficient szTrunkName buffer space\n"));
3953 /** @todo set appropriate error code */
3954 hrc = E_FAIL;
3955 }
3956
3957 if (hrc != S_OK)
3958 {
3959 AssertFailed();
3960 CoTaskMemFree(pswzBindName);
3961 VBoxNetCfgWinReleaseINetCfg(pNc, FALSE /*fHasWriteLock*/);
3962 H();
3963 }
3964 }
3965 else
3966 {
3967 VBoxNetCfgWinReleaseINetCfg(pNc, FALSE /*fHasWriteLock*/);
3968 AssertLogRelMsgFailed(("NetworkAttachmentType_HostOnly: VBoxNetCfgWinGetComponentByGuid failed, hrc=%Rhrc (0x%x)\n", hrc, hrc));
3969 H();
3970 }
3971
3972
3973 CoTaskMemFree(pswzBindName);
3974
3975 pAdaptorComponent.setNull();
3976 /* release the pNc finally */
3977 VBoxNetCfgWinReleaseINetCfg(pNc, FALSE /*fHasWriteLock*/);
3978
3979 const char *pszTrunk = szTrunkName;
3980
3981 InsertConfigInteger(pCfg, "TrunkType", kIntNetTrunkType_NetAdp);
3982 InsertConfigString(pCfg, "Trunk", pszTrunk);
3983 InsertConfigString(pCfg, "Network", szNetwork);
3984 networkName = Bstr(szNetwork);
3985 trunkName = Bstr(pszTrunk);
3986 trunkType = TRUNKTYPE_NETADP;
3987# endif /* defined VBOX_WITH_NETFLT*/
3988#elif defined(RT_OS_DARWIN)
3989 InsertConfigString(pCfg, "Trunk", pszHifName);
3990 InsertConfigString(pCfg, "Network", szNetwork);
3991 InsertConfigInteger(pCfg, "TrunkType", kIntNetTrunkType_NetAdp);
3992 networkName = Bstr(szNetwork);
3993 trunkName = Bstr(pszHifName);
3994 trunkType = TRUNKTYPE_NETADP;
3995#else
3996 InsertConfigString(pCfg, "Trunk", pszHifName);
3997 InsertConfigString(pCfg, "Network", szNetwork);
3998 InsertConfigInteger(pCfg, "TrunkType", kIntNetTrunkType_NetFlt);
3999 networkName = Bstr(szNetwork);
4000 trunkName = Bstr(pszHifName);
4001 trunkType = TRUNKTYPE_NETFLT;
4002#endif
4003#if !defined(RT_OS_WINDOWS) && defined(VBOX_WITH_NETFLT)
4004
4005 Bstr tmpAddr, tmpMask;
4006
4007 hrc = virtualBox->GetExtraData(BstrFmt("HostOnly/%s/IPAddress", pszHifName), tmpAddr.asOutParam());
4008 if (SUCCEEDED(hrc) && !tmpAddr.isEmpty())
4009 {
4010 hrc = virtualBox->GetExtraData(BstrFmt("HostOnly/%s/IPNetMask", pszHifName), tmpMask.asOutParam());
4011 if (SUCCEEDED(hrc) && !tmpMask.isEmpty())
4012 hrc = hostInterface->EnableStaticIpConfig(tmpAddr, tmpMask);
4013 else
4014 hrc = hostInterface->EnableStaticIpConfig(tmpAddr,
4015 Bstr(VBOXNET_IPV4MASK_DEFAULT));
4016 }
4017 else
4018 {
4019 /* Grab the IP number from the 'vboxnetX' instance number (see netif.h) */
4020 hrc = hostInterface->EnableStaticIpConfig(getDefaultIPv4Address(Bstr(pszHifName)),
4021 Bstr(VBOXNET_IPV4MASK_DEFAULT));
4022 }
4023
4024 ComAssertComRC(hrc); /** @todo r=bird: Why this isn't fatal? (H()) */
4025
4026 hrc = virtualBox->GetExtraData(BstrFmt("HostOnly/%s/IPV6Address", pszHifName), tmpAddr.asOutParam());
4027 if (SUCCEEDED(hrc))
4028 hrc = virtualBox->GetExtraData(BstrFmt("HostOnly/%s/IPV6NetMask", pszHifName), tmpMask.asOutParam());
4029 if (SUCCEEDED(hrc) && !tmpAddr.isEmpty() && !tmpMask.isEmpty())
4030 {
4031 hrc = hostInterface->EnableStaticIpConfigV6(tmpAddr, Utf8Str(tmpMask).toUInt32());
4032 ComAssertComRC(hrc); /** @todo r=bird: Why this isn't fatal? (H()) */
4033 }
4034#endif
4035 break;
4036 }
4037
4038#if defined(VBOX_WITH_VDE)
4039 case NetworkAttachmentType_VDE:
4040 {
4041 hrc = aNetworkAdapter->COMGETTER(VDENetwork)(bstr.asOutParam()); H();
4042 InsertConfigNode(pInst, "LUN#0", &pLunL0);
4043 InsertConfigString(pLunL0, "Driver", "VDE");
4044 InsertConfigNode(pLunL0, "Config", &pCfg);
4045 if (!bstr.isEmpty())
4046 {
4047 InsertConfigString(pCfg, "Network", bstr);
4048 networkName = bstr;
4049 }
4050 break;
4051 }
4052#endif
4053
4054 default:
4055 AssertMsgFailed(("should not get here!\n"));
4056 break;
4057 }
4058
4059 /*
4060 * Attempt to attach the driver.
4061 */
4062 switch (eAttachmentType)
4063 {
4064 case NetworkAttachmentType_Null:
4065 break;
4066
4067 case NetworkAttachmentType_Bridged:
4068 case NetworkAttachmentType_Internal:
4069 case NetworkAttachmentType_HostOnly:
4070 case NetworkAttachmentType_NAT:
4071#if defined(VBOX_WITH_VDE)
4072 case NetworkAttachmentType_VDE:
4073#endif
4074 {
4075 if (SUCCEEDED(hrc) && SUCCEEDED(rc))
4076 {
4077 if (fAttachDetach)
4078 {
4079 rc = PDMR3DriverAttach(pVM, pszDevice, uInstance, uLun, 0 /*fFlags*/, NULL /* ppBase */);
4080 //AssertRC(rc);
4081 }
4082
4083 {
4084 /** @todo pritesh: get the dhcp server name from the
4085 * previous network configuration and then stop the server
4086 * else it may conflict with the dhcp server running with
4087 * the current attachment type
4088 */
4089 /* Stop the hostonly DHCP Server */
4090 }
4091
4092 if (!networkName.isEmpty())
4093 {
4094 /*
4095 * Until we implement service reference counters DHCP Server will be stopped
4096 * by DHCPServerRunner destructor.
4097 */
4098 ComPtr<IDHCPServer> dhcpServer;
4099 hrc = virtualBox->FindDHCPServerByNetworkName(networkName, dhcpServer.asOutParam());
4100 if (SUCCEEDED(hrc))
4101 {
4102 /* there is a DHCP server available for this network */
4103 BOOL fEnabled;
4104 hrc = dhcpServer->COMGETTER(Enabled)(&fEnabled);
4105 if (FAILED(hrc))
4106 {
4107 LogRel(("DHCP svr: COMGETTER(Enabled) failed, hrc (%Rhrc)", hrc));
4108 H();
4109 }
4110
4111 if (fEnabled)
4112 hrc = dhcpServer->Start(networkName, trunkName, trunkType);
4113 }
4114 else
4115 hrc = S_OK;
4116 }
4117 }
4118
4119 break;
4120 }
4121
4122 default:
4123 AssertMsgFailed(("should not get here!\n"));
4124 break;
4125 }
4126
4127 meAttachmentType[uInstance] = eAttachmentType;
4128 }
4129 catch (ConfigError &x)
4130 {
4131 // InsertConfig threw something:
4132 return x.m_vrc;
4133 }
4134
4135#undef H
4136
4137 return VINF_SUCCESS;
4138}
4139
4140#ifdef VBOX_WITH_GUEST_PROPS
4141/**
4142 * Set an array of guest properties
4143 */
4144static void configSetProperties(VMMDev * const pVMMDev,
4145 void *names,
4146 void *values,
4147 void *timestamps,
4148 void *flags)
4149{
4150 VBOXHGCMSVCPARM parms[4];
4151
4152 parms[0].type = VBOX_HGCM_SVC_PARM_PTR;
4153 parms[0].u.pointer.addr = names;
4154 parms[0].u.pointer.size = 0; /* We don't actually care. */
4155 parms[1].type = VBOX_HGCM_SVC_PARM_PTR;
4156 parms[1].u.pointer.addr = values;
4157 parms[1].u.pointer.size = 0; /* We don't actually care. */
4158 parms[2].type = VBOX_HGCM_SVC_PARM_PTR;
4159 parms[2].u.pointer.addr = timestamps;
4160 parms[2].u.pointer.size = 0; /* We don't actually care. */
4161 parms[3].type = VBOX_HGCM_SVC_PARM_PTR;
4162 parms[3].u.pointer.addr = flags;
4163 parms[3].u.pointer.size = 0; /* We don't actually care. */
4164
4165 pVMMDev->hgcmHostCall ("VBoxGuestPropSvc", guestProp::SET_PROPS_HOST, 4,
4166 &parms[0]);
4167}
4168
4169/**
4170 * Set a single guest property
4171 */
4172static void configSetProperty(VMMDev * const pVMMDev, const char *pszName,
4173 const char *pszValue, const char *pszFlags)
4174{
4175 VBOXHGCMSVCPARM parms[4];
4176
4177 AssertPtrReturnVoid(pszName);
4178 AssertPtrReturnVoid(pszValue);
4179 AssertPtrReturnVoid(pszFlags);
4180 parms[0].type = VBOX_HGCM_SVC_PARM_PTR;
4181 parms[0].u.pointer.addr = (void *)pszName;
4182 parms[0].u.pointer.size = strlen(pszName) + 1;
4183 parms[1].type = VBOX_HGCM_SVC_PARM_PTR;
4184 parms[1].u.pointer.addr = (void *)pszValue;
4185 parms[1].u.pointer.size = strlen(pszValue) + 1;
4186 parms[2].type = VBOX_HGCM_SVC_PARM_PTR;
4187 parms[2].u.pointer.addr = (void *)pszFlags;
4188 parms[2].u.pointer.size = strlen(pszFlags) + 1;
4189 pVMMDev->hgcmHostCall("VBoxGuestPropSvc", guestProp::SET_PROP_HOST, 3,
4190 &parms[0]);
4191}
4192
4193/**
4194 * Set the global flags value by calling the service
4195 * @returns the status returned by the call to the service
4196 *
4197 * @param pTable the service instance handle
4198 * @param eFlags the flags to set
4199 */
4200int configSetGlobalPropertyFlags(VMMDev * const pVMMDev,
4201 guestProp::ePropFlags eFlags)
4202{
4203 VBOXHGCMSVCPARM paParm;
4204 paParm.setUInt32(eFlags);
4205 int rc = pVMMDev->hgcmHostCall("VBoxGuestPropSvc",
4206 guestProp::SET_GLOBAL_FLAGS_HOST, 1,
4207 &paParm);
4208 if (RT_FAILURE(rc))
4209 {
4210 char szFlags[guestProp::MAX_FLAGS_LEN];
4211 if (RT_FAILURE(writeFlags(eFlags, szFlags)))
4212 Log(("Failed to set the global flags.\n"));
4213 else
4214 Log(("Failed to set the global flags \"%s\".\n", szFlags));
4215 }
4216 return rc;
4217}
4218#endif /* VBOX_WITH_GUEST_PROPS */
4219
4220/**
4221 * Set up the Guest Property service, populate it with properties read from
4222 * the machine XML and set a couple of initial properties.
4223 */
4224/* static */ int Console::configGuestProperties(void *pvConsole)
4225{
4226#ifdef VBOX_WITH_GUEST_PROPS
4227 AssertReturn(pvConsole, VERR_GENERAL_FAILURE);
4228 ComObjPtr<Console> pConsole = static_cast<Console *>(pvConsole);
4229
4230 /* Load the service */
4231 int rc = pConsole->mVMMDev->hgcmLoadService("VBoxGuestPropSvc", "VBoxGuestPropSvc");
4232
4233 if (RT_FAILURE(rc))
4234 {
4235 LogRel(("VBoxGuestPropSvc is not available. rc = %Rrc\n", rc));
4236 /* That is not a fatal failure. */
4237 rc = VINF_SUCCESS;
4238 }
4239 else
4240 {
4241 /*
4242 * Initialize built-in properties that can be changed and saved.
4243 *
4244 * These are typically transient properties that the guest cannot
4245 * change.
4246 */
4247
4248 /* Sysprep execution by VBoxService. */
4249 configSetProperty(pConsole->mVMMDev,
4250 "/VirtualBox/HostGuest/SysprepExec", "",
4251 "TRANSIENT, RDONLYGUEST");
4252 configSetProperty(pConsole->mVMMDev,
4253 "/VirtualBox/HostGuest/SysprepArgs", "",
4254 "TRANSIENT, RDONLYGUEST");
4255
4256 /*
4257 * Pull over the properties from the server.
4258 */
4259 SafeArray<BSTR> namesOut;
4260 SafeArray<BSTR> valuesOut;
4261 SafeArray<LONG64> timestampsOut;
4262 SafeArray<BSTR> flagsOut;
4263 HRESULT hrc;
4264 hrc = pConsole->mControl->PullGuestProperties(ComSafeArrayAsOutParam(namesOut),
4265 ComSafeArrayAsOutParam(valuesOut),
4266 ComSafeArrayAsOutParam(timestampsOut),
4267 ComSafeArrayAsOutParam(flagsOut));
4268 AssertMsgReturn(SUCCEEDED(hrc), ("hrc=%Rrc\n", hrc), VERR_GENERAL_FAILURE);
4269 size_t cProps = namesOut.size();
4270 size_t cAlloc = cProps + 1;
4271 if ( valuesOut.size() != cProps
4272 || timestampsOut.size() != cProps
4273 || flagsOut.size() != cProps
4274 )
4275 AssertFailedReturn(VERR_INVALID_PARAMETER);
4276
4277 char **papszNames, **papszValues, **papszFlags;
4278 char szEmpty[] = "";
4279 LONG64 *pai64Timestamps;
4280 papszNames = (char **)RTMemTmpAllocZ(sizeof(void *) * cAlloc);
4281 papszValues = (char **)RTMemTmpAllocZ(sizeof(void *) * cAlloc);
4282 pai64Timestamps = (LONG64 *)RTMemTmpAllocZ(sizeof(LONG64) * cAlloc);
4283 papszFlags = (char **)RTMemTmpAllocZ(sizeof(void *) * cAlloc);
4284 if (papszNames && papszValues && pai64Timestamps && papszFlags)
4285 {
4286 for (unsigned i = 0; RT_SUCCESS(rc) && i < cProps; ++i)
4287 {
4288 AssertPtrReturn(namesOut[i], VERR_INVALID_PARAMETER);
4289 rc = RTUtf16ToUtf8(namesOut[i], &papszNames[i]);
4290 if (RT_FAILURE(rc))
4291 break;
4292 if (valuesOut[i])
4293 rc = RTUtf16ToUtf8(valuesOut[i], &papszValues[i]);
4294 else
4295 papszValues[i] = szEmpty;
4296 if (RT_FAILURE(rc))
4297 break;
4298 pai64Timestamps[i] = timestampsOut[i];
4299 if (flagsOut[i])
4300 rc = RTUtf16ToUtf8(flagsOut[i], &papszFlags[i]);
4301 else
4302 papszFlags[i] = szEmpty;
4303 }
4304 if (RT_SUCCESS(rc))
4305 configSetProperties(pConsole->mVMMDev,
4306 (void *)papszNames,
4307 (void *)papszValues,
4308 (void *)pai64Timestamps,
4309 (void *)papszFlags);
4310 for (unsigned i = 0; i < cProps; ++i)
4311 {
4312 RTStrFree(papszNames[i]);
4313 if (valuesOut[i])
4314 RTStrFree(papszValues[i]);
4315 if (flagsOut[i])
4316 RTStrFree(papszFlags[i]);
4317 }
4318 }
4319 else
4320 rc = VERR_NO_MEMORY;
4321 RTMemTmpFree(papszNames);
4322 RTMemTmpFree(papszValues);
4323 RTMemTmpFree(pai64Timestamps);
4324 RTMemTmpFree(papszFlags);
4325 AssertRCReturn(rc, rc);
4326
4327 /*
4328 * These properties have to be set before pulling over the properties
4329 * from the machine XML, to ensure that properties saved in the XML
4330 * will override them.
4331 */
4332 /* Set the VBox version string as a guest property */
4333 configSetProperty(pConsole->mVMMDev, "/VirtualBox/HostInfo/VBoxVer",
4334 VBOX_VERSION_STRING, "TRANSIENT, RDONLYGUEST");
4335 /* Set the VBox SVN revision as a guest property */
4336 configSetProperty(pConsole->mVMMDev, "/VirtualBox/HostInfo/VBoxRev",
4337 RTBldCfgRevisionStr(), "TRANSIENT, RDONLYGUEST");
4338
4339 /*
4340 * Register the host notification callback
4341 */
4342 HGCMSVCEXTHANDLE hDummy;
4343 HGCMHostRegisterServiceExtension(&hDummy, "VBoxGuestPropSvc",
4344 Console::doGuestPropNotification,
4345 pvConsole);
4346
4347#ifdef VBOX_WITH_GUEST_PROPS_RDONLY_GUEST
4348 rc = configSetGlobalPropertyFlags(pConsole->mVMMDev,
4349 guestProp::RDONLYGUEST);
4350 AssertRCReturn(rc, rc);
4351#endif
4352
4353 Log(("Set VBoxGuestPropSvc property store\n"));
4354 }
4355 return VINF_SUCCESS;
4356#else /* !VBOX_WITH_GUEST_PROPS */
4357 return VERR_NOT_SUPPORTED;
4358#endif /* !VBOX_WITH_GUEST_PROPS */
4359}
4360
4361/**
4362 * Set up the Guest Control service.
4363 */
4364/* static */ int Console::configGuestControl(void *pvConsole)
4365{
4366#ifdef VBOX_WITH_GUEST_CONTROL
4367 AssertReturn(pvConsole, VERR_GENERAL_FAILURE);
4368 ComObjPtr<Console> pConsole = static_cast<Console *>(pvConsole);
4369
4370 /* Load the service */
4371 int rc = pConsole->mVMMDev->hgcmLoadService("VBoxGuestControlSvc", "VBoxGuestControlSvc");
4372
4373 if (RT_FAILURE(rc))
4374 {
4375 LogRel(("VBoxGuestControlSvc is not available. rc = %Rrc\n", rc));
4376 /* That is not a fatal failure. */
4377 rc = VINF_SUCCESS;
4378 }
4379 else
4380 {
4381 HGCMSVCEXTHANDLE hDummy;
4382 rc = HGCMHostRegisterServiceExtension(&hDummy, "VBoxGuestControlSvc",
4383 &Guest::doGuestCtrlNotification,
4384 pConsole->getGuest());
4385 if (RT_FAILURE(rc))
4386 Log(("Cannot register VBoxGuestControlSvc extension!\n"));
4387 else
4388 Log(("VBoxGuestControlSvc loaded\n"));
4389 }
4390
4391 return rc;
4392#else /* !VBOX_WITH_GUEST_CONTROL */
4393 return VERR_NOT_SUPPORTED;
4394#endif /* !VBOX_WITH_GUEST_CONTROL */
4395}
Note: See TracBrowser for help on using the repository browser.

© 2025 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette