Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-cw
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-cw
Commits
a6b05ea9
Commit
a6b05ea9
authored
Jul 01, 2009
by
Alexandre Julliard
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
secur32: Avoid the close-on-exec race with pipe() on kernels that support pipe2().
parent
887af612
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
15 additions
and
7 deletions
+15
-7
dispatcher.c
dlls/secur32/dispatcher.c
+15
-7
No files found.
dlls/secur32/dispatcher.c
View file @
a6b05ea9
...
...
@@ -19,6 +19,7 @@
*/
#include "config.h"
#include "wine/port.h"
#include <stdarg.h>
#include <stdio.h>
#ifdef HAVE_UNISTD_H
...
...
@@ -57,16 +58,28 @@ SECURITY_STATUS fork_helper(PNegoHelper *new_helper, const char *prog,
}
TRACE
(
"
\n
"
);
if
(
pipe
(
pipe_in
)
<
0
)
#ifdef HAVE_PIPE2
if
(
pipe2
(
pipe_in
,
O_CLOEXEC
)
<
0
)
#endif
{
return
SEC_E_INTERNAL_ERROR
;
if
(
pipe
(
pipe_in
)
<
0
)
return
SEC_E_INTERNAL_ERROR
;
fcntl
(
pipe_in
[
0
],
F_SETFD
,
FD_CLOEXEC
);
fcntl
(
pipe_in
[
1
],
F_SETFD
,
FD_CLOEXEC
);
}
#ifdef HAVE_PIPE2
if
(
pipe2
(
pipe_out
,
O_CLOEXEC
)
<
0
)
#endif
{
if
(
pipe
(
pipe_out
)
<
0
)
{
close
(
pipe_in
[
0
]);
close
(
pipe_in
[
1
]);
return
SEC_E_INTERNAL_ERROR
;
}
fcntl
(
pipe_out
[
0
],
F_SETFD
,
FD_CLOEXEC
);
fcntl
(
pipe_out
[
1
],
F_SETFD
,
FD_CLOEXEC
);
}
if
(
!
(
helper
=
HeapAlloc
(
GetProcessHeap
(),
0
,
sizeof
(
NegoHelper
))))
{
close
(
pipe_in
[
0
]);
...
...
@@ -91,9 +104,6 @@ SECURITY_STATUS fork_helper(PNegoHelper *new_helper, const char *prog,
if
(
helper
->
helper_pid
==
0
)
{
/* We're in the child now */
close
(
0
);
close
(
1
);
dup2
(
pipe_out
[
0
],
0
);
close
(
pipe_out
[
0
]);
close
(
pipe_out
[
1
]);
...
...
@@ -125,10 +135,8 @@ SECURITY_STATUS fork_helper(PNegoHelper *new_helper, const char *prog,
helper
->
crypt
.
ntlm2
.
recv_sign_key
=
NULL
;
helper
->
crypt
.
ntlm2
.
recv_seal_key
=
NULL
;
helper
->
pipe_in
=
pipe_in
[
0
];
fcntl
(
pipe_in
[
0
],
F_SETFD
,
1
);
close
(
pipe_in
[
1
]);
helper
->
pipe_out
=
pipe_out
[
1
];
fcntl
(
pipe_out
[
1
],
F_SETFD
,
1
);
close
(
pipe_out
[
0
]);
}
...
...
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