1 | /** @file
|
---|
2 | * PDM - Pluggable Device Manager, Critical Sections.
|
---|
3 | */
|
---|
4 |
|
---|
5 | /*
|
---|
6 | * Copyright (C) 2006-2022 Oracle Corporation
|
---|
7 | *
|
---|
8 | * This file is part of VirtualBox Open Source Edition (OSE), as
|
---|
9 | * available from http://www.virtualbox.org. This file is free software;
|
---|
10 | * you can redistribute it and/or modify it under the terms of the GNU
|
---|
11 | * General Public License (GPL) as published by the Free Software
|
---|
12 | * Foundation, in version 2 as it comes in the "COPYING" file of the
|
---|
13 | * VirtualBox OSE distribution. VirtualBox OSE is distributed in the
|
---|
14 | * hope that it will be useful, but WITHOUT ANY WARRANTY of any kind.
|
---|
15 | *
|
---|
16 | * The contents of this file may alternatively be used under the terms
|
---|
17 | * of the Common Development and Distribution License Version 1.0
|
---|
18 | * (CDDL) only, as it comes in the "COPYING.CDDL" file of the
|
---|
19 | * VirtualBox OSE distribution, in which case the provisions of the
|
---|
20 | * CDDL are applicable instead of those of the GPL.
|
---|
21 | *
|
---|
22 | * You may elect to license modified versions of this file under the
|
---|
23 | * terms and conditions of either the GPL or the CDDL or both.
|
---|
24 | */
|
---|
25 |
|
---|
26 | #ifndef VBOX_INCLUDED_vmm_pdmcritsect_h
|
---|
27 | #define VBOX_INCLUDED_vmm_pdmcritsect_h
|
---|
28 | #ifndef RT_WITHOUT_PRAGMA_ONCE
|
---|
29 | # pragma once
|
---|
30 | #endif
|
---|
31 |
|
---|
32 | #include <VBox/types.h>
|
---|
33 | #include <iprt/critsect.h>
|
---|
34 |
|
---|
35 |
|
---|
36 | RT_C_DECLS_BEGIN
|
---|
37 |
|
---|
38 | /** @defgroup grp_pdm_critsect The PDM Critical Section API
|
---|
39 | * @ingroup grp_pdm
|
---|
40 | * @{
|
---|
41 | */
|
---|
42 |
|
---|
43 | /**
|
---|
44 | * A PDM critical section.
|
---|
45 | * Initialize using PDMDRVHLP::pfnCritSectInit().
|
---|
46 | */
|
---|
47 | typedef union PDMCRITSECT
|
---|
48 | {
|
---|
49 | /** Padding. */
|
---|
50 | uint8_t padding[HC_ARCH_BITS == 32 ? 0xc0 : 0x100];
|
---|
51 | #ifdef PDMCRITSECTINT_DECLARED
|
---|
52 | /** The internal structure (not normally visible). */
|
---|
53 | struct PDMCRITSECTINT s;
|
---|
54 | #endif
|
---|
55 | } PDMCRITSECT;
|
---|
56 |
|
---|
57 | VMMR3_INT_DECL(int) PDMR3CritSectBothTerm(PVM pVM);
|
---|
58 | VMMR3_INT_DECL(void) PDMR3CritSectLeaveAll(PVM pVM);
|
---|
59 | VMM_INT_DECL(void) PDMCritSectBothFF(PVMCC pVM, PVMCPUCC pVCpu);
|
---|
60 |
|
---|
61 |
|
---|
62 | VMMR3DECL(uint32_t) PDMR3CritSectCountOwned(PVM pVM, char *pszNames, size_t cbNames);
|
---|
63 |
|
---|
64 | VMMR3DECL(int) PDMR3CritSectInit(PVM pVM, PPDMCRITSECT pCritSect, RT_SRC_POS_DECL,
|
---|
65 | const char *pszNameFmt, ...) RT_IPRT_FORMAT_ATTR(6, 7);
|
---|
66 | VMMR3DECL(int) PDMR3CritSectEnterEx(PVM pVM, PPDMCRITSECT pCritSect, bool fCallRing3);
|
---|
67 | VMMR3DECL(bool) PDMR3CritSectYield(PVM pVM, PPDMCRITSECT pCritSect);
|
---|
68 | VMMR3DECL(const char *) PDMR3CritSectName(PCPDMCRITSECT pCritSect);
|
---|
69 | VMMR3DECL(int) PDMR3CritSectDelete(PVM pVM, PPDMCRITSECT pCritSect);
|
---|
70 | #if defined(IN_RING0) || defined(IN_RING3)
|
---|
71 | VMMDECL(int) PDMHCCritSectScheduleExitEvent(PPDMCRITSECT pCritSect, SUPSEMEVENT hEventToSignal);
|
---|
72 | #endif
|
---|
73 |
|
---|
74 | VMMDECL(DECL_CHECK_RETURN_NOT_R3(int))
|
---|
75 | PDMCritSectEnter(PVMCC pVM, PPDMCRITSECT pCritSect, int rcBusy);
|
---|
76 | VMMDECL(DECL_CHECK_RETURN_NOT_R3(int))
|
---|
77 | PDMCritSectEnterDebug(PVMCC pVM, PPDMCRITSECT pCritSect, int rcBusy, RTHCUINTPTR uId, RT_SRC_POS_DECL);
|
---|
78 | VMMDECL(DECL_CHECK_RETURN(int))
|
---|
79 | PDMCritSectTryEnter(PVMCC pVM, PPDMCRITSECT pCritSect);
|
---|
80 | VMMDECL(DECL_CHECK_RETURN(int))
|
---|
81 | PDMCritSectTryEnterDebug(PVMCC pVM, PPDMCRITSECT pCritSect, RTHCUINTPTR uId, RT_SRC_POS_DECL);
|
---|
82 | VMMDECL(int) PDMCritSectLeave(PVMCC pVM, PPDMCRITSECT pCritSect);
|
---|
83 |
|
---|
84 | VMMDECL(bool) PDMCritSectIsOwner(PVMCC pVM, PCPDMCRITSECT pCritSect);
|
---|
85 | VMMDECL(bool) PDMCritSectIsOwnerEx(PVMCPUCC pVCpu, PCPDMCRITSECT pCritSect);
|
---|
86 | VMMDECL(bool) PDMCritSectIsInitialized(PCPDMCRITSECT pCritSect);
|
---|
87 | VMMDECL(bool) PDMCritSectHasWaiters(PVMCC pVM, PCPDMCRITSECT pCritSect);
|
---|
88 | VMMDECL(uint32_t) PDMCritSectGetRecursion(PCPDMCRITSECT pCritSect);
|
---|
89 |
|
---|
90 | VMMR3DECL(PPDMCRITSECT) PDMR3CritSectGetNop(PVM pVM);
|
---|
91 |
|
---|
92 | /* Strict build: Remap the two enter calls to the debug versions. */
|
---|
93 | #ifdef VBOX_STRICT
|
---|
94 | # ifdef IPRT_INCLUDED_asm_h
|
---|
95 | # define PDMCritSectEnter(a_pVM, pCritSect, rcBusy) PDMCritSectEnterDebug((a_pVM), (pCritSect), (rcBusy), (uintptr_t)ASMReturnAddress(), RT_SRC_POS)
|
---|
96 | # define PDMCritSectTryEnter(a_pVM, pCritSect) PDMCritSectTryEnterDebug((a_pVM), (pCritSect), (uintptr_t)ASMReturnAddress(), RT_SRC_POS)
|
---|
97 | # else
|
---|
98 | # define PDMCritSectEnter(a_pVM, pCritSect, rcBusy) PDMCritSectEnterDebug((a_pVM), (pCritSect), (rcBusy), 0, RT_SRC_POS)
|
---|
99 | # define PDMCritSectTryEnter(a_pVM, pCritSect) PDMCritSectTryEnterDebug((a_pVM), (pCritSect), 0, RT_SRC_POS)
|
---|
100 | # endif
|
---|
101 | #endif
|
---|
102 |
|
---|
103 | /** @def PDM_CRITSECT_RELEASE_ASSERT_RC
|
---|
104 | * Helper for PDMCritSectEnter w/ rcBusy VINF_SUCCESS when there is no way
|
---|
105 | * to forward failures to the caller. */
|
---|
106 | #define PDM_CRITSECT_RELEASE_ASSERT_RC(a_pVM, a_pCritSect, a_rc) \
|
---|
107 | AssertReleaseMsg(RT_SUCCESS(a_rc), ("pVM=%p pCritSect=%p: %Rrc\n", (a_pVM), (a_pCritSect), (a_rc)))
|
---|
108 |
|
---|
109 | /** @def PDM_CRITSECT_RELEASE_ASSERT_RC_DEV
|
---|
110 | * Helper for PDMCritSectEnter w/ rcBusy VINF_SUCCESS when there is no way
|
---|
111 | * to forward failures to the caller, device edition. */
|
---|
112 | #define PDM_CRITSECT_RELEASE_ASSERT_RC_DEV(a_pDevIns, a_pCritSect, a_rc) \
|
---|
113 | AssertReleaseMsg(RT_SUCCESS(a_rc), ("pDevIns=%p pCritSect=%p: %Rrc\n", (a_pDevIns), (a_pCritSect), (a_rc)))
|
---|
114 |
|
---|
115 | /** @def PDM_CRITSECT_RELEASE_ASSERT_RC_DRV
|
---|
116 | * Helper for PDMCritSectEnter w/ rcBusy VINF_SUCCESS when there is no way
|
---|
117 | * to forward failures to the caller, driver edition. */
|
---|
118 | #define PDM_CRITSECT_RELEASE_ASSERT_RC_DRV(a_pDrvIns, a_pCritSect, a_rc) \
|
---|
119 | AssertReleaseMsg(RT_SUCCESS(a_rc), ("pDrvIns=%p pCritSect=%p: %Rrc\n", (a_pDrvIns), (a_pCritSect), (a_rc)))
|
---|
120 |
|
---|
121 | /** @def PDM_CRITSECT_RELEASE_ASSERT_RC_USB
|
---|
122 | * Helper for PDMCritSectEnter w/ rcBusy VINF_SUCCESS when there is no way
|
---|
123 | * to forward failures to the caller, USB device edition. */
|
---|
124 | #define PDM_CRITSECT_RELEASE_ASSERT_RC_USB(a_pUsbIns, a_pCritSect, a_rc) \
|
---|
125 | AssertReleaseMsg(RT_SUCCESS(a_rc), ("pUsbIns=%p pCritSect=%p: %Rrc\n", (a_pUsbIns), (a_pCritSect), (a_rc)))
|
---|
126 |
|
---|
127 |
|
---|
128 | /** @} */
|
---|
129 |
|
---|
130 | RT_C_DECLS_END
|
---|
131 |
|
---|
132 | #endif /* !VBOX_INCLUDED_vmm_pdmcritsect_h */
|
---|
133 |
|
---|