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