VirtualBox

source: vbox/trunk/src/VBox/Runtime/testcase/tstRTR0SemMutex.cpp@ 90803

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

Runtime: More VALID_PTR -> RT_VALID_PTR/AssertPtr.

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 11.7 KB
Line 
1/* $Id: tstRTR0SemMutex.cpp 90803 2021-08-23 19:08:38Z vboxsync $ */
2/** @file
3 * IPRT R0 Testcase - Mutex Semaphores.
4 */
5
6/*
7 * Copyright (C) 2009-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 <iprt/semaphore.h>
32
33#include <iprt/errcore.h>
34#include <VBox/sup.h>
35#include <iprt/string.h>
36#include <iprt/time.h>
37#include <iprt/thread.h>
38#include "tstRTR0SemMutex.h"
39
40
41/*********************************************************************************************************************************
42* Global Variables *
43*********************************************************************************************************************************/
44/** The mutex used in test #2. */
45static RTSEMMUTEX g_hMtxTest2 = NIL_RTSEMMUTEX;
46
47
48
49/**
50 * Service request callback function.
51 *
52 * @returns VBox status code.
53 * @param pSession The caller's session.
54 * @param u64Arg 64-bit integer argument.
55 * @param pReqHdr The request header. Input / Output. Optional.
56 */
57DECLEXPORT(int) TSTRTR0SemMutexSrvReqHandler(PSUPDRVSESSION pSession, uint32_t uOperation,
58 uint64_t u64Arg, PSUPR0SERVICEREQHDR pReqHdr)
59{
60 NOREF(pSession);
61 if (!RT_VALID_PTR(pReqHdr))
62 return VERR_INVALID_PARAMETER;
63 char *pszErr = (char *)(pReqHdr + 1);
64 size_t cchErr = pReqHdr->cbReq - sizeof(*pReqHdr);
65 if (cchErr < 32 || cchErr >= 0x10000)
66 return VERR_INVALID_PARAMETER;
67 *pszErr = '\0';
68
69#define SET_ERROR(szFmt) do { if (!*pszErr) RTStrPrintf(pszErr, cchErr, "!" szFmt); } while (0)
70#define SET_ERROR1(szFmt, a1) do { if (!*pszErr) RTStrPrintf(pszErr, cchErr, "!" szFmt, a1); } while (0)
71#define SET_ERROR2(szFmt, a1, a2) do { if (!*pszErr) RTStrPrintf(pszErr, cchErr, "!" szFmt, a1, a2); } while (0)
72#define SET_ERROR3(szFmt, a1, a2, a3) do { if (!*pszErr) RTStrPrintf(pszErr, cchErr, "!" szFmt, a1, a2, a3); } while (0)
73#define CHECK_RC_BREAK(rc, rcExpect, szOp) \
74 if ((rc) != (rcExpect)) \
75 { \
76 RTStrPrintf(pszErr, cchErr, "!%s -> %Rrc, expected %Rrc. line %u", szOp, rc, rcExpect, __LINE__); \
77 SUPR0Printf("%s -> %d, expected %d. line %u", szOp, rc, rcExpect, __LINE__); \
78 break; \
79 }
80
81 /*
82 * Set up test timeout (when applicable).
83 */
84 if (u64Arg > 120)
85 {
86 SET_ERROR1("Timeout is too large (max 120): %lld", u64Arg);
87 return VINF_SUCCESS;
88 }
89 uint64_t const StartTS = RTTimeSystemMilliTS();
90 uint32_t const cMsMax = (uint32_t)u64Arg * 1000;
91
92 /*
93 * The big switch.
94 */
95 RTSEMMUTEX hMtx;
96 int rc;
97 switch (uOperation)
98 {
99 case TSTRTR0SEMMUTEX_SANITY_OK:
100 break;
101
102 case TSTRTR0SEMMUTEX_SANITY_FAILURE:
103 SET_ERROR1("42failure42%1024s", "");
104 break;
105
106 case TSTRTR0SEMMUTEX_BASIC:
107 rc = RTSemMutexCreate(&hMtx);
108 CHECK_RC_BREAK(rc, VINF_SUCCESS, "RTSemMutexCreate");
109 do
110 {
111 /*
112 * The interruptible version first.
113 */
114 /* simple request and release, polling. */
115 rc = RTSemMutexRequestNoResume(hMtx, 0);
116 CHECK_RC_BREAK(rc, VINF_SUCCESS, "RTSemMutexRequestNoResume");
117 rc = RTSemMutexRelease(hMtx);
118 CHECK_RC_BREAK(rc, VINF_SUCCESS, "RTSemMutexRelease");
119
120 /* simple request and release, wait for ever. */
121 rc = RTSemMutexRequestNoResume(hMtx, RT_INDEFINITE_WAIT);
122 CHECK_RC_BREAK(rc, VINF_SUCCESS, "RTSemMutexRequestNoResume(indef_wait)");
123 rc = RTSemMutexRelease(hMtx);
124 CHECK_RC_BREAK(rc, VINF_SUCCESS, "RTSemMutexRelease");
125
126 /* simple request and release, wait a tiny while. */
127 rc = RTSemMutexRequestNoResume(hMtx, 133);
128 CHECK_RC_BREAK(rc, VINF_SUCCESS, "RTSemMutexRequestNoResume(133)");
129 rc = RTSemMutexRelease(hMtx);
130 CHECK_RC_BREAK(rc, VINF_SUCCESS, "RTSemMutexRelease");
131
132 /* nested request and release. */
133 rc = RTSemMutexRequestNoResume(hMtx, RT_INDEFINITE_WAIT);
134 CHECK_RC_BREAK(rc, VINF_SUCCESS, "RTSemMutexRequestNoResume#1");
135 rc = RTSemMutexRequestNoResume(hMtx, RT_INDEFINITE_WAIT);
136 CHECK_RC_BREAK(rc, VINF_SUCCESS, "RTSemMutexRequestNoResume#2");
137 rc = RTSemMutexRequestNoResume(hMtx, RT_INDEFINITE_WAIT);
138 CHECK_RC_BREAK(rc, VINF_SUCCESS, "RTSemMutexRequestNoResume#3");
139 rc = RTSemMutexRelease(hMtx);
140 CHECK_RC_BREAK(rc, VINF_SUCCESS, "RTSemMutexRelease#3");
141 rc = RTSemMutexRequestNoResume(hMtx, RT_INDEFINITE_WAIT);
142 CHECK_RC_BREAK(rc, VINF_SUCCESS, "RTSemMutexRequestNoResume#3b");
143 rc = RTSemMutexRelease(hMtx);
144 CHECK_RC_BREAK(rc, VINF_SUCCESS, "RTSemMutexRelease#3b");
145 rc = RTSemMutexRelease(hMtx);
146 CHECK_RC_BREAK(rc, VINF_SUCCESS, "RTSemMutexRelease#2");
147 rc = RTSemMutexRelease(hMtx);
148 CHECK_RC_BREAK(rc, VINF_SUCCESS, "RTSemMutexRelease#1");
149
150 /*
151 * The uninterruptible variant.
152 */
153 /* simple request and release, polling. */
154 rc = RTSemMutexRequest(hMtx, 0);
155 CHECK_RC_BREAK(rc, VINF_SUCCESS, "RTSemMutexRequest");
156 rc = RTSemMutexRelease(hMtx);
157 CHECK_RC_BREAK(rc, VINF_SUCCESS, "RTSemMutexRelease");
158
159 /* simple request and release, wait for ever. */
160 rc = RTSemMutexRequest(hMtx, RT_INDEFINITE_WAIT);
161 CHECK_RC_BREAK(rc, VINF_SUCCESS, "RTSemMutexRequest(indef_wait)");
162 rc = RTSemMutexRelease(hMtx);
163 CHECK_RC_BREAK(rc, VINF_SUCCESS, "RTSemMutexRelease");
164
165 /* simple request and release, wait a tiny while. */
166 rc = RTSemMutexRequest(hMtx, 133);
167 CHECK_RC_BREAK(rc, VINF_SUCCESS, "RTSemMutexRequest(133)");
168 rc = RTSemMutexRelease(hMtx);
169 CHECK_RC_BREAK(rc, VINF_SUCCESS, "RTSemMutexRelease");
170
171 /* nested request and release. */
172 rc = RTSemMutexRequest(hMtx, RT_INDEFINITE_WAIT);
173 CHECK_RC_BREAK(rc, VINF_SUCCESS, "RTSemMutexRequest#1");
174 rc = RTSemMutexRequest(hMtx, RT_INDEFINITE_WAIT);
175 CHECK_RC_BREAK(rc, VINF_SUCCESS, "RTSemMutexRequest#2");
176 rc = RTSemMutexRequest(hMtx, RT_INDEFINITE_WAIT);
177 CHECK_RC_BREAK(rc, VINF_SUCCESS, "RTSemMutexRequest#3");
178 rc = RTSemMutexRelease(hMtx);
179 CHECK_RC_BREAK(rc, VINF_SUCCESS, "RTSemMutexRelease#3");
180 rc = RTSemMutexRequest(hMtx, RT_INDEFINITE_WAIT);
181 CHECK_RC_BREAK(rc, VINF_SUCCESS, "RTSemMutexRequest#3b");
182 rc = RTSemMutexRelease(hMtx);
183 CHECK_RC_BREAK(rc, VINF_SUCCESS, "RTSemMutexRelease#3b");
184 rc = RTSemMutexRelease(hMtx);
185 CHECK_RC_BREAK(rc, VINF_SUCCESS, "RTSemMutexRelease#2");
186 rc = RTSemMutexRelease(hMtx);
187 CHECK_RC_BREAK(rc, VINF_SUCCESS, "RTSemMutexRelease#1");
188
189 } while (false);
190
191 rc = RTSemMutexDestroy(hMtx);
192 CHECK_RC_BREAK(rc, VINF_SUCCESS, "RTSemMutexDestroy");
193 break;
194
195 case TSTRTR0SEMMUTEX_TEST2_SETUP:
196 case TSTRTR0SEMMUTEX_TEST3_SETUP:
197 case TSTRTR0SEMMUTEX_TEST4_SETUP:
198 rc = RTSemMutexCreate(&g_hMtxTest2);
199 CHECK_RC_BREAK(rc, VINF_SUCCESS, "RTSemMutexCreate");
200 break;
201
202 case TSTRTR0SEMMUTEX_TEST2_DO:
203 for (unsigned i = 0; i < 200; i++)
204 {
205 if (i & 1)
206 {
207 rc = RTSemMutexRequestNoResume(g_hMtxTest2, RT_INDEFINITE_WAIT);
208 CHECK_RC_BREAK(rc, VINF_SUCCESS, "RTSemMutexRequestNoResume(,indef_wait)");
209 }
210 else
211 {
212 rc = RTSemMutexRequestNoResume(g_hMtxTest2, 30000);
213 CHECK_RC_BREAK(rc, VINF_SUCCESS, "RTSemMutexRequestNoResume(,30000)");
214 }
215 RTThreadSleep(1);
216 rc = RTSemMutexRelease(g_hMtxTest2);
217 CHECK_RC_BREAK(rc, VINF_SUCCESS, "RTSemMutexRelease");
218
219 if ((i % 16) == 15 && RTTimeSystemMilliTS() - StartTS >= cMsMax)
220 break;
221 }
222 break;
223
224
225 case TSTRTR0SEMMUTEX_TEST3_DO:
226 for (unsigned i = 0; i < 1000000; i++)
227 {
228 if (i & 1)
229 {
230 rc = RTSemMutexRequestNoResume(g_hMtxTest2, RT_INDEFINITE_WAIT);
231 CHECK_RC_BREAK(rc, VINF_SUCCESS, "RTSemMutexRequestNoResume(,indef_wait)");
232 }
233 else
234 {
235 rc = RTSemMutexRequestNoResume(g_hMtxTest2, 30000);
236 CHECK_RC_BREAK(rc, VINF_SUCCESS, "RTSemMutexRequestNoResume(,30000)");
237 }
238 rc = RTSemMutexRelease(g_hMtxTest2);
239 CHECK_RC_BREAK(rc, VINF_SUCCESS, "RTSemMutexRelease");
240
241 if ((i % 256) == 255 && RTTimeSystemMilliTS() - StartTS >= cMsMax)
242 break;
243 }
244 break;
245
246 case TSTRTR0SEMMUTEX_TEST4_DO:
247 for (unsigned i = 0; i < 1024; i++)
248 {
249 rc = RTSemMutexRequestNoResume(g_hMtxTest2, (i % 32));
250 if (rc != VERR_TIMEOUT)
251 {
252 CHECK_RC_BREAK(rc, VINF_SUCCESS, "RTSemMutexRequestNoResume");
253 RTThreadSleep(1000);
254
255 rc = RTSemMutexRelease(g_hMtxTest2);
256 CHECK_RC_BREAK(rc, VINF_SUCCESS, "RTSemMutexRelease");
257 }
258
259 if (RTTimeSystemMilliTS() - StartTS >= cMsMax)
260 break;
261 }
262 break;
263
264 case TSTRTR0SEMMUTEX_TEST2_CLEANUP:
265 case TSTRTR0SEMMUTEX_TEST3_CLEANUP:
266 case TSTRTR0SEMMUTEX_TEST4_CLEANUP:
267 rc = RTSemMutexDestroy(g_hMtxTest2);
268 CHECK_RC_BREAK(rc, VINF_SUCCESS, "RTSemMutexCreate");
269 g_hMtxTest2 = NIL_RTSEMMUTEX;
270 break;
271
272
273 default:
274 SET_ERROR1("Unknown test #%d", uOperation);
275 break;
276 }
277
278 /* The error indicator is the '!' in the message buffer. */
279 return VINF_SUCCESS;
280}
281
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