Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-winehq
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
wine
wine-winehq
Commits
dcfc7ab1
Commit
dcfc7ab1
authored
Apr 08, 2019
by
Zebediah Figura
Committed by
Alexandre Julliard
Apr 09, 2019
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
ntoskrnl.exe: Implement ExAcquireResourceSharedLite().
Signed-off-by:
Zebediah Figura
<
z.figura12@gmail.com
>
Signed-off-by:
Alexandre Julliard
<
julliard@winehq.org
>
parent
257c56f5
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
84 additions
and
1 deletion
+84
-1
ntoskrnl.exe.spec
dlls/ntoskrnl.exe/ntoskrnl.exe.spec
+1
-1
sync.c
dlls/ntoskrnl.exe/sync.c
+82
-0
wdm.h
include/ddk/wdm.h
+1
-0
No files found.
dlls/ntoskrnl.exe/ntoskrnl.exe.spec
View file @
dcfc7ab1
...
...
@@ -121,7 +121,7 @@
@ stdcall DbgQueryDebugFilterState(long long)
@ stub DbgSetDebugFilterState
@ stdcall ExAcquireResourceExclusiveLite(ptr long)
@ st
ub ExAcquireResourceSharedLite
@ st
dcall ExAcquireResourceSharedLite(ptr long)
@ stub ExAcquireSharedStarveExclusive
@ stub ExAcquireSharedWaitForExclusive
@ stub ExAllocateFromPagedLookasideList
...
...
dlls/ntoskrnl.exe/sync.c
View file @
dcfc7ab1
...
...
@@ -19,6 +19,7 @@
*/
#include "config.h"
#include <limits.h>
#include <stdarg.h>
#include "ntstatus.h"
...
...
@@ -742,6 +743,25 @@ NTSTATUS WINAPI ExInitializeResourceLite( ERESOURCE *resource )
return
STATUS_SUCCESS
;
}
/* Find an existing entry in the shared owner list, or create a new one. */
static
OWNER_ENTRY
*
resource_get_shared_entry
(
ERESOURCE
*
resource
,
ERESOURCE_THREAD
thread
)
{
ULONG
i
,
count
;
for
(
i
=
0
;
i
<
resource
->
OwnerEntry
.
TableSize
;
++
i
)
{
if
(
resource
->
OwnerTable
[
i
].
OwnerThread
==
thread
)
return
&
resource
->
OwnerTable
[
i
];
}
count
=
++
resource
->
OwnerEntry
.
TableSize
;
resource
->
OwnerTable
=
heap_realloc
(
resource
->
OwnerTable
,
count
*
sizeof
(
*
resource
->
OwnerTable
));
resource
->
OwnerTable
[
count
-
1
].
OwnerThread
=
thread
;
resource
->
OwnerTable
[
count
-
1
].
OwnerCount
=
0
;
return
&
resource
->
OwnerTable
[
count
-
1
];
}
/***********************************************************************
* ExAcquireResourceExclusiveLite (NTOSKRNL.EXE.@)
*/
...
...
@@ -798,3 +818,65 @@ BOOLEAN WINAPI ExAcquireResourceExclusiveLite( ERESOURCE *resource, BOOLEAN wait
return
TRUE
;
}
/***********************************************************************
* ExAcquireResourceSharedLite (NTOSKRNL.EXE.@)
*/
BOOLEAN
WINAPI
ExAcquireResourceSharedLite
(
ERESOURCE
*
resource
,
BOOLEAN
wait
)
{
OWNER_ENTRY
*
entry
;
KIRQL
irql
;
TRACE
(
"resource %p, wait %u.
\n
"
,
resource
,
wait
);
KeAcquireSpinLock
(
&
resource
->
SpinLock
,
&
irql
);
entry
=
resource_get_shared_entry
(
resource
,
(
ERESOURCE_THREAD
)
KeGetCurrentThread
()
);
if
(
resource
->
Flag
&
ResourceOwnedExclusive
)
{
if
(
resource
->
OwnerEntry
.
OwnerThread
==
(
ERESOURCE_THREAD
)
KeGetCurrentThread
())
{
/* We own the resource exclusively, so increase recursion. */
resource
->
ActiveEntries
++
;
KeReleaseSpinLock
(
&
resource
->
SpinLock
,
irql
);
return
TRUE
;
}
}
else
if
(
entry
->
OwnerCount
||
!
resource
->
NumberOfExclusiveWaiters
)
{
/* Either we already own the resource shared, or there are no exclusive
* owners or waiters, so we can grab it shared. */
entry
->
OwnerCount
++
;
resource
->
ActiveEntries
++
;
KeReleaseSpinLock
(
&
resource
->
SpinLock
,
irql
);
return
TRUE
;
}
if
(
!
wait
)
{
KeReleaseSpinLock
(
&
resource
->
SpinLock
,
irql
);
return
FALSE
;
}
if
(
!
resource
->
SharedWaiters
)
{
resource
->
SharedWaiters
=
heap_alloc
(
sizeof
(
*
resource
->
SharedWaiters
)
);
KeInitializeSemaphore
(
resource
->
SharedWaiters
,
0
,
INT_MAX
);
}
resource
->
NumberOfSharedWaiters
++
;
KeReleaseSpinLock
(
&
resource
->
SpinLock
,
irql
);
KeWaitForSingleObject
(
resource
->
SharedWaiters
,
Executive
,
KernelMode
,
FALSE
,
NULL
);
KeAcquireSpinLock
(
&
resource
->
SpinLock
,
&
irql
);
entry
->
OwnerCount
++
;
resource
->
ActiveEntries
++
;
resource
->
NumberOfSharedWaiters
--
;
KeReleaseSpinLock
(
&
resource
->
SpinLock
,
irql
);
return
TRUE
;
}
include/ddk/wdm.h
View file @
dcfc7ab1
...
...
@@ -1513,6 +1513,7 @@ static inline void IoSetCompletionRoutine(IRP *irp, PIO_COMPLETION_ROUTINE routi
NTSTATUS
WINAPI
DbgQueryDebugFilterState
(
ULONG
,
ULONG
);
void
WINAPI
ExAcquireFastMutexUnsafe
(
PFAST_MUTEX
);
BOOLEAN
WINAPI
ExAcquireResourceExclusiveLite
(
ERESOURCE
*
,
BOOLEAN
);
BOOLEAN
WINAPI
ExAcquireResourceSharedLite
(
ERESOURCE
*
,
BOOLEAN
);
PVOID
WINAPI
ExAllocatePool
(
POOL_TYPE
,
SIZE_T
);
PVOID
WINAPI
ExAllocatePoolWithQuota
(
POOL_TYPE
,
SIZE_T
);
PVOID
WINAPI
ExAllocatePoolWithTag
(
POOL_TYPE
,
SIZE_T
,
ULONG
);
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment