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>
|
2007-01-19 12:59:49 +00:00
|
|
|
* Pawel Pierscionek <pawel@voiceworks.pl>
|
2007-02-06 17:05:14 +00:00
|
|
|
* Bret McDanel <trixter AT 0xdecafbad.com>
|
2005-11-19 20:07:43 +00:00
|
|
|
*
|
|
|
|
*
|
|
|
|
* switch.c -- Main
|
|
|
|
*
|
|
|
|
*/
|
2006-02-28 21:21:48 +00:00
|
|
|
|
2007-03-11 04:02:10 +00:00
|
|
|
#ifndef _XOPEN_SOURCE
|
2007-03-19 00:33:54 +00:00
|
|
|
#define _XOPEN_SOURCE 600
|
2007-03-11 04:02:10 +00:00
|
|
|
#endif
|
|
|
|
|
2005-11-19 20:07:43 +00:00
|
|
|
#include <switch.h>
|
2007-12-08 03:41:00 +00:00
|
|
|
#include "private/switch_core_pvt.h"
|
2006-08-18 21:57:47 +00:00
|
|
|
|
2007-03-02 05:53:45 +00:00
|
|
|
/* pid filename: Stores the process id of the freeswitch process */
|
2006-08-18 21:57:47 +00:00
|
|
|
#define PIDFILE "freeswitch.pid"
|
2006-10-30 01:36:51 +00:00
|
|
|
static char *pfile = PIDFILE;
|
2006-09-20 20:25:26 +00:00
|
|
|
|
2006-08-18 21:57:47 +00:00
|
|
|
|
2007-03-02 05:53:45 +00:00
|
|
|
/* Picky compiler */
|
2006-08-18 21:57:47 +00:00
|
|
|
#ifdef __ICC
|
|
|
|
#pragma warning (disable:167)
|
|
|
|
#endif
|
2006-02-23 22:41:08 +00:00
|
|
|
|
2006-08-19 18:51:22 +00:00
|
|
|
#ifdef WIN32
|
2008-05-12 19:05:02 +00:00
|
|
|
/* If we are a windows service, what should we be called */
|
|
|
|
#define SERVICENAME_DEFAULT "FreeSWITCH"
|
|
|
|
#define SERVICENAME_MAXLEN 256
|
|
|
|
static char service_name[SERVICENAME_MAXLEN];
|
2006-08-20 03:04:55 +00:00
|
|
|
#include <winsock2.h>
|
|
|
|
#include <windows.h>
|
2006-10-30 01:36:51 +00:00
|
|
|
|
2007-03-02 05:53:45 +00:00
|
|
|
/* event to signal shutdown (for you unix people, this is like a pthread_cond) */
|
2006-08-19 18:51:22 +00:00
|
|
|
static HANDLE shutdown_event;
|
|
|
|
#endif
|
2006-02-26 03:13:01 +00:00
|
|
|
|
2007-03-02 05:53:45 +00:00
|
|
|
/* signal handler for when freeswitch is running in background mode.
|
|
|
|
* signal triggers the shutdown of freeswitch
|
2008-05-12 19:05:02 +00:00
|
|
|
# */
|
2007-12-04 23:47:27 +00:00
|
|
|
static void handle_SIGTERM(int sig)
|
2006-02-23 22:41:08 +00:00
|
|
|
{
|
2007-10-03 23:43:01 +00:00
|
|
|
int32_t arg = 0;
|
2007-03-29 22:31:56 +00:00
|
|
|
if (sig);
|
2007-03-02 05:53:45 +00:00
|
|
|
/* send shutdown signal to the freeswitch core */
|
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
|
|
|
}
|
|
|
|
|
2007-03-02 05:53:45 +00:00
|
|
|
/* kill a freeswitch process running in background mode */
|
2006-08-18 21:57:47 +00:00
|
|
|
static int freeswitch_kill_background()
|
|
|
|
{
|
2007-03-29 22:31:56 +00:00
|
|
|
FILE *f; /* FILE handle to open the pid file */
|
|
|
|
char path[256] = ""; /* full path of the PID file */
|
|
|
|
pid_t pid = 0; /* pid from the pid file */
|
2006-10-30 01:36:51 +00:00
|
|
|
|
2007-03-02 05:53:45 +00:00
|
|
|
/* set the globals so we can use the global paths. */
|
2006-08-20 03:04:55 +00:00
|
|
|
switch_core_set_globals();
|
2006-10-30 01:36:51 +00:00
|
|
|
|
2007-03-02 05:53:45 +00:00
|
|
|
/* get the full path of the pid file. */
|
2007-12-15 20:04:49 +00:00
|
|
|
switch_snprintf(path, sizeof(path), "%s%s%s", SWITCH_GLOBAL_dirs.log_dir, SWITCH_PATH_SEPARATOR, pfile);
|
2006-10-30 01:36:51 +00:00
|
|
|
|
2007-03-02 05:53:45 +00:00
|
|
|
/* open the pid file */
|
2006-08-18 21:57:47 +00:00
|
|
|
if ((f = fopen(path, "r")) == 0) {
|
2007-03-02 05:53:45 +00:00
|
|
|
/* pid file does not exist */
|
2006-08-18 21:57:47 +00:00
|
|
|
fprintf(stderr, "Cannot open pid file %s.\n", path);
|
2006-03-01 17:06:10 +00:00
|
|
|
return 255;
|
|
|
|
}
|
2006-10-30 01:36:51 +00:00
|
|
|
|
2007-03-02 05:53:45 +00:00
|
|
|
/* pull the pid from the file */
|
2008-02-27 00:08:06 +00:00
|
|
|
if (fscanf(f, "%d", (int *)(intptr_t)&pid)!=1) {
|
2007-08-03 21:29:01 +00:00
|
|
|
switch_log_printf(SWITCH_CHANNEL_LOG, SWITCH_LOG_ERROR,"Unable to get the pid!\n");
|
|
|
|
}
|
2006-10-30 01:36:51 +00:00
|
|
|
|
2007-03-02 05:53:45 +00:00
|
|
|
/* if we have a valid pid */
|
2006-08-18 21:57:47 +00:00
|
|
|
if (pid > 0) {
|
2006-10-30 01:36:51 +00:00
|
|
|
|
2007-03-02 05:53:45 +00:00
|
|
|
/* kill the freeswitch running at the pid we found */
|
2006-08-19 18:51:22 +00:00
|
|
|
fprintf(stderr, "Killing: %d\n", (int) pid);
|
|
|
|
#ifdef WIN32
|
2007-03-02 05:53:45 +00:00
|
|
|
/* for windows we need the event to signal for shutting down a background freewitch */
|
2006-08-19 18:51:22 +00:00
|
|
|
snprintf(path, sizeof(path), "Global\\Freeswitch.%d", pid);
|
2006-10-30 01:36:51 +00:00
|
|
|
|
2007-03-02 05:53:45 +00:00
|
|
|
/* open the event so we can signal it */
|
2006-08-19 19:00:35 +00:00
|
|
|
shutdown_event = OpenEvent(EVENT_MODIFY_STATE, FALSE, path);
|
2006-10-30 01:36:51 +00:00
|
|
|
|
2007-03-02 05:53:45 +00:00
|
|
|
/* did we sucessfully open the event */
|
2006-08-19 19:00:35 +00:00
|
|
|
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 {
|
2007-03-02 05:53:45 +00:00
|
|
|
/* signal the event to shutdown */
|
2006-08-19 19:00:35 +00:00
|
|
|
SetEvent(shutdown_event);
|
2007-12-15 20:04:49 +00:00
|
|
|
/* cleanup */
|
|
|
|
CloseHandle(shutdown_event);
|
2006-08-19 19:00:35 +00:00
|
|
|
}
|
2006-08-19 18:51:22 +00:00
|
|
|
#else
|
2007-03-02 05:53:45 +00:00
|
|
|
/* for unix, send the signal to kill. */
|
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
|
|
|
|
2007-03-02 05:53:45 +00:00
|
|
|
/* be nice and close the file handle to the pid file */
|
2006-08-19 18:51:22 +00:00
|
|
|
fclose(f);
|
2006-10-30 01:36:51 +00:00
|
|
|
|
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-10-30 01:36:51 +00:00
|
|
|
|
2007-03-02 05:53:45 +00:00
|
|
|
/* we need these vars to handle the service */
|
2006-08-20 03:36:14 +00:00
|
|
|
SERVICE_STATUS_HANDLE hStatus;
|
|
|
|
SERVICE_STATUS status;
|
|
|
|
|
2007-03-02 05:53:45 +00:00
|
|
|
/* Handler function for service start/stop from the service */
|
2007-03-29 22:31:56 +00:00
|
|
|
void WINAPI ServiceCtrlHandler(DWORD control)
|
2006-08-20 03:36:14 +00:00
|
|
|
{
|
2007-03-29 22:31:56 +00:00
|
|
|
switch (control) {
|
2006-10-30 01:36:51 +00:00
|
|
|
case SERVICE_CONTROL_SHUTDOWN:
|
|
|
|
case SERVICE_CONTROL_STOP:
|
2007-03-02 05:53:45 +00:00
|
|
|
/* Shutdown freeswitch */
|
2007-03-02 09:22:34 +00:00
|
|
|
switch_core_destroy();
|
2007-03-02 05:53:45 +00:00
|
|
|
/* set service status valuse */
|
2006-10-30 01:36:51 +00:00
|
|
|
status.dwCurrentState = SERVICE_STOPPED;
|
|
|
|
status.dwWin32ExitCode = 0;
|
|
|
|
status.dwCheckPoint = 0;
|
|
|
|
status.dwWaitHint = 0;
|
|
|
|
break;
|
|
|
|
case SERVICE_CONTROL_INTERROGATE:
|
2007-03-02 05:53:45 +00:00
|
|
|
/* we already set the service status every time it changes. */
|
|
|
|
/* if there are other times we change it and don't update, we should do so here */
|
2006-10-30 01:36:51 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
2007-03-29 22:31:56 +00:00
|
|
|
SetServiceStatus(hStatus, &status);
|
2006-08-20 03:36:14 +00:00
|
|
|
}
|
|
|
|
|
2007-03-02 05:53:45 +00:00
|
|
|
/* the main service entry point */
|
2007-03-29 22:31:56 +00:00
|
|
|
void WINAPI service_main(DWORD numArgs, char **args)
|
2006-08-20 03:36:14 +00:00
|
|
|
{
|
2007-09-30 16:59:32 +00:00
|
|
|
switch_core_flag_t flags = SCF_USE_SQL;
|
2007-03-02 05:53:45 +00:00
|
|
|
const char *err = NULL; /* error value for return from freeswitch initialization */
|
|
|
|
/* we have to initialize the service-specific stuff */
|
2007-03-29 22:31:56 +00:00
|
|
|
memset(&status, 0, sizeof(SERVICE_STATUS));
|
2006-10-30 01:36:51 +00:00
|
|
|
status.dwServiceType = SERVICE_WIN32;
|
|
|
|
status.dwCurrentState = SERVICE_START_PENDING;
|
|
|
|
status.dwControlsAccepted = SERVICE_ACCEPT_STOP;
|
2006-08-20 03:36:14 +00:00
|
|
|
|
2007-03-02 05:53:45 +00:00
|
|
|
/* register our handler for service control messages */
|
2008-05-12 19:05:02 +00:00
|
|
|
hStatus = RegisterServiceCtrlHandler(service_name, &ServiceCtrlHandler);
|
2006-08-20 03:36:14 +00:00
|
|
|
|
2007-03-02 05:53:45 +00:00
|
|
|
/* update the service status */
|
2007-03-29 22:31:56 +00:00
|
|
|
SetServiceStatus(hStatus, &status);
|
2006-11-05 19:41:03 +00:00
|
|
|
|
2007-03-02 05:53:45 +00:00
|
|
|
/* attempt to initialize freeswitch and load modules */
|
2007-12-06 13:40:00 +00:00
|
|
|
if (switch_core_init_and_modload(flags, SWITCH_FALSE, &err) != SWITCH_STATUS_SUCCESS) {
|
2007-03-02 05:53:45 +00:00
|
|
|
/* freeswitch did not start sucessfully */
|
2006-10-30 01:36:51 +00:00
|
|
|
status.dwCurrentState = SERVICE_STOPPED;
|
2006-08-20 03:04:55 +00:00
|
|
|
} else {
|
2007-03-02 05:53:45 +00:00
|
|
|
/* freeswitch started */
|
2006-08-20 03:04:55 +00:00
|
|
|
status.dwCurrentState = SERVICE_RUNNING;
|
|
|
|
}
|
2006-08-20 03:36:14 +00:00
|
|
|
|
2007-03-02 05:53:45 +00:00
|
|
|
/* update the service status */
|
2007-03-29 22:31:56 +00:00
|
|
|
SetServiceStatus(hStatus, &status);
|
2006-08-20 03:36:14 +00:00
|
|
|
}
|
|
|
|
|
2006-08-20 03:04:55 +00:00
|
|
|
#endif
|
|
|
|
|
2007-03-02 05:53:45 +00:00
|
|
|
/* the main application entry point */
|
2006-08-18 21:57:47 +00:00
|
|
|
int main(int argc, char *argv[])
|
|
|
|
{
|
2007-03-02 05:53:45 +00:00
|
|
|
char pid_path[256] = ""; /* full path to the pid file */
|
2007-12-08 03:41:00 +00:00
|
|
|
char pid_buffer[32] = ""; /* pid string */
|
|
|
|
switch_size_t pid_len;
|
2007-03-02 05:53:45 +00:00
|
|
|
const char *err = NULL; /* error value for return from freeswitch initialization */
|
2007-01-19 22:47:23 +00:00
|
|
|
#ifndef WIN32
|
2007-03-02 05:53:45 +00:00
|
|
|
int nf = 0; /* TRUE if we are running in nofork mode */
|
2007-10-23 15:56:23 +00:00
|
|
|
char *runas_user = NULL;
|
|
|
|
char *runas_group = NULL;
|
2007-01-19 22:47:23 +00:00
|
|
|
#endif
|
2007-03-02 05:53:45 +00:00
|
|
|
int nc = 0; /* TRUE if we are running in noconsole mode */
|
2007-03-29 22:31:56 +00:00
|
|
|
pid_t pid = 0;
|
|
|
|
int x;
|
|
|
|
int die = 0;
|
|
|
|
char *usageDesc;
|
2007-02-06 17:05:14 +00:00
|
|
|
int alt_dirs = 0;
|
2007-04-21 16:58:35 +00:00
|
|
|
int known_opt;
|
2007-10-23 15:56:23 +00:00
|
|
|
int high_prio = 0;
|
2007-09-29 01:06:08 +00:00
|
|
|
switch_core_flag_t flags = SCF_USE_SQL;
|
2007-12-15 20:04:49 +00:00
|
|
|
int ret;
|
2007-12-08 03:41:00 +00:00
|
|
|
switch_file_t *fd;
|
|
|
|
switch_memory_pool_t *pool = NULL;
|
|
|
|
|
2007-03-29 22:31:56 +00:00
|
|
|
usageDesc = "these are the optional arguments you can pass to freeswitch\n"
|
2007-10-20 06:46:16 +00:00
|
|
|
#ifdef WIN32
|
2008-05-12 19:05:02 +00:00
|
|
|
"\t-service [name] -- start freeswitch as a service, cannot be used if loaded as a console app\n"
|
|
|
|
"\t-install [name] -- install freeswitch as a service, with optional service name\n"
|
2007-03-29 22:31:56 +00:00
|
|
|
"\t-uninstall -- remove freeswitch as a service\n"
|
2007-02-06 17:05:14 +00:00
|
|
|
#else
|
2007-03-29 22:31:56 +00:00
|
|
|
"\t-nf -- no forking\n"
|
2007-10-23 15:56:23 +00:00
|
|
|
"\t-u [user] -- specify user to switch to\n"
|
|
|
|
"\t-g [group] -- specify group to switch to\n"
|
2007-10-20 06:46:16 +00:00
|
|
|
#endif
|
|
|
|
"\t-help -- this message\n"
|
2007-12-18 16:55:39 +00:00
|
|
|
#ifdef HAVE_SETRLIMIT
|
|
|
|
"\t-core -- dump cores\n"
|
|
|
|
#endif
|
2007-03-29 22:31:56 +00:00
|
|
|
"\t-hp -- enable high priority settings\n"
|
2007-09-29 01:06:08 +00:00
|
|
|
"\t-nosql -- disable internal sql scoreboard\n"
|
2007-03-29 22:31:56 +00:00
|
|
|
"\t-stop -- stop freeswitch\n"
|
|
|
|
"\t-nc -- do not output to a console and background\n"
|
2008-01-25 14:08:53 +00:00
|
|
|
"\t-c -- output to a console and stay in the foreground\n"
|
2007-03-29 22:31:56 +00:00
|
|
|
"\t-conf [confdir] -- specify an alternate config dir\n"
|
2007-10-20 06:46:16 +00:00
|
|
|
"\t-log [logdir] -- specify an alternate log dir\n"
|
|
|
|
"\t-db [dbdir] -- specify an alternate db dir\n"
|
|
|
|
"\t-scripts [scriptsdir] -- specify an alternate scripts dir\n";
|
2006-08-20 03:04:55 +00:00
|
|
|
|
2006-09-20 20:25:26 +00:00
|
|
|
for (x = 1; x < argc; x++) {
|
2007-04-21 16:58:35 +00:00
|
|
|
known_opt = 0;
|
2006-09-20 20:25:26 +00:00
|
|
|
#ifdef WIN32
|
|
|
|
if (x == 1) {
|
|
|
|
if (argv[x] && !strcmp(argv[x], "-service")) {
|
2008-05-12 19:05:02 +00:00
|
|
|
/* New installs will always have the service name specified, but keep a default for compat */
|
|
|
|
x++;
|
|
|
|
if (argv[x] && strlen(argv[x])) {
|
|
|
|
switch_copy_string(service_name, argv[x], SERVICENAME_MAXLEN);
|
|
|
|
} else {
|
|
|
|
switch_copy_string(service_name, SERVICENAME_DEFAULT, SERVICENAME_MAXLEN);
|
|
|
|
}
|
|
|
|
{ /* Attempt to start service */
|
|
|
|
SERVICE_TABLE_ENTRY dispatchTable[] = {
|
|
|
|
{service_name, &service_main},
|
|
|
|
{NULL, NULL}
|
|
|
|
};
|
|
|
|
known_opt++;
|
|
|
|
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);
|
2006-10-30 01:36:51 +00:00
|
|
|
}
|
2006-09-20 20:25:26 +00:00
|
|
|
}
|
|
|
|
if (argv[x] && !strcmp(argv[x], "-install")) {
|
|
|
|
char exePath[1024];
|
|
|
|
char servicePath[1024];
|
2008-05-12 19:05:02 +00:00
|
|
|
x++;
|
|
|
|
if (argv[x] && strlen(argv[x])) {
|
|
|
|
switch_copy_string(service_name, argv[x], SERVICENAME_MAXLEN);
|
|
|
|
} else {
|
|
|
|
switch_copy_string(service_name, SERVICENAME_DEFAULT, SERVICENAME_MAXLEN);
|
|
|
|
}
|
2007-04-21 16:58:35 +00:00
|
|
|
known_opt++;
|
2007-03-29 22:31:56 +00:00
|
|
|
GetModuleFileName(NULL, exePath, 1024);
|
2008-05-12 19:05:02 +00:00
|
|
|
snprintf(servicePath, sizeof(servicePath), "%s -service %s", exePath, service_name);
|
|
|
|
{ /* Perform service installation */
|
|
|
|
SC_HANDLE hService;
|
|
|
|
SC_HANDLE hSCManager = OpenSCManager(NULL, NULL, SC_MANAGER_ALL_ACCESS);
|
|
|
|
if (!hSCManager) {
|
|
|
|
fprintf(stderr, "Could not open service manager (%d).\n", GetLastError());
|
|
|
|
exit(1);
|
|
|
|
}
|
|
|
|
hService = CreateService(hSCManager,
|
|
|
|
service_name,
|
|
|
|
service_name,
|
|
|
|
GENERIC_READ | GENERIC_EXECUTE | SERVICE_CHANGE_CONFIG,
|
|
|
|
SERVICE_WIN32_OWN_PROCESS, SERVICE_AUTO_START, SERVICE_ERROR_IGNORE,
|
|
|
|
servicePath, NULL, NULL, NULL,
|
|
|
|
"NT AUTHORITY\\NetworkService", /* Service start name */
|
|
|
|
NULL);
|
|
|
|
if (!hService) {
|
|
|
|
fprintf(stderr, "Error creating freeswitch service (%d).\n", GetLastError());
|
|
|
|
} else {
|
|
|
|
/* Set desc, and don't care if it succeeds */
|
|
|
|
SERVICE_DESCRIPTION desc;
|
|
|
|
desc.lpDescription = "The FreeSWITCH service.";
|
|
|
|
if (!ChangeServiceConfig2(hService, SERVICE_CONFIG_DESCRIPTION, &desc)) {
|
|
|
|
fprintf(stderr, "FreeSWITCH installed, but could not set the service description (%d).\n", GetLastError());
|
|
|
|
}
|
|
|
|
CloseServiceHandle(hService);
|
|
|
|
}
|
|
|
|
CloseServiceHandle(hSCManager);
|
|
|
|
exit(0);
|
2007-12-15 20:04:49 +00:00
|
|
|
}
|
2006-09-20 20:25:26 +00:00
|
|
|
}
|
|
|
|
if (argv[x] && !strcmp(argv[x], "-uninstall")) {
|
2008-05-12 19:05:02 +00:00
|
|
|
x++;
|
|
|
|
if (argv[x] && strlen(argv[x])) {
|
|
|
|
switch_copy_string(service_name, argv[x], SERVICENAME_MAXLEN);
|
|
|
|
} else {
|
|
|
|
switch_copy_string(service_name, SERVICENAME_DEFAULT, SERVICENAME_MAXLEN);
|
|
|
|
}
|
|
|
|
{ /* Do the uninstallation */
|
|
|
|
SC_HANDLE hService;
|
|
|
|
SC_HANDLE hSCManager = OpenSCManager(NULL, NULL, SC_MANAGER_ALL_ACCESS);
|
|
|
|
if (!hSCManager) {
|
|
|
|
fprintf(stderr, "Could not open service manager (%d).\n", GetLastError());
|
|
|
|
exit(1);
|
|
|
|
}
|
|
|
|
hService = OpenService(hSCManager, service_name, DELETE);
|
|
|
|
known_opt++;
|
|
|
|
if (hService != NULL) {
|
|
|
|
/* remove the service! */
|
|
|
|
if (!DeleteService(hService)) {
|
|
|
|
fprintf(stderr, "Error deleting service (%d).\n", GetLastError());
|
|
|
|
}
|
|
|
|
CloseServiceHandle(hService);
|
|
|
|
} else {
|
|
|
|
fprintf(stderr, "Error opening service (%d).\n", GetLastError());
|
|
|
|
}
|
|
|
|
CloseServiceHandle(hSCManager);
|
|
|
|
exit(0);
|
2006-10-30 01:36:51 +00:00
|
|
|
}
|
2006-09-20 20:25:26 +00:00
|
|
|
}
|
2006-08-20 03:36:14 +00:00
|
|
|
}
|
2008-05-12 19:05:02 +00:00
|
|
|
|
2007-01-19 12:59:49 +00:00
|
|
|
#else
|
2007-10-23 15:56:23 +00:00
|
|
|
if (argv[x] && !strcmp(argv[x], "-u")) {
|
|
|
|
x++;
|
|
|
|
if (argv[x] && strlen(argv[x])) {
|
|
|
|
runas_user = argv[x];
|
|
|
|
}
|
|
|
|
known_opt++;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (argv[x] && !strcmp(argv[x], "-g")) {
|
|
|
|
x++;
|
|
|
|
if (argv[x] && strlen(argv[x])) {
|
|
|
|
runas_group = argv[x];
|
|
|
|
}
|
|
|
|
known_opt++;
|
|
|
|
}
|
2007-01-19 22:47:23 +00:00
|
|
|
|
|
|
|
if (argv[x] && !strcmp(argv[x], "-nf")) {
|
|
|
|
nf++;
|
2007-04-21 16:58:35 +00:00
|
|
|
known_opt++;
|
2007-01-19 12:59:49 +00:00
|
|
|
}
|
2006-08-20 03:04:55 +00:00
|
|
|
#endif
|
2007-12-18 16:55:39 +00:00
|
|
|
#ifdef HAVE_SETRLIMIT
|
|
|
|
if (argv[x] && !strcmp(argv[x], "-core")) {
|
|
|
|
struct rlimit rlp;
|
|
|
|
memset(&rlp, 0, sizeof(rlp));
|
|
|
|
rlp.rlim_cur = RLIM_INFINITY;
|
|
|
|
rlp.rlim_max = RLIM_INFINITY;
|
|
|
|
setrlimit(RLIMIT_CORE, &rlp);
|
|
|
|
known_opt++;
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2006-09-20 20:25:26 +00:00
|
|
|
if (argv[x] && !strcmp(argv[x], "-hp")) {
|
2007-10-23 15:56:23 +00:00
|
|
|
high_prio++;
|
2007-04-21 16:58:35 +00:00
|
|
|
known_opt++;
|
2006-09-20 20:25:26 +00:00
|
|
|
}
|
2006-10-30 01:36:51 +00:00
|
|
|
|
2007-09-29 01:06:08 +00:00
|
|
|
if (argv[x] && !strcmp(argv[x], "-nosql")) {
|
|
|
|
flags &= ~SCF_USE_SQL;
|
|
|
|
known_opt++;
|
|
|
|
}
|
|
|
|
|
2006-09-20 20:25:26 +00:00
|
|
|
if (argv[x] && !strcmp(argv[x], "-stop")) {
|
|
|
|
die++;
|
2007-04-21 16:58:35 +00:00
|
|
|
known_opt++;
|
2006-09-20 20:25:26 +00:00
|
|
|
}
|
2006-08-20 03:04:55 +00:00
|
|
|
|
2006-09-20 20:25:26 +00:00
|
|
|
if (argv[x] && !strcmp(argv[x], "-nc")) {
|
2007-01-19 22:47:23 +00:00
|
|
|
nc++;
|
2007-04-21 16:58:35 +00:00
|
|
|
known_opt++;
|
2007-01-19 22:47:23 +00:00
|
|
|
}
|
2006-11-16 19:43:25 +00:00
|
|
|
|
2008-01-25 14:08:53 +00:00
|
|
|
if (argv[x] && !strcmp(argv[x], "-c")) {
|
|
|
|
nc = 0;
|
|
|
|
known_opt++;
|
|
|
|
}
|
2007-02-06 17:05:14 +00:00
|
|
|
|
2007-03-29 22:31:56 +00:00
|
|
|
if (argv[x] && !strcmp(argv[x], "-conf")) {
|
|
|
|
x++;
|
|
|
|
if (argv[x] && strlen(argv[x])) {
|
|
|
|
SWITCH_GLOBAL_dirs.conf_dir = (char *) malloc(strlen(argv[x]) + 1);
|
2008-05-15 21:05:32 +00:00
|
|
|
if (!SWITCH_GLOBAL_dirs.conf_dir) {
|
|
|
|
fprintf(stderr, "Allocation error\n");
|
|
|
|
return 255;
|
|
|
|
}
|
2007-03-29 22:31:56 +00:00
|
|
|
strcpy(SWITCH_GLOBAL_dirs.conf_dir, argv[x]);
|
2007-02-06 17:05:14 +00:00
|
|
|
alt_dirs++;
|
2007-03-29 22:31:56 +00:00
|
|
|
} else {
|
|
|
|
fprintf(stderr, "When using -conf you must specify a config directory\n");
|
|
|
|
return 255;
|
|
|
|
}
|
2007-04-21 16:58:35 +00:00
|
|
|
known_opt++;
|
2007-03-29 22:31:56 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if (argv[x] && !strcmp(argv[x], "-log")) {
|
|
|
|
x++;
|
|
|
|
if (argv[x] && strlen(argv[x])) {
|
|
|
|
SWITCH_GLOBAL_dirs.log_dir = (char *) malloc(strlen(argv[x]) + 1);
|
2008-05-15 21:05:32 +00:00
|
|
|
if (!SWITCH_GLOBAL_dirs.log_dir) {
|
|
|
|
fprintf(stderr, "Allocation error\n");
|
|
|
|
return 255;
|
|
|
|
}
|
2007-03-29 22:31:56 +00:00
|
|
|
strcpy(SWITCH_GLOBAL_dirs.log_dir, argv[x]);
|
2007-02-06 17:05:14 +00:00
|
|
|
alt_dirs++;
|
2007-03-29 22:31:56 +00:00
|
|
|
} else {
|
|
|
|
fprintf(stderr, "When using -log you must specify a log directory\n");
|
|
|
|
return 255;
|
|
|
|
}
|
2007-04-21 16:58:35 +00:00
|
|
|
known_opt++;
|
2007-03-29 22:31:56 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if (argv[x] && !strcmp(argv[x], "-db")) {
|
|
|
|
x++;
|
|
|
|
if (argv[x] && strlen(argv[x])) {
|
|
|
|
SWITCH_GLOBAL_dirs.db_dir = (char *) malloc(strlen(argv[x]) + 1);
|
2008-05-15 21:05:32 +00:00
|
|
|
if (!SWITCH_GLOBAL_dirs.db_dir) {
|
|
|
|
fprintf(stderr, "Allocation error\n");
|
|
|
|
return 255;
|
|
|
|
}
|
2007-03-29 22:31:56 +00:00
|
|
|
strcpy(SWITCH_GLOBAL_dirs.db_dir, argv[x]);
|
2007-02-06 17:05:14 +00:00
|
|
|
alt_dirs++;
|
2007-03-29 22:31:56 +00:00
|
|
|
} else {
|
|
|
|
fprintf(stderr, "When using -db you must specify a db directory\n");
|
|
|
|
return 255;
|
|
|
|
}
|
2007-04-21 16:58:35 +00:00
|
|
|
known_opt++;
|
|
|
|
}
|
|
|
|
|
2007-10-20 06:46:16 +00:00
|
|
|
if (argv[x] && !strcmp(argv[x], "-scripts")) {
|
|
|
|
x++;
|
|
|
|
if (argv[x] && strlen(argv[x])) {
|
|
|
|
SWITCH_GLOBAL_dirs.script_dir = (char *) malloc(strlen(argv[x]) + 1);
|
2008-05-15 21:05:32 +00:00
|
|
|
if (!SWITCH_GLOBAL_dirs.script_dir) {
|
|
|
|
fprintf(stderr, "Allocation error\n");
|
|
|
|
return 255;
|
|
|
|
}
|
2007-10-20 06:46:16 +00:00
|
|
|
strcpy(SWITCH_GLOBAL_dirs.script_dir, argv[x]);
|
|
|
|
} else {
|
|
|
|
fprintf(stderr, "When using -scripts you must specify a scripts directory\n");
|
|
|
|
return 255;
|
|
|
|
}
|
|
|
|
known_opt++;
|
|
|
|
}
|
|
|
|
|
2007-12-15 20:04:49 +00:00
|
|
|
if (!known_opt || (argv[x] && (!strcmp(argv[x], "-help") || !strcmp(argv[x], "-h") || !strcmp(argv[x], "-?")))) {
|
2007-04-21 16:58:35 +00:00
|
|
|
printf("%s\n", usageDesc);
|
|
|
|
exit(0);
|
2007-03-29 22:31:56 +00:00
|
|
|
}
|
2007-12-15 20:04:49 +00:00
|
|
|
}
|
2007-03-29 22:31:56 +00:00
|
|
|
|
2007-12-15 20:04:49 +00:00
|
|
|
if (apr_initialize() != SWITCH_STATUS_SUCCESS) {
|
2008-01-07 10:45:06 +00:00
|
|
|
fprintf(stderr, "FATAL ERROR! Could not initialize APR\n");
|
2007-12-15 20:04:49 +00:00
|
|
|
return 255;
|
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
|
|
|
|
2007-03-29 22:31:56 +00:00
|
|
|
if (alt_dirs && alt_dirs != 3) {
|
2007-10-20 06:46:16 +00:00
|
|
|
fprintf(stderr, "You must specify all or none of -conf, -log, and -db\n");
|
2007-02-06 17:05:14 +00:00
|
|
|
return 255;
|
|
|
|
}
|
|
|
|
|
2007-12-04 23:47:27 +00:00
|
|
|
signal(SIGTERM, handle_SIGTERM);
|
2006-08-18 21:57:47 +00:00
|
|
|
|
2007-12-04 23:47:27 +00:00
|
|
|
if (nc) {
|
2006-02-26 03:13:01 +00:00
|
|
|
#ifdef WIN32
|
2006-08-18 21:57:47 +00:00
|
|
|
FreeConsole();
|
|
|
|
#else
|
2007-01-19 22:47:23 +00:00
|
|
|
if (!nf && (pid = fork())) {
|
2007-03-29 22:31:56 +00:00
|
|
|
fprintf(stderr, "%d Backgrounding.\n", (int) pid);
|
2006-08-18 21:57:47 +00:00
|
|
|
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
|
|
|
|
2007-10-23 15:56:23 +00:00
|
|
|
if (high_prio) {
|
|
|
|
set_high_priority();
|
|
|
|
}
|
|
|
|
|
2008-01-07 20:40:59 +00:00
|
|
|
switch_core_setrlimits();
|
|
|
|
|
2007-10-23 15:56:23 +00:00
|
|
|
#ifndef WIN32
|
|
|
|
if (runas_user || runas_group) {
|
2008-02-15 23:16:01 +00:00
|
|
|
if (change_user_group(runas_user, runas_group) < 0) {
|
2007-10-23 15:56:23 +00:00
|
|
|
fprintf(stderr, "Failed to switch user / group\n" );
|
|
|
|
return 255;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2007-12-08 03:41:00 +00:00
|
|
|
switch_core_set_globals();
|
|
|
|
|
|
|
|
pid = getpid();
|
|
|
|
|
2007-12-25 03:00:29 +00:00
|
|
|
memset(pid_buffer, 0, sizeof(pid_buffer));
|
2007-12-15 20:04:49 +00:00
|
|
|
switch_snprintf(pid_path, sizeof(pid_path), "%s%s%s", SWITCH_GLOBAL_dirs.log_dir, SWITCH_PATH_SEPARATOR, pfile);
|
|
|
|
switch_snprintf(pid_buffer, sizeof(pid_buffer), "%d", pid);
|
2007-12-25 03:00:29 +00:00
|
|
|
pid_len = sizeof(pid_buffer);
|
2007-12-08 03:41:00 +00:00
|
|
|
|
|
|
|
apr_pool_create(&pool, NULL);
|
2008-01-08 10:57:42 +00:00
|
|
|
if (switch_file_open(&fd,
|
2008-02-03 22:14:57 +00:00
|
|
|
pid_path,
|
|
|
|
SWITCH_FOPEN_WRITE | SWITCH_FOPEN_CREATE,
|
|
|
|
SWITCH_FPROT_UREAD | SWITCH_FPROT_UWRITE,
|
|
|
|
pool) != SWITCH_STATUS_SUCCESS) {
|
2006-11-05 19:41:03 +00:00
|
|
|
fprintf(stderr, "Cannot open pid file %s.\n", pid_path);
|
2006-08-20 03:04:55 +00:00
|
|
|
return 255;
|
|
|
|
}
|
|
|
|
|
2007-12-08 03:41:00 +00:00
|
|
|
if (switch_file_lock(fd, SWITCH_FLOCK_EXCLUSIVE | SWITCH_FLOCK_NONBLOCK) != SWITCH_STATUS_SUCCESS) {
|
|
|
|
fprintf(stderr, "Cannot lock pid file %s.\n", pid_path);
|
|
|
|
return 255;
|
|
|
|
}
|
|
|
|
|
|
|
|
switch_file_write(fd, pid_buffer, &pid_len);
|
|
|
|
|
|
|
|
if (switch_core_init_and_modload(flags, nc ? SWITCH_FALSE : SWITCH_TRUE, &err) != SWITCH_STATUS_SUCCESS) {
|
2008-01-07 10:45:06 +00:00
|
|
|
fprintf(stderr, "Cannot Initialize [%s]\n", err);
|
2007-12-08 03:41:00 +00:00
|
|
|
return 255;
|
|
|
|
}
|
2006-08-20 03:04:55 +00:00
|
|
|
|
2007-01-19 12:59:49 +00:00
|
|
|
switch_core_runtime_loop(nc);
|
2006-08-18 21:57:47 +00:00
|
|
|
|
2007-12-15 20:04:49 +00:00
|
|
|
ret = switch_core_destroy();
|
2007-12-07 02:03:55 +00:00
|
|
|
|
2007-12-08 03:41:00 +00:00
|
|
|
switch_file_close(fd);
|
2007-12-07 02:03:55 +00:00
|
|
|
|
2007-12-15 20:04:49 +00:00
|
|
|
if (unlink(pid_path) != 0) {
|
|
|
|
fprintf(stderr, "Failed to delete pid file [%s]\n", pid_path);
|
|
|
|
}
|
|
|
|
|
|
|
|
return ret;
|
2005-11-19 20:07:43 +00:00
|
|
|
}
|
2006-11-27 22:30:48 +00:00
|
|
|
|
|
|
|
/* For Emacs:
|
|
|
|
* Local Variables:
|
|
|
|
* mode:c
|
2008-02-03 22:14:57 +00:00
|
|
|
* indent-tabs-mode:t
|
2006-11-27 22:30:48 +00:00
|
|
|
* tab-width:4
|
|
|
|
* c-basic-offset:4
|
|
|
|
* End:
|
|
|
|
* For VIM:
|
|
|
|
* vim:set softtabstop=4 shiftwidth=4 tabstop=4 expandtab:
|
|
|
|
*/
|