VirtualBox

source: vbox/trunk/src/VBox/Runtime/testcase/tstRTR0Thread.cpp@ 102792

Last change on this file since 102792 was 98103, checked in by vboxsync, 22 months ago

Copyright year updates by scm.

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 4.6 KB
Line 
1/* $Id: tstRTR0Thread.cpp 98103 2023-01-17 14:15:46Z vboxsync $ */
2/** @file
3 * IPRT R0 Testcase - Kernel thread.
4 */
5
6/*
7 * Copyright (C) 2015-2023 Oracle and/or its affiliates.
8 *
9 * This file is part of VirtualBox base platform packages, as
10 * available from https://www.virtualbox.org.
11 *
12 * This program is free software; you can redistribute it and/or
13 * modify it under the terms of the GNU General Public License
14 * as published by the Free Software Foundation, in version 3 of the
15 * License.
16 *
17 * This program is distributed in the hope that it will be useful, but
18 * WITHOUT ANY WARRANTY; without even the implied warranty of
19 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
20 * General Public License for more details.
21 *
22 * You should have received a copy of the GNU General Public License
23 * along with this program; if not, see <https://www.gnu.org/licenses>.
24 *
25 * The contents of this file may alternatively be used under the terms
26 * of the Common Development and Distribution License Version 1.0
27 * (CDDL), a copy of it is provided in the "COPYING.CDDL" file included
28 * in the VirtualBox distribution, in which case the provisions of the
29 * CDDL are applicable instead of those of the GPL.
30 *
31 * You may elect to license modified versions of this file under the
32 * terms and conditions of either the GPL or the CDDL or both.
33 *
34 * SPDX-License-Identifier: GPL-3.0-only OR CDDL-1.0
35 */
36
37
38/*********************************************************************************************************************************
39* Header Files *
40*********************************************************************************************************************************/
41#include <iprt/thread.h>
42
43#include <iprt/asm-amd64-x86.h>
44#include <iprt/errcore.h>
45#include <VBox/sup.h>
46#include "tstRTR0Thread.h"
47#include "tstRTR0Common.h"
48
49#define TSTRTR0THREADDATA_MAGIC 0xcececece
50
51/**
52 * State structure for tstRTR0ThreadCallback().
53 */
54typedef struct TSTRTR0THREADDATA
55{
56 /** The magic value. */
57 uint32_t uMagic;
58 /** Sample counter. */
59 uint32_t volatile cCounter;
60 /** The thread handle. */
61 RTTHREAD hThread;
62} TSTRTR0THREADDATA;
63/** Pointer to state structure for tstRTR0ThreadCallback(). */
64typedef TSTRTR0THREADDATA *PTSTRTR0THREADDATA;
65
66
67static DECLCALLBACK(int) tstRTR0ThreadCallback(RTTHREAD hThread, void *pvUser)
68{
69 PTSTRTR0THREADDATA pData = (PTSTRTR0THREADDATA)pvUser;
70 RT_NOREF1(hThread);
71 if (RT_LIKELY(pData))
72 {
73 if (pData->uMagic == TSTRTR0THREADDATA_MAGIC)
74 pData->uMagic = ~pData->uMagic;
75 if (pData->cCounter == 127)
76 pData->cCounter = 196;
77 }
78 RTThreadUserSignal(RTThreadSelf());
79 return VINF_SUCCESS;
80}
81
82
83/**
84 * Service request callback function.
85 *
86 * @returns VBox status code.
87 * @param pSession The caller's session.
88 * @param u64Arg 64-bit integer argument.
89 * @param pReqHdr The request header. Input / Output. Optional.
90 */
91DECLEXPORT(int) TSTRTR0ThreadSrvReqHandler(PSUPDRVSESSION pSession, uint32_t uOperation,
92 uint64_t u64Arg, PSUPR0SERVICEREQHDR pReqHdr)
93{
94 RTR0TESTR0_SRV_REQ_PROLOG_RET(pReqHdr);
95 RT_NOREF2(pSession, u64Arg);
96
97 /*
98 * The big switch.
99 */
100 switch (uOperation)
101 {
102 RTR0TESTR0_IMPLEMENT_SANITY_CASES();
103 RTR0TESTR0_IMPLEMENT_DEFAULT_CASE(uOperation);
104
105 case TSTRTR0THREAD_BASIC:
106 {
107 TSTRTR0THREADDATA Data;
108 RT_ZERO(Data);
109 Data.uMagic = TSTRTR0THREADDATA_MAGIC;
110 Data.cCounter = 127;
111
112 /* Create the kernel thread. */
113 RTR0TESTR0_CHECK_RC_BREAK(RTThreadCreate(&Data.hThread, tstRTR0ThreadCallback, &Data, 0 /* cbStack */,
114 RTTHREADTYPE_DEFAULT, RTTHREADFLAGS_WAITABLE, "tstRTR0Thr"), VINF_SUCCESS);
115
116 /* Wait for thread to signal. */
117 RTR0TESTR0_CHECK_RC(RTThreadUserWait(Data.hThread, 500 /* ms */), VINF_SUCCESS);
118
119 /* Reset the semaphore. */
120 RTR0TESTR0_CHECK_RC(RTThreadUserReset(Data.hThread), VINF_SUCCESS);
121
122 /* Check if the thread has modified data as expected. */
123 RTR0TESTR0_CHECK_MSG_BREAK(Data.cCounter = 196 && Data.uMagic == ~TSTRTR0THREADDATA_MAGIC,
124 ("Thread didn't modify data as expected.\n"));
125 break;
126 }
127 }
128
129 RTR0TESTR0_SRV_REQ_EPILOG(pReqHdr);
130 /* The error indicator is the '!' in the message buffer. */
131 return VINF_SUCCESS;
132}
133
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