2 * Process synchronisation
4 * Copyright 1996, 1997, 1998 Marcus Meissner
5 * Copyright 1997, 1999 Alexandre Julliard
6 * Copyright 1999, 2000 Juergen Schmied
7 * Copyright 2003 Eric Pouech
9 * This library is free software; you can redistribute it and/or
10 * modify it under the terms of the GNU Lesser General Public
11 * License as published by the Free Software Foundation; either
12 * version 2.1 of the License, or (at your option) any later version.
14 * This library is distributed in the hope that it will be useful,
15 * but WITHOUT ANY WARRANTY; without even the implied warranty of
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
17 * Lesser General Public License for more details.
19 * You should have received a copy of the GNU Lesser General Public
20 * License along with this library; if not, write to the Free Software
21 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
29 #ifdef HAVE_SYS_TIME_H
30 # include <sys/time.h>
35 #ifdef HAVE_SYS_POLL_H
36 # include <sys/poll.h>
50 #define NONAMELESSUNION
51 #define NONAMELESSSTRUCT
54 #define WIN32_NO_STATUS
57 #include "wine/server.h"
58 #include "wine/debug.h"
59 #include "ntdll_misc.h"
61 WINE_DEFAULT_DEBUG_CHANNEL(ntdll
);
63 /* creates a struct security_descriptor and contained information in one contiguous piece of memory */
64 NTSTATUS
NTDLL_create_struct_sd(PSECURITY_DESCRIPTOR nt_sd
, struct security_descriptor
**server_sd
,
65 data_size_t
*server_sd_len
)
70 BOOLEAN owner_present
, group_present
, dacl_present
, sacl_present
;
79 return STATUS_SUCCESS
;
82 len
= sizeof(struct security_descriptor
);
84 status
= RtlGetOwnerSecurityDescriptor(nt_sd
, &owner
, &owner_present
);
85 if (status
!= STATUS_SUCCESS
) return status
;
86 status
= RtlGetGroupSecurityDescriptor(nt_sd
, &group
, &group_present
);
87 if (status
!= STATUS_SUCCESS
) return status
;
88 status
= RtlGetSaclSecurityDescriptor(nt_sd
, &sacl_present
, &sacl
, &defaulted
);
89 if (status
!= STATUS_SUCCESS
) return status
;
90 status
= RtlGetDaclSecurityDescriptor(nt_sd
, &dacl_present
, &dacl
, &defaulted
);
91 if (status
!= STATUS_SUCCESS
) return status
;
94 len
+= RtlLengthSid(owner
);
96 len
+= RtlLengthSid(group
);
97 if (sacl_present
&& sacl
)
99 if (dacl_present
&& dacl
)
100 len
+= dacl
->AclSize
;
102 /* fix alignment for the Unicode name that follows the structure */
103 len
= (len
+ sizeof(WCHAR
) - 1) & ~(sizeof(WCHAR
) - 1);
104 *server_sd
= RtlAllocateHeap(GetProcessHeap(), 0, len
);
105 if (!*server_sd
) return STATUS_NO_MEMORY
;
107 (*server_sd
)->control
= ((SECURITY_DESCRIPTOR
*)nt_sd
)->Control
& ~SE_SELF_RELATIVE
;
108 (*server_sd
)->owner_len
= owner_present
? RtlLengthSid(owner
) : 0;
109 (*server_sd
)->group_len
= group_present
? RtlLengthSid(group
) : 0;
110 (*server_sd
)->sacl_len
= (sacl_present
&& sacl
) ? sacl
->AclSize
: 0;
111 (*server_sd
)->dacl_len
= (dacl_present
&& dacl
) ? dacl
->AclSize
: 0;
113 ptr
= (unsigned char *)(*server_sd
+ 1);
114 memcpy(ptr
, owner
, (*server_sd
)->owner_len
);
115 ptr
+= (*server_sd
)->owner_len
;
116 memcpy(ptr
, group
, (*server_sd
)->group_len
);
117 ptr
+= (*server_sd
)->group_len
;
118 memcpy(ptr
, sacl
, (*server_sd
)->sacl_len
);
119 ptr
+= (*server_sd
)->sacl_len
;
120 memcpy(ptr
, dacl
, (*server_sd
)->dacl_len
);
122 *server_sd_len
= len
;
124 return STATUS_SUCCESS
;
127 /* frees a struct security_descriptor allocated by NTDLL_create_struct_sd */
128 void NTDLL_free_struct_sd(struct security_descriptor
*server_sd
)
130 RtlFreeHeap(GetProcessHeap(), 0, server_sd
);
137 /******************************************************************************
138 * NtCreateSemaphore (NTDLL.@)
140 NTSTATUS WINAPI
NtCreateSemaphore( OUT PHANDLE SemaphoreHandle
,
141 IN ACCESS_MASK access
,
142 IN
const OBJECT_ATTRIBUTES
*attr OPTIONAL
,
143 IN LONG InitialCount
,
144 IN LONG MaximumCount
)
146 DWORD len
= attr
&& attr
->ObjectName
? attr
->ObjectName
->Length
: 0;
148 struct object_attributes objattr
;
149 struct security_descriptor
*sd
= NULL
;
151 if (MaximumCount
<= 0 || InitialCount
< 0 || InitialCount
> MaximumCount
)
152 return STATUS_INVALID_PARAMETER
;
153 if (len
>= MAX_PATH
* sizeof(WCHAR
)) return STATUS_NAME_TOO_LONG
;
155 objattr
.rootdir
= wine_server_obj_handle( attr
? attr
->RootDirectory
: 0 );
157 objattr
.name_len
= len
;
160 ret
= NTDLL_create_struct_sd( attr
->SecurityDescriptor
, &sd
, &objattr
.sd_len
);
161 if (ret
!= STATUS_SUCCESS
) return ret
;
164 SERVER_START_REQ( create_semaphore
)
166 req
->access
= access
;
167 req
->attributes
= (attr
) ? attr
->Attributes
: 0;
168 req
->initial
= InitialCount
;
169 req
->max
= MaximumCount
;
170 wine_server_add_data( req
, &objattr
, sizeof(objattr
) );
171 if (objattr
.sd_len
) wine_server_add_data( req
, sd
, objattr
.sd_len
);
172 if (len
) wine_server_add_data( req
, attr
->ObjectName
->Buffer
, len
);
173 ret
= wine_server_call( req
);
174 *SemaphoreHandle
= wine_server_ptr_handle( reply
->handle
);
178 NTDLL_free_struct_sd( sd
);
183 /******************************************************************************
184 * NtOpenSemaphore (NTDLL.@)
186 NTSTATUS WINAPI
NtOpenSemaphore( OUT PHANDLE SemaphoreHandle
,
187 IN ACCESS_MASK access
,
188 IN
const OBJECT_ATTRIBUTES
*attr
)
190 DWORD len
= attr
&& attr
->ObjectName
? attr
->ObjectName
->Length
: 0;
193 if (len
>= MAX_PATH
* sizeof(WCHAR
)) return STATUS_NAME_TOO_LONG
;
195 SERVER_START_REQ( open_semaphore
)
197 req
->access
= access
;
198 req
->attributes
= (attr
) ? attr
->Attributes
: 0;
199 req
->rootdir
= wine_server_obj_handle( attr
? attr
->RootDirectory
: 0 );
200 if (len
) wine_server_add_data( req
, attr
->ObjectName
->Buffer
, len
);
201 ret
= wine_server_call( req
);
202 *SemaphoreHandle
= wine_server_ptr_handle( reply
->handle
);
208 /******************************************************************************
209 * NtQuerySemaphore (NTDLL.@)
211 NTSTATUS WINAPI
NtQuerySemaphore(
212 HANDLE SemaphoreHandle
,
213 SEMAPHORE_INFORMATION_CLASS SemaphoreInformationClass
,
214 PVOID SemaphoreInformation
,
218 FIXME("(%p,%d,%p,0x%08x,%p) stub!\n",
219 SemaphoreHandle
, SemaphoreInformationClass
, SemaphoreInformation
, Length
, ReturnLength
);
220 return STATUS_SUCCESS
;
223 /******************************************************************************
224 * NtReleaseSemaphore (NTDLL.@)
226 NTSTATUS WINAPI
NtReleaseSemaphore( HANDLE handle
, ULONG count
, PULONG previous
)
229 SERVER_START_REQ( release_semaphore
)
231 req
->handle
= wine_server_obj_handle( handle
);
233 if (!(ret
= wine_server_call( req
)))
235 if (previous
) *previous
= reply
->prev_count
;
246 /**************************************************************************
247 * NtCreateEvent (NTDLL.@)
248 * ZwCreateEvent (NTDLL.@)
250 NTSTATUS WINAPI
NtCreateEvent(
251 OUT PHANDLE EventHandle
,
252 IN ACCESS_MASK DesiredAccess
,
253 IN
const OBJECT_ATTRIBUTES
*attr
,
254 IN BOOLEAN ManualReset
,
255 IN BOOLEAN InitialState
)
257 DWORD len
= attr
&& attr
->ObjectName
? attr
->ObjectName
->Length
: 0;
259 struct security_descriptor
*sd
= NULL
;
260 struct object_attributes objattr
;
262 if (len
>= MAX_PATH
* sizeof(WCHAR
)) return STATUS_NAME_TOO_LONG
;
264 objattr
.rootdir
= wine_server_obj_handle( attr
? attr
->RootDirectory
: 0 );
266 objattr
.name_len
= len
;
269 ret
= NTDLL_create_struct_sd( attr
->SecurityDescriptor
, &sd
, &objattr
.sd_len
);
270 if (ret
!= STATUS_SUCCESS
) return ret
;
273 SERVER_START_REQ( create_event
)
275 req
->access
= DesiredAccess
;
276 req
->attributes
= (attr
) ? attr
->Attributes
: 0;
277 req
->manual_reset
= ManualReset
;
278 req
->initial_state
= InitialState
;
279 wine_server_add_data( req
, &objattr
, sizeof(objattr
) );
280 if (objattr
.sd_len
) wine_server_add_data( req
, sd
, objattr
.sd_len
);
281 if (len
) wine_server_add_data( req
, attr
->ObjectName
->Buffer
, len
);
282 ret
= wine_server_call( req
);
283 *EventHandle
= wine_server_ptr_handle( reply
->handle
);
287 NTDLL_free_struct_sd( sd
);
292 /******************************************************************************
293 * NtOpenEvent (NTDLL.@)
294 * ZwOpenEvent (NTDLL.@)
296 NTSTATUS WINAPI
NtOpenEvent(
297 OUT PHANDLE EventHandle
,
298 IN ACCESS_MASK DesiredAccess
,
299 IN
const OBJECT_ATTRIBUTES
*attr
)
301 DWORD len
= attr
&& attr
->ObjectName
? attr
->ObjectName
->Length
: 0;
304 if (len
>= MAX_PATH
* sizeof(WCHAR
)) return STATUS_NAME_TOO_LONG
;
306 SERVER_START_REQ( open_event
)
308 req
->access
= DesiredAccess
;
309 req
->attributes
= (attr
) ? attr
->Attributes
: 0;
310 req
->rootdir
= wine_server_obj_handle( attr
? attr
->RootDirectory
: 0 );
311 if (len
) wine_server_add_data( req
, attr
->ObjectName
->Buffer
, len
);
312 ret
= wine_server_call( req
);
313 *EventHandle
= wine_server_ptr_handle( reply
->handle
);
320 /******************************************************************************
321 * NtSetEvent (NTDLL.@)
322 * ZwSetEvent (NTDLL.@)
324 NTSTATUS WINAPI
NtSetEvent( HANDLE handle
, PULONG NumberOfThreadsReleased
)
328 /* FIXME: set NumberOfThreadsReleased */
330 SERVER_START_REQ( event_op
)
332 req
->handle
= wine_server_obj_handle( handle
);
334 ret
= wine_server_call( req
);
340 /******************************************************************************
341 * NtResetEvent (NTDLL.@)
343 NTSTATUS WINAPI
NtResetEvent( HANDLE handle
, PULONG NumberOfThreadsReleased
)
347 /* resetting an event can't release any thread... */
348 if (NumberOfThreadsReleased
) *NumberOfThreadsReleased
= 0;
350 SERVER_START_REQ( event_op
)
352 req
->handle
= wine_server_obj_handle( handle
);
353 req
->op
= RESET_EVENT
;
354 ret
= wine_server_call( req
);
360 /******************************************************************************
361 * NtClearEvent (NTDLL.@)
364 * same as NtResetEvent ???
366 NTSTATUS WINAPI
NtClearEvent ( HANDLE handle
)
368 return NtResetEvent( handle
, NULL
);
371 /******************************************************************************
372 * NtPulseEvent (NTDLL.@)
377 NTSTATUS WINAPI
NtPulseEvent( HANDLE handle
, PULONG PulseCount
)
382 FIXME("(%p,%d)\n", handle
, *PulseCount
);
384 SERVER_START_REQ( event_op
)
386 req
->handle
= wine_server_obj_handle( handle
);
387 req
->op
= PULSE_EVENT
;
388 ret
= wine_server_call( req
);
394 /******************************************************************************
395 * NtQueryEvent (NTDLL.@)
397 NTSTATUS WINAPI
NtQueryEvent (
398 IN HANDLE EventHandle
,
399 IN EVENT_INFORMATION_CLASS EventInformationClass
,
400 OUT PVOID EventInformation
,
401 IN ULONG EventInformationLength
,
402 OUT PULONG ReturnLength
)
404 FIXME("(%p)\n", EventHandle
);
405 return STATUS_NOT_IMPLEMENTED
;
409 * Mutants (known as Mutexes in Kernel32)
412 /******************************************************************************
413 * NtCreateMutant [NTDLL.@]
414 * ZwCreateMutant [NTDLL.@]
416 NTSTATUS WINAPI
NtCreateMutant(OUT HANDLE
* MutantHandle
,
417 IN ACCESS_MASK access
,
418 IN
const OBJECT_ATTRIBUTES
* attr OPTIONAL
,
419 IN BOOLEAN InitialOwner
)
422 DWORD len
= attr
&& attr
->ObjectName
? attr
->ObjectName
->Length
: 0;
423 struct security_descriptor
*sd
= NULL
;
424 struct object_attributes objattr
;
426 if (len
>= MAX_PATH
* sizeof(WCHAR
)) return STATUS_NAME_TOO_LONG
;
428 objattr
.rootdir
= wine_server_obj_handle( attr
? attr
->RootDirectory
: 0 );
430 objattr
.name_len
= len
;
433 status
= NTDLL_create_struct_sd( attr
->SecurityDescriptor
, &sd
, &objattr
.sd_len
);
434 if (status
!= STATUS_SUCCESS
) return status
;
437 SERVER_START_REQ( create_mutex
)
439 req
->access
= access
;
440 req
->attributes
= (attr
) ? attr
->Attributes
: 0;
441 req
->owned
= InitialOwner
;
442 wine_server_add_data( req
, &objattr
, sizeof(objattr
) );
443 if (objattr
.sd_len
) wine_server_add_data( req
, sd
, objattr
.sd_len
);
444 if (len
) wine_server_add_data( req
, attr
->ObjectName
->Buffer
, len
);
445 status
= wine_server_call( req
);
446 *MutantHandle
= wine_server_ptr_handle( reply
->handle
);
450 NTDLL_free_struct_sd( sd
);
455 /**************************************************************************
456 * NtOpenMutant [NTDLL.@]
457 * ZwOpenMutant [NTDLL.@]
459 NTSTATUS WINAPI
NtOpenMutant(OUT HANDLE
* MutantHandle
,
460 IN ACCESS_MASK access
,
461 IN
const OBJECT_ATTRIBUTES
* attr
)
464 DWORD len
= attr
&& attr
->ObjectName
? attr
->ObjectName
->Length
: 0;
466 if (len
>= MAX_PATH
* sizeof(WCHAR
)) return STATUS_NAME_TOO_LONG
;
468 SERVER_START_REQ( open_mutex
)
470 req
->access
= access
;
471 req
->attributes
= (attr
) ? attr
->Attributes
: 0;
472 req
->rootdir
= wine_server_obj_handle( attr
? attr
->RootDirectory
: 0 );
473 if (len
) wine_server_add_data( req
, attr
->ObjectName
->Buffer
, len
);
474 status
= wine_server_call( req
);
475 *MutantHandle
= wine_server_ptr_handle( reply
->handle
);
481 /**************************************************************************
482 * NtReleaseMutant [NTDLL.@]
483 * ZwReleaseMutant [NTDLL.@]
485 NTSTATUS WINAPI
NtReleaseMutant( IN HANDLE handle
, OUT PLONG prev_count OPTIONAL
)
489 SERVER_START_REQ( release_mutex
)
491 req
->handle
= wine_server_obj_handle( handle
);
492 status
= wine_server_call( req
);
493 if (prev_count
) *prev_count
= reply
->prev_count
;
499 /******************************************************************
500 * NtQueryMutant [NTDLL.@]
501 * ZwQueryMutant [NTDLL.@]
503 NTSTATUS WINAPI
NtQueryMutant(IN HANDLE handle
,
504 IN MUTANT_INFORMATION_CLASS MutantInformationClass
,
505 OUT PVOID MutantInformation
,
506 IN ULONG MutantInformationLength
,
507 OUT PULONG ResultLength OPTIONAL
)
509 FIXME("(%p %u %p %u %p): stub!\n",
510 handle
, MutantInformationClass
, MutantInformation
, MutantInformationLength
, ResultLength
);
511 return STATUS_NOT_IMPLEMENTED
;
518 /******************************************************************************
519 * NtCreateJobObject [NTDLL.@]
520 * ZwCreateJobObject [NTDLL.@]
522 NTSTATUS WINAPI
NtCreateJobObject( PHANDLE handle
, ACCESS_MASK access
, const OBJECT_ATTRIBUTES
*attr
)
524 FIXME( "stub: %p %x %s\n", handle
, access
, attr
? debugstr_us(attr
->ObjectName
) : "" );
525 *handle
= (HANDLE
)0xdead;
526 return STATUS_SUCCESS
;
529 /******************************************************************************
530 * NtOpenJobObject [NTDLL.@]
531 * ZwOpenJobObject [NTDLL.@]
533 NTSTATUS WINAPI
NtOpenJobObject( PHANDLE handle
, ACCESS_MASK access
, const OBJECT_ATTRIBUTES
*attr
)
535 FIXME( "stub: %p %x %s\n", handle
, access
, attr
? debugstr_us(attr
->ObjectName
) : "" );
536 return STATUS_NOT_IMPLEMENTED
;
539 /******************************************************************************
540 * NtTerminateJobObject [NTDLL.@]
541 * ZwTerminateJobObject [NTDLL.@]
543 NTSTATUS WINAPI
NtTerminateJobObject( HANDLE handle
, NTSTATUS status
)
545 FIXME( "stub: %p %x\n", handle
, status
);
546 return STATUS_SUCCESS
;
549 /******************************************************************************
550 * NtQueryInformationJobObject [NTDLL.@]
551 * ZwQueryInformationJobObject [NTDLL.@]
553 NTSTATUS WINAPI
NtQueryInformationJobObject( HANDLE handle
, JOBOBJECTINFOCLASS
class, PVOID info
,
554 ULONG len
, PULONG ret_len
)
556 FIXME( "stub: %p %u %p %u %p\n", handle
, class, info
, len
, ret_len
);
557 return STATUS_NOT_IMPLEMENTED
;
560 /******************************************************************************
561 * NtSetInformationJobObject [NTDLL.@]
562 * ZwSetInformationJobObject [NTDLL.@]
564 NTSTATUS WINAPI
NtSetInformationJobObject( HANDLE handle
, JOBOBJECTINFOCLASS
class, PVOID info
, ULONG len
)
566 FIXME( "stub: %p %u %p %u\n", handle
, class, info
, len
);
567 return STATUS_SUCCESS
;
570 /******************************************************************************
571 * NtIsProcessInJob [NTDLL.@]
572 * ZwIsProcessInJob [NTDLL.@]
574 NTSTATUS WINAPI
NtIsProcessInJob( HANDLE process
, HANDLE job
)
576 FIXME( "stub: %p %p\n", process
, job
);
577 return STATUS_PROCESS_NOT_IN_JOB
;
580 /******************************************************************************
581 * NtAssignProcessToJobObject [NTDLL.@]
582 * ZwAssignProcessToJobObject [NTDLL.@]
584 NTSTATUS WINAPI
NtAssignProcessToJobObject( HANDLE job
, HANDLE process
)
586 FIXME( "stub: %p %p\n", job
, process
);
587 return STATUS_SUCCESS
;
594 /**************************************************************************
595 * NtCreateTimer [NTDLL.@]
596 * ZwCreateTimer [NTDLL.@]
598 NTSTATUS WINAPI
NtCreateTimer(OUT HANDLE
*handle
,
599 IN ACCESS_MASK access
,
600 IN
const OBJECT_ATTRIBUTES
*attr OPTIONAL
,
601 IN TIMER_TYPE timer_type
)
603 DWORD len
= (attr
&& attr
->ObjectName
) ? attr
->ObjectName
->Length
: 0;
606 if (len
>= MAX_PATH
* sizeof(WCHAR
)) return STATUS_NAME_TOO_LONG
;
608 if (timer_type
!= NotificationTimer
&& timer_type
!= SynchronizationTimer
)
609 return STATUS_INVALID_PARAMETER
;
611 SERVER_START_REQ( create_timer
)
613 req
->access
= access
;
614 req
->attributes
= (attr
) ? attr
->Attributes
: 0;
615 req
->rootdir
= wine_server_obj_handle( attr
? attr
->RootDirectory
: 0 );
616 req
->manual
= (timer_type
== NotificationTimer
) ? TRUE
: FALSE
;
617 if (len
) wine_server_add_data( req
, attr
->ObjectName
->Buffer
, len
);
618 status
= wine_server_call( req
);
619 *handle
= wine_server_ptr_handle( reply
->handle
);
626 /**************************************************************************
627 * NtOpenTimer [NTDLL.@]
628 * ZwOpenTimer [NTDLL.@]
630 NTSTATUS WINAPI
NtOpenTimer(OUT PHANDLE handle
,
631 IN ACCESS_MASK access
,
632 IN
const OBJECT_ATTRIBUTES
* attr
)
634 DWORD len
= (attr
&& attr
->ObjectName
) ? attr
->ObjectName
->Length
: 0;
637 if (len
>= MAX_PATH
* sizeof(WCHAR
)) return STATUS_NAME_TOO_LONG
;
639 SERVER_START_REQ( open_timer
)
641 req
->access
= access
;
642 req
->attributes
= (attr
) ? attr
->Attributes
: 0;
643 req
->rootdir
= wine_server_obj_handle( attr
? attr
->RootDirectory
: 0 );
644 if (len
) wine_server_add_data( req
, attr
->ObjectName
->Buffer
, len
);
645 status
= wine_server_call( req
);
646 *handle
= wine_server_ptr_handle( reply
->handle
);
652 /**************************************************************************
653 * NtSetTimer [NTDLL.@]
654 * ZwSetTimer [NTDLL.@]
656 NTSTATUS WINAPI
NtSetTimer(IN HANDLE handle
,
657 IN
const LARGE_INTEGER
* when
,
658 IN PTIMER_APC_ROUTINE callback
,
659 IN PVOID callback_arg
,
661 IN ULONG period OPTIONAL
,
662 OUT PBOOLEAN state OPTIONAL
)
664 NTSTATUS status
= STATUS_SUCCESS
;
666 TRACE("(%p,%p,%p,%p,%08x,0x%08x,%p) stub\n",
667 handle
, when
, callback
, callback_arg
, resume
, period
, state
);
669 SERVER_START_REQ( set_timer
)
671 req
->handle
= wine_server_obj_handle( handle
);
672 req
->period
= period
;
673 req
->expire
= when
->QuadPart
;
674 req
->callback
= wine_server_client_ptr( callback
);
675 req
->arg
= wine_server_client_ptr( callback_arg
);
676 status
= wine_server_call( req
);
677 if (state
) *state
= reply
->signaled
;
681 /* set error but can still succeed */
682 if (resume
&& status
== STATUS_SUCCESS
) return STATUS_TIMER_RESUME_IGNORED
;
686 /**************************************************************************
687 * NtCancelTimer [NTDLL.@]
688 * ZwCancelTimer [NTDLL.@]
690 NTSTATUS WINAPI
NtCancelTimer(IN HANDLE handle
, OUT BOOLEAN
* state
)
694 SERVER_START_REQ( cancel_timer
)
696 req
->handle
= wine_server_obj_handle( handle
);
697 status
= wine_server_call( req
);
698 if (state
) *state
= reply
->signaled
;
704 /******************************************************************************
705 * NtQueryTimer (NTDLL.@)
707 * Retrieves information about a timer.
710 * TimerHandle [I] The timer to retrieve information about.
711 * TimerInformationClass [I] The type of information to retrieve.
712 * TimerInformation [O] Pointer to buffer to store information in.
713 * Length [I] The length of the buffer pointed to by TimerInformation.
714 * ReturnLength [O] Optional. The size of buffer actually used.
717 * Success: STATUS_SUCCESS
718 * Failure: STATUS_INFO_LENGTH_MISMATCH, if Length doesn't match the required data
719 * size for the class specified.
720 * STATUS_INVALID_INFO_CLASS, if an invalid TimerInformationClass was specified.
721 * STATUS_ACCESS_DENIED, if TimerHandle does not have TIMER_QUERY_STATE access
724 NTSTATUS WINAPI
NtQueryTimer(
726 TIMER_INFORMATION_CLASS TimerInformationClass
,
727 PVOID TimerInformation
,
731 TIMER_BASIC_INFORMATION
* basic_info
= TimerInformation
;
735 TRACE("(%p,%d,%p,0x%08x,%p)\n", TimerHandle
, TimerInformationClass
,
736 TimerInformation
, Length
, ReturnLength
);
738 switch (TimerInformationClass
)
740 case TimerBasicInformation
:
741 if (Length
< sizeof(TIMER_BASIC_INFORMATION
))
742 return STATUS_INFO_LENGTH_MISMATCH
;
744 SERVER_START_REQ(get_timer_info
)
746 req
->handle
= wine_server_obj_handle( TimerHandle
);
747 status
= wine_server_call(req
);
749 /* convert server time to absolute NTDLL time */
750 basic_info
->RemainingTime
.QuadPart
= reply
->when
;
751 basic_info
->TimerState
= reply
->signaled
;
755 /* convert from absolute into relative time */
756 NtQuerySystemTime(&now
);
757 if (now
.QuadPart
> basic_info
->RemainingTime
.QuadPart
)
758 basic_info
->RemainingTime
.QuadPart
= 0;
760 basic_info
->RemainingTime
.QuadPart
-= now
.QuadPart
;
762 if (ReturnLength
) *ReturnLength
= sizeof(TIMER_BASIC_INFORMATION
);
767 FIXME("Unhandled class %d\n", TimerInformationClass
);
768 return STATUS_INVALID_INFO_CLASS
;
772 /******************************************************************************
773 * NtQueryTimerResolution [NTDLL.@]
775 NTSTATUS WINAPI
NtQueryTimerResolution(OUT ULONG
* min_resolution
,
776 OUT ULONG
* max_resolution
,
777 OUT ULONG
* current_resolution
)
779 FIXME("(%p,%p,%p), stub!\n",
780 min_resolution
, max_resolution
, current_resolution
);
782 return STATUS_NOT_IMPLEMENTED
;
785 /******************************************************************************
786 * NtSetTimerResolution [NTDLL.@]
788 NTSTATUS WINAPI
NtSetTimerResolution(IN ULONG resolution
,
789 IN BOOLEAN set_resolution
,
790 OUT ULONG
* current_resolution
)
792 FIXME("(%u,%u,%p), stub!\n",
793 resolution
, set_resolution
, current_resolution
);
795 return STATUS_NOT_IMPLEMENTED
;
799 /***********************************************************************
802 * Wait for a reply on the waiting pipe of the current thread.
804 static int wait_reply( void *cookie
)
807 struct wake_up_reply reply
;
811 ret
= read( ntdll_get_thread_data()->wait_fd
[0], &reply
, sizeof(reply
) );
812 if (ret
== sizeof(reply
))
814 if (!reply
.cookie
) break; /* thread got killed */
815 if (wine_server_get_ptr(reply
.cookie
) == cookie
) return reply
.signaled
;
816 /* we stole another reply, wait for the real one */
817 signaled
= wait_reply( cookie
);
818 /* and now put the wrong one back in the pipe */
821 ret
= write( ntdll_get_thread_data()->wait_fd
[1], &reply
, sizeof(reply
) );
822 if (ret
== sizeof(reply
)) break;
823 if (ret
>= 0) server_protocol_error( "partial wakeup write %d\n", ret
);
824 if (errno
== EINTR
) continue;
825 server_protocol_perror("wakeup write");
829 if (ret
>= 0) server_protocol_error( "partial wakeup read %d\n", ret
);
830 if (errno
== EINTR
) continue;
831 server_protocol_perror("wakeup read");
833 /* the server closed the connection; time to die... */
838 /***********************************************************************
841 * Invoke a single APC. Return TRUE if a user APC has been run.
843 static BOOL
invoke_apc( const apc_call_t
*call
, apc_result_t
*result
)
845 BOOL user_apc
= FALSE
;
849 memset( result
, 0, sizeof(*result
) );
857 void (WINAPI
*func
)(ULONG_PTR
,ULONG_PTR
,ULONG_PTR
) = wine_server_get_ptr( call
->user
.func
);
858 func( call
->user
.args
[0], call
->user
.args
[1], call
->user
.args
[2] );
864 void (WINAPI
*func
)(void*, unsigned int, unsigned int) = wine_server_get_ptr( call
->timer
.func
);
865 func( wine_server_get_ptr( call
->timer
.arg
),
866 (DWORD
)call
->timer
.time
, (DWORD
)(call
->timer
.time
>> 32) );
873 IO_STATUS_BLOCK
*iosb
= wine_server_get_ptr( call
->async_io
.sb
);
874 NTSTATUS (*func
)(void *, IO_STATUS_BLOCK
*, NTSTATUS
, void **) = wine_server_get_ptr( call
->async_io
.func
);
875 result
->type
= call
->type
;
876 result
->async_io
.status
= func( wine_server_get_ptr( call
->async_io
.user
),
877 iosb
, call
->async_io
.status
, &apc
);
878 if (result
->async_io
.status
!= STATUS_PENDING
)
880 result
->async_io
.total
= iosb
->Information
;
881 result
->async_io
.apc
= wine_server_client_ptr( apc
);
885 case APC_VIRTUAL_ALLOC
:
886 result
->type
= call
->type
;
887 addr
= wine_server_get_ptr( call
->virtual_alloc
.addr
);
888 size
= call
->virtual_alloc
.size
;
889 if ((ULONG_PTR
)addr
== call
->virtual_alloc
.addr
&& size
== call
->virtual_alloc
.size
)
891 result
->virtual_alloc
.status
= NtAllocateVirtualMemory( NtCurrentProcess(), &addr
,
892 call
->virtual_alloc
.zero_bits
, &size
,
893 call
->virtual_alloc
.op_type
,
894 call
->virtual_alloc
.prot
);
895 result
->virtual_alloc
.addr
= wine_server_client_ptr( addr
);
896 result
->virtual_alloc
.size
= size
;
898 else result
->virtual_alloc
.status
= STATUS_WORKING_SET_LIMIT_RANGE
;
900 case APC_VIRTUAL_FREE
:
901 result
->type
= call
->type
;
902 addr
= wine_server_get_ptr( call
->virtual_free
.addr
);
903 size
= call
->virtual_free
.size
;
904 if ((ULONG_PTR
)addr
== call
->virtual_free
.addr
&& size
== call
->virtual_free
.size
)
906 result
->virtual_free
.status
= NtFreeVirtualMemory( NtCurrentProcess(), &addr
, &size
,
907 call
->virtual_free
.op_type
);
908 result
->virtual_free
.addr
= wine_server_client_ptr( addr
);
909 result
->virtual_free
.size
= size
;
911 else result
->virtual_free
.status
= STATUS_INVALID_PARAMETER
;
913 case APC_VIRTUAL_QUERY
:
915 MEMORY_BASIC_INFORMATION info
;
916 result
->type
= call
->type
;
917 addr
= wine_server_get_ptr( call
->virtual_query
.addr
);
918 if ((ULONG_PTR
)addr
== call
->virtual_query
.addr
)
919 result
->virtual_query
.status
= NtQueryVirtualMemory( NtCurrentProcess(),
920 addr
, MemoryBasicInformation
, &info
,
921 sizeof(info
), NULL
);
923 result
->virtual_query
.status
= STATUS_WORKING_SET_LIMIT_RANGE
;
925 if (result
->virtual_query
.status
== STATUS_SUCCESS
)
927 result
->virtual_query
.base
= wine_server_client_ptr( info
.BaseAddress
);
928 result
->virtual_query
.alloc_base
= wine_server_client_ptr( info
.AllocationBase
);
929 result
->virtual_query
.size
= info
.RegionSize
;
930 result
->virtual_query
.prot
= info
.Protect
;
931 result
->virtual_query
.alloc_prot
= info
.AllocationProtect
;
932 result
->virtual_query
.state
= info
.State
>> 12;
933 result
->virtual_query
.alloc_type
= info
.Type
>> 16;
937 case APC_VIRTUAL_PROTECT
:
938 result
->type
= call
->type
;
939 addr
= wine_server_get_ptr( call
->virtual_protect
.addr
);
940 size
= call
->virtual_protect
.size
;
941 if ((ULONG_PTR
)addr
== call
->virtual_protect
.addr
&& size
== call
->virtual_protect
.size
)
943 result
->virtual_protect
.status
= NtProtectVirtualMemory( NtCurrentProcess(), &addr
, &size
,
944 call
->virtual_protect
.prot
,
945 &result
->virtual_protect
.prot
);
946 result
->virtual_protect
.addr
= wine_server_client_ptr( addr
);
947 result
->virtual_protect
.size
= size
;
949 else result
->virtual_protect
.status
= STATUS_INVALID_PARAMETER
;
951 case APC_VIRTUAL_FLUSH
:
952 result
->type
= call
->type
;
953 addr
= wine_server_get_ptr( call
->virtual_flush
.addr
);
954 size
= call
->virtual_flush
.size
;
955 if ((ULONG_PTR
)addr
== call
->virtual_flush
.addr
&& size
== call
->virtual_flush
.size
)
957 result
->virtual_flush
.status
= NtFlushVirtualMemory( NtCurrentProcess(),
958 (const void **)&addr
, &size
, 0 );
959 result
->virtual_flush
.addr
= wine_server_client_ptr( addr
);
960 result
->virtual_flush
.size
= size
;
962 else result
->virtual_flush
.status
= STATUS_INVALID_PARAMETER
;
964 case APC_VIRTUAL_LOCK
:
965 result
->type
= call
->type
;
966 addr
= wine_server_get_ptr( call
->virtual_lock
.addr
);
967 size
= call
->virtual_lock
.size
;
968 if ((ULONG_PTR
)addr
== call
->virtual_lock
.addr
&& size
== call
->virtual_lock
.size
)
970 result
->virtual_lock
.status
= NtLockVirtualMemory( NtCurrentProcess(), &addr
, &size
, 0 );
971 result
->virtual_lock
.addr
= wine_server_client_ptr( addr
);
972 result
->virtual_lock
.size
= size
;
974 else result
->virtual_lock
.status
= STATUS_INVALID_PARAMETER
;
976 case APC_VIRTUAL_UNLOCK
:
977 result
->type
= call
->type
;
978 addr
= wine_server_get_ptr( call
->virtual_unlock
.addr
);
979 size
= call
->virtual_unlock
.size
;
980 if ((ULONG_PTR
)addr
== call
->virtual_unlock
.addr
&& size
== call
->virtual_unlock
.size
)
982 result
->virtual_unlock
.status
= NtUnlockVirtualMemory( NtCurrentProcess(), &addr
, &size
, 0 );
983 result
->virtual_unlock
.addr
= wine_server_client_ptr( addr
);
984 result
->virtual_unlock
.size
= size
;
986 else result
->virtual_unlock
.status
= STATUS_INVALID_PARAMETER
;
989 result
->type
= call
->type
;
990 addr
= wine_server_get_ptr( call
->map_view
.addr
);
991 size
= call
->map_view
.size
;
992 if ((ULONG_PTR
)addr
== call
->map_view
.addr
&& size
== call
->map_view
.size
)
994 LARGE_INTEGER offset
;
995 offset
.QuadPart
= call
->map_view
.offset
;
996 result
->map_view
.status
= NtMapViewOfSection( wine_server_ptr_handle(call
->map_view
.handle
),
997 NtCurrentProcess(), &addr
,
998 call
->map_view
.zero_bits
, 0,
999 &offset
, &size
, ViewShare
,
1000 call
->map_view
.alloc_type
, call
->map_view
.prot
);
1001 result
->map_view
.addr
= wine_server_client_ptr( addr
);
1002 result
->map_view
.size
= size
;
1004 else result
->map_view
.status
= STATUS_INVALID_PARAMETER
;
1005 NtClose( wine_server_ptr_handle(call
->map_view
.handle
) );
1007 case APC_UNMAP_VIEW
:
1008 result
->type
= call
->type
;
1009 addr
= wine_server_get_ptr( call
->unmap_view
.addr
);
1010 if ((ULONG_PTR
)addr
== call
->unmap_view
.addr
)
1011 result
->unmap_view
.status
= NtUnmapViewOfSection( NtCurrentProcess(), addr
);
1013 result
->unmap_view
.status
= STATUS_INVALID_PARAMETER
;
1015 case APC_CREATE_THREAD
:
1019 SIZE_T reserve
= call
->create_thread
.reserve
;
1020 SIZE_T commit
= call
->create_thread
.commit
;
1021 void *func
= wine_server_get_ptr( call
->create_thread
.func
);
1022 void *arg
= wine_server_get_ptr( call
->create_thread
.arg
);
1024 result
->type
= call
->type
;
1025 if (reserve
== call
->create_thread
.reserve
&& commit
== call
->create_thread
.commit
&&
1026 (ULONG_PTR
)func
== call
->create_thread
.func
&& (ULONG_PTR
)arg
== call
->create_thread
.arg
)
1028 result
->create_thread
.status
= RtlCreateUserThread( NtCurrentProcess(), NULL
,
1029 call
->create_thread
.suspend
, NULL
,
1030 reserve
, commit
, func
, arg
, &handle
, &id
);
1031 result
->create_thread
.handle
= wine_server_obj_handle( handle
);
1032 result
->create_thread
.tid
= HandleToULong(id
.UniqueThread
);
1034 else result
->create_thread
.status
= STATUS_INVALID_PARAMETER
;
1038 server_protocol_error( "get_apc_request: bad type %d\n", call
->type
);
1044 /***********************************************************************
1045 * NTDLL_queue_process_apc
1047 NTSTATUS
NTDLL_queue_process_apc( HANDLE process
, const apc_call_t
*call
, apc_result_t
*result
)
1055 SERVER_START_REQ( queue_apc
)
1057 req
->handle
= wine_server_obj_handle( process
);
1059 if (!(ret
= wine_server_call( req
)))
1061 handle
= wine_server_ptr_handle( reply
->handle
);
1066 if (ret
!= STATUS_SUCCESS
) return ret
;
1070 invoke_apc( call
, result
);
1074 NtWaitForSingleObject( handle
, FALSE
, NULL
);
1076 SERVER_START_REQ( get_apc_result
)
1078 req
->handle
= wine_server_obj_handle( handle
);
1079 if (!(ret
= wine_server_call( req
))) *result
= reply
->result
;
1083 if (!ret
&& result
->type
== APC_NONE
) continue; /* APC didn't run, try again */
1084 if (ret
) NtClose( handle
);
1091 /***********************************************************************
1092 * NTDLL_wait_for_multiple_objects
1094 * Implementation of NtWaitForMultipleObjects
1096 NTSTATUS
NTDLL_wait_for_multiple_objects( UINT count
, const HANDLE
*handles
, UINT flags
,
1097 const LARGE_INTEGER
*timeout
, HANDLE signal_object
)
1101 BOOL user_apc
= FALSE
;
1102 obj_handle_t obj_handles
[MAXIMUM_WAIT_OBJECTS
];
1103 obj_handle_t apc_handle
= 0;
1105 apc_result_t result
;
1106 timeout_t abs_timeout
= timeout
? timeout
->QuadPart
: TIMEOUT_INFINITE
;
1108 memset( &result
, 0, sizeof(result
) );
1109 for (i
= 0; i
< count
; i
++) obj_handles
[i
] = wine_server_obj_handle( handles
[i
] );
1113 SERVER_START_REQ( select
)
1116 req
->cookie
= wine_server_client_ptr( &cookie
);
1117 req
->signal
= wine_server_obj_handle( signal_object
);
1118 req
->prev_apc
= apc_handle
;
1119 req
->timeout
= abs_timeout
;
1120 wine_server_add_data( req
, &result
, sizeof(result
) );
1121 wine_server_add_data( req
, obj_handles
, count
* sizeof(*obj_handles
) );
1122 ret
= wine_server_call( req
);
1123 abs_timeout
= reply
->timeout
;
1124 apc_handle
= reply
->apc_handle
;
1128 if (ret
== STATUS_PENDING
) ret
= wait_reply( &cookie
);
1129 if (ret
!= STATUS_USER_APC
) break;
1130 if (invoke_apc( &call
, &result
))
1132 /* if we ran a user apc we have to check once more if an object got signaled,
1133 * but we don't want to wait */
1137 signal_object
= 0; /* don't signal it multiple times */
1140 if (ret
== STATUS_TIMEOUT
&& user_apc
) ret
= STATUS_USER_APC
;
1142 /* A test on Windows 2000 shows that Windows always yields during
1143 a wait, but a wait that is hit by an event gets a priority
1144 boost as well. This seems to model that behavior the closest. */
1145 if (ret
== STATUS_TIMEOUT
) NtYieldExecution();
1151 /* wait operations */
1153 /******************************************************************
1154 * NtWaitForMultipleObjects (NTDLL.@)
1156 NTSTATUS WINAPI
NtWaitForMultipleObjects( DWORD count
, const HANDLE
*handles
,
1157 BOOLEAN wait_all
, BOOLEAN alertable
,
1158 const LARGE_INTEGER
*timeout
)
1160 UINT flags
= SELECT_INTERRUPTIBLE
;
1162 if (!count
|| count
> MAXIMUM_WAIT_OBJECTS
) return STATUS_INVALID_PARAMETER_1
;
1164 if (wait_all
) flags
|= SELECT_ALL
;
1165 if (alertable
) flags
|= SELECT_ALERTABLE
;
1166 return NTDLL_wait_for_multiple_objects( count
, handles
, flags
, timeout
, 0 );
1170 /******************************************************************
1171 * NtWaitForSingleObject (NTDLL.@)
1173 NTSTATUS WINAPI
NtWaitForSingleObject(HANDLE handle
, BOOLEAN alertable
, const LARGE_INTEGER
*timeout
)
1175 return NtWaitForMultipleObjects( 1, &handle
, FALSE
, alertable
, timeout
);
1179 /******************************************************************
1180 * NtSignalAndWaitForSingleObject (NTDLL.@)
1182 NTSTATUS WINAPI
NtSignalAndWaitForSingleObject( HANDLE hSignalObject
, HANDLE hWaitObject
,
1183 BOOLEAN alertable
, const LARGE_INTEGER
*timeout
)
1185 UINT flags
= SELECT_INTERRUPTIBLE
;
1187 if (!hSignalObject
) return STATUS_INVALID_HANDLE
;
1188 if (alertable
) flags
|= SELECT_ALERTABLE
;
1189 return NTDLL_wait_for_multiple_objects( 1, &hWaitObject
, flags
, timeout
, hSignalObject
);
1193 /******************************************************************
1194 * NtYieldExecution (NTDLL.@)
1196 NTSTATUS WINAPI
NtYieldExecution(void)
1198 #ifdef HAVE_SCHED_YIELD
1200 return STATUS_SUCCESS
;
1202 return STATUS_NO_YIELD_PERFORMED
;
1207 /******************************************************************
1208 * NtDelayExecution (NTDLL.@)
1210 NTSTATUS WINAPI
NtDelayExecution( BOOLEAN alertable
, const LARGE_INTEGER
*timeout
)
1212 /* if alertable, we need to query the server */
1214 return NTDLL_wait_for_multiple_objects( 0, NULL
, SELECT_INTERRUPTIBLE
| SELECT_ALERTABLE
,
1217 if (!timeout
|| timeout
->QuadPart
== TIMEOUT_INFINITE
) /* sleep forever */
1219 for (;;) select( 0, NULL
, NULL
, NULL
, NULL
);
1224 timeout_t when
, diff
;
1226 if ((when
= timeout
->QuadPart
) < 0)
1228 NtQuerySystemTime( &now
);
1229 when
= now
.QuadPart
- when
;
1232 /* Note that we yield after establishing the desired timeout */
1234 if (!when
) return STATUS_SUCCESS
;
1239 NtQuerySystemTime( &now
);
1240 diff
= (when
- now
.QuadPart
+ 9) / 10;
1241 if (diff
<= 0) break;
1242 tv
.tv_sec
= diff
/ 1000000;
1243 tv
.tv_usec
= diff
% 1000000;
1244 if (select( 0, NULL
, NULL
, NULL
, &tv
) != -1) break;
1247 return STATUS_SUCCESS
;
1250 /******************************************************************
1251 * NtCreateIoCompletion (NTDLL.@)
1252 * ZwCreateIoCompletion (NTDLL.@)
1254 * Creates I/O completion object.
1257 * CompletionPort [O] created completion object handle will be placed there
1258 * DesiredAccess [I] desired access to a handle (combination of IO_COMPLETION_*)
1259 * ObjectAttributes [I] completion object attributes
1260 * NumberOfConcurrentThreads [I] desired number of concurrent active worker threads
1263 NTSTATUS WINAPI
NtCreateIoCompletion( PHANDLE CompletionPort
, ACCESS_MASK DesiredAccess
,
1264 POBJECT_ATTRIBUTES ObjectAttributes
, ULONG NumberOfConcurrentThreads
)
1268 TRACE("(%p, %x, %p, %d)\n", CompletionPort
, DesiredAccess
,
1269 ObjectAttributes
, NumberOfConcurrentThreads
);
1271 if (!CompletionPort
)
1272 return STATUS_INVALID_PARAMETER
;
1274 SERVER_START_REQ( create_completion
)
1276 req
->access
= DesiredAccess
;
1277 req
->attributes
= ObjectAttributes
? ObjectAttributes
->Attributes
: 0;
1278 req
->rootdir
= wine_server_obj_handle( ObjectAttributes
? ObjectAttributes
->RootDirectory
: 0 );
1279 req
->concurrent
= NumberOfConcurrentThreads
;
1280 if (ObjectAttributes
&& ObjectAttributes
->ObjectName
)
1281 wine_server_add_data( req
, ObjectAttributes
->ObjectName
->Buffer
,
1282 ObjectAttributes
->ObjectName
->Length
);
1283 if (!(status
= wine_server_call( req
)))
1284 *CompletionPort
= wine_server_ptr_handle( reply
->handle
);
1290 /******************************************************************
1291 * NtSetIoCompletion (NTDLL.@)
1292 * ZwSetIoCompletion (NTDLL.@)
1294 * Inserts completion message into queue
1297 * CompletionPort [I] HANDLE to completion object
1298 * CompletionKey [I] completion key
1299 * CompletionValue [I] completion value (usually pointer to OVERLAPPED)
1300 * Status [I] operation status
1301 * NumberOfBytesTransferred [I] number of bytes transferred
1303 NTSTATUS WINAPI
NtSetIoCompletion( HANDLE CompletionPort
, ULONG_PTR CompletionKey
,
1304 ULONG_PTR CompletionValue
, NTSTATUS Status
,
1305 ULONG NumberOfBytesTransferred
)
1309 TRACE("(%p, %lx, %lx, %x, %d)\n", CompletionPort
, CompletionKey
,
1310 CompletionValue
, Status
, NumberOfBytesTransferred
);
1312 SERVER_START_REQ( add_completion
)
1314 req
->handle
= wine_server_obj_handle( CompletionPort
);
1315 req
->ckey
= CompletionKey
;
1316 req
->cvalue
= CompletionValue
;
1317 req
->status
= Status
;
1318 req
->information
= NumberOfBytesTransferred
;
1319 status
= wine_server_call( req
);
1325 /******************************************************************
1326 * NtRemoveIoCompletion (NTDLL.@)
1327 * ZwRemoveIoCompletion (NTDLL.@)
1329 * (Wait for and) retrieve first completion message from completion object's queue
1332 * CompletionPort [I] HANDLE to I/O completion object
1333 * CompletionKey [O] completion key
1334 * CompletionValue [O] Completion value given in NtSetIoCompletion or in async operation
1335 * iosb [O] IO_STATUS_BLOCK of completed asynchronous operation
1336 * WaitTime [I] optional wait time in NTDLL format
1339 NTSTATUS WINAPI
NtRemoveIoCompletion( HANDLE CompletionPort
, PULONG_PTR CompletionKey
,
1340 PULONG_PTR CompletionValue
, PIO_STATUS_BLOCK iosb
,
1341 PLARGE_INTEGER WaitTime
)
1345 TRACE("(%p, %p, %p, %p, %p)\n", CompletionPort
, CompletionKey
,
1346 CompletionValue
, iosb
, WaitTime
);
1350 SERVER_START_REQ( remove_completion
)
1352 req
->handle
= wine_server_obj_handle( CompletionPort
);
1353 if (!(status
= wine_server_call( req
)))
1355 *CompletionKey
= reply
->ckey
;
1356 *CompletionValue
= reply
->cvalue
;
1357 iosb
->Information
= reply
->information
;
1358 iosb
->u
.Status
= reply
->status
;
1362 if (status
!= STATUS_PENDING
) break;
1364 status
= NtWaitForSingleObject( CompletionPort
, FALSE
, WaitTime
);
1365 if (status
!= WAIT_OBJECT_0
) break;
1370 /******************************************************************
1371 * NtOpenIoCompletion (NTDLL.@)
1372 * ZwOpenIoCompletion (NTDLL.@)
1374 * Opens I/O completion object
1377 * CompletionPort [O] completion object handle will be placed there
1378 * DesiredAccess [I] desired access to a handle (combination of IO_COMPLETION_*)
1379 * ObjectAttributes [I] completion object name
1382 NTSTATUS WINAPI
NtOpenIoCompletion( PHANDLE CompletionPort
, ACCESS_MASK DesiredAccess
,
1383 POBJECT_ATTRIBUTES ObjectAttributes
)
1387 TRACE("(%p, 0x%x, %p)\n", CompletionPort
, DesiredAccess
, ObjectAttributes
);
1389 if (!CompletionPort
|| !ObjectAttributes
|| !ObjectAttributes
->ObjectName
)
1390 return STATUS_INVALID_PARAMETER
;
1392 SERVER_START_REQ( open_completion
)
1394 req
->access
= DesiredAccess
;
1395 req
->rootdir
= wine_server_obj_handle( ObjectAttributes
->RootDirectory
);
1396 wine_server_add_data( req
, ObjectAttributes
->ObjectName
->Buffer
,
1397 ObjectAttributes
->ObjectName
->Length
);
1398 if (!(status
= wine_server_call( req
)))
1399 *CompletionPort
= wine_server_ptr_handle( reply
->handle
);
1405 /******************************************************************
1406 * NtQueryIoCompletion (NTDLL.@)
1407 * ZwQueryIoCompletion (NTDLL.@)
1409 * Requests information about given I/O completion object
1412 * CompletionPort [I] HANDLE to completion port to request
1413 * InformationClass [I] information class
1414 * CompletionInformation [O] user-provided buffer for data
1415 * BufferLength [I] buffer length
1416 * RequiredLength [O] required buffer length
1419 NTSTATUS WINAPI
NtQueryIoCompletion( HANDLE CompletionPort
, IO_COMPLETION_INFORMATION_CLASS InformationClass
,
1420 PVOID CompletionInformation
, ULONG BufferLength
, PULONG RequiredLength
)
1424 TRACE("(%p, %d, %p, 0x%x, %p)\n", CompletionPort
, InformationClass
, CompletionInformation
,
1425 BufferLength
, RequiredLength
);
1427 if (!CompletionInformation
) return STATUS_INVALID_PARAMETER
;
1428 switch( InformationClass
)
1430 case IoCompletionBasicInformation
:
1432 ULONG
*info
= CompletionInformation
;
1434 if (RequiredLength
) *RequiredLength
= sizeof(*info
);
1435 if (BufferLength
!= sizeof(*info
))
1436 status
= STATUS_INFO_LENGTH_MISMATCH
;
1439 SERVER_START_REQ( query_completion
)
1441 req
->handle
= wine_server_obj_handle( CompletionPort
);
1442 if (!(status
= wine_server_call( req
)))
1443 *info
= reply
->depth
;
1450 status
= STATUS_INVALID_PARAMETER
;
1456 NTSTATUS
NTDLL_AddCompletion( HANDLE hFile
, ULONG_PTR CompletionValue
,
1457 NTSTATUS CompletionStatus
, ULONG Information
)
1461 SERVER_START_REQ( add_fd_completion
)
1463 req
->handle
= wine_server_obj_handle( hFile
);
1464 req
->cvalue
= CompletionValue
;
1465 req
->status
= CompletionStatus
;
1466 req
->information
= Information
;
1467 status
= wine_server_call( req
);