1 | /* $Id: PDMR0Driver.cpp 41800 2012-06-17 16:18:26Z vboxsync $ */
|
---|
2 | /** @file
|
---|
3 | * PDM - Pluggable Device and Driver Manager, R0 Driver parts.
|
---|
4 | */
|
---|
5 |
|
---|
6 | /*
|
---|
7 | * Copyright (C) 2010 Oracle Corporation
|
---|
8 | *
|
---|
9 | * This file is part of VirtualBox Open Source Edition (OSE), as
|
---|
10 | * available from http://www.virtualbox.org. This file is free software;
|
---|
11 | * you can redistribute it and/or modify it under the terms of the GNU
|
---|
12 | * General Public License (GPL) as published by the Free Software
|
---|
13 | * Foundation, in version 2 as it comes in the "COPYING" file of the
|
---|
14 | * VirtualBox OSE distribution. VirtualBox OSE is distributed in the
|
---|
15 | * hope that it will be useful, but WITHOUT ANY WARRANTY of any kind.
|
---|
16 | */
|
---|
17 |
|
---|
18 | /*******************************************************************************
|
---|
19 | * Header Files *
|
---|
20 | *******************************************************************************/
|
---|
21 | #define LOG_GROUP LOG_GROUP_PDM_DRIVER
|
---|
22 | #include "PDMInternal.h"
|
---|
23 | #include <VBox/vmm/pdm.h>
|
---|
24 | #include <VBox/vmm/vm.h>
|
---|
25 |
|
---|
26 | #include <VBox/log.h>
|
---|
27 | #include <VBox/err.h>
|
---|
28 | #include <iprt/assert.h>
|
---|
29 |
|
---|
30 |
|
---|
31 |
|
---|
32 | /**
|
---|
33 | * PDMDrvHlpCallR0 helper.
|
---|
34 | *
|
---|
35 | * @returns See PFNPDMDRVREQHANDLERR0.
|
---|
36 | * @param pVM Pointer to the VM (for validation).
|
---|
37 | * @param pReq Pointer to the request buffer.
|
---|
38 | */
|
---|
39 | VMMR0_INT_DECL(int) PDMR0DriverCallReqHandler(PVM pVM, PPDMDRIVERCALLREQHANDLERREQ pReq)
|
---|
40 | {
|
---|
41 | /*
|
---|
42 | * Validate input and make the call.
|
---|
43 | */
|
---|
44 | AssertPtrReturn(pVM, VERR_INVALID_POINTER);
|
---|
45 | AssertPtrReturn(pReq, VERR_INVALID_POINTER);
|
---|
46 | AssertMsgReturn(pReq->Hdr.cbReq == sizeof(*pReq), ("%#x != %#x\n", pReq->Hdr.cbReq, sizeof(*pReq)), VERR_INVALID_PARAMETER);
|
---|
47 |
|
---|
48 | PPDMDRVINS pDrvIns = pReq->pDrvInsR0;
|
---|
49 | AssertPtrReturn(pDrvIns, VERR_INVALID_POINTER);
|
---|
50 | AssertReturn(pDrvIns->Internal.s.pVMR0 == pVM, VERR_INVALID_PARAMETER);
|
---|
51 |
|
---|
52 | PFNPDMDRVREQHANDLERR0 pfnReqHandlerR0 = pDrvIns->Internal.s.pfnReqHandlerR0;
|
---|
53 | AssertPtrReturn(pfnReqHandlerR0, VERR_INVALID_POINTER);
|
---|
54 |
|
---|
55 | return pfnReqHandlerR0(pDrvIns, pReq->uOperation, pReq->u64Arg);
|
---|
56 | }
|
---|
57 |
|
---|