VirtualBox

source: vbox/trunk/src/VBox/HostDrivers/Support/SUPR0IdcClient.c@ 30111

Last change on this file since 30111 was 30111, checked in by vboxsync, 14 years ago

iprt/asm.h,*: Revised the ASMAtomic*Ptr functions and macros. The new saves lots of unsafe (void * volatile *) casts as well as adding some type safety when using GCC (typeof rulez).

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 7.2 KB
Line 
1/* $Id: SUPR0IdcClient.c 30111 2010-06-09 12:14:59Z vboxsync $ */
2/** @file
3 * VirtualBox Support Driver - IDC Client Lib, Core.
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* Global Variables *
37*******************************************************************************/
38static PSUPDRVIDCHANDLE volatile g_pMainHandle = NULL;
39
40
41/**
42 * Opens the IDC interface of the support driver.
43 *
44 * This will perform basic version negotiations and fail if the
45 * minmum requirements aren't met.
46 *
47 * @returns VBox status code.
48 * @param pHandle The handle structure (output).
49 * @param uReqVersion The requested version. Pass 0 for default.
50 * @param uMinVersion The minimum required version. Pass 0 for default.
51 * @param puSessionVersion Where to store the session version. Optional.
52 * @param puDriverVersion Where to store the session version. Optional.
53 * @param puDriverRevision Where to store the SVN revision of the driver. Optional.
54 */
55SUPR0DECL(int) SUPR0IdcOpen(PSUPDRVIDCHANDLE pHandle, uint32_t uReqVersion, uint32_t uMinVersion,
56 uint32_t *puSessionVersion, uint32_t *puDriverVersion, uint32_t *puDriverRevision)
57{
58 unsigned uDefaultMinVersion;
59 SUPDRVIDCREQCONNECT Req;
60 int rc;
61
62 /*
63 * Validate and set failure return values.
64 */
65 AssertPtrReturn(pHandle, VERR_INVALID_POINTER);
66 pHandle->s.pSession = NULL;
67
68 AssertPtrNullReturn(puSessionVersion, VERR_INVALID_POINTER);
69 if (puSessionVersion)
70 *puSessionVersion = 0;
71
72 AssertPtrNullReturn(puDriverVersion, VERR_INVALID_POINTER);
73 if (puDriverVersion)
74 *puDriverVersion = 0;
75
76 AssertPtrNullReturn(puDriverRevision, VERR_INVALID_POINTER);
77 if (puDriverRevision)
78 *puDriverRevision = 0;
79
80 AssertReturn(!uMinVersion || (uMinVersion & UINT32_C(0xffff0000)) == (SUPDRV_IDC_VERSION & UINT32_C(0xffff0000)), VERR_INVALID_PARAMETER);
81 AssertReturn(!uReqVersion || (uReqVersion & UINT32_C(0xffff0000)) == (SUPDRV_IDC_VERSION & UINT32_C(0xffff0000)), VERR_INVALID_PARAMETER);
82
83 /*
84 * Handle default version input and enforce minimum requirements made
85 * by this library.
86 *
87 * The clients will pass defaults (0), and only in the case that some
88 * special API feature was just added will they set an actual version.
89 * So, this is the place where can easily enforce a minimum IDC version
90 * on bugs and similar. It corresponds a bit to what SUPR3Init is
91 * responsible for.
92 */
93 uDefaultMinVersion = SUPDRV_IDC_VERSION & UINT32_C(0xffff0000);
94 if (!uMinVersion || uMinVersion < uDefaultMinVersion)
95 uMinVersion = uDefaultMinVersion;
96 if (!uReqVersion || uReqVersion < uDefaultMinVersion)
97 uReqVersion = uDefaultMinVersion;
98
99 /*
100 * Setup the connect request packet and call the OS specific function.
101 */
102 Req.Hdr.cb = sizeof(Req);
103 Req.Hdr.rc = VERR_WRONG_ORDER;
104 Req.Hdr.pSession = NULL;
105 Req.u.In.u32MagicCookie = SUPDRVIDCREQ_CONNECT_MAGIC_COOKIE;
106 Req.u.In.uMinVersion = uMinVersion;
107 Req.u.In.uReqVersion = uReqVersion;
108 rc = supR0IdcNativeOpen(pHandle, &Req);
109 if (RT_SUCCESS(rc))
110 {
111 pHandle->s.pSession = Req.u.Out.pSession;
112 if (puSessionVersion)
113 *puSessionVersion = Req.u.Out.uSessionVersion;
114 if (puDriverVersion)
115 *puDriverVersion = Req.u.Out.uDriverVersion;
116 if (puDriverRevision)
117 *puDriverRevision = Req.u.Out.uDriverRevision;
118
119 /*
120 * We don't really trust anyone, make sure the returned
121 * session and version values actually makes sense.
122 */
123 if ( VALID_PTR(Req.u.Out.pSession)
124 && Req.u.Out.uSessionVersion >= uMinVersion
125 && (Req.u.Out.uSessionVersion & UINT32_C(0xffff0000)) == (SUPDRV_IDC_VERSION & UINT32_C(0xffff0000)))
126 {
127 ASMAtomicCmpXchgPtr(&g_pMainHandle, pHandle, NULL);
128 return rc;
129 }
130
131 AssertMsgFailed(("pSession=%p uSessionVersion=0x%x (r%u)\n", Req.u.Out.pSession, Req.u.Out.uSessionVersion, Req.u.Out.uDriverRevision));
132 rc = VERR_VERSION_MISMATCH;
133 SUPR0IdcClose(pHandle);
134 }
135
136 return rc;
137}
138
139
140/**
141 * Closes a IDC connection established by SUPR0IdcOpen.
142 *
143 * @returns VBox status code.
144 * @param pHandle The IDC handle.
145 */
146SUPR0DECL(int) SUPR0IdcClose(PSUPDRVIDCHANDLE pHandle)
147{
148 SUPDRVIDCREQHDR Req;
149 int rc;
150
151 /*
152 * Catch closed handles and check that the session is valid.
153 */
154 AssertPtrReturn(pHandle, VERR_INVALID_POINTER);
155 if (!pHandle->s.pSession)
156 return VERR_INVALID_HANDLE;
157 AssertPtrReturn(pHandle->s.pSession, VERR_INVALID_HANDLE);
158
159 /*
160 * Create the request and hand it to the OS specific code.
161 */
162 Req.cb = sizeof(Req);
163 Req.rc = VERR_WRONG_ORDER;
164 Req.pSession = pHandle->s.pSession;
165 rc = supR0IdcNativeClose(pHandle, &Req);
166 if (RT_SUCCESS(rc))
167 {
168 pHandle->s.pSession = NULL;
169 ASMAtomicCmpXchgPtr(&g_pMainHandle, NULL, pHandle);
170 }
171 return rc;
172}
173
174
175/**
176 * Get the SUPDRV session for the IDC connection.
177 *
178 * This is for use with SUPDRV and component APIs that requires a valid
179 * session handle.
180 *
181 * @returns The session handle on success, NULL if the IDC handle is invalid.
182 *
183 * @param pHandle The IDC handle.
184 */
185SUPR0DECL(PSUPDRVSESSION) SUPR0IdcGetSession(PSUPDRVIDCHANDLE pHandle)
186{
187 PSUPDRVSESSION pSession;
188 AssertPtrReturn(pHandle, NULL);
189 pSession = pHandle->s.pSession;
190 AssertPtrReturn(pSession, NULL);
191 return pSession;
192}
193
194
195/**
196 * Looks up a IDC handle by session.
197 *
198 * @returns The IDC handle on success, NULL on failure.
199 * @param pSession The session to lookup.
200 *
201 * @internal
202 */
203PSUPDRVIDCHANDLE supR0IdcGetHandleFromSession(PSUPDRVSESSION pSession)
204{
205 PSUPDRVIDCHANDLE pHandle = ASMAtomicUoReadPtrT(&g_pMainHandle, PSUPDRVIDCHANDLE);
206 if ( VALID_PTR(pHandle)
207 && pHandle->s.pSession == pSession)
208 return pHandle;
209 return NULL;
210}
211
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