VirtualBox

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

Last change on this file since 4849 was 4505, checked in by vboxsync, 17 years ago

Moved the memorysize query up with the uuid one.

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 65.3 KB
Line 
1/** $Id: ConsoleImpl2.cpp 4505 2007-09-04 06:00:36Z 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
6 * finds problematic to optimize so we can disable optimizations
7 * and later, perhaps, find a real solution for it.
8 */
9
10/*
11 * Copyright (C) 2006-2007 innotek GmbH
12 *
13 * This file is part of VirtualBox Open Source Edition (OSE), as
14 * available from http://www.virtualbox.org. This file is free software;
15 * you can redistribute it and/or modify it under the terms of the GNU
16 * General Public License as published by the Free Software Foundation,
17 * in version 2 as it comes in the "COPYING" file of the VirtualBox OSE
18 * distribution. VirtualBox OSE is distributed in the hope that it will
19 * be useful, but WITHOUT ANY WARRANTY of any kind.
20 */
21
22/*******************************************************************************
23* Header Files *
24*******************************************************************************/
25#include "ConsoleImpl.h"
26#include "DisplayImpl.h"
27#include "VMMDev.h"
28
29// generated header
30#include "SchemaDefs.h"
31
32#include "Logging.h"
33
34#include <iprt/string.h>
35#include <iprt/path.h>
36#include <iprt/dir.h>
37#include <iprt/param.h>
38
39#include <VBox/vmapi.h>
40#include <VBox/err.h>
41#include <VBox/version.h>
42#include <VBox/HostServices/VBoxClipboardSvc.h>
43
44
45/*
46 * VC++ 8 / amd64 has some serious trouble with this function.
47 * As a temporary measure, we'll drop global optimizations.
48 */
49#if defined(_MSC_VER) && defined(RT_ARCH_AMD64)
50# pragma optimize("g", off)
51#endif
52
53/**
54 * Construct the VM configuration tree (CFGM).
55 *
56 * This is a callback for VMR3Create() call. It is called from CFGMR3Init()
57 * in the emulation thread (EMT). Any per thread COM/XPCOM initialization
58 * is done here.
59 *
60 * @param pVM VM handle.
61 * @param pvConsole Pointer to the VMPowerUpTask object.
62 * @return VBox status code.
63 *
64 * @note Locks the Console object for writing.
65 */
66DECLCALLBACK(int) Console::configConstructor(PVM pVM, void *pvConsole)
67{
68 LogFlowFuncEnter();
69
70#if defined(RT_OS_WINDOWS)
71 {
72 /* initialize COM */
73 HRESULT hrc = CoInitializeEx(NULL,
74 COINIT_MULTITHREADED | COINIT_DISABLE_OLE1DDE |
75 COINIT_SPEED_OVER_MEMORY);
76 LogFlow (("Console::configConstructor(): CoInitializeEx()=%08X\n", hrc));
77 AssertComRCReturn (hrc, VERR_GENERAL_FAILURE);
78 }
79#endif
80
81 AssertReturn (pvConsole, VERR_GENERAL_FAILURE);
82 ComObjPtr <Console> pConsole = static_cast <Console *> (pvConsole);
83
84 AutoCaller autoCaller (pConsole);
85 AssertComRCReturn (autoCaller.rc(), VERR_ACCESS_DENIED);
86
87 /* lock the console because we widely use internal fields and methods */
88 AutoLock alock (pConsole);
89
90 ComPtr <IMachine> pMachine = pConsole->machine();
91
92 int rc;
93 HRESULT hrc;
94 char *psz = NULL;
95 BSTR str = NULL;
96 unsigned i;
97
98#define STR_CONV() do { rc = RTStrUcs2ToUtf8(&psz, str); RC_CHECK(); } while (0)
99#define STR_FREE() do { if (str) { SysFreeString(str); str = NULL; } if (psz) { RTStrFree(psz); psz = NULL; } } while (0)
100#define RC_CHECK() do { if (VBOX_FAILURE(rc)) { AssertMsgFailed(("rc=%Vrc\n", rc)); STR_FREE(); return rc; } } while (0)
101#define H() do { if (FAILED(hrc)) { AssertMsgFailed(("hrc=%#x\n", hrc)); STR_FREE(); return VERR_GENERAL_FAILURE; } } while (0)
102
103 /*
104 * Get necessary objects and frequently used parameters.
105 */
106 ComPtr<IVirtualBox> virtualBox;
107 hrc = pMachine->COMGETTER(Parent)(virtualBox.asOutParam()); H();
108
109 ComPtr<IHost> host;
110 hrc = virtualBox->COMGETTER(Host)(host.asOutParam()); H();
111
112 ComPtr <ISystemProperties> systemProperties;
113 hrc = virtualBox->COMGETTER(SystemProperties)(systemProperties.asOutParam()); H();
114
115 ComPtr<IBIOSSettings> biosSettings;
116 hrc = pMachine->COMGETTER(BIOSSettings)(biosSettings.asOutParam()); H();
117
118 Guid uuid;
119 hrc = pMachine->COMGETTER(Id)(uuid.asOutParam()); H();
120 PCRTUUID pUuid = uuid.raw();
121
122 ULONG cRamMBs;
123 hrc = pMachine->COMGETTER(MemorySize)(&cRamMBs); H();
124
125
126 /*
127 * Get root node first.
128 * This is the only node in the tree.
129 */
130 PCFGMNODE pRoot = CFGMR3GetRoot(pVM);
131 Assert(pRoot);
132
133 /*
134 * Set the root level values.
135 */
136 hrc = pMachine->COMGETTER(Name)(&str); H();
137 STR_CONV();
138 rc = CFGMR3InsertString(pRoot, "Name", psz); RC_CHECK();
139 STR_FREE();
140 rc = CFGMR3InsertBytes(pRoot, "UUID", pUuid, sizeof(*pUuid)); RC_CHECK();
141 rc = CFGMR3InsertInteger(pRoot, "RamSize", cRamMBs * _1M); RC_CHECK();
142 rc = CFGMR3InsertInteger(pRoot, "TimerMillies", 10); RC_CHECK();
143 rc = CFGMR3InsertInteger(pRoot, "RawR3Enabled", 1); /* boolean */ RC_CHECK();
144 rc = CFGMR3InsertInteger(pRoot, "RawR0Enabled", 1); /* boolean */ RC_CHECK();
145 /** @todo Config: RawR0, PATMEnabled and CASMEnabled needs attention later. */
146 rc = CFGMR3InsertInteger(pRoot, "PATMEnabled", 1); /* boolean */ RC_CHECK();
147 rc = CFGMR3InsertInteger(pRoot, "CSAMEnabled", 1); /* boolean */ RC_CHECK();
148
149 /* hardware virtualization extensions */
150 TriStateBool_T hwVirtExEnabled;
151 BOOL fHWVirtExEnabled;
152 hrc = pMachine->COMGETTER(HWVirtExEnabled)(&hwVirtExEnabled); H();
153 if (hwVirtExEnabled == TriStateBool_Default)
154 {
155 /* check the default value */
156 hrc = systemProperties->COMGETTER(HWVirtExEnabled)(&fHWVirtExEnabled); H();
157 }
158 else
159 fHWVirtExEnabled = (hwVirtExEnabled == TriStateBool_True);
160#ifndef RT_OS_DARWIN /** @todo Implement HWVirtExt on darwin. See #1865. */
161 if (fHWVirtExEnabled)
162 {
163 PCFGMNODE pHWVirtExt;
164 rc = CFGMR3InsertNode(pRoot, "HWVirtExt", &pHWVirtExt); RC_CHECK();
165 rc = CFGMR3InsertInteger(pHWVirtExt, "Enabled", 1); RC_CHECK();
166 }
167#endif
168
169 BOOL fIOAPIC;
170 hrc = biosSettings->COMGETTER(IOAPICEnabled)(&fIOAPIC); H();
171
172 /*
173 * PDM config.
174 * Load drivers in VBoxC.[so|dll]
175 */
176 PCFGMNODE pPDM;
177 PCFGMNODE pDrivers;
178 PCFGMNODE pMod;
179 rc = CFGMR3InsertNode(pRoot, "PDM", &pPDM); RC_CHECK();
180 rc = CFGMR3InsertNode(pPDM, "Drivers", &pDrivers); RC_CHECK();
181 rc = CFGMR3InsertNode(pDrivers, "VBoxC", &pMod); RC_CHECK();
182#ifdef VBOX_WITH_XPCOM
183 // VBoxC is located in the components subdirectory
184 char szPathVBoxC[RTPATH_MAX];
185 rc = RTPathAppPrivateArch(szPathVBoxC, RTPATH_MAX - sizeof("/components/VBoxC")); AssertRC(rc);
186 strcat(szPathVBoxC, "/components/VBoxC");
187 rc = CFGMR3InsertString(pMod, "Path", szPathVBoxC); RC_CHECK();
188#else
189 rc = CFGMR3InsertString(pMod, "Path", "VBoxC"); RC_CHECK();
190#endif
191
192 /*
193 * Devices
194 */
195 PCFGMNODE pDevices = NULL; /* /Devices */
196 PCFGMNODE pDev = NULL; /* /Devices/Dev/ */
197 PCFGMNODE pInst = NULL; /* /Devices/Dev/0/ */
198 PCFGMNODE pCfg = NULL; /* /Devices/Dev/.../Config/ */
199 PCFGMNODE pLunL0 = NULL; /* /Devices/Dev/0/LUN#0/ */
200 PCFGMNODE pLunL1 = NULL; /* /Devices/Dev/0/LUN#0/AttachedDriver/ */
201 PCFGMNODE pLunL2 = NULL; /* /Devices/Dev/0/LUN#0/AttachedDriver/Config/ */
202
203 rc = CFGMR3InsertNode(pRoot, "Devices", &pDevices); RC_CHECK();
204
205 /*
206 * PC Arch.
207 */
208 rc = CFGMR3InsertNode(pDevices, "pcarch", &pDev); RC_CHECK();
209 rc = CFGMR3InsertNode(pDev, "0", &pInst); RC_CHECK();
210 rc = CFGMR3InsertInteger(pInst, "Trusted", 1); /* boolean */ RC_CHECK();
211 rc = CFGMR3InsertNode(pInst, "Config", &pCfg); RC_CHECK();
212
213 /*
214 * PC Bios.
215 */
216 rc = CFGMR3InsertNode(pDevices, "pcbios", &pDev); RC_CHECK();
217 rc = CFGMR3InsertNode(pDev, "0", &pInst); RC_CHECK();
218 rc = CFGMR3InsertInteger(pInst, "Trusted", 1); /* boolean */ RC_CHECK();
219 rc = CFGMR3InsertNode(pInst, "Config", &pCfg); RC_CHECK();
220 rc = CFGMR3InsertInteger(pCfg, "RamSize", cRamMBs * _1M); RC_CHECK();
221 rc = CFGMR3InsertString(pCfg, "HardDiskDevice", "piix3ide"); RC_CHECK();
222 rc = CFGMR3InsertString(pCfg, "FloppyDevice", "i82078"); RC_CHECK();
223 rc = CFGMR3InsertInteger(pCfg, "IOAPIC", fIOAPIC); RC_CHECK();
224 rc = CFGMR3InsertBytes(pCfg, "UUID", pUuid, sizeof(*pUuid)); RC_CHECK();
225
226 DeviceType_T bootDevice;
227 if (SchemaDefs::MaxBootPosition > 9)
228 {
229 AssertMsgFailed (("Too many boot devices %d\n",
230 SchemaDefs::MaxBootPosition));
231 return VERR_INVALID_PARAMETER;
232 }
233
234 for (ULONG pos = 1; pos <= SchemaDefs::MaxBootPosition; pos ++)
235 {
236 hrc = pMachine->GetBootOrder(pos, &bootDevice); H();
237
238 char szParamName[] = "BootDeviceX";
239 szParamName[sizeof (szParamName) - 2] = ((char (pos - 1)) + '0');
240
241 const char *pszBootDevice;
242 switch (bootDevice)
243 {
244 case DeviceType_NoDevice:
245 pszBootDevice = "NONE";
246 break;
247 case DeviceType_HardDiskDevice:
248 pszBootDevice = "IDE";
249 break;
250 case DeviceType_DVDDevice:
251 pszBootDevice = "DVD";
252 break;
253 case DeviceType_FloppyDevice:
254 pszBootDevice = "FLOPPY";
255 break;
256 case DeviceType_NetworkDevice:
257 pszBootDevice = "LAN";
258 break;
259 default:
260 AssertMsgFailed(("Invalid bootDevice=%d\n", bootDevice));
261 return VERR_INVALID_PARAMETER;
262 }
263 rc = CFGMR3InsertString(pCfg, szParamName, pszBootDevice); RC_CHECK();
264 }
265
266 /*
267 * BIOS logo
268 */
269 BOOL fFadeIn;
270 hrc = biosSettings->COMGETTER(LogoFadeIn)(&fFadeIn); H();
271 rc = CFGMR3InsertInteger(pCfg, "FadeIn", fFadeIn ? 1 : 0); RC_CHECK();
272 BOOL fFadeOut;
273 hrc = biosSettings->COMGETTER(LogoFadeOut)(&fFadeOut); H();
274 rc = CFGMR3InsertInteger(pCfg, "FadeOut", fFadeOut ? 1: 0); RC_CHECK();
275 ULONG logoDisplayTime;
276 hrc = biosSettings->COMGETTER(LogoDisplayTime)(&logoDisplayTime); H();
277 rc = CFGMR3InsertInteger(pCfg, "LogoTime", logoDisplayTime); RC_CHECK();
278 Bstr logoImagePath;
279 hrc = biosSettings->COMGETTER(LogoImagePath)(logoImagePath.asOutParam()); H();
280 rc = CFGMR3InsertString(pCfg, "LogoFile", logoImagePath ? Utf8Str(logoImagePath) : ""); RC_CHECK();
281
282 /*
283 * Boot menu
284 */
285 BIOSBootMenuMode_T bootMenuMode;
286 int value;
287 biosSettings->COMGETTER(BootMenuMode)(&bootMenuMode);
288 switch (bootMenuMode)
289 {
290 case BIOSBootMenuMode_Disabled:
291 value = 0;
292 break;
293 case BIOSBootMenuMode_MenuOnly:
294 value = 1;
295 break;
296 default:
297 value = 2;
298 }
299 rc = CFGMR3InsertInteger(pCfg, "ShowBootMenu", value); RC_CHECK();
300
301 /*
302 * The time offset
303 */
304 LONG64 timeOffset;
305 hrc = biosSettings->COMGETTER(TimeOffset)(&timeOffset); H();
306 PCFGMNODE pTMNode;
307 rc = CFGMR3InsertNode(pRoot, "TM", &pTMNode); RC_CHECK();
308 rc = CFGMR3InsertInteger(pTMNode, "UTCOffset", timeOffset * 1000000); RC_CHECK();
309
310 /*
311 * ACPI
312 */
313 BOOL fACPI;
314 hrc = biosSettings->COMGETTER(ACPIEnabled)(&fACPI); H();
315 if (fACPI)
316 {
317 rc = CFGMR3InsertNode(pDevices, "acpi", &pDev); RC_CHECK();
318 rc = CFGMR3InsertNode(pDev, "0", &pInst); RC_CHECK();
319 rc = CFGMR3InsertInteger(pInst, "Trusted", 1); /* boolean */ RC_CHECK();
320 rc = CFGMR3InsertNode(pInst, "Config", &pCfg); RC_CHECK();
321 rc = CFGMR3InsertInteger(pCfg, "RamSize", cRamMBs * _1M); RC_CHECK();
322 rc = CFGMR3InsertInteger(pCfg, "IOAPIC", fIOAPIC); RC_CHECK();
323 rc = CFGMR3InsertInteger(pInst, "PCIDeviceNo", 7); RC_CHECK();
324 rc = CFGMR3InsertInteger(pInst, "PCIFunctionNo", 0); RC_CHECK();
325
326 rc = CFGMR3InsertNode(pInst, "LUN#0", &pLunL0); RC_CHECK();
327 rc = CFGMR3InsertString(pLunL0, "Driver", "ACPIHost"); RC_CHECK();
328 rc = CFGMR3InsertNode(pLunL0, "Config", &pCfg); RC_CHECK();
329 }
330
331 /*
332 * DMA
333 */
334 rc = CFGMR3InsertNode(pDevices, "8237A", &pDev); RC_CHECK();
335 rc = CFGMR3InsertNode(pDev, "0", &pInst); RC_CHECK();
336 rc = CFGMR3InsertInteger(pInst, "Trusted", 1); /* boolean */ RC_CHECK();
337
338 /*
339 * PCI bus.
340 */
341 rc = CFGMR3InsertNode(pDevices, "pci", &pDev); /* piix3 */ RC_CHECK();
342 rc = CFGMR3InsertNode(pDev, "0", &pInst); RC_CHECK();
343 rc = CFGMR3InsertInteger(pInst, "Trusted", 1); /* boolean */ RC_CHECK();
344 rc = CFGMR3InsertNode(pInst, "Config", &pCfg); RC_CHECK();
345 rc = CFGMR3InsertInteger(pCfg, "IOAPIC", fIOAPIC); RC_CHECK();
346
347 /*
348 * PS/2 keyboard & mouse.
349 */
350 rc = CFGMR3InsertNode(pDevices, "pckbd", &pDev); RC_CHECK();
351 rc = CFGMR3InsertNode(pDev, "0", &pInst); RC_CHECK();
352 rc = CFGMR3InsertInteger(pInst, "Trusted", 1); /* boolean */ RC_CHECK();
353 rc = CFGMR3InsertNode(pInst, "Config", &pCfg); RC_CHECK();
354
355 rc = CFGMR3InsertNode(pInst, "LUN#0", &pLunL0); RC_CHECK();
356 rc = CFGMR3InsertString(pLunL0, "Driver", "KeyboardQueue"); RC_CHECK();
357 rc = CFGMR3InsertNode(pLunL0, "Config", &pCfg); RC_CHECK();
358 rc = CFGMR3InsertInteger(pCfg, "QueueSize", 64); RC_CHECK();
359
360 rc = CFGMR3InsertNode(pLunL0, "AttachedDriver", &pLunL1); RC_CHECK();
361 rc = CFGMR3InsertString(pLunL1, "Driver", "MainKeyboard"); RC_CHECK();
362 rc = CFGMR3InsertNode(pLunL1, "Config", &pCfg); RC_CHECK();
363 Keyboard *pKeyboard = pConsole->mKeyboard;
364 rc = CFGMR3InsertInteger(pCfg, "Object", (uintptr_t)pKeyboard); RC_CHECK();
365
366 rc = CFGMR3InsertNode(pInst, "LUN#1", &pLunL0); RC_CHECK();
367 rc = CFGMR3InsertString(pLunL0, "Driver", "MouseQueue"); RC_CHECK();
368 rc = CFGMR3InsertNode(pLunL0, "Config", &pCfg); RC_CHECK();
369 rc = CFGMR3InsertInteger(pCfg, "QueueSize", 128); RC_CHECK();
370
371 rc = CFGMR3InsertNode(pLunL0, "AttachedDriver", &pLunL1); RC_CHECK();
372 rc = CFGMR3InsertString(pLunL1, "Driver", "MainMouse"); RC_CHECK();
373 rc = CFGMR3InsertNode(pLunL1, "Config", &pCfg); RC_CHECK();
374 Mouse *pMouse = pConsole->mMouse;
375 rc = CFGMR3InsertInteger(pCfg, "Object", (uintptr_t)pMouse); RC_CHECK();
376
377 /*
378 * i82078 Floppy drive controller
379 */
380 ComPtr<IFloppyDrive> floppyDrive;
381 hrc = pMachine->COMGETTER(FloppyDrive)(floppyDrive.asOutParam()); H();
382 BOOL fFloppyEnabled;
383 hrc = floppyDrive->COMGETTER(Enabled)(&fFloppyEnabled); H();
384 if (fFloppyEnabled)
385 {
386 rc = CFGMR3InsertNode(pDevices, "i82078", &pDev); RC_CHECK();
387 rc = CFGMR3InsertNode(pDev, "0", &pInst); RC_CHECK();
388 rc = CFGMR3InsertInteger(pInst, "Trusted", 1); RC_CHECK();
389 rc = CFGMR3InsertNode(pInst, "Config", &pCfg); RC_CHECK();
390 rc = CFGMR3InsertInteger(pCfg, "IRQ", 6); RC_CHECK();
391 rc = CFGMR3InsertInteger(pCfg, "DMA", 2); RC_CHECK();
392 rc = CFGMR3InsertInteger(pCfg, "MemMapped", 0 ); RC_CHECK();
393 rc = CFGMR3InsertInteger(pCfg, "IOBase", 0x3f0); RC_CHECK();
394
395 /* Attach the status driver */
396 rc = CFGMR3InsertNode(pInst, "LUN#999", &pLunL0); RC_CHECK();
397 rc = CFGMR3InsertString(pLunL0, "Driver", "MainStatus"); RC_CHECK();
398 rc = CFGMR3InsertNode(pLunL0, "Config", &pCfg); RC_CHECK();
399 rc = CFGMR3InsertInteger(pCfg, "papLeds", (uintptr_t)&pConsole->mapFDLeds[0]); RC_CHECK();
400 rc = CFGMR3InsertInteger(pCfg, "First", 0); RC_CHECK();
401 rc = CFGMR3InsertInteger(pCfg, "Last", 0); RC_CHECK();
402
403 rc = CFGMR3InsertNode(pInst, "LUN#0", &pLunL0); RC_CHECK();
404
405 ComPtr<IFloppyImage> floppyImage;
406 hrc = floppyDrive->GetImage(floppyImage.asOutParam()); H();
407 if (floppyImage)
408 {
409 pConsole->meFloppyState = DriveState_ImageMounted;
410 rc = CFGMR3InsertString(pLunL0, "Driver", "Block"); RC_CHECK();
411 rc = CFGMR3InsertNode(pLunL0, "Config", &pCfg); RC_CHECK();
412 rc = CFGMR3InsertString(pCfg, "Type", "Floppy 1.44"); RC_CHECK();
413 rc = CFGMR3InsertInteger(pCfg, "Mountable", 1); RC_CHECK();
414
415 rc = CFGMR3InsertNode(pLunL0, "AttachedDriver", &pLunL1); RC_CHECK();
416 rc = CFGMR3InsertString(pLunL1, "Driver", "RawImage"); RC_CHECK();
417 rc = CFGMR3InsertNode(pLunL1, "Config", &pCfg); RC_CHECK();
418 hrc = floppyImage->COMGETTER(FilePath)(&str); H();
419 STR_CONV();
420 rc = CFGMR3InsertString(pCfg, "Path", psz); RC_CHECK();
421 STR_FREE();
422 }
423 else
424 {
425 ComPtr<IHostFloppyDrive> hostFloppyDrive;
426 hrc = floppyDrive->GetHostDrive(hostFloppyDrive.asOutParam()); H();
427 if (hostFloppyDrive)
428 {
429 pConsole->meFloppyState = DriveState_HostDriveCaptured;
430 rc = CFGMR3InsertString(pLunL0, "Driver", "HostFloppy"); RC_CHECK();
431 rc = CFGMR3InsertNode(pLunL0, "Config", &pCfg); RC_CHECK();
432 hrc = hostFloppyDrive->COMGETTER(Name)(&str); H();
433 STR_CONV();
434 rc = CFGMR3InsertString(pCfg, "Path", psz); RC_CHECK();
435 STR_FREE();
436 }
437 else
438 {
439 pConsole->meFloppyState = DriveState_NotMounted;
440 rc = CFGMR3InsertString(pLunL0, "Driver", "Block"); RC_CHECK();
441 rc = CFGMR3InsertNode(pLunL0, "Config", &pCfg); RC_CHECK();
442 rc = CFGMR3InsertString(pCfg, "Type", "Floppy 1.44"); RC_CHECK();
443 rc = CFGMR3InsertInteger(pCfg, "Mountable", 1); RC_CHECK();
444 }
445 }
446 }
447
448 /*
449 * i8254 Programmable Interval Timer And Dummy Speaker
450 */
451 rc = CFGMR3InsertNode(pDevices, "i8254", &pDev); RC_CHECK();
452 rc = CFGMR3InsertNode(pDev, "0", &pInst); RC_CHECK();
453 rc = CFGMR3InsertNode(pInst, "Config", &pCfg); RC_CHECK();
454#ifdef DEBUG
455 rc = CFGMR3InsertInteger(pInst, "Trusted", 1); /* boolean */ RC_CHECK();
456#endif
457
458 /*
459 * i8259 Programmable Interrupt Controller.
460 */
461 rc = CFGMR3InsertNode(pDevices, "i8259", &pDev); RC_CHECK();
462 rc = CFGMR3InsertNode(pDev, "0", &pInst); RC_CHECK();
463 rc = CFGMR3InsertInteger(pInst, "Trusted", 1); /* boolean */ RC_CHECK();
464 rc = CFGMR3InsertNode(pInst, "Config", &pCfg); RC_CHECK();
465
466 /*
467 * Advanced Programmable Interrupt Controller.
468 */
469 rc = CFGMR3InsertNode(pDevices, "apic", &pDev); RC_CHECK();
470 rc = CFGMR3InsertNode(pDev, "0", &pInst); RC_CHECK();
471 rc = CFGMR3InsertInteger(pInst, "Trusted", 1); /* boolean */ RC_CHECK();
472 rc = CFGMR3InsertNode(pInst, "Config", &pCfg); RC_CHECK();
473 rc = CFGMR3InsertInteger(pCfg, "IOAPIC", fIOAPIC); RC_CHECK();
474
475 if (fIOAPIC)
476 {
477 /*
478 * I/O Advanced Programmable Interrupt Controller.
479 */
480 rc = CFGMR3InsertNode(pDevices, "ioapic", &pDev); RC_CHECK();
481 rc = CFGMR3InsertNode(pDev, "0", &pInst); RC_CHECK();
482 rc = CFGMR3InsertInteger(pInst, "Trusted", 1); /* boolean */ RC_CHECK();
483 rc = CFGMR3InsertNode(pInst, "Config", &pCfg); RC_CHECK();
484 }
485
486 /*
487 * RTC MC146818.
488 */
489 rc = CFGMR3InsertNode(pDevices, "mc146818", &pDev); RC_CHECK();
490 rc = CFGMR3InsertNode(pDev, "0", &pInst); RC_CHECK();
491 rc = CFGMR3InsertNode(pInst, "Config", &pCfg); RC_CHECK();
492
493 /*
494 * VGA.
495 */
496 rc = CFGMR3InsertNode(pDevices, "vga", &pDev); RC_CHECK();
497 rc = CFGMR3InsertNode(pDev, "0", &pInst); RC_CHECK();
498 rc = CFGMR3InsertInteger(pInst, "Trusted", 1); /* boolean */ RC_CHECK();
499 rc = CFGMR3InsertInteger(pInst, "PCIDeviceNo", 2); RC_CHECK();
500 rc = CFGMR3InsertInteger(pInst, "PCIFunctionNo", 0); RC_CHECK();
501 rc = CFGMR3InsertNode(pInst, "Config", &pCfg); RC_CHECK();
502 hrc = pMachine->COMGETTER(VRAMSize)(&cRamMBs); H();
503 rc = CFGMR3InsertInteger(pCfg, "VRamSize", cRamMBs * _1M); RC_CHECK();
504
505 /* Custom VESA mode list */
506 unsigned cModes = 0;
507 for (unsigned iMode = 1; iMode <= 16; iMode++)
508 {
509 char szExtraDataKey[sizeof("CustomVideoModeXX")];
510 RTStrPrintf(szExtraDataKey, sizeof(szExtraDataKey), "CustomVideoMode%d", iMode);
511 hrc = pMachine->GetExtraData(Bstr(szExtraDataKey), &str); H();
512 if (!str || !*str)
513 break;
514 STR_CONV();
515 rc = CFGMR3InsertString(pCfg, szExtraDataKey, psz);
516 STR_FREE();
517 cModes++;
518 }
519 rc = CFGMR3InsertInteger(pCfg, "CustomVideoModes", cModes);
520
521 /* VESA height reduction */
522 ULONG ulHeightReduction;
523 IFramebuffer *pFramebuffer = pConsole->getDisplay()->getFramebuffer();
524 if (pFramebuffer)
525 {
526 hrc = pFramebuffer->COMGETTER(HeightReduction)(&ulHeightReduction); H();
527 }
528 else
529 {
530 /* If framebuffer is not available, there is no height reduction. */
531 ulHeightReduction = 0;
532 }
533 rc = CFGMR3InsertInteger(pCfg, "HeightReduction", ulHeightReduction); RC_CHECK();
534
535 /* Attach the display. */
536 rc = CFGMR3InsertNode(pInst, "LUN#0", &pLunL0); RC_CHECK();
537 rc = CFGMR3InsertString(pLunL0, "Driver", "MainDisplay"); RC_CHECK();
538 rc = CFGMR3InsertNode(pLunL0, "Config", &pCfg); RC_CHECK();
539 Display *pDisplay = pConsole->mDisplay;
540 rc = CFGMR3InsertInteger(pCfg, "Object", (uintptr_t)pDisplay); RC_CHECK();
541
542 /*
543 * IDE (update this when the main interface changes)
544 */
545 rc = CFGMR3InsertNode(pDevices, "piix3ide", &pDev); /* piix3 */ RC_CHECK();
546 rc = CFGMR3InsertNode(pDev, "0", &pInst); RC_CHECK();
547 rc = CFGMR3InsertInteger(pInst, "Trusted", 1); /* boolean */ RC_CHECK();
548 rc = CFGMR3InsertInteger(pInst, "PCIDeviceNo", 1); RC_CHECK();
549 rc = CFGMR3InsertInteger(pInst, "PCIFunctionNo", 1); RC_CHECK();
550 rc = CFGMR3InsertNode(pInst, "Config", &pCfg); RC_CHECK();
551
552 /* Attach the status driver */
553 rc = CFGMR3InsertNode(pInst, "LUN#999", &pLunL0); RC_CHECK();
554 rc = CFGMR3InsertString(pLunL0, "Driver", "MainStatus"); RC_CHECK();
555 rc = CFGMR3InsertNode(pLunL0, "Config", &pCfg); RC_CHECK();
556 rc = CFGMR3InsertInteger(pCfg, "papLeds", (uintptr_t)&pConsole->mapIDELeds[0]);RC_CHECK();
557 rc = CFGMR3InsertInteger(pCfg, "First", 0); RC_CHECK();
558 rc = CFGMR3InsertInteger(pCfg, "Last", 3); RC_CHECK();
559
560 /* Attach the harddisks */
561 ComPtr<IHardDiskAttachmentCollection> hdaColl;
562 hrc = pMachine->COMGETTER(HardDiskAttachments)(hdaColl.asOutParam()); H();
563 ComPtr<IHardDiskAttachmentEnumerator> hdaEnum;
564 hrc = hdaColl->Enumerate(hdaEnum.asOutParam()); H();
565
566 BOOL fMore = FALSE;
567 while ( SUCCEEDED(hrc = hdaEnum->HasMore(&fMore))
568 && fMore)
569 {
570 ComPtr<IHardDiskAttachment> hda;
571 hrc = hdaEnum->GetNext(hda.asOutParam()); H();
572 ComPtr<IHardDisk> hardDisk;
573 hrc = hda->COMGETTER(HardDisk)(hardDisk.asOutParam()); H();
574 DiskControllerType_T enmCtl;
575 hrc = hda->COMGETTER(Controller)(&enmCtl); H();
576 LONG lDev;
577 hrc = hda->COMGETTER(DeviceNumber)(&lDev); H();
578
579 switch (enmCtl)
580 {
581 case DiskControllerType_IDE0Controller:
582 i = 0;
583 break;
584 case DiskControllerType_IDE1Controller:
585 i = 2;
586 break;
587 default:
588 AssertMsgFailed(("invalid disk controller type: %d\n", enmCtl));
589 return VERR_GENERAL_FAILURE;
590 }
591
592 if (lDev < 0 || lDev >= 2)
593 {
594 AssertMsgFailed(("invalid controller device number: %d\n", lDev));
595 return VERR_GENERAL_FAILURE;
596 }
597
598 i = i + lDev;
599
600 char szLUN[16];
601 RTStrPrintf(szLUN, sizeof(szLUN), "LUN#%d", i);
602 rc = CFGMR3InsertNode(pInst, szLUN, &pLunL0); RC_CHECK();
603 rc = CFGMR3InsertString(pLunL0, "Driver", "Block"); RC_CHECK();
604 rc = CFGMR3InsertNode(pLunL0, "Config", &pCfg); RC_CHECK();
605 rc = CFGMR3InsertString(pCfg, "Type", "HardDisk"); RC_CHECK();
606 rc = CFGMR3InsertInteger(pCfg, "Mountable", 0); RC_CHECK();
607
608 HardDiskStorageType_T hddType;
609 hardDisk->COMGETTER(StorageType)(&hddType);
610 if (hddType == HardDiskStorageType_VirtualDiskImage)
611 {
612 ComPtr<IVirtualDiskImage> vdiDisk = hardDisk;
613 AssertBreak (!vdiDisk.isNull(), hrc = E_FAIL);
614
615 rc = CFGMR3InsertNode(pLunL0, "AttachedDriver", &pLunL1); RC_CHECK();
616 rc = CFGMR3InsertString(pLunL1, "Driver", "VBoxHDD"); RC_CHECK();
617 rc = CFGMR3InsertNode(pLunL1, "Config", &pCfg); RC_CHECK();
618 hrc = vdiDisk->COMGETTER(FilePath)(&str); H();
619 STR_CONV();
620 rc = CFGMR3InsertString(pCfg, "Path", psz); RC_CHECK();
621 STR_FREE();
622
623 /* Create an inversed tree of parents. */
624 ComPtr<IHardDisk> parentHardDisk = hardDisk;
625 for (PCFGMNODE pParent = pCfg;;)
626 {
627 ComPtr<IHardDisk> curHardDisk;
628 hrc = parentHardDisk->COMGETTER(Parent)(curHardDisk.asOutParam()); H();
629 if (!curHardDisk)
630 break;
631
632 vdiDisk = curHardDisk;
633 AssertBreak (!vdiDisk.isNull(), hrc = E_FAIL);
634
635 PCFGMNODE pCur;
636 rc = CFGMR3InsertNode(pParent, "Parent", &pCur); RC_CHECK();
637 hrc = vdiDisk->COMGETTER(FilePath)(&str); H();
638 STR_CONV();
639 rc = CFGMR3InsertString(pCur, "Path", psz); RC_CHECK();
640 STR_FREE();
641 rc = CFGMR3InsertInteger(pCur, "ReadOnly", 1); RC_CHECK();
642
643 /* next */
644 pParent = pCur;
645 parentHardDisk = curHardDisk;
646 }
647 }
648 else if (hddType == HardDiskStorageType_ISCSIHardDisk)
649 {
650 ComPtr<IISCSIHardDisk> iSCSIDisk = hardDisk;
651 AssertBreak (!iSCSIDisk.isNull(), hrc = E_FAIL);
652
653 rc = CFGMR3InsertNode(pLunL0, "AttachedDriver", &pLunL1); RC_CHECK();
654 rc = CFGMR3InsertString(pLunL1, "Driver", "iSCSI"); RC_CHECK();
655 rc = CFGMR3InsertNode(pLunL1, "Config", &pCfg); RC_CHECK();
656
657 /* Set up the iSCSI initiator driver configuration. */
658 hrc = iSCSIDisk->COMGETTER(Target)(&str); H();
659 STR_CONV();
660 rc = CFGMR3InsertString(pCfg, "TargetName", psz); RC_CHECK();
661 STR_FREE();
662
663 // @todo currently there is no Initiator name config.
664 rc = CFGMR3InsertString(pCfg, "InitiatorName", "iqn.2006-02.de.innotek.initiator"); RC_CHECK();
665
666 ULONG64 lun;
667 hrc = iSCSIDisk->COMGETTER(Lun)(&lun); H();
668 rc = CFGMR3InsertInteger(pCfg, "LUN", lun); RC_CHECK();
669
670 hrc = iSCSIDisk->COMGETTER(Server)(&str); H();
671 STR_CONV();
672 USHORT port;
673 hrc = iSCSIDisk->COMGETTER(Port)(&port); H();
674 if (port != 0)
675 {
676 char *pszTN;
677 RTStrAPrintf(&pszTN, "%s:%u", psz, port);
678 rc = CFGMR3InsertString(pCfg, "TargetAddress", pszTN); RC_CHECK();
679 RTStrFree(pszTN);
680 }
681 else
682 {
683 rc = CFGMR3InsertString(pCfg, "TargetAddress", psz); RC_CHECK();
684 }
685 STR_FREE();
686
687 hrc = iSCSIDisk->COMGETTER(UserName)(&str); H();
688 if (str)
689 {
690 STR_CONV();
691 rc = CFGMR3InsertString(pCfg, "InitiatorUsername", psz); RC_CHECK();
692 STR_FREE();
693 }
694
695 hrc = iSCSIDisk->COMGETTER(Password)(&str); H();
696 if (str)
697 {
698 STR_CONV();
699 rc = CFGMR3InsertString(pCfg, "InitiatorSecret", psz); RC_CHECK();
700 STR_FREE();
701 }
702
703 // @todo currently there is no target username config.
704 //rc = CFGMR3InsertString(pCfg, "TargetUsername", ""); RC_CHECK();
705
706 // @todo currently there is no target password config.
707 //rc = CFGMR3InsertString(pCfg, "TargetSecret", ""); RC_CHECK();
708
709 /* The iSCSI initiator needs an attached iSCSI transport driver. */
710 rc = CFGMR3InsertNode(pLunL1, "AttachedDriver", &pLunL2); RC_CHECK();
711 rc = CFGMR3InsertString(pLunL2, "Driver", "iSCSITCP"); RC_CHECK();
712 /* Currently the transport driver has no config options. */
713 }
714 else if (hddType == HardDiskStorageType_VMDKImage)
715 {
716 ComPtr<IVMDKImage> vmdkDisk = hardDisk;
717 AssertBreak (!vmdkDisk.isNull(), hrc = E_FAIL);
718
719 rc = CFGMR3InsertNode(pLunL0, "AttachedDriver", &pLunL1); RC_CHECK();
720#if 1 /* Enable new VD container code (and new VMDK), as the bugs are fixed. */
721 rc = CFGMR3InsertString(pLunL1, "Driver", "VD"); RC_CHECK();
722#else
723 rc = CFGMR3InsertString(pLunL1, "Driver", "VmdkHDD"); RC_CHECK();
724#endif
725 rc = CFGMR3InsertNode(pLunL1, "Config", &pCfg); RC_CHECK();
726 hrc = vmdkDisk->COMGETTER(FilePath)(&str); H();
727 STR_CONV();
728 rc = CFGMR3InsertString(pCfg, "Path", psz); RC_CHECK();
729 STR_FREE();
730 }
731 else
732 AssertFailed();
733 }
734 H();
735
736 ComPtr<IDVDDrive> dvdDrive;
737 hrc = pMachine->COMGETTER(DVDDrive)(dvdDrive.asOutParam()); H();
738 if (dvdDrive)
739 {
740 // ASSUME: DVD drive is always attached to LUN#2 (i.e. secondary IDE master)
741 rc = CFGMR3InsertNode(pInst, "LUN#2", &pLunL0); RC_CHECK();
742 ComPtr<IHostDVDDrive> hostDvdDrive;
743 hrc = dvdDrive->GetHostDrive(hostDvdDrive.asOutParam()); H();
744 if (hostDvdDrive)
745 {
746 pConsole->meDVDState = DriveState_HostDriveCaptured;
747 rc = CFGMR3InsertString(pLunL0, "Driver", "HostDVD"); RC_CHECK();
748 rc = CFGMR3InsertNode(pLunL0, "Config", &pCfg); RC_CHECK();
749 hrc = hostDvdDrive->COMGETTER(Name)(&str); H();
750 STR_CONV();
751 rc = CFGMR3InsertString(pCfg, "Path", psz); RC_CHECK();
752 STR_FREE();
753 BOOL fPassthrough;
754 hrc = dvdDrive->COMGETTER(Passthrough)(&fPassthrough); H();
755 rc = CFGMR3InsertInteger(pCfg, "Passthrough", !!fPassthrough); RC_CHECK();
756 }
757 else
758 {
759 pConsole->meDVDState = DriveState_NotMounted;
760 rc = CFGMR3InsertString(pLunL0, "Driver", "Block"); RC_CHECK();
761 rc = CFGMR3InsertNode(pLunL0, "Config", &pCfg); RC_CHECK();
762 rc = CFGMR3InsertString(pCfg, "Type", "DVD"); RC_CHECK();
763 rc = CFGMR3InsertInteger(pCfg, "Mountable", 1); RC_CHECK();
764
765 ComPtr<IDVDImage> dvdImage;
766 hrc = dvdDrive->GetImage(dvdImage.asOutParam()); H();
767 if (dvdImage)
768 {
769 pConsole->meDVDState = DriveState_ImageMounted;
770 rc = CFGMR3InsertNode(pLunL0, "AttachedDriver", &pLunL1); RC_CHECK();
771 rc = CFGMR3InsertString(pLunL1, "Driver", "MediaISO"); RC_CHECK();
772 rc = CFGMR3InsertNode(pLunL1, "Config", &pCfg); RC_CHECK();
773 hrc = dvdImage->COMGETTER(FilePath)(&str); H();
774 STR_CONV();
775 rc = CFGMR3InsertString(pCfg, "Path", psz); RC_CHECK();
776 STR_FREE();
777 }
778 }
779 }
780
781 /*
782 * Network adapters
783 */
784 rc = CFGMR3InsertNode(pDevices, "pcnet", &pDev); RC_CHECK();
785 //rc = CFGMR3InsertNode(pDevices, "ne2000", &pDev); RC_CHECK();
786 for (ULONG ulInstance = 0; ulInstance < SchemaDefs::NetworkAdapterCount; ulInstance++)
787 {
788 ComPtr<INetworkAdapter> networkAdapter;
789 hrc = pMachine->GetNetworkAdapter(ulInstance, networkAdapter.asOutParam()); H();
790 BOOL fEnabled = FALSE;
791 hrc = networkAdapter->COMGETTER(Enabled)(&fEnabled); H();
792 if (!fEnabled)
793 continue;
794
795 char szInstance[4]; Assert(ulInstance <= 999);
796 RTStrPrintf(szInstance, sizeof(szInstance), "%lu", ulInstance);
797 rc = CFGMR3InsertNode(pDev, szInstance, &pInst); RC_CHECK();
798 rc = CFGMR3InsertInteger(pInst, "Trusted", 1); /* boolean */ RC_CHECK();
799 /* the first network card gets the PCI ID 3, the followings starting from 8 */
800 rc = CFGMR3InsertInteger(pInst, "PCIDeviceNo", !ulInstance ? 3 : ulInstance - 1 + 8); RC_CHECK();
801 rc = CFGMR3InsertInteger(pInst, "PCIFunctionNo", 0); RC_CHECK();
802 rc = CFGMR3InsertNode(pInst, "Config", &pCfg); RC_CHECK();
803
804 /*
805 * The virtual hardware type.
806 */
807 NetworkAdapterType_T adapterType;
808 hrc = networkAdapter->COMGETTER(AdapterType)(&adapterType); H();
809 switch (adapterType)
810 {
811 case NetworkAdapterType_NetworkAdapterAm79C970A:
812 rc = CFGMR3InsertInteger(pCfg, "Am79C973", 0); RC_CHECK();
813 break;
814 case NetworkAdapterType_NetworkAdapterAm79C973:
815 rc = CFGMR3InsertInteger(pCfg, "Am79C973", 1); RC_CHECK();
816 break;
817 default:
818 AssertMsgFailed(("Invalid network adapter type '%d' for slot '%d'",
819 adapterType, ulInstance));
820 return VERR_GENERAL_FAILURE;
821 }
822
823 /*
824 * Get the MAC address and convert it to binary representation
825 */
826 Bstr macAddr;
827 hrc = networkAdapter->COMGETTER(MACAddress)(macAddr.asOutParam()); H();
828 Assert(macAddr);
829 Utf8Str macAddrUtf8 = macAddr;
830 char *macStr = (char*)macAddrUtf8.raw();
831 Assert(strlen(macStr) == 12);
832 PDMMAC Mac;
833 memset(&Mac, 0, sizeof(Mac));
834 char *pMac = (char*)&Mac;
835 for (uint32_t i = 0; i < 6; i++)
836 {
837 char c1 = *macStr++ - '0';
838 if (c1 > 9)
839 c1 -= 7;
840 char c2 = *macStr++ - '0';
841 if (c2 > 9)
842 c2 -= 7;
843 *pMac++ = ((c1 & 0x0f) << 4) | (c2 & 0x0f);
844 }
845 rc = CFGMR3InsertBytes(pCfg, "MAC", &Mac, sizeof(Mac)); RC_CHECK();
846
847 /*
848 * Check if the cable is supposed to be unplugged
849 */
850 BOOL fCableConnected;
851 hrc = networkAdapter->COMGETTER(CableConnected)(&fCableConnected); H();
852 rc = CFGMR3InsertInteger(pCfg, "CableConnected", fCableConnected ? 1 : 0); RC_CHECK();
853
854 /*
855 * Attach the status driver.
856 */
857 rc = CFGMR3InsertNode(pInst, "LUN#999", &pLunL0); RC_CHECK();
858 rc = CFGMR3InsertString(pLunL0, "Driver", "MainStatus"); RC_CHECK();
859 rc = CFGMR3InsertNode(pLunL0, "Config", &pCfg); RC_CHECK();
860 rc = CFGMR3InsertInteger(pCfg, "papLeds", (uintptr_t)&pConsole->mapNetworkLeds[ulInstance]); RC_CHECK();
861
862 /*
863 * Enable the packet sniffer if requested.
864 */
865 BOOL fSniffer;
866 hrc = networkAdapter->COMGETTER(TraceEnabled)(&fSniffer); H();
867 if (fSniffer)
868 {
869 /* insert the sniffer filter driver. */
870 rc = CFGMR3InsertNode(pInst, "LUN#0", &pLunL0); RC_CHECK();
871 rc = CFGMR3InsertString(pLunL0, "Driver", "NetSniffer"); RC_CHECK();
872 rc = CFGMR3InsertNode(pLunL0, "Config", &pCfg); RC_CHECK();
873 hrc = networkAdapter->COMGETTER(TraceFile)(&str); H();
874 if (str) /* check convention for indicating default file. */
875 {
876 STR_CONV();
877 rc = CFGMR3InsertString(pCfg, "File", psz); RC_CHECK();
878 STR_FREE();
879 }
880 }
881
882 NetworkAttachmentType_T networkAttachment;
883 hrc = networkAdapter->COMGETTER(AttachmentType)(&networkAttachment); H();
884 switch (networkAttachment)
885 {
886 case NetworkAttachmentType_NoNetworkAttachment:
887 break;
888
889 case NetworkAttachmentType_NATNetworkAttachment:
890 {
891 if (fSniffer)
892 {
893 rc = CFGMR3InsertNode(pLunL0, "AttachedDriver", &pLunL0); RC_CHECK();
894 }
895 else
896 {
897 rc = CFGMR3InsertNode(pInst, "LUN#0", &pLunL0); RC_CHECK();
898 }
899 rc = CFGMR3InsertString(pLunL0, "Driver", "NAT"); RC_CHECK();
900 rc = CFGMR3InsertNode(pLunL0, "Config", &pCfg); RC_CHECK();
901 /* (Port forwarding goes here.) */
902 break;
903 }
904
905 case NetworkAttachmentType_HostInterfaceNetworkAttachment:
906 {
907 /*
908 * Perform the attachment if required (don't return on error!)
909 */
910 hrc = pConsole->attachToHostInterface(networkAdapter);
911 if (SUCCEEDED(hrc))
912 {
913#ifdef VBOX_WITH_UNIXY_TAP_NETWORKING
914 Assert (pConsole->maTapFD[ulInstance] >= 0);
915 if (pConsole->maTapFD[ulInstance] >= 0)
916 {
917 if (fSniffer)
918 {
919 rc = CFGMR3InsertNode(pLunL0, "AttachedDriver", &pLunL0); RC_CHECK();
920 }
921 else
922 {
923 rc = CFGMR3InsertNode(pInst, "LUN#0", &pLunL0); RC_CHECK();
924 }
925 rc = CFGMR3InsertString(pLunL0, "Driver", "HostInterface"); RC_CHECK();
926 rc = CFGMR3InsertNode(pLunL0, "Config", &pCfg); RC_CHECK();
927 rc = CFGMR3InsertInteger(pCfg, "FileHandle", pConsole->maTapFD[ulInstance]); RC_CHECK();
928 }
929#elif defined(RT_OS_WINDOWS)
930 if (fSniffer)
931 {
932 rc = CFGMR3InsertNode(pLunL0, "AttachedDriver", &pLunL0); RC_CHECK();
933 }
934 else
935 {
936 rc = CFGMR3InsertNode(pInst, "LUN#0", &pLunL0); RC_CHECK();
937 }
938 Bstr hostInterfaceName;
939 hrc = networkAdapter->COMGETTER(HostInterface)(hostInterfaceName.asOutParam()); H();
940 ComPtr<IHostNetworkInterfaceCollection> coll;
941 hrc = host->COMGETTER(NetworkInterfaces)(coll.asOutParam()); H();
942 ComPtr<IHostNetworkInterface> hostInterface;
943 rc = coll->FindByName(hostInterfaceName, hostInterface.asOutParam());
944 if (!SUCCEEDED(rc))
945 {
946 AssertMsgFailed(("Cannot get GUID for host interface '%ls'\n", hostInterfaceName));
947 hrc = networkAdapter->Detach(); H();
948 }
949 else
950 {
951 rc = CFGMR3InsertString(pLunL0, "Driver", "HostInterface"); RC_CHECK();
952 rc = CFGMR3InsertNode(pLunL0, "Config", &pCfg); RC_CHECK();
953 rc = CFGMR3InsertString(pCfg, "HostInterfaceName", Utf8Str(hostInterfaceName)); RC_CHECK();
954 Guid hostIFGuid;
955 hrc = hostInterface->COMGETTER(Id)(hostIFGuid.asOutParam()); H();
956 char szDriverGUID[256] = {0};
957 /* add curly brackets */
958 szDriverGUID[0] = '{';
959 strcpy(szDriverGUID + 1, hostIFGuid.toString().raw());
960 strcat(szDriverGUID, "}");
961 rc = CFGMR3InsertBytes(pCfg, "GUID", szDriverGUID, sizeof(szDriverGUID)); RC_CHECK();
962 }
963#else
964# error "Port me"
965#endif
966 }
967 else
968 {
969 switch (hrc)
970 {
971#ifdef RT_OS_LINUX
972 case VERR_ACCESS_DENIED:
973 return VMSetError(pVM, VERR_HOSTIF_INIT_FAILED, RT_SRC_POS, N_(
974 "Failed to open '/dev/net/tun' for read/write access. Please check the "
975 "permissions of that node. Either do 'chmod 0666 /dev/net/tun' or "
976 "change the group of that node and get member of that group. Make "
977 "sure that these changes are permanently in particular if you are "
978 "using udev"));
979#endif /* RT_OS_LINUX */
980 default:
981 AssertMsgFailed(("Could not attach to host interface! Bad!\n"));
982 return VMSetError(pVM, VERR_HOSTIF_INIT_FAILED, RT_SRC_POS, N_(
983 "Failed to initialize Host Interface Networking"));
984 }
985 }
986 break;
987 }
988
989 case NetworkAttachmentType_InternalNetworkAttachment:
990 {
991 hrc = networkAdapter->COMGETTER(InternalNetwork)(&str); H();
992 STR_CONV();
993 if (psz && *psz)
994 {
995 if (fSniffer)
996 {
997 rc = CFGMR3InsertNode(pLunL0, "AttachedDriver", &pLunL0); RC_CHECK();
998 }
999 else
1000 {
1001 rc = CFGMR3InsertNode(pInst, "LUN#0", &pLunL0); RC_CHECK();
1002 }
1003 rc = CFGMR3InsertString(pLunL0, "Driver", "IntNet"); RC_CHECK();
1004 rc = CFGMR3InsertNode(pLunL0, "Config", &pCfg); RC_CHECK();
1005 rc = CFGMR3InsertString(pCfg, "Network", psz); RC_CHECK();
1006 }
1007 STR_FREE();
1008 break;
1009 }
1010
1011 default:
1012 AssertMsgFailed(("should not get here!\n"));
1013 break;
1014 }
1015 }
1016
1017 /*
1018 * Serial (UART) Ports
1019 */
1020 rc = CFGMR3InsertNode(pDevices, "serial", &pDev); RC_CHECK();
1021 for (ULONG ulInstance = 0; ulInstance < SchemaDefs::SerialPortCount; ulInstance++)
1022 {
1023 ComPtr<ISerialPort> serialPort;
1024 hrc = pMachine->GetSerialPort (ulInstance, serialPort.asOutParam()); H();
1025 BOOL fEnabled = FALSE;
1026 if (serialPort)
1027 hrc = serialPort->COMGETTER(Enabled)(&fEnabled); H();
1028 if (!fEnabled)
1029 continue;
1030
1031 char szInstance[4]; Assert(ulInstance <= 999);
1032 RTStrPrintf(szInstance, sizeof(szInstance), "%lu", ulInstance);
1033
1034 rc = CFGMR3InsertNode(pDev, szInstance, &pInst); RC_CHECK();
1035 rc = CFGMR3InsertNode(pInst, "Config", &pCfg); RC_CHECK();
1036
1037 ULONG ulIRQ, ulIOBase;
1038 PortMode_T HostMode;
1039 Bstr path;
1040 BOOL fServer;
1041 hrc = serialPort->COMGETTER(HostMode)(&HostMode); H();
1042 hrc = serialPort->COMGETTER(IRQ)(&ulIRQ); H();
1043 hrc = serialPort->COMGETTER(IOBase)(&ulIOBase); H();
1044 hrc = serialPort->COMGETTER(Path)(path.asOutParam()); H();
1045 hrc = serialPort->COMGETTER(Server)(&fServer); H();
1046 rc = CFGMR3InsertInteger(pCfg, "IRQ", ulIRQ); RC_CHECK();
1047 rc = CFGMR3InsertInteger(pCfg, "IOBase", ulIOBase); RC_CHECK();
1048 if (HostMode != PortMode_DisconnectedPort)
1049 {
1050 rc = CFGMR3InsertNode(pInst, "LUN#0", &pLunL0); RC_CHECK();
1051 if (HostMode == PortMode_HostPipePort)
1052 {
1053 rc = CFGMR3InsertString(pLunL0, "Driver", "Char"); RC_CHECK();
1054 rc = CFGMR3InsertNode(pLunL0, "AttachedDriver", &pLunL1); RC_CHECK();
1055 rc = CFGMR3InsertString(pLunL1, "Driver", "NamedPipe"); RC_CHECK();
1056 rc = CFGMR3InsertNode(pLunL1, "Config", &pLunL2); RC_CHECK();
1057 rc = CFGMR3InsertString(pLunL2, "Location", Utf8Str(path)); RC_CHECK();
1058 rc = CFGMR3InsertInteger(pLunL2, "IsServer", fServer); RC_CHECK();
1059 }
1060 else if (HostMode == PortMode_HostDevicePort)
1061 {
1062 rc = CFGMR3InsertString(pLunL0, "Driver", "Host Serial"); RC_CHECK();
1063 rc = CFGMR3InsertNode(pLunL0, "Config", &pLunL1); RC_CHECK();
1064 rc = CFGMR3InsertString(pLunL1, "DevicePath", Utf8Str(path)); RC_CHECK();
1065 }
1066 }
1067 }
1068
1069 /*
1070 * Parallel (LPT) Ports
1071 */
1072 rc = CFGMR3InsertNode(pDevices, "parallel", &pDev); RC_CHECK();
1073 for (ULONG ulInstance = 0; ulInstance < SchemaDefs::ParallelPortCount; ulInstance++)
1074 {
1075 ComPtr<IParallelPort> parallelPort;
1076 hrc = pMachine->GetParallelPort (ulInstance, parallelPort.asOutParam()); H();
1077 BOOL fEnabled = FALSE;
1078 if (parallelPort)
1079 hrc = parallelPort->COMGETTER(Enabled)(&fEnabled); H();
1080 if (!fEnabled)
1081 continue;
1082
1083 char szInstance[4]; Assert(ulInstance <= 999);
1084 RTStrPrintf(szInstance, sizeof(szInstance), "%lu", ulInstance);
1085
1086 rc = CFGMR3InsertNode(pDev, szInstance, &pInst); RC_CHECK();
1087 rc = CFGMR3InsertNode(pInst, "Config", &pCfg); RC_CHECK();
1088
1089 ULONG ulIRQ, ulIOBase;
1090 Bstr DevicePath;
1091 hrc = parallelPort->COMGETTER(IRQ)(&ulIRQ); H();
1092 hrc = parallelPort->COMGETTER(IOBase)(&ulIOBase); H();
1093 hrc = parallelPort->COMGETTER(Path)(DevicePath.asOutParam()); H();
1094 rc = CFGMR3InsertInteger(pCfg, "IRQ", ulIRQ); RC_CHECK();
1095 rc = CFGMR3InsertInteger(pCfg, "IOBase", ulIOBase); RC_CHECK();
1096 rc = CFGMR3InsertNode(pInst, "LUN#0", &pLunL0); RC_CHECK();
1097 rc = CFGMR3InsertString(pLunL0, "Driver", "HostParallel"); RC_CHECK();
1098 rc = CFGMR3InsertNode(pLunL0, "AttachedDriver", &pLunL1); RC_CHECK();
1099 rc = CFGMR3InsertString(pLunL1, "DevicePath", Utf8Str(DevicePath)); RC_CHECK();
1100 }
1101
1102 /*
1103 * VMM Device
1104 */
1105 rc = CFGMR3InsertNode(pDevices, "VMMDev", &pDev); RC_CHECK();
1106 rc = CFGMR3InsertNode(pDev, "0", &pInst); RC_CHECK();
1107 rc = CFGMR3InsertNode(pInst, "Config", &pCfg); RC_CHECK();
1108 rc = CFGMR3InsertInteger(pInst, "Trusted", 1); /* boolean */ RC_CHECK();
1109 rc = CFGMR3InsertInteger(pInst, "PCIDeviceNo", 4); RC_CHECK();
1110 rc = CFGMR3InsertInteger(pInst, "PCIFunctionNo", 0); RC_CHECK();
1111
1112 /* the VMM device's Main driver */
1113 rc = CFGMR3InsertNode(pInst, "LUN#0", &pLunL0); RC_CHECK();
1114 rc = CFGMR3InsertString(pLunL0, "Driver", "MainVMMDev"); RC_CHECK();
1115 rc = CFGMR3InsertNode(pLunL0, "Config", &pCfg); RC_CHECK();
1116 VMMDev *pVMMDev = pConsole->mVMMDev;
1117 rc = CFGMR3InsertInteger(pCfg, "Object", (uintptr_t)pVMMDev); RC_CHECK();
1118
1119 /*
1120 * Attach the status driver.
1121 */
1122 rc = CFGMR3InsertNode(pInst, "LUN#999", &pLunL0); RC_CHECK();
1123 rc = CFGMR3InsertString(pLunL0, "Driver", "MainStatus"); RC_CHECK();
1124 rc = CFGMR3InsertNode(pLunL0, "Config", &pCfg); RC_CHECK();
1125 rc = CFGMR3InsertInteger(pCfg, "papLeds", (uintptr_t)&pConsole->mapSharedFolderLed); RC_CHECK();
1126 rc = CFGMR3InsertInteger(pCfg, "First", 0); RC_CHECK();
1127 rc = CFGMR3InsertInteger(pCfg, "Last", 0); RC_CHECK();
1128
1129 /*
1130 * Audio Sniffer Device
1131 */
1132 rc = CFGMR3InsertNode(pDevices, "AudioSniffer", &pDev); RC_CHECK();
1133 rc = CFGMR3InsertNode(pDev, "0", &pInst); RC_CHECK();
1134 rc = CFGMR3InsertNode(pInst, "Config", &pCfg); RC_CHECK();
1135
1136 /* the Audio Sniffer device's Main driver */
1137 rc = CFGMR3InsertNode(pInst, "LUN#0", &pLunL0); RC_CHECK();
1138 rc = CFGMR3InsertString(pLunL0, "Driver", "MainAudioSniffer"); RC_CHECK();
1139 rc = CFGMR3InsertNode(pLunL0, "Config", &pCfg); RC_CHECK();
1140 AudioSniffer *pAudioSniffer = pConsole->mAudioSniffer;
1141 rc = CFGMR3InsertInteger(pCfg, "Object", (uintptr_t)pAudioSniffer); RC_CHECK();
1142
1143 /*
1144 * AC'97 ICH audio
1145 */
1146 ComPtr<IAudioAdapter> audioAdapter;
1147 hrc = pMachine->COMGETTER(AudioAdapter)(audioAdapter.asOutParam()); H();
1148 BOOL enabled = FALSE;
1149 if (audioAdapter)
1150 {
1151 hrc = audioAdapter->COMGETTER(Enabled)(&enabled); H();
1152 }
1153 if (enabled)
1154 {
1155 rc = CFGMR3InsertNode(pDevices, "ichac97", &pDev); /* ichac97 */
1156 rc = CFGMR3InsertNode(pDev, "0", &pInst);
1157 rc = CFGMR3InsertInteger(pInst, "Trusted", 1); /* boolean */ RC_CHECK();
1158 rc = CFGMR3InsertInteger(pInst, "PCIDeviceNo", 5); RC_CHECK();
1159 rc = CFGMR3InsertInteger(pInst, "PCIFunctionNo", 0); RC_CHECK();
1160 rc = CFGMR3InsertNode(pInst, "Config", &pCfg);
1161
1162 /* the Audio driver */
1163 rc = CFGMR3InsertNode(pInst, "LUN#0", &pLunL0); RC_CHECK();
1164 rc = CFGMR3InsertString(pLunL0, "Driver", "AUDIO"); RC_CHECK();
1165 rc = CFGMR3InsertNode(pLunL0, "Config", &pCfg); RC_CHECK();
1166 AudioDriverType_T audioDriver;
1167 hrc = audioAdapter->COMGETTER(AudioDriver)(&audioDriver); H();
1168 switch (audioDriver)
1169 {
1170 case AudioDriverType_NullAudioDriver:
1171 {
1172 rc = CFGMR3InsertString(pCfg, "AudioDriver", "null"); RC_CHECK();
1173 break;
1174 }
1175#ifdef RT_OS_WINDOWS
1176#ifdef VBOX_WITH_WINMM
1177 case AudioDriverType_WINMMAudioDriver:
1178 {
1179 rc = CFGMR3InsertString(pCfg, "AudioDriver", "winmm"); RC_CHECK();
1180 break;
1181 }
1182#endif
1183 case AudioDriverType_DSOUNDAudioDriver:
1184 {
1185 rc = CFGMR3InsertString(pCfg, "AudioDriver", "dsound"); RC_CHECK();
1186 break;
1187 }
1188#endif /* RT_OS_WINDOWS */
1189#ifdef RT_OS_LINUX
1190 case AudioDriverType_OSSAudioDriver:
1191 {
1192 rc = CFGMR3InsertString(pCfg, "AudioDriver", "oss"); RC_CHECK();
1193 break;
1194 }
1195# ifdef VBOX_WITH_ALSA
1196 case AudioDriverType_ALSAAudioDriver:
1197 {
1198 rc = CFGMR3InsertString(pCfg, "AudioDriver", "alsa"); RC_CHECK();
1199 break;
1200 }
1201# endif
1202#endif /* RT_OS_LINUX */
1203#ifdef RT_OS_DARWIN
1204 case AudioDriverType_CoreAudioDriver:
1205 {
1206 rc = CFGMR3InsertString(pCfg, "AudioDriver", "coreaudio"); RC_CHECK();
1207 break;
1208 }
1209#endif
1210 }
1211 }
1212
1213 /*
1214 * The USB Controller.
1215 */
1216 ComPtr<IUSBController> USBCtlPtr;
1217 hrc = pMachine->COMGETTER(USBController)(USBCtlPtr.asOutParam());
1218 if (USBCtlPtr)
1219 {
1220 BOOL fEnabled;
1221 hrc = USBCtlPtr->COMGETTER(Enabled)(&fEnabled); H();
1222 if (fEnabled)
1223 {
1224 rc = CFGMR3InsertNode(pDevices, "usb-ohci", &pDev); RC_CHECK();
1225 rc = CFGMR3InsertNode(pDev, "0", &pInst); RC_CHECK();
1226 rc = CFGMR3InsertNode(pInst, "Config", &pCfg); RC_CHECK();
1227 rc = CFGMR3InsertInteger(pInst, "Trusted", 1); /* boolean */ RC_CHECK();
1228 rc = CFGMR3InsertInteger(pInst, "PCIDeviceNo", 6); RC_CHECK();
1229 rc = CFGMR3InsertInteger(pInst, "PCIFunctionNo", 0); RC_CHECK();
1230
1231 rc = CFGMR3InsertNode(pInst, "LUN#0", &pLunL0); RC_CHECK();
1232 rc = CFGMR3InsertString(pLunL0, "Driver", "VUSBRootHub"); RC_CHECK();
1233 rc = CFGMR3InsertNode(pLunL0, "Config", &pCfg); RC_CHECK();
1234
1235 /*
1236 * Attach the status driver.
1237 */
1238 rc = CFGMR3InsertNode(pInst, "LUN#999", &pLunL0); RC_CHECK();
1239 rc = CFGMR3InsertString(pLunL0, "Driver", "MainStatus"); RC_CHECK();
1240 rc = CFGMR3InsertNode(pLunL0, "Config", &pCfg); RC_CHECK();
1241 rc = CFGMR3InsertInteger(pCfg, "papLeds", (uintptr_t)&pConsole->mapUSBLed);RC_CHECK();
1242 rc = CFGMR3InsertInteger(pCfg, "First", 0); RC_CHECK();
1243 rc = CFGMR3InsertInteger(pCfg, "Last", 0); RC_CHECK();
1244 }
1245 }
1246
1247 /*
1248 * Clipboard
1249 */
1250 {
1251 ClipboardMode_T mode = ClipboardMode_ClipDisabled;
1252 hrc = pMachine->COMGETTER(ClipboardMode) (&mode); H();
1253
1254 if (mode != ClipboardMode_ClipDisabled)
1255 {
1256 /* Load the service */
1257 rc = pConsole->mVMMDev->hgcmLoadService ("VBoxSharedClipboard", "VBoxSharedClipboard");
1258
1259 if (VBOX_FAILURE (rc))
1260 {
1261 LogRel(("VBoxSharedClipboard is not available. rc = %Vrc\n", rc));
1262 /* That is not a fatal failure. */
1263 rc = VINF_SUCCESS;
1264 }
1265 else
1266 {
1267 /* Setup the service. */
1268 VBOXHGCMSVCPARM parm;
1269
1270 parm.type = VBOX_HGCM_SVC_PARM_32BIT;
1271
1272 switch (mode)
1273 {
1274 default:
1275 case ClipboardMode_ClipDisabled:
1276 {
1277 LogRel(("VBoxSharedClipboard mode: Off\n"));
1278 parm.u.uint32 = VBOX_SHARED_CLIPBOARD_MODE_OFF;
1279 break;
1280 }
1281 case ClipboardMode_ClipGuestToHost:
1282 {
1283 LogRel(("VBoxSharedClipboard mode: Guest to Host\n"));
1284 parm.u.uint32 = VBOX_SHARED_CLIPBOARD_MODE_GUEST_TO_HOST;
1285 break;
1286 }
1287 case ClipboardMode_ClipHostToGuest:
1288 {
1289 LogRel(("VBoxSharedClipboard mode: Host to Guest\n"));
1290 parm.u.uint32 = VBOX_SHARED_CLIPBOARD_MODE_HOST_TO_GUEST;
1291 break;
1292 }
1293 case ClipboardMode_ClipBidirectional:
1294 {
1295 LogRel(("VBoxSharedClipboard mode: Bidirectional\n"));
1296 parm.u.uint32 = VBOX_SHARED_CLIPBOARD_MODE_BIDIRECTIONAL;
1297 break;
1298 }
1299 }
1300
1301 pConsole->mVMMDev->hgcmHostCall ("VBoxSharedClipboard", VBOX_SHARED_CLIPBOARD_HOST_FN_SET_MODE, 1, &parm);
1302
1303 Log(("Set VBoxSharedClipboard mode\n"));
1304 }
1305 }
1306 }
1307
1308 /*
1309 * CFGM overlay handling.
1310 *
1311 * Here we check the extra data entries for CFGM values
1312 * and create the nodes and insert the values on the fly. Existing
1313 * values will be removed and reinserted. If a value is a valid number,
1314 * it will be inserted as a number, otherwise as a string.
1315 *
1316 * We first perform a run on global extra data, then on the machine
1317 * extra data to support global settings with local overrides.
1318 *
1319 */
1320 Bstr strExtraDataKey;
1321 bool fGlobalExtraData = true;
1322 for (;;)
1323 {
1324 Bstr strNextExtraDataKey;
1325 Bstr strExtraDataValue;
1326
1327 /* get the next key */
1328 if (fGlobalExtraData)
1329 hrc = virtualBox->GetNextExtraDataKey(strExtraDataKey, strNextExtraDataKey.asOutParam(),
1330 strExtraDataValue.asOutParam());
1331 else
1332 hrc = pMachine->GetNextExtraDataKey(strExtraDataKey, strNextExtraDataKey.asOutParam(),
1333 strExtraDataValue.asOutParam());
1334
1335 /* stop if for some reason there's nothing more to request */
1336 if (FAILED(hrc) || !strNextExtraDataKey)
1337 {
1338 /* if we're out of global keys, continue with machine, otherwise we're done */
1339 if (fGlobalExtraData)
1340 {
1341 fGlobalExtraData = false;
1342 strExtraDataKey.setNull();
1343 continue;
1344 }
1345 break;
1346 }
1347
1348 strExtraDataKey = strNextExtraDataKey;
1349 Utf8Str strExtraDataKeyUtf8 = Utf8Str(strExtraDataKey);
1350
1351 /* we only care about keys starting with "VBoxInternal/" */
1352 if (strncmp(strExtraDataKeyUtf8.raw(), "VBoxInternal/", 13) != 0)
1353 continue;
1354 char *pszExtraDataKey = (char*)strExtraDataKeyUtf8.raw() + 13;
1355
1356 /* the key will be in the format "Node1/Node2/Value" or simply "Value". */
1357 PCFGMNODE pNode;
1358 char *pszCFGMValueName = strrchr(pszExtraDataKey, '/');
1359 if (pszCFGMValueName)
1360 {
1361 /* terminate the node and advance to the value */
1362 *pszCFGMValueName = '\0';
1363 pszCFGMValueName++;
1364
1365 /* does the node already exist? */
1366 pNode = CFGMR3GetChild(pRoot, pszExtraDataKey);
1367 if (pNode)
1368 {
1369 /* the value might already exist, remove it to be safe */
1370 CFGMR3RemoveValue(pNode, pszCFGMValueName);
1371 }
1372 else
1373 {
1374 /* create the node */
1375 rc = CFGMR3InsertNode(pRoot, pszExtraDataKey, &pNode);
1376 AssertMsgRC(rc, ("failed to insert node '%s'\n", pszExtraDataKey));
1377 if (VBOX_FAILURE(rc) || !pNode)
1378 continue;
1379 }
1380 }
1381 else
1382 {
1383 pNode = pRoot;
1384 pszCFGMValueName = pszExtraDataKey;
1385 pszExtraDataKey--;
1386
1387 /* the value might already exist, remove it to be safe */
1388 CFGMR3RemoveValue(pNode, pszCFGMValueName);
1389 }
1390
1391 /* now let's have a look at the value */
1392 Utf8Str strCFGMValueUtf8 = Utf8Str(strExtraDataValue);
1393 const char *pszCFGMValue = strCFGMValueUtf8.raw();
1394 /* empty value means remove value which we've already done */
1395 if (pszCFGMValue && *pszCFGMValue)
1396 {
1397 /* if it's a valid number, we'll insert it as such, otherwise string */
1398 uint64_t u64Value;
1399 if (RTStrToUInt64Ex(pszCFGMValue, NULL, 0, &u64Value) == VINF_SUCCESS)
1400 {
1401 rc = CFGMR3InsertInteger(pNode, pszCFGMValueName, u64Value);
1402 }
1403 else
1404 {
1405 rc = CFGMR3InsertString(pNode, pszCFGMValueName, pszCFGMValue);
1406 }
1407 AssertMsgRC(rc, ("failed to insert CFGM value '%s' to key '%s'\n", pszCFGMValue, pszExtraDataKey));
1408 }
1409 }
1410
1411#undef H
1412#undef RC_CHECK
1413#undef STR_FREE
1414#undef STR_CONV
1415
1416 /* Register VM state change handler */
1417 int rc2 = VMR3AtStateRegister (pVM, Console::vmstateChangeCallback, pConsole);
1418 AssertRC (rc2);
1419 if (VBOX_SUCCESS (rc))
1420 rc = rc2;
1421
1422 /* Register VM runtime error handler */
1423 rc2 = VMR3AtRuntimeErrorRegister (pVM, Console::setVMRuntimeErrorCallback, pConsole);
1424 AssertRC (rc2);
1425 if (VBOX_SUCCESS (rc))
1426 rc = rc2;
1427
1428 /* Save the VM pointer in the machine object */
1429 pConsole->mpVM = pVM;
1430
1431 LogFlowFunc (("vrc = %Vrc\n", rc));
1432 LogFlowFuncLeave();
1433
1434 return rc;
1435}
1436
1437
Note: See TracBrowser for help on using the repository browser.

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