VirtualBox

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

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

Added custom line speed setting to XML/COM/CFGM. Hope I haven't forgotten anything.

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 65.6 KB
Line 
1/** $Id: ConsoleImpl2.cpp 5060 2007-09-26 17:14:35Z 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 * Line speed to report from custom drivers
856 */
857 ULONG ulLineSpeed;
858 hrc = networkAdapter->COMGETTER(LineSpeed)(&ulLineSpeed); H();
859 rc = CFGMR3InsertInteger(pCfg, "LineSpeed", ulLineSpeed); RC_CHECK();
860
861 /*
862 * Attach the status driver.
863 */
864 rc = CFGMR3InsertNode(pInst, "LUN#999", &pLunL0); RC_CHECK();
865 rc = CFGMR3InsertString(pLunL0, "Driver", "MainStatus"); RC_CHECK();
866 rc = CFGMR3InsertNode(pLunL0, "Config", &pCfg); RC_CHECK();
867 rc = CFGMR3InsertInteger(pCfg, "papLeds", (uintptr_t)&pConsole->mapNetworkLeds[ulInstance]); RC_CHECK();
868
869 /*
870 * Enable the packet sniffer if requested.
871 */
872 BOOL fSniffer;
873 hrc = networkAdapter->COMGETTER(TraceEnabled)(&fSniffer); H();
874 if (fSniffer)
875 {
876 /* insert the sniffer filter driver. */
877 rc = CFGMR3InsertNode(pInst, "LUN#0", &pLunL0); RC_CHECK();
878 rc = CFGMR3InsertString(pLunL0, "Driver", "NetSniffer"); RC_CHECK();
879 rc = CFGMR3InsertNode(pLunL0, "Config", &pCfg); RC_CHECK();
880 hrc = networkAdapter->COMGETTER(TraceFile)(&str); H();
881 if (str) /* check convention for indicating default file. */
882 {
883 STR_CONV();
884 rc = CFGMR3InsertString(pCfg, "File", psz); RC_CHECK();
885 STR_FREE();
886 }
887 }
888
889 NetworkAttachmentType_T networkAttachment;
890 hrc = networkAdapter->COMGETTER(AttachmentType)(&networkAttachment); H();
891 switch (networkAttachment)
892 {
893 case NetworkAttachmentType_NoNetworkAttachment:
894 break;
895
896 case NetworkAttachmentType_NATNetworkAttachment:
897 {
898 if (fSniffer)
899 {
900 rc = CFGMR3InsertNode(pLunL0, "AttachedDriver", &pLunL0); RC_CHECK();
901 }
902 else
903 {
904 rc = CFGMR3InsertNode(pInst, "LUN#0", &pLunL0); RC_CHECK();
905 }
906 rc = CFGMR3InsertString(pLunL0, "Driver", "NAT"); RC_CHECK();
907 rc = CFGMR3InsertNode(pLunL0, "Config", &pCfg); RC_CHECK();
908 /* (Port forwarding goes here.) */
909 break;
910 }
911
912 case NetworkAttachmentType_HostInterfaceNetworkAttachment:
913 {
914 /*
915 * Perform the attachment if required (don't return on error!)
916 */
917 hrc = pConsole->attachToHostInterface(networkAdapter);
918 if (SUCCEEDED(hrc))
919 {
920#ifdef VBOX_WITH_UNIXY_TAP_NETWORKING
921 Assert (pConsole->maTapFD[ulInstance] >= 0);
922 if (pConsole->maTapFD[ulInstance] >= 0)
923 {
924 if (fSniffer)
925 {
926 rc = CFGMR3InsertNode(pLunL0, "AttachedDriver", &pLunL0); RC_CHECK();
927 }
928 else
929 {
930 rc = CFGMR3InsertNode(pInst, "LUN#0", &pLunL0); RC_CHECK();
931 }
932 rc = CFGMR3InsertString(pLunL0, "Driver", "HostInterface"); RC_CHECK();
933 rc = CFGMR3InsertNode(pLunL0, "Config", &pCfg); RC_CHECK();
934 rc = CFGMR3InsertInteger(pCfg, "FileHandle", pConsole->maTapFD[ulInstance]); RC_CHECK();
935 }
936#elif defined(RT_OS_WINDOWS)
937 if (fSniffer)
938 {
939 rc = CFGMR3InsertNode(pLunL0, "AttachedDriver", &pLunL0); RC_CHECK();
940 }
941 else
942 {
943 rc = CFGMR3InsertNode(pInst, "LUN#0", &pLunL0); RC_CHECK();
944 }
945 Bstr hostInterfaceName;
946 hrc = networkAdapter->COMGETTER(HostInterface)(hostInterfaceName.asOutParam()); H();
947 ComPtr<IHostNetworkInterfaceCollection> coll;
948 hrc = host->COMGETTER(NetworkInterfaces)(coll.asOutParam()); H();
949 ComPtr<IHostNetworkInterface> hostInterface;
950 rc = coll->FindByName(hostInterfaceName, hostInterface.asOutParam());
951 if (!SUCCEEDED(rc))
952 {
953 AssertMsgFailed(("Cannot get GUID for host interface '%ls'\n", hostInterfaceName));
954 hrc = networkAdapter->Detach(); H();
955 }
956 else
957 {
958 rc = CFGMR3InsertString(pLunL0, "Driver", "HostInterface"); RC_CHECK();
959 rc = CFGMR3InsertNode(pLunL0, "Config", &pCfg); RC_CHECK();
960 rc = CFGMR3InsertString(pCfg, "HostInterfaceName", Utf8Str(hostInterfaceName)); RC_CHECK();
961 Guid hostIFGuid;
962 hrc = hostInterface->COMGETTER(Id)(hostIFGuid.asOutParam()); H();
963 char szDriverGUID[256] = {0};
964 /* add curly brackets */
965 szDriverGUID[0] = '{';
966 strcpy(szDriverGUID + 1, hostIFGuid.toString().raw());
967 strcat(szDriverGUID, "}");
968 rc = CFGMR3InsertBytes(pCfg, "GUID", szDriverGUID, sizeof(szDriverGUID)); RC_CHECK();
969 }
970#else
971# error "Port me"
972#endif
973 }
974 else
975 {
976 switch (hrc)
977 {
978#ifdef RT_OS_LINUX
979 case VERR_ACCESS_DENIED:
980 return VMSetError(pVM, VERR_HOSTIF_INIT_FAILED, RT_SRC_POS, N_(
981 "Failed to open '/dev/net/tun' for read/write access. Please check the "
982 "permissions of that node. Either do 'chmod 0666 /dev/net/tun' or "
983 "change the group of that node and get member of that group. Make "
984 "sure that these changes are permanently in particular if you are "
985 "using udev"));
986#endif /* RT_OS_LINUX */
987 default:
988 AssertMsgFailed(("Could not attach to host interface! Bad!\n"));
989 return VMSetError(pVM, VERR_HOSTIF_INIT_FAILED, RT_SRC_POS, N_(
990 "Failed to initialize Host Interface Networking"));
991 }
992 }
993 break;
994 }
995
996 case NetworkAttachmentType_InternalNetworkAttachment:
997 {
998 hrc = networkAdapter->COMGETTER(InternalNetwork)(&str); H();
999 STR_CONV();
1000 if (psz && *psz)
1001 {
1002 if (fSniffer)
1003 {
1004 rc = CFGMR3InsertNode(pLunL0, "AttachedDriver", &pLunL0); RC_CHECK();
1005 }
1006 else
1007 {
1008 rc = CFGMR3InsertNode(pInst, "LUN#0", &pLunL0); RC_CHECK();
1009 }
1010 rc = CFGMR3InsertString(pLunL0, "Driver", "IntNet"); RC_CHECK();
1011 rc = CFGMR3InsertNode(pLunL0, "Config", &pCfg); RC_CHECK();
1012 rc = CFGMR3InsertString(pCfg, "Network", psz); RC_CHECK();
1013 }
1014 STR_FREE();
1015 break;
1016 }
1017
1018 default:
1019 AssertMsgFailed(("should not get here!\n"));
1020 break;
1021 }
1022 }
1023
1024 /*
1025 * Serial (UART) Ports
1026 */
1027 rc = CFGMR3InsertNode(pDevices, "serial", &pDev); RC_CHECK();
1028 for (ULONG ulInstance = 0; ulInstance < SchemaDefs::SerialPortCount; ulInstance++)
1029 {
1030 ComPtr<ISerialPort> serialPort;
1031 hrc = pMachine->GetSerialPort (ulInstance, serialPort.asOutParam()); H();
1032 BOOL fEnabled = FALSE;
1033 if (serialPort)
1034 hrc = serialPort->COMGETTER(Enabled)(&fEnabled); H();
1035 if (!fEnabled)
1036 continue;
1037
1038 char szInstance[4]; Assert(ulInstance <= 999);
1039 RTStrPrintf(szInstance, sizeof(szInstance), "%lu", ulInstance);
1040
1041 rc = CFGMR3InsertNode(pDev, szInstance, &pInst); RC_CHECK();
1042 rc = CFGMR3InsertNode(pInst, "Config", &pCfg); RC_CHECK();
1043
1044 ULONG ulIRQ, ulIOBase;
1045 PortMode_T HostMode;
1046 Bstr path;
1047 BOOL fServer;
1048 hrc = serialPort->COMGETTER(HostMode)(&HostMode); H();
1049 hrc = serialPort->COMGETTER(IRQ)(&ulIRQ); H();
1050 hrc = serialPort->COMGETTER(IOBase)(&ulIOBase); H();
1051 hrc = serialPort->COMGETTER(Path)(path.asOutParam()); H();
1052 hrc = serialPort->COMGETTER(Server)(&fServer); H();
1053 rc = CFGMR3InsertInteger(pCfg, "IRQ", ulIRQ); RC_CHECK();
1054 rc = CFGMR3InsertInteger(pCfg, "IOBase", ulIOBase); RC_CHECK();
1055 if (HostMode != PortMode_DisconnectedPort)
1056 {
1057 rc = CFGMR3InsertNode(pInst, "LUN#0", &pLunL0); RC_CHECK();
1058 if (HostMode == PortMode_HostPipePort)
1059 {
1060 rc = CFGMR3InsertString(pLunL0, "Driver", "Char"); RC_CHECK();
1061 rc = CFGMR3InsertNode(pLunL0, "AttachedDriver", &pLunL1); RC_CHECK();
1062 rc = CFGMR3InsertString(pLunL1, "Driver", "NamedPipe"); RC_CHECK();
1063 rc = CFGMR3InsertNode(pLunL1, "Config", &pLunL2); RC_CHECK();
1064 rc = CFGMR3InsertString(pLunL2, "Location", Utf8Str(path)); RC_CHECK();
1065 rc = CFGMR3InsertInteger(pLunL2, "IsServer", fServer); RC_CHECK();
1066 }
1067 else if (HostMode == PortMode_HostDevicePort)
1068 {
1069 rc = CFGMR3InsertString(pLunL0, "Driver", "Host Serial"); RC_CHECK();
1070 rc = CFGMR3InsertNode(pLunL0, "Config", &pLunL1); RC_CHECK();
1071 rc = CFGMR3InsertString(pLunL1, "DevicePath", Utf8Str(path)); RC_CHECK();
1072 }
1073 }
1074 }
1075
1076 /*
1077 * Parallel (LPT) Ports
1078 */
1079 rc = CFGMR3InsertNode(pDevices, "parallel", &pDev); RC_CHECK();
1080 for (ULONG ulInstance = 0; ulInstance < SchemaDefs::ParallelPortCount; ulInstance++)
1081 {
1082 ComPtr<IParallelPort> parallelPort;
1083 hrc = pMachine->GetParallelPort (ulInstance, parallelPort.asOutParam()); H();
1084 BOOL fEnabled = FALSE;
1085 if (parallelPort)
1086 hrc = parallelPort->COMGETTER(Enabled)(&fEnabled); H();
1087 if (!fEnabled)
1088 continue;
1089
1090 char szInstance[4]; Assert(ulInstance <= 999);
1091 RTStrPrintf(szInstance, sizeof(szInstance), "%lu", ulInstance);
1092
1093 rc = CFGMR3InsertNode(pDev, szInstance, &pInst); RC_CHECK();
1094 rc = CFGMR3InsertNode(pInst, "Config", &pCfg); RC_CHECK();
1095
1096 ULONG ulIRQ, ulIOBase;
1097 Bstr DevicePath;
1098 hrc = parallelPort->COMGETTER(IRQ)(&ulIRQ); H();
1099 hrc = parallelPort->COMGETTER(IOBase)(&ulIOBase); H();
1100 hrc = parallelPort->COMGETTER(Path)(DevicePath.asOutParam()); H();
1101 rc = CFGMR3InsertInteger(pCfg, "IRQ", ulIRQ); RC_CHECK();
1102 rc = CFGMR3InsertInteger(pCfg, "IOBase", ulIOBase); RC_CHECK();
1103 rc = CFGMR3InsertNode(pInst, "LUN#0", &pLunL0); RC_CHECK();
1104 rc = CFGMR3InsertString(pLunL0, "Driver", "HostParallel"); RC_CHECK();
1105 rc = CFGMR3InsertNode(pLunL0, "AttachedDriver", &pLunL1); RC_CHECK();
1106 rc = CFGMR3InsertString(pLunL1, "DevicePath", Utf8Str(DevicePath)); RC_CHECK();
1107 }
1108
1109 /*
1110 * VMM Device
1111 */
1112 rc = CFGMR3InsertNode(pDevices, "VMMDev", &pDev); RC_CHECK();
1113 rc = CFGMR3InsertNode(pDev, "0", &pInst); RC_CHECK();
1114 rc = CFGMR3InsertNode(pInst, "Config", &pCfg); RC_CHECK();
1115 rc = CFGMR3InsertInteger(pInst, "Trusted", 1); /* boolean */ RC_CHECK();
1116 rc = CFGMR3InsertInteger(pInst, "PCIDeviceNo", 4); RC_CHECK();
1117 rc = CFGMR3InsertInteger(pInst, "PCIFunctionNo", 0); RC_CHECK();
1118
1119 /* the VMM device's Main driver */
1120 rc = CFGMR3InsertNode(pInst, "LUN#0", &pLunL0); RC_CHECK();
1121 rc = CFGMR3InsertString(pLunL0, "Driver", "MainVMMDev"); RC_CHECK();
1122 rc = CFGMR3InsertNode(pLunL0, "Config", &pCfg); RC_CHECK();
1123 VMMDev *pVMMDev = pConsole->mVMMDev;
1124 rc = CFGMR3InsertInteger(pCfg, "Object", (uintptr_t)pVMMDev); RC_CHECK();
1125
1126 /*
1127 * Attach the status driver.
1128 */
1129 rc = CFGMR3InsertNode(pInst, "LUN#999", &pLunL0); RC_CHECK();
1130 rc = CFGMR3InsertString(pLunL0, "Driver", "MainStatus"); RC_CHECK();
1131 rc = CFGMR3InsertNode(pLunL0, "Config", &pCfg); RC_CHECK();
1132 rc = CFGMR3InsertInteger(pCfg, "papLeds", (uintptr_t)&pConsole->mapSharedFolderLed); RC_CHECK();
1133 rc = CFGMR3InsertInteger(pCfg, "First", 0); RC_CHECK();
1134 rc = CFGMR3InsertInteger(pCfg, "Last", 0); RC_CHECK();
1135
1136 /*
1137 * Audio Sniffer Device
1138 */
1139 rc = CFGMR3InsertNode(pDevices, "AudioSniffer", &pDev); RC_CHECK();
1140 rc = CFGMR3InsertNode(pDev, "0", &pInst); RC_CHECK();
1141 rc = CFGMR3InsertNode(pInst, "Config", &pCfg); RC_CHECK();
1142
1143 /* the Audio Sniffer device's Main driver */
1144 rc = CFGMR3InsertNode(pInst, "LUN#0", &pLunL0); RC_CHECK();
1145 rc = CFGMR3InsertString(pLunL0, "Driver", "MainAudioSniffer"); RC_CHECK();
1146 rc = CFGMR3InsertNode(pLunL0, "Config", &pCfg); RC_CHECK();
1147 AudioSniffer *pAudioSniffer = pConsole->mAudioSniffer;
1148 rc = CFGMR3InsertInteger(pCfg, "Object", (uintptr_t)pAudioSniffer); RC_CHECK();
1149
1150 /*
1151 * AC'97 ICH audio
1152 */
1153 ComPtr<IAudioAdapter> audioAdapter;
1154 hrc = pMachine->COMGETTER(AudioAdapter)(audioAdapter.asOutParam()); H();
1155 BOOL enabled = FALSE;
1156 if (audioAdapter)
1157 {
1158 hrc = audioAdapter->COMGETTER(Enabled)(&enabled); H();
1159 }
1160 if (enabled)
1161 {
1162 rc = CFGMR3InsertNode(pDevices, "ichac97", &pDev); /* ichac97 */
1163 rc = CFGMR3InsertNode(pDev, "0", &pInst);
1164 rc = CFGMR3InsertInteger(pInst, "Trusted", 1); /* boolean */ RC_CHECK();
1165 rc = CFGMR3InsertInteger(pInst, "PCIDeviceNo", 5); RC_CHECK();
1166 rc = CFGMR3InsertInteger(pInst, "PCIFunctionNo", 0); RC_CHECK();
1167 rc = CFGMR3InsertNode(pInst, "Config", &pCfg);
1168
1169 /* the Audio driver */
1170 rc = CFGMR3InsertNode(pInst, "LUN#0", &pLunL0); RC_CHECK();
1171 rc = CFGMR3InsertString(pLunL0, "Driver", "AUDIO"); RC_CHECK();
1172 rc = CFGMR3InsertNode(pLunL0, "Config", &pCfg); RC_CHECK();
1173 AudioDriverType_T audioDriver;
1174 hrc = audioAdapter->COMGETTER(AudioDriver)(&audioDriver); H();
1175 switch (audioDriver)
1176 {
1177 case AudioDriverType_NullAudioDriver:
1178 {
1179 rc = CFGMR3InsertString(pCfg, "AudioDriver", "null"); RC_CHECK();
1180 break;
1181 }
1182#ifdef RT_OS_WINDOWS
1183#ifdef VBOX_WITH_WINMM
1184 case AudioDriverType_WINMMAudioDriver:
1185 {
1186 rc = CFGMR3InsertString(pCfg, "AudioDriver", "winmm"); RC_CHECK();
1187 break;
1188 }
1189#endif
1190 case AudioDriverType_DSOUNDAudioDriver:
1191 {
1192 rc = CFGMR3InsertString(pCfg, "AudioDriver", "dsound"); RC_CHECK();
1193 break;
1194 }
1195#endif /* RT_OS_WINDOWS */
1196#ifdef RT_OS_LINUX
1197 case AudioDriverType_OSSAudioDriver:
1198 {
1199 rc = CFGMR3InsertString(pCfg, "AudioDriver", "oss"); RC_CHECK();
1200 break;
1201 }
1202# ifdef VBOX_WITH_ALSA
1203 case AudioDriverType_ALSAAudioDriver:
1204 {
1205 rc = CFGMR3InsertString(pCfg, "AudioDriver", "alsa"); RC_CHECK();
1206 break;
1207 }
1208# endif
1209#endif /* RT_OS_LINUX */
1210#ifdef RT_OS_DARWIN
1211 case AudioDriverType_CoreAudioDriver:
1212 {
1213 rc = CFGMR3InsertString(pCfg, "AudioDriver", "coreaudio"); RC_CHECK();
1214 break;
1215 }
1216#endif
1217 }
1218 }
1219
1220 /*
1221 * The USB Controller.
1222 */
1223 ComPtr<IUSBController> USBCtlPtr;
1224 hrc = pMachine->COMGETTER(USBController)(USBCtlPtr.asOutParam());
1225 if (USBCtlPtr)
1226 {
1227 BOOL fEnabled;
1228 hrc = USBCtlPtr->COMGETTER(Enabled)(&fEnabled); H();
1229 if (fEnabled)
1230 {
1231 rc = CFGMR3InsertNode(pDevices, "usb-ohci", &pDev); RC_CHECK();
1232 rc = CFGMR3InsertNode(pDev, "0", &pInst); RC_CHECK();
1233 rc = CFGMR3InsertNode(pInst, "Config", &pCfg); RC_CHECK();
1234 rc = CFGMR3InsertInteger(pInst, "Trusted", 1); /* boolean */ RC_CHECK();
1235 rc = CFGMR3InsertInteger(pInst, "PCIDeviceNo", 6); RC_CHECK();
1236 rc = CFGMR3InsertInteger(pInst, "PCIFunctionNo", 0); RC_CHECK();
1237
1238 rc = CFGMR3InsertNode(pInst, "LUN#0", &pLunL0); RC_CHECK();
1239 rc = CFGMR3InsertString(pLunL0, "Driver", "VUSBRootHub"); RC_CHECK();
1240 rc = CFGMR3InsertNode(pLunL0, "Config", &pCfg); RC_CHECK();
1241
1242 /*
1243 * Attach the status driver.
1244 */
1245 rc = CFGMR3InsertNode(pInst, "LUN#999", &pLunL0); RC_CHECK();
1246 rc = CFGMR3InsertString(pLunL0, "Driver", "MainStatus"); RC_CHECK();
1247 rc = CFGMR3InsertNode(pLunL0, "Config", &pCfg); RC_CHECK();
1248 rc = CFGMR3InsertInteger(pCfg, "papLeds", (uintptr_t)&pConsole->mapUSBLed);RC_CHECK();
1249 rc = CFGMR3InsertInteger(pCfg, "First", 0); RC_CHECK();
1250 rc = CFGMR3InsertInteger(pCfg, "Last", 0); RC_CHECK();
1251 }
1252 }
1253
1254 /*
1255 * Clipboard
1256 */
1257 {
1258 ClipboardMode_T mode = ClipboardMode_ClipDisabled;
1259 hrc = pMachine->COMGETTER(ClipboardMode) (&mode); H();
1260
1261 if (mode != ClipboardMode_ClipDisabled)
1262 {
1263 /* Load the service */
1264 rc = pConsole->mVMMDev->hgcmLoadService ("VBoxSharedClipboard", "VBoxSharedClipboard");
1265
1266 if (VBOX_FAILURE (rc))
1267 {
1268 LogRel(("VBoxSharedClipboard is not available. rc = %Vrc\n", rc));
1269 /* That is not a fatal failure. */
1270 rc = VINF_SUCCESS;
1271 }
1272 else
1273 {
1274 /* Setup the service. */
1275 VBOXHGCMSVCPARM parm;
1276
1277 parm.type = VBOX_HGCM_SVC_PARM_32BIT;
1278
1279 switch (mode)
1280 {
1281 default:
1282 case ClipboardMode_ClipDisabled:
1283 {
1284 LogRel(("VBoxSharedClipboard mode: Off\n"));
1285 parm.u.uint32 = VBOX_SHARED_CLIPBOARD_MODE_OFF;
1286 break;
1287 }
1288 case ClipboardMode_ClipGuestToHost:
1289 {
1290 LogRel(("VBoxSharedClipboard mode: Guest to Host\n"));
1291 parm.u.uint32 = VBOX_SHARED_CLIPBOARD_MODE_GUEST_TO_HOST;
1292 break;
1293 }
1294 case ClipboardMode_ClipHostToGuest:
1295 {
1296 LogRel(("VBoxSharedClipboard mode: Host to Guest\n"));
1297 parm.u.uint32 = VBOX_SHARED_CLIPBOARD_MODE_HOST_TO_GUEST;
1298 break;
1299 }
1300 case ClipboardMode_ClipBidirectional:
1301 {
1302 LogRel(("VBoxSharedClipboard mode: Bidirectional\n"));
1303 parm.u.uint32 = VBOX_SHARED_CLIPBOARD_MODE_BIDIRECTIONAL;
1304 break;
1305 }
1306 }
1307
1308 pConsole->mVMMDev->hgcmHostCall ("VBoxSharedClipboard", VBOX_SHARED_CLIPBOARD_HOST_FN_SET_MODE, 1, &parm);
1309
1310 Log(("Set VBoxSharedClipboard mode\n"));
1311 }
1312 }
1313 }
1314
1315 /*
1316 * CFGM overlay handling.
1317 *
1318 * Here we check the extra data entries for CFGM values
1319 * and create the nodes and insert the values on the fly. Existing
1320 * values will be removed and reinserted. If a value is a valid number,
1321 * it will be inserted as a number, otherwise as a string.
1322 *
1323 * We first perform a run on global extra data, then on the machine
1324 * extra data to support global settings with local overrides.
1325 *
1326 */
1327 Bstr strExtraDataKey;
1328 bool fGlobalExtraData = true;
1329 for (;;)
1330 {
1331 Bstr strNextExtraDataKey;
1332 Bstr strExtraDataValue;
1333
1334 /* get the next key */
1335 if (fGlobalExtraData)
1336 hrc = virtualBox->GetNextExtraDataKey(strExtraDataKey, strNextExtraDataKey.asOutParam(),
1337 strExtraDataValue.asOutParam());
1338 else
1339 hrc = pMachine->GetNextExtraDataKey(strExtraDataKey, strNextExtraDataKey.asOutParam(),
1340 strExtraDataValue.asOutParam());
1341
1342 /* stop if for some reason there's nothing more to request */
1343 if (FAILED(hrc) || !strNextExtraDataKey)
1344 {
1345 /* if we're out of global keys, continue with machine, otherwise we're done */
1346 if (fGlobalExtraData)
1347 {
1348 fGlobalExtraData = false;
1349 strExtraDataKey.setNull();
1350 continue;
1351 }
1352 break;
1353 }
1354
1355 strExtraDataKey = strNextExtraDataKey;
1356 Utf8Str strExtraDataKeyUtf8 = Utf8Str(strExtraDataKey);
1357
1358 /* we only care about keys starting with "VBoxInternal/" */
1359 if (strncmp(strExtraDataKeyUtf8.raw(), "VBoxInternal/", 13) != 0)
1360 continue;
1361 char *pszExtraDataKey = (char*)strExtraDataKeyUtf8.raw() + 13;
1362
1363 /* the key will be in the format "Node1/Node2/Value" or simply "Value". */
1364 PCFGMNODE pNode;
1365 char *pszCFGMValueName = strrchr(pszExtraDataKey, '/');
1366 if (pszCFGMValueName)
1367 {
1368 /* terminate the node and advance to the value */
1369 *pszCFGMValueName = '\0';
1370 pszCFGMValueName++;
1371
1372 /* does the node already exist? */
1373 pNode = CFGMR3GetChild(pRoot, pszExtraDataKey);
1374 if (pNode)
1375 {
1376 /* the value might already exist, remove it to be safe */
1377 CFGMR3RemoveValue(pNode, pszCFGMValueName);
1378 }
1379 else
1380 {
1381 /* create the node */
1382 rc = CFGMR3InsertNode(pRoot, pszExtraDataKey, &pNode);
1383 AssertMsgRC(rc, ("failed to insert node '%s'\n", pszExtraDataKey));
1384 if (VBOX_FAILURE(rc) || !pNode)
1385 continue;
1386 }
1387 }
1388 else
1389 {
1390 pNode = pRoot;
1391 pszCFGMValueName = pszExtraDataKey;
1392 pszExtraDataKey--;
1393
1394 /* the value might already exist, remove it to be safe */
1395 CFGMR3RemoveValue(pNode, pszCFGMValueName);
1396 }
1397
1398 /* now let's have a look at the value */
1399 Utf8Str strCFGMValueUtf8 = Utf8Str(strExtraDataValue);
1400 const char *pszCFGMValue = strCFGMValueUtf8.raw();
1401 /* empty value means remove value which we've already done */
1402 if (pszCFGMValue && *pszCFGMValue)
1403 {
1404 /* if it's a valid number, we'll insert it as such, otherwise string */
1405 uint64_t u64Value;
1406 if (RTStrToUInt64Ex(pszCFGMValue, NULL, 0, &u64Value) == VINF_SUCCESS)
1407 {
1408 rc = CFGMR3InsertInteger(pNode, pszCFGMValueName, u64Value);
1409 }
1410 else
1411 {
1412 rc = CFGMR3InsertString(pNode, pszCFGMValueName, pszCFGMValue);
1413 }
1414 AssertMsgRC(rc, ("failed to insert CFGM value '%s' to key '%s'\n", pszCFGMValue, pszExtraDataKey));
1415 }
1416 }
1417
1418#undef H
1419#undef RC_CHECK
1420#undef STR_FREE
1421#undef STR_CONV
1422
1423 /* Register VM state change handler */
1424 int rc2 = VMR3AtStateRegister (pVM, Console::vmstateChangeCallback, pConsole);
1425 AssertRC (rc2);
1426 if (VBOX_SUCCESS (rc))
1427 rc = rc2;
1428
1429 /* Register VM runtime error handler */
1430 rc2 = VMR3AtRuntimeErrorRegister (pVM, Console::setVMRuntimeErrorCallback, pConsole);
1431 AssertRC (rc2);
1432 if (VBOX_SUCCESS (rc))
1433 rc = rc2;
1434
1435 /* Save the VM pointer in the machine object */
1436 pConsole->mpVM = pVM;
1437
1438 LogFlowFunc (("vrc = %Vrc\n", rc));
1439 LogFlowFuncLeave();
1440
1441 return rc;
1442}
1443
1444
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