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
2ead3a11
Commit
2ead3a11
authored
May 31, 2021
by
Zebediah Figura
Committed by
Alexandre Julliard
Jun 01, 2021
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
ws2_32: Use socket_apc for WSAIoctl() completion.
Signed-off-by:
Zebediah Figura
<
z.figura12@gmail.com
>
Signed-off-by:
Alexandre Julliard
<
julliard@winehq.org
>
parent
e3e17ba7
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
15 additions
and
104 deletions
+15
-104
socket.c
dlls/ws2_32/socket.c
+15
-104
No files found.
dlls/ws2_32/socket.c
View file @
2ead3a11
...
@@ -457,78 +457,6 @@ static void socket_list_remove(SOCKET socket)
...
@@ -457,78 +457,6 @@ static void socket_list_remove(SOCKET socket)
LeaveCriticalSection
(
&
cs_socket_list
);
LeaveCriticalSection
(
&
cs_socket_list
);
}
}
/****************************************************************
* Async IO declarations
****************************************************************/
typedef
NTSTATUS
async_callback_t
(
void
*
user
,
IO_STATUS_BLOCK
*
io
,
NTSTATUS
status
);
struct
ws2_async_io
{
async_callback_t
*
callback
;
/* must be the first field */
struct
ws2_async_io
*
next
;
};
struct
ws2_async_shutdown
{
struct
ws2_async_io
io
;
HANDLE
hSocket
;
IO_STATUS_BLOCK
iosb
;
int
type
;
};
struct
ws2_async
{
struct
ws2_async_io
io
;
HANDLE
hSocket
;
LPWSAOVERLAPPED
user_overlapped
;
LPWSAOVERLAPPED_COMPLETION_ROUTINE
completion_func
;
IO_STATUS_BLOCK
local_iosb
;
struct
WS_sockaddr
*
addr
;
union
{
int
val
;
/* for send operations */
int
*
ptr
;
/* for recv operations */
}
addrlen
;
DWORD
flags
;
DWORD
*
lpFlags
;
WSABUF
*
control
;
unsigned
int
n_iovecs
;
unsigned
int
first_iovec
;
struct
iovec
iovec
[
1
];
};
static
struct
ws2_async_io
*
async_io_freelist
;
static
void
release_async_io
(
struct
ws2_async_io
*
io
)
{
for
(;;)
{
struct
ws2_async_io
*
next
=
async_io_freelist
;
io
->
next
=
next
;
if
(
InterlockedCompareExchangePointer
(
(
void
**
)
&
async_io_freelist
,
io
,
next
)
==
next
)
return
;
}
}
static
struct
ws2_async_io
*
alloc_async_io
(
DWORD
size
,
async_callback_t
callback
)
{
/* first free remaining previous fileinfos */
struct
ws2_async_io
*
io
=
InterlockedExchangePointer
(
(
void
**
)
&
async_io_freelist
,
NULL
);
while
(
io
)
{
struct
ws2_async_io
*
next
=
io
->
next
;
HeapFree
(
GetProcessHeap
(),
0
,
io
);
io
=
next
;
}
io
=
HeapAlloc
(
GetProcessHeap
(),
0
,
size
);
if
(
io
)
io
->
callback
=
callback
;
return
io
;
}
typedef
struct
/* WSAAsyncSelect() control struct */
typedef
struct
/* WSAAsyncSelect() control struct */
{
{
HANDLE
service
,
event
,
sock
;
HANDLE
service
,
event
,
sock
;
...
@@ -1727,20 +1655,6 @@ static BOOL ws_protocol_info(SOCKET s, int unicode, WSAPROTOCOL_INFOW *buffer, i
...
@@ -1727,20 +1655,6 @@ static BOOL ws_protocol_info(SOCKET s, int unicode, WSAPROTOCOL_INFOW *buffer, i
return
TRUE
;
return
TRUE
;
}
}
/**************************************************************************
* Functions for handling overlapped I/O
**************************************************************************/
/* user APC called upon async completion */
static
void
WINAPI
ws2_async_apc
(
void
*
arg
,
IO_STATUS_BLOCK
*
iosb
,
ULONG
reserved
)
{
struct
ws2_async
*
wsa
=
arg
;
if
(
wsa
->
completion_func
)
wsa
->
completion_func
(
NtStatusToWSAError
(
iosb
->
u
.
Status
),
iosb
->
Information
,
wsa
->
user_overlapped
,
wsa
->
flags
);
release_async_io
(
&
wsa
->
io
);
}
/***********************************************************************
/***********************************************************************
...
@@ -3283,29 +3197,28 @@ static DWORD server_ioctl_sock( SOCKET s, DWORD code, LPVOID in_buff, DWORD in_s
...
@@ -3283,29 +3197,28 @@ static DWORD server_ioctl_sock( SOCKET s, DWORD code, LPVOID in_buff, DWORD in_s
LPWSAOVERLAPPED
overlapped
,
LPWSAOVERLAPPED
overlapped
,
LPWSAOVERLAPPED_COMPLETION_ROUTINE
completion
)
LPWSAOVERLAPPED_COMPLETION_ROUTINE
completion
)
{
{
HANDLE
event
=
overlapped
?
overlapped
->
hEvent
:
0
;
IO_STATUS_BLOCK
iosb
,
*
piosb
=
&
iosb
;
HANDLE
handle
=
SOCKET2HANDLE
(
s
);
HANDLE
handle
=
SOCKET2HANDLE
(
s
);
struct
ws2_async
*
wsa
=
NULL
;
PIO_APC_ROUTINE
apc
=
NULL
;
IO_STATUS_BLOCK
*
io
=
(
PIO_STATUS_BLOCK
)
overlapped
,
iosb
;
HANDLE
event
=
NULL
;
void
*
cvalue
=
NULL
;
void
*
cvalue
=
NULL
;
NTSTATUS
status
;
NTSTATUS
status
;
if
(
overlapped
)
{
piosb
=
(
IO_STATUS_BLOCK
*
)
overlapped
;
if
(
!
((
ULONG_PTR
)
overlapped
->
hEvent
&
1
))
cvalue
=
overlapped
;
event
=
overlapped
->
hEvent
;
}
if
(
completion
)
if
(
completion
)
{
{
if
(
!
(
wsa
=
(
struct
ws2_async
*
)
alloc_async_io
(
sizeof
(
*
wsa
),
NULL
)))
event
=
NULL
;
return
WSA_NOT_ENOUGH_MEMORY
;
cvalue
=
completion
;
wsa
->
hSocket
=
handle
;
apc
=
socket_apc
;
wsa
->
user_overlapped
=
overlapped
;
wsa
->
completion_func
=
completion
;
if
(
!
io
)
io
=
&
wsa
->
local_iosb
;
cvalue
=
wsa
;
}
}
else
if
(
!
io
)
io
=
&
iosb
;
else
if
(
!
((
ULONG_PTR
)
overlapped
->
hEvent
&
1
))
cvalue
=
overlapped
;
status
=
NtDeviceIoControlFile
(
handle
,
event
,
wsa
?
ws2_async_apc
:
NULL
,
cvalue
,
io
,
code
,
status
=
NtDeviceIoControlFile
(
handle
,
event
,
apc
,
cvalue
,
piosb
,
code
,
in_buff
,
in_size
,
out_buff
,
out_size
);
in_buff
,
in_size
,
out_buff
,
out_size
);
if
(
status
==
STATUS_NOT_SUPPORTED
)
if
(
status
==
STATUS_NOT_SUPPORTED
)
{
{
...
@@ -3313,9 +3226,7 @@ static DWORD server_ioctl_sock( SOCKET s, DWORD code, LPVOID in_buff, DWORD in_s
...
@@ -3313,9 +3226,7 @@ static DWORD server_ioctl_sock( SOCKET s, DWORD code, LPVOID in_buff, DWORD in_s
code
,
code
>>
16
,
(
code
>>
14
)
&
3
,
(
code
>>
2
)
&
0xfff
,
code
&
3
);
code
,
code
>>
16
,
(
code
>>
14
)
&
3
,
(
code
>>
2
)
&
0xfff
,
code
&
3
);
}
}
else
if
(
status
==
STATUS_SUCCESS
)
else
if
(
status
==
STATUS_SUCCESS
)
*
ret_size
=
io
->
Information
;
/* "Information" is the size written to the output buffer */
*
ret_size
=
piosb
->
Information
;
if
(
status
!=
STATUS_PENDING
)
RtlFreeHeap
(
GetProcessHeap
(),
0
,
wsa
);
return
NtStatusToWSAError
(
status
);
return
NtStatusToWSAError
(
status
);
}
}
...
...
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