Files
mirror-processhacker/2.x/trunk/phlib/sync.c
T
wj32 68bda88da9 un-Win32-ization
git-svn-id: svn://svn.code.sf.net/p/processhacker/code@3238 21ef857c-d57f-4fe0-8362-d861dc6d29cd
2010-06-27 02:16:45 +00:00

370 lines
9.0 KiB
C

/*
* Process Hacker -
* misc. synchronization utilities
*
* Copyright (C) 2010 wj32
*
* This file is part of Process Hacker.
*
* Process Hacker is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* Process Hacker is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with Process Hacker. If not, see <http://www.gnu.org/licenses/>.
*/
#include <phbase.h>
/**
* Initializes an event object.
*
* \param Event A pointer to an event object.
*/
VOID FASTCALL PhfInitializeEvent(
__out PPH_EVENT Event
)
{
Event->Value = PH_EVENT_REFCOUNT_INC;
Event->EventHandle = NULL;
}
FORCEINLINE VOID PhpDereferenceEvent(
__inout PPH_EVENT Event
)
{
ULONG value;
value = _InterlockedExchangeAdd(&Event->Value, -PH_EVENT_REFCOUNT_INC) - PH_EVENT_REFCOUNT_INC;
// See if the reference count has become 0.
if ((value >> PH_EVENT_REFCOUNT_SHIFT) == 0)
{
if (Event->EventHandle)
{
NtClose(Event->EventHandle);
Event->EventHandle = NULL;
}
}
}
FORCEINLINE VOID PhpReferenceEvent(
__inout PPH_EVENT Event
)
{
_InterlockedExchangeAdd(&Event->Value, PH_EVENT_REFCOUNT_INC);
}
/**
* Sets an event object.
* Any threads waiting on the event will be released.
*
* \param Event A pointer to an event object.
*
* \remarks This function is thread-safe with regards to
* calls to PhSetEvent() and PhWaitForEvent().
*/
VOID FASTCALL PhfSetEvent(
__inout PPH_EVENT Event
)
{
ULONG value;
HANDLE eventHandle;
// Try to set the bit.
do
{
value = Event->Value;
// Has the event already been set?
if (value & PH_EVENT_SET)
return;
} while (_InterlockedCompareExchange(
&Event->Value,
value + PH_EVENT_SET,
value
) != value);
// Do an up-to-date read.
eventHandle = *(volatile HANDLE *)(&Event->EventHandle);
if (eventHandle)
{
NtSetEvent(eventHandle, NULL);
}
PhpDereferenceEvent(Event);
}
/**
* Waits for an event object to be set.
*
* \param Event A pointer to an event object.
* \param Timeout The timeout value.
*
* \return TRUE if the event object was set before the
* timeout period expired, otherwise FALSE.
*
* \remarks This function is thread-safe with regards to
* calls to PhSetEvent() and PhWaitForEvent(). To test
* the event, use PhTestEvent() instead of using a timeout
* of zero.
*/
BOOLEAN FASTCALL PhfWaitForEvent(
__inout PPH_EVENT Event,
__in_opt PLARGE_INTEGER Timeout
)
{
BOOLEAN result;
ULONG value;
HANDLE eventHandle;
value = Event->Value;
// Shortcut: if the event is set, return immediately.
if (value & PH_EVENT_SET)
return TRUE;
// Shortcut: if the timeout is 0, return immediately
// if the event isn't set.
if (Timeout && Timeout->QuadPart == 0)
return FALSE;
// Prevent the event from being invalidated.
PhpReferenceEvent(Event);
eventHandle = *(volatile HANDLE *)(&Event->EventHandle);
// Don't bother creating an event if we already have one.
if (!eventHandle)
{
NtCreateEvent(&eventHandle, EVENT_ALL_ACCESS, NULL, NotificationEvent, FALSE);
assert(eventHandle);
// Try to set the event handle to our event.
if (_InterlockedCompareExchangePointer(
&Event->EventHandle,
eventHandle,
NULL
) != NULL)
{
// Someone else set the event before we did.
NtClose(eventHandle);
}
}
// Essential: check the event one last time to see if
// it is set.
if (!(*(volatile ULONG *)(&Event->Value) & PH_EVENT_SET))
{
result = NtWaitForSingleObject(Event->EventHandle, FALSE, Timeout) == STATUS_WAIT_0;
}
else
{
result = TRUE;
}
PhpDereferenceEvent(Event);
return result;
}
/**
* Resets an event's state.
*
* \param Event A pointer to an event object.
*
* \remarks This function is not thread-safe.
* Make sure no other threads are using the
* event when you call this function.
*/
VOID FASTCALL PhfResetEvent(
__inout PPH_EVENT Event
)
{
assert(!Event->EventHandle);
if (PhTestEvent(Event))
Event->Value = PH_EVENT_REFCOUNT_INC;
}
VOID FASTCALL PhfInitializeRundownProtection(
__out PPH_RUNDOWN_PROTECT Protection
)
{
Protection->Value = 0;
}
BOOLEAN FASTCALL PhfAcquireRundownProtection(
__inout PPH_RUNDOWN_PROTECT Protection
)
{
ULONG_PTR value;
// Increment the reference count only if rundown
// has not started.
while (TRUE)
{
value = Protection->Value;
if (value & PH_RUNDOWN_ACTIVE)
return FALSE;
if ((ULONG_PTR)_InterlockedCompareExchangePointer(
(PPVOID)&Protection->Value,
(PVOID)(value + PH_RUNDOWN_REF_INC),
(PVOID)value
) == value)
return TRUE;
}
}
VOID FASTCALL PhfReleaseRundownProtection(
__inout PPH_RUNDOWN_PROTECT Protection
)
{
ULONG_PTR value;
while (TRUE)
{
value = Protection->Value;
if (value & PH_RUNDOWN_ACTIVE)
{
PPH_RUNDOWN_WAIT_BLOCK waitBlock;
// Since rundown is active, the reference count has been
// moved to the waiter's wait block. If we are the last
// user, we must wake up the waiter.
waitBlock = (PPH_RUNDOWN_WAIT_BLOCK)(value & ~PH_RUNDOWN_ACTIVE);
if (_InterlockedDecrementPointer(&waitBlock->Count) == 0)
{
PhSetEvent(&waitBlock->WakeEvent);
}
break;
}
else
{
// Decrement the reference count normally.
if ((ULONG_PTR)_InterlockedCompareExchangePointer(
(PPVOID)&Protection->Value,
(PVOID)(value - PH_RUNDOWN_REF_INC),
(PVOID)value
) == value)
break;
}
}
}
VOID FASTCALL PhfWaitForRundownProtection(
__inout PPH_RUNDOWN_PROTECT Protection
)
{
ULONG_PTR value;
ULONG_PTR count;
PH_RUNDOWN_WAIT_BLOCK waitBlock;
BOOLEAN waitBlockInitialized;
// Fast path. If the reference count is 0 or
// rundown has already been completed, return.
value = (ULONG_PTR)_InterlockedCompareExchangePointer(
(PPVOID)&Protection->Value,
(PVOID)PH_RUNDOWN_ACTIVE,
(PVOID)0
);
if (value == 0 || value == PH_RUNDOWN_ACTIVE)
return;
waitBlockInitialized = FALSE;
while (TRUE)
{
value = Protection->Value;
count = value >> PH_RUNDOWN_REF_SHIFT;
// Initialize the wait block if necessary.
if (count != 0 && !waitBlockInitialized)
{
PhInitializeEvent(&waitBlock.WakeEvent);
waitBlockInitialized = TRUE;
}
// Save the existing reference count.
waitBlock.Count = count;
if ((ULONG_PTR)_InterlockedCompareExchangePointer(
(PPVOID)&Protection->Value,
(PVOID)((ULONG_PTR)&waitBlock | PH_RUNDOWN_ACTIVE),
(PVOID)value
) == value)
{
if (count != 0)
PhWaitForEvent(&waitBlock.WakeEvent, NULL);
break;
}
}
}
VOID FASTCALL PhfInitializeInitOnce(
__out PPH_INITONCE InitOnce
)
{
InitOnce->State = PH_INITONCE_UNINITIALIZED;
PhInitializeEvent(&InitOnce->WakeEvent);
}
BOOLEAN FASTCALL PhfBeginInitOnce(
__inout PPH_INITONCE InitOnce
)
{
LONG oldState;
// Quick check first.
if (InitOnce->State == PH_INITONCE_INITIALIZED)
return FALSE;
// Initializing path.
oldState = _InterlockedCompareExchange(
&InitOnce->State,
PH_INITONCE_INITIALIZING,
PH_INITONCE_UNINITIALIZED
);
switch (oldState)
{
case PH_INITONCE_UNINITIALIZED:
return TRUE;
case PH_INITONCE_INITIALIZED:
return FALSE;
case PH_INITONCE_INITIALIZING:
PhWaitForEvent(&InitOnce->WakeEvent, NULL);
return FALSE;
default:
assert(FALSE);
return FALSE;
}
}
VOID FASTCALL PhfEndInitOnce(
__inout PPH_INITONCE InitOnce
)
{
_InterlockedExchange(&InitOnce->State, PH_INITONCE_INITIALIZED);
PhSetEvent(&InitOnce->WakeEvent);
}