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
fdd483c0
Commit
fdd483c0
authored
Jan 31, 2014
by
Dmitry Timoshkov
Committed by
Alexandre Julliard
Feb 04, 2014
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
server: Fix generic access mapping for a semaphore.
parent
deda1478
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
8 additions
and
12 deletions
+8
-12
security.c
dlls/advapi32/tests/security.c
+6
-10
semaphore.c
server/semaphore.c
+2
-2
No files found.
dlls/advapi32/tests/security.c
View file @
fdd483c0
...
...
@@ -4653,14 +4653,14 @@ static void test_semaphore_security(HANDLE token)
STANDARD_RIGHTS_ALL
|
SEMAPHORE_ALL_ACCESS
};
static
const
struct
{
int
todo
,
generic
,
mapped
;
int
generic
,
mapped
;
}
map
[]
=
{
{
0
,
0
,
0
},
{
1
,
GENERIC_READ
,
STANDARD_RIGHTS_READ
|
SEMAPHORE_QUERY_STATE
},
{
0
,
GENERIC_WRITE
,
STANDARD_RIGHTS_WRITE
|
SEMAPHORE_MODIFY_STATE
},
{
1
,
GENERIC_EXECUTE
,
STANDARD_RIGHTS_EXECUTE
|
SYNCHRONIZE
},
{
0
,
GENERIC_ALL
,
STANDARD_RIGHTS_ALL
|
SEMAPHORE_QUERY_STATE
|
SEMAPHORE_MODIFY_STATE
}
{
0
,
0
},
{
GENERIC_READ
,
STANDARD_RIGHTS_READ
|
SEMAPHORE_QUERY_STATE
},
{
GENERIC_WRITE
,
STANDARD_RIGHTS_WRITE
|
SEMAPHORE_MODIFY_STATE
},
{
GENERIC_EXECUTE
,
STANDARD_RIGHTS_EXECUTE
|
SYNCHRONIZE
},
{
GENERIC_ALL
,
STANDARD_RIGHTS_ALL
|
SEMAPHORE_QUERY_STATE
|
SEMAPHORE_MODIFY_STATE
}
};
SetLastError
(
0xdeadbeef
);
...
...
@@ -4683,10 +4683,6 @@ static void test_semaphore_security(HANDLE token)
ok
(
ret
,
"DuplicateHandle error %d
\n
"
,
GetLastError
());
access
=
get_obj_access
(
dup
);
if
(
map
[
i
].
todo
)
todo_wine
ok
(
access
==
map
[
i
].
mapped
,
"%d: expected %#x, got %#x
\n
"
,
i
,
map
[
i
].
mapped
,
access
);
else
ok
(
access
==
map
[
i
].
mapped
,
"%d: expected %#x, got %#x
\n
"
,
i
,
map
[
i
].
mapped
,
access
);
CloseHandle
(
dup
);
...
...
server/semaphore.c
View file @
fdd483c0
...
...
@@ -153,9 +153,9 @@ static void semaphore_satisfied( struct object *obj, struct wait_queue_entry *en
static
unsigned
int
semaphore_map_access
(
struct
object
*
obj
,
unsigned
int
access
)
{
if
(
access
&
GENERIC_READ
)
access
|=
STANDARD_RIGHTS_READ
|
S
YNCHRONIZ
E
;
if
(
access
&
GENERIC_READ
)
access
|=
STANDARD_RIGHTS_READ
|
S
EMAPHORE_QUERY_STAT
E
;
if
(
access
&
GENERIC_WRITE
)
access
|=
STANDARD_RIGHTS_WRITE
|
SEMAPHORE_MODIFY_STATE
;
if
(
access
&
GENERIC_EXECUTE
)
access
|=
STANDARD_RIGHTS_EXECUTE
;
if
(
access
&
GENERIC_EXECUTE
)
access
|=
STANDARD_RIGHTS_EXECUTE
|
SYNCHRONIZE
;
if
(
access
&
GENERIC_ALL
)
access
|=
STANDARD_RIGHTS_ALL
|
SEMAPHORE_ALL_ACCESS
;
return
access
&
~
(
GENERIC_READ
|
GENERIC_WRITE
|
GENERIC_EXECUTE
|
GENERIC_ALL
);
}
...
...
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