bos: Change to using char casts for ka functions
[openafs.git] / src / bozo / bos.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
10 #include <afsconfig.h>
11 #include <afs/param.h>
12 #include <afs/stds.h>
13
14 #include <afs/procmgmt.h>
15 #include <roken.h>
16 #include <afs/opr.h>
17
18 #include <hcrypto/ui.h>
19
20 #include "bnode.h"
21 #include <afs/afsutil.h>
22 #include <afs/cellconfig.h>
23 #include <rx/rx.h>
24 #include <sys/stat.h>
25 #include <rx/xdr.h>
26 #include <afs/auth.h>
27 #include <afs/cellconfig.h>
28 #include <afs/cmd.h>
29 #include <afs/com_err.h>
30 #include <ubik.h>
31 #include <afs/ktime.h>
32 #include <afs/kautils.h>
33 #include <afs/volser.h>
34
35 static int IStatServer(struct cmd_syndesc *as, int int32p);
36 static int DoStat(char *aname, struct rx_connection *aconn,
37                   int aint32p, int firstTime);
38
39 #include "bosint.h"
40 #include "bosprototypes.h"
41
42 /* command offsets for bos salvage command */
43 #define MRAFS_OFFSET  10
44 #define ADDPARMOFFSET 27
45
46 /* MR-AFS salvage parameters */
47 struct MRAFSSalvageParms {
48     afs_int32 Optdebug;
49     afs_int32 Optnowrite;
50     afs_int32 Optforce;
51     afs_int32 Optoktozap;
52     afs_int32 Optrootfiles;
53     afs_int32 Optsalvagedirs;
54     afs_int32 Optblockreads;
55     afs_int32 OptListResidencies;
56     afs_int32 OptSalvageRemote;
57     afs_int32 OptSalvageArchival;
58     afs_int32 OptIgnoreCheck;
59     afs_int32 OptForceOnLine;
60     afs_int32 OptUseRootDirACL;
61     afs_int32 OptTraceBadLinkCounts;
62     afs_int32 OptDontAskFS;
63     afs_int32 OptLogLevel;
64     afs_int32 OptRxDebug;
65     afs_uint32 OptResidencies;
66 };
67
68 /* dummy routine for the audit work.  It should do nothing since audits */
69 /* occur at the server level and bos is not a server. */
70 int osi_audit(void )
71 {
72     return 0;
73 }
74
75 /* keep those lines small */
76 static char *
77 em(afs_int32 acode)
78 {
79     if (acode == -1)
80         return "communications failure (-1)";
81     else if (acode == -3)
82         return "communications timeout (-3)";
83     else
84         return (char *)afs_error_message(acode);
85 }
86
87 /* get partition id from a name */
88 /* XXX - unused code - could be removed? */
89 #if 0
90 static afs_int32
91 GetPartitionID(char *aname)
92 {
93     char tc;
94     char ascii[3];
95
96     tc = *aname;
97     if (tc == 0)
98         return -1;              /* unknown */
99     /* numbers go straight through */
100     if (tc >= '0' && tc <= '9') {
101         return atoi(aname);
102     }
103     /* otherwise check for vicepa or /vicepa, or just plain "a" */
104     ascii[2] = 0;
105     if (strlen(aname) <= 2) {
106         strcpy(ascii, aname);
107     } else if (!strncmp(aname, "/vicep", 6)) {
108         strncpy(ascii, aname + 6, 2);
109     } else if (!strncmp(aname, "vicep", 5)) {
110         strncpy(ascii, aname + 5, 2);
111     } else
112         return -1;              /* bad partition name */
113     /* now partitions are named /vicepa ... /vicepz, /vicepaa, /vicepab,
114      * .../vicepzz, and are numbered from 0.  Do the appropriate conversion */
115     if (ascii[1] == 0) {
116         /* one char name, 0..25 */
117         if (ascii[0] < 'a' || ascii[0] > 'z')
118             return -1;          /* wrongo */
119         return ascii[0] - 'a';
120     } else {
121         /* two char name, 26 .. <whatever> */
122         if (ascii[0] < 'a' || ascii[0] > 'z')
123             return -1;          /* wrongo */
124         if (ascii[1] < 'a' || ascii[1] > 'z')
125             return -1;          /* just as bad */
126         return (ascii[0] - 'a') * 26 + (ascii[1] - 'a') + 26;
127     }
128 }
129 #endif
130
131 /* make ctime easier to use */
132 static char *
133 DateOf(afs_int32 atime)
134 {
135     static char tbuffer[30];
136     char *tp;
137     time_t t = (time_t) atime;
138     tp = ctime(&t);
139     if (tp) {
140         strcpy(tbuffer, tp);
141         tbuffer[24] = 0;        /* get rid of new line */
142     } else
143         strcpy(tbuffer, "BAD TIME");
144     return tbuffer;
145 }
146
147
148 /* use the syntax descr to get a connection, authenticated appropriately.
149  * aencrypt is set if we want to encrypt the data on the wire.
150  */
151 static struct rx_connection *
152 GetConn(struct cmd_syndesc *as, int aencrypt)
153 {
154     struct hostent *th;
155     char *hostname;
156     char *cellname = NULL;
157     const char *confdir;
158     afs_int32 code;
159     struct rx_connection *tconn;
160     afs_int32 addr;
161     struct afsconf_dir *tdir = NULL;
162     afsconf_secflags secFlags;
163     struct rx_securityClass *sc;
164     afs_int32 scIndex;
165
166     hostname = as->parms[0].items->data;
167     th = hostutil_GetHostByName(hostname);
168     if (!th) {
169         printf("bos: can't find address for host '%s'\n", hostname);
170         exit(1);
171     }
172     memcpy(&addr, th->h_addr, sizeof(afs_int32));
173
174     secFlags = AFSCONF_SECOPTS_FALLBACK_NULL;
175
176     if (as->parms[ADDPARMOFFSET + 2].items) { /* -localauth */
177         secFlags |= AFSCONF_SECOPTS_LOCALAUTH;
178         confdir = AFSDIR_SERVER_ETC_DIRPATH;
179     } else {
180         confdir = AFSDIR_CLIENT_ETC_DIRPATH;
181     }
182
183     if (as->parms[ADDPARMOFFSET + 1].items) { /* -noauth */
184         secFlags |= AFSCONF_SECOPTS_NOAUTH;
185     } else {
186         /* If we're running with -noauth, we don't need a configuration
187          * directory */
188         tdir = afsconf_Open(confdir);
189         if (tdir == NULL) {
190             printf("bos: can't open cell database (%s)\n", confdir);
191             exit(1);
192         }
193     }
194
195     if (as->parms[ADDPARMOFFSET].items) /* -cell */
196         cellname = as->parms[ADDPARMOFFSET].items->data;
197
198     code = afsconf_PickClientSecObj(tdir, secFlags, NULL, cellname,
199                                     &sc, &scIndex, NULL);
200     if (code) {
201         afs_com_err("bos", code, "(configuring connection security)");
202         exit(1);
203     }
204
205     if (scIndex == RX_SECIDX_NULL)
206         fprintf(stderr, "bos: running unauthenticated\n");
207
208     tconn =
209         rx_NewConnection(addr, htons(AFSCONF_NANNYPORT), 1, sc, scIndex);
210     if (!tconn) {
211         fprintf(stderr, "bos: could not create rx connection\n");
212         exit(1);
213     }
214     rxs_Release(sc);
215
216     return tconn;
217 }
218
219 static int
220 SetAuth(struct cmd_syndesc *as, void *arock)
221 {
222     afs_int32 code;
223     struct rx_connection *tconn;
224     afs_int32 flag;
225     char *tp;
226
227     tconn = GetConn(as, 0);
228     tp = as->parms[1].items->data;
229     if (strcmp(tp, "on") == 0)
230         flag = 0;               /* auth req.: noauthflag is false */
231     else if (strcmp(tp, "off") == 0)
232         flag = 1;
233     else {
234         printf
235             ("bos: illegal authentication specifier '%s', must be 'off' or 'on'.\n",
236              tp);
237         return 1;
238     }
239     code = BOZO_SetNoAuthFlag(tconn, flag);
240     if (code)
241         afs_com_err("bos", code, "(failed to set authentication flag)");
242     return 0;
243 }
244
245 /* take a name (e.g. foo/bar, and a dir e.g. /usr/afs/bin, and construct
246  * /usr/afs/bin/bar */
247 static int
248 ComputeDestDir(char *aname, char *adir, char *aresult, afs_int32 alen)
249 {
250     char *tp;
251
252     strcpy(aresult, adir);
253     tp = strrchr(aname, '/');
254     if (!tp) {
255         /* no '/' in name */
256         strcat(aresult, "/");
257         strcat(aresult, aname);
258     } else {
259         /* tp points at the / character */
260         strcat(aresult, tp);
261     }
262     return 0;
263 }
264
265 /* copy data from fd afd to rx call acall */
266 static int
267 CopyBytes(int afd, struct rx_call *acall)
268 {
269     afs_int32 code;
270     afs_int32 len;
271     char tbuffer[256];
272
273     while (1) {
274         len = read(afd, tbuffer, sizeof(tbuffer));
275         if (len < 0)
276             return errno;
277         if (len == 0)
278             return 0;           /* all done */
279         code = rx_Write(acall, tbuffer, len);
280         if (code != len)
281             return -1;
282     }
283 }
284
285 static int
286 Prune(struct cmd_syndesc *as, void *arock)
287 {
288     afs_int32 code;
289     struct rx_connection *tconn;
290     afs_int32 flags;
291
292     tconn = GetConn(as, 0);
293     flags = 0;
294     if (as->parms[1].items)
295         flags |= BOZO_PRUNEBAK;
296     if (as->parms[2].items)
297         flags |= BOZO_PRUNEOLD;
298     if (as->parms[3].items)
299         flags |= BOZO_PRUNECORE;
300     if (as->parms[4].items)
301         flags |= 0xff;
302     code = BOZO_Prune(tconn, flags);
303     if (code)
304         afs_com_err("bos", code, "(failed to prune server files)");
305     return code;
306 }
307
308 static int
309 Exec(struct cmd_syndesc *as, void *arock)
310 {
311     struct rx_connection *tconn;
312     afs_int32 code;
313
314     tconn = GetConn(as, 0);
315     code = BOZO_Exec(tconn, as->parms[1].items->data);
316     if (code)
317         printf("bos: failed to execute command (%s)\n", em(code));
318     return code;
319 }
320
321 static int
322 GetDate(struct cmd_syndesc *as, void *arock)
323 {
324     afs_int32 code;
325     char tbuffer[256];
326     char destDir[256];
327     afs_int32 time, bakTime, oldTime;
328     struct rx_connection *tconn;
329     struct cmd_item *ti;
330
331     tconn = GetConn(as, 0);
332     if (!as->parms[1].items) {
333         printf("bos: no files to check\n");
334         return 1;
335     }
336
337     /* compute dest dir or file; default MUST be canonical form of dir path */
338     if (as->parms[2].items)
339         strcpy(destDir, as->parms[2].items->data);
340     else
341         strcpy(destDir, AFSDIR_CANONICAL_SERVER_BIN_DIRPATH);
342
343     for (ti = as->parms[1].items; ti; ti = ti->next) {
344         /* check date for each file */
345         ComputeDestDir(ti->data, destDir, tbuffer, sizeof(tbuffer));
346         code = BOZO_GetDates(tconn, tbuffer, &time, &bakTime, &oldTime);
347         if (code) {
348             printf("bos: failed to check date on %s (%s)\n", ti->data,
349                    em(code));
350             return 1;
351         } else {
352             printf("File %s ", tbuffer);
353             if (time == 0)
354                 printf("does not exist, ");
355             else
356                 printf("dated %s, ", DateOf(time));
357             if (bakTime == 0)
358                 printf("no .BAK file, ");
359             else
360                 printf(".BAK file dated %s, ", DateOf(bakTime));
361             if (oldTime == 0)
362                 printf("no .OLD file.");
363             else
364                 printf(".OLD file dated %s.", DateOf(oldTime));
365             printf("\n");
366         }
367     }
368     return 0;
369 }
370
371 static int
372 UnInstall(struct cmd_syndesc *as, void *arock)
373 {
374     afs_int32 code;
375     char tbuffer[256];
376     char destDir[256];
377     struct cmd_item *ti;
378     struct rx_connection *tconn;
379
380     tconn = GetConn(as, 0);
381     if (!as->parms[1].items) {
382         printf("bos: no files to uninstall\n");
383         return 1;
384     }
385
386     /* compute dest dir or file; default MUST be canonical form of dir path */
387     if (as->parms[2].items)
388         strcpy(destDir, as->parms[2].items->data);
389     else
390         strcpy(destDir, AFSDIR_CANONICAL_SERVER_BIN_DIRPATH);
391
392     for (ti = as->parms[1].items; ti; ti = ti->next) {
393         /* uninstall each file */
394         ComputeDestDir(ti->data, destDir, tbuffer, sizeof(tbuffer));
395         code = BOZO_UnInstall(tconn, tbuffer);
396         if (code) {
397             printf("bos: failed to uninstall %s (%s)\n", ti->data, em(code));
398             return 1;
399         } else
400             printf("bos: uninstalled file %s\n", ti->data);
401     }
402     return 0;
403 }
404
405 static afs_int32
406 GetServerGoal(struct rx_connection *aconn, char *aname)
407 {
408     char buffer[500];
409     char *tp;
410     afs_int32 code;
411     struct bozo_status istatus;
412
413     tp = buffer;
414     code = BOZO_GetInstanceInfo(aconn, aname, &tp, &istatus);
415     if (code) {
416         printf("bos: failed to get instance info for '%s' (%s)\n", aname,
417                em(code));
418         /* if we can't get the answer, assume its running */
419         return BSTAT_NORMAL;
420     }
421     if (istatus.goal == 0)
422         return BSTAT_SHUTDOWN;
423     else
424         return BSTAT_NORMAL;
425 }
426
427 static int
428 Install(struct cmd_syndesc *as, void *arock)
429 {
430     struct rx_connection *tconn;
431     afs_int32 code;
432     struct cmd_item *ti;
433     struct stat tstat;
434     char tbuffer[256];
435     int fd;
436     struct rx_call *tcall;
437     char destDir[256];
438
439     tconn = GetConn(as, 0);
440     if (!as->parms[1].items) {
441         printf("bos: no files to install\n");
442         return 1;
443     }
444
445     /* compute dest dir or file; default MUST be canonical form of dir path */
446     if (as->parms[2].items)
447         strcpy(destDir, as->parms[2].items->data);
448     else
449         strcpy(destDir, AFSDIR_CANONICAL_SERVER_BIN_DIRPATH);
450
451     for (ti = as->parms[1].items; ti; ti = ti->next) {
452         /* install each file */
453         fd = open(ti->data, O_RDONLY);
454         if (fd < 0) {
455             /* better to quit on error than continue for install command */
456             printf("bos: can't find file '%s', quitting\n", ti->data);
457             return 1;
458         }
459         code = fstat(fd, &tstat);
460         if (code) {
461             printf("bos: failed to stat file %s, errno is %d\n", ti->data,
462                    errno);
463             return 1;
464         }
465         /* compute destination dir */
466         ComputeDestDir(ti->data, destDir, tbuffer, sizeof(tbuffer));
467         tcall = rx_NewCall(tconn);
468         code =
469             StartBOZO_Install(tcall, tbuffer, tstat.st_size,
470                               (afs_int32) tstat.st_mode, tstat.st_mtime);
471         if (code == 0) {
472             code = CopyBytes(fd, tcall);
473         }
474         code = rx_EndCall(tcall, code);
475         if (code) {
476             printf("bos: failed to install %s (%s)\n", ti->data, em(code));
477             return 1;
478         } else
479             printf("bos: installed file %s\n", ti->data);
480     }
481     return 0;
482 }
483
484 static int
485 Shutdown(struct cmd_syndesc *as, void *arock)
486 {
487     struct rx_connection *tconn;
488     afs_int32 code;
489     struct cmd_item *ti;
490
491     tconn = GetConn(as, 0);
492     if (as->parms[1].items == 0) {
493         code = BOZO_ShutdownAll(tconn);
494         if (code)
495             printf("bos: failed to shutdown servers (%s)\n", em(code));
496     } else {
497         for (ti = as->parms[1].items; ti; ti = ti->next) {
498             code = BOZO_SetTStatus(tconn, ti->data, BSTAT_SHUTDOWN);
499             if (code)
500                 printf("bos: failed to shutdown instance %s (%s)\n", ti->data,
501                        em(code));
502         }
503     }
504     if (as->parms[8].items) {
505         code = BOZO_WaitAll(tconn);
506         if (code)
507             printf("bos: can't wait for processes to shutdown (%s)\n",
508                    em(code));
509     }
510     return 0;
511 }
512
513 static int
514 BlockScannerCmd(struct cmd_syndesc *as, void *arock)
515 {
516     afs_int32 code;
517     struct rx_connection *tconn;
518     char BlockCommand[] = "/usr/afs/bin/scanner -block";
519
520     tconn = GetConn(as, 0);
521     code = BOZO_Exec(tconn, BlockCommand);
522     if (code)
523         printf
524             ("bos: failed to block scanner from making migration requests (%s)\n",
525              em(code));
526     return 0;
527 }
528
529 static int
530 UnBlockScannerCmd(struct cmd_syndesc *as, void *arock)
531 {
532     afs_int32 code;
533     struct rx_connection *tconn;
534     char UnBlockCommand[] = "/usr/afs/bin/scanner -unblock";
535
536     tconn = GetConn(as, 0);
537     code = BOZO_Exec(tconn, UnBlockCommand);
538     if (code)
539         printf
540             ("bos: failed to allow scanner daemon to make migration requests again (%s)\n",
541              em(code));
542     return 0;
543 }
544
545 static int
546 GetRestartCmd(struct cmd_syndesc *as, void *arock)
547 {
548     afs_int32 code;
549     struct ktime generalTime, newBinaryTime;
550     char messageBuffer[256];
551     struct rx_connection *tconn;
552     char *hostp;
553
554     hostp = as->parms[0].items->data;   /* host name for messages */
555     tconn = GetConn(as, 0);
556
557     code = BOZO_GetRestartTime(tconn, 1, (struct bozo_netKTime *) &generalTime);
558     if (code) {
559         printf("bos: failed to retrieve restart information (%s)\n",
560                em(code));
561         return code;
562     }
563     code = BOZO_GetRestartTime(tconn, 2, (struct bozo_netKTime *) &newBinaryTime);
564     if (code) {
565         printf("bos: failed to retrieve restart information (%s)\n",
566                em(code));
567         return code;
568     }
569
570     code = ktime_DisplayString(&generalTime, messageBuffer);
571     if (code) {
572         printf("bos: failed to decode restart time (%s)\n", em(code));
573         return code;
574     }
575     printf("Server %s restarts %s\n", hostp, messageBuffer);
576
577     code = ktime_DisplayString(&newBinaryTime, messageBuffer);
578     if (code) {
579         printf("bos: failed to decode restart time (%s)\n", em(code));
580         return code;
581     }
582     printf("Server %s restarts for new binaries %s\n", hostp, messageBuffer);
583
584     /* all done now */
585     return 0;
586 }
587
588 static int
589 SetRestartCmd(struct cmd_syndesc *as, void *arock)
590 {
591     afs_int32 count = 0;
592     afs_int32 code;
593     struct ktime restartTime;
594     afs_int32 type = 0 ;
595     struct rx_connection *tconn;
596
597     count = 0;
598     tconn = GetConn(as, 0);
599     if (as->parms[2].items) {
600         count++;
601         type = 1;
602     }
603     if (as->parms[3].items) {
604         count++;
605         type = 2;
606     }
607     if (count > 1) {
608         printf("bos: can't specify more than one restart time at a time\n");
609         return -1;
610     }
611     if (count == 0)
612         type = 1;               /* by default set general restart time */
613
614     if ((code = ktime_ParsePeriodic(as->parms[1].items->data, &restartTime))) {
615         printf("bos: failed to parse '%s' as periodic restart time(%s)\n",
616                as->parms[1].items->data, em(code));
617         return code;
618     }
619
620     code = BOZO_SetRestartTime(tconn, type, (struct bozo_netKTime *) &restartTime);
621     if (code) {
622         printf("bos: failed to set restart time at server (%s)\n", em(code));
623         return code;
624     }
625     return 0;
626 }
627
628 static int
629 Startup(struct cmd_syndesc *as, void *arock)
630 {
631     struct rx_connection *tconn;
632     afs_int32 code;
633     struct cmd_item *ti;
634
635     tconn = GetConn(as, 0);
636     if (as->parms[1].items == 0) {
637         code = BOZO_StartupAll(tconn);
638         if (code)
639             printf("bos: failed to startup servers (%s)\n", em(code));
640     } else {
641         for (ti = as->parms[1].items; ti; ti = ti->next) {
642             code = BOZO_SetTStatus(tconn, ti->data, BSTAT_NORMAL);
643             if (code)
644                 printf("bos: failed to start instance %s (%s)\n", ti->data,
645                        em(code));
646         }
647     }
648     return 0;
649 }
650
651 static int
652 Restart(struct cmd_syndesc *as, void *arock)
653 {
654     struct rx_connection *tconn;
655     afs_int32 code;
656     struct cmd_item *ti;
657
658     tconn = GetConn(as, 0);
659     if (as->parms[2].items) {
660         /* this is really a rebozo command */
661         if (as->parms[1].items) {
662             /* specified specific things to restart, can't do this at the same
663              * time */
664             printf
665                 ("bos: can't specify both '-bos' and specific servers to restart.\n");
666             return 1;
667         }
668         /* otherwise do a rebozo */
669         code = BOZO_ReBozo(tconn);
670         if (code)
671             printf("bos: failed to restart bosserver (%s)\n", em(code));
672         return code;
673     }
674     if (as->parms[1].items == 0) {
675         if (as->parms[3].items) {       /* '-all' */
676             code = BOZO_RestartAll(tconn);
677             if (code)
678                 printf("bos: failed to restart servers (%s)\n", em(code));
679         } else
680             printf("bos: To restart all processes please specify '-all'\n");
681     } else {
682         if (as->parms[3].items) {
683             printf("bos: Can't use '-all' along with individual instances\n");
684         } else {
685             for (ti = as->parms[1].items; ti; ti = ti->next) {
686                 code = BOZO_Restart(tconn, ti->data);
687                 if (code)
688                     printf("bos: failed to restart instance %s (%s)\n",
689                            ti->data, em(code));
690             }
691         }
692     }
693     return 0;
694 }
695
696 static int
697 SetCellName(struct cmd_syndesc *as, void *arock)
698 {
699     struct rx_connection *tconn;
700     afs_int32 code;
701
702     tconn = GetConn(as, 0);
703     code = BOZO_SetCellName(tconn, as->parms[1].items->data);
704     if (code)
705         printf("bos: failed to set cell (%s)\n", em(code));
706     return 0;
707 }
708
709 static int
710 AddHost(struct cmd_syndesc *as, void *arock)
711 {
712     struct rx_connection *tconn;
713     afs_int32 code;
714     struct cmd_item *ti;
715     char name[MAXHOSTCHARS];
716
717     tconn = GetConn(as, 0);
718     for (ti = as->parms[1].items; ti; ti = ti->next) {
719         if (as->parms[2].items) {
720             if (strlen(ti->data) > MAXHOSTCHARS - 3) {
721                 fprintf(stderr, "bos: host name too long\n");
722                 return E2BIG;
723             }
724             name[0] = '[';
725             strcpy(&name[1], ti->data);
726             strcat((char *)&name, "]");
727             code = BOZO_AddCellHost(tconn, name);
728         } else
729             code = BOZO_AddCellHost(tconn, ti->data);
730         if (code)
731             printf("bos: failed to add host %s (%s)\n", ti->data, em(code));
732     }
733     return 0;
734 }
735
736 static int
737 RemoveHost(struct cmd_syndesc *as, void *arock)
738 {
739     struct rx_connection *tconn;
740     afs_int32 code;
741     struct cmd_item *ti;
742
743     tconn = GetConn(as, 0);
744     for (ti = as->parms[1].items; ti; ti = ti->next) {
745         code = BOZO_DeleteCellHost(tconn, ti->data);
746         if (code)
747             printf("bos: failed to delete host %s (%s)\n", ti->data,
748                    em(code));
749     }
750     return 0;
751 }
752
753 static int
754 ListHosts(struct cmd_syndesc *as, void *arock)
755 {
756     struct rx_connection *tconn;
757     afs_int32 code;
758     char tbuffer[256];
759     char *tp;
760     afs_int32 i;
761
762     tp = tbuffer;
763     tconn = GetConn(as, 0);
764     code = BOZO_GetCellName(tconn, &tp);
765     if (code) {
766         printf("bos: failed to get cell name (%s)\n", em(code));
767         exit(1);
768     }
769     printf("Cell name is %s\n", tbuffer);
770     for (i = 0;; i++) {
771         code = BOZO_GetCellHost(tconn, i, &tp);
772         if (code == BZDOM)
773             break;
774         if (code != 0) {
775             printf("bos: failed to get cell host %d (%s)\n", i, em(code));
776             exit(1);
777         }
778         printf("    Host %d is %s\n", i + 1, tbuffer);
779     }
780     return 0;
781 }
782
783 static int
784 AddKey(struct cmd_syndesc *as, void *arock)
785 {
786     struct rx_connection *tconn;
787     afs_int32 code;
788     struct ktc_encryptionKey tkey;
789     afs_int32 temp;
790     char *tcell;
791     char cellBuffer[256];
792     char buf[BUFSIZ], ver[BUFSIZ];
793
794     tconn = GetConn(as, 1);
795     memset(&tkey, 0, sizeof(struct ktc_encryptionKey));
796
797     if (as->parms[1].items)
798         strcpy(buf, as->parms[1].items->data);
799     else {
800         /* prompt for key */
801         code = UI_UTIL_read_pw_string(buf, sizeof(buf), "input key: ", 0);
802         if (code || strlen(buf) == 0) {
803             fprintf(stderr, "Bad key: \n");
804             exit(1);
805         }
806         code = UI_UTIL_read_pw_string(ver, sizeof(ver), "Retype input key: ", 0);
807         if (code || strlen(ver) == 0) {
808             fprintf(stderr, "Bad key: \n");
809             exit(1);
810         }
811         if (strcmp(ver, buf) != 0) {
812             fprintf(stderr, "\nInput key mismatch\n");
813             exit(1);
814         }
815
816     }
817
818     temp = atoi(as->parms[2].items->data);
819     if (temp == 999) {
820         /* bcrypt key */
821 /*
822         strcpy((char *)&tkey, as->parms[1].items->data);
823 */
824         strcpy((char *)&tkey, buf);
825     } else {                    /* kerberos key */
826         if (as->parms[ADDPARMOFFSET].items) {
827             strcpy(cellBuffer, as->parms[ADDPARMOFFSET].items->data);
828
829             /* string to key needs upper-case cell names */
830
831             /* I don't believe this is true.  The string to key function
832              * actually expands the cell name, then LOWER-CASES it.  Perhaps it
833              * didn't use to??? */
834             ucstring(cellBuffer, cellBuffer, strlen(cellBuffer));
835             tcell = cellBuffer;
836         } else
837             tcell = NULL;       /* no cell specified, use current */
838 /*
839         ka_StringToKey(as->parms[1].items->data, tcell, &tkey);
840 */
841         ka_StringToKey(buf, tcell, &tkey);
842     }
843     tconn = GetConn(as, 1);
844     code = BOZO_AddKey(tconn, temp, ktc_to_bozoptr(&tkey));
845     if (code) {
846         printf("bos: failed to set key %d (%s)\n", temp, em(code));
847         exit(1);
848     }
849     return 0;
850 }
851
852 static int
853 RemoveKey(struct cmd_syndesc *as, void *arock)
854 {
855     struct rx_connection *tconn;
856     afs_int32 code;
857     afs_int32 temp;
858     struct cmd_item *ti;
859
860     tconn = GetConn(as, 0);
861     for (ti = as->parms[1].items; ti; ti = ti->next) {
862         temp = atoi(ti->data);
863         code = BOZO_DeleteKey(tconn, temp);
864         if (code) {
865             printf("bos: failed to delete key %d (%s)\n", temp, em(code));
866             exit(1);
867         }
868     }
869     return 0;
870 }
871
872 static int
873 ListKeys(struct cmd_syndesc *as, void *arock)
874 {
875     struct rx_connection *tconn;
876     afs_int32 code;
877     struct ktc_encryptionKey tkey;
878     afs_int32 kvno;
879     struct bozo_keyInfo keyInfo;
880     int everWorked;
881     afs_int32 i;
882
883     tconn = GetConn(as, 1);
884     everWorked = 0;
885     for (i = 0;; i++) {
886         code = BOZO_ListKeys(tconn, i, &kvno, ktc_to_bozoptr(&tkey), &keyInfo);
887         if (code)
888             break;
889         everWorked = 1;
890         /* first check if key is returned */
891         if ((!ka_KeyIsZero((char *)&tkey, sizeof(tkey)))
892             && (as->parms[1].items)) {
893             printf("key %d is '", kvno);
894             ka_PrintBytes((char *)&tkey, sizeof(tkey));
895             printf("'\n");
896         } else {
897             if (keyInfo.keyCheckSum == 0)       /* shouldn't happen */
898                 printf("key version is %d\n", kvno);
899             else
900                 printf("key %d has cksum %u\n", kvno, keyInfo.keyCheckSum);
901         }
902     }
903     if (everWorked) {
904         printf("Keys last changed on %s.\n", DateOf(keyInfo.mod_sec));
905     }
906     if (code != BZDOM)
907         printf("bos: %s error encountered while listing keys\n", em(code));
908     else
909         printf("All done.\n");
910     return 0;
911 }
912
913 static int
914 AddSUser(struct cmd_syndesc *as, void *arock)
915 {
916     struct rx_connection *tconn;
917     afs_int32 code;
918     int failed;
919     struct cmd_item *ti;
920
921     failed = 0;
922     tconn = GetConn(as, 0);
923     for (ti = as->parms[1].items; ti; ti = ti->next) {
924         code = BOZO_AddSUser(tconn, ti->data);
925         if (code) {
926             printf("bos: failed to add user '%s' (%s)\n", ti->data, em(code));
927             failed = 1;
928         }
929     }
930     return failed;
931 }
932
933 static int
934 RemoveSUser(struct cmd_syndesc *as, void *arock)
935 {
936     struct rx_connection *tconn;
937     struct cmd_item *ti;
938     afs_int32 code;
939     int failed;
940
941     failed = 0;
942     tconn = GetConn(as, 0);
943     for (ti = as->parms[1].items; ti; ti = ti->next) {
944         code = BOZO_DeleteSUser(tconn, ti->data);
945         if (code) {
946             printf("bos: failed to delete user '%s', ", ti->data);
947             if (code == ENOENT)
948                 printf("(no such user)\n");
949             else
950                 printf("(%s)\n", em(code));
951             failed = 1;
952         }
953     }
954     return failed;
955 }
956
957 #define NPERLINE    10          /* dudes to print per line */
958 static int
959 ListSUsers(struct cmd_syndesc *as, void *arock)
960 {
961     struct rx_connection *tconn;
962     int i;
963     afs_int32 code;
964     char tbuffer[256];
965     char *tp;
966     int lastNL, printGreeting;
967
968     tconn = GetConn(as, 0);
969     lastNL = 0;
970     printGreeting = 1;
971     for (i = 0;; i++) {
972         tp = tbuffer;
973         code = BOZO_ListSUsers(tconn, i, &tp);
974         if (code)
975             break;
976         if (printGreeting) {
977             printGreeting = 0;  /* delay until after first call succeeds */
978             printf("SUsers are: ");
979         }
980         printf("%s ", tbuffer);
981         if ((i % NPERLINE) == NPERLINE - 1) {
982             printf("\n");
983             lastNL = 1;
984         } else
985             lastNL = 0;
986     }
987     if (code != 1) {
988         /* a real error code, instead of scanned past end */
989         printf("bos: failed to retrieve super-user list (%s)\n", em(code));
990         return code;
991     }
992     if (lastNL == 0)
993         printf("\n");
994     return 0;
995 }
996
997 static int
998 StatServer(struct cmd_syndesc *as, void *arock)
999 {
1000     struct rx_connection *tconn;
1001     afs_int32 code;
1002     int i;
1003     char ibuffer[BOZO_BSSIZE];
1004     char *tp;
1005     int int32p;
1006
1007     /* int32p==1 is obsolete, smaller, printout */
1008     int32p = (as->parms[2].items != 0 ? 2 : 0);
1009
1010     /* no parms does something pretty different */
1011     if (as->parms[1].items)
1012         return IStatServer(as, int32p);
1013
1014     tconn = GetConn(as, 0);
1015     for (i = 0;; i++) {
1016         /* for each instance */
1017         tp = ibuffer;
1018         code = BOZO_EnumerateInstance(tconn, i, &tp);
1019         if (code == BZDOM)
1020             break;
1021         if (code) {
1022             printf("bos: failed to contact host's bosserver (%s).\n",
1023                    em(code));
1024             break;
1025         }
1026         DoStat(ibuffer, tconn, int32p, (i == 0));       /* print status line */
1027     }
1028     return 0;
1029 }
1030
1031 static int
1032 CreateServer(struct cmd_syndesc *as, void *arock)
1033 {
1034     struct rx_connection *tconn;
1035     afs_int32 code;
1036     char *parms[6];
1037     struct cmd_item *ti;
1038     int i;
1039     char *type, *name, *notifier = NONOTIFIER;
1040
1041     tconn = GetConn(as, 0);
1042     for (i = 0; i < 6; i++)
1043         parms[i] = "";
1044     for (i = 0, ti = as->parms[3].items; (ti && i < 6); ti = ti->next, i++) {
1045         parms[i] = ti->data;
1046     }
1047     name = as->parms[1].items->data;
1048     type = as->parms[2].items->data;
1049     if ((ti = as->parms[4].items)) {
1050         notifier = ti->data;
1051     }
1052     code =
1053         BOZO_CreateBnode(tconn, type, name, parms[0], parms[1], parms[2],
1054                          parms[3], parms[4], notifier);
1055     if (code) {
1056         printf
1057             ("bos: failed to create new server instance %s of type '%s' (%s)\n",
1058              name, type, em(code));
1059     }
1060     return code;
1061 }
1062
1063 static int
1064 DeleteServer(struct cmd_syndesc *as, void *arock)
1065 {
1066     struct rx_connection *tconn;
1067     afs_int32 code;
1068     struct cmd_item *ti;
1069
1070     code = 0;
1071     tconn = GetConn(as, 0);
1072     for (ti = as->parms[1].items; ti; ti = ti->next) {
1073         code = BOZO_DeleteBnode(tconn, ti->data);
1074         if (code) {
1075             if (code == BZBUSY)
1076                 printf("bos: can't delete running instance '%s'\n", ti->data);
1077             else
1078                 printf("bos: failed to delete instance '%s' (%s)\n", ti->data,
1079                        em(code));
1080         }
1081     }
1082     return code;
1083 }
1084
1085 static int
1086 StartServer(struct cmd_syndesc *as, void *arock)
1087 {
1088     struct rx_connection *tconn;
1089     afs_int32 code;
1090     struct cmd_item *ti;
1091
1092     code = 0;
1093     tconn = GetConn(as, 0);
1094     for (ti = as->parms[1].items; ti; ti = ti->next) {
1095         code = BOZO_SetStatus(tconn, ti->data, BSTAT_NORMAL);
1096         if (code)
1097             printf("bos: failed to start instance '%s' (%s)\n", ti->data,
1098                    em(code));
1099     }
1100     return code;
1101 }
1102
1103 static int
1104 StopServer(struct cmd_syndesc *as, void *arock)
1105 {
1106     struct rx_connection *tconn;
1107     afs_int32 code;
1108     struct cmd_item *ti;
1109
1110     code = 0;
1111     tconn = GetConn(as, 0);
1112     for (ti = as->parms[1].items; ti; ti = ti->next) {
1113         code = BOZO_SetStatus(tconn, ti->data, BSTAT_SHUTDOWN);
1114         if (code)
1115             printf("bos: failed to change stop instance '%s' (%s)\n",
1116                    ti->data, em(code));
1117     }
1118     if (as->parms[8].items) {
1119         code = BOZO_WaitAll(tconn);
1120         if (code)
1121             printf("bos: can't wait for processes to shutdown (%s)\n",
1122                    em(code));
1123     }
1124     return code;
1125 }
1126
1127 #define PARMBUFFERSSIZE 32
1128
1129 static afs_int32
1130 DoSalvage(struct rx_connection * aconn, char * aparm1, char * aparm2,
1131           char * aoutName, afs_int32 showlog, char * parallel,
1132           char * atmpDir, char * orphans, int dafs,
1133           struct MRAFSSalvageParms * mrafsParm)
1134 {
1135     afs_int32 code;
1136     char *parms[6];
1137     char buffer;
1138     char tbuffer[BOZO_BSSIZE];
1139     struct bozo_status istatus;
1140     struct rx_call *tcall;
1141     char *tp;
1142     FILE *outFile;
1143     int closeIt;
1144     char partName[20];          /* canonical name for partition */
1145     char pbuffer[PARMBUFFERSSIZE];
1146     afs_int32 partNumber;
1147     char *notifier = NONOTIFIER;
1148
1149     /* if a partition was specified, canonicalize the name, since
1150      * the salvager has a stupid partition ID parser */
1151     if (aparm1) {
1152         partNumber = volutil_GetPartitionID(aparm1);
1153         if (partNumber < 0) {
1154             printf("bos: could not parse partition ID '%s'\n", aparm1);
1155             return EINVAL;
1156         }
1157         tp = volutil_PartitionName(partNumber);
1158         if (!tp) {
1159             printf("bos: internal error parsing partition ID '%s'\n", aparm1);
1160             return EINVAL;
1161         }
1162         strcpy(partName, tp);
1163     } else
1164         partName[0] = 0;
1165
1166     /* open the file name */
1167     if (aoutName) {
1168         outFile = fopen(aoutName, "w");
1169         if (!outFile) {
1170             printf("bos: can't open specified SalvageLog file '%s'\n",
1171                    aoutName);
1172             return ENOENT;
1173         }
1174         closeIt = 1;            /* close this file later */
1175     } else {
1176         outFile = stdout;
1177         closeIt = 0;            /* don't close this file later */
1178     }
1179
1180     for (code = 2; code < 6; code++)
1181         parms[code] = "";
1182     if (!aparm2)
1183         aparm2 = "";
1184
1185     /* MUST pass canonical (wire-format) salvager path to bosserver */
1186     if (*aparm2 != 0) {
1187         /* single volume salvage */
1188         if (dafs) {
1189             /* for DAFS, we call the salvagserver binary with special options.
1190              * in this mode, it simply uses SALVSYNC to tell the currently
1191              * running salvageserver to offline and salvage the volume in question */
1192             strncpy(tbuffer, AFSDIR_CANONICAL_SERVER_SALSRV_FILEPATH, BOZO_BSSIZE);
1193
1194             if ((strlen(tbuffer) + 9 + strlen(partName) + 1 + strlen(aparm2) +
1195                  1) > BOZO_BSSIZE) {
1196                 printf("bos: command line too big\n");
1197                 return (E2BIG);
1198             }
1199
1200             strcat(tbuffer, " -client ");
1201             strcat(tbuffer, partName);
1202             strcat(tbuffer, " ");
1203             strcat(tbuffer, aparm2);
1204         } else {
1205             strncpy(tbuffer, AFSDIR_CANONICAL_SERVER_SALVAGER_FILEPATH, BOZO_BSSIZE);
1206
1207             if ((strlen(tbuffer) + 1 + strlen(partName) + 1 + strlen(aparm2) +
1208                  1) > BOZO_BSSIZE) {
1209                 printf("bos: command line too big\n");
1210                 return (E2BIG);
1211             }
1212
1213             strcat(tbuffer, " ");
1214             strcat(tbuffer, partName);
1215             strcat(tbuffer, " ");
1216             strcat(tbuffer, aparm2);
1217         }
1218     } else {
1219         /* partition salvage */
1220         strncpy(tbuffer, AFSDIR_CANONICAL_SERVER_SALVAGER_FILEPATH, BOZO_BSSIZE);
1221         if ((strlen(tbuffer) + 4 + strlen(partName) + 1) > BOZO_BSSIZE) {
1222             printf("bos: command line too big\n");
1223             return (E2BIG);
1224         }
1225         strcat(tbuffer, " -force ");
1226         strcat(tbuffer, partName);
1227     }
1228
1229     /* For DAFS, specifying a single volume does not result in a standard
1230      * salvager call.  Instead, it simply results in a SALVSYNC call to the
1231      * online salvager daemon.  This interface does not give us the same rich
1232      * set of call flags.  Thus, we skip these steps for DAFS single-volume
1233      * calls */
1234     if (!dafs || (*aparm2 == 0)) {
1235         /* add the parallel option if given */
1236         if (parallel != NULL) {
1237             if ((strlen(tbuffer) + 11 + strlen(parallel) + 1) > BOZO_BSSIZE) {
1238                 printf("bos: command line too big\n");
1239                 return (E2BIG);
1240             }
1241             strcat(tbuffer, " -parallel ");
1242             strcat(tbuffer, parallel);
1243         }
1244
1245         /* add the tmpdir option if given */
1246         if (atmpDir != NULL) {
1247             if ((strlen(tbuffer) + 9 + strlen(atmpDir) + 1) > BOZO_BSSIZE) {
1248                 printf("bos: command line too big\n");
1249                 return (E2BIG);
1250             }
1251             strcat(tbuffer, " -tmpdir ");
1252             strcat(tbuffer, atmpDir);
1253         }
1254
1255         /* add the orphans option if given */
1256         if (orphans != NULL) {
1257             if ((strlen(tbuffer) + 10 + strlen(orphans) + 1) > BOZO_BSSIZE) {
1258                 printf("bos: command line too big\n");
1259                 return (E2BIG);
1260             }
1261             strcat(tbuffer, " -orphans ");
1262             strcat(tbuffer, orphans);
1263         }
1264
1265         if (mrafsParm->Optdebug)
1266             strcat(tbuffer, " -debug");
1267         if (mrafsParm->Optnowrite)
1268             strcat(tbuffer, " -nowrite");
1269         if (mrafsParm->Optforce)
1270             strcat(tbuffer, " -force");
1271         if (mrafsParm->Optoktozap)
1272             strcat(tbuffer, " -oktozap");
1273         if (mrafsParm->Optrootfiles)
1274             strcat(tbuffer, " -rootfiles");
1275         if (mrafsParm->Optsalvagedirs)
1276             strcat(tbuffer, " -salvagedirs");
1277         if (mrafsParm->Optblockreads)
1278             strcat(tbuffer, " -blockreads");
1279         if (mrafsParm->OptListResidencies)
1280             strcat(tbuffer, " -ListResidencies");
1281         if (mrafsParm->OptSalvageRemote)
1282             strcat(tbuffer, " -SalvageRemote");
1283         if (mrafsParm->OptSalvageArchival)
1284             strcat(tbuffer, " -SalvageArchival");
1285         if (mrafsParm->OptIgnoreCheck)
1286             strcat(tbuffer, " -IgnoreCheck");
1287         if (mrafsParm->OptForceOnLine)
1288             strcat(tbuffer, " -ForceOnLine");
1289         if (mrafsParm->OptUseRootDirACL)
1290             strcat(tbuffer, " -UseRootDirACL");
1291         if (mrafsParm->OptTraceBadLinkCounts)
1292             strcat(tbuffer, " -TraceBadLinkCounts");
1293         if (mrafsParm->OptDontAskFS)
1294             strcat(tbuffer, " -DontAskFS");
1295         if (mrafsParm->OptLogLevel) {
1296             sprintf(pbuffer, " -LogLevel %ld", afs_printable_int32_ld(mrafsParm->OptLogLevel));
1297             strcat(tbuffer, pbuffer);
1298         }
1299         if (mrafsParm->OptRxDebug)
1300             strcat(tbuffer, " -rxdebug");
1301         if (mrafsParm->OptResidencies) {
1302             sprintf(pbuffer, " -Residencies %lu",
1303                     afs_printable_uint32_lu(mrafsParm->OptResidencies));
1304             strcat(tbuffer, pbuffer);
1305         }
1306     }
1307
1308     parms[0] = tbuffer;
1309     parms[1] = "now";           /* when to do it */
1310     code =
1311         BOZO_CreateBnode(aconn, "cron", "salvage-tmp", parms[0], parms[1],
1312                          parms[2], parms[3], parms[4], notifier);
1313     if (code) {
1314         printf("bos: failed to start 'salvager' (%s)\n", em(code));
1315         goto done;
1316     }
1317     /* now wait for bnode to disappear */
1318     while (1) {
1319         IOMGR_Sleep(5);
1320         tp = tbuffer;
1321         code = BOZO_GetInstanceInfo(aconn, "salvage-tmp", &tp, &istatus);
1322         if (code)
1323             break;
1324         printf("bos: waiting for salvage to complete.\n");
1325     }
1326     if (code != BZNOENT) {
1327         printf("bos: salvage failed (%s)\n", em(code));
1328         goto done;
1329     }
1330     code = 0;
1331
1332     /* now print the log file to the output file */
1333     printf("bos: salvage completed\n");
1334     if (aoutName || showlog) {
1335         fprintf(outFile, "SalvageLog:\n");
1336         tcall = rx_NewCall(aconn);
1337         /* MUST pass canonical (wire-format) salvager log path to bosserver */
1338         code =
1339             StartBOZO_GetLog(tcall, AFSDIR_CANONICAL_SERVER_SLVGLOG_FILEPATH);
1340         if (code) {
1341             rx_EndCall(tcall, code);
1342             goto done;
1343         }
1344         /* copy data */
1345         while (1) {
1346             code = rx_Read(tcall, &buffer, 1);
1347             if (code != 1)
1348                 break;
1349             putc(buffer, outFile);
1350             if (buffer == 0)
1351                 break;          /* the end delimeter */
1352         }
1353         code = rx_EndCall(tcall, 0);
1354         /* fall through into cleanup code */
1355     }
1356
1357   done:
1358     if (closeIt && outFile)
1359         fclose(outFile);
1360     return code;
1361 }
1362
1363 static int
1364 GetLogCmd(struct cmd_syndesc *as, void *arock)
1365 {
1366     struct rx_connection *tconn;
1367     struct rx_call *tcall;
1368     afs_int32 code;
1369     char buffer;
1370     int error;
1371
1372     printf("Fetching log file '%s'...\n", as->parms[1].items->data);
1373     tconn = GetConn(as, 0);
1374     tcall = rx_NewCall(tconn);
1375     code = StartBOZO_GetLog(tcall, as->parms[1].items->data);
1376     if (code) {
1377         rx_EndCall(tcall, code);
1378         goto done;
1379     }
1380     /* copy data */
1381     error = 0;
1382     while (1) {
1383         code = rx_Read(tcall, &buffer, 1);
1384         if (code != 1) {
1385             error = EIO;
1386             break;
1387         }
1388         if (buffer == 0)
1389             break;              /* the end delimeter */
1390         putchar(buffer);
1391     }
1392     code = rx_EndCall(tcall, error);
1393     /* fall through into cleanup code */
1394
1395   done:
1396     if (code)
1397         afs_com_err("bos", code, "(while reading log)");
1398     return code;
1399 }
1400
1401 static int
1402 IsDAFS(struct rx_connection *aconn)
1403 {
1404     char buffer[BOZO_BSSIZE];
1405     char *tp;
1406     struct bozo_status istatus;
1407     afs_int32 code;
1408
1409     tp = &buffer[0];
1410
1411     code = BOZO_GetInstanceInfo(aconn, "dafs", &tp, &istatus);
1412     if (code) {
1413         /* no dafs bnode; cannot be dafs */
1414         return 0;
1415     }
1416     if (istatus.goal) {
1417         /* dafs bnode is running; we must be dafs */
1418         return 1;
1419     }
1420
1421     /* At this point, either we have neither a dafs nor fs bnode running, or
1422      * we have an fs bnode running but the dafs bnode is stopped.
1423      *
1424      * If an fs bnode is running, we are obviously not DAFS. If an fs bnode
1425      * is not running and a dafs bnode is not running... it's not certain if
1426      * we are DAFS or not DAFS. Just return 0 in that case; it shouldn't much
1427      * matter what we return, anyway */
1428     return 0;
1429 }
1430
1431 static int
1432 SalvageCmd(struct cmd_syndesc *as, void *arock)
1433 {
1434     struct rx_connection *tconn;
1435     afs_int32 code, rc, i;
1436     char *outName;
1437     char tname[BOZO_BSSIZE];
1438     afs_int32 newID;
1439     extern struct ubik_client *cstruct;
1440     afs_int32 curGoal, showlog = 0, dafs = 0, mrafs = 0;
1441     char *parallel;
1442     char *tmpDir;
1443     char *orphans;
1444     char *tp;
1445     char * serviceName;
1446     struct MRAFSSalvageParms mrafsParm;
1447
1448     memset(&mrafsParm, 0, sizeof(mrafsParm));
1449
1450     /* parm 0 is machine name, 1 is partition, 2 is volume, 3 is -all flag */
1451     tconn = GetConn(as, 0);
1452
1453     tp = &tname[0];
1454
1455     /* find out whether fileserver is running demand attach fs */
1456     if (IsDAFS(tconn)) {
1457         dafs = 1;
1458         serviceName = "dafs";
1459         /* Find out whether fileserver is running MR-AFS (has a scanner instance) */
1460         /* XXX this should really be done some other way, potentially by RPC */
1461         if ((code = BOZO_GetInstanceParm(tconn, serviceName, 4, &tp) == 0))
1462             mrafs = 1;
1463     } else {
1464         serviceName = "fs";
1465         /* Find out whether fileserver is running MR-AFS (has a scanner instance) */
1466         /* XXX this should really be done some other way, potentially by RPC */
1467         if ((code = BOZO_GetInstanceParm(tconn, serviceName, 3, &tp) == 0))
1468             mrafs = 1;
1469     }
1470
1471     /* we can do a volume, a partition or the whole thing, but not mixtures
1472      * thereof */
1473     if (!as->parms[1].items && as->parms[2].items) {
1474         printf("bos: must specify partition to salvage individual volume.\n");
1475         return -1;
1476     }
1477     if (as->parms[5].items && as->parms[3].items) {
1478         printf("bos: can not specify both -file and -showlog.\n");
1479         return -1;
1480     }
1481     if (as->parms[4].items && (as->parms[1].items || as->parms[2].items)) {
1482         printf("bos: can not specify -all with other flags.\n");
1483         return -1;
1484     }
1485
1486     /* get the output file name, if any */
1487     if (as->parms[3].items)
1488         outName = as->parms[3].items->data;
1489     else
1490         outName = NULL;
1491
1492     if (as->parms[5].items)
1493         showlog = 1;
1494
1495     /* parallel option */
1496     parallel = NULL;
1497     if (as->parms[6].items)
1498         parallel = as->parms[6].items->data;
1499
1500     /* get the tmpdir filename if any */
1501     tmpDir = NULL;
1502     if (as->parms[7].items)
1503         tmpDir = as->parms[7].items->data;
1504
1505     /* -orphans option */
1506     orphans = NULL;
1507     if (as->parms[8].items) {
1508         if (mrafs) {
1509             printf("Can't specify -orphans for MR-AFS fileserver\n");
1510             return EINVAL;
1511         }
1512         orphans = as->parms[8].items->data;
1513     }
1514
1515     if (dafs) {
1516         if (!as->parms[9].items) { /* -forceDAFS flag */
1517             printf("This is a demand attach fileserver.  Are you sure you want to proceed with a manual salvage?\n");
1518             printf("must specify -forceDAFS flag in order to proceed.\n");
1519             return EINVAL;
1520         }
1521     }
1522
1523     if (mrafs) {
1524         if (as->parms[MRAFS_OFFSET].items)
1525             mrafsParm.Optdebug = 1;
1526         if (as->parms[MRAFS_OFFSET + 1].items)
1527             mrafsParm.Optnowrite = 1;
1528         if (as->parms[MRAFS_OFFSET + 2].items)
1529             mrafsParm.Optforce = 1;
1530         if (as->parms[MRAFS_OFFSET + 3].items)
1531             mrafsParm.Optoktozap = 1;
1532         if (as->parms[MRAFS_OFFSET + 4].items)
1533             mrafsParm.Optrootfiles = 1;
1534         if (as->parms[MRAFS_OFFSET + 5].items)
1535             mrafsParm.Optsalvagedirs = 1;
1536         if (as->parms[MRAFS_OFFSET + 6].items)
1537             mrafsParm.Optblockreads = 1;
1538         if (as->parms[MRAFS_OFFSET + 7].items)
1539             mrafsParm.OptListResidencies = 1;
1540         if (as->parms[MRAFS_OFFSET + 8].items)
1541             mrafsParm.OptSalvageRemote = 1;
1542         if (as->parms[MRAFS_OFFSET + 9].items)
1543             mrafsParm.OptSalvageArchival = 1;
1544         if (as->parms[MRAFS_OFFSET + 10].items)
1545             mrafsParm.OptIgnoreCheck = 1;
1546         if (as->parms[MRAFS_OFFSET + 11].items)
1547             mrafsParm.OptForceOnLine = 1;
1548         if (as->parms[MRAFS_OFFSET + 12].items)
1549             mrafsParm.OptUseRootDirACL = 1;
1550         if (as->parms[MRAFS_OFFSET + 13].items)
1551             mrafsParm.OptTraceBadLinkCounts = 1;
1552         if (as->parms[MRAFS_OFFSET + 14].items)
1553             mrafsParm.OptDontAskFS = 1;
1554         if (as->parms[MRAFS_OFFSET + 15].items)
1555             mrafsParm.OptLogLevel =
1556                 atoi(as->parms[MRAFS_OFFSET + 15].items->data);
1557         if (as->parms[MRAFS_OFFSET + 16].items)
1558             mrafsParm.OptRxDebug = 1;
1559         if (as->parms[MRAFS_OFFSET + 17].items) {
1560             if (as->parms[MRAFS_OFFSET + 8].items
1561                 || as->parms[MRAFS_OFFSET + 9].items) {
1562                 printf
1563                     ("Can't specify -Residencies with -SalvageRemote or -SalvageArchival\n");
1564                 return EINVAL;
1565             }
1566             code =
1567                 util_GetUInt32(as->parms[MRAFS_OFFSET + 17].items->data,
1568                                &mrafsParm.OptResidencies);
1569             if (code) {
1570                 printf("bos: '%s' is not a valid residency mask.\n",
1571                        as->parms[MRAFS_OFFSET + 17].items->data);
1572                 return code;
1573             }
1574         }
1575     } else {
1576         int stop = 0;
1577
1578         for (i = MRAFS_OFFSET; i < ADDPARMOFFSET; i++) {
1579             if (as->parms[i].items) {
1580                 printf(" %s only possible for MR-AFS fileserver.\n",
1581                        as->parms[i].name);
1582                 stop = 1;
1583             }
1584         }
1585         if (stop)
1586             exit(1);
1587     }
1588
1589     if (as->parms[4].items) {
1590         /* salvage whole enchilada */
1591         curGoal = GetServerGoal(tconn, serviceName);
1592         if (curGoal == BSTAT_NORMAL) {
1593             printf("bos: shutting down '%s'.\n", serviceName);
1594             code = BOZO_SetTStatus(tconn, serviceName, BSTAT_SHUTDOWN);
1595             if (code) {
1596                 printf("bos: failed to stop '%s' (%s)\n", serviceName, em(code));
1597                 return code;
1598             }
1599             code = BOZO_WaitAll(tconn); /* wait for shutdown to complete */
1600             if (code)
1601                 printf
1602                     ("bos: failed to wait for file server shutdown, continuing.\n");
1603         }
1604         /* now do the salvage operation */
1605         printf("Starting salvage.\n");
1606         rc = DoSalvage(tconn, NULL, NULL, outName, showlog, parallel, tmpDir,
1607                        orphans, dafs, &mrafsParm);
1608         if (curGoal == BSTAT_NORMAL) {
1609             printf("bos: restarting %s.\n", serviceName);
1610             code = BOZO_SetTStatus(tconn, serviceName, BSTAT_NORMAL);
1611             if (code) {
1612                 printf("bos: failed to restart '%s' (%s)\n", serviceName, em(code));
1613                 return code;
1614             }
1615         }
1616         if (rc)
1617             return rc;
1618     } else if (!as->parms[2].items) {
1619         if (!as->parms[1].items) {
1620             printf
1621                 ("bos: must specify -all switch to salvage all partitions.\n");
1622             return -1;
1623         }
1624         if (volutil_GetPartitionID(as->parms[1].items->data) < 0) {
1625             /* can't parse volume ID, so complain before shutting down
1626              * file server.
1627              */
1628             printf("bos: can't interpret %s as partition ID.\n",
1629                    as->parms[1].items->data);
1630             return -1;
1631         }
1632         curGoal = GetServerGoal(tconn, serviceName);
1633         /* salvage a whole partition (specified by parms[1]) */
1634         if (curGoal == BSTAT_NORMAL) {
1635             printf("bos: shutting down '%s'.\n", serviceName);
1636             code = BOZO_SetTStatus(tconn, serviceName, BSTAT_SHUTDOWN);
1637             if (code) {
1638                 printf("bos: can't stop '%s' (%s)\n", serviceName, em(code));
1639                 return code;
1640             }
1641             code = BOZO_WaitAll(tconn); /* wait for shutdown to complete */
1642             if (code)
1643                 printf
1644                     ("bos: failed to wait for file server shutdown, continuing.\n");
1645         }
1646         /* now do the salvage operation */
1647         printf("Starting salvage.\n");
1648         rc = DoSalvage(tconn, as->parms[1].items->data, NULL, outName,
1649                        showlog, parallel, tmpDir, orphans, dafs, &mrafsParm);
1650         if (curGoal == BSTAT_NORMAL) {
1651             printf("bos: restarting '%s'.\n", serviceName);
1652             code = BOZO_SetTStatus(tconn, serviceName, BSTAT_NORMAL);
1653             if (code) {
1654                 printf("bos: failed to restart '%s' (%s)\n", serviceName, em(code));
1655                 return code;
1656             }
1657         }
1658         if (rc)
1659             return rc;
1660     } else {
1661         /* salvage individual volume (don't shutdown fs first), just use
1662          * single-shot cron bnode.  Must leave server running when using this
1663          * option, since salvager will ask file server for the volume */
1664         char *tmpname;
1665         afs_int32 err;
1666         const char *confdir;
1667         int localauth;
1668
1669         if (as->parms[ADDPARMOFFSET].items)
1670             tmpname = as->parms[ADDPARMOFFSET].items->data;
1671         else
1672             tmpname = NULL;
1673
1674         localauth = (as->parms[ADDPARMOFFSET + 2].items != 0);
1675         confdir =
1676             (localauth ? AFSDIR_SERVER_ETC_DIRPATH :
1677              AFSDIR_CLIENT_ETC_DIRPATH);
1678         code = vsu_ClientInit( /* noauth */ 1, confdir, tmpname,
1679                               /* server auth */ 0, &cstruct, (int (*)())0);
1680         if (code == 0) {
1681             newID = vsu_GetVolumeID(as->parms[2].items->data, cstruct, &err);
1682             if (newID == 0) {
1683                 printf("bos: can't interpret %s as volume name or ID\n",
1684                        as->parms[2].items->data);
1685                 return -1;
1686             }
1687             sprintf(tname, "%u", newID);
1688         } else {
1689             printf
1690                 ("bos: can't initialize volume system client (code %d), trying anyway.\n",
1691                  code);
1692             strncpy(tname, as->parms[2].items->data, sizeof(tname));
1693         }
1694         if (volutil_GetPartitionID(as->parms[1].items->data) < 0) {
1695             /* can't parse volume ID, so complain before shutting down
1696              * file server.
1697              */
1698             printf("bos: can't interpret %s as partition ID.\n",
1699                    as->parms[1].items->data);
1700             return -1;
1701         }
1702         printf("Starting salvage.\n");
1703         rc = DoSalvage(tconn, as->parms[1].items->data, tname, outName,
1704                        showlog, parallel, tmpDir, orphans, dafs, &mrafsParm);
1705         if (rc)
1706             return rc;
1707     }
1708     return 0;
1709 }
1710
1711 static int
1712 IStatServer(struct cmd_syndesc *as, int int32p)
1713 {
1714     struct rx_connection *tconn;
1715     struct cmd_item *ti;
1716     int firstTime = 1;
1717
1718     tconn = GetConn(as, 0);
1719     for (ti = as->parms[1].items; ti; ti = ti->next) {
1720         DoStat(ti->data, tconn, int32p, firstTime);
1721         firstTime = 0;
1722     }
1723     return 0;
1724 }
1725
1726 static int
1727 DoStat(IN char *aname,
1728        IN struct rx_connection *aconn,
1729        IN int aint32p,
1730        IN int firstTime)        /* true iff first instance in cmd */
1731 {
1732     afs_int32 temp;
1733     char buffer[500];
1734     afs_int32 code;
1735     afs_int32 i;
1736     struct bozo_status istatus;
1737     char *tp;
1738     char *is1, *is2, *is3, *is4;        /* instance strings */
1739
1740     tp = buffer;
1741     code = BOZO_GetInstanceInfo(aconn, aname, &tp, &istatus);
1742     if (code) {
1743         printf("bos: failed to get instance info for '%s' (%s)\n", aname,
1744                em(code));
1745         return -1;
1746     }
1747     if (firstTime && aint32p && (istatus.flags & BOZO_BADDIRACCESS))
1748         printf
1749             ("Bosserver reports inappropriate access on server directories\n");
1750     printf("Instance %s, ", aname);
1751     if (aint32p)
1752         printf("(type is %s) ", buffer);
1753     if (istatus.fileGoal == istatus.goal) {
1754         if (!istatus.goal)
1755             printf("disabled, ");
1756     } else {
1757         if (istatus.fileGoal)
1758             printf("temporarily disabled, ");
1759         else
1760             printf("temporarily enabled, ");
1761     }
1762
1763     if (istatus.flags & BOZO_ERRORSTOP)
1764         printf("stopped for too many errors, ");
1765     if (istatus.flags & BOZO_HASCORE)
1766         printf("has core file, ");
1767
1768     tp = buffer;
1769     code = BOZO_GetStatus(aconn, aname, &temp, &tp);
1770     if (code)
1771         printf("bos: failed to get status for instance '%s' (%s)\n", aname,
1772                em(code));
1773     else {
1774         printf("currently ");
1775         if (temp == BSTAT_NORMAL)
1776             printf("running normally.\n");
1777         else if (temp == BSTAT_SHUTDOWN)
1778             printf("shutdown.\n");
1779         else if (temp == BSTAT_STARTINGUP)
1780             printf("starting up.\n");
1781         else if (temp == BSTAT_SHUTTINGDOWN)
1782             printf("shutting down.\n");
1783         if (buffer[0] != 0) {
1784             printf("    Auxiliary status is: %s.\n", buffer);
1785         }
1786     }
1787
1788     /* are we done yet? */
1789     if (!aint32p)
1790         return 0;
1791
1792     if (istatus.procStartTime)
1793         printf("    Process last started at %s (%d proc starts)\n",
1794                DateOf(istatus.procStartTime), istatus.procStarts);
1795     if (istatus.lastAnyExit) {
1796         printf("    Last exit at %s\n", DateOf(istatus.lastAnyExit));
1797     }
1798     if (istatus.lastErrorExit) {
1799         is1 = is2 = is3 = is4 = NULL;
1800         printf("    Last error exit at %s, ", DateOf(istatus.lastErrorExit));
1801         code = BOZO_GetInstanceStrings(aconn, aname, &is1, &is2, &is3, &is4);
1802         /* don't complain about failing call, since could simply mean
1803          * interface mismatch.
1804          */
1805         if (code == 0) {
1806             if (*is1 != 0) {
1807                 /* non-null instance string */
1808                 printf("by %s, ", is1);
1809             }
1810             free(is1);
1811             free(is2);
1812             free(is3);
1813             free(is4);
1814         }
1815         if (istatus.errorSignal) {
1816             if (istatus.errorSignal == SIGTERM)
1817                 printf("due to shutdown request\n");
1818             else
1819                 printf("due to signal %d\n", istatus.errorSignal);
1820         } else
1821             printf("by exiting with code %d\n", istatus.errorCode);
1822     }
1823
1824     if (aint32p > 1) {
1825         /* try to display all the parms */
1826         for (i = 0;; i++) {
1827             tp = buffer;
1828             code = BOZO_GetInstanceParm(aconn, aname, i, &tp);
1829             if (code)
1830                 break;
1831             printf("    Command %d is '%s'\n", i + 1, buffer);
1832         }
1833         tp = buffer;
1834         code = BOZO_GetInstanceParm(aconn, aname, 999, &tp);
1835         if (!code) {
1836             /* Any type of failure is treated as not having a notifier program */
1837             printf("    Notifier  is '%s'\n", buffer);
1838         }
1839         printf("\n");
1840     }
1841     return 0;
1842 }
1843
1844 static int
1845 GetRestrict(struct cmd_syndesc *as, void *arock)
1846 {
1847     struct rx_connection *tconn;
1848     afs_int32 code, val;
1849
1850     tconn = GetConn(as, 0);
1851     code = BOZO_GetRestrictedMode(tconn, &val);
1852     if (code)
1853         printf("bos: failed to get restricted mode (%s)\n", em(code));
1854     else
1855         printf("Restricted mode is %s\n", val ? "on" : "off");
1856
1857     return 0;
1858 }
1859
1860 static int
1861 SetRestrict(struct cmd_syndesc *as, void *arock)
1862 {
1863     struct rx_connection *tconn;
1864     afs_int32 code, val;
1865
1866     tconn = GetConn(as, 0);
1867     util_GetInt32(as->parms[1].items->data, &val);
1868     code = BOZO_SetRestrictedMode(tconn, val);
1869     if (code)
1870         printf("bos: failed to set restricted mode (%s)\n", em(code));
1871     return 0;
1872 }
1873
1874 static void
1875 add_std_args(struct cmd_syndesc *ts)
1876 {
1877     cmd_Seek(ts, ADDPARMOFFSET);
1878     /* + 0 */ cmd_AddParm(ts, "-cell", CMD_SINGLE, CMD_OPTIONAL, "cell name");
1879     /* + 1 */ cmd_AddParm(ts, "-noauth", CMD_FLAG, CMD_OPTIONAL,
1880                           "don't authenticate");
1881     /* + 2 */ cmd_AddParm(ts, "-localauth", CMD_FLAG, CMD_OPTIONAL,
1882                           "create tickets from KeyFile");
1883 }
1884
1885 #include "AFS_component_version_number.c"
1886
1887 int
1888 main(int argc, char **argv)
1889 {
1890     afs_int32 code;
1891     struct cmd_syndesc *ts;
1892     extern int afsconf_SawCell;
1893
1894 #ifdef  AFS_AIX32_ENV
1895     /*
1896      * The following signal action for AIX is necessary so that in case of a
1897      * crash (i.e. core is generated) we can include the user's data section
1898      * in the core dump. Unfortunately, by default, only a partial core is
1899      * generated which, in many cases, isn't too useful.
1900      */
1901     struct sigaction nsa;
1902
1903     sigemptyset(&nsa.sa_mask);
1904     nsa.sa_handler = SIG_DFL;
1905     nsa.sa_flags = SA_FULLDUMP;
1906     sigaction(SIGSEGV, &nsa, NULL);
1907     sigaction(SIGABRT, &nsa, NULL);
1908 #endif
1909
1910     /* start up rx */
1911     code = rx_Init(0);
1912     if (code) {
1913         printf("bos: could not initialize rx (%s)\n", em(code));
1914         exit(1);
1915     }
1916
1917     /* To resolve a AFSCELL environment "Note: ..." problem: Because bos calls ka_Init (why?) before any
1918      * checkup on the existance of a "-cell" option on the particular bos command we don't print the
1919      * message if a cell is passed in. Luckily the rest of the programs don't call these adhoc routines
1920      * and things work fine. Note that if the "-cell" isn't passed then we're still ok since later on
1921      * the proper routine (afsconf_GetCellInfo) is going to be called to do the right thing.
1922      */
1923     afsconf_SawCell = 1;        /* Means don't print warning if AFSCELL is set */
1924     ka_Init(0);
1925     afsconf_SawCell = 0;        /* Reset it */
1926     /* don't check error code, since fails sometimes when we're setting up a
1927      * system */
1928     initialize_CMD_error_table();
1929     initialize_BZ_error_table();
1930
1931     ts = cmd_CreateSyntax("start", StartServer, NULL, "start running a server");
1932     cmd_AddParm(ts, "-server", CMD_SINGLE, 0, "machine name");
1933     cmd_AddParm(ts, "-instance", CMD_LIST, 0, "server process name");
1934     add_std_args(ts);
1935
1936     ts = cmd_CreateSyntax("stop", StopServer, NULL, "halt a server instance");
1937     cmd_AddParm(ts, "-server", CMD_SINGLE, 0, "machine name");
1938     cmd_AddParm(ts, "-instance", CMD_LIST, 0, "server process name");
1939     cmd_Seek(ts, 8);
1940     cmd_AddParm(ts, "-wait", CMD_FLAG, CMD_OPTIONAL,
1941                 "wait for process to stop");
1942     add_std_args(ts);
1943
1944     ts = cmd_CreateSyntax("status", StatServer, NULL,
1945                           "show server instance status");
1946     cmd_AddParm(ts, "-server", CMD_SINGLE, 0, "machine name");
1947     cmd_AddParm(ts, "-instance", CMD_LIST, CMD_OPTIONAL,
1948                 "server process name");
1949     cmd_AddParm(ts, "-long", CMD_FLAG, CMD_OPTIONAL, "long status");
1950     add_std_args(ts);
1951
1952     ts = cmd_CreateSyntax("shutdown", Shutdown, NULL, "shutdown all processes");
1953     cmd_AddParm(ts, "-server", CMD_SINGLE, 0, "machine name");
1954     cmd_AddParm(ts, "-instance", CMD_LIST, CMD_OPTIONAL, "instances");
1955     cmd_Seek(ts, 8);
1956     cmd_AddParm(ts, "-wait", CMD_FLAG, CMD_OPTIONAL,
1957                 "wait for process to stop");
1958     add_std_args(ts);
1959
1960     ts = cmd_CreateSyntax("startup", Startup, NULL, "start all processes");
1961     cmd_AddParm(ts, "-server", CMD_SINGLE, 0, "machine name");
1962     cmd_AddParm(ts, "-instance", CMD_LIST, CMD_OPTIONAL, "instances");
1963     add_std_args(ts);
1964
1965     ts = cmd_CreateSyntax("restart", Restart, NULL, "restart processes");
1966     cmd_AddParm(ts, "-server", CMD_SINGLE, 0, "machine name");
1967     cmd_AddParm(ts, "-instance", CMD_LIST, CMD_OPTIONAL, "instances");
1968     cmd_AddParm(ts, "-bosserver", CMD_FLAG, CMD_OPTIONAL,
1969                 "restart bosserver");
1970     cmd_AddParm(ts, "-all", CMD_FLAG, CMD_OPTIONAL, "restart all processes");
1971     add_std_args(ts);
1972
1973 #ifndef OPBOS
1974
1975     ts = cmd_CreateSyntax("create", CreateServer, NULL,
1976                           "create a new server instance");
1977     cmd_AddParm(ts, "-server", CMD_SINGLE, 0, "machine name");
1978     cmd_AddParm(ts, "-instance", CMD_SINGLE, 0, "server process name");
1979     cmd_AddParm(ts, "-type", CMD_SINGLE, 0, "server type");
1980     cmd_AddParm(ts, "-cmd", CMD_LIST, 0, "command lines");
1981     cmd_AddParm(ts, "-notifier", CMD_SINGLE, CMD_OPTIONAL,
1982                 "Notifier program");
1983     add_std_args(ts);
1984
1985     ts = cmd_CreateSyntax("delete", DeleteServer, NULL,
1986                           "delete a server instance");
1987     cmd_AddParm(ts, "-server", CMD_SINGLE, 0, "machine name");
1988     cmd_AddParm(ts, "-instance", CMD_LIST, 0, "server process name");
1989     add_std_args(ts);
1990
1991     ts = cmd_CreateSyntax("adduser", AddSUser, NULL,
1992                           "add users to super-user list");
1993     cmd_AddParm(ts, "-server", CMD_SINGLE, 0, "machine name");
1994     cmd_AddParm(ts, "-user", CMD_LIST, 0, "user names");
1995     add_std_args(ts);
1996
1997     ts = cmd_CreateSyntax("removeuser", RemoveSUser, NULL,
1998                           "remove users from super-user list");
1999     cmd_AddParm(ts, "-server", CMD_SINGLE, 0, "machine name");
2000     cmd_AddParm(ts, "-user", CMD_LIST, 0, "user names");
2001     add_std_args(ts);
2002
2003     ts = cmd_CreateSyntax("listusers", ListSUsers, NULL, "list super-users");
2004     cmd_AddParm(ts, "-server", CMD_SINGLE, 0, "machine name");
2005     add_std_args(ts);
2006
2007     ts = cmd_CreateSyntax("addkey", AddKey, NULL,
2008                           "add keys to key dbase (kvno 999 is bcrypt)");
2009     cmd_AddParm(ts, "-server", CMD_SINGLE, 0, "machine name");
2010     cmd_AddParm(ts, "-key", CMD_SINGLE, CMD_OPTIONAL, "key");
2011     cmd_AddParm(ts, "-kvno", CMD_SINGLE, 0, "key version number");
2012     add_std_args(ts);
2013
2014     ts = cmd_CreateSyntax("removekey", RemoveKey, NULL,
2015                           "remove keys from key dbase");
2016     cmd_AddParm(ts, "-server", CMD_SINGLE, 0, "machine name");
2017     cmd_AddParm(ts, "-kvno", CMD_LIST, 0, "key version number");
2018     add_std_args(ts);
2019
2020     ts = cmd_CreateSyntax("listkeys", ListKeys, NULL, "list keys");
2021     cmd_AddParm(ts, "-server", CMD_SINGLE, 0, "machine name");
2022     cmd_AddParm(ts, "-showkey", CMD_FLAG, CMD_OPTIONAL,
2023                 "show the actual key rather than the checksum");
2024     add_std_args(ts);
2025
2026     ts = cmd_CreateSyntax("listhosts", ListHosts, NULL, "get cell host list");
2027     cmd_AddParm(ts, "-server", CMD_SINGLE, 0, "machine name");
2028     add_std_args(ts);
2029     cmd_CreateAlias(ts, "getcell");
2030
2031     ts = cmd_CreateSyntax("setcellname", SetCellName, NULL, "set cell name");
2032     cmd_AddParm(ts, "-server", CMD_SINGLE, 0, "machine name");
2033     cmd_AddParm(ts, "-name", CMD_SINGLE, 0, "cell name");
2034     add_std_args(ts);
2035
2036     ts = cmd_CreateSyntax("addhost", AddHost, NULL, "add host to cell dbase");
2037     cmd_AddParm(ts, "-server", CMD_SINGLE, 0, "machine name");
2038     cmd_AddParm(ts, "-host", CMD_LIST, 0, "host name");
2039     cmd_AddParm(ts, "-clone", CMD_FLAG, CMD_OPTIONAL, "vote doesn't count");
2040     add_std_args(ts);
2041
2042     ts = cmd_CreateSyntax("removehost", RemoveHost, NULL,
2043                           "remove host from cell dbase");
2044     cmd_AddParm(ts, "-server", CMD_SINGLE, 0, "machine name");
2045     cmd_AddParm(ts, "-host", CMD_LIST, 0, "host name");
2046     add_std_args(ts);
2047
2048     ts = cmd_CreateSyntax("setauth", SetAuth, NULL,
2049                           "set authentication required flag");
2050     cmd_AddParm(ts, "-server", CMD_SINGLE, 0, "machine name");
2051     cmd_AddParm(ts, "-authrequired", CMD_SINGLE, 0,
2052                 "on or off: authentication required for admin requests");
2053     add_std_args(ts);
2054
2055     ts = cmd_CreateSyntax("install", Install, NULL, "install program");
2056     cmd_AddParm(ts, "-server", CMD_SINGLE, 0, "machine name");
2057     cmd_AddParm(ts, "-file", CMD_LIST, 0, "files to install");
2058     cmd_AddParm(ts, "-dir", CMD_SINGLE, CMD_OPTIONAL, "destination dir");
2059     add_std_args(ts);
2060
2061     ts = cmd_CreateSyntax("uninstall", UnInstall, NULL, "uninstall program");
2062     cmd_AddParm(ts, "-server", CMD_SINGLE, 0, "machine name");
2063     cmd_AddParm(ts, "-file", CMD_LIST, 0, "files to uninstall");
2064     cmd_AddParm(ts, "-dir", CMD_SINGLE, CMD_OPTIONAL, "destination dir");
2065     add_std_args(ts);
2066
2067     ts = cmd_CreateSyntax("getlog", GetLogCmd, NULL, "examine log file");
2068     cmd_AddParm(ts, "-server", CMD_SINGLE, 0, "machine name");
2069     cmd_AddParm(ts, "-file", CMD_SINGLE, 0, "log file to examine");
2070     add_std_args(ts);
2071
2072     ts = cmd_CreateSyntax("getdate", GetDate, NULL, "get dates for programs");
2073     cmd_AddParm(ts, "-server", CMD_SINGLE, 0, "machine name");
2074     cmd_AddParm(ts, "-file", CMD_LIST, 0, "files to check");
2075     cmd_AddParm(ts, "-dir", CMD_SINGLE, CMD_OPTIONAL, "destination dir");
2076     add_std_args(ts);
2077
2078     ts = cmd_CreateSyntax("exec", Exec, NULL, "execute shell command on server");
2079     cmd_AddParm(ts, "-server", CMD_SINGLE, 0, "machine name");
2080     cmd_AddParm(ts, "-cmd", CMD_SINGLE, 0, "command to execute");
2081     add_std_args(ts);
2082
2083     ts = cmd_CreateSyntax("prune", Prune, NULL, "prune server files");
2084     cmd_AddParm(ts, "-server", CMD_SINGLE, 0, "machine name");
2085     cmd_AddParm(ts, "-bak", CMD_FLAG, CMD_OPTIONAL, "delete .BAK files");
2086     cmd_AddParm(ts, "-old", CMD_FLAG, CMD_OPTIONAL, "delete .OLD files");
2087     cmd_AddParm(ts, "-core", CMD_FLAG, CMD_OPTIONAL, "delete core files");
2088     cmd_AddParm(ts, "-all", CMD_FLAG, CMD_OPTIONAL, "delete all junk files");
2089     add_std_args(ts);
2090
2091     ts = cmd_CreateSyntax("setrestart", SetRestartCmd, NULL,
2092                           "set restart times");
2093     cmd_AddParm(ts, "-server", CMD_SINGLE, CMD_REQUIRED, "machine name");
2094     cmd_AddParm(ts, "-time", CMD_SINGLE, CMD_REQUIRED,
2095                 "time to restart server");
2096     cmd_AddParm(ts, "-general", CMD_FLAG, CMD_OPTIONAL,
2097                 "set general restart time");
2098     cmd_AddParm(ts, "-newbinary", CMD_FLAG, CMD_OPTIONAL,
2099                 "set new binary restart time");
2100     add_std_args(ts);
2101     cmd_CreateAlias(ts, "setr");
2102
2103     ts = cmd_CreateSyntax("getrestart", GetRestartCmd, NULL,
2104                           "get restart times");
2105     cmd_AddParm(ts, "-server", CMD_SINGLE, CMD_REQUIRED, "machine name");
2106     add_std_args(ts);
2107     cmd_CreateAlias(ts, "getr");
2108
2109     ts = cmd_CreateSyntax("salvage", SalvageCmd, NULL,
2110                           "salvage partition or volumes");
2111     cmd_AddParm(ts, "-server", CMD_SINGLE, 0, "machine name");
2112     cmd_AddParm(ts, "-partition", CMD_SINGLE, CMD_OPTIONAL,
2113                 "salvage partition");
2114     cmd_AddParm(ts, "-volume", CMD_SINGLE, CMD_OPTIONAL,
2115                 "salvage volume number or volume name");
2116     cmd_AddParm(ts, "-file", CMD_SINGLE, CMD_OPTIONAL,
2117                 "salvage log output file");
2118     cmd_AddParm(ts, "-all", CMD_FLAG, CMD_OPTIONAL, "salvage whole server");
2119     cmd_AddParm(ts, "-showlog", CMD_FLAG, CMD_OPTIONAL,
2120                 "display salvage log");
2121     cmd_AddParm(ts, "-parallel", CMD_SINGLE, CMD_OPTIONAL,
2122                 "# of max parallel partition salvaging");
2123     cmd_AddParm(ts, "-tmpdir", CMD_SINGLE, CMD_OPTIONAL,
2124                 "directory to place tmp files");
2125     cmd_AddParm(ts, "-orphans", CMD_SINGLE, CMD_OPTIONAL,
2126                 "ignore | remove | attach");
2127     cmd_AddParm(ts, "-forceDAFS", CMD_FLAG, CMD_OPTIONAL,
2128                 "(DAFS) force salvage of demand attach fileserver");
2129     cmd_AddParm(ts, "-debug", CMD_FLAG, CMD_OPTIONAL,
2130                 "(MR-AFS) Run in Debugging mode");
2131     cmd_AddParm(ts, "-nowrite", CMD_FLAG, CMD_OPTIONAL,
2132                 "(MR-AFS) Run readonly/test mode");
2133     cmd_AddParm(ts, "-force", CMD_FLAG, CMD_OPTIONAL,
2134                 "(MR-AFS) Force full salvaging");
2135     cmd_AddParm(ts, "-oktozap", CMD_FLAG, CMD_OPTIONAL,
2136                 "(MR-AFS) Give permission to destroy bogus file residencies/volumes - debugging flag");
2137     cmd_AddParm(ts, "-rootfiles", CMD_FLAG, CMD_OPTIONAL,
2138                 "(MR-AFS) Show files owned by root - debugging flag");
2139     cmd_AddParm(ts, "-salvagedirs", CMD_FLAG, CMD_OPTIONAL,
2140                 "(MR-AFS) Force rebuild/salvage of all directories");
2141     cmd_AddParm(ts, "-blockreads", CMD_FLAG, CMD_OPTIONAL,
2142                 "(MR-AFS) Read smaller blocks to handle IO/bad blocks");
2143     cmd_AddParm(ts, "-ListResidencies", CMD_FLAG, CMD_OPTIONAL,
2144                 "(MR-AFS) Just list affected file residencies - debugging flag");
2145     cmd_AddParm(ts, "-SalvageRemote", CMD_FLAG, CMD_OPTIONAL,
2146                 "(MR-AFS) Salvage storage systems that are not directly attached");
2147     cmd_AddParm(ts, "-SalvageArchival", CMD_FLAG, CMD_OPTIONAL,
2148                 "(MR-AFS) Salvage HSM storage systems");
2149     cmd_AddParm(ts, "-IgnoreCheck", CMD_FLAG, CMD_OPTIONAL,
2150                 "(MR-AFS) Don't perform VLDB safety check when deleting unreferenced files.  Only a good idea in single server cell.");
2151     cmd_AddParm(ts, "-ForceOnLine", CMD_FLAG, CMD_OPTIONAL,
2152                 "(MR-AFS) Force the volume to come online, even if it hasn't salvaged cleanly.");
2153     cmd_AddParm(ts, "-UseRootDirACL", CMD_FLAG, CMD_OPTIONAL,
2154                 "(MR-AFS) Use the root directory ACL for lost+found directory if it is created.");
2155     cmd_AddParm(ts, "-TraceBadLinkCounts", CMD_FLAG, CMD_OPTIONAL,
2156                 "(MR-AFS) Print out lines about volume reference count changes.");
2157     cmd_AddParm(ts, "-DontAskFS", CMD_FLAG, CMD_OPTIONAL,
2158                 "(MR-AFS) Don't ask fileserver to take volume offline.  THIS IS VERY DANGEROUS.");
2159     cmd_AddParm(ts, "-LogLevel", CMD_SINGLE, CMD_OPTIONAL,
2160                 "(MR-AFS) log level");
2161     cmd_AddParm(ts, "-rxdebug", CMD_FLAG, CMD_OPTIONAL,
2162                 "(MR-AFS) Write out rx debug information.");
2163     cmd_AddParm(ts, "-Residencies", CMD_SINGLE, CMD_OPTIONAL,
2164                 "(MR-AFS) Numeric mask of residencies to be included in the salvage.  Do not use with -SalvageRemote or -SalvageArchival");
2165     add_std_args(ts);
2166
2167     ts = cmd_CreateSyntax("blockscanner", BlockScannerCmd, NULL,
2168                           "block scanner daemon from making migration requests");
2169     cmd_AddParm(ts, "-server", CMD_SINGLE, CMD_REQUIRED, "machine name");
2170     add_std_args(ts);
2171
2172     ts = cmd_CreateSyntax("unblockscanner", UnBlockScannerCmd, NULL,
2173                           "allow scanner daemon to make migration requests again");
2174     cmd_AddParm(ts, "-server", CMD_SINGLE, CMD_REQUIRED, "machine name");
2175     add_std_args(ts);
2176
2177     ts = cmd_CreateSyntax("getrestricted", GetRestrict, NULL,
2178                           "get restrict mode");
2179     cmd_AddParm(ts, "-server", CMD_SINGLE, 0, "machine name");
2180     add_std_args(ts);
2181
2182     ts = cmd_CreateSyntax("setrestricted", SetRestrict, NULL,
2183                           "set restrict mode");
2184     cmd_AddParm(ts, "-server", CMD_SINGLE, 0, "machine name");
2185     cmd_AddParm(ts, "-mode", CMD_SINGLE, 0, "mode to set");
2186     add_std_args(ts);
2187 #endif
2188
2189     code = cmd_Dispatch(argc, argv);
2190     rx_Finalize();
2191     exit(code);
2192 }