X-Git-Url: https://git.netwichtig.de/gitweb/?a=blobdiff_plain;f=win%2Fwin32service.cpp;h=5923c1458cf2660f9ee0738343710105b0b8fb65;hb=a6cf47a2cd96c459bfc241c6dce8ca8454140484;hp=0fb94f3e43370a655f687aae420f16ae141120f3;hpb=6a149a4718ead139535ae038c2d8f8847f1a594c;p=user%2Fhenk%2Fcode%2Finspircd.git diff --git a/win/win32service.cpp b/win/win32service.cpp index 0fb94f3e4..5923c1458 100644 --- a/win/win32service.cpp +++ b/win/win32service.cpp @@ -40,6 +40,16 @@ struct Commandline /* A function pointer for dynamic linking tricks */ SETSERVDESC ChangeServiceConf; +bool IsAService(); +{ + USEROBJECTFLAGS uoflags; + HWINSTA winstation = GetProcessWindowStation(); + if (GetUserObjectInformation(winstation, UOI_FLAGS, &uoflags, sizeof(uoflags), NULL)) + return ((uoflags.dwFlags & WSF_VISIBLE) == 0); + else + return false; +} + /* Kills the service by setting an event which the other thread picks up and exits */ void KillService() { @@ -61,6 +71,22 @@ DWORD WINAPI WorkerThread(LPDWORD param) return 0; } +/* This is called when all startup is done */ +void SetServiceRunning() +{ + if (!IsAService()) + return; + + serviceCurrentStatus = SERVICE_RUNNING; + success = UpdateSCMStatus(SERVICE_RUNNING, NO_ERROR, 0, 0, 0); + if (!success) + { + terminateService(6, GetLastError()); + return; + } +} + + /** Starts the worker thread above */ void StartServiceThread() { @@ -110,10 +136,22 @@ BOOL UpdateSCMStatus (DWORD dwCurrentState, DWORD dwWin32ExitCode, DWORD dwServi /** This function is called by us when the service is being shut down or when it can't be started */ void terminateService (int code, int wincode) { - UpdateSCMStatus(SERVICE_STOPPED,wincode?wincode:ERROR_SERVICE_SPECIFIC_ERROR,(wincode)?0:code,0,0); + UpdateSCMStatus(SERVICE_STOPPED, wincode ? wincode : ERROR_SERVICE_SPECIFIC_ERROR, wincode ? 0 : code, 0, 0); return; } +/* In windows we hook this to exit() */ +void newexit(int status) +{ + if (!IsAService()) + exit(status); + + /* Are we running as a service? If so, trigger the service specific exit code */ + terminateService(status, 0); + KillService(); + exit(status); +} + /** This callback is called by windows when the state of the service has been changed */ VOID ServiceCtrlHandler (DWORD controlCode) { @@ -171,13 +209,6 @@ VOID ServiceMain(DWORD argc, LPTSTR *argv) } StartServiceThread(); - serviceCurrentStatus = SERVICE_RUNNING; - success = UpdateSCMStatus(SERVICE_RUNNING, NO_ERROR, 0, 0, 0); - if (!success) - { - terminateService(6, GetLastError()); - return; - } WaitForSingleObject (killServiceEvent, INFINITE); } @@ -323,13 +354,8 @@ int main(int argc, char** argv) /* Check if the process is running interactively. InspIRCd does not run interactively * as a service so if this is true, we just run the non-service inspircd. */ - USEROBJECTFLAGS uoflags; - HWINSTA winstation = GetProcessWindowStation(); - if (GetUserObjectInformation(winstation, UOI_FLAGS, &uoflags, sizeof(uoflags), NULL)) - { - if (uoflags.dwFlags == WSF_VISIBLE) - return smain(argc, argv); - } + if (!IsAService()) + return smain(argv, argc); /* If we get here, we know the service is installed so we can start it */