openafs-string-header-cleanup-20071030
[openafs.git] / src / venus / fs.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
13 RCSID
14     ("$Header$");
15
16 #include <afs/afs_args.h>
17 #include <rx/xdr.h>
18 #include <sys/ioctl.h>
19 #include <sys/socket.h>
20 #include <netdb.h>
21 #include <errno.h>
22 #include <stdio.h>
23 #include <netinet/in.h>
24 #include <sys/stat.h>
25 #include <afs/stds.h>
26 #include <afs/vice.h>
27 #include <afs/venus.h>
28 #include <afs/com_err.h>
29 #ifdef  AFS_AIX32_ENV
30 #include <signal.h>
31 #endif
32
33 #include <string.h>
34
35 #undef VIRTUE
36 #undef VICE
37 #include "afs/prs_fs.h"
38 #include <afs/afsint.h>
39 #include <afs/cellconfig.h>
40 #include <ubik.h>
41 #include <rx/rxkad.h>
42 #include <rx/rx_globals.h>
43 #include <afs/vldbint.h>
44 #include <afs/volser.h>
45 #include <afs/vlserver.h>
46 #include <afs/cmd.h>
47 #include <afs/afsutil.h>
48 #include <stdlib.h>
49 #include <assert.h>
50 #include <afs/ptclient.h>
51
52
53 #define MAXHOSTS 13
54 #define OMAXHOSTS 8
55 #define MAXCELLHOSTS 8
56 #define MAXNAME 100
57 #define MAXSIZE 2048
58 #define MAXINSIZE 1300          /* pioctl complains if data is larger than this */
59 #define VMSGSIZE 128            /* size of msg buf in volume hdr */
60
61 static char space[MAXSIZE];
62 static char tspace[1024];
63 static struct ubik_client *uclient;
64
65 static int GetClientAddrsCmd(), SetClientAddrsCmd(), FlushMountCmd();
66 static int RxStatProcCmd(), RxStatPeerCmd(), GetFidCmd(), UuidCmd();
67
68 extern char *hostutil_GetNameByINet();
69 extern struct hostent *hostutil_GetHostByName();
70
71
72 extern struct cmd_syndesc *cmd_CreateSyntax();
73 static char pn[] = "fs";
74 static int rxInitDone = 0;
75
76 static void ZapList();
77 static int PruneList();
78 static CleanAcl();
79 static SetVolCmd();
80 static GetCellName();
81 static VLDBInit();
82 static void Die();
83
84 /*
85  * Character to use between name and rights in printed representation for
86  * DFS ACL's.
87  */
88 #define DFS_SEPARATOR   ' '
89
90 typedef char sec_rgy_name_t[1025];      /* A DCE definition */
91
92 struct Acl {
93     int dfs;                    /* Originally true if a dfs acl; now also the type
94                                  * of the acl (1, 2, or 3, corresponding to object,
95                                  * initial dir, or initial object). */
96     sec_rgy_name_t cell;        /* DFS cell name */
97     int nplus;
98     int nminus;
99     struct AclEntry *pluslist;
100     struct AclEntry *minuslist;
101 };
102
103 struct AclEntry {
104     struct AclEntry *next;
105     char name[MAXNAME];
106     afs_int32 rights;
107 };
108
109 struct vcxstat2 {
110     afs_int32 callerAccess;
111     afs_int32 cbExpires;
112     afs_int32 anyAccess;
113     char mvstat;
114 };
115
116 static void
117 ZapAcl(acl)
118      struct Acl *acl;
119 {
120     if (!acl)
121         return;
122     ZapList(acl->pluslist);
123     ZapList(acl->minuslist);
124     free(acl);
125 }
126
127 static
128 foldcmp(a, b)
129      char *a;
130      char *b;
131 {
132     char t, u;
133     while (1) {
134         t = *a++;
135         u = *b++;
136         if (t >= 'A' && t <= 'Z')
137             t += 0x20;
138         if (u >= 'A' && u <= 'Z')
139             u += 0x20;
140         if (t != u)
141             return 1;
142         if (t == 0)
143             return 0;
144     }
145 }
146
147 /*
148  * Mods for the AFS/DFS protocol translator.
149  *
150  * DFS rights. It's ugly to put these definitions here, but they
151  * *cannot* change, because they're part of the wire protocol.
152  * In any event, the protocol translator will guarantee these
153  * assignments for AFS cache managers.
154  */
155 #define DFS_READ          0x01
156 #define DFS_WRITE         0x02
157 #define DFS_EXECUTE       0x04
158 #define DFS_CONTROL       0x08
159 #define DFS_INSERT        0x10
160 #define DFS_DELETE        0x20
161
162 /* the application definable ones (backwards from AFS) */
163 #define DFS_USR0 0x80000000     /* "A" bit */
164 #define DFS_USR1 0x40000000     /* "B" bit */
165 #define DFS_USR2 0x20000000     /* "C" bit */
166 #define DFS_USR3 0x10000000     /* "D" bit */
167 #define DFS_USR4 0x08000000     /* "E" bit */
168 #define DFS_USR5 0x04000000     /* "F" bit */
169 #define DFS_USR6 0x02000000     /* "G" bit */
170 #define DFS_USR7 0x01000000     /* "H" bit */
171 #define DFS_USRALL      (DFS_USR0 | DFS_USR1 | DFS_USR2 | DFS_USR3 |\
172                          DFS_USR4 | DFS_USR5 | DFS_USR6 | DFS_USR7)
173
174 /*
175  * Offset of -id switch in command structure for various commands.
176  * The -if switch is the next switch always.
177  */
178 static int parm_setacl_id, parm_copyacl_id, parm_listacl_id;
179
180 /*
181  * Determine whether either the -id or -if switches are present, and
182  * return 0, 1 or 2, as appropriate. Abort if both switches are present.
183  */
184 /*    int id;   Offset of -id switch; -if is next switch */
185 static int
186 getidf(struct cmd_syndesc *as, int id)
187 {
188     int idf = 0;
189
190     if (as->parms[id].items) {
191         idf |= 1;
192     }
193     if (as->parms[id + 1].items) {
194         idf |= 2;
195     }
196     if (idf == 3) {
197         fprintf(stderr,
198                 "%s: you may specify either -id or -if, but not both switches\n",
199                 pn);
200         exit(1);
201     }
202     return idf;
203 }
204
205 static int
206 PRights(afs_int32 arights, int dfs)
207 {
208     if (!dfs) {
209         if (arights & PRSFS_READ)
210             printf("r");
211         if (arights & PRSFS_LOOKUP)
212             printf("l");
213         if (arights & PRSFS_INSERT)
214             printf("i");
215         if (arights & PRSFS_DELETE)
216             printf("d");
217         if (arights & PRSFS_WRITE)
218             printf("w");
219         if (arights & PRSFS_LOCK)
220             printf("k");
221         if (arights & PRSFS_ADMINISTER)
222             printf("a");
223         if (arights & PRSFS_USR0)
224             printf("A");
225         if (arights & PRSFS_USR1)
226             printf("B");
227         if (arights & PRSFS_USR2)
228             printf("C");
229         if (arights & PRSFS_USR3)
230             printf("D");
231         if (arights & PRSFS_USR4)
232             printf("E");
233         if (arights & PRSFS_USR5)
234             printf("F");
235         if (arights & PRSFS_USR6)
236             printf("G");
237         if (arights & PRSFS_USR7)
238             printf("H");
239     } else {
240         if (arights & DFS_READ)
241             printf("r");
242         else
243             printf("-");
244         if (arights & DFS_WRITE)
245             printf("w");
246         else
247             printf("-");
248         if (arights & DFS_EXECUTE)
249             printf("x");
250         else
251             printf("-");
252         if (arights & DFS_CONTROL)
253             printf("c");
254         else
255             printf("-");
256         if (arights & DFS_INSERT)
257             printf("i");
258         else
259             printf("-");
260         if (arights & DFS_DELETE)
261             printf("d");
262         else
263             printf("-");
264         if (arights & (DFS_USRALL))
265             printf("+");
266         if (arights & DFS_USR0)
267             printf("A");
268         if (arights & DFS_USR1)
269             printf("B");
270         if (arights & DFS_USR2)
271             printf("C");
272         if (arights & DFS_USR3)
273             printf("D");
274         if (arights & DFS_USR4)
275             printf("E");
276         if (arights & DFS_USR5)
277             printf("F");
278         if (arights & DFS_USR6)
279             printf("G");
280         if (arights & DFS_USR7)
281             printf("H");
282     }
283 }
284
285 /* this function returns TRUE (1) if the file is in AFS, otherwise false (0) */
286 static int
287 InAFS(char *apath)
288 {
289     struct ViceIoctl blob;
290     afs_int32 code;
291
292     blob.in_size = 0;
293     blob.out_size = MAXSIZE;
294     blob.out = space;
295
296     code = pioctl(apath, VIOC_FILE_CELL_NAME, &blob, 1);
297     if (code) {
298         if ((errno == EINVAL) || (errno == ENOENT))
299             return 0;
300     }
301     return 1;
302 }
303
304 /* return a static pointer to a buffer */
305 static char *
306 Parent(char *apath)
307 {
308     char *tp;
309     strcpy(tspace, apath);
310     tp = strrchr(tspace, '/');
311     if (tp) {
312         *tp = 0;
313     } else
314         strcpy(tspace, ".");
315     return tspace;
316 }
317
318 enum rtype { add, destroy, deny };
319
320 static afs_int32
321 Convert(char *arights, int dfs, enum rtype *rtypep)
322 {
323     int i, len;
324     afs_int32 mode;
325     char tc;
326
327     *rtypep = add;              /* add rights, by default */
328
329     if (dfs) {
330         if (!strcmp(arights, "null")) {
331             *rtypep = deny;
332             return 0;
333         }
334         if (!strcmp(arights, "read"))
335             return DFS_READ | DFS_EXECUTE;
336         if (!strcmp(arights, "write"))
337             return DFS_READ | DFS_EXECUTE | DFS_INSERT | DFS_DELETE |
338                 DFS_WRITE;
339         if (!strcmp(arights, "all"))
340             return DFS_READ | DFS_EXECUTE | DFS_INSERT | DFS_DELETE |
341                 DFS_WRITE | DFS_CONTROL;
342     } else {
343         if (!strcmp(arights, "read"))
344             return PRSFS_READ | PRSFS_LOOKUP;
345         if (!strcmp(arights, "write"))
346             return PRSFS_READ | PRSFS_LOOKUP | PRSFS_INSERT | PRSFS_DELETE |
347                 PRSFS_WRITE | PRSFS_LOCK;
348         if (!strcmp(arights, "mail"))
349             return PRSFS_INSERT | PRSFS_LOCK | PRSFS_LOOKUP;
350         if (!strcmp(arights, "all"))
351             return PRSFS_READ | PRSFS_LOOKUP | PRSFS_INSERT | PRSFS_DELETE |
352                 PRSFS_WRITE | PRSFS_LOCK | PRSFS_ADMINISTER;
353     }
354     if (!strcmp(arights, "none")) {
355         *rtypep = destroy;      /* Remove entire entry */
356         return 0;
357     }
358     len = strlen(arights);
359     mode = 0;
360     for (i = 0; i < len; i++) {
361         tc = *arights++;
362         if (dfs) {
363             if (tc == '-')
364                 continue;
365             else if (tc == 'r')
366                 mode |= DFS_READ;
367             else if (tc == 'w')
368                 mode |= DFS_WRITE;
369             else if (tc == 'x')
370                 mode |= DFS_EXECUTE;
371             else if (tc == 'c')
372                 mode |= DFS_CONTROL;
373             else if (tc == 'i')
374                 mode |= DFS_INSERT;
375             else if (tc == 'd')
376                 mode |= DFS_DELETE;
377             else if (tc == 'A')
378                 mode |= DFS_USR0;
379             else if (tc == 'B')
380                 mode |= DFS_USR1;
381             else if (tc == 'C')
382                 mode |= DFS_USR2;
383             else if (tc == 'D')
384                 mode |= DFS_USR3;
385             else if (tc == 'E')
386                 mode |= DFS_USR4;
387             else if (tc == 'F')
388                 mode |= DFS_USR5;
389             else if (tc == 'G')
390                 mode |= DFS_USR6;
391             else if (tc == 'H')
392                 mode |= DFS_USR7;
393             else {
394                 fprintf(stderr, "%s: illegal DFS rights character '%c'.\n",
395                         pn, tc);
396                 exit(1);
397             }
398         } else {
399             if (tc == 'r')
400                 mode |= PRSFS_READ;
401             else if (tc == 'l')
402                 mode |= PRSFS_LOOKUP;
403             else if (tc == 'i')
404                 mode |= PRSFS_INSERT;
405             else if (tc == 'd')
406                 mode |= PRSFS_DELETE;
407             else if (tc == 'w')
408                 mode |= PRSFS_WRITE;
409             else if (tc == 'k')
410                 mode |= PRSFS_LOCK;
411             else if (tc == 'a')
412                 mode |= PRSFS_ADMINISTER;
413             else if (tc == 'A')
414                 mode |= PRSFS_USR0;
415             else if (tc == 'B')
416                 mode |= PRSFS_USR1;
417             else if (tc == 'C')
418                 mode |= PRSFS_USR2;
419             else if (tc == 'D')
420                 mode |= PRSFS_USR3;
421             else if (tc == 'E')
422                 mode |= PRSFS_USR4;
423             else if (tc == 'F')
424                 mode |= PRSFS_USR5;
425             else if (tc == 'G')
426                 mode |= PRSFS_USR6;
427             else if (tc == 'H')
428                 mode |= PRSFS_USR7;
429             else {
430                 fprintf(stderr, "%s: illegal rights character '%c'.\n", pn,
431                         tc);
432                 exit(1);
433             }
434         }
435     }
436     return mode;
437 }
438
439 static struct AclEntry *
440 FindList(struct AclEntry *alist, char *aname)
441 {
442     while (alist) {
443         if (!foldcmp(alist->name, aname))
444             return alist;
445         alist = alist->next;
446     }
447     return 0;
448 }
449
450 /* if no parm specified in a particular slot, set parm to be "." instead */
451 static void
452 SetDotDefault(struct cmd_item **aitemp)
453 {
454     struct cmd_item *ti;
455     if (*aitemp)
456         return;                 /* already has value */
457     /* otherwise, allocate an item representing "." */
458     ti = (struct cmd_item *)malloc(sizeof(struct cmd_item));
459     assert(ti);
460     ti->next = (struct cmd_item *)0;
461     ti->data = (char *)malloc(2);
462     assert(ti->data);
463     strcpy(ti->data, ".");
464     *aitemp = ti;
465 }
466
467 static void
468 ChangeList(struct Acl *al, afs_int32 plus, char *aname, afs_int32 arights)
469 {
470     struct AclEntry *tlist;
471     tlist = (plus ? al->pluslist : al->minuslist);
472     tlist = FindList(tlist, aname);
473     if (tlist) {
474         /* Found the item already in the list. */
475         tlist->rights = arights;
476         if (plus)
477             al->nplus -= PruneList(&al->pluslist, al->dfs);
478         else
479             al->nminus -= PruneList(&al->minuslist, al->dfs);
480         return;
481     }
482     /* Otherwise we make a new item and plug in the new data. */
483     tlist = (struct AclEntry *)malloc(sizeof(struct AclEntry));
484     assert(tlist);
485     strcpy(tlist->name, aname);
486     tlist->rights = arights;
487     if (plus) {
488         tlist->next = al->pluslist;
489         al->pluslist = tlist;
490         al->nplus++;
491         if (arights == 0 || arights == -1)
492             al->nplus -= PruneList(&al->pluslist, al->dfs);
493     } else {
494         tlist->next = al->minuslist;
495         al->minuslist = tlist;
496         al->nminus++;
497         if (arights == 0)
498             al->nminus -= PruneList(&al->minuslist, al->dfs);
499     }
500 }
501
502 static void
503 ZapList(struct AclEntry *alist)
504 {
505     struct AclEntry *tp, *np;
506     for (tp = alist; tp; tp = np) {
507         np = tp->next;
508         free(tp);
509     }
510 }
511
512 static int
513 PruneList(struct AclEntry **ae, int dfs)
514 {
515     struct AclEntry **lp;
516     struct AclEntry *te, *ne;
517     afs_int32 ctr;
518     ctr = 0;
519     lp = ae;
520     for (te = *ae; te; te = ne) {
521         if ((!dfs && te->rights == 0) || te->rights == -1) {
522             *lp = te->next;
523             ne = te->next;
524             free(te);
525             ctr++;
526         } else {
527             ne = te->next;
528             lp = &te->next;
529         }
530     }
531     return ctr;
532 }
533
534 static char *
535 SkipLine(char *astr)
536 {
537     while (*astr != '\n')
538         astr++;
539     astr++;
540     return astr;
541 }
542
543 /*
544  * Create an empty acl, taking into account whether the acl pointed
545  * to by astr is an AFS or DFS acl. Only parse this minimally, so we
546  * can recover from problems caused by bogus ACL's (in that case, always
547  * assume that the acl is AFS: for DFS, the user can always resort to
548  * acl_edit, but for AFS there may be no other way out).
549  */
550 static struct Acl *
551 EmptyAcl(char *astr)
552 {
553     struct Acl *tp;
554     int junk;
555
556     tp = (struct Acl *)malloc(sizeof(struct Acl));
557     assert(tp);
558     tp->nplus = tp->nminus = 0;
559     tp->pluslist = tp->minuslist = 0;
560     tp->dfs = 0;
561     sscanf(astr, "%d dfs:%d %s", &junk, &tp->dfs, tp->cell);
562     return tp;
563 }
564
565 static struct Acl *
566 ParseAcl(char *astr)
567 {
568     int nplus, nminus, i, trights;
569     char tname[MAXNAME];
570     struct AclEntry *first, *last, *tl;
571     struct Acl *ta;
572
573     ta = (struct Acl *)malloc(sizeof(struct Acl));
574     assert(ta);
575     ta->dfs = 0;
576     sscanf(astr, "%d dfs:%d %s", &ta->nplus, &ta->dfs, ta->cell);
577     astr = SkipLine(astr);
578     sscanf(astr, "%d", &ta->nminus);
579     astr = SkipLine(astr);
580
581     nplus = ta->nplus;
582     nminus = ta->nminus;
583
584     last = 0;
585     first = 0;
586     for (i = 0; i < nplus; i++) {
587         sscanf(astr, "%100s %d", tname, &trights);
588         astr = SkipLine(astr);
589         tl = (struct AclEntry *)malloc(sizeof(struct AclEntry));
590         assert(tl);
591         if (!first)
592             first = tl;
593         strcpy(tl->name, tname);
594         tl->rights = trights;
595         tl->next = 0;
596         if (last)
597             last->next = tl;
598         last = tl;
599     }
600     ta->pluslist = first;
601
602     last = 0;
603     first = 0;
604     for (i = 0; i < nminus; i++) {
605         sscanf(astr, "%100s %d", tname, &trights);
606         astr = SkipLine(astr);
607         tl = (struct AclEntry *)malloc(sizeof(struct AclEntry));
608         assert(tl);
609         if (!first)
610             first = tl;
611         strcpy(tl->name, tname);
612         tl->rights = trights;
613         tl->next = 0;
614         if (last)
615             last->next = tl;
616         last = tl;
617     }
618     ta->minuslist = first;
619
620     return ta;
621 }
622
623 static int
624 PrintStatus(VolumeStatus * status, char *name, char *offmsg)
625 {
626     printf("Volume status for vid = %u named %s\n", status->Vid, name);
627     if (*offmsg != 0)
628         printf("Current offline message is %s\n", offmsg);
629     printf("Current disk quota is ");
630     if (status->MaxQuota != 0)
631         printf("%d\n", status->MaxQuota);
632     else
633         printf("unlimited\n");
634     printf("Current blocks used are %d\n", status->BlocksInUse);
635     printf("The partition has %d blocks available out of %d\n\n",
636            status->PartBlocksAvail, status->PartMaxBlocks);
637     return 0;
638 }
639
640 static int
641 QuickPrintStatus(VolumeStatus * status, char *name)
642 {
643     double QuotaUsed = 0.0;
644     double PartUsed = 0.0;
645     int WARN = 0;
646     printf("%-25.25s", name);
647
648     if (status->MaxQuota != 0) {
649         printf("%10d%10d", status->MaxQuota, status->BlocksInUse);
650         QuotaUsed =
651             ((((double)status->BlocksInUse) / status->MaxQuota) * 100.0);
652     } else {
653         printf("  no limit%10d", status->BlocksInUse);
654     }
655     if (QuotaUsed > 90.0) {
656         printf("%5.0f%%<<", QuotaUsed);
657         WARN = 1;
658     } else
659         printf("%5.0f%%  ", QuotaUsed);
660     PartUsed =
661         (100.0 -
662          ((((double)status->PartBlocksAvail) / status->PartMaxBlocks) *
663           100.0));
664     if (PartUsed > 97.0) {
665         printf("%9.0f%%<<", PartUsed);
666         WARN = 1;
667     } else
668         printf("%9.0f%%  ", PartUsed);
669     if (WARN) {
670         printf("  <<WARNING\n");
671     } else
672         printf("\n");
673     return 0;
674 }
675
676 static int
677 QuickPrintSpace(VolumeStatus * status, char *name)
678 {
679     double PartUsed = 0.0;
680     int WARN = 0;
681     printf("%-25.25s", name);
682
683     printf("%10d%10d%10d", status->PartMaxBlocks,
684            status->PartMaxBlocks - status->PartBlocksAvail,
685            status->PartBlocksAvail);
686
687     PartUsed =
688         (100.0 -
689          ((((double)status->PartBlocksAvail) / status->PartMaxBlocks) *
690           100.0));
691     if (PartUsed > 90.0) {
692         printf(" %4.0f%%<<", PartUsed);
693         WARN = 1;
694     } else
695         printf(" %4.0f%%  ", PartUsed);
696     if (WARN) {
697         printf("  <<WARNING\n");
698     } else
699         printf("\n");
700     return 0;
701 }
702
703 static char *
704 AclToString(struct Acl *acl)
705 {
706     static char mydata[MAXSIZE];
707     char tstring[MAXSIZE];
708     char dfsstring[30];
709     struct AclEntry *tp;
710
711     if (acl->dfs)
712         sprintf(dfsstring, " dfs:%d %s", acl->dfs, acl->cell);
713     else
714         dfsstring[0] = '\0';
715     sprintf(mydata, "%d%s\n%d\n", acl->nplus, dfsstring, acl->nminus);
716     for (tp = acl->pluslist; tp; tp = tp->next) {
717         sprintf(tstring, "%s %d\n", tp->name, tp->rights);
718         strcat(mydata, tstring);
719     }
720     for (tp = acl->minuslist; tp; tp = tp->next) {
721         sprintf(tstring, "%s %d\n", tp->name, tp->rights);
722         strcat(mydata, tstring);
723     }
724     return mydata;
725 }
726
727 static int
728 SetACLCmd(struct cmd_syndesc *as, char *arock)
729 {
730     afs_int32 code;
731     struct ViceIoctl blob;
732     struct Acl *ta = 0;
733     struct cmd_item *ti, *ui;
734     int plusp;
735     afs_int32 rights;
736     int clear;
737     int idf = getidf(as, parm_setacl_id);
738     int error = 0;
739
740     if (as->parms[2].items)
741         clear = 1;
742     else
743         clear = 0;
744     plusp = !(as->parms[3].items);
745     for (ti = as->parms[0].items; ti; ti = ti->next) {
746         blob.out_size = MAXSIZE;
747         blob.in_size = idf;
748         blob.in = blob.out = space;
749         code = pioctl(ti->data, VIOCGETAL, &blob, 1);
750         if (code) {
751             Die(errno, ti->data);
752             error = 1;
753             continue;
754         }
755
756         if (ta)
757             ZapAcl(ta);
758         ta = ParseAcl(space);
759         if (!plusp && ta->dfs) {
760             fprintf(stderr,
761                     "%s: %s: you may not use the -negative switch with DFS acl's.\n%s",
762                     pn, ti->data,
763                     "(you may specify \"null\" to revoke all rights, however)\n");
764             error = 1;
765             continue;
766         }
767
768         if (ta)
769             ZapAcl(ta);
770         if (clear)
771             ta = EmptyAcl(space);
772         else
773             ta = ParseAcl(space);
774         CleanAcl(ta, ti->data);
775         for (ui = as->parms[1].items; ui; ui = ui->next->next) {
776             enum rtype rtype;
777             if (!ui->next) {
778                 fprintf(stderr,
779                         "%s: Missing second half of user/access pair.\n", pn);
780                 ZapAcl(ta);
781                 return 1;
782             }
783             rights = Convert(ui->next->data, ta->dfs, &rtype);
784             if (rtype == destroy && !ta->dfs) {
785                 struct AclEntry *tlist;
786
787                 tlist = (plusp ? ta->pluslist : ta->minuslist);
788                 if (!FindList(tlist, ui->data))
789                     continue;
790             }
791             if (rtype == deny && !ta->dfs)
792                 plusp = 0;
793             if (rtype == destroy && ta->dfs)
794                 rights = -1;
795             ChangeList(ta, plusp, ui->data, rights);
796         }
797         blob.in = AclToString(ta);
798         blob.out_size = 0;
799         blob.in_size = 1 + strlen(blob.in);
800         code = pioctl(ti->data, VIOCSETAL, &blob, 1);
801         if (code) {
802             if (errno == EINVAL) {
803                 if (ta->dfs) {
804                     static char *fsenv = 0;
805                     if (!fsenv) {
806                         fsenv = (char *)getenv("FS_EXPERT");
807                     }
808                     fprintf(stderr,
809                             "%s: \"Invalid argument\" was returned when you tried to store a DFS access list.\n",
810                             pn);
811                     if (!fsenv) {
812                         fprintf(stderr,
813                                 "%s%s%s%s%s%s%s%s%s%s%s%s%s%s%s%s%s%s%s%s%s%s%s%s",
814                                 "\nPossible reasons for this include:\n\n",
815                                 " -You may have specified an inappropriate combination of rights.\n",
816                                 "  For example, some DFS-supported filesystems may not allow you to\n",
817                                 "  drop the \"c\" right from \"user_obj\".\n\n",
818                                 " -A mask_obj may be required (it is likely required by the underlying\n",
819                                 "  filesystem if you try to set anything other than the basic \"user_obj\"\n",
820                                 "  \"mask_obj\", or \"group_obj\" entries). Unlike acl_edit, the fs command\n",
821                                 "  does not automatically create or update the mask_obj. Try setting\n",
822                                 "  the rights \"mask_obj all\" with \"fs sa\" before adding any explicit\n",
823                                 "  users or groups. You can do this with a single command, such as\n",
824                                 "  \"fs sa mask_obj all user:somename read\"\n\n",
825                                 " -A specified user or group may not exist.\n\n",
826                                 " -You may have tried to delete \"user_obj\", \"group_obj\", or \"other_obj\".\n",
827                                 "  This is probably not allowed by the underlying file system.\n\n",
828                                 " -If you add a user or group to a DFS ACL, remember that it must be\n",
829                                 "  fully specified as \"user:username\" or \"group:groupname\". In addition, there\n",
830                                 "  may be local requirements on the format of the user or group name.\n",
831                                 "  Check with your cell administrator.\n\n",
832                                 " -Or numerous other possibilities. It would be great if we could be more\n",
833                                 "  precise about the actual problem, but for various reasons, this is\n",
834                                 "  impractical via this interface.  If you can't figure it out, you\n",
835                                 "  might try logging into a DCE-equipped machine and use acl_edit (or\n",
836                                 "  whatever is provided). You may get better results. Good luck!\n\n",
837                                 " (You may inhibit this message by setting \"FS_EXPERT\" in your environment)\n");
838                     }
839                 } else {
840                     fprintf(stderr,
841                             "%s: Invalid argument, possible reasons include:\n",
842                             pn);
843                     fprintf(stderr, "\t-File not in AFS\n");
844                     fprintf(stderr,
845                             "\t-Too many users on access control list\n");
846                     fprintf(stderr,
847                             "\t-Tried to add non-existent user to access control list\n");
848                 }
849             } else {
850                 Die(errno, ti->data);
851             }
852             error = 1;
853         }
854     }
855     if (ta)
856         ZapAcl(ta);
857     return error;
858 }
859
860
861 static int
862 CopyACLCmd(struct cmd_syndesc *as, char *arock)
863 {
864     afs_int32 code;
865     struct ViceIoctl blob;
866     struct Acl *fa, *ta = 0;
867     struct AclEntry *tp;
868     struct cmd_item *ti, *ui;
869     int plusp;
870     afs_int32 rights;
871     int clear;
872     int idf = getidf(as, parm_copyacl_id);
873     int error = 0;
874
875     if (as->parms[2].items)
876         clear = 1;
877     else
878         clear = 0;
879     blob.out_size = MAXSIZE;
880     blob.in_size = idf;
881     blob.in = blob.out = space;
882     code = pioctl(as->parms[0].items->data, VIOCGETAL, &blob, 1);
883     if (code) {
884         Die(errno, as->parms[0].items->data);
885         return 1;
886     }
887     fa = ParseAcl(space);
888     CleanAcl(fa, as->parms[0].items->data);
889     for (ti = as->parms[1].items; ti; ti = ti->next) {
890         blob.out_size = MAXSIZE;
891         blob.in_size = idf;
892         blob.in = blob.out = space;
893         code = pioctl(ti->data, VIOCGETAL, &blob, 1);
894         if (code) {
895             Die(errno, ti->data);
896             error = 1;
897             continue;
898         }
899
900         if (ta)
901             ZapAcl(ta);
902         if (clear)
903             ta = EmptyAcl(space);
904         else
905             ta = ParseAcl(space);
906         CleanAcl(ta, ti->data);
907         if (ta->dfs != fa->dfs) {
908             fprintf(stderr,
909                     "%s: incompatible file system types: acl not copied to %s; aborted\n",
910                     pn, ti->data);
911             error = 1;
912             continue;
913         }
914         if (ta->dfs) {
915             if (!clear && strcmp(ta->cell, fa->cell) != 0) {
916                 fprintf(stderr,
917                         "%s: default DCE cell differs for file %s: use \"-clear\" switch; acl not merged\n",
918                         pn, ti->data);
919                 error = 1;
920                 continue;
921             }
922             strcpy(ta->cell, fa->cell);
923         }
924         for (tp = fa->pluslist; tp; tp = tp->next)
925             ChangeList(ta, 1, tp->name, tp->rights);
926         for (tp = fa->minuslist; tp; tp = tp->next)
927             ChangeList(ta, 0, tp->name, tp->rights);
928         blob.in = AclToString(ta);
929         blob.out_size = 0;
930         blob.in_size = 1 + strlen(blob.in);
931         code = pioctl(ti->data, VIOCSETAL, &blob, 1);
932         if (code) {
933             if (errno == EINVAL) {
934                 fprintf(stderr,
935                         "%s: Invalid argument, possible reasons include:\n",
936                         pn);
937                 fprintf(stderr, "\t-File not in AFS\n");
938             } else {
939                 Die(errno, ti->data);
940             }
941             error = 1;
942         }
943     }
944     if (ta)
945         ZapAcl(ta);
946     ZapAcl(fa);
947     return error;
948 }
949
950 /* pioctl() call to get the cellname of a pathname */
951 static afs_int32
952 GetCell(char *fname, char *cellname)
953 {
954     afs_int32 code;
955     struct ViceIoctl blob;
956
957     blob.in_size = 0;
958     blob.out_size = MAXCELLCHARS;
959     blob.out = cellname;
960
961     code = pioctl(fname, VIOC_FILE_CELL_NAME, &blob, 1);
962     return code ? errno : 0;
963 }
964
965 /* Check if a username is valid: If it contains only digits (or a
966  * negative sign), then it might be bad. We then query the ptserver
967  * to see.
968  */
969 static
970 BadName(char *aname, char *fname)
971 {
972     afs_int32 tc, code, id;
973     char *nm;
974     char cell[MAXCELLCHARS];
975
976     for (nm = aname; tc = *nm; nm++) {
977         /* all must be '-' or digit to be bad */
978         if (tc != '-' && (tc < '0' || tc > '9'))
979             return 0;
980     }
981
982     /* Go to the PRDB and see if this all number username is valid */
983     code = GetCell(fname, cell);
984     if (code)
985         return 0;
986
987     pr_Initialize(1, AFSDIR_CLIENT_ETC_DIRPATH, cell);
988     code = pr_SNameToId(aname, &id);
989     pr_End();
990
991     /* 1=>Not-valid; 0=>Valid */
992     return ((!code && (id == ANONYMOUSID)) ? 1 : 0);
993 }
994
995
996 /* clean up an access control list of its bad entries; return 1 if we made
997    any changes to the list, and 0 otherwise */
998 static
999 CleanAcl(struct Acl *aa, char *fname)
1000 {
1001     struct AclEntry *te, **le, *ne;
1002     int changes;
1003
1004     /* Don't correct DFS ACL's for now */
1005     if (aa->dfs)
1006         return 0;
1007
1008     /* prune out bad entries */
1009     changes = 0;                /* count deleted entries */
1010     le = &aa->pluslist;
1011     for (te = aa->pluslist; te; te = ne) {
1012         ne = te->next;
1013         if (BadName(te->name, fname)) {
1014             /* zap this dude */
1015             *le = te->next;
1016             aa->nplus--;
1017             free(te);
1018             changes++;
1019         } else {
1020             le = &te->next;
1021         }
1022     }
1023     le = &aa->minuslist;
1024     for (te = aa->minuslist; te; te = ne) {
1025         ne = te->next;
1026         if (BadName(te->name, fname)) {
1027             /* zap this dude */
1028             *le = te->next;
1029             aa->nminus--;
1030             free(te);
1031             changes++;
1032         } else {
1033             le = &te->next;
1034         }
1035     }
1036     return changes;
1037 }
1038
1039
1040 /* clean up an acl to not have bogus entries */
1041 static int
1042 CleanACLCmd(struct cmd_syndesc *as, char *arock)
1043 {
1044     afs_int32 code;
1045     struct Acl *ta = 0;
1046     struct ViceIoctl blob;
1047     int changes;
1048     struct cmd_item *ti;
1049     struct AclEntry *te;
1050     int error = 0;
1051
1052     SetDotDefault(&as->parms[0].items);
1053     for (ti = as->parms[0].items; ti; ti = ti->next) {
1054         blob.out_size = MAXSIZE;
1055         blob.in_size = 0;
1056         blob.out = space;
1057         code = pioctl(ti->data, VIOCGETAL, &blob, 1);
1058         if (code) {
1059             Die(errno, ti->data);
1060             error = 1;
1061             continue;
1062         }
1063
1064         if (ta)
1065             ZapAcl(ta);
1066         ta = ParseAcl(space);
1067         if (ta->dfs) {
1068             fprintf(stderr,
1069                     "%s: cleanacl is not supported for DFS access lists.\n",
1070                     pn);
1071             error = 1;
1072             continue;
1073         }
1074
1075         changes = CleanAcl(ta, ti->data);
1076
1077         if (changes) {
1078             /* now set the acl */
1079             blob.in = AclToString(ta);
1080             blob.in_size = strlen(blob.in) + 1;
1081             blob.out_size = 0;
1082             code = pioctl(ti->data, VIOCSETAL, &blob, 1);
1083             if (code) {
1084                 if (errno == EINVAL) {
1085                     fprintf(stderr,
1086                             "%s: Invalid argument, possible reasons include\n",
1087                             pn);
1088                     fprintf(stderr, "%s: File not in vice or\n", pn);
1089                     fprintf(stderr,
1090                             "%s: Too many users on access control list or\n",
1091                             pn);
1092                 } else {
1093                     Die(errno, ti->data);
1094                 }
1095                 error = 1;
1096                 continue;
1097             }
1098
1099             /* now list the updated acl */
1100             printf("Access list for %s is now\n", ti->data);
1101             if (ta->nplus > 0) {
1102                 if (!ta->dfs)
1103                     printf("Normal rights:\n");
1104                 for (te = ta->pluslist; te; te = te->next) {
1105                     printf("  %s ", te->name);
1106                     PRights(te->rights, ta->dfs);
1107                     printf("\n");
1108                 }
1109             }
1110             if (ta->nminus > 0) {
1111                 printf("Negative rights:\n");
1112                 for (te = ta->minuslist; te; te = te->next) {
1113                     printf("  %s ", te->name);
1114                     PRights(te->rights, ta->dfs);
1115                     printf("\n");
1116                 }
1117             }
1118             if (ti->next)
1119                 printf("\n");
1120         } else
1121             printf("Access list for %s is fine.\n", ti->data);
1122     }
1123     if (ta)
1124         ZapAcl(ta);
1125     return error;
1126 }
1127
1128 static int
1129 ListACLCmd(struct cmd_syndesc *as, char *arock)
1130 {
1131     afs_int32 code;
1132     struct Acl *ta;
1133     struct ViceIoctl blob;
1134     struct AclEntry *te;
1135     struct cmd_item *ti;
1136     int idf = getidf(as, parm_listacl_id);
1137     int error = 0;
1138
1139     SetDotDefault(&as->parms[0].items);
1140     for (ti = as->parms[0].items; ti; ti = ti->next) {
1141         blob.out_size = MAXSIZE;
1142         blob.in_size = idf;
1143         blob.in = blob.out = space;
1144         code = pioctl(ti->data, VIOCGETAL, &blob, 1);
1145         if (code) {
1146             Die(errno, ti->data);
1147             error = 1;
1148             continue;
1149         }
1150         ta = ParseAcl(space);
1151         switch (ta->dfs) {
1152         case 0:
1153             printf("Access list for %s is\n", ti->data);
1154             break;
1155         case 1:
1156             printf("DFS access list for %s is\n", ti->data);
1157             break;
1158         case 2:
1159             printf("DFS initial directory access list of %s is\n", ti->data);
1160             break;
1161         case 3:
1162             printf("DFS initial file access list of %s is\n", ti->data);
1163             break;
1164         }
1165         if (ta->dfs) {
1166             printf("  Default cell = %s\n", ta->cell);
1167         }
1168         if (ta->nplus > 0) {
1169             if (!ta->dfs)
1170                 printf("Normal rights:\n");
1171             for (te = ta->pluslist; te; te = te->next) {
1172                 printf("  %s ", te->name);
1173                 PRights(te->rights, ta->dfs);
1174                 printf("\n");
1175             }
1176         }
1177         if (ta->nminus > 0) {
1178             printf("Negative rights:\n");
1179             for (te = ta->minuslist; te; te = te->next) {
1180                 printf("  %s ", te->name);
1181                 PRights(te->rights, ta->dfs);
1182                 printf("\n");
1183             }
1184         }
1185         if (ti->next)
1186             printf("\n");
1187         ZapAcl(ta);
1188     }
1189     return error;
1190 }
1191
1192 static int
1193 GetCallerAccess(struct cmd_syndesc *as, char *arock)
1194 {
1195     struct cmd_item *ti;
1196     int error = 0;
1197
1198     SetDotDefault(&as->parms[0].items);
1199     for (ti = as->parms[0].items; ti; ti = ti->next) {
1200         afs_int32 code;
1201         struct ViceIoctl blob;
1202         struct vcxstat2 stat;
1203         blob.out_size = sizeof(struct vcxstat2);
1204         blob.in_size = 0;
1205         blob.out = (void *)&stat;
1206         code = pioctl(ti->data, VIOC_GETVCXSTATUS2, &blob, 1);
1207         if (code) {
1208             Die(errno, ti->data);
1209             error = 1;
1210             continue;
1211         }
1212         printf("Callers access to %s is ", ti->data);
1213         PRights(stat.callerAccess, 0);
1214         printf("\n");
1215     }
1216     return error;
1217 }
1218
1219 static int
1220 FlushVolumeCmd(struct cmd_syndesc *as, char *arock)
1221 {
1222     afs_int32 code;
1223     struct ViceIoctl blob;
1224     struct cmd_item *ti;
1225     int error = 0;
1226
1227     SetDotDefault(&as->parms[0].items);
1228     for (ti = as->parms[0].items; ti; ti = ti->next) {
1229         blob.in_size = blob.out_size = 0;
1230         code = pioctl(ti->data, VIOC_FLUSHVOLUME, &blob, 0);
1231         if (code) {
1232             fprintf(stderr, "Error flushing volume ");
1233             perror(ti->data);
1234             error = 1;
1235             continue;
1236         }
1237     }
1238     return error;
1239 }
1240
1241 /* 
1242  * The Windows version of UuidCmd displays the UUID.
1243  * When the UNIX version is updated to do the same
1244  * be sure to replace the CMD_REQUIRED flag with
1245  * CMD_OPTIONAL in the cmd_AddParam(-generate) call 
1246  */
1247 static int
1248 UuidCmd(struct cmd_syndesc *as, char *arock)
1249 {
1250     afs_int32 code;
1251     struct ViceIoctl blob;
1252
1253     blob.in_size = 0;
1254     blob.out_size = 0;
1255     
1256     if (as->parms[0].items) {
1257         if (geteuid()) {
1258             fprintf (stderr, "Permission denied: requires root access.\n");
1259             return EACCES;
1260         }
1261
1262         /* generate new UUID */
1263         code = pioctl(0, VIOC_NEWUUID, &blob, 1);
1264
1265         if (code) {
1266             Die(errno, 0);
1267             return 1;
1268         }
1269
1270         printf("New uuid generated.\n");
1271     } else {
1272         /* This will never execute */
1273         printf("Please add the '-generate' option to generate a new UUID.\n");
1274     }
1275     return 0;
1276 }
1277
1278 static int
1279 FlushCmd(struct cmd_syndesc *as, char *arock)
1280 {
1281     afs_int32 code;
1282     struct ViceIoctl blob;
1283     struct cmd_item *ti;
1284     int error = 0;
1285
1286     for (ti = as->parms[0].items; ti; ti = ti->next) {
1287         blob.in_size = blob.out_size = 0;
1288         code = pioctl(ti->data, VIOCFLUSH, &blob, 0);
1289         if (code) {
1290             if (errno == EMFILE) {
1291                 fprintf(stderr, "%s: Can't flush active file %s\n", pn,
1292                         ti->data);
1293             } else {
1294                 fprintf(stderr, "%s: Error flushing file ", pn);
1295                 perror(ti->data);
1296             }
1297             error = 1;
1298             continue;
1299         }
1300     }
1301     return error;
1302 }
1303
1304 /* all this command does is repackage its args and call SetVolCmd */
1305 static int
1306 SetQuotaCmd(struct cmd_syndesc *as, char *arock)
1307 {
1308     struct cmd_syndesc ts;
1309
1310     /* copy useful stuff from our command slot; we may later have to reorder */
1311     memcpy(&ts, as, sizeof(ts));        /* copy whole thing */
1312     return SetVolCmd(&ts);
1313 }
1314
1315 static int
1316 SetVolCmd(struct cmd_syndesc *as, char *arock)
1317 {
1318     afs_int32 code;
1319     struct ViceIoctl blob;
1320     struct cmd_item *ti;
1321     struct VolumeStatus *status;
1322     char *offmsg, *input;
1323     int error = 0;
1324
1325     SetDotDefault(&as->parms[0].items);
1326     for (ti = as->parms[0].items; ti; ti = ti->next) {
1327         /* once per file */
1328         blob.out_size = MAXSIZE;
1329         blob.in_size = sizeof(*status) + 3;     /* for the three terminating nulls */
1330         blob.out = space;
1331         blob.in = space;
1332         status = (VolumeStatus *) space;
1333         status->MinQuota = status->MaxQuota = -1;
1334         offmsg = NULL;
1335         if (as->parms[1].items) {
1336             code = util_GetInt32(as->parms[1].items->data, &status->MaxQuota);
1337             if (code) {
1338                 fprintf(stderr, "%s: bad integer specified for quota.\n", pn);
1339                 error = 1;
1340                 continue;
1341             }
1342         }
1343         if (as->parms[2].items)
1344             offmsg = as->parms[2].items->data;
1345         input = (char *)status + sizeof(*status);
1346         *(input++) = '\0';      /* never set name: this call doesn't change vldb */
1347         if (offmsg) {
1348             if (strlen(offmsg) >= VMSGSIZE) {
1349                 fprintf(stderr,
1350                         "%s: message must be shorter than %d characters\n",
1351                         pn, VMSGSIZE);
1352                 error = 1;
1353                 continue;
1354             }
1355             strcpy(input, offmsg);
1356             blob.in_size += strlen(offmsg);
1357             input += strlen(offmsg) + 1;
1358         } else
1359             *(input++) = '\0';
1360         *(input++) = '\0';      /* Pad for old style volume "motd" */
1361         code = pioctl(ti->data, VIOCSETVOLSTAT, &blob, 1);
1362         if (code) {
1363             Die(errno, ti->data);
1364             error = 1;
1365         }
1366     }
1367     return error;
1368 }
1369
1370 /*
1371  * Why is VenusFid declared in the kernel-only section of afs.h,
1372  * if it's the exported interface of the cache manager?
1373  */
1374 struct VenusFid {
1375     afs_int32 Cell;
1376     AFSFid Fid;
1377 };
1378
1379 static int
1380 ExamineCmd(struct cmd_syndesc *as, char *arock)
1381 {
1382     afs_int32 code;
1383     struct ViceIoctl blob;
1384     struct cmd_item *ti;
1385     struct VolumeStatus *status;
1386     char *name, *offmsg;
1387     int error = 0;
1388
1389     SetDotDefault(&as->parms[0].items);
1390     for (ti = as->parms[0].items; ti; ti = ti->next) {
1391         struct VenusFid vfid;
1392
1393         /* once per file */
1394         blob.out_size = MAXSIZE;
1395         blob.in_size = 0;
1396         blob.out = space;
1397         code = pioctl(ti->data, VIOCGETVOLSTAT, &blob, 1);
1398         if (code) {
1399             Die(errno, ti->data);
1400             error = 1;
1401             continue;
1402         }
1403         status = (VolumeStatus *) space;
1404         name = (char *)status + sizeof(*status);
1405         offmsg = name + strlen(name) + 1;
1406
1407         blob.out_size = sizeof(struct VenusFid);
1408         blob.out = (char *) &vfid;
1409         if (0 == pioctl(ti->data, VIOCGETFID, &blob, 1)) {
1410             printf("File %s (%u.%u.%u) contained in volume %u\n",
1411                    ti->data, vfid.Fid.Volume, vfid.Fid.Vnode, vfid.Fid.Unique,
1412                    vfid.Fid.Volume);
1413         }
1414
1415         PrintStatus(status, name, offmsg);
1416     }
1417     return error;
1418 }
1419
1420 static int
1421 ListQuotaCmd(struct cmd_syndesc *as, char *arock)
1422 {
1423     afs_int32 code;
1424     struct ViceIoctl blob;
1425     struct cmd_item *ti;
1426     struct VolumeStatus *status;
1427     char *name;
1428     int error = 0;
1429
1430     printf("%-25s%-10s%-10s%-7s%-11s\n", "Volume Name", "     Quota",
1431            "      Used", " %Used", "  Partition");
1432     SetDotDefault(&as->parms[0].items);
1433     for (ti = as->parms[0].items; ti; ti = ti->next) {
1434         /* once per file */
1435         blob.out_size = MAXSIZE;
1436         blob.in_size = 0;
1437         blob.out = space;
1438         code = pioctl(ti->data, VIOCGETVOLSTAT, &blob, 1);
1439         if (code) {
1440             Die(errno, ti->data);
1441             error = 1;
1442             continue;
1443         }
1444         status = (VolumeStatus *) space;
1445         name = (char *)status + sizeof(*status);
1446         QuickPrintStatus(status, name);
1447     }
1448     return error;
1449 }
1450
1451 static int
1452 WhereIsCmd(struct cmd_syndesc *as, char *arock)
1453 {
1454     afs_int32 code;
1455     struct ViceIoctl blob;
1456     struct cmd_item *ti;
1457     int j;
1458     afs_int32 *hosts;
1459     char *tp;
1460     int error = 0;
1461
1462     SetDotDefault(&as->parms[0].items);
1463     for (ti = as->parms[0].items; ti; ti = ti->next) {
1464         /* once per file */
1465         blob.out_size = MAXSIZE;
1466         blob.in_size = 0;
1467         blob.out = space;
1468         memset(space, 0, sizeof(space));
1469         code = pioctl(ti->data, VIOCWHEREIS, &blob, 1);
1470         if (code) {
1471             Die(errno, ti->data);
1472             error = 1;
1473             continue;
1474         }
1475         hosts = (afs_int32 *) space;
1476         printf("File %s is on host%s ", ti->data,
1477                (hosts[0] && !hosts[1]) ? "" : "s");
1478         for (j = 0; j < MAXHOSTS; j++) {
1479             if (hosts[j] == 0)
1480                 break;
1481             tp = hostutil_GetNameByINet(hosts[j]);
1482             printf("%s ", tp);
1483         }
1484         printf("\n");
1485     }
1486     return error;
1487 }
1488
1489
1490 static int
1491 DiskFreeCmd(struct cmd_syndesc *as, char *arock)
1492 {
1493     afs_int32 code;
1494     struct ViceIoctl blob;
1495     struct cmd_item *ti;
1496     char *name;
1497     struct VolumeStatus *status;
1498     int error = 0;
1499
1500     printf("%-25s%-10s%-10s%-10s%-6s\n", "Volume Name", "    kbytes",
1501            "      used", "     avail", " %used");
1502     SetDotDefault(&as->parms[0].items);
1503     for (ti = as->parms[0].items; ti; ti = ti->next) {
1504         /* once per file */
1505         blob.out_size = MAXSIZE;
1506         blob.in_size = 0;
1507         blob.out = space;
1508         code = pioctl(ti->data, VIOCGETVOLSTAT, &blob, 1);
1509         if (code) {
1510             Die(errno, ti->data);
1511             error = 1;
1512             continue;
1513         }
1514         status = (VolumeStatus *) space;
1515         name = (char *)status + sizeof(*status);
1516         QuickPrintSpace(status, name);
1517     }
1518     return error;
1519 }
1520
1521 static int
1522 QuotaCmd(struct cmd_syndesc *as, char *arock)
1523 {
1524     afs_int32 code;
1525     struct ViceIoctl blob;
1526     struct cmd_item *ti;
1527     double quotaPct;
1528     struct VolumeStatus *status;
1529     int error = 0;
1530
1531     SetDotDefault(&as->parms[0].items);
1532     for (ti = as->parms[0].items; ti; ti = ti->next) {
1533         /* once per file */
1534         blob.out_size = MAXSIZE;
1535         blob.in_size = 0;
1536         blob.out = space;
1537         code = pioctl(ti->data, VIOCGETVOLSTAT, &blob, 1);
1538         if (code) {
1539             Die(errno, ti->data);
1540             error = 1;
1541             continue;
1542         }
1543         status = (VolumeStatus *) space;
1544         if (status->MaxQuota)
1545             quotaPct =
1546                 ((((double)status->BlocksInUse) / status->MaxQuota) * 100.0);
1547         else
1548             quotaPct = 0.0;
1549         printf("%2.0f%% of quota used.\n", quotaPct);
1550     }
1551     return error;
1552 }
1553
1554 static int
1555 ListMountCmd(struct cmd_syndesc *as, char *arock)
1556 {
1557     afs_int32 code;
1558     struct ViceIoctl blob;
1559     struct cmd_item *ti;
1560     char orig_name[1024];       /*Original name, may be modified */
1561     char true_name[1024];       /*``True'' dirname (e.g., symlink target) */
1562     char parent_dir[1024];      /*Parent directory of true name */
1563     char *last_component;       /*Last component of true name */
1564     struct stat statbuff;       /*Buffer for status info */
1565     int link_chars_read;        /*Num chars read in readlink() */
1566     int thru_symlink;           /*Did we get to a mount point via a symlink? */
1567     int error = 0;
1568
1569     for (ti = as->parms[0].items; ti; ti = ti->next) {
1570         /* once per file */
1571         thru_symlink = 0;
1572         sprintf(orig_name, "%s%s", (ti->data[0] == '/') ? "" : "./",
1573                 ti->data);
1574
1575         if (lstat(orig_name, &statbuff) < 0) {
1576             /* if lstat fails, we should still try the pioctl, since it
1577              * may work (for example, lstat will fail, but pioctl will
1578              * work if the volume of offline (returning ENODEV). */
1579             statbuff.st_mode = S_IFDIR; /* lie like pros */
1580         }
1581
1582         /*
1583          * The lstat succeeded.  If the given file is a symlink, substitute
1584          * the file name with the link name.
1585          */
1586         if ((statbuff.st_mode & S_IFMT) == S_IFLNK) {
1587             thru_symlink = 1;
1588             /*
1589              * Read name of resolved file.
1590              */
1591             link_chars_read = readlink(orig_name, true_name, 1024);
1592             if (link_chars_read <= 0) {
1593                 fprintf(stderr,
1594                         "%s: Can't read target name for '%s' symbolic link!\n",
1595                         pn, orig_name);
1596                 error = 1;
1597                 continue;
1598             }
1599
1600             /*
1601              * Add a trailing null to what was read, bump the length.
1602              */
1603             true_name[link_chars_read++] = 0;
1604
1605             /*
1606              * If the symlink is an absolute pathname, we're fine.  Otherwise, we
1607              * have to create a full pathname using the original name and the
1608              * relative symlink name.  Find the rightmost slash in the original
1609              * name (we know there is one) and splice in the symlink value.
1610              */
1611             if (true_name[0] != '/') {
1612                 last_component = (char *)strrchr(orig_name, '/');
1613                 strcpy(++last_component, true_name);
1614                 strcpy(true_name, orig_name);
1615             }
1616         } else
1617             strcpy(true_name, orig_name);
1618
1619         /*
1620          * Find rightmost slash, if any.
1621          */
1622         last_component = (char *)strrchr(true_name, '/');
1623         if (last_component) {
1624             /*
1625              * Found it.  Designate everything before it as the parent directory,
1626              * everything after it as the final component.
1627              */
1628             strncpy(parent_dir, true_name, last_component - true_name);
1629             parent_dir[last_component - true_name] = 0;
1630             last_component++;   /*Skip the slash */
1631         } else {
1632             /*
1633              * No slash appears in the given file name.  Set parent_dir to the current
1634              * directory, and the last component as the given name.
1635              */
1636             strcpy(parent_dir, ".");
1637             last_component = true_name;
1638         }
1639
1640         if (strcmp(last_component, ".") == 0
1641             || strcmp(last_component, "..") == 0) {
1642             fprintf(stderr,
1643                     "%s: you may not use '.' or '..' as the last component\n",
1644                     pn);
1645             fprintf(stderr, "%s: of a name in the 'fs lsmount' command.\n",
1646                     pn);
1647             error = 1;
1648             continue;
1649         }
1650
1651         blob.in = last_component;
1652         blob.in_size = strlen(last_component) + 1;
1653         blob.out_size = MAXSIZE;
1654         blob.out = space;
1655         memset(space, 0, MAXSIZE);
1656
1657         code = pioctl(parent_dir, VIOC_AFS_STAT_MT_PT, &blob, 1);
1658
1659         if (code == 0) {
1660             printf("'%s' is a %smount point for volume '%s'\n", ti->data,
1661                    (thru_symlink ? "symbolic link, leading to a " : ""),
1662                    space);
1663         } else {
1664             if (errno == EINVAL) {
1665                 fprintf(stderr, "'%s' is not a mount point.\n", ti->data);
1666             } else {
1667                 Die(errno, (ti->data ? ti->data : parent_dir));
1668             }
1669             error = 1;
1670         }
1671     }
1672     return error;
1673 }
1674
1675 static
1676 MakeMountCmd(struct cmd_syndesc *as, char *arock)
1677 {
1678     afs_int32 code;
1679     char *cellName, *volName, *tmpName;
1680     struct afsconf_cell info;
1681     struct vldbentry vldbEntry;
1682     struct ViceIoctl blob;
1683
1684 /*
1685
1686 defect #3069
1687
1688     if (as->parms[5].items && !as->parms[2].items) {
1689         fprintf(stderr, "%s: must provide cell when creating cellular mount point.\n", pn);
1690         return 1;
1691     }
1692 */
1693
1694     if (as->parms[2].items)     /* cell name specified */
1695         cellName = as->parms[2].items->data;
1696     else
1697         cellName = NULL;
1698     volName = as->parms[1].items->data;
1699
1700     if (strlen(volName) >= 64) {
1701         fprintf(stderr,
1702                 "%s: volume name too long (length must be < 64 characters)\n",
1703                 pn);
1704         return 1;
1705     }
1706
1707     /* Check for a cellname in the volume specification, and complain
1708      * if it doesn't match what was specified with -cell */
1709     if (tmpName = strchr(volName, ':')) {
1710         *tmpName = '\0';
1711         if (cellName) {
1712             if (strcasecmp(cellName, volName)) {
1713                 fprintf(stderr, "%s: cellnames do not match.\n", pn);
1714                 return 1;
1715             }
1716         }
1717         cellName = volName;
1718         volName = ++tmpName;
1719     }
1720
1721     if (!InAFS(Parent(as->parms[0].items->data))) {
1722         fprintf(stderr,
1723                 "%s: mount points must be created within the AFS file system\n",
1724                 pn);
1725         return 1;
1726     }
1727
1728     if (!cellName) {
1729         blob.in_size = 0;
1730         blob.out_size = MAXSIZE;
1731         blob.out = space;
1732         code =
1733             pioctl(Parent(as->parms[0].items->data), VIOC_FILE_CELL_NAME,
1734                    &blob, 1);
1735     }
1736
1737     code = GetCellName(cellName ? cellName : space, &info);
1738     if (code) {
1739         return 1;
1740     }
1741     if (!(as->parms[4].items)) {
1742         /* not fast, check which cell the mountpoint is being created in */
1743         /* not fast, check name with VLDB */
1744         code = VLDBInit(1, &info);
1745         if (code == 0) {
1746             /* make the check.  Don't complain if there are problems with init */
1747             code =
1748                 ubik_VL_GetEntryByNameO(uclient, 0, volName,
1749                           &vldbEntry);
1750             if (code == VL_NOENT) {
1751                 fprintf(stderr,
1752                         "%s: warning, volume %s does not exist in cell %s.\n",
1753                         pn, volName, cellName ? cellName : space);
1754             }
1755         }
1756     }
1757
1758     if (as->parms[3].items)     /* if -rw specified */
1759         strcpy(space, "%");
1760     else
1761         strcpy(space, "#");
1762     if (cellName) {
1763         /* cellular mount point, prepend cell prefix */
1764         strcat(space, info.name);
1765         strcat(space, ":");
1766     }
1767     strcat(space, volName);     /* append volume name */
1768     strcat(space, ".");         /* stupid convention; these end with a period */
1769     code = symlink(space, as->parms[0].items->data);
1770     if (code) {
1771         Die(errno, as->parms[0].items->data);
1772         return 1;
1773     }
1774     return 0;
1775 }
1776
1777 /*
1778  * Delete AFS mount points.  Variables are used as follows:
1779  *      tbuffer: Set to point to the null-terminated directory name of the mount point
1780  *          (or ``.'' if none is provided)
1781  *      tp: Set to point to the actual name of the mount point to nuke.
1782  */
1783 static int
1784 RemoveMountCmd(struct cmd_syndesc *as, char *arock)
1785 {
1786     afs_int32 code = 0;
1787     struct ViceIoctl blob;
1788     struct cmd_item *ti;
1789     char tbuffer[1024];
1790     char lsbuffer[1024];
1791     char *tp;
1792     int error = 0;
1793
1794     for (ti = as->parms[0].items; ti; ti = ti->next) {
1795         /* once per file */
1796         tp = (char *)strrchr(ti->data, '/');
1797         if (tp) {
1798             strncpy(tbuffer, ti->data, code = tp - ti->data);   /* the dir name */
1799             tbuffer[code] = 0;
1800             tp++;               /* skip the slash */
1801         } else {
1802             strcpy(tbuffer, ".");
1803             tp = ti->data;
1804         }
1805         blob.in = tp;
1806         blob.in_size = strlen(tp) + 1;
1807         blob.out = lsbuffer;
1808         blob.out_size = sizeof(lsbuffer);
1809         code = pioctl(tbuffer, VIOC_AFS_STAT_MT_PT, &blob, 0);
1810         if (code) {
1811             if (errno == EINVAL) {
1812                 fprintf(stderr, "%s: '%s' is not a mount point.\n", pn,
1813                         ti->data);
1814             } else {
1815                 Die(errno, ti->data);
1816             }
1817             error = 1;
1818             continue;           /* don't bother trying */
1819         }
1820         blob.out_size = 0;
1821         blob.in = tp;
1822         blob.in_size = strlen(tp) + 1;
1823         code = pioctl(tbuffer, VIOC_AFS_DELETE_MT_PT, &blob, 0);
1824         if (code) {
1825             Die(errno, ti->data);
1826             error = 1;
1827         }
1828     }
1829     return error;
1830 }
1831
1832 /*
1833 */
1834
1835 static int
1836 CheckServersCmd(struct cmd_syndesc *as, char *arock)
1837 {
1838     afs_int32 code;
1839     struct ViceIoctl blob;
1840     afs_int32 j;
1841     afs_int32 temp;
1842     char *tp;
1843     char tbuffer[128];
1844     afs_int32 interval;
1845     struct afsconf_cell info;
1846     struct chservinfo checkserv;
1847
1848     memset(&checkserv, 0, sizeof(struct chservinfo));
1849     blob.in_size = sizeof(struct chservinfo);
1850     blob.in = (caddr_t) & checkserv;
1851
1852     blob.out_size = MAXSIZE;
1853     blob.out = space;
1854     memset(space, 0, sizeof(afs_int32));        /* so we assure zero when nothing is copied back */
1855
1856     /* prepare flags for checkservers command */
1857     temp = 2;                   /* default to checking local cell only */
1858     if (as->parms[2].items)
1859         temp |= 1;              /* set fast flag */
1860     if (as->parms[1].items)
1861         temp &= ~2;             /* turn off local cell check */
1862
1863     checkserv.magic = 0x12345678;       /* XXX */
1864     checkserv.tflags = temp;
1865
1866     /* now copy in optional cell name, if specified */
1867     if (as->parms[0].items) {
1868         code = GetCellName(as->parms[0].items->data, &info);
1869         if (code) {
1870             return 1;
1871         }
1872         strcpy(checkserv.tbuffer, info.name);
1873         checkserv.tsize = strlen(info.name) + 1;
1874     } else {
1875         strcpy(checkserv.tbuffer, "\0");
1876         checkserv.tsize = 0;
1877     }
1878
1879     if (as->parms[3].items) {
1880         checkserv.tinterval = atol(as->parms[3].items->data);
1881
1882         /* sanity check */
1883         if (checkserv.tinterval < 0) {
1884             printf
1885                 ("Warning: The negative -interval is ignored; treated as an inquiry\n");
1886             checkserv.tinterval = 0;
1887         } else if (checkserv.tinterval > 600) {
1888             printf
1889                 ("Warning: The maximum -interval value is 10 mins (600 secs)\n");
1890             checkserv.tinterval = 600;  /* 10 min max interval */
1891         }
1892     } else {
1893         checkserv.tinterval = -1;       /* don't change current interval */
1894     }
1895
1896     code = pioctl(0, VIOCCKSERV, &blob, 1);
1897     if (code) {
1898         if ((errno == EACCES) && (checkserv.tinterval > 0)) {
1899             printf("Must be root to change -interval\n");
1900             return 1;
1901         }
1902         Die(errno, 0);
1903         return 1;
1904     }
1905     memcpy(&temp, space, sizeof(afs_int32));
1906     if (checkserv.tinterval >= 0) {
1907         if (checkserv.tinterval > 0)
1908             printf
1909                 ("The new down server probe interval (%d secs) is now in effect (old interval was %d secs)\n",
1910                  checkserv.tinterval, temp);
1911         else
1912             printf("The current down server probe interval is %d secs\n",
1913                    temp);
1914         return 0;
1915     }
1916     if (temp == 0) {
1917         printf("All servers are running.\n");
1918     } else {
1919         printf
1920             ("These servers unavailable due to network or server problems: ");
1921         for (j = 0;; j++) {
1922             memcpy(&temp, space + j * sizeof(afs_int32), sizeof(afs_int32));
1923             if (temp == 0)
1924                 break;
1925             tp = hostutil_GetNameByINet(temp);
1926             printf(" %s", tp);
1927         }
1928         printf(".\n");
1929         code = 1;               /* XXX */
1930     }
1931     return code;
1932 }
1933
1934 static int
1935 MessagesCmd(struct cmd_syndesc *as, char *arock)
1936 {
1937     afs_int32 code = 0;
1938     struct ViceIoctl blob;
1939     afs_int32 j;
1940     afs_int32 temp;
1941     struct gaginfo gagflags;
1942     struct cmd_item *show;
1943
1944     memset(&gagflags, 0, sizeof(struct gaginfo));
1945     blob.in_size = sizeof(struct gaginfo);
1946     blob.in = (caddr_t) & gagflags;
1947     blob.out_size = MAXSIZE;
1948     blob.out = space;
1949     memset(space, 0, sizeof(afs_int32));        /* so we assure zero when nothing is copied back */
1950
1951     if (show = as->parms[0].items) {
1952         if (!strcasecmp(show->data, "user"))
1953             gagflags.showflags |= GAGUSER;
1954         else if (!strcasecmp(show->data, "console"))
1955             gagflags.showflags |= GAGCONSOLE;
1956         else if (!strcasecmp(show->data, "all"))
1957             gagflags.showflags |= GAGCONSOLE | GAGUSER;
1958         else if (!strcasecmp(show->data, "none"))
1959             /* do nothing */ ;
1960         else {
1961             fprintf(stderr,
1962                     "unrecognized flag %s: must be in {user,console,all,none}\n",
1963                     show->data);
1964             code = EINVAL;
1965         }
1966     }
1967
1968     if (code)
1969         return 1;
1970
1971     code = pioctl(0, VIOC_GAG, &blob, 1);
1972     if (code) {
1973         Die(errno, 0);
1974         return 1;
1975     }
1976
1977     return 0;
1978 }
1979
1980 static int
1981 CheckVolumesCmd(struct cmd_syndesc *as, char *arock)
1982 {
1983     afs_int32 code;
1984     struct ViceIoctl blob;
1985
1986     blob.in_size = 0;
1987     blob.out_size = 0;
1988     code = pioctl(0, VIOCCKBACK, &blob, 1);
1989     if (code) {
1990         Die(errno, 0);
1991         return 1;
1992     }
1993
1994     printf("All volumeID/name mappings checked.\n");
1995     return 0;
1996 }
1997
1998 static int
1999 SetCacheSizeCmd(struct cmd_syndesc *as, char *arock)
2000 {
2001     afs_int32 code;
2002     struct ViceIoctl blob;
2003     afs_int32 temp;
2004
2005     if (!as->parms[0].items && !as->parms[1].items) {
2006         fprintf(stderr, "%s: syntax error in setcachesize cmd.\n", pn);
2007         return 1;
2008     }
2009     if (as->parms[0].items) {
2010         code = util_GetInt32(as->parms[0].items->data, &temp);
2011         if (code) {
2012             fprintf(stderr, "%s: bad integer specified for cache size.\n",
2013                     pn);
2014             return 1;
2015         }
2016     } else
2017         temp = 0;
2018     blob.in = (char *)&temp;
2019     blob.in_size = sizeof(afs_int32);
2020     blob.out_size = 0;
2021     code = pioctl(0, VIOCSETCACHESIZE, &blob, 1);
2022     if (code) {
2023         if (errno == EROFS) {
2024             printf
2025                 ("'fs setcache' not allowed on memory cache based cache managers.\n");
2026         } else {
2027             Die(errno, NULL);
2028         }
2029         return 1;
2030     }
2031
2032     printf("New cache size set.\n");
2033     return 0;
2034 }
2035
2036 #define MAXGCSIZE       16
2037 static int
2038 GetCacheParmsCmd(struct cmd_syndesc *as, char *arock)
2039 {
2040     afs_int32 code, filesUsed;
2041     struct ViceIoctl blob;
2042     afs_int32 parms[MAXGCSIZE];
2043     double percentFiles, percentBlocks;
2044     afs_int32 flags = 0;
2045
2046     if (as->parms[0].items){ /* -files */
2047         flags = 1;
2048     } else if (as->parms[1].items){ /* -excessive */
2049         flags = 2;
2050     } else {
2051         flags = 0;
2052     }
2053
2054     memset(parms, '\0', sizeof parms);  /* avoid Purify UMR error */
2055     if (flags){
2056         blob.in = (char *)&flags;
2057         blob.in_size = sizeof(afs_int32);
2058     } else {    /* be backward compatible */
2059         blob.in = NULL;
2060         blob.in_size = 0;
2061     }
2062     blob.out_size = sizeof(parms);
2063     blob.out = (char *)parms;
2064     code = pioctl(0, VIOCGETCACHEPARMS, &blob, 1);
2065     if (code) {
2066         Die(errno, NULL);
2067         return 1;
2068     }
2069
2070     if (!flags){
2071         printf("AFS using %d of the cache's available %d 1K byte blocks.\n",
2072                 parms[1], parms[0]);
2073         if (parms[1] > parms[0])
2074                 printf("[Cache guideline temporarily deliberately exceeded; it will be adjusted down but you may wish to increase the cache size.]\n");
2075         return 0;
2076     }
2077
2078     percentBlocks = ((double)parms[1]/parms[0]) * 100;
2079     printf("AFS using %5.0f%% of cache blocks (%d of %d 1k blocks)\n",
2080            percentBlocks, parms[1], parms[0]);
2081
2082     if (parms[2] == 0)
2083         return 0;
2084
2085     filesUsed = parms[2] - parms[3];
2086     percentFiles = ((double)filesUsed/parms[2]) * 100;
2087     printf("          %5.0f%% of the cache files (%d of %d files)\n",
2088             percentFiles, filesUsed, parms[2]);
2089     if (flags == 2){
2090         printf("        afs_cacheFiles: %10d\n", parms[2]);
2091         printf("        IFFree:         %10d\n", parms[3]); 
2092         printf("        IFEverUsed:     %10d\n", parms[4]); 
2093         printf("        IFDataMod:      %10d\n", parms[5]); 
2094         printf("        IFDirtyPages:   %10d\n", parms[6]);
2095         printf("        IFAnyPages:     %10d\n", parms[7]); 
2096         printf("        IFDiscarded:    %10d\n", parms[8]);
2097         printf("        DCentries:  %10d\n", parms[9]);
2098         printf("          0k-   4K: %10d\n", parms[10]); 
2099         printf("          4k-  16k: %10d\n", parms[11]); 
2100         printf("         16k-  64k: %10d\n", parms[12]); 
2101         printf("         64k- 256k: %10d\n", parms[13]); 
2102         printf("        256k-   1M: %10d\n", parms[14]); 
2103         printf("              >=1M: %10d\n", parms[15]); 
2104     }
2105
2106     if (percentBlocks > 90)
2107         printf("[cache size usage over 90%, consider increasing cache size]\n");
2108     if (percentFiles > 90)
2109         printf("[cache file usage over 90%, consider increasing '-files' argument to afsd]\n");
2110          
2111     return 0;
2112 }
2113
2114 static int
2115 ListCellsCmd(struct cmd_syndesc *as, char *arock)
2116 {
2117     afs_int32 code;
2118     afs_int32 i, j;
2119     char *tcp, *tp;
2120     afs_int32 clear;
2121     struct ViceIoctl blob;
2122     int resolve;
2123
2124     resolve = !(as->parms[0].items);    /* -numeric */
2125
2126     for (i = 0;; i++) {
2127         tp = space;
2128         memcpy(tp, &i, sizeof(afs_int32));
2129         blob.out_size = MAXSIZE;
2130         blob.in_size = sizeof(afs_int32);
2131         blob.in = space;
2132         blob.out = space;
2133         code = pioctl(0, VIOCGETCELL, &blob, 1);
2134         if (code < 0) {
2135             if (errno == EDOM)
2136                 break;          /* done with the list */
2137             Die(errno, 0);
2138             return 1;
2139         }
2140         tp = space;
2141         printf("Cell %s on hosts", tp + MAXCELLHOSTS * sizeof(afs_int32));
2142         for (j = 0; j < MAXCELLHOSTS; j++) {
2143             afs_int32 addr;
2144             char *name, tbuffer[20];
2145
2146             memcpy(&addr, tp + j * sizeof(afs_int32), sizeof(afs_int32));
2147             if (addr == 0)
2148                 break;
2149
2150             if (resolve) {
2151                 name = hostutil_GetNameByINet(addr);
2152             } else {
2153                 addr = ntohl(addr);
2154                 sprintf(tbuffer, "%d.%d.%d.%d", (addr >> 24) & 0xff,
2155                         (addr >> 16) & 0xff, (addr >> 8) & 0xff, addr & 0xff);
2156                 name = tbuffer;
2157             }
2158             printf(" %s", name);
2159         }
2160         printf(".\n");
2161     }
2162     return 0;
2163 }
2164
2165 static int
2166 ListAliasesCmd(struct cmd_syndesc *as, char *arock)
2167 {
2168     afs_int32 code, i;
2169     char *tp, *aliasName, *realName;
2170     struct ViceIoctl blob;
2171
2172     for (i = 0;; i++) {
2173         tp = space;
2174         memcpy(tp, &i, sizeof(afs_int32));
2175         blob.out_size = MAXSIZE;
2176         blob.in_size = sizeof(afs_int32);
2177         blob.in = space;
2178         blob.out = space;
2179         code = pioctl(0, VIOC_GETALIAS, &blob, 1);
2180         if (code < 0) {
2181             if (errno == EDOM)
2182                 break;          /* done with the list */
2183             Die(errno, 0);
2184             return 1;
2185         }
2186         tp = space;
2187         aliasName = tp;
2188         tp += strlen(aliasName) + 1;
2189         realName = tp;
2190         printf("Alias %s for cell %s\n", aliasName, realName);
2191     }
2192     return 0;
2193 }
2194
2195 static int
2196 CallBackRxConnCmd(struct cmd_syndesc *as, char *arock)
2197 {
2198     afs_int32 code;
2199     struct ViceIoctl blob;
2200     struct cmd_item *ti;
2201     afs_int32 hostAddr;
2202     struct hostent *thp;
2203     char *tp;
2204     int setp;
2205     
2206     ti = as->parms[0].items;
2207     setp = 1;
2208     if (ti) {
2209         thp = hostutil_GetHostByName(ti->data);
2210         if (!thp) {
2211             fprintf(stderr, "host %s not found in host table.\n", ti->data);
2212             return 1;
2213         }
2214         else memcpy(&hostAddr, thp->h_addr, sizeof(afs_int32));
2215     } else {
2216         hostAddr = 0;   /* means don't set host */
2217         setp = 0;       /* aren't setting host */
2218     }
2219     
2220     /* now do operation */
2221     blob.in_size = sizeof(afs_int32);
2222     blob.out_size = sizeof(afs_int32);
2223     blob.in = (char *) &hostAddr;
2224     blob.out = (char *) &hostAddr;
2225     
2226     code = pioctl(0, VIOC_CBADDR, &blob, 1);
2227     if (code < 0) {
2228         Die(errno, 0);
2229         return 1;
2230     }
2231     return 0;
2232 }
2233
2234 static int
2235 NukeNFSCredsCmd(struct cmd_syndesc *as, char *arock)
2236 {
2237     afs_int32 code;
2238     struct ViceIoctl blob;
2239     struct cmd_item *ti;
2240     afs_int32 hostAddr;
2241     struct hostent *thp;
2242     
2243     ti = as->parms[0].items;
2244     thp = hostutil_GetHostByName(ti->data);
2245     if (!thp) {
2246         fprintf(stderr, "host %s not found in host table.\n", ti->data);
2247         return 1;
2248     }
2249     else memcpy(&hostAddr, thp->h_addr, sizeof(afs_int32));
2250     
2251     /* now do operation */
2252     blob.in_size = sizeof(afs_int32);
2253     blob.out_size = sizeof(afs_int32);
2254     blob.in = (char *) &hostAddr;
2255     blob.out = (char *) &hostAddr;
2256     
2257     code = pioctl(0, VIOC_NFS_NUKE_CREDS, &blob, 1);
2258     if (code < 0) {
2259         Die(errno, 0);
2260         return 1;
2261     }
2262     return 0;
2263 }
2264
2265 static int
2266 NewCellCmd(struct cmd_syndesc *as, char *arock)
2267 {
2268     afs_int32 code, linkedstate = 0, size = 0, *lp;
2269     struct ViceIoctl blob;
2270     struct cmd_item *ti;
2271     char *tp, *cellname = 0;
2272     struct hostent *thp;
2273     afs_int32 fsport = 0, vlport = 0;
2274     afs_int32 magic, scount;    /* Number of servers to pass in pioctl call */
2275
2276     /* Yuck!
2277      * With the NEWCELL pioctl call, 3.4 clients take an array of
2278      * MAXHOSTS (13) servers while 3.5 clients take an array of
2279      * MAXCELLHOSTS (8) servers. To determine which we are talking to,
2280      * do a GETCELL pioctl and pass it a magic number. If an array of
2281      * 8 comes back, its a 3.5 client. If not, its a 3.4 client.
2282      * If we get back EDOM, there are no cells in the kernel yet,
2283      * and we'll assume a 3.5 client.
2284      */
2285     tp = space;
2286     lp = (afs_int32 *) tp;
2287     *lp++ = 0;                  /* first cell entry */
2288     *lp = 0x12345678;           /* magic */
2289     blob.out_size = MAXSIZE;
2290     blob.in_size = sizeof(afs_int32) + sizeof(afs_int32);
2291     blob.in = space;
2292     blob.out = space;
2293     code = pioctl(0, VIOCGETCELL, &blob, 1);
2294     if (code < 0 && errno != EDOM) {
2295         Die(errno, 0);
2296         return 1;
2297     }
2298     if (code < 1 && errno == EDOM) {
2299         scount = MAXHOSTS;
2300     } else {
2301         tp = space;
2302         cellname = tp + MAXCELLHOSTS * sizeof(afs_int32);
2303         scount = ((cellname[0] != '\0') ? MAXCELLHOSTS : MAXHOSTS);
2304     }
2305
2306     /* Now setup and do the NEWCELL pioctl call */
2307     memset(space, 0, (scount + 1) * sizeof(afs_int32));
2308     tp = space;
2309     lp = (afs_int32 *) tp;
2310     *lp++ = 0x12345678;
2311     tp += sizeof(afs_int32);
2312     for (ti = as->parms[1].items; ti; ti = ti->next) {
2313         thp = hostutil_GetHostByName(ti->data);
2314         if (!thp) {
2315             fprintf(stderr,
2316                     "%s: Host %s not found in host table, skipping it.\n", pn,
2317                     ti->data);
2318         } else {
2319             memcpy(tp, thp->h_addr, sizeof(afs_int32));
2320             tp += sizeof(afs_int32);
2321         }
2322     }
2323     if (as->parms[2].items) {
2324         /*
2325          * Link the cell, for the purposes of volume location, to the specified
2326          * cell.
2327          */
2328         cellname = as->parms[2].items->data;
2329         linkedstate = 1;
2330     }
2331 #ifdef FS_ENABLE_SERVER_DEBUG_PORTS
2332     if (as->parms[3].items) {
2333         code = util_GetInt32(as->parms[3].items->data, &vlport);
2334         if (code) {
2335             fprintf(stderr,
2336                     "%s: bad integer specified for the fileserver port.\n",
2337                     pn);
2338             return 1;
2339         }
2340     }
2341     if (as->parms[4].items) {
2342         code = util_GetInt32(as->parms[4].items->data, &fsport);
2343         if (code) {
2344             fprintf(stderr,
2345                     "%s: bad integer specified for the vldb server port.\n",
2346                     pn);
2347             return 1;
2348         }
2349     }
2350 #endif
2351     tp = (char *)(space + (scount + 1) * sizeof(afs_int32));
2352     lp = (afs_int32 *) tp;
2353     *lp++ = fsport;
2354     *lp++ = vlport;
2355     *lp = linkedstate;
2356     strcpy(space + ((scount + 4) * sizeof(afs_int32)),
2357            as->parms[0].items->data);
2358     size = ((scount + 4) * sizeof(afs_int32))
2359         + strlen(as->parms[0].items->data)
2360         + 1 /* for null */ ;
2361     tp = (char *)(space + size);
2362     if (linkedstate) {
2363         strcpy(tp, cellname);
2364         size += strlen(cellname) + 1;
2365     }
2366     blob.in_size = size;
2367     blob.in = space;
2368     blob.out_size = 0;
2369     code = pioctl(0, VIOCNEWCELL, &blob, 1);
2370     if (code < 0) {
2371         Die(errno, 0);
2372         return 1;
2373     }
2374     return 0;
2375 }
2376
2377 static int
2378 NewAliasCmd(struct cmd_syndesc *as, char *arock)
2379 {
2380     afs_int32 code;
2381     struct ViceIoctl blob;
2382     char *tp;
2383     char *aliasName, *realName;
2384
2385     /* Now setup and do the NEWCELL pioctl call */
2386     aliasName = as->parms[0].items->data;
2387     realName = as->parms[1].items->data;
2388     tp = space;
2389     strcpy(tp, aliasName);
2390     tp += strlen(aliasName) + 1;
2391     strcpy(tp, realName);
2392     tp += strlen(realName) + 1;
2393
2394     blob.in_size = tp - space;
2395     blob.in = space;
2396     blob.out_size = 0;
2397     blob.out = space;
2398     code = pioctl(0, VIOC_NEWALIAS, &blob, 1);
2399     if (code < 0) {
2400         if (errno == EEXIST) {
2401             fprintf(stderr,
2402                     "%s: cell name `%s' in use by an existing cell.\n", pn,
2403                     aliasName);
2404         } else {
2405             Die(errno, 0);
2406         }
2407         return 1;
2408     }
2409     return 0;
2410 }
2411
2412 static int
2413 WhichCellCmd(struct cmd_syndesc *as, char *arock)
2414 {
2415     afs_int32 code;
2416     struct cmd_item *ti;
2417     int error = 0;
2418     char cell[MAXCELLCHARS];
2419
2420     SetDotDefault(&as->parms[0].items);
2421     for (ti = as->parms[0].items; ti; ti = ti->next) {
2422         code = GetCell(ti->data, cell);
2423         if (code) {
2424             if (errno == ENOENT)
2425                 fprintf(stderr, "%s: no such cell as '%s'\n", pn, ti->data);
2426             else
2427                 Die(errno, ti->data);
2428             error = 1;
2429             continue;
2430         }
2431
2432         printf("File %s lives in cell '%s'\n", ti->data, cell);
2433     }
2434     return error;
2435 }
2436
2437 static int
2438 WSCellCmd(struct cmd_syndesc *as, char *arock)
2439 {
2440     afs_int32 code;
2441     struct ViceIoctl blob;
2442
2443     blob.in_size = 0;
2444     blob.in = NULL;
2445     blob.out_size = MAXSIZE;
2446     blob.out = space;
2447
2448     code = pioctl(NULL, VIOC_GET_WS_CELL, &blob, 1);
2449     if (code) {
2450         Die(errno, NULL);
2451         return 1;
2452     }
2453
2454     printf("This workstation belongs to cell '%s'\n", space);
2455     return 0;
2456 }
2457
2458 /*
2459 static PrimaryCellCmd(as)
2460     struct cmd_syndesc *as;
2461 {
2462     fprintf(stderr, "This command is obsolete, as is the concept of a primary token.\n");
2463     return 0;
2464 }
2465 */
2466
2467 static int
2468 MonitorCmd(struct cmd_syndesc *as, char *arock)
2469 {
2470     afs_int32 code;
2471     struct ViceIoctl blob;
2472     struct cmd_item *ti;
2473     afs_int32 hostAddr;
2474     struct hostent *thp;
2475     char *tp;
2476     int setp;
2477
2478     ti = as->parms[0].items;
2479     setp = 1;
2480     if (ti) {
2481         /* set the host */
2482         if (!strcmp(ti->data, "off"))
2483             hostAddr = 0xffffffff;
2484         else {
2485             thp = hostutil_GetHostByName(ti->data);
2486             if (!thp) {
2487                 if (!strcmp(ti->data, "localhost")) {
2488                     fprintf(stderr,
2489                             "localhost not in host table, assuming 127.0.0.1\n");
2490                     hostAddr = htonl(0x7f000001);
2491                 } else {
2492                     fprintf(stderr, "host %s not found in host table.\n",
2493                             ti->data);
2494                     return 1;
2495                 }
2496             } else
2497                 memcpy(&hostAddr, thp->h_addr, sizeof(afs_int32));
2498         }
2499     } else {
2500         hostAddr = 0;           /* means don't set host */
2501         setp = 0;               /* aren't setting host */
2502     }
2503
2504     /* now do operation */
2505     blob.in_size = sizeof(afs_int32);
2506     blob.out_size = sizeof(afs_int32);
2507     blob.in = (char *)&hostAddr;
2508     blob.out = (char *)&hostAddr;
2509     code = pioctl(0, VIOC_AFS_MARINER_HOST, &blob, 1);
2510     if (code) {
2511         Die(errno, 0);
2512         return 1;
2513     }
2514     if (setp) {
2515         printf("%s: new monitor host set.\n", pn);
2516     } else {
2517         /* now decode old address */
2518         if (hostAddr == 0xffffffff) {
2519             printf("Cache monitoring is currently disabled.\n");
2520         } else {
2521             tp = hostutil_GetNameByINet(hostAddr);
2522             printf("Using host %s for monitor services.\n", tp);
2523         }
2524     }
2525     return 0;
2526 }
2527
2528 static int
2529 SysNameCmd(struct cmd_syndesc *as, char *arock)
2530 {
2531     afs_int32 code;
2532     struct ViceIoctl blob;
2533     struct cmd_item *ti;
2534     char *input = space;
2535     afs_int32 setp = 0;
2536
2537     ti = as->parms[0].items;
2538     blob.in = space;
2539     blob.out = space;
2540     blob.out_size = MAXSIZE;
2541     blob.in_size = sizeof(afs_int32);
2542     input += sizeof(afs_int32);
2543     for (; ti; ti = ti->next) {
2544         setp++;
2545         blob.in_size += strlen(ti->data) + 1;
2546         if (blob.in_size > MAXSIZE) {
2547             fprintf(stderr, "%s: sysname%s too long.\n", pn,
2548                     setp > 1 ? "s" : "");
2549             return 1;
2550         }
2551         strcpy(input, ti->data);
2552         input += strlen(ti->data);
2553         *(input++) = '\0';
2554     }
2555     memcpy(space, &setp, sizeof(afs_int32));
2556     code = pioctl(0, VIOC_AFS_SYSNAME, &blob, 1);
2557     if (code) {
2558         Die(errno, 0);
2559         return 1;
2560     }
2561     if (setp) {
2562         printf("%s: new sysname%s set.\n", pn, setp > 1 ? " list" : "");
2563         return 0;
2564     }
2565     input = space;
2566     memcpy(&setp, input, sizeof(afs_int32));
2567     input += sizeof(afs_int32);
2568     if (!setp) {
2569         fprintf(stderr, "No sysname name value was found\n");
2570         return 1;
2571     }
2572     printf("Current sysname%s is", setp > 1 ? " list" : "");
2573     for (; setp > 0; --setp) {
2574         printf(" \'%s\'", input);
2575         input += strlen(input) + 1;
2576     }
2577     printf("\n");
2578     return 0;
2579 }
2580
2581 static char *exported_types[] = { "null", "nfs", "" };
2582 static int
2583 ExportAfsCmd(struct cmd_syndesc *as, char *arock)
2584 {
2585     afs_int32 code;
2586     struct ViceIoctl blob;
2587     struct cmd_item *ti;
2588     int export = 0, type = 0, mode = 0, exp = 0, exportcall, pwsync =
2589         0, smounts = 0, clipags = 0, pagcb = 0;
2590
2591     ti = as->parms[0].items;
2592     if (strcmp(ti->data, "nfs") == 0)
2593         type = 0x71;            /* NFS */
2594     else {
2595         fprintf(stderr,
2596                 "Invalid exporter type, '%s', Only the 'nfs' exporter is currently supported\n",
2597                 ti->data);
2598         return 1;
2599     }
2600     ti = as->parms[1].items;
2601     if (ti) {
2602         if (strcmp(ti->data, "on") == 0)
2603             export = 3;
2604         else if (strcmp(ti->data, "off") == 0)
2605             export = 2;
2606         else {
2607             fprintf(stderr, "Illegal argument %s\n", ti->data);
2608             return 1;
2609         }
2610         exp = 1;
2611     }
2612     if (ti = as->parms[2].items) {      /* -noconvert */
2613         if (strcmp(ti->data, "on") == 0)
2614             mode = 2;
2615         else if (strcmp(ti->data, "off") == 0)
2616             mode = 3;
2617         else {
2618             fprintf(stderr, "Illegal argument %s\n", ti->data);
2619             return 1;
2620         }
2621     }
2622     if (ti = as->parms[3].items) {      /* -uidcheck */
2623         if (strcmp(ti->data, "on") == 0)
2624             pwsync = 3;
2625         else if (strcmp(ti->data, "off") == 0)
2626             pwsync = 2;
2627         else {
2628             fprintf(stderr, "Illegal argument %s\n", ti->data);
2629             return 1;
2630         }
2631     }
2632     if (ti = as->parms[4].items) {      /* -submounts */
2633         if (strcmp(ti->data, "on") == 0)
2634             smounts = 3;
2635         else if (strcmp(ti->data, "off") == 0)
2636             smounts = 2;
2637         else {
2638             fprintf(stderr, "Illegal argument %s\n", ti->data);
2639             return 1;
2640         }
2641     }
2642     if (ti = as->parms[5].items) {      /* -clipags */
2643         if (strcmp(ti->data, "on") == 0)
2644             clipags = 3;
2645         else if (strcmp(ti->data, "off") == 0)
2646             clipags = 2;
2647         else {
2648             fprintf(stderr, "Illegal argument %s\n", ti->data);
2649             return 1;
2650         }
2651     }
2652     if (ti = as->parms[6].items) {      /* -pagcb */
2653         if (strcmp(ti->data, "on") == 0)
2654             pagcb = 3;
2655         else if (strcmp(ti->data, "off") == 0)
2656             pagcb = 2;
2657         else {
2658             fprintf(stderr, "Illegal argument %s\n", ti->data);
2659             return 1;
2660         }
2661     }
2662     exportcall =
2663         (type << 24) | (pagcb << 10) | (clipags << 8) |
2664         (mode << 6) | (pwsync << 4) | (smounts << 2) | export;
2665     type &= ~0x70;
2666     /* make the call */
2667     blob.in = (char *)&exportcall;
2668     blob.in_size = sizeof(afs_int32);
2669     blob.out = (char *)&exportcall;
2670     blob.out_size = sizeof(afs_int32);
2671     code = pioctl(0, VIOC_EXPORTAFS, &blob, 1);
2672     if (code) {
2673         if (errno == ENODEV) {
2674             fprintf(stderr,
2675                     "Sorry, the %s-exporter type is currently not supported on this AFS client\n",
2676                     exported_types[type]);
2677         } else {
2678             Die(errno, 0);
2679         }
2680         return 1;
2681     }
2682
2683     if (exportcall & 1) {
2684         printf("'%s' translator is enabled with the following options:\n",
2685                exported_types[type]);
2686         printf("\tRunning in %s mode\n",
2687                (exportcall & 2 ? "strict unix" :
2688                 "convert owner mode bits to world/other"));
2689         printf("\tRunning in %s mode\n",
2690                (exportcall & 4 ? "strict 'passwd sync'" :
2691                 "no 'passwd sync'"));
2692         printf("\t%s\n",
2693                (exportcall & 8 ? "Allow mounts of /afs/.. subdirs" :
2694                 "Only mounts to /afs allowed"));
2695         printf("\t%s\n",
2696                (exportcall & 16 ? "Client-assigned PAG's are used" :
2697                 "Client-assigned PAG's are not used"));
2698         printf("\t%s\n",
2699                (exportcall & 32 ?
2700                 "Callbacks are made to get creds from new clients" :
2701                 "Callbacks are not made to get creds from new clients"));
2702     } else {
2703         printf("'%s' translator is disabled\n", exported_types[type]);
2704     }
2705     return 0;
2706 }
2707
2708
2709 static int
2710 GetCellCmd(struct cmd_syndesc *as, char *arock)
2711 {
2712     afs_int32 code;
2713     struct ViceIoctl blob;
2714     struct afsconf_cell info;
2715     struct cmd_item *ti;
2716     struct a {
2717         afs_int32 stat;
2718         afs_int32 junk;
2719     } args;
2720     int error = 0;
2721
2722     memset(&args, '\0', sizeof args);   /* avoid Purify UMR error */
2723     for (ti = as->parms[0].items; ti; ti = ti->next) {
2724         /* once per cell */
2725         blob.out_size = sizeof(args);
2726         blob.out = (caddr_t) & args;
2727         code = GetCellName(ti->data, &info);
2728         if (code) {
2729             error = 1;
2730             continue;
2731         }
2732         blob.in_size = 1 + strlen(info.name);
2733         blob.in = info.name;
2734         code = pioctl(0, VIOC_GETCELLSTATUS, &blob, 1);
2735         if (code) {
2736             if (errno == ENOENT)
2737                 fprintf(stderr, "%s: the cell named '%s' does not exist\n",
2738                         pn, info.name);
2739             else
2740                 Die(errno, info.name);
2741             error = 1;
2742             continue;
2743         }
2744         printf("Cell %s status: ", info.name);
2745 #ifdef notdef
2746         if (args.stat & 1)
2747             printf("primary ");
2748 #endif
2749         if (args.stat & 2)
2750             printf("no setuid allowed");
2751         else
2752             printf("setuid allowed");
2753         if (args.stat & 4)
2754             printf(", using old VLDB");
2755         printf("\n");
2756     }
2757     return error;
2758 }
2759
2760 static int
2761 SetCellCmd(struct cmd_syndesc *as, char *arock)
2762 {
2763     afs_int32 code;
2764     struct ViceIoctl blob;
2765     struct afsconf_cell info;
2766     struct cmd_item *ti;
2767     struct a {
2768         afs_int32 stat;
2769         afs_int32 junk;
2770         char cname[64];
2771     } args;
2772     int error = 0;
2773
2774     /* Check arguments. */
2775     if (as->parms[1].items && as->parms[2].items) {
2776         fprintf(stderr, "Cannot specify both -suid and -nosuid.\n");
2777         return 1;
2778     }
2779
2780     /* figure stuff to set */
2781     args.stat = 0;
2782     args.junk = 0;
2783
2784     if (!as->parms[1].items)
2785         args.stat |= 2;         /* default to -nosuid */
2786
2787     /* set stat for all listed cells */
2788     for (ti = as->parms[0].items; ti; ti = ti->next) {
2789         /* once per cell */
2790         code = GetCellName(ti->data, &info);
2791         if (code) {
2792             error = 1;
2793             continue;
2794         }
2795         strcpy(args.cname, info.name);
2796         blob.in_size = sizeof(args);
2797         blob.in = (caddr_t) & args;
2798         blob.out_size = 0;
2799         blob.out = (caddr_t) 0;
2800         code = pioctl(0, VIOC_SETCELLSTATUS, &blob, 1);
2801         if (code) {
2802             Die(errno, info.name);      /* XXX added cell name to Die() call */
2803             error = 1;
2804         }
2805     }
2806     return error;
2807 }
2808
2809 static int
2810 GetCellName(char *cellName, struct afsconf_cell *info)
2811 {
2812     struct afsconf_dir *tdir;
2813     int code;
2814
2815     tdir = afsconf_Open(AFSDIR_CLIENT_ETC_DIRPATH);
2816     if (!tdir) {
2817         fprintf(stderr,
2818                 "Could not process files in configuration directory (%s).\n",
2819                 AFSDIR_CLIENT_ETC_DIRPATH);
2820         return -1;
2821     }
2822
2823     code = afsconf_GetCellInfo(tdir, cellName, AFSCONF_VLDBSERVICE, info);
2824     if (code) {
2825         fprintf(stderr, "%s: cell %s not in %s\n", pn, cellName,
2826                 AFSDIR_CLIENT_CELLSERVDB_FILEPATH);
2827         return code;
2828     }
2829
2830     return 0;
2831 }
2832
2833
2834 static int
2835 VLDBInit(int noAuthFlag, struct afsconf_cell *info)
2836 {
2837     afs_int32 code;
2838
2839     code = ugen_ClientInit(noAuthFlag, AFSDIR_CLIENT_ETC_DIRPATH, 
2840                            info->name, 0, &uclient, 
2841                            NULL, pn, rxkad_clear,
2842                            VLDB_MAXSERVERS, AFSCONF_VLDBSERVICE, 50,
2843                            0, 0, USER_SERVICE_ID);
2844     rxInitDone = 1;
2845     return code;
2846 }
2847
2848 static struct ViceIoctl gblob;
2849 static int debug = 0;
2850 /*
2851  * here follow some routines in suport of the setserverprefs and
2852  * getserverprefs commands.  They are:
2853  * SetPrefCmd  "top-level" routine
2854  * addServer   adds a server to the list of servers to be poked into the
2855  *             kernel.  Will poke the list into the kernel if it threatens
2856  *             to get too large.
2857  * pokeServers pokes the existing list of servers and ranks into the kernel
2858  * GetPrefCmd  reads the Cache Manager's current list of server ranks
2859  */
2860
2861 /*
2862  * returns -1 if error message printed,
2863  * 0 on success,
2864  * errno value if error and no error message printed
2865  */
2866 static int
2867 pokeServers(void)
2868 {
2869     int code;
2870
2871     code = pioctl(0, VIOC_SETSPREFS, &gblob, 1);
2872     if (code && (errno == EINVAL)) {
2873         struct setspref *ssp;
2874         ssp = (struct setspref *)gblob.in;
2875         if (!(ssp->flags & DBservers)) {
2876             gblob.in = (void *)&(ssp->servers[0]);
2877             gblob.in_size -= ((char *)&(ssp->servers[0])) - (char *)ssp;
2878             code = pioctl(0, VIOC_SETSPREFS33, &gblob, 1);
2879             return code ? errno : 0;
2880         }
2881         fprintf(stderr,
2882                 "This cache manager does not support VL server preferences.\n");
2883         return -1;
2884     }
2885
2886     return code ? errno : 0;
2887 }
2888
2889 /*
2890  * returns -1 if error message printed,
2891  * 0 on success,
2892  * errno value if error and no error message printed
2893  */
2894 static int
2895 addServer(char *name, afs_int32 rank)
2896 {
2897     int t, code;
2898     struct setspref *ssp;
2899     struct spref *sp;
2900     struct hostent *thostent;
2901     afs_uint32 addr;
2902     int error = 0;
2903
2904 #ifndef MAXUSHORT
2905 #ifdef MAXSHORT
2906 #define MAXUSHORT ((unsigned short) 2*MAXSHORT+1)       /* assumes two's complement binary system */
2907 #else
2908 #define MAXUSHORT ((unsigned short) ~0)
2909 #endif
2910 #endif
2911
2912     thostent = hostutil_GetHostByName(name);
2913     if (!thostent) {
2914         fprintf(stderr, "%s: couldn't resolve name.\n", name);
2915         return -1;
2916     }
2917
2918     ssp = (struct setspref *)(gblob.in);
2919
2920     for (t = 0; thostent->h_addr_list[t]; t++) {
2921         if (gblob.in_size > MAXINSIZE - sizeof(struct spref)) {
2922             code = pokeServers();
2923             if (code)
2924                 error = code;
2925             ssp->num_servers = 0;
2926         }
2927
2928         sp = (struct spref *)(gblob.in + gblob.in_size);
2929         memcpy(&(sp->server.s_addr), thostent->h_addr_list[t],
2930                sizeof(afs_uint32));
2931         sp->rank = (rank > MAXUSHORT ? MAXUSHORT : rank);
2932         gblob.in_size += sizeof(struct spref);
2933         ssp->num_servers++;
2934
2935         if (debug)
2936             fprintf(stderr, "adding server %s, rank %d, ip addr 0x%lx\n",
2937                     name, sp->rank, sp->server.s_addr);
2938     }
2939
2940     return error;
2941 }
2942
2943
2944 static int
2945 SetPrefCmd(struct cmd_syndesc *as, char *arock)
2946 {
2947     FILE *infd;
2948     afs_int32 code;
2949     struct cmd_item *ti;
2950     char name[80];
2951     afs_int32 rank;
2952     struct setspref *ssp;
2953     int error = 0;              /* -1 means error message printed,
2954                                  * >0 means errno value for unprinted message */
2955
2956     ssp = (struct setspref *)space;
2957     ssp->flags = 0;
2958     ssp->num_servers = 0;
2959     gblob.in_size = ((char *)&(ssp->servers[0])) - (char *)ssp;
2960     gblob.in = space;
2961     gblob.out = space;
2962     gblob.out_size = MAXSIZE;
2963
2964
2965     if (geteuid()) {
2966         fprintf(stderr, "Permission denied: requires root access.\n");
2967         return 1;
2968     }
2969
2970     ti = as->parms[2].items;    /* -file */
2971     if (ti) {
2972         if (debug)
2973             fprintf(stderr, "opening file %s\n", ti->data);
2974         if (!(infd = fopen(ti->data, "r"))) {
2975             perror(ti->data);
2976             error = -1;
2977         } else {
2978             while (fscanf(infd, "%79s%ld", name, &rank) != EOF) {
2979                 code = addServer(name, (unsigned short)rank);
2980                 if (code)
2981                     error = code;
2982             }
2983         }
2984     }
2985
2986     ti = as->parms[3].items;    /* -stdin */
2987     if (ti) {
2988         while (scanf("%79s%ld", name, &rank) != EOF) {
2989             code = addServer(name, (unsigned short)rank);
2990             if (code)
2991                 error = code;
2992         }
2993     }
2994
2995     for (ti = as->parms[0].items; ti; ti = ti->next) {  /* list of servers, ranks */
2996         if (ti) {
2997             if (!ti->next) {
2998                 break;
2999             }
3000             code = addServer(ti->data, (unsigned short)atol(ti->next->data));
3001             if (code)
3002                 error = code;
3003             if (debug)
3004                 printf("set fs prefs %s %s\n", ti->data, ti->next->data);
3005             ti = ti->next;
3006         }
3007     }
3008     code = pokeServers();
3009     if (code)
3010         error = code;
3011     if (debug)
3012         printf("now working on vlservers, code=%d\n", code);
3013
3014     ssp = (struct setspref *)space;
3015     ssp->flags = DBservers;
3016     ssp->num_servers = 0;
3017     gblob.in_size = ((char *)&(ssp->servers[0])) - (char *)ssp;
3018     gblob.in = space;
3019
3020     for (ti = as->parms[1].items; ti; ti = ti->next) {  /* list of dbservers, ranks */
3021         if (ti) {
3022             if (!ti->next) {
3023                 break;
3024             }
3025             code = addServer(ti->data, (unsigned short)atol(ti->next->data));
3026             if (code)
3027                 error = code;
3028             if (debug)
3029                 printf("set vl prefs %s %s\n", ti->data, ti->next->data);
3030             ti = ti->next;
3031         }
3032     }
3033
3034     if (as->parms[1].items) {
3035         if (debug)
3036             printf("now poking vlservers\n");
3037         code = pokeServers();
3038         if (code)
3039             error = code;
3040     }
3041
3042     if (error > 0)
3043         Die(error, 0);
3044
3045     return error ? 1 : 0;
3046 }
3047
3048
3049
3050 static int
3051 GetPrefCmd(struct cmd_syndesc *as, char *arock)
3052 {
3053     afs_int32 code;
3054     struct cmd_item *ti;
3055     char *name, tbuffer[20];
3056     afs_int32 rank, addr;
3057     FILE *outfd;
3058     int resolve;
3059     int vlservers = 0;
3060     struct ViceIoctl blob;
3061     struct sprefrequest *in;
3062     struct sprefinfo *out;
3063     int i;
3064
3065     ti = as->parms[0].items;    /* -file */
3066     if (ti) {
3067         if (debug)
3068             fprintf(stderr, "opening file %s\n", ti->data);
3069         if (!(outfd = freopen(ti->data, "w", stdout))) {
3070             perror(ti->data);
3071             return 1;
3072         }
3073     }
3074
3075     ti = as->parms[1].items;    /* -numeric */
3076     resolve = !(ti);
3077     ti = as->parms[2].items;    /* -vlservers */
3078     vlservers |= (ti ? DBservers : 0);
3079     /*  ti = as->parms[3].items;   -cell */
3080
3081     in = (struct sprefrequest *)space;
3082     in->offset = 0;
3083
3084     do {
3085         blob.in_size = sizeof(struct sprefrequest);
3086         blob.in = (char *)in;
3087         blob.out = space;
3088         blob.out_size = MAXSIZE;
3089
3090         in->num_servers =
3091             (MAXSIZE - 2 * sizeof(short)) / sizeof(struct spref);
3092         in->flags = vlservers;
3093
3094         code = pioctl(0, VIOC_GETSPREFS, &blob, 1);
3095         if (code) {
3096             perror("getserverprefs pioctl");
3097             return 1;
3098         }
3099
3100         out = (struct sprefinfo *)blob.out;
3101
3102         for (i = 0; i < out->num_servers; i++) {
3103             if (resolve) {
3104                 name = hostutil_GetNameByINet(out->servers[i].server.s_addr);
3105             } else {
3106                 addr = ntohl(out->servers[i].server.s_addr);
3107                 sprintf(tbuffer, "%d.%d.%d.%d", (addr >> 24) & 0xff,
3108                         (addr >> 16) & 0xff, (addr >> 8) & 0xff, addr & 0xff);
3109                 name = tbuffer;
3110             }
3111             printf("%-50s %5u\n", name, out->servers[i].rank);
3112         }
3113
3114         in->offset = out->next_offset;
3115     } while (out->next_offset > 0);
3116
3117     return 0;
3118 }
3119
3120 static int
3121 StoreBehindCmd(struct cmd_syndesc *as, char *arock)
3122 {
3123     afs_int32 code = 0;
3124     struct ViceIoctl blob;
3125     struct cmd_item *ti;
3126     struct sbstruct tsb, tsb2;
3127     int verbose = 0;
3128     afs_int32 allfiles;
3129     char *t;
3130     int error = 0;
3131
3132     tsb.sb_thisfile = -1;
3133     ti = as->parms[0].items;    /* -kbytes */
3134     if (ti) {
3135         if (!as->parms[1].items) {
3136             fprintf(stderr, "%s: you must specify -files with -kbytes.\n",
3137                     pn);
3138             return 1;
3139         }
3140         tsb.sb_thisfile = strtol(ti->data, &t, 10) * 1024;
3141         if ((tsb.sb_thisfile < 0) || (t != ti->data + strlen(ti->data))) {
3142             fprintf(stderr, "%s: %s must be 0 or a positive number.\n", pn,
3143                     ti->data);
3144             return 1;
3145         }
3146     }
3147
3148     allfiles = tsb.sb_default = -1;     /* Don't set allfiles yet */
3149     ti = as->parms[2].items;    /* -allfiles */
3150     if (ti) {
3151         allfiles = strtol(ti->data, &t, 10) * 1024;
3152         if ((allfiles < 0) || (t != ti->data + strlen(ti->data))) {
3153             fprintf(stderr, "%s: %s must be 0 or a positive number.\n", pn,
3154                     ti->data);
3155             return 1;
3156         }
3157     }
3158
3159     /* -verbose or -file only or no options */
3160     if (as->parms[3].items || (as->parms[1].items && !as->parms[0].items)
3161         || (!as->parms[0].items && !as->parms[1].items
3162             && !as->parms[2].items))
3163         verbose = 1;
3164
3165     blob.in = (char *)&tsb;
3166     blob.out = (char *)&tsb2;
3167     blob.in_size = blob.out_size = sizeof(struct sbstruct);
3168     memset(&tsb2, 0, sizeof(tsb2));
3169
3170     /* once per -file */
3171     for (ti = as->parms[1].items; ti; ti = ti->next) {
3172         /* Do this solely to see if the file is there */
3173         code = pioctl(ti->data, VIOCWHEREIS, &blob, 1);
3174         if (code) {
3175             Die(errno, ti->data);
3176             error = 1;
3177             continue;
3178         }
3179
3180         code = pioctl(ti->data, VIOC_STORBEHIND, &blob, 1);
3181         if (code) {
3182             Die(errno, ti->data);
3183             error = 1;
3184             continue;
3185         }
3186
3187         if (verbose && (blob.out_size == sizeof(tsb2))) {
3188             if (tsb2.sb_thisfile == -1) {
3189                 fprintf(stdout, "Will store %s according to default.\n",
3190                         ti->data);
3191             } else {
3192                 fprintf(stdout,
3193                         "Will store up to %d kbytes of %s asynchronously.\n",
3194                         (tsb2.sb_thisfile / 1024), ti->data);
3195             }
3196         }
3197     }
3198
3199     /* If no files - make at least one pioctl call, or
3200      * set the allfiles default if we need to.
3201      */
3202     if (!as->parms[1].items || (allfiles != -1)) {
3203         tsb.sb_default = allfiles;
3204         code = pioctl(0, VIOC_STORBEHIND, &blob, 1);
3205         if (code) {
3206             Die(errno, ((allfiles == -1) ? 0 : "-allfiles"));
3207             error = 1;
3208         }
3209     }
3210
3211     /* Having no arguments also reports the default store asynchrony */
3212     if (verbose && (blob.out_size == sizeof(tsb2))) {
3213         fprintf(stdout, "Default store asynchrony is %d kbytes.\n",
3214                 (tsb2.sb_default / 1024));
3215     }
3216
3217     return error;
3218 }
3219
3220
3221 static afs_int32
3222 SetCryptCmd(struct cmd_syndesc *as, char *arock)
3223 {
3224     afs_int32 code = 0, flag;
3225     struct ViceIoctl blob;
3226     char *tp;
3227
3228     tp = as->parms[0].items->data;
3229     if (strcmp(tp, "on") == 0)
3230         flag = 1;
3231     else if (strcmp(tp, "off") == 0)
3232         flag = 0;
3233     else {
3234         fprintf(stderr, "%s: %s must be \"on\" or \"off\".\n", pn, tp);
3235         return EINVAL;
3236     }
3237
3238     blob.in = (char *)&flag;
3239     blob.in_size = sizeof(flag);
3240     blob.out_size = 0;
3241     code = pioctl(0, VIOC_SETRXKCRYPT, &blob, 1);
3242     if (code)
3243         Die(errno, NULL);
3244     return 0;
3245 }
3246
3247
3248 static afs_int32
3249 GetCryptCmd(struct cmd_syndesc *as, char *arock)
3250 {
3251     afs_int32 code = 0, flag;
3252     struct ViceIoctl blob;
3253     char *tp;
3254
3255     blob.in = NULL;
3256     blob.in_size = 0;
3257     blob.out_size = sizeof(flag);
3258     blob.out = space;
3259
3260     code = pioctl(0, VIOC_GETRXKCRYPT, &blob, 1);
3261
3262     if (code)
3263         Die(errno, NULL);
3264     else {
3265         tp = space;
3266         memcpy(&flag, tp, sizeof(afs_int32));
3267         printf("Security level is currently ");
3268         if (flag == 1)
3269             printf("crypt (data security).\n");
3270         else
3271             printf("clear.\n");
3272     }
3273     return 0;
3274 }
3275
3276 #ifdef AFS_DISCON_ENV
3277 static char *modenames[] = {
3278     "discon",
3279     "fetchonly",
3280     "partial",
3281     "nat",
3282     "full",
3283     NULL
3284 };
3285
3286 static afs_int32
3287 DisconCmd(struct cmd_syndesc *as, char *arock)
3288 {
3289     struct cmd_item *ti;
3290     char *modename;
3291     int modelen;
3292     afs_int32 mode, code;
3293     struct ViceIoctl blob;
3294
3295     blob.in = NULL;
3296     blob.in_size = 0;
3297
3298     ti = as->parms[0].items;
3299     if (ti) {
3300         modename = ti->data;
3301         modelen = strlen(modename);
3302         for (mode = 0; modenames[mode] != NULL; mode++)
3303             if (!strncasecmp(modename, modenames[mode], modelen))
3304                 break;
3305         if (modenames[mode] == NULL)
3306             printf("Unknown discon mode \"%s\"\n", modename);
3307         else {
3308             memcpy(space, &mode, sizeof mode);
3309             blob.in = space;
3310             blob.in_size = sizeof mode;
3311         }
3312     }
3313
3314     blob.out_size = sizeof(mode);
3315     blob.out = space;
3316     code = pioctl(0, VIOC_DISCON, &blob, 1);
3317     if (code)
3318         Die(errno, NULL);
3319     else {
3320         memcpy(&mode, space, sizeof mode);
3321         if (mode < sizeof modenames / sizeof (char *))
3322             printf("Discon mode is now \"%s\"\n", modenames[mode]);
3323         else
3324             printf("Unknown discon mode %d\n", mode);
3325     }
3326
3327     return 0;
3328 }
3329 #endif
3330
3331 #include "AFS_component_version_number.c"
3332
3333 int
3334 main(int argc, char **argv)
3335 {
3336     afs_int32 code;
3337     struct cmd_syndesc *ts;
3338
3339 #ifdef  AFS_AIX32_ENV
3340     /*
3341      * The following signal action for AIX is necessary so that in case of a
3342      * crash (i.e. core is generated) we can include the user's data section
3343      * in the core dump. Unfortunately, by default, only a partial core is
3344      * generated which, in many cases, isn't too useful.
3345      */
3346     struct sigaction nsa;
3347
3348     sigemptyset(&nsa.sa_mask);
3349     nsa.sa_handler = SIG_DFL;
3350     nsa.sa_flags = SA_FULLDUMP;
3351     sigaction(SIGSEGV, &nsa, NULL);
3352 #endif
3353
3354     /* try to find volume location information */
3355     ts = cmd_CreateSyntax("getclientaddrs", GetClientAddrsCmd, 0,
3356                           "get client network interface addresses");
3357     cmd_CreateAlias(ts, "gc");
3358
3359     ts = cmd_CreateSyntax("setclientaddrs", SetClientAddrsCmd, 0,
3360                           "set client network interface addresses");
3361     cmd_AddParm(ts, "-address", CMD_LIST, CMD_OPTIONAL | CMD_EXPANDS,
3362                 "client network interfaces");
3363     cmd_CreateAlias(ts, "sc");
3364
3365     ts = cmd_CreateSyntax("setserverprefs", SetPrefCmd, 0,
3366                           "set server ranks");
3367     cmd_AddParm(ts, "-servers", CMD_LIST, CMD_OPTIONAL | CMD_EXPANDS,
3368                 "fileserver names and ranks");
3369     cmd_AddParm(ts, "-vlservers", CMD_LIST, CMD_OPTIONAL | CMD_EXPANDS,
3370                 "VL server names and ranks");
3371     cmd_AddParm(ts, "-file", CMD_SINGLE, CMD_OPTIONAL,
3372                 "input from named file");
3373     cmd_AddParm(ts, "-stdin", CMD_FLAG, CMD_OPTIONAL, "input from stdin");
3374     cmd_CreateAlias(ts, "sp");
3375
3376     ts = cmd_CreateSyntax("getserverprefs", GetPrefCmd, 0,
3377                           "get server ranks");
3378     cmd_AddParm(ts, "-file", CMD_SINGLE, CMD_OPTIONAL,
3379                 "output to named file");
3380     cmd_AddParm(ts, "-numeric", CMD_FLAG, CMD_OPTIONAL, "addresses only");
3381     cmd_AddParm(ts, "-vlservers", CMD_FLAG, CMD_OPTIONAL, "VL servers");
3382 /*    cmd_AddParm(ts, "-cell", CMD_FLAG, CMD_OPTIONAL, "cellname"); */
3383     cmd_CreateAlias(ts, "gp");
3384
3385     ts = cmd_CreateSyntax("setacl", SetACLCmd, 0, "set access control list");
3386     cmd_AddParm(ts, "-dir", CMD_LIST, 0, "directory");
3387     cmd_AddParm(ts, "-acl", CMD_LIST, 0, "access list entries");
3388     cmd_AddParm(ts, "-clear", CMD_FLAG, CMD_OPTIONAL, "clear access list");
3389     cmd_AddParm(ts, "-negative", CMD_FLAG, CMD_OPTIONAL,
3390                 "apply to negative rights");
3391     parm_setacl_id = ts->nParms;
3392     cmd_AddParm(ts, "-id", CMD_FLAG, CMD_OPTIONAL,
3393                 "initial directory acl (DFS only)");
3394     cmd_AddParm(ts, "-if", CMD_FLAG, CMD_OPTIONAL,
3395                 "initial file acl (DFS only)");
3396     cmd_CreateAlias(ts, "sa");
3397
3398     ts = cmd_CreateSyntax("listacl", ListACLCmd, 0,
3399                           "list access control list");
3400     cmd_AddParm(ts, "-path", CMD_LIST, CMD_OPTIONAL, "dir/file path");
3401     parm_listacl_id = ts->nParms;
3402     cmd_AddParm(ts, "-id", CMD_FLAG, CMD_OPTIONAL, "initial directory acl");
3403     cmd_AddParm(ts, "-if", CMD_FLAG, CMD_OPTIONAL, "initial file acl");
3404     cmd_CreateAlias(ts, "la");
3405
3406     ts = cmd_CreateSyntax("getcalleraccess", GetCallerAccess, 0,
3407             "list callers access");
3408     cmd_AddParm(ts, "-path", CMD_LIST, CMD_OPTIONAL, "dir/file path");
3409     cmd_CreateAlias(ts, "gca");
3410
3411     ts = cmd_CreateSyntax("cleanacl", CleanACLCmd, 0,
3412                           "clean up access control list");
3413     cmd_AddParm(ts, "-path", CMD_LIST, CMD_OPTIONAL, "dir/file path");
3414
3415     ts = cmd_CreateSyntax("copyacl", CopyACLCmd, 0,
3416                           "copy access control list");
3417     cmd_AddParm(ts, "-fromdir", CMD_SINGLE, 0,
3418                 "source directory (or DFS file)");
3419     cmd_AddParm(ts, "-todir", CMD_LIST, 0,
3420                 "destination directory (or DFS file)");
3421     cmd_AddParm(ts, "-clear", CMD_FLAG, CMD_OPTIONAL,
3422                 "first clear dest access list");
3423     parm_copyacl_id = ts->nParms;
3424     cmd_AddParm(ts, "-id", CMD_FLAG, CMD_OPTIONAL, "initial directory acl");
3425     cmd_AddParm(ts, "-if", CMD_FLAG, CMD_OPTIONAL, "initial file acl");
3426
3427     cmd_CreateAlias(ts, "ca");
3428
3429     ts = cmd_CreateSyntax("flush", FlushCmd, 0, "flush file from cache");
3430     cmd_AddParm(ts, "-path", CMD_LIST, CMD_OPTIONAL, "dir/file path");
3431     ts = cmd_CreateSyntax("flushmount", FlushMountCmd, 0,
3432                           "flush mount symlink from cache");
3433     cmd_AddParm(ts, "-path", CMD_LIST, CMD_OPTIONAL, "dir/file path");
3434
3435     ts = cmd_CreateSyntax("setvol", SetVolCmd, 0, "set volume status");
3436     cmd_AddParm(ts, "-path", CMD_LIST, CMD_OPTIONAL, "dir/file path");
3437     cmd_AddParm(ts, "-max", CMD_SINGLE, CMD_OPTIONAL,
3438                 "disk space quota in 1K units");
3439 #ifdef notdef
3440     cmd_AddParm(ts, "-min", CMD_SINGLE, CMD_OPTIONAL,
3441                 "disk space guaranteed");
3442     cmd_AddParm(ts, "-motd", CMD_SINGLE, CMD_OPTIONAL, "message of the day");
3443 #endif
3444     cmd_AddParm(ts, "-offlinemsg", CMD_SINGLE, CMD_OPTIONAL,
3445                 "offline message");
3446     cmd_CreateAlias(ts, "sv");
3447
3448     ts = cmd_CreateSyntax("messages", MessagesCmd, 0,
3449                           "control Cache Manager messages");
3450     cmd_AddParm(ts, "-show", CMD_SINGLE, CMD_OPTIONAL,
3451                 "[user|console|all|none]");
3452
3453     ts = cmd_CreateSyntax("examine", ExamineCmd, 0, "display file/volume status");
3454     cmd_AddParm(ts, "-path", CMD_LIST, CMD_OPTIONAL, "dir/file path");
3455     cmd_CreateAlias(ts, "lv");
3456     cmd_CreateAlias(ts, "listvol");
3457
3458     ts = cmd_CreateSyntax("listquota", ListQuotaCmd, 0, "list volume quota");
3459     cmd_AddParm(ts, "-path", CMD_LIST, CMD_OPTIONAL, "dir/file path");
3460     cmd_CreateAlias(ts, "lq");
3461
3462     ts = cmd_CreateSyntax("diskfree", DiskFreeCmd, 0,
3463                           "show server disk space usage");
3464     cmd_AddParm(ts, "-path", CMD_LIST, CMD_OPTIONAL, "dir/file path");
3465     cmd_CreateAlias(ts, "df");
3466
3467     ts = cmd_CreateSyntax("quota", QuotaCmd, 0, "show volume quota usage");
3468     cmd_AddParm(ts, "-path", CMD_LIST, CMD_OPTIONAL, "dir/file path");
3469
3470     ts = cmd_CreateSyntax("lsmount", ListMountCmd, 0, "list mount point");
3471     cmd_AddParm(ts, "-dir", CMD_LIST, 0, "directory");
3472
3473     ts = cmd_CreateSyntax("mkmount", MakeMountCmd, 0, "make mount point");
3474     cmd_AddParm(ts, "-dir", CMD_SINGLE, 0, "directory");
3475     cmd_AddParm(ts, "-vol", CMD_SINGLE, 0, "volume name");
3476     cmd_AddParm(ts, "-cell", CMD_SINGLE, CMD_OPTIONAL, "cell name");
3477     cmd_AddParm(ts, "-rw", CMD_FLAG, CMD_OPTIONAL, "force r/w volume");
3478     cmd_AddParm(ts, "-fast", CMD_FLAG, CMD_OPTIONAL,
3479                 "don't check name with VLDB");
3480
3481 /*
3482
3483 defect 3069
3484
3485     cmd_AddParm(ts, "-root", CMD_FLAG, CMD_OPTIONAL, "create cellular mount point");
3486 */
3487
3488
3489     ts = cmd_CreateSyntax("rmmount", RemoveMountCmd, 0, "remove mount point");
3490     cmd_AddParm(ts, "-dir", CMD_LIST, 0, "directory");
3491
3492     ts = cmd_CreateSyntax("checkservers", CheckServersCmd, 0,
3493                           "check local cell's servers");
3494     cmd_AddParm(ts, "-cell", CMD_SINGLE, CMD_OPTIONAL, "cell to check");
3495     cmd_AddParm(ts, "-all", CMD_FLAG, CMD_OPTIONAL, "check all cells");
3496     cmd_AddParm(ts, "-fast", CMD_FLAG, CMD_OPTIONAL,
3497                 "just list, don't check");
3498     cmd_AddParm(ts, "-interval", CMD_SINGLE, CMD_OPTIONAL,
3499                 "seconds between probes");
3500
3501     ts = cmd_CreateSyntax("checkvolumes", CheckVolumesCmd, 0,
3502                           "check volumeID/name mappings");
3503     cmd_CreateAlias(ts, "checkbackups");
3504
3505
3506     ts = cmd_CreateSyntax("setcachesize", SetCacheSizeCmd, 0,
3507                           "set cache size");
3508     cmd_AddParm(ts, "-blocks", CMD_SINGLE, CMD_OPTIONAL,
3509                 "size in 1K byte blocks (0 => reset)");
3510     cmd_CreateAlias(ts, "cachesize");
3511
3512     cmd_AddParm(ts, "-reset", CMD_FLAG, CMD_OPTIONAL,
3513                 "reset size back to boot value");
3514
3515     ts = cmd_CreateSyntax("getcacheparms", GetCacheParmsCmd, 0,
3516                           "get cache usage info");
3517     cmd_AddParm(ts, "-files", CMD_FLAG, CMD_OPTIONAL, "Show cach files used as well");
3518     cmd_AddParm(ts, "-excessive", CMD_FLAG, CMD_OPTIONAL, "excessively verbose cache stats");
3519
3520     ts = cmd_CreateSyntax("listcells", ListCellsCmd, 0,
3521                           "list configured cells");
3522     cmd_AddParm(ts, "-numeric", CMD_FLAG, CMD_OPTIONAL, "addresses only");
3523
3524     ts = cmd_CreateSyntax("listaliases", ListAliasesCmd, 0,
3525                           "list configured cell aliases");
3526
3527     ts = cmd_CreateSyntax("setquota", SetQuotaCmd, 0, "set volume quota");
3528     cmd_AddParm(ts, "-path", CMD_SINGLE, CMD_OPTIONAL, "dir/file path");
3529     cmd_AddParm(ts, "-max", CMD_SINGLE, 0, "max quota in kbytes");
3530 #ifdef notdef
3531     cmd_AddParm(ts, "-min", CMD_SINGLE, CMD_OPTIONAL, "min quota in kbytes");
3532 #endif
3533     cmd_CreateAlias(ts, "sq");
3534
3535     ts = cmd_CreateSyntax("newcell", NewCellCmd, 0, "configure new cell");
3536     cmd_AddParm(ts, "-name", CMD_SINGLE, 0, "cell name");
3537     cmd_AddParm(ts, "-servers", CMD_LIST, CMD_REQUIRED, "primary servers");
3538     cmd_AddParm(ts, "-linkedcell", CMD_SINGLE, CMD_OPTIONAL,
3539                 "linked cell name");
3540
3541     ts = cmd_CreateSyntax("newalias", NewAliasCmd, 0,
3542                           "configure new cell alias");
3543     cmd_AddParm(ts, "-alias", CMD_SINGLE, 0, "alias name");
3544     cmd_AddParm(ts, "-name", CMD_SINGLE, 0, "real name of cell");
3545
3546 #ifdef FS_ENABLE_SERVER_DEBUG_PORTS
3547 /*
3548  * Turn this on only if you wish to be able to talk to a server which is listening
3549  * on alternative ports. This is not intended for general use and may not be
3550  * supported in the cache manager. It is not a way to run two servers at the
3551  * same host, since the cache manager cannot properly distinguish those two hosts.
3552  */
3553     cmd_AddParm(ts, "-fsport", CMD_SINGLE, CMD_OPTIONAL,
3554                 "cell's fileserver port");
3555     cmd_AddParm(ts, "-vlport", CMD_SINGLE, CMD_OPTIONAL,
3556                 "cell's vldb server port");
3557 #endif
3558
3559     ts = cmd_CreateSyntax("whichcell", WhichCellCmd, 0, "list file's cell");
3560     cmd_AddParm(ts, "-path", CMD_LIST, CMD_OPTIONAL, "dir/file path");
3561
3562     ts = cmd_CreateSyntax("whereis", WhereIsCmd, 0, "list file's location");
3563     cmd_AddParm(ts, "-path", CMD_LIST, CMD_OPTIONAL, "dir/file path");
3564
3565     ts = cmd_CreateSyntax("wscell", WSCellCmd, 0, "list workstation's cell");
3566
3567 /*
3568     ts = cmd_CreateSyntax("primarycell", PrimaryCellCmd, 0, "obsolete (listed primary cell)");
3569 */
3570
3571     /* set cache monitor host address */
3572     ts = cmd_CreateSyntax("monitor", MonitorCmd, 0, (char *)CMD_HIDDEN);
3573     cmd_AddParm(ts, "-server", CMD_SINGLE, CMD_OPTIONAL,
3574                 "host name or 'off'");
3575     cmd_CreateAlias(ts, "mariner");
3576
3577     ts = cmd_CreateSyntax("getcellstatus", GetCellCmd, 0, "get cell status");
3578     cmd_AddParm(ts, "-cell", CMD_LIST, 0, "cell name");
3579
3580     ts = cmd_CreateSyntax("setcell", SetCellCmd, 0, "set cell status");
3581     cmd_AddParm(ts, "-cell", CMD_LIST, 0, "cell name");
3582     cmd_AddParm(ts, "-suid", CMD_FLAG, CMD_OPTIONAL, "allow setuid programs");
3583     cmd_AddParm(ts, "-nosuid", CMD_FLAG, CMD_OPTIONAL,
3584                 "disallow setuid programs");
3585
3586     ts = cmd_CreateSyntax("flushvolume", FlushVolumeCmd, 0,
3587                           "flush all data in volume");
3588     cmd_AddParm(ts, "-path", CMD_LIST, CMD_OPTIONAL, "dir/file path");
3589
3590     ts = cmd_CreateSyntax("sysname", SysNameCmd, 0,
3591                           "get/set sysname (i.e. @sys) value");
3592     cmd_AddParm(ts, "-newsys", CMD_LIST, CMD_OPTIONAL, "new sysname");
3593
3594     ts = cmd_CreateSyntax("exportafs", ExportAfsCmd, 0,
3595                           "enable/disable translators to AFS");
3596     cmd_AddParm(ts, "-type", CMD_SINGLE, 0, "exporter name");
3597     cmd_AddParm(ts, "-start", CMD_SINGLE, CMD_OPTIONAL,
3598                 "start/stop translator (on | off)");
3599     cmd_AddParm(ts, "-convert", CMD_SINGLE, CMD_OPTIONAL,
3600                 "convert from afs to unix mode (on | off)");
3601     cmd_AddParm(ts, "-uidcheck", CMD_SINGLE, CMD_OPTIONAL,
3602                 "run on strict 'uid check' mode (on | off)");
3603     cmd_AddParm(ts, "-submounts", CMD_SINGLE, CMD_OPTIONAL,
3604                 "allow nfs mounts to subdirs of /afs/.. (on  | off)");
3605     cmd_AddParm(ts, "-clipags", CMD_SINGLE, CMD_OPTIONAL,
3606                 "enable use of client-assigned PAG's (on  | off)");
3607     cmd_AddParm(ts, "-pagcb", CMD_SINGLE, CMD_OPTIONAL,
3608                 "enable callbacks to get creds from new clients (on  | off)");
3609
3610
3611     ts = cmd_CreateSyntax("storebehind", StoreBehindCmd, 0,
3612                           "store to server after file close");
3613     cmd_AddParm(ts, "-kbytes", CMD_SINGLE, CMD_OPTIONAL,
3614                 "asynchrony for specified names");
3615     cmd_AddParm(ts, "-files", CMD_LIST, CMD_OPTIONAL, "specific pathnames");
3616     cmd_AddParm(ts, "-allfiles", CMD_SINGLE, CMD_OPTIONAL,
3617                 "new default (KB)");
3618     cmd_AddParm(ts, "-verbose", CMD_FLAG, CMD_OPTIONAL, "show status");
3619     cmd_CreateAlias(ts, "sb");
3620
3621     ts = cmd_CreateSyntax("setcrypt", SetCryptCmd, 0,
3622                           "set cache manager encryption flag");
3623     cmd_AddParm(ts, "-crypt", CMD_SINGLE, 0, "on or off");
3624
3625     ts = cmd_CreateSyntax("getcrypt", GetCryptCmd, 0,
3626                           "get cache manager encryption flag");
3627
3628     ts = cmd_CreateSyntax("rxstatproc", RxStatProcCmd, 0,
3629                           "Manage per process RX statistics");
3630     cmd_AddParm(ts, "-enable", CMD_FLAG, CMD_OPTIONAL, "Enable RX stats");
3631     cmd_AddParm(ts, "-disable", CMD_FLAG, CMD_OPTIONAL, "Disable RX stats");
3632     cmd_AddParm(ts, "-clear", CMD_FLAG, CMD_OPTIONAL, "Clear RX stats");
3633
3634     ts = cmd_CreateSyntax("rxstatpeer", RxStatPeerCmd, 0,
3635                           "Manage per peer RX statistics");
3636     cmd_AddParm(ts, "-enable", CMD_FLAG, CMD_OPTIONAL, "Enable RX stats");
3637     cmd_AddParm(ts, "-disable", CMD_FLAG, CMD_OPTIONAL, "Disable RX stats");
3638     cmd_AddParm(ts, "-clear", CMD_FLAG, CMD_OPTIONAL, "Clear RX stats");
3639
3640     ts = cmd_CreateSyntax("setcbaddr", CallBackRxConnCmd, 0, "configure callback connection address");
3641     cmd_AddParm(ts, "-addr", CMD_SINGLE, CMD_OPTIONAL, "host name or address");
3642
3643     /* try to find volume location information */
3644     ts = cmd_CreateSyntax("getfid", GetFidCmd, 0,
3645                           "get fid for file(s)");
3646     cmd_AddParm(ts, "-path", CMD_LIST, CMD_OPTIONAL, "dir/file path");
3647
3648 #ifdef AFS_DISCON_ENV
3649     ts = cmd_CreateSyntax("discon", DisconCmd, 0,
3650                           "disconnection mode");
3651     cmd_AddParm(ts, "-mode", CMD_SINGLE, CMD_OPTIONAL, "nat | full");
3652 #endif
3653
3654     ts = cmd_CreateSyntax("nukenfscreds", NukeNFSCredsCmd, 0, "nuke credentials for NFS client");
3655     cmd_AddParm(ts, "-addr", CMD_SINGLE, 0, "host name or address");
3656
3657     ts = cmd_CreateSyntax("uuid", UuidCmd, 0, "manage the UUID for the cache manager");
3658     cmd_AddParm(ts, "-generate", CMD_FLAG, CMD_REQUIRED, "generate a new UUID");
3659
3660     code = cmd_Dispatch(argc, argv);
3661     if (rxInitDone)
3662         rx_Finalize();
3663
3664     return code;
3665 }
3666
3667 static void
3668 Die(int errnum, char *filename)
3669 {
3670     switch (errnum) {
3671     case EINVAL:
3672         if (filename)
3673             fprintf(stderr,
3674                     "%s: Invalid argument; it is possible that %s is not in AFS.\n",
3675                     pn, filename);
3676         else
3677             fprintf(stderr, "%s: Invalid argument.\n", pn);
3678         break;
3679     case ENOENT:
3680         if (filename)
3681             fprintf(stderr, "%s: File '%s' doesn't exist\n", pn, filename);
3682         else
3683             fprintf(stderr, "%s: no such file returned\n", pn);
3684         break;
3685     case EROFS:
3686         fprintf(stderr,
3687                 "%s: You can not change a backup or readonly volume\n", pn);
3688         break;
3689     case EACCES:
3690     case EPERM:
3691         if (filename)
3692             fprintf(stderr,
3693                     "%s: You don't have the required access rights on '%s'\n",
3694                     pn, filename);
3695         else
3696             fprintf(stderr,
3697                     "%s: You do not have the required rights to do this operation\n",
3698                     pn);
3699         break;
3700     default:
3701         if (filename)
3702             fprintf(stderr, "%s:'%s'", pn, filename);
3703         else
3704             fprintf(stderr, "%s", pn);
3705         fprintf(stderr, ": %s\n", afs_error_message(errnum));
3706         break;
3707     }
3708 }
3709
3710 /* get clients interface addresses */
3711 static int
3712 GetClientAddrsCmd(struct cmd_syndesc *as, char *arock)
3713 {
3714     afs_int32 code;
3715     struct cmd_item *ti;
3716     char *name;
3717     struct ViceIoctl blob;
3718     struct sprefrequest *in;
3719     struct sprefinfo *out;
3720
3721     in = (struct sprefrequest *)space;
3722     in->offset = 0;
3723
3724     do {
3725         blob.in_size = sizeof(struct sprefrequest);
3726         blob.in = (char *)in;
3727         blob.out = space;
3728         blob.out_size = MAXSIZE;
3729
3730         in->num_servers =
3731             (MAXSIZE - 2 * sizeof(short)) / sizeof(struct spref);
3732         /* returns addr in network byte order */
3733         code = pioctl(0, VIOC_GETCPREFS, &blob, 1);
3734         if (code) {
3735             perror("getClientInterfaceAddr pioctl");
3736             return 1;
3737         }
3738
3739         {
3740             int i;
3741             out = (struct sprefinfo *)blob.out;
3742             for (i = 0; i < out->num_servers; i++) {
3743                 afs_int32 addr;
3744                 char tbuffer[32];
3745                 addr = ntohl(out->servers[i].server.s_addr);
3746                 sprintf(tbuffer, "%d.%d.%d.%d", (addr >> 24) & 0xff,
3747                         (addr >> 16) & 0xff, (addr >> 8) & 0xff, addr & 0xff);
3748                 printf("%-50s\n", tbuffer);
3749             }
3750             in->offset = out->next_offset;
3751         }
3752     } while (out->next_offset > 0);
3753
3754     return 0;
3755 }
3756
3757 static int
3758 SetClientAddrsCmd(struct cmd_syndesc *as, char *arock)
3759 {
3760     afs_int32 code, addr;
3761     struct cmd_item *ti;
3762     char name[80];
3763     struct ViceIoctl blob;
3764     struct setspref *ssp;
3765     int sizeUsed = 0, i, flag;
3766     afs_int32 existingAddr[1024];       /* existing addresses on this host */
3767     int existNu;
3768     int error = 0;
3769
3770     ssp = (struct setspref *)space;
3771     ssp->num_servers = 0;
3772     blob.in = space;
3773     blob.out = space;
3774     blob.out_size = MAXSIZE;
3775
3776     if (geteuid()) {
3777         fprintf(stderr, "Permission denied: requires root access.\n");
3778         return 1;
3779     }
3780
3781     /* extract all existing interface addresses */
3782     existNu = rx_getAllAddr(existingAddr, 1024);
3783     if (existNu < 0)
3784         return 1;
3785
3786     sizeUsed = sizeof(struct setspref); /* space used in ioctl buffer */
3787     for (ti = as->parms[0].items; ti; ti = ti->next) {
3788         if (sizeUsed >= sizeof(space)) {
3789             fprintf(stderr, "No more space\n");
3790             return 1;
3791         }
3792         addr = extractAddr(ti->data, 20);       /* network order */
3793         if ((addr == AFS_IPINVALID) || (addr == AFS_IPINVALIDIGNORE)) {
3794             fprintf(stderr, "Error in specifying address: %s..ignoring\n",
3795                     ti->data);
3796             error = 1;
3797             continue;
3798         }
3799         /* see if it is an address that really exists */
3800         for (flag = 0, i = 0; i < existNu; i++)
3801             if (existingAddr[i] == addr) {
3802                 flag = 1;
3803                 break;
3804             }
3805         if (!flag) {            /* this is an nonexistent address */
3806             fprintf(stderr, "Nonexistent address: 0x%08x..ignoring\n", addr);
3807             error = 1;
3808             continue;
3809         }
3810         /* copy all specified addr into ioctl buffer */
3811         (ssp->servers[ssp->num_servers]).server.s_addr = addr;
3812         printf("Adding 0x%08x\n", addr);
3813         ssp->num_servers++;
3814         sizeUsed += sizeof(struct spref);
3815     }
3816     if (ssp->num_servers < 1) {
3817         fprintf(stderr, "No addresses specified\n");
3818         return 1;
3819     }
3820     blob.in_size = sizeUsed - sizeof(struct spref);
3821
3822     code = pioctl(0, VIOC_SETCPREFS, &blob, 1); /* network order */
3823     if (code) {
3824         Die(errno, 0);
3825         error = 1;
3826     }
3827
3828     return error;
3829 }
3830
3831 static int
3832 FlushMountCmd(struct cmd_syndesc *as, char *arock)
3833 {
3834     afs_int32 code;
3835     struct ViceIoctl blob;
3836     struct cmd_item *ti;
3837     char orig_name[1024];       /*Original name, may be modified */
3838     char true_name[1024];       /*``True'' dirname (e.g., symlink target) */
3839     char parent_dir[1024];      /*Parent directory of true name */
3840     char *last_component;       /*Last component of true name */
3841     struct stat statbuff;       /*Buffer for status info */
3842     int link_chars_read;        /*Num chars read in readlink() */
3843     int thru_symlink;           /*Did we get to a mount point via a symlink? */
3844     int error = 0;
3845
3846     for (ti = as->parms[0].items; ti; ti = ti->next) {
3847         /* once per file */
3848         thru_symlink = 0;
3849         sprintf(orig_name, "%s%s", (ti->data[0] == '/') ? "" : "./",
3850                 ti->data);
3851
3852         if (lstat(orig_name, &statbuff) < 0) {
3853             /* if lstat fails, we should still try the pioctl, since it
3854              * may work (for example, lstat will fail, but pioctl will
3855              * work if the volume of offline (returning ENODEV). */
3856             statbuff.st_mode = S_IFDIR; /* lie like pros */
3857         }
3858
3859         /*
3860          * The lstat succeeded.  If the given file is a symlink, substitute
3861          * the file name with the link name.
3862          */
3863         if ((statbuff.st_mode & S_IFMT) == S_IFLNK) {
3864             thru_symlink = 1;
3865             /*
3866              * Read name of resolved file.
3867              */
3868             link_chars_read = readlink(orig_name, true_name, 1024);
3869             if (link_chars_read <= 0) {
3870                 fprintf(stderr,
3871                         "%s: Can't read target name for '%s' symbolic link!\n",
3872                         pn, orig_name);
3873                 error = 1;
3874                 continue;
3875             }
3876
3877             /*
3878              * Add a trailing null to what was read, bump the length.
3879              */
3880             true_name[link_chars_read++] = 0;
3881
3882             /*
3883              * If the symlink is an absolute pathname, we're fine.  Otherwise, we
3884              * have to create a full pathname using the original name and the
3885              * relative symlink name.  Find the rightmost slash in the original
3886              * name (we know there is one) and splice in the symlink value.
3887              */
3888             if (true_name[0] != '/') {
3889                 last_component = (char *)strrchr(orig_name, '/');
3890                 strcpy(++last_component, true_name);
3891                 strcpy(true_name, orig_name);
3892             }
3893         } else
3894             strcpy(true_name, orig_name);
3895
3896         /*
3897          * Find rightmost slash, if any.
3898          */
3899         last_component = (char *)strrchr(true_name, '/');
3900         if (last_component) {
3901             /*
3902              * Found it.  Designate everything before it as the parent directory,
3903              * everything after it as the final component.
3904              */
3905             strncpy(parent_dir, true_name, last_component - true_name);
3906             parent_dir[last_component - true_name] = 0;
3907             last_component++;   /*Skip the slash */
3908         } else {
3909             /*
3910              * No slash appears in the given file name.  Set parent_dir to the current
3911              * directory, and the last component as the given name.
3912              */
3913             strcpy(parent_dir, ".");
3914             last_component = true_name;
3915         }
3916
3917         if (strcmp(last_component, ".") == 0
3918             || strcmp(last_component, "..") == 0) {
3919             fprintf(stderr,
3920                     "%s: you may not use '.' or '..' as the last component\n",
3921                     pn);
3922             fprintf(stderr, "%s: of a name in the 'fs flushmount' command.\n",
3923                     pn);
3924             error = 1;
3925             continue;
3926         }
3927
3928         blob.in = last_component;
3929         blob.in_size = strlen(last_component) + 1;
3930         blob.out_size = 0;
3931         memset(space, 0, MAXSIZE);
3932
3933         code = pioctl(parent_dir, VIOC_AFS_FLUSHMOUNT, &blob, 1);
3934
3935         if (code != 0) {
3936             if (errno == EINVAL) {
3937                 fprintf(stderr, "'%s' is not a mount point.\n", ti->data);
3938             } else {
3939                 Die(errno, (ti->data ? ti->data : parent_dir));
3940             }
3941             error = 1;
3942         }
3943     }
3944     return error;
3945 }
3946
3947 static int
3948 RxStatProcCmd(struct cmd_syndesc *as, char *arock)
3949 {
3950     afs_int32 code;
3951     afs_int32 flags = 0;
3952     struct ViceIoctl blob;
3953     struct cmd_item *ti;
3954
3955     if (as->parms[0].items) {   /* -enable */
3956         flags |= AFSCALL_RXSTATS_ENABLE;
3957     }
3958     if (as->parms[1].items) {   /* -disable */
3959         flags |= AFSCALL_RXSTATS_DISABLE;
3960     }
3961     if (as->parms[2].items) {   /* -clear */
3962         flags |= AFSCALL_RXSTATS_CLEAR;
3963     }
3964     if (flags == 0) {
3965         fprintf(stderr, "You must specify at least one argument\n");
3966         return 1;
3967     }
3968
3969     blob.in = (char *)&flags;
3970     blob.in_size = sizeof(afs_int32);
3971     blob.out_size = 0;
3972
3973     code = pioctl(NULL, VIOC_RXSTAT_PROC, &blob, 1);
3974     if (code != 0) {
3975         Die(errno, NULL);
3976         return 1;
3977     }
3978
3979     return 0;
3980 }
3981
3982 static int
3983 RxStatPeerCmd(struct cmd_syndesc *as, char *arock)
3984 {
3985     afs_int32 code;
3986     afs_int32 flags = 0;
3987     struct ViceIoctl blob;
3988     struct cmd_item *ti;
3989
3990     if (as->parms[0].items) {   /* -enable */
3991         flags |= AFSCALL_RXSTATS_ENABLE;
3992     }
3993     if (as->parms[1].items) {   /* -disable */
3994         flags |= AFSCALL_RXSTATS_DISABLE;
3995     }
3996     if (as->parms[2].items) {   /* -clear */
3997         flags |= AFSCALL_RXSTATS_CLEAR;
3998     }
3999     if (flags == 0) {
4000         fprintf(stderr, "You must specify at least one argument\n");
4001         return 1;
4002     }
4003
4004     blob.in = (char *)&flags;
4005     blob.in_size = sizeof(afs_int32);
4006     blob.out_size = 0;
4007
4008     code = pioctl(NULL, VIOC_RXSTAT_PEER, &blob, 1);
4009     if (code != 0) {
4010         Die(errno, NULL);
4011         return 1;
4012     }
4013
4014     return 0;
4015 }
4016
4017 static int
4018 GetFidCmd(struct cmd_syndesc *as, char *arock)
4019 {
4020     struct ViceIoctl blob;
4021     struct cmd_item *ti;
4022     for (ti = as->parms[0].items; ti; ti = ti->next) {
4023       struct VenusFid vfid;
4024       
4025       blob.out_size = sizeof(struct VenusFid);
4026       blob.out = (char *) &vfid;
4027       blob.in_size = 0;
4028       
4029       if (0 == pioctl(ti->data, VIOCGETFID, &blob, 1)) {
4030         printf("File %s (%u.%u.%u) contained in volume %u\n",
4031                ti->data, vfid.Fid.Volume, vfid.Fid.Vnode, vfid.Fid.Unique,
4032                vfid.Fid.Volume);
4033       }
4034     }
4035
4036     return 0;
4037 }
4038