push 07a2b33f792746135ccf34a3b3e1dfb2a3c1e823
[wine/hacks.git] / dlls / ntoskrnl.exe / ntoskrnl.c
blobc41d289ab42214c41ee6e6954607995f4281741d
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);
58 static struct list Irps = LIST_INIT(Irps);
60 struct IrpInstance
62 struct list entry;
63 IRP *irp;
66 #ifdef __i386__
67 #define DEFINE_FASTCALL1_ENTRYPOINT( name ) \
68 __ASM_GLOBAL_FUNC( name, \
69 "popl %eax\n\t" \
70 "pushl %ecx\n\t" \
71 "pushl %eax\n\t" \
72 "jmp " __ASM_NAME("__regs_") #name )
73 #define DEFINE_FASTCALL2_ENTRYPOINT( name ) \
74 __ASM_GLOBAL_FUNC( name, \
75 "popl %eax\n\t" \
76 "pushl %edx\n\t" \
77 "pushl %ecx\n\t" \
78 "pushl %eax\n\t" \
79 "jmp " __ASM_NAME("__regs_") #name )
80 #endif
82 static inline LPCSTR debugstr_us( const UNICODE_STRING *us )
84 if (!us) return "<null>";
85 return debugstr_wn( us->Buffer, us->Length / sizeof(WCHAR) );
88 static HANDLE get_device_manager(void)
90 static HANDLE device_manager;
91 HANDLE handle = 0, ret = device_manager;
93 if (!ret)
95 SERVER_START_REQ( create_device_manager )
97 req->access = SYNCHRONIZE;
98 req->attributes = 0;
99 if (!wine_server_call( req )) handle = reply->handle;
101 SERVER_END_REQ;
103 if (!handle)
105 ERR( "failed to create the device manager\n" );
106 return 0;
108 if (!(ret = InterlockedCompareExchangePointer( &device_manager, handle, 0 )))
109 ret = handle;
110 else
111 NtClose( handle ); /* somebody beat us to it */
113 return ret;
116 /* exception handler for emulation of privileged instructions */
117 static LONG CALLBACK vectored_handler( EXCEPTION_POINTERS *ptrs )
119 extern DWORD __wine_emulate_instruction( EXCEPTION_RECORD *rec, CONTEXT86 *context );
121 EXCEPTION_RECORD *record = ptrs->ExceptionRecord;
122 CONTEXT86 *context = ptrs->ContextRecord;
124 if (record->ExceptionCode == EXCEPTION_ACCESS_VIOLATION ||
125 record->ExceptionCode == EXCEPTION_PRIV_INSTRUCTION)
127 if (__wine_emulate_instruction( record, context ) == ExceptionContinueExecution)
128 return EXCEPTION_CONTINUE_EXECUTION;
130 return EXCEPTION_CONTINUE_SEARCH;
133 /* process an ioctl request for a given device */
134 static NTSTATUS process_ioctl( DEVICE_OBJECT *device, ULONG code, void *in_buff, ULONG in_size,
135 void *out_buff, ULONG *out_size )
137 IRP irp;
138 MDL mdl;
139 IO_STACK_LOCATION irpsp;
140 PDRIVER_DISPATCH dispatch = device->DriverObject->MajorFunction[IRP_MJ_DEVICE_CONTROL];
141 NTSTATUS status;
142 LARGE_INTEGER count;
144 TRACE( "ioctl %x device %p in_size %u out_size %u\n", code, device, in_size, *out_size );
146 /* so we can spot things that we should initialize */
147 memset( &irp, 0x55, sizeof(irp) );
148 memset( &irpsp, 0x66, sizeof(irpsp) );
149 memset( &mdl, 0x77, sizeof(mdl) );
151 irp.RequestorMode = UserMode;
152 irp.AssociatedIrp.SystemBuffer = in_buff;
153 irp.UserBuffer = out_buff;
154 irp.MdlAddress = &mdl;
155 irp.Tail.Overlay.s.u.CurrentStackLocation = &irpsp;
156 irp.UserIosb = NULL;
158 irpsp.MajorFunction = IRP_MJ_DEVICE_CONTROL;
159 irpsp.Parameters.DeviceIoControl.OutputBufferLength = *out_size;
160 irpsp.Parameters.DeviceIoControl.InputBufferLength = in_size;
161 irpsp.Parameters.DeviceIoControl.IoControlCode = code;
162 irpsp.Parameters.DeviceIoControl.Type3InputBuffer = in_buff;
163 irpsp.DeviceObject = device;
164 irpsp.CompletionRoutine = NULL;
166 mdl.Next = NULL;
167 mdl.Size = 0;
168 mdl.StartVa = out_buff;
169 mdl.ByteCount = *out_size;
170 mdl.ByteOffset = 0;
172 device->CurrentIrp = &irp;
174 KeQueryTickCount( &count ); /* update the global KeTickCount */
176 if (TRACE_ON(relay))
177 DPRINTF( "%04x:Call driver dispatch %p (device=%p,irp=%p)\n",
178 GetCurrentThreadId(), dispatch, device, &irp );
180 status = dispatch( device, &irp );
182 if (TRACE_ON(relay))
183 DPRINTF( "%04x:Ret driver dispatch %p (device=%p,irp=%p) retval=%08x\n",
184 GetCurrentThreadId(), dispatch, device, &irp, status );
186 *out_size = (irp.IoStatus.u.Status >= 0) ? irp.IoStatus.Information : 0;
187 return irp.IoStatus.u.Status;
191 /***********************************************************************
192 * wine_ntoskrnl_main_loop (Not a Windows API)
194 NTSTATUS wine_ntoskrnl_main_loop( HANDLE stop_event )
196 HANDLE manager = get_device_manager();
197 HANDLE ioctl = 0;
198 NTSTATUS status = STATUS_SUCCESS;
199 ULONG code = 0;
200 void *in_buff, *out_buff = NULL;
201 DEVICE_OBJECT *device = NULL;
202 ULONG in_size = 4096, out_size = 0;
203 HANDLE handles[2];
205 if (!(in_buff = HeapAlloc( GetProcessHeap(), 0, in_size )))
207 ERR( "failed to allocate buffer\n" );
208 return STATUS_NO_MEMORY;
211 handles[0] = stop_event;
212 handles[1] = manager;
214 for (;;)
216 SERVER_START_REQ( get_next_device_request )
218 req->manager = manager;
219 req->prev = ioctl;
220 req->status = status;
221 wine_server_add_data( req, out_buff, out_size );
222 wine_server_set_reply( req, in_buff, in_size );
223 if (!(status = wine_server_call( req )))
225 code = reply->code;
226 ioctl = reply->next;
227 device = reply->user_ptr;
228 in_size = reply->in_size;
229 out_size = reply->out_size;
231 else
233 ioctl = 0; /* no previous ioctl */
234 out_size = 0;
235 in_size = reply->in_size;
238 SERVER_END_REQ;
240 switch(status)
242 case STATUS_SUCCESS:
243 HeapFree( GetProcessHeap(), 0, out_buff );
244 if (out_size) out_buff = HeapAlloc( GetProcessHeap(), 0, out_size );
245 else out_buff = NULL;
246 status = process_ioctl( device, code, in_buff, in_size, out_buff, &out_size );
247 break;
248 case STATUS_BUFFER_OVERFLOW:
249 HeapFree( GetProcessHeap(), 0, in_buff );
250 in_buff = HeapAlloc( GetProcessHeap(), 0, in_size );
251 /* restart with larger buffer */
252 break;
253 case STATUS_PENDING:
254 if (WaitForMultipleObjects( 2, handles, FALSE, INFINITE ) == WAIT_OBJECT_0)
255 return STATUS_SUCCESS;
256 break;
262 /***********************************************************************
263 * IoInitializeIrp (NTOSKRNL.EXE.@)
265 void WINAPI IoInitializeIrp( IRP *irp, USHORT size, CCHAR stack_size )
267 TRACE( "%p, %u, %d\n", irp, size, stack_size );
269 RtlZeroMemory( irp, size );
271 irp->Type = IO_TYPE_IRP;
272 irp->Size = size;
273 InitializeListHead( &irp->ThreadListEntry );
274 irp->StackCount = stack_size;
275 irp->CurrentLocation = stack_size + 1;
276 irp->Tail.Overlay.s.u.CurrentStackLocation =
277 (PIO_STACK_LOCATION)(irp + 1) + stack_size;
281 /***********************************************************************
282 * IoAllocateIrp (NTOSKRNL.EXE.@)
284 PIRP WINAPI IoAllocateIrp( CCHAR stack_size, BOOLEAN charge_quota )
286 SIZE_T size;
287 PIRP irp;
289 TRACE( "%d, %d\n", stack_size, charge_quota );
291 size = sizeof(IRP) + stack_size * sizeof(IO_STACK_LOCATION);
292 irp = ExAllocatePool( NonPagedPool, size );
293 if (irp == NULL)
294 return NULL;
295 IoInitializeIrp( irp, size, stack_size );
296 irp->AllocationFlags = IRP_ALLOCATED_FIXED_SIZE;
297 if (charge_quota)
298 irp->AllocationFlags |= IRP_LOOKASIDE_ALLOCATION;
299 return irp;
303 /***********************************************************************
304 * IoFreeIrp (NTOSKRNL.EXE.@)
306 void WINAPI IoFreeIrp( IRP *irp )
308 TRACE( "%p\n", irp );
310 ExFreePool( irp );
314 /***********************************************************************
315 * IoAllocateMdl (NTOSKRNL.EXE.@)
317 PMDL WINAPI IoAllocateMdl( PVOID VirtualAddress, ULONG Length, BOOLEAN SecondaryBuffer, BOOLEAN ChargeQuota, PIRP Irp )
319 FIXME( "stub: %p, %u, %i, %i, %p\n", VirtualAddress, Length, SecondaryBuffer, ChargeQuota, Irp );
320 return NULL;
324 /***********************************************************************
325 * IoAllocateWorkItem (NTOSKRNL.EXE.@)
327 PIO_WORKITEM WINAPI IoAllocateWorkItem( PDEVICE_OBJECT DeviceObject )
329 FIXME( "stub: %p\n", DeviceObject );
330 return NULL;
334 /***********************************************************************
335 * IoAttachDeviceToDeviceStack (NTOSKRNL.EXE.@)
337 PDEVICE_OBJECT WINAPI IoAttachDeviceToDeviceStack( DEVICE_OBJECT *source,
338 DEVICE_OBJECT *target )
340 TRACE( "%p, %p\n", source, target );
341 target->AttachedDevice = source;
342 source->StackSize = target->StackSize + 1;
343 return target;
347 /***********************************************************************
348 * IoBuildDeviceIoControlRequest (NTOSKRNL.EXE.@)
350 PIRP WINAPI IoBuildDeviceIoControlRequest( ULONG IoControlCode,
351 PDEVICE_OBJECT DeviceObject,
352 PVOID InputBuffer,
353 ULONG InputBufferLength,
354 PVOID OutputBuffer,
355 ULONG OutputBufferLength,
356 BOOLEAN InternalDeviceIoControl,
357 PKEVENT Event,
358 PIO_STATUS_BLOCK IoStatusBlock )
360 PIRP irp;
361 PIO_STACK_LOCATION irpsp;
362 struct IrpInstance *instance;
364 TRACE( "%x, %p, %p, %u, %p, %u, %u, %p, %p\n",
365 IoControlCode, DeviceObject, InputBuffer, InputBufferLength,
366 OutputBuffer, OutputBufferLength, InternalDeviceIoControl,
367 Event, IoStatusBlock );
369 if (DeviceObject == NULL)
370 return NULL;
372 irp = IoAllocateIrp( DeviceObject->StackSize, FALSE );
373 if (irp == NULL)
374 return NULL;
376 instance = HeapAlloc( GetProcessHeap(), 0, sizeof(struct IrpInstance) );
377 if (instance == NULL)
379 IoFreeIrp( irp );
380 return NULL;
382 instance->irp = irp;
383 list_add_tail( &Irps, &instance->entry );
385 irpsp = irp->Tail.Overlay.s.u.CurrentStackLocation - 1;
386 irpsp->MajorFunction = InternalDeviceIoControl ?
387 IRP_MJ_INTERNAL_DEVICE_CONTROL : IRP_MJ_DEVICE_CONTROL;
388 irpsp->Parameters.DeviceIoControl.IoControlCode = IoControlCode;
389 irp->UserIosb = IoStatusBlock;
390 irp->UserEvent = Event;
392 return irp;
396 /***********************************************************************
397 * IoCreateDriver (NTOSKRNL.EXE.@)
399 NTSTATUS WINAPI IoCreateDriver( UNICODE_STRING *name, PDRIVER_INITIALIZE init )
401 DRIVER_OBJECT *driver;
402 DRIVER_EXTENSION *extension;
403 NTSTATUS status;
405 if (!(driver = RtlAllocateHeap( GetProcessHeap(), HEAP_ZERO_MEMORY,
406 sizeof(*driver) + sizeof(*extension) )))
407 return STATUS_NO_MEMORY;
409 if ((status = RtlDuplicateUnicodeString( 1, name, &driver->DriverName )))
411 RtlFreeHeap( GetProcessHeap(), 0, driver );
412 return status;
415 extension = (DRIVER_EXTENSION *)(driver + 1);
416 driver->Size = sizeof(*driver);
417 driver->DriverInit = init;
418 driver->DriverExtension = extension;
419 extension->DriverObject = driver;
420 extension->ServiceKeyName = driver->DriverName;
422 status = driver->DriverInit( driver, name );
424 if (status)
426 RtlFreeUnicodeString( &driver->DriverName );
427 RtlFreeHeap( GetProcessHeap(), 0, driver );
429 return status;
433 /***********************************************************************
434 * IoDeleteDriver (NTOSKRNL.EXE.@)
436 void WINAPI IoDeleteDriver( DRIVER_OBJECT *driver )
438 RtlFreeUnicodeString( &driver->DriverName );
439 RtlFreeHeap( GetProcessHeap(), 0, driver );
443 /***********************************************************************
444 * IoCreateDevice (NTOSKRNL.EXE.@)
446 NTSTATUS WINAPI IoCreateDevice( DRIVER_OBJECT *driver, ULONG ext_size,
447 UNICODE_STRING *name, DEVICE_TYPE type,
448 ULONG characteristics, BOOLEAN exclusive,
449 DEVICE_OBJECT **ret_device )
451 NTSTATUS status;
452 DEVICE_OBJECT *device;
453 HANDLE handle = 0;
454 HANDLE manager = get_device_manager();
456 TRACE( "(%p, %u, %s, %u, %x, %u, %p)\n",
457 driver, ext_size, debugstr_us(name), type, characteristics, exclusive, ret_device );
459 if (!(device = HeapAlloc( GetProcessHeap(), HEAP_ZERO_MEMORY, sizeof(*device) + ext_size )))
460 return STATUS_NO_MEMORY;
462 SERVER_START_REQ( create_device )
464 req->access = 0;
465 req->attributes = 0;
466 req->rootdir = 0;
467 req->manager = manager;
468 req->user_ptr = device;
469 if (name) wine_server_add_data( req, name->Buffer, name->Length );
470 if (!(status = wine_server_call( req ))) handle = reply->handle;
472 SERVER_END_REQ;
474 if (status == STATUS_SUCCESS)
476 device->DriverObject = driver;
477 device->DeviceExtension = device + 1;
478 device->DeviceType = type;
479 device->StackSize = 1;
480 device->Reserved = handle;
482 device->NextDevice = driver->DeviceObject;
483 driver->DeviceObject = device;
485 *ret_device = device;
487 else HeapFree( GetProcessHeap(), 0, device );
489 return status;
493 /***********************************************************************
494 * IoDeleteDevice (NTOSKRNL.EXE.@)
496 void WINAPI IoDeleteDevice( DEVICE_OBJECT *device )
498 NTSTATUS status;
500 TRACE( "%p\n", device );
502 SERVER_START_REQ( delete_device )
504 req->handle = device->Reserved;
505 status = wine_server_call( req );
507 SERVER_END_REQ;
509 if (status == STATUS_SUCCESS)
511 DEVICE_OBJECT **prev = &device->DriverObject->DeviceObject;
512 while (*prev && *prev != device) prev = &(*prev)->NextDevice;
513 if (*prev) *prev = (*prev)->NextDevice;
514 NtClose( device->Reserved );
515 HeapFree( GetProcessHeap(), 0, device );
520 /***********************************************************************
521 * IoCreateSymbolicLink (NTOSKRNL.EXE.@)
523 NTSTATUS WINAPI IoCreateSymbolicLink( UNICODE_STRING *name, UNICODE_STRING *target )
525 HANDLE handle;
526 OBJECT_ATTRIBUTES attr;
528 attr.Length = sizeof(attr);
529 attr.RootDirectory = 0;
530 attr.ObjectName = name;
531 attr.Attributes = OBJ_CASE_INSENSITIVE | OBJ_OPENIF;
532 attr.SecurityDescriptor = NULL;
533 attr.SecurityQualityOfService = NULL;
535 TRACE( "%s -> %s\n", debugstr_us(name), debugstr_us(target) );
536 /* FIXME: store handle somewhere */
537 return NtCreateSymbolicLinkObject( &handle, SYMBOLIC_LINK_ALL_ACCESS, &attr, target );
541 /***********************************************************************
542 * IoDeleteSymbolicLink (NTOSKRNL.EXE.@)
544 NTSTATUS WINAPI IoDeleteSymbolicLink( UNICODE_STRING *name )
546 HANDLE handle;
547 OBJECT_ATTRIBUTES attr;
548 NTSTATUS status;
550 attr.Length = sizeof(attr);
551 attr.RootDirectory = 0;
552 attr.ObjectName = name;
553 attr.Attributes = OBJ_CASE_INSENSITIVE;
554 attr.SecurityDescriptor = NULL;
555 attr.SecurityQualityOfService = NULL;
557 if (!(status = NtOpenSymbolicLinkObject( &handle, 0, &attr )))
559 SERVER_START_REQ( unlink_object )
561 req->handle = handle;
562 status = wine_server_call( req );
564 SERVER_END_REQ;
565 NtClose( handle );
567 return status;
571 /***********************************************************************
572 * IoGetDeviceObjectPointer (NTOSKRNL.EXE.@)
574 NTSTATUS WINAPI IoGetDeviceObjectPointer( UNICODE_STRING *name, ACCESS_MASK access, PFILE_OBJECT *file, PDEVICE_OBJECT *device )
576 FIXME( "stub: %s %x %p %p\n", debugstr_us(name), access, file, device );
577 return STATUS_NOT_IMPLEMENTED;
581 /***********************************************************************
582 * IofCallDriver (NTOSKRNL.EXE.@)
584 #ifdef DEFINE_FASTCALL2_ENTRYPOINT
585 DEFINE_FASTCALL2_ENTRYPOINT( IofCallDriver )
586 NTSTATUS WINAPI __regs_IofCallDriver( DEVICE_OBJECT *device, IRP *irp )
587 #else
588 NTSTATUS WINAPI IofCallDriver( DEVICE_OBJECT *device, IRP *irp )
589 #endif
591 PDRIVER_DISPATCH dispatch;
592 IO_STACK_LOCATION *irpsp;
593 NTSTATUS status;
595 TRACE( "%p %p\n", device, irp );
597 --irp->CurrentLocation;
598 irpsp = --irp->Tail.Overlay.s.u.CurrentStackLocation;
599 dispatch = device->DriverObject->MajorFunction[irpsp->MajorFunction];
600 status = dispatch( device, irp );
602 return status;
606 /***********************************************************************
607 * IoGetRelatedDeviceObject (NTOSKRNL.EXE.@)
609 PDEVICE_OBJECT WINAPI IoGetRelatedDeviceObject( PFILE_OBJECT obj )
611 FIXME( "stub: %p\n", obj );
612 return NULL;
615 static CONFIGURATION_INFORMATION configuration_information;
617 /***********************************************************************
618 * IoGetConfigurationInformation (NTOSKRNL.EXE.@)
620 PCONFIGURATION_INFORMATION WINAPI IoGetConfigurationInformation(void)
622 FIXME( "partial stub\n" );
623 /* FIXME: return actual devices on system */
624 return &configuration_information;
628 /***********************************************************************
629 * IoRegisterDriverReinitialization (NTOSKRNL.EXE.@)
631 void WINAPI IoRegisterDriverReinitialization( PDRIVER_OBJECT obj, PDRIVER_REINITIALIZE reinit, PVOID context )
633 FIXME( "stub: %p %p %p\n", obj, reinit, context );
637 /***********************************************************************
638 * IoRegisterShutdownNotification (NTOSKRNL.EXE.@)
640 NTSTATUS WINAPI IoRegisterShutdownNotification( PDEVICE_OBJECT obj )
642 FIXME( "stub: %p\n", obj );
643 return STATUS_SUCCESS;
647 /***********************************************************************
648 * IofCompleteRequest (NTOSKRNL.EXE.@)
650 #ifdef DEFINE_FASTCALL2_ENTRYPOINT
651 DEFINE_FASTCALL2_ENTRYPOINT( IofCompleteRequest )
652 void WINAPI __regs_IofCompleteRequest( IRP *irp, UCHAR priority_boost )
653 #else
654 void WINAPI IofCompleteRequest( IRP *irp, UCHAR priority_boost )
655 #endif
657 IO_STACK_LOCATION *irpsp;
658 PIO_COMPLETION_ROUTINE routine;
659 IO_STATUS_BLOCK *iosb;
660 struct IrpInstance *instance;
661 NTSTATUS status, stat;
662 int call_flag = 0;
664 TRACE( "%p %u\n", irp, priority_boost );
666 iosb = irp->UserIosb;
667 status = irp->IoStatus.u.Status;
668 while (irp->CurrentLocation <= irp->StackCount)
670 irpsp = irp->Tail.Overlay.s.u.CurrentStackLocation;
671 routine = irpsp->CompletionRoutine;
672 call_flag = 0;
673 /* FIXME: add SL_INVOKE_ON_CANCEL support */
674 if (routine)
676 if ((irpsp->Control & SL_INVOKE_ON_SUCCESS) && STATUS_SUCCESS == status)
677 call_flag = 1;
678 if ((irpsp->Control & SL_INVOKE_ON_ERROR) && STATUS_SUCCESS != status)
679 call_flag = 1;
681 ++irp->CurrentLocation;
682 ++irp->Tail.Overlay.s.u.CurrentStackLocation;
683 if (call_flag)
685 TRACE( "calling %p( %p, %p, %p )\n", routine,
686 irpsp->DeviceObject, irp, irpsp->Context );
687 stat = routine( irpsp->DeviceObject, irp, irpsp->Context );
688 TRACE( "CompletionRoutine returned %x\n", stat );
689 if (STATUS_MORE_PROCESSING_REQUIRED == stat)
690 return;
693 if (iosb && STATUS_SUCCESS == status)
695 iosb->u.Status = irp->IoStatus.u.Status;
696 iosb->Information = irp->IoStatus.Information;
698 LIST_FOR_EACH_ENTRY( instance, &Irps, struct IrpInstance, entry )
700 if (instance->irp == irp)
702 list_remove( &instance->entry );
703 HeapFree( GetProcessHeap(), 0, instance );
704 IoFreeIrp( irp );
705 break;
711 /***********************************************************************
712 * InterlockedCompareExchange (NTOSKRNL.EXE.@)
714 #ifdef DEFINE_FASTCALL2_ENTRYPOINT
715 DEFINE_FASTCALL2_ENTRYPOINT( NTOSKRNL_InterlockedCompareExchange )
716 LONG WINAPI __regs_NTOSKRNL_InterlockedCompareExchange( LONG volatile *dest, LONG xchg, LONG compare )
717 #else
718 LONG WINAPI NTOSKRNL_InterlockedCompareExchange( LONG volatile *dest, LONG xchg, LONG compare )
719 #endif
721 return InterlockedCompareExchange( dest, xchg, compare );
725 /***********************************************************************
726 * InterlockedDecrement (NTOSKRNL.EXE.@)
728 #ifdef DEFINE_FASTCALL1_ENTRYPOINT
729 DEFINE_FASTCALL1_ENTRYPOINT( NTOSKRNL_InterlockedDecrement )
730 LONG WINAPI __regs_NTOSKRNL_InterlockedDecrement( LONG volatile *dest )
731 #else
732 LONG WINAPI NTOSKRNL_InterlockedDecrement( LONG volatile *dest )
733 #endif
735 return InterlockedDecrement( dest );
739 /***********************************************************************
740 * InterlockedExchange (NTOSKRNL.EXE.@)
742 #ifdef DEFINE_FASTCALL2_ENTRYPOINT
743 DEFINE_FASTCALL2_ENTRYPOINT( NTOSKRNL_InterlockedExchange )
744 LONG WINAPI __regs_NTOSKRNL_InterlockedExchange( LONG volatile *dest, LONG val )
745 #else
746 LONG WINAPI NTOSKRNL_InterlockedExchange( LONG volatile *dest, LONG val )
747 #endif
749 return InterlockedExchange( dest, val );
753 /***********************************************************************
754 * InterlockedExchangeAdd (NTOSKRNL.EXE.@)
756 #ifdef DEFINE_FASTCALL2_ENTRYPOINT
757 DEFINE_FASTCALL2_ENTRYPOINT( NTOSKRNL_InterlockedExchangeAdd )
758 LONG WINAPI __regs_NTOSKRNL_InterlockedExchangeAdd( LONG volatile *dest, LONG incr )
759 #else
760 LONG WINAPI NTOSKRNL_InterlockedExchangeAdd( LONG volatile *dest, LONG incr )
761 #endif
763 return InterlockedExchangeAdd( dest, incr );
767 /***********************************************************************
768 * InterlockedIncrement (NTOSKRNL.EXE.@)
770 #ifdef DEFINE_FASTCALL1_ENTRYPOINT
771 DEFINE_FASTCALL1_ENTRYPOINT( NTOSKRNL_InterlockedIncrement )
772 LONG WINAPI __regs_NTOSKRNL_InterlockedIncrement( LONG volatile *dest )
773 #else
774 LONG WINAPI NTOSKRNL_InterlockedIncrement( LONG volatile *dest )
775 #endif
777 return InterlockedIncrement( dest );
781 /***********************************************************************
782 * ExAllocatePool (NTOSKRNL.EXE.@)
784 PVOID WINAPI ExAllocatePool( POOL_TYPE type, SIZE_T size )
786 return ExAllocatePoolWithTag( type, size, 0 );
790 /***********************************************************************
791 * ExAllocatePoolWithQuota (NTOSKRNL.EXE.@)
793 PVOID WINAPI ExAllocatePoolWithQuota( POOL_TYPE type, SIZE_T size )
795 return ExAllocatePoolWithTag( type, size, 0 );
799 /***********************************************************************
800 * ExAllocatePoolWithTag (NTOSKRNL.EXE.@)
802 PVOID WINAPI ExAllocatePoolWithTag( POOL_TYPE type, SIZE_T size, ULONG tag )
804 /* FIXME: handle page alignment constraints */
805 void *ret = HeapAlloc( GetProcessHeap(), 0, size );
806 TRACE( "%lu pool %u -> %p\n", size, type, ret );
807 return ret;
811 /***********************************************************************
812 * ExAllocatePoolWithQuotaTag (NTOSKRNL.EXE.@)
814 PVOID WINAPI ExAllocatePoolWithQuotaTag( POOL_TYPE type, SIZE_T size, ULONG tag )
816 return ExAllocatePoolWithTag( type, size, tag );
820 /***********************************************************************
821 * ExFreePool (NTOSKRNL.EXE.@)
823 void WINAPI ExFreePool( void *ptr )
825 ExFreePoolWithTag( ptr, 0 );
829 /***********************************************************************
830 * ExFreePoolWithTag (NTOSKRNL.EXE.@)
832 void WINAPI ExFreePoolWithTag( void *ptr, ULONG tag )
834 TRACE( "%p\n", ptr );
835 HeapFree( GetProcessHeap(), 0, ptr );
839 /***********************************************************************
840 * KeInitializeSpinLock (NTOSKRNL.EXE.@)
842 void WINAPI KeInitializeSpinLock( PKSPIN_LOCK SpinLock )
844 FIXME("%p\n", SpinLock);
848 /***********************************************************************
849 * KeInitializeTimerEx (NTOSKRNL.EXE.@)
851 void WINAPI KeInitializeTimerEx( PKTIMER Timer, TIMER_TYPE Type )
853 FIXME("%p %d\n", Timer, Type);
857 /***********************************************************************
858 * KeInitializeTimer (NTOSKRNL.EXE.@)
860 void WINAPI KeInitializeTimer( PKTIMER Timer )
862 KeInitializeTimerEx(Timer, NotificationTimer);
866 /**********************************************************************
867 * KeQueryActiveProcessors (NTOSKRNL.EXE.@)
869 * Return the active Processors as bitmask
871 * RETURNS
872 * active Processors as bitmask
875 KAFFINITY WINAPI KeQueryActiveProcessors( void )
877 DWORD_PTR AffinityMask;
879 GetProcessAffinityMask( GetCurrentProcess(), &AffinityMask, NULL);
880 return AffinityMask;
884 /**********************************************************************
885 * KeQueryInterruptTime (NTOSKRNL.EXE.@)
887 * Return the interrupt time count
890 ULONGLONG WINAPI KeQueryInterruptTime( void )
892 LARGE_INTEGER totaltime;
894 KeQueryTickCount(&totaltime);
895 return totaltime.QuadPart;
899 /***********************************************************************
900 * KeQuerySystemTime (NTOSKRNL.EXE.@)
902 void WINAPI KeQuerySystemTime( LARGE_INTEGER *time )
904 NtQuerySystemTime( time );
908 /***********************************************************************
909 * KeQueryTickCount (NTOSKRNL.EXE.@)
911 void WINAPI KeQueryTickCount( LARGE_INTEGER *count )
913 count->QuadPart = NtGetTickCount();
914 /* update the global variable too */
915 KeTickCount.LowPart = count->u.LowPart;
916 KeTickCount.High1Time = count->u.HighPart;
917 KeTickCount.High2Time = count->u.HighPart;
921 /***********************************************************************
922 * KeQueryTimeIncrement (NTOSKRNL.EXE.@)
924 ULONG WINAPI KeQueryTimeIncrement(void)
926 return 10000;
930 /***********************************************************************
931 * MmAllocateNonCachedMemory (NTOSKRNL.EXE.@)
933 PVOID WINAPI MmAllocateNonCachedMemory( SIZE_T size )
935 TRACE( "%lu\n", size );
936 return VirtualAlloc( NULL, size, MEM_RESERVE|MEM_COMMIT, PAGE_READWRITE|PAGE_NOCACHE );
940 /***********************************************************************
941 * MmFreeNonCachedMemory (NTOSKRNL.EXE.@)
943 void WINAPI MmFreeNonCachedMemory( void *addr, SIZE_T size )
945 TRACE( "%p %lu\n", addr, size );
946 VirtualFree( addr, 0, MEM_RELEASE );
949 /***********************************************************************
950 * MmIsAddressValid (NTOSKRNL.EXE.@)
952 * Check if the process can access the virtual address without a pagefault
954 * PARAMS
955 * VirtualAddress [I] Address to check
957 * RETURNS
958 * Failure: FALSE
959 * Success: TRUE (Accessing the Address works without a Pagefault)
962 BOOLEAN WINAPI MmIsAddressValid(PVOID VirtualAddress)
964 TRACE("(%p)\n", VirtualAddress);
965 return !IsBadWritePtr(VirtualAddress, 1);
968 /***********************************************************************
969 * MmPageEntireDriver (NTOSKRNL.EXE.@)
971 PVOID WINAPI MmPageEntireDriver(PVOID AddrInSection)
973 TRACE("%p\n", AddrInSection);
974 return AddrInSection;
977 /***********************************************************************
978 * MmResetDriverPaging (NTOSKRNL.EXE.@)
980 void WINAPI MmResetDriverPaging(PVOID AddrInSection)
982 TRACE("%p\n", AddrInSection);
986 /***********************************************************************
987 * ObReferenceObjectByHandle (NTOSKRNL.EXE.@)
989 NTSTATUS WINAPI ObReferenceObjectByHandle( HANDLE obj, ACCESS_MASK access,
990 POBJECT_TYPE type,
991 KPROCESSOR_MODE mode, PVOID* ptr,
992 POBJECT_HANDLE_INFORMATION info)
994 FIXME( "stub: %p %x %p %d %p %p\n", obj, access, type, mode, ptr, info);
995 return STATUS_NOT_IMPLEMENTED;
999 /***********************************************************************
1000 * ObfDereferenceObject (NTOSKRNL.EXE.@)
1002 void WINAPI ObfDereferenceObject( VOID *obj )
1004 FIXME( "stub: %p\n", obj );
1008 /***********************************************************************
1009 * PsCreateSystemThread (NTOSKRNL.EXE.@)
1011 NTSTATUS WINAPI PsCreateSystemThread(PHANDLE ThreadHandle, ULONG DesiredAccess,
1012 POBJECT_ATTRIBUTES ObjectAttributes,
1013 HANDLE ProcessHandle, PCLIENT_ID ClientId,
1014 PKSTART_ROUTINE StartRoutine, PVOID StartContext)
1016 if (!ProcessHandle) ProcessHandle = GetCurrentProcess();
1017 return RtlCreateUserThread(ProcessHandle, 0, FALSE, 0, 0,
1018 0, StartRoutine, StartContext,
1019 ThreadHandle, ClientId);
1022 /***********************************************************************
1023 * PsGetCurrentProcessId (NTOSKRNL.EXE.@)
1025 HANDLE WINAPI PsGetCurrentProcessId(void)
1027 return (HANDLE)GetCurrentProcessId(); /* FIXME: not quite right... */
1031 /***********************************************************************
1032 * PsGetCurrentThreadId (NTOSKRNL.EXE.@)
1034 HANDLE WINAPI PsGetCurrentThreadId(void)
1036 return (HANDLE)GetCurrentThreadId(); /* FIXME: not quite right... */
1040 /***********************************************************************
1041 * PsGetVersion (NTOSKRNL.EXE.@)
1043 BOOLEAN WINAPI PsGetVersion(ULONG *major, ULONG *minor, ULONG *build, UNICODE_STRING *version )
1045 RTL_OSVERSIONINFOEXW info;
1047 RtlGetVersion( &info );
1048 if (major) *major = info.dwMajorVersion;
1049 if (minor) *minor = info.dwMinorVersion;
1050 if (build) *build = info.dwBuildNumber;
1052 if (version)
1054 #if 0 /* FIXME: GameGuard passes an uninitialized pointer in version->Buffer */
1055 size_t len = min( strlenW(info.szCSDVersion)*sizeof(WCHAR), version->MaximumLength );
1056 memcpy( version->Buffer, info.szCSDVersion, len );
1057 if (len < version->MaximumLength) version->Buffer[len / sizeof(WCHAR)] = 0;
1058 version->Length = len;
1059 #endif
1061 return TRUE;
1065 /***********************************************************************
1066 * PsSetCreateProcessNotifyRoutine (NTOSKRNL.EXE.@)
1068 NTSTATUS WINAPI PsSetCreateProcessNotifyRoutine( PCREATE_PROCESS_NOTIFY_ROUTINE callback, BOOLEAN remove )
1070 FIXME( "stub: %p %d\n", callback, remove );
1071 return STATUS_SUCCESS;
1074 /***********************************************************************
1075 * MmGetSystemRoutineAddress (NTOSKRNL.EXE.@)
1077 PVOID WINAPI MmGetSystemRoutineAddress(PUNICODE_STRING SystemRoutineName)
1079 HMODULE hMod;
1080 STRING routineNameA;
1081 PVOID pFunc = NULL;
1083 static const WCHAR ntoskrnlW[] = {'n','t','o','s','k','r','n','l','.','e','x','e',0};
1084 static const WCHAR halW[] = {'h','a','l','.','d','l','l',0};
1086 if (!SystemRoutineName) return NULL;
1088 if (RtlUnicodeStringToAnsiString( &routineNameA, SystemRoutineName, TRUE ) == STATUS_SUCCESS)
1090 /* We only support functions exported from ntoskrnl.exe or hal.dll */
1091 hMod = GetModuleHandleW( ntoskrnlW );
1092 pFunc = GetProcAddress( hMod, routineNameA.Buffer );
1093 if (!pFunc)
1095 hMod = GetModuleHandleW( halW );
1096 if (hMod) pFunc = GetProcAddress( hMod, routineNameA.Buffer );
1098 RtlFreeAnsiString( &routineNameA );
1101 TRACE( "%s -> %p\n", debugstr_us(SystemRoutineName), pFunc );
1102 return pFunc;
1105 /*****************************************************
1106 * DllMain
1108 BOOL WINAPI DllMain( HINSTANCE inst, DWORD reason, LPVOID reserved )
1110 LARGE_INTEGER count;
1112 switch(reason)
1114 case DLL_PROCESS_ATTACH:
1115 DisableThreadLibraryCalls( inst );
1116 RtlAddVectoredExceptionHandler( TRUE, vectored_handler );
1117 KeQueryTickCount( &count ); /* initialize the global KeTickCount */
1118 break;
1120 return TRUE;