bos: Don't set up the conenction twice in AddKey
[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 *tcell;
792     char cellBuffer[256];
793     char buf[BUFSIZ], ver[BUFSIZ];
794
795     tconn = GetConn(as, 1);
796     memset(&tkey, 0, sizeof(struct ktc_encryptionKey));
797
798     if (as->parms[1].items)
799         strcpy(buf, as->parms[1].items->data);
800     else {
801         /* prompt for key */
802         code = UI_UTIL_read_pw_string(buf, sizeof(buf), "input key: ", 0);
803         if (code || strlen(buf) == 0) {
804             fprintf(stderr, "Bad key: \n");
805             exit(1);
806         }
807         code = UI_UTIL_read_pw_string(ver, sizeof(ver), "Retype input key: ", 0);
808         if (code || strlen(ver) == 0) {
809             fprintf(stderr, "Bad key: \n");
810             exit(1);
811         }
812         if (strcmp(ver, buf) != 0) {
813             fprintf(stderr, "\nInput key mismatch\n");
814             exit(1);
815         }
816
817     }
818
819     temp = atoi(as->parms[2].items->data);
820     if (temp == 999) {
821         /* bcrypt key */
822 /*
823         strcpy((char *)&tkey, as->parms[1].items->data);
824 */
825         strcpy((char *)&tkey, buf);
826     } else {                    /* kerberos key */
827         if (as->parms[ADDPARMOFFSET].items) {
828             strcpy(cellBuffer, as->parms[ADDPARMOFFSET].items->data);
829
830             /* string to key needs upper-case cell names */
831
832             /* I don't believe this is true.  The string to key function
833              * actually expands the cell name, then LOWER-CASES it.  Perhaps it
834              * didn't use to??? */
835             ucstring(cellBuffer, cellBuffer, strlen(cellBuffer));
836             tcell = cellBuffer;
837         } else
838             tcell = NULL;       /* no cell specified, use current */
839 /*
840         ka_StringToKey(as->parms[1].items->data, tcell, &tkey);
841 */
842         ka_StringToKey(buf, tcell, &tkey);
843     }
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     int count;
1149
1150     /* if a partition was specified, canonicalize the name, since
1151      * the salvager has a stupid partition ID parser */
1152     if (aparm1) {
1153         partNumber = volutil_GetPartitionID(aparm1);
1154         if (partNumber < 0) {
1155             printf("bos: could not parse partition ID '%s'\n", aparm1);
1156             return EINVAL;
1157         }
1158         tp = volutil_PartitionName(partNumber);
1159         if (!tp) {
1160             printf("bos: internal error parsing partition ID '%s'\n", aparm1);
1161             return EINVAL;
1162         }
1163         strcpy(partName, tp);
1164     } else
1165         partName[0] = 0;
1166
1167     /* open the file name */
1168     if (aoutName) {
1169         outFile = fopen(aoutName, "w");
1170         if (!outFile) {
1171             printf("bos: can't open specified SalvageLog file '%s'\n",
1172                    aoutName);
1173             return ENOENT;
1174         }
1175         closeIt = 1;            /* close this file later */
1176     } else {
1177         outFile = stdout;
1178         closeIt = 0;            /* don't close this file later */
1179     }
1180
1181     for (code = 2; code < 6; code++)
1182         parms[code] = "";
1183     if (!aparm2)
1184         aparm2 = "";
1185
1186     /* MUST pass canonical (wire-format) salvager path to bosserver */
1187     if (*aparm2 != 0) {
1188         /* single volume salvage */
1189         if (dafs) {
1190             /* for DAFS, we call the salvagserver binary with special options.
1191              * in this mode, it simply uses SALVSYNC to tell the currently
1192              * running salvageserver to offline and salvage the volume in question */
1193             strncpy(tbuffer, AFSDIR_CANONICAL_SERVER_SALSRV_FILEPATH, BOZO_BSSIZE);
1194
1195             if ((strlen(tbuffer) + 9 + strlen(partName) + 1 + strlen(aparm2) +
1196                  1) > BOZO_BSSIZE) {
1197                 printf("bos: command line too big\n");
1198                 return (E2BIG);
1199             }
1200
1201             strcat(tbuffer, " -client ");
1202             strcat(tbuffer, partName);
1203             strcat(tbuffer, " ");
1204             strcat(tbuffer, aparm2);
1205         } else {
1206             strncpy(tbuffer, AFSDIR_CANONICAL_SERVER_SALVAGER_FILEPATH, BOZO_BSSIZE);
1207
1208             if ((strlen(tbuffer) + 1 + strlen(partName) + 1 + strlen(aparm2) +
1209                  1) > BOZO_BSSIZE) {
1210                 printf("bos: command line too big\n");
1211                 return (E2BIG);
1212             }
1213
1214             strcat(tbuffer, " ");
1215             strcat(tbuffer, partName);
1216             strcat(tbuffer, " ");
1217             strcat(tbuffer, aparm2);
1218         }
1219     } else {
1220         /* partition salvage */
1221         strncpy(tbuffer, AFSDIR_CANONICAL_SERVER_SALVAGER_FILEPATH, BOZO_BSSIZE);
1222         if ((strlen(tbuffer) + 4 + strlen(partName) + 1) > BOZO_BSSIZE) {
1223             printf("bos: command line too big\n");
1224             return (E2BIG);
1225         }
1226         strcat(tbuffer, " -force ");
1227         strcat(tbuffer, partName);
1228     }
1229
1230     /* For DAFS, specifying a single volume does not result in a standard
1231      * salvager call.  Instead, it simply results in a SALVSYNC call to the
1232      * online salvager daemon.  This interface does not give us the same rich
1233      * set of call flags.  Thus, we skip these steps for DAFS single-volume
1234      * calls */
1235     if (!dafs || (*aparm2 == 0)) {
1236         /* add the parallel option if given */
1237         if (parallel != NULL) {
1238             if ((strlen(tbuffer) + 11 + strlen(parallel) + 1) > BOZO_BSSIZE) {
1239                 printf("bos: command line too big\n");
1240                 return (E2BIG);
1241             }
1242             strcat(tbuffer, " -parallel ");
1243             strcat(tbuffer, parallel);
1244         }
1245
1246         /* add the tmpdir option if given */
1247         if (atmpDir != NULL) {
1248             if ((strlen(tbuffer) + 9 + strlen(atmpDir) + 1) > BOZO_BSSIZE) {
1249                 printf("bos: command line too big\n");
1250                 return (E2BIG);
1251             }
1252             strcat(tbuffer, " -tmpdir ");
1253             strcat(tbuffer, atmpDir);
1254         }
1255
1256         /* add the orphans option if given */
1257         if (orphans != NULL) {
1258             if ((strlen(tbuffer) + 10 + strlen(orphans) + 1) > BOZO_BSSIZE) {
1259                 printf("bos: command line too big\n");
1260                 return (E2BIG);
1261             }
1262             strcat(tbuffer, " -orphans ");
1263             strcat(tbuffer, orphans);
1264         }
1265
1266         if (mrafsParm->Optdebug)
1267             strcat(tbuffer, " -debug");
1268         if (mrafsParm->Optnowrite)
1269             strcat(tbuffer, " -nowrite");
1270         if (mrafsParm->Optforce)
1271             strcat(tbuffer, " -force");
1272         if (mrafsParm->Optoktozap)
1273             strcat(tbuffer, " -oktozap");
1274         if (mrafsParm->Optrootfiles)
1275             strcat(tbuffer, " -rootfiles");
1276         if (mrafsParm->Optsalvagedirs)
1277             strcat(tbuffer, " -salvagedirs");
1278         if (mrafsParm->Optblockreads)
1279             strcat(tbuffer, " -blockreads");
1280         if (mrafsParm->OptListResidencies)
1281             strcat(tbuffer, " -ListResidencies");
1282         if (mrafsParm->OptSalvageRemote)
1283             strcat(tbuffer, " -SalvageRemote");
1284         if (mrafsParm->OptSalvageArchival)
1285             strcat(tbuffer, " -SalvageArchival");
1286         if (mrafsParm->OptIgnoreCheck)
1287             strcat(tbuffer, " -IgnoreCheck");
1288         if (mrafsParm->OptForceOnLine)
1289             strcat(tbuffer, " -ForceOnLine");
1290         if (mrafsParm->OptUseRootDirACL)
1291             strcat(tbuffer, " -UseRootDirACL");
1292         if (mrafsParm->OptTraceBadLinkCounts)
1293             strcat(tbuffer, " -TraceBadLinkCounts");
1294         if (mrafsParm->OptDontAskFS)
1295             strcat(tbuffer, " -DontAskFS");
1296         if (mrafsParm->OptLogLevel) {
1297             sprintf(pbuffer, " -LogLevel %ld", afs_printable_int32_ld(mrafsParm->OptLogLevel));
1298             strcat(tbuffer, pbuffer);
1299         }
1300         if (mrafsParm->OptRxDebug)
1301             strcat(tbuffer, " -rxdebug");
1302         if (mrafsParm->OptResidencies) {
1303             sprintf(pbuffer, " -Residencies %lu",
1304                     afs_printable_uint32_lu(mrafsParm->OptResidencies));
1305             strcat(tbuffer, pbuffer);
1306         }
1307     }
1308
1309     parms[0] = tbuffer;
1310     parms[1] = "now";           /* when to do it */
1311     code =
1312         BOZO_CreateBnode(aconn, "cron", "salvage-tmp", parms[0], parms[1],
1313                          parms[2], parms[3], parms[4], notifier);
1314     if (code) {
1315         printf("bos: failed to start 'salvager' (%s)\n", em(code));
1316         goto done;
1317     }
1318     /* now wait for bnode to disappear */
1319     count = 0;
1320     while (1) {
1321         IOMGR_Sleep(1);
1322         tp = tbuffer;
1323         code = BOZO_GetInstanceInfo(aconn, "salvage-tmp", &tp, &istatus);
1324         if (code)
1325             break;
1326         if ((++count % 5) == 0)
1327             printf("bos: waiting for salvage to complete.\n");
1328     }
1329     if (code != BZNOENT) {
1330         printf("bos: salvage failed (%s)\n", em(code));
1331         goto done;
1332     }
1333     code = 0;
1334
1335     /* now print the log file to the output file */
1336     printf("bos: salvage completed\n");
1337     if (aoutName || showlog) {
1338         fprintf(outFile, "SalvageLog:\n");
1339         tcall = rx_NewCall(aconn);
1340         /* MUST pass canonical (wire-format) salvager log path to bosserver */
1341         code =
1342             StartBOZO_GetLog(tcall, AFSDIR_CANONICAL_SERVER_SLVGLOG_FILEPATH);
1343         if (code) {
1344             rx_EndCall(tcall, code);
1345             goto done;
1346         }
1347         /* copy data */
1348         while (1) {
1349             code = rx_Read(tcall, &buffer, 1);
1350             if (code != 1)
1351                 break;
1352             putc(buffer, outFile);
1353             if (buffer == 0)
1354                 break;          /* the end delimeter */
1355         }
1356         code = rx_EndCall(tcall, 0);
1357         /* fall through into cleanup code */
1358     }
1359
1360   done:
1361     if (closeIt && outFile)
1362         fclose(outFile);
1363     return code;
1364 }
1365
1366 static int
1367 GetLogCmd(struct cmd_syndesc *as, void *arock)
1368 {
1369     struct rx_connection *tconn;
1370     struct rx_call *tcall;
1371     afs_int32 code;
1372     char buffer;
1373     int error;
1374
1375     printf("Fetching log file '%s'...\n", as->parms[1].items->data);
1376     tconn = GetConn(as, 0);
1377     tcall = rx_NewCall(tconn);
1378     code = StartBOZO_GetLog(tcall, as->parms[1].items->data);
1379     if (code) {
1380         rx_EndCall(tcall, code);
1381         goto done;
1382     }
1383     /* copy data */
1384     error = 0;
1385     while (1) {
1386         code = rx_Read(tcall, &buffer, 1);
1387         if (code != 1) {
1388             error = EIO;
1389             break;
1390         }
1391         if (buffer == 0)
1392             break;              /* the end delimeter */
1393         putchar(buffer);
1394     }
1395     code = rx_EndCall(tcall, error);
1396     /* fall through into cleanup code */
1397
1398   done:
1399     if (code)
1400         afs_com_err("bos", code, "(while reading log)");
1401     return code;
1402 }
1403
1404 static int
1405 IsDAFS(struct rx_connection *aconn)
1406 {
1407     char buffer[BOZO_BSSIZE];
1408     char *tp;
1409     struct bozo_status istatus;
1410     afs_int32 code;
1411
1412     tp = &buffer[0];
1413
1414     code = BOZO_GetInstanceInfo(aconn, "dafs", &tp, &istatus);
1415     if (code) {
1416         /* no dafs bnode; cannot be dafs */
1417         return 0;
1418     }
1419     if (istatus.goal) {
1420         /* dafs bnode is running; we must be dafs */
1421         return 1;
1422     }
1423
1424     /* At this point, either we have neither a dafs nor fs bnode running, or
1425      * we have an fs bnode running but the dafs bnode is stopped.
1426      *
1427      * If an fs bnode is running, we are obviously not DAFS. If an fs bnode
1428      * is not running and a dafs bnode is not running... it's not certain if
1429      * we are DAFS or not DAFS. Just return 0 in that case; it shouldn't much
1430      * matter what we return, anyway */
1431     return 0;
1432 }
1433
1434 static int
1435 SalvageCmd(struct cmd_syndesc *as, void *arock)
1436 {
1437     struct rx_connection *tconn;
1438     afs_int32 code, rc, i;
1439     char *outName;
1440     char tname[BOZO_BSSIZE];
1441     afs_int32 newID;
1442     extern struct ubik_client *cstruct;
1443     afs_int32 curGoal, showlog = 0, dafs = 0, mrafs = 0;
1444     char *parallel;
1445     char *tmpDir;
1446     char *orphans;
1447     char *tp;
1448     char * serviceName;
1449     struct MRAFSSalvageParms mrafsParm;
1450
1451     memset(&mrafsParm, 0, sizeof(mrafsParm));
1452
1453     /* parm 0 is machine name, 1 is partition, 2 is volume, 3 is -all flag */
1454     tconn = GetConn(as, 0);
1455
1456     tp = &tname[0];
1457
1458     /* find out whether fileserver is running demand attach fs */
1459     if (IsDAFS(tconn)) {
1460         dafs = 1;
1461         serviceName = "dafs";
1462         /* Find out whether fileserver is running MR-AFS (has a scanner instance) */
1463         /* XXX this should really be done some other way, potentially by RPC */
1464         if ((code = BOZO_GetInstanceParm(tconn, serviceName, 4, &tp) == 0))
1465             mrafs = 1;
1466     } else {
1467         serviceName = "fs";
1468         /* Find out whether fileserver is running MR-AFS (has a scanner instance) */
1469         /* XXX this should really be done some other way, potentially by RPC */
1470         if ((code = BOZO_GetInstanceParm(tconn, serviceName, 3, &tp) == 0))
1471             mrafs = 1;
1472     }
1473
1474     /* we can do a volume, a partition or the whole thing, but not mixtures
1475      * thereof */
1476     if (!as->parms[1].items && as->parms[2].items) {
1477         printf("bos: must specify partition to salvage individual volume.\n");
1478         return -1;
1479     }
1480     if (as->parms[5].items && as->parms[3].items) {
1481         printf("bos: can not specify both -file and -showlog.\n");
1482         return -1;
1483     }
1484     if (as->parms[4].items && (as->parms[1].items || as->parms[2].items)) {
1485         printf("bos: can not specify -all with other flags.\n");
1486         return -1;
1487     }
1488
1489     /* get the output file name, if any */
1490     if (as->parms[3].items)
1491         outName = as->parms[3].items->data;
1492     else
1493         outName = NULL;
1494
1495     if (as->parms[5].items)
1496         showlog = 1;
1497
1498     /* parallel option */
1499     parallel = NULL;
1500     if (as->parms[6].items)
1501         parallel = as->parms[6].items->data;
1502
1503     /* get the tmpdir filename if any */
1504     tmpDir = NULL;
1505     if (as->parms[7].items)
1506         tmpDir = as->parms[7].items->data;
1507
1508     /* -orphans option */
1509     orphans = NULL;
1510     if (as->parms[8].items) {
1511         if (mrafs) {
1512             printf("Can't specify -orphans for MR-AFS fileserver\n");
1513             return EINVAL;
1514         }
1515         orphans = as->parms[8].items->data;
1516     }
1517
1518     if (dafs) {
1519         if (!as->parms[9].items) { /* -forceDAFS flag */
1520             printf("This is a demand attach fileserver.  Are you sure you want to proceed with a manual salvage?\n");
1521             printf("must specify -forceDAFS flag in order to proceed.\n");
1522             return EINVAL;
1523         }
1524     }
1525
1526     if (mrafs) {
1527         if (as->parms[MRAFS_OFFSET].items)
1528             mrafsParm.Optdebug = 1;
1529         if (as->parms[MRAFS_OFFSET + 1].items)
1530             mrafsParm.Optnowrite = 1;
1531         if (as->parms[MRAFS_OFFSET + 2].items)
1532             mrafsParm.Optforce = 1;
1533         if (as->parms[MRAFS_OFFSET + 3].items)
1534             mrafsParm.Optoktozap = 1;
1535         if (as->parms[MRAFS_OFFSET + 4].items)
1536             mrafsParm.Optrootfiles = 1;
1537         if (as->parms[MRAFS_OFFSET + 5].items)
1538             mrafsParm.Optsalvagedirs = 1;
1539         if (as->parms[MRAFS_OFFSET + 6].items)
1540             mrafsParm.Optblockreads = 1;
1541         if (as->parms[MRAFS_OFFSET + 7].items)
1542             mrafsParm.OptListResidencies = 1;
1543         if (as->parms[MRAFS_OFFSET + 8].items)
1544             mrafsParm.OptSalvageRemote = 1;
1545         if (as->parms[MRAFS_OFFSET + 9].items)
1546             mrafsParm.OptSalvageArchival = 1;
1547         if (as->parms[MRAFS_OFFSET + 10].items)
1548             mrafsParm.OptIgnoreCheck = 1;
1549         if (as->parms[MRAFS_OFFSET + 11].items)
1550             mrafsParm.OptForceOnLine = 1;
1551         if (as->parms[MRAFS_OFFSET + 12].items)
1552             mrafsParm.OptUseRootDirACL = 1;
1553         if (as->parms[MRAFS_OFFSET + 13].items)
1554             mrafsParm.OptTraceBadLinkCounts = 1;
1555         if (as->parms[MRAFS_OFFSET + 14].items)
1556             mrafsParm.OptDontAskFS = 1;
1557         if (as->parms[MRAFS_OFFSET + 15].items)
1558             mrafsParm.OptLogLevel =
1559                 atoi(as->parms[MRAFS_OFFSET + 15].items->data);
1560         if (as->parms[MRAFS_OFFSET + 16].items)
1561             mrafsParm.OptRxDebug = 1;
1562         if (as->parms[MRAFS_OFFSET + 17].items) {
1563             if (as->parms[MRAFS_OFFSET + 8].items
1564                 || as->parms[MRAFS_OFFSET + 9].items) {
1565                 printf
1566                     ("Can't specify -Residencies with -SalvageRemote or -SalvageArchival\n");
1567                 return EINVAL;
1568             }
1569             code =
1570                 util_GetUInt32(as->parms[MRAFS_OFFSET + 17].items->data,
1571                                &mrafsParm.OptResidencies);
1572             if (code) {
1573                 printf("bos: '%s' is not a valid residency mask.\n",
1574                        as->parms[MRAFS_OFFSET + 17].items->data);
1575                 return code;
1576             }
1577         }
1578     } else {
1579         int stop = 0;
1580
1581         for (i = MRAFS_OFFSET; i < ADDPARMOFFSET; i++) {
1582             if (as->parms[i].items) {
1583                 printf(" %s only possible for MR-AFS fileserver.\n",
1584                        as->parms[i].name);
1585                 stop = 1;
1586             }
1587         }
1588         if (stop)
1589             exit(1);
1590     }
1591
1592     if (as->parms[4].items) {
1593         /* salvage whole enchilada */
1594         curGoal = GetServerGoal(tconn, serviceName);
1595         if (curGoal == BSTAT_NORMAL) {
1596             printf("bos: shutting down '%s'.\n", serviceName);
1597             code = BOZO_SetTStatus(tconn, serviceName, BSTAT_SHUTDOWN);
1598             if (code) {
1599                 printf("bos: failed to stop '%s' (%s)\n", serviceName, em(code));
1600                 return code;
1601             }
1602             code = BOZO_WaitAll(tconn); /* wait for shutdown to complete */
1603             if (code)
1604                 printf
1605                     ("bos: failed to wait for file server shutdown, continuing.\n");
1606         }
1607         /* now do the salvage operation */
1608         printf("Starting salvage.\n");
1609         rc = DoSalvage(tconn, NULL, NULL, outName, showlog, parallel, tmpDir,
1610                        orphans, dafs, &mrafsParm);
1611         if (curGoal == BSTAT_NORMAL) {
1612             printf("bos: restarting %s.\n", serviceName);
1613             code = BOZO_SetTStatus(tconn, serviceName, BSTAT_NORMAL);
1614             if (code) {
1615                 printf("bos: failed to restart '%s' (%s)\n", serviceName, em(code));
1616                 return code;
1617             }
1618         }
1619         if (rc)
1620             return rc;
1621     } else if (!as->parms[2].items) {
1622         if (!as->parms[1].items) {
1623             printf
1624                 ("bos: must specify -all switch to salvage all partitions.\n");
1625             return -1;
1626         }
1627         if (volutil_GetPartitionID(as->parms[1].items->data) < 0) {
1628             /* can't parse volume ID, so complain before shutting down
1629              * file server.
1630              */
1631             printf("bos: can't interpret %s as partition ID.\n",
1632                    as->parms[1].items->data);
1633             return -1;
1634         }
1635         curGoal = GetServerGoal(tconn, serviceName);
1636         /* salvage a whole partition (specified by parms[1]) */
1637         if (curGoal == BSTAT_NORMAL) {
1638             printf("bos: shutting down '%s'.\n", serviceName);
1639             code = BOZO_SetTStatus(tconn, serviceName, BSTAT_SHUTDOWN);
1640             if (code) {
1641                 printf("bos: can't stop '%s' (%s)\n", serviceName, em(code));
1642                 return code;
1643             }
1644             code = BOZO_WaitAll(tconn); /* wait for shutdown to complete */
1645             if (code)
1646                 printf
1647                     ("bos: failed to wait for file server shutdown, continuing.\n");
1648         }
1649         /* now do the salvage operation */
1650         printf("Starting salvage.\n");
1651         rc = DoSalvage(tconn, as->parms[1].items->data, NULL, outName,
1652                        showlog, parallel, tmpDir, orphans, dafs, &mrafsParm);
1653         if (curGoal == BSTAT_NORMAL) {
1654             printf("bos: restarting '%s'.\n", serviceName);
1655             code = BOZO_SetTStatus(tconn, serviceName, BSTAT_NORMAL);
1656             if (code) {
1657                 printf("bos: failed to restart '%s' (%s)\n", serviceName, em(code));
1658                 return code;
1659             }
1660         }
1661         if (rc)
1662             return rc;
1663     } else {
1664         /* salvage individual volume (don't shutdown fs first), just use
1665          * single-shot cron bnode.  Must leave server running when using this
1666          * option, since salvager will ask file server for the volume */
1667         char *tmpname;
1668         afs_int32 err;
1669         const char *confdir;
1670         int localauth;
1671
1672         if (as->parms[ADDPARMOFFSET].items)
1673             tmpname = as->parms[ADDPARMOFFSET].items->data;
1674         else
1675             tmpname = NULL;
1676
1677         localauth = (as->parms[ADDPARMOFFSET + 2].items != 0);
1678         confdir =
1679             (localauth ? AFSDIR_SERVER_ETC_DIRPATH :
1680              AFSDIR_CLIENT_ETC_DIRPATH);
1681
1682         code = vsu_ClientInit(confdir, tmpname,
1683                               AFSCONF_SECOPTS_FALLBACK_NULL |
1684                               AFSCONF_SECOPTS_NOAUTH,
1685                               NULL, &cstruct);
1686
1687         if (code == 0) {
1688             newID = vsu_GetVolumeID(as->parms[2].items->data, cstruct, &err);
1689             if (newID == 0) {
1690                 printf("bos: can't interpret %s as volume name or ID\n",
1691                        as->parms[2].items->data);
1692                 return -1;
1693             }
1694             sprintf(tname, "%u", newID);
1695         } else {
1696             printf
1697                 ("bos: can't initialize volume system client (code %d), trying anyway.\n",
1698                  code);
1699             strncpy(tname, as->parms[2].items->data, sizeof(tname));
1700         }
1701         if (volutil_GetPartitionID(as->parms[1].items->data) < 0) {
1702             /* can't parse volume ID, so complain before shutting down
1703              * file server.
1704              */
1705             printf("bos: can't interpret %s as partition ID.\n",
1706                    as->parms[1].items->data);
1707             return -1;
1708         }
1709         printf("Starting salvage.\n");
1710         rc = DoSalvage(tconn, as->parms[1].items->data, tname, outName,
1711                        showlog, parallel, tmpDir, orphans, dafs, &mrafsParm);
1712         if (rc)
1713             return rc;
1714     }
1715     return 0;
1716 }
1717
1718 static int
1719 IStatServer(struct cmd_syndesc *as, int int32p)
1720 {
1721     struct rx_connection *tconn;
1722     struct cmd_item *ti;
1723     int firstTime = 1;
1724
1725     tconn = GetConn(as, 0);
1726     for (ti = as->parms[1].items; ti; ti = ti->next) {
1727         DoStat(ti->data, tconn, int32p, firstTime);
1728         firstTime = 0;
1729     }
1730     return 0;
1731 }
1732
1733 static int
1734 DoStat(IN char *aname,
1735        IN struct rx_connection *aconn,
1736        IN int aint32p,
1737        IN int firstTime)        /* true iff first instance in cmd */
1738 {
1739     afs_int32 temp;
1740     char buffer[500];
1741     afs_int32 code;
1742     afs_int32 i;
1743     struct bozo_status istatus;
1744     char *tp;
1745     char *is1, *is2, *is3, *is4;        /* instance strings */
1746
1747     tp = buffer;
1748     code = BOZO_GetInstanceInfo(aconn, aname, &tp, &istatus);
1749     if (code) {
1750         printf("bos: failed to get instance info for '%s' (%s)\n", aname,
1751                em(code));
1752         return -1;
1753     }
1754     if (firstTime && aint32p && (istatus.flags & BOZO_BADDIRACCESS))
1755         printf
1756             ("Bosserver reports inappropriate access on server directories\n");
1757     printf("Instance %s, ", aname);
1758     if (aint32p)
1759         printf("(type is %s) ", buffer);
1760     if (istatus.fileGoal == istatus.goal) {
1761         if (!istatus.goal)
1762             printf("disabled, ");
1763     } else {
1764         if (istatus.fileGoal)
1765             printf("temporarily disabled, ");
1766         else
1767             printf("temporarily enabled, ");
1768     }
1769
1770     if (istatus.flags & BOZO_ERRORSTOP)
1771         printf("stopped for too many errors, ");
1772     if (istatus.flags & BOZO_HASCORE)
1773         printf("has core file, ");
1774
1775     tp = buffer;
1776     code = BOZO_GetStatus(aconn, aname, &temp, &tp);
1777     if (code)
1778         printf("bos: failed to get status for instance '%s' (%s)\n", aname,
1779                em(code));
1780     else {
1781         printf("currently ");
1782         if (temp == BSTAT_NORMAL)
1783             printf("running normally.\n");
1784         else if (temp == BSTAT_SHUTDOWN)
1785             printf("shutdown.\n");
1786         else if (temp == BSTAT_STARTINGUP)
1787             printf("starting up.\n");
1788         else if (temp == BSTAT_SHUTTINGDOWN)
1789             printf("shutting down.\n");
1790         if (buffer[0] != 0) {
1791             printf("    Auxiliary status is: %s.\n", buffer);
1792         }
1793     }
1794
1795     /* are we done yet? */
1796     if (!aint32p)
1797         return 0;
1798
1799     if (istatus.procStartTime)
1800         printf("    Process last started at %s (%d proc starts)\n",
1801                DateOf(istatus.procStartTime), istatus.procStarts);
1802     if (istatus.lastAnyExit) {
1803         printf("    Last exit at %s\n", DateOf(istatus.lastAnyExit));
1804     }
1805     if (istatus.lastErrorExit) {
1806         is1 = is2 = is3 = is4 = NULL;
1807         printf("    Last error exit at %s, ", DateOf(istatus.lastErrorExit));
1808         code = BOZO_GetInstanceStrings(aconn, aname, &is1, &is2, &is3, &is4);
1809         /* don't complain about failing call, since could simply mean
1810          * interface mismatch.
1811          */
1812         if (code == 0) {
1813             if (*is1 != 0) {
1814                 /* non-null instance string */
1815                 printf("by %s, ", is1);
1816             }
1817             free(is1);
1818             free(is2);
1819             free(is3);
1820             free(is4);
1821         }
1822         if (istatus.errorSignal) {
1823             if (istatus.errorSignal == SIGTERM)
1824                 printf("due to shutdown request\n");
1825             else
1826                 printf("due to signal %d\n", istatus.errorSignal);
1827         } else
1828             printf("by exiting with code %d\n", istatus.errorCode);
1829     }
1830
1831     if (aint32p > 1) {
1832         /* try to display all the parms */
1833         for (i = 0;; i++) {
1834             tp = buffer;
1835             code = BOZO_GetInstanceParm(aconn, aname, i, &tp);
1836             if (code)
1837                 break;
1838             printf("    Command %d is '%s'\n", i + 1, buffer);
1839         }
1840         tp = buffer;
1841         code = BOZO_GetInstanceParm(aconn, aname, 999, &tp);
1842         if (!code) {
1843             /* Any type of failure is treated as not having a notifier program */
1844             printf("    Notifier  is '%s'\n", buffer);
1845         }
1846         printf("\n");
1847     }
1848     return 0;
1849 }
1850
1851 static int
1852 GetRestrict(struct cmd_syndesc *as, void *arock)
1853 {
1854     struct rx_connection *tconn;
1855     afs_int32 code, val;
1856
1857     tconn = GetConn(as, 0);
1858     code = BOZO_GetRestrictedMode(tconn, &val);
1859     if (code)
1860         printf("bos: failed to get restricted mode (%s)\n", em(code));
1861     else
1862         printf("Restricted mode is %s\n", val ? "on" : "off");
1863
1864     return 0;
1865 }
1866
1867 static int
1868 SetRestrict(struct cmd_syndesc *as, void *arock)
1869 {
1870     struct rx_connection *tconn;
1871     afs_int32 code, val;
1872
1873     tconn = GetConn(as, 0);
1874     util_GetInt32(as->parms[1].items->data, &val);
1875     code = BOZO_SetRestrictedMode(tconn, val);
1876     if (code)
1877         printf("bos: failed to set restricted mode (%s)\n", em(code));
1878     return 0;
1879 }
1880
1881 static void
1882 add_std_args(struct cmd_syndesc *ts)
1883 {
1884     cmd_Seek(ts, ADDPARMOFFSET);
1885     /* + 0 */ cmd_AddParm(ts, "-cell", CMD_SINGLE, CMD_OPTIONAL, "cell name");
1886     /* + 1 */ cmd_AddParm(ts, "-noauth", CMD_FLAG, CMD_OPTIONAL,
1887                           "don't authenticate");
1888     /* + 2 */ cmd_AddParm(ts, "-localauth", CMD_FLAG, CMD_OPTIONAL,
1889                           "create tickets from KeyFile");
1890 }
1891
1892 #include "AFS_component_version_number.c"
1893
1894 int
1895 main(int argc, char **argv)
1896 {
1897     afs_int32 code;
1898     struct cmd_syndesc *ts;
1899     extern int afsconf_SawCell;
1900
1901 #ifdef  AFS_AIX32_ENV
1902     /*
1903      * The following signal action for AIX is necessary so that in case of a
1904      * crash (i.e. core is generated) we can include the user's data section
1905      * in the core dump. Unfortunately, by default, only a partial core is
1906      * generated which, in many cases, isn't too useful.
1907      */
1908     struct sigaction nsa;
1909
1910     sigemptyset(&nsa.sa_mask);
1911     nsa.sa_handler = SIG_DFL;
1912     nsa.sa_flags = SA_FULLDUMP;
1913     sigaction(SIGSEGV, &nsa, NULL);
1914     sigaction(SIGABRT, &nsa, NULL);
1915 #endif
1916
1917     /* start up rx */
1918     code = rx_Init(0);
1919     if (code) {
1920         printf("bos: could not initialize rx (%s)\n", em(code));
1921         exit(1);
1922     }
1923
1924     /* To resolve a AFSCELL environment "Note: ..." problem: Because bos calls ka_Init (why?) before any
1925      * checkup on the existance of a "-cell" option on the particular bos command we don't print the
1926      * message if a cell is passed in. Luckily the rest of the programs don't call these adhoc routines
1927      * and things work fine. Note that if the "-cell" isn't passed then we're still ok since later on
1928      * the proper routine (afsconf_GetCellInfo) is going to be called to do the right thing.
1929      */
1930     afsconf_SawCell = 1;        /* Means don't print warning if AFSCELL is set */
1931     ka_Init(0);
1932     afsconf_SawCell = 0;        /* Reset it */
1933     /* don't check error code, since fails sometimes when we're setting up a
1934      * system */
1935     initialize_CMD_error_table();
1936     initialize_BZ_error_table();
1937
1938     ts = cmd_CreateSyntax("start", StartServer, NULL, "start running a server");
1939     cmd_AddParm(ts, "-server", CMD_SINGLE, 0, "machine name");
1940     cmd_AddParm(ts, "-instance", CMD_LIST, 0, "server process name");
1941     add_std_args(ts);
1942
1943     ts = cmd_CreateSyntax("stop", StopServer, NULL, "halt a server instance");
1944     cmd_AddParm(ts, "-server", CMD_SINGLE, 0, "machine name");
1945     cmd_AddParm(ts, "-instance", CMD_LIST, 0, "server process name");
1946     cmd_Seek(ts, 8);
1947     cmd_AddParm(ts, "-wait", CMD_FLAG, CMD_OPTIONAL,
1948                 "wait for process to stop");
1949     add_std_args(ts);
1950
1951     ts = cmd_CreateSyntax("status", StatServer, NULL,
1952                           "show server instance status");
1953     cmd_AddParm(ts, "-server", CMD_SINGLE, 0, "machine name");
1954     cmd_AddParm(ts, "-instance", CMD_LIST, CMD_OPTIONAL,
1955                 "server process name");
1956     cmd_AddParm(ts, "-long", CMD_FLAG, CMD_OPTIONAL, "long status");
1957     add_std_args(ts);
1958
1959     ts = cmd_CreateSyntax("shutdown", Shutdown, NULL, "shutdown all processes");
1960     cmd_AddParm(ts, "-server", CMD_SINGLE, 0, "machine name");
1961     cmd_AddParm(ts, "-instance", CMD_LIST, CMD_OPTIONAL, "instances");
1962     cmd_Seek(ts, 8);
1963     cmd_AddParm(ts, "-wait", CMD_FLAG, CMD_OPTIONAL,
1964                 "wait for process to stop");
1965     add_std_args(ts);
1966
1967     ts = cmd_CreateSyntax("startup", Startup, NULL, "start all processes");
1968     cmd_AddParm(ts, "-server", CMD_SINGLE, 0, "machine name");
1969     cmd_AddParm(ts, "-instance", CMD_LIST, CMD_OPTIONAL, "instances");
1970     add_std_args(ts);
1971
1972     ts = cmd_CreateSyntax("restart", Restart, NULL, "restart processes");
1973     cmd_AddParm(ts, "-server", CMD_SINGLE, 0, "machine name");
1974     cmd_AddParm(ts, "-instance", CMD_LIST, CMD_OPTIONAL, "instances");
1975     cmd_AddParm(ts, "-bosserver", CMD_FLAG, CMD_OPTIONAL,
1976                 "restart bosserver");
1977     cmd_AddParm(ts, "-all", CMD_FLAG, CMD_OPTIONAL, "restart all processes");
1978     add_std_args(ts);
1979
1980 #ifndef OPBOS
1981
1982     ts = cmd_CreateSyntax("create", CreateServer, NULL,
1983                           "create a new server instance");
1984     cmd_AddParm(ts, "-server", CMD_SINGLE, 0, "machine name");
1985     cmd_AddParm(ts, "-instance", CMD_SINGLE, 0, "server process name");
1986     cmd_AddParm(ts, "-type", CMD_SINGLE, 0, "server type");
1987     cmd_AddParm(ts, "-cmd", CMD_LIST, 0, "command lines");
1988     cmd_AddParm(ts, "-notifier", CMD_SINGLE, CMD_OPTIONAL,
1989                 "Notifier program");
1990     add_std_args(ts);
1991
1992     ts = cmd_CreateSyntax("delete", DeleteServer, NULL,
1993                           "delete a server instance");
1994     cmd_AddParm(ts, "-server", CMD_SINGLE, 0, "machine name");
1995     cmd_AddParm(ts, "-instance", CMD_LIST, 0, "server process name");
1996     add_std_args(ts);
1997
1998     ts = cmd_CreateSyntax("adduser", AddSUser, NULL,
1999                           "add users to super-user list");
2000     cmd_AddParm(ts, "-server", CMD_SINGLE, 0, "machine name");
2001     cmd_AddParm(ts, "-user", CMD_LIST, 0, "user names");
2002     add_std_args(ts);
2003
2004     ts = cmd_CreateSyntax("removeuser", RemoveSUser, NULL,
2005                           "remove users from super-user list");
2006     cmd_AddParm(ts, "-server", CMD_SINGLE, 0, "machine name");
2007     cmd_AddParm(ts, "-user", CMD_LIST, 0, "user names");
2008     add_std_args(ts);
2009
2010     ts = cmd_CreateSyntax("listusers", ListSUsers, NULL, "list super-users");
2011     cmd_AddParm(ts, "-server", CMD_SINGLE, 0, "machine name");
2012     add_std_args(ts);
2013
2014     ts = cmd_CreateSyntax("addkey", AddKey, NULL,
2015                           "add keys to key dbase (kvno 999 is bcrypt)");
2016     cmd_AddParm(ts, "-server", CMD_SINGLE, 0, "machine name");
2017     cmd_AddParm(ts, "-key", CMD_SINGLE, CMD_OPTIONAL, "key");
2018     cmd_AddParm(ts, "-kvno", CMD_SINGLE, 0, "key version number");
2019     add_std_args(ts);
2020
2021     ts = cmd_CreateSyntax("removekey", RemoveKey, NULL,
2022                           "remove keys from key dbase");
2023     cmd_AddParm(ts, "-server", CMD_SINGLE, 0, "machine name");
2024     cmd_AddParm(ts, "-kvno", CMD_LIST, 0, "key version number");
2025     add_std_args(ts);
2026
2027     ts = cmd_CreateSyntax("listkeys", ListKeys, NULL, "list keys");
2028     cmd_AddParm(ts, "-server", CMD_SINGLE, 0, "machine name");
2029     cmd_AddParm(ts, "-showkey", CMD_FLAG, CMD_OPTIONAL,
2030                 "show the actual key rather than the checksum");
2031     add_std_args(ts);
2032
2033     ts = cmd_CreateSyntax("listhosts", ListHosts, NULL, "get cell host list");
2034     cmd_AddParm(ts, "-server", CMD_SINGLE, 0, "machine name");
2035     add_std_args(ts);
2036     cmd_CreateAlias(ts, "getcell");
2037
2038     ts = cmd_CreateSyntax("setcellname", SetCellName, NULL, "set cell name");
2039     cmd_AddParm(ts, "-server", CMD_SINGLE, 0, "machine name");
2040     cmd_AddParm(ts, "-name", CMD_SINGLE, 0, "cell name");
2041     add_std_args(ts);
2042
2043     ts = cmd_CreateSyntax("addhost", AddHost, NULL, "add host to cell dbase");
2044     cmd_AddParm(ts, "-server", CMD_SINGLE, 0, "machine name");
2045     cmd_AddParm(ts, "-host", CMD_LIST, 0, "host name");
2046     cmd_AddParm(ts, "-clone", CMD_FLAG, CMD_OPTIONAL, "vote doesn't count");
2047     add_std_args(ts);
2048
2049     ts = cmd_CreateSyntax("removehost", RemoveHost, NULL,
2050                           "remove host from cell dbase");
2051     cmd_AddParm(ts, "-server", CMD_SINGLE, 0, "machine name");
2052     cmd_AddParm(ts, "-host", CMD_LIST, 0, "host name");
2053     add_std_args(ts);
2054
2055     ts = cmd_CreateSyntax("setauth", SetAuth, NULL,
2056                           "set authentication required flag");
2057     cmd_AddParm(ts, "-server", CMD_SINGLE, 0, "machine name");
2058     cmd_AddParm(ts, "-authrequired", CMD_SINGLE, 0,
2059                 "on or off: authentication required for admin requests");
2060     add_std_args(ts);
2061
2062     ts = cmd_CreateSyntax("install", Install, NULL, "install program");
2063     cmd_AddParm(ts, "-server", CMD_SINGLE, 0, "machine name");
2064     cmd_AddParm(ts, "-file", CMD_LIST, 0, "files to install");
2065     cmd_AddParm(ts, "-dir", CMD_SINGLE, CMD_OPTIONAL, "destination dir");
2066     add_std_args(ts);
2067
2068     ts = cmd_CreateSyntax("uninstall", UnInstall, NULL, "uninstall program");
2069     cmd_AddParm(ts, "-server", CMD_SINGLE, 0, "machine name");
2070     cmd_AddParm(ts, "-file", CMD_LIST, 0, "files to uninstall");
2071     cmd_AddParm(ts, "-dir", CMD_SINGLE, CMD_OPTIONAL, "destination dir");
2072     add_std_args(ts);
2073
2074     ts = cmd_CreateSyntax("getlog", GetLogCmd, NULL, "examine log file");
2075     cmd_AddParm(ts, "-server", CMD_SINGLE, 0, "machine name");
2076     cmd_AddParm(ts, "-file", CMD_SINGLE, 0, "log file to examine");
2077     add_std_args(ts);
2078
2079     ts = cmd_CreateSyntax("getdate", GetDate, NULL, "get dates for programs");
2080     cmd_AddParm(ts, "-server", CMD_SINGLE, 0, "machine name");
2081     cmd_AddParm(ts, "-file", CMD_LIST, 0, "files to check");
2082     cmd_AddParm(ts, "-dir", CMD_SINGLE, CMD_OPTIONAL, "destination dir");
2083     add_std_args(ts);
2084
2085     ts = cmd_CreateSyntax("exec", Exec, NULL, "execute shell command on server");
2086     cmd_AddParm(ts, "-server", CMD_SINGLE, 0, "machine name");
2087     cmd_AddParm(ts, "-cmd", CMD_SINGLE, 0, "command to execute");
2088     add_std_args(ts);
2089
2090     ts = cmd_CreateSyntax("prune", Prune, NULL, "prune server files");
2091     cmd_AddParm(ts, "-server", CMD_SINGLE, 0, "machine name");
2092     cmd_AddParm(ts, "-bak", CMD_FLAG, CMD_OPTIONAL, "delete .BAK files");
2093     cmd_AddParm(ts, "-old", CMD_FLAG, CMD_OPTIONAL, "delete .OLD files");
2094     cmd_AddParm(ts, "-core", CMD_FLAG, CMD_OPTIONAL, "delete core files");
2095     cmd_AddParm(ts, "-all", CMD_FLAG, CMD_OPTIONAL, "delete all junk files");
2096     add_std_args(ts);
2097
2098     ts = cmd_CreateSyntax("setrestart", SetRestartCmd, NULL,
2099                           "set restart times");
2100     cmd_AddParm(ts, "-server", CMD_SINGLE, CMD_REQUIRED, "machine name");
2101     cmd_AddParm(ts, "-time", CMD_SINGLE, CMD_REQUIRED,
2102                 "time to restart server");
2103     cmd_AddParm(ts, "-general", CMD_FLAG, CMD_OPTIONAL,
2104                 "set general restart time");
2105     cmd_AddParm(ts, "-newbinary", CMD_FLAG, CMD_OPTIONAL,
2106                 "set new binary restart time");
2107     add_std_args(ts);
2108     cmd_CreateAlias(ts, "setr");
2109
2110     ts = cmd_CreateSyntax("getrestart", GetRestartCmd, NULL,
2111                           "get restart times");
2112     cmd_AddParm(ts, "-server", CMD_SINGLE, CMD_REQUIRED, "machine name");
2113     add_std_args(ts);
2114     cmd_CreateAlias(ts, "getr");
2115
2116     ts = cmd_CreateSyntax("salvage", SalvageCmd, NULL,
2117                           "salvage partition or volumes");
2118     cmd_AddParm(ts, "-server", CMD_SINGLE, 0, "machine name");
2119     cmd_AddParm(ts, "-partition", CMD_SINGLE, CMD_OPTIONAL,
2120                 "salvage partition");
2121     cmd_AddParm(ts, "-volume", CMD_SINGLE, CMD_OPTIONAL,
2122                 "salvage volume number or volume name");
2123     cmd_AddParm(ts, "-file", CMD_SINGLE, CMD_OPTIONAL,
2124                 "salvage log output file");
2125     cmd_AddParm(ts, "-all", CMD_FLAG, CMD_OPTIONAL, "salvage whole server");
2126     cmd_AddParm(ts, "-showlog", CMD_FLAG, CMD_OPTIONAL,
2127                 "display salvage log");
2128     cmd_AddParm(ts, "-parallel", CMD_SINGLE, CMD_OPTIONAL,
2129                 "# of max parallel partition salvaging");
2130     cmd_AddParm(ts, "-tmpdir", CMD_SINGLE, CMD_OPTIONAL,
2131                 "directory to place tmp files");
2132     cmd_AddParm(ts, "-orphans", CMD_SINGLE, CMD_OPTIONAL,
2133                 "ignore | remove | attach");
2134     cmd_AddParm(ts, "-forceDAFS", CMD_FLAG, CMD_OPTIONAL,
2135                 "(DAFS) force salvage of demand attach fileserver");
2136     cmd_AddParm(ts, "-debug", CMD_FLAG, CMD_OPTIONAL,
2137                 "(MR-AFS) Run in Debugging mode");
2138     cmd_AddParm(ts, "-nowrite", CMD_FLAG, CMD_OPTIONAL,
2139                 "(MR-AFS) Run readonly/test mode");
2140     cmd_AddParm(ts, "-force", CMD_FLAG, CMD_OPTIONAL,
2141                 "(MR-AFS) Force full salvaging");
2142     cmd_AddParm(ts, "-oktozap", CMD_FLAG, CMD_OPTIONAL,
2143                 "(MR-AFS) Give permission to destroy bogus file residencies/volumes - debugging flag");
2144     cmd_AddParm(ts, "-rootfiles", CMD_FLAG, CMD_OPTIONAL,
2145                 "(MR-AFS) Show files owned by root - debugging flag");
2146     cmd_AddParm(ts, "-salvagedirs", CMD_FLAG, CMD_OPTIONAL,
2147                 "(MR-AFS) Force rebuild/salvage of all directories");
2148     cmd_AddParm(ts, "-blockreads", CMD_FLAG, CMD_OPTIONAL,
2149                 "(MR-AFS) Read smaller blocks to handle IO/bad blocks");
2150     cmd_AddParm(ts, "-ListResidencies", CMD_FLAG, CMD_OPTIONAL,
2151                 "(MR-AFS) Just list affected file residencies - debugging flag");
2152     cmd_AddParm(ts, "-SalvageRemote", CMD_FLAG, CMD_OPTIONAL,
2153                 "(MR-AFS) Salvage storage systems that are not directly attached");
2154     cmd_AddParm(ts, "-SalvageArchival", CMD_FLAG, CMD_OPTIONAL,
2155                 "(MR-AFS) Salvage HSM storage systems");
2156     cmd_AddParm(ts, "-IgnoreCheck", CMD_FLAG, CMD_OPTIONAL,
2157                 "(MR-AFS) Don't perform VLDB safety check when deleting unreferenced files.  Only a good idea in single server cell.");
2158     cmd_AddParm(ts, "-ForceOnLine", CMD_FLAG, CMD_OPTIONAL,
2159                 "(MR-AFS) Force the volume to come online, even if it hasn't salvaged cleanly.");
2160     cmd_AddParm(ts, "-UseRootDirACL", CMD_FLAG, CMD_OPTIONAL,
2161                 "(MR-AFS) Use the root directory ACL for lost+found directory if it is created.");
2162     cmd_AddParm(ts, "-TraceBadLinkCounts", CMD_FLAG, CMD_OPTIONAL,
2163                 "(MR-AFS) Print out lines about volume reference count changes.");
2164     cmd_AddParm(ts, "-DontAskFS", CMD_FLAG, CMD_OPTIONAL,
2165                 "(MR-AFS) Don't ask fileserver to take volume offline.  THIS IS VERY DANGEROUS.");
2166     cmd_AddParm(ts, "-LogLevel", CMD_SINGLE, CMD_OPTIONAL,
2167                 "(MR-AFS) log level");
2168     cmd_AddParm(ts, "-rxdebug", CMD_FLAG, CMD_OPTIONAL,
2169                 "(MR-AFS) Write out rx debug information.");
2170     cmd_AddParm(ts, "-Residencies", CMD_SINGLE, CMD_OPTIONAL,
2171                 "(MR-AFS) Numeric mask of residencies to be included in the salvage.  Do not use with -SalvageRemote or -SalvageArchival");
2172     add_std_args(ts);
2173
2174     ts = cmd_CreateSyntax("blockscanner", BlockScannerCmd, NULL,
2175                           "block scanner daemon from making migration requests");
2176     cmd_AddParm(ts, "-server", CMD_SINGLE, CMD_REQUIRED, "machine name");
2177     add_std_args(ts);
2178
2179     ts = cmd_CreateSyntax("unblockscanner", UnBlockScannerCmd, NULL,
2180                           "allow scanner daemon to make migration requests again");
2181     cmd_AddParm(ts, "-server", CMD_SINGLE, CMD_REQUIRED, "machine name");
2182     add_std_args(ts);
2183
2184     ts = cmd_CreateSyntax("getrestricted", GetRestrict, NULL,
2185                           "get restrict mode");
2186     cmd_AddParm(ts, "-server", CMD_SINGLE, 0, "machine name");
2187     add_std_args(ts);
2188
2189     ts = cmd_CreateSyntax("setrestricted", SetRestrict, NULL,
2190                           "set restrict mode");
2191     cmd_AddParm(ts, "-server", CMD_SINGLE, 0, "machine name");
2192     cmd_AddParm(ts, "-mode", CMD_SINGLE, 0, "mode to set");
2193     add_std_args(ts);
2194 #endif
2195
2196     code = cmd_Dispatch(argc, argv);
2197     rx_Finalize();
2198     exit(code);
2199 }