2005-11-19 20:07:43 +00:00
|
|
|
/*
|
|
|
|
* FreeSWITCH Modular Media Switching Software Library / Soft-Switch Application
|
|
|
|
* Copyright (C) 2005/2006, Anthony Minessale II <anthmct@yahoo.com>
|
|
|
|
*
|
|
|
|
* Version: MPL 1.1
|
|
|
|
*
|
|
|
|
* The contents of this file are subject to the Mozilla Public License Version
|
|
|
|
* 1.1 (the "License"); you may not use this file except in compliance with
|
|
|
|
* the License. You may obtain a copy of the License at
|
|
|
|
* http://www.mozilla.org/MPL/
|
|
|
|
*
|
|
|
|
* Software distributed under the License is distributed on an "AS IS" basis,
|
|
|
|
* WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
|
|
|
|
* for the specific language governing rights and limitations under the
|
|
|
|
* License.
|
|
|
|
*
|
|
|
|
* The Original Code is FreeSWITCH Modular Media Switching Software Library / Soft-Switch Application
|
|
|
|
*
|
|
|
|
* The Initial Developer of the Original Code is
|
|
|
|
* Anthony Minessale II <anthmct@yahoo.com>
|
|
|
|
* Portions created by the Initial Developer are Copyright (C)
|
|
|
|
* the Initial Developer. All Rights Reserved.
|
|
|
|
*
|
|
|
|
* Contributor(s):
|
|
|
|
*
|
|
|
|
* Anthony Minessale II <anthmct@yahoo.com>
|
2006-09-18 05:08:55 +00:00
|
|
|
* Michael Jerris <mike@jerris.com>
|
2005-11-19 20:07:43 +00:00
|
|
|
*
|
|
|
|
*
|
|
|
|
* switch.c -- Main
|
|
|
|
*
|
|
|
|
*/
|
2006-02-28 21:21:48 +00:00
|
|
|
|
2005-11-19 20:07:43 +00:00
|
|
|
#include <switch.h>
|
2006-08-18 21:57:47 +00:00
|
|
|
|
|
|
|
#define PIDFILE "freeswitch.pid"
|
|
|
|
#define LOGFILE "freeswitch.log"
|
2006-09-20 20:25:26 +00:00
|
|
|
|
2006-08-18 21:57:47 +00:00
|
|
|
static char *lfile = LOGFILE;
|
|
|
|
static char *pfile = PIDFILE;
|
2006-08-20 03:04:55 +00:00
|
|
|
#define SERVICENAME "Freeswitch"
|
2006-08-18 21:57:47 +00:00
|
|
|
|
|
|
|
#ifdef __ICC
|
|
|
|
#pragma warning (disable:167)
|
|
|
|
#endif
|
2006-02-23 22:41:08 +00:00
|
|
|
|
2006-02-26 03:13:01 +00:00
|
|
|
|
2006-08-19 18:51:22 +00:00
|
|
|
#ifdef WIN32
|
2006-08-20 03:04:55 +00:00
|
|
|
#include <winsock2.h>
|
|
|
|
#include <windows.h>
|
2006-08-19 18:51:22 +00:00
|
|
|
static HANDLE shutdown_event;
|
|
|
|
#endif
|
2006-02-26 03:13:01 +00:00
|
|
|
|
2006-10-02 16:48:00 +00:00
|
|
|
static void handle_SIGHUP(int sig)
|
2006-02-23 22:41:08 +00:00
|
|
|
{
|
2006-09-20 20:25:26 +00:00
|
|
|
uint32_t arg = 0;
|
2006-03-30 23:02:50 +00:00
|
|
|
if(sig);
|
2006-09-20 20:25:26 +00:00
|
|
|
switch_core_session_ctl(SCSC_SHUTDOWN, &arg);
|
2006-10-02 16:48:00 +00:00
|
|
|
return;
|
2006-02-23 22:41:08 +00:00
|
|
|
}
|
|
|
|
|
2006-03-01 17:06:10 +00:00
|
|
|
|
2006-08-18 21:57:47 +00:00
|
|
|
static int freeswitch_kill_background()
|
|
|
|
{
|
2006-08-19 18:51:22 +00:00
|
|
|
FILE *f;
|
2006-08-18 21:57:47 +00:00
|
|
|
char path[256] = "";
|
|
|
|
pid_t pid = 0;
|
2006-08-20 03:04:55 +00:00
|
|
|
switch_core_set_globals();
|
2006-08-18 21:57:47 +00:00
|
|
|
snprintf(path, sizeof(path), "%s%s%s", SWITCH_GLOBAL_dirs.log_dir, SWITCH_PATH_SEPARATOR, pfile);
|
|
|
|
if ((f = fopen(path, "r")) == 0) {
|
|
|
|
fprintf(stderr, "Cannot open pid file %s.\n", path);
|
2006-03-01 17:06:10 +00:00
|
|
|
return 255;
|
|
|
|
}
|
2006-08-18 21:57:47 +00:00
|
|
|
fscanf(f, "%d", &pid);
|
|
|
|
if (pid > 0) {
|
2006-08-19 18:51:22 +00:00
|
|
|
fprintf(stderr, "Killing: %d\n", (int) pid);
|
|
|
|
#ifdef WIN32
|
|
|
|
snprintf(path, sizeof(path), "Global\\Freeswitch.%d", pid);
|
2006-08-19 19:00:35 +00:00
|
|
|
shutdown_event = OpenEvent(EVENT_MODIFY_STATE, FALSE, path);
|
|
|
|
if (!shutdown_event) {
|
|
|
|
/* we can't get the event, so we can't signal the process to shutdown */
|
2006-08-19 18:51:22 +00:00
|
|
|
fprintf(stderr, "ERROR: Can't Shutdown: %d\n", (int) pid);
|
2006-08-19 19:00:35 +00:00
|
|
|
} else {
|
|
|
|
SetEvent(shutdown_event);
|
|
|
|
}
|
|
|
|
CloseHandle(shutdown_event);
|
2006-08-19 18:51:22 +00:00
|
|
|
#else
|
2006-08-18 21:57:47 +00:00
|
|
|
kill(pid, SIGTERM);
|
2006-03-30 23:02:50 +00:00
|
|
|
#endif
|
2006-08-18 21:57:47 +00:00
|
|
|
}
|
2006-03-01 17:06:10 +00:00
|
|
|
|
2006-08-19 18:51:22 +00:00
|
|
|
fclose(f);
|
2006-08-18 21:57:47 +00:00
|
|
|
return 0;
|
|
|
|
}
|
2006-08-11 23:27:08 +00:00
|
|
|
|
2006-08-20 03:04:55 +00:00
|
|
|
#ifdef WIN32
|
2006-08-20 03:36:14 +00:00
|
|
|
SERVICE_STATUS_HANDLE hStatus;
|
|
|
|
SERVICE_STATUS status;
|
|
|
|
|
|
|
|
void WINAPI ServiceCtrlHandler( DWORD control )
|
|
|
|
{
|
|
|
|
switch( control )
|
|
|
|
{
|
|
|
|
case SERVICE_CONTROL_SHUTDOWN:
|
|
|
|
case SERVICE_CONTROL_STOP:
|
|
|
|
// do shutdown stuff here
|
|
|
|
switch_core_destroy();
|
|
|
|
status.dwCurrentState = SERVICE_STOPPED;
|
|
|
|
status.dwWin32ExitCode = 0;
|
|
|
|
status.dwCheckPoint = 0;
|
|
|
|
status.dwWaitHint = 0;
|
|
|
|
break;
|
|
|
|
case SERVICE_CONTROL_INTERROGATE:
|
|
|
|
// just set the current state to whatever it is...
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
SetServiceStatus( hStatus, &status );
|
|
|
|
}
|
|
|
|
|
|
|
|
void WINAPI service_main( DWORD numArgs, char **args )
|
|
|
|
{
|
2006-08-20 03:04:55 +00:00
|
|
|
const char *err = NULL;
|
2006-08-20 03:36:14 +00:00
|
|
|
// we have to initialize the service-specific stuff
|
|
|
|
memset( &status, 0, sizeof(SERVICE_STATUS) );
|
|
|
|
status.dwServiceType = SERVICE_WIN32;
|
|
|
|
status.dwCurrentState = SERVICE_START_PENDING;
|
|
|
|
status.dwControlsAccepted = SERVICE_ACCEPT_STOP;
|
|
|
|
|
|
|
|
hStatus = RegisterServiceCtrlHandler( SERVICENAME, &ServiceCtrlHandler );
|
|
|
|
|
|
|
|
SetServiceStatus( hStatus, &status );
|
2006-08-20 03:04:55 +00:00
|
|
|
set_high_priority();
|
|
|
|
if (switch_core_init_and_modload(lfile, &err) != SWITCH_STATUS_SUCCESS) {
|
2006-08-20 03:36:14 +00:00
|
|
|
status.dwCurrentState = SERVICE_STOPPED;
|
2006-08-20 03:04:55 +00:00
|
|
|
} else {
|
|
|
|
status.dwCurrentState = SERVICE_RUNNING;
|
|
|
|
}
|
2006-08-20 03:36:14 +00:00
|
|
|
|
|
|
|
SetServiceStatus( hStatus, &status );
|
|
|
|
}
|
|
|
|
|
2006-08-20 03:04:55 +00:00
|
|
|
#endif
|
|
|
|
|
2006-08-18 21:57:47 +00:00
|
|
|
int main(int argc, char *argv[])
|
|
|
|
{
|
|
|
|
char path[256] = "";
|
|
|
|
char *ppath = NULL;
|
|
|
|
const char *err = NULL;
|
|
|
|
int bg = 0;
|
|
|
|
FILE *f;
|
2006-08-19 18:51:22 +00:00
|
|
|
pid_t pid = 0;
|
2006-09-20 20:25:26 +00:00
|
|
|
int x, die = 0;
|
2006-05-05 13:35:33 +00:00
|
|
|
|
2006-08-20 03:04:55 +00:00
|
|
|
#ifdef WIN32
|
|
|
|
SERVICE_TABLE_ENTRY dispatchTable[] =
|
|
|
|
{
|
|
|
|
{ SERVICENAME, &service_main },
|
|
|
|
{ NULL, NULL }
|
|
|
|
};
|
2006-09-20 20:25:26 +00:00
|
|
|
#endif
|
2006-08-20 03:04:55 +00:00
|
|
|
|
2006-09-20 20:25:26 +00:00
|
|
|
for (x = 1; x < argc; x++) {
|
|
|
|
#ifdef WIN32
|
|
|
|
if (x == 1) {
|
|
|
|
if (argv[x] && !strcmp(argv[x], "-service")) {
|
|
|
|
if(StartServiceCtrlDispatcher( dispatchTable ) == 0 )
|
|
|
|
{
|
|
|
|
//Not loaded as a service
|
|
|
|
fprintf(stderr, "Error Freeswitch loaded as a console app with -service option\n");
|
|
|
|
fprintf(stderr, "To install the service load freeswitch with -install\n");
|
|
|
|
}
|
|
|
|
exit(0);
|
|
|
|
}
|
|
|
|
if (argv[x] && !strcmp(argv[x], "-install")) {
|
|
|
|
char exePath[1024];
|
|
|
|
char servicePath[1024];
|
|
|
|
|
|
|
|
SC_HANDLE handle = OpenSCManager( NULL, NULL, SC_MANAGER_ALL_ACCESS );
|
|
|
|
GetModuleFileName( NULL, exePath, 1024 );
|
|
|
|
snprintf(servicePath, sizeof(servicePath), "%s -service", exePath);
|
|
|
|
CreateService(
|
|
|
|
handle,
|
|
|
|
SERVICENAME,
|
|
|
|
SERVICENAME,
|
|
|
|
GENERIC_READ | GENERIC_EXECUTE,
|
|
|
|
SERVICE_WIN32_OWN_PROCESS,
|
|
|
|
SERVICE_AUTO_START,
|
|
|
|
SERVICE_ERROR_IGNORE,
|
|
|
|
servicePath,
|
|
|
|
NULL,
|
|
|
|
NULL,
|
|
|
|
NULL,
|
|
|
|
NULL,
|
|
|
|
NULL
|
|
|
|
);
|
|
|
|
exit(0);
|
|
|
|
}
|
|
|
|
if (argv[x] && !strcmp(argv[x], "-uninstall")) {
|
|
|
|
SC_HANDLE handle = OpenSCManager( NULL, NULL, SC_MANAGER_ALL_ACCESS );
|
|
|
|
SC_HANDLE service = OpenService( handle, SERVICENAME, DELETE );
|
|
|
|
if( service != NULL )
|
|
|
|
{
|
|
|
|
// remove the service!
|
|
|
|
DeleteService( service );
|
|
|
|
}
|
|
|
|
exit(0);
|
|
|
|
}
|
2006-08-20 03:36:14 +00:00
|
|
|
}
|
2006-08-20 03:04:55 +00:00
|
|
|
#endif
|
2006-09-20 20:25:26 +00:00
|
|
|
if (argv[x] && !strcmp(argv[x], "-hp")) {
|
|
|
|
set_high_priority();
|
|
|
|
}
|
|
|
|
|
|
|
|
if (argv[x] && !strcmp(argv[x], "-stop")) {
|
|
|
|
die++;
|
|
|
|
}
|
2006-08-20 03:04:55 +00:00
|
|
|
|
2006-09-20 20:25:26 +00:00
|
|
|
if (argv[x] && !strcmp(argv[x], "-nc")) {
|
|
|
|
bg++;
|
|
|
|
}
|
2006-08-18 21:57:47 +00:00
|
|
|
}
|
|
|
|
|
2006-09-20 20:25:26 +00:00
|
|
|
if (die) {
|
|
|
|
return freeswitch_kill_background();
|
2006-08-18 21:57:47 +00:00
|
|
|
}
|
2005-11-19 20:07:43 +00:00
|
|
|
|
2006-02-24 19:11:49 +00:00
|
|
|
if (bg) {
|
2006-08-18 21:57:47 +00:00
|
|
|
ppath = lfile;
|
|
|
|
|
2006-10-02 16:48:00 +00:00
|
|
|
signal(SIGHUP, handle_SIGHUP);
|
|
|
|
signal(SIGTERM, handle_SIGHUP);
|
2006-08-18 21:57:47 +00:00
|
|
|
|
2006-02-26 03:13:01 +00:00
|
|
|
#ifdef WIN32
|
2006-08-18 21:57:47 +00:00
|
|
|
FreeConsole();
|
|
|
|
#else
|
|
|
|
if ((pid = fork())) {
|
|
|
|
fprintf(stderr, "%d Backgrounding.\n", (int)pid);
|
|
|
|
exit(0);
|
2006-02-26 03:13:01 +00:00
|
|
|
}
|
|
|
|
#endif
|
2006-02-23 22:41:08 +00:00
|
|
|
}
|
2006-08-18 21:57:47 +00:00
|
|
|
|
2006-08-19 18:51:22 +00:00
|
|
|
if (switch_core_init_and_modload(ppath, &err) != SWITCH_STATUS_SUCCESS) {
|
2006-08-18 21:57:47 +00:00
|
|
|
fprintf(stderr, "Cannot Initilize [%s]\n", err);
|
|
|
|
return 255;
|
|
|
|
}
|
|
|
|
|
2006-08-20 03:04:55 +00:00
|
|
|
snprintf(path, sizeof(path), "%s%s%s", SWITCH_GLOBAL_dirs.log_dir, SWITCH_PATH_SEPARATOR, pfile);
|
|
|
|
if ((f = fopen(path, "w")) == 0) {
|
|
|
|
fprintf(stderr, "Cannot open pid file %s.\n", path);
|
|
|
|
return 255;
|
|
|
|
}
|
|
|
|
|
|
|
|
fprintf(f, "%d", pid = getpid());
|
|
|
|
fclose(f);
|
|
|
|
|
2006-09-20 20:25:26 +00:00
|
|
|
switch_core_runtime_loop(bg);
|
2006-08-18 21:57:47 +00:00
|
|
|
|
2006-08-19 18:51:22 +00:00
|
|
|
return switch_core_destroy();
|
2005-11-19 20:07:43 +00:00
|
|
|
}
|