ReactOS 0.4.15-dev-7842-g558ab78
notify.c File Reference
#include "winlogon.h"
Include dependency graph for notify.c:

Go to the source code of this file.

Classes

struct  _NOTIFICATION_ITEM
 

Typedefs

typedef VOID(WINAPIPWLX_NOTIFY_HANDLER) (PWLX_NOTIFICATION_INFO pInfo)
 
typedef struct _NOTIFICATION_ITEM NOTIFICATION_ITEM
 
typedef struct _NOTIFICATION_ITEMPNOTIFICATION_ITEM
 

Functions

static VOID AddSfcNotification (VOID)
 
static VOID AddNotificationDll (HKEY hNotifyKey, PWSTR pszKeyName)
 
BOOL InitNotifications (VOID)
 
static VOID CallNotificationDll (HKEY hNotifyKey, PNOTIFICATION_ITEM NotificationDll, NOTIFICATION_TYPE Type, PWLX_NOTIFICATION_INFO pInfo)
 
VOID CallNotificationDlls (PWLSESSION pSession, NOTIFICATION_TYPE Type)
 
VOID CleanupNotifications (VOID)
 

Variables

static PSTR FuncNames [LastHandler]
 
static LIST_ENTRY NotificationDllListHead
 

Typedef Documentation

◆ NOTIFICATION_ITEM

◆ PNOTIFICATION_ITEM

◆ PWLX_NOTIFY_HANDLER

typedef VOID(WINAPI * PWLX_NOTIFY_HANDLER) (PWLX_NOTIFICATION_INFO pInfo)

Definition at line 17 of file notify.c.

Function Documentation

◆ AddNotificationDll()

static VOID AddNotificationDll ( HKEY  hNotifyKey,
PWSTR  pszKeyName 
)
static

Definition at line 109 of file notify.c.

112{
113 HKEY hDllKey = NULL;
114 PNOTIFICATION_ITEM NotificationDll = NULL;
115 DWORD dwSize, dwType;
116 DWORD dwError;
117
118 TRACE("AddNotificationDll(%p %S)\n", hNotifyKey, pszKeyName);
119
120 dwError = RegOpenKeyExW(hNotifyKey,
121 pszKeyName,
122 0,
123 KEY_READ,
124 &hDllKey);
125 if (dwError != ERROR_SUCCESS)
126 return;
127
128 NotificationDll = RtlAllocateHeap(RtlGetProcessHeap(),
130 sizeof(NOTIFICATION_ITEM));
131 if (NotificationDll == NULL)
132 {
133 dwError = ERROR_OUTOFMEMORY;
134 goto done;
135 }
136
137 NotificationDll->pszKeyName = RtlAllocateHeap(RtlGetProcessHeap(),
139 (wcslen(pszKeyName) + 1) * sizeof(WCHAR));
140 if (NotificationDll->pszKeyName == NULL)
141 {
142 dwError = ERROR_OUTOFMEMORY;
143 goto done;
144 }
145
146 wcscpy(NotificationDll->pszKeyName, pszKeyName);
147
148 dwSize = 0;
149 RegQueryValueExW(hDllKey,
150 L"DllName",
151 NULL,
152 &dwType,
153 NULL,
154 &dwSize);
155 if (dwSize == 0)
156 {
157 dwError = ERROR_FILE_NOT_FOUND;
158 goto done;
159 }
160
161 NotificationDll->pszDllName = RtlAllocateHeap(RtlGetProcessHeap(),
163 dwSize);
164 if (NotificationDll->pszDllName == NULL)
165 {
166 dwError = ERROR_OUTOFMEMORY;
167 goto done;
168 }
169
170 dwError = RegQueryValueExW(hDllKey,
171 L"DllName",
172 NULL,
173 &dwType,
174 (PBYTE)NotificationDll->pszDllName,
175 &dwSize);
176 if (dwError != ERROR_SUCCESS)
177 goto done;
178
179 NotificationDll->bEnabled = TRUE;
180 NotificationDll->dwMaxWait = 30; /* FIXME: ??? */
181
182 dwSize = sizeof(BOOL);
183 RegQueryValueExW(hDllKey,
184 L"Asynchronous",
185 NULL,
186 &dwType,
187 (PBYTE)&NotificationDll->bAsynchronous,
188 &dwSize);
189
190 dwSize = sizeof(BOOL);
191 RegQueryValueExW(hDllKey,
192 L"Enabled",
193 NULL,
194 &dwType,
195 (PBYTE)&NotificationDll->bEnabled,
196 &dwSize);
197
198 dwSize = sizeof(BOOL);
199 RegQueryValueExW(hDllKey,
200 L"Impersonate",
201 NULL,
202 &dwType,
203 (PBYTE)&NotificationDll->bImpersonate,
204 &dwSize);
205
206 dwSize = sizeof(BOOL);
207 RegQueryValueExW(hDllKey,
208 L"Safe",
209 NULL,
210 &dwType,
211 (PBYTE)&NotificationDll->bSafe,
212 &dwSize);
213
214 dwSize = sizeof(BOOL);
215 RegQueryValueExW(hDllKey,
216 L"SmartCardLogonNotify",
217 NULL,
218 &dwType,
219 (PBYTE)&NotificationDll->bSmartCardLogon,
220 &dwSize);
221
222 dwSize = sizeof(DWORD);
223 RegQueryValueExW(hDllKey,
224 L"MaxWait",
225 NULL,
226 &dwType,
227 (PBYTE)&NotificationDll->dwMaxWait,
228 &dwSize);
229
231 &NotificationDll->ListEntry);
232
233done:
234 if (dwError != ERROR_SUCCESS)
235 {
236 if (NotificationDll != NULL)
237 {
238 if (NotificationDll->pszKeyName != NULL)
239 RtlFreeHeap(RtlGetProcessHeap(), 0, NotificationDll->pszKeyName);
240
241 if (NotificationDll->pszDllName != NULL)
242 RtlFreeHeap(RtlGetProcessHeap(), 0, NotificationDll->pszDllName);
243
244 RtlFreeHeap(RtlGetProcessHeap(), 0, NotificationDll);
245 }
246 }
247
248 RegCloseKey(hDllKey);
249}
static LIST_ENTRY NotificationDllListHead
Definition: notify.c:50
PVOID NTAPI RtlAllocateHeap(IN PVOID HeapHandle, IN ULONG Flags, IN SIZE_T Size)
Definition: heap.c:590
BOOLEAN NTAPI RtlFreeHeap(IN PVOID HeapHandle, IN ULONG Flags, IN PVOID HeapBase)
Definition: heap.c:608
#define RegCloseKey(hKey)
Definition: registry.h:49
#define ERROR_OUTOFMEMORY
Definition: deptool.c:13
#define ERROR_SUCCESS
Definition: deptool.c:10
#define NULL
Definition: types.h:112
#define TRUE
Definition: types.h:120
LONG WINAPI RegOpenKeyExW(HKEY hKey, LPCWSTR lpSubKey, DWORD ulOptions, REGSAM samDesired, PHKEY phkResult)
Definition: reg.c:3333
LONG WINAPI RegQueryValueExW(_In_ HKEY hkeyorg, _In_ LPCWSTR name, _In_ LPDWORD reserved, _In_ LPDWORD type, _In_ LPBYTE data, _In_ LPDWORD count)
Definition: reg.c:4103
#define HEAP_ZERO_MEMORY
Definition: compat.h:134
#define InsertHeadList(ListHead, Entry)
unsigned long DWORD
Definition: ntddk_ex.h:95
_CRTIMP size_t __cdecl wcslen(_In_z_ const wchar_t *_Str)
#define ERROR_FILE_NOT_FOUND
Definition: disk.h:79
PSDBQUERYRESULT_VISTA PVOID DWORD * dwSize
Definition: env.c:56
#define BOOL
Definition: nt_native.h:43
#define KEY_READ
Definition: nt_native.h:1023
#define DWORD
Definition: nt_native.h:44
#define L(x)
Definition: ntvdm.h:50
BYTE * PBYTE
Definition: pedump.c:66
_CRTIMP wchar_t *__cdecl wcscpy(_Out_writes_z_(_String_length_(_Source)+1) wchar_t *_Dest, _In_z_ const wchar_t *_Source)
#define TRACE(s)
Definition: solgame.cpp:4
DWORD dwMaxWait
Definition: notify.c:45
LIST_ENTRY ListEntry
Definition: notify.c:37
PWSTR pszKeyName
Definition: notify.c:38
PWSTR pszDllName
Definition: notify.c:39
BOOL bAsynchronous
Definition: notify.c:41
BOOL bImpersonate
Definition: notify.c:43
BOOL bSmartCardLogon
Definition: notify.c:44
__wchar_t WCHAR
Definition: xmlstorage.h:180

Referenced by InitNotifications().

◆ AddSfcNotification()

static VOID AddSfcNotification ( VOID  )
static

Definition at line 57 of file notify.c.

58{
59 WCHAR szSfcFileName[MAX_PATH];
60 PNOTIFICATION_ITEM NotificationDll;
61 DWORD dwError = ERROR_SUCCESS;
62
63 ExpandEnvironmentStringsW(L"%windir%\\system32\\sfc.dll",
64 szSfcFileName,
65 ARRAYSIZE(szSfcFileName));
66
67 NotificationDll = RtlAllocateHeap(RtlGetProcessHeap(),
69 sizeof(NOTIFICATION_ITEM));
70 if (NotificationDll == NULL)
71 {
72 dwError = ERROR_OUTOFMEMORY;
73 goto done;
74 }
75
76 NotificationDll->pszDllName = RtlAllocateHeap(RtlGetProcessHeap(),
78 (wcslen(szSfcFileName) + 1) * sizeof(WCHAR));
79 if (NotificationDll->pszDllName == NULL)
80 {
81 dwError = ERROR_OUTOFMEMORY;
82 goto done;
83 }
84
85 wcscpy(NotificationDll->pszDllName, szSfcFileName);
86
87 NotificationDll->bEnabled = TRUE;
88 NotificationDll->dwMaxWait = 30; /* FIXME: ??? */
89 NotificationDll->bSfcNotification = TRUE;
90
92 &NotificationDll->ListEntry);
93
94done:
95 if (dwError != ERROR_SUCCESS)
96 {
97 if (NotificationDll != NULL)
98 {
99 if (NotificationDll->pszDllName != NULL)
100 RtlFreeHeap(RtlGetProcessHeap(), 0, NotificationDll->pszDllName);
101
102 RtlFreeHeap(RtlGetProcessHeap(), 0, NotificationDll);
103 }
104 }
105}
#define ARRAYSIZE(array)
Definition: filtermapper.c:47
#define MAX_PATH
Definition: compat.h:34
DWORD WINAPI ExpandEnvironmentStringsW(IN LPCWSTR lpSrc, IN LPWSTR lpDst, IN DWORD nSize)
Definition: environ.c:519
BOOL bSfcNotification
Definition: notify.c:46

Referenced by InitNotifications().

◆ CallNotificationDll()

static VOID CallNotificationDll ( HKEY  hNotifyKey,
PNOTIFICATION_ITEM  NotificationDll,
NOTIFICATION_TYPE  Type,
PWLX_NOTIFICATION_INFO  pInfo 
)
static

Definition at line 309 of file notify.c.

314{
316 CHAR szFuncBuffer[128];
317 DWORD dwError = ERROR_SUCCESS;
318 PWLX_NOTIFY_HANDLER pNotifyHandler;
319
320 if (NotificationDll->bSfcNotification)
321 {
322 switch (Type)
323 {
324 case LogonHandler:
325 strcpy(szFuncBuffer, "SfcWLEventLogon");
326 break;
327
328 case LogoffHandler:
329 strcpy(szFuncBuffer, "SfcWLEventLogoff");
330 break;
331
332 default:
333 return;
334 }
335 }
336 else
337 {
338 HKEY hDllKey;
340 DWORD dwType;
341
342 dwError = RegOpenKeyExW(hNotifyKey,
343 NotificationDll->pszKeyName,
344 0,
345 KEY_READ,
346 &hDllKey);
347 if (dwError != ERROR_SUCCESS)
348 {
349 TRACE("RegOpenKeyExW()\n");
350 return;
351 }
352
353 dwSize = sizeof(szFuncBuffer);
354 dwError = RegQueryValueExA(hDllKey,
356 NULL,
357 &dwType,
358 (PBYTE)szFuncBuffer,
359 &dwSize);
360
361 RegCloseKey(hDllKey);
362 }
363
364 if (dwError != ERROR_SUCCESS)
365 return;
366
367 hModule = LoadLibraryW(NotificationDll->pszDllName);
368 if (!hModule)
369 return;
370
371 pNotifyHandler = (PWLX_NOTIFY_HANDLER)GetProcAddress(hModule, szFuncBuffer);
372
374 {
375 if (pNotifyHandler)
376 pNotifyHandler(pInfo);
377 }
379 {
380 ERR("WL: Exception while running notification %S!%s, Status 0x%08lx\n",
381 NotificationDll->pszDllName, szFuncBuffer, _SEH2_GetExceptionCode());
382 }
383 _SEH2_END;
384
386}
Type
Definition: Type.h:7
char * strcpy(char *DstString, const char *SrcString)
Definition: utclib.c:388
static PSTR FuncNames[LastHandler]
Definition: notify.c:19
VOID(WINAPI * PWLX_NOTIFY_HANDLER)(PWLX_NOTIFICATION_INFO pInfo)
Definition: notify.c:17
#define ERR(fmt,...)
Definition: debug.h:110
LONG WINAPI RegQueryValueExA(_In_ HKEY hkeyorg, _In_ LPCSTR name, _In_ LPDWORD reserved, _Out_opt_ LPDWORD type, _Out_opt_ LPBYTE data, _Inout_opt_ LPDWORD count)
Definition: reg.c:4009
HMODULE hModule
Definition: animate.c:44
#define GetProcAddress(x, y)
Definition: compat.h:753
#define FreeLibrary(x)
Definition: compat.h:748
#define LoadLibraryW(x)
Definition: compat.h:747
#define _SEH2_END
Definition: filesup.c:22
#define _SEH2_TRY
Definition: filesup.c:19
#define EXCEPTION_EXECUTE_HANDLER
Definition: excpt.h:85
#define _SEH2_GetExceptionCode()
Definition: pseh2_64.h:159
#define _SEH2_EXCEPT(...)
Definition: pseh2_64.h:34
@ LogonHandler
Definition: winlogon.h:258
@ LogoffHandler
Definition: winlogon.h:259
char CHAR
Definition: xmlstorage.h:175

Referenced by CallNotificationDlls().

◆ CallNotificationDlls()

VOID CallNotificationDlls ( PWLSESSION  pSession,
NOTIFICATION_TYPE  Type 
)

Definition at line 390 of file notify.c.

393{
394 PLIST_ENTRY ListEntry;
395 PNOTIFICATION_ITEM NotificationDll;
397 HKEY hNotifyKey = NULL;
398 DWORD dwError;
399
400 TRACE("CallNotificationDlls()\n");
401
403 L"Software\\Microsoft\\Windows NT\\CurrentVersion\\Winlogon\\Notify",
404 0,
406 &hNotifyKey);
407 if (dwError != ERROR_SUCCESS)
408 {
409 TRACE("RegOpenKeyExW()\n");
410 return;
411 }
412
413 Info.Size = sizeof(WLX_NOTIFICATION_INFO);
414
415 switch (Type)
416 {
417 case LogoffHandler:
418 case ShutdownHandler:
419 Info.Flags = 3;
420 break;
421
422 default:
423 Info.Flags = 0;
424 break;
425 }
426
427 Info.UserName = NULL; //UserName;
428 Info.Domain = NULL; //Domain;
429 Info.WindowStation = pSession->InteractiveWindowStationName;
430 Info.hToken = pSession->UserToken;
431
432 switch (Type)
433 {
434 case LogonHandler:
436 Info.hDesktop = pSession->ApplicationDesktop;
437 break;
438
440 Info.hDesktop = pSession->ApplicationDesktop;
441 break;
442
443 default:
444 Info.hDesktop = pSession->WinlogonDesktop;
445 break;
446 }
447
448 Info.pStatusCallback = NULL;
449
450 ListEntry = NotificationDllListHead.Flink;
451 while (ListEntry != &NotificationDllListHead)
452 {
453TRACE("ListEntry %p\n", ListEntry);
454
455 NotificationDll = CONTAINING_RECORD(ListEntry,
457 ListEntry);
458TRACE("NotificationDll: %p\n", NotificationDll);
459 if (NotificationDll != NULL && NotificationDll->bEnabled)
460 CallNotificationDll(hNotifyKey, NotificationDll, Type, &Info);
461
462 ListEntry = ListEntry->Flink;
463 }
464
465 RegCloseKey(hNotifyKey);
466}
static VOID CallNotificationDll(HKEY hNotifyKey, PNOTIFICATION_ITEM NotificationDll, NOTIFICATION_TYPE Type, PWLX_NOTIFICATION_INFO pInfo)
Definition: notify.c:309
#define KEY_ENUMERATE_SUB_KEYS
Definition: nt_native.h:1019
Definition: typedefs.h:120
struct _LIST_ENTRY * Flink
Definition: typedefs.h:121
LPWSTR InteractiveWindowStationName
Definition: winlogon.h:227
HANDLE UserToken
Definition: winlogon.h:232
HDESK WinlogonDesktop
Definition: winlogon.h:229
HDESK ApplicationDesktop
Definition: winlogon.h:228
#define CONTAINING_RECORD(address, type, field)
Definition: typedefs.h:260
_Must_inspect_result_ _In_ WDFCHILDLIST _In_ PWDF_CHILD_LIST_ITERATOR _Out_ WDFDEVICE _Inout_opt_ PWDF_CHILD_RETRIEVE_INFO Info
Definition: wdfchildlist.h:690
@ StartShellHandler
Definition: winlogon.h:268
@ StartScreenSaverHandler
Definition: winlogon.h:264
@ ShutdownHandler
Definition: winlogon.h:263
#define HKEY_LOCAL_MACHINE
Definition: winreg.h:12
struct _WLX_NOTIFICATION_INFO WLX_NOTIFICATION_INFO

Referenced by DoGenericAction(), HandleLogoff(), HandleLogon(), HandleShutdown(), StartScreenSaver(), and WinMain().

◆ CleanupNotifications()

VOID CleanupNotifications ( VOID  )

Definition at line 470 of file notify.c.

471{
472 PLIST_ENTRY ListEntry;
473 PNOTIFICATION_ITEM NotificationDll;
474
475 ListEntry = NotificationDllListHead.Flink;
476 while (ListEntry != &NotificationDllListHead)
477 {
478 NotificationDll = CONTAINING_RECORD(ListEntry,
480 ListEntry);
481 if (NotificationDll != NULL)
482 {
483 if (NotificationDll->pszKeyName != NULL)
484 RtlFreeHeap(RtlGetProcessHeap(), 0, NotificationDll->pszKeyName);
485
486 if (NotificationDll->pszDllName != NULL)
487 RtlFreeHeap(RtlGetProcessHeap(), 0, NotificationDll->pszDllName);
488 }
489
490 ListEntry = ListEntry->Flink;
491
492 RemoveEntryList(&NotificationDll->ListEntry);
493
494 RtlFreeHeap(RtlGetProcessHeap(), 0, NotificationDll);
495 }
496}
#define RemoveEntryList(Entry)
Definition: env_spec_w32.h:986

Referenced by WinMain().

◆ InitNotifications()

BOOL InitNotifications ( VOID  )

Definition at line 253 of file notify.c.

254{
255 HKEY hNotifyKey = NULL;
256 LONG lError;
257 DWORD dwIndex;
258 WCHAR szKeyName[80];
259 DWORD dwKeyName;
260
261 TRACE("InitNotifications()\n");
262
264
266
268 L"Software\\Microsoft\\Windows NT\\CurrentVersion\\Winlogon\\Notify",
269 0,
271 &hNotifyKey);
272 if (lError != ERROR_SUCCESS)
273 {
274 TRACE("RegOpenKeyExW()\n");
275 return TRUE;
276 }
277
278 dwIndex = 0;
279 for(;;)
280 {
281 dwKeyName = ARRAYSIZE(szKeyName);
282 lError = RegEnumKeyExW(hNotifyKey,
283 dwIndex,
284 szKeyName,
285 &dwKeyName,
286 NULL,
287 NULL,
288 NULL,
289 NULL);
290 if (lError != ERROR_SUCCESS)
291 break;
292
293 TRACE("Notification DLL: %S\n", szKeyName);
294 AddNotificationDll(hNotifyKey, szKeyName);
295
296 dwIndex++;
297 }
298
299 RegCloseKey(hNotifyKey);
300
301 TRACE("InitNotifications() done\n");
302
303 return TRUE;
304}
static VOID AddNotificationDll(HKEY hNotifyKey, PWSTR pszKeyName)
Definition: notify.c:109
static VOID AddSfcNotification(VOID)
Definition: notify.c:57
LONG WINAPI RegEnumKeyExW(_In_ HKEY hKey, _In_ DWORD dwIndex, _Out_ LPWSTR lpName, _Inout_ LPDWORD lpcbName, _Reserved_ LPDWORD lpReserved, _Out_opt_ LPWSTR lpClass, _Inout_opt_ LPDWORD lpcbClass, _Out_opt_ PFILETIME lpftLastWriteTime)
Definition: reg.c:2504
#define InitializeListHead(ListHead)
Definition: env_spec_w32.h:944
long LONG
Definition: pedump.c:60

Referenced by WinMain().

Variable Documentation

◆ FuncNames

PSTR FuncNames[LastHandler]
static
Initial value:
=
{
"Logon",
"Logoff",
"Lock",
"Unlock",
"Startup",
"Shutdown",
"StartScreenSaver",
"StopScreenSaver",
"Disconnect",
"Reconnect",
"StartShell",
"PostShell"
}

Definition at line 19 of file notify.c.

Referenced by CallNotificationDll().

◆ NotificationDllListHead

LIST_ENTRY NotificationDllListHead
static