viced: disable hot threads
[openafs.git] / src / viced / viced.c
index b36c2ea..bab39f9 100644 (file)
 
 #undef SHARED
 
-#include <rx/xdr.h>
+#include <afs/opr.h>
 #include <afs/nfs.h>
-#include <afs/afs_assert.h>
+#include <rx/rx_queue.h>
 #include <lwp.h>
-#include <lock.h>
+#include <opr/lock.h>
+#include <opr/proc.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/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"
@@ -95,13 +94,10 @@ static afs_int32 Do_VLRegisterRPC(void);
 
 int eventlog = 0, rxlog = 0;
 FILE *debugFile;
+char *logFile = NULL;
 
-#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
@@ -129,9 +125,6 @@ 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 */
@@ -161,6 +154,7 @@ static int panic_timeout = 2 * 60;
 static int panic_timeout = 30 * 60;
 #endif
 
+static int host_thread_quota;
 int rxpackets = 150;           /* 100 */
 int nSmallVns = 400;           /* 200 */
 int large = 400;               /* 200 */
@@ -180,13 +174,7 @@ 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
@@ -195,14 +183,13 @@ pthread_key_t viced_uclient_key;
 #define ADDRSPERSITE 16                /* Same global is in rx/rx_user.c */
 
 char FS_HostName[128] = "localhost";
+char *FS_configPath = NULL;
 afs_uint32 FS_HostAddr_NBO;
 afs_uint32 FS_HostAddr_HBO;
 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
@@ -244,8 +231,8 @@ static int fs_stateInit(void)
     fs_state.options.fs_state_verify_before_save = 1;
     fs_state.options.fs_state_verify_after_restore = 1;
 
-    CV_INIT(&fs_state.worker_done_cv, "worker done", CV_DEFAULT, 0);
-    osi_Assert(pthread_rwlock_init(&fs_state.state_lock, NULL) == 0);
+    opr_cv_init(&fs_state.worker_done_cv, "worker done");
+    opr_Verify(pthread_rwlock_init(&fs_state.state_lock, NULL) == 0);
 }
 # endif /* AFS_NT40_ENV */
 #endif /* AFS_DEMAND_ATTACH_FS */
@@ -278,7 +265,6 @@ CheckDescriptors(void *unused)
 }                              /*CheckDescriptors */
 
 
-#ifdef AFS_PTHREAD_ENV
 void
 CheckSignal_Signal(int x)
 {
@@ -296,31 +282,31 @@ 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)
+/* check whether caller is authorized to perform admin operations */
+int
+viced_SuperUser(struct rx_call *call)
 {
-    IOMGR_SoftSig(CheckDescriptors, 0);
+    return afsconf_SuperUser(confDir, call, NULL);
 }
-#endif /* AFS_PTHREAD_ENV */
 
-/* check whether caller is authorized to manage RX statistics */
+/**
+ * Return true if this name is a member of the local realm.
+ */
 int
-fs_rxstat_userok(struct rx_call *call)
+fs_IsLocalRealmMatch(void *rock, char *name, char *inst, char *cell)
 {
-    return afsconf_SuperUser(confDir, call, NULL);
+    struct afsconf_dir *dir = (struct afsconf_dir *)rock;
+    afs_int32 islocal = 0;     /* default to no */
+    int code;
+
+    code = afsconf_IsLocalRealmMatch(dir, &islocal, name, inst, cell);
+    if (code) {
+       ViceLog(0,
+               ("Failed local realm check; code=%d, name=%s, inst=%s, cell=%s\n",
+                code, name, inst, cell));
+    }
+    return islocal;
 }
 
 static void
@@ -336,7 +322,7 @@ ResetCheckSignal(void)
     signo = SIGXCPU;
 #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);
@@ -347,11 +333,7 @@ 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
 }
 
@@ -404,7 +386,7 @@ 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 */
@@ -433,11 +415,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;
@@ -458,13 +436,10 @@ 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();
+           time_t now = time(NULL);
            struct tm tm;
-           strftime(tbuffer, sizeof(tbuffer), "%a %b %d %T %Y",
+           strftime(tbuffer, sizeof(tbuffer), "%a %b %d %H:%M:%S %Y",
                     localtime_r(&now, &tm));
            ViceLog(2,
                    ("File server is running at %s\n", tbuffer));
@@ -476,7 +451,7 @@ FiveMinuteCheckLWP(void *unused)
 #ifdef AFS_DEMAND_ATTACH_FS
     fs_state.FiveMinuteLWP_tranquil = 1;
     FS_LOCK;
-    CV_BROADCAST(&fs_state.worker_done_cv);
+    opr_cv_broadcast(&fs_state.worker_done_cv);
     FS_UNLOCK;
     FS_STATE_UNLOCK;
 #endif
@@ -503,11 +478,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;
@@ -528,7 +499,7 @@ HostCheckLWP(void *unused)
 #ifdef AFS_DEMAND_ATTACH_FS
     fs_state.HostCheckLWP_tranquil = 1;
     FS_LOCK;
-    CV_BROADCAST(&fs_state.worker_done_cv);
+    opr_cv_broadcast(&fs_state.worker_done_cv);
     FS_UNLOCK;
     FS_STATE_UNLOCK;
 #endif
@@ -543,9 +514,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");
@@ -559,19 +528,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 = CV_TIMEDWAIT(&fsync_cond, &fsync_glock_mutex,
+       code = opr_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
@@ -594,7 +558,7 @@ FsyncCheckLWP(void *unused)
 #ifdef AFS_DEMAND_ATTACH_FS
     fs_state.FsyncCheckLWP_tranquil = 1;
     FS_LOCK;
-    CV_BROADCAST(&fs_state.worker_done_cv);
+    opr_cv_broadcast(&fs_state.worker_done_cv);
     FS_UNLOCK;
     FS_STATE_UNLOCK;
 #endif /* AFS_DEMAND_ATTACH_FS */
@@ -633,7 +597,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));
 
@@ -665,7 +628,6 @@ ClearXStatValues(void)
 #  endif
     afs_perfstats.sysname_ID = SYS_NAME_ID_UNDEFINED;
 # endif /* SYS_NAME_ID */
-#endif
 
 }                              /*ClearXStatValues */
 
@@ -685,9 +647,9 @@ PrintCounters(void)
     int stats_flags = 0;
 #endif
 
-    FT_GetTimeOfDay(&tpl, 0);
+    gettimeofday(&tpl, 0);
     Statistics = 1;
-    strftime(tbuffer, sizeof(tbuffer), "%a %b %d %T %Y",
+    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));
 
@@ -709,11 +671,7 @@ PrintCounters(void)
     audit_PrintStats(stderr);
     h_PrintStats();
     PrintCallBackStats();
-#ifdef AFS_NT40_ENV
-    processSize = -1;          /* TODO: */
-#else
-    processSize = (int)((long)sbrk(0) >> 10);
-#endif
+    processSize = opr_procsize();
     ViceLog(0,
            ("There are %d connections, process size %d\n",
             CurrentConnections, processSize));
@@ -768,17 +726,11 @@ ShutDownAndCore(int dopanic)
     char tbuffer[32];
 
     if (dopanic) {
-#ifdef AFS_PTHREAD_ENV
        pthread_t watchdogPid;
        pthread_attr_t tattr;
-       osi_Assert(pthread_attr_init(&tattr) == 0);
-       osi_Assert(pthread_create(&watchdogPid, &tattr, ShutdownWatchdogLWP, NULL) == 0);
-#else
-       PROCESS watchdogPid;
-       osi_Assert(LWP_CreateProcess
-              (ShutdownWatchdogLWP, stack * 1024, LWP_MAX_PRIORITY - 2,
-               NULL, "ShutdownWatchdog", &watchdogPid) == LWP_SUCCESS);
-#endif
+       opr_Verify(pthread_attr_init(&tattr) == 0);
+       opr_Verify(pthread_create(&watchdogPid, &tattr,
+                                 ShutdownWatchdogLWP, NULL) == 0);
     }
 
     /* do not allows new reqests to be served from now on, all new requests
@@ -802,7 +754,7 @@ ShutDownAndCore(int dopanic)
     FS_STATE_UNLOCK;
 #endif
 
-    strftime(tbuffer, sizeof(tbuffer), "%a %b %d %T %Y",
+    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)
@@ -833,7 +785,7 @@ ShutDownAndCore(int dopanic)
                FS_LOCK;
                FS_STATE_UNLOCK;
                ViceLog(0, ("waiting for background host/callback threads to quiesce before saving fileserver state...\n"));
-               CV_WAIT(&fs_state.worker_done_cv, &fileproc_glock_mutex);
+               opr_cv_wait(&fs_state.worker_done_cv, &fileproc_glock_mutex);
                FS_UNLOCK;
                FS_STATE_RDLOCK;
            }
@@ -852,7 +804,7 @@ ShutDownAndCore(int dopanic)
        fflush(debugFile);
     }
     now = time(0);
-    strftime(tbuffer, sizeof(tbuffer), "%a %b %d %T %Y",
+    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", tbuffer));
@@ -873,84 +825,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("[-offline-timeout <client RX timeout for offlining volumes>]", stdout);
-    fputs("[-offline-shutdown-timeout <RX timeout for offlining volumes during shutdown>]", 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)
 {
@@ -1032,475 +906,542 @@ ParseRights(char *arights)
 static int
 max_fileserver_thread(void)
 {
-#if defined(AFS_PTHREAD_ENV) && (defined(AFS_AIX_ENV) || defined(AFS_HPUX_ENV))
+#if defined(AFS_AIX_ENV) || defined(AFS_HPUX_ENV)
     long ans;
 
     ans = sysconf(_SC_THREAD_THREADS_MAX);
     if (0 < ans && ans < MAX_FILESERVER_THREAD)
        return (int)ans;
-#endif /* defined(AFS_PTHREAD_ENV) */
+#endif
     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,
+    OPT_sync
+};
+
 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 = NULL;
+    struct cmd_item *optlist;
+    struct cmd_syndesc *opts;
+
     int lwps_max;
     char *auditFileName = NULL;
+    char *sync_behavior = NULL;
+
+#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");
 
-    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")) {
-           Sawlwps = 1;
-            if ((i + 1) >= argc) {
-               fprintf(stderr, "missing argument for -p\n");
-               return -1;
-           }
-           lwps = atoi(argv[++i]);
-       } 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]);
 #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")) {
-           int hashsize;
-            if ((i + 1) >= argc) {
-               fprintf(stderr, "missing argument for %s\n", argv[i]);
-               return -1;
-           }
-           hashsize = atoi(argv[++i]);
-           if (VSetVolHashSize(hashsize)) {
-               fprintf(stderr, "specified -vhashsize (%s) is invalid or out "
-                               "of range\n", argv[i]);
-               return -1;
-           }
-       } 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_debug, "-d", CMD_SINGLE, CMD_OPTIONAL,
+                       "debug level");
+    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");
+    cmd_AddParmAtOffset(opts, OPT_sync, "-sync",
+                       CMD_SINGLE, CMD_OPTIONAL, "always | onclose | never");
+
+    /* testing options */
+    cmd_AddParmAtOffset(opts, OPT_logfile, "-logfile", CMD_SINGLE,
+           CMD_OPTIONAL, "location of log file");
+    cmd_AddParmAtOffset(opts, OPT_config, "-config", CMD_SINGLE,
+           CMD_OPTIONAL, "configuration location");
+
+    code = cmd_Parse(argc, argv, &opts);
+    if (code == CMD_HELP) {
+       exit(0);
+    }
+    if (code)
+       return -1;
+
+    cmd_OpenConfigFile(AFSDIR_SERVER_CONFIG_FILE_FILEPATH);
+    cmd_SetCommandName("fileserver");
+
+    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) {
+       if ((numberofcbs < 10000) || (numberofcbs > 2147483647)) {
+           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();
+
+    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;
        }
-       else if (strcmp(argv[i], "-auditlog") == 0) {
-           auditFileName = argv[++i];
+       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;
        }
-       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;
-           }
+    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;
        }
-#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);
+    }
+
+    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);
+    if (cmd_OptionAsString(opts, OPT_sync, &sync_behavior) == 0) {
+       if (ih_SetSyncBehavior(sync_behavior)) {
+           printf("Invalid -sync value %s\n", sync_behavior);
+           return -1;
        }
-#endif
-       else if (strcmp(argv[i], "-mrafslogs") == 0) {
-           /* set syslog logging flag */
-           mrafsStyleLogs = 1;
+    }
+
+#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;
        }
-       else if (strcmp(argv[i], "-saneacls") == 0) {
-           saneacls = 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;
        }
-       else if (strcmp(argv[i], "-offline-timeout") == 0) {
-           if (i + 1 >= argc) {
-               printf("You have to specify -offline-timeout <integer>\n");
-               return -1;
-           }
-           offline_timeout = atoi(argv[++i]);
-#ifndef AFS_PTHREAD_ENV
-           if (offline_timeout != -1) {
-               printf("The only valid -offline-timeout value for the LWP "
-                      "fileserver is -1\n");
-               return -1;
-           }
-#endif /* AFS_PTHREAD_ENV */
-           if (offline_timeout < -1) {
-               printf("Invalid -offline-timeout value %s; the only valid "
-                      "negative value is -1\n", argv[i]);
-               return -1;
-           }
+    }
+    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 */
+
+    cmd_OptionAsInt(opts, OPT_stack, &stack);
+    cmd_OptionAsInt(opts, OPT_cbwait, &fiveminutes);
+    cmd_OptionAsFlag(opts, OPT_novbc, &novbc);
+
+    /* 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;
        }
-       else if (strcmp(argv[i], "-offline-shutdown-timeout") == 0) {
-           if (i + 1 >= argc) {
-               printf("You have to specify -offline-shutdown-timeout "
-                      "<integer>\n");
-               return -1;
-           }
-           offline_shutdown_timeout = atoi(argv[++i]);
-#ifndef AFS_PTHREAD_ENV
-           if (offline_shutdown_timeout != -1) {
-               printf("The only valid -offline-shutdown-timeout value for the "
-                      "LWP fileserver is -1\n");
-               return -1;
-           }
-#endif /* AFS_PTHREAD_ENV */
-           if (offline_shutdown_timeout < -1) {
-               printf("Invalid -offline-timeout value %s; the only valid "
-                      "negative value is -1\n", argv[i]);
+       free(optstring);
+       optstring = NULL;
+    }
+
+    cmd_OptionAsInt(opts, OPT_debug, &LogLevel);
+    cmd_OptionAsFlag(opts, OPT_mrafslogs, &mrafsStyleLogs);
+
+    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;
+    }
+
+#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) {
+
+       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;
            }
+           afsconf_SetLocalRealm(optlist->data); /* overrides krb.conf file, if one */
        }
-       else {
-           return (-1);
-       }
-    }
-    if (SawS && SawL) {
-       printf("Only one of -L, or -S must be specified\n");
-       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)
+
+    /* 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 {
+           busy_threshold = optval;
+       }
+    } else {
        busy_threshold = 3 * rxpackets / 2;
+    }
+
+    cmd_OptionAsString(opts, OPT_logfile, &logFile);
+    cmd_OptionAsString(opts, OPT_config, &FS_configPath);
+
+
     if (auditFileName)
        osi_audit_file(auditFileName);
 
-    lwps_max = max_fileserver_thread() - FILESERVER_HELPER_THREADS;
-    if (lwps > lwps_max)
-       lwps = lwps_max;
-    else if (lwps < 6)
-       lwps = 6;
+    if (lwps > 64) {
+       host_thread_quota = 5;
+    } else if (lwps > 32) {
+       host_thread_quota = 4;
+    } else if (lwps > 16) {
+       host_thread_quota = 3;
+    } else {
+       host_thread_quota = 2;
+    }
 
     return (0);
-
 }                              /*ParseArgs */
 
 /* Once upon a time, in a galaxy far far away, IBM AFS supported the use of
@@ -1544,9 +1485,7 @@ InitPR(void)
        return code;
     }
 
-#ifdef AFS_PTHREAD_ENV
-    osi_Assert(pthread_key_create(&viced_uclient_key, NULL) == 0);
-#endif
+    opr_Verify(pthread_key_create(&viced_uclient_key, NULL) == 0);
 
     SystemId = SYSADMINID;
     SystemAnyUser = ANYUSERID;
@@ -1572,38 +1511,33 @@ 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 */
 
-struct rx_connection *serverconns[MAXSERVERS];
-struct ubik_client *cstruct;
+static struct ubik_client *cstruct;
 
-afs_int32
-vl_Initialize(const char *confDir)
+static afs_int32
+vl_Initialize(struct afsconf_dir *dir)
 {
     afs_int32 code, i;
     afs_int32 scIndex = RX_SECIDX_NULL;
-    struct afsconf_dir *tdir;
-    struct rx_securityClass *sc;
     struct afsconf_cell info;
+    struct rx_securityClass *sc;
+    struct rx_connection *serverconns[MAXSERVERS];
 
-    tdir = afsconf_Open(confDir);
-    if (!tdir) {
-       ViceLog(0,
-               ("Could not open configuration directory (%s).\n", confDir));
+    memset(serverconns, 0, sizeof(serverconns));
+    code = afsconf_ClientAuth(dir, &sc, &scIndex);
+    if (code) {
+       ViceLog(0, ("Could not get security object for localAuth\n"));
        exit(1);
     }
-    code = afsconf_ClientAuth(tdir, &sc, &scIndex);
+    code = afsconf_GetCellInfo(dir, NULL, AFSCONF_VLDBSERVICE, &info);
     if (code) {
-       ViceLog(0, ("Could not get security object for localAuth\n"));
+       ViceLog(0,
+               ("vl_Initialize: Failed to get cell information\n"));
        exit(1);
     }
-    code = afsconf_GetCellInfo(tdir, NULL, AFSCONF_VLDBSERVICE, &info);
     if (info.numServers > MAXSERVERS) {
        ViceLog(0,
                ("vl_Initialize: info.numServers=%d (> MAXSERVERS=%d)\n",
@@ -1616,7 +1550,6 @@ vl_Initialize(const char *confDir)
                             info.hostAddr[i].sin_port, USER_SERVICE_ID, sc,
                             scIndex);
     code = ubik_ClientInit(serverconns, &cstruct);
-    afsconf_Close(tdir);
     if (code) {
        ViceLog(0, ("vl_Initialize: ubik client init failed.\n"));
        return code;
@@ -1718,8 +1651,8 @@ WriteSysIdFile(void)
        /*
         * File exists; keep the old one around
         */
-       renamefile(AFSDIR_SERVER_SYSID_FILEPATH,
-                  AFSDIR_SERVER_OLDSYSID_FILEPATH);
+       rk_rename(AFSDIR_SERVER_SYSID_FILEPATH,
+                 AFSDIR_SERVER_OLDSYSID_FILEPATH);
     }
     fd = afs_open(AFSDIR_SERVER_SYSID_FILEPATH, O_WRONLY | O_TRUNC | O_CREAT,
                  0666);
@@ -1825,10 +1758,12 @@ SetupVL(void)
         * /usr/afs/local/NetRestict)
         */
        char reason[1024];
-       afs_int32 code = parseNetFiles(FS_HostAddrs, NULL, NULL,
-                                      ADDRSPERSITE, reason,
-                                      AFSDIR_SERVER_NETINFO_FILEPATH,
-                                      AFSDIR_SERVER_NETRESTRICT_FILEPATH);
+       afs_int32 code;
+
+       code = afsconf_ParseNetFiles(FS_HostAddrs, NULL, NULL,
+                                    ADDRSPERSITE, reason,
+                                    AFSDIR_SERVER_NETINFO_FILEPATH,
+                                    AFSDIR_SERVER_NETRESTRICT_FILEPATH);
        if (code < 0) {
            ViceLog(0, ("Can't register any valid addresses: %s\n", reason));
            exit(1);
@@ -1847,7 +1782,7 @@ SetupVL(void)
 }
 
 afs_int32
-InitVL(void)
+InitVL(struct afsconf_dir *dir)
 {
     afs_int32 code;
 
@@ -1855,10 +1790,10 @@ InitVL(void)
      * If this fails, it's because something major is wrong, and is not
      * likely to be time dependent.
      */
-    code = vl_Initialize(AFSDIR_SERVER_ETC_DIRPATH);
+    code = vl_Initialize(dir);
     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;
     }
 
@@ -1890,12 +1825,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
@@ -1933,13 +1864,13 @@ main(int argc, char *argv[])
     /* check for the parameter file */
     CheckParms();
 
+    FS_configPath = strdup(AFSDIR_SERVER_ETC_DIRPATH);
+    logFile = strdup(AFSDIR_SERVER_FILELOG_FILEPATH);
+
     if (ParseArgs(argc, argv)) {
-       FlagMsg();
        exit(-1);
     }
-#ifdef AFS_PTHREAD_ENV
-    MUTEX_INIT(&fileproc_glock_mutex, "fileproc", MUTEX_DEFAULT, 0);
-#endif /* AFS_PTHREAD_ENV */
+    opr_mutex_init(&fileproc_glock_mutex);
 
 #ifdef AFS_SGI_VNODE_GLUE
     if (afs_init_kernel_config(-1) < 0) {
@@ -1948,27 +1879,30 @@ main(int argc, char *argv[])
        exit(1);
     }
 #endif
-    confDir = afsconf_Open(AFSDIR_SERVER_ETC_DIRPATH);
+
+    confDir = afsconf_Open(FS_configPath);
     if (!confDir) {
        fprintf(stderr, "Unable to open config directory %s\n",
-               AFSDIR_SERVER_ETC_DIRPATH);
+               FS_configPath);
        exit(-1);
     }
 
+    /* initialize audit user check */
+    osi_audit_set_user_check(confDir, fs_IsLocalRealmMatch);
+
     /* Open FileLog on stdout, stderr, fd 1 and fd2 (for perror), sigh. */
 #ifndef AFS_NT40_ENV
     serverLogSyslogTag = "fileserver";
 #endif
-    OpenLog(AFSDIR_SERVER_FILELOG_FILEPATH);
+    OpenLog(logFile);
     SetupLogSignals();
 
-    if (SawSpare && SawPctSpare) {
-       ViceLog(0, ("Both -spare and -pctspare specified, exiting.\n"));
-       exit(-1);
-    }
     LogCommandLine(argc, argv, "starting", "", "File server", FSLog);
+    if (afsconf_GetLatestKey(confDir, NULL, NULL) == 0) {
+       LogDesWarning();
+    }
 
-#if defined(AFS_PTHREAD_ENV) && !defined(AFS_NT40_ENV)
+#if !defined(AFS_NT40_ENV)
     /* initialize the pthread soft signal handler thread */
     softsig_init();
 #endif
@@ -2037,19 +1971,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
-    osi_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( rx_GetThreadNum );
-#endif
 
     /* initialize libacl routines */
     acl_Initialize(ACL_VERSION);
@@ -2088,7 +2016,10 @@ 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);
@@ -2124,13 +2055,6 @@ main(int argc, char *argv[])
     rx_SetMinProcs(tservice, 2);
     rx_SetMaxProcs(tservice, 4);
 
-    /*
-     * Enable RX hot threads, which allows the listener thread to trade
-     * places with an idle thread and moves the context switch from listener
-     * to worker out of the critical path.
-     */
-    rx_EnableHotThread();
-
     /* Some rx debugging */
     if (rxlog || eventlog) {
        debugFile = afs_fopen("rx_dbg", "w");
@@ -2141,11 +2065,11 @@ main(int argc, char *argv[])
     }
 
     init_sys_error_to_et();    /* Set up error table translation */
-    h_InitHostPackage();       /* set up local cellname and realmname */
+    h_InitHostPackage(host_thread_quota); /* set up local cellname and realmname */
     InitCallBack(numberofcbs);
     ClearXStatValues();
 
-    code = InitVL();
+    code = InitVL(confDir);
     if (code && code != VL_MULTIPADDR) {
        ViceLog(0, ("Fatal error in library initialization, exiting!!\n"));
        exit(1);
@@ -2158,10 +2082,10 @@ main(int argc, char *argv[])
     }
 
     /* allow super users to manage RX statistics */
-    rx_SetRxStatUserOk(fs_rxstat_userok);
+    rx_SetRxStatUserOk(viced_SuperUser);
 
-    CV_INIT(&fsync_cond, "fsync", CV_DEFAULT, 0);
-    MUTEX_INIT(&fsync_glock_mutex, "fsync", MUTEX_DEFAULT, 0);
+    opr_cv_init(&fsync_cond);
+    opr_mutex_init(&fsync_glock_mutex);
 
 #if !defined(AFS_DEMAND_ATTACH_FS)
     /*
@@ -2228,7 +2152,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);
@@ -2257,34 +2181,19 @@ main(int argc, char *argv[])
      */
     ih_UseLargeCache();
 
-#ifdef AFS_PTHREAD_ENV
     ViceLog(5, ("Starting pthreads\n"));
-    osi_Assert(pthread_attr_init(&tattr) == 0);
-    osi_Assert(pthread_attr_setdetachstate(&tattr, PTHREAD_CREATE_DETACHED) == 0);
-
-    osi_Assert(pthread_create
-          (&serverPid, &tattr, FiveMinuteCheckLWP,
-           &fiveminutes) == 0);
-    osi_Assert(pthread_create
-          (&serverPid, &tattr, HostCheckLWP, &fiveminutes) == 0);
-    osi_Assert(pthread_create
-          (&serverPid, &tattr, FsyncCheckLWP, &fiveminutes) == 0);
-#else /* AFS_PTHREAD_ENV */
-    ViceLog(5, ("Starting LWP\n"));
-    osi_Assert(LWP_CreateProcess
-          (FiveMinuteCheckLWP, stack * 1024, LWP_MAX_PRIORITY - 2,
-           (void *)&fiveminutes, "FiveMinuteChecks",
-           &serverPid) == LWP_SUCCESS);
-
-    osi_Assert(LWP_CreateProcess
-          (HostCheckLWP, stack * 1024, LWP_MAX_PRIORITY - 2,
-           (void *)&fiveminutes, "HostCheck", &serverPid) == LWP_SUCCESS);
-    osi_Assert(LWP_CreateProcess
-          (FsyncCheckLWP, stack * 1024, LWP_MAX_PRIORITY - 2,
-           (void *)&fiveminutes, "FsyncCheck", &serverPid) == LWP_SUCCESS);
-#endif /* AFS_PTHREAD_ENV */
-
-    FT_GetTimeOfDay(&tp, 0);
+    opr_Verify(pthread_attr_init(&tattr) == 0);
+    opr_Verify(pthread_attr_setdetachstate(&tattr,
+                                          PTHREAD_CREATE_DETACHED) == 0);
+
+    opr_Verify(pthread_create(&serverPid, &tattr, FiveMinuteCheckLWP,
+                             &fiveminutes) == 0);
+    opr_Verify(pthread_create(&serverPid, &tattr, HostCheckLWP,
+                             &fiveminutes) == 0);
+    opr_Verify(pthread_create(&serverPid, &tattr, FsyncCheckLWP,
+                             &fiveminutes) == 0);
+
+    gettimeofday(&tp, 0);
 
     /*
      * Figure out the FileServer's name and primary address.
@@ -2311,18 +2220,12 @@ main(int argc, char *argv[])
     }
 
     t = tp.tv_sec;
-    strftime(tbuffer, sizeof(tbuffer), "%a %b %d %T %Y",
+    strftime(tbuffer, sizeof(tbuffer), "%a %b %d %H:%M:%S %Y",
             localtime_r(&t, &tm));
     ViceLog(0, ("File Server started %s\n", tbuffer));
-#if FS_STATS_DETAILED
     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 */
-    osi_Assert(LWP_WaitProcess(&parentPid) == LWP_SUCCESS);
-#endif /* AFS_PTHREAD_ENV */
     return 0;
 }