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
|
/*
* $Id: service.c,v 1.1 2005/04/13 17:00:29 baud Exp $
*/
/*
* Copyright (C) 1990-1999 by CERN/IT/PDP/IP
* All rights reserved
*/
#ifndef lint
static char sccsid[] = "@(#)$RCSfile: service.c,v $ $Revision: 1.1 $ $Date: 2005/04/13 17:00:29 $ CERN/IT/PDP/DM Aneta Baran";
#endif /* not lint */
#if defined(_WIN32)
#include <stdio.h>
#include <windows.h>
#include "syslog.h"
#include "log.h"
HANDLE exit_event = NULL;
SERVICE_STATUS_HANDLE rfiod_stat_handle;
int rfiod_paused = 0;
int rfiod_running = 0;
HANDLE rfiod_handle = 0;
char *argv0;
int standalone = 0; /* standalone flag */
char logfile[128]; /* log file name buffer */
extern int debug = 0; /* Debug flag */
extern int port = 0; /* Non-standard port */
extern int logging = 0; /* Default not to log */
extern int singlethread = 0; /* Single threaded */
extern int lfname = 0; /* log file given */
extern int rfiod( void );
int rfiod_main(int argc, char *argv[]);
int rfiod_init()
{
DWORD id;
rfiod_handle = CreateThread(0, 0, (LPTHREAD_START_ROUTINE)rfiod, 0, 0, &id);
if( rfiod_handle == NULL ) return -1;
else {
rfiod_running = 1;
return 0;
}
}
void rfiod_resume()
{
rfiod_paused = 0;
ResumeThread(rfiod_handle);
}
void rfiod_pause()
{
rfiod_paused = 1;
SuspendThread(rfiod_handle);
}
void rfiod_stop()
{
rfiod_running = 0;
SetEvent(exit_event);
}
int send_status_to_SCM(curr_stat, exit_code, rfiod_exit_code, check_point, wait_hint)
DWORD curr_stat, exit_code, rfiod_exit_code, check_point, wait_hint;
{
SERVICE_STATUS rfiod_stat;
int rcode;
rfiod_stat.dwServiceType = SERVICE_WIN32_OWN_PROCESS;
rfiod_stat.dwCurrentState = curr_stat;
if( curr_stat == SERVICE_START_PENDING )
rfiod_stat.dwControlsAccepted = 0;
else
rfiod_stat.dwControlsAccepted = SERVICE_ACCEPT_STOP | SERVICE_ACCEPT_PAUSE_CONTINUE
| SERVICE_ACCEPT_SHUTDOWN;
if ( rfiod_exit_code == 0 )
rfiod_stat.dwWin32ExitCode = rfiod_exit_code;
else
rfiod_stat.dwWin32ExitCode = ERROR_SERVICE_SPECIFIC_ERROR;
rfiod_stat.dwServiceSpecificExitCode = rfiod_exit_code;
rcode = SetServiceStatus(rfiod_stat_handle, &rfiod_stat);
if( rcode == 0 )
rfiod_stop();
return rcode;
}
void rfiod_ctrl_handler(code)
DWORD code;
{
DWORD curr_stat = 0;
int rcode;
switch(code) {
case SERVICE_CONTROL_STOP:
curr_stat = SERVICE_STOP_PENDING;
rcode = send_status_to_SCM(SERVICE_STOP_PENDING, NO_ERROR, 0, 1, 5000);
rfiod_stop();
return;
case SERVICE_CONTROL_PAUSE:
if( rfiod_running && !rfiod_paused) {
rcode = send_status_to_SCM(SERVICE_PAUSE_PENDING, NO_ERROR, 0, 1, 1000);
rfiod_pause();
curr_stat = SERVICE_PAUSED;
}
break;
case SERVICE_CONTROL_CONTINUE:
if(rfiod_running && rfiod_paused) {
rcode = send_status_to_SCM(SERVICE_CONTINUE_PENDING, NO_ERROR, 0, 1, 1000);
rfiod_resume();
curr_stat = SERVICE_RUNNING;
}
break;
case SERVICE_CONTROL_INTERROGATE:
break;
case SERVICE_CONTROL_SHUTDOWN:
break;
default:
break;
} /* end switch(code) */
send_status_to_SCM(curr_stat, NO_ERROR, 0, 0, 0);
}
void terminate(error)
DWORD error;
{
if(exit_event) CloseHandle(exit_event);
if(rfiod_stat_handle) send_status_to_SCM(SERVICE_STOPPED, error, 0, 0, 0);
if(rfiod_handle) CloseHandle(rfiod_handle);
}
main() {
int rcode;
SERVICE_TABLE_ENTRY rfiod_table[] = {
{ "rfiod", (LPSERVICE_MAIN_FUNCTION)rfiod_main },
{ NULL, NULL }
};
/* openlog("rfiod", LOG_INFO, LOG_DAEMON);
(void) initlog("rfiod", LOG_INFO, "syslog");*/
rcode = StartServiceCtrlDispatcher(rfiod_table);
if( rcode == 0 ) {
perror("StartServiceCtrlDispatcher");
exit(1);
}
}
rfiod_main(argc, argv)
int argc;
char *argv[];
{
extern int opterr, optind; /* required by getopt(3)*/
extern char *optarg; /* required by getopt(3)*/
register int option;
int rcode;
/*
* immediately call registration function
*/
rfiod_stat_handle = RegisterServiceCtrlHandler("rfiod", (LPHANDLER_FUNCTION)rfiod_ctrl_handler);
if( rfiod_stat_handle == 0 ) {
terminate(GetLastError());
return 1;
}
rcode = send_status_to_SCM(SERVICE_START_PENDING, NO_ERROR, 0, 1, 5000);
if(rcode == 0) {
terminate(GetLastError());
return 1;
}
openlog("rfiod", LOG_INFO, LOG_DAEMON);
(void) initlog("rfiod", LOG_INFO, "syslog");
rcode = send_status_to_SCM(SERVICE_START_PENDING, NO_ERROR, 0, 1, 5000);
if(rcode == 0) {
terminate(GetLastError());
return 1;
}
exit_event = CreateEvent(0, TRUE, FALSE, 0);
if( exit_event == NULL ) {
terminate(GetLastError());
syslog(LOG_ERR, "CreateEvent: errno=%d",GetLastError());
return 1;
}
rcode = send_status_to_SCM(SERVICE_START_PENDING, NO_ERROR, 0, 1, 5000);
if(rcode == 0) {
terminate(GetLastError());
return 1;
}
while ((option = getopt(argc,argv,"sdltf:p:")) != EOF) {
switch (option) {
case 'd': debug++;
break;
case 's': standalone++;
break;
case 'f':
lfname++;
strcpy(logfile,optarg);
break;
case 'l':
logging++;
break;
case 't':
singlethread++;
break;
case 'p':
port=atoi(optarg);
break;
}
}
rcode = send_status_to_SCM(SERVICE_START_PENDING, NO_ERROR, 0, 1, 5000);
if(rcode == 0) {
terminate(GetLastError());
return 1;
}
argv0 = (char*)malloc(strlen(argv[0])+1);
if( argv0 == NULL ) {
terminate(GetLastError());
return errno;
}
rcode = send_status_to_SCM(SERVICE_START_PENDING, NO_ERROR, 0, 1, 5000);
if(rcode == 0) {
terminate(GetLastError());
return 1;
}
strcpy(argv0, argv[0]);
rcode = rfiod_init();
if(rcode) {
terminate(GetLastError());
return 1;
}
/* service is now running... */
rcode = send_status_to_SCM(SERVICE_RUNNING, NO_ERROR, 0, 0, 0);
if(rcode == 0) {
terminate(GetLastError());
return 1;
}
WaitForSingleObject(exit_event, INFINITE);
terminate(0);
}
#endif /* WIN32 */
|