X-Git-Url: http://git.eversberg.eu/gitweb.cgi?p=lcr.git;a=blobdiff_plain;f=main.c;h=5c13f178009dd1fcdcc9ff08774cc2a02ebbb7bf;hp=8d06aea9240b20497f1dacbb8718075ed29c7e4a;hb=refs%2Fheads%2Fbackup2;hpb=e9bfe48fc5254e79e59c6ffc1698912175edf4e3 diff --git a/main.c b/main.c index 8d06aea..5c13f17 100644 --- a/main.c +++ b/main.c @@ -10,24 +10,23 @@ \*****************************************************************************/ #include "main.h" +#ifdef PACKAGE_VERSION +#undef PACKAGE_VERSION +#endif +#include "config.h" -MESSAGES +//MESSAGES -double now_d, last_d; -time_t now; -struct tm *now_tm; struct timeval now_tv; struct timezone now_tz; #define GET_NOW() \ { \ gettimeofday(&now_tv, &now_tz); \ now_d = ((double)(now_tv.tv_usec))/1000000 + now_tv.tv_sec; \ - now = now_tv.tv_sec; \ - now_tm = localtime(&now); \ } FILE *debug_fp = NULL; -int quit=0; +int quit = 0; #if 0 struct lcr_fdset lcr_fdset[FD_SETSIZE]; @@ -49,22 +48,21 @@ int classuse = 0; int fduse = 0; int fhuse = 0; -const char *debug_prefix = NULL; int debug_count = 0; int last_debug = 0; int debug_newline = 1; int nooutput = 0; -void debug_usleep(int msec, const char *file, int line, int hour, int min, int sec) +void debug(const char *file, const char *function, int line, const char *prefix, char *buffer) { - usleep(msec); -} + time_t now; + struct tm *now_tm; -void debug(const char *function, int line, const char *prefix, char *buffer) -{ /* if we have a new debug count, we add a mark */ if (last_debug != debug_count) { last_debug = debug_count; + time(&now); + now_tm = localtime(&now); if (!nooutput) printf("\033[34m--------------------- %04d.%02d.%02d %02d:%02d:%02d %06d\033[36m\n", now_tm->tm_year+1900, now_tm->tm_mon+1, now_tm->tm_mday, now_tm->tm_hour, now_tm->tm_min, now_tm->tm_sec, debug_count%1000000); if (debug_fp) @@ -75,7 +73,7 @@ void debug(const char *function, int line, const char *prefix, char *buffer) if (debug_newline) printf("\033[32m%06d %s\033[37m%s", debug_count%1000000, prefix?prefix:"", prefix?" ":""); if (function) - printf("(in %s() line %d): %s", function, line, buffer); + printf("(in %s/%s() line %d): %s", file, function, line, buffer); else printf("%s", buffer); } @@ -86,6 +84,7 @@ void debug(const char *function, int line, const char *prefix, char *buffer) fprintf(debug_fp, "%s%s(in %s() line %d): %s", prefix?prefix:"", prefix?" ":"", function, line, buffer); else fprintf(debug_fp, "%s%s: %s", prefix?prefix:"", prefix?" ":"", buffer); + fflush(debug_fp); } } @@ -96,7 +95,7 @@ void debug(const char *function, int line, const char *prefix, char *buffer) } -void _printdebug(const char *function, int line, unsigned int mask, const char *fmt, ...) +void _printdebug(const char *file, const char *function, int line, unsigned int mask, const char *fmt, ...) { char buffer[4096]; va_list args; @@ -110,12 +109,12 @@ void _printdebug(const char *function, int line, unsigned int mask, const char * buffer[sizeof(buffer)-1]=0; va_end(args); - debug(function, line, debug_prefix, buffer); + debug(file, function, line, "DEBUG", buffer); pthread_mutex_unlock(&mutexd); } -void _printerror(const char *function, int line, const char *fmt, ...) +void _printerror(const char *file, const char *function, int line, const char *fmt, ...) { char buffer[4096]; va_list args; @@ -128,7 +127,7 @@ void _printerror(const char *function, int line, const char *fmt, ...) va_end(args); if (options.deb) - debug(function, line, "ERROR", buffer); + debug(file, function, line, "ERROR", buffer); else { /* only if we do not debug */ if (function) fprintf(stderr, "ERROR (in %s() line %d) %s", function, line, buffer); @@ -148,6 +147,13 @@ void sighandler(int sigset) return; if (sigset == SIGPIPE) return; + fprintf(stderr, "LCR: Signal received: %d\n", sigset); + PDEBUG(DEBUG_LOG, "Signal received: %d\n", sigset); + /* reset signals */ + signal(SIGINT,SIG_DFL); + signal(SIGHUP,SIG_DFL); + signal(SIGTERM,SIG_DFL); + signal(SIGPIPE,SIG_DFL); if (!quit) { quit = sigset; /* set scheduler & priority */ @@ -156,8 +162,6 @@ void sighandler(int sigset) schedp.sched_priority = 0; sched_setscheduler(0, SCHED_OTHER, &schedp); } - fprintf(stderr, "LCR: Signal received: %d\n", sigset); - PDEBUG(DEBUG_LOG, "Signal received: %d\n", sigset); } } @@ -167,22 +171,22 @@ void sighandler(int sigset) */ int main(int argc, char *argv[]) { +#if 0 + double now_d, last_d; + int all_idle; +#endif int ret = -1; int lockfd = -1; /* file lock */ struct lcr_msg *message; - class Port *port; - class Endpoint *epoint; - class Join *join; int i; - int all_idle; - char prefix_string[64]; struct sched_param schedp; - const char *debug_prefix = "alloc"; int created_mutexd = 0,/* created_mutext = 0,*/ created_mutexe = 0, - created_lock = 0, created_signal = 0, created_debug = 0, - created_misdn = 0; - int idletime = 0, idlecheck = 0; + created_lock = 0, created_signal = 0, created_message = 0; +#ifdef WITH_MISDN + int created_misdn = 0; +#endif char tracetext[256], lock[128]; + char options_error[256]; #if 0 /* init fdset */ @@ -192,9 +196,6 @@ int main(int argc, char *argv[]) /* lock LCR process */ // pthread_mutex_lock(&mutex_lcr); - /* current time */ - GET_NOW(); - /* show version */ printf("\n** %s Version %s\n\n", NAME, VERSION_STRING); @@ -215,8 +216,16 @@ int main(int argc, char *argv[]) goto free; } +#ifdef WITH_CRYPT /* init crc */ crc_init(); +#endif + +#ifdef WITH_VOOTP + /* init VoOTP */ + vootp_init(stderr); + vootp_loglevel(VOOTP_LOGL_INFO); +#endif /* the mutex init */ if (pthread_mutex_init(&mutexd, NULL)) { @@ -254,23 +263,25 @@ int main(int argc, char *argv[]) /* query available isdn ports */ if (!(strcasecmp(argv[1],"query"))) { + int __attribute__((__unused__)) rc; fprintf(stderr, "-> Using 'misdn_info'\n"); - system("misdn_info"); + rc = system("misdn_info"); ret = 0; goto free; } /* read options */ - if (read_options() == 0) { + if (read_options(options_error) == 0) { PERROR("%s", options_error); goto free; } +#ifdef WITH_MISDN /* init mISDN */ if (mISDN_initialize() < 0) goto free; created_misdn = 1; - created_debug = 1; +#endif /* read ruleset(s) */ if (!(ruleset_first = ruleset_parse())) @@ -325,11 +336,13 @@ int main(int argc, char *argv[]) nooutput = 1; /* write pid file */ - pidfile = fopen("/var/run/lcr.pid","w"); + SPRINT(lock, "%s/lcr.pid", options.lock); + pidfile = fopen(lock,"w"); if (pidfile) { fprintf(pidfile, "%d\n", getpid()); fclose(pidfile); - } + } else + fprintf(stderr, "Failed to create PID file: %s\n", lock); } else /* if not start */ if (!!strcasecmp(argv[1],"start")) { @@ -360,21 +373,39 @@ int main(int argc, char *argv[]) /* generate alaw / ulaw tables */ generate_tables(options.law); +#ifdef WITH_SIP + /* init SIP globals */ + sip_init(); +#endif + +#ifdef WITH_SS5 + /* init ss5 sine tables */ + ss5_sine_generate(); + ss5_test_decode(); +#endif + /* load tones (if requested) */ if (fetch_tones() == 0) { fprintf(stderr, "Unable to fetch tones into memory.\n"); goto free; } -#ifdef WITH_GSM - /* handle gsm */ - if (options.gsm && gsm_init()) { +#if defined WITH_GSM_BS || defined WITH_GSM_MS + /* init gsm */ + if (gsm_init()) { fprintf(stderr, "GSM initialization failed.\n"); goto free; } -#else - if (options.gsm) { - fprintf(stderr, "GSM is enabled, but not compiled. Use --with-gsm while configure!\n"); +#endif +#ifdef WITH_GSM_BS + if (gsm_bs_init()) { + fprintf(stderr, "GSM BS initialization failed.\n"); + goto free; + } +#endif +#ifdef WITH_GSM_MS + if (gsm_ms_init()) { + fprintf(stderr, "GSM MS initialization failed.\n"); goto free; } #endif @@ -431,15 +462,21 @@ int main(int argc, char *argv[]) signal(SIGPIPE,sighandler); created_signal = 1; + /* init message */ + init_message(); + created_message = 1; + /*** main loop ***/ SPRINT(tracetext, "%s %s started, waiting for calls...", NAME, VERSION_STRING); start_trace(-1, NULL, NULL, NULL, 0, 0, 0, tracetext); printf("%s\n", tracetext); end_trace(); - GET_NOW(); quit = 0; +#if 0 + GET_NOW(); +#endif while(!quit) { - +#if 0 last_d = now_d; GET_NOW(); if (now_d-last_d > 1.0) { @@ -448,178 +485,42 @@ int main(int argc, char *argv[]) /* all loops must be counted from the beginning since nodes might get freed during handler */ all_idle = 1; -//#warning debugging usleep crash -// debug_usleep(1, __FILE__, __LINE__, now_tm->tm_hour, now_tm->tm_min, now_tm->tm_sec); - - /* handle mISDN messages from kernel */ - debug_prefix = "ISDN"; - if (mISDN_handler()) + /* must be processed after all queues, so they are empty */ + if (select_main(1, NULL, NULL, NULL)) all_idle = 0; -//#warning debugging usleep crash -// debug_usleep(1, __FILE__, __LINE__, now_tm->tm_hour, now_tm->tm_min, now_tm->tm_sec); - -BUDETECT - - /* loop through all port ports and call their handler */ - port_again: - port = port_first; - while(port) { - debug_prefix = port->p_name; - debug_count++; - ret = port->handler(); - if (ret) - all_idle = 0; - if (ret < 0) /* port has been destroyed */ - goto port_again; - port = port->next; - } - - /* loop through all epoint and call their handler */ - epoint_again: - epoint = epoint_first; - while(epoint) { - debug_prefix = prefix_string; - SPRINT(prefix_string, "ep%ld", epoint->ep_serial); - debug_count++; - ret = epoint->handler(); - if (ret) - all_idle = 0; - if (ret < 0) /* epoint has been destroyed */ - goto epoint_again; - epoint = epoint->next; - } - - /* loop through all joins and call their handler */ - join_again: - join = join_first; - while(join) { - debug_prefix = "join"; - debug_count++; - ret = join->handler(); - if (ret) - all_idle = 0; - if (ret < 0) /* join has been destroyed */ - goto join_again; - join = join->next; - } - - debug_prefix = 0; - - /* process any message */ - debug_count++; - debug_prefix = "message"; - while ((message = message_get())) { - all_idle = 0; - switch(message->flow) { - case PORT_TO_EPOINT: - debug_prefix = "msg port->epoint"; - epoint = find_epoint_id(message->id_to); - if (epoint) { - if (epoint->ep_app) { - epoint->ep_app->ea_message_port(message->id_from, message->type, &message->param); - } else { - PDEBUG(DEBUG_MSG, "Warning: message %s from port %d to endpoint %d. endpoint doesn't have an application.\n", messages_txt[message->type], message->id_from, message->id_to); - } - } else { - PDEBUG(DEBUG_MSG, "Warning: message %s from port %d to endpoint %d. endpoint doesn't exist anymore.\n", messages_txt[message->type], message->id_from, message->id_to); - } - break; - - case EPOINT_TO_JOIN: - debug_prefix = "msg epoint->join"; - join = find_join_id(message->id_to); - if (join) { - join->message_epoint(message->id_from, message->type, &message->param); - } else { - PDEBUG(DEBUG_MSG, "Warning: message %s from endpoint %d to join %d. join doesn't exist anymore\n", messages_txt[message->type], message->id_from, message->id_to); - } - break; - - case JOIN_TO_EPOINT: - debug_prefix = "msg join->epoint"; - epoint = find_epoint_id(message->id_to); - if (epoint) { - if (epoint->ep_app) { - epoint->ep_app->ea_message_join(message->id_from, message->type, &message->param); - } else { - PDEBUG(DEBUG_MSG, "Warning: message %s from join %d to endpoint %d. endpoint doesn't have an application.\n", messages_txt[message->type], message->id_from, message->id_to); - } - } else { - PDEBUG(DEBUG_MSG, "Warning: message %s from join %d to endpoint %d. endpoint doesn't exist anymore.\n", messages_txt[message->type], message->id_from, message->id_to); - } - break; - - case EPOINT_TO_PORT: - debug_prefix = "msg epoint->port"; - port = find_port_id(message->id_to); - if (port) { - port->message_epoint(message->id_from, message->type, &message->param); -BUDETECT - } else { - PDEBUG(DEBUG_MSG, "Warning: message %s from endpoint %d to port %d. port doesn't exist anymore\n", messages_txt[message->type], message->id_from, message->id_to); - } - break; - - default: - PERROR("Message flow %d unknown.\n", message->flow); - } - message_free(message); - debug_count++; - debug_prefix = "message"; + if (all_idle) { + usleep(10000); } -BUDETECT - - /* handle socket */ - if (admin_handle()) - all_idle = 0; -BUDETECT - -#ifdef WITH_GSM - /* handle gsm */ - if (options.gsm) - while(handle_gsm()) - all_idle = 0; +#else +#ifdef WITH_SIP + if (options.polling || any_sip_interface) { +#else + if (options.polling) { #endif - -BUDETECT - -#if 0 - /* check for child to exit (eliminate zombies) */ - if (waitpid(-1, NULL, WNOHANG) > 0) { - PDEBUG(DEBUG_EPOINT, "a child process (created by endpoint) has exitted.\n"); - all_idle = 0; - } + if (!select_main(1, NULL, NULL, NULL)) { +#ifdef WITH_SIP + /* FIXME: check if work was done */ + sip_handle(); +#endif + usleep(10000); + } + } else + select_main(0, NULL, NULL, NULL); #endif -//#warning debugging usleep crash -// debug_usleep(1, __FILE__, __LINE__, now_tm->tm_hour, now_tm->tm_min, now_tm->tm_sec); - - /* do idle checking */ - if (idlecheck != now) { - PDEBUG(DEBUG_IDLETIME, "Idle time : %d%%\n", idletime/10000); - idletime = 0; - idlecheck = now; - } - - /* did we do nothing? so we wait to give time to other processes */ - if (all_idle) { -// pthread_mutex_unlock(&mutex_lcr); // unlock LCR - debug_usleep(4000, __FILE__, __LINE__, now_tm->tm_hour, now_tm->tm_min, now_tm->tm_sec); -// pthread_mutex_lock(&mutex_lcr); // lock LCR - idletime += 4000; - } } SPRINT(tracetext, "%s terminated", NAME); printf("%s\n", tracetext); start_trace(-1, NULL, NULL, NULL, 0, 0, 0, tracetext); - if (quit) + if (quit > 0) add_trace((char *)"signal", NULL, "%d", quit); + if (quit < 0) + add_trace((char *)"errno", NULL, "%d", quit); end_trace(); ret=0; /* free all */ free: - /* set scheduler & priority */ if (options.schedule > 1) { @@ -636,8 +537,6 @@ free: } /* destroy objects */ - debug_prefix = "free"; - while(port_first) { debug_count++; delete port_first; @@ -650,14 +549,16 @@ free: debug_count++; join_free(); +#ifdef WITH_MISDN + /* close isdn ports */ + mISDNport_close_all(); +#endif + /* free interfaces */ if (interface_first) free_interfaces(interface_first); interface_first = NULL; - /* close isdn ports */ - mISDNport_close_all(); - /* flush messages */ debug_count++; i = 0; @@ -669,6 +570,10 @@ free: PDEBUG(DEBUG_MSG, "freed %d pending messages\n", i); } + /* clean messages */ + if (created_message) + cleanup_message(); + /* free tones */ if (toneset_first) free_tones(); @@ -680,8 +585,10 @@ free: if (created_lock) flock(lockfd, LOCK_UN); if (lockfd >= 0) { - chmod(lock, 0700); - unlink(lock); + if (created_lock) { + chmod(lock, 0700); + unlink(lock); + } close(lockfd); } @@ -701,14 +608,26 @@ free: if (pthread_mutex_destroy(&mutexd)) fprintf(stderr, "cannot destroy 'PDEBUG' mutex\n"); +#ifdef WITH_MISDN /* deinitialize mISDN */ if (created_misdn) mISDN_deinitialize(); +#endif -#ifdef WITH_GSM /* free gsm */ - if (options.gsm) - gsm_exit(0); +#ifdef WITH_GSM_BS + gsm_bs_exit(0); +#endif +#ifdef WITH_GSM_MS + gsm_ms_exit(0); +#endif +#if defined WITH_GSM_BS || defined WITH_GSM_MS + gsm_exit(0); +#endif + +#ifdef WITH_SIP + /* cleanup SIP globals */ + sip_exit(); #endif /* display memory leak */ @@ -742,55 +661,4 @@ free: } -#ifdef BUDETECT_DEF -/* special debug function to detect buffer overflow - */ -int budetect_stop = 0; -void budetect(const char *file, int line, const char *function) -{ - if (budetect_stop) - return; - /* modify this function to detect race-bugs */ -#warning DID YOU MODIFY THIS FUNCTION TO DETECT THE BUFFER OVERFLOW BUG? - class Port *port; - class PmISDN *pmisdn; - struct mISDNport *mISDNport = mISDNport_first; - int i, ii; - - while(mISDNport) { - i = 0; - ii = mISDNport->b_num; - while(i < ii) { - if (mISDNport->b_port[i]) { - port = port_first; - while(port) { - if ((port->p_type&PORT_CLASS_MASK) == PORT_CLASS_ISDN) { - pmisdn = (class PmISDN *)port; - if (pmisdn->p_isdn_crypt_listen) { - PERROR_RUNTIME("************************************************\n"); - PERROR_RUNTIME("** BUG detected in %s, line %d, function %s\n", file, line, function); - PERROR_RUNTIME("** p_isdn_crypt_listen = %d\n", pmisdn->p_isdn_crypt_listen); - PERROR_RUNTIME("************************************************\n"); - budetect_stop = 1; - } - } - if (port == mISDNport->b_port[i]) - break; - port = port->next; - if (!port) { - PERROR_RUNTIME("************************************************\n"); - PERROR_RUNTIME("** BUG detected in %s, line %d, function %s\n", file, line, function); - PERROR_RUNTIME("** b_port not in list.\n"); - PERROR_RUNTIME("************************************************\n"); - budetect_stop = 1; - } - } - } - i++; - } - mISDNport = mISDNport->next; - } - -} -#endif