ReactOS 0.4.16-dev-937-g7afcd2a
wuauserv.c
Go to the documentation of this file.
1/*
2* PROJECT: ReactOS Update Service
3* LICENSE: GPL-2.0+ (https://spdx.org/licenses/GPL-2.0+)
4* PURPOSE: Automatic Updates service stub.
5* Stub is required for some application at the installation phase.
6* COPYRIGHT: Copyright 2018 Denis Malikov (filedem@gmail.com)
7*/
8
9#include "wuauserv.h"
10
11/* GLOBALS ******************************************************************/
12
13static WCHAR ServiceName[] = L"wuauserv";
14
17
19
20/* FUNCTIONS *****************************************************************/
21
22static VOID
24{
31
32 if (dwState == SERVICE_START_PENDING ||
33 dwState == SERVICE_STOP_PENDING ||
34 dwState == SERVICE_PAUSE_PENDING ||
35 dwState == SERVICE_CONTINUE_PENDING)
37 else
39
40 if (dwState == SERVICE_RUNNING)
42
44 DPRINT1("WU UpdateServiceStatus(%lu) called\n", dwState);
45}
46
47static DWORD WINAPI
49 DWORD dwEventType,
50 LPVOID lpEventData,
51 LPVOID lpContext)
52{
53 switch (dwControl)
54 {
56 DPRINT1("WU ServiceControlHandler(SERVICE_CONTROL_STOP) received\n");
59 return ERROR_SUCCESS;
60
62 DPRINT1("WU ServiceControlHandler(SERVICE_CONTROL_PAUSE) received\n");
64 return ERROR_SUCCESS;
65
67 DPRINT1("WU ServiceControlHandler(SERVICE_CONTROL_CONTINUE) received\n");
69 return ERROR_SUCCESS;
70
72 DPRINT1("WU ServiceControlHandler(SERVICE_CONTROL_INTERROGATE) received\n");
74 return ERROR_SUCCESS;
75
77 DPRINT1("WU ServiceControlHandler(SERVICE_CONTROL_SHUTDOWN) received\n");
80 return ERROR_SUCCESS;
81
82 default :
83 DPRINT1("WU ServiceControlHandler(Control %lu) received\n", dwControl);
85 }
86}
87
90{
93
94 DPRINT("WU ServiceMain() called\n");
95
98 NULL);
100 {
101 DPRINT1("RegisterServiceCtrlHandlerExW() failed (Error %lu)\n", GetLastError());
102 return;
103 }
104
106 if (hStopEvent == NULL)
107 {
108 DPRINT1("CreateEvent() failed (Error %lu)\n", GetLastError());
109 goto done;
110 }
111
113
116
117done:
119}
120
125{
126 switch (fdwReason)
127 {
130 break;
131
133 break;
134 }
135
136 return TRUE;
137}
static SERVICE_STATUS_HANDLE(WINAPI *pRegisterServiceCtrlHandlerExA)(LPCSTR
static int argc
Definition: ServiceArgs.c:12
static DWORD const fdwReason
#define DPRINT1
Definition: precomp.h:8
#define ERROR_SUCCESS
Definition: deptool.c:10
#define NULL
Definition: types.h:112
#define TRUE
Definition: types.h:120
#define FALSE
Definition: types.h:117
#define CloseHandle
Definition: compat.h:739
#define ERROR_CALL_NOT_IMPLEMENTED
Definition: compat.h:102
#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
#define INFINITE
Definition: serial.h:102
unsigned int BOOL
Definition: ntddk_ex.h:94
unsigned long DWORD
Definition: ntddk_ex.h:95
static IN DWORD IN LPVOID lpvReserved
#define argv
Definition: mplay32.c:18
#define UNREFERENCED_PARAMETER(P)
Definition: ntbasedef.h:325
#define L(x)
Definition: ntvdm.h:50
SERVICE_STATUS_HANDLE WINAPI RegisterServiceCtrlHandlerExW(LPCWSTR lpServiceName, LPHANDLER_FUNCTION_EX lpHandlerProc, LPVOID lpContext)
Definition: sctrl.c:812
BOOL WINAPI SetServiceStatus(SERVICE_STATUS_HANDLE hServiceStatus, LPSERVICE_STATUS lpServiceStatus)
Definition: sctrl.c:997
#define DPRINT
Definition: sndvol32.h:73
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
DWORD WINAPI WaitForSingleObject(IN HANDLE hHandle, IN DWORD dwMilliseconds)
Definition: synch.c:82
HANDLE WINAPI DECLSPEC_HOTPATCH CreateEventW(IN LPSECURITY_ATTRIBUTES lpEventAttributes OPTIONAL, IN BOOL bManualReset, IN BOOL bInitialState, IN LPCWSTR lpName OPTIONAL)
Definition: synch.c:651
BOOL WINAPI DECLSPEC_HOTPATCH SetEvent(IN HANDLE hEvent)
Definition: synch.c:733
DWORD WINAPI GetLastError(void)
Definition: except.c:1042
#define WINAPI
Definition: msvc.h:6
#define SERVICE_STOPPED
Definition: winsvc.h:21
#define SERVICE_ACCEPT_STOP
Definition: winsvc.h:28
#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_START_PENDING
Definition: winsvc.h:22
#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_ACCEPT_SHUTDOWN
Definition: winsvc.h:30
#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
static WCHAR ServiceName[]
Definition: wuauserv.c:13
BOOL WINAPI DllMain(HINSTANCE hinstDLL, DWORD fdwReason, LPVOID lpvReserved)
Definition: wuauserv.c:122
static DWORD WINAPI ServiceControlHandler(DWORD dwControl, DWORD dwEventType, LPVOID lpEventData, LPVOID lpContext)
Definition: wuauserv.c:48
static VOID UpdateServiceStatus(DWORD dwState)
Definition: wuauserv.c:23
static SERVICE_STATUS_HANDLE ServiceStatusHandle
Definition: wuauserv.c:15
VOID WINAPI ServiceMain(DWORD argc, LPTSTR *argv)
Definition: wuauserv.c:89
static HANDLE hStopEvent
Definition: wuauserv.c:18
static SERVICE_STATUS ServiceStatus
Definition: wuauserv.c:16
#define SERVICE_WIN32_OWN_PROCESS
Definition: cmtypes.h:962
__wchar_t WCHAR
Definition: xmlstorage.h:180
CHAR * LPTSTR
Definition: xmlstorage.h:192