ReactOS 0.4.15-dev-7942-gd23573b
seclogon.c File Reference
#include "precomp.h"
Include dependency graph for seclogon.c:

Go to the source code of this file.

Functions

 WINE_DEFAULT_DEBUG_CHANNEL (seclogon)
 
static VOID UpdateServiceStatus (_In_ DWORD dwState)
 
static DWORD WINAPI ServiceControlHandlerEx (_In_ DWORD dwControl, _In_ DWORD dwEventType, _In_ LPVOID lpEventData, _In_ LPVOID lpContext)
 
VOID WINAPI SvchostPushServiceGlobals (_In_ PSVCHOST_GLOBAL_DATA lpGlobals)
 
VOID WINAPI SvcEntry_Seclogon (_In_ INT ArgCount, _In_ PWSTR *ArgVector)
 
BOOL WINAPI DllMain (_In_ HINSTANCE hinstDLL, _In_ DWORD fdwReason, _In_ PVOID pvReserved)
 

Variables

HINSTANCE hDllInstance
 
PSVCHOST_GLOBAL_DATA lpServiceGlobals
 
static WCHAR ServiceName [] = L"seclogon"
 
static SERVICE_STATUS_HANDLE ServiceStatusHandle
 
static SERVICE_STATUS ServiceStatus
 

Function Documentation

◆ DllMain()

BOOL WINAPI DllMain ( _In_ HINSTANCE  hinstDLL,
_In_ DWORD  fdwReason,
_In_ PVOID  pvReserved 
)

Definition at line 160 of file seclogon.c.

164{
166
167 switch (fdwReason)
168 {
171 hDllInstance = hinstDLL;
172 break;
173
175 break;
176 }
177
178 return TRUE;
179}
#define TRUE
Definition: types.h:120
#define DLL_PROCESS_ATTACH
Definition: compat.h:131
#define DLL_PROCESS_DETACH
Definition: compat.h:130
BOOL WINAPI DisableThreadLibraryCalls(IN HMODULE hLibModule)
Definition: loader.c:85
static LPCSTR DWORD void * pvReserved
Definition: str.c:196
#define UNREFERENCED_PARAMETER(P)
Definition: ntbasedef.h:317
HINSTANCE hDllInstance
Definition: seclogon.c:17

◆ ServiceControlHandlerEx()

static DWORD WINAPI ServiceControlHandlerEx ( _In_ DWORD  dwControl,
_In_ DWORD  dwEventType,
_In_ LPVOID  lpEventData,
_In_ LPVOID  lpContext 
)
static

Definition at line 63 of file seclogon.c.

68{
69 TRACE("ServiceControlHandlerEx()\n");
70
71 switch (dwControl)
72 {
74 TRACE(" SERVICE_CONTROL_STOP received\n");
77 return ERROR_SUCCESS;
78
80 TRACE(" SERVICE_CONTROL_PAUSE received\n");
84 return ERROR_SUCCESS;
85
87 TRACE(" SERVICE_CONTROL_CONTINUE received\n");
91 return ERROR_SUCCESS;
92
94 TRACE(" SERVICE_CONTROL_INTERROGATE received\n");
97 return ERROR_SUCCESS;
98
100 TRACE(" SERVICE_CONTROL_SHUTDOWN received\n");
103 return ERROR_SUCCESS;
104
105 default :
106 TRACE(" Control %lu received\n", dwControl);
108 }
109}
DWORD StartRpcServer(VOID)
Definition: rpcserver.c:32
DWORD StopRpcServer(VOID)
Definition: rpcserver.c:44
#define ERROR_SUCCESS
Definition: deptool.c:10
#define ERROR_CALL_NOT_IMPLEMENTED
Definition: compat.h:102
BOOL WINAPI SetServiceStatus(SERVICE_STATUS_HANDLE hServiceStatus, LPSERVICE_STATUS lpServiceStatus)
Definition: sctrl.c:997
static VOID UpdateServiceStatus(_In_ DWORD dwState)
Definition: seclogon.c:30
static SERVICE_STATUS_HANDLE ServiceStatusHandle
Definition: seclogon.c:22
static SERVICE_STATUS ServiceStatus
Definition: seclogon.c:23
#define TRACE(s)
Definition: solgame.cpp:4
#define SERVICE_STOP_PENDING
Definition: winsvc.h:23
#define SERVICE_CONTROL_SHUTDOWN
Definition: winsvc.h:40
#define SERVICE_PAUSED
Definition: winsvc.h:27
#define SERVICE_RUNNING
Definition: winsvc.h:24
#define SERVICE_CONTROL_CONTINUE
Definition: winsvc.h:38
#define SERVICE_CONTROL_STOP
Definition: winsvc.h:36
#define SERVICE_PAUSE_PENDING
Definition: winsvc.h:26
#define SERVICE_CONTROL_PAUSE
Definition: winsvc.h:37
#define SERVICE_CONTROL_INTERROGATE
Definition: winsvc.h:39
#define SERVICE_CONTINUE_PENDING
Definition: winsvc.h:25

Referenced by SvcEntry_Seclogon().

◆ SvcEntry_Seclogon()

VOID WINAPI SvcEntry_Seclogon ( _In_ INT  ArgCount,
_In_ PWSTR ArgVector 
)

Definition at line 124 of file seclogon.c.

127{
128 DWORD dwError;
129
130 UNREFERENCED_PARAMETER(ArgCount);
131 UNREFERENCED_PARAMETER(ArgVector);
132
133 TRACE("ServiceMain(%d %p)\n", ArgCount, ArgVector);
134
137 NULL);
139 {
140 ERR("RegisterServiceCtrlHandlerExW() failed! (Error %lu)\n", GetLastError());
141 return;
142 }
143
145
146 dwError = StartRpcServer();
147 if (dwError != ERROR_SUCCESS)
148 {
149 ERR("Service stopped (dwError: %lu\n", dwError);
151 return;
152 }
153
155}
#define ERR(fmt,...)
Definition: debug.h:110
#define NULL
Definition: types.h:112
unsigned long DWORD
Definition: ntddk_ex.h:95
SERVICE_STATUS_HANDLE WINAPI RegisterServiceCtrlHandlerExW(LPCWSTR lpServiceName, LPHANDLER_FUNCTION_EX lpHandlerProc, LPVOID lpContext)
Definition: sctrl.c:812
static WCHAR ServiceName[]
Definition: seclogon.c:20
static DWORD WINAPI ServiceControlHandlerEx(_In_ DWORD dwControl, _In_ DWORD dwEventType, _In_ LPVOID lpEventData, _In_ LPVOID lpContext)
Definition: seclogon.c:63
DWORD WINAPI GetLastError(void)
Definition: except.c:1042
#define SERVICE_STOPPED
Definition: winsvc.h:21
#define SERVICE_START_PENDING
Definition: winsvc.h:22

◆ SvchostPushServiceGlobals()

VOID WINAPI SvchostPushServiceGlobals ( _In_ PSVCHOST_GLOBAL_DATA  lpGlobals)

Definition at line 114 of file seclogon.c.

116{
117 TRACE("SvchostPushServiceGlobals(%p)\n", lpGlobals);
118 lpServiceGlobals = lpGlobals;
119}
PSVCHOST_GLOBAL_DATA lpServiceGlobals
Definition: seclogon.c:18

◆ UpdateServiceStatus()

static VOID UpdateServiceStatus ( _In_ DWORD  dwState)
static

Definition at line 30 of file seclogon.c.

32{
35
36 if (dwState == SERVICE_PAUSED || dwState == SERVICE_RUNNING)
40 else
42
46
47 if (dwState == SERVICE_START_PENDING ||
48 dwState == SERVICE_STOP_PENDING ||
49 dwState == SERVICE_PAUSE_PENDING ||
50 dwState == SERVICE_CONTINUE_PENDING)
52 else
54
57}
DWORD dwServiceType
Definition: winsvc.h:99
DWORD dwWin32ExitCode
Definition: winsvc.h:102
DWORD dwControlsAccepted
Definition: winsvc.h:101
DWORD dwWaitHint
Definition: winsvc.h:105
DWORD dwCurrentState
Definition: winsvc.h:100
DWORD dwCheckPoint
Definition: winsvc.h:104
DWORD dwServiceSpecificExitCode
Definition: winsvc.h:103
#define SERVICE_ACCEPT_STOP
Definition: winsvc.h:28
#define SERVICE_ACCEPT_PAUSE_CONTINUE
Definition: winsvc.h:29
#define SERVICE_ACCEPT_SHUTDOWN
Definition: winsvc.h:30
#define SERVICE_WIN32_SHARE_PROCESS
Definition: cmtypes.h:963

Referenced by ServiceControlHandlerEx(), and SvcEntry_Seclogon().

◆ WINE_DEFAULT_DEBUG_CHANNEL()

WINE_DEFAULT_DEBUG_CHANNEL ( seclogon  )

Variable Documentation

◆ hDllInstance

HINSTANCE hDllInstance

Definition at line 17 of file seclogon.c.

Referenced by DllMain().

◆ lpServiceGlobals

PSVCHOST_GLOBAL_DATA lpServiceGlobals

Definition at line 18 of file seclogon.c.

Referenced by StartRpcServer(), StopRpcServer(), and SvchostPushServiceGlobals().

◆ ServiceName

WCHAR ServiceName[] = L"seclogon"
static

Definition at line 20 of file seclogon.c.

Referenced by SvcEntry_Seclogon().

◆ ServiceStatus

SERVICE_STATUS ServiceStatus
static

Definition at line 23 of file seclogon.c.

Referenced by ServiceControlHandlerEx(), and UpdateServiceStatus().

◆ ServiceStatusHandle

SERVICE_STATUS_HANDLE ServiceStatusHandle
static

Definition at line 22 of file seclogon.c.

Referenced by ServiceControlHandlerEx(), SvcEntry_Seclogon(), and UpdateServiceStatus().