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 <afs/param.h>
12 #include <afs/com_err.h>
23 #include <rx/rx_globals.h>
27 #include <afs/cellconfig.h>
28 #include <afs/ptserver.h>
29 #include <afs/ptuser.h>
30 #include <afs/volser.h>
31 #include <WINNT\afsreg.h>
41 #define MAXCELLHOSTS 8
44 #define MAXINSIZE 1300 /* pioctl complains if data is larger than this */
45 #define VMSGSIZE 128 /* size of msg buf in volume hdr */
46 #define CELL_MAXNAMELEN 256
47 #define MAXHOSTCHARS 64
49 static char space[MAXSIZE];
50 static char tspace[1024];
52 static struct ubik_client *uclient;
54 static int GetClientAddrsCmd(struct cmd_syndesc *asp, void *arock);
55 static int SetClientAddrsCmd(struct cmd_syndesc *asp, void *arock);
56 static int FlushMountCmd(struct cmd_syndesc *asp, void *arock);
57 static int RxStatProcCmd(struct cmd_syndesc *asp, void *arock);
58 static int RxStatPeerCmd(struct cmd_syndesc *asp, void *arock);
60 extern struct cmd_syndesc *cmd_CreateSyntax();
62 static int MemDumpCmd(struct cmd_syndesc *asp, void *arock);
63 static int CSCPolicyCmd(struct cmd_syndesc *asp, void *arock);
64 static int MiniDumpCmd(struct cmd_syndesc *asp, void *arock);
66 static char pn[] = "fs";
67 static int rxInitDone = 0;
70 * Character to use between name and rights in printed representation for
73 #define DFS_SEPARATOR ' '
75 typedef char sec_rgy_name_t[1025]; /* A DCE definition */
78 int dfs; /* Originally true if a dfs acl; now also the type
79 * of the acl (1, 2, or 3, corresponding to object,
80 * initial dir, or initial object). */
81 sec_rgy_name_t cell; /* DFS cell name */
84 struct AclEntry *pluslist;
85 struct AclEntry *minuslist;
89 struct AclEntry *next;
95 ZapAcl (struct Acl *acl)
100 ZapList(acl->pluslist);
101 ZapList(acl->minuslist);
106 * Mods for the AFS/DFS protocol translator.
108 * DFS rights. It's ugly to put these definitions here, but they
109 * *cannot* change, because they're part of the wire protocol.
110 * In any event, the protocol translator will guarantee these
111 * assignments for AFS cache managers.
113 #define DFS_READ 0x01
114 #define DFS_WRITE 0x02
115 #define DFS_EXECUTE 0x04
116 #define DFS_CONTROL 0x08
117 #define DFS_INSERT 0x10
118 #define DFS_DELETE 0x20
120 /* the application definable ones (backwards from AFS) */
121 #define DFS_USR0 0x80000000 /* "A" bit */
122 #define DFS_USR1 0x40000000 /* "B" bit */
123 #define DFS_USR2 0x20000000 /* "C" bit */
124 #define DFS_USR3 0x10000000 /* "D" bit */
125 #define DFS_USR4 0x08000000 /* "E" bit */
126 #define DFS_USR5 0x04000000 /* "F" bit */
127 #define DFS_USR6 0x02000000 /* "G" bit */
128 #define DFS_USR7 0x01000000 /* "H" bit */
129 #define DFS_USRALL (DFS_USR0 | DFS_USR1 | DFS_USR2 | DFS_USR3 |\
130 DFS_USR4 | DFS_USR5 | DFS_USR6 | DFS_USR7)
133 * Offset of -id switch in command structure for various commands.
134 * The -if switch is the next switch always.
136 static int parm_setacl_id, parm_copyacl_id, parm_listacl_id;
139 * Determine whether either the -id or -if switches are present, and
140 * return 0, 1 or 2, as appropriate. Abort if both switches are present.
142 /* int id; Offset of -id switch; -if is next switch */
144 getidf(struct cmd_syndesc *as, int id)
148 if (as->parms[id].items) {
151 if (as->parms[id + 1].items) {
156 "%s: you may specify either -id or -if, but not both switches\n",
164 PRights(afs_int32 arights, int dfs)
167 if (arights & PRSFS_READ)
169 if (arights & PRSFS_LOOKUP)
171 if (arights & PRSFS_INSERT)
173 if (arights & PRSFS_DELETE)
175 if (arights & PRSFS_WRITE)
177 if (arights & PRSFS_LOCK)
179 if (arights & PRSFS_ADMINISTER)
181 if (arights & PRSFS_USR0)
183 if (arights & PRSFS_USR1)
185 if (arights & PRSFS_USR2)
187 if (arights & PRSFS_USR3)
189 if (arights & PRSFS_USR4)
191 if (arights & PRSFS_USR5)
193 if (arights & PRSFS_USR6)
195 if (arights & PRSFS_USR7)
198 if (arights & DFS_READ)
202 if (arights & DFS_WRITE)
206 if (arights & DFS_EXECUTE)
210 if (arights & DFS_CONTROL)
214 if (arights & DFS_INSERT)
218 if (arights & DFS_DELETE)
222 if (arights & (DFS_USRALL))
224 if (arights & DFS_USR0)
226 if (arights & DFS_USR1)
228 if (arights & DFS_USR2)
230 if (arights & DFS_USR3)
232 if (arights & DFS_USR4)
234 if (arights & DFS_USR5)
236 if (arights & DFS_USR6)
238 if (arights & DFS_USR7)
244 /* this function returns TRUE (1) if the file is in AFS, otherwise false (0) */
248 struct ViceIoctl blob;
249 cm_ioctlQueryOptions_t options;
253 memset(&options, 0, sizeof(options));
254 options.size = sizeof(options);
255 options.field_flags |= CM_IOCTL_QOPTS_FIELD_LITERAL;
257 blob.in_size = options.size; /* no variable length data */
259 blob.out_size = sizeof(cm_fid_t);
260 blob.out = (char *) &fid;
262 code = pioctl_utf8(apath, VIOCGETFID, &blob, 1);
264 if ((errno == EINVAL) || (errno == ENOENT))
271 IsFreelanceRoot(char *apath)
273 struct ViceIoctl blob;
277 blob.out_size = MAXSIZE;
280 code = pioctl_utf8(apath, VIOC_FILE_CELL_NAME, &blob, 1);
282 return !cm_stricmp_utf8N("Freelance.Local.Root",space);
283 return 1; /* assume it is because it is more restrictive that way */
286 /* return a static pointer to a buffer */
291 strcpy(tspace, apath);
292 tp = strrchr(tspace, '\\');
294 *(tp+1) = 0; /* lv trailing slash so Parent("k:\foo") is "k:\" not "k:" */
297 fs_ExtractDriveLetter(apath, tspace);
303 enum rtype {add, destroy, deny};
306 Convert(char *arights, int dfs, enum rtype *rtypep)
312 *rtypep = add; /* add rights, by default */
315 if (!strcmp(arights, "null")) {
319 if (!strcmp(arights,"read"))
320 return DFS_READ | DFS_EXECUTE;
321 if (!strcmp(arights, "write"))
322 return DFS_READ | DFS_EXECUTE | DFS_INSERT | DFS_DELETE |
324 if (!strcmp(arights, "all"))
325 return DFS_READ | DFS_EXECUTE | DFS_INSERT | DFS_DELETE |
326 DFS_WRITE | DFS_CONTROL;
328 if (!strcmp(arights,"read"))
329 return PRSFS_READ | PRSFS_LOOKUP;
330 if (!strcmp(arights, "write"))
331 return PRSFS_READ | PRSFS_LOOKUP | PRSFS_INSERT | PRSFS_DELETE |
332 PRSFS_WRITE | PRSFS_LOCK;
333 if (!strcmp(arights, "mail"))
334 return PRSFS_INSERT | PRSFS_LOCK | PRSFS_LOOKUP;
335 if (!strcmp(arights, "all"))
336 return PRSFS_READ | PRSFS_LOOKUP | PRSFS_INSERT | PRSFS_DELETE |
337 PRSFS_WRITE | PRSFS_LOCK | PRSFS_ADMINISTER;
339 if (!strcmp(arights, "none")) {
340 *rtypep = destroy; /* Remove entire entry */
343 len = (int)strlen(arights);
379 fprintf(stderr, "%s: illegal DFS rights character '%c'.\n",
387 mode |= PRSFS_LOOKUP;
389 mode |= PRSFS_INSERT;
391 mode |= PRSFS_DELETE;
397 mode |= PRSFS_ADMINISTER;
415 fprintf(stderr, "%s: illegal rights character '%c'.\n", pn,
424 static struct AclEntry *
425 FindList (struct AclEntry *alist, char *aname)
428 if (!strcasecmp(alist->name, aname))
435 /* if no parm specified in a particular slot, set parm to be "." instead */
437 SetDotDefault(struct cmd_item **aitemp)
441 return; /* already has value */
442 /* otherwise, allocate an item representing "." */
443 ti = (struct cmd_item *) malloc(sizeof(struct cmd_item));
445 ti->next = (struct cmd_item *) 0;
446 ti->data = (char *) malloc(2);
448 strcpy(ti->data, ".");
453 ChangeList (struct Acl *al, afs_int32 plus, char *aname, afs_int32 arights)
455 struct AclEntry *tlist;
456 tlist = (plus ? al->pluslist : al->minuslist);
457 tlist = FindList (tlist, aname);
459 /* Found the item already in the list. */
460 tlist->rights = arights;
462 al->nplus -= PruneList(&al->pluslist, al->dfs);
464 al->nminus -= PruneList(&al->minuslist, al->dfs);
467 /* Otherwise we make a new item and plug in the new data. */
468 tlist = (struct AclEntry *) malloc(sizeof (struct AclEntry));
470 strcpy(tlist->name, aname);
471 tlist->rights = arights;
473 tlist->next = al->pluslist;
474 al->pluslist = tlist;
476 if (arights == 0 || arights == -1)
477 al->nplus -= PruneList(&al->pluslist, al->dfs);
479 tlist->next = al->minuslist;
480 al->minuslist = tlist;
483 al->nminus -= PruneList(&al->minuslist, al->dfs);
488 ZapList (struct AclEntry *alist)
490 struct AclEntry *tp, *np;
491 for (tp = alist; tp; tp = np) {
498 PruneList (struct AclEntry **ae, int dfs)
500 struct AclEntry **lp;
501 struct AclEntry *te, *ne;
505 for(te = *ae;te;te=ne) {
506 if ((!dfs && te->rights == 0) || te->rights == -1) {
520 SkipLine (char *astr)
529 * Create an empty acl, taking into account whether the acl pointed
530 * to by astr is an AFS or DFS acl. Only parse this minimally, so we
531 * can recover from problems caused by bogus ACL's (in that case, always
532 * assume that the acl is AFS: for DFS, the user can always resort to
533 * acl_edit, but for AFS there may be no other way out).
541 tp = (struct Acl *)malloc(sizeof (struct Acl));
543 tp->nplus = tp->nminus = 0;
544 tp->pluslist = tp->minuslist = 0;
546 if (astr == NULL || sscanf(astr, "%d dfs:%d %s", &junk, &tp->dfs, tp->cell) <= 0) {
554 ParseAcl (char *astr)
556 int nplus, nminus, i, trights, ret;
558 struct AclEntry *first, *next, *last, *tl;
562 if (astr == NULL || strlen(astr) == 0)
565 ret = sscanf(astr, "%d dfs:%d %s", &ta->nplus, &ta->dfs, ta->cell);
570 astr = SkipLine(astr);
571 ret = sscanf(astr, "%d", &ta->nminus);
576 astr = SkipLine(astr);
583 for(i=0;i<nplus;i++) {
584 ret = sscanf(astr, "%100s %d", tname, &trights);
587 astr = SkipLine(astr);
588 tl = (struct AclEntry *) malloc(sizeof (struct AclEntry));
593 strcpy(tl->name, tname);
594 tl->rights = trights;
600 ta->pluslist = first;
604 for(i=0;i<nminus;i++) {
605 ret = sscanf(astr, "%100s %d", tname, &trights);
608 astr = SkipLine(astr);
609 tl = (struct AclEntry *) malloc(sizeof (struct AclEntry));
614 strcpy(tl->name, tname);
615 tl->rights = trights;
621 ta->minuslist = first;
626 for (;first; first = next) {
630 first = ta->pluslist;
633 for (;first; first = next) {
642 PrintStatus(VolumeStatus *status, char *name, char *motd, char *offmsg)
644 printf("Volume status for vid = %u named %s is\n",status->Vid, name);
646 printf("Current offline message is %s\n",offmsg);
648 printf("Current message of the day is %s\n",motd);
649 printf("Current disk quota is ");
650 if (status->MaxQuota != 0)
651 printf("%d\n", status->MaxQuota);
653 printf("unlimited\n");
654 printf("Current blocks used are %d\n",status->BlocksInUse);
655 printf("The partition has %d blocks available out of %d\n",
656 status->PartBlocksAvail, status->PartMaxBlocks);
661 QuickPrintStatus(VolumeStatus *status, char *name)
663 double QuotaUsed =0.0;
664 double PartUsed =0.0;
666 printf("%-25.25s",name);
668 if (status->MaxQuota != 0) {
669 printf("%10d%10d", status->MaxQuota, status->BlocksInUse);
670 QuotaUsed = ((((double)status->BlocksInUse)/status->MaxQuota) * 100.0);
672 printf("no limit%10d", status->BlocksInUse);
674 if (QuotaUsed > 90.0){
675 printf(" %5.0f%%<<", QuotaUsed);
678 printf(" %5.0f%% ", QuotaUsed);
679 PartUsed = (100.0 - ((((double)status->PartBlocksAvail)/status->PartMaxBlocks) * 100.0));
680 if (PartUsed > 97.0){
681 printf(" %9.0f%%<<", PartUsed);
684 printf(" %9.0f%% ", PartUsed);
686 printf(" <<WARNING\n");
693 QuickPrintSpace(VolumeStatus *status, char *name)
695 double PartUsed =0.0;
697 printf("%-25.25s",name);
699 printf("%10d%10d%10d", status->PartMaxBlocks, status->PartMaxBlocks - status->PartBlocksAvail, status->PartBlocksAvail);
701 PartUsed = (100.0 - ((((double)status->PartBlocksAvail)/status->PartMaxBlocks) * 100.0));
702 if (PartUsed > 90.0){
703 printf(" %4.0f%%<<", PartUsed);
706 printf(" %4.0f%% ", PartUsed);
708 printf(" <<WARNING\n");
715 AclToString(struct Acl *acl)
717 static char mydata[MAXSIZE];
718 char tstring[MAXSIZE];
723 sprintf(dfsstring, " dfs:%d %s", acl->dfs, acl->cell);
726 sprintf(mydata, "%d%s\n%d\n", acl->nplus, dfsstring, acl->nminus);
727 for (tp = acl->pluslist;tp;tp=tp->next) {
728 sprintf(tstring, "%s %d\n", tp->name, tp->rights);
729 strcat(mydata, tstring);
731 for (tp = acl->minuslist;tp;tp=tp->next) {
732 sprintf(tstring, "%s %d\n", tp->name, tp->rights);
733 strcat(mydata, tstring);
738 static DWORD IsFreelance(void)
745 code = RegOpenKeyEx(HKEY_LOCAL_MACHINE, AFSREG_CLT_SVC_PARAM_SUBKEY,
746 0, (IsWow64()?KEY_WOW64_64KEY:0)|KEY_QUERY_VALUE, &parmKey);
747 if (code == ERROR_SUCCESS) {
748 dummyLen = sizeof(cm_freelanceEnabled);
749 code = RegQueryValueEx(parmKey, "FreelanceClient", NULL, NULL,
750 (BYTE *) &enabled, &dummyLen);
751 RegCloseKey (parmKey);
756 static const char * NetbiosName(void)
758 static char buffer[1024] = "AFS";
764 code = RegOpenKeyEx(HKEY_LOCAL_MACHINE, AFSREG_CLT_SVC_PARAM_SUBKEY,
765 0, (IsWow64()?KEY_WOW64_64KEY:0)|KEY_QUERY_VALUE, &parmKey);
766 if (code == ERROR_SUCCESS) {
767 dummyLen = sizeof(buffer);
768 code = RegQueryValueEx(parmKey, "NetbiosName", NULL, NULL,
770 RegCloseKey (parmKey);
772 strcpy(buffer, "AFS");
777 #define AFSCLIENT_ADMIN_GROUPNAME "AFS Client Admins"
779 static BOOL IsAdmin (void)
781 static BOOL fAdmin = FALSE;
782 static BOOL fTested = FALSE;
786 /* Obtain the SID for the AFS client admin group. If the group does
787 * not exist, then assume we have AFS client admin privileges.
789 PSID psidAdmin = NULL;
790 DWORD dwSize, dwSize2;
791 char pszAdminGroup[ MAX_COMPUTERNAME_LENGTH + sizeof(AFSCLIENT_ADMIN_GROUPNAME) + 2 ];
792 char *pszRefDomain = NULL;
793 SID_NAME_USE snu = SidTypeGroup;
795 dwSize = sizeof(pszAdminGroup);
797 if (!GetComputerName(pszAdminGroup, &dwSize)) {
798 /* Can't get computer name. We return false in this case.
799 Retain fAdmin and fTested. This shouldn't happen.*/
806 strcat(pszAdminGroup,"\\");
807 strcat(pszAdminGroup, AFSCLIENT_ADMIN_GROUPNAME);
809 LookupAccountName(NULL, pszAdminGroup, NULL, &dwSize, NULL, &dwSize2, &snu);
810 /* that should always fail. */
812 if (GetLastError() != ERROR_INSUFFICIENT_BUFFER) {
813 /* if we can't find the group, then we allow the operation */
818 if (dwSize == 0 || dwSize2 == 0) {
824 psidAdmin = (PSID)malloc(dwSize); memset(psidAdmin,0,dwSize);
826 pszRefDomain = (char *)malloc(dwSize2);
827 assert(pszRefDomain);
829 if (!LookupAccountName(NULL, pszAdminGroup, psidAdmin, &dwSize, pszRefDomain, &dwSize2, &snu)) {
830 /* We can't lookup the group now even though we looked it up earlier.
831 Could this happen? */
834 /* Then open our current ProcessToken */
837 if (OpenProcessToken (GetCurrentProcess(), TOKEN_QUERY, &hToken))
840 if (!CheckTokenMembership(hToken, psidAdmin, &fAdmin)) {
841 /* We'll have to allocate a chunk of memory to store the list of
842 * groups to which this user belongs; find out how much memory
846 PTOKEN_GROUPS pGroups;
848 GetTokenInformation (hToken, TokenGroups, NULL, dwSize, &dwSize);
850 pGroups = (PTOKEN_GROUPS)malloc(dwSize);
853 /* Allocate that buffer, and read in the list of groups. */
854 if (GetTokenInformation (hToken, TokenGroups, pGroups, dwSize, &dwSize))
856 /* Look through the list of group SIDs and see if any of them
857 * matches the AFS Client Admin group SID.
860 for (; (!fAdmin) && (iGroup < pGroups->GroupCount); ++iGroup)
862 if (EqualSid (psidAdmin, pGroups->Groups[ iGroup ].Sid)) {
872 /* if do not have permission because we were not explicitly listed
873 * in the Admin Client Group let's see if we are the SYSTEM account
876 PTOKEN_USER pTokenUser;
877 SID_IDENTIFIER_AUTHORITY SIDAuth = SECURITY_NT_AUTHORITY;
878 PSID pSidLocalSystem = 0;
881 GetTokenInformation(hToken, TokenUser, NULL, 0, &dwSize);
883 pTokenUser = (PTOKEN_USER)malloc(dwSize);
886 if (!GetTokenInformation(hToken, TokenUser, pTokenUser, dwSize, &dwSize))
887 gle = GetLastError();
889 if (AllocateAndInitializeSid( &SIDAuth, 1,
890 SECURITY_LOCAL_SYSTEM_RID,
894 if (EqualSid(pTokenUser->User.Sid, pSidLocalSystem)) {
898 FreeSid(pSidLocalSystem);
917 SetACLCmd(struct cmd_syndesc *as, void *arock)
920 struct ViceIoctl blob;
922 struct cmd_item *ti, *ui;
926 int idf = getidf(as, parm_setacl_id);
930 if (as->parms[2].items)
934 plusp = !(as->parms[3].items);
935 for(ti=as->parms[0].items; ti;ti=ti->next) {
936 blob.out_size = MAXSIZE;
938 blob.in = blob.out = space;
939 code = pioctl_utf8(ti->data, VIOCGETAL, &blob, 1);
941 Die(errno, ti->data);
947 ta = ParseAcl(space);
950 "fs: %s: invalid acl data returned from VIOCGETAL\n",
955 if (!plusp && ta->dfs) {
957 "fs: %s: you may not use the -negative switch with DFS acl's.\n%s",
959 "(you may specify \"null\" to revoke all rights, however)\n");
966 ta = EmptyAcl(space);
968 ta = ParseAcl(space);
971 "fs: %s: invalid acl data returned from VIOCGETAL\n",
976 CleanAcl(ta, ti->data);
977 for(ui=as->parms[1].items; ui; ui=ui->next->next) {
981 "%s: Missing second half of user/access pair.\n", pn);
985 rights = Convert(ui->next->data, ta->dfs, &rtype);
986 if (rtype == destroy && !ta->dfs) {
987 struct AclEntry *tlist;
989 tlist = (plusp ? ta->pluslist : ta->minuslist);
990 if (!FindList(tlist, ui->data))
993 if (rtype == deny && !ta->dfs)
995 if (rtype == destroy && ta->dfs)
997 ChangeList(ta, plusp, ui->data, rights);
999 blob.in = AclToString(ta);
1001 blob.in_size = 1+(long)strlen(blob.in);
1002 code = pioctl_utf8(ti->data, VIOCSETAL, &blob, 1);
1004 if (errno == EINVAL) {
1006 static char *fsenv = 0;
1008 fsenv = (char *)getenv("FS_EXPERT");
1010 fprintf(stderr, "fs: \"Invalid argument\" was returned when you tried to store a DFS access list.\n");
1013 "%s%s%s%s%s%s%s%s%s%s%s%s%s%s%s%s%s%s%s%s%s%s%s%s",
1014 "\nPossible reasons for this include:\n\n",
1015 " -You may have specified an inappropriate combination of rights.\n",
1016 " For example, some DFS-supported filesystems may not allow you to\n",
1017 " drop the \"c\" right from \"user_obj\".\n\n",
1018 " -A mask_obj may be required (it is likely required by the underlying\n",
1019 " filesystem if you try to set anything other than the basic \"user_obj\"\n",
1020 " \"mask_obj\", or \"group_obj\" entries). Unlike acl_edit, the fs command\n",
1021 " does not automatically create or update the mask_obj. Try setting\n",
1022 " the rights \"mask_obj all\" with \"fs sa\" before adding any explicit\n",
1023 " users or groups. You can do this with a single command, such as\n",
1024 " \"fs sa mask_obj all user:somename read\"\n\n",
1025 " -A specified user or group may not exist.\n\n",
1026 " -You may have tried to delete \"user_obj\", \"group_obj\", or \"other_obj\".\n",
1027 " This is probably not allowed by the underlying file system.\n\n",
1028 " -If you add a user or group to a DFS ACL, remember that it must be\n",
1029 " fully specified as \"user:username\" or \"group:groupname\". In addition, there\n",
1030 " may be local requirements on the format of the user or group name.\n",
1031 " Check with your cell administrator.\n\n",
1032 " -Or numerous other possibilities. It would be great if we could be more\n",
1033 " precise about the actual problem, but for various reasons, this is\n",
1034 " impractical via this interface. If you can't figure it out, you\n",
1035 " might try logging into a DCE-equipped machine and use acl_edit (or\n",
1036 " whatever is provided). You may get better results. Good luck!\n\n",
1037 " (You may inhibit this message by setting \"FS_EXPERT\" in your environment)\n");
1041 "%s: Invalid argument, possible reasons include:\n",
1043 fprintf(stderr,"\t-File not in AFS\n");
1045 "\t-Too many users on access control list\n");
1047 "\t-Tried to add non-existent user to access control list\n");
1050 Die(errno, ti->data);
1061 CopyACLCmd(struct cmd_syndesc *as, void *arock)
1064 struct ViceIoctl blob;
1065 struct Acl *fa, *ta = 0;
1066 struct AclEntry *tp;
1067 struct cmd_item *ti;
1069 int idf = getidf(as, parm_copyacl_id);
1072 if (as->parms[2].items)
1076 blob.out_size = MAXSIZE;
1078 blob.in = blob.out = space;
1079 code = pioctl_utf8(as->parms[0].items->data, VIOCGETAL, &blob, 1);
1081 Die(errno, as->parms[0].items->data);
1084 fa = ParseAcl(space);
1087 "fs: %s: invalid acl data returned from VIOCGETAL\n",
1088 as->parms[0].items->data);
1091 CleanAcl(fa, as->parms[0].items->data);
1092 for (ti=as->parms[1].items; ti;ti=ti->next) {
1093 blob.out_size = MAXSIZE;
1095 blob.in = blob.out = space;
1096 code = pioctl_utf8(ti->data, VIOCGETAL, &blob, 1);
1098 Die(errno, ti->data);
1105 ta = EmptyAcl(space);
1107 ta = ParseAcl(space);
1110 "fs: %s: invalid acl data returned from VIOCGETAL\n",
1115 CleanAcl(ta, ti->data);
1116 if (ta->dfs != fa->dfs) {
1118 "%s: incompatible file system types: acl not copied to %s; aborted\n",
1124 if (! clear && strcmp(ta->cell, fa->cell) != 0) {
1126 "%s: default DCE cell differs for file %s: use \"-clear\" switch; acl not merged\n",
1131 strcpy(ta->cell, fa->cell);
1133 for (tp = fa->pluslist;tp;tp=tp->next)
1134 ChangeList(ta, 1, tp->name, tp->rights);
1135 for (tp = fa->minuslist;tp;tp=tp->next)
1136 ChangeList(ta, 0, tp->name, tp->rights);
1137 blob.in = AclToString(ta);
1139 blob.in_size = 1+(long)strlen(blob.in);
1140 code = pioctl_utf8(ti->data, VIOCSETAL, &blob, 1);
1142 if (errno == EINVAL) {
1144 "%s: Invalid argument, possible reasons include:\n", pn);
1145 fprintf(stderr,"\t-File not in AFS\n");
1147 Die(errno, ti->data);
1158 /* pioctl_utf8() call to get the cellname of a pathname */
1160 GetCell(char *fname, char *cellname)
1163 struct ViceIoctl blob;
1166 blob.out_size = CELL_MAXNAMELEN;
1167 blob.out = cellname;
1169 code = pioctl_utf8(fname, VIOC_FILE_CELL_NAME, &blob, 1);
1173 /* Check if a username is valid: If it contains only digits (or a
1174 * negative sign), then it might be bad. We then query the ptserver
1178 BadName(char *aname, char *fname)
1180 afs_int32 tc, code, id;
1182 char cell[CELL_MAXNAMELEN];
1185 for ( nm = aname; tc = *nm; nm++) {
1186 /* all must be '-' or digit to be bad */
1187 if (tc != '-' && (tc < '0' || tc > '9'))
1191 /* Go to the PRDB and see if this all number username is valid */
1192 code = GetCell(fname, cell);
1196 cm_GetConfigDir(confDir, sizeof(confDir));
1198 pr_Initialize(1, confDir, cell);
1199 code = pr_SNameToId(aname, &id);
1202 /* 1=>Not-valid; 0=>Valid */
1203 return ((!code && (id == ANONYMOUSID)) ? 1 : 0);
1207 /* clean up an access control list of its bad entries; return 1 if we made
1208 any changes to the list, and 0 otherwise */
1210 CleanAcl(struct Acl *aa, char *fname)
1212 struct AclEntry *te, **le, *ne;
1215 /* Don't correct DFS ACL's for now */
1219 /* prune out bad entries */
1220 changes = 0; /* count deleted entries */
1222 for(te = aa->pluslist; te; te=ne) {
1224 if (BadName(te->name, fname)) {
1234 le = &aa->minuslist;
1235 for(te = aa->minuslist; te; te=ne) {
1237 if (BadName(te->name, fname)) {
1251 /* clean up an acl to not have bogus entries */
1253 CleanACLCmd(struct cmd_syndesc *as, void *arock)
1257 struct ViceIoctl blob;
1259 struct cmd_item *ti;
1260 struct AclEntry *te;
1263 SetDotDefault(&as->parms[0].items);
1264 for(ti=as->parms[0].items; ti; ti=ti->next) {
1265 blob.out_size = MAXSIZE;
1268 code = pioctl_utf8(ti->data, VIOCGETAL, &blob, 1);
1270 Die(errno, ti->data);
1276 ta = ParseAcl(space);
1279 "fs: %s: invalid acl data returned from VIOCGETAL\n",
1286 "%s: cleanacl is not supported for DFS access lists.\n",
1292 changes = CleanAcl(ta, ti->data);
1295 /* now set the acl */
1296 blob.in=AclToString(ta);
1297 blob.in_size = (long)strlen(blob.in)+1;
1299 code = pioctl_utf8(ti->data, VIOCSETAL, &blob, 1);
1301 if (errno == EINVAL) {
1303 "%s: Invalid argument, possible reasons include\n",
1305 fprintf(stderr,"%s: File not in vice or\n", pn);
1307 "%s: Too many users on access control list or\n",
1310 Die(errno, ti->data);
1316 /* now list the updated acl */
1317 printf("Access list for %s is now\n", ti->data);
1318 if (ta->nplus > 0) {
1320 printf("Normal rights:\n");
1321 for(te = ta->pluslist;te;te=te->next) {
1322 printf(" %s ", te->name);
1323 PRights(te->rights, ta->dfs);
1327 if (ta->nminus > 0) {
1328 printf("Negative rights:\n");
1329 for(te = ta->minuslist;te;te=te->next) {
1330 printf(" %s ", te->name);
1331 PRights(te->rights, ta->dfs);
1338 printf("Access list for %s is fine.\n", ti->data);
1346 ListACLCmd(struct cmd_syndesc *as, void *arock)
1350 struct ViceIoctl blob;
1351 struct AclEntry *te;
1352 struct cmd_item *ti;
1353 int idf = getidf(as, parm_listacl_id);
1356 SetDotDefault(&as->parms[0].items);
1357 for(ti=as->parms[0].items; ti; ti=ti->next) {
1359 blob.out_size = MAXSIZE;
1361 blob.in = blob.out = space;
1362 code = pioctl_utf8(ti->data, VIOCGETAL, &blob, 1);
1364 Die(errno, ti->data);
1368 ta = ParseAcl(space);
1371 "fs: %s: invalid acl data returned from VIOCGETAL\n",
1378 printf("Access list for %s is\n", ti->data);
1381 printf("DFS access list for %s is\n", ti->data);
1384 printf("DFS initial directory access list of %s is\n", ti->data);
1387 printf("DFS initial file access list of %s is\n", ti->data);
1391 printf(" Default cell = %s\n", ta->cell);
1393 separator = ta->dfs? DFS_SEPARATOR : ' ';
1394 if (ta->nplus > 0) {
1396 printf("Normal rights:\n");
1397 for(te = ta->pluslist;te;te=te->next) {
1398 printf(" %s%c", te->name, separator);
1399 PRights(te->rights, ta->dfs);
1403 if (ta->nminus > 0) {
1404 printf("Negative rights:\n");
1405 for(te = ta->minuslist;te;te=te->next) {
1406 printf(" %s ", te->name);
1407 PRights(te->rights, ta->dfs);
1419 FlushAllCmd(struct cmd_syndesc *as, void *arock)
1422 struct ViceIoctl blob;
1424 blob.in_size = blob.out_size = 0;
1425 code = pioctl_utf8(NULL, VIOC_FLUSHALL, &blob, 0);
1427 fprintf(stderr, "Error flushing all ");
1434 FlushVolumeCmd(struct cmd_syndesc *as, void *arock)
1437 struct ViceIoctl blob;
1438 struct cmd_item *ti;
1441 SetDotDefault(&as->parms[0].items);
1442 for(ti=as->parms[0].items; ti; ti=ti->next) {
1443 blob.in_size = blob.out_size = 0;
1444 code = pioctl_utf8(ti->data, VIOC_FLUSHVOLUME, &blob, 0);
1446 fprintf(stderr, "Error flushing volume ");
1456 FlushCmd(struct cmd_syndesc *as, void *arock)
1459 struct ViceIoctl blob;
1460 struct cmd_item *ti;
1463 cm_ioctlQueryOptions_t options;
1465 if (as->parms[1].items)
1468 for(ti=as->parms[0].items; ti; ti=ti->next) {
1470 memset(&options, 0, sizeof(options));
1471 options.size = sizeof(options);
1472 options.field_flags |= CM_IOCTL_QOPTS_FIELD_LITERAL;
1473 options.literal = literal;
1474 blob.in_size = options.size; /* no variable length data */
1478 code = pioctl_utf8(ti->data, VIOCFLUSH, &blob, 0);
1480 if (errno == EMFILE) {
1481 fprintf(stderr, "%s: Can't flush active file %s\n", pn,
1484 fprintf(stderr, "%s: Error flushing file ", pn);
1494 /* all this command does is repackage its args and call SetVolCmd */
1496 SetQuotaCmd(struct cmd_syndesc *as, void *arock) {
1497 struct cmd_syndesc ts;
1499 /* copy useful stuff from our command slot; we may later have to reorder */
1500 memcpy(&ts, as, sizeof(ts)); /* copy whole thing */
1501 return SetVolCmd(&ts, arock);
1505 SetVolCmd(struct cmd_syndesc *as, void *arock) {
1507 struct ViceIoctl blob;
1508 struct cmd_item *ti;
1509 struct VolumeStatus *status;
1510 char *motd, *offmsg, *input;
1513 SetDotDefault(&as->parms[0].items);
1514 for(ti=as->parms[0].items; ti; ti=ti->next) {
1516 blob.out_size = MAXSIZE;
1517 blob.in_size = sizeof(*status) + 3; /* for the three terminating nulls */
1520 status = (VolumeStatus *)space;
1521 status->MinQuota = status->MaxQuota = -1;
1522 motd = offmsg = NULL;
1523 if (as->parms[1].items) {
1524 code = util_GetInt32(as->parms[1].items->data, &status->MaxQuota);
1526 fprintf(stderr,"%s: bad integer specified for quota.\n", pn);
1531 if (as->parms[2].items)
1532 motd = as->parms[2].items->data;
1533 if (as->parms[3].items)
1534 offmsg = as->parms[3].items->data;
1535 input = (char *)status + sizeof(*status);
1536 *(input++) = '\0'; /* never set name: this call doesn't change vldb */
1538 if (strlen(offmsg) >= VMSGSIZE) {
1539 fprintf(stderr,"%s: message must be shorter than %d characters\n",
1544 strcpy(input,offmsg);
1545 blob.in_size += (long)strlen(offmsg);
1546 input += strlen(offmsg) + 1;
1550 if (strlen(motd) >= VMSGSIZE) {
1551 fprintf(stderr,"%s: message must be shorter than %d characters\n",
1556 blob.in_size += (long)strlen(motd);
1557 input += strlen(motd) + 1;
1560 code = pioctl_utf8(ti->data,VIOCSETVOLSTAT, &blob, 1);
1562 Die(errno, ti->data);
1569 /* values match cache manager File Types */
1571 filetypestr(afs_uint32 type)
1573 char * s = "Object";
1596 ExamineCmd(struct cmd_syndesc *as, void *arock)
1599 struct ViceIoctl blob;
1600 struct cmd_item *ti;
1601 struct VolumeStatus *status;
1602 char *name, *offmsg, *motd;
1605 cm_ioctlQueryOptions_t options;
1607 if (as->parms[1].items)
1610 SetDotDefault(&as->parms[0].items);
1611 for(ti=as->parms[0].items; ti; ti=ti->next) {
1613 afs_uint32 filetype;
1614 afs_uint32 owner[2];
1615 char cell[CELL_MAXNAMELEN];
1618 memset(&fid, 0, sizeof(fid));
1619 memset(&options, 0, sizeof(options));
1621 options.size = sizeof(options);
1622 options.field_flags |= CM_IOCTL_QOPTS_FIELD_LITERAL;
1623 options.literal = literal;
1624 blob.in_size = options.size; /* no variable length data */
1627 blob.out_size = sizeof(cm_fid_t);
1628 blob.out = (char *) &fid;
1629 if (0 == pioctl_utf8(ti->data, VIOCGETFID, &blob, 1)) {
1630 options.field_flags |= CM_IOCTL_QOPTS_FIELD_FID;
1633 Die(errno, ti->data);
1638 blob.out_size = sizeof(filetype);
1639 blob.out = &filetype;
1641 code = pioctl_utf8(ti->data, VIOC_GETFILETYPE, &blob, 1);
1643 blob.out_size = CELL_MAXNAMELEN;
1646 code = pioctl_utf8(ti->data, VIOC_FILE_CELL_NAME, &blob, 1);
1647 printf("%s %s (%u.%u.%u) contained in cell %s\n",
1648 filetypestr(filetype),
1649 ti->data, fid.volume, fid.vnode, fid.unique,
1650 code ? "unknown-cell" : cell);
1652 blob.out_size = 2 * sizeof(afs_uint32);
1653 blob.out = (char *) &owner;
1654 if (0 == pioctl_utf8(ti->data, VIOCGETOWNER, &blob, 1)) {
1655 char oname[PR_MAXNAMELEN] = "(unknown)";
1658 /* Go to the PRDB and see if this all number username is valid */
1659 cm_GetConfigDir(confDir, sizeof(confDir));
1661 pr_Initialize(1, confDir, cell);
1662 pr_SIdToName(owner[0], oname);
1663 printf("Owner %s (%u) Group %u\n", oname, owner[0], owner[1]);
1667 blob.out_size = MAXSIZE;
1668 code = pioctl_utf8(ti->data, VIOCGETVOLSTAT, &blob, 1);
1670 status = (VolumeStatus *)space;
1671 name = (char *)status + sizeof(*status);
1672 offmsg = name + strlen(name) + 1;
1673 motd = offmsg + strlen(offmsg) + 1;
1675 PrintStatus(status, name, motd, offmsg);
1677 Die(errno, ti->data);
1681 code = pioctl_utf8(ti->data, VIOC_PATH_AVAILABILITY, &blob, 1);
1684 printf("Volume is online\n");
1687 printf("Volume is offline\n");
1690 printf("All Volume servers are down\n");
1693 printf("All volume servers are busy\n");
1696 printf("Unknown volume state\n");
1697 Die(errno, ti->data);
1705 ListQuotaCmd(struct cmd_syndesc *as, void *arock)
1708 struct ViceIoctl blob;
1709 struct cmd_item *ti;
1710 struct VolumeStatus *status;
1715 printf("%-25s%-10s%-10s%-7s%-13s\n",
1716 "Volume Name", " Quota", " Used", " %Used", " Partition");
1717 SetDotDefault(&as->parms[0].items);
1718 for(ti=as->parms[0].items; ti; ti=ti->next) {
1720 blob.out_size = MAXSIZE;
1723 code = pioctl_utf8(ti->data, VIOCGETVOLSTAT, &blob, 1);
1725 Die(errno, ti->data);
1729 status = (VolumeStatus *)space;
1730 name = (char *)status + sizeof(*status);
1731 QuickPrintStatus(status, name);
1737 WhereIsCmd(struct cmd_syndesc *as, void *arock)
1740 struct ViceIoctl blob;
1741 struct cmd_item *ti;
1747 cm_ioctlQueryOptions_t options;
1749 if (as->parms[1].items)
1752 SetDotDefault(&as->parms[0].items);
1753 for(ti=as->parms[0].items; ti; ti=ti->next) {
1755 afs_uint32 filetype;
1758 memset(&fid, 0, sizeof(fid));
1759 memset(&options, 0, sizeof(options));
1761 options.size = sizeof(options);
1762 options.field_flags |= CM_IOCTL_QOPTS_FIELD_LITERAL;
1763 options.literal = literal;
1764 blob.in_size = options.size; /* no variable length data */
1767 blob.out_size = sizeof(cm_fid_t);
1768 blob.out = (char *) &fid;
1769 if (0 == pioctl_utf8(ti->data, VIOCGETFID, &blob, 1)) {
1770 options.field_flags |= CM_IOCTL_QOPTS_FIELD_FID;
1773 Die(errno, ti->data);
1778 blob.out_size = sizeof(filetype);
1779 blob.out = &filetype;
1781 code = pioctl_utf8(ti->data, VIOC_GETFILETYPE, &blob, 1);
1783 blob.out_size = MAXSIZE;
1785 memset(space, 0, sizeof(space));
1786 code = pioctl_utf8(ti->data, VIOCWHEREIS, &blob, 1);
1788 Die(errno, ti->data);
1792 hosts = (afs_int32 *) space;
1793 printf("%s %s is on host%s ",
1794 filetypestr(filetype),
1796 (hosts[0] && !hosts[1]) ? "": "s");
1797 for(j=0; j<MAXHOSTS; j++) {
1800 tp = hostutil_GetNameByINet(hosts[j]);
1810 DiskFreeCmd(struct cmd_syndesc *as, void *arock)
1813 struct ViceIoctl blob;
1814 struct cmd_item *ti;
1816 struct VolumeStatus *status;
1819 printf("%-25s%-10s%-10s%-10s%-6s\n", "Volume Name", " kbytes",
1820 " used", " avail", " %used");
1821 SetDotDefault(&as->parms[0].items);
1822 for(ti=as->parms[0].items; ti; ti=ti->next) {
1824 blob.out_size = MAXSIZE;
1827 code = pioctl_utf8(ti->data, VIOCGETVOLSTAT, &blob, 1);
1829 Die(errno, ti->data);
1833 status = (VolumeStatus *)space;
1834 name = (char *)status + sizeof(*status);
1835 QuickPrintSpace(status, name);
1841 QuotaCmd(struct cmd_syndesc *as, void *arock)
1844 struct ViceIoctl blob;
1845 struct cmd_item *ti;
1847 struct VolumeStatus *status;
1850 SetDotDefault(&as->parms[0].items);
1851 for(ti=as->parms[0].items; ti; ti=ti->next) {
1853 blob.out_size = MAXSIZE;
1856 code = pioctl_utf8(ti->data, VIOCGETVOLSTAT, &blob, 1);
1858 Die(errno, ti->data);
1862 status = (VolumeStatus *)space;
1863 if (status->MaxQuota)
1864 quotaPct = ((((double)status->BlocksInUse)/status->MaxQuota) * 100.0);
1867 printf("%2.0f%% of quota used.\n", quotaPct);
1873 ListMountCmd(struct cmd_syndesc *as, void *arock)
1876 struct ViceIoctl blob;
1877 struct cmd_item *ti;
1878 char orig_name[1024]; /*Original name, may be modified*/
1879 char true_name[1024]; /*``True'' dirname (e.g., symlink target)*/
1880 char parent_dir[1024]; /*Parent directory of true name*/
1881 char *last_component; /*Last component of true name*/
1883 struct stat statbuff; /*Buffer for status info*/
1884 #endif /* not WIN32 */
1886 int link_chars_read; /*Num chars read in readlink()*/
1887 #endif /* not WIN32 */
1888 int thru_symlink; /*Did we get to a mount point via a symlink?*/
1891 for(ti=as->parms[0].items; ti; ti=ti->next) {
1895 strcpy(orig_name, ti->data);
1896 #else /* not WIN32 */
1897 sprintf(orig_name, "%s%s",
1898 (ti->data[0] == '/') ? "" : "./",
1900 #endif /* not WIN32 */
1903 if (lstat(orig_name, &statbuff) < 0) {
1904 /* if lstat fails, we should still try the pioctl, since it
1905 * may work (for example, lstat will fail, but pioctl will
1906 * work if the volume of offline (returning ENODEV). */
1907 statbuff.st_mode = S_IFDIR; /* lie like pros */
1911 * The lstat succeeded. If the given file is a symlink, substitute
1912 * the file name with the link name.
1914 if ((statbuff.st_mode & S_IFMT) == S_IFLNK) {
1917 * Read name of resolved file.
1919 link_chars_read = readlink(orig_name, true_name, 1024);
1920 if (link_chars_read <= 0) {
1922 "%s: Can't read target name for '%s' symbolic link!\n",
1929 * Add a trailing null to what was read, bump the length.
1931 true_name[link_chars_read++] = 0;
1934 * If the symlink is an absolute pathname, we're fine. Otherwise, we
1935 * have to create a full pathname using the original name and the
1936 * relative symlink name. Find the rightmost slash in the original
1937 * name (we know there is one) and splice in the symlink value.
1939 if (true_name[0] != '\\') {
1940 last_component = (char *) strrchr(orig_name, '\\');
1941 strcpy(++last_component, true_name);
1942 strcpy(true_name, orig_name);
1945 strcpy(true_name, orig_name);
1947 strcpy(true_name, orig_name);
1951 * Find rightmost slash, if any.
1954 last_component = (char *) strrchr(true_name, '\\');
1955 if (!last_component)
1957 last_component = (char *) strrchr(true_name, '/');
1958 if (last_component) {
1960 * Found it. Designate everything before it as the parent directory,
1961 * everything after it as the final component.
1963 strncpy(parent_dir, true_name, last_component - true_name + 1);
1964 parent_dir[last_component - true_name + 1] = 0;
1965 last_component++; /*Skip the slash*/
1967 if (!InAFS(parent_dir)) {
1968 const char * nbname = NetbiosName();
1969 int len = (int)strlen(nbname);
1971 if (parent_dir[0] == '\\' && parent_dir[1] == '\\' &&
1972 parent_dir[len+2] == '\\' &&
1973 parent_dir[len+3] == '\0' &&
1974 !strnicmp(nbname,&parent_dir[2],len))
1976 sprintf(parent_dir,"\\\\%s\\all\\", nbname);
1982 * No slash appears in the given file name. Set parent_dir to the current
1983 * directory, and the last component as the given name.
1985 fs_ExtractDriveLetter(true_name, parent_dir);
1986 strcat(parent_dir, ".");
1987 last_component = true_name;
1988 fs_StripDriveLetter(true_name, true_name, sizeof(true_name));
1991 if (strcmp(last_component, ".") == 0 || strcmp(last_component, "..") == 0) {
1992 fprintf(stderr,"%s: you may not use '.' or '..' as the last component\n",pn);
1993 fprintf(stderr,"%s: of a name in the 'fs lsmount' command.\n",pn);
1998 blob.in = last_component;
1999 blob.in_size = (long)strlen(last_component)+1;
2000 blob.out_size = MAXSIZE;
2002 memset(space, 0, MAXSIZE);
2004 code = pioctl_utf8(parent_dir, VIOC_AFS_STAT_MT_PT, &blob, 1);
2007 printf("'%s' is a %smount point for volume '%s'\n",
2009 (thru_symlink ? "symbolic link, leading to a " : ""),
2013 if (errno == EINVAL) {
2014 fprintf(stderr,"'%s' is not a mount point.\n", ti->data);
2016 Die(errno, (ti->data ? ti->data : parent_dir));
2025 MakeMountCmd(struct cmd_syndesc *as, void *arock)
2028 char *cellName, *volName, *tmpName;
2030 char localCellName[128];
2032 char path[1024] = "";
2033 struct afsconf_cell info;
2034 struct vldbentry vldbEntry;
2035 struct ViceIoctl blob;
2038 memset(&info, 0, sizeof(info));
2040 if (as->parms[2].items) /* cell name specified */
2041 cellName = as->parms[2].items->data;
2044 volName = as->parms[1].items->data;
2046 if (strlen(volName) >= 64) {
2047 fprintf(stderr,"%s: volume name too long (length must be < 64 characters)\n", pn);
2051 /* Check for a cellname in the volume specification, and complain
2052 * if it doesn't match what was specified with -cell */
2053 if (tmpName = strchr(volName, ':')) {
2056 if (strcasecmp(cellName,volName)) {
2057 fprintf(stderr,"fs: cellnames do not match.\n");
2062 volName = ++tmpName;
2065 parent = Parent(as->parms[0].items->data);
2066 if (!InAFS(parent)) {
2068 const char * nbname = NetbiosName();
2069 int len = (int)strlen(nbname);
2071 if (parent[0] == '\\' && parent[1] == '\\' &&
2072 parent[len+2] == '\\' &&
2073 parent[len+3] == '\0' &&
2074 !strnicmp(nbname,&parent[2],len))
2076 sprintf(path,"%sall\\%s", parent, &as->parms[0].items->data[strlen(parent)]);
2077 parent = Parent(path);
2078 if (!InAFS(parent)) {
2079 fprintf(stderr,"%s: mount points must be created within the AFS file system\n", pn);
2085 fprintf(stderr,"%s: mount points must be created within the AFS file system\n", pn);
2090 if ( strlen(path) == 0 )
2091 strcpy(path, as->parms[0].items->data);
2093 if ( IsFreelanceRoot(parent) ) {
2095 fprintf(stderr,"%s: Only AFS Client Administrators may alter the root.afs volume\n", pn);
2101 blob.out_size = sizeof(localCellName);
2102 blob.out = localCellName;
2103 code = pioctl_utf8(parent, VIOC_GET_WS_CELL, &blob, 1);
2105 cellName = localCellName;
2109 code = GetCell(parent,space);
2115 code = GetCellName(cellName?cellName:space, &info);
2119 if (!(as->parms[4].items)) {
2120 /* not fast, check which cell the mountpoint is being created in */
2122 /* not fast, check name with VLDB */
2124 code = VLDBInit(1, &info);
2126 /* make the check. Don't complain if there are problems with init */
2127 code = ubik_VL_GetEntryByNameO(uclient, 0, volName, &vldbEntry);
2128 if (code == VL_NOENT) {
2129 fprintf(stderr,"%s: warning, volume %s does not exist in cell %s.\n",
2130 pn, volName, cellName ? cellName : space);
2135 if (as->parms[3].items) /* if -rw specified */
2140 /* cellular mount point, prepend cell prefix */
2141 strcat(space, info.name);
2144 strcat(space, volName); /* append volume name */
2145 strcat(space, "."); /* stupid convention; these end with a period */
2147 /* create symlink with a special pioctl for Windows NT, since it doesn't
2148 * have a symlink system call.
2151 blob.in_size = 1 + (long)strlen(space);
2154 code = pioctl_utf8(path, VIOC_AFS_CREATE_MT_PT, &blob, 0);
2155 #else /* not WIN32 */
2156 code = symlink(space, path);
2157 #endif /* not WIN32 */
2159 if (info.linkedCell)
2160 free(info.linkedCell);
2170 * Delete AFS mount points. Variables are used as follows:
2171 * tbuffer: Set to point to the null-terminated directory name of the mount point
2172 * (or ``.'' if none is provided)
2173 * tp: Set to point to the actual name of the mount point to nuke.
2176 RemoveMountCmd(struct cmd_syndesc *as, void *arock) {
2178 struct ViceIoctl blob;
2179 struct cmd_item *ti;
2181 char lsbuffer[1024];
2185 for(ti=as->parms[0].items; ti; ti=ti->next) {
2187 tp = (char *) strrchr(ti->data, '\\');
2189 tp = (char *) strrchr(ti->data, '/');
2191 strncpy(tbuffer, ti->data, code=(afs_int32)(tp-ti->data+1)); /* the dir name */
2193 tp++; /* skip the slash */
2196 if (!InAFS(tbuffer)) {
2197 const char * nbname = NetbiosName();
2198 int len = (int)strlen(nbname);
2200 if (tbuffer[0] == '\\' && tbuffer[1] == '\\' &&
2201 tbuffer[len+2] == '\\' &&
2202 tbuffer[len+3] == '\0' &&
2203 !strnicmp(nbname,&tbuffer[2],len))
2205 sprintf(tbuffer,"\\\\%s\\all\\", nbname);
2210 fs_ExtractDriveLetter(ti->data, tbuffer);
2211 strcat(tbuffer, ".");
2213 fs_StripDriveLetter(tp, tp, 0);
2216 blob.in_size = (long)strlen(tp)+1;
2217 blob.out = lsbuffer;
2218 blob.out_size = sizeof(lsbuffer);
2219 code = pioctl_utf8(tbuffer, VIOC_AFS_STAT_MT_PT, &blob, 0);
2221 if (errno == EINVAL) {
2222 fprintf(stderr,"%s: '%s' is not a mount point.\n", pn, ti->data);
2224 Die(errno, ti->data);
2227 continue; /* don't bother trying */
2230 if ( IsFreelanceRoot(tbuffer) && !IsAdmin() ) {
2231 fprintf(stderr,"%s: Only AFS Client Administrators may alter the root.afs volume\n", pn);
2233 continue; /* skip */
2238 blob.in_size = (long)strlen(tp)+1;
2239 code = pioctl_utf8(tbuffer, VIOC_AFS_DELETE_MT_PT, &blob, 0);
2241 Die(errno, ti->data);
2252 CheckServersCmd(struct cmd_syndesc *as, void *arock)
2255 struct ViceIoctl blob;
2259 struct afsconf_cell info;
2260 struct chservinfo checkserv;
2262 memset(&info, 0, sizeof(info));
2263 memset(&checkserv, 0, sizeof(struct chservinfo));
2264 blob.in_size=sizeof(struct chservinfo);
2265 blob.in=(caddr_t)&checkserv;
2267 blob.out_size = MAXSIZE;
2269 memset(space, 0, sizeof(afs_int32)); /* so we assure zero when nothing is copied back */
2271 /* prepare flags for checkservers command */
2272 temp = 2; /* default to checking local cell only */
2273 if (as->parms[2].items)
2274 temp |= 1; /* set fast flag */
2275 if (as->parms[1].items)
2276 temp &= ~2; /* turn off local cell check */
2278 checkserv.magic = 0x12345678; /* XXX */
2279 checkserv.tflags=temp;
2281 /* now copy in optional cell name, if specified */
2282 if (as->parms[0].items) {
2283 code = GetCellName(as->parms[0].items->data, &info);
2287 strcpy(checkserv.tbuffer,info.name);
2288 checkserv.tsize=(int)strlen(info.name)+1;
2289 if (info.linkedCell)
2290 free(info.linkedCell);
2292 strcpy(checkserv.tbuffer,"\0");
2296 if(as->parms[3].items) {
2297 checkserv.tinterval=atol(as->parms[3].items->data);
2300 if(checkserv.tinterval<0) {
2301 printf("Warning: The negative -interval is ignored; treated as an inquiry\n");
2302 checkserv.tinterval=-1;
2303 } else if(checkserv.tinterval> 600) {
2304 printf("Warning: The maximum -interval value is 10 mins (600 secs)\n");
2305 checkserv.tinterval=600; /* 10 min max interval */
2308 checkserv.tinterval = -1; /* don't change current interval */
2311 if ( checkserv.tinterval >= 0 ) {
2314 fprintf (stderr,"Permission denied: requires AFS Client Administrator access.\n");
2319 fprintf (stderr,"Permission denied: requires root access.\n");
2325 code = pioctl_utf8(0, VIOCCKSERV, &blob, 1);
2327 if ((errno == EACCES) && (checkserv.tinterval > 0)) {
2328 printf("Must be root to change -interval\n");
2334 memcpy(&temp, space, sizeof(afs_int32));
2335 if (checkserv.tinterval >= 0) {
2336 if (checkserv.tinterval > 0)
2337 printf("The new down server probe interval (%d secs) is now in effect (old interval was %d secs)\n",
2338 checkserv.tinterval, temp);
2340 printf("The current down server probe interval is %d secs\n", temp);
2344 printf("All servers are running.\n");
2346 printf("These servers unavailable due to network or server problems: ");
2347 for(j=0; j < MAXHOSTS; j++) {
2348 memcpy(&temp, space + j*sizeof(afs_int32), sizeof(afs_int32));
2351 tp = hostutil_GetNameByINet(temp);
2361 MessagesCmd(struct cmd_syndesc *as, void *arock)
2364 struct ViceIoctl blob;
2365 struct gaginfo gagflags;
2366 struct cmd_item *show;
2368 memset(&gagflags, 0, sizeof(struct gaginfo));
2369 blob.in_size = sizeof(struct gaginfo);
2370 blob.in = (caddr_t ) &gagflags;
2371 blob.out_size = MAXSIZE;
2373 memset(space, 0, sizeof(afs_int32)); /* so we assure zero when nothing is copied back */
2375 if (show = as->parms[0].items) {
2376 if (!strcasecmp (show->data, "user"))
2377 gagflags.showflags |= GAGUSER;
2378 else if (!strcasecmp (show->data, "console"))
2379 gagflags.showflags |= GAGCONSOLE;
2380 else if (!strcasecmp (show->data, "all"))
2381 gagflags.showflags |= GAGCONSOLE | GAGUSER;
2382 else if (!strcasecmp (show->data, "none"))
2386 "unrecognized flag %s: must be in {user,console,all,none}\n",
2395 code = pioctl_utf8(0, VIOC_GAG, &blob, 1);
2404 CheckVolumesCmd(struct cmd_syndesc *as, void *arock)
2407 struct ViceIoctl blob;
2411 code = pioctl_utf8(0, VIOCCKBACK, &blob, 1);
2416 printf("All volumeID/name mappings checked.\n");
2422 SetCacheSizeCmd(struct cmd_syndesc *as, void *arock)
2425 struct ViceIoctl blob;
2430 fprintf (stderr,"Permission denied: requires AFS Client Administrator access.\n");
2435 fprintf (stderr,"Permission denied: requires root access.\n");
2440 if (!as->parms[0].items && !as->parms[1].items) {
2441 fprintf(stderr,"%s: syntax error in set cache size cmd.\n", pn);
2444 if (as->parms[0].items) {
2445 code = util_GetInt32(as->parms[0].items->data, &temp);
2447 fprintf(stderr,"%s: bad integer specified for cache size.\n", pn);
2452 blob.in = (char *) &temp;
2453 blob.in_size = sizeof(afs_int32);
2455 code = pioctl_utf8(0, VIOCSETCACHESIZE, &blob, 1);
2457 Die(errno, (char *) 0);
2461 printf("New cache size set.\n");
2466 GetCacheParmsCmd(struct cmd_syndesc *as, void *arock)
2469 struct ViceIoctl blob;
2470 cm_cacheParms_t parms;
2472 memset(&parms, 0, sizeof(parms));
2475 blob.out_size = sizeof(parms);
2476 blob.out = (char *) &parms;
2477 code = pioctl_utf8(0, VIOCGETCACHEPARMS, &blob, 1);
2483 printf("AFS using %I64u of the cache's available %I64u 1K byte blocks.\n",
2484 parms.parms[1], parms.parms[0]);
2485 if (parms.parms[1] > parms.parms[0])
2486 printf("[Cache guideline temporarily deliberately exceeded; it will be adjusted down but you may wish to increase the cache size.]\n");
2491 ListCellsCmd(struct cmd_syndesc *as, void *arock)
2494 afs_int32 i, j, *lp, magic, size;
2496 afs_int32 addr, maxa = OMAXHOSTS;
2497 struct ViceIoctl blob;
2500 resolve = !(as->parms[0].items); /* -numeric */
2502 for(i=0;i<1000;i++) {
2504 memcpy(tp, &i, sizeof(afs_int32));
2505 tp = (char *)(space + sizeof(afs_int32));
2506 lp = (afs_int32 *)tp;
2508 size = sizeof(afs_int32) + sizeof(afs_int32);
2509 blob.out_size = MAXSIZE;
2510 blob.in_size = sizeof(afs_int32);
2513 code = pioctl_utf8(0, VIOCGETCELL, &blob, 1);
2516 break; /* done with the list */
2521 memcpy(&magic, tp, sizeof(afs_int32));
2522 if (magic == 0x12345678) {
2524 tp += sizeof(afs_int32);
2526 printf("Cell %s on hosts", tp+maxa*sizeof(afs_int32));
2527 for(j=0; j < maxa; j++) {
2528 char *name, tbuffer[20];
2530 memcpy(&addr, tp + j*sizeof(afs_int32), sizeof(afs_int32));
2535 name = hostutil_GetNameByINet(addr);
2538 sprintf(tbuffer, "%d.%d.%d.%d", (addr >> 24) & 0xff,
2539 (addr >> 16) & 0xff, (addr >> 8) & 0xff, addr & 0xff);
2542 printf(" %s", name);
2551 ListAliasesCmd(struct cmd_syndesc *as, void *arock)
2554 char *tp, *aliasName, *realName;
2555 struct ViceIoctl blob;
2559 memcpy(tp, &i, sizeof(afs_int32));
2560 blob.out_size = MAXSIZE;
2561 blob.in_size = sizeof(afs_int32);
2564 code = pioctl_utf8(0, VIOC_GETALIAS, &blob, 1);
2567 break; /* done with the list */
2573 tp += strlen(aliasName) + 1;
2575 printf("Alias %s for cell %s\n", aliasName, realName);
2581 CallBackRxConnCmd(struct cmd_syndesc *as, void *arock)
2584 struct ViceIoctl blob;
2585 struct cmd_item *ti;
2587 struct hostent *thp;
2591 ti = as->parms[0].items;
2594 thp = hostutil_GetHostByName(ti->data);
2596 fprintf(stderr, "host %s not found in host table.\n", ti->data);
2599 else memcpy(&hostAddr, thp->h_addr, sizeof(afs_int32));
2601 hostAddr = 0; /* means don't set host */
2602 setp = 0; /* aren't setting host */
2605 /* now do operation */
2606 blob.in_size = sizeof(afs_int32);
2607 blob.out_size = sizeof(afs_int32);
2608 blob.in = (char *) &hostAddr;
2609 blob.out = (char *) &hostAddr;
2611 code = pioctl_utf8(0, VIOC_CBADDR, &blob, 1);
2621 NewCellCmd(struct cmd_syndesc *as, void *arock)
2624 afs_int32 code, linkedstate=0, size=0, *lp;
2625 struct ViceIoctl blob;
2626 struct cmd_item *ti;
2627 char *tp, *cellname=0;
2628 struct hostent *thp;
2629 afs_int32 fsport = 0, vlport = 0;
2631 memset(space, 0, MAXHOSTS * sizeof(afs_int32));
2633 lp = (afs_int32 *)tp;
2635 tp += sizeof(afs_int32);
2636 for(ti=as->parms[1].items; ti; ti=ti->next) {
2637 thp = hostutil_GetHostByName(ti->data);
2639 fprintf(stderr,"%s: Host %s not found in host table, skipping it.\n",
2643 memcpy(tp, thp->h_addr, sizeof(afs_int32));
2644 tp += sizeof(afs_int32);
2647 if (as->parms[2].items) {
2649 * Link the cell, for the purposes of volume location, to the specified
2652 cellname = as->parms[2].items->data;
2655 #ifdef FS_ENABLE_SERVER_DEBUG_PORTS
2656 if (as->parms[3].items) {
2657 code = util_GetInt32(as->parms[3].items->data, &vlport);
2659 fprintf(stderr,"fs: bad integer specified for the fileserver port.\n");
2663 if (as->parms[4].items) {
2664 code = util_GetInt32(as->parms[4].items->data, &fsport);
2666 fprintf(stderr,"fs: bad integer specified for the vldb server port.\n");
2671 tp = (char *)(space + (MAXHOSTS+1) *sizeof(afs_int32));
2672 lp = (afs_int32 *)tp;
2676 strcpy(space + ((MAXHOSTS+4) * sizeof(afs_int32)), as->parms[0].items->data);
2677 size = ((MAXHOSTS+4) * sizeof(afs_int32)) + strlen(as->parms[0].items->data) + 1 /* for null */;
2678 tp = (char *)(space + size);
2680 strcpy(tp, cellname);
2681 size += strlen(cellname) + 1;
2683 blob.in_size = size;
2686 code = pioctl_utf8(0, VIOCNEWCELL, &blob, 1);
2692 struct ViceIoctl blob;
2695 fprintf (stderr,"Permission denied: requires AFS Client Administrator access.\n");
2700 blob.in = (char *) 0;
2701 blob.out_size = MAXSIZE;
2704 code = pioctl_utf8((char *) 0, VIOCNEWCELL, &blob, 1);
2707 Die(errno, (char *) 0);
2711 printf("Cell servers information refreshed\n");
2718 NewAliasCmd(struct cmd_syndesc *as, void *arock)
2721 struct ViceIoctl blob;
2723 char *aliasName, *realName;
2725 /* Setup and do the NEWALIAS pioctl call */
2726 aliasName = as->parms[0].items->data;
2727 realName = as->parms[1].items->data;
2729 strcpy(tp, aliasName);
2730 tp += strlen(aliasName) + 1;
2731 strcpy(tp, realName);
2732 tp += strlen(realName) + 1;
2734 blob.in_size = tp - space;
2738 code = pioctl_utf8(0, VIOC_NEWALIAS, &blob, 1);
2740 if (errno == EEXIST) {
2742 "%s: cell name `%s' in use by an existing cell.\n", pn,
2754 WhichCellCmd(struct cmd_syndesc *as, void *arock)
2757 struct cmd_item *ti;
2758 struct ViceIoctl blob;
2761 cm_ioctlQueryOptions_t options;
2763 if (as->parms[1].items)
2766 SetDotDefault(&as->parms[0].items);
2767 for(ti=as->parms[0].items; ti; ti=ti->next) {
2769 afs_uint32 filetype;
2770 char cell[CELL_MAXNAMELEN];
2773 memset(&fid, 0, sizeof(fid));
2774 memset(&options, 0, sizeof(options));
2776 options.size = sizeof(options);
2777 options.field_flags |= CM_IOCTL_QOPTS_FIELD_LITERAL;
2778 options.literal = literal;
2779 blob.in_size = options.size; /* no variable length data */
2782 blob.out_size = sizeof(cm_fid_t);
2783 blob.out = (char *) &fid;
2784 if (0 == pioctl_utf8(ti->data, VIOCGETFID, &blob, 1)) {
2785 options.field_flags |= CM_IOCTL_QOPTS_FIELD_FID;
2788 Die(errno, ti->data);
2793 blob.out_size = sizeof(filetype);
2794 blob.out = &filetype;
2796 code = pioctl_utf8(ti->data, VIOC_GETFILETYPE, &blob, 1);
2798 blob.out_size = CELL_MAXNAMELEN;
2801 code = pioctl_utf8(ti->data, VIOC_FILE_CELL_NAME, &blob, 1);
2803 if (errno == ENOENT)
2804 fprintf(stderr,"%s: no such cell as '%s'\n", pn, ti->data);
2806 Die(errno, ti->data);
2810 printf("%s %s lives in cell '%s'\n",
2811 filetypestr(filetype),
2818 WSCellCmd(struct cmd_syndesc *as, void *arock)
2821 struct ViceIoctl blob;
2825 blob.out_size = MAXSIZE;
2828 code = pioctl_utf8(NULL, VIOC_GET_WS_CELL, &blob, 1);
2835 printf("This workstation belongs to cell '%s'\n", space);
2841 PrimaryCellCmd(struct cmd_syndesc *as, void *arock)
2843 fprintf(stderr,"This command is obsolete, as is the concept of a primary token.\n");
2848 #ifndef AFS_NT40_ENV
2850 MonitorCmd(struct cmd_syndesc *as, void *arock)
2853 struct ViceIoctl blob;
2854 struct cmd_item *ti;
2856 struct hostent *thp;
2860 ti = as->parms[0].items;
2864 if (!strcmp(ti->data, "off")) {
2865 hostAddr = 0xffffffff;
2867 thp = hostutil_GetHostByName(ti->data);
2869 if (!strcmp(ti->data, "localhost")) {
2870 fprintf(stderr,"localhost not in host table, assuming 127.0.0.1\n");
2871 hostAddr = htonl(0x7f000001);
2873 fprintf(stderr,"host %s not found in host table.\n", ti->data);
2877 memcpy(&hostAddr, thp->h_addr, sizeof(afs_int32));
2881 hostAddr = 0; /* means don't set host */
2882 setp = 0; /* aren't setting host */
2885 /* now do operation */
2886 blob.in_size = sizeof(afs_int32);
2887 blob.out_size = sizeof(afs_int32);
2888 blob.in = (char *) &hostAddr;
2889 blob.out = (char *) &hostAddr;
2890 code = pioctl_utf8(0, VIOC_AFS_MARINER_HOST, &blob, 1);
2896 printf("%s: new monitor host set.\n", pn);
2898 /* now decode old address */
2899 if (hostAddr == 0xffffffff) {
2900 printf("Cache monitoring is currently disabled.\n");
2902 tp = hostutil_GetNameByINet(hostAddr);
2903 printf("Using host %s for monitor services.\n", tp);
2908 #endif /* AFS_NT40_ENV */
2911 SysNameCmd(struct cmd_syndesc *as, void *arock)
2914 struct ViceIoctl blob;
2915 struct cmd_item *ti;
2916 char *input = space;
2919 ti = as->parms[0].items;
2923 fprintf (stderr,"Permission denied: requires AFS Client Administrator access.\n");
2928 fprintf (stderr,"Permission denied: requires root access.\n");
2936 blob.out_size = MAXSIZE;
2937 blob.in_size = sizeof(afs_int32);
2938 memcpy(input, &setp, sizeof(afs_int32));
2939 input += sizeof(afs_int32);
2940 for (; ti; ti = ti->next) {
2942 blob.in_size += (long)strlen(ti->data) + 1;
2943 if (blob.in_size > MAXSIZE) {
2944 fprintf(stderr, "%s: sysname%s too long.\n", pn,
2945 setp > 1 ? "s" : "");
2948 strcpy(input, ti->data);
2949 input += strlen(ti->data);
2952 memcpy(space, &setp, sizeof(afs_int32));
2953 code = pioctl_utf8(0, VIOC_AFS_SYSNAME, &blob, 1);
2959 printf("%s: new sysname%s set.\n", pn, setp > 1 ? " list" : "");
2964 memcpy(&setp, input, sizeof(afs_int32));
2965 input += sizeof(afs_int32);
2967 fprintf(stderr,"No sysname name value was found\n");
2971 printf("Current sysname%s is", setp > 1 ? " list" : "");
2972 for (; setp > 0; --setp ) {
2973 printf(" \'%s\'", input);
2974 input += strlen(input) + 1;
2980 #ifndef AFS_NT40_ENV
2981 static char *exported_types[] = {"null", "nfs", ""};
2982 static int ExportAfsCmd(struct cmd_syndesc *as, void *arock)
2985 struct ViceIoctl blob;
2986 struct cmd_item *ti;
2987 int export = 0, type = 0, mode = 0, exp = 0, gstat = 0;
2988 int exportcall, pwsync = 0, smounts = 0;
2992 fprintf (stderr,"Permission denied: requires AFS Client Administrator access.\n");
2997 fprintf (stderr,"Permission denied: requires root access.\n");
3002 ti = as->parms[0].items;
3003 if (strcmp(ti->data, "nfs") == 0)
3004 type = 0x71; /* NFS */
3007 "Invalid exporter type, '%s', Only the 'nfs' exporter is currently supported\n", ti->data);
3010 ti = as->parms[1].items;
3012 if (strcmp(ti->data, "on") == 0)
3014 else if (strcmp(ti->data, "off") == 0)
3017 fprintf(stderr, "Illegal argument %s\n", ti->data);
3022 if (ti = as->parms[2].items) { /* -noconvert */
3023 if (strcmp(ti->data, "on") == 0)
3025 else if (strcmp(ti->data, "off") == 0)
3028 fprintf(stderr, "Illegal argument %s\n", ti->data);
3032 if (ti = as->parms[3].items) { /* -uidcheck */
3033 if (strcmp(ti->data, "on") == 0)
3035 else if (strcmp(ti->data, "off") == 0)
3038 fprintf(stderr, "Illegal argument %s\n", ti->data);
3042 if (ti = as->parms[4].items) { /* -submounts */
3043 if (strcmp(ti->data, "on") == 0)
3045 else if (strcmp(ti->data, "off") == 0)
3048 fprintf(stderr, "Illegal argument %s\n", ti->data);
3052 exportcall = (type << 24) | (mode << 6) | (pwsync << 4) | (smounts << 2) | export;
3055 blob.in = (char *) &exportcall;
3056 blob.in_size = sizeof(afs_int32);
3057 blob.out = (char *) &exportcall;
3058 blob.out_size = sizeof(afs_int32);
3059 code = pioctl_utf8(0, VIOC_EXPORTAFS, &blob, 1);
3061 if (errno == ENODEV) {
3063 "Sorry, the %s-exporter type is currently not supported on this AFS client\n", exported_types[type]);
3070 if (exportcall & 1) {
3071 printf("'%s' translator is enabled with the following options:\n\tRunning in %s mode\n\tRunning in %s mode\n\t%s\n",
3072 exported_types[type], (exportcall & 2 ? "strict unix" : "convert owner mode bits to world/other"),
3073 (exportcall & 4 ? "strict 'passwd sync'" : "no 'passwd sync'"),
3074 (exportcall & 8 ? "Allow mounts of /afs/.. subdirs" : "Only mounts to /afs allowed"));
3076 printf("'%s' translator is disabled\n", exported_types[type]);
3085 GetCellCmd(struct cmd_syndesc *as, void *arock)
3088 struct ViceIoctl blob;
3089 struct afsconf_cell info;
3090 struct cmd_item *ti;
3097 memset(&info, 0, sizeof(info));
3098 memset(&args, 0, sizeof(args)); /* avoid Purify UMR error */
3099 for(ti=as->parms[0].items; ti; ti=ti->next) {
3101 blob.out_size = sizeof(args);
3102 blob.out = (caddr_t) &args;
3103 code = GetCellName(ti->data, &info);
3108 if (info.linkedCell)
3109 free(info.linkedCell);
3110 blob.in_size = 1+(long)strlen(info.name);
3111 blob.in = info.name;
3112 code = pioctl_utf8(0, VIOC_GETCELLSTATUS, &blob, 1);
3114 if (errno == ENOENT)
3115 fprintf(stderr,"%s: the cell named '%s' does not exist\n", pn, info.name);
3117 Die(errno, info.name);
3121 printf("Cell %s status: ", info.name);
3127 printf("no setuid allowed");
3129 printf("setuid allowed");
3131 printf(", using old VLDB");
3137 static int SetCellCmd(struct cmd_syndesc *as, void *arock)
3140 struct ViceIoctl blob;
3141 struct afsconf_cell info;
3142 struct cmd_item *ti;
3150 memset(&info, 0, sizeof(info));
3152 /* Check arguments. */
3153 if (as->parms[1].items && as->parms[2].items) {
3154 fprintf(stderr, "Cannot specify both -suid and -nosuid.\n");
3158 /* figure stuff to set */
3164 fprintf (stderr,"Permission denied: requires AFS Client Administrator access.\n");
3169 fprintf (stderr,"Permission denied: requires root access.\n");
3174 if (! as->parms[1].items)
3175 args.stat |= CM_SETCELLFLAG_SUID; /* default to -nosuid */
3177 /* set stat for all listed cells */
3178 for(ti=as->parms[0].items; ti; ti=ti->next) {
3180 code = GetCellName(ti->data, &info);
3185 if (info.linkedCell)
3186 free(info.linkedCell);
3187 strcpy(args.cname, info.name);
3188 blob.in_size = sizeof(args);
3189 blob.in = (caddr_t) &args;
3191 blob.out = (caddr_t) 0;
3192 code = pioctl_utf8(0, VIOC_SETCELLSTATUS, &blob, 1);
3194 Die(errno, info.name); /* XXX added cell name to Die() call */
3202 GetCellName(char *cellNamep, struct afsconf_cell *infop)
3204 strcpy(infop->name, cellNamep);
3209 VLDBInit(int noAuthFlag, struct afsconf_cell *info)
3214 cm_GetConfigDir(confDir, sizeof(confDir));
3216 code = ugen_ClientInit(noAuthFlag, confDir,
3217 info->name, 0, &uclient,
3218 NULL, pn, rxkad_clear,
3219 VLDB_MAXSERVERS, AFSCONF_VLDBSERVICE, 50,
3220 0, 0, USER_SERVICE_ID);
3225 static struct ViceIoctl gblob;
3226 static int debug = 0;
3228 * here follow some routines in suport of the setserverprefs and
3229 * getserverprefs commands. They are:
3230 * SetPrefCmd "top-level" routine
3231 * addServer adds a server to the list of servers to be poked into the
3232 * kernel. Will poke the list into the kernel if it threatens
3234 * pokeServers pokes the existing list of servers and ranks into the kernel
3235 * GetPrefCmd reads the Cache Manager's current list of server ranks
3244 code = pioctl_utf8(0, VIOC_SETSPREFS, &gblob, 1);
3246 ssp = (cm_SSetPref_t *)space;
3247 gblob.in_size = (long)(((char *)&(ssp->servers[0])) - (char *)ssp);
3253 * returns -1 if error message printed,
3255 * errno value if error and no error message printed
3262 code = pioctl_utf8(0, VIOC_SETSPREFS, &gblob, 1);
3263 if (code && (errno == EINVAL)) {
3264 struct setspref *ssp;
3265 ssp = (struct setspref *)gblob.in;
3266 if (!(ssp->flags & DBservers)) {
3267 gblob.in = (void *)&(ssp->servers[0]);
3268 gblob.in_size -= ((char *)&(ssp->servers[0])) - (char *)ssp;
3269 code = pioctl_utf8(0, VIOC_SETSPREFS33, &gblob, 1);
3270 return code ? errno : 0;
3273 "This cache manager does not support VL server preferences.\n");
3277 return code ? errno : 0;
3283 addServer(char *name, unsigned short rank)
3288 struct hostent *thostent;
3292 #define MAXUSHORT ((unsigned short) 2*MAXSHORT+1) /* assumes two's complement binary system */
3294 #define MAXUSHORT ((unsigned short) ~0)
3299 thostent = hostutil_GetHostByName(name);
3301 fprintf (stderr, "%s: couldn't resolve name.\n", name);
3305 ssp = (cm_SSetPref_t *)(gblob.in);
3307 if (gblob.in_size > MAXINSIZE - sizeof(cm_SPref_t)) {
3308 code = pokeServers();
3309 ssp->num_servers = 0;
3312 sp = (cm_SPref_t *)((char*)gblob.in + gblob.in_size);
3313 memcpy (&(sp->host.s_addr), thostent->h_addr, sizeof(afs_uint32));
3314 sp->rank = (rank > MAXUSHORT ? MAXUSHORT : rank);
3315 gblob.in_size += sizeof(cm_SPref_t);
3318 if (debug) fprintf(stderr, "adding server %s, rank %d, ip addr 0x%lx\n",name,sp->rank,sp->host.s_addr);
3324 * returns -1 if error message printed,
3326 * errno value if error and no error message printed
3329 addServer(char *name, afs_int32 rank)
3332 struct setspref *ssp;
3334 struct hostent *thostent;
3340 #define MAXUSHORT ((unsigned short) 2*MAXSHORT+1) /* assumes two's complement binary system */
3342 #define MAXUSHORT ((unsigned short) ~0)
3346 thostent = hostutil_GetHostByName(name);
3348 fprintf(stderr, "%s: couldn't resolve name.\n", name);
3352 ssp = (struct setspref *)(gblob.in);
3354 for (t = 0; thostent->h_addr_list[t]; t++) {
3355 if (gblob.in_size > MAXINSIZE - sizeof(struct spref)) {
3356 code = pokeServers();
3359 ssp->num_servers = 0;
3362 sp = (struct spref *)(gblob.in + gblob.in_size);
3363 memcpy(&(sp->server.s_addr), thostent->h_addr_list[t],
3364 sizeof(afs_uint32));
3365 sp->rank = (rank > MAXUSHORT ? MAXUSHORT : rank);
3366 gblob.in_size += sizeof(struct spref);
3370 fprintf(stderr, "adding server %s, rank %d, ip addr 0x%lx\n",
3371 name, sp->rank, sp->server.s_addr);
3379 static BOOL IsWindowsNT (void)
3381 static BOOL fChecked = FALSE;
3382 static BOOL fIsWinNT = FALSE;
3386 OSVERSIONINFO Version;
3390 memset (&Version, 0x00, sizeof(Version));
3391 Version.dwOSVersionInfoSize = sizeof(Version);
3393 if (GetVersionEx (&Version))
3395 if (Version.dwPlatformId == VER_PLATFORM_WIN32_NT)
3405 SetPrefCmd(struct cmd_syndesc *as, void * arock)
3409 struct cmd_item *ti;
3414 ssp = (cm_SSetPref_t *)space;
3416 ssp->num_servers = 0;
3417 gblob.in_size = (long)(((char*)&(ssp->servers[0])) - (char *)ssp);
3420 gblob.out_size = MAXSIZE;
3423 fprintf (stderr,"Permission denied: requires AFS Client Administrator access.\n");
3429 ti = as->parms[2].items; /* -file */
3431 if (debug) fprintf(stderr,"opening file %s\n",ti->data);
3432 if (!(infd = fopen(ti->data,"r" ))) {
3434 Die(errno,ti->data);
3437 while ( fscanf(infd, "%79s%ld", name, &rank) != EOF) {
3438 code = addServer (name, (unsigned short) rank);
3442 ti = as->parms[3].items; /* -stdin */
3444 while ( scanf("%79s%ld", name, &rank) != EOF) {
3445 code = addServer (name, (unsigned short) rank);
3449 for (ti = as->parms[0].items;ti;ti=ti->next) {/*list of servers, ranks */
3454 code = addServer (ti->data, (unsigned short) atol(ti->next->data));
3456 printf("set fs prefs %s %s\n", ti->data, ti->next->data);
3460 code = pokeServers();
3462 printf("now working on vlservers, code=%d, errno=%d\n",code,errno);
3464 ssp = (cm_SSetPref_t *)space;
3465 gblob.in_size = (long)(((char*)&(ssp->servers[0])) - (char *)ssp);
3467 ssp->flags = CM_SPREF_VLONLY;
3468 ssp->num_servers = 0;
3470 for (ti = as->parms[1].items;ti;ti=ti->next) { /* list of dbservers, ranks */
3475 code = addServer (ti->data, (unsigned short) atol(ti->next->data));
3477 printf("set vl prefs %s %s\n", ti->data, ti->next->data);
3482 if (as->parms[1].items) {
3484 printf("now poking vlservers\n");
3485 code = pokeServers();
3495 SetPrefCmd(struct cmd_syndesc *as, void *arock)
3499 struct cmd_item *ti;
3502 struct setspref *ssp;
3503 int error = 0; /* -1 means error message printed,
3504 * >0 means errno value for unprinted message */
3506 ssp = (struct setspref *)space;
3508 ssp->num_servers = 0;
3509 gblob.in_size = ((char *)&(ssp->servers[0])) - (char *)ssp;
3512 gblob.out_size = MAXSIZE;
3516 fprintf(stderr, "Permission denied: requires root access.\n");
3520 ti = as->parms[2].items; /* -file */
3523 fprintf(stderr, "opening file %s\n", ti->data);
3524 if (!(infd = fopen(ti->data, "r"))) {
3528 while (fscanf(infd, "%79s%ld", name, &rank) != EOF) {
3529 code = addServer(name, (unsigned short)rank);
3536 ti = as->parms[3].items; /* -stdin */
3538 while (scanf("%79s%ld", name, &rank) != EOF) {
3539 code = addServer(name, (unsigned short)rank);
3545 for (ti = as->parms[0].items; ti; ti = ti->next) { /* list of servers, ranks */
3550 code = addServer(ti->data, (unsigned short)atol(ti->next->data));
3554 printf("set fs prefs %s %s\n", ti->data, ti->next->data);
3558 code = pokeServers();
3562 printf("now working on vlservers, code=%d\n", code);
3564 ssp = (struct setspref *)space;
3565 ssp->flags = DBservers;
3566 ssp->num_servers = 0;
3567 gblob.in_size = ((char *)&(ssp->servers[0])) - (char *)ssp;
3570 for (ti = as->parms[1].items; ti; ti = ti->next) { /* list of dbservers, ranks */
3575 code = addServer(ti->data, (unsigned short)atol(ti->next->data));
3579 printf("set vl prefs %s %s\n", ti->data, ti->next->data);
3584 if (as->parms[1].items) {
3586 printf("now poking vlservers\n");
3587 code = pokeServers();
3595 return error ? 1 : 0;
3601 GetPrefCmd(struct cmd_syndesc *as, void *arock)
3604 struct cmd_item *ti;
3605 char *name, tbuffer[20];
3610 struct ViceIoctl blob;
3611 struct cm_SPrefRequest *in;
3612 struct cm_SPrefInfo *out;
3616 ti = as->parms[0].items; /* -file */
3618 if (debug) fprintf(stderr,"opening file %s\n",ti->data);
3619 if (!(outfd = freopen(ti->data,"w",stdout))) {
3620 Die(errno,ti->data);
3625 ti = as->parms[1].items; /* -numeric */
3627 ti = as->parms[2].items; /* -vlservers */
3628 vlservers = (ti ? CM_SPREF_VLONLY : 0);
3629 /* ti = as->parms[3].items; -cell */
3631 in = (struct cm_SPrefRequest *)space;
3635 blob.in_size=sizeof(struct cm_SPrefRequest);
3636 blob.in = (char *)in;
3638 blob.out_size = MAXSIZE;
3640 in->num_servers = (MAXSIZE - 2*sizeof(short))/sizeof(struct cm_SPref);
3641 in->flags = vlservers;
3643 code = pioctl_utf8(0, VIOC_GETSPREFS, &blob, 1);
3645 perror("getserverprefs pioctl");
3649 out = (struct cm_SPrefInfo *) blob.out;
3651 for (i=0;i<out->num_servers;i++) {
3653 name = hostutil_GetNameByINet(out->servers[i].host.s_addr);
3656 addr = ntohl(out->servers[i].host.s_addr);
3657 sprintf(tbuffer, "%d.%d.%d.%d", (addr>>24) & 0xff, (addr>>16) & 0xff,
3658 (addr>>8) & 0xff, addr & 0xff);
3661 printf ("%-50s %5u\n",name,out->servers[i].rank);
3664 in->offset = out->next_offset;
3666 } while (!code && out->next_offset > 0);
3672 GetPrefCmd(struct cmd_syndesc *as, void *arock)
3675 struct cmd_item *ti;
3676 char *name, tbuffer[20];
3677 afs_int32 rank, addr;
3681 struct ViceIoctl blob;
3682 struct sprefrequest *in;
3683 struct sprefinfo *out;
3686 ti = as->parms[0].items; /* -file */
3689 fprintf(stderr, "opening file %s\n", ti->data);
3690 if (!(outfd = freopen(ti->data, "w", stdout))) {
3696 ti = as->parms[1].items; /* -numeric */
3698 ti = as->parms[2].items; /* -vlservers */
3699 vlservers |= (ti ? DBservers : 0);
3700 /* ti = as->parms[3].items; -cell */
3702 in = (struct sprefrequest *)space;