push 390edd058cbebc9f7cb21f639a52f5acd36a8bf3
[wine/hacks.git] / dlls / ntoskrnl.exe / ntoskrnl.c
blobab7cbbf96175f07a329119598a42cb41cf98c46a
1 /*
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
21 #include "config.h"
22 #include "wine/port.h"
24 #include <stdarg.h>
26 #define NONAMELESSUNION
27 #define NONAMELESSSTRUCT
29 #include "ntstatus.h"
30 #define WIN32_NO_STATUS
31 #include "windef.h"
32 #include "winternl.h"
33 #include "excpt.h"
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);
44 KSYSTEM_TIME KeTickCount = { 0, 0, 0 };
46 typedef struct _KSERVICE_TABLE_DESCRIPTOR
48 PULONG_PTR Base;
49 PULONG Count;
50 ULONG Limit;
51 PUCHAR Number;
52 } KSERVICE_TABLE_DESCRIPTOR, *PKSERVICE_TABLE_DESCRIPTOR;
54 KSERVICE_TABLE_DESCRIPTOR KeServiceDescriptorTable[4] = { { 0 } };
56 typedef void (WINAPI *PCREATE_PROCESS_NOTIFY_ROUTINE)(HANDLE,HANDLE,BOOLEAN);
57 typedef void (WINAPI *PCREATE_THREAD_NOTIFY_ROUTINE)(HANDLE,HANDLE,BOOLEAN);
59 static struct list Irps = LIST_INIT(Irps);
61 struct IrpInstance
63 struct list entry;
64 IRP *irp;
67 #ifdef __i386__
68 #define DEFINE_FASTCALL1_ENTRYPOINT( name ) \
69 __ASM_STDCALL_FUNC( name, 4, \
70 "popl %eax\n\t" \
71 "pushl %ecx\n\t" \
72 "pushl %eax\n\t" \
73 "jmp " __ASM_NAME("__regs_") #name __ASM_STDCALL(4))
74 #define DEFINE_FASTCALL2_ENTRYPOINT( name ) \
75 __ASM_STDCALL_FUNC( name, 8, \
76 "popl %eax\n\t" \
77 "pushl %edx\n\t" \
78 "pushl %ecx\n\t" \
79 "pushl %eax\n\t" \
80 "jmp " __ASM_NAME("__regs_") #name __ASM_STDCALL(8))
81 #define DEFINE_FASTCALL3_ENTRYPOINT( name ) \
82 __ASM_STDCALL_FUNC( name, 12, \
83 "popl %eax\n\t" \
84 "pushl %edx\n\t" \
85 "pushl %ecx\n\t" \
86 "pushl %eax\n\t" \
87 "jmp " __ASM_NAME("__regs_") #name __ASM_STDCALL(12))
88 #endif
90 static inline LPCSTR debugstr_us( const UNICODE_STRING *us )
92 if (!us) return "<null>";
93 return debugstr_wn( us->Buffer, us->Length / sizeof(WCHAR) );
96 static HANDLE get_device_manager(void)
98 static HANDLE device_manager;
99 HANDLE handle = 0, ret = device_manager;
101 if (!ret)
103 SERVER_START_REQ( create_device_manager )
105 req->access = SYNCHRONIZE;
106 req->attributes = 0;
107 if (!wine_server_call( req )) handle = wine_server_ptr_handle( reply->handle );
109 SERVER_END_REQ;
111 if (!handle)
113 ERR( "failed to create the device manager\n" );
114 return 0;
116 if (!(ret = InterlockedCompareExchangePointer( &device_manager, handle, 0 )))
117 ret = handle;
118 else
119 NtClose( handle ); /* somebody beat us to it */
121 return ret;
124 /* exception handler for emulation of privileged instructions */
125 static LONG CALLBACK vectored_handler( EXCEPTION_POINTERS *ptrs )
127 EXCEPTION_RECORD *record = ptrs->ExceptionRecord;
129 if (record->ExceptionCode == EXCEPTION_ACCESS_VIOLATION ||
130 record->ExceptionCode == EXCEPTION_PRIV_INSTRUCTION)
132 #ifdef __i386__
133 CONTEXT *context = ptrs->ContextRecord;
134 extern DWORD __wine_emulate_instruction( EXCEPTION_RECORD *rec, CONTEXT *context );
136 if (__wine_emulate_instruction( record, context ) == ExceptionContinueExecution)
137 return EXCEPTION_CONTINUE_EXECUTION;
138 #else
139 FIXME( "Privileged instruction emulation not implemented on this CPU\n" );
140 #endif
142 return EXCEPTION_CONTINUE_SEARCH;
145 /* process an ioctl request for a given device */
146 static NTSTATUS process_ioctl( DEVICE_OBJECT *device, ULONG code, void *in_buff, ULONG in_size,
147 void *out_buff, ULONG *out_size )
149 IRP irp;
150 MDL mdl;
151 IO_STACK_LOCATION irpsp;
152 PDRIVER_DISPATCH dispatch = device->DriverObject->MajorFunction[IRP_MJ_DEVICE_CONTROL];
153 NTSTATUS status;
154 LARGE_INTEGER count;
156 TRACE( "ioctl %x device %p in_size %u out_size %u\n", code, device, in_size, *out_size );
158 /* so we can spot things that we should initialize */
159 memset( &irp, 0x55, sizeof(irp) );
160 memset( &irpsp, 0x66, sizeof(irpsp) );
161 memset( &mdl, 0x77, sizeof(mdl) );
163 irp.RequestorMode = UserMode;
164 irp.AssociatedIrp.SystemBuffer = in_buff;
165 irp.UserBuffer = out_buff;
166 irp.MdlAddress = &mdl;
167 irp.Tail.Overlay.s.u.CurrentStackLocation = &irpsp;
168 irp.UserIosb = NULL;
170 irpsp.MajorFunction = IRP_MJ_DEVICE_CONTROL;
171 irpsp.Parameters.DeviceIoControl.OutputBufferLength = *out_size;
172 irpsp.Parameters.DeviceIoControl.InputBufferLength = in_size;
173 irpsp.Parameters.DeviceIoControl.IoControlCode = code;
174 irpsp.Parameters.DeviceIoControl.Type3InputBuffer = in_buff;
175 irpsp.DeviceObject = device;
176 irpsp.CompletionRoutine = NULL;
178 mdl.Next = NULL;
179 mdl.Size = 0;
180 mdl.StartVa = out_buff;
181 mdl.ByteCount = *out_size;
182 mdl.ByteOffset = 0;
184 device->CurrentIrp = &irp;
186 KeQueryTickCount( &count ); /* update the global KeTickCount */
188 if (TRACE_ON(relay))
189 DPRINTF( "%04x:Call driver dispatch %p (device=%p,irp=%p)\n",
190 GetCurrentThreadId(), dispatch, device, &irp );
192 status = dispatch( device, &irp );
194 if (TRACE_ON(relay))
195 DPRINTF( "%04x:Ret driver dispatch %p (device=%p,irp=%p) retval=%08x\n",
196 GetCurrentThreadId(), dispatch, device, &irp, status );
198 *out_size = (irp.IoStatus.u.Status >= 0) ? irp.IoStatus.Information : 0;
199 return irp.IoStatus.u.Status;
203 /***********************************************************************
204 * wine_ntoskrnl_main_loop (Not a Windows API)
206 NTSTATUS CDECL wine_ntoskrnl_main_loop( HANDLE stop_event )
208 HANDLE manager = get_device_manager();
209 obj_handle_t ioctl = 0;
210 NTSTATUS status = STATUS_SUCCESS;
211 ULONG code = 0;
212 void *in_buff, *out_buff = NULL;
213 DEVICE_OBJECT *device = NULL;
214 ULONG in_size = 4096, out_size = 0;
215 HANDLE handles[2];
217 if (!(in_buff = HeapAlloc( GetProcessHeap(), 0, in_size )))
219 ERR( "failed to allocate buffer\n" );
220 return STATUS_NO_MEMORY;
223 handles[0] = stop_event;
224 handles[1] = manager;
226 for (;;)
228 SERVER_START_REQ( get_next_device_request )
230 req->manager = wine_server_obj_handle( manager );
231 req->prev = ioctl;
232 req->status = status;
233 wine_server_add_data( req, out_buff, out_size );
234 wine_server_set_reply( req, in_buff, in_size );
235 if (!(status = wine_server_call( req )))
237 code = reply->code;
238 ioctl = reply->next;
239 device = wine_server_get_ptr( reply->user_ptr );
240 in_size = reply->in_size;
241 out_size = reply->out_size;
243 else
245 ioctl = 0; /* no previous ioctl */
246 out_size = 0;
247 in_size = reply->in_size;
250 SERVER_END_REQ;
252 switch(status)
254 case STATUS_SUCCESS:
255 HeapFree( GetProcessHeap(), 0, out_buff );
256 if (out_size) out_buff = HeapAlloc( GetProcessHeap(), 0, out_size );
257 else out_buff = NULL;
258 status = process_ioctl( device, code, in_buff, in_size, out_buff, &out_size );
259 break;
260 case STATUS_BUFFER_OVERFLOW:
261 HeapFree( GetProcessHeap(), 0, in_buff );
262 in_buff = HeapAlloc( GetProcessHeap(), 0, in_size );
263 /* restart with larger buffer */
264 break;
265 case STATUS_PENDING:
266 if (WaitForMultipleObjects( 2, handles, FALSE, INFINITE ) == WAIT_OBJECT_0)
268 HeapFree( GetProcessHeap(), 0, in_buff );
269 HeapFree( GetProcessHeap(), 0, out_buff );
270 return STATUS_SUCCESS;
272 break;
278 /***********************************************************************
279 * IoAllocateDriverObjectExtension (NTOSKRNL.EXE.@)
281 NTSTATUS WINAPI IoAllocateDriverObjectExtension( PDRIVER_OBJECT DriverObject,
282 PVOID ClientIdentificationAddress,
283 ULONG DriverObjectExtensionSize,
284 PVOID *DriverObjectExtension )
286 FIXME( "stub: %p, %p, %u, %p\n", DriverObject, ClientIdentificationAddress,
287 DriverObjectExtensionSize, DriverObjectExtension );
288 return STATUS_NOT_IMPLEMENTED;
292 /***********************************************************************
293 * IoGetDriverObjectExtension (NTOSKRNL.EXE.@)
295 PVOID WINAPI IoGetDriverObjectExtension( PDRIVER_OBJECT DriverObject,
296 PVOID ClientIdentificationAddress )
298 FIXME( "stub: %p, %p\n", DriverObject, ClientIdentificationAddress );
299 return NULL;
303 /***********************************************************************
304 * IoInitializeIrp (NTOSKRNL.EXE.@)
306 void WINAPI IoInitializeIrp( IRP *irp, USHORT size, CCHAR stack_size )
308 TRACE( "%p, %u, %d\n", irp, size, stack_size );
310 RtlZeroMemory( irp, size );
312 irp->Type = IO_TYPE_IRP;
313 irp->Size = size;
314 InitializeListHead( &irp->ThreadListEntry );
315 irp->StackCount = stack_size;
316 irp->CurrentLocation = stack_size + 1;
317 irp->Tail.Overlay.s.u.CurrentStackLocation =
318 (PIO_STACK_LOCATION)(irp + 1) + stack_size;
322 /***********************************************************************
323 * IoInitializeTimer (NTOSKRNL.EXE.@)
325 NTSTATUS WINAPI IoInitializeTimer(PDEVICE_OBJECT DeviceObject,
326 PIO_TIMER_ROUTINE TimerRoutine,
327 PVOID Context)
329 FIXME( "stub: %p, %p, %p\n", DeviceObject, TimerRoutine, Context );
330 return STATUS_NOT_IMPLEMENTED;
334 /***********************************************************************
335 * IoStartTimer (NTOSKRNL.EXE.@)
337 void WINAPI IoStartTimer(PDEVICE_OBJECT DeviceObject)
339 FIXME( "stub: %p\n", DeviceObject );
343 /***********************************************************************
344 * IoAllocateIrp (NTOSKRNL.EXE.@)
346 PIRP WINAPI IoAllocateIrp( CCHAR stack_size, BOOLEAN charge_quota )
348 SIZE_T size;
349 PIRP irp;
351 TRACE( "%d, %d\n", stack_size, charge_quota );
353 size = sizeof(IRP) + stack_size * sizeof(IO_STACK_LOCATION);
354 irp = ExAllocatePool( NonPagedPool, size );
355 if (irp == NULL)
356 return NULL;
357 IoInitializeIrp( irp, size, stack_size );
358 irp->AllocationFlags = IRP_ALLOCATED_FIXED_SIZE;
359 if (charge_quota)
360 irp->AllocationFlags |= IRP_LOOKASIDE_ALLOCATION;
361 return irp;
365 /***********************************************************************
366 * IoFreeIrp (NTOSKRNL.EXE.@)
368 void WINAPI IoFreeIrp( IRP *irp )
370 TRACE( "%p\n", irp );
372 ExFreePool( irp );
376 /***********************************************************************
377 * IoAllocateMdl (NTOSKRNL.EXE.@)
379 PMDL WINAPI IoAllocateMdl( PVOID VirtualAddress, ULONG Length, BOOLEAN SecondaryBuffer, BOOLEAN ChargeQuota, PIRP Irp )
381 FIXME( "stub: %p, %u, %i, %i, %p\n", VirtualAddress, Length, SecondaryBuffer, ChargeQuota, Irp );
382 return NULL;
386 /***********************************************************************
387 * IoAllocateWorkItem (NTOSKRNL.EXE.@)
389 PIO_WORKITEM WINAPI IoAllocateWorkItem( PDEVICE_OBJECT DeviceObject )
391 FIXME( "stub: %p\n", DeviceObject );
392 return NULL;
396 /***********************************************************************
397 * IoAttachDeviceToDeviceStack (NTOSKRNL.EXE.@)
399 PDEVICE_OBJECT WINAPI IoAttachDeviceToDeviceStack( DEVICE_OBJECT *source,
400 DEVICE_OBJECT *target )
402 TRACE( "%p, %p\n", source, target );
403 target->AttachedDevice = source;
404 source->StackSize = target->StackSize + 1;
405 return target;
409 /***********************************************************************
410 * IoBuildDeviceIoControlRequest (NTOSKRNL.EXE.@)
412 PIRP WINAPI IoBuildDeviceIoControlRequest( ULONG IoControlCode,
413 PDEVICE_OBJECT DeviceObject,
414 PVOID InputBuffer,
415 ULONG InputBufferLength,
416 PVOID OutputBuffer,
417 ULONG OutputBufferLength,
418 BOOLEAN InternalDeviceIoControl,
419 PKEVENT Event,
420 PIO_STATUS_BLOCK IoStatusBlock )
422 PIRP irp;
423 PIO_STACK_LOCATION irpsp;
424 struct IrpInstance *instance;
426 TRACE( "%x, %p, %p, %u, %p, %u, %u, %p, %p\n",
427 IoControlCode, DeviceObject, InputBuffer, InputBufferLength,
428 OutputBuffer, OutputBufferLength, InternalDeviceIoControl,
429 Event, IoStatusBlock );
431 if (DeviceObject == NULL)
432 return NULL;
434 irp = IoAllocateIrp( DeviceObject->StackSize, FALSE );
435 if (irp == NULL)
436 return NULL;
438 instance = HeapAlloc( GetProcessHeap(), 0, sizeof(struct IrpInstance) );
439 if (instance == NULL)
441 IoFreeIrp( irp );
442 return NULL;
444 instance->irp = irp;
445 list_add_tail( &Irps, &instance->entry );
447 irpsp = irp->Tail.Overlay.s.u.CurrentStackLocation - 1;
448 irpsp->MajorFunction = InternalDeviceIoControl ?
449 IRP_MJ_INTERNAL_DEVICE_CONTROL : IRP_MJ_DEVICE_CONTROL;
450 irpsp->Parameters.DeviceIoControl.IoControlCode = IoControlCode;
451 irp->UserIosb = IoStatusBlock;
452 irp->UserEvent = Event;
454 return irp;
458 /***********************************************************************
459 * IoCreateDriver (NTOSKRNL.EXE.@)
461 NTSTATUS WINAPI IoCreateDriver( UNICODE_STRING *name, PDRIVER_INITIALIZE init )
463 DRIVER_OBJECT *driver;
464 DRIVER_EXTENSION *extension;
465 NTSTATUS status;
467 if (!(driver = RtlAllocateHeap( GetProcessHeap(), HEAP_ZERO_MEMORY,
468 sizeof(*driver) + sizeof(*extension) )))
469 return STATUS_NO_MEMORY;
471 if ((status = RtlDuplicateUnicodeString( 1, name, &driver->DriverName )))
473 RtlFreeHeap( GetProcessHeap(), 0, driver );
474 return status;
477 extension = (DRIVER_EXTENSION *)(driver + 1);
478 driver->Size = sizeof(*driver);
479 driver->DriverInit = init;
480 driver->DriverExtension = extension;
481 extension->DriverObject = driver;
482 extension->ServiceKeyName = driver->DriverName;
484 status = driver->DriverInit( driver, name );
486 if (status)
488 RtlFreeUnicodeString( &driver->DriverName );
489 RtlFreeHeap( GetProcessHeap(), 0, driver );
491 return status;
495 /***********************************************************************
496 * IoDeleteDriver (NTOSKRNL.EXE.@)
498 void WINAPI IoDeleteDriver( DRIVER_OBJECT *driver )
500 RtlFreeUnicodeString( &driver->DriverName );
501 RtlFreeHeap( GetProcessHeap(), 0, driver );
505 /***********************************************************************
506 * IoCreateDevice (NTOSKRNL.EXE.@)
508 NTSTATUS WINAPI IoCreateDevice( DRIVER_OBJECT *driver, ULONG ext_size,
509 UNICODE_STRING *name, DEVICE_TYPE type,
510 ULONG characteristics, BOOLEAN exclusive,
511 DEVICE_OBJECT **ret_device )
513 NTSTATUS status;
514 DEVICE_OBJECT *device;
515 HANDLE handle = 0;
516 HANDLE manager = get_device_manager();
518 TRACE( "(%p, %u, %s, %u, %x, %u, %p)\n",
519 driver, ext_size, debugstr_us(name), type, characteristics, exclusive, ret_device );
521 if (!(device = HeapAlloc( GetProcessHeap(), HEAP_ZERO_MEMORY, sizeof(*device) + ext_size )))
522 return STATUS_NO_MEMORY;
524 SERVER_START_REQ( create_device )
526 req->access = 0;
527 req->attributes = 0;
528 req->rootdir = 0;
529 req->manager = wine_server_obj_handle( manager );
530 req->user_ptr = wine_server_client_ptr( device );
531 if (name) wine_server_add_data( req, name->Buffer, name->Length );
532 if (!(status = wine_server_call( req ))) handle = wine_server_ptr_handle( reply->handle );
534 SERVER_END_REQ;
536 if (status == STATUS_SUCCESS)
538 device->DriverObject = driver;
539 device->DeviceExtension = device + 1;
540 device->DeviceType = type;
541 device->StackSize = 1;
542 device->Reserved = handle;
544 device->NextDevice = driver->DeviceObject;
545 driver->DeviceObject = device;
547 *ret_device = device;
549 else HeapFree( GetProcessHeap(), 0, device );
551 return status;
555 /***********************************************************************
556 * IoDeleteDevice (NTOSKRNL.EXE.@)
558 void WINAPI IoDeleteDevice( DEVICE_OBJECT *device )
560 NTSTATUS status;
562 TRACE( "%p\n", device );
564 SERVER_START_REQ( delete_device )
566 req->handle = wine_server_obj_handle( device->Reserved );
567 status = wine_server_call( req );
569 SERVER_END_REQ;
571 if (status == STATUS_SUCCESS)
573 DEVICE_OBJECT **prev = &device->DriverObject->DeviceObject;
574 while (*prev && *prev != device) prev = &(*prev)->NextDevice;
575 if (*prev) *prev = (*prev)->NextDevice;
576 NtClose( device->Reserved );
577 HeapFree( GetProcessHeap(), 0, device );
582 /***********************************************************************
583 * IoCreateSymbolicLink (NTOSKRNL.EXE.@)
585 NTSTATUS WINAPI IoCreateSymbolicLink( UNICODE_STRING *name, UNICODE_STRING *target )
587 HANDLE handle;
588 OBJECT_ATTRIBUTES attr;
590 attr.Length = sizeof(attr);
591 attr.RootDirectory = 0;
592 attr.ObjectName = name;
593 attr.Attributes = OBJ_CASE_INSENSITIVE | OBJ_OPENIF;
594 attr.SecurityDescriptor = NULL;
595 attr.SecurityQualityOfService = NULL;
597 TRACE( "%s -> %s\n", debugstr_us(name), debugstr_us(target) );
598 /* FIXME: store handle somewhere */
599 return NtCreateSymbolicLinkObject( &handle, SYMBOLIC_LINK_ALL_ACCESS, &attr, target );
603 /***********************************************************************
604 * IoDeleteSymbolicLink (NTOSKRNL.EXE.@)
606 NTSTATUS WINAPI IoDeleteSymbolicLink( UNICODE_STRING *name )
608 HANDLE handle;
609 OBJECT_ATTRIBUTES attr;
610 NTSTATUS status;
612 attr.Length = sizeof(attr);
613 attr.RootDirectory = 0;
614 attr.ObjectName = name;
615 attr.Attributes = OBJ_CASE_INSENSITIVE;
616 attr.SecurityDescriptor = NULL;
617 attr.SecurityQualityOfService = NULL;
619 if (!(status = NtOpenSymbolicLinkObject( &handle, 0, &attr )))
621 SERVER_START_REQ( unlink_object )
623 req->handle = wine_server_obj_handle( handle );
624 status = wine_server_call( req );
626 SERVER_END_REQ;
627 NtClose( handle );
629 return status;
633 /***********************************************************************
634 * IoGetDeviceObjectPointer (NTOSKRNL.EXE.@)
636 NTSTATUS WINAPI IoGetDeviceObjectPointer( UNICODE_STRING *name, ACCESS_MASK access, PFILE_OBJECT *file, PDEVICE_OBJECT *device )
638 FIXME( "stub: %s %x %p %p\n", debugstr_us(name), access, file, device );
639 return STATUS_NOT_IMPLEMENTED;
643 /***********************************************************************
644 * IofCallDriver (NTOSKRNL.EXE.@)
646 #ifdef DEFINE_FASTCALL2_ENTRYPOINT
647 DEFINE_FASTCALL2_ENTRYPOINT( IofCallDriver )
648 NTSTATUS WINAPI __regs_IofCallDriver( DEVICE_OBJECT *device, IRP *irp )
649 #else
650 NTSTATUS WINAPI IofCallDriver( DEVICE_OBJECT *device, IRP *irp )
651 #endif
653 PDRIVER_DISPATCH dispatch;
654 IO_STACK_LOCATION *irpsp;
655 NTSTATUS status;
657 TRACE( "%p %p\n", device, irp );
659 --irp->CurrentLocation;
660 irpsp = --irp->Tail.Overlay.s.u.CurrentStackLocation;
661 dispatch = device->DriverObject->MajorFunction[irpsp->MajorFunction];
662 status = dispatch( device, irp );
664 return status;
668 /***********************************************************************
669 * IoGetRelatedDeviceObject (NTOSKRNL.EXE.@)
671 PDEVICE_OBJECT WINAPI IoGetRelatedDeviceObject( PFILE_OBJECT obj )
673 FIXME( "stub: %p\n", obj );
674 return NULL;
677 static CONFIGURATION_INFORMATION configuration_information;
679 /***********************************************************************
680 * IoGetConfigurationInformation (NTOSKRNL.EXE.@)
682 PCONFIGURATION_INFORMATION WINAPI IoGetConfigurationInformation(void)
684 FIXME( "partial stub\n" );
685 /* FIXME: return actual devices on system */
686 return &configuration_information;
690 /***********************************************************************
691 * IoRegisterDriverReinitialization (NTOSKRNL.EXE.@)
693 void WINAPI IoRegisterDriverReinitialization( PDRIVER_OBJECT obj, PDRIVER_REINITIALIZE reinit, PVOID context )
695 FIXME( "stub: %p %p %p\n", obj, reinit, context );
699 /***********************************************************************
700 * IoRegisterShutdownNotification (NTOSKRNL.EXE.@)
702 NTSTATUS WINAPI IoRegisterShutdownNotification( PDEVICE_OBJECT obj )
704 FIXME( "stub: %p\n", obj );
705 return STATUS_SUCCESS;
709 /***********************************************************************
710 * IofCompleteRequest (NTOSKRNL.EXE.@)
712 #ifdef DEFINE_FASTCALL2_ENTRYPOINT
713 DEFINE_FASTCALL2_ENTRYPOINT( IofCompleteRequest )
714 void WINAPI __regs_IofCompleteRequest( IRP *irp, UCHAR priority_boost )
715 #else
716 void WINAPI IofCompleteRequest( IRP *irp, UCHAR priority_boost )
717 #endif
719 IO_STACK_LOCATION *irpsp;
720 PIO_COMPLETION_ROUTINE routine;
721 IO_STATUS_BLOCK *iosb;
722 struct IrpInstance *instance;
723 NTSTATUS status, stat;
724 int call_flag = 0;
726 TRACE( "%p %u\n", irp, priority_boost );
728 iosb = irp->UserIosb;
729 status = irp->IoStatus.u.Status;
730 while (irp->CurrentLocation <= irp->StackCount)
732 irpsp = irp->Tail.Overlay.s.u.CurrentStackLocation;
733 routine = irpsp->CompletionRoutine;
734 call_flag = 0;
735 /* FIXME: add SL_INVOKE_ON_CANCEL support */
736 if (routine)
738 if ((irpsp->Control & SL_INVOKE_ON_SUCCESS) && STATUS_SUCCESS == status)
739 call_flag = 1;
740 if ((irpsp->Control & SL_INVOKE_ON_ERROR) && STATUS_SUCCESS != status)
741 call_flag = 1;
743 ++irp->CurrentLocation;
744 ++irp->Tail.Overlay.s.u.CurrentStackLocation;
745 if (call_flag)
747 TRACE( "calling %p( %p, %p, %p )\n", routine,
748 irpsp->DeviceObject, irp, irpsp->Context );
749 stat = routine( irpsp->DeviceObject, irp, irpsp->Context );
750 TRACE( "CompletionRoutine returned %x\n", stat );
751 if (STATUS_MORE_PROCESSING_REQUIRED == stat)
752 return;
755 if (iosb && STATUS_SUCCESS == status)
757 iosb->u.Status = irp->IoStatus.u.Status;
758 iosb->Information = irp->IoStatus.Information;
760 LIST_FOR_EACH_ENTRY( instance, &Irps, struct IrpInstance, entry )
762 if (instance->irp == irp)
764 list_remove( &instance->entry );
765 HeapFree( GetProcessHeap(), 0, instance );
766 IoFreeIrp( irp );
767 break;
773 /***********************************************************************
774 * InterlockedCompareExchange (NTOSKRNL.EXE.@)
776 #ifdef DEFINE_FASTCALL3_ENTRYPOINT
777 DEFINE_FASTCALL3_ENTRYPOINT( NTOSKRNL_InterlockedCompareExchange )
778 LONG WINAPI __regs_NTOSKRNL_InterlockedCompareExchange( LONG volatile *dest, LONG xchg, LONG compare )
779 #else
780 LONG WINAPI NTOSKRNL_InterlockedCompareExchange( LONG volatile *dest, LONG xchg, LONG compare )
781 #endif
783 return InterlockedCompareExchange( dest, xchg, compare );
787 /***********************************************************************
788 * InterlockedDecrement (NTOSKRNL.EXE.@)
790 #ifdef DEFINE_FASTCALL1_ENTRYPOINT
791 DEFINE_FASTCALL1_ENTRYPOINT( NTOSKRNL_InterlockedDecrement )
792 LONG WINAPI __regs_NTOSKRNL_InterlockedDecrement( LONG volatile *dest )
793 #else
794 LONG WINAPI NTOSKRNL_InterlockedDecrement( LONG volatile *dest )
795 #endif
797 return InterlockedDecrement( dest );
801 /***********************************************************************
802 * InterlockedExchange (NTOSKRNL.EXE.@)
804 #ifdef DEFINE_FASTCALL2_ENTRYPOINT
805 DEFINE_FASTCALL2_ENTRYPOINT( NTOSKRNL_InterlockedExchange )
806 LONG WINAPI __regs_NTOSKRNL_InterlockedExchange( LONG volatile *dest, LONG val )
807 #else
808 LONG WINAPI NTOSKRNL_InterlockedExchange( LONG volatile *dest, LONG val )
809 #endif
811 return InterlockedExchange( dest, val );
815 /***********************************************************************
816 * InterlockedExchangeAdd (NTOSKRNL.EXE.@)
818 #ifdef DEFINE_FASTCALL2_ENTRYPOINT
819 DEFINE_FASTCALL2_ENTRYPOINT( NTOSKRNL_InterlockedExchangeAdd )
820 LONG WINAPI __regs_NTOSKRNL_InterlockedExchangeAdd( LONG volatile *dest, LONG incr )
821 #else
822 LONG WINAPI NTOSKRNL_InterlockedExchangeAdd( LONG volatile *dest, LONG incr )
823 #endif
825 return InterlockedExchangeAdd( dest, incr );
829 /***********************************************************************
830 * InterlockedIncrement (NTOSKRNL.EXE.@)
832 #ifdef DEFINE_FASTCALL1_ENTRYPOINT
833 DEFINE_FASTCALL1_ENTRYPOINT( NTOSKRNL_InterlockedIncrement )
834 LONG WINAPI __regs_NTOSKRNL_InterlockedIncrement( LONG volatile *dest )
835 #else
836 LONG WINAPI NTOSKRNL_InterlockedIncrement( LONG volatile *dest )
837 #endif
839 return InterlockedIncrement( dest );
843 /***********************************************************************
844 * ExAllocatePool (NTOSKRNL.EXE.@)
846 PVOID WINAPI ExAllocatePool( POOL_TYPE type, SIZE_T size )
848 return ExAllocatePoolWithTag( type, size, 0 );
852 /***********************************************************************
853 * ExAllocatePoolWithQuota (NTOSKRNL.EXE.@)
855 PVOID WINAPI ExAllocatePoolWithQuota( POOL_TYPE type, SIZE_T size )
857 return ExAllocatePoolWithTag( type, size, 0 );
861 /***********************************************************************
862 * ExAllocatePoolWithTag (NTOSKRNL.EXE.@)
864 PVOID WINAPI ExAllocatePoolWithTag( POOL_TYPE type, SIZE_T size, ULONG tag )
866 /* FIXME: handle page alignment constraints */
867 void *ret = HeapAlloc( GetProcessHeap(), 0, size );
868 TRACE( "%lu pool %u -> %p\n", size, type, ret );
869 return ret;
873 /***********************************************************************
874 * ExAllocatePoolWithQuotaTag (NTOSKRNL.EXE.@)
876 PVOID WINAPI ExAllocatePoolWithQuotaTag( POOL_TYPE type, SIZE_T size, ULONG tag )
878 return ExAllocatePoolWithTag( type, size, tag );
882 /***********************************************************************
883 * ExFreePool (NTOSKRNL.EXE.@)
885 void WINAPI ExFreePool( void *ptr )
887 ExFreePoolWithTag( ptr, 0 );
891 /***********************************************************************
892 * ExFreePoolWithTag (NTOSKRNL.EXE.@)
894 void WINAPI ExFreePoolWithTag( void *ptr, ULONG tag )
896 TRACE( "%p\n", ptr );
897 HeapFree( GetProcessHeap(), 0, ptr );
901 /***********************************************************************
902 * ExInitializeResourceLite (NTOSKRNL.EXE.@)
904 NTSTATUS WINAPI ExInitializeResourceLite(PERESOURCE Resource)
906 FIXME( "stub: %p\n", Resource );
907 return STATUS_NOT_IMPLEMENTED;
911 /***********************************************************************
912 * ExInitializeNPagedLookasideList (NTOSKRNL.EXE.@)
914 void WINAPI ExInitializeNPagedLookasideList(PNPAGED_LOOKASIDE_LIST Lookaside,
915 PALLOCATE_FUNCTION Allocate,
916 PFREE_FUNCTION Free,
917 ULONG Flags,
918 SIZE_T Size,
919 ULONG Tag,
920 USHORT Depth)
922 FIXME( "stub: %p, %p, %p, %u, %lu, %u, %u\n", Lookaside, Allocate, Free, Flags, Size, Tag, Depth );
926 /***********************************************************************
927 * ExInitializeZone (NTOSKRNL.EXE.@)
929 NTSTATUS WINAPI ExInitializeZone(PZONE_HEADER Zone,
930 ULONG BlockSize,
931 PVOID InitialSegment,
932 ULONG InitialSegmentSize)
934 FIXME( "stub: %p, %u, %p, %u\n", Zone, BlockSize, InitialSegment, InitialSegmentSize );
935 return STATUS_NOT_IMPLEMENTED;
938 /***********************************************************************
939 * FsRtlRegisterUncProvider (NTOSKRNL.EXE.@)
941 NTSTATUS WINAPI FsRtlRegisterUncProvider(PHANDLE MupHandle, PUNICODE_STRING RedirDevName,
942 BOOLEAN MailslotsSupported)
944 FIXME("(%p %p %d): stub\n", MupHandle, RedirDevName, MailslotsSupported);
945 return STATUS_NOT_IMPLEMENTED;
948 /***********************************************************************
949 * KeInitializeEvent (NTOSKRNL.EXE.@)
951 void WINAPI KeInitializeEvent( PRKEVENT Event, EVENT_TYPE Type, BOOLEAN State )
953 FIXME( "stub: %p %d %d\n", Event, Type, State );
957 /***********************************************************************
958 * KeInitializeMutex (NTOSKRNL.EXE.@)
960 void WINAPI KeInitializeMutex(PRKMUTEX Mutex, ULONG Level)
962 FIXME( "stub: %p, %u\n", Mutex, Level );
966 /***********************************************************************
967 * KeInitializeSpinLock (NTOSKRNL.EXE.@)
969 void WINAPI KeInitializeSpinLock( PKSPIN_LOCK SpinLock )
971 FIXME( "stub: %p\n", SpinLock );
975 /***********************************************************************
976 * KeInitializeTimerEx (NTOSKRNL.EXE.@)
978 void WINAPI KeInitializeTimerEx( PKTIMER Timer, TIMER_TYPE Type )
980 FIXME( "stub: %p %d\n", Timer, Type );
984 /***********************************************************************
985 * KeInitializeTimer (NTOSKRNL.EXE.@)
987 void WINAPI KeInitializeTimer( PKTIMER Timer )
989 KeInitializeTimerEx(Timer, NotificationTimer);
993 /**********************************************************************
994 * KeQueryActiveProcessors (NTOSKRNL.EXE.@)
996 * Return the active Processors as bitmask
998 * RETURNS
999 * active Processors as bitmask
1002 KAFFINITY WINAPI KeQueryActiveProcessors( void )
1004 DWORD_PTR AffinityMask;
1006 GetProcessAffinityMask( GetCurrentProcess(), &AffinityMask, NULL);
1007 return AffinityMask;
1011 /**********************************************************************
1012 * KeQueryInterruptTime (NTOSKRNL.EXE.@)
1014 * Return the interrupt time count
1017 ULONGLONG WINAPI KeQueryInterruptTime( void )
1019 LARGE_INTEGER totaltime;
1021 KeQueryTickCount(&totaltime);
1022 return totaltime.QuadPart;
1026 /***********************************************************************
1027 * KeQuerySystemTime (NTOSKRNL.EXE.@)
1029 void WINAPI KeQuerySystemTime( LARGE_INTEGER *time )
1031 NtQuerySystemTime( time );
1035 /***********************************************************************
1036 * KeQueryTickCount (NTOSKRNL.EXE.@)
1038 void WINAPI KeQueryTickCount( LARGE_INTEGER *count )
1040 count->QuadPart = NtGetTickCount();
1041 /* update the global variable too */
1042 KeTickCount.LowPart = count->u.LowPart;
1043 KeTickCount.High1Time = count->u.HighPart;
1044 KeTickCount.High2Time = count->u.HighPart;
1048 /***********************************************************************
1049 * KeQueryTimeIncrement (NTOSKRNL.EXE.@)
1051 ULONG WINAPI KeQueryTimeIncrement(void)
1053 return 10000;
1057 /***********************************************************************
1058 * KeWaitForSingleObject (NTOSKRNL.EXE.@)
1060 NTSTATUS WINAPI KeWaitForSingleObject(PVOID Object,
1061 KWAIT_REASON WaitReason,
1062 KPROCESSOR_MODE WaitMode,
1063 BOOLEAN Alertable,
1064 PLARGE_INTEGER Timeout)
1066 FIXME( "stub: %p, %d, %d, %d, %p\n", Object, WaitReason, WaitMode, Alertable, Timeout );
1067 return STATUS_NOT_IMPLEMENTED;
1070 /***********************************************************************
1071 * IoRegisterFileSystem (NTOSKRNL.EXE.@)
1073 VOID WINAPI IoRegisterFileSystem(PDEVICE_OBJECT DeviceObject)
1075 FIXME("(%p): stub\n", DeviceObject);
1078 /***********************************************************************
1079 * IoUnregisterFileSystem (NTOSKRNL.EXE.@)
1081 VOID WINAPI IoUnregisterFileSystem(PDEVICE_OBJECT DeviceObject)
1083 FIXME("(%p): stub\n", DeviceObject);
1086 /***********************************************************************
1087 * MmAllocateNonCachedMemory (NTOSKRNL.EXE.@)
1089 PVOID WINAPI MmAllocateNonCachedMemory( SIZE_T size )
1091 TRACE( "%lu\n", size );
1092 return VirtualAlloc( NULL, size, MEM_RESERVE|MEM_COMMIT, PAGE_READWRITE|PAGE_NOCACHE );
1096 /***********************************************************************
1097 * MmFreeNonCachedMemory (NTOSKRNL.EXE.@)
1099 void WINAPI MmFreeNonCachedMemory( void *addr, SIZE_T size )
1101 TRACE( "%p %lu\n", addr, size );
1102 VirtualFree( addr, 0, MEM_RELEASE );
1105 /***********************************************************************
1106 * MmIsAddressValid (NTOSKRNL.EXE.@)
1108 * Check if the process can access the virtual address without a pagefault
1110 * PARAMS
1111 * VirtualAddress [I] Address to check
1113 * RETURNS
1114 * Failure: FALSE
1115 * Success: TRUE (Accessing the Address works without a Pagefault)
1118 BOOLEAN WINAPI MmIsAddressValid(PVOID VirtualAddress)
1120 TRACE("(%p)\n", VirtualAddress);
1121 return !IsBadWritePtr(VirtualAddress, 1);
1124 /***********************************************************************
1125 * MmPageEntireDriver (NTOSKRNL.EXE.@)
1127 PVOID WINAPI MmPageEntireDriver(PVOID AddrInSection)
1129 TRACE("%p\n", AddrInSection);
1130 return AddrInSection;
1133 /***********************************************************************
1134 * MmResetDriverPaging (NTOSKRNL.EXE.@)
1136 void WINAPI MmResetDriverPaging(PVOID AddrInSection)
1138 TRACE("%p\n", AddrInSection);
1141 /***********************************************************************
1142 * ObfReferenceObject (NTOSKRNL.EXE.@)
1144 VOID WINAPI ObfReferenceObject(PVOID Object)
1146 FIXME("(%p): stub\n", Object);
1149 /***********************************************************************
1150 * ObReferenceObjectByHandle (NTOSKRNL.EXE.@)
1152 NTSTATUS WINAPI ObReferenceObjectByHandle( HANDLE obj, ACCESS_MASK access,
1153 POBJECT_TYPE type,
1154 KPROCESSOR_MODE mode, PVOID* ptr,
1155 POBJECT_HANDLE_INFORMATION info)
1157 FIXME( "stub: %p %x %p %d %p %p\n", obj, access, type, mode, ptr, info);
1158 return STATUS_NOT_IMPLEMENTED;
1162 /***********************************************************************
1163 * ObfDereferenceObject (NTOSKRNL.EXE.@)
1165 #ifdef DEFINE_FASTCALL1_ENTRYPOINT
1166 DEFINE_FASTCALL1_ENTRYPOINT( ObfDereferenceObject )
1167 void WINAPI __regs_ObfDereferenceObject( VOID *obj )
1168 #else
1169 void WINAPI ObfDereferenceObject( VOID *obj )
1170 #endif
1172 FIXME( "stub: %p\n", obj );
1176 /***********************************************************************
1177 * PsCreateSystemThread (NTOSKRNL.EXE.@)
1179 NTSTATUS WINAPI PsCreateSystemThread(PHANDLE ThreadHandle, ULONG DesiredAccess,
1180 POBJECT_ATTRIBUTES ObjectAttributes,
1181 HANDLE ProcessHandle, PCLIENT_ID ClientId,
1182 PKSTART_ROUTINE StartRoutine, PVOID StartContext)
1184 if (!ProcessHandle) ProcessHandle = GetCurrentProcess();
1185 return RtlCreateUserThread(ProcessHandle, 0, FALSE, 0, 0,
1186 0, StartRoutine, StartContext,
1187 ThreadHandle, ClientId);
1190 /***********************************************************************
1191 * PsGetCurrentProcessId (NTOSKRNL.EXE.@)
1193 HANDLE WINAPI PsGetCurrentProcessId(void)
1195 return UlongToHandle(GetCurrentProcessId()); /* FIXME: not quite right... */
1199 /***********************************************************************
1200 * PsGetCurrentThreadId (NTOSKRNL.EXE.@)
1202 HANDLE WINAPI PsGetCurrentThreadId(void)
1204 return UlongToHandle(GetCurrentThreadId()); /* FIXME: not quite right... */
1208 /***********************************************************************
1209 * PsGetVersion (NTOSKRNL.EXE.@)
1211 BOOLEAN WINAPI PsGetVersion(ULONG *major, ULONG *minor, ULONG *build, UNICODE_STRING *version )
1213 RTL_OSVERSIONINFOEXW info;
1215 RtlGetVersion( &info );
1216 if (major) *major = info.dwMajorVersion;
1217 if (minor) *minor = info.dwMinorVersion;
1218 if (build) *build = info.dwBuildNumber;
1220 if (version)
1222 #if 0 /* FIXME: GameGuard passes an uninitialized pointer in version->Buffer */
1223 size_t len = min( strlenW(info.szCSDVersion)*sizeof(WCHAR), version->MaximumLength );
1224 memcpy( version->Buffer, info.szCSDVersion, len );
1225 if (len < version->MaximumLength) version->Buffer[len / sizeof(WCHAR)] = 0;
1226 version->Length = len;
1227 #endif
1229 return TRUE;
1233 /***********************************************************************
1234 * PsSetCreateProcessNotifyRoutine (NTOSKRNL.EXE.@)
1236 NTSTATUS WINAPI PsSetCreateProcessNotifyRoutine( PCREATE_PROCESS_NOTIFY_ROUTINE callback, BOOLEAN remove )
1238 FIXME( "stub: %p %d\n", callback, remove );
1239 return STATUS_SUCCESS;
1243 /***********************************************************************
1244 * PsSetCreateThreadNotifyRoutine (NTOSKRNL.EXE.@)
1246 NTSTATUS WINAPI PsSetCreateThreadNotifyRoutine( PCREATE_THREAD_NOTIFY_ROUTINE NotifyRoutine )
1248 FIXME( "stub: %p\n", NotifyRoutine );
1249 return STATUS_SUCCESS;
1253 /***********************************************************************
1254 * PsTerminateSystemThread (NTOSKRNL.EXE.@)
1256 NTSTATUS WINAPI PsTerminateSystemThread(NTSTATUS ExitStatus)
1258 FIXME( "stub: %u\n", ExitStatus );
1259 return STATUS_NOT_IMPLEMENTED;
1263 /***********************************************************************
1264 * MmGetSystemRoutineAddress (NTOSKRNL.EXE.@)
1266 PVOID WINAPI MmGetSystemRoutineAddress(PUNICODE_STRING SystemRoutineName)
1268 HMODULE hMod;
1269 STRING routineNameA;
1270 PVOID pFunc = NULL;
1272 static const WCHAR ntoskrnlW[] = {'n','t','o','s','k','r','n','l','.','e','x','e',0};
1273 static const WCHAR halW[] = {'h','a','l','.','d','l','l',0};
1275 if (!SystemRoutineName) return NULL;
1277 if (RtlUnicodeStringToAnsiString( &routineNameA, SystemRoutineName, TRUE ) == STATUS_SUCCESS)
1279 /* We only support functions exported from ntoskrnl.exe or hal.dll */
1280 hMod = GetModuleHandleW( ntoskrnlW );
1281 pFunc = GetProcAddress( hMod, routineNameA.Buffer );
1282 if (!pFunc)
1284 hMod = GetModuleHandleW( halW );
1285 if (hMod) pFunc = GetProcAddress( hMod, routineNameA.Buffer );
1287 RtlFreeAnsiString( &routineNameA );
1290 TRACE( "%s -> %p\n", debugstr_us(SystemRoutineName), pFunc );
1291 return pFunc;
1295 /***********************************************************************
1296 * MmQuerySystemSize (NTOSKRNL.EXE.@)
1298 MM_SYSTEMSIZE WINAPI MmQuerySystemSize(void)
1300 FIXME("stub\n");
1301 return MmLargeSystem;
1305 /*****************************************************
1306 * DllMain
1308 BOOL WINAPI DllMain( HINSTANCE inst, DWORD reason, LPVOID reserved )
1310 static void *handler;
1311 LARGE_INTEGER count;
1313 switch(reason)
1315 case DLL_PROCESS_ATTACH:
1316 DisableThreadLibraryCalls( inst );
1317 handler = RtlAddVectoredExceptionHandler( TRUE, vectored_handler );
1318 KeQueryTickCount( &count ); /* initialize the global KeTickCount */
1319 break;
1320 case DLL_PROCESS_DETACH:
1321 RtlRemoveVectoredExceptionHandler( handler );
1322 break;
1324 return TRUE;