1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467
|
/*___INFO__MARK_BEGIN__*/
/*************************************************************************
*
* The Contents of this file are made available subject to the terms of
* the Sun Industry Standards Source License Version 1.2
*
* Sun Microsystems Inc., March, 2001
*
*
* Sun Industry Standards Source License Version 1.2
* =================================================
* The contents of this file are subject to the Sun Industry Standards
* Source License Version 1.2 (the "License"); You may not use this file
* except in compliance with the License. You may obtain a copy of the
* License at http://gridengine.sunsource.net/Gridengine_SISSL_license.html
*
* Software provided under this License is provided on an "AS IS" basis,
* WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING,
* WITHOUT LIMITATION, WARRANTIES THAT THE SOFTWARE IS FREE OF DEFECTS,
* MERCHANTABLE, FIT FOR A PARTICULAR PURPOSE, OR NON-INFRINGING.
* See the License for the specific provisions governing your rights and
* obligations concerning the Software.
*
* The Initial Developer of the Original Code is: Sun Microsystems, Inc.
*
* Copyright: 2001 by Sun Microsystems, Inc.
*
* All Rights Reserved.
*
************************************************************************/
/*___INFO__MARK_END__*/
#include <afxtempl.h>
#include <afxmt.h>
#include <winsock2.h>
#include <stdio.h>
#include <sys/types.h>
#include <sys/stat.h>
#include "Job.h"
#include "JobList.h"
#include "JobStart.h"
#include "SGE_Helper_Service.h"
#include "ServiceInstaller.h"
#include "Communication.h"
// constants
// name, display name and description of the service in "Services" dialog
// of control panel
static const char g_szServiceName[] = "SGE_Helper_Service.exe";
static const char g_szServiceDisplayName[] = "Sun Grid Engine Helper Service";
static const char g_szServiceDescription[] = "Enables Sun Grid Engine "
"execution host functionality to let jobs "
"display their GUI to the visible desktop.";
// internal name of the service handler
static const char g_szServiceHandlerName[] = "Sun Grid Engine Helper Service Handler";
// global variables
HANDLE g_hWinstaACLMutex = NULL;
HANDLE g_hDeskACLMutex = NULL;
C_Communication g_Communication;
C_JobList g_JobList;
BOOL g_bAcceptJobs = TRUE;
int g_Port = 0;
BOOL g_bDoLogging = FALSE;
// module variables
static SERVICE_STATUS_HANDLE g_hServiceStatus = NULL;
static BOOL g_bRunning = TRUE;
// function forward declarations
static void WINAPI SunGridEngineHelperServiceStart(DWORD dwArgc, LPTSTR *lpszArgv);
static DWORD WINAPI SunGridEngineHelperServiceHandlerEx(DWORD dwControl,
DWORD dwEventType, LPVOID lpEventData, LPVOID lpContext);
static void PrintHelp(const char *pszExecutableName, const char *pszServiceName);
static void ServiceError();
/****** main() ****************************************************************
* NAME
* main() -- starting point of the executable
*
* SYNOPSIS
* int main(int argc, char *argv[]);
*
* FUNCTION
* A Windows Service works this way:
* When the service is started, either automatically at boot time or manually,
* main() gets called by the ServiceControlManager (SCM).
*
* main() has to register the Control Dispatcher Thread to the SCM. The Control
* Dispatcher Thread gets called by the SCM,
*
* INPUTS
* int argc - number of command line arguments
* char *argv[] - array of arguments
*
* RESULT
* int - exit status of the executable
* 0: no errors
* 1: installation or uninstallation of service failed
* TODO: Document all error codes
*
* NOTES
*******************************************************************************/
int main(int argc, char *argv[])
{
int ret = 0;
SERVICE_TABLE_ENTRY DispatchTable[] = {
{(LPSTR)g_szServiceName, SunGridEngineHelperServiceStart},
{NULL, NULL}};
if(argc==2) {
if(strnicmp(argv[1], "-install", 8)==0) {
ret = InstallService(argv[0], g_szServiceName,
g_szServiceDisplayName, g_szServiceDescription);
} else if(strnicmp(argv[1], "-uninstall", 10)==0) {
ret = UninstallService(g_szServiceName);
} else if((g_Port=atoi(argv[1]))!=0) {
if(!StartServiceCtrlDispatcher(DispatchTable)) {
SvcDebugOut("[%s] StartServiceCtrlDispatcher error = %d\n",
g_szServiceDisplayName, GetLastError());
ret = 7;
}
} else {
PrintHelp(argv[0], g_szServiceDisplayName);
}
} else if(argc==1) {
// Start Execd Helper Service
if(!StartServiceCtrlDispatcher(DispatchTable)) {
SvcDebugOut("[%s] StartServiceCtrlDispatcher error = %d\n",
g_szServiceDisplayName, GetLastError());
ret = 7;
}
} else {
PrintHelp(argv[0], g_szServiceDisplayName);
}
return ret;
}
/****** SunGridEngineHelperServiceHandlerEx() *********************************
* NAME
* SunGridEngineHelperServiceHandlerEx() -- handler for the service that is
* invoked by the service control manager
*
* SYNOPSIS
* DWORD WINAPI SunGridEngineHelperServiceHandlerEx(DWORD dwControl,
* DWORD dwEventType,
* LPVOID lpEventData,
* LPVOID lpContext)
*
* FUNCTION
* This handler is invoked by the service control manager when the service
* is to be started, stopped or altered.
* See HandlerEx() in Microsoft PlatformSDK documentation.
*
* Pause and continue are used to shutdown the service gracefully:
* First call pause, the service goes to pause mode and doesn't accept any
* new jobs. After this, call resume. Resume will fail as long as there
* are jobs running - if no job is left running, resume will succeed and
* stop the service.
*
* INPUTS
* DWORD dwControl - action that is to be performed
* DWORD dwEventType - more specific information for some actions
* LPVOID lpEventData - more specific information for some actions
* LPVOID lpContext - more specific information for some actions
*
* RESULT
* DWORD - NO_ERROR if no errors occured, see HandlerEx() in Microsoft
* PlatformSDK documentation for list of errors.
*
* NOTES
*******************************************************************************/
static DWORD WINAPI SunGridEngineHelperServiceHandlerEx(DWORD dwControl,
DWORD dwEventType,
LPVOID lpEventData,
LPVOID lpContext)
{
SERVICE_STATUS SvcStatus;
SvcStatus.dwServiceType = SERVICE_WIN32_OWN_PROCESS
|SERVICE_INTERACTIVE_PROCESS;
SvcStatus.dwControlsAccepted = SERVICE_ACCEPT_SHUTDOWN
|SERVICE_ACCEPT_STOP
|SERVICE_ACCEPT_PAUSE_CONTINUE;
SvcStatus.dwWin32ExitCode = NO_ERROR;
SvcStatus.dwServiceSpecificExitCode = 0;
SvcStatus.dwCheckPoint = 0;
SvcStatus.dwWaitHint = 1000;
switch(dwControl) {
case SERVICE_CONTROL_STOP:
SvcStatus.dwCurrentState = SERVICE_STOPPED;
if(!SetServiceStatus(g_hServiceStatus, &SvcStatus)) {
ServiceError();
}
g_bRunning = FALSE;
break;
case SERVICE_CONTROL_PAUSE:
g_bAcceptJobs = FALSE;
SvcStatus.dwCurrentState = SERVICE_PAUSED;
if(!SetServiceStatus(g_hServiceStatus, &SvcStatus)) {
ServiceError();
}
break;
case SERVICE_CONTROL_CONTINUE:
if(g_JobList.IsEmpty()) {
g_bRunning = FALSE;
SvcStatus.dwCurrentState = SERVICE_STOPPED;
} else {
SvcStatus.dwCurrentState = SERVICE_PAUSED;
}
if(!SetServiceStatus(g_hServiceStatus, &SvcStatus)) {
ServiceError();
}
break;
case SERVICE_CONTROL_INTERROGATE:
break;
default:
SvcDebugOut("[%s] Unrecognized opcode %ld\n",
g_szServiceDisplayName, dwControl);
}
return NO_ERROR;
}
/****** SunGridEngineHelperServiceStart() *********************************************
* NAME
* SunGridEngineHelperServiceStart() -- starting point of the service
*
* SYNOPSIS
* void WINAPI SunGridEngineHelperServiceStart(DWORD dwArgc, LPTSTR *lpszArgv)
*
* FUNCTION
* This is the starting point of the service that is called by the
* service manager when the service is started.
*
* INPUTS
* DWORD dwArgc - number of arguments
* LPTSTR *lpszArgv - argument list
*
* RESULT
* void - no result
*
* NOTES
*******************************************************************************/
static void WINAPI SunGridEngineHelperServiceStart(DWORD dwArgc, LPTSTR *lpszArgv)
{
SERVICE_STATUS ServiceStatus;
DWORD dwStatus = 0;
int ret;
char job_result[] = "done";
// Parse command line options
for (DWORD i=1; i<dwArgc; i++) {
if (strcmp(lpszArgv[i], "-log") == 0) {
g_bDoLogging = TRUE;
break;
}
}
WriteToLogFile("Starting %s.", g_szServiceDisplayName);
ServiceStatus.dwServiceType = SERVICE_WIN32_OWN_PROCESS
|SERVICE_INTERACTIVE_PROCESS;
ServiceStatus.dwCurrentState = SERVICE_RUNNING;
ServiceStatus.dwControlsAccepted = SERVICE_ACCEPT_SHUTDOWN
|SERVICE_ACCEPT_STOP
|SERVICE_ACCEPT_PAUSE_CONTINUE;
ServiceStatus.dwWin32ExitCode = NO_ERROR;
ServiceStatus.dwServiceSpecificExitCode = 0;
ServiceStatus.dwCheckPoint = 0;
ServiceStatus.dwWaitHint = 1000;
g_hServiceStatus = RegisterServiceCtrlHandlerEx(g_szServiceName,
SunGridEngineHelperServiceHandlerEx, NULL);
if(g_hServiceStatus == (SERVICE_STATUS_HANDLE)0) {
SvcDebugOut("[%s] RegisterServiceCtrlHandler failed %d\n",
g_szServiceDisplayName, GetLastError());
return;
}
if(!SetServiceStatus(g_hServiceStatus, &ServiceStatus)) {
dwStatus = GetLastError();
SvcDebugOut("[%s] SetServiceStatus error %ld\n",
g_szServiceDisplayName, dwStatus);
}
WriteToLogFile("%s started successfully.", g_szServiceDisplayName);
g_hWinstaACLMutex = CreateMutex(NULL, FALSE, "WinstaACLMutex");
g_hDeskACLMutex = CreateMutex(NULL, FALSE, "DeskACLMutex");
// listen on port
ret = g_Communication.InitComm();
if(ret != 0) {
g_bRunning = FALSE;
}
// Main loop
while(g_bRunning == TRUE) {
ret = g_Communication.DoComm();
if(ret != 0) {
g_bRunning = FALSE;
}
}
g_Communication.ExitComm();
CloseHandle(g_hWinstaACLMutex);
CloseHandle(g_hDeskACLMutex);
}
/****** PrintHelp() ***********************************************************
* NAME
* PrintHelp() - prints usage information to stdout
*
* SYNOPSIS
* void PrintHelp(const char *pszExecutableName, const char *pszServiceName)
*
* FUNCTION
* Prints usage information to stdout
*
* INPUTS
* const char* pszExecutableName - name of the executable (use argv[0])
* const char* pszServiceName - display name of the service
*
* RESULT
* void - no result
*
* NOTES
*******************************************************************************/
static void PrintHelp(const char *pszExecutableName, const char *pszServiceName)
{
printf("%s -install | -uninstall | -help\n"
" -install Installs %s\n"
" -uninstall Uninstalls %s\n"
" -help Displays this help\n",
pszExecutableName, pszServiceName, pszServiceName);
}
/****** SvcDebugOut() *********************************************************
* NAME
* SvcDebugOutput() - prints error messages to the debugger
*
* SYNOPSIS
* void SvcDebugOut(LPSTR String, ...)
*
* FUNCTION
* Prints error messages to the debugger
*
* INPUTS
* LPSTR String - format string of error message
* ... - parameters of error message
*
* RESULT
* void - no result
*
* NOTES
*******************************************************************************/
void SvcDebugOut(LPSTR String, ...)
{
char Buffer[1024];
va_list args;
va_start(args, String);
_vsnprintf(Buffer, 1023, String, args);
OutputDebugStringA(Buffer);
}
/****** ServiceError() ********************************************************
* NAME
* ServiceError() -- Writes the last error to the debugger
*
* SYNOPSIS
* static void ServiceError()
*
* FUNCTION
* Prints the last error (GetLastError()) to the debugger.
*
* RESULT
* void - no result
*******************************************************************************/
static void ServiceError()
{
DWORD dwStatus = GetLastError();
SvcDebugOut("[%s] SetServiceStatus error %ld\n",
g_szServiceDisplayName, dwStatus);
}
/****** WriteToLogFile() *******************************************************
* NAME
* WriteToLogFile() -- writes a message to a log file
*
* SYNOPSIS
* int WriteToLogFile(const char *szMessage, ...)
*
* FUNCTION
* Writes a message to a log file. For debugging purposes only.
*
* INPUTS
* const char *szMessage - the format string of the message
* ... - the parameters of the message (see printf())
*
* RESULT
* int - 0 if message was written to log file, 1 else
* 2 if logging is disabled
*
* NOTES
*******************************************************************************/
int WriteToLogFile(const char *szMessage, ...)
{
int ret = 1;
FILE *fp = NULL;
SYSTEMTIME sysTime;
va_list args;
char Buffer[4096];
DWORD dwLastError;
static BOOL g_bFirstTime = TRUE;
static char g_szTraceFile[5000];
if (g_bDoLogging == FALSE) {
return 2;
}
// We do not want to change LastError in here.
dwLastError = GetLastError();
GetLocalTime(&sysTime);
// If we don't have a trace file yet, create it's name.
if (g_bFirstTime == TRUE) {
g_bFirstTime = FALSE;
// The trace file name is $TEMP\SGE_Helper_Service.log
// e.g. "C:\Temp\SGE_Helper_Service.log"
strcpy(Buffer, "C:\\TEMP");
GetEnvironmentVariable("TEMP", Buffer, 4095);
_snprintf(g_szTraceFile, 4999, "%s\\SGE_Helper_Service.log", Buffer);
}
fp = fopen(g_szTraceFile, "a+");
if (fp == NULL) {
// Create a "panic" trace file
sprintf(g_szTraceFile, "c:\\Temp\\SGE_Helper_Service.%02d%02d%02d.log",
sysTime.wHour, sysTime.wMinute, sysTime.wSecond);
fp = fopen(g_szTraceFile, "a+");
}
if(fp != NULL) {
va_start(args, szMessage);
_vsnprintf(Buffer, 4095, szMessage, args);
fprintf(fp, "%02d:%02d:%02d [SGE_Helper_Service] %s\n",
sysTime.wHour, sysTime.wMinute, sysTime.wSecond, Buffer);
fflush(fp);
fclose(fp);
ret = 0;
}
SetLastError(dwLastError);
return ret;
}
|