]> code.citadel.org Git - citadel.git/blobdiff - citadel/sysdep.c
* Replaced all "Citadel/UX" references with "Citadel"
[citadel.git] / citadel / sysdep.c
index cee6c1fd583be5e5ddf9eaee6340088d3625877f..9c97ef21df290107394eef25b319dd3c2d80684d 100644 (file)
@@ -1,7 +1,7 @@
 /*
  * $Id$
  *
- * Citadel/UX "system dependent" stuff.
+ * Citadel "system dependent" stuff.
  * See copyright.txt for copyright information.
  *
  * Here's where we (hopefully) have most parts of the Citadel server that
@@ -94,7 +94,6 @@ struct CitContext masterCC;
 time_t last_purge = 0;                         /* Last dead session purge */
 static int num_threads = 0;                    /* Current number of threads */
 int num_sessions = 0;                          /* Current number of sessions */
-static int rescan[2];                          /* The rescan pipe */
 
 pthread_t initial_thread;              /* tid for main() thread */
 
@@ -108,12 +107,12 @@ int syslog_facility = (-1);
  * log data sent through this function.  BE CAREFUL!
  */
 void lprintf(enum LogLevel loglevel, const char *format, ...) {   
-        va_list arg_ptr;
+       va_list arg_ptr;
        char buf[SIZ];
  
-        va_start(arg_ptr, format);   
-        vsnprintf(buf, sizeof(buf), format, arg_ptr);   
-        va_end(arg_ptr);   
+       va_start(arg_ptr, format);   
+       vsnprintf(buf, sizeof(buf), format, arg_ptr);   
+       va_end(arg_ptr);   
 
        if (syslog_facility >= 0) {
                if (loglevel <= verbosity) {
@@ -237,17 +236,6 @@ void init_sysdep(void) {
         * socket breaks.
         */
        signal(SIGPIPE, SIG_IGN);
-
-       /*
-        * Set up the rescan pipe.  When a session goes idle, it writes a
-        * single byte to this pipe to wake up the thread calling select(),
-        * which tells it to rescan the list of session sockets.
-        */
-       if (pipe(rescan) != 0) {
-               lprintf(CTDL_EMERG, "Cannot create rescan pipe: %s\n",
-                       strerror(errno));
-               abort();
-       }
 }
 
 
@@ -287,7 +275,7 @@ void end_critical_section(int which_one)
  * a TCP port.  The server shuts down if the bind fails.
  *
  */
-int ig_tcp_server(int port_number, int queue_len)
+int ig_tcp_server(char *ip_addr, int port_number, int queue_len)
 {
        struct sockaddr_in sin;
        int s, i;
@@ -298,8 +286,17 @@ int ig_tcp_server(int port_number, int queue_len)
 
        memset(&sin, 0, sizeof(sin));
        sin.sin_family = AF_INET;
-       sin.sin_addr.s_addr = INADDR_ANY;
        sin.sin_port = htons((u_short)port_number);
+       if (ip_addr == NULL) {
+               sin.sin_addr.s_addr = INADDR_ANY;
+       }
+       else {
+               sin.sin_addr.s_addr = inet_addr(ip_addr);
+       }
+                                                                               
+       if (sin.sin_addr.s_addr == INADDR_NONE) {
+               sin.sin_addr.s_addr = INADDR_ANY;
+       }
 
        s = socket(PF_INET, SOCK_STREAM, IPPROTO_TCP);
 
@@ -460,7 +457,7 @@ DONE:       ++num_sessions;
 
 /*
  * buffer_output() ... tell client_write to buffer all output until
- *                     instructed to dump it all out later
+ *                  instructed to dump it all out later
  */
 void buffer_output(void) {
        if (CC->buffering == 0) {
@@ -541,15 +538,15 @@ void client_write(char *buf, int nbytes)
 
 /*
  * cprintf()  ...   Send formatted printable data to the client.   It is
- *                  implemented in terms of client_write() but remains in
- *                  sysdep.c in case we port to somewhere without va_args...
+ *               implemented in terms of client_write() but remains in
+ *               sysdep.c in case we port to somewhere without va_args...
  */
 void cprintf(const char *format, ...) {   
-        va_list arg_ptr;   
-        char buf[SIZ];   
+       va_list arg_ptr;   
+       char buf[SIZ];   
    
-        va_start(arg_ptr, format);   
-        if (vsnprintf(buf, sizeof buf, format, arg_ptr) == -1)
+       va_start(arg_ptr, format);   
+       if (vsnprintf(buf, sizeof buf, format, arg_ptr) == -1)
                buf[sizeof buf - 2] = '\n';
        client_write(buf, strlen(buf)); 
        va_end(arg_ptr);
@@ -906,10 +903,9 @@ void *worker_thread(void *arg) {
 do_select:     force_purge = 0;
                bind_me = NULL;         /* Which session shall we handle? */
 
-               /* Initialize the fdset.  Start with the rescan pipe. */
+               /* Initialize the fdset. */
                FD_ZERO(&readfds);
-               FD_SET(rescan[0], &readfds);
-               highest = rescan[0] + 1;
+               highest = 0;
 
                begin_critical_section(S_SESSION_TABLE);
                for (ptr = ContextList; ptr != NULL; ptr = ptr->next) {
@@ -945,13 +941,7 @@ do_select: force_purge = 0;
                if (!time_to_die) {
                        tv.tv_sec = 1;          /* wake up every second if no input */
                        tv.tv_usec = 0;
-                       /*
-                        * Avoid the "thundering herd" problem by letting only
-                        * one thread select() at a time.
-                        */
-                       begin_critical_section(S_I_WANNA_SELECT);
                        retval = select(highest + 1, &readfds, NULL, NULL, &tv);
-                       end_critical_section(S_I_WANNA_SELECT);
                }
                else {
                        break;
@@ -1018,27 +1008,15 @@ do_select:      force_purge = 0;
                                        serviceptr->h_greeting_function();
                                        become_session(NULL);
                                        con->state = CON_IDLE;
-
-                                       /* Wake up the currently blocking select() by
-                                        * writing a dummy byte to the rescan pipe.
-                                        */
-                                       write(rescan[1], &i, 1);
                                        goto do_select;
                                }
                        }
                }
 
                if (time_to_die) {
-                       end_critical_section(S_I_WANNA_SELECT);
                        break;
                }
 
-               /* If the rescan pipe went active, read a dummy byte from it */
-               if (FD_ISSET(rescan[0], &readfds)) {
-                       read(rescan[0], &i, 1);
-                       goto do_select;
-               }
-
                /* It must be a client socket.  Find a context that has data
                 * waiting on its socket *and* is in the CON_IDLE state.  Any
                 * active sockets other than our chosen one are marked as
@@ -1083,11 +1061,6 @@ SKIP_SELECT:
                        force_purge = CC->kill_me;
                        become_session(NULL);
                        bind_me->state = CON_IDLE;
-
-                       /* Wake up the currently blocking select() by writing
-                        * a dummy byte to the rescan pipe.
-                        */
-                       write(rescan[1], &i, 1);
                }
 
                dead_session_purge(force_purge);