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