2 * Copyright 2000, International Business Machines Corporation and others.
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
10 #include <afsconfig.h>
11 #include <afs/param.h>
18 #include <afs/afs_consts.h>
19 #include <afs/afs_args.h>
22 #include <afs/venus.h>
23 #include <afs/com_err.h>
24 #include <afs/afs_consts.h>
28 #include "afs/prs_fs.h"
29 #include <afs/afsint.h>
30 #include <afs/cellconfig.h>
33 #include <rx/rx_globals.h>
34 #include <afs/vldbint.h>
35 #include <afs/volser.h>
36 #include <afs/vlserver.h>
38 #include <afs/com_err.h>
39 #include <afs/ptclient.h>
40 #include <afs/ptuser.h>
41 #include <afs/afsutil.h>
42 #include <afs/sys_prototypes.h>
45 #define MAXINSIZE 1300 /* pioctl complains if data is larger than this */
46 #define VMSGSIZE 128 /* size of msg buf in volume hdr */
48 static char space[AFS_PIOCTL_MAXSIZE];
49 static char tspace[1024];
50 static struct ubik_client *uclient;
52 static int GetClientAddrsCmd(struct cmd_syndesc *, void *);
53 static int SetClientAddrsCmd(struct cmd_syndesc *, void *);
54 static int FlushMountCmd(struct cmd_syndesc *, void *);
55 static int RxStatProcCmd(struct cmd_syndesc *, void *);
56 static int RxStatPeerCmd(struct cmd_syndesc *, void *);
57 static int GetFidCmd(struct cmd_syndesc *, void *);
58 static int UuidCmd(struct cmd_syndesc *, void *);
60 static char pn[] = "fs";
61 static int rxInitDone = 0;
65 static void ZapList(struct AclEntry *);
66 static int PruneList(struct AclEntry **, int);
67 static int CleanAcl(struct Acl *, char *);
68 static int SetVolCmd(struct cmd_syndesc *as, void *arock);
69 static int GetCellName(char *, struct afsconf_cell *);
70 static void Die(int, char *);
73 * Character to use between name and rights in printed representation for
76 #define DFS_SEPARATOR ' '
78 typedef char sec_rgy_name_t[1025]; /* A DCE definition */
81 int dfs; /* Originally true if a dfs acl; now also the type
82 * of the acl (1, 2, or 3, corresponding to object,
83 * initial dir, or initial object). */
84 sec_rgy_name_t cell; /* DFS cell name */
87 struct AclEntry *pluslist;
88 struct AclEntry *minuslist;
92 struct AclEntry *next;
98 afs_int32 callerAccess;
105 ZapAcl(struct Acl *acl)
109 ZapList(acl->pluslist);
110 ZapList(acl->minuslist);
115 foldcmp(char *a, char *b)
121 if (t >= 'A' && t <= 'Z')
123 if (u >= 'A' && u <= 'Z')
133 * Mods for the AFS/DFS protocol translator.
135 * DFS rights. It's ugly to put these definitions here, but they
136 * *cannot* change, because they're part of the wire protocol.
137 * In any event, the protocol translator will guarantee these
138 * assignments for AFS cache managers.
140 #define DFS_READ 0x01
141 #define DFS_WRITE 0x02
142 #define DFS_EXECUTE 0x04
143 #define DFS_CONTROL 0x08
144 #define DFS_INSERT 0x10
145 #define DFS_DELETE 0x20
147 /* the application definable ones (backwards from AFS) */
148 #define DFS_USR0 0x80000000 /* "A" bit */
149 #define DFS_USR1 0x40000000 /* "B" bit */
150 #define DFS_USR2 0x20000000 /* "C" bit */
151 #define DFS_USR3 0x10000000 /* "D" bit */
152 #define DFS_USR4 0x08000000 /* "E" bit */
153 #define DFS_USR5 0x04000000 /* "F" bit */
154 #define DFS_USR6 0x02000000 /* "G" bit */
155 #define DFS_USR7 0x01000000 /* "H" bit */
156 #define DFS_USRALL (DFS_USR0 | DFS_USR1 | DFS_USR2 | DFS_USR3 |\
157 DFS_USR4 | DFS_USR5 | DFS_USR6 | DFS_USR7)
160 * Offset of -id switch in command structure for various commands.
161 * The -if switch is the next switch always.
163 static int parm_setacl_id, parm_copyacl_id, parm_listacl_id;
166 * Determine whether either the -id or -if switches are present, and
167 * return 0, 1 or 2, as appropriate. Abort if both switches are present.
169 /* int id; Offset of -id switch; -if is next switch */
171 getidf(struct cmd_syndesc *as, int id)
175 if (as->parms[id].items) {
178 if (as->parms[id + 1].items) {
183 "%s: you may specify either -id or -if, but not both switches\n",
191 PRights(afs_int32 arights, int dfs)
194 if (arights & PRSFS_READ)
196 if (arights & PRSFS_LOOKUP)
198 if (arights & PRSFS_INSERT)
200 if (arights & PRSFS_DELETE)
202 if (arights & PRSFS_WRITE)
204 if (arights & PRSFS_LOCK)
206 if (arights & PRSFS_ADMINISTER)
208 if (arights & PRSFS_USR0)
210 if (arights & PRSFS_USR1)
212 if (arights & PRSFS_USR2)
214 if (arights & PRSFS_USR3)
216 if (arights & PRSFS_USR4)
218 if (arights & PRSFS_USR5)
220 if (arights & PRSFS_USR6)
222 if (arights & PRSFS_USR7)
225 if (arights & DFS_READ)
229 if (arights & DFS_WRITE)
233 if (arights & DFS_EXECUTE)
237 if (arights & DFS_CONTROL)
241 if (arights & DFS_INSERT)
245 if (arights & DFS_DELETE)
249 if (arights & (DFS_USRALL))
251 if (arights & DFS_USR0)
253 if (arights & DFS_USR1)
255 if (arights & DFS_USR2)
257 if (arights & DFS_USR3)
259 if (arights & DFS_USR4)
261 if (arights & DFS_USR5)
263 if (arights & DFS_USR6)
265 if (arights & DFS_USR7)
271 /* this function returns TRUE (1) if the file is in AFS, otherwise false (0) */
275 struct ViceIoctl blob;
279 blob.out_size = AFS_PIOCTL_MAXSIZE;
282 code = pioctl(apath, VIOC_FILE_CELL_NAME, &blob, 1);
284 if ((errno == EINVAL) || (errno == ENOENT))
290 /* return a static pointer to a buffer */
295 strlcpy(tspace, apath, sizeof(tspace));
296 tp = strrchr(tspace, '/');
297 if (tp == (char *)tspace)
299 else if (tp == NULL) {
307 /* added relative add resp. delete */
308 /* (so old add really means to set) */
309 enum rtype { add, destroy, deny, reladd, reldel };
312 Convert(char *arights, int dfs, enum rtype *rtypep)
316 char *tcp; /* to walk through the rights string */
318 *rtypep = add; /* add rights, by default */
320 /* analyze last character of string */
321 tcp = arights + strlen(arights);
322 if ( tcp-- > arights ) { /* assure non-empty string */
324 *rtypep = reladd; /* '+' indicates more rights */
325 else if ( *tcp == '-' )
326 *rtypep = reldel; /* '-' indicates less rights */
327 else if ( *tcp == '=' )
328 *rtypep = add; /* '=' also allows old behaviour */
330 tcp++; /* back to original null byte */
331 *tcp = '\0'; /* do not disturb old strcmp-s */
335 if (!strcmp(arights, "null")) {
339 if (!strcmp(arights, "read"))
340 return DFS_READ | DFS_EXECUTE;
341 if (!strcmp(arights, "write"))
342 return DFS_READ | DFS_EXECUTE | DFS_INSERT | DFS_DELETE |
344 if (!strcmp(arights, "all"))
345 return DFS_READ | DFS_EXECUTE | DFS_INSERT | DFS_DELETE |
346 DFS_WRITE | DFS_CONTROL;
348 if (!strcmp(arights, "read"))
349 return PRSFS_READ | PRSFS_LOOKUP;
350 if (!strcmp(arights, "write"))
351 return PRSFS_READ | PRSFS_LOOKUP | PRSFS_INSERT | PRSFS_DELETE |
352 PRSFS_WRITE | PRSFS_LOCK;
353 if (!strcmp(arights, "mail"))
354 return PRSFS_INSERT | PRSFS_LOCK | PRSFS_LOOKUP;
355 if (!strcmp(arights, "all"))
356 return PRSFS_READ | PRSFS_LOOKUP | PRSFS_INSERT | PRSFS_DELETE |
357 PRSFS_WRITE | PRSFS_LOCK | PRSFS_ADMINISTER;
359 if (!strcmp(arights, "none")) {
360 *rtypep = destroy; /* Remove entire entry */
365 while ((tc = *tcp++ )) {
398 fprintf(stderr, "%s: illegal DFS rights character '%c'.\n",
406 mode |= PRSFS_LOOKUP;
408 mode |= PRSFS_INSERT;
410 mode |= PRSFS_DELETE;
416 mode |= PRSFS_ADMINISTER;
434 fprintf(stderr, "%s: illegal rights character '%c'.\n", pn,
443 static struct AclEntry *
444 FindList(struct AclEntry *alist, char *aname)
447 if (!foldcmp(alist->name, aname))
454 /* if no parm specified in a particular slot, set parm to be "." instead */
456 SetDotDefault(struct cmd_item **aitemp)
460 return; /* already has value */
461 /* otherwise, allocate an item representing "." */
462 ti = malloc(sizeof(struct cmd_item));
464 ti->next = (struct cmd_item *)0;
465 ti->data = malloc(2);
467 strcpy(ti->data, ".");
472 ChangeList(struct Acl *al, afs_int32 plus, char *aname, afs_int32 arights,
475 struct AclEntry *tlist;
476 tlist = (plus ? al->pluslist : al->minuslist);
477 tlist = FindList(tlist, aname);
479 /* Found the item already in the list.
480 * modify rights in case of reladd and reladd only,
481 * use standard - add, ie. set - otherwise
483 if ( artypep == NULL )
484 tlist->rights = arights;
485 else if ( *artypep == reladd )
486 tlist->rights |= arights;
487 else if ( *artypep == reldel )
488 tlist->rights &= ~arights;
490 tlist->rights = arights;
493 al->nplus -= PruneList(&al->pluslist, al->dfs);
495 al->nminus -= PruneList(&al->minuslist, al->dfs);
498 if ( artypep != NULL && *artypep == reldel )
499 return; /* can't reduce non-existing rights */
501 /* Otherwise we make a new item and plug in the new data. */
502 tlist = malloc(sizeof(struct AclEntry));
504 strcpy(tlist->name, aname);
505 tlist->rights = arights;
507 tlist->next = al->pluslist;
508 al->pluslist = tlist;
510 if (arights == 0 || arights == -1)
511 al->nplus -= PruneList(&al->pluslist, al->dfs);
513 tlist->next = al->minuslist;
514 al->minuslist = tlist;
517 al->nminus -= PruneList(&al->minuslist, al->dfs);
522 ZapList(struct AclEntry *alist)
524 struct AclEntry *tp, *np;
525 for (tp = alist; tp; tp = np) {
532 PruneList(struct AclEntry **ae, int dfs)
534 struct AclEntry **lp;
535 struct AclEntry *te, *ne;
539 for (te = *ae; te; te = ne) {
540 if ((!dfs && te->rights == 0) || te->rights == -1) {
556 while (*astr != '\n')
563 * Create an empty acl, taking into account whether the acl pointed
564 * to by astr is an AFS or DFS acl. Only parse this minimally, so we
565 * can recover from problems caused by bogus ACL's (in that case, always
566 * assume that the acl is AFS: for DFS, the user can always resort to
567 * acl_edit, but for AFS there may be no other way out).
575 tp = malloc(sizeof(struct Acl));
577 tp->nplus = tp->nminus = 0;
578 tp->pluslist = tp->minuslist = 0;
580 sscanf(astr, "%d dfs:%d %1024s", &junk, &tp->dfs, tp->cell);
587 int nplus, nminus, i, trights;
589 struct AclEntry *first, *last, *tl;
592 ta = malloc(sizeof(struct Acl));
595 sscanf(astr, "%d dfs:%d %1024s", &ta->nplus, &ta->dfs, ta->cell);
596 astr = SkipLine(astr);
597 sscanf(astr, "%d", &ta->nminus);
598 astr = SkipLine(astr);
605 for (i = 0; i < nplus; i++) {
606 sscanf(astr, "%99s %d", tname, &trights);
607 astr = SkipLine(astr);
608 tl = malloc(sizeof(struct AclEntry));
612 strcpy(tl->name, tname);
613 tl->rights = trights;
619 ta->pluslist = first;
623 for (i = 0; i < nminus; i++) {
624 sscanf(astr, "%99s %d", tname, &trights);
625 astr = SkipLine(astr);
626 tl = malloc(sizeof(struct AclEntry));
630 strcpy(tl->name, tname);
631 tl->rights = trights;
637 ta->minuslist = first;
643 PrintStatus(VolumeStatus * status, char *name, char *offmsg)
645 printf("Volume status for vid = %u named %s\n", status->Vid, name);
647 printf("Current offline message is %s\n", offmsg);
648 printf("Current disk quota is ");
649 if (status->MaxQuota != 0)
650 printf("%d\n", status->MaxQuota);
652 printf("unlimited\n");
653 printf("Current blocks used are %d\n", status->BlocksInUse);
654 printf("The partition has %d blocks available out of %d\n\n",
655 status->PartBlocksAvail, status->PartMaxBlocks);
659 static const char power_letter[] = {
668 HumanPrintSpace(afs_int32 int_space)
671 int exponent_max = sizeof(power_letter) - 1;
672 float space = int_space;
674 while (space >= 1024 && exponent < exponent_max) {
678 printf("%9.1f%c", space, power_letter[exponent]);
682 QuickPrintStatus(VolumeStatus * status, char *name, int human)
684 double QuotaUsed = 0.0;
685 double PartUsed = 0.0;
687 printf("%-25.25s", name);
689 if (status->MaxQuota != 0) {
692 HumanPrintSpace(status->MaxQuota);
694 HumanPrintSpace(status->BlocksInUse);
697 printf(" %10d %10d", status->MaxQuota, status->BlocksInUse);
699 ((((double)status->BlocksInUse) / status->MaxQuota) * 100.0);
701 printf(" no limit ");
703 HumanPrintSpace(status->BlocksInUse);
705 printf("%10d", status->BlocksInUse);
707 if (QuotaUsed > 90.0) {
708 printf("%5.0f%%<<", QuotaUsed);
711 printf("%5.0f%% ", QuotaUsed);
714 ((((double)status->PartBlocksAvail) / status->PartMaxBlocks) *
716 if (PartUsed > 97.0) {
717 printf("%9.0f%%<<", PartUsed);
720 printf("%9.0f%% ", PartUsed);
722 printf(" <<WARNING\n");
729 QuickPrintSpace(VolumeStatus * status, char *name, int human)
731 double PartUsed = 0.0;
733 printf("%-25.25s", name);
736 HumanPrintSpace(status->PartMaxBlocks);
737 HumanPrintSpace(status->PartMaxBlocks - status->PartBlocksAvail);
738 HumanPrintSpace(status->PartBlocksAvail);
741 printf("%10d%10d%10d", status->PartMaxBlocks,
742 status->PartMaxBlocks - status->PartBlocksAvail,
743 status->PartBlocksAvail);
747 ((((double)status->PartBlocksAvail) / status->PartMaxBlocks) *
749 if (PartUsed > 90.0) {
750 printf(" %4.0f%%<<", PartUsed);
753 printf(" %4.0f%% ", PartUsed);
755 printf(" <<WARNING\n");
762 AclToString(struct Acl *acl)
764 static char mydata[AFS_PIOCTL_MAXSIZE];
765 char tstring[AFS_PIOCTL_MAXSIZE];
766 char dfsstring[AFS_PIOCTL_MAXSIZE];
770 snprintf(dfsstring, sizeof(dfsstring), " dfs:%d %s", acl->dfs, acl->cell);
773 snprintf(mydata, sizeof(mydata), "%d%s\n%d\n", acl->nplus, dfsstring, acl->nminus);
774 for (tp = acl->pluslist; tp; tp = tp->next) {
775 snprintf(tstring, sizeof(tstring), "%s %d\n", tp->name, tp->rights);
776 strlcat(mydata, tstring, sizeof(mydata));
778 for (tp = acl->minuslist; tp; tp = tp->next) {
779 snprintf(tstring, sizeof(tstring), "%s %d\n", tp->name, tp->rights);
780 strlcat(mydata, tstring, sizeof(mydata));
786 SetACLCmd(struct cmd_syndesc *as, void *arock)
789 struct ViceIoctl blob;
791 struct cmd_item *ti, *ui;
795 int idf = getidf(as, parm_setacl_id);
798 if (as->parms[2].items)
802 plusp = !(as->parms[3].items);
803 for (ti = as->parms[0].items; ti; ti = ti->next) {
804 blob.out_size = AFS_PIOCTL_MAXSIZE;
806 blob.in = blob.out = space;
807 code = pioctl(ti->data, VIOCGETAL, &blob, 1);
809 Die(errno, ti->data);
816 ta = ParseAcl(space);
817 if (!plusp && ta->dfs) {
819 "%s: %s: you may not use the -negative switch with DFS acl's.\n%s",
821 "(you may specify \"null\" to revoke all rights, however)\n");
829 ta = EmptyAcl(space);
831 ta = ParseAcl(space);
832 CleanAcl(ta, ti->data);
833 for (ui = as->parms[1].items; ui; ui = ui->next->next) {
837 "%s: Missing second half of user/access pair.\n", pn);
841 rights = Convert(ui->next->data, ta->dfs, &rtype);
842 if (rtype == destroy && !ta->dfs) {
843 struct AclEntry *tlist;
845 tlist = (plusp ? ta->pluslist : ta->minuslist);
846 if (!FindList(tlist, ui->data))
849 if (rtype == deny && !ta->dfs)
851 if (rtype == destroy && ta->dfs)
853 ChangeList(ta, plusp, ui->data, rights, &rtype);
855 blob.in = AclToString(ta);
857 blob.in_size = 1 + strlen(blob.in);
858 code = pioctl(ti->data, VIOCSETAL, &blob, 1);
860 if (errno == EINVAL) {
862 static char *fsenv = 0;
864 fsenv = (char *)getenv("FS_EXPERT");
867 "%s: \"Invalid argument\" was returned when you tried to store a DFS access list.\n",
871 "%s%s%s%s%s%s%s%s%s%s%s%s%s%s%s%s%s%s%s%s%s%s%s%s",
872 "\nPossible reasons for this include:\n\n",
873 " -You may have specified an inappropriate combination of rights.\n",
874 " For example, some DFS-supported filesystems may not allow you to\n",
875 " drop the \"c\" right from \"user_obj\".\n\n",
876 " -A mask_obj may be required (it is likely required by the underlying\n",
877 " filesystem if you try to set anything other than the basic \"user_obj\"\n",
878 " \"mask_obj\", or \"group_obj\" entries). Unlike acl_edit, the fs command\n",
879 " does not automatically create or update the mask_obj. Try setting\n",
880 " the rights \"mask_obj all\" with \"fs sa\" before adding any explicit\n",
881 " users or groups. You can do this with a single command, such as\n",
882 " \"fs sa mask_obj all user:somename read\"\n\n",
883 " -A specified user or group may not exist.\n\n",
884 " -You may have tried to delete \"user_obj\", \"group_obj\", or \"other_obj\".\n",
885 " This is probably not allowed by the underlying file system.\n\n",
886 " -If you add a user or group to a DFS ACL, remember that it must be\n",
887 " fully specified as \"user:username\" or \"group:groupname\". In addition, there\n",
888 " may be local requirements on the format of the user or group name.\n",
889 " Check with your cell administrator.\n\n",
890 " -Or numerous other possibilities. It would be great if we could be more\n",
891 " precise about the actual problem, but for various reasons, this is\n",
892 " impractical via this interface. If you can't figure it out, you\n",
893 " might try logging into a DCE-equipped machine and use acl_edit (or\n",
894 " whatever is provided). You may get better results. Good luck!\n\n",
895 " (You may inhibit this message by setting \"FS_EXPERT\" in your environment)\n");
899 "%s: Invalid argument, possible reasons include:\n",
901 fprintf(stderr, "\t-File not in AFS\n");
903 "\t-Too many users on access control list\n");
905 "\t-Tried to add non-existent user to access control list\n");
908 Die(errno, ti->data);
920 CopyACLCmd(struct cmd_syndesc *as, void *arock)
923 struct ViceIoctl blob;
924 struct Acl *fa, *ta = 0;
928 int idf = getidf(as, parm_copyacl_id);
931 if (as->parms[2].items)
935 blob.out_size = AFS_PIOCTL_MAXSIZE;
937 blob.in = blob.out = space;
938 code = pioctl(as->parms[0].items->data, VIOCGETAL, &blob, 1);
940 Die(errno, as->parms[0].items->data);
943 fa = ParseAcl(space);
944 CleanAcl(fa, as->parms[0].items->data);
945 for (ti = as->parms[1].items; ti; ti = ti->next) {
946 blob.out_size = AFS_PIOCTL_MAXSIZE;
948 blob.in = blob.out = space;
949 code = pioctl(ti->data, VIOCGETAL, &blob, 1);
951 Die(errno, ti->data);
959 ta = EmptyAcl(space);
961 ta = ParseAcl(space);
962 CleanAcl(ta, ti->data);
963 if (ta->dfs != fa->dfs) {
965 "%s: incompatible file system types: acl not copied to %s; aborted\n",
971 if (!clear && strcmp(ta->cell, fa->cell) != 0) {
973 "%s: default DCE cell differs for file %s: use \"-clear\" switch; acl not merged\n",
978 strcpy(ta->cell, fa->cell);
980 /* NULL rtype for standard handling */
981 for (tp = fa->pluslist; tp; tp = tp->next)
982 ChangeList(ta, 1, tp->name, tp->rights, NULL);
983 for (tp = fa->minuslist; tp; tp = tp->next)
984 ChangeList(ta, 0, tp->name, tp->rights, NULL);
985 blob.in = AclToString(ta);
987 blob.in_size = 1 + strlen(blob.in);
988 code = pioctl(ti->data, VIOCSETAL, &blob, 1);
990 if (errno == EINVAL) {
992 "%s: Invalid argument, possible reasons include:\n",
994 fprintf(stderr, "\t-File not in AFS\n");
996 Die(errno, ti->data);
1007 /* pioctl() call to get the cellname of a pathname */
1009 GetCell(char *fname, char *cellname)
1012 struct ViceIoctl blob;
1015 blob.out_size = MAXCELLCHARS;
1016 blob.out = cellname;
1018 code = pioctl(fname, VIOC_FILE_CELL_NAME, &blob, 1);
1019 return code ? errno : 0;
1022 /* Check if a username is valid: If it contains only digits (or a
1023 * negative sign), then it might be bad. We then query the ptserver
1027 BadName(char *aname, char *fname)
1029 afs_int32 tc, code, id;
1031 char cell[MAXCELLCHARS];
1033 for (nm = aname; (tc = *nm); nm++) {
1034 /* all must be '-' or digit to be bad */
1035 if (tc != '-' && (tc < '0' || tc > '9'))
1039 /* Go to the PRDB and see if this all number username is valid */
1040 code = GetCell(fname, cell);
1044 pr_Initialize(1, AFSDIR_CLIENT_ETC_DIRPATH, cell);
1045 code = pr_SNameToId(aname, &id);
1048 /* 1=>Not-valid; 0=>Valid */
1049 return ((!code && (id == ANONYMOUSID)) ? 1 : 0);
1053 /* clean up an access control list of its bad entries; return 1 if we made
1054 any changes to the list, and 0 otherwise */
1056 CleanAcl(struct Acl *aa, char *fname)
1058 struct AclEntry *te, **le, *ne;
1061 /* Don't correct DFS ACL's for now */
1065 /* prune out bad entries */
1066 changes = 0; /* count deleted entries */
1068 for (te = aa->pluslist; te; te = ne) {
1070 if (BadName(te->name, fname)) {
1080 le = &aa->minuslist;
1081 for (te = aa->minuslist; te; te = ne) {
1083 if (BadName(te->name, fname)) {
1097 /* clean up an acl to not have bogus entries */
1099 CleanACLCmd(struct cmd_syndesc *as, void *arock)
1103 struct ViceIoctl blob;
1105 struct cmd_item *ti;
1106 struct AclEntry *te;
1109 SetDotDefault(&as->parms[0].items);
1110 for (ti = as->parms[0].items; ti; ti = ti->next) {
1111 blob.out_size = AFS_PIOCTL_MAXSIZE;
1114 code = pioctl(ti->data, VIOCGETAL, &blob, 1);
1116 Die(errno, ti->data);
1123 ta = ParseAcl(space);
1126 "%s: cleanacl is not supported for DFS access lists.\n",
1132 changes = CleanAcl(ta, ti->data);
1135 /* now set the acl */
1136 blob.in = AclToString(ta);
1137 blob.in_size = strlen(blob.in) + 1;
1139 code = pioctl(ti->data, VIOCSETAL, &blob, 1);
1141 if (errno == EINVAL) {
1143 "%s: Invalid argument, possible reasons include\n",
1145 fprintf(stderr, "%s: File not in vice or\n", pn);
1147 "%s: Too many users on access control list or\n",
1150 Die(errno, ti->data);
1156 /* now list the updated acl */
1157 printf("Access list for %s is now\n", ti->data);
1158 if (ta->nplus > 0) {
1160 printf("Normal rights:\n");
1161 for (te = ta->pluslist; te; te = te->next) {
1162 printf(" %s ", te->name);
1163 PRights(te->rights, ta->dfs);
1167 if (ta->nminus > 0) {
1168 printf("Negative rights:\n");
1169 for (te = ta->minuslist; te; te = te->next) {
1170 printf(" %s ", te->name);
1171 PRights(te->rights, ta->dfs);
1178 printf("Access list for %s is fine.\n", ti->data);
1186 ListACLCmd(struct cmd_syndesc *as, void *arock)
1190 struct ViceIoctl blob;
1191 struct AclEntry *te;
1192 struct cmd_item *ti;
1193 int idf = getidf(as, parm_listacl_id);
1196 SetDotDefault(&as->parms[0].items);
1197 for (ti = as->parms[0].items; ti; ti = ti->next) {
1198 blob.out_size = AFS_PIOCTL_MAXSIZE;
1200 blob.in = blob.out = space;
1201 code = pioctl(ti->data, VIOCGETAL, &blob, 1);
1203 Die(errno, ti->data);
1207 ta = ParseAcl(space);
1208 if (as->parms[3].items) { /* -cmd */
1209 printf("fs setacl -dir %s -acl ", ti->data);
1210 if (ta->nplus > 0) {
1211 for (te = ta->pluslist; te; te = te->next) {
1212 printf(" %s ", te->name);
1213 PRights(te->rights, ta->dfs);
1217 if (ta->nminus > 0) {
1218 printf("fs setacl -dir %s -acl ", ti->data);
1219 for (te = ta->minuslist; te; te = te->next) {
1220 printf(" %s ", te->name);
1221 PRights(te->rights, ta->dfs);
1223 printf(" -negative\n");
1228 printf("Access list for %s is\n", ti->data);
1231 printf("DFS access list for %s is\n", ti->data);
1234 printf("DFS initial directory access list of %s is\n", ti->data);
1237 printf("DFS initial file access list of %s is\n", ti->data);
1241 printf(" Default cell = %s\n", ta->cell);
1243 if (ta->nplus > 0) {
1245 printf("Normal rights:\n");
1246 for (te = ta->pluslist; te; te = te->next) {
1247 printf(" %s ", te->name);
1248 PRights(te->rights, ta->dfs);
1252 if (ta->nminus > 0) {
1253 printf("Negative rights:\n");
1254 for (te = ta->minuslist; te; te = te->next) {
1255 printf(" %s ", te->name);
1256 PRights(te->rights, ta->dfs);
1269 GetCallerAccess(struct cmd_syndesc *as, void *arock)
1271 struct cmd_item *ti;
1274 SetDotDefault(&as->parms[0].items);
1275 for (ti = as->parms[0].items; ti; ti = ti->next) {
1277 struct ViceIoctl blob;
1278 struct vcxstat2 stat;
1279 blob.out_size = sizeof(struct vcxstat2);
1281 blob.out = (void *)&stat;
1282 code = pioctl(ti->data, VIOC_GETVCXSTATUS2, &blob, 1);
1284 Die(errno, ti->data);
1288 printf("Callers access to %s is ", ti->data);
1289 PRights(stat.callerAccess, 0);
1296 FlushVolumeCmd(struct cmd_syndesc *as, void *arock)
1299 struct ViceIoctl blob;
1300 struct cmd_item *ti;
1303 SetDotDefault(&as->parms[0].items);
1304 for (ti = as->parms[0].items; ti; ti = ti->next) {
1305 blob.in_size = blob.out_size = 0;
1306 code = pioctl(ti->data, VIOC_FLUSHVOLUME, &blob, 0);
1308 fprintf(stderr, "Error flushing volume ");
1318 FlushAllVolumesCmd(struct cmd_syndesc *as, void *arock)
1321 struct ViceIoctl blob;
1325 blob.out_size = AFS_PIOCTL_MAXSIZE;
1328 code = pioctl(NULL, VIOC_FLUSHALL, &blob, 0);
1330 fprintf(stderr, "Error flushing all volumes\n");
1337 * The Windows version of UuidCmd displays the UUID.
1338 * When the UNIX version is updated to do the same
1339 * be sure to replace the CMD_REQUIRED flag with
1340 * CMD_OPTIONAL in the cmd_AddParam(-generate) call
1343 UuidCmd(struct cmd_syndesc *as, void *arock)
1346 struct ViceIoctl blob;
1351 if (as->parms[0].items) {
1353 fprintf (stderr, "Permission denied: requires root access.\n");
1357 /* generate new UUID */
1358 code = pioctl(0, VIOC_NEWUUID, &blob, 1);
1365 printf("New uuid generated.\n");
1367 /* This will never execute */
1368 printf("Please add the '-generate' option to generate a new UUID.\n");
1373 #if defined(AFS_CACHE_BYPASS)
1375 * Set cache-bypass threshold. Files larger than this size will not be cached.
1376 * With a threshold of 0, the cache is always bypassed. With a threshold of -1,
1377 * cache bypass is disabled.
1381 BypassThresholdCmd(struct cmd_syndesc *as, void *arock)
1384 struct ViceIoctl blob;
1385 afs_int32 threshold_i, threshold_o;
1388 /* if new threshold supplied, then set and confirm, else,
1389 * get current threshold and print
1392 if(as->parms[0].items) {
1395 tp = as->parms[0].items->data;
1398 if (!strcmp(tp,"-1")) {
1402 for(ix = 0; ix < len; ++ix) {
1403 if(!isdigit(tp[0])) {
1409 fprintf(stderr, "fs bypassthreshold -size: %s must be an integer between -1 and 2^31\n", tp);
1412 threshold_i = atoi(tp);
1413 if(ix > 9 && threshold_i < 2147483647)
1414 threshold_i = 2147483647;
1416 blob.in = (char *) &threshold_i;
1417 blob.in_size = sizeof(threshold_i);
1423 blob.out = (char *) &threshold_o;
1424 blob.out_size = sizeof(threshold_o);
1425 code = pioctl(0, VIOC_SETBYPASS_THRESH, &blob, 1);
1430 printf("Cache bypass threshold %d", threshold_o);
1431 if(threshold_o == -1)
1432 printf(" (disabled)");
1442 FlushCmd(struct cmd_syndesc *as, void *arock)
1445 struct ViceIoctl blob;
1446 struct cmd_item *ti;
1449 for (ti = as->parms[0].items; ti; ti = ti->next) {
1450 blob.in_size = blob.out_size = 0;
1451 code = pioctl(ti->data, VIOCFLUSH, &blob, 0);
1453 if (errno == EMFILE) {
1454 fprintf(stderr, "%s: Can't flush active file %s\n", pn,
1457 fprintf(stderr, "%s: Error flushing file ", pn);
1467 /* all this command does is repackage its args and call SetVolCmd */
1469 SetQuotaCmd(struct cmd_syndesc *as, void *arock)
1471 struct cmd_syndesc ts;
1473 /* copy useful stuff from our command slot; we may later have to reorder */
1474 memcpy(&ts, as, sizeof(ts)); /* copy whole thing */
1475 return SetVolCmd(&ts, arock);
1479 SetVolCmd(struct cmd_syndesc *as, void *arock)
1482 struct ViceIoctl blob;
1483 struct cmd_item *ti;
1484 struct VolumeStatus *status;
1485 char *offmsg, *input;
1488 SetDotDefault(&as->parms[0].items);
1489 for (ti = as->parms[0].items; ti; ti = ti->next) {
1491 blob.out_size = AFS_PIOCTL_MAXSIZE;
1492 blob.in_size = sizeof(*status) + 3; /* for the three terminating nulls */
1495 status = (VolumeStatus *) space;
1496 status->MinQuota = status->MaxQuota = -1;
1498 if (as->parms[1].items) {
1499 code = util_GetHumanInt32(as->parms[1].items->data, &status->MaxQuota);
1501 fprintf(stderr, "%s: bad integer specified for quota.\n", pn);
1506 if (as->parms[2].items)
1507 offmsg = as->parms[2].items->data;
1508 input = (char *)status + sizeof(*status);
1509 *(input++) = '\0'; /* never set name: this call doesn't change vldb */
1511 if (strlen(offmsg) >= VMSGSIZE) {
1513 "%s: message must be shorter than %d characters\n",
1518 strcpy(input, offmsg);
1519 blob.in_size += strlen(offmsg);
1520 input += strlen(offmsg) + 1;
1523 *(input++) = '\0'; /* Pad for old style volume "motd" */
1524 code = pioctl(ti->data, VIOCSETVOLSTAT, &blob, 1);
1526 Die(errno, ti->data);
1534 * Why is VenusFid declared in the kernel-only section of afs.h,
1535 * if it's the exported interface of the cache manager?
1543 ExamineCmd(struct cmd_syndesc *as, void *arock)
1546 struct ViceIoctl blob;
1547 struct cmd_item *ti;
1548 struct VolumeStatus *status;
1549 char *name, *offmsg;
1552 SetDotDefault(&as->parms[0].items);
1553 for (ti = as->parms[0].items; ti; ti = ti->next) {
1554 struct VenusFid vfid;
1557 blob.out_size = AFS_PIOCTL_MAXSIZE;
1560 code = pioctl(ti->data, VIOCGETVOLSTAT, &blob, 1);
1562 Die(errno, ti->data);
1566 status = (VolumeStatus *) space;
1567 name = (char *)status + sizeof(*status);
1568 offmsg = name + strlen(name) + 1;
1570 blob.out_size = sizeof(struct VenusFid);
1571 blob.out = (char *) &vfid;
1572 if (0 == pioctl(ti->data, VIOCGETFID, &blob, 1)) {
1573 printf("File %s (%u.%u.%u) contained in volume %u\n",
1574 ti->data, vfid.Fid.Volume, vfid.Fid.Vnode, vfid.Fid.Unique,
1578 PrintStatus(status, name, offmsg);
1584 ListQuotaCmd(struct cmd_syndesc *as, void *arock)
1587 struct ViceIoctl blob;
1588 struct cmd_item *ti;
1589 struct VolumeStatus *status;
1594 if (as->parms[1].items)
1597 printf("%-25s%-11s%-11s%-7s%-11s\n", "Volume Name", " Quota",
1598 " Used", " %Used", " Partition");
1599 SetDotDefault(&as->parms[0].items);
1600 for (ti = as->parms[0].items; ti; ti = ti->next) {
1602 blob.out_size = AFS_PIOCTL_MAXSIZE;
1605 code = pioctl(ti->data, VIOCGETVOLSTAT, &blob, 1);
1607 Die(errno, ti->data);
1611 status = (VolumeStatus *) space;
1612 name = (char *)status + sizeof(*status);
1613 QuickPrintStatus(status, name, human);
1619 WhereIsCmd(struct cmd_syndesc *as, void *arock)
1622 struct ViceIoctl blob;
1623 struct cmd_item *ti;
1629 SetDotDefault(&as->parms[0].items);
1630 for (ti = as->parms[0].items; ti; ti = ti->next) {
1632 blob.out_size = AFS_PIOCTL_MAXSIZE;
1635 memset(space, 0, sizeof(space));
1636 code = pioctl(ti->data, VIOCWHEREIS, &blob, 1);
1638 Die(errno, ti->data);
1642 hosts = (afs_int32 *) space;
1643 printf("File %s is on host%s ", ti->data,
1644 (hosts[0] && !hosts[1]) ? "" : "s");
1645 for (j = 0; j < AFS_MAXHOSTS; j++) {
1648 tp = hostutil_GetNameByINet(hosts[j]);
1658 DiskFreeCmd(struct cmd_syndesc *as, void *arock)
1661 struct ViceIoctl blob;
1662 struct cmd_item *ti;
1664 struct VolumeStatus *status;
1668 if (as->parms[1].items)
1671 printf("%-25s%10s%10s%10s%6s\n", "Volume Name",
1672 human ? "total" : "kbytes", "used", "avail", "%used");
1673 SetDotDefault(&as->parms[0].items);
1674 for (ti = as->parms[0].items; ti; ti = ti->next) {
1676 blob.out_size = AFS_PIOCTL_MAXSIZE;
1679 code = pioctl(ti->data, VIOCGETVOLSTAT, &blob, 1);
1681 Die(errno, ti->data);
1685 status = (VolumeStatus *) space;
1686 name = (char *)status + sizeof(*status);
1687 QuickPrintSpace(status, name, human);
1693 QuotaCmd(struct cmd_syndesc *as, void *arock)
1696 struct ViceIoctl blob;
1697 struct cmd_item *ti;
1699 struct VolumeStatus *status;
1702 SetDotDefault(&as->parms[0].items);
1703 for (ti = as->parms[0].items; ti; ti = ti->next) {
1705 blob.out_size = AFS_PIOCTL_MAXSIZE;
1708 code = pioctl(ti->data, VIOCGETVOLSTAT, &blob, 1);
1710 Die(errno, ti->data);
1714 status = (VolumeStatus *) space;
1715 if (status->MaxQuota)
1717 ((((double)status->BlocksInUse) / status->MaxQuota) * 100.0);
1720 printf("%2.0f%% of quota used.\n", quotaPct);
1726 GetLastComponent(const char *data, char **outdir, char **outbase,
1729 char orig_name[MAXPATHLEN]; /*Original name, may be modified */
1730 char true_name[MAXPATHLEN]; /*``True'' dirname (e.g., symlink target) */
1732 struct stat statbuff; /*Buffer for status info */
1733 int link_chars_read; /*Num chars read in readlink() */
1734 char *dirname = NULL;
1735 char *basename = NULL;
1743 snprintf(orig_name, sizeof(orig_name), "%s%s",
1744 (data[0] == '/') ? "" : "./", data);
1746 if (lstat(orig_name, &statbuff) < 0) {
1747 /* if lstat fails, we should still try the pioctl, since it
1748 * may work (for example, lstat will fail, but pioctl will
1749 * work if the volume of offline (returning ENODEV). */
1750 statbuff.st_mode = S_IFDIR; /* lie like pros */
1754 * The lstat succeeded. If the given file is a symlink, substitute
1755 * the file name with the link name.
1757 if ((statbuff.st_mode & S_IFMT) == S_IFLNK) {
1761 /* Read name of resolved file (leave space for NULL!) */
1762 link_chars_read = readlink(orig_name, true_name, MAXPATHLEN-1);
1763 if (link_chars_read <= 0) {
1765 "%s: Can't read target name for '%s' symbolic link!\n",
1770 /* Add a trailing null to what was read, bump the length. */
1771 true_name[link_chars_read++] = 0;
1774 * If the symlink is an absolute pathname, we're fine. Otherwise, we
1775 * have to create a full pathname using the original name and the
1776 * relative symlink name. Find the rightmost slash in the original
1777 * name (we know there is one) and splice in the symlink value.
1779 if (true_name[0] != '/') {
1780 lastSlash = strrchr(orig_name, '/');
1781 strcpy(++lastSlash, true_name);
1782 strcpy(true_name, orig_name);
1785 strcpy(true_name, orig_name);
1788 /* Find rightmost slash, if any. */
1789 lastSlash = strrchr(true_name, '/');
1790 if (lastSlash == true_name) {
1791 dirname = strdup("/");
1792 basename = strdup(lastSlash+1);
1793 } else if (lastSlash != NULL) {
1795 * Found it. Designate everything before it as the parent directory,
1796 * everything after it as the final component.
1799 dirname = strdup(true_name);
1800 basename = strdup(lastSlash+1);
1803 * No slash appears in the given file name. Set parent_dir to the current
1804 * directory, and the last component as the given name.
1806 dirname = strdup(".");
1807 basename = strdup(true_name);
1810 if (strcmp(basename, ".") == 0
1811 || strcmp(basename, "..") == 0) {
1813 "%s: you may not use '.' or '..' as the last component\n", pn);
1814 fprintf(stderr, "%s: of a name in this fs command.\n", pn);
1819 *outbase = basename;
1833 ListMountCmd(struct cmd_syndesc *as, void *arock)
1836 struct ViceIoctl blob;
1837 struct cmd_item *ti;
1838 char *last_component;
1840 int thru_symlink = 0;
1843 for (ti = as->parms[0].items; ti; ti = ti->next) {
1844 if (GetLastComponent(ti->data, &parent_dir,
1845 &last_component, &thru_symlink) != 0) {
1850 blob.in = last_component;
1851 blob.in_size = strlen(last_component) + 1;
1852 blob.out_size = AFS_PIOCTL_MAXSIZE;
1854 memset(space, 0, AFS_PIOCTL_MAXSIZE);
1856 code = pioctl(parent_dir, VIOC_AFS_STAT_MT_PT, &blob, 1);
1857 free(last_component);
1860 printf("'%s' is a %smount point for volume '%s'\n", ti->data,
1861 (thru_symlink ? "symbolic link, leading to a " : ""),
1864 if (errno == EINVAL) {
1865 fprintf(stderr, "'%s' is not a mount point.\n", ti->data);
1867 Die(errno, (ti->data ? ti->data : parent_dir));
1877 MakeMountCmd(struct cmd_syndesc *as, void *arock)
1880 char *cellName, *volName, *tmpName;
1881 struct afsconf_cell info;
1882 struct vldbentry vldbEntry;
1883 struct ViceIoctl blob;
1884 struct afsconf_dir *dir;
1890 if (as->parms[5].items && !as->parms[2].items) {
1891 fprintf(stderr, "%s: must provide cell when creating cellular mount point.\n", pn);
1896 if (as->parms[2].items) /* cell name specified */
1897 cellName = as->parms[2].items->data;
1900 volName = as->parms[1].items->data;
1902 if (strlen(volName) >= 64) {
1904 "%s: volume name too long (length must be < 64 characters)\n",
1909 /* Check for a cellname in the volume specification, and complain
1910 * if it doesn't match what was specified with -cell */
1911 if ((tmpName = strchr(volName, ':'))) {
1914 if (strcasecmp(cellName, volName)) {
1915 fprintf(stderr, "%s: cellnames do not match.\n", pn);
1920 volName = ++tmpName;
1923 if (!InAFS(Parent(as->parms[0].items->data))) {
1925 "%s: mount points must be created within the AFS file system\n",
1932 blob.out_size = AFS_PIOCTL_MAXSIZE;
1934 code = pioctl(Parent(as->parms[0].items->data), VIOC_FILE_CELL_NAME,
1938 "%s: couldn't get cell name for file's parent\n", pn);
1943 dir = afsconf_Open(AFSDIR_CLIENT_ETC_DIRPATH);
1946 "Could not process files in configuration directory (%s).\n",
1947 AFSDIR_CLIENT_ETC_DIRPATH);
1951 code = afsconf_GetCellInfo(dir, cellName ? cellName : space,
1952 AFSCONF_VLDBSERVICE, &info);
1955 "%s: cell %s not in %s\n", pn, cellName ? cellName : space,
1956 AFSDIR_CLIENT_CELLSERVDB_FILEPATH);
1960 if (!(as->parms[4].items)) {
1961 /* not fast, check which cell the mountpoint is being created in */
1962 code = ugen_ClientInitCell(dir, &info,
1963 AFSCONF_SECOPTS_FALLBACK_NULL |
1964 AFSCONF_SECOPTS_NOAUTH,
1965 &uclient, VLDB_MAXSERVERS,
1966 AFSCONF_VLDBSERVICE, 50);
1969 /* make the check. Don't complain if there are problems with init */
1971 ubik_VL_GetEntryByNameO(uclient, 0, volName,
1973 if (code == VL_NOENT) {
1975 "%s: warning, volume %s does not exist in cell %s.\n",
1976 pn, volName, cellName ? cellName : space);
1981 if (as->parms[3].items) /* if -rw specified */
1986 /* cellular mount point, prepend cell prefix */
1987 strcat(space, info.name);
1990 strcat(space, volName); /* append volume name */
1991 strcat(space, "."); /* stupid convention; these end with a period */
1992 code = symlink(space, as->parms[0].items->data);
1994 Die(errno, as->parms[0].items->data);
2001 * Delete AFS mount points. Variables are used as follows:
2002 * tbuffer: Set to point to the null-terminated directory name of the mount point
2003 * (or ``.'' if none is provided)
2004 * tp: Set to point to the actual name of the mount point to nuke.
2007 RemoveMountCmd(struct cmd_syndesc *as, void *arock)
2010 struct ViceIoctl blob;
2011 struct cmd_item *ti;
2013 char lsbuffer[1024];
2017 for (ti = as->parms[0].items; ti; ti = ti->next) {
2019 tp = (char *)strrchr(ti->data, '/');
2021 strncpy(tbuffer, ti->data, code = tp - ti->data); /* the dir name */
2023 tp++; /* skip the slash */
2025 strcpy(tbuffer, ".");
2029 blob.in_size = strlen(tp) + 1;
2030 blob.out = lsbuffer;
2031 blob.out_size = sizeof(lsbuffer);
2032 code = pioctl(tbuffer, VIOC_AFS_STAT_MT_PT, &blob, 1);
2034 if (errno == EINVAL) {
2035 fprintf(stderr, "%s: '%s' is not a mount point.\n", pn,
2038 Die(errno, ti->data);
2041 continue; /* don't bother trying */
2045 blob.in_size = strlen(tp) + 1;
2046 code = pioctl(tbuffer, VIOC_AFS_DELETE_MT_PT, &blob, 1);
2048 Die(errno, ti->data);
2059 CheckServersCmd(struct cmd_syndesc *as, void *arock)
2062 struct ViceIoctl blob;
2066 struct afsconf_cell info;
2067 struct chservinfo checkserv;
2069 memset(&checkserv, 0, sizeof(struct chservinfo));
2070 blob.in_size = sizeof(struct chservinfo);
2071 blob.in = (caddr_t) & checkserv;
2073 blob.out_size = AFS_PIOCTL_MAXSIZE;
2075 memset(space, 0, sizeof(afs_int32)); /* so we assure zero when nothing is copied back */
2077 /* prepare flags for checkservers command */
2078 temp = 2; /* default to checking local cell only */
2079 if (as->parms[2].items)
2080 temp |= 1; /* set fast flag */
2081 if (as->parms[1].items)
2082 temp &= ~2; /* turn off local cell check */
2084 checkserv.magic = 0x12345678; /* XXX */
2085 checkserv.tflags = temp;
2087 /* now copy in optional cell name, if specified */
2088 if (as->parms[0].items) {
2089 code = GetCellName(as->parms[0].items->data, &info);
2093 strcpy(checkserv.tbuffer, info.name);
2094 checkserv.tsize = strlen(info.name) + 1;
2096 strcpy(checkserv.tbuffer, "\0");
2097 checkserv.tsize = 0;
2100 if (as->parms[3].items) {
2101 checkserv.tinterval = atol(as->parms[3].items->data);
2104 if (checkserv.tinterval < 0) {
2106 ("Warning: The negative -interval is ignored; treated as an inquiry\n");
2107 checkserv.tinterval = 0;
2108 } else if (checkserv.tinterval > 600) {
2110 ("Warning: The maximum -interval value is 10 mins (600 secs)\n");
2111 checkserv.tinterval = 600; /* 10 min max interval */
2114 checkserv.tinterval = -1; /* don't change current interval */
2117 code = pioctl(0, VIOCCKSERV, &blob, 1);
2119 if ((errno == EACCES) && (checkserv.tinterval > 0)) {
2120 printf("Must be root to change -interval\n");
2126 memcpy(&temp, space, sizeof(afs_int32));
2127 if (checkserv.tinterval >= 0) {
2128 if (checkserv.tinterval > 0)
2130 ("The new down server probe interval (%d secs) is now in effect (old interval was %d secs)\n",
2131 checkserv.tinterval, temp);
2133 printf("The current down server probe interval is %d secs\n",
2138 printf("All servers are running.\n");
2141 ("These servers unavailable due to network or server problems: ");
2143 memcpy(&temp, space + j * sizeof(afs_int32), sizeof(afs_int32));
2146 tp = hostutil_GetNameByINet(temp);
2156 MessagesCmd(struct cmd_syndesc *as, void *arock)
2159 struct ViceIoctl blob;
2160 struct gaginfo gagflags;
2161 struct cmd_item *show;
2163 memset(&gagflags, 0, sizeof(struct gaginfo));
2164 blob.in_size = sizeof(struct gaginfo);
2165 blob.in = (caddr_t) & gagflags;
2166 blob.out_size = AFS_PIOCTL_MAXSIZE;
2168 memset(space, 0, sizeof(afs_int32)); /* so we assure zero when nothing is copied back */
2170 if ((show = as->parms[0].items)) {
2171 if (!strcasecmp(show->data, "user"))
2172 gagflags.showflags |= GAGUSER;
2173 else if (!strcasecmp(show->data, "console"))
2174 gagflags.showflags |= GAGCONSOLE;
2175 else if (!strcasecmp(show->data, "all"))
2176 gagflags.showflags |= GAGCONSOLE | GAGUSER;
2177 else if (!strcasecmp(show->data, "none"))
2181 "unrecognized flag %s: must be in {user,console,all,none}\n",
2190 code = pioctl(0, VIOC_GAG, &blob, 1);
2200 CheckVolumesCmd(struct cmd_syndesc *as, void *arock)
2203 struct ViceIoctl blob;
2207 code = pioctl(0, VIOCCKBACK, &blob, 1);
2213 printf("All volumeID/name mappings checked.\n");
2218 PreCacheCmd(struct cmd_syndesc *as, void *arock)
2221 struct ViceIoctl blob;
2224 if (!as->parms[0].items && !as->parms[1].items) {
2225 fprintf(stderr, "%s: syntax error in precache cmd.\n", pn);
2228 if (as->parms[0].items) {
2229 code = util_GetInt32(as->parms[0].items->data, &temp);
2231 fprintf(stderr, "%s: bad integer specified for precache size.\n",
2237 blob.in = (char *)&temp;
2238 blob.in_size = sizeof(afs_int32);
2240 code = pioctl(0, VIOCPRECACHE, &blob, 1);
2246 printf("New precache size set.\n");
2251 SetCacheSizeCmd(struct cmd_syndesc *as, void *arock)
2254 struct ViceIoctl blob;
2257 if (!as->parms[0].items && !as->parms[1].items) {
2258 fprintf(stderr, "%s: syntax error in setcachesize cmd.\n", pn);
2261 if (as->parms[0].items) {
2262 code = util_GetHumanInt32(as->parms[0].items->data, &temp);
2264 fprintf(stderr, "%s: bad integer specified for cache size.\n",
2270 blob.in = (char *)&temp;
2271 blob.in_size = sizeof(afs_int32);
2273 code = pioctl(0, VIOCSETCACHESIZE, &blob, 1);
2275 if (errno == EROFS) {
2277 ("'fs setcache' not allowed on memory cache based cache managers.\n");
2284 printf("New cache size set.\n");
2288 #define MAXGCSIZE 16
2290 GetCacheParmsCmd(struct cmd_syndesc *as, void *arock)
2292 afs_int32 code, filesUsed;
2293 struct ViceIoctl blob;
2294 afs_int32 parms[MAXGCSIZE];
2295 double percentFiles, percentBlocks;
2296 afs_int32 flags = 0;
2298 if (as->parms[0].items){ /* -files */
2300 } else if (as->parms[1].items){ /* -excessive */
2306 memset(parms, '\0', sizeof parms); /* avoid Purify UMR error */
2308 blob.in = (char *)&flags;
2309 blob.in_size = sizeof(afs_int32);
2310 } else { /* be backward compatible */
2314 blob.out_size = sizeof(parms);
2315 blob.out = (char *)parms;
2316 code = pioctl(0, VIOCGETCACHEPARMS, &blob, 1);
2323 printf("AFS using %d of the cache's available %d 1K byte blocks.\n",
2324 parms[1], parms[0]);
2325 if (parms[1] > parms[0])
2326 printf("[Cache guideline temporarily deliberately exceeded; it will be adjusted down but you may wish to increase the cache size.]\n");
2330 percentBlocks = ((double)parms[1]/parms[0]) * 100;
2331 printf("AFS using %5.0f%% of cache blocks (%d of %d 1k blocks)\n",
2332 percentBlocks, parms[1], parms[0]);
2337 filesUsed = parms[2] - parms[3];
2338 percentFiles = ((double)filesUsed/parms[2]) * 100;
2339 printf(" %5.0f%% of the cache files (%d of %d files)\n",
2340 percentFiles, filesUsed, parms[2]);
2342 printf(" afs_cacheFiles: %10d\n", parms[2]);
2343 printf(" IFFree: %10d\n", parms[3]);
2344 printf(" IFEverUsed: %10d\n", parms[4]);
2345 printf(" IFDataMod: %10d\n", parms[5]);
2346 printf(" IFDirtyPages: %10d\n", parms[6]);
2347 printf(" IFAnyPages: %10d\n", parms[7]);
2348 printf(" IFDiscarded: %10d\n", parms[8]);
2349 printf(" DCentries: %10d\n", parms[9]);
2350 printf(" 0k- 4K: %10d\n", parms[10]);
2351 printf(" 4k- 16k: %10d\n", parms[11]);
2352 printf(" 16k- 64k: %10d\n", parms[12]);
2353 printf(" 64k- 256k: %10d\n", parms[13]);
2354 printf(" 256k- 1M: %10d\n", parms[14]);
2355 printf(" >=1M: %10d\n", parms[15]);
2358 if (percentBlocks > 90)
2359 printf("[cache size usage over 90%%, consider increasing cache size]\n");
2360 if (percentFiles > 90)
2361 printf("[cache file usage over 90%%, consider increasing '-files' argument to afsd]\n");
2367 ListCellsCmd(struct cmd_syndesc *as, void *arock)
2372 struct ViceIoctl blob;
2375 resolve = !(as->parms[0].items); /* -numeric */
2379 memcpy(tp, &i, sizeof(afs_int32));
2380 blob.out_size = AFS_PIOCTL_MAXSIZE;
2381 blob.in_size = sizeof(afs_int32);
2384 code = pioctl(0, VIOCGETCELL, &blob, 1);
2387 break; /* done with the list */
2392 printf("Cell %s on hosts", tp + AFS_MAXCELLHOSTS * sizeof(afs_int32));
2393 for (j = 0; j < AFS_MAXCELLHOSTS; j++) {
2395 char *name, tbuffer[20];
2397 memcpy(&addr, tp + j * sizeof(afs_int32), sizeof(afs_int32));
2402 name = hostutil_GetNameByINet(addr);
2405 snprintf(tbuffer, sizeof(tbuffer), "%d.%d.%d.%d", (addr >> 24) & 0xff,
2406 (addr >> 16) & 0xff, (addr >> 8) & 0xff, addr & 0xff);
2409 printf(" %s", name);
2417 ListAliasesCmd(struct cmd_syndesc *as, void *arock)
2420 char *tp, *aliasName, *realName;
2421 struct ViceIoctl blob;
2425 memcpy(tp, &i, sizeof(afs_int32));
2426 blob.out_size = AFS_PIOCTL_MAXSIZE;
2427 blob.in_size = sizeof(afs_int32);
2430 code = pioctl(0, VIOC_GETALIAS, &blob, 1);
2433 break; /* done with the list */
2439 tp += strlen(aliasName) + 1;
2441 printf("Alias %s for cell %s\n", aliasName, realName);
2447 CallBackRxConnCmd(struct cmd_syndesc *as, void *arock)
2450 struct ViceIoctl blob;
2451 struct cmd_item *ti;
2453 struct hostent *thp;
2455 ti = as->parms[0].items;
2457 thp = hostutil_GetHostByName(ti->data);
2459 fprintf(stderr, "host %s not found in host table.\n", ti->data);
2462 else memcpy(&hostAddr, thp->h_addr, sizeof(afs_int32));
2464 hostAddr = 0; /* means don't set host */
2467 /* now do operation */
2468 blob.in_size = sizeof(afs_int32);
2469 blob.out_size = sizeof(afs_int32);
2470 blob.in = (char *) &hostAddr;
2471 blob.out = (char *) &hostAddr;
2473 code = pioctl(0, VIOC_CBADDR, &blob, 1);
2482 NukeNFSCredsCmd(struct cmd_syndesc *as, void *arock)
2485 struct ViceIoctl blob;
2486 struct cmd_item *ti;
2488 struct hostent *thp;
2490 ti = as->parms[0].items;
2491 thp = hostutil_GetHostByName(ti->data);
2493 fprintf(stderr, "host %s not found in host table.\n", ti->data);
2496 else memcpy(&hostAddr, thp->h_addr, sizeof(afs_int32));
2498 /* now do operation */
2499 blob.in_size = sizeof(afs_int32);
2500 blob.out_size = sizeof(afs_int32);
2501 blob.in = (char *) &hostAddr;
2502 blob.out = (char *) &hostAddr;
2504 code = pioctl(0, VIOC_NFS_NUKE_CREDS, &blob, 1);
2513 NewCellCmd(struct cmd_syndesc *as, void *arock)
2515 afs_int32 code, linkedstate = 0, size = 0, *lp;
2516 struct ViceIoctl blob;
2517 struct cmd_item *ti;
2518 char *tp, *cellname = 0;
2519 struct hostent *thp;
2520 afs_int32 fsport = 0, vlport = 0;
2521 afs_int32 scount; /* Number of servers to pass in pioctl call */
2524 * With the NEWCELL pioctl call, 3.4 clients take an array of
2525 * AFS_MAXHOSTS (13) servers while 3.5 clients take an array of
2526 * AFS_MAXCELLHOSTS (8) servers. To determine which we are talking to,
2527 * do a GETCELL pioctl and pass it a magic number. If an array of
2528 * 8 comes back, its a 3.5 client. If not, its a 3.4 client.
2529 * If we get back EDOM, there are no cells in the kernel yet,
2530 * and we'll assume a 3.5 client.
2533 lp = (afs_int32 *) tp;
2534 *lp++ = 0; /* first cell entry */
2535 *lp = 0x12345678; /* magic */
2536 blob.out_size = AFS_PIOCTL_MAXSIZE;
2537 blob.in_size = sizeof(afs_int32) + sizeof(afs_int32);
2540 code = pioctl(0, VIOCGETCELL, &blob, 1);
2541 if (code < 0 && errno != EDOM) {
2545 if (code < 1 && errno == EDOM) {
2546 scount = AFS_MAXHOSTS;
2549 cellname = tp + AFS_MAXCELLHOSTS * sizeof(afs_int32);
2550 scount = ((cellname[0] != '\0') ? AFS_MAXCELLHOSTS : AFS_MAXHOSTS);
2553 /* Now setup and do the NEWCELL pioctl call */
2554 memset(space, 0, (scount + 1) * sizeof(afs_int32));
2556 lp = (afs_int32 *) tp;
2558 tp += sizeof(afs_int32);
2559 for (ti = as->parms[1].items; ti; ti = ti->next) {
2560 thp = hostutil_GetHostByName(ti->data);
2563 "%s: Host %s not found in host table, skipping it.\n", pn,
2566 memcpy(tp, thp->h_addr, sizeof(afs_int32));
2567 tp += sizeof(afs_int32);
2570 if (as->parms[2].items) {
2572 * Link the cell, for the purposes of volume location, to the specified
2575 cellname = as->parms[2].items->data;
2578 #ifdef FS_ENABLE_SERVER_DEBUG_PORTS
2579 if (as->parms[3].items) {
2580 code = util_GetInt32(as->parms[3].items->data, &vlport);
2583 "%s: bad integer specified for the fileserver port.\n",
2588 if (as->parms[4].items) {
2589 code = util_GetInt32(as->parms[4].items->data, &fsport);
2592 "%s: bad integer specified for the vldb server port.\n",
2598 tp = (char *)(space + (scount + 1) * sizeof(afs_int32));
2599 lp = (afs_int32 *) tp;
2603 strcpy(space + ((scount + 4) * sizeof(afs_int32)),
2604 as->parms[0].items->data);
2605 size = ((scount + 4) * sizeof(afs_int32))
2606 + strlen(as->parms[0].items->data)
2607 + 1 /* for null */ ;
2608 tp = (char *)(space + size);
2610 strcpy(tp, cellname);
2611 size += strlen(cellname) + 1;
2613 blob.in_size = size;
2616 code = pioctl(0, VIOCNEWCELL, &blob, 1);
2625 NewAliasCmd(struct cmd_syndesc *as, void *arock)
2628 struct ViceIoctl blob;
2630 char *aliasName, *realName;
2632 /* Now setup and do the NEWCELL pioctl call */
2633 aliasName = as->parms[0].items->data;
2634 realName = as->parms[1].items->data;
2636 strcpy(tp, aliasName);
2637 tp += strlen(aliasName) + 1;
2638 strcpy(tp, realName);
2639 tp += strlen(realName) + 1;
2641 blob.in_size = tp - space;
2645 code = pioctl(0, VIOC_NEWALIAS, &blob, 1);
2647 if (errno == EEXIST) {
2649 "%s: cell name `%s' in use by an existing cell.\n", pn,
2660 WhichCellCmd(struct cmd_syndesc *as, void *arock)
2663 struct cmd_item *ti;
2665 char cell[MAXCELLCHARS];
2667 SetDotDefault(&as->parms[0].items);
2668 for (ti = as->parms[0].items; ti; ti = ti->next) {
2669 code = GetCell(ti->data, cell);
2671 if (errno == ENOENT)
2672 fprintf(stderr, "%s: no such cell as '%s'\n", pn, ti->data);
2674 Die(errno, ti->data);
2679 printf("File %s lives in cell '%s'\n", ti->data, cell);
2685 WSCellCmd(struct cmd_syndesc *as, void *arock)
2688 struct ViceIoctl blob;
2692 blob.out_size = AFS_PIOCTL_MAXSIZE;
2695 code = pioctl(NULL, VIOC_GET_WS_CELL, &blob, 1);
2701 printf("This workstation belongs to cell '%s'\n", space);
2706 static PrimaryCellCmd(as)
2707 struct cmd_syndesc *as;
2709 fprintf(stderr, "This command is obsolete, as is the concept of a primary token.\n");
2715 MonitorCmd(struct cmd_syndesc *as, void *arock)
2718 struct ViceIoctl blob;
2719 struct cmd_item *ti;
2721 struct hostent *thp;
2725 ti = as->parms[0].items;
2729 if (!strcmp(ti->data, "off"))
2730 hostAddr = 0xffffffff;
2732 thp = hostutil_GetHostByName(ti->data);
2734 if (!strcmp(ti->data, "localhost")) {
2736 "localhost not in host table, assuming 127.0.0.1\n");
2737 hostAddr = htonl(0x7f000001);
2739 fprintf(stderr, "host %s not found in host table.\n",
2744 memcpy(&hostAddr, thp->h_addr, sizeof(afs_int32));
2747 hostAddr = 0; /* means don't set host */
2748 setp = 0; /* aren't setting host */
2751 /* now do operation */
2752 blob.in_size = sizeof(afs_int32);
2753 blob.out_size = sizeof(afs_int32);
2754 blob.in = (char *)&hostAddr;
2755 blob.out = (char *)&hostAddr;
2756 code = pioctl(0, VIOC_AFS_MARINER_HOST, &blob, 1);
2762 printf("%s: new monitor host set.\n", pn);
2764 /* now decode old address */
2765 if (hostAddr == 0xffffffff) {
2766 printf("Cache monitoring is currently disabled.\n");
2768 tp = hostutil_GetNameByINet(hostAddr);
2769 printf("Using host %s for monitor services.\n", tp);
2776 SysNameCmd(struct cmd_syndesc *as, void *arock)
2779 struct ViceIoctl blob;
2780 struct cmd_item *ti;
2781 char *input = space;
2784 ti = as->parms[0].items;
2787 blob.out_size = AFS_PIOCTL_MAXSIZE;
2788 blob.in_size = sizeof(afs_int32);
2789 input += sizeof(afs_int32);
2790 for (; ti; ti = ti->next) {
2792 blob.in_size += strlen(ti->data) + 1;
2793 if (blob.in_size > AFS_PIOCTL_MAXSIZE) {
2794 fprintf(stderr, "%s: sysname%s too long.\n", pn,
2795 setp > 1 ? "s" : "");
2798 strcpy(input, ti->data);
2799 input += strlen(ti->data);
2802 memcpy(space, &setp, sizeof(afs_int32));
2803 code = pioctl(0, VIOC_AFS_SYSNAME, &blob, 1);
2809 printf("%s: new sysname%s set.\n", pn, setp > 1 ? " list" : "");
2813 memcpy(&setp, input, sizeof(afs_int32));
2814 input += sizeof(afs_int32);
2816 fprintf(stderr, "No sysname name value was found\n");
2819 printf("Current sysname%s is", setp > 1 ? " list" : "");
2820 for (; setp > 0; --setp) {
2821 printf(" \'%s\'", input);
2822 input += strlen(input) + 1;
2828 static char *exported_types[] = { "null", "nfs", "" };
2830 ExportAfsCmd(struct cmd_syndesc *as, void *arock)
2833 struct ViceIoctl blob;
2834 struct cmd_item *ti;
2835 int export = 0, type = 0, mode = 0, exportcall, pwsync =
2836 0, smounts = 0, clipags = 0, pagcb = 0;
2838 ti = as->parms[0].items;
2839 if (strcmp(ti->data, "nfs") == 0)
2840 type = 0x71; /* NFS */
2843 "Invalid exporter type, '%s', Only the 'nfs' exporter is currently supported\n",
2847 ti = as->parms[1].items;
2849 if (strcmp(ti->data, "on") == 0)
2851 else if (strcmp(ti->data, "off") == 0)
2854 fprintf(stderr, "Illegal argument %s\n", ti->data);
2858 if ((ti = as->parms[2].items)) { /* -noconvert */
2859 if (strcmp(ti->data, "on") == 0)
2861 else if (strcmp(ti->data, "off") == 0)
2864 fprintf(stderr, "Illegal argument %s\n", ti->data);
2868 if ((ti = as->parms[3].items)) { /* -uidcheck */
2869 if (strcmp(ti->data, "on") == 0)
2871 else if (strcmp(ti->data, "off") == 0)
2874 fprintf(stderr, "Illegal argument %s\n", ti->data);
2878 if ((ti = as->parms[4].items)) { /* -submounts */
2879 if (strcmp(ti->data, "on") == 0)
2881 else if (strcmp(ti->data, "off") == 0)
2884 fprintf(stderr, "Illegal argument %s\n", ti->data);
2888 if ((ti = as->parms[5].items)) { /* -clipags */
2889 if (strcmp(ti->data, "on") == 0)
2891 else if (strcmp(ti->data, "off") == 0)
2894 fprintf(stderr, "Illegal argument %s\n", ti->data);
2898 if ((ti = as->parms[6].items)) { /* -pagcb */
2899 if (strcmp(ti->data, "on") == 0)
2901 else if (strcmp(ti->data, "off") == 0)
2904 fprintf(stderr, "Illegal argument %s\n", ti->data);
2909 (type << 24) | (pagcb << 10) | (clipags << 8) |
2910 (mode << 6) | (pwsync << 4) | (smounts << 2) | export;
2913 blob.in = (char *)&exportcall;
2914 blob.in_size = sizeof(afs_int32);
2915 blob.out = (char *)&exportcall;
2916 blob.out_size = sizeof(afs_int32);
2917 code = pioctl(0, VIOC_EXPORTAFS, &blob, 1);
2919 if (errno == ENODEV) {
2921 "Sorry, the %s-exporter type is currently not supported on this AFS client\n",
2922 exported_types[type]);
2929 if (exportcall & 1) {
2930 printf("'%s' translator is enabled with the following options:\n",
2931 exported_types[type]);
2932 printf("\tRunning in %s mode\n",
2933 (exportcall & 2 ? "strict unix" :
2934 "convert owner mode bits to world/other"));
2935 printf("\tRunning in %s mode\n",
2936 (exportcall & 4 ? "strict 'passwd sync'" :
2937 "no 'passwd sync'"));
2939 (exportcall & 8 ? "Allow mounts of /afs/.. subdirs" :
2940 "Only mounts to /afs allowed"));
2942 (exportcall & 16 ? "Client-assigned PAG's are used" :
2943 "Client-assigned PAG's are not used"));
2946 "Callbacks are made to get creds from new clients" :
2947 "Callbacks are not made to get creds from new clients"));
2949 printf("'%s' translator is disabled\n", exported_types[type]);
2956 GetCellCmd(struct cmd_syndesc *as, void *arock)
2959 struct ViceIoctl blob;
2960 struct afsconf_cell info;
2961 struct cmd_item *ti;
2968 memset(&args, '\0', sizeof args); /* avoid Purify UMR error */
2969 for (ti = as->parms[0].items; ti; ti = ti->next) {
2971 blob.out_size = sizeof(args);
2972 blob.out = (caddr_t) & args;
2973 code = GetCellName(ti->data, &info);
2978 blob.in_size = 1 + strlen(info.name);
2979 blob.in = info.name;
2980 code = pioctl(0, VIOC_GETCELLSTATUS, &blob, 1);
2982 if (errno == ENOENT)
2983 fprintf(stderr, "%s: the cell named '%s' does not exist\n",
2986 Die(errno, info.name);
2990 printf("Cell %s status: ", info.name);
2996 printf("no setuid allowed");
2998 printf("setuid allowed");
3000 printf(", using old VLDB");
3007 SetCellCmd(struct cmd_syndesc *as, void *arock)
3010 struct ViceIoctl blob;
3011 struct afsconf_cell info;
3012 struct cmd_item *ti;
3020 /* Check arguments. */
3021 if (as->parms[1].items && as->parms[2].items) {
3022 fprintf(stderr, "Cannot specify both -suid and -nosuid.\n");
3026 /* figure stuff to set */
3030 if (!as->parms[1].items)
3031 args.stat |= 2; /* default to -nosuid */
3033 /* set stat for all listed cells */
3034 for (ti = as->parms[0].items; ti; ti = ti->next) {
3036 code = GetCellName(ti->data, &info);
3041 strcpy(args.cname, info.name);
3042 blob.in_size = sizeof(args);
3043 blob.in = (caddr_t) & args;
3045 blob.out = (caddr_t) 0;
3046 code = pioctl(0, VIOC_SETCELLSTATUS, &blob, 1);
3048 Die(errno, info.name); /* XXX added cell name to Die() call */
3056 GetCellName(char *cellName, struct afsconf_cell *info)
3058 struct afsconf_dir *tdir;
3061 tdir = afsconf_Open(AFSDIR_CLIENT_ETC_DIRPATH);
3064 "Could not process files in configuration directory (%s).\n",
3065 AFSDIR_CLIENT_ETC_DIRPATH);
3069 code = afsconf_GetCellInfo(tdir, cellName, AFSCONF_VLDBSERVICE, info);
3071 fprintf(stderr, "%s: cell %s not in %s\n", pn, cellName,
3072 AFSDIR_CLIENT_CELLSERVDB_FILEPATH);
3079 static struct ViceIoctl gblob;
3080 static int debug = 0;
3082 * here follow some routines in support of the setserverprefs and
3083 * getserverprefs commands. They are:
3084 * SetPrefCmd "top-level" routine
3085 * addServer adds a server to the list of servers to be poked into the
3086 * kernel. Will poke the list into the kernel if it threatens
3088 * pokeServers pokes the existing list of servers and ranks into the kernel
3089 * GetPrefCmd reads the Cache Manager's current list of server ranks
3093 * returns -1 if error message printed,
3095 * errno value if error and no error message printed
3102 code = pioctl(0, VIOC_SETSPREFS, &gblob, 1);
3103 if (code && (errno == EINVAL)) {
3104 struct setspref *ssp;
3105 ssp = (struct setspref *)gblob.in;
3106 if (!(ssp->flags & DBservers)) {
3107 gblob.in = (void *)&(ssp->servers[0]);
3108 gblob.in_size -= ((char *)&(ssp->servers[0])) - (char *)ssp;
3109 code = pioctl(0, VIOC_SETSPREFS33, &gblob, 1);
3110 return code ? errno : 0;
3113 "This cache manager does not support VL server preferences.\n");
3117 return code ? errno : 0;
3121 * returns -1 if error message printed,
3123 * errno value if error and no error message printed
3126 addServer(char *name, afs_int32 rank)
3129 struct setspref *ssp;
3131 struct hostent *thostent;
3136 #define MAXUSHORT ((unsigned short) 2*MAXSHORT+1) /* assumes two's complement binary system */
3138 #define MAXUSHORT ((unsigned short) ~0)
3142 thostent = hostutil_GetHostByName(name);
3144 fprintf(stderr, "%s: couldn't resolve name.\n", name);
3148 ssp = (struct setspref *)(gblob.in);
3150 for (t = 0; thostent->h_addr_list[t]; t++) {
3151 if (gblob.in_size > MAXINSIZE - sizeof(struct spref)) {
3152 code = pokeServers();
3155 ssp->num_servers = 0;
3158 sp = (struct spref *)(gblob.in + gblob.in_size);
3159 memcpy(&(sp->server.s_addr), thostent->h_addr_list[t],
3160 sizeof(afs_uint32));
3161 sp->rank = (rank > MAXUSHORT ? MAXUSHORT : rank);
3162 gblob.in_size += sizeof(struct spref);
3166 fprintf(stderr, "adding server %s, rank %d, ip addr 0x%lx\n",
3167 name, sp->rank, (long unsigned int) sp->server.s_addr);
3175 SetPrefCmd(struct cmd_syndesc *as, void *arock)
3179 struct cmd_item *ti;
3182 struct setspref *ssp;
3183 int error = 0; /* -1 means error message printed,
3184 * >0 means errno value for unprinted message */
3186 ssp = (struct setspref *)space;
3188 ssp->num_servers = 0;
3189 gblob.in_size = ((char *)&(ssp->servers[0])) - (char *)ssp;
3192 gblob.out_size = AFS_PIOCTL_MAXSIZE;
3196 fprintf(stderr, "Permission denied: requires root access.\n");
3200 ti = as->parms[2].items; /* -file */
3203 fprintf(stderr, "opening file %s\n", ti->data);
3204 if (!(infd = fopen(ti->data, "r"))) {
3208 while (fscanf(infd, "%79s%d", name, &rank) != EOF) {
3209 code = addServer(name, (unsigned short)rank);
3216 ti = as->parms[3].items; /* -stdin */
3218 while (scanf("%79s%d", name, &rank) != EOF) {
3219 code = addServer(name, (unsigned short)rank);
3225 for (ti = as->parms[0].items; ti; ti = ti->next) { /* list of servers, ranks */
3230 code = addServer(ti->data, (unsigned short)atol(ti->next->data));
3234 printf("set fs prefs %s %s\n", ti->data, ti->next->data);
3238 code = pokeServers();
3242 printf("now working on vlservers, code=%d\n", code);
3244 ssp = (struct setspref *)space;
3245 ssp->flags = DBservers;
3246 ssp->num_servers = 0;
3247 gblob.in_size = ((char *)&(ssp->servers[0])) - (char *)ssp;
3250 for (ti = as->parms[1].items; ti; ti = ti->next) { /* list of dbservers, ranks */
3255 code = addServer(ti->data, (unsigned short)atol(ti->next->data));
3259 printf("set vl prefs %s %s\n", ti->data, ti->next->data);
3264 if (as->parms[1].items) {
3266 printf("now poking vlservers\n");
3267 code = pokeServers();
3275 return error ? 1 : 0;
3281 GetPrefCmd(struct cmd_syndesc *as, void *arock)
3284 struct cmd_item *ti;
3285 char *name, tbuffer[20];
3290 struct ViceIoctl blob;
3291 struct sprefrequest *in;
3292 struct sprefinfo *out;
3295 ti = as->parms[0].items; /* -file */
3298 fprintf(stderr, "opening file %s\n", ti->data);
3299 if (!(outfd = freopen(ti->data, "w", stdout))) {
3305 ti = as->parms[1].items; /* -numeric */
3307 ti = as->parms[2].items; /* -vlservers */
3308 vlservers |= (ti ? DBservers : 0);
3309 /* ti = as->parms[3].items; -cell */
3311 in = (struct sprefrequest *)space;
3315 blob.in_size = sizeof(struct sprefrequest);
3316 blob.in = (char *)in;
3318 blob.out_size = AFS_PIOCTL_MAXSIZE;
3321 (AFS_PIOCTL_MAXSIZE - 2 * sizeof(short)) / sizeof(struct spref);
3322 in->flags = vlservers;
3325 code = pioctl(0, VIOC_GETSPREFS, &blob, 1);
3327 if ((errno != E2BIG) || (2 * blob.out_size > 0x7FFF)) {
3328 perror("getserverprefs pioctl");
3329 if (blob.out != space) {
3335 if (blob.out == space)
3336 blob.out = malloc(blob.out_size);
3338 blob.out = realloc(blob.out, blob.out_size);
3340 } while (code != 0);
3342 out = (struct sprefinfo *)blob.out;
3344 for (i = 0; i < out->num_servers; i++) {
3346 name = hostutil_GetNameByINet(out->servers[i].server.s_addr);
3348 addr = ntohl(out->servers[i].server.s_addr);
3349 snprintf(tbuffer, sizeof(tbuffer), "%d.%d.%d.%d", (addr >> 24) & 0xff,
3350 (addr >> 16) & 0xff, (addr >> 8) & 0xff, addr & 0xff);
3353 printf("%-50s %5u\n", name, out->servers[i].rank);
3356 in->offset = out->next_offset;
3357 if (blob.out != space) {
3360 } while (in->offset > 0);
3366 StoreBehindCmd(struct cmd_syndesc *as, void *arock)
3369 struct ViceIoctl blob;
3370 struct cmd_item *ti;
3371 struct sbstruct tsb, tsb2;
3376 int async_default = -1;
3378 tsb.sb_thisfile = -1;
3379 ti = as->parms[0].items; /* -kbytes */
3381 if (!as->parms[1].items) {
3382 fprintf(stderr, "%s: you must specify -files with -kbytes.\n",
3386 tsb.sb_thisfile = strtol(ti->data, &t, 10) * 1024;
3387 if ((tsb.sb_thisfile < 0) || (t != ti->data + strlen(ti->data))) {
3388 fprintf(stderr, "%s: %s must be 0 or a positive number.\n", pn,
3394 allfiles = tsb.sb_default = -1; /* Don't set allfiles yet */
3395 ti = as->parms[2].items; /* -allfiles */
3397 allfiles = strtol(ti->data, &t, 10) * 1024;
3398 if ((allfiles < 0) || (t != ti->data + strlen(ti->data))) {
3399 fprintf(stderr, "%s: %s must be 0 or a positive number.\n", pn,
3405 /* -verbose or -file only or no options */
3406 if (as->parms[3].items || (as->parms[1].items && !as->parms[0].items)
3407 || (!as->parms[0].items && !as->parms[1].items
3408 && !as->parms[2].items))
3411 blob.in = (char *)&tsb;
3412 blob.in_size = sizeof(struct sbstruct);
3414 /* once per -file */
3415 for (ti = as->parms[1].items; ti; ti = ti->next) {
3416 /* Do this solely to see if the file is there */
3419 blob.out_size = AFS_PIOCTL_MAXSIZE;
3420 code = pioctl(ti->data, VIOCWHEREIS, &blob, 1);
3422 Die(errno, ti->data);
3427 memset(&tsb2, 0, sizeof(tsb2));
3428 blob.out = (char *)&tsb2;
3429 blob.out_size = sizeof(struct sbstruct);
3430 code = pioctl(ti->data, VIOC_STORBEHIND, &blob, 1);
3432 Die(errno, ti->data);
3437 if (blob.out_size == sizeof(tsb2)) {
3438 async_default = tsb2.sb_default;
3441 if (tsb2.sb_thisfile == -1) {
3442 fprintf(stdout, "Will store %s according to default.\n",
3446 "Will store up to %d kbytes of %s asynchronously.\n",
3447 (tsb2.sb_thisfile / 1024), ti->data);
3453 /* If no files - make at least one pioctl call, or
3454 * set the allfiles default if we need to.
3456 if (async_default < 0 || (allfiles != -1)) {
3457 tsb.sb_default = allfiles;
3458 memset(&tsb2, 0, sizeof(tsb2));
3459 blob.out = (char *)&tsb2;
3460 blob.out_size = sizeof(struct sbstruct);
3461 code = pioctl(0, VIOC_STORBEHIND, &blob, 1);
3463 Die(errno, ((allfiles == -1) ? 0 : "-allfiles"));
3466 } else if (blob.out_size == sizeof(tsb2)) {
3467 async_default = tsb2.sb_default;
3471 /* Having no arguments also reports the default store asynchrony */
3472 if (async_default >= 0 && verbose) {
3473 fprintf(stdout, "Default store asynchrony is %d kbytes.\n",
3474 (async_default / 1024));
3482 SetCryptCmd(struct cmd_syndesc *as, void *arock)
3484 afs_int32 code = 0, flag;
3485 struct ViceIoctl blob;
3488 tp = as->parms[0].items->data;
3489 if (strcmp(tp, "on") == 0)
3491 else if (strcmp(tp, "off") == 0)
3494 fprintf(stderr, "%s: %s must be \"on\" or \"off\".\n", pn, tp);
3498 blob.in = (char *)&flag;
3499 blob.in_size = sizeof(flag);
3501 code = pioctl(0, VIOC_SETRXKCRYPT, &blob, 1);
3509 GetCryptCmd(struct cmd_syndesc *as, void *arock)
3511 afs_int32 code = 0, flag;
3512 struct ViceIoctl blob;
3517 blob.out_size = sizeof(flag);
3520 code = pioctl(0, VIOC_GETRXKCRYPT, &blob, 1);
3526 memcpy(&flag, tp, sizeof(afs_int32));
3527 printf("Security level is currently ");
3529 printf("crypt (data security).\n");
3536 static char *modenames[] = {
3539 "readonly", /* Not currently supported */
3540 "fetchonly", /* Not currently supported */
3541 "partial", /* Not currently supported */
3545 static char *policynames[] = {
3548 "closer", /* Not currently supported. */
3549 "manual", /* Not currently supported. */
3554 DisconCmd(struct cmd_syndesc *as, void *arock)
3556 struct cmd_item *ti;
3559 int modelen, policylen;
3560 afs_int32 mode, policy, code, unixuid = 0;
3561 struct ViceIoctl blob;
3566 space[0] = space[1] = space[2] = space[3] = 0;
3568 ti = as->parms[0].items;
3570 modename = ti->data;
3571 modelen = strlen(modename);
3572 for (mode = 0; modenames[mode] != NULL; mode++)
3573 if (!strncasecmp(modename, modenames[mode], modelen))
3575 if (modenames[mode] == NULL)
3576 printf("Unknown discon mode \"%s\"\n", modename);
3578 space[0] = mode + 1;
3581 ti = as->parms[1].items;
3583 policyname = ti->data;
3584 policylen = strlen(policyname);
3585 for (policy = 0; policynames[policy] != NULL; policy++)
3586 if (!strncasecmp(policyname, policynames[policy], policylen))
3588 if (policynames[policy] == NULL)
3589 printf("Unknown discon mode \"%s\"\n", policyname);
3591 space[1] = policy + 1;
3595 if (as->parms[2].items) {
3597 printf("force on\n");
3600 ti = as->parms[3].items;
3602 code = util_GetInt32(ti->data, &unixuid);
3604 fprintf(stderr, "%s: bad integer specified for uid.\n", pn);
3612 blob.in_size = 4 * sizeof(afs_int32);
3614 blob.out_size = sizeof(mode);
3616 code = pioctl(0, VIOC_DISCON, &blob, 1);
3620 memcpy(&mode, space, sizeof mode);
3621 if (mode < sizeof modenames / sizeof (char *))
3622 printf("Discon mode is now \"%s\"\n", modenames[mode]);
3624 printf("Unknown discon mode %d\n", mode);
3630 #include "AFS_component_version_number.c"
3633 main(int argc, char **argv)
3636 struct cmd_syndesc *ts;
3638 #ifdef AFS_AIX32_ENV
3640 * The following signal action for AIX is necessary so that in case of a
3641 * crash (i.e. core is generated) we can include the user's data section
3642 * in the core dump. Unfortunately, by default, only a partial core is
3643 * generated which, in many cases, isn't too useful.
3645 struct sigaction nsa;
3647 sigemptyset(&nsa.sa_mask);
3648 nsa.sa_handler = SIG_DFL;
3649 nsa.sa_flags = SA_FULLDUMP;
3650 sigaction(SIGSEGV, &nsa, NULL);
3653 /* try to find volume location information */
3654 ts = cmd_CreateSyntax("getclientaddrs", GetClientAddrsCmd, NULL, 0,
3655 "get client network interface addresses");
3656 cmd_CreateAlias(ts, "gc");
3658 ts = cmd_CreateSyntax("setclientaddrs", SetClientAddrsCmd, NULL, 0,
3659 "set client network interface addresses");
3660 cmd_AddParm(ts, "-address", CMD_LIST, CMD_OPTIONAL | CMD_EXPANDS,
3661 "client network interfaces");
3662 cmd_CreateAlias(ts, "sc");
3664 ts = cmd_CreateSyntax("setserverprefs", SetPrefCmd, NULL, 0,
3665 "set server ranks");
3666 cmd_AddParm(ts, "-servers", CMD_LIST, CMD_OPTIONAL | CMD_EXPANDS,
3667 "fileserver names and ranks");
3668 cmd_AddParm(ts, "-vlservers", CMD_LIST, CMD_OPTIONAL | CMD_EXPANDS,
3669 "VL server names and ranks");
3670 cmd_AddParm(ts, "-file", CMD_SINGLE, CMD_OPTIONAL,
3671 "input from named file");
3672 cmd_AddParm(ts, "-stdin", CMD_FLAG, CMD_OPTIONAL, "input from stdin");
3673 cmd_CreateAlias(ts, "sp");
3675 ts = cmd_CreateSyntax("getserverprefs", GetPrefCmd, NULL, 0,
3676 "get server ranks");
3677 cmd_AddParm(ts, "-file", CMD_SINGLE, CMD_OPTIONAL,
3678 "output to named file");
3679 cmd_AddParm(ts, "-numeric", CMD_FLAG, CMD_OPTIONAL, "addresses only");
3680 cmd_AddParm(ts, "-vlservers", CMD_FLAG, CMD_OPTIONAL, "VL servers");
3681 /* cmd_AddParm(ts, "-cell", CMD_FLAG, CMD_OPTIONAL, "cellname"); */
3682 cmd_CreateAlias(ts, "gp");
3684 ts = cmd_CreateSyntax("setacl", SetACLCmd, NULL, 0, "set access control list");
3685 cmd_AddParm(ts, "-dir", CMD_LIST, 0, "directory");
3686 cmd_AddParm(ts, "-acl", CMD_LIST, 0, "access list entries");
3687 cmd_AddParm(ts, "-clear", CMD_FLAG, CMD_OPTIONAL, "clear access list");
3688 cmd_AddParm(ts, "-negative", CMD_FLAG, CMD_OPTIONAL,
3689 "apply to negative rights");
3690 parm_setacl_id = ts->nParms;
3691 cmd_AddParm(ts, "-id", CMD_FLAG, CMD_OPTIONAL,
3692 "initial directory acl (DFS only)");
3693 cmd_AddParm(ts, "-if", CMD_FLAG, CMD_OPTIONAL,
3694 "initial file acl (DFS only)");
3695 cmd_CreateAlias(ts, "sa");
3697 ts = cmd_CreateSyntax("listacl", ListACLCmd, NULL, 0,
3698 "list access control list");
3699 cmd_AddParm(ts, "-path", CMD_LIST, CMD_OPTIONAL, "dir/file path");
3700 parm_listacl_id = ts->nParms;
3701 cmd_AddParm(ts, "-id", CMD_FLAG, CMD_OPTIONAL, "initial directory acl");
3702 cmd_AddParm(ts, "-if", CMD_FLAG, CMD_OPTIONAL, "initial file acl");
3703 cmd_AddParm(ts, "-cmd", CMD_FLAG, CMD_OPTIONAL, "output as 'fs setacl' command");
3704 cmd_CreateAlias(ts, "la");
3706 ts = cmd_CreateSyntax("getcalleraccess", GetCallerAccess, NULL, 0,
3707 "list callers access");
3708 cmd_AddParm(ts, "-path", CMD_LIST, CMD_OPTIONAL, "dir/file path");
3709 cmd_CreateAlias(ts, "gca");
3711 ts = cmd_CreateSyntax("cleanacl", CleanACLCmd, NULL, 0,
3712 "clean up access control list");
3713 cmd_AddParm(ts, "-path", CMD_LIST, CMD_OPTIONAL, "dir/file path");
3715 ts = cmd_CreateSyntax("copyacl", CopyACLCmd, NULL, 0,
3716 "copy access control list");
3717 cmd_AddParm(ts, "-fromdir", CMD_SINGLE, 0,
3718 "source directory (or DFS file)");
3719 cmd_AddParm(ts, "-todir", CMD_LIST, 0,
3720 "destination directory (or DFS file)");
3721 cmd_AddParm(ts, "-clear", CMD_FLAG, CMD_OPTIONAL,
3722 "first clear dest access list");
3723 parm_copyacl_id = ts->nParms;
3724 cmd_AddParm(ts, "-id", CMD_FLAG, CMD_OPTIONAL, "initial directory acl");
3725 cmd_AddParm(ts, "-if", CMD_FLAG, CMD_OPTIONAL, "initial file acl");
3727 cmd_CreateAlias(ts, "ca");
3729 ts = cmd_CreateSyntax("flush", FlushCmd, NULL, 0, "flush file from cache");
3730 cmd_AddParm(ts, "-path", CMD_LIST, CMD_OPTIONAL, "dir/file path");
3731 ts = cmd_CreateSyntax("flushmount", FlushMountCmd, NULL, 0,
3732 "flush mount symlink from cache");
3733 cmd_AddParm(ts, "-path", CMD_LIST, CMD_OPTIONAL, "dir/file path");
3735 ts = cmd_CreateSyntax("setvol", SetVolCmd, NULL, 0, "set volume status");
3736 cmd_AddParm(ts, "-path", CMD_LIST, CMD_OPTIONAL, "dir/file path");
3737 cmd_AddParm(ts, "-max", CMD_SINGLE, CMD_OPTIONAL,
3738 "disk space quota in 1K units");
3740 cmd_AddParm(ts, "-min", CMD_SINGLE, CMD_OPTIONAL,
3741 "disk space guaranteed");
3742 cmd_AddParm(ts, "-motd", CMD_SINGLE, CMD_OPTIONAL, "message of the day");
3744 cmd_AddParm(ts, "-offlinemsg", CMD_SINGLE, CMD_OPTIONAL,
3746 cmd_CreateAlias(ts, "sv");