1 | /* $Id: SUPR0IdcClientStubs.c 44529 2013-02-04 15:54:15Z vboxsync $ */
|
---|
2 | /** @file
|
---|
3 | * VirtualBox Support Driver - IDC Client Lib, Stubs for SUPR0 APIs.
|
---|
4 | */
|
---|
5 |
|
---|
6 | /*
|
---|
7 | * Copyright (C) 2008-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 | * The contents of this file may alternatively be used under the terms
|
---|
18 | * of the Common Development and Distribution License Version 1.0
|
---|
19 | * (CDDL) only, as it comes in the "COPYING.CDDL" file of the
|
---|
20 | * VirtualBox OSE distribution, in which case the provisions of the
|
---|
21 | * CDDL are applicable instead of those of the GPL.
|
---|
22 | *
|
---|
23 | * You may elect to license modified versions of this file under the
|
---|
24 | * terms and conditions of either the GPL or the CDDL or both.
|
---|
25 | */
|
---|
26 |
|
---|
27 | /*******************************************************************************
|
---|
28 | * Header Files *
|
---|
29 | *******************************************************************************/
|
---|
30 | #include "SUPR0IdcClientInternal.h"
|
---|
31 | #include <VBox/err.h>
|
---|
32 | #include <iprt/asm.h>
|
---|
33 |
|
---|
34 |
|
---|
35 | /**
|
---|
36 | * Resolves a symbol.
|
---|
37 | *
|
---|
38 | * @returns Pointer to the symbol on success, NULL on failure.
|
---|
39 | *
|
---|
40 | * @param pHandle The IDC handle.
|
---|
41 | * @param pszName The name of the symbol.
|
---|
42 | */
|
---|
43 | static void supR0IdcGetSymbol(PSUPDRVIDCHANDLE pHandle, PFNRT *ppfn, const char *pszName)
|
---|
44 | {
|
---|
45 | SUPDRVIDCREQGETSYM Req;
|
---|
46 | int rc;
|
---|
47 |
|
---|
48 | /*
|
---|
49 | * Create and send a get symbol request.
|
---|
50 | */
|
---|
51 | Req.Hdr.cb = sizeof(Req);
|
---|
52 | Req.Hdr.rc = VERR_WRONG_ORDER;
|
---|
53 | Req.Hdr.pSession = pHandle->s.pSession;
|
---|
54 | Req.u.In.pszSymbol = pszName;
|
---|
55 | Req.u.In.pszModule = NULL;
|
---|
56 | rc = supR0IdcNativeCall(pHandle, SUPDRV_IDC_REQ_GET_SYMBOL, &Req.Hdr);
|
---|
57 | if (RT_SUCCESS(rc))
|
---|
58 | ASMAtomicWritePtr((void * volatile *)ppfn, Req.u.Out.pfnSymbol);
|
---|
59 | }
|
---|
60 |
|
---|
61 |
|
---|
62 | /**
|
---|
63 | * Resolves a symbol.
|
---|
64 | *
|
---|
65 | * @returns Pointer to the symbol on success, NULL on failure.
|
---|
66 | *
|
---|
67 | * @param pHandle The IDC handle.
|
---|
68 | * @param pszName The name of the symbol.
|
---|
69 | */
|
---|
70 | static void supR0IdcGetSymbolBySession(PSUPDRVSESSION pSession, PFNRT *ppfn, const char *pszName)
|
---|
71 | {
|
---|
72 | PSUPDRVIDCHANDLE pHandle = supR0IdcGetHandleFromSession(pSession);
|
---|
73 | if (pHandle)
|
---|
74 | supR0IdcGetSymbol(pHandle, ppfn, pszName);
|
---|
75 | }
|
---|
76 |
|
---|
77 |
|
---|
78 | SUPR0DECL(void *) SUPR0ObjRegister(PSUPDRVSESSION pSession, SUPDRVOBJTYPE enmType, PFNSUPDRVDESTRUCTOR pfnDestructor, void *pvUser1, void *pvUser2)
|
---|
79 | {
|
---|
80 | static DECLCALLBACKPTR(void *, s_pfn)(PSUPDRVSESSION /* pSession */, SUPDRVOBJTYPE /* enmType */, PFNSUPDRVDESTRUCTOR /* pfnDestructor */, void * /* pvUser1 */, void * /* pvUser2 */);
|
---|
81 | DECLCALLBACKPTR(void *, pfn)(PSUPDRVSESSION /* pSession */, SUPDRVOBJTYPE /* enmType */, PFNSUPDRVDESTRUCTOR /* pfnDestructor */, void * /* pvUser1 */, void * /* pvUser2 */);
|
---|
82 | pfn = s_pfn;
|
---|
83 | if (!pfn)
|
---|
84 | {
|
---|
85 | supR0IdcGetSymbolBySession(pSession, (PFNRT *)&s_pfn, "SUPR0ObjRegister");
|
---|
86 | pfn = s_pfn;
|
---|
87 | if (!pfn)
|
---|
88 | return NULL;
|
---|
89 | }
|
---|
90 |
|
---|
91 | return pfn(pSession, enmType, pfnDestructor, pvUser1, pvUser2);
|
---|
92 | }
|
---|
93 |
|
---|
94 |
|
---|
95 | SUPR0DECL(int) SUPR0ObjAddRef(void *pvObj, PSUPDRVSESSION pSession)
|
---|
96 | {
|
---|
97 | static DECLCALLBACKPTR(int, s_pfn)(void * /* pvObj */, PSUPDRVSESSION /* pSession */);
|
---|
98 | DECLCALLBACKPTR(int, pfn)(void * /* pvObj */, PSUPDRVSESSION /* pSession */);
|
---|
99 | pfn = s_pfn;
|
---|
100 | if (!pfn)
|
---|
101 | {
|
---|
102 | supR0IdcGetSymbolBySession(pSession, (PFNRT *)&s_pfn, "SUPR0ObjAddRef");
|
---|
103 | pfn = s_pfn;
|
---|
104 | if (!pfn)
|
---|
105 | return VERR_NOT_SUPPORTED;
|
---|
106 | }
|
---|
107 |
|
---|
108 | return pfn(pvObj, pSession);
|
---|
109 | }
|
---|
110 |
|
---|
111 |
|
---|
112 | SUPR0DECL(int) SUPR0ObjRelease(void *pvObj, PSUPDRVSESSION pSession)
|
---|
113 | {
|
---|
114 | static DECLCALLBACKPTR(int, s_pfn)(void * /* pvObj */, PSUPDRVSESSION /* pSession */);
|
---|
115 | DECLCALLBACKPTR(int, pfn)(void * /* pvObj */, PSUPDRVSESSION /* pSession */);
|
---|
116 | pfn = s_pfn;
|
---|
117 | if (!pfn)
|
---|
118 | {
|
---|
119 | supR0IdcGetSymbolBySession(pSession, (PFNRT *)&s_pfn, "SUPR0ObjRelease");
|
---|
120 | pfn = s_pfn;
|
---|
121 | if (!pfn)
|
---|
122 | return VERR_NOT_SUPPORTED;
|
---|
123 | }
|
---|
124 |
|
---|
125 | return pfn(pvObj, pSession);
|
---|
126 | }
|
---|
127 |
|
---|
128 |
|
---|
129 | SUPR0DECL(int) SUPR0ObjVerifyAccess(void *pvObj, PSUPDRVSESSION pSession, const char *pszObjName)
|
---|
130 | {
|
---|
131 | static DECLCALLBACKPTR(int, s_pfn)(void * /* pvObj */, PSUPDRVSESSION /* pSession */, const char * /* pszObjName */);
|
---|
132 | DECLCALLBACKPTR(int, pfn)(void * /* pvObj */, PSUPDRVSESSION /* pSession */, const char * /* pszObjName */);
|
---|
133 | pfn = s_pfn;
|
---|
134 | if (!pfn)
|
---|
135 | {
|
---|
136 | supR0IdcGetSymbolBySession(pSession, (PFNRT *)&s_pfn, "SUPR0ObjVerifyAccess");
|
---|
137 | pfn = s_pfn;
|
---|
138 | if (!pfn)
|
---|
139 | return VERR_NOT_SUPPORTED;
|
---|
140 | }
|
---|
141 |
|
---|
142 | return pfn(pvObj, pSession, pszObjName);
|
---|
143 | }
|
---|
144 |
|
---|