Turn on --enable-bos-new-config unconditionally
[openafs.git] / src / bozo / bosserver.c
index 12f4077..4c5159e 100644 (file)
@@ -10,7 +10,6 @@
 #include <afsconfig.h>
 #include <afs/param.h>
 
-RCSID("$Header$");
 
 #include <afs/stds.h>
 #include <sys/types.h>
@@ -20,6 +19,7 @@ RCSID("$Header$");
 #include <string.h>
 #include <stdio.h>
 #include <stdlib.h>
+#include <stdarg.h>
 #ifdef AFS_NT40_ENV
 #include <winsock2.h>
 #include <direct.h>
@@ -36,28 +36,28 @@ RCSID("$Header$");
 #include <rx/rx_globals.h>
 #include "bosint.h"
 #include "bnode.h"
-#include <afs/auth.h>
+#include "bosprototypes.h"
+#include <rx/rxkad.h>
+#include <rx/rxstat.h>
 #include <afs/keys.h>
 #include <afs/ktime.h>
 #include <afs/afsutil.h>
 #include <afs/fileutil.h>
-#include <afs/procmgmt.h>  /* signal(), kill(), wait(), etc. */
+#include <afs/procmgmt.h>      /* signal(), kill(), wait(), etc. */
+#include <afs/audit.h>
+#include <afs/cellconfig.h>
 #if defined(AFS_SGI_ENV)
 #include <afs/afs_args.h>
 #endif
 
-
 #define BOZO_LWP_STACKSIZE     16000
-extern int BOZO_ExecuteRequest();
-extern int RXSTATS_ExecuteRequest();
-extern int afsconf_GetKey();
-extern struct bnode_ops fsbnode_ops, ezbnode_ops, cronbnode_ops;
+extern struct bnode_ops fsbnode_ops, dafsbnode_ops, ezbnode_ops, cronbnode_ops;
+
 struct afsconf_dir *bozo_confdir = 0;  /* bozo configuration dir */
-static char *bozo_pid;
+static PROCESS bozo_pid;
 struct rx_securityClass *bozo_rxsc[3];
 const char *bozo_fileName;
 FILE *bozo_logFile;
-extern int rx_stackSize;    /* for rx_SetStackSize macro */
 
 int DoLogging = 0;
 int DoSyslog = 0;
@@ -69,15 +69,22 @@ static afs_int32 nextDay;
 
 struct ktime bozo_nextRestartKT, bozo_nextDayKT;
 int bozo_newKTs;
+int rxBind = 0;
+int rxkadDisableDotCheck = 0;
+
+#define ADDRSPERSITE 16         /* Same global is in rx/rx_user.c */
+afs_uint32 SHostAddrs[ADDRSPERSITE];
+
 #ifdef BOS_RESTRICTED_MODE
-int bozo_isrestricted=0;
-int bozo_restdisable=0;
+int bozo_isrestricted = 0;
+int bozo_restdisable = 0;
 
-void bozo_insecureme(int sig) 
+void
+bozo_insecureme(int sig)
 {
-     signal(SIGFPE, bozo_insecureme);
-     bozo_isrestricted=0;
-     bozo_restdisable=1;
+    signal(SIGFPE, bozo_insecureme);
+    bozo_isrestricted = 0;
+    bozo_restdisable = 1;
 }
 #endif
 
@@ -86,14 +93,16 @@ struct bztemp {
 };
 
 /* check whether caller is authorized to manage RX statistics */
-int bozo_rxstat_userok(call)
-    struct rx_call *call;
+int
+bozo_rxstat_userok(struct rx_call *call)
 {
-    return afsconf_SuperUser(bozo_confdir, call, (char *)0);
+    return afsconf_SuperUser(bozo_confdir, call, NULL);
 }
 
 /* restart bozo process */
-bozo_ReBozo() {
+int
+bozo_ReBozo(void)
+{
 #ifdef AFS_NT40_ENV
     /* exit with restart code; SCM integrator process will restart bosserver */
     int status = BOSEXIT_RESTART;
@@ -125,12 +134,11 @@ bozo_ReBozo() {
        argv[i] = "-log";
        i++;
     }
-
 #ifndef AFS_NT40_ENV
     /* if syslog logging is on, pass "-syslog" to new bosserver */
     if (DoSyslog) {
-       char *arg=(char *)malloc(40); /* enough for -syslog=# */
-       if ( DoSyslogFacility != LOG_DAEMON ) {
+       char *arg = (char *)malloc(40); /* enough for -syslog=# */
+       if (DoSyslogFacility != LOG_DAEMON) {
            snprintf(arg, 40, "-syslog=%d", DoSyslogFacility);
        } else {
            strcpy(arg, "-syslog");
@@ -148,21 +156,23 @@ bozo_ReBozo() {
        close(i);
     }
 
-    execv(argv[0], argv);  /* should not return */
+    execv(argv[0], argv);      /* should not return */
     _exit(1);
 #endif /* AFS_NT40_ENV */
 }
 
 /* make sure a dir exists */
-static MakeDir(adir)
-register char *adir; {
+static int
+MakeDir(const char *adir)
+{
     struct stat tstat;
     register afs_int32 code;
     if (stat(adir, &tstat) < 0 || (tstat.st_mode & S_IFMT) != S_IFDIR) {
        int reqPerm;
        unlink(adir);
-       reqPerm = GetRequiredDirPerm (adir);
-       if (reqPerm == -1) reqPerm = 0777;
+       reqPerm = GetRequiredDirPerm(adir);
+       if (reqPerm == -1)
+           reqPerm = 0777;
 #ifdef AFS_NT40_ENV
        /* underlying filesystem may not support directory protection */
        code = mkdir(adir);
@@ -175,54 +185,78 @@ register char *adir; {
 }
 
 /* create all the bozo dirs */
-static CreateDirs() {
-    
-    MakeDir(AFSDIR_USR_DIRPATH);
-    MakeDir(AFSDIR_SERVER_AFS_DIRPATH);
+static int
+CreateDirs(void)
+{
+    if ((!strncmp
+        (AFSDIR_USR_DIRPATH, AFSDIR_CLIENT_ETC_DIRPATH,
+         strlen(AFSDIR_USR_DIRPATH)))
+       ||
+       (!strncmp
+        (AFSDIR_USR_DIRPATH, AFSDIR_SERVER_BIN_DIRPATH,
+         strlen(AFSDIR_USR_DIRPATH)))) {
+       MakeDir(AFSDIR_USR_DIRPATH);
+    }
+    if (!strncmp
+       (AFSDIR_SERVER_AFS_DIRPATH, AFSDIR_SERVER_BIN_DIRPATH,
+        strlen(AFSDIR_SERVER_AFS_DIRPATH))) {
+       MakeDir(AFSDIR_SERVER_AFS_DIRPATH);
+    }
     MakeDir(AFSDIR_SERVER_BIN_DIRPATH);
-    MakeDir(AFSDIR_SERVER_ETC_DIRPATH); 
+    MakeDir(AFSDIR_SERVER_ETC_DIRPATH);
     MakeDir(AFSDIR_SERVER_LOCAL_DIRPATH);
-    MakeDir(AFSDIR_SERVER_DB_DIRPATH); 
+    MakeDir(AFSDIR_SERVER_DB_DIRPATH);
     MakeDir(AFSDIR_SERVER_LOGS_DIRPATH);
 #ifndef AFS_NT40_ENV
-    MakeDir(AFSDIR_CLIENT_VICE_DIRPATH);
+    if (!strncmp
+       (AFSDIR_CLIENT_VICE_DIRPATH, AFSDIR_CLIENT_ETC_DIRPATH,
+        strlen(AFSDIR_CLIENT_VICE_DIRPATH))) {
+       MakeDir(AFSDIR_CLIENT_VICE_DIRPATH);
+    }
     MakeDir(AFSDIR_CLIENT_ETC_DIRPATH);
 
-    symlink(AFSDIR_SERVER_THISCELL_FILEPATH, AFSDIR_CLIENT_THISCELL_FILEPATH); 
-    symlink(AFSDIR_SERVER_CELLSERVDB_FILEPATH, AFSDIR_CLIENT_CELLSERVDB_FILEPATH);
+    symlink(AFSDIR_SERVER_THISCELL_FILEPATH, AFSDIR_CLIENT_THISCELL_FILEPATH);
+    symlink(AFSDIR_SERVER_CELLSERVDB_FILEPATH,
+           AFSDIR_CLIENT_CELLSERVDB_FILEPATH);
 #endif /* AFS_NT40_ENV */
     return 0;
 }
 
 /* strip the \\n from the end of the line, if it is present */
-static StripLine(abuffer)
-register char *abuffer; {
+static int
+StripLine(register char *abuffer)
+{
     register char *tp;
-    
-    tp = abuffer + strlen(abuffer); /* starts off pointing at the null  */
-    if(tp == abuffer) return 0;            /* null string, no last character to check */
-    tp--;      /* aim at last character */
-    if (*tp == '\n') *tp = 0;
+
+    tp = abuffer + strlen(abuffer);    /* starts off pointing at the null  */
+    if (tp == abuffer)
+       return 0;               /* null string, no last character to check */
+    tp--;                      /* aim at last character */
+    if (*tp == '\n')
+       *tp = 0;
     return 0;
 }
 
 /* write one bnode's worth of entry into the file */
-static bzwrite(abnode, at)
-register struct bnode *abnode;
-register struct bztemp *at; {
+static int
+bzwrite(register struct bnode *abnode, void *arock)
+{
+    register struct bztemp *at = (struct bztemp *)arock;
     register int i;
     char tbuffer[BOZO_BSSIZE];
     register afs_int32 code;
 
     if (abnode->notifier)
-       fprintf(at->file, "bnode %s %s %d %s\n", 
-               abnode->type->name, abnode->name, abnode->fileGoal, abnode->notifier);
+       fprintf(at->file, "bnode %s %s %d %s\n", abnode->type->name,
+               abnode->name, abnode->fileGoal, abnode->notifier);
     else
-       fprintf(at->file, "bnode %s %s %d\n", abnode->type->name, abnode->name, abnode->fileGoal);
-    for(i=0;;i++) {
+       fprintf(at->file, "bnode %s %s %d\n", abnode->type->name,
+               abnode->name, abnode->fileGoal);
+    for (i = 0;; i++) {
        code = bnode_GetParm(abnode, i, tbuffer, BOZO_BSSIZE);
        if (code) {
-           if (code != BZDOM) return code;
+           if (code != BZDOM)
+               return code;
            break;
        }
        fprintf(at->file, "parm %s\n", tbuffer);
@@ -232,8 +266,9 @@ register struct bztemp *at; {
 }
 
 #define        MAXPARMS    20
-ReadBozoFile(aname)
-char *aname; {
+int
+ReadBozoFile(char *aname)
+{
     register FILE *tfile;
     char tbuffer[BOZO_BSSIZE];
     register char *tp;
@@ -252,54 +287,58 @@ char *aname; {
        /* if BozoInit exists and BosConfig doesn't, try a rename */
        if (access(AFSDIR_SERVER_BOZINIT_FILEPATH, 0) == 0
            && access(AFSDIR_SERVER_BOZCONF_FILEPATH, 0) != 0) {
-           code = renamefile(AFSDIR_SERVER_BOZINIT_FILEPATH, AFSDIR_SERVER_BOZCONF_FILEPATH);
+           code =
+               renamefile(AFSDIR_SERVER_BOZINIT_FILEPATH,
+                          AFSDIR_SERVER_BOZCONF_FILEPATH);
            if (code < 0)
                perror("bosconfig rename");
        }
-#ifdef BOS_NEW_CONFIG
        if (access(AFSDIR_SERVER_BOZCONFNEW_FILEPATH, 0) == 0) {
-            code = renamefile(AFSDIR_SERVER_BOZCONFNEW_FILEPATH,
-                              AFSDIR_SERVER_BOZCONF_FILEPATH);
-            if (code < 0)
-                 perror("bosconfig rename");
+           code =
+               renamefile(AFSDIR_SERVER_BOZCONFNEW_FILEPATH,
+                          AFSDIR_SERVER_BOZCONF_FILEPATH);
+           if (code < 0)
+               perror("bosconfig rename");
        }
-#endif       
     }
 
     /* setup default times we want to do restarts */
     bozo_nextRestartKT.mask = KTIME_HOUR | KTIME_MIN | KTIME_DAY;
-    bozo_nextRestartKT.hour = 4; /* 4 am */
+    bozo_nextRestartKT.hour = 4;       /* 4 am */
     bozo_nextRestartKT.min = 0;
-    bozo_nextRestartKT.day =   0;  /* Sunday */
+    bozo_nextRestartKT.day = 0;        /* Sunday */
     bozo_nextDayKT.mask = KTIME_HOUR | KTIME_MIN;
     bozo_nextDayKT.hour = 5;
     bozo_nextDayKT.min = 0;
 
-    for(code=0;code<MAXPARMS;code++)
-       parms[code] = (char *) 0;
-    instp = typep = notifier = (char *) 0;
+    for (code = 0; code < MAXPARMS; code++)
+       parms[code] = NULL;
+    instp = typep = notifier = NULL;
     tfile = (FILE *) 0;
-    if (!aname) aname = (char *)bozo_fileName;
+    if (!aname)
+       aname = (char *)bozo_fileName;
     tfile = fopen(aname, "r");
-    if (!tfile) 
-       return 0;       /* -1 */
-    instp = (char *) malloc(BOZO_BSSIZE);
-    typep = (char *) malloc(BOZO_BSSIZE);
-    notifier = notp = (char *) malloc(BOZO_BSSIZE);
+    if (!tfile)
+       return 0;               /* -1 */
+    instp = (char *)malloc(BOZO_BSSIZE);
+    typep = (char *)malloc(BOZO_BSSIZE);
+    notifier = notp = (char *)malloc(BOZO_BSSIZE);
     while (1) {
        /* ok, read lines giving parms and such from the file */
        tp = fgets(tbuffer, sizeof(tbuffer), tfile);
-       if (tp == (char *) 0) break;    /* all done */
+       if (tp == (char *)0)
+           break;              /* all done */
 
        if (strncmp(tbuffer, "restarttime", 11) == 0) {
-           code = sscanf(tbuffer, "restarttime %d %d %d %d %d",
-                         &ktmask, &ktday, &kthour, &ktmin, &ktsec);
+           code =
+               sscanf(tbuffer, "restarttime %d %d %d %d %d", &ktmask, &ktday,
+                      &kthour, &ktmin, &ktsec);
            if (code != 5) {
                code = -1;
                goto fail;
            }
            /* otherwise we've read in the proper ktime structure; now assign
-              it and continue processing */
+            * it and continue processing */
            bozo_nextRestartKT.mask = ktmask;
            bozo_nextRestartKT.day = ktday;
            bozo_nextRestartKT.hour = kthour;
@@ -309,14 +348,15 @@ char *aname; {
        }
 
        if (strncmp(tbuffer, "checkbintime", 12) == 0) {
-           code = sscanf(tbuffer, "checkbintime %d %d %d %d %d",
-                         &ktmask, &ktday, &kthour, &ktmin, &ktsec);
+           code =
+               sscanf(tbuffer, "checkbintime %d %d %d %d %d", &ktmask,
+                      &ktday, &kthour, &ktmin, &ktsec);
            if (code != 5) {
                code = -1;
                goto fail;
            }
            /* otherwise we've read in the proper ktime structure; now assign
-              it and continue processing */
+            * it and continue processing */
            bozo_nextDayKT.mask = ktmask;       /* time to restart the system */
            bozo_nextDayKT.day = ktday;
            bozo_nextDayKT.hour = kthour;
@@ -324,37 +364,37 @@ char *aname; {
            bozo_nextDayKT.sec = ktsec;
            continue;
        }
-
 #ifdef BOS_RESTRICTED_MODE
        if (strncmp(tbuffer, "restrictmode", 12) == 0) {
-           code = sscanf(tbuffer, "restrictmode %d",
-                         &rmode);
+           code = sscanf(tbuffer, "restrictmode %d", &rmode);
            if (code != 1) {
                code = -1;
                goto fail;
            }
-           if (rmode !=0 && rmode != 1) {
-                code = -1;
-                goto fail;
-           } 
-           bozo_isrestricted=rmode;
-            continue;
+           if (rmode != 0 && rmode != 1) {
+               code = -1;
+               goto fail;
+           }
+           bozo_isrestricted = rmode;
+           continue;
        }
 #endif
-       
+
        if (strncmp("bnode", tbuffer, 5) != 0) {
            code = -1;
            goto fail;
        }
        notifier = notp;
-       code = sscanf(tbuffer, "bnode %s %s %d %s", typep, instp, &goal, notifier);
+       code =
+           sscanf(tbuffer, "bnode %s %s %d %s", typep, instp, &goal,
+                  notifier);
        if (code < 3) {
            code = -1;
            goto fail;
        } else if (code == 3)
-           notifier = (char *)0;
-       
-       for(i=0;i<MAXPARMS;i++) {
+           notifier = NULL;
+
+       for (i = 0; i < MAXPARMS; i++) {
            /* now read the parms, until we see an "end" line */
            tp = fgets(tbuffer, sizeof(tbuffer), tfile);
            if (!tp) {
@@ -362,63 +402,73 @@ char *aname; {
                goto fail;
            }
            StripLine(tbuffer);
-           if (!strncmp(tbuffer, "end", 3)) break;
+           if (!strncmp(tbuffer, "end", 3))
+               break;
            if (strncmp(tbuffer, "parm ", 5)) {
                code = -1;
-               goto fail;    /* no "parm " either */
+               goto fail;      /* no "parm " either */
            }
-           if (!parms[i])  /* make sure there's space */
-               parms[i] = (char *) malloc(BOZO_BSSIZE);
-           strcpy(parms[i], tbuffer+5);    /* remember the parameter for later */
+           if (!parms[i])      /* make sure there's space */
+               parms[i] = (char *)malloc(BOZO_BSSIZE);
+           strcpy(parms[i], tbuffer + 5);      /* remember the parameter for later */
        }
 
        /* ok, we have the type and parms, now create the object */
-       code = bnode_Create(typep, instp, &tb, parms[0], parms[1], parms[2],
-                         parms[3], parms[4], notifier,
-                         goal ? BSTAT_NORMAL : BSTAT_SHUTDOWN);
-       if (code) goto fail;
+       code =
+           bnode_Create(typep, instp, &tb, parms[0], parms[1], parms[2],
+                        parms[3], parms[4], notifier,
+                        goal ? BSTAT_NORMAL : BSTAT_SHUTDOWN, 0);
+       if (code)
+           goto fail;
 
        /* bnode created in 'temporarily shutdown' state;
-          check to see if we are supposed to run this guy,
-           and if so, start the process up */
+        * check to see if we are supposed to run this guy,
+        * and if so, start the process up */
        if (goal) {
            bnode_SetStat(tb, BSTAT_NORMAL);    /* set goal, taking effect immediately */
-       }
-       else {
+       } else {
            bnode_SetStat(tb, BSTAT_SHUTDOWN);
        }
     }
     /* all done */
     code = 0;
 
-fail:
-    if (instp) free(instp);
-    if (typep) free(typep);
-    for(i=0;i<MAXPARMS;i++) if (parms[i]) free(parms[i]);
-    if (tfile) fclose(tfile);
+  fail:
+    if (instp)
+       free(instp);
+    if (typep)
+       free(typep);
+    for (i = 0; i < MAXPARMS; i++)
+       if (parms[i])
+           free(parms[i]);
+    if (tfile)
+       fclose(tfile);
     return code;
 }
 
 /* write a new bozo file */
-WriteBozoFile(aname)
-char *aname; {
+int
+WriteBozoFile(char *aname)
+{
     register FILE *tfile;
     char tbuffer[AFSDIR_PATH_MAX];
     register afs_int32 code;
     struct bztemp btemp;
 
-    if (!aname) aname = (char *)bozo_fileName;
+    if (!aname)
+       aname = (char *)bozo_fileName;
     strcpy(tbuffer, aname);
     strcat(tbuffer, ".NBZ");
     tfile = fopen(tbuffer, "w");
-    if (!tfile) return -1;
+    if (!tfile)
+       return -1;
     btemp.file = tfile;
 #ifdef BOS_RESTRICTED_MODE
     fprintf(tfile, "restrictmode %d\n", bozo_isrestricted);
 #endif
     fprintf(tfile, "restarttime %d %d %d %d %d\n", bozo_nextRestartKT.mask,
-           bozo_nextRestartKT.day, bozo_nextRestartKT.hour, bozo_nextRestartKT.min,
-           bozo_nextRestartKT.sec);
+           bozo_nextRestartKT.day, bozo_nextRestartKT.hour,
+           bozo_nextRestartKT.min, bozo_nextRestartKT.sec);
     fprintf(tfile, "checkbintime %d %d %d %d %d\n", bozo_nextDayKT.mask,
            bozo_nextDayKT.day, bozo_nextDayKT.hour, bozo_nextDayKT.min,
            bozo_nextDayKT.sec);
@@ -441,13 +491,13 @@ char *aname; {
     return 0;
 }
 
-static bdrestart(abnode, arock)
-register struct bnode *abnode;
-char *arock; {
+static int
+bdrestart(register struct bnode *abnode, void *arock)
+{
     register afs_int32 code;
-    
+
     if (abnode->fileGoal != BSTAT_NORMAL || abnode->goal != BSTAT_NORMAL)
-       return 0;       /* don't restart stopped bnodes */
+       return 0;               /* don't restart stopped bnodes */
     bnode_Hold(abnode);
     code = bnode_RestartP(abnode);
     if (code) {
@@ -457,14 +507,16 @@ char *arock; {
        bnode_SetStat(abnode, BSTAT_NORMAL);
     }
     bnode_Release(abnode);
-    return 0;  /* keep trying all bnodes */
+    return 0;                  /* keep trying all bnodes */
 }
 
-#define        BOZO_MINSKIP 3600           /* minimum to advance clock */
+#define        BOZO_MINSKIP 3600       /* minimum to advance clock */
 /* lwp to handle system restarts */
-static BozoDaemon() {
+static void *
+BozoDaemon(void *unused)
+{
     register afs_int32 now;
-    
+
     /* now initialize the values */
     bozo_newKTs = 1;
     while (1) {
@@ -473,8 +525,8 @@ static BozoDaemon() {
 
 #ifdef BOS_RESTRICTED_MODE
        if (bozo_restdisable) {
-            bozo_Log("Restricted mode disabled by signal\n");
-            bozo_restdisable=0;
+           bozo_Log("Restricted mode disabled by signal\n");
+           bozo_restdisable = 0;
        }
 #endif
        if (bozo_newKTs) {      /* need to recompute restart times */
@@ -485,21 +537,23 @@ static BozoDaemon() {
 
        /* see if we should do a restart */
        if (now > nextRestart) {
-           BOZO_ReBozo(0);     /* doesn't come back */
+           SBOZO_ReBozo(0);    /* doesn't come back */
        }
-       
+
        /* see if we should restart a server */
        if (now > nextDay) {
            nextDay = ktime_next(&bozo_nextDayKT, BOZO_MINSKIP);
-           
+
            /* call the bnode restartp function, and restart all that require it */
            bnode_ApplyInstance(bdrestart, 0);
        }
     }
+    return NULL;
 }
 
 #ifdef AFS_AIX32_ENV
-static tweak_config()
+static int
+tweak_config(void)
 {
     FILE *f;
     char c[80];
@@ -510,25 +564,27 @@ static tweak_config()
     f = popen("/usr/sbin/no -o sb_max", "r");
     s = fscanf(f, "sb_max = %d", &sb_max);
     fclose(f);
-    if (s < 1) 
+    if (s < 1)
        return;
     f = popen("/usr/sbin/no -o ipfragttl", "r");
     s = fscanf(f, "ipfragttl = %d", &ipfragttl);
     fclose(f);
-    if (s < 1) 
+    if (s < 1)
        ipfragttl = 20;
 
-    if (sb_max < 131072) 
+    if (sb_max < 131072)
        sb_max = 131072;
     if (ipfragttl > 20)
        ipfragttl = 20;
-    
-    sprintf(c, "/usr/sbin/no -o sb_max=%d -o ipfragttl=%d", sb_max, ipfragttl);
+
+    sprintf(c, "/usr/sbin/no -o sb_max=%d -o ipfragttl=%d", sb_max,
+           ipfragttl);
     f = popen(c, "r");
     fclose(f);
 }
 #endif
 
+#if 0
 /*
  * This routine causes the calling process to go into the background and
  * to lose its controlling tty.
@@ -575,18 +631,18 @@ background(void)
      */
 
     if (getpid() == getpgrp()) {
-        pid_t pid;
-        pid = fork();
-        switch(pid) {
-        case -1:
-            abort();    /* leave footprints */
-            break;
-        case 0:         /* child */
-            break;
-        default:        /* parent */
-            exit(0);
-            break;
-        }
+       pid_t pid;
+       pid = fork();
+       switch (pid) {
+       case -1:
+           abort();            /* leave footprints */
+           break;
+       case 0:         /* child */
+           break;
+       default:                /* parent */
+           exit(0);
+           break;
+       }
     }
 
     /*
@@ -595,12 +651,12 @@ background(void)
      */
 
     {
-        pid_t sid = setsid();
+       pid_t sid = setsid();
 
-        if (sid == -1) {
-            static char err[] = "bosserver: WARNING: setsid() failed\n";
-            write(STDERR_FILENO, err, sizeof err - 1);
-        }
+       if (sid == -1) {
+           static char err[] = "bosserver: WARNING: setsid() failed\n";
+           write(STDERR_FILENO, err, sizeof err - 1);
+       }
     }
 
     /*
@@ -618,18 +674,18 @@ background(void)
      */
 
     if (getpid() == getpgrp()) {
-        pid_t pid;
-        pid = fork();
-        switch(pid) {
-        case -1:
-            abort();    /* leave footprints */
-            break;
-        case 0:         /* child */
-            break;
-        default:        /* parent */
-            exit(0);
-            break;
-        }
+       pid_t pid;
+       pid = fork();
+       switch (pid) {
+       case -1:
+           abort();            /* leave footprints */
+           break;
+       case 0:         /* child */
+           break;
+       default:                /* parent */
+           exit(0);
+           break;
+       }
     }
 
     /*
@@ -637,38 +693,41 @@ background(void)
      */
 
     {
-        int fd;
+       int fd;
 
-        fd = open("/dev/tty", O_RDONLY);
+       fd = open("/dev/tty", O_RDONLY);
 
-        if (fd >= 0) {
-            static char err[] = "bosserver: WARNING: /dev/tty still attached\n";
-            close(fd);
-            write(STDERR_FILENO, err, sizeof err - 1);
-        }
+       if (fd >= 0) {
+           static char err[] =
+               "bosserver: WARNING: /dev/tty still attached\n";
+           close(fd);
+           write(STDERR_FILENO, err, sizeof err - 1);
+       }
     }
 }
 #endif /* ! AFS_NT40_ENV */
+#endif
 
 /* start a process and monitor it */
 
 #include "AFS_component_version_number.c"
 
-
-main (argc, argv,envp)
-int argc;
-char **argv;
-char **envp;
+int
+main(int argc, char **argv, char **envp)
 {
     struct rx_service *tservice;
     register afs_int32 code;
     struct afsconf_dir *tdir;
     int noAuth = 0;
-    struct ktc_encryptionKey tkey;
     int i;
-    pid_t      newSessionID;
     char namebuf[AFSDIR_PATH_MAX];
-
+    int rxMaxMTU = -1;
+    afs_uint32 host = htonl(INADDR_ANY);
+    char *auditFileName = NULL;
+#ifndef AFS_NT40_ENV
+    int nofork = 0;
+    struct stat sb;
+#endif
 #ifdef AFS_AIX32_ENV
     struct sigaction nsa;
 
@@ -690,6 +749,7 @@ char **envp;
     sigaction(SIGSEGV, &nsa, NULL);
     sigaction(SIGABRT, &nsa, NULL);
 #endif
+    osi_audit_init();
 #ifdef BOS_RESTRICTED_MODE
     signal(SIGFPE, bozo_insecureme);
 #endif
@@ -708,7 +768,8 @@ char **envp;
 #ifdef AFS_NT40_ENV
        ReportErrorEventAlt(AFSEVT_SVR_NO_INSTALL_DIR, 0, argv[0], 0);
 #endif
-       fprintf(stderr, "%s: Unable to obtain AFS server directory.\n", argv[0]);
+       fprintf(stderr, "%s: Unable to obtain AFS server directory.\n",
+               argv[0]);
        exit(2);
     }
 
@@ -728,47 +789,83 @@ char **envp;
 #endif
 
     /* parse cmd line */
-    for(code=1;code<argc;code++) {
-       if (strcmp(argv[code], "-noauth")==0) {
+    for (code = 1; code < argc; code++) {
+       if (strcmp(argv[code], "-noauth") == 0) {
            /* set noauth flag */
            noAuth = 1;
-       }
-       else if (strcmp(argv[code], "-log")==0) {
+       } else if (strcmp(argv[code], "-log") == 0) {
            /* set extra logging flag */
            DoLogging = 1;
        }
 #ifndef AFS_NT40_ENV
-       else if (strcmp(argv[code], "-syslog")==0) {
+       else if (strcmp(argv[code], "-syslog") == 0) {
            /* set syslog logging flag */
            DoSyslog = 1;
-       } 
-       else if (strncmp(argv[code], "-syslog=",8)==0) {
+       } else if (strncmp(argv[code], "-syslog=", 8) == 0) {
            DoSyslog = 1;
-           DoSyslogFacility = atoi(argv[code]+8);
+           DoSyslogFacility = atoi(argv[code] + 8);
+       } else if (strcmp(argv[code], "-nofork") == 0) {
+           nofork = 1;
        }
 #endif
-       else if (strcmp(argv[code], "-enable_peer_stats")==0) {
+       else if (strcmp(argv[code], "-enable_peer_stats") == 0) {
            rx_enablePeerRPCStats();
-       }
-       else if (strcmp(argv[code], "-enable_process_stats")==0) {
+       } else if (strcmp(argv[code], "-enable_process_stats") == 0) {
            rx_enableProcessRPCStats();
        }
 #ifdef BOS_RESTRICTED_MODE
-       else if (strcmp(argv[code], "-restricted")==0) {
-           bozo_isrestricted=1;
+       else if (strcmp(argv[code], "-restricted") == 0) {
+           bozo_isrestricted = 1;
        }
 #endif
+       else if (strcmp(argv[code], "-rxbind") == 0) {
+           rxBind = 1;
+       }
+       else if (strcmp(argv[code], "-allow-dotted-principals") == 0) {
+           rxkadDisableDotCheck = 1;
+       }
+       else if (!strcmp(argv[code], "-rxmaxmtu")) {
+           if ((code + 1) >= argc) {
+               fprintf(stderr, "missing argument for -rxmaxmtu\n"); 
+               exit(1); 
+           }
+           rxMaxMTU = atoi(argv[++code]);
+           if ((rxMaxMTU < RX_MIN_PACKET_SIZE) || 
+               (rxMaxMTU > RX_MAX_PACKET_DATA_SIZE)) {
+               printf("rxMaxMTU %d invalid; must be between %d-%lu\n",
+                       rxMaxMTU, RX_MIN_PACKET_SIZE, 
+                       RX_MAX_PACKET_DATA_SIZE);
+               exit(1);
+           }
+       }
+       else if (strcmp(argv[code], "-auditlog") == 0) {
+           auditFileName = argv[++code];
+
+       } else if (strcmp(argv[code], "-audit-interface") == 0) {
+           char *interface = argv[++code];
+
+           if (osi_audit_interface(interface)) {
+               printf("Invalid audit interface '%s'\n", interface);
+               exit(1);
+           }
+       }
        else {
 
            /* hack to support help flag */
 
 #ifndef AFS_NT40_ENV
            printf("Usage: bosserver [-noauth] [-log] "
+                  "[-auditlog <log path>] "
+                  "[-audit-interafce <file|sysvmq> (default is file)] "
+                  "[-rxmaxmtu <bytes>] [-rxbind] [-allow-dotted-principals]"
                   "[-syslog[=FACILITY]] "
                   "[-enable_peer_stats] [-enable_process_stats] "
-                  "[-help]\n");
+                  "[-nofork] " "[-help]\n");
 #else
            printf("Usage: bosserver [-noauth] [-log] "
+                  "[-auditlog <log path>] "
+                  "[-audit-interafce <file|sysvmq> (default is file)] "
+                  "[-rxmaxmtu <bytes>] [-rxbind] [-allow-dotted-principals]"
                   "[-enable_peer_stats] [-enable_process_stats] "
                   "[-help]\n");
 #endif
@@ -777,6 +874,9 @@ char **envp;
            exit(0);
        }
     }
+    if (auditFileName) {
+       osi_audit_file(auditFileName);
+    }
 
 #ifndef AFS_NT40_ENV
     if (geteuid() != 0) {
@@ -792,6 +892,7 @@ char **envp;
     }
 
     bnode_Register("fs", &fsbnode_ops, 3);
+    bnode_Register("dafs", &dafsbnode_ops, 4);
     bnode_Register("simple", &ezbnode_ops, 1);
     bnode_Register("cron", &cronbnode_ops, 2);
 
@@ -806,24 +907,32 @@ char **envp;
     fflush(stdout);
 #endif
 
-    /* go into the background and remove our controlling tty */
+    /* go into the background and remove our controlling tty, close open 
+       file desriptors
+     */
 
 #ifndef AFS_NT40_ENV
-    background();
+    if (!nofork)
+       daemon(1, 0);
 #endif /* ! AFS_NT40_ENV */
 
-    if (!DoSyslog) {
+    if ((!DoSyslog)
+#ifndef AFS_NT40_ENV
+       && ((lstat(AFSDIR_BOZLOG_FILE, &sb) == 0) && 
+       !(S_ISFIFO(sb.st_mode)))
+#endif
+       ) {
        strcpy(namebuf, AFSDIR_BOZLOG_FILE);
        strcat(namebuf, ".old");
-       renamefile(AFSDIR_BOZLOG_FILE, namebuf);    /* try rename first */
+       renamefile(AFSDIR_BOZLOG_FILE, namebuf);        /* try rename first */
        bozo_logFile = fopen(AFSDIR_BOZLOG_FILE, "a");
        if (!bozo_logFile) {
            printf("bosserver: can't initialize log file (%s).\n",
                   AFSDIR_SERVER_BOZLOG_FILEPATH);
            exit(1);
        }
-        /* keep log closed normally, so can be removed */
-        fclose(bozo_logFile);
+       /* keep log closed normally, so can be removed */
+       fclose(bozo_logFile);
     } else {
 #ifndef AFS_NT40_ENV
        openlog("bosserver", LOG_PID, DoSyslogFacility);
@@ -831,23 +940,24 @@ char **envp;
     }
 
     /* Write current state of directory permissions to log file */
-    DirAccessOK ();
+    DirAccessOK();
 
-    for (i=0;i<10;i++) {
+    for (i = 0; i < 10; i++) {
        code = rx_Init(htons(AFSCONF_NANNYPORT));
        if (code) {
-           bozo_Log("can't initialize rx: code=%d\n",code);
+           bozo_Log("can't initialize rx: code=%d\n", code);
            sleep(3);
-       }
-       else break;
+       } else
+           break;
     }
-    if (i>=10) {
+    if (i >= 10) {
        bozo_Log("Bos giving up, can't initialize rx\n");
        exit(code);
     }
 
     code = LWP_CreateProcess(BozoDaemon, BOZO_LWP_STACKSIZE, /* priority */ 1,
-                            /* parm */0, "bozo-the-clown", &bozo_pid);
+                            /* param */ NULL , "bozo-the-clown",
+                            &bozo_pid);
 
     /* try to read the key from the config file */
     tdir = afsconf_Open(AFSDIR_SERVER_ETC_DIRPATH);
@@ -866,28 +976,34 @@ char **envp;
            bozo_Log("try the 'hostname' command\n");
            exit(1);
        }
-       bzero(tcell.hostAddr, sizeof(tcell.hostAddr));  /* not computed */
-       code = afsconf_SetCellInfo(bozo_confdir, AFSDIR_SERVER_ETC_DIRPATH, &tcell);
+       memset(tcell.hostAddr, 0, sizeof(tcell.hostAddr));      /* not computed */
+       code =
+           afsconf_SetCellInfo(bozo_confdir, AFSDIR_SERVER_ETC_DIRPATH,
+                               &tcell);
        if (code) {
-           bozo_Log("could not create cell database in '%s' (code %d), quitting\n", AFSDIR_SERVER_ETC_DIRPATH, code);
+           bozo_Log
+               ("could not create cell database in '%s' (code %d), quitting\n",
+                AFSDIR_SERVER_ETC_DIRPATH, code);
            exit(1);
        }
        tdir = afsconf_Open(AFSDIR_SERVER_ETC_DIRPATH);
        if (!tdir) {
-           bozo_Log("failed to open newly-created cell database, quitting\n");
+           bozo_Log
+               ("failed to open newly-created cell database, quitting\n");
            exit(1);
        }
     }
 
     /* read init file, starting up programs */
-    if (code=ReadBozoFile(0)) {
-       bozo_Log("bosserver: Something is wrong (%d) with the bos configuration file %s; aborting\n", code, AFSDIR_SERVER_BOZCONF_FILEPATH);
+    if ((code = ReadBozoFile(0))) {
+       bozo_Log
+           ("bosserver: Something is wrong (%d) with the bos configuration file %s; aborting\n",
+            code, AFSDIR_SERVER_BOZCONF_FILEPATH);
        exit(code);
     }
 
     /* opened the cell databse */
     bozo_confdir = tdir;
-    code = afsconf_GetKey(tdir, 999, &tkey);
 
     /* allow super users to manage RX statistics */
     rx_SetRxStatUserOk(bozo_rxstat_userok);
@@ -896,37 +1012,69 @@ char **envp;
 
     afsconf_SetNoAuthFlag(tdir, noAuth);
 
-    bozo_rxsc[0] = (struct rx_securityClass *) rxnull_NewServerSecurityObject();
-    bozo_rxsc[1] = (struct rx_securityClass *) 0;
-    bozo_rxsc[2] = (struct rx_securityClass *) rxkad_NewServerSecurityObject(
-                                        0, tdir, afsconf_GetKey, (char *) 0);
+    bozo_rxsc[0] = rxnull_NewServerSecurityObject();
+    bozo_rxsc[1] = (struct rx_securityClass *)0;
+    bozo_rxsc[2] =
+       rxkad_NewServerSecurityObject(0, tdir, afsconf_GetKey, NULL);
 
-    /* These two lines disallow jumbograms */
-    rx_maxReceiveSize = OLD_MAX_PACKET_SIZE;
-    rxi_nSendFrags = rxi_nRecvFrags = 1;
+    /* Disable jumbograms */
+    rx_SetNoJumbo();
 
-    tservice = rx_NewService(/* port */ 0, /* service id */ 1, 
-                 /*service name */ "bozo", /* security classes */ bozo_rxsc,
-                 /* numb sec classes */ 3, BOZO_ExecuteRequest);
+    if (rxMaxMTU != -1) {
+       rx_SetMaxMTU(rxMaxMTU);
+    }
+
+    if (rxBind) {
+       afs_int32 ccode;
+        if (AFSDIR_SERVER_NETRESTRICT_FILEPATH || 
+            AFSDIR_SERVER_NETINFO_FILEPATH) {
+            char reason[1024];
+            ccode = parseNetFiles(SHostAddrs, NULL, NULL,
+                                           ADDRSPERSITE, reason,
+                                           AFSDIR_SERVER_NETINFO_FILEPATH,
+                                           AFSDIR_SERVER_NETRESTRICT_FILEPATH);
+        } else 
+       {
+            ccode = rx_getAllAddr(SHostAddrs, ADDRSPERSITE);
+        }
+        if (ccode == 1) 
+            host = SHostAddrs[0];
+    }
+
+    tservice = rx_NewServiceHost(host,  /* port */ 0, /* service id */ 1,
+                            /*service name */ "bozo",
+                            /* security classes */
+                            bozo_rxsc,
+                            /* numb sec classes */ 3, BOZO_ExecuteRequest);
     rx_SetMinProcs(tservice, 2);
     rx_SetMaxProcs(tservice, 4);
-    rx_SetStackSize(tservice, BOZO_LWP_STACKSIZE); /* so gethostbyname works (in cell stuff) */
+    rx_SetStackSize(tservice, BOZO_LWP_STACKSIZE);     /* so gethostbyname works (in cell stuff) */
+    if (rxkadDisableDotCheck) {
+        rx_SetSecurityConfiguration(tservice, RXS_CONFIG_FLAGS,
+                                    (void *)RXS_CONFIG_FLAGS_DISABLE_DOTCHECK);
+    }
 
-    tservice = rx_NewService(0, RX_STATS_SERVICE_ID, "rpcstats", bozo_rxsc,
-                 3, RXSTATS_ExecuteRequest);
+    tservice =
+       rx_NewServiceHost(host, 0, RX_STATS_SERVICE_ID, "rpcstats", bozo_rxsc,
+                         3, RXSTATS_ExecuteRequest);
     rx_SetMinProcs(tservice, 2);
     rx_SetMaxProcs(tservice, 4);
-    rx_StartServer(1);     /* donate this process */
+    rx_StartServer(1);         /* donate this process */
+    return 0;
 }
 
-bozo_Log(a,b,c,d,e,f)
-char *a, *b, *c, *d, *e, *f; {
-    char tdate[26];
+void
+bozo_Log(char *format, ...)
+{
+    char tdate[27];
     time_t myTime;
+    va_list ap;
+
+    va_start(ap, format);
 
     if (DoSyslog) {
 #ifndef AFS_NT40_ENV
-       syslog(LOG_INFO, a, b, c, d, e, f);
+        vsyslog(LOG_INFO, format, ap);
 #endif
     } else {
        myTime = time(0);
@@ -935,22 +1083,19 @@ char *a, *b, *c, *d, *e, *f; {
 
        /* log normally closed, so can be removed */
 
-       bozo_logFile=fopen(AFSDIR_SERVER_BOZLOG_FILEPATH, "a");
-       if(bozo_logFile == NULL) {
-           printf("bosserver: WARNING: problem with %s", AFSDIR_SERVER_BOZLOG_FILEPATH);
+       bozo_logFile = fopen(AFSDIR_SERVER_BOZLOG_FILEPATH, "a");
+       if (bozo_logFile == NULL) {
+           printf("bosserver: WARNING: problem with %s\n",
+                  AFSDIR_SERVER_BOZLOG_FILEPATH);
+           printf("%s ", tdate);
+           vprintf(format, ap);
            fflush(stdout);
-       }
-
-       if (bozo_logFile) {
-           fprintf(bozo_logFile, "%s ", tdate);
-           fprintf(bozo_logFile, a, b, c, d, e, f);
-           fflush(bozo_logFile);
        } else {
-           printf("%s ", tdate);
-           printf(a, b, c, d, e, f);
+           fprintf(bozo_logFile, "%s ", tdate);
+           vfprintf(bozo_logFile, format, ap);
+
+           /* close so rm BosLog works */
+           fclose(bozo_logFile);
        }
-       
-       /* close so rm BosLog works */
-       fclose(bozo_logFile);
     }
 }