ReactOS 0.4.15-dev-8434-g155a7c7
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
45 DPRINT1("WU UpdateServiceStatus() called\n");
46}
47
48static DWORD WINAPI
50 DWORD dwEventType,
51 LPVOID lpEventData,
52 LPVOID lpContext)
53{
54 switch (dwControl)
55 {
57 DPRINT1("WU ServiceControlHandler() SERVICE_CONTROL_STOP received\n");
60 return ERROR_SUCCESS;
61
63 DPRINT1("WU ServiceControlHandler() SERVICE_CONTROL_PAUSE received\n");
65 return ERROR_SUCCESS;
66
68 DPRINT1("WU ServiceControlHandler() SERVICE_CONTROL_CONTINUE received\n");
70 return ERROR_SUCCESS;
71
73 DPRINT1("WU ServiceControlHandler() SERVICE_CONTROL_INTERROGATE received\n");
76 return ERROR_SUCCESS;
77
79 DPRINT1("WU ServiceControlHandler() SERVICE_CONTROL_SHUTDOWN received\n");
82 return ERROR_SUCCESS;
83
84 default :
85 DPRINT1("WU ServiceControlHandler() Control %lu received\n", dwControl);
87 }
88}
89
92{
95
96 DPRINT("WU ServiceMain() called\n");
97
100 NULL);
102 {
103 DPRINT1("RegisterServiceCtrlHandlerExW() failed! (Error %lu)\n", GetLastError());
104 return;
105 }
106
108 if (hStopEvent == NULL)
109 {
110 DPRINT1("CreateEvent() failed! (Error %lu)\n", GetLastError());
111 goto done;
112 }
113
115
118
119done:
121}
122
125 DWORD fdwReason,
127{
128 switch (fdwReason)
129 {
132 break;
133
135 break;
136 }
137
138 return TRUE;
139}
static SERVICE_STATUS_HANDLE(WINAPI *pRegisterServiceCtrlHandlerExA)(LPCSTR
static int argc
Definition: ServiceArgs.c:12
#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:317
#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:124
static DWORD WINAPI ServiceControlHandler(DWORD dwControl, DWORD dwEventType, LPVOID lpEventData, LPVOID lpContext)
Definition: wuauserv.c:49
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:91
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