[Win32k]
[reactos.git] / reactos / subsystems / win32 / win32k / main / dllmain.c
1 /*
2 * ReactOS W32 Subsystem
3 * Copyright (C) 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005 ReactOS Team
4 *
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License as published by
7 * the Free Software Foundation; either version 2 of the License, or
8 * (at your option) any later version.
9 *
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
14 *
15 * You should have received a copy of the GNU General Public License along
16 * with this program; if not, write to the Free Software Foundation, Inc.,
17 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
18 */
19 /*
20 * Entry Point for win32k.sys
21 */
22
23 #include <w32k.h>
24 #include <include/napi.h>
25
26 #define NDEBUG
27 #include <debug.h>
28
29 HANDLE hModuleWin;
30
31 PGDI_HANDLE_TABLE INTERNAL_CALL GDIOBJ_iAllocHandleTable(OUT PSECTION_OBJECT *SectionObject);
32 BOOL INTERNAL_CALL GDI_CleanupForProcess (struct _EPROCESS *Process);
33 /* FIXME */
34 PGDI_HANDLE_TABLE GdiHandleTable = NULL;
35 PSECTION_OBJECT GdiTableSection = NULL;
36
37 LIST_ENTRY GlobalDriverListHead;
38
39 HANDLE GlobalUserHeap = NULL;
40 PSECTION_OBJECT GlobalUserHeapSection = NULL;
41
42 PSERVERINFO gpsi = NULL; // Global User Server Information.
43
44 HSEMAPHORE hsemDriverMgmt = NULL;
45
46 SHORT gusLanguageID;
47
48 extern ULONG_PTR Win32kSSDT[];
49 extern UCHAR Win32kSSPT[];
50 extern ULONG Win32kNumberOfSysCalls;
51
52 NTSTATUS
53 APIENTRY
54 Win32kProcessCallback(struct _EPROCESS *Process,
55 BOOLEAN Create)
56 {
57 PPROCESSINFO Win32Process;
58 DECLARE_RETURN(NTSTATUS);
59
60 DPRINT("Enter Win32kProcessCallback\n");
61 UserEnterExclusive();
62
63 /* Get the Win32 Process */
64 Win32Process = PsGetProcessWin32Process(Process);
65
66 /* Allocate one if needed */
67 if (!Win32Process)
68 {
69 /* FIXME - lock the process */
70 Win32Process = ExAllocatePoolWithTag(NonPagedPool,
71 sizeof(PROCESSINFO),
72 'p23W');
73
74 if (Win32Process == NULL) RETURN( STATUS_NO_MEMORY);
75
76 RtlZeroMemory(Win32Process, sizeof(PROCESSINFO));
77
78 PsSetProcessWin32Process(Process, Win32Process);
79 /* FIXME - unlock the process */
80 }
81
82 if (Create)
83 {
84 SIZE_T ViewSize = 0;
85 LARGE_INTEGER Offset;
86 PVOID UserBase = NULL;
87 NTSTATUS Status;
88 extern PSECTION_OBJECT GlobalUserHeapSection;
89 DPRINT("Creating W32 process PID:%d at IRQ level: %lu\n", Process->UniqueProcessId, KeGetCurrentIrql());
90
91 /* map the global heap into the process */
92 Offset.QuadPart = 0;
93 Status = MmMapViewOfSection(GlobalUserHeapSection,
94 PsGetCurrentProcess(),
95 &UserBase,
96 0,
97 0,
98 &Offset,
99 &ViewSize,
100 ViewUnmap,
101 SEC_NO_CHANGE,
102 PAGE_EXECUTE_READ); /* would prefer PAGE_READONLY, but thanks to RTL heaps... */
103 if (!NT_SUCCESS(Status))
104 {
105 DPRINT1("Failed to map the global heap! 0x%x\n", Status);
106 RETURN(Status);
107 }
108 Win32Process->HeapMappings.Next = NULL;
109 Win32Process->HeapMappings.KernelMapping = (PVOID)GlobalUserHeap;
110 Win32Process->HeapMappings.UserMapping = UserBase;
111 Win32Process->HeapMappings.Count = 1;
112
113 InitializeListHead(&Win32Process->ClassList);
114
115 InitializeListHead(&Win32Process->MenuListHead);
116
117 InitializeListHead(&Win32Process->GDIBrushAttrFreeList);
118 InitializeListHead(&Win32Process->GDIDcAttrFreeList);
119
120 InitializeListHead(&Win32Process->PrivateFontListHead);
121 ExInitializeFastMutex(&Win32Process->PrivateFontListLock);
122
123 InitializeListHead(&Win32Process->DriverObjListHead);
124 ExInitializeFastMutex(&Win32Process->DriverObjListLock);
125
126 Win32Process->KeyboardLayout = W32kGetDefaultKeyLayout();
127
128 if(Process->Peb != NULL)
129 {
130 /* map the gdi handle table to user land */
131 Process->Peb->GdiSharedHandleTable = GDI_MapHandleTable(GdiTableSection, Process);
132 Process->Peb->GdiDCAttributeList = GDI_BATCH_LIMIT;
133 }
134
135 Win32Process->peProcess = Process;
136 /* setup process flags */
137 Win32Process->W32PF_flags = 0;
138 }
139 else
140 {
141 DPRINT("Destroying W32 process PID:%d at IRQ level: %lu\n", Process->UniqueProcessId, KeGetCurrentIrql());
142 IntCleanupMenus(Process, Win32Process);
143 IntCleanupCurIcons(Process, Win32Process);
144 CleanupMonitorImpl();
145
146 /* no process windows should exist at this point, or the function will assert! */
147 DestroyProcessClasses(Win32Process);
148
149 GDI_CleanupForProcess(Process);
150
151 co_IntGraphicsCheck(FALSE);
152
153 /*
154 * Deregister logon application automatically
155 */
156 if(LogonProcess == Win32Process)
157 {
158 LogonProcess = NULL;
159 }
160 }
161
162 RETURN( STATUS_SUCCESS);
163
164 CLEANUP:
165 UserLeave();
166 DPRINT("Leave Win32kProcessCallback, ret=%i\n",_ret_);
167 END_CLEANUP;
168 }
169
170
171 NTSTATUS
172 APIENTRY
173 Win32kThreadCallback(struct _ETHREAD *Thread,
174 PSW32THREADCALLOUTTYPE Type)
175 {
176 struct _EPROCESS *Process;
177 PTHREADINFO Win32Thread;
178 DECLARE_RETURN(NTSTATUS);
179
180 DPRINT("Enter Win32kThreadCallback\n");
181 UserEnterExclusive();
182
183 Process = Thread->ThreadsProcess;
184
185 /* Get the Win32 Thread */
186 Win32Thread = PsGetThreadWin32Thread(Thread);
187
188 /* Allocate one if needed */
189 if (!Win32Thread)
190 {
191 /* FIXME - lock the process */
192 Win32Thread = ExAllocatePoolWithTag(NonPagedPool,
193 sizeof(THREADINFO),
194 't23W');
195
196 if (Win32Thread == NULL) RETURN( STATUS_NO_MEMORY);
197
198 RtlZeroMemory(Win32Thread, sizeof(THREADINFO));
199
200 PsSetThreadWin32Thread(Thread, Win32Thread);
201 /* FIXME - unlock the process */
202 }
203 if (Type == PsW32ThreadCalloutInitialize)
204 {
205 HWINSTA hWinSta = NULL;
206 PTEB pTeb;
207 HDESK hDesk = NULL;
208 NTSTATUS Status;
209 PUNICODE_STRING DesktopPath;
210 PRTL_USER_PROCESS_PARAMETERS ProcessParams = (Process->Peb ? Process->Peb->ProcessParameters : NULL);
211
212 DPRINT("Creating W32 thread TID:%d at IRQ level: %lu\n", Thread->Cid.UniqueThread, KeGetCurrentIrql());
213
214 InitializeListHead(&Win32Thread->WindowListHead);
215 InitializeListHead(&Win32Thread->W32CallbackListHead);
216 InitializeListHead(&Win32Thread->PtiLink);
217
218 /*
219 * inherit the thread desktop and process window station (if not yet inherited) from the process startup
220 * info structure. See documentation of CreateProcess()
221 */
222 DesktopPath = (ProcessParams ? ((ProcessParams->DesktopInfo.Length > 0) ? &ProcessParams->DesktopInfo : NULL) : NULL);
223 Status = IntParseDesktopPath(Process,
224 DesktopPath,
225 &hWinSta,
226 &hDesk);
227 if(NT_SUCCESS(Status))
228 {
229 if(hWinSta != NULL)
230 {
231 if(Process != CsrProcess)
232 {
233 HWINSTA hProcessWinSta = (HWINSTA)InterlockedCompareExchangePointer((PVOID)&Process->Win32WindowStation, (PVOID)hWinSta, NULL);
234 if(hProcessWinSta != NULL)
235 {
236 /* our process is already assigned to a different window station, we don't need the handle anymore */
237 NtClose(hWinSta);
238 }
239 }
240 else
241 {
242 NtClose(hWinSta);
243 }
244 }
245
246 if (hDesk != NULL)
247 {
248 PDESKTOP DesktopObject;
249 Win32Thread->rpdesk = NULL;
250 Status = ObReferenceObjectByHandle(hDesk,
251 0,
252 ExDesktopObjectType,
253 KernelMode,
254 (PVOID*)&DesktopObject,
255 NULL);
256 NtClose(hDesk);
257 if(NT_SUCCESS(Status))
258 {
259 if (!IntSetThreadDesktop(DesktopObject,
260 FALSE))
261 {
262 DPRINT1("Unable to set thread desktop\n");
263 }
264 }
265 else
266 {
267 DPRINT1("Unable to reference thread desktop handle 0x%x\n", hDesk);
268 }
269 }
270 }
271 Win32Thread->TIF_flags &= ~TIF_INCLEANUP;
272 co_IntDestroyCaret(Win32Thread);
273 Win32Thread->ppi = PsGetCurrentProcessWin32Process();
274 pTeb = NtCurrentTeb();
275 if (pTeb)
276 {
277 Win32Thread->pClientInfo = (PCLIENTINFO)pTeb->Win32ClientInfo;
278 Win32Thread->pClientInfo->pClientThreadInfo = NULL;
279 }
280 Win32Thread->MessageQueue = MsqCreateMessageQueue(Thread);
281 Win32Thread->KeyboardLayout = W32kGetDefaultKeyLayout();
282 Win32Thread->pEThread = Thread;
283 }
284 else
285 {
286 PSINGLE_LIST_ENTRY e;
287
288 DPRINT("Destroying W32 thread TID:%d at IRQ level: %lu\n", Thread->Cid.UniqueThread, KeGetCurrentIrql());
289
290 Win32Thread->TIF_flags |= TIF_INCLEANUP;
291 HOOK_DestroyThreadHooks(Thread);
292 UnregisterThreadHotKeys(Thread);
293 /* what if this co_ func crash in umode? what will clean us up then? */
294 co_DestroyThreadWindows(Thread);
295 IntBlockInput(Win32Thread, FALSE);
296 MsqDestroyMessageQueue(Win32Thread->MessageQueue);
297 IntCleanupThreadCallbacks(Win32Thread);
298
299 /* cleanup user object references stack */
300 e = PopEntryList(&Win32Thread->ReferencesList);
301 while (e)
302 {
303 PUSER_REFERENCE_ENTRY ref = CONTAINING_RECORD(e, USER_REFERENCE_ENTRY, Entry);
304 DPRINT("thread clean: remove reference obj 0x%x\n",ref->obj);
305 UserDereferenceObject(ref->obj);
306
307 e = PopEntryList(&Win32Thread->ReferencesList);
308 }
309
310 IntSetThreadDesktop(NULL,
311 TRUE);
312
313 PsSetThreadWin32Thread(Thread, NULL);
314 }
315
316 RETURN( STATUS_SUCCESS);
317
318 CLEANUP:
319 UserLeave();
320 DPRINT("Leave Win32kThreadCallback, ret=%i\n",_ret_);
321 END_CLEANUP;
322 }
323
324 /* Only used in ntuser/input.c KeyboardThreadMain(). If it's
325 not called there anymore, please delete */
326 NTSTATUS
327 Win32kInitWin32Thread(PETHREAD Thread)
328 {
329 PEPROCESS Process;
330
331 Process = Thread->ThreadsProcess;
332
333 if (Process->Win32Process == NULL)
334 {
335 /* FIXME - lock the process */
336 Process->Win32Process = ExAllocatePool(NonPagedPool, sizeof(PROCESSINFO));
337
338 if (Process->Win32Process == NULL)
339 return STATUS_NO_MEMORY;
340
341 RtlZeroMemory(Process->Win32Process, sizeof(PROCESSINFO));
342 /* FIXME - unlock the process */
343
344 Win32kProcessCallback(Process, TRUE);
345 }
346
347 if (Thread->Tcb.Win32Thread == NULL)
348 {
349 Thread->Tcb.Win32Thread = ExAllocatePool (NonPagedPool, sizeof(THREADINFO));
350 if (Thread->Tcb.Win32Thread == NULL)
351 return STATUS_NO_MEMORY;
352
353 RtlZeroMemory(Thread->Tcb.Win32Thread, sizeof(THREADINFO));
354
355 Win32kThreadCallback(Thread, PsW32ThreadCalloutInitialize);
356 }
357
358 return(STATUS_SUCCESS);
359 }
360
361
362 /*
363 * This definition doesn't work
364 */
365 NTSTATUS APIENTRY
366 DriverEntry (
367 IN PDRIVER_OBJECT DriverObject,
368 IN PUNICODE_STRING RegistryPath)
369 {
370 NTSTATUS Status;
371 BOOLEAN Result;
372 WIN32_CALLOUTS_FPNS CalloutData = {0};
373 PVOID GlobalUserHeapBase = NULL;
374
375 /*
376 * Register user mode call interface
377 * (system service table index = 1)
378 */
379 Result = KeAddSystemServiceTable (Win32kSSDT,
380 NULL,
381 Win32kNumberOfSysCalls,
382 Win32kSSPT,
383 1);
384 if (Result == FALSE)
385 {
386 DPRINT1("Adding system services failed!\n");
387 return STATUS_UNSUCCESSFUL;
388 }
389
390 hModuleWin = MmPageEntireDriver(DriverEntry);
391 DPRINT("Win32k hInstance 0x%x!\n",hModuleWin);
392 /*
393 * Register Object Manager Callbacks
394 */
395 CalloutData.WindowStationParseProcedure = IntWinStaObjectParse;
396 CalloutData.WindowStationDeleteProcedure = IntWinStaObjectDelete;
397 CalloutData.DesktopDeleteProcedure = IntDesktopObjectDelete;
398 CalloutData.ProcessCallout = Win32kProcessCallback;
399 CalloutData.ThreadCallout = Win32kThreadCallback;
400 CalloutData.BatchFlushRoutine = NtGdiFlushUserBatch;
401
402 /*
403 * Register our per-process and per-thread structures.
404 */
405 PsEstablishWin32Callouts((PWIN32_CALLOUTS_FPNS)&CalloutData);
406
407 GlobalUserHeap = UserCreateHeap(&GlobalUserHeapSection,
408 &GlobalUserHeapBase,
409 1 * 1024 * 1024); /* FIXME - 1 MB for now... */
410 if (GlobalUserHeap == NULL)
411 {
412 DPRINT1("Failed to initialize the global heap!\n");
413 return STATUS_UNSUCCESSFUL;
414 }
415
416 /* Initialize a list of loaded drivers in Win32 subsystem */
417 InitializeListHead(&GlobalDriverListHead);
418
419 if(!hsemDriverMgmt) hsemDriverMgmt = EngCreateSemaphore();
420
421 GdiHandleTable = GDIOBJ_iAllocHandleTable(&GdiTableSection);
422 if (GdiHandleTable == NULL)
423 {
424 DPRINT1("Failed to initialize the GDI handle table.\n");
425 return STATUS_UNSUCCESSFUL;
426 }
427
428 Status = InitUserImpl();
429 if (!NT_SUCCESS(Status))
430 {
431 DPRINT1("Failed to initialize user implementation!\n");
432 return STATUS_UNSUCCESSFUL;
433 }
434
435 Status = InitHotkeyImpl();
436 if (!NT_SUCCESS(Status))
437 {
438 DPRINT1("Failed to initialize hotkey implementation!\n");
439 return STATUS_UNSUCCESSFUL;
440 }
441
442 Status = InitWindowStationImpl();
443 if (!NT_SUCCESS(Status))
444 {
445 DPRINT1("Failed to initialize window station implementation!\n");
446 return STATUS_UNSUCCESSFUL;
447 }
448
449 Status = InitDesktopImpl();
450 if (!NT_SUCCESS(Status))
451 {
452 DPRINT1("Failed to initialize desktop implementation!\n");
453 return STATUS_UNSUCCESSFUL;
454 }
455
456 Status = InitWindowImpl();
457 if (!NT_SUCCESS(Status))
458 {
459 DPRINT1("Failed to initialize window implementation!\n");
460 return STATUS_UNSUCCESSFUL;
461 }
462
463 Status = InitMenuImpl();
464 if (!NT_SUCCESS(Status))
465 {
466 DPRINT1("Failed to initialize menu implementation!\n");
467 return STATUS_UNSUCCESSFUL;
468 }
469
470 Status = InitInputImpl();
471 if (!NT_SUCCESS(Status))
472 {
473 DPRINT1("Failed to initialize input implementation.\n");
474 return(Status);
475 }
476
477 Status = InitKeyboardImpl();
478 if (!NT_SUCCESS(Status))
479 {
480 DPRINT1("Failed to initialize keyboard implementation.\n");
481 return(Status);
482 }
483
484 Status = InitMonitorImpl();
485 if (!NT_SUCCESS(Status))
486 {
487 DbgPrint("Failed to initialize monitor implementation!\n");
488 return STATUS_UNSUCCESSFUL;
489 }
490
491 Status = MsqInitializeImpl();
492 if (!NT_SUCCESS(Status))
493 {
494 DPRINT1("Failed to initialize message queue implementation.\n");
495 return(Status);
496 }
497
498 Status = InitTimerImpl();
499 if (!NT_SUCCESS(Status))
500 {
501 DPRINT1("Failed to initialize timer implementation.\n");
502 return(Status);
503 }
504
505 Status = InitAcceleratorImpl();
506 if (!NT_SUCCESS(Status))
507 {
508 DPRINT1("Failed to initialize accelerator implementation.\n");
509 return(Status);
510 }
511
512 Status = InitGuiCheckImpl();
513 if (!NT_SUCCESS(Status))
514 {
515 DPRINT1("Failed to initialize GUI check implementation.\n");
516 return(Status);
517 }
518
519 Status = InitDcImpl();
520 if (!NT_SUCCESS(Status))
521 {
522 DPRINT1("Failed to initialize Device context implementation!\n");
523 return STATUS_UNSUCCESSFUL;
524 }
525
526 /* Initialize FreeType library */
527 if (! InitFontSupport())
528 {
529 DPRINT1("Unable to initialize font support\n");
530 return STATUS_UNSUCCESSFUL;
531 }
532
533 InitXlateImpl();
534
535 /* Create stock objects, ie. precreated objects commonly
536 used by win32 applications */
537 CreateStockObjects();
538 CreateSysColorObjects();
539
540 gusLanguageID = IntGdiGetLanguageID();
541
542 return STATUS_SUCCESS;
543 }
544
545 /* EOF */