]> andersk Git - moira.git/blobdiff - server/mr_main.c
Build shared libmoira via libtool.
[moira.git] / server / mr_main.c
index 7f78cf6197b3c25c555ca9a19dc3687ce016b775..eb05ff219de9fb157bb962373112314a91199f86 100644 (file)
-/*
- *     $Source$
- *     $Author$
- *     $Header$
- *
- *     Copyright (C) 1987 by the Massachusetts Institute of Technology
- *
+/* $Id$
  *
- *     SMS server process.
+ * Moira server process.
  *
- *     Most of this is stolen from ../gdb/tsr.c
+ * Copyright (C) 1987-1998 by the Massachusetts Institute of Technology
+ * For copying and distribution information, please see the file
+ * <mit-copyright.h>.
  *
- *     You are in a maze of twisty little finite automata, all different.
- *     Let the reader beware.
- * 
- *     $Log$
- *     Revision 1.7  1987-06-08 02:44:44  wesommer
- *     Minor lint fix.
- *
- * Revision 1.6  87/06/03  17:41:00  wesommer
- * Added startup support.
- * 
- * Revision 1.5  87/06/03  16:07:17  wesommer
- * Fixes for lint.
- * 
- * Revision 1.4  87/06/02  20:05:11  wesommer
- * Bug fixes on memory allocation.
- * 
- * Revision 1.3  87/06/01  04:34:27  wesommer
- * Changed returned error code.
- * 
- * Revision 1.2  87/06/01  03:34:53  wesommer
- * Added shutdown, logging.
- * 
- * Revision 1.1  87/05/31  22:06:56  wesommer
- * Initial revision
- * 
  */
 
-static char *rcsid_sms_main_c = "$Header$";
+#include <mit-copyright.h>
+#include "mr_server.h"
+
+#include <sys/socket.h>
+#include <sys/stat.h>
+#include <sys/types.h>
+#include <sys/utsname.h>
+#include <sys/wait.h>
+
+#include <netinet/in.h>
+#include <arpa/inet.h>
 
-#include <strings.h>
-#include <sys/errno.h>
-#include <sys/signal.h>
-#include "sms_private.h"
-#include "sms_server.h"
+#include <ctype.h>
+#include <errno.h>
+#include <signal.h>
+#include <stdio.h>
+#include <stdlib.h>
+#include <string.h>
+#include <unistd.h>
 
-extern CONNECTION newconn, listencon;
+#ifdef HAVE_KRB4
+#include <krb.h>
+#endif
+#include <krb5.h>
 
-extern int nclients;
-extern client **clients, *cur_client;
+RCSID("$Header$");
 
-extern OPERATION listenop;
-extern LIST_OF_OPERATIONS op_list;
+client *cur_client;
 
-extern struct sockaddr_in client_addr;
-extern int client_addrlen;
-extern TUPLE client_tuple;
+char *whoami;
+char *takedown;
+FILE *journal;
 
-extern char *whoami;
-extern char buf1[BUFSIZ];
-extern char *takedown;
-extern int errno;
+time_t now;
 
+char *host;
+krb5_context context = NULL;
+char *krb_realm = NULL;
 
-extern char *malloc();
-extern char *inet_ntoa();
-extern void sms_com_err();
-extern void do_client();
+/* Client array and associated data. This needs to be global for _list_users */
+client **clients;
+int nclients, clientssize;
 
-extern int sigshut();
-void clist_append();
-void oplist_append();
-extern u_short ntohs();
+int dormant;
+int child_exited_abnormally = 0;
+int child_pid, child_signal, child_status;
+
+void reapchild(int x);
+void godormant(int x);
+void gowakeup(int x);
+void clist_append(client *cp);
+void mr_setup_signals(void);
 
 /*
- * Main SMS server loop.
+ * Main Moira server loop.
  *
  * Initialize the world, then start accepting connections and
  * making progress on current connections.
  */
 
-/*ARGSUSED*/
-int
-main(argc, argv)
-       int argc;
-       char **argv;
+int main(int argc, char **argv)
 {
-       int status;
-       
-       whoami = argv[0];
-       /*
-        * Error handler init.
-        */
-       init_sms_err_tbl();
-       init_krb_err_tbl();
-       set_com_err_hook(sms_com_err);
-
-       if (argc != 1) {
-               com_err(whoami, 0, "Usage: smsd");
-               exit(1);
-       }               
-       
-       /*
-        * GDB initialization.
-        */
-       if(gdb_init() != 0) {
-               com_err(whoami, 0, "GDB initialization failed.");
-               exit(1);
+  int status, i, listener;
+  time_t tardy;
+  char *port, *p;
+  extern char *database;
+  struct stat stbuf;
+  struct utsname uts;
+  fd_set readfds, writefds, xreadfds, xwritefds;
+  int nfds, counter = 0;
+
+  whoami = argv[0];
+  /*
+   * Error handler init.
+   */
+  mr_init();
+  set_com_err_hook(mr_com_err);
+  setvbuf(stderr, NULL, _IOLBF, BUFSIZ);
+
+  port = strchr(MOIRA_SERVER, ':') + 1;
+
+  for (i = 1; i < argc; i++)
+    {
+      if (!strcmp(argv[i], "-db") && i + 1 < argc)
+       {
+         database = argv[i + 1];
+         i++;
        }
-
-       /*
-        * Database initialization.
-        */
-
-       if ((status = sms_open_database()) != 0) {
-               com_err(whoami, status, "when trying to open database.");
-               exit(1);
+      else if (!strcmp(argv[i], "-p") && i + 1 < argc)
+       {
+         port = argv[i + 1];
+         i++;
        }
-       
-       /*
-        * Set up client array handler.
-        */
-       nclients = 0;
-       clients = (client **) malloc(0);
-       
-       /*
-        * Signal handlers
-        *      There should probably be a few more of these.
-        */
-       
-       if ((((int)signal (SIGTERM, sigshut)) < 0) ||
-           (((int)signal (SIGHUP, sigshut)) < 0)) {
-               com_err(whoami, errno, "Unable to establish signal handler.");
-               exit(1);
+      else
+       {
+         com_err(whoami, 0, "Usage: moirad [-db database][-p port]");
+         exit(1);
        }
-       
-       /*
-        * Establish template connection.
-        */
-       if ((status = do_listen()) != 0) {
-               com_err(whoami, status,
-                       "while trying to create listening connection");
-               exit(1);
+    }
+
+  status = krb5_init_context(&context);
+  if (status)
+    {
+      com_err(whoami, status, "Initializing krb5 context.");
+      exit(1);
+    }
+
+  status = krb5_get_default_realm(context, &krb_realm);
+  if (status)
+    {
+      com_err(whoami, status, "Getting default Kerberos realm.");
+      exit(1);
+    }
+
+  /*
+   * Database initialization.  Only init if database should be open.
+   */
+
+  if (stat(MOIRA_MOTD_FILE, &stbuf) != 0)
+    {
+      if ((status = mr_open_database()))
+       {
+         com_err(whoami, status, "trying to open database.");
+         exit(1);
        }
-       
-       op_list = create_list_of_operations(1, listenop);
-       
-       (void) sprintf(buf1, "started (pid %d)", getpid());
-       com_err(whoami, 0, buf1);
-       com_err(whoami, 0, rcsid_sms_main_c);
-
-       /*
-        * Run until shut down.
-        */
-       while(!takedown) {              
-               register int i;
-               /*
-                * Block until something happens.
-                */
-#ifdef notdef
-               com_err(whoami, 0, "tick");
-#endif notdef
-               errno = 0;
-               status = op_select_any(op_list, 0,
-                                      (fd_set *)NULL, (fd_set *)NULL,
-                                      (fd_set *)NULL, (struct timeval *)NULL);
-
-               if (status == -1) {
-                       com_err(whoami, errno, "error from op_select");
-                       continue;
-               } else if (status != -2) {
-                       com_err(whoami, 0, "wrong return from op_select_any");
-                       continue;
-               }
-               if (takedown) break;
-#ifdef notdef
-               fprintf(stderr, "    tick\n");
-#endif notdef
-               /*
-                * Handle any existing connections.
-                */
-               for (i=0; i<nclients; i++) {
-                       if (OP_DONE(clients[i]->pending_op)) {
-                               cur_client = clients[i];
-                               do_client(cur_client);
-                               cur_client = NULL;
-                               if (takedown) break;
-                       }
-               }
-               /*
-                * Handle any new connections.
-                */
-               if (OP_DONE(listenop)) {
-                       if ((status = new_connection()) != 0) {
-                               com_err(whoami, errno,
-                                       "Error on listening operation.");
-                               /*
-                                * Sleep here to prevent hosing?
-                                */
-                       }
-               }
+      sanity_check_database();
+    }
+  else
+    {
+      dormant = ASLEEP;
+      com_err(whoami, 0, "sleeping, not opening database");
+    }
+
+  sanity_check_queries();
+
+  /*
+   * Get moira server hostname for authentication
+   */
+  if (uname(&uts) < 0)
+    {
+      com_err(whoami, errno, "Unable to get local hostname");
+      exit(1);
+    }
+  host = canonicalize_hostname(xstrdup(uts.nodename));
+  for (p = host; *p && *p != '.'; p++)
+    {
+      if (isupper(*p))
+       *p = tolower(*p);
+    }
+  *p = '\0';
+
+  /*
+   * Set up client array handler.
+   */
+  nclients = 0;
+  clientssize = 10;
+  clients = xmalloc(clientssize * sizeof(client *));
+
+  mr_setup_signals();
+
+  journal = fopen(JOURNAL, "a");
+  if (!journal)
+    {
+      com_err(whoami, errno, "opening journal file");
+      exit(1);
+    }
+
+  /*
+   * Establish template connection.
+   */
+  listener = mr_listen(port);
+  if (listener == -1)
+    {
+      com_err(whoami, MR_ABORTED, "trying to create listening connection");
+      exit(1);
+    }
+  FD_ZERO(&xreadfds);
+  FD_ZERO(&xwritefds);
+  FD_SET(listener, &xreadfds);
+  nfds = listener + 1;
+
+  com_err(whoami, 0, "started (pid %d)", getpid());
+  com_err(whoami, 0, rcsid);
+  if (dormant != ASLEEP)
+    send_zgram("MOIRA", "server started");
+  else
+    send_zgram("MOIRA", "server started, but database closed");
+
+  /*
+   * Run until shut down.
+   */
+  while (!takedown)
+    {
+      int i;
+      struct timeval timeout = {60, 0}; /* 1 minute */
+
+      /* If we're supposed to go down and we can, do it */
+      if (((dormant == AWAKE) && (nclients == 0) &&
+          (stat(MOIRA_MOTD_FILE, &stbuf) == 0)) ||
+         (dormant == SLEEPY))
+       {
+         mr_close_database();
+         com_err(whoami, 0, "database closed");
+         mr_setup_signals();
+         send_zgram("MOIRA", "database closed");
+         dormant = ASLEEP;
        }
-       com_err(whoami, 0, takedown);
-       sms_close_database();
-       return 0;
-}
 
-/*
- * Set up the template connection and queue the first accept.
- */
+      /* Block until something happens. */
+      memcpy(&readfds, &xreadfds, sizeof(readfds));
+      memcpy(&writefds, &xwritefds, sizeof(writefds));
+      if (select(nfds, &readfds, &writefds, NULL, &timeout) == -1)
+       {
+         if (errno != EINTR)
+           com_err(whoami, errno, "in select");
+         if (!inc_running || now - inc_started > INC_TIMEOUT)
+           next_incremental();
+         continue;
+       }
 
-int
-do_listen()
-{
-       char *service = index(SMS_GDB_SERV, ':') + 1;
+      if (takedown)
+       break;
 
-       listencon = create_listening_connection(service);
+      if (child_exited_abnormally)
+       {
+         critical_alert(whoami, "moirad", "%d: child exits with signal %d status %d",
+                        child_pid, child_signal, child_status);
+         child_exited_abnormally = 0;
+       }
 
-       if (listencon == NULL)
-               return errno;
+      time(&now);
+      if (!inc_running || now - inc_started > INC_TIMEOUT)
+       next_incremental();
+      tardy = now - 30 * 60;
+
+      /* If we're asleep and we should wake up, do it */
+      if ((dormant == ASLEEP) && (stat(MOIRA_MOTD_FILE, &stbuf) == -1) &&
+         (errno == ENOENT))
+       {
+         mr_open_database();
+         com_err(whoami, 0, "database open");
+         mr_setup_signals();
+         send_zgram("MOIRA", "database open again");
+         dormant = AWAKE;
+       }
 
-       listenop = create_operation();
-       client_addrlen = sizeof(client_addr);
+      /* Handle any new connections */
+      if (FD_ISSET(listener, &readfds))
+       {
+         int newconn, addrlen = sizeof(struct sockaddr_in);
+         struct sockaddr_in addr;
+         client *cp;
+
+         newconn = accept(listener, (struct sockaddr *)&addr, &addrlen);
+         if (newconn == -1)
+           com_err(whoami, errno, "accepting new connection");
+         else if (newconn > 0)
+           {
+             if (newconn + 1 > nfds)
+               nfds = newconn + 1;
+             FD_SET(newconn, &xreadfds);
+
+             /* Add a new client to the array */
+             nclients++;
+             if (nclients > clientssize)
+               {
+                 clientssize = 2 * clientssize;
+                 clients = xrealloc(clients, clientssize * sizeof(client *));
+               }
 
-       start_accepting_client(listencon, listenop, &newconn,
-                              (char *)&client_addr,
-                              &client_addrlen, &client_tuple);
-       return 0;
-}
+             clients[nclients - 1] = cp = xmalloc(sizeof(client));
+             memset(cp, 0, sizeof(client));
+             cp->con = newconn;
+             cp->id = counter++;
+             cp->last_time_used = now;
+             cp->haddr = addr;
+             cp->tuplessize = 1;
+             cp->tuples = xmalloc(sizeof(mr_params));
+             memset(cp->tuples, 0, sizeof(mr_params));
+             cp->state = CL_ACCEPTING;
+             cp->version = 2;
+
+             cur_client = cp;
+             com_err(whoami, 0,
+                     "New connection from %s port %d (now %d client%s)",
+                     inet_ntoa(cp->haddr.sin_addr),
+                     (int)ntohs(cp->haddr.sin_port),
+                     nclients, nclients != 1 ? "s" : "");
+           }
+       }
 
-/*
- * This routine is called when a new connection comes in.
- *
- * It sets up a new client and adds it to the list of currently active clients.
- */
-int
-new_connection()
-{
-       register client *cp = (client *)malloc(sizeof *cp);
-       static counter = 0;
-       
-       /*
-        * Make sure there's been no error
-        */
-       if(OP_STATUS(listenop) != OP_COMPLETE ||
-          newconn == NULL) {
-               return errno;
-#ifdef notdef
-               exit(8); /* XXX */
-#endif notdef
+      /* Handle any existing connections. */
+      for (i = 0; i < nclients; i++)
+       {
+         cur_client = clients[i];
+
+         if (FD_ISSET(clients[i]->con, &writefds))
+           {
+             client_write(clients[i]);
+             if (!clients[i]->ntuples)
+               {
+                 FD_CLR(clients[i]->con, &xwritefds);
+                 FD_SET(clients[i]->con, &xreadfds);
+               }
+             clients[i]->last_time_used = now;
+           }
+
+         if (FD_ISSET(clients[i]->con, &readfds))
+           {
+             if (clients[i]->state == CL_ACCEPTING)
+               {
+                 switch(mr_cont_accept(clients[i]->con,
+                                       &clients[i]->hsbuf,
+                                       &clients[i]->hslen))
+                   {
+                   case -1:
+                     break;
+
+                   case 0:
+                     clients[i]->state = CL_CLOSING;
+                     break;
+
+                   default:
+                     clients[i]->state = CL_ACTIVE;
+                     clients[i]->hsbuf = NULL;
+                     break;
+                   }
+               }
+             else
+               {
+                 client_read(clients[i]);
+                 if (clients[i]->ntuples)
+                   {
+                     FD_CLR(clients[i]->con, &xreadfds);
+                     FD_SET(clients[i]->con, &xwritefds);
+                   }
+                 clients[i]->last_time_used = now;
+               }
+           }
+
+         if (clients[i]->last_time_used < tardy)
+           {
+             com_err(whoami, 0, "Shutting down connection due to inactivity");
+             clients[i]->state = CL_CLOSING;
+           }
+
+         if (clients[i]->state == CL_CLOSING)
+           {
+             client *old;
+
+             com_err(whoami, 0, "Closed connection (now %d client%s, "
+                     "%d queries)", nclients - 1, nclients != 2 ? "s" : "",
+                     newqueries);
+
+             shutdown(clients[i]->con, 2);
+             close(clients[i]->con);
+             FD_CLR(clients[i]->con, &xreadfds);
+             FD_CLR(clients[i]->con, &xwritefds);
+             free_rtn_tuples(clients[i]);
+             free(clients[i]->tuples);
+             free(clients[i]->hsbuf);
+             old = clients[i];
+             clients[i] = clients[--nclients];
+             free(old);
+           }
+
+         cur_client = NULL;
+         if (takedown)
+           break;
        }
+    }
 
-       /*
-        * Set up the new connection and reply to the client
-        */
-
-       cp->state = CL_STARTING;
-       cp->action = CL_ACCEPT;
-       cp->con = newconn;
-       cp->id = counter++;
-       cp->args = NULL;
-       cp->clname = NULL;
-       cp->reply.sms_argv = NULL;
-
-       newconn = NULL;
-       
-       cp->pending_op = create_operation();
-       reset_operation(cp->pending_op);
-       oplist_append(&op_list, cp->pending_op);
-       cur_client = cp;
-       
-       /*
-        * Add a new client to the array..
-        */
-       clist_append(cp);
-       
-       /*
-        * Let him know we heard him.
-        */
-       start_replying_to_client(cp->pending_op, cp->con, GDB_ACCEPTED,
-                                "", "");
-
-       cp->haddr = client_addr;
-       
-       /*
-        * Log new connection.
-        */
-       
-       (void) sprintf(buf1,
-                      "New connection from %s port %d (now %d client%s)",
-                      inet_ntoa(cp->haddr.sin_addr),
-                      (int)ntohs(cp->haddr.sin_port),
-                      nclients,
-                      nclients!=1?"s":"");
-       com_err(whoami, 0, buf1);
-       
-       /*
-        * Get ready to accept the next connection.
-        */
-       reset_operation(listenop);
-       client_addrlen = sizeof(client_addr);
-
-       start_accepting_client(listencon, listenop, &newconn,
-                              (char *)&client_addr,
-                              &client_addrlen, &client_tuple);
-       return 0;
+  com_err(whoami, 0, "%s", takedown);
+  if (dormant != ASLEEP)
+    mr_close_database();
+  send_zgram("MOIRA", takedown);
+  return 0;
 }
 
-/*
- * Add a new client to the known clients.
- */
-void
-clist_append(cp)
-       client *cp;
-{              
-       client **clients_n;
-       
-       nclients++;
-       clients_n = (client **)malloc
-               ((unsigned)(nclients * sizeof(client *)));
-       bcopy((char *)clients, (char *)clients_n, (nclients-1)*sizeof(cp));
-       clients_n[nclients-1] = cp;
-       free((char *)clients);
-       clients = clients_n;
-       clients_n = NULL;
+void reapchild(int x)
+{
+  int status, pid;
+
+  while ((pid = waitpid(-1, &status, WNOHANG)) > 0)
+    {
+      if (pid == inc_pid)
+       inc_running = 0;
+      if (!takedown && (WTERMSIG(status) != 0 || WEXITSTATUS(status) != 0))
+       {
+         child_exited_abnormally = 1;
+         child_pid = pid;
+         child_signal = WTERMSIG(status);
+         child_status = WEXITSTATUS(status);
+       }
+    }
 }
 
-               
-void
-clist_delete(cp)
-       client *cp;
+
+void godormant(int x)
 {
-       client **clients_n, **scpp, **dcpp; /* source and dest client */
-                                           /* ptr ptr */
-       
-       int found_it = 0;
-       
-       clients_n = (client **)malloc
-               ((unsigned)((nclients - 1)* sizeof(client *)));
-       for (scpp = clients, dcpp = clients_n; scpp < clients+nclients; ) {
-               if (*scpp != cp) {
-                       *dcpp++ = *scpp++;
-               } else {
-                       scpp++;
-                       if (found_it) abort();
-                       found_it = 1;
-               }                       
-       }
-       --nclients;     
-       free((char *)clients);
-       clients = clients_n;
-       clients_n = NULL;
-
-       reset_operation(cp->pending_op);
-       delete_operation(cp->pending_op);
-       free((char *)cp);
+  switch (dormant)
+    {
+    case AWAKE:
+    case GROGGY:
+      com_err(whoami, 0, "requested to go dormant");
+      break;
+    case ASLEEP:
+      com_err(whoami, 0, "already asleep");
+      break;
+    case SLEEPY:
+      break;
+    }
+  dormant = SLEEPY;
 }
 
-/*
- * Add a new operation to a list of operations.
- *
- * This should be rewritten to use realloc instead, since in most
- * cases it won't have to copy the array.
- */
 
-void
-oplist_append(oplp, op)
-       LIST_OF_OPERATIONS *oplp;
-       OPERATION op;
+void gowakeup(int x)
 {
-       int count = (*oplp)->count+1;
-       LIST_OF_OPERATIONS newlist = (LIST_OF_OPERATIONS)
-               db_alloc(size_of_list_of_operations(count));
-       bcopy((char *)(*oplp), (char *)newlist,
-             size_of_list_of_operations((*oplp)->count));
-       newlist->count++;
-       newlist->op[count-1] = op;
-       db_free((char *)(*oplp), size_of_list_of_operations(count-1));
-       (*oplp) = newlist;
+  switch (dormant)
+    {
+    case ASLEEP:
+    case SLEEPY:
+      com_err(whoami, 0, "Good morning");
+      break;
+    case AWAKE:
+      com_err(whoami, 0, "already awake");
+      break;
+    case GROGGY:
+      break;
+    }
+  dormant = GROGGY;
 }
 
+
+void mr_setup_signals(void)
+{
+  struct sigaction action;
+
+  action.sa_flags = 0;
+  sigemptyset(&action.sa_mask);
+
+  /* There should probably be a few more of these. */
+
+  action.sa_handler = sigshut;
+  if ((sigaction(SIGTERM, &action, NULL) < 0) ||
+      (sigaction(SIGINT, &action, NULL) < 0) ||
+      (sigaction(SIGHUP, &action, NULL) < 0))
+    {
+      com_err(whoami, errno, "Unable to establish signal handlers.");
+      exit(1);
+    }
+
+  action.sa_handler = godormant;
+  if (sigaction(SIGUSR1, &action, NULL) < 0)
+    {
+      com_err(whoami, errno, "Unable to establish signal handlers.");
+      exit(1);
+    }
+
+  action.sa_handler = gowakeup;
+  if (sigaction(SIGUSR2, &action, NULL) < 0)
+    {
+      com_err(whoami, errno, "Unable to establish signal handlers.");
+      exit(1);
+    }
+
+  action.sa_handler = SIG_IGN;
+  if (sigaction(SIGPIPE, &action, NULL) < 0)
+    {
+      com_err(whoami, errno, "Unable to establish signal handlers.");
+      exit(1);
+    }
+
+  action.sa_handler = reapchild;
+  sigaddset(&action.sa_mask, SIGCHLD);
+  if (sigaction(SIGCHLD, &action, NULL) < 0)
+    {
+      com_err(whoami, errno, "Unable to establish signal handlers.");
+      exit(1);
+    }
+}
This page took 0.826178 seconds and 4 git commands to generate.