Further rationalise our usage of assert()
[openafs.git] / src / viced / viced.c
1 /*
2  * Copyright 2000, International Business Machines Corporation and others.
3  * All Rights Reserved.
4  *
5  * This software has been released under the terms of the IBM Public
6  * License.  For details, see the LICENSE file in the top-level source
7  * directory or online at http://www.openafs.org/dl/license10.html
8  *
9  * Portions Copyright (c) 2006 Sine Nomine Associates
10  */
11
12 /*  viced.c     - File Server main loop                                  */
13 /*                                                                       */
14 /*  Date: 5/1/85                                                         */
15 /*                                                                       */
16 /*  Function    - This routine has the initialization code for           */
17 /*                FileServer II                                          */
18 /*                                                                       */
19 /* ********************************************************************** */
20
21 #include <afsconfig.h>
22 #include <afs/param.h>
23 #include <afs/stds.h>
24
25 #include <afs/procmgmt.h>
26 #include <roken.h>
27
28 #ifdef AFS_NT40_ENV
29 # include <windows.h>
30 # include <WINNT/afsevent.h>
31 #endif
32
33 #ifdef HAVE_SYS_FILE_H
34 # include <sys/file.h>
35 #endif
36
37 #ifdef HAVE_SYS_RESOURCE_H
38 # include <sys/resource.h>
39 #endif
40
41 #undef SHARED
42
43 #include <afs/opr.h>
44 #include <afs/nfs.h>
45 #include <lwp.h>
46 #include <lock.h>
47 #include <afs/cmd.h>
48 #include <afs/ptclient.h>
49 #include <afs/afsint.h>
50 #include <afs/vldbint.h>
51 #include <afs/errors.h>
52 #include <afs/ihandle.h>
53 #include <afs/vnode.h>
54 #include <afs/volume.h>
55 #include <afs/auth.h>
56 #include <afs/cellconfig.h>
57 #include <afs/acl.h>
58 #include <afs/prs_fs.h>
59 #include <rx/rx.h>
60 #include <rx/rxstat.h>
61 #include <afs/keys.h>
62 #include <afs/afs_args.h>
63 #include <afs/vlserver.h>
64 #include <afs/afsutil.h>
65 #include <afs/fileutil.h>
66 #include <afs/ptuser.h>
67 #include <afs/audit.h>
68 #include <afs/partition.h>
69 #include <afs/dir.h>
70 #ifndef AFS_NT40_ENV
71 # include <afs/softsig.h>
72 #endif
73 #include "viced_prototypes.h"
74 #include "viced.h"
75 #include "host.h"
76 #if defined(AFS_SGI_ENV)
77 # include "sys/schedctl.h"
78 # include "sys/lock.h"
79 #endif
80 #include <rx/rx_globals.h>
81
82 extern int etext;
83
84 void *ShutDown(void *);
85 static void ClearXStatValues(void);
86 static void PrintCounters(void);
87 static void ResetCheckDescriptors(void);
88 static void ResetCheckSignal(void);
89 static void *CheckSignal(void *);
90
91 static afs_int32 Do_VLRegisterRPC(void);
92
93 int eventlog = 0, rxlog = 0;
94 FILE *debugFile;
95
96 pthread_mutex_t fsync_glock_mutex;
97 pthread_cond_t fsync_cond;
98
99 #ifdef AFS_NT40_ENV
100 # define NT_OPEN_MAX    1024    /* This is an arbitrary no. we came up with for
101                                  * now. We hope this will be replaced by a more
102                                  * intelligent estimate later. */
103 #endif
104
105 int SystemId;                   /* ViceID of "Administrators" */
106 int SystemAnyUser;              /* Viceid of "System:AnyUser" */
107 prlist SystemAnyUserCPS;        /* CPS for "system:AnyUser */
108 int AnonymousID = 0;            /* ViceId of "Anonymous" */
109 prlist AnonCPS;                 /* CPS for "Anonymous" */
110
111 struct afsconf_dir *confDir;    /* Configuration dir object */
112
113 int restartMode = RESTART_ORDINARY;
114
115 /*
116  * Home for the performance statistics.
117  */
118 struct afs_PerfStats afs_perfstats;
119
120 extern int LogLevel;
121 extern int Statistics;
122
123 int busyonrst = 1;
124 int timeout = 30;
125 int printBanner = 0;
126 int rxJumbograms = 0;           /* default is to not send and receive jumbograms. */
127 int rxBind = 0;         /* don't bind */
128 int rxkadDisableDotCheck = 0;      /* disable check for dot in principal name */
129 int rxMaxMTU = -1;
130 afs_int32 implicitAdminRights = PRSFS_LOOKUP;   /* The ADMINISTER right is
131                                                  * already implied */
132 afs_int32 readonlyServer = 0;
133
134 int stack = 24;
135 int stackSize = 24000;
136 int fiveminutes = 300;          /* 5 minutes.  Change this for debugging only */
137 int CurrentConnections = 0;
138 int hostaclRefresh = 7200;      /* refresh host clients' acls every 2 hrs */
139 #if defined(AFS_SGI_ENV)
140 int SawLock;
141 #endif
142 time_t StartTime;
143
144 /**
145  * seconds to wait until forcing a panic during ShutDownAndCore(PANIC)
146  * in case we get stuck.
147  */
148 #ifdef AFS_DEMAND_ATTACH_FS
149 static int panic_timeout = 2 * 60;
150 #else
151 static int panic_timeout = 30 * 60;
152 #endif
153
154 int rxpackets = 150;            /* 100 */
155 int nSmallVns = 400;            /* 200 */
156 int large = 400;                /* 200 */
157 int volcache = 400;             /* 400 */
158 int numberofcbs = 60000;        /* 60000 */
159 int lwps = 9;                   /* 6 */
160 int buffs = 90;                 /* 70 */
161 int novbc = 0;                  /* Enable Volume Break calls */
162 int busy_threshold = 600;
163 int abort_threshold = 10;
164 int udpBufSize = 0;             /* UDP buffer size for receive */
165 int sendBufSize = 16384;        /* send buffer size */
166 int saneacls = 0;               /* Sane ACLs Flag */
167 static int unsafe_attach = 0;   /* avoid inUse check on vol attach? */
168 static int offline_timeout = -1; /* -offline-timeout option */
169 static int offline_shutdown_timeout = -1; /* -offline-shutdown-timeout option */
170
171 struct timeval tp;
172
173 pthread_key_t viced_uclient_key;
174
175 /*
176  * FileServer's name and IP address, both network byte order and
177  * host byte order.
178  */
179 #define ADDRSPERSITE 16         /* Same global is in rx/rx_user.c */
180
181 char FS_HostName[128] = "localhost";
182 char *FS_configPath = NULL;
183 afs_uint32 FS_HostAddr_NBO;
184 afs_uint32 FS_HostAddr_HBO;
185 afs_uint32 FS_HostAddrs[ADDRSPERSITE], FS_HostAddr_cnt = 0, FS_registered = 0;
186 /* All addresses in FS_HostAddrs are in NBO */
187 afsUUID FS_HostUUID;
188
189 #ifdef AFS_DEMAND_ATTACH_FS
190 /*
191  * demand attach fs
192  * fileserver mode support
193  *
194  * during fileserver shutdown, we have to track the graceful shutdown of
195  * certain background threads before we are allowed to dump state to
196  * disk
197  */
198
199 # if !defined(PTHREAD_RWLOCK_INITIALIZER) && defined(AFS_DARWIN80_ENV)
200 #  define PTHREAD_RWLOCK_INITIALIZER {0x2DA8B3B4, {0}}
201 # endif
202
203 # ifndef AFS_NT40_ENV
204 struct fs_state fs_state =
205     { FS_MODE_NORMAL,
206       0,
207       0,
208       0,
209       0,
210       { 1,1,1,1 },
211       PTHREAD_COND_INITIALIZER,
212       PTHREAD_RWLOCK_INITIALIZER
213     };
214 # else /* AFS_NT40_ENV */
215 struct fs_state fs_state;
216
217 static int fs_stateInit(void)
218 {
219     fs_state.mode = FS_MODE_NORMAL;
220     fs_state.FiveMinuteLWP_tranquil = 0;
221     fs_state.HostCheckLWP_tranquil = 0;
222     fs_state.FsyncCheckLWP_tranquil = 0;
223     fs_state.salvsync_fatal_error = 0;
224
225     fs_state.options.fs_state_save = 1;
226     fs_state.options.fs_state_restore = 1;
227     fs_state.options.fs_state_verify_before_save = 1;
228     fs_state.options.fs_state_verify_after_restore = 1;
229
230     CV_INIT(&fs_state.worker_done_cv, "worker done", CV_DEFAULT, 0);
231     opr_Verify(pthread_rwlock_init(&fs_state.state_lock, NULL) == 0);
232 }
233 # endif /* AFS_NT40_ENV */
234 #endif /* AFS_DEMAND_ATTACH_FS */
235
236 /*
237  * Home for the performance statistics.
238  */
239
240 /* DEBUG HACK */
241 static void *
242 CheckDescriptors(void *unused)
243 {
244 #ifndef AFS_NT40_ENV
245     struct afs_stat status;
246     int tsize = getdtablesize();
247     int i;
248     for (i = 0; i < tsize; i++) {
249         if (afs_fstat(i, &status) != -1) {
250             printf("%d: dev %x, inode %u, length %u, type/mode %x\n", i,
251                    (unsigned int) status.st_dev,
252                    (unsigned int) status.st_ino,
253                    (unsigned int) status.st_size,
254                    status.st_mode);
255         }
256     }
257     fflush(stdout);
258     ResetCheckDescriptors();
259 #endif
260     return 0;
261 }                               /*CheckDescriptors */
262
263
264 void
265 CheckSignal_Signal(int x)
266 {
267     CheckSignal(NULL);
268 }
269
270 void
271 ShutDown_Signal(int x)
272 {
273     ShutDown(NULL);
274 }
275
276 void
277 CheckDescriptors_Signal(int x)
278 {
279     CheckDescriptors(NULL);
280 }
281
282 /* check whether caller is authorized to perform admin operations */
283 int
284 viced_SuperUser(struct rx_call *call)
285 {
286     return afsconf_SuperUser(confDir, call, NULL);
287 }
288
289 /**
290  * Return true if this name is a member of the local realm.
291  */
292 int
293 fs_IsLocalRealmMatch(void *rock, char *name, char *inst, char *cell)
294 {
295     struct afsconf_dir *dir = (struct afsconf_dir *)rock;
296     afs_int32 islocal = 0;      /* default to no */
297     int code;
298
299     code = afsconf_IsLocalRealmMatch(dir, &islocal, name, inst, cell);
300     if (code) {
301         ViceLog(0,
302                 ("Failed local realm check; code=%d, name=%s, inst=%s, cell=%s\n",
303                  code, name, inst, cell));
304     }
305     return islocal;
306 }
307
308 static void
309 ResetCheckSignal(void)
310 {
311     int signo;
312
313 #if defined(AFS_HPUX_ENV)
314     signo = SIGPOLL;
315 #elif defined(AFS_NT40_ENV)
316     signo = SIGUSR2;
317 #else
318     signo = SIGXCPU;
319 #endif
320
321 #if !defined(AFS_NT40_ENV)
322     softsig_signal(signo, CheckSignal_Signal);
323 #else
324     signal(signo, CheckSignal_Signal);
325 #endif
326 }
327
328 static void
329 ResetCheckDescriptors(void)
330 {
331 #ifndef AFS_NT40_ENV
332     softsig_signal(SIGTERM, CheckDescriptors_Signal);
333 #endif
334 }
335
336 #ifndef AFS_NT40_ENV
337 int
338 viced_syscall(afs_uint32 a3, afs_uint32 a4, void *a5)
339 {
340     afs_uint32 rcode;
341 # ifndef AFS_LINUX20_ENV
342     void (*old) (int);
343
344     old = (void (*)(int))signal(SIGSYS, SIG_IGN);
345 # endif
346     rcode = syscall(AFS_SYSCALL, 28 /* AFSCALL_CALL */ , a3, a4, a5);
347 # ifndef AFS_LINUX20_ENV
348     signal(SIGSYS, old);
349 # endif
350
351     return rcode;
352 }
353 #endif
354
355 #if !defined(AFS_NT40_ENV)
356 # include "AFS_component_version_number.c"
357 #endif /* !AFS_NT40_ENV */
358
359 #define MAXADMINNAME 64
360 char adminName[MAXADMINNAME];
361
362 static void
363 CheckAdminName(void)
364 {
365     int fd = 0;
366     struct afs_stat status;
367
368     if ((afs_stat("/AdminName", &status)) ||    /* if file does not exist */
369         (status.st_size <= 0) ||        /* or it is too short */
370         (status.st_size >= (MAXADMINNAME)) ||   /* or it is too long */
371         !(fd = afs_open("/AdminName", O_RDONLY, 0))) {  /* or the open fails */
372         strcpy(adminName, "System:Administrators");     /* use the default name */
373     } else {
374         (void)read(fd, adminName, status.st_size);      /* use name from the file */
375     }
376     if (fd)
377         close(fd);              /* close fd if it was opened */
378
379 }                               /*CheckAdminName */
380
381
382 static void
383 setThreadId(char *s)
384 {
385 #if !defined(AFS_NT40_ENV)
386     int threadId;
387
388     /* set our 'thread-id' so that the host hold table works */
389     threadId = rx_SetThreadNum();
390     afs_pthread_setname_self(s);
391     ViceLog(0, ("Set thread id 0x%x for '%s'\n", threadId, s));
392 #endif
393 }
394
395 /* This LWP does things roughly every 5 minutes */
396 static void *
397 FiveMinuteCheckLWP(void *unused)
398 {
399     static int msg = 0;
400     char tbuffer[32];
401
402     ViceLog(1, ("Starting five minute check process\n"));
403     setThreadId("FiveMinuteCheckLWP");
404
405 #ifdef AFS_DEMAND_ATTACH_FS
406     FS_STATE_WRLOCK;
407     while (fs_state.mode == FS_MODE_NORMAL) {
408         fs_state.FiveMinuteLWP_tranquil = 1;
409         FS_STATE_UNLOCK;
410 #else
411     while (1) {
412 #endif
413
414         sleep(fiveminutes);
415
416 #ifdef AFS_DEMAND_ATTACH_FS
417         FS_STATE_WRLOCK;
418         if (fs_state.mode != FS_MODE_NORMAL) {
419             break;
420         }
421         fs_state.FiveMinuteLWP_tranquil = 0;
422         FS_STATE_UNLOCK;
423 #endif
424
425         /* close the log so it can be removed */
426         ReOpenLog(AFSDIR_SERVER_FILELOG_FILEPATH);      /* don't trunc, just append */
427         ViceLog(2, ("Cleaning up timed out callbacks\n"));
428         if (CleanupTimedOutCallBacks())
429             ViceLog(5, ("Timed out callbacks deleted\n"));
430         ViceLog(2, ("Set disk usage statistics\n"));
431         VSetDiskUsage();
432         if (FS_registered == 1)
433             Do_VLRegisterRPC();
434         /* Force wakeup in case we missed something; pthreads does timedwait */
435         if (printBanner && (++msg & 1)) {       /* Every 10 minutes */
436             time_t now = time(NULL);
437             struct tm tm;
438             strftime(tbuffer, sizeof(tbuffer), "%a %b %d %H:%M:%S %Y",
439                      localtime_r(&now, &tm));
440             ViceLog(2,
441                     ("File server is running at %s\n", tbuffer));
442         }
443 #ifdef AFS_DEMAND_ATTACH_FS
444         FS_STATE_WRLOCK;
445 #endif
446     }
447 #ifdef AFS_DEMAND_ATTACH_FS
448     fs_state.FiveMinuteLWP_tranquil = 1;
449     FS_LOCK;
450     CV_BROADCAST(&fs_state.worker_done_cv);
451     FS_UNLOCK;
452     FS_STATE_UNLOCK;
453 #endif
454     return NULL;
455 }                               /*FiveMinuteCheckLWP */
456
457
458 /* This LWP does host checks every 5 minutes:  it should not be used for
459  * other 5 minute activities because it may be delayed by timeouts when
460  * it probes the workstations
461  */
462
463 static void *
464 HostCheckLWP(void *unused)
465 {
466     ViceLog(1, ("Starting Host check process\n"));
467     setThreadId("HostCheckLWP");
468 #ifdef AFS_DEMAND_ATTACH_FS
469     FS_STATE_WRLOCK;
470     while (fs_state.mode == FS_MODE_NORMAL) {
471         fs_state.HostCheckLWP_tranquil = 1;
472         FS_STATE_UNLOCK;
473 #else
474     while(1) {
475 #endif
476
477         sleep(fiveminutes);
478
479 #ifdef AFS_DEMAND_ATTACH_FS
480         FS_STATE_WRLOCK;
481         if (fs_state.mode != FS_MODE_NORMAL) {
482             break;
483         }
484         fs_state.HostCheckLWP_tranquil = 0;
485         FS_STATE_UNLOCK;
486 #endif
487
488         ViceLog(2, ("Checking for dead venii & clients\n"));
489         h_CheckHosts();
490
491 #ifdef AFS_DEMAND_ATTACH_FS
492         FS_STATE_WRLOCK;
493 #endif
494     }
495 #ifdef AFS_DEMAND_ATTACH_FS
496     fs_state.HostCheckLWP_tranquil = 1;
497     FS_LOCK;
498     CV_BROADCAST(&fs_state.worker_done_cv);
499     FS_UNLOCK;
500     FS_STATE_UNLOCK;
501 #endif
502     return NULL;
503 }                               /*HostCheckLWP */
504
505 /* This LWP does fsync checks every 5 minutes:  it should not be used for
506  * other 5 minute activities because it may be delayed by timeouts when
507  * it probes the workstations
508  */
509 static void *
510 FsyncCheckLWP(void *unused)
511 {
512     afs_int32 code;
513     struct timespec fsync_next;
514     ViceLog(1, ("Starting fsync check process\n"));
515
516     setThreadId("FsyncCheckLWP");
517
518 #ifdef AFS_DEMAND_ATTACH_FS
519     FS_STATE_WRLOCK;
520     while (fs_state.mode == FS_MODE_NORMAL) {
521         fs_state.FsyncCheckLWP_tranquil = 1;
522         FS_STATE_UNLOCK;
523 #else
524     while(1) {
525 #endif
526         FSYNC_LOCK;
527         /* rounding is fine */
528         fsync_next.tv_nsec = 0;
529         fsync_next.tv_sec = time(0) + fiveminutes;
530
531         code = CV_TIMEDWAIT(&fsync_cond, &fsync_glock_mutex,
532                             &fsync_next);
533         if (code != 0 && code != ETIMEDOUT)
534             ViceLog(0, ("pthread_cond_timedwait returned %d\n", code));
535         FSYNC_UNLOCK;
536
537 #ifdef AFS_DEMAND_ATTACH_FS
538         FS_STATE_WRLOCK;
539         if (fs_state.mode != FS_MODE_NORMAL) {
540             break;
541         }
542         fs_state.FsyncCheckLWP_tranquil = 0;
543         FS_STATE_UNLOCK;
544 #endif /* AFS_DEMAND_ATTACH_FS */
545
546         ViceLog(2, ("Checking for fsync events\n"));
547         do {
548             code = BreakLaterCallBacks();
549         } while (code != 0);
550 #ifdef AFS_DEMAND_ATTACH_FS
551         FS_STATE_WRLOCK;
552 #endif
553     }
554 #ifdef AFS_DEMAND_ATTACH_FS
555     fs_state.FsyncCheckLWP_tranquil = 1;
556     FS_LOCK;
557     CV_BROADCAST(&fs_state.worker_done_cv);
558     FS_UNLOCK;
559     FS_STATE_UNLOCK;
560 #endif /* AFS_DEMAND_ATTACH_FS */
561     return NULL;
562 }
563
564 /*------------------------------------------------------------------------
565  * PRIVATE ClearXStatValues
566  *
567  * Description:
568  *      Initialize all of the values collected via the xstat
569  *      interface.
570  *
571  * Arguments:
572  *      None.
573  *
574  * Returns:
575  *      Nothing.
576  *
577  * Environment:
578  *      Must be called during File Server initialization.
579  *
580  * Side Effects:
581  *      As advertised.
582  *------------------------------------------------------------------------*/
583
584 static void
585 ClearXStatValues(void)
586 {                               /*ClearXStatValues */
587
588     struct fs_stats_opTimingData *opTimeP;      /*Ptr to timing struct */
589     struct fs_stats_xferData *opXferP;  /*Ptr to xfer struct */
590     int i;                      /*Loop counter */
591
592     /*
593      * Zero all xstat-related structures.
594      */
595     memset((&afs_perfstats), 0, sizeof(struct afs_PerfStats));
596     memset((&afs_FullPerfStats), 0,
597            sizeof(struct fs_stats_FullPerfStats));
598
599     /*
600      * That's not enough.  We have to set reasonable minima for
601      * time and xfer values in the detailed stats.
602      */
603     opTimeP = &(afs_FullPerfStats.det.rpcOpTimes[0]);
604     for (i = 0; i < FS_STATS_NUM_RPC_OPS; i++, opTimeP++)
605         opTimeP->minTime.tv_sec = 999999;
606
607     opXferP = &(afs_FullPerfStats.det.xferOpTimes[0]);
608     for (i = 0; i < FS_STATS_NUM_XFER_OPS; i++, opXferP++) {
609         opXferP->minTime.tv_sec = 999999;
610         opXferP->minBytes = 999999999;
611     }
612
613     /*
614      * There's more.  We have to set our unique system identifier, as
615      * declared in param.h.  If such a thing is not defined, we bitch
616      * and declare ourselves to be an unknown system type.
617      */
618 # ifdef SYS_NAME_ID
619     afs_perfstats.sysname_ID = SYS_NAME_ID;
620 # else
621 #  ifndef AFS_NT40_ENV
622     ViceLog(0, ("Sys name ID constant not defined in param.h!!\n"));
623     ViceLog(0, ("[Choosing ``undefined'' sys name ID.\n"));
624 #  endif
625     afs_perfstats.sysname_ID = SYS_NAME_ID_UNDEFINED;
626 # endif /* SYS_NAME_ID */
627
628 }                               /*ClearXStatValues */
629
630 int CopyOnWrite_calls = 0, CopyOnWrite_off0 = 0, CopyOnWrite_size0 = 0;
631 afs_fsize_t CopyOnWrite_maxsize = 0;
632
633 static void
634 PrintCounters(void)
635 {
636     int dirbuff, dircall, dirio;
637     struct timeval tpl;
638     int workstations, activeworkstations, delworkstations;
639     int processSize = 0;
640     char tbuffer[32];
641     struct tm tm;
642 #ifdef AFS_DEMAND_ATTACH_FS
643     int stats_flags = 0;
644 #endif
645
646     gettimeofday(&tpl, 0);
647     Statistics = 1;
648     strftime(tbuffer, sizeof(tbuffer), "%a %b %d %H:%M:%S %Y",
649              localtime_r(&StartTime, &tm));
650     ViceLog(0, ("Vice was last started at %s\n", tbuffer));
651
652 #ifdef AFS_DEMAND_ATTACH_FS
653     if (LogLevel >= 125) {
654         stats_flags = VOL_STATS_PER_CHAIN2;
655     } else if (LogLevel >= 25) {
656         stats_flags = VOL_STATS_PER_CHAIN;
657     }
658     VPrintExtendedCacheStats(stats_flags);
659 #endif
660     VPrintCacheStats();
661     VPrintDiskStats();
662     DStat(&dirbuff, &dircall, &dirio);
663     ViceLog(0,
664             ("With %d directory buffers; %d reads resulted in %d read I/Os\n",
665              dirbuff, dircall, dirio));
666     rx_PrintStats(stderr);
667     audit_PrintStats(stderr);
668     h_PrintStats();
669     PrintCallBackStats();
670 #ifdef AFS_NT40_ENV
671     processSize = -1;           /* TODO: */
672 #else
673     processSize = (int)((long)sbrk(0) >> 10);
674 #endif
675     ViceLog(0,
676             ("There are %d connections, process size %d\n",
677              CurrentConnections, processSize));
678     h_GetWorkStats(&workstations, &activeworkstations, &delworkstations,
679                    tpl.tv_sec - 15 * 60);
680     ViceLog(0,
681             ("There are %d workstations, %d are active (req in < 15 mins), %d marked \"down\"\n",
682              workstations, activeworkstations, delworkstations));
683     ViceLog(0, ("CopyOnWrite: calls %d off0 %d size0 %d maxsize 0x%llx\n",
684                 CopyOnWrite_calls, CopyOnWrite_off0, CopyOnWrite_size0, CopyOnWrite_maxsize));
685
686     Statistics = 0;
687
688 }                               /*PrintCounters */
689
690
691
692 static void *
693 CheckSignal(void *unused)
694 {
695     if (FS_registered > 0) {
696         /*
697          * We have proper ip addresses; tell the vlserver what we got; the following
698          * routine will do the proper reporting for us
699          */
700         Do_VLRegisterRPC();
701     }
702     h_DumpHosts();
703     h_PrintClients();
704     DumpCallBackState();
705     PrintCounters();
706     ResetCheckSignal();
707     return 0;
708 }                               /*CheckSignal */
709
710 static void *
711 ShutdownWatchdogLWP(void *unused)
712 {
713     afs_pthread_setname_self("ShutdownWatchdog");
714     sleep(panic_timeout);
715     ViceLogThenPanic(0, ("ShutdownWatchdogLWP: Failed to shutdown and panic "
716                          "within %d seconds; forcing panic\n",
717                          panic_timeout));
718     return NULL;
719 }
720
721 void
722 ShutDownAndCore(int dopanic)
723 {
724     time_t now = time(NULL);
725     struct tm tm;
726     char tbuffer[32];
727
728     if (dopanic) {
729         pthread_t watchdogPid;
730         pthread_attr_t tattr;
731         opr_Verify(pthread_attr_init(&tattr) == 0);
732         opr_Verify(pthread_create(&watchdogPid, &tattr,
733                                   ShutdownWatchdogLWP, NULL) == 0);
734     }
735
736     /* do not allows new reqests to be served from now on, all new requests
737      * are returned with an error code of RX_RESTARTING ( transient failure ) */
738     rx_SetRxTranquil();         /* dhruba */
739
740     VSetTranquil();
741
742 #ifdef AFS_DEMAND_ATTACH_FS
743     FS_STATE_WRLOCK;
744     if (fs_state.mode == FS_MODE_SHUTDOWN) {
745         /* it is possible for at least fs_stateSave() (called below) to call
746          * ShutDownAndCore if there's host list corruption; prevent
747          * deinitializing some stuff twice */
748         ViceLog(0, ("ShutDownAndCore called during shutdown? Skipping volume "
749                     "and host package shutdown\n"));
750         FS_STATE_UNLOCK;
751         goto done_vol_host;
752     }
753     fs_state.mode = FS_MODE_SHUTDOWN;
754     FS_STATE_UNLOCK;
755 #endif
756
757     strftime(tbuffer, sizeof(tbuffer), "%a %b %d %H:%M:%S %Y",
758              localtime_r(&now, &tm));
759     ViceLog(0, ("Shutting down file server at %s\n", tbuffer));
760     if (dopanic)
761         ViceLog(0, ("ABNORMAL SHUTDOWN, see core file.\n"));
762     DFlush();
763     if (!dopanic)
764         PrintCounters();
765
766     /* shut down volume package */
767     VShutdown();
768
769 #ifdef AFS_DEMAND_ATTACH_FS
770     if (fs_state.options.fs_state_save) {
771         /*
772          * demand attach fs
773          * save fileserver state to disk */
774
775         if (dopanic) {
776             ViceLog(0, ("Not saving fileserver state; abnormal shutdown\n"));
777
778         } else {
779             /* make sure background threads have finished all of their asynchronous
780              * work on host and callback structures */
781             FS_STATE_RDLOCK;
782             while (!fs_state.FiveMinuteLWP_tranquil ||
783                    !fs_state.HostCheckLWP_tranquil ||
784                    !fs_state.FsyncCheckLWP_tranquil) {
785                 FS_LOCK;
786                 FS_STATE_UNLOCK;
787                 ViceLog(0, ("waiting for background host/callback threads to quiesce before saving fileserver state...\n"));
788                 CV_WAIT(&fs_state.worker_done_cv, &fileproc_glock_mutex);
789                 FS_UNLOCK;
790                 FS_STATE_RDLOCK;
791             }
792             FS_STATE_UNLOCK;
793
794             /* ok. it should now be fairly safe. let's do the state dump */
795             fs_stateSave();
796         }
797     }
798  done_vol_host:
799
800 #endif /* AFS_DEMAND_ATTACH_FS */
801
802     if (debugFile) {
803         rx_PrintStats(debugFile);
804         fflush(debugFile);
805     }
806     now = time(0);
807     strftime(tbuffer, sizeof(tbuffer), "%a %b %d %H:%M:%S %Y",
808              localtime_r(&now, &tm));
809     if (dopanic) {
810       ViceLog(0, ("File server has terminated abnormally at %s\n", tbuffer));
811     } else {
812       ViceLog(0, ("File server has terminated normally at %s\n", tbuffer));
813     }
814
815     if (dopanic) /* XXX pass in file and line? */
816         osi_Panic("Panic requested\n");
817
818     exit(0);
819 }
820
821 void *
822 ShutDown(void *unused)
823 {                               /* backward compatibility */
824     ShutDownAndCore(DONTPANIC);
825     return 0;
826 }
827
828 static afs_int32
829 ParseRights(char *arights)
830 {
831     afs_int32 mode = 0;
832     int i, len;
833     char tc;
834
835     if (!arights || !strcmp(arights, "")) {
836         printf("Missing list of mode bits on -implicit option\n");
837         return -1;
838     }
839     if (!strcmp(arights, "none"))
840         mode = 0;
841     else if (!strcmp(arights, "read"))
842         mode = PRSFS_READ | PRSFS_LOOKUP;
843     else if (!strcmp(arights, "write"))
844         mode =
845             PRSFS_READ | PRSFS_LOOKUP | PRSFS_INSERT | PRSFS_DELETE |
846             PRSFS_WRITE | PRSFS_LOCK;
847     else if (!strcmp(arights, "all"))
848         mode =
849             PRSFS_READ | PRSFS_LOOKUP | PRSFS_INSERT | PRSFS_DELETE |
850             PRSFS_WRITE | PRSFS_LOCK | PRSFS_ADMINISTER;
851     else {
852         len = strlen(arights);
853         for (i = 0; i < len; i++) {
854             tc = *arights++;
855             if (tc == 'r')
856                 mode |= PRSFS_READ;
857             else if (tc == 'l')
858                 mode |= PRSFS_LOOKUP;
859             else if (tc == 'i')
860                 mode |= PRSFS_INSERT;
861             else if (tc == 'd')
862                 mode |= PRSFS_DELETE;
863             else if (tc == 'w')
864                 mode |= PRSFS_WRITE;
865             else if (tc == 'k')
866                 mode |= PRSFS_LOCK;
867             else if (tc == 'a')
868                 mode |= PRSFS_ADMINISTER;
869             else if (tc == 'A')
870                 mode |= PRSFS_USR0;
871             else if (tc == 'B')
872                 mode |= PRSFS_USR1;
873             else if (tc == 'C')
874                 mode |= PRSFS_USR2;
875             else if (tc == 'D')
876                 mode |= PRSFS_USR3;
877             else if (tc == 'E')
878                 mode |= PRSFS_USR4;
879             else if (tc == 'F')
880                 mode |= PRSFS_USR5;
881             else if (tc == 'G')
882                 mode |= PRSFS_USR6;
883             else if (tc == 'H')
884                 mode |= PRSFS_USR7;
885             else {
886                 printf("Illegal -implicit rights character '%c'.\n", tc);
887                 return -1;
888             }
889         }
890     }
891     return mode;
892 }
893
894 /*
895  * Limit MAX_FILESERVER_THREAD by the system limit on the number of
896  * pthreads (sysconf(_SC_THREAD_THREADS_MAX)), if applicable and
897  * available.
898  *
899  * AIX:         sysconf() limit is real
900  * HP-UX:       sysconf() limit is real
901  * IRIX:        sysconf() limit is apparently NOT real -- too small
902  * DUX:         sysconf() limit is apparently NOT real -- too big
903  * Linux:       sysconf() limit is apparently NOT real -- too big
904  * Solaris:     no sysconf() limit
905  */
906 static int
907 max_fileserver_thread(void)
908 {
909 #if defined(AFS_AIX_ENV) || defined(AFS_HPUX_ENV)
910     long ans;
911
912     ans = sysconf(_SC_THREAD_THREADS_MAX);
913     if (0 < ans && ans < MAX_FILESERVER_THREAD)
914         return (int)ans;
915 #endif
916     return MAX_FILESERVER_THREAD;
917 }
918
919 /* from ihandle.c */
920 extern ih_init_params vol_io_params;
921
922 enum optionsList {
923     OPT_large,
924     OPT_small,
925     OPT_banner,
926     OPT_implicit,
927     OPT_lock,
928     OPT_readonly,
929     OPT_saneacls,
930     OPT_buffers,
931     OPT_callbacks,
932     OPT_vcsize,
933     OPT_lvnodes,
934     OPT_svnodes,
935     OPT_sendsize,
936     OPT_minspare,
937     OPT_spare,
938     OPT_pctspare,
939     OPT_hostcpsrefresh,
940     OPT_vattachthreads,
941     OPT_abortthreshold,
942     OPT_busyat,
943     OPT_nobusy,
944     OPT_offline_timeout,
945     OPT_offline_shutdown_timeout,
946     OPT_vhandle_setaside,
947     OPT_vhandle_max_cachesize,
948     OPT_vhandle_initial_cachesize,
949     OPT_fs_state_dont_save,
950     OPT_fs_state_dont_restore,
951     OPT_fs_state_verify,
952     OPT_vhashsize,
953     OPT_vlrudisable,
954     OPT_vlruthresh,
955     OPT_vlruinterval,
956     OPT_vlrumax,
957     OPT_unsafe_nosalvage,
958     OPT_stack,
959     OPT_cbwait,
960     OPT_novbc,
961     OPT_auditlog,
962     OPT_auditiface,
963     OPT_config,
964     OPT_debug,
965     OPT_logfile,
966     OPT_mrafslogs,
967     OPT_threads,
968     OPT_syslog,
969     OPT_peer,
970     OPT_process,
971     OPT_nojumbo,
972     OPT_jumbo,
973     OPT_rxbind,
974     OPT_rxdbg,
975     OPT_rxdbge,
976     OPT_rxpck,
977     OPT_rxmaxmtu,
978     OPT_udpsize,
979     OPT_dotted,
980     OPT_realm
981 };
982
983 static int
984 ParseArgs(int argc, char *argv[])
985 {
986     int code;
987     int optval;
988     char *optstring = NULL;
989     struct cmd_item *optlist;
990     struct cmd_syndesc *opts;
991
992     int lwps_max;
993     char *auditFileName = NULL;
994
995 #if defined(AFS_AIX32_ENV)
996     extern int aixlow_water;
997 #endif
998
999     opts = cmd_CreateSyntax(NULL, NULL, NULL, NULL);
1000
1001     /* fileserver options */
1002     cmd_AddParmAtOffset(opts, OPT_large, "-L", CMD_FLAG,
1003                         CMD_OPTIONAL, "defaults for a 'large' server");
1004     cmd_AddParmAtOffset(opts, OPT_small, "-S", CMD_FLAG,
1005                         CMD_OPTIONAL, "defaults for a 'small' server");
1006
1007     cmd_AddParmAtOffset(opts, OPT_banner, "-banner", CMD_FLAG,
1008                         CMD_OPTIONAL, "print regular banners to log");
1009     cmd_AddParmAtOffset(opts, OPT_implicit, "-implicit", CMD_SINGLE,
1010                         CMD_OPTIONAL, "implicit admin access bits");
1011
1012 #if defined(AFS_SGI_ENV)
1013     cmd_AddParmAtOffset(opts, OPT_lock, "-lock", CMD_FLAG,
1014                         CMD_OPTIONAL, "lock filserver binary in memory");
1015 #endif
1016     cmd_AddParmAtOffset(opts, OPT_readonly, "-readonly", CMD_FLAG,
1017                         CMD_OPTIONAL, "be a readonly fileserver");
1018     cmd_AddParmAtOffset(opts, OPT_saneacls, "-saneacls", CMD_FLAG,
1019                         CMD_OPTIONAL, "set the saneacls capability bit");
1020
1021     cmd_AddParmAtOffset(opts, OPT_buffers, "-b", CMD_SINGLE,
1022                         CMD_OPTIONAL, "buffers");
1023     cmd_AddParmAtOffset(opts, OPT_callbacks, "-cb", CMD_SINGLE,
1024                         CMD_OPTIONAL, "number of callbacks");
1025     cmd_AddParmAtOffset(opts, OPT_vcsize, "-vc", CMD_SINGLE,
1026                         CMD_OPTIONAL, "volume cachesize");
1027     cmd_AddParmAtOffset(opts, OPT_lvnodes, "-l", CMD_SINGLE,
1028                         CMD_OPTIONAL, "large vnodes");
1029     cmd_AddParmAtOffset(opts, OPT_svnodes, "-s", CMD_SINGLE,
1030                         CMD_OPTIONAL, "small vnodes");
1031     cmd_AddParmAtOffset(opts, OPT_sendsize, "-sendsize", CMD_SINGLE,
1032                         CMD_OPTIONAL, "size of send buffer in bytes");
1033
1034 #if defined(AFS_AIX32_ENV)
1035     cmd_AddParmAtOffset(opts, OPT_minspare, "-m", CMD_SINGLE,
1036                         CMD_OPTIONAL, "minimum percentage spare in partition");
1037 #endif
1038
1039     cmd_AddParmAtOffset(opts, OPT_spare, "-spare", CMD_SINGLE,
1040                         CMD_OPTIONAL, "kB overage on volume quota");
1041     cmd_AddParmAtOffset(opts, OPT_pctspare, "pctspare", CMD_SINGLE,
1042                         CMD_OPTIONAL, "percentage overage on volume quota");
1043
1044     cmd_AddParmAtOffset(opts, OPT_hostcpsrefresh, "-hr", CMD_SINGLE,
1045                         CMD_OPTIONAL, "hours between host CPS refreshes");
1046
1047     cmd_AddParmAtOffset(opts, OPT_vattachthreads, "-vattachpar", CMD_SINGLE,
1048                         CMD_OPTIONAL, "# of volume attachment threads");
1049
1050     cmd_AddParmAtOffset(opts, OPT_abortthreshold, "-abortthreshold",
1051                         CMD_SINGLE, CMD_OPTIONAL,
1052                         "abort threshold");
1053     cmd_AddParmAtOffset(opts, OPT_busyat, "-busyat", CMD_SINGLE, CMD_OPTIONAL,
1054                         "# of queued entries after which server is busy");
1055     cmd_AddParmAtOffset(opts, OPT_nobusy, "-nobusy", CMD_FLAG, CMD_OPTIONAL,
1056                         "send VRESTARTING while restarting the server");
1057
1058     cmd_AddParmAtOffset(opts, OPT_offline_timeout, "-offline-timeout",
1059                         CMD_SINGLE, CMD_OPTIONAL,
1060                         "timeout for offlining volumes");
1061     cmd_AddParmAtOffset(opts, OPT_offline_shutdown_timeout,
1062                         "-offline-shutdown-timeout", CMD_SINGLE, CMD_OPTIONAL,
1063                         "timeout offlining volumes during shutdown");
1064
1065     cmd_AddParmAtOffset(opts, OPT_vhandle_setaside, "-vhandle-setaside",
1066                         CMD_SINGLE, CMD_OPTIONAL,
1067                         "# fds reserved for non-cache IO");
1068     cmd_AddParmAtOffset(opts, OPT_vhandle_max_cachesize, 
1069                         "-vhandle-max-cachesize", CMD_SINGLE, CMD_OPTIONAL,
1070                         "max open files");
1071     cmd_AddParmAtOffset(opts, OPT_vhandle_initial_cachesize,
1072                         "-vhandle-initial-cachesize", CMD_SINGLE,
1073                         CMD_OPTIONAL, "# fds reserved for cache IO");
1074
1075 #ifdef AFS_DEMAND_ATTACH_FS
1076     /* dafs options */
1077     cmd_AddParmAtOffset(opts, OPT_fs_state_dont_save,
1078                         "-fs-state-dont-save", CMD_FLAG, CMD_OPTIONAL,
1079                         "disable state save during shutdown");
1080     cmd_AddParmAtOffset(opts, OPT_fs_state_dont_restore,
1081                         "-fs-state-dont-restore", CMD_FLAG, CMD_OPTIONAL,
1082                         "disable state restore during startup");
1083     cmd_AddParmAtOffset(opts, OPT_fs_state_verify, "-fs-state-verify",
1084                         CMD_SINGLE, CMD_OPTIONAL, "none|save|restore|both");
1085     cmd_AddParmAtOffset(opts, OPT_vhashsize, "-vhashsize",
1086                         CMD_SINGLE, CMD_OPTIONAL,
1087                         "log(2) of # of volume hash buckets");
1088     cmd_AddParmAtOffset(opts, OPT_vlrudisable, "-vlrudisable",
1089                         CMD_FLAG, CMD_OPTIONAL, "disable VLRU functionality");
1090     cmd_AddParmAtOffset(opts, OPT_vlruthresh, "-vlruthresh",
1091                         CMD_FLAG, CMD_OPTIONAL,
1092                         "mins before unused vols become eligible for detach");
1093     cmd_AddParmAtOffset(opts, OPT_vlruinterval, "-vlruinterval",
1094                         CMD_FLAG, CMD_OPTIONAL, "secs between VLRU scans");
1095     cmd_AddParmAtOffset(opts, OPT_vlrumax, "-vlrumax", CMD_FLAG, CMD_OPTIONAL,
1096                         "max volumes to detach in one scan");
1097     cmd_AddParmAtOffset(opts, OPT_unsafe_nosalvage, "-unsafe-nosalvage",
1098                         CMD_FLAG, CMD_OPTIONAL,
1099                         "bybass safety checks on volume attach");
1100 #endif
1101
1102     /* unrecommend options - should perhaps be CMD_HIDE */
1103     cmd_AddParmAtOffset(opts, OPT_stack, "-k", CMD_SINGLE, CMD_OPTIONAL,
1104                         "stack size");
1105     cmd_AddParmAtOffset(opts, OPT_cbwait, "-w", CMD_SINGLE, CMD_OPTIONAL,
1106                         "callback wait interval");
1107     cmd_AddParmAtOffset(opts, OPT_novbc, "-novbc", CMD_SINGLE, CMD_FLAG,
1108                         "disable callback breaks on reattach");
1109
1110     /* general options */
1111     cmd_AddParmAtOffset(opts, OPT_auditlog, "-auditlog", CMD_SINGLE,
1112                         CMD_OPTIONAL, "location of audit log");
1113     cmd_AddParmAtOffset(opts, OPT_auditiface, "-audit-interface", CMD_SINGLE,
1114                         CMD_OPTIONAL, "interface to use for audit logging");
1115     cmd_AddParmAtOffset(opts, OPT_config, "-config", CMD_SINGLE, CMD_OPTIONAL,
1116                         "configuration location");
1117     cmd_AddParmAtOffset(opts, OPT_debug, "-d", CMD_SINGLE, CMD_OPTIONAL,
1118                         "debug level");
1119     cmd_AddParmAtOffset(opts, OPT_logfile, "-logfile", CMD_SINGLE,
1120                         CMD_OPTIONAL, "location of logfile");
1121     cmd_AddParmAtOffset(opts, OPT_mrafslogs, "-mrafslogs", CMD_FLAG,
1122                         CMD_OPTIONAL, "enable MRAFS style logging");
1123     cmd_AddParmAtOffset(opts, OPT_threads, "-p", CMD_SINGLE, CMD_OPTIONAL,
1124                         "number of threads");
1125 #if !defined(AFS_NT40_ENV)
1126     cmd_AddParmAtOffset(opts, OPT_syslog, "-syslog", CMD_SINGLE_OR_FLAG,
1127                         CMD_OPTIONAL, "log to syslog");
1128 #endif
1129
1130     /* rx options */
1131     cmd_AddParmAtOffset(opts, OPT_peer, "-enable_peer_stats", CMD_FLAG,
1132                         CMD_OPTIONAL, "enable RX transport statistics");
1133     cmd_AddParmAtOffset(opts, OPT_process, "-enable_process_stats", CMD_FLAG,
1134                         CMD_OPTIONAL, "enable RX RPC statistics");
1135     cmd_AddParmAtOffset(opts, OPT_nojumbo, "-nojumbo", CMD_FLAG,
1136                         CMD_OPTIONAL, "disable jumbograms");
1137     cmd_AddParmAtOffset(opts, OPT_jumbo, "-jumbo", CMD_FLAG, CMD_OPTIONAL,
1138                         "enable jumbograms");
1139     cmd_AddParmAtOffset(opts, OPT_rxbind, "-rxbind", CMD_FLAG, CMD_OPTIONAL,
1140                         "bind only to the primary interface");
1141     cmd_AddParmAtOffset(opts, OPT_rxdbg, "-rxdbg", CMD_FLAG, CMD_OPTIONAL,
1142                         "enable rx debugging");
1143     cmd_AddParmAtOffset(opts, OPT_rxdbge, "-rxdbge", CMD_FLAG, CMD_OPTIONAL,
1144                         "enable rx event debugging");
1145     cmd_AddParmAtOffset(opts, OPT_rxpck, "-rxpck", CMD_SINGLE, CMD_OPTIONAL,
1146                         "# of extra rx packets");
1147     cmd_AddParmAtOffset(opts, OPT_rxmaxmtu, "-rxmaxmtu", CMD_SINGLE,
1148                         CMD_OPTIONAL, "maximum MTU for RX");
1149     cmd_AddParmAtOffset(opts, OPT_udpsize, "-udpsize", CMD_SINGLE,
1150                         CMD_OPTIONAL, "size of socket buffer in bytes");
1151
1152     /* rxkad options */
1153     cmd_AddParmAtOffset(opts, OPT_dotted, "-allow-dotted-principals",
1154                         CMD_FLAG, CMD_OPTIONAL,
1155                         "permit Kerberos 5 principals with dots");
1156     cmd_AddParmAtOffset(opts, OPT_realm, "-realm",
1157                         CMD_LIST, CMD_OPTIONAL, "local realm");
1158
1159     code = cmd_Parse(argc, argv, &opts);
1160     if (code)
1161         return -1;
1162
1163     /* XXX - cmd_OptionAsString(opts, OPT_config, &configDir); */
1164
1165     cmd_OpenConfigFile(AFSDIR_SERVER_CONFIG_FILE_FILEPATH);
1166     cmd_SetCommandName("fileserver");
1167
1168     if (cmd_OptionPresent(opts, OPT_large)
1169         && cmd_OptionPresent(opts, OPT_small)) {
1170         printf("Only one of -L or -S must be specified\n");
1171         return -1;
1172     }
1173
1174     if (cmd_OptionPresent(opts, OPT_spare)
1175         && cmd_OptionPresent(opts, OPT_pctspare)) {
1176         printf("Both -spare and -pctspare specified, exiting.\n");
1177         return -1;
1178     }
1179
1180     if (cmd_OptionPresent(opts, OPT_large)) {
1181         rxpackets = 200;
1182         nSmallVns = 600;
1183         large = 600;
1184         numberofcbs = 64000;
1185         lwps = 128;
1186         buffs = 120;
1187         volcache = 600;
1188     }
1189
1190     if (cmd_OptionPresent(opts, OPT_small)) {
1191         rxpackets = 100;
1192         nSmallVns = 200;
1193         large = 200;
1194         numberofcbs = 20000;
1195         lwps = 6;
1196         buffs = 70;
1197         volcache = 200;
1198     }
1199
1200     cmd_OptionAsFlag(opts, OPT_banner, &printBanner);
1201
1202     if (cmd_OptionAsString(opts, OPT_implicit, &optstring) == 0) {
1203         implicitAdminRights = ParseRights(optstring);
1204         free(optstring);
1205         optstring = NULL;
1206         if (implicitAdminRights < 0)
1207             return implicitAdminRights;
1208     }
1209
1210 #if defined(AFS_SGI_ENV)
1211     cmd_OptionAsFlag(opts, OPT_lock, &SawLock);
1212 #endif
1213     cmd_OptionAsFlag(opts, OPT_readonly, &readonlyServer);
1214     cmd_OptionAsFlag(opts, OPT_saneacls, &saneacls);
1215     cmd_OptionAsInt(opts, OPT_buffers, &buffs);
1216
1217     if (cmd_OptionAsInt(opts, OPT_callbacks, &numberofcbs) == 0) {
1218         printf("number of cbs %d invalid; "
1219                "must be between 10000 and 2147483647\n", numberofcbs);
1220         return -1;
1221     }
1222
1223     cmd_OptionAsInt(opts, OPT_vcsize, &volcache);
1224     cmd_OptionAsInt(opts, OPT_lvnodes, &large);
1225     cmd_OptionAsInt(opts, OPT_svnodes, &nSmallVns);
1226     if (cmd_OptionAsInt(opts, OPT_sendsize, &optval) == 0) {
1227         if (optval < 16384) {
1228             printf("Warning:sendsize %d is less than minimum %d; ignoring\n",
1229                    optval, 16384);
1230         } else
1231             sendBufSize = optval;
1232     }
1233
1234 #if defined(AFS_AIX32_ENV)
1235     if (cmd_OptionAsInt(opts, OPT_minspare, &aixlow_water) == 0) {
1236         if ((aixlow_water < 0) || (aixlow_water > 30)) {
1237             printf("space reserved %d%% invalid; must be between 0-30%\n",
1238                    aixlow_water);
1239             return -1;
1240         }
1241     }
1242 #endif
1243
1244     cmd_OptionAsInt(opts, OPT_spare, &BlocksSpare);
1245     if (cmd_OptionAsInt(opts, OPT_pctspare, &PctSpare) == 0) {
1246         BlocksSpare = 0;
1247     }
1248
1249     if (cmd_OptionAsInt(opts, OPT_hostcpsrefresh, &optval) == 0) {
1250         if ((optval < 1) || (optval > 36)) {
1251             printf("host acl refresh interval of %d hours is invalid; "
1252                    "hours must be between 1 and 36\n\n", optval);
1253             return -1;
1254         }
1255         hostaclRefresh = optval * 60 * 60;
1256     }
1257
1258     cmd_OptionAsInt(opts, OPT_vattachthreads, &vol_attach_threads);
1259
1260     cmd_OptionAsInt(opts, OPT_abortthreshold, &abort_threshold);
1261
1262     /* busyat is at the end, as rxpackets has to be set before we can use it */
1263     if (cmd_OptionPresent(opts, OPT_nobusy))
1264         busyonrst = 0;
1265
1266     if (cmd_OptionAsInt(opts, OPT_offline_timeout, &offline_timeout) == 0) {
1267         if (offline_timeout < -1) {
1268             printf("Invalid -offline-timeout value %d; the only valid "
1269                    "negative value is -1\n", offline_timeout);
1270             return -1;
1271         }
1272     }
1273
1274     if (cmd_OptionAsInt(opts, OPT_offline_shutdown_timeout,
1275                         &offline_shutdown_timeout) == 0) {
1276         if (offline_shutdown_timeout < -1) {
1277             printf("Invalid -offline-timeout value %d; the only valid "
1278                    "negative value is -1\n", offline_shutdown_timeout);
1279             return -1;
1280         }
1281     }
1282
1283     cmd_OptionAsUint(opts, OPT_vhandle_setaside,
1284                     &vol_io_params.fd_handle_setaside);
1285     cmd_OptionAsUint(opts, OPT_vhandle_max_cachesize,
1286                     &vol_io_params.fd_max_cachesize);
1287     cmd_OptionAsUint(opts, OPT_vhandle_initial_cachesize,
1288                     &vol_io_params.fd_initial_cachesize);
1289
1290 #ifdef AFS_DEMAND_ATTACH_FS
1291     if (cmd_OptionPresent(opts, OPT_fs_state_dont_save))
1292         fs_state.options.fs_state_save = 0;
1293     if (cmd_OptionPresent(opts, OPT_fs_state_dont_restore))
1294         fs_state.options.fs_state_restore = 0;
1295     if (cmd_OptionAsString(opts, OPT_fs_state_verify, &optstring) == 0) {
1296         if (strcmp(optstring, "none") == 0) {
1297             fs_state.options.fs_state_verify_before_save = 0;
1298             fs_state.options.fs_state_verify_after_restore = 0;
1299         } else if (strcmp(optstring, "save") == 0) {
1300             fs_state.options.fs_state_verify_after_restore = 0;
1301         } else if (strcmp(optstring, "restore") == 0) {
1302             fs_state.options.fs_state_verify_before_save = 0;
1303         } else if (strcmp(optstring, "both") == 0) {
1304             /* default */
1305         } else {
1306             fprintf(stderr, "invalid argument for -fs-state-verify\n");
1307             return -1;
1308         }
1309     }
1310     if (cmd_OptionAsInt(opts, OPT_vhashsize, &optval) == 0) {
1311         if (VSetVolHashSize(optval)) {
1312             fprintf(stderr, "specified -vhashsize (%d) is invalid or out "
1313                             "of range\n", optval);
1314             return -1;
1315         }
1316     }
1317     if (cmd_OptionPresent(opts, OPT_vlrudisable))
1318         VLRU_SetOptions(VLRU_SET_ENABLED, 0);
1319     if (cmd_OptionAsInt(opts, OPT_vlruthresh, &optval) == 0)
1320         VLRU_SetOptions(VLRU_SET_THRESH, 60*optval);
1321     if (cmd_OptionAsInt(opts, OPT_vlruinterval, &optval) == 0)
1322         VLRU_SetOptions(VLRU_SET_INTERVAL, optval);
1323     if (cmd_OptionAsInt(opts, OPT_vlrumax, &optval) == 0)
1324         VLRU_SetOptions(VLRU_SET_MAX, optval);
1325     cmd_OptionAsFlag(opts, OPT_unsafe_nosalvage, &unsafe_attach);
1326 #endif /* AFS_DEMAND_ATTACH_FS */
1327
1328     cmd_OptionAsInt(opts, OPT_stack, &stack);
1329     cmd_OptionAsInt(opts, OPT_cbwait, &fiveminutes);
1330     cmd_OptionAsFlag(opts, OPT_novbc, &novbc);
1331
1332     /* general server options */
1333     cmd_OptionAsString(opts, OPT_auditlog, &auditFileName);
1334
1335     if (cmd_OptionAsString(opts, OPT_auditiface, &optstring) == 0) {
1336         if (osi_audit_interface(optstring)) {
1337             printf("Invalid audit interface '%s'\n", optstring);
1338             return -1;
1339         }
1340         free(optstring);
1341         optstring = NULL;
1342     }
1343
1344     cmd_OptionAsInt(opts, OPT_debug, &LogLevel);
1345     /* XXX - cmd_OptionAsString(opts, OPT_logfile, &logFile); */
1346     cmd_OptionAsFlag(opts, OPT_mrafslogs, &mrafsStyleLogs);
1347
1348     if (cmd_OptionAsInt(opts, OPT_threads, &lwps) == 0) {
1349         lwps_max = max_fileserver_thread() - FILESERVER_HELPER_THREADS;
1350         if (lwps > lwps_max)
1351             lwps = lwps_max;
1352         else if (lwps <6)
1353             lwps = 6;
1354     }
1355
1356 #ifndef AFS_NT40_ENV
1357     if (cmd_OptionPresent(opts, OPT_syslog)) {
1358         serverLogSyslog = 1;
1359         cmd_OptionAsInt(opts, OPT_syslog, &serverLogSyslogFacility);
1360     }
1361 #endif
1362
1363     if (cmd_OptionPresent(opts, OPT_peer))
1364         rx_enablePeerRPCStats();
1365     if (cmd_OptionPresent(opts, OPT_process))
1366         rx_enableProcessRPCStats();
1367     if (cmd_OptionPresent(opts, OPT_nojumbo))
1368         rxJumbograms = 0;
1369     if (cmd_OptionPresent(opts, OPT_jumbo))
1370         rxJumbograms = 1;
1371     cmd_OptionAsFlag(opts, OPT_rxbind, &rxBind);
1372     cmd_OptionAsFlag(opts, OPT_rxdbg, &rxlog);
1373     cmd_OptionAsFlag(opts, OPT_rxdbge, &eventlog);
1374     cmd_OptionAsInt(opts, OPT_rxpck, &rxpackets);
1375
1376     cmd_OptionAsInt(opts, OPT_rxmaxmtu, &rxMaxMTU);
1377
1378     if (cmd_OptionAsInt(opts, OPT_udpsize, &optval) == 0) {
1379         if (optval < rx_GetMinUdpBufSize()) {
1380             printf("Warning:udpsize %d is less than minimum %d; ignoring\n",
1381                    optval, rx_GetMinUdpBufSize());
1382         } else
1383             udpBufSize = optval;
1384     }
1385
1386     /* rxkad options */
1387     cmd_OptionAsFlag(opts, OPT_dotted, &rxkadDisableDotCheck);
1388     if (cmd_OptionAsList(opts, OPT_realm, &optlist) == 0) {
1389
1390         for (; optlist != NULL; optlist=optlist->next) {
1391             if (strlen(optlist->data) >= AFS_REALM_SZ) {
1392                 printf("-realm argument must contain fewer than %d "
1393                        "characters.\n", AFS_REALM_SZ);
1394                 return -1;
1395             }
1396             afsconf_SetLocalRealm(optlist->data); /* overrides krb.conf file, if one */
1397         }
1398     }
1399
1400     /* anything setting rxpackets must come before this */
1401     if (cmd_OptionAsInt(opts, OPT_busyat, &optval) == 0) {
1402         if (optval < 10) {
1403             printf("Busy threshold %d is too low, will use default.\n",
1404                    busy_threshold);
1405             busy_threshold = 3 * rxpackets / 2;
1406         } else {
1407             busy_threshold = optval;
1408         }
1409     } else {
1410         busy_threshold = 3 * rxpackets / 2;
1411     }
1412
1413     if (auditFileName)
1414         osi_audit_file(auditFileName);
1415
1416     return (0);
1417 }                               /*ParseArgs */
1418
1419 /* Once upon a time, in a galaxy far far away, IBM AFS supported the use of
1420  * a file /vice/file/parms, the contents of which would override any command
1421  * line parameters. We no longer support the use of such a file, but we warn
1422  * if we encounter its presence from an older release
1423  */
1424 static void
1425 CheckParms(void)
1426 {
1427     struct afs_stat sbuf;
1428
1429     if (afs_stat("/vice/file/parms", &sbuf) == 0) {
1430         ViceLog(0, ("Using /vice/file/parms to override command line "
1431                     "options is no longer supported"));
1432     }
1433 }
1434
1435 /* Miscellaneous routines */
1436 void
1437 Die(const char *msg)
1438 {
1439
1440     ViceLogThenPanic(0, ("%s\n", msg));
1441 }                               /*Die */
1442
1443
1444 afs_int32
1445 InitPR(void)
1446 {
1447     int code;
1448
1449     /*
1450      * If this fails, it's because something major is wrong, and is not
1451      * likely to be time dependent.
1452      */
1453     code = pr_Initialize(2, AFSDIR_SERVER_ETC_DIRPATH, 0);
1454     if (code != 0) {
1455         ViceLog(0,
1456                 ("Couldn't initialize protection library; code=%d.\n", code));
1457         return code;
1458     }
1459
1460     opr_Verify(pthread_key_create(&viced_uclient_key, NULL) == 0);
1461
1462     SystemId = SYSADMINID;
1463     SystemAnyUser = ANYUSERID;
1464     SystemAnyUserCPS.prlist_len = 0;
1465     SystemAnyUserCPS.prlist_val = NULL;
1466     AnonCPS.prlist_len = 0;
1467     AnonCPS.prlist_val = NULL;
1468     while (1) {
1469         code = pr_GetCPS(SystemAnyUser, &SystemAnyUserCPS);
1470         if (code != 0) {
1471             ViceLog(0,
1472                     ("Couldn't get CPS for AnyUser, will try again in 30 seconds; code=%d.\n",
1473                      code));
1474             goto sleep;
1475         }
1476         code = pr_GetCPS(ANONYMOUSID, &AnonCPS);
1477         if (code != 0) {
1478             ViceLog(0,
1479                     ("Couldn't get Anonymous CPS, exiting; code=%d.\n",
1480                      code));
1481             return -1;
1482         }
1483         AnonymousID = ANONYMOUSID;
1484         return 0;
1485       sleep:
1486         sleep(30);
1487     }
1488 }                               /*InitPR */
1489
1490 static struct ubik_client *cstruct;
1491
1492 static afs_int32
1493 vl_Initialize(struct afsconf_dir *dir)
1494 {
1495     afs_int32 code, i;
1496     afs_int32 scIndex = RX_SECIDX_NULL;
1497     struct afsconf_cell info;
1498     struct rx_securityClass *sc;
1499     struct rx_connection *serverconns[MAXSERVERS];
1500
1501     memset(serverconns, 0, sizeof(serverconns));
1502     code = afsconf_ClientAuth(dir, &sc, &scIndex);
1503     if (code) {
1504         ViceLog(0, ("Could not get security object for localAuth\n"));
1505         exit(1);
1506     }
1507     code = afsconf_GetCellInfo(dir, NULL, AFSCONF_VLDBSERVICE, &info);
1508     if (info.numServers > MAXSERVERS) {
1509         ViceLog(0,
1510                 ("vl_Initialize: info.numServers=%d (> MAXSERVERS=%d)\n",
1511                  info.numServers, MAXSERVERS));
1512         exit(1);
1513     }
1514     for (i = 0; i < info.numServers; i++)
1515         serverconns[i] =
1516             rx_NewConnection(info.hostAddr[i].sin_addr.s_addr,
1517                              info.hostAddr[i].sin_port, USER_SERVICE_ID, sc,
1518                              scIndex);
1519     code = ubik_ClientInit(serverconns, &cstruct);
1520     if (code) {
1521         ViceLog(0, ("vl_Initialize: ubik client init failed.\n"));
1522         return code;
1523     }
1524     return 0;
1525 }
1526
1527 #define SYSIDMAGIC      0x88aabbcc
1528 #define SYSIDVERSION    1
1529
1530 afs_int32
1531 ReadSysIdFile(void)
1532 {
1533     afs_int32 fd, nentries, i;
1534     struct versionStamp vsn;
1535     struct afs_stat status;
1536     afsUUID uuid;
1537
1538     if ((afs_stat(AFSDIR_SERVER_SYSID_FILEPATH, &status))
1539         || (status.st_size <= 0)) {
1540         ViceLog(0, ("%s: doesn't exist\n", AFSDIR_SERVER_SYSID_FILEPATH));
1541         return ENOENT;
1542     }
1543     if (!(fd = afs_open(AFSDIR_SERVER_SYSID_FILEPATH, O_RDONLY, 0))) {
1544         ViceLog(0,
1545                 ("%s: can't open (%d)\n", AFSDIR_SERVER_SYSID_FILEPATH,
1546                  errno));
1547         return EIO;
1548     }
1549     if (read(fd, (char *)&vsn, sizeof(vsn)) != sizeof(vsn)) {
1550         ViceLog(0,
1551                 ("%s: Read failed (%d)\n", AFSDIR_SERVER_SYSID_FILEPATH,
1552                  errno));
1553         return EIO;
1554     }
1555     if (vsn.magic != SYSIDMAGIC) {
1556         ViceLog(0,
1557                 ("%s: wrong magic %x (we support %x)\n",
1558                  AFSDIR_SERVER_SYSID_FILEPATH, vsn.magic, SYSIDMAGIC));
1559         return EIO;
1560     }
1561     if (vsn.version != SYSIDVERSION) {
1562         ViceLog(0,
1563                 ("%s: wrong version %d (we support %d)\n",
1564                  AFSDIR_SERVER_SYSID_FILEPATH, vsn.version, SYSIDVERSION));
1565         return EIO;
1566     }
1567     if (read(fd, (char *)&uuid, sizeof(struct afsUUID))
1568             != sizeof(struct afsUUID)) {
1569         ViceLog(0,
1570                 ("%s: read of uuid failed (%d)\n",
1571                  AFSDIR_SERVER_SYSID_FILEPATH, errno));
1572         return EIO;
1573     }
1574     afs_ntohuuid(&uuid);
1575     FS_HostUUID = uuid;
1576     if (read(fd, (char *)&nentries, sizeof(afs_int32)) != sizeof(afs_int32)) {
1577         ViceLog(0,
1578                 ("%s: Read of entries failed (%d)\n",
1579                  AFSDIR_SERVER_SYSID_FILEPATH, errno));
1580         return EIO;
1581     }
1582     if (nentries <= 0 || nentries > ADDRSPERSITE) {
1583         ViceLog(0,
1584                 ("%s: invalid num of interfaces: %d\n",
1585                  AFSDIR_SERVER_SYSID_FILEPATH, nentries));
1586         return EIO;
1587     }
1588     if (FS_HostAddr_cnt == 0) {
1589         FS_HostAddr_cnt = nentries;
1590         for (i = 0; i < nentries; i++) {
1591             if (read(fd, (char *)&FS_HostAddrs[i], sizeof(afs_int32)) !=
1592                 sizeof(afs_int32)) {
1593                 ViceLog(0,
1594                         ("%s: Read of addresses failed (%d)\n",
1595                          AFSDIR_SERVER_SYSID_FILEPATH, errno));
1596                 FS_HostAddr_cnt = 0;    /* reset it */
1597                 return EIO;
1598             }
1599         }
1600     } else {
1601         ViceLog(1,
1602                 ("%s: address list ignored (NetInfo/NetRestrict override)\n",
1603                  AFSDIR_SERVER_SYSID_FILEPATH));
1604     }
1605     close(fd);
1606     return 0;
1607 }
1608
1609 afs_int32
1610 WriteSysIdFile(void)
1611 {
1612     afs_int32 fd, i;
1613     struct versionStamp vsn;
1614     struct afs_stat status;
1615     afsUUID uuid;
1616
1617     if (!afs_stat(AFSDIR_SERVER_SYSID_FILEPATH, &status)) {
1618         /*
1619          * File exists; keep the old one around
1620          */
1621         rk_rename(AFSDIR_SERVER_SYSID_FILEPATH,
1622                   AFSDIR_SERVER_OLDSYSID_FILEPATH);
1623     }
1624     fd = afs_open(AFSDIR_SERVER_SYSID_FILEPATH, O_WRONLY | O_TRUNC | O_CREAT,
1625                   0666);
1626     if (fd < 1) {
1627         ViceLog(0,
1628                 ("%s: can't create (%d)\n", AFSDIR_SERVER_SYSID_FILEPATH,
1629                  errno));
1630         return EIO;
1631     }
1632     vsn.magic = SYSIDMAGIC;
1633     vsn.version = 1;
1634     if ((i = write(fd, (char *)&vsn, sizeof(vsn))) != sizeof(vsn)) {
1635         ViceLog(0,
1636                 ("%s: write failed (%d)\n", AFSDIR_SERVER_SYSID_FILEPATH,
1637                  errno));
1638         return EIO;
1639     }
1640     uuid = FS_HostUUID;
1641     afs_htonuuid(&uuid);
1642     if ((i =
1643          write(fd, (char *)&uuid,
1644                sizeof(struct afsUUID))) != sizeof(struct afsUUID)) {
1645         ViceLog(0,
1646                 ("%s: write of uuid failed (%d)\n",
1647                  AFSDIR_SERVER_SYSID_FILEPATH, errno));
1648         return EIO;
1649     }
1650     if ((i =
1651          write(fd, (char *)&FS_HostAddr_cnt,
1652                sizeof(afs_int32))) != sizeof(afs_int32)) {
1653         ViceLog(0,
1654                 ("%s: write of # of entries failed (%d)\n",
1655                  AFSDIR_SERVER_SYSID_FILEPATH, errno));
1656         return EIO;
1657     }
1658     for (i = 0; i < FS_HostAddr_cnt; i++) {
1659         if (write(fd, (char *)&FS_HostAddrs[i], sizeof(afs_int32)) !=
1660             sizeof(afs_int32)) {
1661             ViceLog(0,
1662                     ("%s: write of addresses failed (%d)\n",
1663                      AFSDIR_SERVER_SYSID_FILEPATH, errno));
1664             return EIO;
1665         }
1666     }
1667     close(fd);
1668     return 0;
1669 }
1670
1671 /*
1672  * defect 10966
1673  * This routine sets up the buffers for the VL_RegisterAddrs RPC. All addresses
1674  * in FS_HostAddrs[] are in NBO, while the RPC treats them as a "blob" of data
1675  * and so we need to convert each of them into HBO which is what the extra
1676  * array called FS_HostAddrs_HBO is used here.
1677  */
1678 static afs_int32
1679 Do_VLRegisterRPC(void)
1680 {
1681     int code;
1682     bulkaddrs addrs;
1683     afs_uint32 FS_HostAddrs_HBO[ADDRSPERSITE];
1684     int i = 0;
1685
1686     for (i = 0; i < FS_HostAddr_cnt; i++)
1687         FS_HostAddrs_HBO[i] = ntohl(FS_HostAddrs[i]);
1688     addrs.bulkaddrs_len = FS_HostAddr_cnt;
1689     addrs.bulkaddrs_val = (afs_uint32 *) FS_HostAddrs_HBO;
1690     code = ubik_VL_RegisterAddrs(cstruct, 0, &FS_HostUUID, 0, &addrs);
1691     if (code) {
1692         if (code == VL_MULTIPADDR) {
1693             ViceLog(0,
1694                     ("VL_RegisterAddrs rpc failed; The IP address exists on a different server; repair it\n"));
1695             ViceLog(0,
1696                     ("VL_RegisterAddrs rpc failed; See VLLog for details\n"));
1697             return code;
1698         } else if (code == RXGEN_OPCODE) {
1699             ViceLog(0,
1700                     ("vlserver doesn't support VL_RegisterAddrs rpc; ignored\n"));
1701             FS_registered = 2;  /* So we don't have to retry in the gc daemon */
1702         } else {
1703             ViceLog(0,
1704                     ("VL_RegisterAddrs rpc failed; will retry periodically (code=%d, err=%d)\n",
1705                      code, errno));
1706             FS_registered = 1;  /* Retry in the gc daemon */
1707         }
1708     } else {
1709         FS_registered = 2;      /* So we don't have to retry in the gc daemon */
1710         WriteSysIdFile();
1711     }
1712
1713     return 0;
1714 }
1715
1716 afs_int32
1717 SetupVL(void)
1718 {
1719     afs_int32 code;
1720
1721     if (AFSDIR_SERVER_NETRESTRICT_FILEPATH || AFSDIR_SERVER_NETINFO_FILEPATH) {
1722         /*
1723          * Find addresses we are supposed to register as per the netrestrict
1724          * and netinfo files (/usr/afs/local/NetInfo and
1725          * /usr/afs/local/NetRestict)
1726          */
1727         char reason[1024];
1728         afs_int32 code;
1729
1730         code = afsconf_ParseNetFiles(FS_HostAddrs, NULL, NULL,
1731                                      ADDRSPERSITE, reason,
1732                                      AFSDIR_SERVER_NETINFO_FILEPATH,
1733                                      AFSDIR_SERVER_NETRESTRICT_FILEPATH);
1734         if (code < 0) {
1735             ViceLog(0, ("Can't register any valid addresses: %s\n", reason));
1736             exit(1);
1737         }
1738         FS_HostAddr_cnt = (afs_uint32) code;
1739     } else
1740     {
1741         FS_HostAddr_cnt = rx_getAllAddr(FS_HostAddrs, ADDRSPERSITE);
1742     }
1743
1744     if (FS_HostAddr_cnt == 1 && rxBind == 1)
1745         code = FS_HostAddrs[0];
1746     else
1747         code = htonl(INADDR_ANY);
1748     return code;
1749 }
1750
1751 afs_int32
1752 InitVL(struct afsconf_dir *dir)
1753 {
1754     afs_int32 code;
1755
1756     /*
1757      * If this fails, it's because something major is wrong, and is not
1758      * likely to be time dependent.
1759      */
1760     code = vl_Initialize(dir);
1761     if (code != 0) {
1762         ViceLog(0,
1763                 ("Couldn't initialize volume location library; code=%d.\n", code));
1764         return code;
1765     }
1766
1767     /* Read or create the sysid file and register the fileserver's
1768      * IP addresses with the vlserver.
1769      */
1770     code = ReadSysIdFile();
1771     if (code) {
1772         /* Need to create the file */
1773         ViceLog(0, ("Creating new SysID file\n"));
1774         if ((code = afs_uuid_create(&FS_HostUUID))) {
1775             ViceLog(0, ("Failed to create new uuid: %d\n", code));
1776             exit(1);
1777         }
1778     }
1779     /* A good sysid file exists; inform the vlserver. If any conflicts,
1780      * we always use the latest interface available as the real truth.
1781      */
1782
1783     code = Do_VLRegisterRPC();
1784     return code;
1785 }
1786
1787 int
1788 main(int argc, char *argv[])
1789 {
1790     afs_int32 code;
1791     char tbuffer[32];
1792     struct rx_securityClass **securityClasses;
1793     afs_int32 numClasses;
1794     struct rx_service *tservice;
1795     pthread_t serverPid;
1796     pthread_attr_t tattr;
1797     struct hostent *he;
1798     int minVnodesRequired;      /* min size of vnode cache */
1799 #ifndef AFS_NT40_ENV
1800     struct rlimit rlim;         /* max number of open file descriptors */
1801 #endif
1802     int curLimit;
1803     time_t t;
1804     struct tm tm;
1805     afs_uint32 rx_bindhost;
1806     VolumePackageOptions opts;
1807
1808 #ifdef  AFS_AIX32_ENV
1809     struct sigaction nsa;
1810
1811     sigemptyset(&nsa.sa_mask);
1812     nsa.sa_handler = SIG_DFL;
1813     nsa.sa_flags = SA_FULLDUMP;
1814     sigaction(SIGABRT, &nsa, NULL);
1815     sigaction(SIGSEGV, &nsa, NULL);
1816 #endif
1817     osi_audit_init();
1818
1819     /* Initialize dirpaths */
1820     if (!(initAFSDirPath() & AFSDIR_SERVER_PATHS_OK)) {
1821 #ifdef AFS_NT40_ENV
1822         ReportErrorEventAlt(AFSEVT_SVR_NO_INSTALL_DIR, 0, argv[0], 0);
1823 #endif
1824         fprintf(stderr, "%s: Unable to obtain AFS server directory.\n",
1825                 argv[0]);
1826         exit(2);
1827     }
1828     /* set ihandle package defaults prior to parsing args */
1829     ih_PkgDefaults();
1830
1831     /* check for the parameter file */
1832     CheckParms();
1833
1834     if (ParseArgs(argc, argv)) {
1835         exit(-1);
1836     }
1837     MUTEX_INIT(&fileproc_glock_mutex, "fileproc", MUTEX_DEFAULT, 0);
1838
1839 #ifdef AFS_SGI_VNODE_GLUE
1840     if (afs_init_kernel_config(-1) < 0) {
1841         printf
1842             ("Can't determine NUMA configuration, not starting fileserver.\n");
1843         exit(1);
1844     }
1845 #endif
1846     FS_configPath = strdup(AFSDIR_SERVER_ETC_DIRPATH);
1847
1848     confDir = afsconf_Open(FS_configPath);
1849     if (!confDir) {
1850         fprintf(stderr, "Unable to open config directory %s\n",
1851                 FS_configPath);
1852         exit(-1);
1853     }
1854
1855     /* initialize audit user check */
1856     osi_audit_set_user_check(confDir, fs_IsLocalRealmMatch);
1857
1858     /* Open FileLog on stdout, stderr, fd 1 and fd2 (for perror), sigh. */
1859 #ifndef AFS_NT40_ENV
1860     serverLogSyslogTag = "fileserver";
1861 #endif
1862     OpenLog(AFSDIR_SERVER_FILELOG_FILEPATH);
1863     SetupLogSignals();
1864
1865     LogCommandLine(argc, argv, "starting", "", "File server", FSLog);
1866
1867 #if !defined(AFS_NT40_ENV)
1868     /* initialize the pthread soft signal handler thread */
1869     softsig_init();
1870 #endif
1871
1872     /* install signal handlers for controlling the fileserver process */
1873     ResetCheckSignal();         /* set CheckSignal_Signal() sig handler */
1874     ResetCheckDescriptors();    /* set CheckDescriptors_Signal() sig handler */
1875
1876 #if defined(AFS_SGI_ENV)
1877     /* give this guy a non-degrading priority so help busy servers */
1878     schedctl(NDPRI, 0, NDPNORMMAX);
1879     if (SawLock)
1880         plock(PROCLOCK);
1881 #elif !defined(AFS_NT40_ENV)
1882     nice(-5);                   /* TODO: */
1883 #endif
1884     DInit(buffs);
1885 #ifdef AFS_DEMAND_ATTACH_FS
1886     FS_STATE_INIT;
1887 #endif
1888
1889 #ifdef AFS_NT40_ENV
1890     if (afs_winsockInit() < 0) {
1891         ReportErrorEventAlt(AFSEVT_SVR_WINSOCK_INIT_FAILED, 0, argv[0], 0);
1892         ViceLog(0, ("File server failed to intialize winsock.\n"));
1893         exit(1);
1894     }
1895 #endif
1896     CheckAdminName();
1897
1898     /* if we support more than 16 threads, then we better have the ability
1899      ** to keep open a large number of files simultaneously
1900      */
1901 #if     defined(AFS_AIX_ENV) && !defined(AFS_AIX42_ENV)
1902     curLimit = OPEN_MAX;        /* for pre AIX 4.2 systems */
1903 #elif defined(AFS_NT40_ENV)
1904     curLimit = NT_OPEN_MAX;     /* open file descriptor limit on NT */
1905 #else
1906
1907     curLimit = 0;               /* the number of open file descriptors */
1908     code = getrlimit(RLIMIT_NOFILE, &rlim);
1909     if (code == 0) {
1910         curLimit = rlim.rlim_cur;
1911         rlim.rlim_cur = rlim.rlim_max;
1912         code = setrlimit(RLIMIT_NOFILE, &rlim);
1913         if (code == 0)
1914             curLimit = rlim.rlim_max;
1915     }
1916     if (code != 0)
1917         ViceLog(0, ("Failed to increase open file limit, using default\n"));
1918
1919 #endif /* defined(AFS_AIX_ENV) && !defined(AFS_AIX42_ENV) */
1920
1921     curLimit -= 32;             /* leave a slack of 32 file descriptors */
1922     if (lwps > curLimit) {
1923         if (curLimit > 0)
1924             lwps = curLimit;
1925         else if (lwps > 16)
1926             lwps = 16;          /* default to a maximum of 16 threads */
1927
1928         /* tune the ihandle fd cache accordingly */
1929         if (vol_io_params.fd_max_cachesize < curLimit)
1930             vol_io_params.fd_max_cachesize = curLimit + 1;
1931
1932         ViceLog(0,
1933                 ("The system supports a max of %d open files and we are starting %d threads (ihandle fd cache is %d)\n",
1934                  curLimit, lwps, vol_io_params.fd_max_cachesize));
1935     }
1936
1937     /* Initialize volume support */
1938     if (!novbc) {
1939         V_BreakVolumeCallbacks = BreakVolumeCallBacksLater;
1940     }
1941
1942     SetLogThreadNumProgram( rx_GetThreadNum );
1943
1944     /* initialize libacl routines */
1945     acl_Initialize(ACL_VERSION);
1946
1947     /* initialize RX support */
1948 #ifndef AFS_NT40_ENV
1949     rxi_syscallp = viced_syscall;
1950 #endif
1951     rx_extraPackets = rxpackets;
1952     rx_extraQuota = 4;          /* for outgoing prserver calls from R threads */
1953     rx_SetBusyThreshold(busy_threshold, VBUSY);
1954     rx_SetCallAbortThreshold(abort_threshold);
1955     rx_SetConnAbortThreshold(abort_threshold);
1956 #ifdef AFS_XBSD_ENV
1957     stackSize = 128 * 1024;
1958 #else
1959     stackSize = lwps * 4000;
1960     if (stackSize < 32000)
1961         stackSize = 32000;
1962     else if (stackSize > 44000)
1963         stackSize = 44000;
1964 #endif
1965 #if defined(AFS_HPUX_ENV) || defined(AFS_SUN_ENV) || defined(AFS_SGI51_ENV) || defined(AFS_XBSD_ENV)
1966     rx_SetStackSize(1, stackSize);
1967 #endif
1968     if (udpBufSize)
1969         rx_SetUdpBufSize(udpBufSize);   /* set the UDP buffer size for receive */
1970     rx_bindhost = SetupVL();
1971
1972     if (rx_InitHost(rx_bindhost, (int)htons(7000)) < 0) {
1973         ViceLog(0, ("Cannot initialize RX\n"));
1974         exit(1);
1975     }
1976     if (!rxJumbograms) {
1977         /* Don't send and don't allow 3.4 clients to send jumbograms. */
1978         rx_SetNoJumbo();
1979     }
1980     if (rxMaxMTU != -1) {
1981         if (rx_SetMaxMTU(rxMaxMTU) != 0) {
1982             ViceLog(0, ("rxMaxMTU %d is invalid\n", rxMaxMTU));
1983             exit(1);
1984         }
1985     }
1986     rx_GetIFInfo();
1987     rx_SetRxDeadTime(30);
1988     afsconf_SetSecurityFlags(confDir, AFSCONF_SECOPTS_ALWAYSENCRYPT);
1989     afsconf_BuildServerSecurityObjects(confDir, &securityClasses, &numClasses);
1990
1991     tservice = rx_NewServiceHost(rx_bindhost,  /* port */ 0, /* service id */
1992                                  1,     /*service name */
1993                                  "AFS",
1994                                  securityClasses, numClasses,
1995                                  RXAFS_ExecuteRequest);
1996     if (!tservice) {
1997         ViceLog(0,
1998                 ("Failed to initialize RX, probably two servers running.\n"));
1999         exit(-1);
2000     }
2001     if (rxkadDisableDotCheck) {
2002         rx_SetSecurityConfiguration(tservice, RXS_CONFIG_FLAGS,
2003                                     (void *)RXS_CONFIG_FLAGS_DISABLE_DOTCHECK);
2004     }
2005     rx_SetMinProcs(tservice, 3);
2006     rx_SetMaxProcs(tservice, lwps);
2007     rx_SetCheckReach(tservice, 1);
2008     rx_SetServerIdleDeadErr(tservice, VNOSERVICE);
2009
2010     tservice =
2011         rx_NewService(0, RX_STATS_SERVICE_ID, "rpcstats", securityClasses,
2012                       numClasses, RXSTATS_ExecuteRequest);
2013     if (!tservice) {
2014         ViceLog(0, ("Failed to initialize rpc stat service.\n"));
2015         exit(-1);
2016     }
2017     rx_SetMinProcs(tservice, 2);
2018     rx_SetMaxProcs(tservice, 4);
2019
2020     /*
2021      * Enable RX hot threads, which allows the listener thread to trade
2022      * places with an idle thread and moves the context switch from listener
2023      * to worker out of the critical path.
2024      */
2025     rx_EnableHotThread();
2026
2027     /* Some rx debugging */
2028     if (rxlog || eventlog) {
2029         debugFile = afs_fopen("rx_dbg", "w");
2030         if (rxlog)
2031             rx_debugFile = debugFile;
2032         if (eventlog)
2033             rxevent_debugFile = debugFile;
2034     }
2035
2036     init_sys_error_to_et();     /* Set up error table translation */
2037     h_InitHostPackage();        /* set up local cellname and realmname */
2038     InitCallBack(numberofcbs);
2039     ClearXStatValues();
2040
2041     code = InitVL(confDir);
2042     if (code && code != VL_MULTIPADDR) {
2043         ViceLog(0, ("Fatal error in library initialization, exiting!!\n"));
2044         exit(1);
2045     }
2046
2047     code = InitPR();
2048     if (code && code != -1) {
2049         ViceLog(0, ("Fatal error in protection initialization, exiting!!\n"));
2050         exit(1);
2051     }
2052
2053     /* allow super users to manage RX statistics */
2054     rx_SetRxStatUserOk(viced_SuperUser);
2055
2056     CV_INIT(&fsync_cond, "fsync", CV_DEFAULT, 0);
2057     MUTEX_INIT(&fsync_glock_mutex, "fsync", MUTEX_DEFAULT, 0);
2058
2059 #if !defined(AFS_DEMAND_ATTACH_FS)
2060     /*
2061      * For DAFS, we do not start the Rx server threads until after
2062      * the volume package is initialized, and fileserver state is
2063      * restored.  This is necessary in order to keep host and callback
2064      * package state pristine until we have a chance to restore state.
2065      *
2066      * Furthermore, startup latency is much lower with dafs, so this
2067      * shouldn't pose a serious problem.
2068      */
2069     rx_StartServer(0);          /* now start handling requests */
2070 #endif
2071
2072     /* we ensure that there is enough space in the vnode buffer to satisfy
2073      ** requests from all concurrent threads.
2074      ** the maximum number of vnodes used by a single thread at any one time
2075      ** is three ( "link" uses three vnodes simultaneously, one vLarge and
2076      ** two vSmall for linking files and two vLarge and one vSmall for linking
2077      ** files  ) : dhruba
2078      */
2079     minVnodesRequired = 2 * lwps + 1;
2080     if (minVnodesRequired > nSmallVns) {
2081         nSmallVns = minVnodesRequired;
2082         ViceLog(0,
2083                 ("Overriding -s command line parameter with %d\n",
2084                  nSmallVns));
2085     }
2086     if (minVnodesRequired > large) {
2087         large = minVnodesRequired;
2088         ViceLog(0, ("Overriding -l command line parameter with %d\n", large));
2089     }
2090
2091     /* We now do this after getting the listener up and running, so that client
2092      * connections don't timeout (maybe) if a file server is restarted, since it
2093      * will be available "real soon now".  Worry about whether we can satisfy the
2094      * calls in the volume package itself.
2095      */
2096     VOptDefaults(fileServer, &opts);
2097     opts.nLargeVnodes = large;
2098     opts.nSmallVnodes = nSmallVns;
2099     opts.volcache = volcache;
2100     opts.unsafe_attach = unsafe_attach;
2101     if (offline_timeout != -1) {
2102         opts.interrupt_rxcall = rx_InterruptCall;
2103         opts.offline_timeout = offline_timeout;
2104     }
2105     if (offline_shutdown_timeout == -1) {
2106         /* default to -offline-timeout, if shutdown-specific timeout is not
2107          * specified */
2108         opts.offline_shutdown_timeout = offline_timeout;
2109     } else {
2110         opts.interrupt_rxcall = rx_InterruptCall;
2111         opts.offline_shutdown_timeout = offline_shutdown_timeout;
2112     }
2113
2114     if (VInitVolumePackage2(fileServer, &opts)) {
2115         ViceLog(0,
2116                 ("Shutting down: errors encountered initializing volume package\n"));
2117         VShutdown();
2118         exit(1);
2119     }
2120
2121     /* Install handler to catch the shutdown signal;
2122      * bosserver assumes SIGQUIT shutdown
2123      */
2124 #if !defined(AFS_NT40_ENV)
2125     softsig_signal(SIGQUIT, ShutDown_Signal);
2126 #else
2127     (void)signal(SIGQUIT, ShutDown_Signal);
2128 #endif
2129
2130     if (VInitAttachVolumes(fileServer)) {
2131         ViceLog(0,
2132                 ("Shutting down: errors encountered initializing volume package\n"));
2133         VShutdown();
2134         exit(1);
2135     }
2136
2137 #ifdef AFS_DEMAND_ATTACH_FS
2138     if (fs_state.options.fs_state_restore) {
2139         /*
2140          * demand attach fs
2141          * restore fileserver state */
2142         fs_stateRestore();
2143     }
2144     rx_StartServer(0);  /* now start handling requests */
2145 #endif /* AFS_DEMAND_ATTACH_FS */
2146
2147     /*
2148      * We are done calling fopen/fdopen. It is safe to use a large
2149      * of the file descriptor cache.
2150      */
2151     ih_UseLargeCache();
2152
2153     ViceLog(5, ("Starting pthreads\n"));
2154     opr_Verify(pthread_attr_init(&tattr) == 0);
2155     opr_Verify(pthread_attr_setdetachstate(&tattr,
2156                                            PTHREAD_CREATE_DETACHED) == 0);
2157
2158     opr_Verify(pthread_create(&serverPid, &tattr, FiveMinuteCheckLWP,
2159                               &fiveminutes) == 0);
2160     opr_Verify(pthread_create(&serverPid, &tattr, HostCheckLWP,
2161                               &fiveminutes) == 0);
2162     opr_Verify(pthread_create(&serverPid, &tattr, FsyncCheckLWP,
2163                               &fiveminutes) == 0);
2164
2165     gettimeofday(&tp, 0);
2166
2167     /*
2168      * Figure out the FileServer's name and primary address.
2169      */
2170     ViceLog(0, ("Getting FileServer name...\n"));
2171     code = gethostname(FS_HostName, 64);
2172     if (code) {
2173         ViceLog(0, ("gethostname() failed\n"));
2174     }
2175     ViceLog(0, ("FileServer host name is '%s'\n", FS_HostName));
2176
2177     ViceLog(0, ("Getting FileServer address...\n"));
2178     he = gethostbyname(FS_HostName);
2179     if (!he) {
2180         ViceLog(0, ("Can't find address for FileServer '%s'\n", FS_HostName));
2181     } else {
2182         char hoststr[16];
2183         memcpy(&FS_HostAddr_NBO, he->h_addr, 4);
2184         (void)afs_inet_ntoa_r(FS_HostAddr_NBO, hoststr);
2185         FS_HostAddr_HBO = ntohl(FS_HostAddr_NBO);
2186         ViceLog(0,
2187                 ("FileServer %s has address %s (0x%x or 0x%x in host byte order)\n",
2188                  FS_HostName, hoststr, FS_HostAddr_NBO, FS_HostAddr_HBO));
2189     }
2190
2191     t = tp.tv_sec;
2192     strftime(tbuffer, sizeof(tbuffer), "%a %b %d %H:%M:%S %Y",
2193              localtime_r(&t, &tm));
2194     ViceLog(0, ("File Server started %s\n", tbuffer));
2195     afs_FullPerfStats.det.epoch.tv_sec = StartTime = tp.tv_sec;
2196     while (1) {
2197         sleep(1000);            /* long time */
2198     }
2199     return 0;
2200 }