VirtualBox

source: vbox/trunk/src/VBox/Runtime/r0drv/haiku/semevent-r0drv-haiku.c@ 92247

Last change on this file since 92247 was 90488, checked in by vboxsync, 3 years ago

IPRT: Added RTSemEventIsSignalSafe and RTSemEventMultiIsSignalSafe - ring-0 only. bugref:6695

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 8.4 KB
Line 
1/* $Id: semevent-r0drv-haiku.c 90488 2021-08-03 09:17:59Z vboxsync $ */
2/** @file
3 * IPRT - Single Release Event Semaphores, Ring-0 Driver, Haiku.
4 */
5
6/*
7 * Copyright (C) 2012-2020 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-haiku-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 "internal/magics.h"
42
43
44/*********************************************************************************************************************************
45* Structures and Typedefs *
46*********************************************************************************************************************************/
47/**
48 * Haiku event semaphore.
49 */
50typedef struct RTSEMEVENTINTERNAL
51{
52 /** Magic value (RTSEMEVENT_MAGIC). */
53 uint32_t volatile u32Magic;
54 /** Reference counter. */
55 uint32_t volatile cRefs;
56 /** The semaphore Id. */
57 sem_id SemId;
58} RTSEMEVENTINTERNAL, *PRTSEMEVENTINTERNAL;
59
60
61RTDECL(int) RTSemEventCreate(PRTSEMEVENT phEventSem)
62{
63 return RTSemEventCreateEx(phEventSem, 0 /*fFlags*/, NIL_RTLOCKVALCLASS, NULL);
64}
65
66
67RTDECL(int) RTSemEventCreateEx(PRTSEMEVENT phEventSem, uint32_t fFlags, RTLOCKVALCLASS hClass, const char *pszNameFmt, ...)
68{
69 AssertCompile(sizeof(RTSEMEVENTINTERNAL) > sizeof(void *));
70 AssertReturn(!(fFlags & ~(RTSEMEVENT_FLAGS_NO_LOCK_VAL | RTSEMEVENT_FLAGS_BOOTSTRAP_HACK)), VERR_INVALID_PARAMETER);
71 Assert(!(fFlags & RTSEMEVENT_FLAGS_BOOTSTRAP_HACK) || (fFlags & RTSEMEVENT_FLAGS_NO_LOCK_VAL));
72 AssertPtrReturn(phEventSem, VERR_INVALID_POINTER);
73
74 PRTSEMEVENTINTERNAL pThis = (PRTSEMEVENTINTERNAL)RTMemAllocZ(sizeof(*pThis));
75 if (!pThis)
76 return VERR_NO_MEMORY;
77
78 pThis->u32Magic = RTSEMEVENT_MAGIC;
79 pThis->cRefs = 1;
80 pThis->SemId = create_sem(0, "IPRT Semaphore Event");
81 if (pThis->SemId >= B_OK)
82 {
83 set_sem_owner(pThis->SemId, B_SYSTEM_TEAM);
84 *phEventSem = pThis;
85 return VINF_SUCCESS;
86 }
87
88 RTMemFree(pThis);
89 return VERR_TOO_MANY_SEMAPHORES; /** @todo r=ramshankar: use RTErrConvertFromHaikuKernReturn */
90}
91
92
93/**
94 * Retains a reference to the event semaphore.
95 *
96 * @param pThis The event semaphore.
97 */
98DECLINLINE(void) rtR0SemEventHkuRetain(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 */
110DECLINLINE(void) rtR0SemEventHkuRelease(PRTSEMEVENTINTERNAL pThis)
111{
112 if (RT_UNLIKELY(ASMAtomicDecU32(&pThis->cRefs) == 0))
113 RTMemFree(pThis);
114}
115
116
117RTDECL(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 delete the semaphore to unblock everyone.
130 */
131 ASMAtomicWriteU32(&pThis->u32Magic, ~RTSEMEVENT_MAGIC);
132 delete_sem(pThis->SemId);
133 pThis->SemId = -1;
134 rtR0SemEventHkuRelease(pThis);
135 return VINF_SUCCESS;
136}
137
138
139RTDECL(int) RTSemEventSignal(RTSEMEVENT hEventSem)
140{
141 /*
142 * Validate input.
143 */
144 PRTSEMEVENTINTERNAL pThis = (PRTSEMEVENTINTERNAL)hEventSem;
145 AssertPtrReturn(pThis, VERR_INVALID_HANDLE);
146 AssertMsgReturn(pThis->u32Magic == RTSEMEVENT_MAGIC, ("pThis->u32Magic=%RX32 pThis=%p\n", pThis->u32Magic, pThis), VERR_INVALID_HANDLE);
147 rtR0SemEventHkuRetain(pThis);
148
149 /*
150 * Signal the event object.
151 * We must use B_DO_NOT_RESCHEDULE since we are being used from an irq handler.
152 */
153 release_sem_etc(pThis->SemId, 1, B_DO_NOT_RESCHEDULE);
154 rtR0SemEventHkuRelease(pThis);
155 return VINF_SUCCESS;
156}
157
158
159/**
160 * Worker for RTSemEventWaitEx and RTSemEventWaitExDebug.
161 *
162 * @returns VBox status code.
163 * @param pThis The event semaphore.
164 * @param fFlags See RTSemEventWaitEx.
165 * @param uTimeout See RTSemEventWaitEx.
166 * @param pSrcPos The source code position of the wait.
167 */
168static int rtR0SemEventWait(PRTSEMEVENTINTERNAL pThis, uint32_t fFlags, uint64_t uTimeout,
169 PCRTLOCKVALSRCPOS pSrcPos)
170{
171 status_t status;
172 int rc;
173 int32 flags = 0;
174 bigtime_t timeout; /* in microseconds */
175
176 /*
177 * Validate the input.
178 */
179 AssertPtrReturn(pThis, VERR_INVALID_PARAMETER);
180 AssertMsgReturn(pThis->u32Magic == RTSEMEVENT_MAGIC, ("%p u32Magic=%RX32\n", pThis, pThis->u32Magic), VERR_INVALID_PARAMETER);
181 AssertReturn(RTSEMWAIT_FLAGS_ARE_VALID(fFlags), VERR_INVALID_PARAMETER);
182
183 if (fFlags & RTSEMWAIT_FLAGS_INDEFINITE)
184 timeout = B_INFINITE_TIMEOUT;
185 else
186 {
187 if (fFlags & RTSEMWAIT_FLAGS_NANOSECS)
188 timeout = uTimeout / 1000;
189 else if (fFlags & RTSEMWAIT_FLAGS_MILLISECS)
190 timeout = uTimeout * 1000;
191 else
192 return VERR_INVALID_PARAMETER;
193
194 if (fFlags & RTSEMWAIT_FLAGS_RELATIVE)
195 flags |= B_RELATIVE_TIMEOUT;
196 else if (fFlags & RTSEMWAIT_FLAGS_ABSOLUTE)
197 flags |= B_ABSOLUTE_TIMEOUT;
198 else
199 return VERR_INVALID_PARAMETER;
200 }
201
202 if (fFlags & RTSEMWAIT_FLAGS_INTERRUPTIBLE)
203 flags |= B_CAN_INTERRUPT;
204 // likely not:
205 //else
206 // flags |= B_KILL_CAN_INTERRUPT;
207
208 rtR0SemEventHkuRetain(pThis);
209
210 status = acquire_sem_etc(pThis->SemId, 1, flags, timeout);
211
212 switch (status)
213 {
214 case B_OK:
215 rc = VINF_SUCCESS;
216 break;
217 case B_BAD_SEM_ID:
218 rc = VERR_SEM_DESTROYED;
219 break;
220 case B_INTERRUPTED:
221 rc = VERR_INTERRUPTED;
222 break;
223 case B_WOULD_BLOCK:
224 /* fallthrough ? */
225 case B_TIMED_OUT:
226 rc = VERR_TIMEOUT;
227 break;
228 default:
229 rc = RTErrConvertFromHaikuKernReturn(status);
230 break;
231 }
232
233 rtR0SemEventHkuRelease(pThis);
234 return rc;
235}
236
237
238RTDECL(int) RTSemEventWaitEx(RTSEMEVENT hEventSem, uint32_t fFlags, uint64_t uTimeout)
239{
240#ifndef RTSEMEVENT_STRICT
241 return rtR0SemEventWait(hEventSem, fFlags, uTimeout, NULL);
242#else
243 RTLOCKVALSRCPOS SrcPos = RTLOCKVALSRCPOS_INIT_NORMAL_API();
244 return rtR0SemEventWait(hEventSem, fFlags, uTimeout, &SrcPos);
245#endif
246}
247RT_EXPORT_SYMBOL(RTSemEventWaitEx);
248
249
250RTDECL(int) RTSemEventWaitExDebug(RTSEMEVENT hEventSem, uint32_t fFlags, uint64_t uTimeout,
251 RTHCUINTPTR uId, RT_SRC_POS_DECL)
252{
253 RTLOCKVALSRCPOS SrcPos = RTLOCKVALSRCPOS_INIT_DEBUG_API();
254 return rtR0SemEventWait(hEventSem, fFlags, uTimeout, &SrcPos);
255}
256RT_EXPORT_SYMBOL(RTSemEventWaitExDebug);
257
258
259RTDECL(uint32_t) RTSemEventGetResolution(void)
260{
261 /* At least that's what the API supports. */
262 return 1000;
263}
264
265
266RTR0DECL(bool) RTSemEventIsSignalSafe(void)
267{
268 /** @todo check the code... */
269 return false;
270}
271RT_EXPORT_SYMBOL(RTSemEventIsSignalSafe);
272
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