softsig: not used on windows
[openafs.git] / src / viced / viced.c
index d4ad4fa..d4db153 100644 (file)
@@ -1,7 +1,7 @@
 /*
  * Copyright 2000, International Business Machines Corporation and others.
  * All Rights Reserved.
- * 
+ *
  * This software has been released under the terms of the IBM Public
  * License.  For details, see the LICENSE file in the top-level source
  * directory or online at http://www.openafs.org/dl/license10.html
 
 #include <afsconfig.h>
 #include <afs/param.h>
+#include <afs/stds.h>
 
+#include <afs/procmgmt.h>
+#include <roken.h>
 
-#include <stdio.h>
-#include <stdlib.h>
-#include <errno.h>
-#include <string.h>
-#include <sys/types.h>
-#include <afs/procmgmt.h>      /* signal(), kill(), wait(), etc. */
-#include <sys/stat.h>
-#include <fcntl.h>
-#ifdef HAVE_STDINT_H
-# include <stdint.h>
-#endif
 #ifdef AFS_NT40_ENV
-#include <io.h>
-#include <windows.h>
-#include <WINNT/afsevent.h>
-#else
-#include <sys/file.h>
-#include <netinet/in.h>
-#include <netdb.h>
-#include <unistd.h>            /* sysconf() */
-
-#ifndef ITIMER_REAL
-#include <sys/time.h>
-#endif /* ITIMER_REAL */
-#include <sys/resource.h>
-#endif /* AFS_NT40_ENV */
-#include <afs/stds.h>
+# include <windows.h>
+# include <WINNT/afsevent.h>
+#endif
+
+#ifdef HAVE_SYS_FILE_H
+# include <sys/file.h>
+#endif
+
+#ifdef HAVE_SYS_RESOURCE_H
+# include <sys/resource.h>
+#endif
+
 #undef SHARED
+
 #include <rx/xdr.h>
 #include <afs/nfs.h>
-#ifdef AFS_PTHREAD_ENV
-#include <assert.h>
-#else /* AFS_PTHREAD_ENV */
-#include <afs/assert.h>
-#endif /* AFS_PTHREAD_ENV */
 #include <lwp.h>
 #include <lock.h>
+#include <afs/cmd.h>
 #include <afs/ptclient.h>
 #include <afs/afsint.h>
 #include <afs/vldbint.h>
 #include <afs/partition.h>
 #include <afs/dir.h>
 #ifndef AFS_NT40_ENV
-#include <afs/netutils.h>
+# include <afs/netutils.h>
+# include <afs/softsig.h>
 #endif
 #include "viced_prototypes.h"
 #include "viced.h"
 #include "host.h"
-#ifdef AFS_PTHREAD_ENV
-#include <afs/softsig.h>
-#endif
 #if defined(AFS_SGI_ENV)
-#include "sys/schedctl.h"
-#include "sys/lock.h"
+# include "sys/schedctl.h"
+# include "sys/lock.h"
 #endif
 #include <rx/rx_globals.h>
 
-#ifdef O_LARGEFILE
-#define afs_stat       stat64
-#define afs_fstat      fstat64
-#define afs_open       open64
-#define afs_fopen      fopen64
-#else /* !O_LARGEFILE */
-#define afs_stat       stat
-#define afs_fstat      fstat
-#define afs_open       open
-#define afs_fopen      fopen
-#endif /* !O_LARGEFILE */
-
 extern int etext;
 
 void *ShutDown(void *);
 static void ClearXStatValues(void);
-static void NewParms(int);
 static void PrintCounters(void);
 static void ResetCheckDescriptors(void);
 static void ResetCheckSignal(void);
@@ -123,15 +94,11 @@ static afs_int32 Do_VLRegisterRPC(void);
 int eventlog = 0, rxlog = 0;
 FILE *debugFile;
 
-#ifdef AFS_PTHREAD_ENV
 pthread_mutex_t fsync_glock_mutex;
 pthread_cond_t fsync_cond;
-#else
-char fsync_wait[1];
-#endif /* AFS_PTHREAD_ENV */
 
 #ifdef AFS_NT40_ENV
-#define NT_OPEN_MAX    1024    /* This is an arbitrary no. we came up with for 
+# define NT_OPEN_MAX    1024   /* This is an arbitrary no. we came up with for
                                 * now. We hope this will be replaced by a more
                                 * intelligent estimate later. */
 #endif
@@ -156,15 +123,12 @@ extern int Statistics;
 
 int busyonrst = 1;
 int timeout = 30;
-int SawSpare;
-int SawPctSpare;
-int debuglevel = 0;
 int printBanner = 0;
 int rxJumbograms = 0;          /* default is to not send and receive jumbograms. */
 int rxBind = 0;                /* don't bind */
-int rxkadDisableDotCheck = 0;      /* disable check for dot in principal name */ 
+int rxkadDisableDotCheck = 0;      /* disable check for dot in principal name */
 int rxMaxMTU = -1;
-afs_int32 implicitAdminRights = PRSFS_LOOKUP;  /* The ADMINISTER right is 
+afs_int32 implicitAdminRights = PRSFS_LOOKUP;  /* The ADMINISTER right is
                                                 * already implied */
 afs_int32 readonlyServer = 0;
 
@@ -202,16 +166,12 @@ int udpBufSize = 0;               /* UDP buffer size for receive */
 int sendBufSize = 16384;       /* send buffer size */
 int saneacls = 0;              /* Sane ACLs Flag */
 static int unsafe_attach = 0;   /* avoid inUse check on vol attach? */
+static int offline_timeout = -1; /* -offline-timeout option */
+static int offline_shutdown_timeout = -1; /* -offline-shutdown-timeout option */
 
 struct timeval tp;
 
-#ifdef AFS_PTHREAD_ENV
 pthread_key_t viced_uclient_key;
-#endif
-
-#ifdef AFS_PTHREAD_ENV
-pthread_key_t viced_uclient_key;
-#endif
 
 /*
  * FileServer's name and IP address, both network byte order and
@@ -226,8 +186,6 @@ afs_uint32 FS_HostAddrs[ADDRSPERSITE], FS_HostAddr_cnt = 0, FS_registered = 0;
 /* All addresses in FS_HostAddrs are in NBO */
 afsUUID FS_HostUUID;
 
-static void FlagMsg(void);
-
 #ifdef AFS_DEMAND_ATTACH_FS
 /*
  * demand attach fs
@@ -238,22 +196,22 @@ static void FlagMsg(void);
  * disk
  */
 
-#if !defined(PTHREAD_RWLOCK_INITIALIZER) && defined(AFS_DARWIN80_ENV)
-#define PTHREAD_RWLOCK_INITIALIZER {0x2DA8B3B4, {0}}
-#endif
+# if !defined(PTHREAD_RWLOCK_INITIALIZER) && defined(AFS_DARWIN80_ENV)
+#  define PTHREAD_RWLOCK_INITIALIZER {0x2DA8B3B4, {0}}
+# endif
 
-#ifndef AFS_NT40_ENV
-struct fs_state fs_state = 
-    { FS_MODE_NORMAL, 
-      0, 
-      0, 
-      0, 
+# ifndef AFS_NT40_ENV
+struct fs_state fs_state =
+    { FS_MODE_NORMAL,
+      0,
+      0,
+      0,
       0,
       { 1,1,1,1 },
       PTHREAD_COND_INITIALIZER,
       PTHREAD_RWLOCK_INITIALIZER
     };
-#else /* AFS_NT40_ENV */
+# else /* AFS_NT40_ENV */
 struct fs_state fs_state;
 
 static int fs_stateInit(void)
@@ -269,10 +227,10 @@ static int fs_stateInit(void)
     fs_state.options.fs_state_verify_before_save = 1;
     fs_state.options.fs_state_verify_after_restore = 1;
 
-    assert(pthread_cond_init(&fs_state.worker_done_cv, NULL) == 0);
-    assert(pthread_rwlock_init(&fs_state.state_lock, NULL) == 0);
+    CV_INIT(&fs_state.worker_done_cv, "worker done", CV_DEFAULT, 0);
+    osi_Assert(pthread_rwlock_init(&fs_state.state_lock, NULL) == 0);
 }
-#endif /* AFS_NT40_ENV */
+# endif /* AFS_NT40_ENV */
 #endif /* AFS_DEMAND_ATTACH_FS */
 
 /*
@@ -285,8 +243,8 @@ CheckDescriptors(void *unused)
 {
 #ifndef AFS_NT40_ENV
     struct afs_stat status;
-    register int tsize = getdtablesize();
-    register int i;
+    int tsize = getdtablesize();
+    int i;
     for (i = 0; i < tsize; i++) {
        if (afs_fstat(i, &status) != -1) {
            printf("%d: dev %x, inode %u, length %u, type/mode %x\n", i,
@@ -303,7 +261,6 @@ CheckDescriptors(void *unused)
 }                              /*CheckDescriptors */
 
 
-#ifdef AFS_PTHREAD_ENV
 void
 CheckSignal_Signal(int x)
 {
@@ -321,25 +278,6 @@ CheckDescriptors_Signal(int x)
 {
     CheckDescriptors(NULL);
 }
-#else /* AFS_PTHREAD_ENV */
-void
-CheckSignal_Signal(int x)
-{
-    IOMGR_SoftSig(CheckSignal, 0);
-}
-
-void
-ShutDown_Signal(int x)
-{
-    IOMGR_SoftSig(ShutDown, 0);
-}
-
-void
-CheckDescriptors_Signal(int x)
-{
-    IOMGR_SoftSig(CheckDescriptors, 0);
-}
-#endif /* AFS_PTHREAD_ENV */
 
 /* check whether caller is authorized to manage RX statistics */
 int
@@ -355,15 +293,13 @@ ResetCheckSignal(void)
 
 #if defined(AFS_HPUX_ENV)
     signo = SIGPOLL;
-#else
-#if defined(AFS_NT40_ENV)
+#elif defined(AFS_NT40_ENV)
     signo = SIGUSR2;
 #else
     signo = SIGXCPU;
 #endif
-#endif
 
-#if defined(AFS_PTHREAD_ENV) && !defined(AFS_NT40_ENV)
+#if !defined(AFS_NT40_ENV)
     softsig_signal(signo, CheckSignal_Signal);
 #else
     signal(signo, CheckSignal_Signal);
@@ -374,43 +310,31 @@ static void
 ResetCheckDescriptors(void)
 {
 #ifndef AFS_NT40_ENV
-#if defined(AFS_PTHREAD_ENV)
     softsig_signal(SIGTERM, CheckDescriptors_Signal);
-#else
-    (void)signal(SIGTERM, CheckDescriptors_Signal);
-#endif
 #endif
 }
 
-#if defined(AFS_PTHREAD_ENV)
-int
-threadNum(void)
-{
-    return (intptr_t)pthread_getspecific(rx_thread_id_key);
-}
-#endif
-
 #ifndef AFS_NT40_ENV
 int
 viced_syscall(afs_uint32 a3, afs_uint32 a4, void *a5)
 {
     afs_uint32 rcode;
-#ifndef AFS_LINUX20_ENV
+# ifndef AFS_LINUX20_ENV
     void (*old) (int);
 
     old = (void (*)(int))signal(SIGSYS, SIG_IGN);
-#endif
+# endif
     rcode = syscall(AFS_SYSCALL, 28 /* AFSCALL_CALL */ , a3, a4, a5);
-#ifndef AFS_LINUX20_ENV
+# ifndef AFS_LINUX20_ENV
     signal(SIGSYS, old);
-#endif
+# endif
 
     return rcode;
 }
 #endif
 
 #if !defined(AFS_NT40_ENV)
-#include "AFS_component_version_number.c"
+# include "AFS_component_version_number.c"
 #endif /* !AFS_NT40_ENV */
 
 #define MAXADMINNAME 64
@@ -439,15 +363,13 @@ CheckAdminName(void)
 static void
 setThreadId(char *s)
 {
-#if defined(AFS_PTHREAD_ENV) && !defined(AFS_NT40_ENV)
+#if !defined(AFS_NT40_ENV)
+    int threadId;
+
     /* set our 'thread-id' so that the host hold table works */
-    MUTEX_ENTER(&rx_stats_mutex);      /* protects rxi_pthread_hinum */
-    ++rxi_pthread_hinum;
-    pthread_setspecific(rx_thread_id_key, (void *)(intptr_t)rxi_pthread_hinum);
-    MUTEX_EXIT(&rx_stats_mutex);
-    ViceLog(0,
-           ("Set thread id %p for '%s'\n",
-            pthread_getspecific(rx_thread_id_key), s));
+    threadId = rx_SetThreadNum();
+    afs_pthread_setname_self(s);
+    ViceLog(0, ("Set thread id 0x%x for '%s'\n", threadId, s));
 #endif
 }
 
@@ -470,11 +392,7 @@ FiveMinuteCheckLWP(void *unused)
     while (1) {
 #endif
 
-#ifdef AFS_PTHREAD_ENV
        sleep(fiveminutes);
-#else /* AFS_PTHREAD_ENV */
-       IOMGR_Sleep(fiveminutes);
-#endif /* AFS_PTHREAD_ENV */
 
 #ifdef AFS_DEMAND_ATTACH_FS
        FS_STATE_WRLOCK;
@@ -495,14 +413,13 @@ FiveMinuteCheckLWP(void *unused)
        if (FS_registered == 1)
            Do_VLRegisterRPC();
        /* Force wakeup in case we missed something; pthreads does timedwait */
-#ifndef AFS_PTHREAD_ENV
-       LWP_NoYieldSignal(fsync_wait);
-#endif
        if (printBanner && (++msg & 1)) {       /* Every 10 minutes */
            time_t now = FT_ApproxTime();
+           struct tm tm;
+           strftime(tbuffer, sizeof(tbuffer), "%a %b %d %H:%M:%S %Y",
+                    localtime_r(&now, &tm));
            ViceLog(2,
-                   ("File server is running at %s\n",
-                    afs_ctime(&now, tbuffer, sizeof(tbuffer))));
+                   ("File server is running at %s\n", tbuffer));
        }
 #ifdef AFS_DEMAND_ATTACH_FS
        FS_STATE_WRLOCK;
@@ -511,7 +428,7 @@ FiveMinuteCheckLWP(void *unused)
 #ifdef AFS_DEMAND_ATTACH_FS
     fs_state.FiveMinuteLWP_tranquil = 1;
     FS_LOCK;
-    assert(pthread_cond_broadcast(&fs_state.worker_done_cv)==0);
+    CV_BROADCAST(&fs_state.worker_done_cv);
     FS_UNLOCK;
     FS_STATE_UNLOCK;
 #endif
@@ -538,11 +455,7 @@ HostCheckLWP(void *unused)
     while(1) {
 #endif
 
-#ifdef AFS_PTHREAD_ENV
        sleep(fiveminutes);
-#else /* AFS_PTHREAD_ENV */
-       IOMGR_Sleep(fiveminutes);
-#endif /* AFS_PTHREAD_ENV */
 
 #ifdef AFS_DEMAND_ATTACH_FS
        FS_STATE_WRLOCK;
@@ -563,7 +476,7 @@ HostCheckLWP(void *unused)
 #ifdef AFS_DEMAND_ATTACH_FS
     fs_state.HostCheckLWP_tranquil = 1;
     FS_LOCK;
-    assert(pthread_cond_broadcast(&fs_state.worker_done_cv)==0);
+    CV_BROADCAST(&fs_state.worker_done_cv);
     FS_UNLOCK;
     FS_STATE_UNLOCK;
 #endif
@@ -578,9 +491,7 @@ static void *
 FsyncCheckLWP(void *unused)
 {
     afs_int32 code;
-#ifdef AFS_PTHREAD_ENV
     struct timespec fsync_next;
-#endif
     ViceLog(1, ("Starting fsync check process\n"));
 
     setThreadId("FsyncCheckLWP");
@@ -594,20 +505,14 @@ FsyncCheckLWP(void *unused)
     while(1) {
 #endif
        FSYNC_LOCK;
-#ifdef AFS_PTHREAD_ENV
        /* rounding is fine */
        fsync_next.tv_nsec = 0;
        fsync_next.tv_sec = time(0) + fiveminutes;
 
-       code =
-           pthread_cond_timedwait(&fsync_cond, &fsync_glock_mutex,
-                                  &fsync_next);
+       code = CV_TIMEDWAIT(&fsync_cond, &fsync_glock_mutex,
+                           &fsync_next);
        if (code != 0 && code != ETIMEDOUT)
            ViceLog(0, ("pthread_cond_timedwait returned %d\n", code));
-#else /* AFS_PTHREAD_ENV */
-       if ((code = LWP_WaitProcess(fsync_wait)) != LWP_SUCCESS)
-           ViceLog(0, ("LWP_WaitProcess returned %d\n", code));
-#endif /* AFS_PTHREAD_ENV */
        FSYNC_UNLOCK;
 
 #ifdef AFS_DEMAND_ATTACH_FS
@@ -630,7 +535,7 @@ FsyncCheckLWP(void *unused)
 #ifdef AFS_DEMAND_ATTACH_FS
     fs_state.FsyncCheckLWP_tranquil = 1;
     FS_LOCK;
-    assert(pthread_cond_broadcast(&fs_state.worker_done_cv)==0);
+    CV_BROADCAST(&fs_state.worker_done_cv);
     FS_UNLOCK;
     FS_STATE_UNLOCK;
 #endif /* AFS_DEMAND_ATTACH_FS */
@@ -669,7 +574,6 @@ ClearXStatValues(void)
      * Zero all xstat-related structures.
      */
     memset((&afs_perfstats), 0, sizeof(struct afs_PerfStats));
-#if FS_STATS_DETAILED
     memset((&afs_FullPerfStats), 0,
           sizeof(struct fs_stats_FullPerfStats));
 
@@ -692,16 +596,15 @@ ClearXStatValues(void)
      * declared in param.h.  If such a thing is not defined, we bitch
      * and declare ourselves to be an unknown system type.
      */
-#ifdef SYS_NAME_ID
+# ifdef SYS_NAME_ID
     afs_perfstats.sysname_ID = SYS_NAME_ID;
-#else
-#ifndef AFS_NT40_ENV
+# else
+#  ifndef AFS_NT40_ENV
     ViceLog(0, ("Sys name ID constant not defined in param.h!!\n"));
     ViceLog(0, ("[Choosing ``undefined'' sys name ID.\n"));
-#endif
+#  endif
     afs_perfstats.sysname_ID = SYS_NAME_ID_UNDEFINED;
-#endif /* SYS_NAME_ID */
-#endif
+# endif /* SYS_NAME_ID */
 
 }                              /*ClearXStatValues */
 
@@ -716,17 +619,24 @@ PrintCounters(void)
     int workstations, activeworkstations, delworkstations;
     int processSize = 0;
     char tbuffer[32];
+    struct tm tm;
+#ifdef AFS_DEMAND_ATTACH_FS
+    int stats_flags = 0;
+#endif
 
     FT_GetTimeOfDay(&tpl, 0);
     Statistics = 1;
-    ViceLog(0,
-           ("Vice was last started at %s\n",
-            afs_ctime(&StartTime, tbuffer, sizeof(tbuffer))));
+    strftime(tbuffer, sizeof(tbuffer), "%a %b %d %H:%M:%S %Y",
+            localtime_r(&StartTime, &tm));
+    ViceLog(0, ("Vice was last started at %s\n", tbuffer));
 
 #ifdef AFS_DEMAND_ATTACH_FS
-    /* XXX perhaps set extended stats verbosity flags
-     * based upon LogLevel ?? */
-    VPrintExtendedCacheStats(VOL_STATS_PER_CHAIN2);
+    if (LogLevel >= 125) {
+       stats_flags = VOL_STATS_PER_CHAIN2;
+    } else if (LogLevel >= 25) {
+       stats_flags = VOL_STATS_PER_CHAIN;
+    }
+    VPrintExtendedCacheStats(stats_flags);
 #endif
     VPrintCacheStats();
     VPrintDiskStats();
@@ -781,31 +691,26 @@ CheckSignal(void *unused)
 static void *
 ShutdownWatchdogLWP(void *unused)
 {
+    afs_pthread_setname_self("ShutdownWatchdog");
     sleep(panic_timeout);
-    ViceLog(0, ("ShutdownWatchdogLWP: Failed to shutdown and panic "
-                "within %d seconds; forcing panic\n", panic_timeout));
-    assert(0);
+    ViceLogThenPanic(0, ("ShutdownWatchdogLWP: Failed to shutdown and panic "
+                         "within %d seconds; forcing panic\n",
+                        panic_timeout));
     return NULL;
 }
 
 void
 ShutDownAndCore(int dopanic)
 {
-    time_t now = time(0);
+    time_t now = time(NULL);
+    struct tm tm;
     char tbuffer[32];
 
     if (dopanic) {
-#ifdef AFS_PTHREAD_ENV
        pthread_t watchdogPid;
        pthread_attr_t tattr;
-       assert(pthread_attr_init(&tattr) == 0);
-       assert(pthread_create(&watchdogPid, &tattr, ShutdownWatchdogLWP, NULL) == 0);
-#else
-       PROCESS watchdogPid;
-       assert(LWP_CreateProcess
-              (ShutdownWatchdogLWP, stack * 1024, LWP_MAX_PRIORITY - 2,
-               NULL, "ShutdownWatchdog", &watchdogPid) == LWP_SUCCESS);
-#endif
+       osi_Assert(pthread_attr_init(&tattr) == 0);
+       osi_Assert(pthread_create(&watchdogPid, &tattr, ShutdownWatchdogLWP, NULL) == 0);
     }
 
     /* do not allows new reqests to be served from now on, all new requests
@@ -829,9 +734,9 @@ ShutDownAndCore(int dopanic)
     FS_STATE_UNLOCK;
 #endif
 
-    ViceLog(0,
-           ("Shutting down file server at %s",
-            afs_ctime(&now, tbuffer, sizeof(tbuffer))));
+    strftime(tbuffer, sizeof(tbuffer), "%a %b %d %H:%M:%S %Y",
+            localtime_r(&now, &tm));
+    ViceLog(0, ("Shutting down file server at %s\n", tbuffer));
     if (dopanic)
        ViceLog(0, ("ABNORMAL SHUTDOWN, see core file.\n"));
     DFlush();
@@ -843,7 +748,7 @@ ShutDownAndCore(int dopanic)
 
 #ifdef AFS_DEMAND_ATTACH_FS
     if (fs_state.options.fs_state_save) {
-       /* 
+       /*
         * demand attach fs
         * save fileserver state to disk */
 
@@ -860,7 +765,7 @@ ShutDownAndCore(int dopanic)
                FS_LOCK;
                FS_STATE_UNLOCK;
                ViceLog(0, ("waiting for background host/callback threads to quiesce before saving fileserver state...\n"));
-               assert(pthread_cond_wait(&fs_state.worker_done_cv, &fileproc_glock_mutex) == 0);
+               CV_WAIT(&fs_state.worker_done_cv, &fileproc_glock_mutex);
                FS_UNLOCK;
                FS_STATE_RDLOCK;
            }
@@ -879,18 +784,16 @@ ShutDownAndCore(int dopanic)
        fflush(debugFile);
     }
     now = time(0);
+    strftime(tbuffer, sizeof(tbuffer), "%a %b %d %H:%M:%S %Y",
+            localtime_r(&now, &tm));
     if (dopanic) {
-      ViceLog(0,
-             ("File server has terminated abnormally at %s\n",
-              afs_ctime(&now, tbuffer, sizeof(tbuffer))));
+      ViceLog(0, ("File server has terminated abnormally at %s\n", tbuffer));
     } else {
-      ViceLog(0,
-             ("File server has terminated normally at %s\n",
-              afs_ctime(&now, tbuffer, sizeof(tbuffer))));
+      ViceLog(0, ("File server has terminated normally at %s\n", tbuffer));
     }
 
-    if (dopanic)
-       assert(0);
+    if (dopanic) /* XXX pass in file and line? */
+       osi_Panic("Panic requested\n");
 
     exit(0);
 }
@@ -902,82 +805,6 @@ ShutDown(void *unused)
     return 0;
 }
 
-
-static void
-FlagMsg(void)
-{
-    /* default supports help flag */
-
-    fputs("Usage: fileserver ", stdout);
-    fputs("[-auditlog <log path>] ", stdout);
-    fputs("[-audit-interface <file|sysvmq> (default is file)] ", stdout);
-    fputs("[-d <debug level>] ", stdout);
-    fputs("[-p <number of processes>] ", stdout);
-    fputs("[-spare <number of spare blocks>] ", stdout);
-    fputs("[-pctspare <percentage spare>] ", stdout);
-    fputs("[-b <buffers>] ", stdout);
-    fputs("[-l <large vnodes>] ", stdout);
-    fputs("[-s <small vnodes>] ", stdout);
-    fputs("[-vc <volume cachesize>] ", stdout);
-    fputs("[-w <call back wait interval>] ", stdout);
-    fputs("[-cb <number of call backs>] ", stdout);
-    fputs("[-banner (print banner every 10 minutes)] ", stdout);
-    fputs("[-novbc (whole volume cbs disabled)] ", stdout);
-    fputs("[-implicit <admin mode bits: rlidwka>] ", stdout);
-    fputs("[-readonly (read-only file server)] ", stdout);
-    fputs("[-hr <number of hours between refreshing the host cps>] ", stdout);
-    fputs("[-busyat <redirect clients when queue > n>] ", stdout);
-    fputs("[-nobusy <no VBUSY before a volume is attached>] ", stdout);
-    fputs("[-rxpck <number of rx extra packets>] ", stdout);
-    fputs("[-rxdbg (enable rx debugging)] ", stdout);
-    fputs("[-rxdbge (enable rxevent debugging)] ", stdout);
-    fputs("[-rxmaxmtu <bytes>] ", stdout);
-    fputs("[-rxbind (bind the Rx socket to one address)] ", stdout);
-    fputs("[-allow-dotted-principals (disable the rxkad principal name dot check)] ", stdout);
-    fputs("[-vhandle-setaside (fds reserved for non-cache io [default 128])] ", stdout);
-    fputs("[-vhandle-max-cachesize (max open files [default 128])] ", stdout);
-    fputs("[-vhandle-initial-cachesize (fds reserved for cache io [default 128])] ", stdout);
-#ifdef AFS_DEMAND_ATTACH_FS
-    fputs("[-fs-state-dont-save (disable state save during shutdown)] ", stdout);
-    fputs("[-fs-state-dont-restore (disable state restore during startup)] ", stdout);
-    fputs("[-fs-state-verify <none|save|restore|both> (default is both)] ", stdout);
-    fputs("[-vattachpar <max number of volume attach/shutdown threads> (default is 1)] ", stdout);
-    fputs("[-vhashsize <log(2) of number of volume hash buckets> (default is 8)] ", stdout);
-    fputs("[-vlrudisable (disable VLRU functionality)] ", stdout);
-    fputs("[-vlruthresh <minutes before unused volumes become eligible for soft detach> (default is 2 hours)] ", stdout);
-    fputs("[-vlruinterval <seconds between VLRU scans> (default is 2 minutes)] ", stdout);
-    fputs("[-vlrumax <max volumes to soft detach in one VLRU scan> (default is 8)] ", stdout);
-    fputs("[-unsafe-nosalvage (bypass volume inUse safety check on attach, bypassing salvage)] ", stdout);
-#elif AFS_PTHREAD_ENV
-    fputs("[-vattachpar <number of volume attach threads> (default is 1)] ", stdout);
-#endif
-#ifdef AFS_AIX32_ENV
-    fputs("[-m <min percentage spare in partition>] ", stdout);
-#endif
-#if defined(AFS_SGI_ENV)
-    fputs("[-lock (keep fileserver from swapping)] ", stdout);
-#endif
-    fputs("[-L (large server conf)] ", stdout);
-    fputs("[-S (small server conf)] ", stdout);
-    fputs("[-k <stack size>] ", stdout);
-    fputs("[-realm <Kerberos realm name>] ", stdout);
-    fputs("[-udpsize <size of socket buffer in bytes>] ", stdout);
-    fputs("[-sendsize <size of send buffer in bytes>] ", stdout);
-    fputs("[-abortthreshold <abort threshold>] ", stdout);
-    fputs("[-nojumbo (disable jumbogram network packets - deprecated)] ", stdout);
-    fputs("[-jumbo (enable jumbogram network packets)] ", stdout);
-/*   fputs("[-enable_peer_stats] ", stdout); */
-/*   fputs("[-enable_process_stats] ", stdout); */
-    fputs("[-help]\n", stdout);
-/*
-    ViceLog(0, ("%s", buffer));
-*/
-
-    fflush(stdout);
-
-}                              /*FlagMsg */
-
-
 static afs_int32
 ParseRights(char *arights)
 {
@@ -1059,7 +886,6 @@ ParseRights(char *arights)
 static int
 max_fileserver_thread(void)
 {
-#if defined(AFS_PTHREAD_ENV)
 #if defined(AFS_AIX_ENV) || defined(AFS_HPUX_ENV)
     long ans;
 
@@ -1067,502 +893,538 @@ max_fileserver_thread(void)
     if (0 < ans && ans < MAX_FILESERVER_THREAD)
        return (int)ans;
 #endif
-#endif /* defined(AFS_PTHREAD_ENV) */
     return MAX_FILESERVER_THREAD;
 }
 
 /* from ihandle.c */
 extern ih_init_params vol_io_params;
 
+enum optionsList {
+    OPT_large,
+    OPT_small,
+    OPT_banner,
+    OPT_implicit,
+    OPT_lock,
+    OPT_readonly,
+    OPT_saneacls,
+    OPT_buffers,
+    OPT_callbacks,
+    OPT_vcsize,
+    OPT_lvnodes,
+    OPT_svnodes,
+    OPT_sendsize,
+    OPT_minspare,
+    OPT_spare,
+    OPT_pctspare,
+    OPT_hostcpsrefresh,
+    OPT_vattachthreads,
+    OPT_abortthreshold,
+    OPT_busyat,
+    OPT_nobusy,
+    OPT_offline_timeout,
+    OPT_offline_shutdown_timeout,
+    OPT_vhandle_setaside,
+    OPT_vhandle_max_cachesize,
+    OPT_vhandle_initial_cachesize,
+    OPT_fs_state_dont_save,
+    OPT_fs_state_dont_restore,
+    OPT_fs_state_verify,
+    OPT_vhashsize,
+    OPT_vlrudisable,
+    OPT_vlruthresh,
+    OPT_vlruinterval,
+    OPT_vlrumax,
+    OPT_unsafe_nosalvage,
+    OPT_stack,
+    OPT_cbwait,
+    OPT_novbc,
+    OPT_auditlog,
+    OPT_auditiface,
+    OPT_config,
+    OPT_debug,
+    OPT_logfile,
+    OPT_mrafslogs,
+    OPT_threads,
+    OPT_syslog,
+    OPT_peer,
+    OPT_process,
+    OPT_nojumbo,
+    OPT_jumbo,
+    OPT_rxbind,
+    OPT_rxdbg,
+    OPT_rxdbge,
+    OPT_rxpck,
+    OPT_rxmaxmtu,
+    OPT_udpsize,
+    OPT_dotted,
+    OPT_realm
+};
+
 static int
 ParseArgs(int argc, char *argv[])
 {
-    int SawL = 0, SawS = 0, SawVC = 0;
-    int Sawrxpck = 0, Sawsmall = 0, Sawlarge = 0, Sawcbs = 0, Sawlwps =
-       0, Sawbufs = 0;
-    int Sawbusy = 0;
-    int i;
-    int bufSize = 0;           /* temp variable to read in udp socket buf size */
+    int code;
+    int optval;
+    char *optstring;
+    struct cmd_item *optlist;
+    struct cmd_syndesc *opts;
+
+    int lwps_max;
     char *auditFileName = NULL;
 
-    for (i = 1; i < argc; i++) {
-       if (!strcmp(argv[i], "-d")) {
-            if ((i + 1) >= argc) {
-               fprintf(stderr, "missing argument for -d\n"); 
-               return -1; 
-           }
-           debuglevel = atoi(argv[++i]);
-           LogLevel = debuglevel;
-       } else if (!strcmp(argv[i], "-banner")) {
-           printBanner = 1;
-       } else if (!strcmp(argv[i], "-implicit")) {
-            if ((i + 1) >= argc) {
-               fprintf(stderr, "missing argument for -implicit\n"); 
-               return -1; 
-           }
-           implicitAdminRights = ParseRights(argv[++i]);
-           if (implicitAdminRights < 0)
-               return implicitAdminRights;
-       } else if (!strcmp(argv[i], "-readonly")) {
-           readonlyServer = 1;
-       } else if (!strcmp(argv[i], "-L")) {
-           SawL = 1;
-       } else if (!strcmp(argv[i], "-S")) {
-           SawS = 1;
-       } else if (!strcmp(argv[i], "-p")) {
-           int lwps_max =
-               max_fileserver_thread() - FILESERVER_HELPER_THREADS;
-           Sawlwps = 1;
-            if ((i + 1) >= argc) {
-               fprintf(stderr, "missing argument for -p\n"); 
-               return -1; 
-           }
-           lwps = atoi(argv[++i]);
-           if (lwps > lwps_max)
-               lwps = lwps_max;
-           else if (lwps < 6)
-               lwps = 6;
-       } else if (!strcmp(argv[i], "-b")) {
-           Sawbufs = 1;
-            if ((i + 1) >= argc) {
-               fprintf(stderr, "missing argument for -b\n"); 
-               return -1; 
-           }
-           buffs = atoi(argv[++i]);
-       } else if (!strcmp(argv[i], "-l")) {
-           Sawlarge = 1;
-            if ((i + 1) >= argc) {
-               fprintf(stderr, "missing argument for -l\n"); 
-               return -1; 
-           }
-           large = atoi(argv[++i]);
-       } else if (!strcmp(argv[i], "-vc")) {
-           SawVC = 1;
-            if ((i + 1) >= argc) {
-               fprintf(stderr, "missing argument for -vc\n"); 
-               return -1; 
-           }
-           volcache = atoi(argv[++i]);
-       } else if (!strcmp(argv[i], "-novbc")) {
-           novbc = 1;
-       } else if (!strcmp(argv[i], "-rxpck")) {
-           Sawrxpck = 1;
-            if ((i + 1) >= argc) {
-               fprintf(stderr, "missing argument for -rxpck\n"); 
-               return -1; 
-           }
-           rxpackets = atoi(argv[++i]);
-#ifdef AFS_PTHREAD_ENV
-       } else if (!strcmp(argv[i], "-vattachpar")) {
-            if ((i + 1) >= argc) {
-               fprintf(stderr, "missing argument for %s\n", argv[i]); 
-               return -1; 
-           }
-           vol_attach_threads = atoi(argv[++i]);
-#endif /* AFS_PTHREAD_ENV */
-        } else if (!strcmp(argv[i], "-vhandle-setaside")) {
-            if ((i + 1) >= argc) {
-                fprintf(stderr, "missing argument for %s\n", argv[i]);
-                return -1;
-           }
-            vol_io_params.fd_handle_setaside = atoi(argv[++i]);
-        } else if (!strcmp(argv[i], "-vhandle-max-cachesize")) {
-            if ((i + 1) >= argc) {
-                fprintf(stderr, "missing argument for %s\n", argv[i]);
-                return -1;
-            }
-            vol_io_params.fd_max_cachesize = atoi(argv[++i]);
-        } else if (!strcmp(argv[i], "-vhandle-initial-cachesize")) {
-            if ((i + 1) >= argc) {
-                fprintf(stderr, "missing argument for %s\n", argv[i]);
-                return -1;
-            }
-            vol_io_params.fd_initial_cachesize = atoi(argv[++i]);
+#if defined(AFS_AIX32_ENV)
+    extern int aixlow_water;
+#endif
+
+    opts = cmd_CreateSyntax(NULL, NULL, NULL, NULL);
+
+    /* fileserver options */
+    cmd_AddParmAtOffset(opts, OPT_large, "-L", CMD_FLAG,
+                       CMD_OPTIONAL, "defaults for a 'large' server");
+    cmd_AddParmAtOffset(opts, OPT_small, "-S", CMD_FLAG,
+                       CMD_OPTIONAL, "defaults for a 'small' server");
+
+    cmd_AddParmAtOffset(opts, OPT_banner, "-banner", CMD_FLAG,
+                       CMD_OPTIONAL, "print regular banners to log");
+    cmd_AddParmAtOffset(opts, OPT_implicit, "-implicit", CMD_SINGLE,
+                       CMD_OPTIONAL, "implicit admin access bits");
+
+#if defined(AFS_SGI_ENV)
+    cmd_AddParmAtOffset(opts, OPT_lock, "-lock", CMD_FLAG,
+                       CMD_OPTIONAL, "lock filserver binary in memory");
+#endif
+    cmd_AddParmAtOffset(opts, OPT_readonly, "-readonly", CMD_FLAG,
+                       CMD_OPTIONAL, "be a readonly fileserver");
+    cmd_AddParmAtOffset(opts, OPT_saneacls, "-saneacls", CMD_FLAG,
+                       CMD_OPTIONAL, "set the saneacls capability bit");
+
+    cmd_AddParmAtOffset(opts, OPT_buffers, "-b", CMD_SINGLE,
+                       CMD_OPTIONAL, "buffers");
+    cmd_AddParmAtOffset(opts, OPT_callbacks, "-cb", CMD_SINGLE,
+                       CMD_OPTIONAL, "number of callbacks");
+    cmd_AddParmAtOffset(opts, OPT_vcsize, "-vc", CMD_SINGLE,
+                       CMD_OPTIONAL, "volume cachesize");
+    cmd_AddParmAtOffset(opts, OPT_lvnodes, "-l", CMD_SINGLE,
+                       CMD_OPTIONAL, "large vnodes");
+    cmd_AddParmAtOffset(opts, OPT_svnodes, "-s", CMD_SINGLE,
+                       CMD_OPTIONAL, "small vnodes");
+    cmd_AddParmAtOffset(opts, OPT_sendsize, "-sendsize", CMD_SINGLE,
+                       CMD_OPTIONAL, "size of send buffer in bytes");
+
+#if defined(AFS_AIX32_ENV)
+    cmd_AddParmAtOffset(opts, OPT_minspare, "-m", CMD_SINGLE,
+                       CMD_OPTIONAL, "minimum percentage spare in partition");
+#endif
+
+    cmd_AddParmAtOffset(opts, OPT_spare, "-spare", CMD_SINGLE,
+                       CMD_OPTIONAL, "kB overage on volume quota");
+    cmd_AddParmAtOffset(opts, OPT_pctspare, "pctspare", CMD_SINGLE,
+                       CMD_OPTIONAL, "percentage overage on volume quota");
+
+    cmd_AddParmAtOffset(opts, OPT_hostcpsrefresh, "-hr", CMD_SINGLE,
+                       CMD_OPTIONAL, "hours between host CPS refreshes");
+
+    cmd_AddParmAtOffset(opts, OPT_vattachthreads, "-vattachpar", CMD_SINGLE,
+                       CMD_OPTIONAL, "# of volume attachment threads");
+
+    cmd_AddParmAtOffset(opts, OPT_abortthreshold, "-abortthreshold",
+                       CMD_SINGLE, CMD_OPTIONAL,
+                       "abort threshold");
+    cmd_AddParmAtOffset(opts, OPT_busyat, "-busyat", CMD_SINGLE, CMD_OPTIONAL,
+                       "# of queued entries after which server is busy");
+    cmd_AddParmAtOffset(opts, OPT_nobusy, "-nobusy", CMD_FLAG, CMD_OPTIONAL,
+                       "send VRESTARTING while restarting the server");
+
+    cmd_AddParmAtOffset(opts, OPT_offline_timeout, "-offline-timeout",
+                       CMD_SINGLE, CMD_OPTIONAL,
+                       "timeout for offlining volumes");
+    cmd_AddParmAtOffset(opts, OPT_offline_shutdown_timeout,
+                       "-offline-shutdown-timeout", CMD_SINGLE, CMD_OPTIONAL,
+                       "timeout offlining volumes during shutdown");
+
+    cmd_AddParmAtOffset(opts, OPT_vhandle_setaside, "-vhandle-setaside",
+                       CMD_SINGLE, CMD_OPTIONAL,
+                       "# fds reserved for non-cache IO");
+    cmd_AddParmAtOffset(opts, OPT_vhandle_max_cachesize, 
+                       "-vhandle-max-cachesize", CMD_SINGLE, CMD_OPTIONAL,
+                       "max open files");
+    cmd_AddParmAtOffset(opts, OPT_vhandle_initial_cachesize,
+                       "-vhandle-initial-cachesize", CMD_SINGLE,
+                       CMD_OPTIONAL, "# fds reserved for cache IO");
+
 #ifdef AFS_DEMAND_ATTACH_FS
-       } else if (!strcmp(argv[i], "-fs-state-dont-save")) {
-           fs_state.options.fs_state_save = 0;
-       } else if (!strcmp(argv[i], "-fs-state-dont-restore")) {
-           fs_state.options.fs_state_restore = 0;
-       } else if (!strcmp(argv[i], "-fs-state-verify")) {
-            if ((i + 1) >= argc) {
-               fprintf(stderr, "missing argument for %s\n", argv[i]); 
-               return -1; 
-           }
-           i++;
-           if (!strcmp(argv[i], "none")) {
-               fs_state.options.fs_state_verify_before_save = 0;
-               fs_state.options.fs_state_verify_after_restore = 0;
-           } else if (!strcmp(argv[i], "save")) {
-               fs_state.options.fs_state_verify_after_restore = 0;
-           } else if (!strcmp(argv[i], "restore")) {
-               fs_state.options.fs_state_verify_before_save = 0;
-           } else if (!strcmp(argv[i], "both")) {
-               /* default */
-           } else {
-               fprintf(stderr, "invalid argument for %s\n", argv[i-1]);
-               return -1;
-           }
-       } else if (!strcmp(argv[i], "-vhashsize")) {
-            if ((i + 1) >= argc) {
-               fprintf(stderr, "missing argument for %s\n", argv[i]); 
-               return -1; 
-           }
-           VSetVolHashSize(atoi(argv[++i]));
-       } else if (!strcmp(argv[i], "-vlrudisable")) {
-           VLRU_SetOptions(VLRU_SET_ENABLED, 0);
-       } else if (!strcmp(argv[i], "-vlruthresh")) {
-            if ((i + 1) >= argc) {
-               fprintf(stderr, "missing argument for %s\n", argv[i]); 
-               return -1; 
-           }
-           VLRU_SetOptions(VLRU_SET_THRESH, 60*atoi(argv[++i]));
-       } else if (!strcmp(argv[i], "-vlruinterval")) {
-            if ((i + 1) >= argc) {
-               fprintf(stderr, "missing argument for %s\n", argv[i]); 
-               return -1; 
-           }
-           VLRU_SetOptions(VLRU_SET_INTERVAL, atoi(argv[++i]));
-       } else if (!strcmp(argv[i], "-vlrumax")) {
-            if ((i + 1) >= argc) {
-               fprintf(stderr, "missing argument for %s\n", argv[i]); 
-               return -1; 
-           }
-           VLRU_SetOptions(VLRU_SET_MAX, atoi(argv[++i]));
-       } else if (!strcmp(argv[i], "-unsafe-nosalvage")) {
-           unsafe_attach = 1;
-#endif /* AFS_DEMAND_ATTACH_FS */
-       } else if (!strcmp(argv[i], "-s")) {
-           Sawsmall = 1;
-            if ((i + 1) >= argc) {
-               fprintf(stderr, "missing argument for -s\n"); 
-               return -1; 
-           }
-           nSmallVns = atoi(argv[++i]);
-       } else if (!strcmp(argv[i], "-abortthreshold")) {
-            if ((i + 1) >= argc) {
-               fprintf(stderr, "missing argument for -abortthreshold\n"); 
-               return -1; 
-           }
-           abort_threshold = atoi(argv[++i]);
-       } else if (!strcmp(argv[i], "-k")) {
-            if ((i + 1) >= argc) {
-               fprintf(stderr, "missing argument for -k\n"); 
-               return -1; 
-           }
-           stack = atoi(argv[++i]);
-       }
+    /* dafs options */
+    cmd_AddParmAtOffset(opts, OPT_fs_state_dont_save,
+                       "-fs-state-dont-save", CMD_FLAG, CMD_OPTIONAL,
+                       "disable state save during shutdown");
+    cmd_AddParmAtOffset(opts, OPT_fs_state_dont_restore,
+                       "-fs-state-dont-restore", CMD_FLAG, CMD_OPTIONAL,
+                       "disable state restore during startup");
+    cmd_AddParmAtOffset(opts, OPT_fs_state_verify, "-fs-state-verify",
+                       CMD_SINGLE, CMD_OPTIONAL, "none|save|restore|both");
+    cmd_AddParmAtOffset(opts, OPT_vhashsize, "-vhashsize",
+                       CMD_SINGLE, CMD_OPTIONAL,
+                       "log(2) of # of volume hash buckets");
+    cmd_AddParmAtOffset(opts, OPT_vlrudisable, "-vlrudisable",
+                       CMD_FLAG, CMD_OPTIONAL, "disable VLRU functionality");
+    cmd_AddParmAtOffset(opts, OPT_vlruthresh, "-vlruthresh",
+                       CMD_FLAG, CMD_OPTIONAL,
+                       "mins before unused vols become eligible for detach");
+    cmd_AddParmAtOffset(opts, OPT_vlruinterval, "-vlruinterval",
+                       CMD_FLAG, CMD_OPTIONAL, "secs between VLRU scans");
+    cmd_AddParmAtOffset(opts, OPT_vlrumax, "-vlrumax", CMD_FLAG, CMD_OPTIONAL,
+                       "max volumes to detach in one scan");
+    cmd_AddParmAtOffset(opts, OPT_unsafe_nosalvage, "-unsafe-nosalvage",
+                       CMD_FLAG, CMD_OPTIONAL,
+                       "bybass safety checks on volume attach");
+#endif
+
+    /* unrecommend options - should perhaps be CMD_HIDE */
+    cmd_AddParmAtOffset(opts, OPT_stack, "-k", CMD_SINGLE, CMD_OPTIONAL,
+                       "stack size");
+    cmd_AddParmAtOffset(opts, OPT_cbwait, "-w", CMD_SINGLE, CMD_OPTIONAL,
+                       "callback wait interval");
+    cmd_AddParmAtOffset(opts, OPT_novbc, "-novbc", CMD_SINGLE, CMD_FLAG,
+                       "disable callback breaks on reattach");
+
+    /* general options */
+    cmd_AddParmAtOffset(opts, OPT_auditlog, "-auditlog", CMD_SINGLE,
+                       CMD_OPTIONAL, "location of audit log");
+    cmd_AddParmAtOffset(opts, OPT_auditiface, "-audit-interface", CMD_SINGLE,
+                       CMD_OPTIONAL, "interface to use for audit logging");
+    cmd_AddParmAtOffset(opts, OPT_config, "-config", CMD_SINGLE, CMD_OPTIONAL,
+                       "configuration location");
+    cmd_AddParmAtOffset(opts, OPT_debug, "-d", CMD_SINGLE, CMD_OPTIONAL,
+                       "debug level");
+    cmd_AddParmAtOffset(opts, OPT_logfile, "-logfile", CMD_SINGLE,
+                       CMD_OPTIONAL, "location of logfile");
+    cmd_AddParmAtOffset(opts, OPT_mrafslogs, "-mrafslogs", CMD_FLAG,
+                       CMD_OPTIONAL, "enable MRAFS style logging");
+    cmd_AddParmAtOffset(opts, OPT_threads, "-p", CMD_SINGLE, CMD_OPTIONAL,
+                       "number of threads");
+#if !defined(AFS_NT40_ENV)
+    cmd_AddParmAtOffset(opts, OPT_syslog, "-syslog", CMD_SINGLE_OR_FLAG,
+                       CMD_OPTIONAL, "log to syslog");
+#endif
+
+    /* rx options */
+    cmd_AddParmAtOffset(opts, OPT_peer, "-enable_peer_stats", CMD_FLAG,
+                       CMD_OPTIONAL, "enable RX transport statistics");
+    cmd_AddParmAtOffset(opts, OPT_process, "-enable_process_stats", CMD_FLAG,
+                       CMD_OPTIONAL, "enable RX RPC statistics");
+    cmd_AddParmAtOffset(opts, OPT_nojumbo, "-nojumbo", CMD_FLAG,
+                       CMD_OPTIONAL, "disable jumbograms");
+    cmd_AddParmAtOffset(opts, OPT_jumbo, "-jumbo", CMD_FLAG, CMD_OPTIONAL,
+                       "enable jumbograms");
+    cmd_AddParmAtOffset(opts, OPT_rxbind, "-rxbind", CMD_FLAG, CMD_OPTIONAL,
+                       "bind only to the primary interface");
+    cmd_AddParmAtOffset(opts, OPT_rxdbg, "-rxdbg", CMD_FLAG, CMD_OPTIONAL,
+                       "enable rx debugging");
+    cmd_AddParmAtOffset(opts, OPT_rxdbge, "-rxdbge", CMD_FLAG, CMD_OPTIONAL,
+                       "enable rx event debugging");
+    cmd_AddParmAtOffset(opts, OPT_rxpck, "-rxpck", CMD_SINGLE, CMD_OPTIONAL,
+                       "# of extra rx packets");
+    cmd_AddParmAtOffset(opts, OPT_rxmaxmtu, "-rxmaxmtu", CMD_SINGLE,
+                       CMD_OPTIONAL, "maximum MTU for RX");
+    cmd_AddParmAtOffset(opts, OPT_udpsize, "-udpsize", CMD_SINGLE,
+                       CMD_OPTIONAL, "size of socket buffer in bytes");
+
+    /* rxkad options */
+    cmd_AddParmAtOffset(opts, OPT_dotted, "-allow-dotted-principals",
+                       CMD_FLAG, CMD_OPTIONAL,
+                       "permit Kerberos 5 principals with dots");
+    cmd_AddParmAtOffset(opts, OPT_realm, "-realm",
+                       CMD_LIST, CMD_OPTIONAL, "local realm");
+
+    code = cmd_Parse(argc, argv, &opts);
+    if (code)
+       return -1;
+
+    if (cmd_OptionPresent(opts, OPT_large)
+       && cmd_OptionPresent(opts, OPT_small)) {
+       printf("Only one of -L or -S must be specified\n");
+       return -1;
+    }
+
+    if (cmd_OptionPresent(opts, OPT_spare)
+       && cmd_OptionPresent(opts, OPT_pctspare)) {
+       printf("Both -spare and -pctspare specified, exiting.\n");
+       return -1;
+    }
+
+    if (cmd_OptionPresent(opts, OPT_large)) {
+       rxpackets = 200;
+       nSmallVns = 600;
+       large = 600;
+       numberofcbs = 64000;
+       lwps = 128;
+       buffs = 120;
+       volcache = 600;
+    }
+
+    if (cmd_OptionPresent(opts, OPT_small)) {
+       rxpackets = 100;
+       nSmallVns = 200;
+       large = 200;
+       numberofcbs = 20000;
+       lwps = 6;
+       buffs = 70;
+       volcache = 200;
+    }
+
+    cmd_OptionAsFlag(opts, OPT_banner, &printBanner);
+
+    if (cmd_OptionAsString(opts, OPT_implicit, &optstring) == 0) {
+       implicitAdminRights = ParseRights(optstring);
+       free(optstring);
+       optstring = NULL;
+       if (implicitAdminRights < 0)
+           return implicitAdminRights;
+    }
+
 #if defined(AFS_SGI_ENV)
-       else if (!strcmp(argv[i], "-lock")) {
-           SawLock = 1;
-       }
+    cmd_OptionAsFlag(opts, OPT_lock, &SawLock);
 #endif
-       else if (!strcmp(argv[i], "-spare")) {
-            if ((i + 1) >= argc) {
-               fprintf(stderr, "missing argument for -spare\n"); 
-               return -1; 
-           }
-           BlocksSpare = atoi(argv[++i]);
-           SawSpare = 1;
-       } else if (!strcmp(argv[i], "-pctspare")) {
-            if ((i + 1) >= argc) {
-               fprintf(stderr, "missing argument for -pctspare\n"); 
-               return -1; 
-           }
-           PctSpare = atoi(argv[++i]);
-           BlocksSpare = 0;    /* has non-zero default */
-           SawPctSpare = 1;
-       } else if (!strcmp(argv[i], "-w")) {
-            if ((i + 1) >= argc) {
-               fprintf(stderr, "missing argument for -w\n"); 
-               return -1; 
-           }
-           fiveminutes = atoi(argv[++i]);
-       } else if (!strcmp(argv[i], "-hr")) {
-           int hr;
-            if ((i + 1) >= argc) {
-               fprintf(stderr, "missing argument for -hr\n"); 
-               return -1; 
-           }
-           hr = atoi(argv[++i]);
-           if ((hr < 1) || (hr > 36)) {
-               printf
-                   ("host acl refresh interval of %d hours is invalid; hours must be between 1 and 36\n\n",
-                    hr);
-               return -1;
-           }
-           hostaclRefresh = hr * 60 * 60;
-       } else if (!strcmp(argv[i], "-rxdbg"))
-           rxlog = 1;
-       else if (!strcmp(argv[i], "-rxdbge"))
-           eventlog = 1;
-       else if (!strcmp(argv[i], "-cb")) {
-           Sawcbs = 1;
-            if ((i + 1) >= argc) {
-               fprintf(stderr, "missing argument for -cb\n"); 
-               return -1; 
-           }
-           numberofcbs = atoi(argv[++i]);
-           if ((numberofcbs < 10000) || (numberofcbs > 2147483647)) {
-               printf
-                   ("number of cbs %d invalid; must be between 10000 and 2147483647\n",
-                    numberofcbs);
-               return -1;
-           }
-       } else if (!strcmp(argv[i], "-busyat")) {
-           Sawbusy = 1;
-           if ((i + 1) >= argc) {
-               fprintf(stderr, "missing argument for -busyat\n"); 
-               return -1; 
-           }
-           busy_threshold = atoi(argv[++i]);
-           if (busy_threshold < 10) {
-               printf
-                   ("Busy threshold %d is too low, will compute default.\n",
-                    busy_threshold);
-               Sawbusy = 0;
-           }
-       } else if (!strcmp(argv[i], "-nobusy"))
-           busyonrst = 0;
-#ifdef AFS_AIX32_ENV
-       else if (!strcmp(argv[i], "-m")) {
-           extern int aixlow_water;
-           if ((i + 1) >= argc) {
-               fprintf(stderr, "missing argument for -m\n"); 
-               return -1; 
-           }
-           aixlow_water = atoi(argv[++i]);
-           if ((aixlow_water < 0) || (aixlow_water > 30)) {
-               printf("space reserved %d% invalid; must be between 0-30%\n",
-                      aixlow_water);
-               return -1;
-           }
+    cmd_OptionAsFlag(opts, OPT_readonly, &readonlyServer);
+    cmd_OptionAsFlag(opts, OPT_saneacls, &saneacls);
+    cmd_OptionAsInt(opts, OPT_buffers, &buffs);
+
+    if (cmd_OptionAsInt(opts, OPT_callbacks, &numberofcbs) == 0) {
+       printf("number of cbs %d invalid; "
+              "must be between 10000 and 2147483647\n", numberofcbs);
+       return -1;
+    }
+
+    cmd_OptionAsInt(opts, OPT_vcsize, &volcache);
+    cmd_OptionAsInt(opts, OPT_lvnodes, &large);
+    cmd_OptionAsInt(opts, OPT_svnodes, &nSmallVns);
+    if (cmd_OptionAsInt(opts, OPT_sendsize, &optval) == 0) {
+       if (optval < 16384) {
+           printf("Warning:sendsize %d is less than minimum %d; ignoring\n",
+                  optval, 16384);
+       } else
+           sendBufSize = optval;
+    }
+
+#if defined(AFS_AIX32_ENV)
+    if (cmd_OptionAsInt(opts, OPT_minspare, &aixlow_water) == 0) {
+       if ((aixlow_water < 0) || (aixlow_water > 30)) {
+           printf("space reserved %d%% invalid; must be between 0-30%\n",
+                  aixlow_water);
+           return -1;
        }
+    }
 #endif
-       else if (!strcmp(argv[i], "-nojumbo")) {
-           rxJumbograms = 0;
-       } else if (!strcmp(argv[i], "-jumbo")) {
-           rxJumbograms = 1;
-       } else if (!strcmp(argv[i], "-rxbind")) {
-           rxBind = 1;
-       } else if (!strcmp(argv[i], "-allow-dotted-principals")) {
-           rxkadDisableDotCheck = 1;
-       } else if (!strcmp(argv[i], "-rxmaxmtu")) {
-           if ((i + 1) >= argc) {
-               fprintf(stderr, "missing argument for -rxmaxmtu\n"); 
-               return -1; 
-           }
-           rxMaxMTU = atoi(argv[++i]);
-           if ((rxMaxMTU < RX_MIN_PACKET_SIZE) || 
-               (rxMaxMTU > RX_MAX_PACKET_DATA_SIZE)) {
-               printf("rxMaxMTU %d%% invalid; must be between %d-%" AFS_SIZET_FMT "\n",
-                      rxMaxMTU, RX_MIN_PACKET_SIZE, 
-                      RX_MAX_PACKET_DATA_SIZE);
-               return -1;
-               }
-       } else if (!strcmp(argv[i], "-realm")) {
-           extern char local_realms[AFS_NUM_LREALMS][AFS_REALM_SZ];
-           extern int  num_lrealms;
-           if ((i + 1) >= argc) {
-               fprintf(stderr, "missing argument for -realm\n"); 
-               return -1; 
-           }
-           if (strlen(argv[++i]) >= AFS_REALM_SZ) {
-               printf
-                   ("-realm argument must contain fewer than %d characters.\n",
-                    AFS_REALM_SZ);
-               return -1;
-           }
-           if (num_lrealms == -1) 
-               num_lrealms = 0;
-           if (num_lrealms >= AFS_NUM_LREALMS) {
-               printf
-                   ("a maximum of %d -realm arguments can be specified.\n",
-                    AFS_NUM_LREALMS);
-               return -1;
-           }
-           strncpy(local_realms[num_lrealms++], argv[i], AFS_REALM_SZ);
-       } else if (!strcmp(argv[i], "-udpsize")) {
-           if ((i + 1) >= argc) {
-               printf("You have to specify -udpsize <integer value>\n");
-               return -1;
-           }
-           bufSize = atoi(argv[++i]);
-           if (bufSize < rx_GetMinUdpBufSize())
-               printf
-                   ("Warning:udpsize %d is less than minimum %d; ignoring\n",
-                    bufSize, rx_GetMinUdpBufSize());
-           else
-               udpBufSize = bufSize;
-       } else if (!strcmp(argv[i], "-sendsize")) {
-           if ((i + 1) >= argc) {
-               printf("You have to specify -sendsize <integer value>\n");
-               return -1;
-           }
-           bufSize = atoi(argv[++i]);
-           if (bufSize < 16384)
-               printf
-                   ("Warning:sendsize %d is less than minimum %d; ignoring\n",
-                    bufSize, 16384);
-           else
-               sendBufSize = bufSize;
-       } else if (!strcmp(argv[i], "-enable_peer_stats")) {
-           rx_enablePeerRPCStats();
-       } else if (!strcmp(argv[i], "-enable_process_stats")) {
-           rx_enableProcessRPCStats();
-       }
-       else if (strcmp(argv[i], "-auditlog") == 0) {
-           auditFileName = argv[++i];
-       }
-       else if (strcmp(argv[i], "-audit-interface") == 0) {
-           char *interface = argv[++i];
 
-           if (osi_audit_interface(interface)) {
-               printf("Invalid audit interface '%s'\n", interface);
-               return -1;
-           }
+    cmd_OptionAsInt(opts, OPT_spare, &BlocksSpare);
+    if (cmd_OptionAsInt(opts, OPT_pctspare, &PctSpare) == 0) {
+       BlocksSpare = 0;
+    }
+
+    if (cmd_OptionAsInt(opts, OPT_hostcpsrefresh, &optval) == 0) {
+       if ((optval < 1) || (optval > 36)) {
+           printf("host acl refresh interval of %d hours is invalid; "
+                  "hours must be between 1 and 36\n\n", optval);
+           return -1;
        }
-#ifndef AFS_NT40_ENV
-       else if (strcmp(argv[i], "-syslog") == 0) {
-           /* set syslog logging flag */
-           serverLogSyslog = 1;
-       } else if (strncmp(argv[i], "-syslog=", 8) == 0) {
-           serverLogSyslog = 1;
-           serverLogSyslogFacility = atoi(argv[i] + 8);
+       hostaclRefresh = optval * 60 * 60;
+    }
+
+    cmd_OptionAsInt(opts, OPT_vattachthreads, &vol_attach_threads);
+
+    cmd_OptionAsInt(opts, OPT_abortthreshold, &abort_threshold);
+
+    /* busyat is at the end, as rxpackets has to be set before we can use it */
+    if (cmd_OptionPresent(opts, OPT_nobusy))
+       busyonrst = 0;
+
+    if (cmd_OptionAsInt(opts, OPT_offline_timeout, &offline_timeout) == 0) {
+       if (offline_timeout < -1) {
+           printf("Invalid -offline-timeout value %d; the only valid "
+                  "negative value is -1\n", offline_timeout);
+           return -1;
        }
-#endif
-       else if (strcmp(argv[i], "-mrafslogs") == 0) {
-           /* set syslog logging flag */
-           mrafsStyleLogs = 1;
-       } 
-       else if (strcmp(argv[i], "-saneacls") == 0) {
-           saneacls = 1;
+    }
+
+    if (cmd_OptionAsInt(opts, OPT_offline_shutdown_timeout,
+                       &offline_shutdown_timeout) == 0) {
+       if (offline_shutdown_timeout < -1) {
+           printf("Invalid -offline-timeout value %d; the only valid "
+                  "negative value is -1\n", offline_shutdown_timeout);
+           return -1;
        }
-       else {
-           return (-1);
+    }
+
+    cmd_OptionAsUint(opts, OPT_vhandle_setaside,
+                   &vol_io_params.fd_handle_setaside);
+    cmd_OptionAsUint(opts, OPT_vhandle_max_cachesize,
+                   &vol_io_params.fd_max_cachesize);
+    cmd_OptionAsUint(opts, OPT_vhandle_initial_cachesize,
+                   &vol_io_params.fd_initial_cachesize);
+
+#ifdef AFS_DEMAND_ATTACH_FS
+    if (cmd_OptionPresent(opts, OPT_fs_state_dont_save))
+       fs_state.options.fs_state_save = 0;
+    if (cmd_OptionPresent(opts, OPT_fs_state_dont_restore))
+       fs_state.options.fs_state_restore = 0;
+    if (cmd_OptionAsString(opts, OPT_fs_state_verify, &optstring) == 0) {
+       if (strcmp(optstring, "none") == 0) {
+           fs_state.options.fs_state_verify_before_save = 0;
+           fs_state.options.fs_state_verify_after_restore = 0;
+       } else if (strcmp(optstring, "save") == 0) {
+           fs_state.options.fs_state_verify_after_restore = 0;
+       } else if (strcmp(optstring, "restore") == 0) {
+           fs_state.options.fs_state_verify_before_save = 0;
+       } else if (strcmp(optstring, "both") == 0) {
+           /* default */
+       } else {
+           fprintf(stderr, "invalid argument for -fs-state-verify\n");
+           return -1;
        }
     }
-    if (SawS && SawL) {
-       printf("Only one of -L, or -S must be specified\n");
-       return -1;
+    if (cmd_OptionAsInt(opts, OPT_vhashsize, &optval) == 0) {
+       if (VSetVolHashSize(optval)) {
+           fprintf(stderr, "specified -vhashsize (%d) is invalid or out "
+                           "of range\n", optval);
+           return -1;
+       }
     }
-    if (SawS) {
-       if (!Sawrxpck)
-           rxpackets = 100;
-       if (!Sawsmall)
-           nSmallVns = 200;
-       if (!Sawlarge)
-           large = 200;
-       if (!Sawcbs)
-           numberofcbs = 20000;
-       if (!Sawlwps)
-           lwps = 6;
-       if (!Sawbufs)
-           buffs = 70;
-       if (!SawVC)
-           volcache = 200;
-    }
-    if (SawL) {
-       if (!Sawrxpck)
-           rxpackets = 200;
-       if (!Sawsmall)
-           nSmallVns = 600;
-       if (!Sawlarge)
-           large = 600;
-       if (!Sawcbs)
-           numberofcbs = 64000;
-       if (!Sawlwps)
-           lwps = 128;
-       if (!Sawbufs)
-           buffs = 120;
-       if (!SawVC)
-           volcache = 600;
-    }
-    if (!Sawbusy)
-       busy_threshold = 3 * rxpackets / 2;
-    if (auditFileName)
-       osi_audit_file(auditFileName);
+    if (cmd_OptionPresent(opts, OPT_vlrudisable))
+       VLRU_SetOptions(VLRU_SET_ENABLED, 0);
+    if (cmd_OptionAsInt(opts, OPT_vlruthresh, &optval) == 0)
+       VLRU_SetOptions(VLRU_SET_THRESH, 60*optval);
+    if (cmd_OptionAsInt(opts, OPT_vlruinterval, &optval) == 0)
+       VLRU_SetOptions(VLRU_SET_INTERVAL, optval);
+    if (cmd_OptionAsInt(opts, OPT_vlrumax, &optval) == 0)
+       VLRU_SetOptions(VLRU_SET_MAX, optval);
+    cmd_OptionAsFlag(opts, OPT_unsafe_nosalvage, &unsafe_attach);
+#endif /* AFS_DEMAND_ATTACH_FS */
 
-    return (0);
+    cmd_OptionAsInt(opts, OPT_stack, &stack);
+    cmd_OptionAsInt(opts, OPT_cbwait, &fiveminutes);
+    cmd_OptionAsFlag(opts, OPT_novbc, &novbc);
 
-}                              /*ParseArgs */
+    /* general server options */
+    cmd_OptionAsString(opts, OPT_auditlog, &auditFileName);
 
+    if (cmd_OptionAsString(opts, OPT_auditiface, &optstring) == 0) {
+       if (osi_audit_interface(optstring)) {
+           printf("Invalid audit interface '%s'\n", optstring);
+           return -1;
+       }
+       free(optstring);
+       optstring = NULL;
+    }
 
-#define MAXPARMS 15
+    /* XXX - cmd_OptionAsString(opts, OPT_config, &configDir); */
+    cmd_OptionAsInt(opts, OPT_debug, &LogLevel);
+    /* XXX - cmd_OptionAsString(opts, OPT_logfile, &logFile); */
+    cmd_OptionAsFlag(opts, OPT_mrafslogs, &mrafsStyleLogs);
 
-static void
-NewParms(int initializing)
-{
-    static struct afs_stat sbuf;
-    register int i, fd;
-    char *parms;
-    char *argv[MAXPARMS];
-    register int argc;
-
-    if (!(afs_stat("/vice/file/parms", &sbuf))) {
-       parms = (char *)malloc(sbuf.st_size);
-       if (!parms)
-           return;
-       fd = afs_open("parms", O_RDONLY, 0666);
-       if (fd <= 0) {
-           ViceLog(0, ("Open for parms failed with errno = %d\n", errno));
-           return;
-       }
+    if (cmd_OptionAsInt(opts, OPT_threads, &lwps) == 0) {
+       lwps_max = max_fileserver_thread() - FILESERVER_HELPER_THREADS;
+       if (lwps > lwps_max)
+           lwps = lwps_max;
+       else if (lwps <6)
+           lwps = 6;
+    }
 
-       i = read(fd, parms, sbuf.st_size);
-       close(fd);
-       if (i != sbuf.st_size) {
-           if (i < 0) {
-               ViceLog(0, ("Read on parms failed with errno = %d\n", errno));
-           } else {
-               ViceLog(0,
-                       ("Read on parms failed; expected %ld bytes but read %d\n",
-                        (long) sbuf.st_size, i));
+#ifndef AFS_NT40_ENV
+    if (cmd_OptionPresent(opts, OPT_syslog)) {
+       serverLogSyslog = 1;
+       cmd_OptionAsInt(opts, OPT_syslog, &serverLogSyslogFacility);
+    }
+#endif
+
+    if (cmd_OptionPresent(opts, OPT_peer))
+       rx_enablePeerRPCStats();
+    if (cmd_OptionPresent(opts, OPT_process))
+       rx_enableProcessRPCStats();
+    if (cmd_OptionPresent(opts, OPT_nojumbo))
+       rxJumbograms = 0;
+    if (cmd_OptionPresent(opts, OPT_jumbo))
+       rxJumbograms = 1;
+    cmd_OptionAsFlag(opts, OPT_rxbind, &rxBind);
+    cmd_OptionAsFlag(opts, OPT_rxdbg, &rxlog);
+    cmd_OptionAsFlag(opts, OPT_rxdbge, &eventlog);
+    cmd_OptionAsInt(opts, OPT_rxpck, &rxpackets);
+
+    cmd_OptionAsInt(opts, OPT_rxmaxmtu, &rxMaxMTU);
+
+    if (cmd_OptionAsInt(opts, OPT_udpsize, &optval) == 0) {
+       if (optval < rx_GetMinUdpBufSize()) {
+           printf("Warning:udpsize %d is less than minimum %d; ignoring\n",
+                  optval, rx_GetMinUdpBufSize());
+       } else
+           udpBufSize = optval;
+    }
+
+    /* rxkad options */
+    cmd_OptionAsFlag(opts, OPT_dotted, &rxkadDisableDotCheck);
+    if (cmd_OptionAsList(opts, OPT_realm, &optlist) == 0) {
+       extern char local_realms[AFS_NUM_LREALMS][AFS_REALM_SZ];
+       extern int num_lrealms;
+
+       for (; optlist != NULL; optlist=optlist->next) {
+           if (strlen(optlist->data) >= AFS_REALM_SZ) {
+               printf("-realm argument must contain fewer than %d "
+                      "characters.\n", AFS_REALM_SZ);
+               return -1;
            }
-           free(parms);
-           return;
-       }
 
-       for (i = 0; i < MAXPARMS; argv[i++] = 0);
-
-       for (argc = i = 0; i < sbuf.st_size; i++) {
-           if ((*(parms + i) != ' ') && (*(parms + i) != '\n')) {
-               if (argv[argc] == 0)
-                   argv[argc] = (parms + i);
-           } else {
-               *(parms + i) = '\0';
-               if (argv[argc] != 0) {
-                   if (++argc == MAXPARMS)
-                       break;
-               }
-               while ((*(parms + i + 1) == ' ')
-                      || (*(parms + i + 1) == '\n'))
-                   i++;
+           if (num_lrealms == -1)
+               num_lrealms = 0;
+           if (num_lrealms >= AFS_NUM_LREALMS) {
+               printf("a maximum of %d -realm arguments can be "
+                      "specified.\n", AFS_NUM_LREALMS);
+               return -1;
            }
+
+           strncpy(local_realms[num_lrealms++], optlist->data, AFS_REALM_SZ);
        }
-       if (ParseArgs(argc, argv) == 0) {
-           ViceLog(0, ("Change parameters to:"));
+    }
+
+    /* anything setting rxpackets must come before this */
+    if (cmd_OptionAsInt(opts, OPT_busyat, &optval) == 0) {
+       if (optval < 10) {
+           printf("Busy threshold %d is too low, will use default.\n",
+                  busy_threshold);
+           busy_threshold = 3 * rxpackets / 2;
        } else {
-           ViceLog(0, ("Invalid parameter in:"));
+           busy_threshold = optval;
        }
-       for (i = 0; i < argc; i++) {
-           ViceLog(0, (" %s", argv[i]));
-       }
-       ViceLog(0, ("\n"));
-       free(parms);
-    } else if (!initializing)
-       ViceLog(0,
-               ("Received request to change parms but no parms file exists\n"));
+    } else {
+       busy_threshold = 3 * rxpackets / 2;
+    }
 
-}                              /*NewParms */
+    if (auditFileName)
+       osi_audit_file(auditFileName);
 
+    return (0);
+}                              /*ParseArgs */
+
+/* Once upon a time, in a galaxy far far away, IBM AFS supported the use of
+ * a file /vice/file/parms, the contents of which would override any command
+ * line parameters. We no longer support the use of such a file, but we warn
+ * if we encounter its presence from an older release
+ */
+static void
+CheckParms(void)
+{
+    struct afs_stat sbuf;
+
+    if (afs_stat("/vice/file/parms", &sbuf) == 0) {
+       ViceLog(0, ("Using /vice/file/parms to override command line "
+                   "options is no longer supported"));
+    }
+}
 
 /* Miscellaneous routines */
 void
-Die(char *msg)
+Die(const char *msg)
 {
-    ViceLog(0, ("%s\n", msg));
-    assert(0);
 
+    ViceLogThenPanic(0, ("%s\n", msg));
 }                              /*Die */
 
 
@@ -1582,9 +1444,7 @@ InitPR(void)
        return code;
     }
 
-#ifdef AFS_PTHREAD_ENV
-    assert(pthread_key_create(&viced_uclient_key, NULL) == 0);
-#endif
+    osi_Assert(pthread_key_create(&viced_uclient_key, NULL) == 0);
 
     SystemId = SYSADMINID;
     SystemAnyUser = ANYUSERID;
@@ -1610,11 +1470,7 @@ InitPR(void)
        AnonymousID = ANONYMOUSID;
        return 0;
       sleep:
-#ifdef AFS_PTHREAD_ENV
        sleep(30);
-#else /* AFS_PTHREAD_ENV */
-       IOMGR_Sleep(30);
-#endif /* AFS_PTHREAD_ENV */
     }
 }                              /*InitPR */
 
@@ -1684,7 +1540,7 @@ ReadSysIdFile(void)
                 errno));
        return EIO;
     }
-    if ((i = read(fd, (char *)&vsn, sizeof(vsn))) != sizeof(vsn)) {
+    if (read(fd, (char *)&vsn, sizeof(vsn)) != sizeof(vsn)) {
        ViceLog(0,
                ("%s: Read failed (%d)\n", AFSDIR_SERVER_SYSID_FILEPATH,
                 errno));
@@ -1702,9 +1558,8 @@ ReadSysIdFile(void)
                 AFSDIR_SERVER_SYSID_FILEPATH, vsn.version, SYSIDVERSION));
        return EIO;
     }
-    if ((i =
-        read(fd, (char *)&uuid,
-             sizeof(struct afsUUID))) != sizeof(struct afsUUID)) {
+    if (read(fd, (char *)&uuid, sizeof(struct afsUUID))
+           != sizeof(struct afsUUID)) {
        ViceLog(0,
                ("%s: read of uuid failed (%d)\n",
                 AFSDIR_SERVER_SYSID_FILEPATH, errno));
@@ -1712,9 +1567,7 @@ ReadSysIdFile(void)
     }
     afs_ntohuuid(&uuid);
     FS_HostUUID = uuid;
-    if ((i =
-        read(fd, (char *)&nentries,
-             sizeof(afs_int32))) != sizeof(afs_int32)) {
+    if (read(fd, (char *)&nentries, sizeof(afs_int32)) != sizeof(afs_int32)) {
        ViceLog(0,
                ("%s: Read of entries failed (%d)\n",
                 AFSDIR_SERVER_SYSID_FILEPATH, errno));
@@ -1810,16 +1663,16 @@ WriteSysIdFile(void)
 }
 
 /*
- * defect 10966 
+ * defect 10966
  * This routine sets up the buffers for the VL_RegisterAddrs RPC. All addresses
  * in FS_HostAddrs[] are in NBO, while the RPC treats them as a "blob" of data
- * and so we need to convert each of them into HBO which is what the extra 
+ * and so we need to convert each of them into HBO which is what the extra
  * array called FS_HostAddrs_HBO is used here.
  */
 static afs_int32
 Do_VLRegisterRPC(void)
 {
-    register int code;
+    int code;
     bulkaddrs addrs;
     afs_uint32 FS_HostAddrs_HBO[ADDRSPERSITE];
     int i = 0;
@@ -1861,8 +1714,8 @@ SetupVL(void)
 
     if (AFSDIR_SERVER_NETRESTRICT_FILEPATH || AFSDIR_SERVER_NETINFO_FILEPATH) {
        /*
-        * Find addresses we are supposed to register as per the netrestrict 
-        * and netinfo files (/usr/afs/local/NetInfo and 
+        * Find addresses we are supposed to register as per the netrestrict
+        * and netinfo files (/usr/afs/local/NetInfo and
         * /usr/afs/local/NetRestict)
         */
        char reason[1024];
@@ -1882,7 +1735,7 @@ SetupVL(void)
 
     if (FS_HostAddr_cnt == 1 && rxBind == 1)
        code = FS_HostAddrs[0];
-    else 
+    else
        code = htonl(INADDR_ANY);
     return code;
 }
@@ -1899,7 +1752,7 @@ InitVL(void)
     code = vl_Initialize(AFSDIR_SERVER_ETC_DIRPATH);
     if (code != 0) {
        ViceLog(0,
-               ("Couldn't initialize protection library; code=%d.\n", code));
+               ("Couldn't initialize volume location library; code=%d.\n", code));
        return code;
     }
 
@@ -1931,12 +1784,8 @@ main(int argc, char *argv[])
     struct rx_securityClass **securityClasses;
     afs_int32 numClasses;
     struct rx_service *tservice;
-#ifdef AFS_PTHREAD_ENV
     pthread_t serverPid;
     pthread_attr_t tattr;
-#else /* AFS_PTHREAD_ENV */
-    PROCESS parentPid, serverPid;
-#endif /* AFS_PTHREAD_ENV */
     struct hostent *he;
     int minVnodesRequired;     /* min size of vnode cache */
 #ifndef AFS_NT40_ENV
@@ -1944,6 +1793,7 @@ main(int argc, char *argv[])
 #endif
     int curLimit;
     time_t t;
+    struct tm tm;
     afs_uint32 rx_bindhost;
     VolumePackageOptions opts;
 
@@ -1970,13 +1820,13 @@ main(int argc, char *argv[])
     /* set ihandle package defaults prior to parsing args */
     ih_PkgDefaults();
 
+    /* check for the parameter file */
+    CheckParms();
+
     if (ParseArgs(argc, argv)) {
-       FlagMsg();
        exit(-1);
     }
-#ifdef AFS_PTHREAD_ENV
-    assert(pthread_mutex_init(&fileproc_glock_mutex, NULL) == 0);
-#endif /* AFS_PTHREAD_ENV */
+    MUTEX_INIT(&fileproc_glock_mutex, "fileproc", MUTEX_DEFAULT, 0);
 
 #ifdef AFS_SGI_VNODE_GLUE
     if (afs_init_kernel_config(-1) < 0) {
@@ -1992,8 +1842,6 @@ main(int argc, char *argv[])
        exit(-1);
     }
 
-    NewParms(1);
-
     /* Open FileLog on stdout, stderr, fd 1 and fd2 (for perror), sigh. */
 #ifndef AFS_NT40_ENV
     serverLogSyslogTag = "fileserver";
@@ -2001,13 +1849,9 @@ main(int argc, char *argv[])
     OpenLog(AFSDIR_SERVER_FILELOG_FILEPATH);
     SetupLogSignals();
 
-    if (SawSpare && SawPctSpare) {
-       ViceLog(0, ("Both -spare and -pctspare specified, exiting.\n"));
-       exit(-1);
-    }
     LogCommandLine(argc, argv, "starting", "", "File server", FSLog);
 
-#if defined(AFS_PTHREAD_ENV) && !defined(AFS_NT40_ENV)
+#if !defined(AFS_NT40_ENV)
     /* initialize the pthread soft signal handler thread */
     softsig_init();
 #endif
@@ -2021,12 +1865,10 @@ main(int argc, char *argv[])
     schedctl(NDPRI, 0, NDPNORMMAX);
     if (SawLock)
        plock(PROCLOCK);
-#else
-#ifndef AFS_NT40_ENV
+#elif !defined(AFS_NT40_ENV)
     nice(-5);                  /* TODO: */
 #endif
-#endif
-    assert(DInit(buffs) == 0);
+    DInit(buffs);
 #ifdef AFS_DEMAND_ATTACH_FS
     FS_STATE_INIT;
 #endif
@@ -2040,8 +1882,8 @@ main(int argc, char *argv[])
 #endif
     CheckAdminName();
 
-    /* if we support more than 16 threads, then we better have the ability 
-     ** to keep open a large number of files simultaneously 
+    /* if we support more than 16 threads, then we better have the ability
+     ** to keep open a large number of files simultaneously
      */
 #if    defined(AFS_AIX_ENV) && !defined(AFS_AIX42_ENV)
     curLimit = OPEN_MAX;       /* for pre AIX 4.2 systems */
@@ -2078,19 +1920,13 @@ main(int argc, char *argv[])
                ("The system supports a max of %d open files and we are starting %d threads (ihandle fd cache is %d)\n",
                 curLimit, lwps, vol_io_params.fd_max_cachesize));
     }
-#ifndef AFS_PTHREAD_ENV
-    assert(LWP_InitializeProcessSupport(LWP_MAX_PRIORITY - 2, &parentPid) ==
-          LWP_SUCCESS);
-#endif /* !AFS_PTHREAD_ENV */
 
     /* Initialize volume support */
     if (!novbc) {
        V_BreakVolumeCallbacks = BreakVolumeCallBacksLater;
     }
 
-#ifdef AFS_PTHREAD_ENV
-    SetLogThreadNumProgram( threadNum );
-#endif
+    SetLogThreadNumProgram( rx_GetThreadNum );
 
     /* initialize libacl routines */
     acl_Initialize(ACL_VERSION);
@@ -2129,14 +1965,17 @@ main(int argc, char *argv[])
        rx_SetNoJumbo();
     }
     if (rxMaxMTU != -1) {
-       rx_SetMaxMTU(rxMaxMTU);
+       if (rx_SetMaxMTU(rxMaxMTU) != 0) {
+           ViceLog(0, ("rxMaxMTU %d is invalid\n", rxMaxMTU));
+           exit(1);
+       }
     }
     rx_GetIFInfo();
     rx_SetRxDeadTime(30);
-    afsconf_BuildServerSecurityObjects(confDir, AFSCONF_SEC_OBJS_RXKAD_CRYPT,
-                                      &securityClasses, &numClasses);
+    afsconf_SetSecurityFlags(confDir, AFSCONF_SECOPTS_ALWAYSENCRYPT);
+    afsconf_BuildServerSecurityObjects(confDir, &securityClasses, &numClasses);
 
-    tservice = rx_NewServiceHost(rx_bindhost,  /* port */ 0, /* service id */ 
+    tservice = rx_NewServiceHost(rx_bindhost,  /* port */ 0, /* service id */
                                 1,     /*service name */
                                 "AFS",
                                 securityClasses, numClasses,
@@ -2201,13 +2040,11 @@ main(int argc, char *argv[])
     /* allow super users to manage RX statistics */
     rx_SetRxStatUserOk(fs_rxstat_userok);
 
-#ifdef AFS_PTHREAD_ENV
-    assert(pthread_cond_init(&fsync_cond, NULL) == 0);
-    assert(pthread_mutex_init(&fsync_glock_mutex, NULL) == 0);
-#endif
+    CV_INIT(&fsync_cond, "fsync", CV_DEFAULT, 0);
+    MUTEX_INIT(&fsync_glock_mutex, "fsync", MUTEX_DEFAULT, 0);
 
 #if !defined(AFS_DEMAND_ATTACH_FS)
-    /* 
+    /*
      * For DAFS, we do not start the Rx server threads until after
      * the volume package is initialized, and fileserver state is
      * restored.  This is necessary in order to keep host and callback
@@ -2220,11 +2057,11 @@ main(int argc, char *argv[])
 #endif
 
     /* we ensure that there is enough space in the vnode buffer to satisfy
-     ** requests from all concurrent threads. 
+     ** requests from all concurrent threads.
      ** the maximum number of vnodes used by a single thread at any one time
      ** is three ( "link" uses three vnodes simultaneously, one vLarge and
      ** two vSmall for linking files and two vLarge and one vSmall for linking
-     ** files  ) : dhruba 
+     ** files  ) : dhruba
      */
     minVnodesRequired = 2 * lwps + 1;
     if (minVnodesRequired > nSmallVns) {
@@ -2240,7 +2077,7 @@ main(int argc, char *argv[])
 
     /* We now do this after getting the listener up and running, so that client
      * connections don't timeout (maybe) if a file server is restarted, since it
-     * will be available "real soon now".  Worry about whether we can satisfy the 
+     * will be available "real soon now".  Worry about whether we can satisfy the
      * calls in the volume package itself.
      */
     VOptDefaults(fileServer, &opts);
@@ -2248,6 +2085,18 @@ main(int argc, char *argv[])
     opts.nSmallVnodes = nSmallVns;
     opts.volcache = volcache;
     opts.unsafe_attach = unsafe_attach;
+    if (offline_timeout != -1) {
+       opts.interrupt_rxcall = rx_InterruptCall;
+       opts.offline_timeout = offline_timeout;
+    }
+    if (offline_shutdown_timeout == -1) {
+       /* default to -offline-timeout, if shutdown-specific timeout is not
+        * specified */
+       opts.offline_shutdown_timeout = offline_timeout;
+    } else {
+       opts.interrupt_rxcall = rx_InterruptCall;
+       opts.offline_shutdown_timeout = offline_shutdown_timeout;
+    }
 
     if (VInitVolumePackage2(fileServer, &opts)) {
        ViceLog(0,
@@ -2259,7 +2108,7 @@ main(int argc, char *argv[])
     /* Install handler to catch the shutdown signal;
      * bosserver assumes SIGQUIT shutdown
      */
-#if defined(AFS_PTHREAD_ENV) && !defined(AFS_NT40_ENV)
+#if !defined(AFS_NT40_ENV)
     softsig_signal(SIGQUIT, ShutDown_Signal);
 #else
     (void)signal(SIGQUIT, ShutDown_Signal);
@@ -2288,38 +2137,20 @@ main(int argc, char *argv[])
      */
     ih_UseLargeCache();
 
-#ifdef AFS_PTHREAD_ENV
     ViceLog(5, ("Starting pthreads\n"));
-    assert(pthread_attr_init(&tattr) == 0);
-    assert(pthread_attr_setdetachstate(&tattr, PTHREAD_CREATE_DETACHED) == 0);
+    osi_Assert(pthread_attr_init(&tattr) == 0);
+    osi_Assert(pthread_attr_setdetachstate(&tattr, PTHREAD_CREATE_DETACHED) == 0);
 
-    assert(pthread_create
+    osi_Assert(pthread_create
           (&serverPid, &tattr, FiveMinuteCheckLWP,
            &fiveminutes) == 0);
-    assert(pthread_create
+    osi_Assert(pthread_create
           (&serverPid, &tattr, HostCheckLWP, &fiveminutes) == 0);
-    assert(pthread_create
+    osi_Assert(pthread_create
           (&serverPid, &tattr, FsyncCheckLWP, &fiveminutes) == 0);
-#else /* AFS_PTHREAD_ENV */
-    ViceLog(5, ("Starting LWP\n"));
-    assert(LWP_CreateProcess
-          (FiveMinuteCheckLWP, stack * 1024, LWP_MAX_PRIORITY - 2,
-           (void *)&fiveminutes, "FiveMinuteChecks",
-           &serverPid) == LWP_SUCCESS);
-
-    assert(LWP_CreateProcess
-          (HostCheckLWP, stack * 1024, LWP_MAX_PRIORITY - 2,
-           (void *)&fiveminutes, "HostCheck", &serverPid) == LWP_SUCCESS);
-    assert(LWP_CreateProcess
-          (FsyncCheckLWP, stack * 1024, LWP_MAX_PRIORITY - 2,
-           (void *)&fiveminutes, "FsyncCheck", &serverPid) == LWP_SUCCESS);
-#endif /* AFS_PTHREAD_ENV */
 
     FT_GetTimeOfDay(&tp, 0);
 
-    ViceLog(0, ("File server has started at %s",
-               afs_ctime((time_t *)&(tp.tv_sec), tbuffer, sizeof(tbuffer))));
-
     /*
      * Figure out the FileServer's name and primary address.
      */
@@ -2345,18 +2176,12 @@ main(int argc, char *argv[])
     }
 
     t = tp.tv_sec;
-    ViceLog(0,
-           ("File Server started %s",
-            afs_ctime(&t, tbuffer, sizeof(tbuffer))));
-#if FS_STATS_DETAILED
+    strftime(tbuffer, sizeof(tbuffer), "%a %b %d %H:%M:%S %Y",
+            localtime_r(&t, &tm));
+    ViceLog(0, ("File Server started %s\n", tbuffer));
     afs_FullPerfStats.det.epoch.tv_sec = StartTime = tp.tv_sec;
-#endif
-#ifdef AFS_PTHREAD_ENV
     while (1) {
        sleep(1000);            /* long time */
     }
-#else /* AFS_PTHREAD_ENV */
-    assert(LWP_WaitProcess(&parentPid) == LWP_SUCCESS);
-#endif /* AFS_PTHREAD_ENV */
     return 0;
 }