2 * ntoskrnl.exe implementation
4 * Copyright (C) 2007 Alexandre Julliard
6 * This library is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU Lesser General Public
8 * License as published by the Free Software Foundation; either
9 * version 2.1 of the License, or (at your option) any later version.
11 * This library is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 * Lesser General Public License for more details.
16 * You should have received a copy of the GNU Lesser General Public
17 * License along with this library; if not, write to the Free Software
18 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
22 #include "wine/port.h"
26 #define NONAMELESSUNION
27 #define NONAMELESSSTRUCT
30 #define WIN32_NO_STATUS
34 #include "ddk/ntddk.h"
35 #include "wine/unicode.h"
36 #include "wine/server.h"
37 #include "wine/list.h"
38 #include "wine/debug.h"
40 WINE_DEFAULT_DEBUG_CHANNEL(ntoskrnl
);
41 WINE_DECLARE_DEBUG_CHANNEL(relay
);
43 extern LONG CALLBACK
vectored_handler( EXCEPTION_POINTERS
*ptrs
);
45 KSYSTEM_TIME KeTickCount
= { 0, 0, 0 };
47 typedef struct _KSERVICE_TABLE_DESCRIPTOR
53 } KSERVICE_TABLE_DESCRIPTOR
, *PKSERVICE_TABLE_DESCRIPTOR
;
55 KSERVICE_TABLE_DESCRIPTOR KeServiceDescriptorTable
[4] = { { 0 } };
57 typedef void (WINAPI
*PCREATE_PROCESS_NOTIFY_ROUTINE
)(HANDLE
,HANDLE
,BOOLEAN
);
58 typedef void (WINAPI
*PCREATE_THREAD_NOTIFY_ROUTINE
)(HANDLE
,HANDLE
,BOOLEAN
);
60 static struct list Irps
= LIST_INIT(Irps
);
69 #define DEFINE_FASTCALL1_ENTRYPOINT( name ) \
70 __ASM_STDCALL_FUNC( name, 4, \
74 "jmp " __ASM_NAME("__regs_") #name __ASM_STDCALL(4))
75 #define DEFINE_FASTCALL2_ENTRYPOINT( name ) \
76 __ASM_STDCALL_FUNC( name, 8, \
81 "jmp " __ASM_NAME("__regs_") #name __ASM_STDCALL(8))
82 #define DEFINE_FASTCALL3_ENTRYPOINT( name ) \
83 __ASM_STDCALL_FUNC( name, 12, \
88 "jmp " __ASM_NAME("__regs_") #name __ASM_STDCALL(12))
91 static inline LPCSTR
debugstr_us( const UNICODE_STRING
*us
)
93 if (!us
) return "<null>";
94 return debugstr_wn( us
->Buffer
, us
->Length
/ sizeof(WCHAR
) );
97 static HANDLE
get_device_manager(void)
99 static HANDLE device_manager
;
100 HANDLE handle
= 0, ret
= device_manager
;
104 SERVER_START_REQ( create_device_manager
)
106 req
->access
= SYNCHRONIZE
;
108 if (!wine_server_call( req
)) handle
= wine_server_ptr_handle( reply
->handle
);
114 ERR( "failed to create the device manager\n" );
117 if (!(ret
= InterlockedCompareExchangePointer( &device_manager
, handle
, 0 )))
120 NtClose( handle
); /* somebody beat us to it */
125 /* process an ioctl request for a given device */
126 static NTSTATUS
process_ioctl( DEVICE_OBJECT
*device
, ULONG code
, void *in_buff
, ULONG in_size
,
127 void *out_buff
, ULONG
*out_size
)
131 IO_STACK_LOCATION irpsp
;
132 PDRIVER_DISPATCH dispatch
= device
->DriverObject
->MajorFunction
[IRP_MJ_DEVICE_CONTROL
];
136 TRACE( "ioctl %x device %p in_size %u out_size %u\n", code
, device
, in_size
, *out_size
);
138 /* so we can spot things that we should initialize */
139 memset( &irp
, 0x55, sizeof(irp
) );
140 memset( &irpsp
, 0x66, sizeof(irpsp
) );
141 memset( &mdl
, 0x77, sizeof(mdl
) );
143 irp
.RequestorMode
= UserMode
;
144 irp
.AssociatedIrp
.SystemBuffer
= in_buff
;
145 irp
.UserBuffer
= out_buff
;
146 irp
.MdlAddress
= &mdl
;
147 irp
.Tail
.Overlay
.s
.u
.CurrentStackLocation
= &irpsp
;
150 irpsp
.MajorFunction
= IRP_MJ_DEVICE_CONTROL
;
151 irpsp
.Parameters
.DeviceIoControl
.OutputBufferLength
= *out_size
;
152 irpsp
.Parameters
.DeviceIoControl
.InputBufferLength
= in_size
;
153 irpsp
.Parameters
.DeviceIoControl
.IoControlCode
= code
;
154 irpsp
.Parameters
.DeviceIoControl
.Type3InputBuffer
= in_buff
;
155 irpsp
.DeviceObject
= device
;
156 irpsp
.CompletionRoutine
= NULL
;
160 mdl
.StartVa
= out_buff
;
161 mdl
.ByteCount
= *out_size
;
164 device
->CurrentIrp
= &irp
;
166 KeQueryTickCount( &count
); /* update the global KeTickCount */
169 DPRINTF( "%04x:Call driver dispatch %p (device=%p,irp=%p)\n",
170 GetCurrentThreadId(), dispatch
, device
, &irp
);
172 status
= dispatch( device
, &irp
);
175 DPRINTF( "%04x:Ret driver dispatch %p (device=%p,irp=%p) retval=%08x\n",
176 GetCurrentThreadId(), dispatch
, device
, &irp
, status
);
178 *out_size
= (irp
.IoStatus
.u
.Status
>= 0) ? irp
.IoStatus
.Information
: 0;
179 return irp
.IoStatus
.u
.Status
;
183 /***********************************************************************
184 * wine_ntoskrnl_main_loop (Not a Windows API)
186 NTSTATUS CDECL
wine_ntoskrnl_main_loop( HANDLE stop_event
)
188 HANDLE manager
= get_device_manager();
189 obj_handle_t ioctl
= 0;
190 NTSTATUS status
= STATUS_SUCCESS
;
192 void *in_buff
, *out_buff
= NULL
;
193 DEVICE_OBJECT
*device
= NULL
;
194 ULONG in_size
= 4096, out_size
= 0;
197 if (!(in_buff
= HeapAlloc( GetProcessHeap(), 0, in_size
)))
199 ERR( "failed to allocate buffer\n" );
200 return STATUS_NO_MEMORY
;
203 handles
[0] = stop_event
;
204 handles
[1] = manager
;
208 SERVER_START_REQ( get_next_device_request
)
210 req
->manager
= wine_server_obj_handle( manager
);
212 req
->status
= status
;
213 wine_server_add_data( req
, out_buff
, out_size
);
214 wine_server_set_reply( req
, in_buff
, in_size
);
215 if (!(status
= wine_server_call( req
)))
219 device
= wine_server_get_ptr( reply
->user_ptr
);
220 in_size
= reply
->in_size
;
221 out_size
= reply
->out_size
;
225 ioctl
= 0; /* no previous ioctl */
227 in_size
= reply
->in_size
;
235 HeapFree( GetProcessHeap(), 0, out_buff
);
236 if (out_size
) out_buff
= HeapAlloc( GetProcessHeap(), 0, out_size
);
237 else out_buff
= NULL
;
238 status
= process_ioctl( device
, code
, in_buff
, in_size
, out_buff
, &out_size
);
240 case STATUS_BUFFER_OVERFLOW
:
241 HeapFree( GetProcessHeap(), 0, in_buff
);
242 in_buff
= HeapAlloc( GetProcessHeap(), 0, in_size
);
243 /* restart with larger buffer */
246 if (WaitForMultipleObjects( 2, handles
, FALSE
, INFINITE
) == WAIT_OBJECT_0
)
248 HeapFree( GetProcessHeap(), 0, in_buff
);
249 HeapFree( GetProcessHeap(), 0, out_buff
);
250 return STATUS_SUCCESS
;
258 /***********************************************************************
259 * IoAllocateDriverObjectExtension (NTOSKRNL.EXE.@)
261 NTSTATUS WINAPI
IoAllocateDriverObjectExtension( PDRIVER_OBJECT DriverObject
,
262 PVOID ClientIdentificationAddress
,
263 ULONG DriverObjectExtensionSize
,
264 PVOID
*DriverObjectExtension
)
266 FIXME( "stub: %p, %p, %u, %p\n", DriverObject
, ClientIdentificationAddress
,
267 DriverObjectExtensionSize
, DriverObjectExtension
);
268 return STATUS_NOT_IMPLEMENTED
;
272 /***********************************************************************
273 * IoGetDriverObjectExtension (NTOSKRNL.EXE.@)
275 PVOID WINAPI
IoGetDriverObjectExtension( PDRIVER_OBJECT DriverObject
,
276 PVOID ClientIdentificationAddress
)
278 FIXME( "stub: %p, %p\n", DriverObject
, ClientIdentificationAddress
);
283 /***********************************************************************
284 * IoInitializeIrp (NTOSKRNL.EXE.@)
286 void WINAPI
IoInitializeIrp( IRP
*irp
, USHORT size
, CCHAR stack_size
)
288 TRACE( "%p, %u, %d\n", irp
, size
, stack_size
);
290 RtlZeroMemory( irp
, size
);
292 irp
->Type
= IO_TYPE_IRP
;
294 InitializeListHead( &irp
->ThreadListEntry
);
295 irp
->StackCount
= stack_size
;
296 irp
->CurrentLocation
= stack_size
+ 1;
297 irp
->Tail
.Overlay
.s
.u
.CurrentStackLocation
=
298 (PIO_STACK_LOCATION
)(irp
+ 1) + stack_size
;
302 /***********************************************************************
303 * IoInitializeTimer (NTOSKRNL.EXE.@)
305 NTSTATUS WINAPI
IoInitializeTimer(PDEVICE_OBJECT DeviceObject
,
306 PIO_TIMER_ROUTINE TimerRoutine
,
309 FIXME( "stub: %p, %p, %p\n", DeviceObject
, TimerRoutine
, Context
);
310 return STATUS_NOT_IMPLEMENTED
;
314 /***********************************************************************
315 * IoStartTimer (NTOSKRNL.EXE.@)
317 void WINAPI
IoStartTimer(PDEVICE_OBJECT DeviceObject
)
319 FIXME( "stub: %p\n", DeviceObject
);
323 /***********************************************************************
324 * IoAllocateIrp (NTOSKRNL.EXE.@)
326 PIRP WINAPI
IoAllocateIrp( CCHAR stack_size
, BOOLEAN charge_quota
)
331 TRACE( "%d, %d\n", stack_size
, charge_quota
);
333 size
= sizeof(IRP
) + stack_size
* sizeof(IO_STACK_LOCATION
);
334 irp
= ExAllocatePool( NonPagedPool
, size
);
337 IoInitializeIrp( irp
, size
, stack_size
);
338 irp
->AllocationFlags
= IRP_ALLOCATED_FIXED_SIZE
;
340 irp
->AllocationFlags
|= IRP_LOOKASIDE_ALLOCATION
;
345 /***********************************************************************
346 * IoFreeIrp (NTOSKRNL.EXE.@)
348 void WINAPI
IoFreeIrp( IRP
*irp
)
350 TRACE( "%p\n", irp
);
356 /***********************************************************************
357 * IoAllocateErrorLogEntry (NTOSKRNL.EXE.@)
359 PVOID WINAPI
IoAllocateErrorLogEntry( PVOID IoObject
, UCHAR EntrySize
)
361 FIXME( "stub: %p, %u\n", IoObject
, EntrySize
);
366 /***********************************************************************
367 * IoAllocateMdl (NTOSKRNL.EXE.@)
369 PMDL WINAPI
IoAllocateMdl( PVOID VirtualAddress
, ULONG Length
, BOOLEAN SecondaryBuffer
, BOOLEAN ChargeQuota
, PIRP Irp
)
371 FIXME( "stub: %p, %u, %i, %i, %p\n", VirtualAddress
, Length
, SecondaryBuffer
, ChargeQuota
, Irp
);
376 /***********************************************************************
377 * IoAllocateWorkItem (NTOSKRNL.EXE.@)
379 PIO_WORKITEM WINAPI
IoAllocateWorkItem( PDEVICE_OBJECT DeviceObject
)
381 FIXME( "stub: %p\n", DeviceObject
);
386 /***********************************************************************
387 * IoAttachDeviceToDeviceStack (NTOSKRNL.EXE.@)
389 PDEVICE_OBJECT WINAPI
IoAttachDeviceToDeviceStack( DEVICE_OBJECT
*source
,
390 DEVICE_OBJECT
*target
)
392 TRACE( "%p, %p\n", source
, target
);
393 target
->AttachedDevice
= source
;
394 source
->StackSize
= target
->StackSize
+ 1;
399 /***********************************************************************
400 * IoBuildDeviceIoControlRequest (NTOSKRNL.EXE.@)
402 PIRP WINAPI
IoBuildDeviceIoControlRequest( ULONG IoControlCode
,
403 PDEVICE_OBJECT DeviceObject
,
405 ULONG InputBufferLength
,
407 ULONG OutputBufferLength
,
408 BOOLEAN InternalDeviceIoControl
,
410 PIO_STATUS_BLOCK IoStatusBlock
)
413 PIO_STACK_LOCATION irpsp
;
414 struct IrpInstance
*instance
;
416 TRACE( "%x, %p, %p, %u, %p, %u, %u, %p, %p\n",
417 IoControlCode
, DeviceObject
, InputBuffer
, InputBufferLength
,
418 OutputBuffer
, OutputBufferLength
, InternalDeviceIoControl
,
419 Event
, IoStatusBlock
);
421 if (DeviceObject
== NULL
)
424 irp
= IoAllocateIrp( DeviceObject
->StackSize
, FALSE
);
428 instance
= HeapAlloc( GetProcessHeap(), 0, sizeof(struct IrpInstance
) );
429 if (instance
== NULL
)
435 list_add_tail( &Irps
, &instance
->entry
);
437 irpsp
= irp
->Tail
.Overlay
.s
.u
.CurrentStackLocation
- 1;
438 irpsp
->MajorFunction
= InternalDeviceIoControl
?
439 IRP_MJ_INTERNAL_DEVICE_CONTROL
: IRP_MJ_DEVICE_CONTROL
;
440 irpsp
->Parameters
.DeviceIoControl
.IoControlCode
= IoControlCode
;
441 irp
->UserIosb
= IoStatusBlock
;
442 irp
->UserEvent
= Event
;
448 /***********************************************************************
449 * IoCreateDriver (NTOSKRNL.EXE.@)
451 NTSTATUS WINAPI
IoCreateDriver( UNICODE_STRING
*name
, PDRIVER_INITIALIZE init
)
453 DRIVER_OBJECT
*driver
;
454 DRIVER_EXTENSION
*extension
;
457 if (!(driver
= RtlAllocateHeap( GetProcessHeap(), HEAP_ZERO_MEMORY
,
458 sizeof(*driver
) + sizeof(*extension
) )))
459 return STATUS_NO_MEMORY
;
461 if ((status
= RtlDuplicateUnicodeString( 1, name
, &driver
->DriverName
)))
463 RtlFreeHeap( GetProcessHeap(), 0, driver
);
467 extension
= (DRIVER_EXTENSION
*)(driver
+ 1);
468 driver
->Size
= sizeof(*driver
);
469 driver
->DriverInit
= init
;
470 driver
->DriverExtension
= extension
;
471 extension
->DriverObject
= driver
;
472 extension
->ServiceKeyName
= driver
->DriverName
;
474 status
= driver
->DriverInit( driver
, name
);
478 RtlFreeUnicodeString( &driver
->DriverName
);
479 RtlFreeHeap( GetProcessHeap(), 0, driver
);
485 /***********************************************************************
486 * IoDeleteDriver (NTOSKRNL.EXE.@)
488 void WINAPI
IoDeleteDriver( DRIVER_OBJECT
*driver
)
490 RtlFreeUnicodeString( &driver
->DriverName
);
491 RtlFreeHeap( GetProcessHeap(), 0, driver
);
495 /***********************************************************************
496 * IoCreateDevice (NTOSKRNL.EXE.@)
498 NTSTATUS WINAPI
IoCreateDevice( DRIVER_OBJECT
*driver
, ULONG ext_size
,
499 UNICODE_STRING
*name
, DEVICE_TYPE type
,
500 ULONG characteristics
, BOOLEAN exclusive
,
501 DEVICE_OBJECT
**ret_device
)
504 DEVICE_OBJECT
*device
;
506 HANDLE manager
= get_device_manager();
508 TRACE( "(%p, %u, %s, %u, %x, %u, %p)\n",
509 driver
, ext_size
, debugstr_us(name
), type
, characteristics
, exclusive
, ret_device
);
511 if (!(device
= HeapAlloc( GetProcessHeap(), HEAP_ZERO_MEMORY
, sizeof(*device
) + ext_size
)))
512 return STATUS_NO_MEMORY
;
514 SERVER_START_REQ( create_device
)
519 req
->manager
= wine_server_obj_handle( manager
);
520 req
->user_ptr
= wine_server_client_ptr( device
);
521 if (name
) wine_server_add_data( req
, name
->Buffer
, name
->Length
);
522 if (!(status
= wine_server_call( req
))) handle
= wine_server_ptr_handle( reply
->handle
);
526 if (status
== STATUS_SUCCESS
)
528 device
->DriverObject
= driver
;
529 device
->DeviceExtension
= device
+ 1;
530 device
->DeviceType
= type
;
531 device
->StackSize
= 1;
532 device
->Reserved
= handle
;
534 device
->NextDevice
= driver
->DeviceObject
;
535 driver
->DeviceObject
= device
;
537 *ret_device
= device
;
539 else HeapFree( GetProcessHeap(), 0, device
);
545 /***********************************************************************
546 * IoDeleteDevice (NTOSKRNL.EXE.@)
548 void WINAPI
IoDeleteDevice( DEVICE_OBJECT
*device
)
552 TRACE( "%p\n", device
);
554 SERVER_START_REQ( delete_device
)
556 req
->handle
= wine_server_obj_handle( device
->Reserved
);
557 status
= wine_server_call( req
);
561 if (status
== STATUS_SUCCESS
)
563 DEVICE_OBJECT
**prev
= &device
->DriverObject
->DeviceObject
;
564 while (*prev
&& *prev
!= device
) prev
= &(*prev
)->NextDevice
;
565 if (*prev
) *prev
= (*prev
)->NextDevice
;
566 NtClose( device
->Reserved
);
567 HeapFree( GetProcessHeap(), 0, device
);
572 /***********************************************************************
573 * IoCreateSymbolicLink (NTOSKRNL.EXE.@)
575 NTSTATUS WINAPI
IoCreateSymbolicLink( UNICODE_STRING
*name
, UNICODE_STRING
*target
)
578 OBJECT_ATTRIBUTES attr
;
580 attr
.Length
= sizeof(attr
);
581 attr
.RootDirectory
= 0;
582 attr
.ObjectName
= name
;
583 attr
.Attributes
= OBJ_CASE_INSENSITIVE
| OBJ_OPENIF
;
584 attr
.SecurityDescriptor
= NULL
;
585 attr
.SecurityQualityOfService
= NULL
;
587 TRACE( "%s -> %s\n", debugstr_us(name
), debugstr_us(target
) );
588 /* FIXME: store handle somewhere */
589 return NtCreateSymbolicLinkObject( &handle
, SYMBOLIC_LINK_ALL_ACCESS
, &attr
, target
);
593 /***********************************************************************
594 * IoDeleteSymbolicLink (NTOSKRNL.EXE.@)
596 NTSTATUS WINAPI
IoDeleteSymbolicLink( UNICODE_STRING
*name
)
599 OBJECT_ATTRIBUTES attr
;
602 attr
.Length
= sizeof(attr
);
603 attr
.RootDirectory
= 0;
604 attr
.ObjectName
= name
;
605 attr
.Attributes
= OBJ_CASE_INSENSITIVE
;
606 attr
.SecurityDescriptor
= NULL
;
607 attr
.SecurityQualityOfService
= NULL
;
609 if (!(status
= NtOpenSymbolicLinkObject( &handle
, 0, &attr
)))
611 SERVER_START_REQ( unlink_object
)
613 req
->handle
= wine_server_obj_handle( handle
);
614 status
= wine_server_call( req
);
623 /***********************************************************************
624 * IoGetDeviceObjectPointer (NTOSKRNL.EXE.@)
626 NTSTATUS WINAPI
IoGetDeviceObjectPointer( UNICODE_STRING
*name
, ACCESS_MASK access
, PFILE_OBJECT
*file
, PDEVICE_OBJECT
*device
)
628 FIXME( "stub: %s %x %p %p\n", debugstr_us(name
), access
, file
, device
);
629 return STATUS_NOT_IMPLEMENTED
;
633 /***********************************************************************
634 * IofCallDriver (NTOSKRNL.EXE.@)
636 #ifdef DEFINE_FASTCALL2_ENTRYPOINT
637 DEFINE_FASTCALL2_ENTRYPOINT( IofCallDriver
)
638 NTSTATUS WINAPI
__regs_IofCallDriver( DEVICE_OBJECT
*device
, IRP
*irp
)
640 NTSTATUS WINAPI
IofCallDriver( DEVICE_OBJECT
*device
, IRP
*irp
)
643 PDRIVER_DISPATCH dispatch
;
644 IO_STACK_LOCATION
*irpsp
;
647 TRACE( "%p %p\n", device
, irp
);
649 --irp
->CurrentLocation
;
650 irpsp
= --irp
->Tail
.Overlay
.s
.u
.CurrentStackLocation
;
651 dispatch
= device
->DriverObject
->MajorFunction
[irpsp
->MajorFunction
];
652 status
= dispatch( device
, irp
);
658 /***********************************************************************
659 * IoGetRelatedDeviceObject (NTOSKRNL.EXE.@)
661 PDEVICE_OBJECT WINAPI
IoGetRelatedDeviceObject( PFILE_OBJECT obj
)
663 FIXME( "stub: %p\n", obj
);
667 static CONFIGURATION_INFORMATION configuration_information
;
669 /***********************************************************************
670 * IoGetConfigurationInformation (NTOSKRNL.EXE.@)
672 PCONFIGURATION_INFORMATION WINAPI
IoGetConfigurationInformation(void)
674 FIXME( "partial stub\n" );
675 /* FIXME: return actual devices on system */
676 return &configuration_information
;
680 /***********************************************************************
681 * IoQueryDeviceDescription (NTOSKRNL.EXE.@)
683 NTSTATUS WINAPI
IoQueryDeviceDescription(PINTERFACE_TYPE itype
, PULONG bus
, PCONFIGURATION_TYPE ctype
,
684 PULONG cnum
, PCONFIGURATION_TYPE ptype
, PULONG pnum
,
685 PIO_QUERY_DEVICE_ROUTINE callout
, PVOID context
)
687 FIXME( "(%p %p %p %p %p %p %p %p)\n", itype
, bus
, ctype
, cnum
, ptype
, pnum
, callout
, context
);
688 return STATUS_NOT_IMPLEMENTED
;
692 /***********************************************************************
693 * IoRegisterDriverReinitialization (NTOSKRNL.EXE.@)
695 void WINAPI
IoRegisterDriverReinitialization( PDRIVER_OBJECT obj
, PDRIVER_REINITIALIZE reinit
, PVOID context
)
697 FIXME( "stub: %p %p %p\n", obj
, reinit
, context
);
701 /***********************************************************************
702 * IoRegisterShutdownNotification (NTOSKRNL.EXE.@)
704 NTSTATUS WINAPI
IoRegisterShutdownNotification( PDEVICE_OBJECT obj
)
706 FIXME( "stub: %p\n", obj
);
707 return STATUS_SUCCESS
;
711 /***********************************************************************
712 * IoReportResourceUsage (NTOSKRNL.EXE.@)
714 NTSTATUS WINAPI
IoReportResourceUsage(PUNICODE_STRING name
, PDRIVER_OBJECT drv_obj
, PCM_RESOURCE_LIST drv_list
,
715 ULONG drv_size
, PDRIVER_OBJECT dev_obj
, PCM_RESOURCE_LIST dev_list
,
716 ULONG dev_size
, BOOLEAN overwrite
, PBOOLEAN detected
)
718 FIXME("(%s %p %p %u %p %p %u %d %p) stub\n", debugstr_w(name
? name
->Buffer
: NULL
),
719 drv_obj
, drv_list
, drv_size
, dev_obj
, dev_list
, dev_size
, overwrite
, detected
);
720 return STATUS_NOT_IMPLEMENTED
;
724 /***********************************************************************
725 * IofCompleteRequest (NTOSKRNL.EXE.@)
727 #ifdef DEFINE_FASTCALL2_ENTRYPOINT
728 DEFINE_FASTCALL2_ENTRYPOINT( IofCompleteRequest
)
729 void WINAPI
__regs_IofCompleteRequest( IRP
*irp
, UCHAR priority_boost
)
731 void WINAPI
IofCompleteRequest( IRP
*irp
, UCHAR priority_boost
)
734 IO_STACK_LOCATION
*irpsp
;
735 PIO_COMPLETION_ROUTINE routine
;
736 IO_STATUS_BLOCK
*iosb
;
737 struct IrpInstance
*instance
;
738 NTSTATUS status
, stat
;
741 TRACE( "%p %u\n", irp
, priority_boost
);
743 iosb
= irp
->UserIosb
;
744 status
= irp
->IoStatus
.u
.Status
;
745 while (irp
->CurrentLocation
<= irp
->StackCount
)
747 irpsp
= irp
->Tail
.Overlay
.s
.u
.CurrentStackLocation
;
748 routine
= irpsp
->CompletionRoutine
;
750 /* FIXME: add SL_INVOKE_ON_CANCEL support */
753 if ((irpsp
->Control
& SL_INVOKE_ON_SUCCESS
) && STATUS_SUCCESS
== status
)
755 if ((irpsp
->Control
& SL_INVOKE_ON_ERROR
) && STATUS_SUCCESS
!= status
)
758 ++irp
->CurrentLocation
;
759 ++irp
->Tail
.Overlay
.s
.u
.CurrentStackLocation
;
762 TRACE( "calling %p( %p, %p, %p )\n", routine
,
763 irpsp
->DeviceObject
, irp
, irpsp
->Context
);
764 stat
= routine( irpsp
->DeviceObject
, irp
, irpsp
->Context
);
765 TRACE( "CompletionRoutine returned %x\n", stat
);
766 if (STATUS_MORE_PROCESSING_REQUIRED
== stat
)
770 if (iosb
&& STATUS_SUCCESS
== status
)
772 iosb
->u
.Status
= irp
->IoStatus
.u
.Status
;
773 iosb
->Information
= irp
->IoStatus
.Information
;
775 LIST_FOR_EACH_ENTRY( instance
, &Irps
, struct IrpInstance
, entry
)
777 if (instance
->irp
== irp
)
779 list_remove( &instance
->entry
);
780 HeapFree( GetProcessHeap(), 0, instance
);
788 /***********************************************************************
789 * InterlockedCompareExchange (NTOSKRNL.EXE.@)
791 #ifdef DEFINE_FASTCALL3_ENTRYPOINT
792 DEFINE_FASTCALL3_ENTRYPOINT( NTOSKRNL_InterlockedCompareExchange
)
793 LONG WINAPI
__regs_NTOSKRNL_InterlockedCompareExchange( LONG
volatile *dest
, LONG xchg
, LONG compare
)
795 LONG WINAPI
NTOSKRNL_InterlockedCompareExchange( LONG
volatile *dest
, LONG xchg
, LONG compare
)
798 return InterlockedCompareExchange( dest
, xchg
, compare
);
802 /***********************************************************************
803 * InterlockedDecrement (NTOSKRNL.EXE.@)
805 #ifdef DEFINE_FASTCALL1_ENTRYPOINT
806 DEFINE_FASTCALL1_ENTRYPOINT( NTOSKRNL_InterlockedDecrement
)
807 LONG WINAPI
__regs_NTOSKRNL_InterlockedDecrement( LONG
volatile *dest
)
809 LONG WINAPI
NTOSKRNL_InterlockedDecrement( LONG
volatile *dest
)
812 return InterlockedDecrement( dest
);
816 /***********************************************************************
817 * InterlockedExchange (NTOSKRNL.EXE.@)
819 #ifdef DEFINE_FASTCALL2_ENTRYPOINT
820 DEFINE_FASTCALL2_ENTRYPOINT( NTOSKRNL_InterlockedExchange
)
821 LONG WINAPI
__regs_NTOSKRNL_InterlockedExchange( LONG
volatile *dest
, LONG val
)
823 LONG WINAPI
NTOSKRNL_InterlockedExchange( LONG
volatile *dest
, LONG val
)
826 return InterlockedExchange( dest
, val
);
830 /***********************************************************************
831 * InterlockedExchangeAdd (NTOSKRNL.EXE.@)
833 #ifdef DEFINE_FASTCALL2_ENTRYPOINT
834 DEFINE_FASTCALL2_ENTRYPOINT( NTOSKRNL_InterlockedExchangeAdd
)
835 LONG WINAPI
__regs_NTOSKRNL_InterlockedExchangeAdd( LONG
volatile *dest
, LONG incr
)
837 LONG WINAPI
NTOSKRNL_InterlockedExchangeAdd( LONG
volatile *dest
, LONG incr
)
840 return InterlockedExchangeAdd( dest
, incr
);
844 /***********************************************************************
845 * InterlockedIncrement (NTOSKRNL.EXE.@)
847 #ifdef DEFINE_FASTCALL1_ENTRYPOINT
848 DEFINE_FASTCALL1_ENTRYPOINT( NTOSKRNL_InterlockedIncrement
)
849 LONG WINAPI
__regs_NTOSKRNL_InterlockedIncrement( LONG
volatile *dest
)
851 LONG WINAPI
NTOSKRNL_InterlockedIncrement( LONG
volatile *dest
)
854 return InterlockedIncrement( dest
);
858 /***********************************************************************
859 * ExAllocatePool (NTOSKRNL.EXE.@)
861 PVOID WINAPI
ExAllocatePool( POOL_TYPE type
, SIZE_T size
)
863 return ExAllocatePoolWithTag( type
, size
, 0 );
867 /***********************************************************************
868 * ExAllocatePoolWithQuota (NTOSKRNL.EXE.@)
870 PVOID WINAPI
ExAllocatePoolWithQuota( POOL_TYPE type
, SIZE_T size
)
872 return ExAllocatePoolWithTag( type
, size
, 0 );
876 /***********************************************************************
877 * ExAllocatePoolWithTag (NTOSKRNL.EXE.@)
879 PVOID WINAPI
ExAllocatePoolWithTag( POOL_TYPE type
, SIZE_T size
, ULONG tag
)
881 /* FIXME: handle page alignment constraints */
882 void *ret
= HeapAlloc( GetProcessHeap(), 0, size
);
883 TRACE( "%lu pool %u -> %p\n", size
, type
, ret
);
888 /***********************************************************************
889 * ExAllocatePoolWithQuotaTag (NTOSKRNL.EXE.@)
891 PVOID WINAPI
ExAllocatePoolWithQuotaTag( POOL_TYPE type
, SIZE_T size
, ULONG tag
)
893 return ExAllocatePoolWithTag( type
, size
, tag
);
897 /***********************************************************************
898 * ExFreePool (NTOSKRNL.EXE.@)
900 void WINAPI
ExFreePool( void *ptr
)
902 ExFreePoolWithTag( ptr
, 0 );
906 /***********************************************************************
907 * ExFreePoolWithTag (NTOSKRNL.EXE.@)
909 void WINAPI
ExFreePoolWithTag( void *ptr
, ULONG tag
)
911 TRACE( "%p\n", ptr
);
912 HeapFree( GetProcessHeap(), 0, ptr
);
916 /***********************************************************************
917 * ExInitializeResourceLite (NTOSKRNL.EXE.@)
919 NTSTATUS WINAPI
ExInitializeResourceLite(PERESOURCE Resource
)
921 FIXME( "stub: %p\n", Resource
);
922 return STATUS_NOT_IMPLEMENTED
;
926 /***********************************************************************
927 * ExInitializeNPagedLookasideList (NTOSKRNL.EXE.@)
929 void WINAPI
ExInitializeNPagedLookasideList(PNPAGED_LOOKASIDE_LIST Lookaside
,
930 PALLOCATE_FUNCTION Allocate
,
937 FIXME( "stub: %p, %p, %p, %u, %lu, %u, %u\n", Lookaside
, Allocate
, Free
, Flags
, Size
, Tag
, Depth
);
941 /***********************************************************************
942 * ExInitializeZone (NTOSKRNL.EXE.@)
944 NTSTATUS WINAPI
ExInitializeZone(PZONE_HEADER Zone
,
946 PVOID InitialSegment
,
947 ULONG InitialSegmentSize
)
949 FIXME( "stub: %p, %u, %p, %u\n", Zone
, BlockSize
, InitialSegment
, InitialSegmentSize
);
950 return STATUS_NOT_IMPLEMENTED
;
953 /***********************************************************************
954 * FsRtlRegisterUncProvider (NTOSKRNL.EXE.@)
956 NTSTATUS WINAPI
FsRtlRegisterUncProvider(PHANDLE MupHandle
, PUNICODE_STRING RedirDevName
,
957 BOOLEAN MailslotsSupported
)
959 FIXME("(%p %p %d): stub\n", MupHandle
, RedirDevName
, MailslotsSupported
);
960 return STATUS_NOT_IMPLEMENTED
;
963 /***********************************************************************
964 * KeGetCurrentThread / PsGetCurrentThread (NTOSKRNL.EXE.@)
966 PRKTHREAD WINAPI
KeGetCurrentThread(void)
972 /***********************************************************************
973 * KeInitializeEvent (NTOSKRNL.EXE.@)
975 void WINAPI
KeInitializeEvent( PRKEVENT Event
, EVENT_TYPE Type
, BOOLEAN State
)
977 FIXME( "stub: %p %d %d\n", Event
, Type
, State
);
981 /***********************************************************************
982 * KeInitializeMutex (NTOSKRNL.EXE.@)
984 void WINAPI
KeInitializeMutex(PRKMUTEX Mutex
, ULONG Level
)
986 FIXME( "stub: %p, %u\n", Mutex
, Level
);
990 /***********************************************************************
991 * KeInitializeSemaphore (NTOSKRNL.EXE.@)
993 void WINAPI
KeInitializeSemaphore( PRKSEMAPHORE Semaphore
, LONG Count
, LONG Limit
)
995 FIXME( "(%p %d %d) stub\n", Semaphore
, Count
, Limit
);
999 /***********************************************************************
1000 * KeInitializeSpinLock (NTOSKRNL.EXE.@)
1002 void WINAPI
KeInitializeSpinLock( PKSPIN_LOCK SpinLock
)
1004 FIXME( "stub: %p\n", SpinLock
);
1008 /***********************************************************************
1009 * KeInitializeTimerEx (NTOSKRNL.EXE.@)
1011 void WINAPI
KeInitializeTimerEx( PKTIMER Timer
, TIMER_TYPE Type
)
1013 FIXME( "stub: %p %d\n", Timer
, Type
);
1017 /***********************************************************************
1018 * KeInitializeTimer (NTOSKRNL.EXE.@)
1020 void WINAPI
KeInitializeTimer( PKTIMER Timer
)
1022 KeInitializeTimerEx(Timer
, NotificationTimer
);
1026 /**********************************************************************
1027 * KeQueryActiveProcessors (NTOSKRNL.EXE.@)
1029 * Return the active Processors as bitmask
1032 * active Processors as bitmask
1035 KAFFINITY WINAPI
KeQueryActiveProcessors( void )
1037 DWORD_PTR AffinityMask
;
1039 GetProcessAffinityMask( GetCurrentProcess(), &AffinityMask
, NULL
);
1040 return AffinityMask
;
1044 /**********************************************************************
1045 * KeQueryInterruptTime (NTOSKRNL.EXE.@)
1047 * Return the interrupt time count
1050 ULONGLONG WINAPI
KeQueryInterruptTime( void )
1052 LARGE_INTEGER totaltime
;
1054 KeQueryTickCount(&totaltime
);
1055 return totaltime
.QuadPart
;
1059 /***********************************************************************
1060 * KeQuerySystemTime (NTOSKRNL.EXE.@)
1062 void WINAPI
KeQuerySystemTime( LARGE_INTEGER
*time
)
1064 NtQuerySystemTime( time
);
1068 /***********************************************************************
1069 * KeQueryTickCount (NTOSKRNL.EXE.@)
1071 void WINAPI
KeQueryTickCount( LARGE_INTEGER
*count
)
1073 count
->QuadPart
= NtGetTickCount();
1074 /* update the global variable too */
1075 KeTickCount
.LowPart
= count
->u
.LowPart
;
1076 KeTickCount
.High1Time
= count
->u
.HighPart
;
1077 KeTickCount
.High2Time
= count
->u
.HighPart
;
1081 /***********************************************************************
1082 * KeReleaseSemaphore (NTOSKRNL.EXE.@)
1084 LONG WINAPI
KeReleaseSemaphore( PRKSEMAPHORE Semaphore
, KPRIORITY Increment
,
1085 LONG Adjustment
, BOOLEAN Wait
)
1087 FIXME("(%p %d %d %d) stub\n", Semaphore
, Increment
, Adjustment
, Wait
);
1092 /***********************************************************************
1093 * KeQueryTimeIncrement (NTOSKRNL.EXE.@)
1095 ULONG WINAPI
KeQueryTimeIncrement(void)
1101 /***********************************************************************
1102 * KeSetPriorityThread (NTOSKRNL.EXE.@)
1104 KPRIORITY WINAPI
KeSetPriorityThread( PKTHREAD Thread
, KPRIORITY Priority
)
1106 FIXME("(%p %d)\n", Thread
, Priority
);
1111 /***********************************************************************
1112 * KeWaitForSingleObject (NTOSKRNL.EXE.@)
1114 NTSTATUS WINAPI
KeWaitForSingleObject(PVOID Object
,
1115 KWAIT_REASON WaitReason
,
1116 KPROCESSOR_MODE WaitMode
,
1118 PLARGE_INTEGER Timeout
)
1120 FIXME( "stub: %p, %d, %d, %d, %p\n", Object
, WaitReason
, WaitMode
, Alertable
, Timeout
);
1121 return STATUS_NOT_IMPLEMENTED
;
1124 /***********************************************************************
1125 * IoRegisterFileSystem (NTOSKRNL.EXE.@)
1127 VOID WINAPI
IoRegisterFileSystem(PDEVICE_OBJECT DeviceObject
)
1129 FIXME("(%p): stub\n", DeviceObject
);
1132 /***********************************************************************
1133 * IoUnregisterFileSystem (NTOSKRNL.EXE.@)
1135 VOID WINAPI
IoUnregisterFileSystem(PDEVICE_OBJECT DeviceObject
)
1137 FIXME("(%p): stub\n", DeviceObject
);
1140 /***********************************************************************
1141 * MmAllocateNonCachedMemory (NTOSKRNL.EXE.@)
1143 PVOID WINAPI
MmAllocateNonCachedMemory( SIZE_T size
)
1145 TRACE( "%lu\n", size
);
1146 return VirtualAlloc( NULL
, size
, MEM_RESERVE
|MEM_COMMIT
, PAGE_READWRITE
|PAGE_NOCACHE
);
1149 /***********************************************************************
1150 * MmAllocateContiguousMemory (NTOSKRNL.EXE.@)
1152 PVOID WINAPI
MmAllocateContiguousMemory( SIZE_T size
, PHYSICAL_ADDRESS highest_valid_address
)
1154 FIXME( "%lu, %s stub\n", size
, wine_dbgstr_longlong(highest_valid_address
.QuadPart
) );
1158 /***********************************************************************
1159 * MmAllocatePagesForMdl (NTOSKRNL.EXE.@)
1161 PMDL WINAPI
MmAllocatePagesForMdl(PHYSICAL_ADDRESS lowaddress
, PHYSICAL_ADDRESS highaddress
,
1162 PHYSICAL_ADDRESS skipbytes
, SIZE_T size
)
1164 FIXME("%s %s %s %lu: stub\n", wine_dbgstr_longlong(lowaddress
.QuadPart
), wine_dbgstr_longlong(highaddress
.QuadPart
),
1165 wine_dbgstr_longlong(skipbytes
.QuadPart
), size
);
1169 /***********************************************************************
1170 * MmFreeNonCachedMemory (NTOSKRNL.EXE.@)
1172 void WINAPI
MmFreeNonCachedMemory( void *addr
, SIZE_T size
)
1174 TRACE( "%p %lu\n", addr
, size
);
1175 VirtualFree( addr
, 0, MEM_RELEASE
);
1178 /***********************************************************************
1179 * MmIsAddressValid (NTOSKRNL.EXE.@)
1181 * Check if the process can access the virtual address without a pagefault
1184 * VirtualAddress [I] Address to check
1188 * Success: TRUE (Accessing the Address works without a Pagefault)
1191 BOOLEAN WINAPI
MmIsAddressValid(PVOID VirtualAddress
)
1193 TRACE("(%p)\n", VirtualAddress
);
1194 return !IsBadWritePtr(VirtualAddress
, 1);
1197 /***********************************************************************
1198 * MmPageEntireDriver (NTOSKRNL.EXE.@)
1200 PVOID WINAPI
MmPageEntireDriver(PVOID AddrInSection
)
1202 TRACE("%p\n", AddrInSection
);
1203 return AddrInSection
;
1206 /***********************************************************************
1207 * MmResetDriverPaging (NTOSKRNL.EXE.@)
1209 void WINAPI
MmResetDriverPaging(PVOID AddrInSection
)
1211 TRACE("%p\n", AddrInSection
);
1214 /***********************************************************************
1215 * ObfReferenceObject (NTOSKRNL.EXE.@)
1217 VOID WINAPI
ObfReferenceObject(PVOID Object
)
1219 FIXME("(%p): stub\n", Object
);
1222 /***********************************************************************
1223 * ObReferenceObjectByHandle (NTOSKRNL.EXE.@)
1225 NTSTATUS WINAPI
ObReferenceObjectByHandle( HANDLE obj
, ACCESS_MASK access
,
1227 KPROCESSOR_MODE mode
, PVOID
* ptr
,
1228 POBJECT_HANDLE_INFORMATION info
)
1230 FIXME( "stub: %p %x %p %d %p %p\n", obj
, access
, type
, mode
, ptr
, info
);
1231 return STATUS_NOT_IMPLEMENTED
;
1235 /***********************************************************************
1236 * ObfDereferenceObject (NTOSKRNL.EXE.@)
1238 #ifdef DEFINE_FASTCALL1_ENTRYPOINT
1239 DEFINE_FASTCALL1_ENTRYPOINT( ObfDereferenceObject
)
1240 void WINAPI
__regs_ObfDereferenceObject( VOID
*obj
)
1242 void WINAPI
ObfDereferenceObject( VOID
*obj
)
1245 FIXME( "stub: %p\n", obj
);
1249 /***********************************************************************
1250 * PsCreateSystemThread (NTOSKRNL.EXE.@)
1252 NTSTATUS WINAPI
PsCreateSystemThread(PHANDLE ThreadHandle
, ULONG DesiredAccess
,
1253 POBJECT_ATTRIBUTES ObjectAttributes
,
1254 HANDLE ProcessHandle
, PCLIENT_ID ClientId
,
1255 PKSTART_ROUTINE StartRoutine
, PVOID StartContext
)
1257 if (!ProcessHandle
) ProcessHandle
= GetCurrentProcess();
1258 return RtlCreateUserThread(ProcessHandle
, 0, FALSE
, 0, 0,
1259 0, StartRoutine
, StartContext
,
1260 ThreadHandle
, ClientId
);
1263 /***********************************************************************
1264 * PsGetCurrentProcessId (NTOSKRNL.EXE.@)
1266 HANDLE WINAPI
PsGetCurrentProcessId(void)
1268 return UlongToHandle(GetCurrentProcessId()); /* FIXME: not quite right... */
1272 /***********************************************************************
1273 * PsGetCurrentThreadId (NTOSKRNL.EXE.@)
1275 HANDLE WINAPI
PsGetCurrentThreadId(void)
1277 return UlongToHandle(GetCurrentThreadId()); /* FIXME: not quite right... */
1281 /***********************************************************************
1282 * PsGetVersion (NTOSKRNL.EXE.@)
1284 BOOLEAN WINAPI
PsGetVersion(ULONG
*major
, ULONG
*minor
, ULONG
*build
, UNICODE_STRING
*version
)
1286 RTL_OSVERSIONINFOEXW info
;
1288 info
.dwOSVersionInfoSize
= sizeof(info
);
1289 RtlGetVersion( &info
);
1290 if (major
) *major
= info
.dwMajorVersion
;
1291 if (minor
) *minor
= info
.dwMinorVersion
;
1292 if (build
) *build
= info
.dwBuildNumber
;
1296 #if 0 /* FIXME: GameGuard passes an uninitialized pointer in version->Buffer */
1297 size_t len
= min( strlenW(info
.szCSDVersion
)*sizeof(WCHAR
), version
->MaximumLength
);
1298 memcpy( version
->Buffer
, info
.szCSDVersion
, len
);
1299 if (len
< version
->MaximumLength
) version
->Buffer
[len
/ sizeof(WCHAR
)] = 0;
1300 version
->Length
= len
;
1307 /***********************************************************************
1308 * PsSetCreateProcessNotifyRoutine (NTOSKRNL.EXE.@)
1310 NTSTATUS WINAPI
PsSetCreateProcessNotifyRoutine( PCREATE_PROCESS_NOTIFY_ROUTINE callback
, BOOLEAN remove
)
1312 FIXME( "stub: %p %d\n", callback
, remove
);
1313 return STATUS_SUCCESS
;
1317 /***********************************************************************
1318 * PsSetCreateThreadNotifyRoutine (NTOSKRNL.EXE.@)
1320 NTSTATUS WINAPI
PsSetCreateThreadNotifyRoutine( PCREATE_THREAD_NOTIFY_ROUTINE NotifyRoutine
)
1322 FIXME( "stub: %p\n", NotifyRoutine
);
1323 return STATUS_SUCCESS
;
1327 /***********************************************************************
1328 * PsTerminateSystemThread (NTOSKRNL.EXE.@)
1330 NTSTATUS WINAPI
PsTerminateSystemThread(NTSTATUS ExitStatus
)
1332 FIXME( "stub: %u\n", ExitStatus
);
1333 return STATUS_NOT_IMPLEMENTED
;
1337 /***********************************************************************
1338 * MmGetSystemRoutineAddress (NTOSKRNL.EXE.@)
1340 PVOID WINAPI
MmGetSystemRoutineAddress(PUNICODE_STRING SystemRoutineName
)
1343 STRING routineNameA
;
1346 static const WCHAR ntoskrnlW
[] = {'n','t','o','s','k','r','n','l','.','e','x','e',0};
1347 static const WCHAR halW
[] = {'h','a','l','.','d','l','l',0};
1349 if (!SystemRoutineName
) return NULL
;
1351 if (RtlUnicodeStringToAnsiString( &routineNameA
, SystemRoutineName
, TRUE
) == STATUS_SUCCESS
)
1353 /* We only support functions exported from ntoskrnl.exe or hal.dll */
1354 hMod
= GetModuleHandleW( ntoskrnlW
);
1355 pFunc
= GetProcAddress( hMod
, routineNameA
.Buffer
);
1358 hMod
= GetModuleHandleW( halW
);
1359 if (hMod
) pFunc
= GetProcAddress( hMod
, routineNameA
.Buffer
);
1361 RtlFreeAnsiString( &routineNameA
);
1364 TRACE( "%s -> %p\n", debugstr_us(SystemRoutineName
), pFunc
);
1369 /***********************************************************************
1370 * MmQuerySystemSize (NTOSKRNL.EXE.@)
1372 MM_SYSTEMSIZE WINAPI
MmQuerySystemSize(void)
1375 return MmLargeSystem
;
1379 /*****************************************************
1382 BOOL WINAPI
DllMain( HINSTANCE inst
, DWORD reason
, LPVOID reserved
)
1384 static void *handler
;
1385 LARGE_INTEGER count
;
1389 case DLL_PROCESS_ATTACH
:
1390 DisableThreadLibraryCalls( inst
);
1392 handler
= RtlAddVectoredExceptionHandler( TRUE
, vectored_handler
);
1394 KeQueryTickCount( &count
); /* initialize the global KeTickCount */
1396 case DLL_PROCESS_DETACH
:
1397 RtlRemoveVectoredExceptionHandler( handler
);