VirtualBox

source: vbox/trunk/src/VBox/VMM/VMMR3/PDM.cpp@ 105266

Last change on this file since 105266 was 105068, checked in by vboxsync, 3 months ago

VMM/PDM: Quick fix for loading existing saved states after r163661 which unconditionally adds the TPM PPI device to guests, bugref:10701

  • Property svn:eol-style set to native
  • Property svn:keywords set to Id Revision
File size: 117.3 KB
Line 
1/* $Id: PDM.cpp 105068 2024-06-27 19:59:48Z vboxsync $ */
2/** @file
3 * PDM - Pluggable Device Manager.
4 */
5
6/*
7 * Copyright (C) 2006-2023 Oracle and/or its affiliates.
8 *
9 * This file is part of VirtualBox base platform packages, as
10 * available from https://www.virtualbox.org.
11 *
12 * This program is free software; you can redistribute it and/or
13 * modify it under the terms of the GNU General Public License
14 * as published by the Free Software Foundation, in version 3 of the
15 * License.
16 *
17 * This program is distributed in the hope that it will be useful, but
18 * WITHOUT ANY WARRANTY; without even the implied warranty of
19 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
20 * General Public License for more details.
21 *
22 * You should have received a copy of the GNU General Public License
23 * along with this program; if not, see <https://www.gnu.org/licenses>.
24 *
25 * SPDX-License-Identifier: GPL-3.0-only
26 */
27
28
29/** @page pg_pdm PDM - The Pluggable Device & Driver Manager
30 *
31 * The PDM handles devices and their drivers in a flexible and dynamic manner.
32 *
33 * VirtualBox is designed to be very configurable, i.e. the ability to select
34 * virtual devices and configure them uniquely for a VM. For this reason
35 * virtual devices are not statically linked with the VMM but loaded, linked and
36 * instantiated at runtime by PDM using the information found in the
37 * Configuration Manager (CFGM).
38 *
39 * While the chief purpose of PDM is to manager of devices their drivers, it
40 * also serves as somewhere to put usful things like cross context queues, cross
41 * context synchronization (like critsect), VM centric thread management,
42 * asynchronous I/O framework, and so on.
43 *
44 * @sa @ref grp_pdm
45 * @subpage pg_pdm_block_cache
46 * @subpage pg_pdm_audio
47 *
48 *
49 * @section sec_pdm_dev The Pluggable Devices
50 *
51 * Devices register themselves when the module containing them is loaded. PDM
52 * will call the entry point 'VBoxDevicesRegister' when loading a device module.
53 * The device module will then use the supplied callback table to check the VMM
54 * version and to register its devices. Each device has an unique name (within
55 * the VM configuration anyway). The name is not only used in PDM, but also in
56 * CFGM to organize device and device instance settings, and by anyone who wants
57 * to talk to a specific device instance.
58 *
59 * When all device modules have been successfully loaded PDM will instantiate
60 * those devices which are configured for the VM. Note that a device may have
61 * more than one instance, take network adaptors as an example. When
62 * instantiating a device PDM provides device instance memory and a callback
63 * table (aka Device Helpers / DevHlp) with the VM APIs which the device
64 * instance is trusted with.
65 *
66 * Some devices are trusted devices, most are not. The trusted devices are an
67 * integrated part of the VM and can obtain the VM handle, thus enabling them to
68 * call any VM API. Untrusted devices can only use the callbacks provided
69 * during device instantiation.
70 *
71 * The main purpose in having DevHlps rather than just giving all the devices
72 * the VM handle and let them call the internal VM APIs directly, is both to
73 * create a binary interface that can be supported across releases and to
74 * create a barrier between devices and the VM. (The trusted / untrusted bit
75 * hasn't turned out to be of much use btw., but it's easy to maintain so there
76 * isn't any point in removing it.)
77 *
78 * A device can provide a ring-0 and/or a raw-mode context extension to improve
79 * the VM performance by handling exits and traps (respectively) without
80 * requiring context switches (to ring-3). Callbacks for MMIO and I/O ports
81 * need to be registered specifically for the additional contexts for this to
82 * make sense. Also, the device has to be trusted to be loaded into R0/RC
83 * because of the extra privilege it entails. Note that raw-mode code and data
84 * will be subject to relocation.
85 *
86 *
87 * @subsection sec_pdm_dev_pci PCI Devices
88 *
89 * A PDM device usually registers one a PCI device during it's instantiation,
90 * legacy devices may register zero, while a few (currently none) more
91 * complicated devices may register multiple PCI functions or devices.
92 *
93 * The bus, device and function assignments can either be done explictly via the
94 * configuration or the registration call, or it can be left up to the PCI bus.
95 * The typical VBox configuration construct (ConsoleImpl2.cpp) will do explict
96 * assignments for all devices it's BusAssignmentManager class knows about.
97 *
98 * For explict CFGM style configuration, the "PCIBusNo", "PCIDeviceNo", and
99 * "PCIFunctionNo" values in the PDM device instance configuration (not the
100 * "config" subkey, but the top level one) will be picked up for the primary PCI
101 * device. The primary PCI configuration is by default the first one, but this
102 * can be controlled using the @a idxDevCfg parameter of the
103 * PDMDEVHLPR3::pfnPCIRegister method. For subsequent configuration (@a
104 * idxDevCfg > 0) the values are taken from the "PciDevNN" subkey, where "NN" is
105 * replaced by the @a idxDevCfg value.
106 *
107 * There's currently a limit of 256 PCI devices per PDM device.
108 *
109 *
110 * @subsection sec_pdm_dev_new New Style (6.1)
111 *
112 * VBox 6.1 changes the PDM interface for devices and they have to be converted
113 * to the new style to continue working (see @bugref{9218}).
114 *
115 * Steps for converting a PDM device to the new style:
116 *
117 * - State data needs to be split into shared, ring-3, ring-0 and raw-mode
118 * structures. The shared structure shall contains absolutely no pointers.
119 *
120 * - Context specific typedefs ending in CC for the structure and pointer to
121 * it are required (copy & edit the PRTCSTATECC stuff).
122 * The pointer to a context specific structure is obtained using the
123 * PDMINS_2_DATA_CC macro. The PDMINS_2_DATA macro gets the shared one.
124 *
125 * - Update the registration structure with sizeof the new structures.
126 *
127 * - MMIO handlers to FNIOMMMIONEWREAD and FNIOMMMIONEWRITE form, take care renaming
128 * GCPhys to off and really treat it as an offset. Return status is VBOXSTRICTRC,
129 * which should be propagated to worker functions as far as possible.
130 *
131 * - I/O handlers to FNIOMIOPORTNEWIN and FNIOMIOPORTNEWOUT form, take care renaming
132 * uPort/Port to offPort and really treat it as an offset. Return status is
133 * VBOXSTRICTRC, which should be propagated to worker functions as far as possible.
134 *
135 * - MMIO and I/O port registration must be converted, handles stored in the shared structure.
136 *
137 * - PCI devices must also update the I/O region registration and corresponding
138 * mapping callback. The latter is generally not needed any more, as the PCI
139 * bus does the mapping and unmapping using the handle passed to it during registration.
140 *
141 * - If the device contains ring-0 or raw-mode optimizations:
142 * - Make sure to replace any R0Enabled, GCEnabled, and RZEnabled with
143 * pDevIns->fR0Enabled and pDevIns->fRCEnabled. Removing CFGM reading and
144 * validation of such options as well as state members for them.
145 * - Callbacks for ring-0 and raw-mode are registered in a context contructor.
146 * Setting up of non-default critical section handling needs to be repeated
147 * in the ring-0/raw-mode context constructor too. See for instance
148 * e1kRZConstruct().
149 *
150 * - Convert all PDMCritSect calls to PDMDevHlpCritSect.
151 * Note! pDevIns should be passed as parameter rather than put in pThisCC.
152 *
153 * - Convert all timers to the handle based ones.
154 *
155 * - Convert all queues to the handle based ones or tasks.
156 *
157 * - Set the PDM_DEVREG_FLAGS_NEW_STYLE in the registration structure.
158 * (Functionally, this only makes a difference for PDMDevHlpSetDeviceCritSect
159 * behavior, but it will become mandatory once all devices has been
160 * converted.)
161 *
162 * - Convert all CFGMR3Xxxx calls to pHlp->pfnCFGMXxxx.
163 *
164 * - Convert all SSMR3Xxxx calls to pHlp->pfnSSMXxxx.
165 *
166 * - Ensure that CFGM values and nodes are validated using PDMDEV_VALIDATE_CONFIG_RETURN()
167 *
168 * - Ensure that the first statement in the constructors is
169 * @code
170 PDMDEV_CHECK_VERSIONS_RETURN(pDevIns);
171 @endcode
172 * There shall be absolutely nothing preceeding that and it is mandatory.
173 *
174 * - Ensure that the first statement in the destructors is
175 * @code
176 PDMDEV_CHECK_VERSIONS_RETURN_QUIET(pDevIns);
177 @endcode
178 * There shall be absolutely nothing preceeding that and it is mandatory.
179 *
180 * - Use 'nm -u' (tools/win.amd64/mingw-w64/r1/bin/nm.exe on windows) to check
181 * for VBoxVMM and VMMR0 function you forgot to convert to device help calls
182 * or would need adding as device helpers or something.
183 *
184 *
185 * @section sec_pdm_special_devs Special Devices
186 *
187 * Several kinds of devices interacts with the VMM and/or other device and PDM
188 * will work like a mediator for these. The typical pattern is that the device
189 * calls a special registration device helper with a set of callbacks, PDM
190 * responds by copying this and providing a pointer to a set helper callbacks
191 * for that particular kind of device. Unlike interfaces where the callback
192 * table pointer is used a 'this' pointer, these arrangements will use the
193 * device instance pointer (PPDMDEVINS) as a kind of 'this' pointer.
194 *
195 * For an example of this kind of setup, see the PIC. The PIC registers itself
196 * by calling PDMDEVHLPR3::pfnPICRegister. PDM saves the device instance,
197 * copies the callback tables (PDMPICREG), resolving the ring-0 and raw-mode
198 * addresses in the process, and hands back the pointer to a set of helper
199 * methods (PDMPICHLPR3). The PCI device then queries the ring-0 and raw-mode
200 * helpers using PDMPICHLPR3::pfnGetR0Helpers and PDMPICHLPR3::pfnGetRCHelpers.
201 * The PCI device repeats ths pfnGetRCHelpers call in it's relocation method
202 * since the address changes when RC is relocated.
203 *
204 * @see grp_pdm_device
205 *
206 * @section sec_pdm_usbdev The Pluggable USB Devices
207 *
208 * USB devices are handled a little bit differently than other devices. The
209 * general concepts wrt. pluggability are mostly the same, but the details
210 * varies. The registration entry point is 'VBoxUsbRegister', the device
211 * instance is PDMUSBINS and the callbacks helpers are different. Also, USB
212 * device are restricted to ring-3 and cannot have any ring-0 or raw-mode
213 * extensions (at least not yet).
214 *
215 * The way USB devices work differs greatly from other devices though since they
216 * aren't attaches directly to the PCI/ISA/whatever system buses but via a
217 * USB host control (OHCI, UHCI or EHCI). USB devices handle USB requests
218 * (URBs) and does not register I/O ports, MMIO ranges or PCI bus
219 * devices/functions.
220 *
221 * @see grp_pdm_usbdev
222 *
223 *
224 * @section sec_pdm_drv The Pluggable Drivers
225 *
226 * The VM devices are often accessing host hardware or OS facilities. For most
227 * devices these facilities can be abstracted in one or more levels. These
228 * abstractions are called drivers.
229 *
230 * For instance take a DVD/CD drive. This can be connected to a SCSI
231 * controller, an ATA controller or a SATA controller. The basics of the DVD/CD
232 * drive implementation remains the same - eject, insert, read, seek, and such.
233 * (For the scsi SCSCI, you might want to speak SCSI directly to, but that can of
234 * course be fixed - see SCSI passthru.) So, it
235 * makes much sense to have a generic CD/DVD driver which implements this.
236 *
237 * Then the media 'inserted' into the DVD/CD drive can be a ISO image, or it can
238 * be read from a real CD or DVD drive (there are probably other custom formats
239 * someone could desire to read or construct too). So, it would make sense to
240 * have abstracted interfaces for dealing with this in a generic way so the
241 * cdrom unit doesn't have to implement it all. Thus we have created the
242 * CDROM/DVD media driver family.
243 *
244 * So, for this example the IDE controller #1 (i.e. secondary) will have
245 * the DVD/CD Driver attached to it's LUN #0 (master). When a media is mounted
246 * the DVD/CD Driver will have a ISO, HostDVD or RAW (media) Driver attached.
247 *
248 * It is possible to configure many levels of drivers inserting filters, loggers,
249 * or whatever you desire into the chain. We're using this for network sniffing,
250 * for instance.
251 *
252 * The drivers are loaded in a similar manner to that of a device, namely by
253 * iterating a keyspace in CFGM, load the modules listed there and call
254 * 'VBoxDriversRegister' with a callback table.
255 *
256 * @see grp_pdm_driver
257 *
258 *
259 * @section sec_pdm_ifs Interfaces
260 *
261 * The pluggable drivers and devices expose one standard interface (callback
262 * table) which is used to construct, destruct, attach, detach,( ++,) and query
263 * other interfaces. A device will query the interfaces required for it's
264 * operation during init and hot-plug. PDM may query some interfaces during
265 * runtime mounting too.
266 *
267 * An interface here means a function table contained within the device or
268 * driver instance data. Its methods are invoked with the function table pointer
269 * as the first argument and they will calculate the address of the device or
270 * driver instance data from it. (This is one of the aspects which *might* have
271 * been better done in C++.)
272 *
273 * @see grp_pdm_interfaces
274 *
275 *
276 * @section sec_pdm_utils Utilities
277 *
278 * As mentioned earlier, PDM is the location of any usful constructs that doesn't
279 * quite fit into IPRT. The next subsections will discuss these.
280 *
281 * One thing these APIs all have in common is that resources will be associated
282 * with a device / driver and automatically freed after it has been destroyed if
283 * the destructor didn't do this.
284 *
285 *
286 * @subsection sec_pdm_async_completion Async I/O
287 *
288 * The PDM Async I/O API provides a somewhat platform agnostic interface for
289 * asynchronous I/O. For reasons of performance and complexity this does not
290 * build upon any IPRT API.
291 *
292 * @todo more details.
293 *
294 * @see grp_pdm_async_completion
295 *
296 *
297 * @subsection sec_pdm_async_task Async Task - not implemented
298 *
299 * @todo implement and describe
300 *
301 * @see grp_pdm_async_task
302 *
303 *
304 * @subsection sec_pdm_critsect Critical Section
305 *
306 * The PDM Critical Section API is currently building on the IPRT API with the
307 * same name. It adds the possibility to use critical sections in ring-0 and
308 * raw-mode as well as in ring-3. There are certain restrictions on the RC and
309 * R0 usage though since we're not able to wait on it, nor wake up anyone that
310 * is waiting on it. These restrictions origins with the use of a ring-3 event
311 * semaphore. In a later incarnation we plan to replace the ring-3 event
312 * semaphore with a ring-0 one, thus enabling us to wake up waiters while
313 * exectuing in ring-0 and making the hardware assisted execution mode more
314 * efficient. (Raw-mode won't benefit much from this, naturally.)
315 *
316 * @see grp_pdm_critsect
317 *
318 *
319 * @subsection sec_pdm_queue Queue
320 *
321 * The PDM Queue API is for queuing one or more tasks for later consumption in
322 * ring-3 by EMT, and optionally forcing a delayed or ASAP return to ring-3. The
323 * queues can also be run on a timer basis as an alternative to the ASAP thing.
324 * The queue will be flushed at forced action time.
325 *
326 * A queue can also be used by another thread (a I/O worker for instance) to
327 * send work / events over to the EMT.
328 *
329 * @see grp_pdm_queue
330 *
331 *
332 * @subsection sec_pdm_task Task - not implemented yet
333 *
334 * The PDM Task API is for flagging a task for execution at a later point when
335 * we're back in ring-3, optionally forcing the ring-3 return to happen ASAP.
336 * As you can see the concept is similar to queues only simpler.
337 *
338 * A task can also be scheduled by another thread (a I/O worker for instance) as
339 * a mean of getting something done in EMT.
340 *
341 * @see grp_pdm_task
342 *
343 *
344 * @subsection sec_pdm_thread Thread
345 *
346 * The PDM Thread API is there to help devices and drivers manage their threads
347 * correctly wrt. power on, suspend, resume, power off and destruction.
348 *
349 * The general usage pattern for threads in the employ of devices and drivers is
350 * that they shuffle data or requests while the VM is running and stop doing
351 * this when the VM is paused or powered down. Rogue threads running while the
352 * VM is paused can cause the state to change during saving or have other
353 * unwanted side effects. The PDM Threads API ensures that this won't happen.
354 *
355 * @see grp_pdm_thread
356 *
357 */
358
359
360/*********************************************************************************************************************************
361* Header Files *
362*********************************************************************************************************************************/
363#define LOG_GROUP LOG_GROUP_PDM
364#define PDMPCIDEV_INCLUDE_PRIVATE /* Hack to get pdmpcidevint.h included at the right point. */
365#include "PDMInternal.h"
366#include <VBox/vmm/pdm.h>
367#include <VBox/vmm/em.h>
368#include <VBox/vmm/mm.h>
369#include <VBox/vmm/pgm.h>
370#include <VBox/vmm/ssm.h>
371#include <VBox/vmm/hm.h>
372#include <VBox/vmm/vm.h>
373#include <VBox/vmm/uvm.h>
374#include <VBox/vmm/vmm.h>
375#include <VBox/param.h>
376#include <VBox/err.h>
377#include <VBox/sup.h>
378
379#include <VBox/log.h>
380#include <iprt/asm.h>
381#include <iprt/assert.h>
382#include <iprt/alloc.h>
383#include <iprt/ctype.h>
384#include <iprt/ldr.h>
385#include <iprt/path.h>
386#include <iprt/string.h>
387
388
389/*********************************************************************************************************************************
390* Defined Constants And Macros *
391*********************************************************************************************************************************/
392/** The PDM saved state version. */
393#define PDM_SAVED_STATE_VERSION 5
394/** Before the PDM audio architecture was introduced there was an "AudioSniffer"
395 * device which took care of multiplexing input/output audio data from/to various places.
396 * Thus this device is not needed/used anymore. */
397#define PDM_SAVED_STATE_VERSION_PRE_PDM_AUDIO 4
398#define PDM_SAVED_STATE_VERSION_PRE_NMI_FF 3
399
400/** The number of nanoseconds a suspend callback needs to take before
401 * PDMR3Suspend warns about it taking too long. */
402#define PDMSUSPEND_WARN_AT_NS UINT64_C(1200000000)
403
404/** The number of nanoseconds a suspend callback needs to take before
405 * PDMR3PowerOff warns about it taking too long. */
406#define PDMPOWEROFF_WARN_AT_NS UINT64_C( 900000000)
407
408
409/*********************************************************************************************************************************
410* Structures and Typedefs *
411*********************************************************************************************************************************/
412/**
413 * Statistics of asynchronous notification tasks - used by reset, suspend and
414 * power off.
415 */
416typedef struct PDMNOTIFYASYNCSTATS
417{
418 /** The start timestamp. */
419 uint64_t uStartNsTs;
420 /** When to log the next time. */
421 uint64_t cNsElapsedNextLog;
422 /** The loop counter. */
423 uint32_t cLoops;
424 /** The number of pending asynchronous notification tasks. */
425 uint32_t cAsync;
426 /** The name of the operation (log prefix). */
427 const char *pszOp;
428 /** The current list buffer position. */
429 size_t offList;
430 /** String containing a list of the pending tasks. */
431 char szList[1024];
432} PDMNOTIFYASYNCSTATS;
433/** Pointer to the stats of pending asynchronous notification tasks. */
434typedef PDMNOTIFYASYNCSTATS *PPDMNOTIFYASYNCSTATS;
435
436
437/*********************************************************************************************************************************
438* Internal Functions *
439*********************************************************************************************************************************/
440static DECLCALLBACK(int) pdmR3LiveExec(PVM pVM, PSSMHANDLE pSSM, uint32_t uPass);
441static DECLCALLBACK(int) pdmR3SaveExec(PVM pVM, PSSMHANDLE pSSM);
442static DECLCALLBACK(int) pdmR3LoadExec(PVM pVM, PSSMHANDLE pSSM, uint32_t uVersion, uint32_t uPass);
443static DECLCALLBACK(int) pdmR3LoadPrep(PVM pVM, PSSMHANDLE pSSM);
444
445static FNDBGFHANDLERINT pdmR3InfoTracingIds;
446
447
448/**
449 * Initializes the PDM part of the UVM.
450 *
451 * This doesn't really do much right now but has to be here for the sake
452 * of completeness.
453 *
454 * @returns VBox status code.
455 * @param pUVM Pointer to the user mode VM structure.
456 */
457VMMR3_INT_DECL(int) PDMR3InitUVM(PUVM pUVM)
458{
459 AssertCompile(sizeof(pUVM->pdm.s) <= sizeof(pUVM->pdm.padding));
460 AssertRelease(sizeof(pUVM->pdm.s) <= sizeof(pUVM->pdm.padding));
461 pUVM->pdm.s.pModules = NULL;
462 pUVM->pdm.s.pCritSects = NULL;
463 pUVM->pdm.s.pRwCritSects = NULL;
464 return RTCritSectInit(&pUVM->pdm.s.ListCritSect);
465}
466
467
468/**
469 * Initializes the PDM.
470 *
471 * @returns VBox status code.
472 * @param pVM The cross context VM structure.
473 */
474VMMR3_INT_DECL(int) PDMR3Init(PVM pVM)
475{
476 LogFlow(("PDMR3Init\n"));
477
478 /*
479 * Assert alignment and sizes.
480 */
481 AssertRelease(!(RT_UOFFSETOF(VM, pdm.s) & 31));
482 AssertRelease(sizeof(pVM->pdm.s) <= sizeof(pVM->pdm.padding));
483 AssertCompileMemberAlignment(PDM, CritSect, sizeof(uintptr_t));
484
485 /*
486 * Init the structure.
487 */
488 pVM->pdm.s.GCPhysVMMDevHeap = NIL_RTGCPHYS;
489 //pVM->pdm.s.idTracingDev = 0;
490 pVM->pdm.s.idTracingOther = 1024;
491
492 /*
493 * Initialize critical sections first.
494 */
495 int rc = pdmR3CritSectBothInitStatsAndInfo(pVM);
496 if (RT_SUCCESS(rc))
497 rc = PDMR3CritSectInit(pVM, &pVM->pdm.s.CritSect, RT_SRC_POS, "PDM");
498 if (RT_SUCCESS(rc))
499 {
500 rc = PDMR3CritSectInit(pVM, &pVM->pdm.s.NopCritSect, RT_SRC_POS, "NOP");
501 if (RT_SUCCESS(rc))
502 pVM->pdm.s.NopCritSect.s.Core.fFlags |= RTCRITSECT_FLAGS_NOP;
503 }
504
505 /*
506 * Initialize sub components.
507 */
508 if (RT_SUCCESS(rc))
509 rc = pdmR3TaskInit(pVM);
510 if (RT_SUCCESS(rc))
511 rc = pdmR3LdrInitU(pVM->pUVM);
512#ifdef VBOX_WITH_PDM_ASYNC_COMPLETION
513 if (RT_SUCCESS(rc))
514 rc = pdmR3AsyncCompletionInit(pVM);
515#endif
516#ifdef VBOX_WITH_NETSHAPER
517 if (RT_SUCCESS(rc))
518 rc = pdmR3NetShaperInit(pVM);
519#endif
520 if (RT_SUCCESS(rc))
521 rc = pdmR3BlkCacheInit(pVM);
522 if (RT_SUCCESS(rc))
523 rc = pdmR3DrvInit(pVM);
524 if (RT_SUCCESS(rc))
525 rc = pdmR3DevInit(pVM);
526 if (RT_SUCCESS(rc))
527 {
528 /*
529 * Register the saved state data unit.
530 */
531 rc = SSMR3RegisterInternal(pVM, "pdm", 1, PDM_SAVED_STATE_VERSION, 128,
532 NULL, pdmR3LiveExec, NULL,
533 NULL, pdmR3SaveExec, NULL,
534 pdmR3LoadPrep, pdmR3LoadExec, NULL);
535 if (RT_SUCCESS(rc))
536 {
537 /*
538 * Register the info handlers.
539 */
540 DBGFR3InfoRegisterInternal(pVM, "pdmtracingids",
541 "Displays the tracing IDs assigned by PDM to devices, USB device, drivers and more.",
542 pdmR3InfoTracingIds);
543
544 LogFlow(("PDM: Successfully initialized\n"));
545 return rc;
546 }
547 }
548
549 /*
550 * Cleanup and return failure.
551 */
552 PDMR3Term(pVM);
553 LogFlow(("PDMR3Init: returns %Rrc\n", rc));
554 return rc;
555}
556
557
558/**
559 * Init phase completed callback.
560 *
561 * We use this for calling PDMDEVREG::pfnInitComplete callback after everything
562 * else has been initialized.
563 *
564 * @returns VBox status code.
565 * @param pVM The cross context VM structure.
566 * @param enmWhat The phase that was completed.
567 */
568VMMR3_INT_DECL(int) PDMR3InitCompleted(PVM pVM, VMINITCOMPLETED enmWhat)
569{
570 if (enmWhat == VMINITCOMPLETED_RING0)
571 return pdmR3DevInitComplete(pVM);
572 return VINF_SUCCESS;
573}
574
575
576/**
577 * Applies relocations to data and code managed by this
578 * component. This function will be called at init and
579 * whenever the VMM need to relocate it self inside the GC.
580 *
581 * @param pVM The cross context VM structure.
582 * @param offDelta Relocation delta relative to old location.
583 * @remark The loader subcomponent is relocated by PDMR3LdrRelocate() very
584 * early in the relocation phase.
585 */
586VMMR3_INT_DECL(void) PDMR3Relocate(PVM pVM, RTGCINTPTR offDelta)
587{
588 LogFlow(("PDMR3Relocate\n"));
589 RT_NOREF(pVM, offDelta);
590
591#ifdef VBOX_WITH_RAW_MODE_KEEP /* needs fixing */
592 /*
593 * The registered PIC.
594 */
595 if (pVM->pdm.s.Pic.pDevInsRC)
596 {
597 pVM->pdm.s.Pic.pDevInsRC += offDelta;
598 pVM->pdm.s.Pic.pfnSetIrqRC += offDelta;
599 pVM->pdm.s.Pic.pfnGetInterruptRC += offDelta;
600 }
601
602 /*
603 * The registered APIC.
604 */
605 if (pVM->pdm.s.Apic.pDevInsRC)
606 pVM->pdm.s.Apic.pDevInsRC += offDelta;
607
608 /*
609 * The registered I/O APIC.
610 */
611 if (pVM->pdm.s.IoApic.pDevInsRC)
612 {
613 pVM->pdm.s.IoApic.pDevInsRC += offDelta;
614 pVM->pdm.s.IoApic.pfnSetIrqRC += offDelta;
615 if (pVM->pdm.s.IoApic.pfnSendMsiRC)
616 pVM->pdm.s.IoApic.pfnSendMsiRC += offDelta;
617 if (pVM->pdm.s.IoApic.pfnSetEoiRC)
618 pVM->pdm.s.IoApic.pfnSetEoiRC += offDelta;
619 }
620
621 /*
622 * Devices & Drivers.
623 */
624 int rc;
625 PCPDMDEVHLPRC pDevHlpRC = NIL_RTRCPTR;
626 if (VM_IS_RAW_MODE_ENABLED(pVM))
627 {
628 rc = PDMR3LdrGetSymbolRC(pVM, NULL, "g_pdmRCDevHlp", &pDevHlpRC);
629 AssertReleaseMsgRC(rc, ("rc=%Rrc when resolving g_pdmRCDevHlp\n", rc));
630 }
631
632 PCPDMDRVHLPRC pDrvHlpRC = NIL_RTRCPTR;
633 if (VM_IS_RAW_MODE_ENABLED(pVM))
634 {
635 rc = PDMR3LdrGetSymbolRC(pVM, NULL, "g_pdmRCDevHlp", &pDrvHlpRC);
636 AssertReleaseMsgRC(rc, ("rc=%Rrc when resolving g_pdmRCDevHlp\n", rc));
637 }
638
639 for (PPDMDEVINS pDevIns = pVM->pdm.s.pDevInstances; pDevIns; pDevIns = pDevIns->Internal.s.pNextR3)
640 {
641 if (pDevIns->pReg->fFlags & PDM_DEVREG_FLAGS_RC)
642 {
643 pDevIns->pHlpRC = pDevHlpRC;
644 pDevIns->pvInstanceDataRC = MMHyperR3ToRC(pVM, pDevIns->pvInstanceDataR3);
645 if (pDevIns->pCritSectRoR3)
646 pDevIns->pCritSectRoRC = MMHyperR3ToRC(pVM, pDevIns->pCritSectRoR3);
647 pDevIns->Internal.s.pVMRC = pVM->pVMRC;
648
649 PPDMPCIDEV pPciDev = pDevIns->Internal.s.pHeadPciDevR3;
650 if (pPciDev)
651 {
652 pDevIns->Internal.s.pHeadPciDevRC = MMHyperR3ToRC(pVM, pPciDev);
653 do
654 {
655 pPciDev->Int.s.pDevInsRC = MMHyperR3ToRC(pVM, pPciDev->Int.s.pDevInsR3);
656 pPciDev->Int.s.pPdmBusRC = MMHyperR3ToRC(pVM, pPciDev->Int.s.pPdmBusR3);
657 if (pPciDev->Int.s.pNextR3)
658 pPciDev->Int.s.pNextRC = MMHyperR3ToRC(pVM, pPciDev->Int.s.pNextR3);
659 pPciDev = pPciDev->Int.s.pNextR3;
660 } while (pPciDev);
661 }
662
663 if (pDevIns->pReg->pfnRelocate)
664 {
665 LogFlow(("PDMR3Relocate: Relocating device '%s'/%d\n",
666 pDevIns->pReg->szName, pDevIns->iInstance));
667 pDevIns->pReg->pfnRelocate(pDevIns, offDelta);
668 }
669 }
670
671 for (PPDMLUN pLun = pDevIns->Internal.s.pLunsR3; pLun; pLun = pLun->pNext)
672 {
673 for (PPDMDRVINS pDrvIns = pLun->pTop; pDrvIns; pDrvIns = pDrvIns->Internal.s.pDown)
674 {
675 if (pDrvIns->pReg->fFlags & PDM_DRVREG_FLAGS_RC)
676 {
677 pDrvIns->pHlpRC = pDrvHlpRC;
678 pDrvIns->pvInstanceDataRC = MMHyperR3ToRC(pVM, pDrvIns->pvInstanceDataR3);
679 pDrvIns->Internal.s.pVMRC = pVM->pVMRC;
680 if (pDrvIns->pReg->pfnRelocate)
681 {
682 LogFlow(("PDMR3Relocate: Relocating driver '%s'/%u attached to '%s'/%d/%u\n",
683 pDrvIns->pReg->szName, pDrvIns->iInstance,
684 pDevIns->pReg->szName, pDevIns->iInstance, pLun->iLun));
685 pDrvIns->pReg->pfnRelocate(pDrvIns, offDelta);
686 }
687 }
688 }
689 }
690
691 }
692#endif /* VBOX_WITH_RAW_MODE_KEEP */
693}
694
695
696/**
697 * Worker for pdmR3Term that terminates a LUN chain.
698 *
699 * @param pVM The cross context VM structure.
700 * @param pLun The head of the chain.
701 * @param pszDevice The name of the device (for logging).
702 * @param iInstance The device instance number (for logging).
703 */
704static void pdmR3TermLuns(PVM pVM, PPDMLUN pLun, const char *pszDevice, unsigned iInstance)
705{
706 RT_NOREF2(pszDevice, iInstance);
707
708 for (; pLun; pLun = pLun->pNext)
709 {
710 /*
711 * Destroy them one at a time from the bottom up.
712 * (The serial device/drivers depends on this - bad.)
713 */
714 PPDMDRVINS pDrvIns = pLun->pBottom;
715 pLun->pBottom = pLun->pTop = NULL;
716 while (pDrvIns)
717 {
718 PPDMDRVINS pDrvNext = pDrvIns->Internal.s.pUp;
719
720 if (pDrvIns->pReg->pfnDestruct)
721 {
722 LogFlow(("pdmR3DevTerm: Destroying - driver '%s'/%d on LUN#%d of device '%s'/%d\n",
723 pDrvIns->pReg->szName, pDrvIns->iInstance, pLun->iLun, pszDevice, iInstance));
724 pDrvIns->pReg->pfnDestruct(pDrvIns);
725 }
726 pDrvIns->Internal.s.pDrv->cInstances--;
727
728 /* Order of resource freeing like in pdmR3DrvDestroyChain, but
729 * not all need to be done as they are done globally later. */
730 //PDMR3QueueDestroyDriver(pVM, pDrvIns);
731 TMR3TimerDestroyDriver(pVM, pDrvIns);
732 SSMR3DeregisterDriver(pVM, pDrvIns, NULL, 0);
733 //pdmR3ThreadDestroyDriver(pVM, pDrvIns);
734 //DBGFR3InfoDeregisterDriver(pVM, pDrvIns, NULL);
735 //pdmR3CritSectBothDeleteDriver(pVM, pDrvIns);
736 //PDMR3BlkCacheReleaseDriver(pVM, pDrvIns);
737#ifdef VBOX_WITH_PDM_ASYNC_COMPLETION
738 //pdmR3AsyncCompletionTemplateDestroyDriver(pVM, pDrvIns);
739#endif
740
741 /* Clear the driver struture to catch sloppy code. */
742 ASMMemFill32(pDrvIns, RT_UOFFSETOF_DYN(PDMDRVINS, achInstanceData[pDrvIns->pReg->cbInstance]), 0xdeadd0d0);
743
744 pDrvIns = pDrvNext;
745 }
746 }
747}
748
749
750/**
751 * Terminates the PDM.
752 *
753 * Termination means cleaning up and freeing all resources,
754 * the VM it self is at this point powered off or suspended.
755 *
756 * @returns VBox status code.
757 * @param pVM The cross context VM structure.
758 */
759VMMR3_INT_DECL(int) PDMR3Term(PVM pVM)
760{
761 LogFlow(("PDMR3Term:\n"));
762 AssertMsg(PDMCritSectIsInitialized(&pVM->pdm.s.CritSect), ("bad init order!\n"));
763
764 /*
765 * Iterate the device instances and attach drivers, doing
766 * relevant destruction processing.
767 *
768 * N.B. There is no need to mess around freeing memory allocated
769 * from any MM heap since MM will do that in its Term function.
770 */
771 /* usb ones first. */
772 for (PPDMUSBINS pUsbIns = pVM->pdm.s.pUsbInstances; pUsbIns; pUsbIns = pUsbIns->Internal.s.pNext)
773 {
774 pdmR3TermLuns(pVM, pUsbIns->Internal.s.pLuns, pUsbIns->pReg->szName, pUsbIns->iInstance);
775
776 /*
777 * Detach it from the HUB (if it's actually attached to one) so the HUB has
778 * a chance to stop accessing any data.
779 */
780 PPDMUSBHUB pHub = pUsbIns->Internal.s.pHub;
781 if (pHub)
782 {
783 int rc = pHub->Reg.pfnDetachDevice(pHub->pDrvIns, pUsbIns, pUsbIns->Internal.s.iPort);
784 if (RT_FAILURE(rc))
785 {
786 LogRel(("PDM: Failed to detach USB device '%s' instance %d from %p: %Rrc\n",
787 pUsbIns->pReg->szName, pUsbIns->iInstance, pHub, rc));
788 }
789 else
790 {
791 pHub->cAvailablePorts++;
792 Assert(pHub->cAvailablePorts > 0 && pHub->cAvailablePorts <= pHub->cPorts);
793 pUsbIns->Internal.s.pHub = NULL;
794 }
795 }
796
797 if (pUsbIns->pReg->pfnDestruct)
798 {
799 LogFlow(("pdmR3DevTerm: Destroying - device '%s'/%d\n",
800 pUsbIns->pReg->szName, pUsbIns->iInstance));
801 pUsbIns->pReg->pfnDestruct(pUsbIns);
802 }
803
804 //TMR3TimerDestroyUsb(pVM, pUsbIns);
805 //SSMR3DeregisterUsb(pVM, pUsbIns, NULL, 0);
806 pdmR3ThreadDestroyUsb(pVM, pUsbIns);
807
808 if (pUsbIns->pszName)
809 {
810 RTStrFree(pUsbIns->pszName); /* See the RTStrDup() call in PDMUsb.cpp:pdmR3UsbCreateDevice. */
811 pUsbIns->pszName = NULL;
812 }
813 }
814
815 /* then the 'normal' ones. */
816 for (PPDMDEVINS pDevIns = pVM->pdm.s.pDevInstances; pDevIns; pDevIns = pDevIns->Internal.s.pNextR3)
817 {
818 pdmR3TermLuns(pVM, pDevIns->Internal.s.pLunsR3, pDevIns->pReg->szName, pDevIns->iInstance);
819
820 if (pDevIns->pReg->pfnDestruct)
821 {
822 LogFlow(("pdmR3DevTerm: Destroying - device '%s'/%d\n", pDevIns->pReg->szName, pDevIns->iInstance));
823 pDevIns->pReg->pfnDestruct(pDevIns);
824 }
825
826 if (pDevIns->Internal.s.fIntFlags & PDMDEVINSINT_FLAGS_R0_CONTRUCT)
827 {
828 LogFlow(("pdmR3DevTerm: Destroying (ring-0) - device '%s'/%d\n", pDevIns->pReg->szName, pDevIns->iInstance));
829 PDMDEVICEGENCALLREQ Req;
830 RT_ZERO(Req.Params);
831 Req.Hdr.u32Magic = SUPVMMR0REQHDR_MAGIC;
832 Req.Hdr.cbReq = sizeof(Req);
833 Req.enmCall = PDMDEVICEGENCALL_DESTRUCT;
834 Req.idxR0Device = pDevIns->Internal.s.idxR0Device;
835 Req.pDevInsR3 = pDevIns;
836 int rc2 = VMMR3CallR0(pVM, VMMR0_DO_PDM_DEVICE_GEN_CALL, 0, &Req.Hdr);
837 AssertRC(rc2);
838 }
839
840 if (pDevIns->Internal.s.paDbgfTraceTrack)
841 {
842 RTMemFree(pDevIns->Internal.s.paDbgfTraceTrack);
843 pDevIns->Internal.s.paDbgfTraceTrack = NULL;
844 }
845
846#ifdef VBOX_WITH_DBGF_TRACING
847 if (pDevIns->Internal.s.hDbgfTraceEvtSrc != NIL_DBGFTRACEREVTSRC)
848 {
849 DBGFR3TracerDeregisterEvtSrc(pVM, pDevIns->Internal.s.hDbgfTraceEvtSrc);
850 pDevIns->Internal.s.hDbgfTraceEvtSrc = NIL_DBGFTRACEREVTSRC;
851 }
852#endif
853
854 TMR3TimerDestroyDevice(pVM, pDevIns);
855 SSMR3DeregisterDevice(pVM, pDevIns, NULL, 0);
856 pdmR3CritSectBothDeleteDevice(pVM, pDevIns);
857 pdmR3ThreadDestroyDevice(pVM, pDevIns);
858 PDMR3QueueDestroyDevice(pVM, pDevIns);
859#if 0
860 PGMR3PhysMmio2Deregister(pVM, pDevIns, NIL_PGMMMIO2HANDLE);
861#endif
862#ifdef VBOX_WITH_PDM_ASYNC_COMPLETION
863 pdmR3AsyncCompletionTemplateDestroyDevice(pVM, pDevIns);
864#endif
865 DBGFR3InfoDeregisterDevice(pVM, pDevIns, NULL);
866 }
867
868 /*
869 * Destroy all threads.
870 */
871 pdmR3ThreadDestroyAll(pVM);
872
873 /*
874 * Destroy the block cache.
875 */
876 pdmR3BlkCacheTerm(pVM);
877
878#ifdef VBOX_WITH_NETSHAPER
879 /*
880 * Destroy network bandwidth groups.
881 */
882 pdmR3NetShaperTerm(pVM);
883#endif
884#ifdef VBOX_WITH_PDM_ASYNC_COMPLETION
885 /*
886 * Free async completion managers.
887 */
888 pdmR3AsyncCompletionTerm(pVM);
889#endif
890
891 /*
892 * Free modules.
893 */
894 pdmR3LdrTermU(pVM->pUVM, false /*fFinal*/);
895
896 /*
897 * Stop task threads.
898 */
899 pdmR3TaskTerm(pVM);
900
901 /*
902 * Cleanup any leftover queues.
903 */
904 pdmR3QueueTerm(pVM);
905
906 /*
907 * Destroy the PDM lock.
908 */
909 PDMR3CritSectDelete(pVM, &pVM->pdm.s.CritSect);
910 /* The MiscCritSect is deleted by PDMR3CritSectBothTerm later. */
911
912 LogFlow(("PDMR3Term: returns %Rrc\n", VINF_SUCCESS));
913 return VINF_SUCCESS;
914}
915
916
917/**
918 * Terminates the PDM part of the UVM.
919 *
920 * This will unload any modules left behind.
921 *
922 * @param pUVM Pointer to the user mode VM structure.
923 */
924VMMR3_INT_DECL(void) PDMR3TermUVM(PUVM pUVM)
925{
926 /*
927 * In the normal cause of events we will now call pdmR3LdrTermU for
928 * the second time. In the case of init failure however, this might
929 * the first time, which is why we do it.
930 */
931 pdmR3LdrTermU(pUVM, true /*fFinal*/);
932
933 Assert(pUVM->pdm.s.pCritSects == NULL);
934 Assert(pUVM->pdm.s.pRwCritSects == NULL);
935 RTCritSectDelete(&pUVM->pdm.s.ListCritSect);
936}
937
938
939/**
940 * For APIC assertions.
941 *
942 * @returns true if we've loaded state.
943 * @param pVM The cross context VM structure.
944 */
945VMMR3_INT_DECL(bool) PDMR3HasLoadedState(PVM pVM)
946{
947 return pVM->pdm.s.fStateLoaded;
948}
949
950
951/**
952 * Bits that are saved in pass 0 and in the final pass.
953 *
954 * @param pVM The cross context VM structure.
955 * @param pSSM The saved state handle.
956 */
957static void pdmR3SaveBoth(PVM pVM, PSSMHANDLE pSSM)
958{
959 /*
960 * Save the list of device instances so we can check that they're all still
961 * there when we load the state and that nothing new has been added.
962 */
963 uint32_t i = 0;
964 for (PPDMDEVINS pDevIns = pVM->pdm.s.pDevInstances; pDevIns; pDevIns = pDevIns->Internal.s.pNextR3, i++)
965 {
966 SSMR3PutU32(pSSM, i);
967 SSMR3PutStrZ(pSSM, pDevIns->pReg->szName);
968 SSMR3PutU32(pSSM, pDevIns->iInstance);
969 }
970 SSMR3PutU32(pSSM, UINT32_MAX); /* terminator */
971}
972
973
974/**
975 * Live save.
976 *
977 * @returns VBox status code.
978 * @param pVM The cross context VM structure.
979 * @param pSSM The saved state handle.
980 * @param uPass The pass.
981 */
982static DECLCALLBACK(int) pdmR3LiveExec(PVM pVM, PSSMHANDLE pSSM, uint32_t uPass)
983{
984 LogFlow(("pdmR3LiveExec:\n"));
985 AssertReturn(uPass == 0, VERR_SSM_UNEXPECTED_PASS);
986 pdmR3SaveBoth(pVM, pSSM);
987 return VINF_SSM_DONT_CALL_AGAIN;
988}
989
990
991/**
992 * Execute state save operation.
993 *
994 * @returns VBox status code.
995 * @param pVM The cross context VM structure.
996 * @param pSSM The saved state handle.
997 */
998static DECLCALLBACK(int) pdmR3SaveExec(PVM pVM, PSSMHANDLE pSSM)
999{
1000 LogFlow(("pdmR3SaveExec:\n"));
1001
1002 /*
1003 * Save interrupt and DMA states.
1004 */
1005 for (VMCPUID idCpu = 0; idCpu < pVM->cCpus; idCpu++)
1006 {
1007 PVMCPU pVCpu = pVM->apCpusR3[idCpu];
1008#if defined(VBOX_VMM_TARGET_ARMV8)
1009 SSMR3PutU32(pSSM, VMCPU_FF_IS_SET(pVCpu, VMCPU_FF_INTERRUPT_IRQ));
1010 SSMR3PutU32(pSSM, VMCPU_FF_IS_SET(pVCpu, VMCPU_FF_INTERRUPT_FIQ));
1011#else
1012 SSMR3PutU32(pSSM, VMCPU_FF_IS_SET(pVCpu, VMCPU_FF_INTERRUPT_APIC));
1013 SSMR3PutU32(pSSM, VMCPU_FF_IS_SET(pVCpu, VMCPU_FF_INTERRUPT_PIC));
1014#endif
1015 SSMR3PutU32(pSSM, VMCPU_FF_IS_SET(pVCpu, VMCPU_FF_INTERRUPT_NMI));
1016 SSMR3PutU32(pSSM, VMCPU_FF_IS_SET(pVCpu, VMCPU_FF_INTERRUPT_SMI));
1017 }
1018 SSMR3PutU32(pSSM, VM_FF_IS_SET(pVM, VM_FF_PDM_DMA));
1019
1020 pdmR3SaveBoth(pVM, pSSM);
1021 return VINF_SUCCESS;
1022}
1023
1024
1025/**
1026 * Prepare state load operation.
1027 *
1028 * This will dispatch pending operations and clear the FFs governed by PDM and its devices.
1029 *
1030 * @returns VBox status code.
1031 * @param pVM The cross context VM structure.
1032 * @param pSSM The SSM handle.
1033 */
1034static DECLCALLBACK(int) pdmR3LoadPrep(PVM pVM, PSSMHANDLE pSSM)
1035{
1036 LogFlow(("pdmR3LoadPrep: %s%s\n",
1037 VM_FF_IS_SET(pVM, VM_FF_PDM_QUEUES) ? " VM_FF_PDM_QUEUES" : "",
1038 VM_FF_IS_SET(pVM, VM_FF_PDM_DMA) ? " VM_FF_PDM_DMA" : ""));
1039#ifdef LOG_ENABLED
1040 for (VMCPUID idCpu = 0; idCpu < pVM->cCpus; idCpu++)
1041 {
1042 PVMCPU pVCpu = pVM->apCpusR3[idCpu];
1043#if defined(VBOX_VMM_TARGET_ARMV8)
1044 LogFlow(("pdmR3LoadPrep: VCPU %u %s%s\n", idCpu,
1045 VMCPU_FF_IS_SET(pVCpu, VMCPU_FF_INTERRUPT_IRQ) ? " VMCPU_FF_INTERRUPT_IRQ" : "",
1046 VMCPU_FF_IS_SET(pVCpu, VMCPU_FF_INTERRUPT_FIQ) ? " VMCPU_FF_INTERRUPT_FIQ" : ""));
1047#else
1048 LogFlow(("pdmR3LoadPrep: VCPU %u %s%s\n", idCpu,
1049 VMCPU_FF_IS_SET(pVCpu, VMCPU_FF_INTERRUPT_APIC) ? " VMCPU_FF_INTERRUPT_APIC" : "",
1050 VMCPU_FF_IS_SET(pVCpu, VMCPU_FF_INTERRUPT_PIC) ? " VMCPU_FF_INTERRUPT_PIC" : ""));
1051#endif
1052 }
1053#endif
1054 NOREF(pSSM);
1055
1056 /*
1057 * In case there is work pending that will raise an interrupt,
1058 * start a DMA transfer, or release a lock. (unlikely)
1059 */
1060 if (VM_FF_IS_SET(pVM, VM_FF_PDM_QUEUES))
1061 PDMR3QueueFlushAll(pVM);
1062
1063 /* Clear the FFs. */
1064 for (VMCPUID idCpu = 0; idCpu < pVM->cCpus; idCpu++)
1065 {
1066 PVMCPU pVCpu = pVM->apCpusR3[idCpu];
1067#if defined(VBOX_VMM_TARGET_ARMV8)
1068 VMCPU_FF_CLEAR(pVCpu, VMCPU_FF_INTERRUPT_IRQ);
1069 VMCPU_FF_CLEAR(pVCpu, VMCPU_FF_INTERRUPT_FIQ);
1070#else
1071 VMCPU_FF_CLEAR(pVCpu, VMCPU_FF_INTERRUPT_APIC);
1072 VMCPU_FF_CLEAR(pVCpu, VMCPU_FF_INTERRUPT_PIC);
1073#endif
1074 VMCPU_FF_CLEAR(pVCpu, VMCPU_FF_INTERRUPT_NMI);
1075 VMCPU_FF_CLEAR(pVCpu, VMCPU_FF_INTERRUPT_SMI);
1076 }
1077 VM_FF_CLEAR(pVM, VM_FF_PDM_DMA);
1078
1079 return VINF_SUCCESS;
1080}
1081
1082
1083/**
1084 * Execute state load operation.
1085 *
1086 * @returns VBox status code.
1087 * @param pVM The cross context VM structure.
1088 * @param pSSM SSM operation handle.
1089 * @param uVersion Data layout version.
1090 * @param uPass The data pass.
1091 */
1092static DECLCALLBACK(int) pdmR3LoadExec(PVM pVM, PSSMHANDLE pSSM, uint32_t uVersion, uint32_t uPass)
1093{
1094 int rc;
1095
1096 LogFlow(("pdmR3LoadExec: uPass=%#x\n", uPass));
1097
1098 /*
1099 * Validate version.
1100 */
1101 if ( uVersion != PDM_SAVED_STATE_VERSION
1102 && uVersion != PDM_SAVED_STATE_VERSION_PRE_NMI_FF
1103 && uVersion != PDM_SAVED_STATE_VERSION_PRE_PDM_AUDIO)
1104 {
1105 AssertMsgFailed(("Invalid version uVersion=%d!\n", uVersion));
1106 return VERR_SSM_UNSUPPORTED_DATA_UNIT_VERSION;
1107 }
1108
1109 if (uPass == SSM_PASS_FINAL)
1110 {
1111 /*
1112 * Load the interrupt and DMA states.
1113 *
1114 * The APIC, PIC and DMA devices does not restore these, we do. In the
1115 * APIC and PIC cases, it is possible that some devices is incorrectly
1116 * setting IRQs during restore. We'll warn when this happens. (There
1117 * are debug assertions in PDMDevMiscHlp.cpp and APICAll.cpp for
1118 * catching the buggy device.)
1119 */
1120 for (VMCPUID idCpu = 0; idCpu < pVM->cCpus; idCpu++)
1121 {
1122 PVMCPU pVCpu = pVM->apCpusR3[idCpu];
1123
1124 /* APIC/IRQ interrupt */
1125 uint32_t fInterruptPending = 0;
1126 rc = SSMR3GetU32(pSSM, &fInterruptPending);
1127 if (RT_FAILURE(rc))
1128 return rc;
1129 if (fInterruptPending & ~1)
1130 {
1131 AssertMsgFailed(("fInterruptPending=%#x (APIC)\n", fInterruptPending));
1132 return VERR_SSM_DATA_UNIT_FORMAT_CHANGED;
1133 }
1134#if defined(VBOX_VMM_TARGET_ARMV8)
1135 AssertLogRelMsg(!VMCPU_FF_IS_SET(pVCpu, VMCPU_FF_INTERRUPT_IRQ),
1136 ("VCPU%03u: VMCPU_FF_INTERRUPT_IRQ set! Devices shouldn't set interrupts during state restore...\n", idCpu));
1137 if (fInterruptPending)
1138 VMCPU_FF_SET(pVCpu, VMCPU_FF_INTERRUPT_IRQ);
1139#else
1140 AssertLogRelMsg(!VMCPU_FF_IS_SET(pVCpu, VMCPU_FF_INTERRUPT_APIC),
1141 ("VCPU%03u: VMCPU_FF_INTERRUPT_APIC set! Devices shouldn't set interrupts during state restore...\n", idCpu));
1142 if (fInterruptPending)
1143 VMCPU_FF_SET(pVCpu, VMCPU_FF_INTERRUPT_APIC);
1144#endif
1145
1146 /* PIC/FIQ interrupt */
1147 fInterruptPending = 0;
1148 rc = SSMR3GetU32(pSSM, &fInterruptPending);
1149 if (RT_FAILURE(rc))
1150 return rc;
1151 if (fInterruptPending & ~1)
1152 {
1153 AssertMsgFailed(("fInterruptPending=%#x (PIC)\n", fInterruptPending));
1154 return VERR_SSM_DATA_UNIT_FORMAT_CHANGED;
1155 }
1156#if defined(VBOX_VMM_TARGET_ARMV8)
1157 AssertLogRelMsg(!VMCPU_FF_IS_SET(pVCpu, VMCPU_FF_INTERRUPT_FIQ),
1158 ("VCPU%03u: VMCPU_FF_INTERRUPT_FIQ set! Devices shouldn't set interrupts during state restore...\n", idCpu));
1159 if (fInterruptPending)
1160 VMCPU_FF_SET(pVCpu, VMCPU_FF_INTERRUPT_FIQ);
1161#else
1162 AssertLogRelMsg(!VMCPU_FF_IS_SET(pVCpu, VMCPU_FF_INTERRUPT_PIC),
1163 ("VCPU%03u: VMCPU_FF_INTERRUPT_PIC set! Devices shouldn't set interrupts during state restore...\n", idCpu));
1164 if (fInterruptPending)
1165 VMCPU_FF_SET(pVCpu, VMCPU_FF_INTERRUPT_PIC);
1166#endif
1167
1168 if (uVersion > PDM_SAVED_STATE_VERSION_PRE_NMI_FF)
1169 {
1170 /* NMI interrupt */
1171 fInterruptPending = 0;
1172 rc = SSMR3GetU32(pSSM, &fInterruptPending);
1173 if (RT_FAILURE(rc))
1174 return rc;
1175 if (fInterruptPending & ~1)
1176 {
1177 AssertMsgFailed(("fInterruptPending=%#x (NMI)\n", fInterruptPending));
1178 return VERR_SSM_DATA_UNIT_FORMAT_CHANGED;
1179 }
1180 AssertLogRelMsg(!VMCPU_FF_IS_SET(pVCpu, VMCPU_FF_INTERRUPT_NMI), ("VCPU%3u: VMCPU_FF_INTERRUPT_NMI set!\n", idCpu));
1181 if (fInterruptPending)
1182 VMCPU_FF_SET(pVCpu, VMCPU_FF_INTERRUPT_NMI);
1183
1184 /* SMI interrupt */
1185 fInterruptPending = 0;
1186 rc = SSMR3GetU32(pSSM, &fInterruptPending);
1187 if (RT_FAILURE(rc))
1188 return rc;
1189 if (fInterruptPending & ~1)
1190 {
1191 AssertMsgFailed(("fInterruptPending=%#x (SMI)\n", fInterruptPending));
1192 return VERR_SSM_DATA_UNIT_FORMAT_CHANGED;
1193 }
1194 AssertLogRelMsg(!VMCPU_FF_IS_SET(pVCpu, VMCPU_FF_INTERRUPT_SMI), ("VCPU%3u: VMCPU_FF_INTERRUPT_SMI set!\n", idCpu));
1195 if (fInterruptPending)
1196 VMCPU_FF_SET(pVCpu, VMCPU_FF_INTERRUPT_SMI);
1197 }
1198 }
1199
1200 /* DMA pending */
1201 uint32_t fDMAPending = 0;
1202 rc = SSMR3GetU32(pSSM, &fDMAPending);
1203 if (RT_FAILURE(rc))
1204 return rc;
1205 if (fDMAPending & ~1)
1206 {
1207 AssertMsgFailed(("fDMAPending=%#x\n", fDMAPending));
1208 return VERR_SSM_DATA_UNIT_FORMAT_CHANGED;
1209 }
1210 if (fDMAPending)
1211 VM_FF_SET(pVM, VM_FF_PDM_DMA);
1212 Log(("pdmR3LoadExec: VM_FF_PDM_DMA=%RTbool\n", VM_FF_IS_SET(pVM, VM_FF_PDM_DMA)));
1213 }
1214
1215 /*
1216 * Load the list of devices and verify that they are all there.
1217 */
1218 for (PPDMDEVINS pDevIns = pVM->pdm.s.pDevInstances; pDevIns; pDevIns = pDevIns->Internal.s.pNextR3)
1219 pDevIns->Internal.s.fIntFlags &= ~PDMDEVINSINT_FLAGS_FOUND;
1220
1221 for (uint32_t i = 0; ; i++)
1222 {
1223 /* Get the sequence number / terminator. */
1224 uint32_t u32Sep;
1225 rc = SSMR3GetU32(pSSM, &u32Sep);
1226 if (RT_FAILURE(rc))
1227 return rc;
1228 if (u32Sep == UINT32_MAX)
1229 break;
1230 if (u32Sep != i)
1231 AssertMsgFailedReturn(("Out of sequence. u32Sep=%#x i=%#x\n", u32Sep, i), VERR_SSM_DATA_UNIT_FORMAT_CHANGED);
1232
1233 /* Get the name and instance number. */
1234 char szName[RT_SIZEOFMEMB(PDMDEVREG, szName)];
1235 rc = SSMR3GetStrZ(pSSM, szName, sizeof(szName));
1236 if (RT_FAILURE(rc))
1237 return rc;
1238 uint32_t iInstance;
1239 rc = SSMR3GetU32(pSSM, &iInstance);
1240 if (RT_FAILURE(rc))
1241 return rc;
1242
1243 /* Try locate it. */
1244 PPDMDEVINS pDevIns;
1245 for (pDevIns = pVM->pdm.s.pDevInstances; pDevIns; pDevIns = pDevIns->Internal.s.pNextR3)
1246 if ( !RTStrCmp(szName, pDevIns->pReg->szName)
1247 && pDevIns->iInstance == iInstance)
1248 {
1249 AssertLogRelMsgReturn(!(pDevIns->Internal.s.fIntFlags & PDMDEVINSINT_FLAGS_FOUND),
1250 ("%s/#%u\n", pDevIns->pReg->szName, pDevIns->iInstance),
1251 VERR_SSM_DATA_UNIT_FORMAT_CHANGED);
1252 pDevIns->Internal.s.fIntFlags |= PDMDEVINSINT_FLAGS_FOUND;
1253 break;
1254 }
1255
1256 if (!pDevIns)
1257 {
1258 bool fSkip = false;
1259
1260 /* Skip the non-existing (deprecated) "AudioSniffer" device stored in the saved state. */
1261 if ( uVersion <= PDM_SAVED_STATE_VERSION_PRE_PDM_AUDIO
1262 && !RTStrCmp(szName, "AudioSniffer"))
1263 fSkip = true;
1264
1265 if (!fSkip)
1266 {
1267 LogRel(("Device '%s'/%d not found in current config\n", szName, iInstance));
1268 if (SSMR3HandleGetAfter(pSSM) != SSMAFTER_DEBUG_IT)
1269 return SSMR3SetCfgError(pSSM, RT_SRC_POS, N_("Device '%s'/%d not found in current config"), szName, iInstance);
1270 }
1271 }
1272 }
1273
1274 /*
1275 * Check that no additional devices were configured.
1276 */
1277 for (PPDMDEVINS pDevIns = pVM->pdm.s.pDevInstances; pDevIns; pDevIns = pDevIns->Internal.s.pNextR3)
1278 if (!(pDevIns->Internal.s.fIntFlags & PDMDEVINSINT_FLAGS_FOUND))
1279 {
1280 LogRel(("Device '%s'/%d not found in the saved state\n", pDevIns->pReg->szName, pDevIns->iInstance));
1281 /** @todo The TPM PPI device was added due to @bugref{10701} and it is not an issue if it isn't there
1282 * in the saved state because there is nothing to load. It might make sense to add a new
1283 * flag to PDMDEVREG::fFlags to indicate that having a new device added for a saved state is okay.
1284 * (For now I just want to get saved states unwedged).
1285 */
1286 if ( SSMR3HandleGetAfter(pSSM) != SSMAFTER_DEBUG_IT
1287 && RTStrCmp(pDevIns->pReg->szName, "tpm-ppi"))
1288 return SSMR3SetCfgError(pSSM, RT_SRC_POS, N_("Device '%s'/%d not found in the saved state"),
1289 pDevIns->pReg->szName, pDevIns->iInstance);
1290 }
1291
1292
1293 /*
1294 * Indicate that we've been called (for assertions).
1295 */
1296 pVM->pdm.s.fStateLoaded = true;
1297
1298 return VINF_SUCCESS;
1299}
1300
1301
1302/**
1303 * Worker for PDMR3PowerOn that deals with one driver.
1304 *
1305 * @param pDrvIns The driver instance.
1306 * @param pszDevName The parent device name.
1307 * @param iDevInstance The parent device instance number.
1308 * @param iLun The parent LUN number.
1309 */
1310DECLINLINE(int) pdmR3PowerOnDrv(PPDMDRVINS pDrvIns, const char *pszDevName, uint32_t iDevInstance, uint32_t iLun)
1311{
1312 Assert(pDrvIns->Internal.s.fVMSuspended);
1313 if (pDrvIns->pReg->pfnPowerOn)
1314 {
1315 LogFlow(("PDMR3PowerOn: Notifying - driver '%s'/%d on LUN#%d of device '%s'/%d\n",
1316 pDrvIns->pReg->szName, pDrvIns->iInstance, iLun, pszDevName, iDevInstance));
1317 int rc = VINF_SUCCESS; pDrvIns->pReg->pfnPowerOn(pDrvIns);
1318 if (RT_FAILURE(rc))
1319 {
1320 LogRel(("PDMR3PowerOn: Driver '%s'/%d on LUN#%d of device '%s'/%d -> %Rrc\n",
1321 pDrvIns->pReg->szName, pDrvIns->iInstance, iLun, pszDevName, iDevInstance, rc));
1322 return rc;
1323 }
1324 }
1325 pDrvIns->Internal.s.fVMSuspended = false;
1326 return VINF_SUCCESS;
1327}
1328
1329
1330/**
1331 * Worker for PDMR3PowerOn that deals with one USB device instance.
1332 *
1333 * @returns VBox status code.
1334 * @param pUsbIns The USB device instance.
1335 */
1336DECLINLINE(int) pdmR3PowerOnUsb(PPDMUSBINS pUsbIns)
1337{
1338 Assert(pUsbIns->Internal.s.fVMSuspended);
1339 if (pUsbIns->pReg->pfnVMPowerOn)
1340 {
1341 LogFlow(("PDMR3PowerOn: Notifying - device '%s'/%d\n", pUsbIns->pReg->szName, pUsbIns->iInstance));
1342 int rc = VINF_SUCCESS; pUsbIns->pReg->pfnVMPowerOn(pUsbIns);
1343 if (RT_FAILURE(rc))
1344 {
1345 LogRel(("PDMR3PowerOn: Device '%s'/%d -> %Rrc\n", pUsbIns->pReg->szName, pUsbIns->iInstance, rc));
1346 return rc;
1347 }
1348 }
1349 pUsbIns->Internal.s.fVMSuspended = false;
1350 return VINF_SUCCESS;
1351}
1352
1353
1354/**
1355 * Worker for PDMR3PowerOn that deals with one device instance.
1356 *
1357 * @returns VBox status code.
1358 * @param pVM The cross context VM structure.
1359 * @param pDevIns The device instance.
1360 */
1361DECLINLINE(int) pdmR3PowerOnDev(PVM pVM, PPDMDEVINS pDevIns)
1362{
1363 Assert(pDevIns->Internal.s.fIntFlags & PDMDEVINSINT_FLAGS_SUSPENDED);
1364 if (pDevIns->pReg->pfnPowerOn)
1365 {
1366 LogFlow(("PDMR3PowerOn: Notifying - device '%s'/%d\n", pDevIns->pReg->szName, pDevIns->iInstance));
1367 PDMCritSectEnter(pVM, pDevIns->pCritSectRoR3, VERR_IGNORED);
1368 int rc = VINF_SUCCESS; pDevIns->pReg->pfnPowerOn(pDevIns);
1369 PDMCritSectLeave(pVM, pDevIns->pCritSectRoR3);
1370 if (RT_FAILURE(rc))
1371 {
1372 LogRel(("PDMR3PowerOn: Device '%s'/%d -> %Rrc\n", pDevIns->pReg->szName, pDevIns->iInstance, rc));
1373 return rc;
1374 }
1375 }
1376 pDevIns->Internal.s.fIntFlags &= ~PDMDEVINSINT_FLAGS_SUSPENDED;
1377 return VINF_SUCCESS;
1378}
1379
1380
1381/**
1382 * This function will notify all the devices and their
1383 * attached drivers about the VM now being powered on.
1384 *
1385 * @param pVM The cross context VM structure.
1386 */
1387VMMR3DECL(void) PDMR3PowerOn(PVM pVM)
1388{
1389 LogFlow(("PDMR3PowerOn:\n"));
1390
1391 /*
1392 * Iterate thru the device instances and USB device instances,
1393 * processing the drivers associated with those.
1394 */
1395 int rc = VINF_SUCCESS;
1396 for (PPDMDEVINS pDevIns = pVM->pdm.s.pDevInstances; pDevIns && RT_SUCCESS(rc); pDevIns = pDevIns->Internal.s.pNextR3)
1397 {
1398 for (PPDMLUN pLun = pDevIns->Internal.s.pLunsR3; pLun && RT_SUCCESS(rc); pLun = pLun->pNext)
1399 for (PPDMDRVINS pDrvIns = pLun->pTop; pDrvIns && RT_SUCCESS(rc); pDrvIns = pDrvIns->Internal.s.pDown)
1400 rc = pdmR3PowerOnDrv(pDrvIns, pDevIns->pReg->szName, pDevIns->iInstance, pLun->iLun);
1401 if (RT_SUCCESS(rc))
1402 rc = pdmR3PowerOnDev(pVM, pDevIns);
1403 }
1404
1405#ifdef VBOX_WITH_USB
1406 for (PPDMUSBINS pUsbIns = pVM->pdm.s.pUsbInstances; pUsbIns && RT_SUCCESS(rc); pUsbIns = pUsbIns->Internal.s.pNext)
1407 {
1408 for (PPDMLUN pLun = pUsbIns->Internal.s.pLuns; pLun && RT_SUCCESS(rc); pLun = pLun->pNext)
1409 for (PPDMDRVINS pDrvIns = pLun->pTop; pDrvIns && RT_SUCCESS(rc); pDrvIns = pDrvIns->Internal.s.pDown)
1410 rc = pdmR3PowerOnDrv(pDrvIns, pUsbIns->pReg->szName, pUsbIns->iInstance, pLun->iLun);
1411 if (RT_SUCCESS(rc))
1412 rc = pdmR3PowerOnUsb(pUsbIns);
1413 }
1414#endif
1415
1416#ifdef VBOX_WITH_PDM_ASYNC_COMPLETION
1417 pdmR3AsyncCompletionResume(pVM);
1418#endif
1419
1420 /*
1421 * Resume all threads.
1422 */
1423 if (RT_SUCCESS(rc))
1424 pdmR3ThreadResumeAll(pVM);
1425
1426 /*
1427 * On failure, clean up via PDMR3Suspend.
1428 */
1429 if (RT_FAILURE(rc))
1430 PDMR3Suspend(pVM);
1431
1432 LogFlow(("PDMR3PowerOn: returns %Rrc\n", rc));
1433 return /*rc*/;
1434}
1435
1436
1437/**
1438 * Initializes the asynchronous notifi stats structure.
1439 *
1440 * @param pThis The asynchronous notifification stats.
1441 * @param pszOp The name of the operation.
1442 */
1443static void pdmR3NotifyAsyncInit(PPDMNOTIFYASYNCSTATS pThis, const char *pszOp)
1444{
1445 pThis->uStartNsTs = RTTimeNanoTS();
1446 pThis->cNsElapsedNextLog = 0;
1447 pThis->cLoops = 0;
1448 pThis->cAsync = 0;
1449 pThis->pszOp = pszOp;
1450 pThis->offList = 0;
1451 pThis->szList[0] = '\0';
1452}
1453
1454
1455/**
1456 * Begin a new loop, prepares to gather new stats.
1457 *
1458 * @param pThis The asynchronous notifification stats.
1459 */
1460static void pdmR3NotifyAsyncBeginLoop(PPDMNOTIFYASYNCSTATS pThis)
1461{
1462 pThis->cLoops++;
1463 pThis->cAsync = 0;
1464 pThis->offList = 0;
1465 pThis->szList[0] = '\0';
1466}
1467
1468
1469/**
1470 * Records a device or USB device with a pending asynchronous notification.
1471 *
1472 * @param pThis The asynchronous notifification stats.
1473 * @param pszName The name of the thing.
1474 * @param iInstance The instance number.
1475 */
1476static void pdmR3NotifyAsyncAdd(PPDMNOTIFYASYNCSTATS pThis, const char *pszName, uint32_t iInstance)
1477{
1478 pThis->cAsync++;
1479 if (pThis->offList < sizeof(pThis->szList) - 4)
1480 pThis->offList += RTStrPrintf(&pThis->szList[pThis->offList], sizeof(pThis->szList) - pThis->offList,
1481 pThis->offList == 0 ? "%s/%u" : ", %s/%u",
1482 pszName, iInstance);
1483}
1484
1485
1486/**
1487 * Records the asynchronous completition of a reset, suspend or power off.
1488 *
1489 * @param pThis The asynchronous notifification stats.
1490 * @param pszDrvName The driver name.
1491 * @param iDrvInstance The driver instance number.
1492 * @param pszDevName The device or USB device name.
1493 * @param iDevInstance The device or USB device instance number.
1494 * @param iLun The LUN.
1495 */
1496static void pdmR3NotifyAsyncAddDrv(PPDMNOTIFYASYNCSTATS pThis, const char *pszDrvName, uint32_t iDrvInstance,
1497 const char *pszDevName, uint32_t iDevInstance, uint32_t iLun)
1498{
1499 pThis->cAsync++;
1500 if (pThis->offList < sizeof(pThis->szList) - 8)
1501 pThis->offList += RTStrPrintf(&pThis->szList[pThis->offList], sizeof(pThis->szList) - pThis->offList,
1502 pThis->offList == 0 ? "%s/%u/%u/%s/%u" : ", %s/%u/%u/%s/%u",
1503 pszDevName, iDevInstance, iLun, pszDrvName, iDrvInstance);
1504}
1505
1506
1507/**
1508 * Log the stats.
1509 *
1510 * @param pThis The asynchronous notifification stats.
1511 */
1512static void pdmR3NotifyAsyncLog(PPDMNOTIFYASYNCSTATS pThis)
1513{
1514 /*
1515 * Return if we shouldn't log at this point.
1516 * We log with an internval increasing from 0 sec to 60 sec.
1517 */
1518 if (!pThis->cAsync)
1519 return;
1520
1521 uint64_t cNsElapsed = RTTimeNanoTS() - pThis->uStartNsTs;
1522 if (cNsElapsed < pThis->cNsElapsedNextLog)
1523 return;
1524
1525 if (pThis->cNsElapsedNextLog == 0)
1526 pThis->cNsElapsedNextLog = RT_NS_1SEC;
1527 else if (pThis->cNsElapsedNextLog >= RT_NS_1MIN / 2)
1528 pThis->cNsElapsedNextLog = RT_NS_1MIN;
1529 else
1530 pThis->cNsElapsedNextLog *= 2;
1531
1532 /*
1533 * Do the logging.
1534 */
1535 LogRel(("%s: after %5llu ms, %u loops: %u async tasks - %s\n",
1536 pThis->pszOp, cNsElapsed / RT_NS_1MS, pThis->cLoops, pThis->cAsync, pThis->szList));
1537}
1538
1539
1540/**
1541 * Wait for events and process pending requests.
1542 *
1543 * @param pThis The asynchronous notifification stats.
1544 * @param pVM The cross context VM structure.
1545 */
1546static void pdmR3NotifyAsyncWaitAndProcessRequests(PPDMNOTIFYASYNCSTATS pThis, PVM pVM)
1547{
1548 VM_ASSERT_EMT0(pVM);
1549 int rc = VMR3AsyncPdmNotificationWaitU(&pVM->pUVM->aCpus[0]);
1550 AssertReleaseMsg(rc == VINF_SUCCESS, ("%Rrc - %s - %s\n", rc, pThis->pszOp, pThis->szList));
1551
1552 rc = VMR3ReqProcessU(pVM->pUVM, VMCPUID_ANY, true /*fPriorityOnly*/);
1553 AssertReleaseMsg(rc == VINF_SUCCESS, ("%Rrc - %s - %s\n", rc, pThis->pszOp, pThis->szList));
1554 rc = VMR3ReqProcessU(pVM->pUVM, 0/*idDstCpu*/, true /*fPriorityOnly*/);
1555 AssertReleaseMsg(rc == VINF_SUCCESS, ("%Rrc - %s - %s\n", rc, pThis->pszOp, pThis->szList));
1556}
1557
1558
1559/**
1560 * Worker for PDMR3Reset that deals with one driver.
1561 *
1562 * @param pDrvIns The driver instance.
1563 * @param pAsync The structure for recording asynchronous
1564 * notification tasks.
1565 * @param pszDevName The parent device name.
1566 * @param iDevInstance The parent device instance number.
1567 * @param iLun The parent LUN number.
1568 */
1569DECLINLINE(bool) pdmR3ResetDrv(PPDMDRVINS pDrvIns, PPDMNOTIFYASYNCSTATS pAsync,
1570 const char *pszDevName, uint32_t iDevInstance, uint32_t iLun)
1571{
1572 if (!pDrvIns->Internal.s.fVMReset)
1573 {
1574 pDrvIns->Internal.s.fVMReset = true;
1575 if (pDrvIns->pReg->pfnReset)
1576 {
1577 if (!pDrvIns->Internal.s.pfnAsyncNotify)
1578 {
1579 LogFlow(("PDMR3Reset: Notifying - driver '%s'/%d on LUN#%d of device '%s'/%d\n",
1580 pDrvIns->pReg->szName, pDrvIns->iInstance, iLun, pszDevName, iDevInstance));
1581 pDrvIns->pReg->pfnReset(pDrvIns);
1582 if (pDrvIns->Internal.s.pfnAsyncNotify)
1583 LogFlow(("PDMR3Reset: Async notification started - driver '%s'/%d on LUN#%d of device '%s'/%d\n",
1584 pDrvIns->pReg->szName, pDrvIns->iInstance, iLun, pszDevName, iDevInstance));
1585 }
1586 else if (pDrvIns->Internal.s.pfnAsyncNotify(pDrvIns))
1587 {
1588 LogFlow(("PDMR3Reset: Async notification completed - driver '%s'/%d on LUN#%d of device '%s'/%d\n",
1589 pDrvIns->pReg->szName, pDrvIns->iInstance, iLun, pszDevName, iDevInstance));
1590 pDrvIns->Internal.s.pfnAsyncNotify = NULL;
1591 }
1592 if (pDrvIns->Internal.s.pfnAsyncNotify)
1593 {
1594 pDrvIns->Internal.s.fVMReset = false;
1595 pdmR3NotifyAsyncAddDrv(pAsync, pDrvIns->Internal.s.pDrv->pReg->szName, pDrvIns->iInstance,
1596 pszDevName, iDevInstance, iLun);
1597 return false;
1598 }
1599 }
1600 }
1601 return true;
1602}
1603
1604
1605/**
1606 * Worker for PDMR3Reset that deals with one USB device instance.
1607 *
1608 * @param pUsbIns The USB device instance.
1609 * @param pAsync The structure for recording asynchronous
1610 * notification tasks.
1611 */
1612DECLINLINE(void) pdmR3ResetUsb(PPDMUSBINS pUsbIns, PPDMNOTIFYASYNCSTATS pAsync)
1613{
1614 if (!pUsbIns->Internal.s.fVMReset)
1615 {
1616 pUsbIns->Internal.s.fVMReset = true;
1617 if (pUsbIns->pReg->pfnVMReset)
1618 {
1619 if (!pUsbIns->Internal.s.pfnAsyncNotify)
1620 {
1621 LogFlow(("PDMR3Reset: Notifying - device '%s'/%d\n", pUsbIns->pReg->szName, pUsbIns->iInstance));
1622 pUsbIns->pReg->pfnVMReset(pUsbIns);
1623 if (pUsbIns->Internal.s.pfnAsyncNotify)
1624 LogFlow(("PDMR3Reset: Async notification started - device '%s'/%d\n", pUsbIns->pReg->szName, pUsbIns->iInstance));
1625 }
1626 else if (pUsbIns->Internal.s.pfnAsyncNotify(pUsbIns))
1627 {
1628 LogFlow(("PDMR3Reset: Async notification completed - device '%s'/%d\n", pUsbIns->pReg->szName, pUsbIns->iInstance));
1629 pUsbIns->Internal.s.pfnAsyncNotify = NULL;
1630 }
1631 if (pUsbIns->Internal.s.pfnAsyncNotify)
1632 {
1633 pUsbIns->Internal.s.fVMReset = false;
1634 pdmR3NotifyAsyncAdd(pAsync, pUsbIns->Internal.s.pUsbDev->pReg->szName, pUsbIns->iInstance);
1635 }
1636 }
1637 }
1638}
1639
1640
1641/**
1642 * Worker for PDMR3Reset that deals with one device instance.
1643 *
1644 * @param pVM The cross context VM structure.
1645 * @param pDevIns The device instance.
1646 * @param pAsync The structure for recording asynchronous notification tasks.
1647 */
1648DECLINLINE(void) pdmR3ResetDev(PVM pVM, PPDMDEVINS pDevIns, PPDMNOTIFYASYNCSTATS pAsync)
1649{
1650 if (!(pDevIns->Internal.s.fIntFlags & PDMDEVINSINT_FLAGS_RESET))
1651 {
1652 pDevIns->Internal.s.fIntFlags |= PDMDEVINSINT_FLAGS_RESET;
1653 if (pDevIns->pReg->pfnReset)
1654 {
1655 uint64_t cNsElapsed = RTTimeNanoTS();
1656 PDMCritSectEnter(pVM, pDevIns->pCritSectRoR3, VERR_IGNORED);
1657
1658 if (!pDevIns->Internal.s.pfnAsyncNotify)
1659 {
1660 LogFlow(("PDMR3Reset: Notifying - device '%s'/%d\n", pDevIns->pReg->szName, pDevIns->iInstance));
1661 pDevIns->pReg->pfnReset(pDevIns);
1662 if (pDevIns->Internal.s.pfnAsyncNotify)
1663 LogFlow(("PDMR3Reset: Async notification started - device '%s'/%d\n", pDevIns->pReg->szName, pDevIns->iInstance));
1664 }
1665 else if (pDevIns->Internal.s.pfnAsyncNotify(pDevIns))
1666 {
1667 LogFlow(("PDMR3Reset: Async notification completed - device '%s'/%d\n", pDevIns->pReg->szName, pDevIns->iInstance));
1668 pDevIns->Internal.s.pfnAsyncNotify = NULL;
1669 }
1670 if (pDevIns->Internal.s.pfnAsyncNotify)
1671 {
1672 pDevIns->Internal.s.fIntFlags &= ~PDMDEVINSINT_FLAGS_RESET;
1673 pdmR3NotifyAsyncAdd(pAsync, pDevIns->Internal.s.pDevR3->pReg->szName, pDevIns->iInstance);
1674 }
1675
1676 PDMCritSectLeave(pVM, pDevIns->pCritSectRoR3);
1677 cNsElapsed = RTTimeNanoTS() - cNsElapsed;
1678 if (cNsElapsed >= PDMSUSPEND_WARN_AT_NS)
1679 LogRel(("PDMR3Reset: Device '%s'/%d took %'llu ns to reset\n",
1680 pDevIns->pReg->szName, pDevIns->iInstance, cNsElapsed));
1681 }
1682 }
1683}
1684
1685
1686/**
1687 * Resets a virtual CPU.
1688 *
1689 * Used by PDMR3Reset and CPU hot plugging.
1690 *
1691 * @param pVCpu The cross context virtual CPU structure.
1692 */
1693VMMR3_INT_DECL(void) PDMR3ResetCpu(PVMCPU pVCpu)
1694{
1695#if defined(VBOX_VMM_TARGET_ARMV8)
1696 VMCPU_FF_CLEAR(pVCpu, VMCPU_FF_INTERRUPT_IRQ);
1697 VMCPU_FF_CLEAR(pVCpu, VMCPU_FF_INTERRUPT_FIQ);
1698#else
1699 VMCPU_FF_CLEAR(pVCpu, VMCPU_FF_INTERRUPT_APIC);
1700 VMCPU_FF_CLEAR(pVCpu, VMCPU_FF_INTERRUPT_PIC);
1701#endif
1702 VMCPU_FF_CLEAR(pVCpu, VMCPU_FF_INTERRUPT_NMI);
1703 VMCPU_FF_CLEAR(pVCpu, VMCPU_FF_INTERRUPT_SMI);
1704}
1705
1706
1707/**
1708 * This function will notify all the devices and their attached drivers about
1709 * the VM now being reset.
1710 *
1711 * @param pVM The cross context VM structure.
1712 */
1713VMMR3_INT_DECL(void) PDMR3Reset(PVM pVM)
1714{
1715 LogFlow(("PDMR3Reset:\n"));
1716
1717 /*
1718 * Clear all the reset flags.
1719 */
1720 for (PPDMDEVINS pDevIns = pVM->pdm.s.pDevInstances; pDevIns; pDevIns = pDevIns->Internal.s.pNextR3)
1721 {
1722 pDevIns->Internal.s.fIntFlags &= ~PDMDEVINSINT_FLAGS_RESET;
1723 for (PPDMLUN pLun = pDevIns->Internal.s.pLunsR3; pLun; pLun = pLun->pNext)
1724 for (PPDMDRVINS pDrvIns = pLun->pTop; pDrvIns; pDrvIns = pDrvIns->Internal.s.pDown)
1725 pDrvIns->Internal.s.fVMReset = false;
1726 }
1727#ifdef VBOX_WITH_USB
1728 for (PPDMUSBINS pUsbIns = pVM->pdm.s.pUsbInstances; pUsbIns; pUsbIns = pUsbIns->Internal.s.pNext)
1729 {
1730 pUsbIns->Internal.s.fVMReset = false;
1731 for (PPDMLUN pLun = pUsbIns->Internal.s.pLuns; pLun; pLun = pLun->pNext)
1732 for (PPDMDRVINS pDrvIns = pLun->pTop; pDrvIns; pDrvIns = pDrvIns->Internal.s.pDown)
1733 pDrvIns->Internal.s.fVMReset = false;
1734 }
1735#endif
1736
1737 /*
1738 * The outer loop repeats until there are no more async requests.
1739 */
1740 PDMNOTIFYASYNCSTATS Async;
1741 pdmR3NotifyAsyncInit(&Async, "PDMR3Reset");
1742 for (;;)
1743 {
1744 pdmR3NotifyAsyncBeginLoop(&Async);
1745
1746 /*
1747 * Iterate thru the device instances and USB device instances,
1748 * processing the drivers associated with those.
1749 */
1750 for (PPDMDEVINS pDevIns = pVM->pdm.s.pDevInstances; pDevIns; pDevIns = pDevIns->Internal.s.pNextR3)
1751 {
1752 unsigned const cAsyncStart = Async.cAsync;
1753
1754 if (pDevIns->pReg->fFlags & PDM_DEVREG_FLAGS_FIRST_RESET_NOTIFICATION)
1755 pdmR3ResetDev(pVM, pDevIns, &Async);
1756
1757 if (Async.cAsync == cAsyncStart)
1758 for (PPDMLUN pLun = pDevIns->Internal.s.pLunsR3; pLun; pLun = pLun->pNext)
1759 for (PPDMDRVINS pDrvIns = pLun->pTop; pDrvIns; pDrvIns = pDrvIns->Internal.s.pDown)
1760 if (!pdmR3ResetDrv(pDrvIns, &Async, pDevIns->pReg->szName, pDevIns->iInstance, pLun->iLun))
1761 break;
1762
1763 if ( Async.cAsync == cAsyncStart
1764 && !(pDevIns->pReg->fFlags & PDM_DEVREG_FLAGS_FIRST_RESET_NOTIFICATION))
1765 pdmR3ResetDev(pVM, pDevIns, &Async);
1766 }
1767
1768#ifdef VBOX_WITH_USB
1769 for (PPDMUSBINS pUsbIns = pVM->pdm.s.pUsbInstances; pUsbIns; pUsbIns = pUsbIns->Internal.s.pNext)
1770 {
1771 unsigned const cAsyncStart = Async.cAsync;
1772
1773 for (PPDMLUN pLun = pUsbIns->Internal.s.pLuns; pLun; pLun = pLun->pNext)
1774 for (PPDMDRVINS pDrvIns = pLun->pTop; pDrvIns; pDrvIns = pDrvIns->Internal.s.pDown)
1775 if (!pdmR3ResetDrv(pDrvIns, &Async, pUsbIns->pReg->szName, pUsbIns->iInstance, pLun->iLun))
1776 break;
1777
1778 if (Async.cAsync == cAsyncStart)
1779 pdmR3ResetUsb(pUsbIns, &Async);
1780 }
1781#endif
1782 if (!Async.cAsync)
1783 break;
1784 pdmR3NotifyAsyncLog(&Async);
1785 pdmR3NotifyAsyncWaitAndProcessRequests(&Async, pVM);
1786 }
1787
1788 /*
1789 * Clear all pending interrupts and DMA operations.
1790 */
1791 for (VMCPUID idCpu = 0; idCpu < pVM->cCpus; idCpu++)
1792 PDMR3ResetCpu(pVM->apCpusR3[idCpu]);
1793 VM_FF_CLEAR(pVM, VM_FF_PDM_DMA);
1794
1795 LogFlow(("PDMR3Reset: returns void\n"));
1796}
1797
1798
1799/**
1800 * This function will tell all the devices to setup up their memory structures
1801 * after VM construction and after VM reset.
1802 *
1803 * @param pVM The cross context VM structure.
1804 * @param fAtReset Indicates the context, after reset if @c true or after
1805 * construction if @c false.
1806 */
1807VMMR3_INT_DECL(void) PDMR3MemSetup(PVM pVM, bool fAtReset)
1808{
1809 LogFlow(("PDMR3MemSetup: fAtReset=%RTbool\n", fAtReset));
1810 PDMDEVMEMSETUPCTX const enmCtx = fAtReset ? PDMDEVMEMSETUPCTX_AFTER_RESET : PDMDEVMEMSETUPCTX_AFTER_CONSTRUCTION;
1811
1812 /*
1813 * Iterate thru the device instances and work the callback.
1814 */
1815 for (PPDMDEVINS pDevIns = pVM->pdm.s.pDevInstances; pDevIns; pDevIns = pDevIns->Internal.s.pNextR3)
1816 if (pDevIns->pReg->pfnMemSetup)
1817 {
1818 PDMCritSectEnter(pVM, pDevIns->pCritSectRoR3, VERR_IGNORED);
1819 pDevIns->pReg->pfnMemSetup(pDevIns, enmCtx);
1820 PDMCritSectLeave(pVM, pDevIns->pCritSectRoR3);
1821 }
1822
1823 LogFlow(("PDMR3MemSetup: returns void\n"));
1824}
1825
1826
1827/**
1828 * Retrieves and resets the info left behind by PDMDevHlpVMReset.
1829 *
1830 * @returns True if hard reset, false if soft reset.
1831 * @param pVM The cross context VM structure.
1832 * @param fOverride If non-zero, the override flags will be used instead
1833 * of the reset flags kept by PDM. (For triple faults.)
1834 * @param pfResetFlags Where to return the reset flags (PDMVMRESET_F_XXX).
1835 * @thread EMT
1836 */
1837VMMR3_INT_DECL(bool) PDMR3GetResetInfo(PVM pVM, uint32_t fOverride, uint32_t *pfResetFlags)
1838{
1839 VM_ASSERT_EMT(pVM);
1840
1841 /*
1842 * Get the reset flags.
1843 */
1844 uint32_t fResetFlags;
1845 fResetFlags = ASMAtomicXchgU32(&pVM->pdm.s.fResetFlags, 0);
1846 if (fOverride)
1847 fResetFlags = fOverride;
1848 *pfResetFlags = fResetFlags;
1849
1850 /*
1851 * To try avoid trouble, we never ever do soft/warm resets on SMP systems
1852 * with more than CPU #0 active. However, if only one CPU is active we
1853 * will ask the firmware what it wants us to do (because the firmware may
1854 * depend on the VMM doing a lot of what is normally its responsibility,
1855 * like clearing memory).
1856 */
1857 bool fOtherCpusActive = false;
1858 VMCPUID idCpu = pVM->cCpus;
1859 while (idCpu-- > 1)
1860 {
1861 EMSTATE enmState = EMGetState(pVM->apCpusR3[idCpu]);
1862 if ( enmState != EMSTATE_WAIT_SIPI
1863 && enmState != EMSTATE_NONE)
1864 {
1865 fOtherCpusActive = true;
1866 break;
1867 }
1868 }
1869
1870 bool fHardReset = fOtherCpusActive
1871 || (fResetFlags & PDMVMRESET_F_SRC_MASK) < PDMVMRESET_F_LAST_ALWAYS_HARD
1872 || !pVM->pdm.s.pFirmware
1873 || pVM->pdm.s.pFirmware->Reg.pfnIsHardReset(pVM->pdm.s.pFirmware->pDevIns, fResetFlags);
1874
1875 Log(("PDMR3GetResetInfo: returns fHardReset=%RTbool fResetFlags=%#x\n", fHardReset, fResetFlags));
1876 return fHardReset;
1877}
1878
1879
1880/**
1881 * Performs a soft reset of devices.
1882 *
1883 * @param pVM The cross context VM structure.
1884 * @param fResetFlags PDMVMRESET_F_XXX.
1885 */
1886VMMR3_INT_DECL(void) PDMR3SoftReset(PVM pVM, uint32_t fResetFlags)
1887{
1888 LogFlow(("PDMR3SoftReset: fResetFlags=%#x\n", fResetFlags));
1889
1890 /*
1891 * Iterate thru the device instances and work the callback.
1892 */
1893 for (PPDMDEVINS pDevIns = pVM->pdm.s.pDevInstances; pDevIns; pDevIns = pDevIns->Internal.s.pNextR3)
1894 if (pDevIns->pReg->pfnSoftReset)
1895 {
1896 PDMCritSectEnter(pVM, pDevIns->pCritSectRoR3, VERR_IGNORED);
1897 pDevIns->pReg->pfnSoftReset(pDevIns, fResetFlags);
1898 PDMCritSectLeave(pVM, pDevIns->pCritSectRoR3);
1899 }
1900
1901 LogFlow(("PDMR3SoftReset: returns void\n"));
1902}
1903
1904
1905/**
1906 * Worker for PDMR3Suspend that deals with one driver.
1907 *
1908 * @param pDrvIns The driver instance.
1909 * @param pAsync The structure for recording asynchronous
1910 * notification tasks.
1911 * @param pszDevName The parent device name.
1912 * @param iDevInstance The parent device instance number.
1913 * @param iLun The parent LUN number.
1914 */
1915DECLINLINE(bool) pdmR3SuspendDrv(PPDMDRVINS pDrvIns, PPDMNOTIFYASYNCSTATS pAsync,
1916 const char *pszDevName, uint32_t iDevInstance, uint32_t iLun)
1917{
1918 if (!pDrvIns->Internal.s.fVMSuspended)
1919 {
1920 pDrvIns->Internal.s.fVMSuspended = true;
1921 if (pDrvIns->pReg->pfnSuspend)
1922 {
1923 uint64_t cNsElapsed = RTTimeNanoTS();
1924
1925 if (!pDrvIns->Internal.s.pfnAsyncNotify)
1926 {
1927 LogFlow(("PDMR3Suspend: Notifying - driver '%s'/%d on LUN#%d of device '%s'/%d\n",
1928 pDrvIns->pReg->szName, pDrvIns->iInstance, iLun, pszDevName, iDevInstance));
1929 pDrvIns->pReg->pfnSuspend(pDrvIns);
1930 if (pDrvIns->Internal.s.pfnAsyncNotify)
1931 LogFlow(("PDMR3Suspend: Async notification started - driver '%s'/%d on LUN#%d of device '%s'/%d\n",
1932 pDrvIns->pReg->szName, pDrvIns->iInstance, iLun, pszDevName, iDevInstance));
1933 }
1934 else if (pDrvIns->Internal.s.pfnAsyncNotify(pDrvIns))
1935 {
1936 LogFlow(("PDMR3Suspend: Async notification completed - driver '%s'/%d on LUN#%d of device '%s'/%d\n",
1937 pDrvIns->pReg->szName, pDrvIns->iInstance, iLun, pszDevName, iDevInstance));
1938 pDrvIns->Internal.s.pfnAsyncNotify = NULL;
1939 }
1940
1941 cNsElapsed = RTTimeNanoTS() - cNsElapsed;
1942 if (cNsElapsed >= PDMSUSPEND_WARN_AT_NS)
1943 LogRel(("PDMR3Suspend: Driver '%s'/%d on LUN#%d of device '%s'/%d took %'llu ns to suspend\n",
1944 pDrvIns->pReg->szName, pDrvIns->iInstance, iLun, pszDevName, iDevInstance, cNsElapsed));
1945
1946 if (pDrvIns->Internal.s.pfnAsyncNotify)
1947 {
1948 pDrvIns->Internal.s.fVMSuspended = false;
1949 pdmR3NotifyAsyncAddDrv(pAsync, pDrvIns->Internal.s.pDrv->pReg->szName, pDrvIns->iInstance, pszDevName, iDevInstance, iLun);
1950 return false;
1951 }
1952 }
1953 }
1954 return true;
1955}
1956
1957
1958/**
1959 * Worker for PDMR3Suspend that deals with one USB device instance.
1960 *
1961 * @param pUsbIns The USB device instance.
1962 * @param pAsync The structure for recording asynchronous
1963 * notification tasks.
1964 */
1965DECLINLINE(void) pdmR3SuspendUsb(PPDMUSBINS pUsbIns, PPDMNOTIFYASYNCSTATS pAsync)
1966{
1967 if (!pUsbIns->Internal.s.fVMSuspended)
1968 {
1969 pUsbIns->Internal.s.fVMSuspended = true;
1970 if (pUsbIns->pReg->pfnVMSuspend)
1971 {
1972 uint64_t cNsElapsed = RTTimeNanoTS();
1973
1974 if (!pUsbIns->Internal.s.pfnAsyncNotify)
1975 {
1976 LogFlow(("PDMR3Suspend: Notifying - USB device '%s'/%d\n", pUsbIns->pReg->szName, pUsbIns->iInstance));
1977 pUsbIns->pReg->pfnVMSuspend(pUsbIns);
1978 if (pUsbIns->Internal.s.pfnAsyncNotify)
1979 LogFlow(("PDMR3Suspend: Async notification started - USB device '%s'/%d\n", pUsbIns->pReg->szName, pUsbIns->iInstance));
1980 }
1981 else if (pUsbIns->Internal.s.pfnAsyncNotify(pUsbIns))
1982 {
1983 LogFlow(("PDMR3Suspend: Async notification completed - USB device '%s'/%d\n", pUsbIns->pReg->szName, pUsbIns->iInstance));
1984 pUsbIns->Internal.s.pfnAsyncNotify = NULL;
1985 }
1986 if (pUsbIns->Internal.s.pfnAsyncNotify)
1987 {
1988 pUsbIns->Internal.s.fVMSuspended = false;
1989 pdmR3NotifyAsyncAdd(pAsync, pUsbIns->Internal.s.pUsbDev->pReg->szName, pUsbIns->iInstance);
1990 }
1991
1992 cNsElapsed = RTTimeNanoTS() - cNsElapsed;
1993 if (cNsElapsed >= PDMSUSPEND_WARN_AT_NS)
1994 LogRel(("PDMR3Suspend: USB device '%s'/%d took %'llu ns to suspend\n",
1995 pUsbIns->pReg->szName, pUsbIns->iInstance, cNsElapsed));
1996 }
1997 }
1998}
1999
2000
2001/**
2002 * Worker for PDMR3Suspend that deals with one device instance.
2003 *
2004 * @param pVM The cross context VM structure.
2005 * @param pDevIns The device instance.
2006 * @param pAsync The structure for recording asynchronous notification tasks.
2007 */
2008DECLINLINE(void) pdmR3SuspendDev(PVM pVM, PPDMDEVINS pDevIns, PPDMNOTIFYASYNCSTATS pAsync)
2009{
2010 if (!(pDevIns->Internal.s.fIntFlags & PDMDEVINSINT_FLAGS_SUSPENDED))
2011 {
2012 pDevIns->Internal.s.fIntFlags |= PDMDEVINSINT_FLAGS_SUSPENDED;
2013 if (pDevIns->pReg->pfnSuspend)
2014 {
2015 uint64_t cNsElapsed = RTTimeNanoTS();
2016 PDMCritSectEnter(pVM, pDevIns->pCritSectRoR3, VERR_IGNORED);
2017
2018 if (!pDevIns->Internal.s.pfnAsyncNotify)
2019 {
2020 LogFlow(("PDMR3Suspend: Notifying - device '%s'/%d\n", pDevIns->pReg->szName, pDevIns->iInstance));
2021 pDevIns->pReg->pfnSuspend(pDevIns);
2022 if (pDevIns->Internal.s.pfnAsyncNotify)
2023 LogFlow(("PDMR3Suspend: Async notification started - device '%s'/%d\n", pDevIns->pReg->szName, pDevIns->iInstance));
2024 }
2025 else if (pDevIns->Internal.s.pfnAsyncNotify(pDevIns))
2026 {
2027 LogFlow(("PDMR3Suspend: Async notification completed - device '%s'/%d\n", pDevIns->pReg->szName, pDevIns->iInstance));
2028 pDevIns->Internal.s.pfnAsyncNotify = NULL;
2029 }
2030 if (pDevIns->Internal.s.pfnAsyncNotify)
2031 {
2032 pDevIns->Internal.s.fIntFlags &= ~PDMDEVINSINT_FLAGS_SUSPENDED;
2033 pdmR3NotifyAsyncAdd(pAsync, pDevIns->Internal.s.pDevR3->pReg->szName, pDevIns->iInstance);
2034 }
2035
2036 PDMCritSectLeave(pVM, pDevIns->pCritSectRoR3);
2037 cNsElapsed = RTTimeNanoTS() - cNsElapsed;
2038 if (cNsElapsed >= PDMSUSPEND_WARN_AT_NS)
2039 LogRel(("PDMR3Suspend: Device '%s'/%d took %'llu ns to suspend\n",
2040 pDevIns->pReg->szName, pDevIns->iInstance, cNsElapsed));
2041 }
2042 }
2043}
2044
2045
2046/**
2047 * This function will notify all the devices and their attached drivers about
2048 * the VM now being suspended.
2049 *
2050 * @param pVM The cross context VM structure.
2051 * @thread EMT(0)
2052 */
2053VMMR3_INT_DECL(void) PDMR3Suspend(PVM pVM)
2054{
2055 LogFlow(("PDMR3Suspend:\n"));
2056 VM_ASSERT_EMT0(pVM);
2057 uint64_t cNsElapsed = RTTimeNanoTS();
2058
2059 /*
2060 * The outer loop repeats until there are no more async requests.
2061 *
2062 * Note! We depend on the suspended indicators to be in the desired state
2063 * and we do not reset them before starting because this allows
2064 * PDMR3PowerOn and PDMR3Resume to use PDMR3Suspend for cleaning up
2065 * on failure.
2066 */
2067 PDMNOTIFYASYNCSTATS Async;
2068 pdmR3NotifyAsyncInit(&Async, "PDMR3Suspend");
2069 for (;;)
2070 {
2071 pdmR3NotifyAsyncBeginLoop(&Async);
2072
2073 /*
2074 * Iterate thru the device instances and USB device instances,
2075 * processing the drivers associated with those.
2076 *
2077 * The attached drivers are normally processed first. Some devices
2078 * (like DevAHCI) though needs to be notified before the drivers so
2079 * that it doesn't kick off any new requests after the drivers stopped
2080 * taking any. (DrvVD changes to read-only in this particular case.)
2081 */
2082 for (PPDMDEVINS pDevIns = pVM->pdm.s.pDevInstances; pDevIns; pDevIns = pDevIns->Internal.s.pNextR3)
2083 {
2084 unsigned const cAsyncStart = Async.cAsync;
2085
2086 if (pDevIns->pReg->fFlags & PDM_DEVREG_FLAGS_FIRST_SUSPEND_NOTIFICATION)
2087 pdmR3SuspendDev(pVM, pDevIns, &Async);
2088
2089 if (Async.cAsync == cAsyncStart)
2090 for (PPDMLUN pLun = pDevIns->Internal.s.pLunsR3; pLun; pLun = pLun->pNext)
2091 for (PPDMDRVINS pDrvIns = pLun->pTop; pDrvIns; pDrvIns = pDrvIns->Internal.s.pDown)
2092 if (!pdmR3SuspendDrv(pDrvIns, &Async, pDevIns->pReg->szName, pDevIns->iInstance, pLun->iLun))
2093 break;
2094
2095 if ( Async.cAsync == cAsyncStart
2096 && !(pDevIns->pReg->fFlags & PDM_DEVREG_FLAGS_FIRST_SUSPEND_NOTIFICATION))
2097 pdmR3SuspendDev(pVM, pDevIns, &Async);
2098 }
2099
2100#ifdef VBOX_WITH_USB
2101 for (PPDMUSBINS pUsbIns = pVM->pdm.s.pUsbInstances; pUsbIns; pUsbIns = pUsbIns->Internal.s.pNext)
2102 {
2103 unsigned const cAsyncStart = Async.cAsync;
2104
2105 for (PPDMLUN pLun = pUsbIns->Internal.s.pLuns; pLun; pLun = pLun->pNext)
2106 for (PPDMDRVINS pDrvIns = pLun->pTop; pDrvIns; pDrvIns = pDrvIns->Internal.s.pDown)
2107 if (!pdmR3SuspendDrv(pDrvIns, &Async, pUsbIns->pReg->szName, pUsbIns->iInstance, pLun->iLun))
2108 break;
2109
2110 if (Async.cAsync == cAsyncStart)
2111 pdmR3SuspendUsb(pUsbIns, &Async);
2112 }
2113#endif
2114 if (!Async.cAsync)
2115 break;
2116 pdmR3NotifyAsyncLog(&Async);
2117 pdmR3NotifyAsyncWaitAndProcessRequests(&Async, pVM);
2118 }
2119
2120 /*
2121 * Suspend all threads.
2122 */
2123 pdmR3ThreadSuspendAll(pVM);
2124
2125 cNsElapsed = RTTimeNanoTS() - cNsElapsed;
2126 LogRel(("PDMR3Suspend: %'llu ns run time\n", cNsElapsed));
2127}
2128
2129
2130/**
2131 * Worker for PDMR3Resume that deals with one driver.
2132 *
2133 * @param pDrvIns The driver instance.
2134 * @param pszDevName The parent device name.
2135 * @param iDevInstance The parent device instance number.
2136 * @param iLun The parent LUN number.
2137 */
2138DECLINLINE(int) pdmR3ResumeDrv(PPDMDRVINS pDrvIns, const char *pszDevName, uint32_t iDevInstance, uint32_t iLun)
2139{
2140 Assert(pDrvIns->Internal.s.fVMSuspended);
2141 if (pDrvIns->pReg->pfnResume)
2142 {
2143 LogFlow(("PDMR3Resume: Notifying - driver '%s'/%d on LUN#%d of device '%s'/%d\n",
2144 pDrvIns->pReg->szName, pDrvIns->iInstance, iLun, pszDevName, iDevInstance));
2145 int rc = VINF_SUCCESS; pDrvIns->pReg->pfnResume(pDrvIns);
2146 if (RT_FAILURE(rc))
2147 {
2148 LogRel(("PDMR3Resume: Driver '%s'/%d on LUN#%d of device '%s'/%d -> %Rrc\n",
2149 pDrvIns->pReg->szName, pDrvIns->iInstance, iLun, pszDevName, iDevInstance, rc));
2150 return rc;
2151 }
2152 }
2153 pDrvIns->Internal.s.fVMSuspended = false;
2154 return VINF_SUCCESS;
2155}
2156
2157
2158/**
2159 * Worker for PDMR3Resume that deals with one USB device instance.
2160 *
2161 * @returns VBox status code.
2162 * @param pUsbIns The USB device instance.
2163 */
2164DECLINLINE(int) pdmR3ResumeUsb(PPDMUSBINS pUsbIns)
2165{
2166 if (pUsbIns->Internal.s.fVMSuspended)
2167 {
2168 if (pUsbIns->pReg->pfnVMResume)
2169 {
2170 LogFlow(("PDMR3Resume: Notifying - device '%s'/%d\n", pUsbIns->pReg->szName, pUsbIns->iInstance));
2171 int rc = VINF_SUCCESS; pUsbIns->pReg->pfnVMResume(pUsbIns);
2172 if (RT_FAILURE(rc))
2173 {
2174 LogRel(("PDMR3Resume: Device '%s'/%d -> %Rrc\n", pUsbIns->pReg->szName, pUsbIns->iInstance, rc));
2175 return rc;
2176 }
2177 }
2178 pUsbIns->Internal.s.fVMSuspended = false;
2179 }
2180 return VINF_SUCCESS;
2181}
2182
2183
2184/**
2185 * Worker for PDMR3Resume that deals with one device instance.
2186 *
2187 * @returns VBox status code.
2188 * @param pVM The cross context VM structure.
2189 * @param pDevIns The device instance.
2190 */
2191DECLINLINE(int) pdmR3ResumeDev(PVM pVM, PPDMDEVINS pDevIns)
2192{
2193 Assert(pDevIns->Internal.s.fIntFlags & PDMDEVINSINT_FLAGS_SUSPENDED);
2194 if (pDevIns->pReg->pfnResume)
2195 {
2196 LogFlow(("PDMR3Resume: Notifying - device '%s'/%d\n", pDevIns->pReg->szName, pDevIns->iInstance));
2197 PDMCritSectEnter(pVM, pDevIns->pCritSectRoR3, VERR_IGNORED);
2198 int rc = VINF_SUCCESS; pDevIns->pReg->pfnResume(pDevIns);
2199 PDMCritSectLeave(pVM, pDevIns->pCritSectRoR3);
2200 if (RT_FAILURE(rc))
2201 {
2202 LogRel(("PDMR3Resume: Device '%s'/%d -> %Rrc\n", pDevIns->pReg->szName, pDevIns->iInstance, rc));
2203 return rc;
2204 }
2205 }
2206 pDevIns->Internal.s.fIntFlags &= ~PDMDEVINSINT_FLAGS_SUSPENDED;
2207 return VINF_SUCCESS;
2208}
2209
2210
2211/**
2212 * This function will notify all the devices and their
2213 * attached drivers about the VM now being resumed.
2214 *
2215 * @param pVM The cross context VM structure.
2216 */
2217VMMR3_INT_DECL(void) PDMR3Resume(PVM pVM)
2218{
2219 LogFlow(("PDMR3Resume:\n"));
2220
2221 /*
2222 * Iterate thru the device instances and USB device instances,
2223 * processing the drivers associated with those.
2224 */
2225 int rc = VINF_SUCCESS;
2226 for (PPDMDEVINS pDevIns = pVM->pdm.s.pDevInstances; pDevIns && RT_SUCCESS(rc); pDevIns = pDevIns->Internal.s.pNextR3)
2227 {
2228 for (PPDMLUN pLun = pDevIns->Internal.s.pLunsR3; pLun && RT_SUCCESS(rc); pLun = pLun->pNext)
2229 for (PPDMDRVINS pDrvIns = pLun->pTop; pDrvIns && RT_SUCCESS(rc); pDrvIns = pDrvIns->Internal.s.pDown)
2230 rc = pdmR3ResumeDrv(pDrvIns, pDevIns->pReg->szName, pDevIns->iInstance, pLun->iLun);
2231 if (RT_SUCCESS(rc))
2232 rc = pdmR3ResumeDev(pVM, pDevIns);
2233 }
2234
2235#ifdef VBOX_WITH_USB
2236 for (PPDMUSBINS pUsbIns = pVM->pdm.s.pUsbInstances; pUsbIns && RT_SUCCESS(rc); pUsbIns = pUsbIns->Internal.s.pNext)
2237 {
2238 for (PPDMLUN pLun = pUsbIns->Internal.s.pLuns; pLun && RT_SUCCESS(rc); pLun = pLun->pNext)
2239 for (PPDMDRVINS pDrvIns = pLun->pTop; pDrvIns && RT_SUCCESS(rc); pDrvIns = pDrvIns->Internal.s.pDown)
2240 rc = pdmR3ResumeDrv(pDrvIns, pUsbIns->pReg->szName, pUsbIns->iInstance, pLun->iLun);
2241 if (RT_SUCCESS(rc))
2242 rc = pdmR3ResumeUsb(pUsbIns);
2243 }
2244#endif
2245
2246 /*
2247 * Resume all threads.
2248 */
2249 if (RT_SUCCESS(rc))
2250 pdmR3ThreadResumeAll(pVM);
2251
2252 /*
2253 * Resume the block cache.
2254 */
2255 if (RT_SUCCESS(rc))
2256 pdmR3BlkCacheResume(pVM);
2257
2258 /*
2259 * On failure, clean up via PDMR3Suspend.
2260 */
2261 if (RT_FAILURE(rc))
2262 PDMR3Suspend(pVM);
2263
2264 LogFlow(("PDMR3Resume: returns %Rrc\n", rc));
2265 return /*rc*/;
2266}
2267
2268
2269/**
2270 * Worker for PDMR3PowerOff that deals with one driver.
2271 *
2272 * @param pDrvIns The driver instance.
2273 * @param pAsync The structure for recording asynchronous
2274 * notification tasks.
2275 * @param pszDevName The parent device name.
2276 * @param iDevInstance The parent device instance number.
2277 * @param iLun The parent LUN number.
2278 */
2279DECLINLINE(bool) pdmR3PowerOffDrv(PPDMDRVINS pDrvIns, PPDMNOTIFYASYNCSTATS pAsync,
2280 const char *pszDevName, uint32_t iDevInstance, uint32_t iLun)
2281{
2282 if (!pDrvIns->Internal.s.fVMSuspended)
2283 {
2284 pDrvIns->Internal.s.fVMSuspended = true;
2285 if (pDrvIns->pReg->pfnPowerOff)
2286 {
2287 uint64_t cNsElapsed = RTTimeNanoTS();
2288
2289 if (!pDrvIns->Internal.s.pfnAsyncNotify)
2290 {
2291 LogFlow(("PDMR3PowerOff: Notifying - driver '%s'/%d on LUN#%d of device '%s'/%d\n",
2292 pDrvIns->pReg->szName, pDrvIns->iInstance, iLun, pszDevName, iDevInstance));
2293 pDrvIns->pReg->pfnPowerOff(pDrvIns);
2294 if (pDrvIns->Internal.s.pfnAsyncNotify)
2295 LogFlow(("PDMR3PowerOff: Async notification started - driver '%s'/%d on LUN#%d of device '%s'/%d\n",
2296 pDrvIns->pReg->szName, pDrvIns->iInstance, iLun, pszDevName, iDevInstance));
2297 }
2298 else if (pDrvIns->Internal.s.pfnAsyncNotify(pDrvIns))
2299 {
2300 LogFlow(("PDMR3PowerOff: Async notification completed - driver '%s'/%d on LUN#%d of device '%s'/%d\n",
2301 pDrvIns->pReg->szName, pDrvIns->iInstance, iLun, pszDevName, iDevInstance));
2302 pDrvIns->Internal.s.pfnAsyncNotify = NULL;
2303 }
2304
2305 cNsElapsed = RTTimeNanoTS() - cNsElapsed;
2306 if (cNsElapsed >= PDMPOWEROFF_WARN_AT_NS)
2307 LogRel(("PDMR3PowerOff: Driver '%s'/%d on LUN#%d of device '%s'/%d took %'llu ns to power off\n",
2308 pDrvIns->pReg->szName, pDrvIns->iInstance, iLun, pszDevName, iDevInstance, cNsElapsed));
2309
2310 if (pDrvIns->Internal.s.pfnAsyncNotify)
2311 {
2312 pDrvIns->Internal.s.fVMSuspended = false;
2313 pdmR3NotifyAsyncAddDrv(pAsync, pDrvIns->Internal.s.pDrv->pReg->szName, pDrvIns->iInstance,
2314 pszDevName, iDevInstance, iLun);
2315 return false;
2316 }
2317 }
2318 }
2319 return true;
2320}
2321
2322
2323/**
2324 * Worker for PDMR3PowerOff that deals with one USB device instance.
2325 *
2326 * @param pUsbIns The USB device instance.
2327 * @param pAsync The structure for recording asynchronous
2328 * notification tasks.
2329 */
2330DECLINLINE(void) pdmR3PowerOffUsb(PPDMUSBINS pUsbIns, PPDMNOTIFYASYNCSTATS pAsync)
2331{
2332 if (!pUsbIns->Internal.s.fVMSuspended)
2333 {
2334 pUsbIns->Internal.s.fVMSuspended = true;
2335 if (pUsbIns->pReg->pfnVMPowerOff)
2336 {
2337 uint64_t cNsElapsed = RTTimeNanoTS();
2338
2339 if (!pUsbIns->Internal.s.pfnAsyncNotify)
2340 {
2341 LogFlow(("PDMR3PowerOff: Notifying - USB device '%s'/%d\n", pUsbIns->pReg->szName, pUsbIns->iInstance));
2342 pUsbIns->pReg->pfnVMPowerOff(pUsbIns);
2343 if (pUsbIns->Internal.s.pfnAsyncNotify)
2344 LogFlow(("PDMR3PowerOff: Async notification started - USB device '%s'/%d\n", pUsbIns->pReg->szName, pUsbIns->iInstance));
2345 }
2346 else if (pUsbIns->Internal.s.pfnAsyncNotify(pUsbIns))
2347 {
2348 LogFlow(("PDMR3PowerOff: Async notification completed - USB device '%s'/%d\n", pUsbIns->pReg->szName, pUsbIns->iInstance));
2349 pUsbIns->Internal.s.pfnAsyncNotify = NULL;
2350 }
2351 if (pUsbIns->Internal.s.pfnAsyncNotify)
2352 {
2353 pUsbIns->Internal.s.fVMSuspended = false;
2354 pdmR3NotifyAsyncAdd(pAsync, pUsbIns->Internal.s.pUsbDev->pReg->szName, pUsbIns->iInstance);
2355 }
2356
2357 cNsElapsed = RTTimeNanoTS() - cNsElapsed;
2358 if (cNsElapsed >= PDMPOWEROFF_WARN_AT_NS)
2359 LogRel(("PDMR3PowerOff: USB device '%s'/%d took %'llu ns to power off\n",
2360 pUsbIns->pReg->szName, pUsbIns->iInstance, cNsElapsed));
2361
2362 }
2363 }
2364}
2365
2366
2367/**
2368 * Worker for PDMR3PowerOff that deals with one device instance.
2369 *
2370 * @param pVM The cross context VM structure.
2371 * @param pDevIns The device instance.
2372 * @param pAsync The structure for recording asynchronous notification tasks.
2373 */
2374DECLINLINE(void) pdmR3PowerOffDev(PVM pVM, PPDMDEVINS pDevIns, PPDMNOTIFYASYNCSTATS pAsync)
2375{
2376 if (!(pDevIns->Internal.s.fIntFlags & PDMDEVINSINT_FLAGS_SUSPENDED))
2377 {
2378 pDevIns->Internal.s.fIntFlags |= PDMDEVINSINT_FLAGS_SUSPENDED;
2379 if (pDevIns->pReg->pfnPowerOff)
2380 {
2381 uint64_t cNsElapsed = RTTimeNanoTS();
2382 PDMCritSectEnter(pVM, pDevIns->pCritSectRoR3, VERR_IGNORED);
2383
2384 if (!pDevIns->Internal.s.pfnAsyncNotify)
2385 {
2386 LogFlow(("PDMR3PowerOff: Notifying - device '%s'/%d\n", pDevIns->pReg->szName, pDevIns->iInstance));
2387 pDevIns->pReg->pfnPowerOff(pDevIns);
2388 if (pDevIns->Internal.s.pfnAsyncNotify)
2389 LogFlow(("PDMR3PowerOff: Async notification started - device '%s'/%d\n", pDevIns->pReg->szName, pDevIns->iInstance));
2390 }
2391 else if (pDevIns->Internal.s.pfnAsyncNotify(pDevIns))
2392 {
2393 LogFlow(("PDMR3PowerOff: Async notification completed - device '%s'/%d\n", pDevIns->pReg->szName, pDevIns->iInstance));
2394 pDevIns->Internal.s.pfnAsyncNotify = NULL;
2395 }
2396 if (pDevIns->Internal.s.pfnAsyncNotify)
2397 {
2398 pDevIns->Internal.s.fIntFlags &= ~PDMDEVINSINT_FLAGS_SUSPENDED;
2399 pdmR3NotifyAsyncAdd(pAsync, pDevIns->Internal.s.pDevR3->pReg->szName, pDevIns->iInstance);
2400 }
2401
2402 PDMCritSectLeave(pVM, pDevIns->pCritSectRoR3);
2403 cNsElapsed = RTTimeNanoTS() - cNsElapsed;
2404 if (cNsElapsed >= PDMPOWEROFF_WARN_AT_NS)
2405 LogFlow(("PDMR3PowerOff: Device '%s'/%d took %'llu ns to power off\n",
2406 pDevIns->pReg->szName, pDevIns->iInstance, cNsElapsed));
2407 }
2408 }
2409}
2410
2411
2412/**
2413 * This function will notify all the devices and their
2414 * attached drivers about the VM being powered off.
2415 *
2416 * @param pVM The cross context VM structure.
2417 */
2418VMMR3DECL(void) PDMR3PowerOff(PVM pVM)
2419{
2420 LogFlow(("PDMR3PowerOff:\n"));
2421 uint64_t cNsElapsed = RTTimeNanoTS();
2422
2423 /*
2424 * Clear the suspended flags on all devices and drivers first because they
2425 * might have been set during a suspend but the power off callbacks should
2426 * be called in any case.
2427 */
2428 for (PPDMDEVINS pDevIns = pVM->pdm.s.pDevInstances; pDevIns; pDevIns = pDevIns->Internal.s.pNextR3)
2429 {
2430 pDevIns->Internal.s.fIntFlags &= ~PDMDEVINSINT_FLAGS_SUSPENDED;
2431
2432 for (PPDMLUN pLun = pDevIns->Internal.s.pLunsR3; pLun; pLun = pLun->pNext)
2433 for (PPDMDRVINS pDrvIns = pLun->pTop; pDrvIns; pDrvIns = pDrvIns->Internal.s.pDown)
2434 pDrvIns->Internal.s.fVMSuspended = false;
2435 }
2436
2437#ifdef VBOX_WITH_USB
2438 for (PPDMUSBINS pUsbIns = pVM->pdm.s.pUsbInstances; pUsbIns; pUsbIns = pUsbIns->Internal.s.pNext)
2439 {
2440 pUsbIns->Internal.s.fVMSuspended = false;
2441
2442 for (PPDMLUN pLun = pUsbIns->Internal.s.pLuns; pLun; pLun = pLun->pNext)
2443 for (PPDMDRVINS pDrvIns = pLun->pTop; pDrvIns; pDrvIns = pDrvIns->Internal.s.pDown)
2444 pDrvIns->Internal.s.fVMSuspended = false;
2445 }
2446#endif
2447
2448 /*
2449 * The outer loop repeats until there are no more async requests.
2450 */
2451 PDMNOTIFYASYNCSTATS Async;
2452 pdmR3NotifyAsyncInit(&Async, "PDMR3PowerOff");
2453 for (;;)
2454 {
2455 pdmR3NotifyAsyncBeginLoop(&Async);
2456
2457 /*
2458 * Iterate thru the device instances and USB device instances,
2459 * processing the drivers associated with those.
2460 *
2461 * The attached drivers are normally processed first. Some devices
2462 * (like DevAHCI) though needs to be notified before the drivers so
2463 * that it doesn't kick off any new requests after the drivers stopped
2464 * taking any. (DrvVD changes to read-only in this particular case.)
2465 */
2466 for (PPDMDEVINS pDevIns = pVM->pdm.s.pDevInstances; pDevIns; pDevIns = pDevIns->Internal.s.pNextR3)
2467 {
2468 unsigned const cAsyncStart = Async.cAsync;
2469
2470 if (pDevIns->pReg->fFlags & PDM_DEVREG_FLAGS_FIRST_POWEROFF_NOTIFICATION)
2471 pdmR3PowerOffDev(pVM, pDevIns, &Async);
2472
2473 if (Async.cAsync == cAsyncStart)
2474 for (PPDMLUN pLun = pDevIns->Internal.s.pLunsR3; pLun; pLun = pLun->pNext)
2475 for (PPDMDRVINS pDrvIns = pLun->pTop; pDrvIns; pDrvIns = pDrvIns->Internal.s.pDown)
2476 if (!pdmR3PowerOffDrv(pDrvIns, &Async, pDevIns->pReg->szName, pDevIns->iInstance, pLun->iLun))
2477 break;
2478
2479 if ( Async.cAsync == cAsyncStart
2480 && !(pDevIns->pReg->fFlags & PDM_DEVREG_FLAGS_FIRST_POWEROFF_NOTIFICATION))
2481 pdmR3PowerOffDev(pVM, pDevIns, &Async);
2482 }
2483
2484#ifdef VBOX_WITH_USB
2485 for (PPDMUSBINS pUsbIns = pVM->pdm.s.pUsbInstances; pUsbIns; pUsbIns = pUsbIns->Internal.s.pNext)
2486 {
2487 unsigned const cAsyncStart = Async.cAsync;
2488
2489 for (PPDMLUN pLun = pUsbIns->Internal.s.pLuns; pLun; pLun = pLun->pNext)
2490 for (PPDMDRVINS pDrvIns = pLun->pTop; pDrvIns; pDrvIns = pDrvIns->Internal.s.pDown)
2491 if (!pdmR3PowerOffDrv(pDrvIns, &Async, pUsbIns->pReg->szName, pUsbIns->iInstance, pLun->iLun))
2492 break;
2493
2494 if (Async.cAsync == cAsyncStart)
2495 pdmR3PowerOffUsb(pUsbIns, &Async);
2496 }
2497#endif
2498 if (!Async.cAsync)
2499 break;
2500 pdmR3NotifyAsyncLog(&Async);
2501 pdmR3NotifyAsyncWaitAndProcessRequests(&Async, pVM);
2502 }
2503
2504 /*
2505 * Suspend all threads.
2506 */
2507 pdmR3ThreadSuspendAll(pVM);
2508
2509 cNsElapsed = RTTimeNanoTS() - cNsElapsed;
2510 LogRel(("PDMR3PowerOff: %'llu ns run time\n", cNsElapsed));
2511}
2512
2513
2514/**
2515 * Queries the base interface of a device instance.
2516 *
2517 * The caller can use this to query other interfaces the device implements
2518 * and use them to talk to the device.
2519 *
2520 * @returns VBox status code.
2521 * @param pUVM The user mode VM handle.
2522 * @param pszDevice Device name.
2523 * @param iInstance Device instance.
2524 * @param ppBase Where to store the pointer to the base device interface on success.
2525 * @remark We're not doing any locking ATM, so don't try call this at times when the
2526 * device chain is known to be updated.
2527 */
2528VMMR3DECL(int) PDMR3QueryDevice(PUVM pUVM, const char *pszDevice, unsigned iInstance, PPDMIBASE *ppBase)
2529{
2530 LogFlow(("PDMR3DeviceQuery: pszDevice=%p:{%s} iInstance=%u ppBase=%p\n", pszDevice, pszDevice, iInstance, ppBase));
2531 UVM_ASSERT_VALID_EXT_RETURN(pUVM, VERR_INVALID_VM_HANDLE);
2532 VM_ASSERT_VALID_EXT_RETURN(pUVM->pVM, VERR_INVALID_VM_HANDLE);
2533
2534 /*
2535 * Iterate registered devices looking for the device.
2536 */
2537 size_t cchDevice = strlen(pszDevice);
2538 for (PPDMDEV pDev = pUVM->pVM->pdm.s.pDevs; pDev; pDev = pDev->pNext)
2539 {
2540 if ( pDev->cchName == cchDevice
2541 && !memcmp(pDev->pReg->szName, pszDevice, cchDevice))
2542 {
2543 /*
2544 * Iterate device instances.
2545 */
2546 for (PPDMDEVINS pDevIns = pDev->pInstances; pDevIns; pDevIns = pDevIns->Internal.s.pPerDeviceNextR3)
2547 {
2548 if (pDevIns->iInstance == iInstance)
2549 {
2550 if (pDevIns->IBase.pfnQueryInterface)
2551 {
2552 *ppBase = &pDevIns->IBase;
2553 LogFlow(("PDMR3DeviceQuery: return VINF_SUCCESS and *ppBase=%p\n", *ppBase));
2554 return VINF_SUCCESS;
2555 }
2556
2557 LogFlow(("PDMR3DeviceQuery: returns VERR_PDM_DEVICE_INSTANCE_NO_IBASE\n"));
2558 return VERR_PDM_DEVICE_INSTANCE_NO_IBASE;
2559 }
2560 }
2561
2562 LogFlow(("PDMR3DeviceQuery: returns VERR_PDM_DEVICE_INSTANCE_NOT_FOUND\n"));
2563 return VERR_PDM_DEVICE_INSTANCE_NOT_FOUND;
2564 }
2565 }
2566
2567 LogFlow(("PDMR3QueryDevice: returns VERR_PDM_DEVICE_NOT_FOUND\n"));
2568 return VERR_PDM_DEVICE_NOT_FOUND;
2569}
2570
2571
2572/**
2573 * Queries the base interface of a device LUN.
2574 *
2575 * This differs from PDMR3QueryLun by that it returns the interface on the
2576 * device and not the top level driver.
2577 *
2578 * @returns VBox status code.
2579 * @param pUVM The user mode VM handle.
2580 * @param pszDevice Device name.
2581 * @param iInstance Device instance.
2582 * @param iLun The Logical Unit to obtain the interface of.
2583 * @param ppBase Where to store the base interface pointer.
2584 * @remark We're not doing any locking ATM, so don't try call this at times when the
2585 * device chain is known to be updated.
2586 */
2587VMMR3DECL(int) PDMR3QueryDeviceLun(PUVM pUVM, const char *pszDevice, unsigned iInstance, unsigned iLun, PPDMIBASE *ppBase)
2588{
2589 LogFlow(("PDMR3QueryDeviceLun: pszDevice=%p:{%s} iInstance=%u iLun=%u ppBase=%p\n",
2590 pszDevice, pszDevice, iInstance, iLun, ppBase));
2591 UVM_ASSERT_VALID_EXT_RETURN(pUVM, VERR_INVALID_VM_HANDLE);
2592 VM_ASSERT_VALID_EXT_RETURN(pUVM->pVM, VERR_INVALID_VM_HANDLE);
2593
2594 /*
2595 * Find the LUN.
2596 */
2597 PPDMLUN pLun;
2598 int rc = pdmR3DevFindLun(pUVM->pVM, pszDevice, iInstance, iLun, &pLun);
2599 if (RT_SUCCESS(rc))
2600 {
2601 *ppBase = pLun->pBase;
2602 LogFlow(("PDMR3QueryDeviceLun: return VINF_SUCCESS and *ppBase=%p\n", *ppBase));
2603 return VINF_SUCCESS;
2604 }
2605 LogFlow(("PDMR3QueryDeviceLun: returns %Rrc\n", rc));
2606 return rc;
2607}
2608
2609
2610/**
2611 * Query the interface of the top level driver on a LUN.
2612 *
2613 * @returns VBox status code.
2614 * @param pUVM The user mode VM handle.
2615 * @param pszDevice Device name.
2616 * @param iInstance Device instance.
2617 * @param iLun The Logical Unit to obtain the interface of.
2618 * @param ppBase Where to store the base interface pointer.
2619 * @remark We're not doing any locking ATM, so don't try call this at times when the
2620 * device chain is known to be updated.
2621 */
2622VMMR3DECL(int) PDMR3QueryLun(PUVM pUVM, const char *pszDevice, unsigned iInstance, unsigned iLun, PPDMIBASE *ppBase)
2623{
2624 LogFlow(("PDMR3QueryLun: pszDevice=%p:{%s} iInstance=%u iLun=%u ppBase=%p\n",
2625 pszDevice, pszDevice, iInstance, iLun, ppBase));
2626 UVM_ASSERT_VALID_EXT_RETURN(pUVM, VERR_INVALID_VM_HANDLE);
2627 PVM pVM = pUVM->pVM;
2628 VM_ASSERT_VALID_EXT_RETURN(pVM, VERR_INVALID_VM_HANDLE);
2629
2630 /*
2631 * Find the LUN.
2632 */
2633 PPDMLUN pLun;
2634 int rc = pdmR3DevFindLun(pVM, pszDevice, iInstance, iLun, &pLun);
2635 if (RT_SUCCESS(rc))
2636 {
2637 if (pLun->pTop)
2638 {
2639 *ppBase = &pLun->pTop->IBase;
2640 LogFlow(("PDMR3QueryLun: return %Rrc and *ppBase=%p\n", VINF_SUCCESS, *ppBase));
2641 return VINF_SUCCESS;
2642 }
2643 rc = VERR_PDM_NO_DRIVER_ATTACHED_TO_LUN;
2644 }
2645 LogFlow(("PDMR3QueryLun: returns %Rrc\n", rc));
2646 return rc;
2647}
2648
2649
2650/**
2651 * Query the interface of a named driver on a LUN.
2652 *
2653 * If the driver appears more than once in the driver chain, the first instance
2654 * is returned.
2655 *
2656 * @returns VBox status code.
2657 * @param pUVM The user mode VM handle.
2658 * @param pszDevice Device name.
2659 * @param iInstance Device instance.
2660 * @param iLun The Logical Unit to obtain the interface of.
2661 * @param pszDriver The driver name.
2662 * @param ppBase Where to store the base interface pointer.
2663 *
2664 * @remark We're not doing any locking ATM, so don't try call this at times when the
2665 * device chain is known to be updated.
2666 */
2667VMMR3DECL(int) PDMR3QueryDriverOnLun(PUVM pUVM, const char *pszDevice, unsigned iInstance, unsigned iLun, const char *pszDriver, PPPDMIBASE ppBase)
2668{
2669 LogFlow(("PDMR3QueryDriverOnLun: pszDevice=%p:{%s} iInstance=%u iLun=%u pszDriver=%p:{%s} ppBase=%p\n",
2670 pszDevice, pszDevice, iInstance, iLun, pszDriver, pszDriver, ppBase));
2671 UVM_ASSERT_VALID_EXT_RETURN(pUVM, VERR_INVALID_VM_HANDLE);
2672 VM_ASSERT_VALID_EXT_RETURN(pUVM->pVM, VERR_INVALID_VM_HANDLE);
2673
2674 /*
2675 * Find the LUN.
2676 */
2677 PPDMLUN pLun;
2678 int rc = pdmR3DevFindLun(pUVM->pVM, pszDevice, iInstance, iLun, &pLun);
2679 if (RT_SUCCESS(rc))
2680 {
2681 if (pLun->pTop)
2682 {
2683 for (PPDMDRVINS pDrvIns = pLun->pTop; pDrvIns; pDrvIns = pDrvIns->Internal.s.pDown)
2684 if (!strcmp(pDrvIns->pReg->szName, pszDriver))
2685 {
2686 *ppBase = &pDrvIns->IBase;
2687 LogFlow(("PDMR3QueryDriverOnLun: return %Rrc and *ppBase=%p\n", VINF_SUCCESS, *ppBase));
2688 return VINF_SUCCESS;
2689
2690 }
2691 rc = VERR_PDM_DRIVER_NOT_FOUND;
2692 }
2693 else
2694 rc = VERR_PDM_NO_DRIVER_ATTACHED_TO_LUN;
2695 }
2696 LogFlow(("PDMR3QueryDriverOnLun: returns %Rrc\n", rc));
2697 return rc;
2698}
2699
2700/**
2701 * Executes pending DMA transfers.
2702 * Forced Action handler.
2703 *
2704 * @param pVM The cross context VM structure.
2705 */
2706VMMR3DECL(void) PDMR3DmaRun(PVM pVM)
2707{
2708 /* Note! Not really SMP safe; restrict it to VCPU 0. */
2709 if (VMMGetCpuId(pVM) != 0)
2710 return;
2711
2712 if (VM_FF_TEST_AND_CLEAR(pVM, VM_FF_PDM_DMA))
2713 {
2714 if (pVM->pdm.s.pDmac)
2715 {
2716 bool fMore = pVM->pdm.s.pDmac->Reg.pfnRun(pVM->pdm.s.pDmac->pDevIns);
2717 if (fMore)
2718 VM_FF_SET(pVM, VM_FF_PDM_DMA);
2719 }
2720 }
2721}
2722
2723
2724/**
2725 * Allocates memory from the VMM device heap.
2726 *
2727 * @returns VBox status code.
2728 * @param pVM The cross context VM structure.
2729 * @param cbSize Allocation size.
2730 * @param pfnNotify Mapping/unmapping notification callback.
2731 * @param ppv Ring-3 pointer. (out)
2732 */
2733VMMR3_INT_DECL(int) PDMR3VmmDevHeapAlloc(PVM pVM, size_t cbSize, PFNPDMVMMDEVHEAPNOTIFY pfnNotify, RTR3PTR *ppv)
2734{
2735#ifdef DEBUG_bird
2736 if (!cbSize || cbSize > pVM->pdm.s.cbVMMDevHeapLeft)
2737 return VERR_NO_MEMORY;
2738#else
2739 AssertReturn(cbSize && cbSize <= pVM->pdm.s.cbVMMDevHeapLeft, VERR_NO_MEMORY);
2740#endif
2741
2742 Log(("PDMR3VMMDevHeapAlloc: %#zx\n", cbSize));
2743
2744 /** @todo Not a real heap as there's currently only one user. */
2745 *ppv = pVM->pdm.s.pvVMMDevHeap;
2746 pVM->pdm.s.cbVMMDevHeapLeft = 0;
2747 pVM->pdm.s.pfnVMMDevHeapNotify = pfnNotify;
2748 return VINF_SUCCESS;
2749}
2750
2751
2752/**
2753 * Frees memory from the VMM device heap
2754 *
2755 * @returns VBox status code.
2756 * @param pVM The cross context VM structure.
2757 * @param pv Ring-3 pointer.
2758 */
2759VMMR3_INT_DECL(int) PDMR3VmmDevHeapFree(PVM pVM, RTR3PTR pv)
2760{
2761 Log(("PDMR3VmmDevHeapFree: %RHv\n", pv)); RT_NOREF_PV(pv);
2762
2763 /** @todo not a real heap as there's currently only one user. */
2764 pVM->pdm.s.cbVMMDevHeapLeft = pVM->pdm.s.cbVMMDevHeap;
2765 pVM->pdm.s.pfnVMMDevHeapNotify = NULL;
2766 return VINF_SUCCESS;
2767}
2768
2769
2770/**
2771 * Worker for DBGFR3TraceConfig that checks if the given tracing group name
2772 * matches a device or driver name and applies the tracing config change.
2773 *
2774 * @returns VINF_SUCCESS or VERR_NOT_FOUND.
2775 * @param pVM The cross context VM structure.
2776 * @param pszName The tracing config group name. This is NULL if
2777 * the operation applies to every device and
2778 * driver.
2779 * @param cchName The length to match.
2780 * @param fEnable Whether to enable or disable the corresponding
2781 * trace points.
2782 * @param fApply Whether to actually apply the changes or just do
2783 * existence checks.
2784 */
2785VMMR3_INT_DECL(int) PDMR3TracingConfig(PVM pVM, const char *pszName, size_t cchName, bool fEnable, bool fApply)
2786{
2787 /** @todo This code is potentially racing driver attaching and detaching. */
2788
2789 /*
2790 * Applies to all.
2791 */
2792 if (pszName == NULL)
2793 {
2794 AssertReturn(fApply, VINF_SUCCESS);
2795
2796 for (PPDMDEVINS pDevIns = pVM->pdm.s.pDevInstances; pDevIns; pDevIns = pDevIns->Internal.s.pNextR3)
2797 {
2798 pDevIns->fTracing = fEnable;
2799 for (PPDMLUN pLun = pDevIns->Internal.s.pLunsR3; pLun; pLun = pLun->pNext)
2800 for (PPDMDRVINS pDrvIns = pLun->pTop; pDrvIns; pDrvIns = pDrvIns->Internal.s.pDown)
2801 pDrvIns->fTracing = fEnable;
2802 }
2803
2804#ifdef VBOX_WITH_USB
2805 for (PPDMUSBINS pUsbIns = pVM->pdm.s.pUsbInstances; pUsbIns; pUsbIns = pUsbIns->Internal.s.pNext)
2806 {
2807 pUsbIns->fTracing = fEnable;
2808 for (PPDMLUN pLun = pUsbIns->Internal.s.pLuns; pLun; pLun = pLun->pNext)
2809 for (PPDMDRVINS pDrvIns = pLun->pTop; pDrvIns; pDrvIns = pDrvIns->Internal.s.pDown)
2810 pDrvIns->fTracing = fEnable;
2811
2812 }
2813#endif
2814 return VINF_SUCCESS;
2815 }
2816
2817 /*
2818 * Specific devices, USB devices or drivers.
2819 * Decode prefix to figure which of these it applies to.
2820 */
2821 if (cchName <= 3)
2822 return VERR_NOT_FOUND;
2823
2824 uint32_t cMatches = 0;
2825 if (!strncmp("dev", pszName, 3))
2826 {
2827 for (PPDMDEVINS pDevIns = pVM->pdm.s.pDevInstances; pDevIns; pDevIns = pDevIns->Internal.s.pNextR3)
2828 {
2829 const char *pszDevName = pDevIns->Internal.s.pDevR3->pReg->szName;
2830 size_t cchDevName = strlen(pszDevName);
2831 if ( ( cchDevName == cchName
2832 && RTStrNICmp(pszName, pszDevName, cchDevName))
2833 || ( cchDevName == cchName - 3
2834 && RTStrNICmp(pszName + 3, pszDevName, cchDevName)) )
2835 {
2836 cMatches++;
2837 if (fApply)
2838 pDevIns->fTracing = fEnable;
2839 }
2840 }
2841 }
2842 else if (!strncmp("usb", pszName, 3))
2843 {
2844 for (PPDMUSBINS pUsbIns = pVM->pdm.s.pUsbInstances; pUsbIns; pUsbIns = pUsbIns->Internal.s.pNext)
2845 {
2846 const char *pszUsbName = pUsbIns->Internal.s.pUsbDev->pReg->szName;
2847 size_t cchUsbName = strlen(pszUsbName);
2848 if ( ( cchUsbName == cchName
2849 && RTStrNICmp(pszName, pszUsbName, cchUsbName))
2850 || ( cchUsbName == cchName - 3
2851 && RTStrNICmp(pszName + 3, pszUsbName, cchUsbName)) )
2852 {
2853 cMatches++;
2854 if (fApply)
2855 pUsbIns->fTracing = fEnable;
2856 }
2857 }
2858 }
2859 else if (!strncmp("drv", pszName, 3))
2860 {
2861 AssertReturn(fApply, VINF_SUCCESS);
2862
2863 for (PPDMDEVINS pDevIns = pVM->pdm.s.pDevInstances; pDevIns; pDevIns = pDevIns->Internal.s.pNextR3)
2864 for (PPDMLUN pLun = pDevIns->Internal.s.pLunsR3; pLun; pLun = pLun->pNext)
2865 for (PPDMDRVINS pDrvIns = pLun->pTop; pDrvIns; pDrvIns = pDrvIns->Internal.s.pDown)
2866 {
2867 const char *pszDrvName = pDrvIns->Internal.s.pDrv->pReg->szName;
2868 size_t cchDrvName = strlen(pszDrvName);
2869 if ( ( cchDrvName == cchName
2870 && RTStrNICmp(pszName, pszDrvName, cchDrvName))
2871 || ( cchDrvName == cchName - 3
2872 && RTStrNICmp(pszName + 3, pszDrvName, cchDrvName)) )
2873 {
2874 cMatches++;
2875 if (fApply)
2876 pDrvIns->fTracing = fEnable;
2877 }
2878 }
2879
2880#ifdef VBOX_WITH_USB
2881 for (PPDMUSBINS pUsbIns = pVM->pdm.s.pUsbInstances; pUsbIns; pUsbIns = pUsbIns->Internal.s.pNext)
2882 for (PPDMLUN pLun = pUsbIns->Internal.s.pLuns; pLun; pLun = pLun->pNext)
2883 for (PPDMDRVINS pDrvIns = pLun->pTop; pDrvIns; pDrvIns = pDrvIns->Internal.s.pDown)
2884 {
2885 const char *pszDrvName = pDrvIns->Internal.s.pDrv->pReg->szName;
2886 size_t cchDrvName = strlen(pszDrvName);
2887 if ( ( cchDrvName == cchName
2888 && RTStrNICmp(pszName, pszDrvName, cchDrvName))
2889 || ( cchDrvName == cchName - 3
2890 && RTStrNICmp(pszName + 3, pszDrvName, cchDrvName)) )
2891 {
2892 cMatches++;
2893 if (fApply)
2894 pDrvIns->fTracing = fEnable;
2895 }
2896 }
2897#endif
2898 }
2899 else
2900 return VERR_NOT_FOUND;
2901
2902 return cMatches > 0 ? VINF_SUCCESS : VERR_NOT_FOUND;
2903}
2904
2905
2906/**
2907 * Worker for DBGFR3TraceQueryConfig that checks whether all drivers, devices,
2908 * and USB device have the same tracing settings.
2909 *
2910 * @returns true / false.
2911 * @param pVM The cross context VM structure.
2912 * @param fEnabled The tracing setting to check for.
2913 */
2914VMMR3_INT_DECL(bool) PDMR3TracingAreAll(PVM pVM, bool fEnabled)
2915{
2916 for (PPDMDEVINS pDevIns = pVM->pdm.s.pDevInstances; pDevIns; pDevIns = pDevIns->Internal.s.pNextR3)
2917 {
2918 if (pDevIns->fTracing != (uint32_t)fEnabled)
2919 return false;
2920
2921 for (PPDMLUN pLun = pDevIns->Internal.s.pLunsR3; pLun; pLun = pLun->pNext)
2922 for (PPDMDRVINS pDrvIns = pLun->pTop; pDrvIns; pDrvIns = pDrvIns->Internal.s.pDown)
2923 if (pDrvIns->fTracing != (uint32_t)fEnabled)
2924 return false;
2925 }
2926
2927#ifdef VBOX_WITH_USB
2928 for (PPDMUSBINS pUsbIns = pVM->pdm.s.pUsbInstances; pUsbIns; pUsbIns = pUsbIns->Internal.s.pNext)
2929 {
2930 if (pUsbIns->fTracing != (uint32_t)fEnabled)
2931 return false;
2932
2933 for (PPDMLUN pLun = pUsbIns->Internal.s.pLuns; pLun; pLun = pLun->pNext)
2934 for (PPDMDRVINS pDrvIns = pLun->pTop; pDrvIns; pDrvIns = pDrvIns->Internal.s.pDown)
2935 if (pDrvIns->fTracing != (uint32_t)fEnabled)
2936 return false;
2937 }
2938#endif
2939
2940 return true;
2941}
2942
2943
2944/**
2945 * Worker for PDMR3TracingQueryConfig that adds a prefixed name to the output
2946 * string.
2947 *
2948 * @returns VINF_SUCCESS or VERR_BUFFER_OVERFLOW
2949 * @param ppszDst The pointer to the output buffer pointer.
2950 * @param pcbDst The pointer to the output buffer size.
2951 * @param fSpace Whether to add a space before the name.
2952 * @param pszPrefix The name prefix.
2953 * @param pszName The name.
2954 */
2955static int pdmR3TracingAdd(char **ppszDst, size_t *pcbDst, bool fSpace, const char *pszPrefix, const char *pszName)
2956{
2957 size_t const cchPrefix = strlen(pszPrefix);
2958 if (!RTStrNICmp(pszPrefix, pszName, cchPrefix))
2959 pszName += cchPrefix;
2960 size_t const cchName = strlen(pszName);
2961
2962 size_t const cchThis = cchName + cchPrefix + fSpace;
2963 if (cchThis >= *pcbDst)
2964 return VERR_BUFFER_OVERFLOW;
2965 if (fSpace)
2966 {
2967 **ppszDst = ' ';
2968 memcpy(*ppszDst + 1, pszPrefix, cchPrefix);
2969 memcpy(*ppszDst + 1 + cchPrefix, pszName, cchName + 1);
2970 }
2971 else
2972 {
2973 memcpy(*ppszDst, pszPrefix, cchPrefix);
2974 memcpy(*ppszDst + cchPrefix, pszName, cchName + 1);
2975 }
2976 *ppszDst += cchThis;
2977 *pcbDst -= cchThis;
2978 return VINF_SUCCESS;
2979}
2980
2981
2982/**
2983 * Worker for DBGFR3TraceQueryConfig use when not everything is either enabled
2984 * or disabled.
2985 *
2986 * @returns VINF_SUCCESS or VERR_BUFFER_OVERFLOW
2987 * @param pVM The cross context VM structure.
2988 * @param pszConfig Where to store the config spec.
2989 * @param cbConfig The size of the output buffer.
2990 */
2991VMMR3_INT_DECL(int) PDMR3TracingQueryConfig(PVM pVM, char *pszConfig, size_t cbConfig)
2992{
2993 int rc;
2994 char *pszDst = pszConfig;
2995 size_t cbDst = cbConfig;
2996
2997 for (PPDMDEVINS pDevIns = pVM->pdm.s.pDevInstances; pDevIns; pDevIns = pDevIns->Internal.s.pNextR3)
2998 {
2999 if (pDevIns->fTracing)
3000 {
3001 rc = pdmR3TracingAdd(&pszDst, &cbDst, pszDst != pszConfig, "dev", pDevIns->Internal.s.pDevR3->pReg->szName);
3002 if (RT_FAILURE(rc))
3003 return rc;
3004 }
3005
3006 for (PPDMLUN pLun = pDevIns->Internal.s.pLunsR3; pLun; pLun = pLun->pNext)
3007 for (PPDMDRVINS pDrvIns = pLun->pTop; pDrvIns; pDrvIns = pDrvIns->Internal.s.pDown)
3008 if (pDrvIns->fTracing)
3009 {
3010 rc = pdmR3TracingAdd(&pszDst, &cbDst, pszDst != pszConfig, "drv", pDrvIns->Internal.s.pDrv->pReg->szName);
3011 if (RT_FAILURE(rc))
3012 return rc;
3013 }
3014 }
3015
3016#ifdef VBOX_WITH_USB
3017 for (PPDMUSBINS pUsbIns = pVM->pdm.s.pUsbInstances; pUsbIns; pUsbIns = pUsbIns->Internal.s.pNext)
3018 {
3019 if (pUsbIns->fTracing)
3020 {
3021 rc = pdmR3TracingAdd(&pszDst, &cbDst, pszDst != pszConfig, "usb", pUsbIns->Internal.s.pUsbDev->pReg->szName);
3022 if (RT_FAILURE(rc))
3023 return rc;
3024 }
3025
3026 for (PPDMLUN pLun = pUsbIns->Internal.s.pLuns; pLun; pLun = pLun->pNext)
3027 for (PPDMDRVINS pDrvIns = pLun->pTop; pDrvIns; pDrvIns = pDrvIns->Internal.s.pDown)
3028 if (pDrvIns->fTracing)
3029 {
3030 rc = pdmR3TracingAdd(&pszDst, &cbDst, pszDst != pszConfig, "drv", pDrvIns->Internal.s.pDrv->pReg->szName);
3031 if (RT_FAILURE(rc))
3032 return rc;
3033 }
3034 }
3035#endif
3036
3037 return VINF_SUCCESS;
3038}
3039
3040
3041/**
3042 * Checks that a PDMDRVREG::szName, PDMDEVREG::szName or PDMUSBREG::szName
3043 * field contains only a limited set of ASCII characters.
3044 *
3045 * @returns true / false.
3046 * @param pszName The name to validate.
3047 */
3048bool pdmR3IsValidName(const char *pszName)
3049{
3050 char ch;
3051 while ( (ch = *pszName) != '\0'
3052 && ( RT_C_IS_ALNUM(ch)
3053 || ch == '-'
3054 || ch == ' ' /** @todo disallow this! */
3055 || ch == '_') )
3056 pszName++;
3057 return ch == '\0';
3058}
3059
3060
3061/**
3062 * Info handler for 'pdmtracingids'.
3063 *
3064 * @param pVM The cross context VM structure.
3065 * @param pHlp The output helpers.
3066 * @param pszArgs The optional user arguments.
3067 *
3068 * @remarks Can be called on most threads.
3069 */
3070static DECLCALLBACK(void) pdmR3InfoTracingIds(PVM pVM, PCDBGFINFOHLP pHlp, const char *pszArgs)
3071{
3072 /*
3073 * Parse the argument (optional).
3074 */
3075 if ( pszArgs
3076 && *pszArgs
3077 && strcmp(pszArgs, "all")
3078 && strcmp(pszArgs, "devices")
3079 && strcmp(pszArgs, "drivers")
3080 && strcmp(pszArgs, "usb"))
3081 {
3082 pHlp->pfnPrintf(pHlp, "Unable to grok '%s'\n", pszArgs);
3083 return;
3084 }
3085 bool fAll = !pszArgs || !*pszArgs || !strcmp(pszArgs, "all");
3086 bool fDevices = fAll || !strcmp(pszArgs, "devices");
3087 bool fUsbDevs = fAll || !strcmp(pszArgs, "usb");
3088 bool fDrivers = fAll || !strcmp(pszArgs, "drivers");
3089
3090 /*
3091 * Produce the requested output.
3092 */
3093/** @todo lock PDM lists! */
3094 /* devices */
3095 if (fDevices)
3096 {
3097 pHlp->pfnPrintf(pHlp, "Device tracing IDs:\n");
3098 for (PPDMDEVINS pDevIns = pVM->pdm.s.pDevInstances; pDevIns; pDevIns = pDevIns->Internal.s.pNextR3)
3099 pHlp->pfnPrintf(pHlp, "%05u %s\n", pDevIns->idTracing, pDevIns->Internal.s.pDevR3->pReg->szName);
3100 }
3101
3102 /* USB devices */
3103 if (fUsbDevs)
3104 {
3105 pHlp->pfnPrintf(pHlp, "USB device tracing IDs:\n");
3106 for (PPDMUSBINS pUsbIns = pVM->pdm.s.pUsbInstances; pUsbIns; pUsbIns = pUsbIns->Internal.s.pNext)
3107 pHlp->pfnPrintf(pHlp, "%05u %s\n", pUsbIns->idTracing, pUsbIns->Internal.s.pUsbDev->pReg->szName);
3108 }
3109
3110 /* Drivers */
3111 if (fDrivers)
3112 {
3113 pHlp->pfnPrintf(pHlp, "Driver tracing IDs:\n");
3114 for (PPDMDEVINS pDevIns = pVM->pdm.s.pDevInstances; pDevIns; pDevIns = pDevIns->Internal.s.pNextR3)
3115 {
3116 for (PPDMLUN pLun = pDevIns->Internal.s.pLunsR3; pLun; pLun = pLun->pNext)
3117 {
3118 uint32_t iLevel = 0;
3119 for (PPDMDRVINS pDrvIns = pLun->pTop; pDrvIns; pDrvIns = pDrvIns->Internal.s.pDown, iLevel++)
3120 pHlp->pfnPrintf(pHlp, "%05u %s (level %u, lun %u, dev %s)\n",
3121 pDrvIns->idTracing, pDrvIns->Internal.s.pDrv->pReg->szName,
3122 iLevel, pLun->iLun, pDevIns->Internal.s.pDevR3->pReg->szName);
3123 }
3124 }
3125
3126 for (PPDMUSBINS pUsbIns = pVM->pdm.s.pUsbInstances; pUsbIns; pUsbIns = pUsbIns->Internal.s.pNext)
3127 {
3128 for (PPDMLUN pLun = pUsbIns->Internal.s.pLuns; pLun; pLun = pLun->pNext)
3129 {
3130 uint32_t iLevel = 0;
3131 for (PPDMDRVINS pDrvIns = pLun->pTop; pDrvIns; pDrvIns = pDrvIns->Internal.s.pDown, iLevel++)
3132 pHlp->pfnPrintf(pHlp, "%05u %s (level %u, lun %u, dev %s)\n",
3133 pDrvIns->idTracing, pDrvIns->Internal.s.pDrv->pReg->szName,
3134 iLevel, pLun->iLun, pUsbIns->Internal.s.pUsbDev->pReg->szName);
3135 }
3136 }
3137 }
3138}
3139
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