VirtualBox

source: vbox/trunk/src/VBox/Runtime/r0drv/linux/spinlock-r0drv-linux.c@ 44544

Last change on this file since 44544 was 44544, checked in by vboxsync, 12 years ago

Linux r0drv: implement DO_NOT_DISABLE_PROVE_LOCKING option.

  • Property svn:eol-style set to native
  • Property svn:keywords set to Id
File size: 6.6 KB
Line 
1/* $Id: spinlock-r0drv-linux.c 44544 2013-02-05 13:56:17Z vboxsync $ */
2/** @file
3 * IPRT - Spinlocks, Ring-0 Driver, Linux.
4 */
5
6/*
7 * Copyright (C) 2006-2013 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-linux-kernel.h"
32#include "internal/iprt.h"
33#include <iprt/spinlock.h>
34
35#include <iprt/asm.h>
36#if defined(RT_ARCH_AMD64) || defined(RT_ARCH_X86)
37# include <iprt/asm-amd64-x86.h>
38#endif
39#include <iprt/assert.h>
40#include <iprt/err.h>
41#include <iprt/mem.h>
42#include <iprt/mp.h>
43#include <iprt/thread.h>
44#include "internal/magics.h"
45
46
47/*******************************************************************************
48* Structures and Typedefs *
49*******************************************************************************/
50/**
51 * Wrapper for the spinlock_t structure.
52 */
53typedef struct RTSPINLOCKINTERNAL
54{
55 /** Spinlock magic value (RTSPINLOCK_MAGIC). */
56 uint32_t volatile u32Magic;
57 /** The spinlock creation flags. */
58 uint32_t fFlags;
59 /** The saved interrupt flag. */
60 unsigned long volatile fIntSaved;
61 /** The linux spinlock structure. */
62 spinlock_t Spinlock;
63#ifdef RT_MORE_STRICT
64 /** The idAssertCpu variable before acquring the lock for asserting after
65 * releasing the spinlock. */
66 RTCPUID volatile idAssertCpu;
67 /** The CPU that owns the lock. */
68 RTCPUID volatile idCpuOwner;
69#endif
70} RTSPINLOCKINTERNAL, *PRTSPINLOCKINTERNAL;
71
72
73
74RTDECL(int) RTSpinlockCreate(PRTSPINLOCK pSpinlock, uint32_t fFlags, const char *pszName)
75{
76 PRTSPINLOCKINTERNAL pThis;
77 AssertReturn(fFlags == RTSPINLOCK_FLAGS_INTERRUPT_SAFE || fFlags == RTSPINLOCK_FLAGS_INTERRUPT_UNSAFE, VERR_INVALID_PARAMETER);
78
79 /*
80 * Allocate.
81 */
82 Assert(sizeof(RTSPINLOCKINTERNAL) > sizeof(void *));
83 pThis = (PRTSPINLOCKINTERNAL)RTMemAlloc(sizeof(*pThis));
84 if (!pThis)
85 return VERR_NO_MEMORY;
86 /*
87 * Initialize and return.
88 */
89 pThis->u32Magic = RTSPINLOCK_MAGIC;
90 pThis->fFlags = fFlags;
91 pThis->fIntSaved = 0;
92#ifdef RT_MORE_STRICT
93 pThis->idCpuOwner = NIL_RTCPUID;
94 pThis->idAssertCpu = NIL_RTCPUID;
95#endif
96
97#if defined(CONFIG_PROVE_LOCKING) && defined(DO_NOT_DISABLE_PROVE_LOCKING)
98 /*
99 PLEASE DO NOT MODIFY THE NEXT FOUR LINES OF CODE!
100 We use this approach in order to split RTSPINLOCK_FLAGS_INTERRUPT_UNSAFE and
101 RTSPINLOCK_FLAGS_INTERRUPT_SAFE spinlocks into separated locking classes when
102 CONFIG_PROVE_LOCKING kernel option is enabled. Using single spin_lock_init()
103 call will trigger kernel warning regarding to incorrect spinlock usage.
104 */
105 if (fFlags == RTSPINLOCK_FLAGS_INTERRUPT_UNSAFE)
106 spin_lock_init(&pThis->Spinlock);
107 else
108 spin_lock_init(&pThis->Spinlock);
109#else
110 spin_lock_init(&pThis->Spinlock);
111#endif
112
113 *pSpinlock = pThis;
114 return VINF_SUCCESS;
115}
116RT_EXPORT_SYMBOL(RTSpinlockCreate);
117
118
119RTDECL(int) RTSpinlockDestroy(RTSPINLOCK Spinlock)
120{
121 /*
122 * Validate input.
123 */
124 PRTSPINLOCKINTERNAL pThis = (PRTSPINLOCKINTERNAL)Spinlock;
125 if (!pThis)
126 return VERR_INVALID_PARAMETER;
127 if (pThis->u32Magic != RTSPINLOCK_MAGIC)
128 {
129 AssertMsgFailed(("Invalid spinlock %p magic=%#x\n", pThis, pThis->u32Magic));
130 return VERR_INVALID_PARAMETER;
131 }
132
133 ASMAtomicIncU32(&pThis->u32Magic);
134 RTMemFree(pThis);
135 return VINF_SUCCESS;
136}
137RT_EXPORT_SYMBOL(RTSpinlockDestroy);
138
139
140RTDECL(void) RTSpinlockAcquire(RTSPINLOCK Spinlock)
141{
142 PRTSPINLOCKINTERNAL pThis = (PRTSPINLOCKINTERNAL)Spinlock;
143 RT_ASSERT_PREEMPT_CPUID_VAR();
144 AssertMsg(pThis && pThis->u32Magic == RTSPINLOCK_MAGIC,
145 ("pThis=%p u32Magic=%08x\n", pThis, pThis ? (int)pThis->u32Magic : 0));
146
147#if defined(CONFIG_PROVE_LOCKING) && !defined(DO_NOT_DISABLE_PROVE_LOCKING)
148 lockdep_off();
149#endif
150 if (pThis->fFlags & RTSPINLOCK_FLAGS_INTERRUPT_SAFE)
151 {
152 unsigned long fIntSaved;
153 spin_lock_irqsave(&pThis->Spinlock, fIntSaved);
154 pThis->fIntSaved = fIntSaved;
155 }
156 else
157 spin_lock(&pThis->Spinlock);
158#if defined(CONFIG_PROVE_LOCKING) && !defined(DO_NOT_DISABLE_PROVE_LOCKING)
159 lockdep_on();
160#endif
161
162 RT_ASSERT_PREEMPT_CPUID_SPIN_ACQUIRED(pThis);
163}
164RT_EXPORT_SYMBOL(RTSpinlockAcquire);
165
166
167RTDECL(void) RTSpinlockRelease(RTSPINLOCK Spinlock)
168{
169 PRTSPINLOCKINTERNAL pThis = (PRTSPINLOCKINTERNAL)Spinlock;
170 RT_ASSERT_PREEMPT_CPUID_SPIN_RELEASE_VARS();
171 AssertMsg(pThis && pThis->u32Magic == RTSPINLOCK_MAGIC,
172 ("pThis=%p u32Magic=%08x\n", pThis, pThis ? (int)pThis->u32Magic : 0));
173 RT_ASSERT_PREEMPT_CPUID_SPIN_RELEASE(pThis);
174
175#if defined(CONFIG_PROVE_LOCKING) && !defined(DO_NOT_DISABLE_PROVE_LOCKING)
176 lockdep_off();
177#endif
178 if (pThis->fFlags & RTSPINLOCK_FLAGS_INTERRUPT_SAFE)
179 {
180 unsigned long fIntSaved = pThis->fIntSaved;
181 pThis->fIntSaved = 0;
182 spin_unlock_irqrestore(&pThis->Spinlock, fIntSaved);
183 }
184 else
185 spin_unlock(&pThis->Spinlock);
186#if defined(CONFIG_PROVE_LOCKING) && !defined(DO_NOT_DISABLE_PROVE_LOCKING)
187 lockdep_on();
188#endif
189
190 RT_ASSERT_PREEMPT_CPUID();
191}
192RT_EXPORT_SYMBOL(RTSpinlockRelease);
193
194
195RTDECL(void) RTSpinlockReleaseNoInts(RTSPINLOCK Spinlock)
196{
197#if 1
198 if (RT_UNLIKELY(!(Spinlock->fFlags & RTSPINLOCK_FLAGS_INTERRUPT_SAFE)))
199 RTAssertMsg2("RTSpinlockReleaseNoInts: %p (magic=%#x)\n", Spinlock, Spinlock->u32Magic);
200#else
201 AssertRelease(Spinlock->fFlags & RTSPINLOCK_FLAGS_INTERRUPT_SAFE);
202#endif
203 RTSpinlockRelease(Spinlock);
204}
205RT_EXPORT_SYMBOL(RTSpinlockReleaseNoInts);
206
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