1 | /* $Id: SUPLibSem.cpp 28800 2010-04-27 08:22:32Z vboxsync $ */
|
---|
2 | /** @file
|
---|
3 | * VirtualBox Support Library - Semaphores, ring-3 implementation.
|
---|
4 | */
|
---|
5 |
|
---|
6 | /*
|
---|
7 | * Copyright (C) 2009 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 | #define LOG_GROUP LOG_GROUP_SUP
|
---|
32 | #include <VBox/sup.h>
|
---|
33 |
|
---|
34 | #include <VBox/err.h>
|
---|
35 | #include <VBox/param.h>
|
---|
36 | #include <iprt/assert.h>
|
---|
37 |
|
---|
38 | #include "SUPLibInternal.h"
|
---|
39 | #include "SUPDrvIOC.h"
|
---|
40 |
|
---|
41 |
|
---|
42 | /**
|
---|
43 | * Worker that makes a SUP_IOCTL_SEM_OP request.
|
---|
44 | *
|
---|
45 | * @returns VBox status code.
|
---|
46 | * @param pSession The session handle.
|
---|
47 | * @param uType The semaphore type.
|
---|
48 | * @param hSem The semaphore handle.
|
---|
49 | * @param uOp The operation.
|
---|
50 | * @param cMillies The timeout if applicable, otherwise 0.
|
---|
51 | */
|
---|
52 | DECLINLINE(int) supSemOp(PSUPDRVSESSION pSession, uint32_t uType, uintptr_t hSem, uint32_t uOp, uint32_t cMillies)
|
---|
53 | {
|
---|
54 | SUPSEMOP Req;
|
---|
55 | Req.Hdr.u32Cookie = g_u32Cookie;
|
---|
56 | Req.Hdr.u32SessionCookie = g_u32SessionCookie;
|
---|
57 | Req.Hdr.cbIn = SUP_IOCTL_SEM_OP_SIZE_IN;
|
---|
58 | Req.Hdr.cbOut = SUP_IOCTL_SEM_OP_SIZE_OUT;
|
---|
59 | Req.Hdr.fFlags = SUPREQHDR_FLAGS_DEFAULT;
|
---|
60 | Req.Hdr.rc = VERR_INTERNAL_ERROR;
|
---|
61 | Req.u.In.uType = uType;
|
---|
62 | Req.u.In.hSem = (uint32_t)hSem;
|
---|
63 | AssertReturn(Req.u.In.hSem == hSem, VERR_INVALID_HANDLE);
|
---|
64 | Req.u.In.uOp = uOp;
|
---|
65 | Req.u.In.cMillies = cMillies;
|
---|
66 | int rc = suplibOsIOCtl(&g_supLibData, SUP_IOCTL_SEM_OP, &Req, sizeof(Req));
|
---|
67 | if (RT_SUCCESS(rc))
|
---|
68 | rc = Req.Hdr.rc;
|
---|
69 |
|
---|
70 | return rc;
|
---|
71 | }
|
---|
72 |
|
---|
73 |
|
---|
74 | SUPDECL(int) SUPSemEventCreate(PSUPDRVSESSION pSession, PSUPSEMEVENT phEvent)
|
---|
75 | {
|
---|
76 | AssertPtrReturn(phEvent, VERR_INVALID_POINTER);
|
---|
77 |
|
---|
78 | SUPSEMCREATE Req;
|
---|
79 | Req.Hdr.u32Cookie = g_u32Cookie;
|
---|
80 | Req.Hdr.u32SessionCookie = g_u32SessionCookie;
|
---|
81 | Req.Hdr.cbIn = SUP_IOCTL_SEM_CREATE_SIZE_IN;
|
---|
82 | Req.Hdr.cbOut = SUP_IOCTL_SEM_CREATE_SIZE_OUT;
|
---|
83 | Req.Hdr.fFlags = SUPREQHDR_FLAGS_DEFAULT;
|
---|
84 | Req.Hdr.rc = VERR_INTERNAL_ERROR;
|
---|
85 | Req.u.In.uType = SUP_SEM_TYPE_EVENT;
|
---|
86 | int rc = suplibOsIOCtl(&g_supLibData, SUP_IOCTL_SEM_CREATE, &Req, sizeof(Req));
|
---|
87 | if (RT_SUCCESS(rc))
|
---|
88 | {
|
---|
89 | rc = Req.Hdr.rc;
|
---|
90 | if (RT_SUCCESS(rc))
|
---|
91 | *phEvent = (SUPSEMEVENT)(uintptr_t)Req.u.Out.hSem;
|
---|
92 | }
|
---|
93 |
|
---|
94 | return rc;
|
---|
95 | }
|
---|
96 |
|
---|
97 |
|
---|
98 | SUPDECL(int) SUPSemEventClose(PSUPDRVSESSION pSession, SUPSEMEVENT hEvent)
|
---|
99 | {
|
---|
100 | if (hEvent == NIL_SUPSEMEVENT)
|
---|
101 | return VINF_SUCCESS;
|
---|
102 | return supSemOp(pSession, SUP_SEM_TYPE_EVENT, (uintptr_t)hEvent, SUPSEMOP_CLOSE, 0);
|
---|
103 | }
|
---|
104 |
|
---|
105 |
|
---|
106 | SUPDECL(int) SUPSemEventSignal(PSUPDRVSESSION pSession, SUPSEMEVENT hEvent)
|
---|
107 | {
|
---|
108 | return supSemOp(pSession, SUP_SEM_TYPE_EVENT, (uintptr_t)hEvent, SUPSEMOP_SIGNAL, 0);
|
---|
109 | }
|
---|
110 |
|
---|
111 |
|
---|
112 | SUPDECL(int) SUPSemEventWaitNoResume(PSUPDRVSESSION pSession, SUPSEMEVENT hEvent, uint32_t cMillies)
|
---|
113 | {
|
---|
114 | return supSemOp(pSession, SUP_SEM_TYPE_EVENT, (uintptr_t)hEvent, SUPSEMOP_WAIT, cMillies);
|
---|
115 | }
|
---|
116 |
|
---|
117 | SUPDECL(int) SUPSemEventMultiCreate(PSUPDRVSESSION pSession, PSUPSEMEVENTMULTI phEventMulti)
|
---|
118 | {
|
---|
119 | AssertPtrReturn(phEventMulti, VERR_INVALID_POINTER);
|
---|
120 |
|
---|
121 | SUPSEMCREATE Req;
|
---|
122 | Req.Hdr.u32Cookie = g_u32Cookie;
|
---|
123 | Req.Hdr.u32SessionCookie = g_u32SessionCookie;
|
---|
124 | Req.Hdr.cbIn = SUP_IOCTL_SEM_CREATE_SIZE_IN;
|
---|
125 | Req.Hdr.cbOut = SUP_IOCTL_SEM_CREATE_SIZE_OUT;
|
---|
126 | Req.Hdr.fFlags = SUPREQHDR_FLAGS_DEFAULT;
|
---|
127 | Req.Hdr.rc = VERR_INTERNAL_ERROR;
|
---|
128 | Req.u.In.uType = SUP_SEM_TYPE_EVENT_MULTI;
|
---|
129 | int rc = suplibOsIOCtl(&g_supLibData, SUP_IOCTL_SEM_CREATE, &Req, sizeof(Req));
|
---|
130 | if (RT_SUCCESS(rc))
|
---|
131 | {
|
---|
132 | rc = Req.Hdr.rc;
|
---|
133 | if (RT_SUCCESS(rc))
|
---|
134 | *phEventMulti = (SUPSEMEVENTMULTI)(uintptr_t)Req.u.Out.hSem;
|
---|
135 | }
|
---|
136 |
|
---|
137 | return rc;
|
---|
138 | }
|
---|
139 |
|
---|
140 |
|
---|
141 | SUPDECL(int) SUPSemEventMultiClose(PSUPDRVSESSION pSession, SUPSEMEVENTMULTI hEventMulti)
|
---|
142 | {
|
---|
143 | if (hEventMulti == NIL_SUPSEMEVENTMULTI)
|
---|
144 | return VINF_SUCCESS;
|
---|
145 | return supSemOp(pSession, SUP_SEM_TYPE_EVENT_MULTI, (uintptr_t)hEventMulti, SUPSEMOP_CLOSE, 0);
|
---|
146 | }
|
---|
147 |
|
---|
148 |
|
---|
149 | SUPDECL(int) SUPSemEventMultiSignal(PSUPDRVSESSION pSession, SUPSEMEVENTMULTI hEventMulti)
|
---|
150 | {
|
---|
151 | return supSemOp(pSession, SUP_SEM_TYPE_EVENT_MULTI, (uintptr_t)hEventMulti, SUPSEMOP_SIGNAL, 0);
|
---|
152 | }
|
---|
153 |
|
---|
154 |
|
---|
155 | SUPDECL(int) SUPSemEventMultiReset(PSUPDRVSESSION pSession, SUPSEMEVENTMULTI hEventMulti)
|
---|
156 | {
|
---|
157 | return supSemOp(pSession, SUP_SEM_TYPE_EVENT_MULTI, (uintptr_t)hEventMulti, SUPSEMOP_RESET, 0);
|
---|
158 | }
|
---|
159 |
|
---|
160 |
|
---|
161 | SUPDECL(int) SUPSemEventMultiWaitNoResume(PSUPDRVSESSION pSession, SUPSEMEVENTMULTI hEventMulti, uint32_t cMillies)
|
---|
162 | {
|
---|
163 | return supSemOp(pSession, SUP_SEM_TYPE_EVENT_MULTI, (uintptr_t)hEventMulti, SUPSEMOP_WAIT, cMillies);
|
---|
164 | }
|
---|
165 |
|
---|