1 | /* $Id: semevent-r0drv-linux.c 33269 2010-10-20 15:42:28Z vboxsync $ */
|
---|
2 | /** @file
|
---|
3 | * IPRT - Single Release Event Semaphores, Ring-0 Driver, Linux.
|
---|
4 | */
|
---|
5 |
|
---|
6 | /*
|
---|
7 | * Copyright (C) 2006-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 | /*******************************************************************************
|
---|
29 | * Header Files *
|
---|
30 | *******************************************************************************/
|
---|
31 | #include "the-linux-kernel.h"
|
---|
32 | #include "internal/iprt.h"
|
---|
33 | #include <iprt/semaphore.h>
|
---|
34 |
|
---|
35 | #include <iprt/asm.h>
|
---|
36 | #include <iprt/assert.h>
|
---|
37 | #include <iprt/err.h>
|
---|
38 | #include <iprt/lockvalidator.h>
|
---|
39 | #include <iprt/mem.h>
|
---|
40 |
|
---|
41 | #include "waitqueue-r0drv-linux.h"
|
---|
42 | #include "internal/magics.h"
|
---|
43 |
|
---|
44 |
|
---|
45 | /*******************************************************************************
|
---|
46 | * Structures and Typedefs *
|
---|
47 | *******************************************************************************/
|
---|
48 | /**
|
---|
49 | * Linux event semaphore.
|
---|
50 | */
|
---|
51 | typedef struct RTSEMEVENTINTERNAL
|
---|
52 | {
|
---|
53 | /** Magic value (RTSEMEVENT_MAGIC). */
|
---|
54 | uint32_t volatile u32Magic;
|
---|
55 | /** The object status - !0 when signaled and 0 when reset. */
|
---|
56 | uint32_t volatile fState;
|
---|
57 | /** Reference counter. */
|
---|
58 | uint32_t volatile cRefs;
|
---|
59 | /** The wait queue. */
|
---|
60 | wait_queue_head_t Head;
|
---|
61 | } RTSEMEVENTINTERNAL, *PRTSEMEVENTINTERNAL;
|
---|
62 |
|
---|
63 |
|
---|
64 |
|
---|
65 | RTDECL(int) RTSemEventCreate(PRTSEMEVENT phEventSem)
|
---|
66 | {
|
---|
67 | return RTSemEventCreateEx(phEventSem, 0 /*fFlags*/, NIL_RTLOCKVALCLASS, NULL);
|
---|
68 | }
|
---|
69 |
|
---|
70 |
|
---|
71 | RTDECL(int) RTSemEventCreateEx(PRTSEMEVENT phEventSem, uint32_t fFlags, RTLOCKVALCLASS hClass, const char *pszNameFmt, ...)
|
---|
72 | {
|
---|
73 | PRTSEMEVENTINTERNAL pThis;
|
---|
74 |
|
---|
75 | AssertReturn(!(fFlags & ~(RTSEMEVENT_FLAGS_NO_LOCK_VAL | RTSEMEVENT_FLAGS_BOOTSTRAP_HACK)), VERR_INVALID_PARAMETER);
|
---|
76 | Assert(!(fFlags & RTSEMEVENT_FLAGS_BOOTSTRAP_HACK) || (fFlags & RTSEMEVENT_FLAGS_NO_LOCK_VAL));
|
---|
77 |
|
---|
78 | pThis = (PRTSEMEVENTINTERNAL)RTMemAlloc(sizeof(*pThis));
|
---|
79 | if (!pThis)
|
---|
80 | return VERR_NO_MEMORY;
|
---|
81 |
|
---|
82 | pThis->u32Magic = RTSEMEVENT_MAGIC;
|
---|
83 | pThis->fState = 0;
|
---|
84 | pThis->cRefs = 1;
|
---|
85 | init_waitqueue_head(&pThis->Head);
|
---|
86 |
|
---|
87 | *phEventSem = pThis;
|
---|
88 | return VINF_SUCCESS;
|
---|
89 | }
|
---|
90 | RT_EXPORT_SYMBOL(RTSemEventCreate);
|
---|
91 |
|
---|
92 |
|
---|
93 | /**
|
---|
94 | * Retains a reference to the event semaphore.
|
---|
95 | *
|
---|
96 | * @param pThis The event semaphore.
|
---|
97 | */
|
---|
98 | DECLINLINE(void) rtR0SemEventLnxRetain(PRTSEMEVENTINTERNAL pThis)
|
---|
99 | {
|
---|
100 | uint32_t cRefs = ASMAtomicIncU32(&pThis->cRefs);
|
---|
101 | Assert(cRefs < 100000); NOREF(cRefs);
|
---|
102 | }
|
---|
103 |
|
---|
104 |
|
---|
105 | /**
|
---|
106 | * Releases a reference to the event semaphore.
|
---|
107 | *
|
---|
108 | * @param pThis The event semaphore.
|
---|
109 | */
|
---|
110 | DECLINLINE(void) rtR0SemEventLnxRelease(PRTSEMEVENTINTERNAL pThis)
|
---|
111 | {
|
---|
112 | if (RT_UNLIKELY(ASMAtomicDecU32(&pThis->cRefs) == 0))
|
---|
113 | RTMemFree(pThis);
|
---|
114 | }
|
---|
115 |
|
---|
116 |
|
---|
117 | RTDECL(int) RTSemEventDestroy(RTSEMEVENT hEventSem)
|
---|
118 | {
|
---|
119 | /*
|
---|
120 | * Validate input.
|
---|
121 | */
|
---|
122 | PRTSEMEVENTINTERNAL pThis = hEventSem;
|
---|
123 | if (pThis == NIL_RTSEMEVENT)
|
---|
124 | return VINF_SUCCESS;
|
---|
125 | AssertMsgReturn(pThis->u32Magic == RTSEMEVENT_MAGIC, ("pThis->u32Magic=%RX32 pThis=%p\n", pThis->u32Magic, pThis), VERR_INVALID_HANDLE);
|
---|
126 | Assert(pThis->cRefs > 0);
|
---|
127 |
|
---|
128 | /*
|
---|
129 | * Invalidate it and signal the object just in case.
|
---|
130 | */
|
---|
131 | ASMAtomicWriteU32(&pThis->u32Magic, ~RTSEMEVENT_MAGIC);
|
---|
132 | ASMAtomicWriteU32(&pThis->fState, 0);
|
---|
133 | Assert(!waitqueue_active(&pThis->Head));
|
---|
134 | wake_up_all(&pThis->Head);
|
---|
135 | rtR0SemEventLnxRelease(pThis);
|
---|
136 | return VINF_SUCCESS;
|
---|
137 | }
|
---|
138 | RT_EXPORT_SYMBOL(RTSemEventDestroy);
|
---|
139 |
|
---|
140 |
|
---|
141 | RTDECL(int) RTSemEventSignal(RTSEMEVENT hEventSem)
|
---|
142 | {
|
---|
143 | /*
|
---|
144 | * Validate input.
|
---|
145 | */
|
---|
146 | PRTSEMEVENTINTERNAL pThis = (PRTSEMEVENTINTERNAL)hEventSem;
|
---|
147 | AssertPtrReturn(pThis, VERR_INVALID_HANDLE);
|
---|
148 | AssertMsgReturn(pThis->u32Magic == RTSEMEVENT_MAGIC, ("pThis->u32Magic=%RX32 pThis=%p\n", pThis->u32Magic, pThis), VERR_INVALID_HANDLE);
|
---|
149 | rtR0SemEventLnxRetain(pThis);
|
---|
150 |
|
---|
151 | /*
|
---|
152 | * Signal the event object.
|
---|
153 | */
|
---|
154 | ASMAtomicWriteU32(&pThis->fState, 1);
|
---|
155 | wake_up(&pThis->Head);
|
---|
156 |
|
---|
157 | rtR0SemEventLnxRelease(pThis);
|
---|
158 | return VINF_SUCCESS;
|
---|
159 | }
|
---|
160 | RT_EXPORT_SYMBOL(RTSemEventSignal);
|
---|
161 |
|
---|
162 |
|
---|
163 | /**
|
---|
164 | * Worker for RTSemEventWaitEx and RTSemEventWaitExDebug.
|
---|
165 | *
|
---|
166 | * @returns VBox status code.
|
---|
167 | * @param pThis The event semaphore.
|
---|
168 | * @param fFlags See RTSemEventWaitEx.
|
---|
169 | * @param uTimeout See RTSemEventWaitEx.
|
---|
170 | * @param pSrcPos The source code position of the wait.
|
---|
171 | */
|
---|
172 | static int rtR0SemEventLnxWait(PRTSEMEVENTINTERNAL pThis, uint32_t fFlags, uint64_t uTimeout,
|
---|
173 | PCRTLOCKVALSRCPOS pSrcPos)
|
---|
174 | {
|
---|
175 | int rc;
|
---|
176 |
|
---|
177 | /*
|
---|
178 | * Validate the input.
|
---|
179 | */
|
---|
180 | AssertPtrReturn(pThis, VERR_INVALID_PARAMETER);
|
---|
181 | AssertMsgReturn(pThis->u32Magic == RTSEMEVENT_MAGIC, ("%p u32Magic=%RX32\n", pThis, pThis->u32Magic), VERR_INVALID_PARAMETER);
|
---|
182 | AssertReturn(RTSEMWAIT_FLAGS_ARE_VALID(fFlags), VERR_INVALID_PARAMETER);
|
---|
183 | rtR0SemEventLnxRetain(pThis);
|
---|
184 |
|
---|
185 | /*
|
---|
186 | * Try grab the event without setting up the wait.
|
---|
187 | */
|
---|
188 | if ( 1 /** @todo check if there are someone waiting already - waitqueue_active, but then what do we do below? */
|
---|
189 | && ASMAtomicCmpXchgU32(&pThis->fState, 0, 1))
|
---|
190 | rc = VINF_SUCCESS;
|
---|
191 | else
|
---|
192 | {
|
---|
193 | /*
|
---|
194 | * We have to wait.
|
---|
195 | */
|
---|
196 | RTR0SEMLNXWAIT Wait;
|
---|
197 | rc = rtR0SemLnxWaitInit(&Wait, fFlags, uTimeout, &pThis->Head);
|
---|
198 | if (RT_SUCCESS(rc))
|
---|
199 | {
|
---|
200 | IPRT_DEBUG_SEMS_STATE(pThis, 'E');
|
---|
201 | for (;;)
|
---|
202 | {
|
---|
203 | /* The destruction test. */
|
---|
204 | if (RT_UNLIKELY(pThis->u32Magic != RTSEMEVENT_MAGIC))
|
---|
205 | rc = VERR_SEM_DESTROYED;
|
---|
206 | else
|
---|
207 | {
|
---|
208 | rtR0SemLnxWaitPrepare(&Wait);
|
---|
209 |
|
---|
210 | /* Check the exit conditions. */
|
---|
211 | if (RT_UNLIKELY(pThis->u32Magic != RTSEMEVENT_MAGIC))
|
---|
212 | rc = VERR_SEM_DESTROYED;
|
---|
213 | else if (ASMAtomicCmpXchgU32(&pThis->fState, 0, 1))
|
---|
214 | rc = VINF_SUCCESS;
|
---|
215 | else if (rtR0SemLnxWaitHasTimedOut(&Wait))
|
---|
216 | rc = VERR_TIMEOUT;
|
---|
217 | else if (rtR0SemLnxWaitWasInterrupted(&Wait))
|
---|
218 | rc = VERR_INTERRUPTED;
|
---|
219 | else
|
---|
220 | {
|
---|
221 | /* Do the wait and then recheck the conditions. */
|
---|
222 | rtR0SemLnxWaitDoIt(&Wait);
|
---|
223 | continue;
|
---|
224 | }
|
---|
225 | }
|
---|
226 | break;
|
---|
227 | }
|
---|
228 |
|
---|
229 | rtR0SemLnxWaitDelete(&Wait);
|
---|
230 | IPRT_DEBUG_SEMS_STATE_RC(pThis, 'E', rc);
|
---|
231 | }
|
---|
232 | }
|
---|
233 |
|
---|
234 | rtR0SemEventLnxRelease(pThis);
|
---|
235 | return rc;
|
---|
236 | }
|
---|
237 |
|
---|
238 |
|
---|
239 | #undef RTSemEventWaitEx
|
---|
240 | RTDECL(int) RTSemEventWaitEx(RTSEMEVENT hEventSem, uint32_t fFlags, uint64_t uTimeout)
|
---|
241 | {
|
---|
242 | #ifndef RTSEMEVENT_STRICT
|
---|
243 | return rtR0SemEventLnxWait(hEventSem, fFlags, uTimeout, NULL);
|
---|
244 | #else
|
---|
245 | RTLOCKVALSRCPOS SrcPos = RTLOCKVALSRCPOS_INIT_NORMAL_API();
|
---|
246 | return rtR0SemEventLnxWait(hEventSem, fFlags, uTimeout, &SrcPos);
|
---|
247 | #endif
|
---|
248 | }
|
---|
249 | RT_EXPORT_SYMBOL(RTSemEventWaitEx);
|
---|
250 |
|
---|
251 |
|
---|
252 | RTDECL(int) RTSemEventWaitExDebug(RTSEMEVENT hEventSem, uint32_t fFlags, uint64_t uTimeout,
|
---|
253 | RTHCUINTPTR uId, RT_SRC_POS_DECL)
|
---|
254 | {
|
---|
255 | RTLOCKVALSRCPOS SrcPos = RTLOCKVALSRCPOS_INIT_DEBUG_API();
|
---|
256 | return rtR0SemEventLnxWait(hEventSem, fFlags, uTimeout, &SrcPos);
|
---|
257 | }
|
---|
258 | RT_EXPORT_SYMBOL(RTSemEventWaitExDebug);
|
---|
259 |
|
---|
260 |
|
---|
261 | RTDECL(uint32_t) RTSemEventGetResolution(void)
|
---|
262 | {
|
---|
263 | return rtR0SemLnxWaitGetResolution();
|
---|
264 | }
|
---|
265 | RT_EXPORT_SYMBOL(RTSemEventGetResolution);
|
---|
266 |
|
---|