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