64a2d1c2621fedd63028420b47e467a5cee2ba1a
[openafs.git] / src / WINNT / client_exp / gui2fs.cpp
1 /*
2  * Copyright 2000, International Business Machines Corporation and others.
3  * All Rights Reserved.
4  * 
5  * This software has been released under the terms of the IBM Public
6  * License.  For details, see the LICENSE file in the top-level source
7  * directory or online at http://www.openafs.org/dl/license10.html
8  */
9
10 extern "C" {
11 #include <afs/param.h>
12 #include <afs/stds.h>
13 }
14
15 #include "stdafx.h"
16 #include <errno.h>
17 #include <time.h>
18
19 #include "gui2fs.h"
20 #include "msgs.h"
21 #include "results_dlg.h"
22 #include "volume_inf.h"
23 #include "mount_points_dlg.h"
24 #include "hourglass.h"
25 #include "down_servers_dlg.h"
26
27 extern "C" {
28 #include <afs/param.h>
29 #include <osi.h>
30 #include "fs.h"
31 #include "fs_utils.h"
32 #include <afsint.h>
33 #include <afs/auth.h>
34 }
35
36
37 #define PCCHAR(str)             ((char *)(const char *)(str))
38
39
40 #define MAXHOSTS 13
41 #define OMAXHOSTS 8
42 #define MAXNAME 100
43 #define MAXSIZE 2048
44 #define MAXINSIZE 1300    /* pioctl complains if data is larger than this */
45 #define VMSGSIZE 128      /* size of msg buf in volume hdr */
46
47 #define MAXCELLCHARS            64
48 #define MAXHOSTCHARS            64
49 #define MAXHOSTSPERCELL         8
50
51 struct afsconf_cell {
52         char name[MAXCELLCHARS];
53     short numServers;
54     short flags;
55     struct sockaddr_in hostAddr[MAXHOSTSPERCELL];
56     char hostName[MAXHOSTSPERCELL][MAXHOSTCHARS];
57     char *linkedCell;
58 };
59
60 static char space[MAXSIZE];
61 static char tspace[1024];
62
63 // #define      LOGGING_ON              // Enable this to log certain pioctl calls
64
65 #ifdef  LOGGING_ON
66 static char *szLogFileName = "afsguilog.txt";
67 #endif
68
69
70 FILE *OpenFile(char *file, char *rwp)
71 {
72     char wdir[256];
73     long code;
74     long tlen;
75     FILE *fp;
76
77     code = GetWindowsDirectory(wdir, sizeof(wdir));
78     if (code == 0 || code > sizeof(wdir)) 
79         return FALSE;
80
81     /* add trailing backslash, if required */
82     tlen = strlen(wdir);
83     if (wdir[tlen - 1] != '\\')
84         strcat(wdir, "\\");
85
86     strcat(wdir, file);
87
88     fp = fopen(wdir, rwp);
89
90     return fp;
91 }       
92
93 CString StripPath(CString& strPath)
94 {
95     int nIndex = strPath.ReverseFind('\\');
96
97     CString strFile = strPath.Mid(nIndex + 1);
98     if (strFile.IsEmpty())
99         return strPath;
100
101     return strFile;
102 }
103
104 CStringArray& StripPath(CStringArray& files)
105 {
106     for (int i = 0; i < files.GetSize(); i++)
107         files[i] = StripPath(files[i]);
108
109     return files;
110 }
111
112 void Flush(const CStringArray& files)
113 {
114     register LONG code;
115     struct ViceIoctl blob;
116     int error = 0;
117
118     HOURGLASS hourglass;
119
120     for (int i = 0; i < files.GetSize(); i++) {
121         blob.in_size = blob.out_size = 0;
122
123         code = pioctl(PCCHAR(files[i]), VIOCFLUSH, &blob, 0);
124         if (code) {
125             error = 1;
126             if (errno == EMFILE)
127                 ShowMessageBox(IDS_FLUSH_FAILED, MB_ICONEXCLAMATION, IDS_FLUSH_FAILED, files[i]);
128             else 
129                 ShowMessageBox(IDS_FLUSH_ERROR, MB_ICONEXCLAMATION, IDS_FLUSH_ERROR, files[i], strerror(errno));
130         }
131     }   
132
133     if (!error)
134         ShowMessageBox(IDS_FLUSH_OK, MB_ICONEXCLAMATION, IDS_FLUSH_OK);
135 }       
136
137 void FlushVolume(const CStringArray& files)
138 {
139     register LONG code;
140     struct ViceIoctl blob;
141     int error = 0;
142
143     HOURGLASS hourglass;
144
145     for (int i = 0; i < files.GetSize(); i++) {
146         blob.in_size = blob.out_size = 0;
147
148         code = pioctl(PCCHAR(files[i]), VIOC_FLUSHVOLUME, &blob, 0);
149         if (code) {
150             error = 1;
151             ShowMessageBox(IDS_FLUSH_VOLUME_ERROR, MB_ICONEXCLAMATION, IDS_FLUSH_VOLUME_ERROR, files[i], strerror(errno));
152         }
153     }   
154
155     if (!code)
156         ShowMessageBox(IDS_FLUSH_VOLUME_OK, MB_ICONEXCLAMATION, IDS_FLUSH_VOLUME_OK);
157 }       
158
159 void WhichCell(CStringArray& files)
160 {
161     register LONG code;
162     struct ViceIoctl blob;
163     int error;
164     CString str;
165     CString str2;
166
167     CStringArray results;
168
169     error = 0;
170
171     HOURGLASS hourglass;
172
173     for (int i = 0; i < files.GetSize(); i++) {
174         blob.in_size = 0;
175         blob.out_size = MAXSIZE;
176         blob.out = space;
177
178         code = pioctl(PCCHAR(files[i]), VIOC_FILE_CELL_NAME, &blob, 1);
179         if (code) {
180             if (code == ENOENT) {
181                 LoadString (str, IDS_CANT_GET_CELL);
182                 results.Add(str);
183             } else
184                 results.Add(GetAfsError(errno));
185         } else
186             results.Add(space);
187     }       
188
189     LoadString (str, IDS_SHOW_CELL);
190     LoadString (str2, IDS_SHOW_CELL_COLUMN);
191     CResultsDlg dlg(SHOW_CELL_HELP_ID);
192     dlg.SetContents(str, str2, StripPath(files), results);
193     dlg.DoModal();
194 }
195
196 void WSCellCmd()
197 {
198     register LONG code;
199     struct ViceIoctl blob;
200     
201     HOURGLASS hourglass;
202
203     blob.in_size = 0;
204     blob.in = (char *) 0;
205     blob.out_size = MAXSIZE;
206     blob.out = space;
207
208     code = pioctl((char *) 0, VIOC_GET_WS_CELL, &blob, 1);
209
210     if (code) {
211         //Die(errno, (char *) 0);
212     }
213     //else
214     //printf("This workstation belongs to cell '%s'\n", space);
215 }
216
217 BOOL CheckVolumes()
218 {
219     register LONG code;
220     struct ViceIoctl blob;
221     
222     blob.in_size = 0;
223     blob.out_size = 0;
224     code = pioctl(0, VIOCCKBACK, &blob, 1);
225     if (code) {
226         ShowMessageBox(IDS_CHECK_VOLUMES_ERROR, MB_ICONEXCLAMATION, IDS_CHECK_VOLUMES_ERROR, GetAfsError(errno, CString()));
227         return FALSE;
228     }
229
230     ShowMessageBox(IDS_CHECK_VOLUMES_OK, MB_OK, IDS_CHECK_VOLUMES_OK);
231
232     return TRUE;
233 }
234
235 void SetCacheSizeCmd(LONG nNewCacheSize)
236 {
237     register LONG code;
238     struct ViceIoctl blob;
239     
240     HOURGLASS hourglass;
241
242     blob.in = (char *) &nNewCacheSize;
243     blob.in_size = sizeof(LONG);
244     blob.out_size = 0;
245
246     code = pioctl(0, VIOCSETCACHESIZE, &blob, 1);
247     //if (code)
248     //  Die(errno, (char *) 0);
249     //else
250     //  printf("New cache size set.\n");
251 }
252
253 void WhereIs(CStringArray& files)
254 {
255     register LONG code;
256     struct ViceIoctl blob;
257     CStringArray servers;
258     CStringArray resultFiles;
259     CString str;
260     CString str2;
261
262     HOURGLASS hourglass;
263
264     for (int i = 0; i < files.GetSize(); i++) {
265         blob.out_size = MAXSIZE;
266         blob.in_size = 0;
267         blob.out = space;
268         memset(space, 0, sizeof(space));
269
270         code = pioctl(PCCHAR(files[i]), VIOCWHEREIS, &blob, 1);
271         if (code) {
272             resultFiles.Add(StripPath(files[i]));
273             servers.Add(GetAfsError(errno));
274             continue;
275         }
276
277         LONG *hosts = (LONG *)space;
278         BOOL bFirst = TRUE;
279         str = "";
280
281         for (int j = 0; j < MAXHOSTS; j++) {
282             if (hosts[j] == 0)
283                 break;
284             char *hostName = hostutil_GetNameByINet(hosts[j]);
285             if (bFirst) {
286                 resultFiles.Add(StripPath(files[i]));
287                 bFirst = FALSE;
288             } else
289                 resultFiles.Add(" ");
290             servers.Add(hostName);
291         }
292     }
293
294     LoadString (str, IDS_SHOW_FS);
295     LoadString (str2, IDS_SHOW_FS_COLUMN);
296     CResultsDlg dlg(SHOW_FILE_SERVERS_HELP_ID);
297     dlg.SetContents(str, str2, resultFiles, servers);
298     dlg.DoModal();
299 }       
300
301 CString GetAfsError(int code, const char *filename)
302 {
303     CString strMsg;
304
305     if (code == EINVAL) {
306         if (filename)
307             strMsg.Format("Invalid argument; it is possible that the file is not in AFS");
308         else 
309             strMsg.Format("Invalid argument");
310     } else if (code == ENOENT) {
311         if (filename) 
312             strMsg.Format("The file does not exist");
313         else 
314             strMsg.Format("No such file returned");
315     } else if (code == EROFS)  {
316         strMsg.Format("You can not change a backup or readonly volume");
317     } else if (code == EACCES || code == EPERM) {
318         strMsg.Format("You do not have the required rights to do this operation");
319     } else if (code == ENODEV) {
320         strMsg.Format("AFS service may not have started");
321     } else if (code == ESRCH) {
322         strMsg.Format("Cell name not recognized");
323     } else if (code == ETIMEDOUT) {
324         strMsg.Format("Connection timed out");
325     } else if (code == EPIPE) {
326         strMsg.Format("Volume name or ID not recognized");
327     } else {
328         strMsg.Format("Error 0x%x occurred", code);
329     }
330
331     return strMsg;
332 }
333
334
335 /************************************************************************
336 ************************** ACL Code *************************************
337 ************************************************************************/
338
339 typedef char sec_rgy_name_t[1025];      /* A DCE definition */
340
341 struct AclEntry {
342     struct AclEntry *next;
343     char name[MAXNAME];
344     LONG rights;
345 };
346
347 struct Acl {
348     int dfs;                    //      Originally true if a dfs acl; now also the type
349                                 //      of the acl (1, 2, or 3, corresponding to object,
350                                 //      initial dir, or initial object).
351     sec_rgy_name_t cell;        //      DFS cell name
352     int nplus;
353     int nminus;
354     struct AclEntry *pluslist;
355     struct AclEntry *minuslist;
356 };
357
358 int foldcmp (register char *a, register char *b)
359 {
360     register char t, u;
361     while (1) {
362         t = *a++;
363         u = *b++;
364         if (t >= 'A' && t <= 'Z') t += 0x20;
365         if (u >= 'A' && u <= 'Z') u += 0x20;
366         if (t != u) return 1;
367         if (t == 0) return 0;
368     }
369 }
370
371 extern "C" void ZapList(struct AclEntry *alist)
372 {
373     register struct AclEntry *tp, *np;
374
375     for (tp = alist; tp; tp = np) {
376         np = tp->next;
377         free(tp);
378     }
379 }
380
381 extern "C" void ZapAcl (struct Acl *acl)
382 {
383     ZapList(acl->pluslist);
384     ZapList(acl->minuslist);
385     free(acl);
386 }
387
388 extern "C" int PruneList (struct AclEntry **ae, int dfs)
389 {
390     struct AclEntry **lp = ae;
391     struct AclEntry *te, *ne;
392     LONG ctr = 0;
393     
394     for (te = *ae; te; te = ne) {
395         if ((!dfs && te->rights == 0) || te->rights == -1) {
396             *lp = te->next;
397             ne = te->next;
398             free(te);
399             ctr++;
400         }
401         else {
402             ne = te->next;
403             lp = &te->next;
404         }
405     }
406     
407     return ctr;
408 }
409
410 char *SkipLine (register char *astr)
411 {
412     while (*astr != '\n') 
413         astr++;
414     
415     astr++;
416     
417     return astr;
418 }
419
420 /* tell if a name is 23 or -45 (digits or minus digits), which are bad names we must prune */
421 static int BadName(register char *aname)
422 {
423     register int tc;
424
425     /* all must be '-' or digit to be bad */
426     while (tc = *aname++) {
427         if ((tc != '-') && (tc < '0' || tc > '9')) 
428             return 0;
429     }
430
431     return 1;
432 }
433
434 CString GetRightsString(register LONG arights, int dfs)
435 {
436     CString str;
437
438     if (!dfs) {
439         if (arights & PRSFS_READ) str += "r";
440         if (arights & PRSFS_LOOKUP) str += "l";
441         if (arights & PRSFS_INSERT) str += "i";
442         if (arights & PRSFS_DELETE) str += "d";
443         if (arights & PRSFS_WRITE) str += "w";
444         if (arights & PRSFS_LOCK) str += "k";
445         if (arights & PRSFS_ADMINISTER) str += "a";
446     } else {
447         ASSERT(FALSE);
448 /*
449                 if (arights & DFS_READ) str += "r"; else str += "-";
450                 if (arights & DFS_WRITE) str += "w"; else printf("-");
451                 if (arights & DFS_EXECUTE) str += "x"; else printf("-");
452                 if (arights & DFS_CONTROL) str += "c"; else printf("-");
453                 if (arights & DFS_INSERT) str += "i"; else printf("-");
454                 if (arights & DFS_DELETE) str += "d"; else printf("-");
455                 if (arights & (DFS_USRALL)) str += "+";
456 */
457     }   
458
459     return str;
460 }
461
462 char *AclToString(struct Acl *acl)
463 {
464     static char mydata[MAXSIZE];
465     char tstring[MAXSIZE];
466     char dfsstring[30];
467     struct AclEntry *tp;
468     
469     if (acl->dfs)
470         sprintf(dfsstring, " dfs:%d %s", acl->dfs, acl->cell);
471     else
472         dfsstring[0] = '\0';
473     sprintf(mydata, "%d%s\n%d\n", acl->nplus, dfsstring, acl->nminus);
474     
475     for(tp = acl->pluslist; tp; tp = tp->next) {
476         sprintf(tstring, "%s %d\n", tp->name, tp->rights);
477         strcat(mydata, tstring);
478     }
479     
480     for(tp = acl->minuslist; tp; tp = tp->next) {
481         sprintf(tstring, "%s %d\n", tp->name, tp->rights);
482         strcat(mydata, tstring);
483     }
484     
485     return mydata;
486 }
487
488 struct Acl *EmptyAcl(const CString& strCellName)
489 {
490     register struct Acl *tp;
491     
492     tp = (struct Acl *)malloc(sizeof (struct Acl));
493     tp->nplus = tp->nminus = 0;
494     tp->pluslist = tp->minuslist = 0;
495     tp->dfs = 0;
496     strcpy(tp->cell, strCellName);
497
498     return tp;
499 }
500
501 struct Acl *ParseAcl(char *astr)
502 {
503     int nplus, nminus, i, trights;
504     char tname[MAXNAME];
505     struct AclEntry *first, *last, *tl;
506     struct Acl *ta;
507
508     ta = (struct Acl *) malloc (sizeof (struct Acl));
509     ta->dfs = 0;
510     sscanf(astr, "%d dfs:%d %s", &ta->nplus, &ta->dfs, ta->cell);
511     astr = SkipLine(astr);
512     sscanf(astr, "%d", &ta->nminus);
513     astr = SkipLine(astr);
514
515     nplus = ta->nplus;
516     nminus = ta->nminus;
517
518     last = 0;
519     first = 0;
520     for(i = 0; i < nplus; i++) {
521         sscanf(astr, "%100s %d", tname, &trights);
522         astr = SkipLine(astr);
523         tl = (struct AclEntry *) malloc(sizeof (struct AclEntry));
524         if (!first)
525                         first = tl;
526         strcpy(tl->name, tname);
527         tl->rights = trights;
528         tl->next = 0;
529         if (last)
530                         last->next = tl;
531         last = tl;
532     }
533     ta->pluslist = first;
534
535     last = 0;
536     first = 0;
537     for(i=0; i < nminus; i++) {
538         sscanf(astr, "%100s %d", tname, &trights);
539         astr = SkipLine(astr);
540         tl = (struct AclEntry *) malloc(sizeof (struct AclEntry));
541         if (!first) 
542                         first = tl;
543         strcpy(tl->name, tname);
544         tl->rights = trights;
545         tl->next = 0;
546         if (last) 
547                         last->next = tl;
548         last = tl;
549     }
550     ta->minuslist = first;
551
552     return ta;
553 }
554
555 /* clean up an access control list of its bad entries; return 1 if we made
556    any changes to the list, and 0 otherwise */
557 extern "C" int CleanAcl(struct Acl *aa)
558 {
559     register struct AclEntry *te, **le, *ne;
560     int changes;
561
562     HOURGLASS hourglass;
563
564     /* Don't correct DFS ACL's for now */
565     if (aa->dfs)
566         return 0;
567
568     /* prune out bad entries */
569     changes = 0;            /* count deleted entries */
570     le = &aa->pluslist;
571     for(te = aa->pluslist; te; te = ne) {
572         ne = te->next;
573         if (BadName(te->name)) {
574             /* zap this dude */
575             *le = te->next;
576             aa->nplus--;
577             free(te);
578             changes++;
579         }
580         else
581             le = &te->next;
582     }
583
584     le = &aa->minuslist;
585     
586     for(te = aa->minuslist; te; te = ne) {
587         ne = te->next;
588         if (BadName(te->name)) {
589             /* zap this dude */
590             *le = te->next;
591             aa->nminus--;
592             free(te);
593             changes++;
594         }
595         else
596             le = &te->next;
597     }   
598
599     return changes;
600 }
601
602 void CleanACL(CStringArray& names)
603 {
604     register LONG code;
605     register struct Acl *ta;
606     struct ViceIoctl blob;
607     int changes;
608
609     ShowMessageBox(IDS_CLEANACL_MSG, MB_OK, IDS_CLEANACL_MSG);
610
611     HOURGLASS hourglass;
612
613     for (int i = 0; i < names.GetSize(); i++) {
614         blob.out_size = MAXSIZE;
615         blob.in_size = 0;
616         blob.out = space;
617
618         code = pioctl(PCCHAR(names[i]), VIOCGETAL, &blob, 1);
619         if (code) {
620             ShowMessageBox(IDS_CLEANACL_ERROR, MB_ICONEXCLAMATION, 0, names[i], GetAfsError(errno));
621             continue;
622         }
623
624         ta = ParseAcl(space);
625         if (ta->dfs) {
626             ShowMessageBox(IDS_CLEANACL_NOT_SUPPORTED, MB_ICONEXCLAMATION, IDS_CLEANACL_NOT_SUPPORTED, names[i]);
627             continue;
628         }
629
630         changes = CleanAcl(ta);
631         if (!changes)
632             continue;
633
634         /* now set the acl */
635         blob.in = AclToString(ta);
636         blob.in_size = strlen((char *)blob.in) + 1;
637         blob.out_size = 0;
638                 
639         code = pioctl(PCCHAR(names[i]), VIOCSETAL, &blob, 1);
640         if (code) {
641             if (errno == EINVAL) {
642                 ShowMessageBox(IDS_CLEANACL_INVALID_ARG, MB_ICONEXCLAMATION, IDS_CLEANACL_INVALID_ARG, names[i]);
643                 continue;
644             }
645             else {
646                 ShowMessageBox(IDS_CLEANACL_ERROR, MB_ICONEXCLAMATION, 0, names[i], GetAfsError(errno));
647                 continue;
648             }
649         }
650     }
651 }       
652
653 // Derived from fs.c's ListAclCmd
654 BOOL GetRights(const CString& strDir, CStringArray& strNormal, CStringArray& strNegative)
655 {
656     register LONG code;
657     register struct Acl *ta;
658     struct ViceIoctl blob;
659     struct AclEntry *te;
660     int idf = 0; //getidf(as, parm_listacl_id);
661
662     HOURGLASS hourglass;
663
664     blob.out_size = MAXSIZE;
665     blob.in_size = idf;
666     blob.in = blob.out = space;
667         
668     code = pioctl(PCCHAR(strDir), VIOCGETAL, &blob, 1);
669     if (code) {
670         ShowMessageBox(IDS_GETRIGHTS_ERROR, MB_ICONEXCLAMATION, IDS_GETRIGHTS_ERROR, strDir, GetAfsError(errno));
671         return FALSE;
672     }
673
674     ta = ParseAcl(space);
675     if (ta->dfs) {
676         ShowMessageBox(IDS_DFSACL_ERROR, MB_ICONEXCLAMATION, IDS_DFSACL_ERROR);
677         return FALSE;
678     }
679
680 //      if (ta->dfs)
681 //              printf("  Default cell = %s\n", ta->cell);
682
683     CString strRight;
684
685     if (ta->nplus > 0) {
686         for (te = ta->pluslist; te; te = te->next) {
687             strNormal.Add(te->name);
688             strNormal.Add(GetRightsString(te->rights, ta->dfs));
689         }
690     }
691
692     if (ta->nminus > 0) {
693         for (te = ta->minuslist; te; te = te->next) {
694             strNegative.Add(te->name);
695             strNegative.Add(GetRightsString(te->rights, ta->dfs));
696         }
697     }
698
699     return TRUE;
700 }
701
702 struct AclEntry *FindList(register struct AclEntry *pCurEntry, const char *entryName)
703 {
704     while (pCurEntry) {
705         if (!foldcmp(pCurEntry->name, PCCHAR(entryName)))
706             return pCurEntry;
707         pCurEntry = pCurEntry->next;
708     }
709     
710     return 0;
711 }
712
713 void ChangeList (struct Acl *pAcl, BYTE bNormalRights, const char *entryName, LONG nEntryRights)
714 {
715     ASSERT(pAcl);
716     ASSERT(entryName);
717     
718     struct AclEntry *pEntry;
719
720     HOURGLASS hourglass;
721
722     pEntry = (bNormalRights ? pAcl->pluslist : pAcl->minuslist);
723     pEntry = FindList(pEntry, entryName);
724
725     /* Found the item already in the list. */
726     if (pEntry) {
727         pEntry->rights = nEntryRights;
728         if (bNormalRights)
729             pAcl->nplus -= PruneList(&pAcl->pluslist, pAcl->dfs);
730         else
731             pAcl->nminus -= PruneList(&pAcl->minuslist, pAcl->dfs);
732         return;
733     }
734
735     /* Otherwise we make a new item and plug in the new data. */
736     pEntry = (struct AclEntry *) malloc(sizeof (struct AclEntry));
737     ASSERT(pEntry);
738         
739     strcpy(pEntry->name, entryName);
740     pEntry->rights = nEntryRights;
741     
742     if (bNormalRights) {
743         pEntry->next = pAcl->pluslist;
744         pAcl->pluslist = pEntry;
745         pAcl->nplus++;
746         if (nEntryRights == 0 || nEntryRights == -1)
747             pAcl->nplus -= PruneList(&pAcl->pluslist, pAcl->dfs);
748     }
749     else {
750         pEntry->next = pAcl->minuslist;
751         pAcl->minuslist = pEntry;
752         pAcl->nminus++;
753         if (nEntryRights == 0)
754             pAcl->nminus -= PruneList(&pAcl->minuslist, pAcl->dfs);
755     }
756 }
757
758 enum rtype {add, destroy, deny};
759
760 LONG Convert(const register char *arights, int dfs, enum rtype *rtypep)
761 {
762     register int i, len;
763     LONG mode;
764     register char tc;
765
766     *rtypep = add;      /* add rights, by default */
767
768     if (!strcmp(arights,"read")) 
769         return PRSFS_READ | PRSFS_LOOKUP;
770     if (!strcmp(arights, "write")) 
771         return PRSFS_READ | PRSFS_LOOKUP | PRSFS_INSERT | PRSFS_DELETE | PRSFS_WRITE | PRSFS_LOCK;
772     if (!strcmp(arights, "mail")) 
773         return PRSFS_INSERT | PRSFS_LOCK | PRSFS_LOOKUP;
774     if (!strcmp(arights, "all")) 
775         return PRSFS_READ | PRSFS_LOOKUP | PRSFS_INSERT | PRSFS_DELETE | PRSFS_WRITE | PRSFS_LOCK | PRSFS_ADMINISTER;
776     
777     if (!strcmp(arights, "none")) {
778         *rtypep = destroy; /* Remove entire entry */
779         return 0;
780     }
781
782     len = strlen(arights);
783     mode = 0;
784
785     for (i = 0; i < len; i++) {
786         tc = *arights++;
787         if (tc == 'r') mode |= PRSFS_READ;
788         else if (tc == 'l') mode |= PRSFS_LOOKUP;
789         else if (tc == 'i') mode |= PRSFS_INSERT;
790         else if (tc == 'd') mode |= PRSFS_DELETE;
791         else if (tc == 'w') mode |= PRSFS_WRITE;
792         else if (tc == 'k') mode |= PRSFS_LOCK;
793         else if (tc == 'a') mode |= PRSFS_ADMINISTER;
794         else {
795             fprintf(stderr, "illegal rights character '%c'.\n", tc);
796             exit(1);
797         }
798     }   
799     return mode;
800 }
801
802 BOOL SaveACL(const CString& strCellName, const CString& strDir, const CStringArray& normal, const CStringArray& negative)
803 {
804     register LONG code;
805     struct ViceIoctl blob;
806     struct Acl *pAcl;
807     LONG rights;
808     enum rtype rtype;
809
810     HOURGLASS hourglass;
811
812     // Create a new ACL
813     pAcl = EmptyAcl(strCellName);
814
815     // Set its normal rights
816     int i;
817     for (i = 0; i < normal.GetSize(); i += 2) {
818         rights = Convert(normal[i + 1], 0, &rtype);
819         ChangeList(pAcl, TRUE, normal[i], rights);
820     }
821
822     // Set its negative rights
823     for (i = 0; i < negative.GetSize(); i += 2) {
824         rights = Convert(negative[i + 1], 0, &rtype);
825         ChangeList(pAcl, FALSE, negative[i], rights);
826     }
827
828     // Write the ACL
829     blob.in = AclToString(pAcl);
830     blob.out_size = 0;
831     blob.in_size = 1 + strlen((const char *)blob.in);
832
833     code = pioctl(PCCHAR(strDir), VIOCSETAL, &blob, 1);
834     if (code) {
835         if (errno == EINVAL)
836             ShowMessageBox(IDS_SAVE_ACL_EINVAL_ERROR, MB_ICONEXCLAMATION, IDS_SAVE_ACL_EINVAL_ERROR, strDir);
837         else
838             ShowMessageBox(IDS_SAVE_ACL_ERROR, MB_ICONEXCLAMATION, IDS_SAVE_ACL_ERROR, strDir, GetAfsError(errno, strDir));
839     }       
840
841     ZapAcl(pAcl);
842
843     return (code == 0);
844 }
845
846 BOOL CopyACL(const CString& strToDir, const CStringArray& normal, const CStringArray& negative, BOOL bClear)
847 {
848     register LONG code;
849     struct ViceIoctl blob;
850     struct Acl *pToAcl;
851     int idf = 0; // getidf(as, parm_copyacl_id);
852
853     HOURGLASS hourglass;
854
855     // Get ACL to copy to
856     blob.out_size = MAXSIZE;
857     blob.in_size = idf;
858     blob.in = blob.out = space;
859         
860     code = pioctl(PCCHAR(strToDir), VIOCGETAL, &blob, 1);
861     if (code) {
862         ShowMessageBox(IDS_ACL_READ_ERROR, MB_ICONEXCLAMATION, IDS_ACL_READ_ERROR, strToDir, GetAfsError(errno, strToDir));
863         return FALSE;
864     }
865         
866     if (bClear) 
867         pToAcl = EmptyAcl(space);
868     else 
869         pToAcl = ParseAcl(space);
870
871     CleanAcl(pToAcl);
872
873     if (pToAcl->dfs) {
874         ShowMessageBox(IDS_NO_DFS_COPY_ACL, MB_ICONEXCLAMATION, IDS_NO_DFS_COPY_ACL, strToDir);
875         ZapAcl(pToAcl);
876         return FALSE;
877     }
878
879     enum rtype rtype;
880
881     // Set normal rights
882     int i;
883     for (i = 0; i < normal.GetSize(); i += 2) {
884         LONG rights = Convert(normal[i + 1], 0, &rtype);
885         ChangeList(pToAcl, TRUE, normal[i], rights);
886     }
887
888     // Set negative rights
889     for (i = 0; i < negative.GetSize(); i += 2) {
890         LONG rights = Convert(negative[i + 1], 0, &rtype);
891         ChangeList(pToAcl, FALSE, normal[i], rights);
892     }
893
894     // Save modified ACL
895     blob.in = AclToString(pToAcl);
896     blob.out_size = 0;
897     blob.in_size = 1 + strlen((char *)blob.in);
898
899     code = pioctl(PCCHAR(strToDir), VIOCSETAL, &blob, 1);
900     if (code) {
901         ZapAcl(pToAcl);
902         if (errno == EINVAL)
903             ShowMessageBox(IDS_COPY_ACL_EINVAL_ERROR, MB_ICONEXCLAMATION, IDS_COPY_ACL_EINVAL_ERROR, strToDir);
904         else 
905             ShowMessageBox(IDS_COPY_ACL_ERROR, MB_ICONEXCLAMATION, IDS_COPY_ACL_ERROR, strToDir, GetAfsError(errno, strToDir));
906         return FALSE;
907     }
908
909     ZapAcl(pToAcl);
910
911     ShowMessageBox(IDS_COPY_ACL_OK, MB_OK, IDS_COPY_ACL_OK);
912
913     return TRUE;
914 }
915
916 CString ParseMountPoint(const CString strFile, CString strMountPoint)
917 {
918     CString strType;
919     CString strVolume;
920     CString strCell;
921     CString strMountPointInfo;
922
923     if (strMountPoint[0] == '#')
924         strType = "Regular";
925     else if (strMountPoint[0] == '%')
926         strType = "Read/Write";
927
928     int nColon = strMountPoint.Find(':');
929     if (nColon >= 0) {
930         strCell = strMountPoint.Mid(1, nColon - 1);
931         strVolume = strMountPoint.Mid(nColon + 1);
932     } else
933         strVolume = strMountPoint.Mid(1);
934
935     strMountPointInfo = strFile + "\t" + strVolume + "\t" + strCell + "\t" + strType;
936
937     return strMountPointInfo;
938 }       
939
940 BOOL ListMount(CStringArray& files)
941 {
942     register LONG code;
943     struct ViceIoctl blob;
944     int error;
945     char orig_name[1024];                       /* Original name, may be modified */
946     char true_name[1024];                       /* ``True'' dirname (e.g., symlink target) */
947     char parent_dir[1024];                      /* Parent directory of true name */
948     register char *last_component;      /* Last component of true name */
949     CStringArray mountPoints;
950     
951     HOURGLASS hourglass;
952
953     error = 0;
954
955     for (int i = 0; i < files.GetSize(); i++) {
956         strcpy(orig_name, files[i]);
957         strcpy(true_name, orig_name);
958
959         /*
960          * Find rightmost slash, if any.
961          */
962         last_component = (char *)strrchr(true_name, '\\');
963         if (last_component) {
964             /*
965              * Found it.  Designate everything before it as the parent directory,
966              * everything after it as the final component.
967              */
968             strncpy(parent_dir, true_name, last_component - true_name + 1);
969             parent_dir[last_component - true_name + 1] = 0;
970             last_component++;   /* Skip the slash */
971         }
972         else {
973             /*
974              * No slash appears in the given file name.  Set parent_dir to the current
975              * directory, and the last component as the given name.
976              */
977             fs_ExtractDriveLetter(true_name, parent_dir);
978             strcat(parent_dir, ".");
979             last_component = true_name;
980             fs_StripDriveLetter(true_name, true_name, sizeof(true_name));
981         }
982
983         blob.in = last_component;
984         blob.in_size = strlen(last_component) + 1;
985         blob.out_size = MAXSIZE;
986         blob.out = space;
987         memset(space, 0, MAXSIZE);
988
989         code = pioctl(parent_dir, VIOC_AFS_STAT_MT_PT, &blob, 1);
990         if (code == 0) {
991             int nPos = strlen(space) - 1;
992             if (space[nPos] == '.')
993                 space[nPos] = 0;
994             mountPoints.Add(ParseMountPoint(StripPath(files[i]), space));
995         } else {
996             error = 1;
997             if (errno == EINVAL)
998                 mountPoints.Add(GetMessageString(IDS_NOT_MOUNT_POINT_ERROR, StripPath(files[i])));
999             else
1000                 mountPoints.Add(GetMessageString(IDS_LIST_MOUNT_POINT_ERROR, GetAfsError(errno, StripPath(files[i]))));
1001         }
1002     }
1003
1004     CMountPointsDlg dlg;
1005     dlg.SetMountPoints(mountPoints);
1006     dlg.DoModal();
1007
1008     return !error;
1009 }
1010
1011 BOOL IsPathInAfs(const CHAR *strPath)
1012 {
1013     struct ViceIoctl blob;
1014     int code;
1015
1016     HOURGLASS hourglass;
1017
1018     blob.in_size = 0;
1019     blob.out_size = MAXSIZE;
1020     blob.out = space;
1021
1022     code = pioctl((LPTSTR)((LPCTSTR)strPath), VIOC_FILE_CELL_NAME, &blob, 1);
1023     if (code)
1024         return FALSE;
1025     return TRUE;
1026 }
1027
1028 /* return a static pointer to a buffer */
1029 static char *Parent(char *apath)
1030 {
1031     register char *tp;
1032
1033     strcpy(tspace, apath);
1034     tp = strrchr(tspace, '\\');
1035     if (tp) {
1036         *(tp+1) = 0;    /* lv trailing slash so Parent("k:\foo") is "k:\" not "k:" */
1037     }
1038     else {
1039         fs_ExtractDriveLetter(apath, tspace);
1040         strcat(tspace, ".");
1041     }
1042     
1043     return tspace;
1044 }
1045
1046 BOOL MakeMount(const CString& strDir, const CString& strVolName, const CString& strCellName, BOOL bRW)
1047 {
1048     register LONG code;
1049     register char *cellName;
1050     char localCellName[1000];
1051     struct ViceIoctl blob;
1052
1053     HOURGLASS hourglass;
1054
1055     ASSERT(strVolName.GetLength() < 64);
1056
1057     /*
1058
1059     defect #3069
1060
1061     if (as->parms[5].items && !as->parms[2].items) {
1062         fprintf(stderr,"fs: must provide cell when creating cellular mount point.\n");
1063         return FALSE;
1064     }
1065     */
1066
1067     if (strCellName.GetLength() > 0)    /* cell name specified */
1068         cellName = PCCHAR(strCellName);
1069     else
1070         cellName = (char *) 0;
1071
1072     if (!IsPathInAfs(Parent(PCCHAR(strDir)))) {
1073         ShowMessageBox(IDS_MAKE_MP_NOT_AFS_ERROR, MB_ICONEXCLAMATION, IDS_MAKE_MP_NOT_AFS_ERROR);
1074         return FALSE;
1075     }
1076
1077     if (cellName) {
1078         blob.in_size = 0;
1079         blob.out_size = MAXSIZE;
1080         blob.out = space;
1081         code = pioctl(Parent(PCCHAR(strDir)), VIOC_FILE_CELL_NAME, &blob, 1);
1082     }   
1083
1084     strcpy(localCellName, (cellName? cellName : space));
1085
1086     if (bRW)    /* if -rw specified */
1087         strcpy(space, "%");
1088     else
1089         strcpy(space, "#");
1090
1091     /* If cellular mount point, prepend cell prefix */
1092     if (cellName) {
1093         strcat(space, localCellName);
1094         strcat(space, ":");
1095     }   
1096
1097     strcat(space, strVolName);  /* append volume name */
1098     strcat(space, ".");         /* stupid convention; these end with a period */
1099
1100     /* create symlink with a special pioctl for Windows NT, since it doesn't
1101      * have a symlink system call.
1102      */
1103     blob.out_size = 0;
1104     blob.in_size = 1 + strlen(space);
1105     blob.in = space;
1106     blob.out = NULL;
1107     code = pioctl(PCCHAR(strDir), VIOC_AFS_CREATE_MT_PT, &blob, 0);
1108
1109     if (code) {
1110         ShowMessageBox(IDS_MOUNT_POINT_ERROR, MB_ICONEXCLAMATION, IDS_MOUNT_POINT_ERROR, GetAfsError(errno, strDir));
1111         return FALSE;
1112     }
1113     
1114     return TRUE;
1115 }
1116
1117 /*
1118 */
1119 long fs_ExtractDriveLetter(const char *inPathp, char *outPathp)
1120 {
1121     if (inPathp[0] != 0 && inPathp[1] == ':') {
1122         /* there is a drive letter */
1123         *outPathp++ = *inPathp++;
1124         *outPathp++ = *inPathp++;
1125         *outPathp++ = 0;
1126     }
1127     else *outPathp = 0;
1128
1129     return 0;
1130 }       
1131
1132 /* strip the drive letter from a component */
1133 long fs_StripDriveLetter(const char *inPathp, char *outPathp, long outSize)
1134 {
1135     char tempBuffer[1000];
1136     strcpy(tempBuffer, inPathp);
1137     if (tempBuffer[0] != 0 && tempBuffer[1] == ':') {
1138         /* drive letter present */
1139         strcpy(outPathp, tempBuffer+2);
1140     }
1141     else {
1142         /* no drive letter present */
1143         strcpy(outPathp, tempBuffer);
1144     }
1145     return 0;
1146 }       
1147
1148
1149 BOOL RemoveSymlink(const char * linkName)
1150 {
1151     BOOL error = FALSE;
1152     INT code=0;
1153     struct ViceIoctl blob;
1154     char tbuffer[1024];
1155     char lsbuffer[1024];
1156     char tpbuffer[1024];
1157     char *tp;
1158     
1159     HOURGLASS hourglass;
1160
1161     tp = (char *) strrchr(linkName, '\\');
1162     if (!tp)
1163         tp = (char *) strrchr(linkName, '/');
1164     if (tp) {
1165         strncpy(tbuffer, linkName, code=tp-linkName+1);  /* the dir name */
1166         tbuffer[code] = 0;
1167         tp++;   /* skip the slash */
1168     }
1169     else {
1170         fs_ExtractDriveLetter(linkName, tbuffer);
1171         strcat(tbuffer, ".");
1172         fs_StripDriveLetter(tp, tpbuffer, 0);
1173         tp=tpbuffer;
1174     }
1175     blob.in = tp;
1176     blob.in_size = strlen(tp)+1;
1177     blob.out = lsbuffer;
1178     blob.out_size = sizeof(lsbuffer);
1179     code = pioctl(tbuffer, VIOC_LISTSYMLINK, &blob, 0);
1180     if (code)
1181         return FALSE;
1182     blob.out_size = 0;
1183     blob.in = tp;
1184     blob.in_size = strlen(tp)+1;
1185     return (pioctl(tbuffer, VIOC_DELSYMLINK, &blob, 0)==0);
1186 }       
1187
1188 BOOL IsSymlink(const char * true_name)
1189 {
1190     char parent_dir[MAXSIZE];           /*Parent directory of true name*/
1191     char strip_name[MAXSIZE];
1192     struct ViceIoctl blob;
1193     char *last_component;
1194     int code;
1195
1196     HOURGLASS hourglass;
1197
1198     last_component = (char *) strrchr(true_name, '\\');
1199     if (!last_component)
1200         last_component = (char *) strrchr(true_name, '/');
1201     if (last_component) {
1202         /*
1203          * Found it.  Designate everything before it as the parent directory,
1204          * everything after it as the final component.
1205          */
1206         strncpy(parent_dir, true_name, last_component - true_name + 1);
1207         parent_dir[last_component - true_name + 1] = 0;
1208         last_component++;   /*Skip the slash*/
1209     }
1210     else {
1211         /*
1212          * No slash appears in the given file name.  Set parent_dir to the current
1213          * directory, and the last component as the given name.
1214          */
1215         fs_ExtractDriveLetter(true_name, parent_dir);
1216         strcat(parent_dir, ".");
1217         last_component = strip_name;
1218         fs_StripDriveLetter(true_name, strip_name, sizeof(strip_name));
1219     }
1220
1221     blob.in = last_component;
1222     blob.in_size = strlen(last_component)+1;
1223     blob.out_size = MAXSIZE;
1224     blob.out = space;
1225     memset(space, 0, MAXSIZE);
1226     code = pioctl(parent_dir, VIOC_LISTSYMLINK, &blob, 1);
1227     return (code==0);
1228 }       
1229
1230
1231 BOOL IsMountPoint(const char * name)
1232 {
1233     register LONG code = 0;
1234     struct ViceIoctl blob;
1235     char tbuffer[1024];
1236     char lsbuffer[1024];
1237     register char *tp;
1238     char szCurItem[1024];
1239     strcpy(szCurItem, name);
1240         
1241     tp = (char *)strrchr(szCurItem, '\\');
1242     if (tp) {
1243         strncpy(tbuffer, szCurItem, code = tp - szCurItem + 1);  /* the dir name */
1244         tbuffer[code] = 0;
1245         tp++;   /* skip the slash */
1246     } else {
1247         fs_ExtractDriveLetter(szCurItem, tbuffer);
1248         strcat(tbuffer, ".");
1249         tp = szCurItem;
1250         fs_StripDriveLetter(tp, tp, 0);
1251     }
1252
1253     blob.in = tp;
1254     blob.in_size = strlen(tp)+1;
1255     blob.out = lsbuffer;
1256     blob.out_size = sizeof(lsbuffer);
1257
1258     code = pioctl(tbuffer, VIOC_AFS_STAT_MT_PT, &blob, 0);
1259
1260     return (code==0);
1261 }       
1262
1263
1264 /*
1265  * Delete AFS mount points.  Variables are used as follows:
1266  *       tbuffer: Set to point to the null-terminated directory name of the mount point
1267  *          (or ``.'' if none is provided)
1268  *      tp: Set to point to the actual name of the mount point to nuke.
1269  */
1270 BOOL RemoveMount(CStringArray& files)
1271 {
1272     register LONG code = 0;
1273     struct ViceIoctl blob;
1274     char tbuffer[1024];
1275     char lsbuffer[1024];
1276     register char *tp;
1277     BOOL error = FALSE;
1278     CStringArray results;
1279     CString str;
1280     CString str2;
1281
1282     HOURGLASS hourglass;
1283
1284     for (int i = 0; i < files.GetSize(); i++) {
1285         if (!IsMountPoint(files[i])) {
1286             error = TRUE;
1287             if (errno == EINVAL)
1288                 results.Add(GetMessageString(IDS_NOT_MOUNT_POINT_ERROR, StripPath(files[i])));
1289             else
1290                 results.Add(GetMessageString(IDS_ERROR, GetAfsError(errno, StripPath(files[i]))));
1291             continue;   // don't bother trying
1292         }
1293
1294         blob.out_size = 0;
1295         blob.in = tp;
1296         blob.in_size = strlen(tp)+1;
1297
1298         code = pioctl(tbuffer, VIOC_AFS_DELETE_MT_PT, &blob, 0);
1299         if (code) {
1300             error = TRUE;
1301             results.Add(GetMessageString(IDS_ERROR, GetAfsError(errno, StripPath(files[i]))));
1302         } else
1303             results.Add(GetMessageString(IDS_DELETED));
1304     }   
1305
1306     LoadString (str, IDS_REMOVE_MP);
1307     LoadString (str2, IDS_REMOVE_MP_COLUMN);
1308     CResultsDlg dlg(REMOVE_MOUNT_POINTS_HELP_ID);
1309     dlg.SetContents(str, str2, StripPath(files), results);
1310     dlg.DoModal();
1311
1312     return !error;
1313 }
1314
1315 BOOL GetVolumeInfo(CString strFile, CVolInfo& volInfo)
1316 {
1317     register LONG code;
1318     struct ViceIoctl blob;
1319     struct VolumeStatus *status;
1320     char *name;
1321
1322     HOURGLASS hourglass;
1323
1324     volInfo.m_strFilePath = strFile;
1325     volInfo.m_strFileName = StripPath(strFile);
1326
1327     /*
1328         volInfo.m_strName = "VolumeName";
1329         volInfo.m_nID = 10;
1330         volInfo.m_nQuota = 20 * 1024 * 1024;
1331         volInfo.m_nNewQuota = volInfo.m_nQuota;
1332         volInfo.m_nUsed = volInfo.m_nQuota / 2;
1333         volInfo.m_nPartSize = 50 * 1024 * 1024;
1334         volInfo.m_nPartFree = 30 * 1024 * 1024;
1335         volInfo.m_nDup = -1;
1336         return TRUE;
1337      */
1338
1339     blob.out_size = MAXSIZE;
1340     blob.in_size = 0;
1341     blob.out = space;
1342
1343     code = pioctl(PCCHAR(strFile), VIOCGETVOLSTAT, &blob, 1);
1344     if (code) {
1345         volInfo.m_strErrorMsg = GetAfsError(errno, strFile);
1346         return FALSE;
1347     }
1348
1349     status = (VolumeStatus *)space;
1350     name = (char *)status + sizeof(*status);
1351
1352     volInfo.m_strName = name;
1353     volInfo.m_nID = status->Vid;
1354     volInfo.m_nQuota = status->MaxQuota;
1355     volInfo.m_nNewQuota = status->MaxQuota;
1356     volInfo.m_nUsed = status->BlocksInUse;
1357     volInfo.m_nPartSize = status->PartMaxBlocks;
1358     volInfo.m_nPartFree = status->PartBlocksAvail;
1359     volInfo.m_nDup = -1;
1360
1361     return TRUE;
1362 }
1363         
1364 BOOL SetVolInfo(CVolInfo& volInfo)
1365 {
1366     register LONG code;
1367     struct ViceIoctl blob;
1368     struct VolumeStatus *status;
1369     char *input;
1370
1371     HOURGLASS hourglass;
1372
1373     blob.out_size = MAXSIZE;
1374     blob.in_size = sizeof(*status) + 3; /* for the three terminating nulls */
1375     blob.out = space;
1376     blob.in = space;
1377
1378     status = (VolumeStatus *)space;
1379     status->MinQuota = -1;
1380     status->MaxQuota = volInfo.m_nNewQuota;
1381         
1382     input = (char *)status + sizeof(*status);
1383     *(input++) = '\0';  /* never set name: this call doesn't change vldb */
1384     *(input++) = '\0';  // No offmsg
1385     *(input++) = '\0';  // No motd
1386
1387 #ifdef LOGGING_ON
1388     FILE *fp = OpenFile(szLogFileName, "a");
1389     if (fp) {
1390         fprintf(fp, "\nSetVolInfo() pioctl parms:\n");
1391         fprintf(fp, "\tpathp = %s\n\topcode = VIOCSETVOLSTAT (%d)\n\tblobp = %ld\n", PCCHAR(volInfo.m_strFilePath), VIOCSETVOLSTAT, &blob);
1392         fprintf(fp, "\t\tblobp.in = %ld (VolumeStatus *status)\n\t\tblobp.in_size = %ld\n\t\tblobp.out = %ld ((VolumeStatus *status))\n\t\tblobp.out_size = %ld\n", blob.in, blob.in_size, blob.out, blob.out_size);
1393         fprintf(fp, "\t\t\tstatus->MinQuota = %ld\n", status->MinQuota);
1394         fprintf(fp, "\t\t\tstatus->MaxQuota = %ld\n", status->MaxQuota);
1395         fprintf(fp, "\t\t\tOther status fields aren't set\n");
1396         fprintf(fp, "\t\t\t3 nulls follow the VolumeStatus structure.\n");
1397         fprintf(fp, "\tfollow = 1\n");
1398         fclose(fp);             
1399     }
1400 #endif
1401
1402     code = pioctl(PCCHAR(volInfo.m_strFilePath), VIOCSETVOLSTAT, &blob, 1);
1403     if (code) {
1404         ShowMessageBox(IDS_SET_QUOTA_ERROR, MB_ICONEXCLAMATION, IDS_SET_QUOTA_ERROR, GetAfsError(errno, volInfo.m_strName));
1405         return FALSE;
1406     }
1407
1408     return TRUE;
1409 }
1410
1411 int GetCellName(char *cellNamep, struct afsconf_cell *infop)
1412 {
1413     strcpy(infop->name, cellNamep);
1414     return 0;
1415 }
1416
1417 BOOL CheckServers(const CString& strCellName, WHICH_CELLS nCellsToCheck, BOOL bFast)
1418 {
1419     register LONG code;
1420     struct ViceIoctl blob;
1421     register LONG j;
1422     LONG temp = 0;
1423     struct afsconf_cell info;
1424     struct chservinfo checkserv;
1425
1426     HOURGLASS hourglass;
1427
1428     memset(&checkserv, 0, sizeof(struct chservinfo));
1429     blob.in_size = sizeof(struct chservinfo);
1430     blob.in = (caddr_t)&checkserv;
1431
1432     blob.out_size = MAXSIZE;
1433     blob.out = space;
1434     memset(space, 0, sizeof(LONG));     /* so we assure zero when nothing is copied back */
1435
1436     /* prepare flags for checkservers command */
1437     if (nCellsToCheck == LOCAL_CELL)
1438         temp = 2;       /* default to checking local cell only */
1439     else if (nCellsToCheck == ALL_CELLS)
1440         temp &= ~2;     /* turn off local cell check */
1441
1442     if (bFast)
1443         temp |= 1;      /* set fast flag */
1444     
1445     checkserv.magic = 0x12345678;       /* XXX */
1446     checkserv.tflags = temp;
1447
1448     /* now copy in optional cell name, if specified */
1449     if (nCellsToCheck == SPECIFIC_CELL) {
1450         GetCellName(PCCHAR(strCellName), &info);
1451         strcpy(checkserv.tbuffer,info.name);
1452         checkserv.tsize = strlen(info.name) + 1;
1453     } else {
1454         strcpy(checkserv.tbuffer, "\0");
1455         checkserv.tsize = 0;
1456     }
1457
1458     checkserv.tinterval = -1;   /* don't change current interval */
1459
1460     code = pioctl(0, VIOCCKSERV, &blob, 1);
1461     if (code) {
1462         ShowMessageBox(IDS_CHECK_SERVERS_ERROR, MB_ICONEXCLAMATION, IDS_CHECK_SERVERS_ERROR, GetAfsError(errno, CString()));
1463         return FALSE;
1464     }
1465
1466     memcpy(&temp, space, sizeof(LONG));
1467
1468     if (temp == 0) {
1469         ShowMessageBox(IDS_ALL_SERVERS_RUNNING, MB_OK, IDS_ALL_SERVERS_RUNNING);
1470         return TRUE;
1471     }
1472
1473     CStringArray servers;
1474     for (j = 0; j < MAXHOSTS; j++) {
1475         memcpy(&temp, space + j * sizeof(LONG), sizeof(LONG));
1476         if (temp == 0)
1477             break;
1478
1479         char *name = hostutil_GetNameByINet(temp);
1480         servers.Add(name);
1481     }
1482
1483     CDownServersDlg dlg;
1484     dlg.SetServerNames(servers);
1485     dlg.DoModal();
1486
1487     return TRUE;
1488 }       
1489
1490 BOOL GetTokenInfo(CStringArray& tokenInfo)
1491 {
1492     int cellNum;
1493     int rc;
1494     time_t current_time;
1495     time_t tokenExpireTime;
1496     char *expireString;
1497     char userName[100];
1498 //      char s[100];
1499     struct ktc_principal serviceName, clientName;
1500     struct ktc_token token;
1501
1502     CString strTokenInfo;
1503     CString strUserName;
1504     CString strCellName;
1505     CString strExpir;
1506
1507 //      tokenInfo.Add("");
1508 //      return TRUE;
1509
1510
1511     HOURGLASS hourglass;
1512
1513 //      printf("\nTokens held by the Cache Manager:\n\n");
1514     cellNum = 0;
1515     current_time = time(0);
1516
1517     while (1) {
1518         rc = ktc_ListTokens(cellNum, &cellNum, &serviceName);
1519         if (rc == KTC_NOENT) {
1520             /* end of list */
1521 //          printf("   --End of list --\n");
1522             break;
1523         }
1524         else if (rc == KTC_NOCM) {
1525             ShowMessageBox(IDS_GET_TOKENS_NO_AFS_SERVICE);
1526 //          printf("AFS service may not have started\n");
1527             break;
1528         }
1529         else if (rc) {
1530             ShowMessageBox(IDS_GET_TOKENS_UNEXPECTED_ERROR, MB_ICONEXCLAMATION, IDS_GET_TOKENS_UNEXPECTED_ERROR, rc);
1531             return FALSE;
1532 //          printf("Unexpected error, code %d\n", rc);
1533 //          exit(1);
1534         }
1535         else {
1536             rc = ktc_GetToken(&serviceName, &token, sizeof(token), &clientName);
1537             if (rc) {
1538                 ShowMessageBox(IDS_GET_TOKENS_UNEXPECTED_ERROR2, MB_ICONEXCLAMATION, IDS_GET_TOKENS_UNEXPECTED_ERROR2, 
1539                                 serviceName.name, serviceName.instance, serviceName.cell, rc);
1540                 continue;
1541             }
1542
1543             tokenExpireTime = token.endTime;
1544
1545             strcpy(userName, clientName.name);
1546             if (clientName.instance[0] != 0) {
1547                 strcat(userName, ".");
1548                 strcat(userName, clientName.instance);
1549             }
1550
1551             BOOL bShowName = FALSE;
1552
1553             if (userName[0] == '\0')
1554                 ; //printf("Tokens");
1555 // AFS ID is not returned at this time.
1556 //          else if (strncmp(userName, "AFS ID", 6) == 0)
1557 //              printf("User's (%s) tokens", userName);
1558 //              sscanf(userName, "(AFS ID %s)", szAfsID);
1559             else if (strncmp(userName, "Unix UID", 8) == 0)
1560                 ; //printf("Tokens");
1561             else
1562                 strUserName = userName;
1563 //              printf("User %s's tokens", userName);
1564                         
1565 //              printf(" for %s%s%s@%s ", serviceName.name, serviceName.instance[0] ? "." : "", serviceName.instance, serviceName.cell);
1566             strCellName = serviceName.cell;
1567                         
1568             if (tokenExpireTime <= current_time)
1569                 strExpir = "[>> Expired <<]";
1570 //              printf("[>> Expired <<]\n");
1571             else {
1572                 expireString = ctime(&tokenExpireTime);
1573                 expireString += 4;       /* Skip day of week */
1574                 expireString[12] = '\0'; /* Omit secs & year */
1575 //              printf("[Expires %s]\n", expireString);
1576                 strExpir.Format("%s", expireString);
1577             }
1578
1579             strTokenInfo = strUserName + "\t" + strCellName + "\t" + strExpir + "\t" + strCellName;
1580             tokenInfo.Add(strTokenInfo);
1581         }
1582     }
1583
1584 //      printf("Press <Enter> or <Return> when finished: ");
1585 //      gets(s);
1586     return TRUE;
1587 }
1588
1589 UINT MakeSymbolicLink(const char *strName ,const char *strDir)
1590 {
1591     struct ViceIoctl blob;
1592     char space[MAXSIZE];
1593     UINT code;
1594
1595     HOURGLASS hourglass;
1596
1597     /*lets confirm its a good symlink*/
1598     if (!IsPathInAfs(strDir))
1599         return 1;
1600     LPTSTR lpsz = new TCHAR[strlen(strDir)+1];
1601     _tcscpy(lpsz, strName);
1602     strcpy(space, strDir);
1603     blob.out_size = 0;
1604     blob.in_size = 1 + strlen(space);
1605     blob.in = space;
1606     blob.out = NULL;
1607     if ((code=pioctl(lpsz, VIOC_SYMLINK, &blob, 0))!=0)
1608         return code;
1609     return 0;
1610 }
1611
1612 void ListSymbolicLinkPath(const char *strName,char *strPath,UINT nlenPath)
1613 {
1614     ASSERT(nlenPath<MAX_PATH);
1615     struct ViceIoctl blob;
1616     char orig_name[MAX_PATH+1];         /*Original name, may be modified*/
1617     char true_name[MAX_PATH+1];         /*``True'' dirname (e.g., symlink target)*/
1618     char parent_dir[MAX_PATH+1];                /*Parent directory of true name*/
1619     char *last_component;       /*Last component of true name*/
1620     UINT code;    
1621
1622     HOURGLASS hourglass;
1623
1624     strcpy(orig_name, strName);
1625     strcpy(true_name, orig_name);
1626         /*
1627          * Find rightmost slash, if any.
1628          */
1629     last_component = (char *) strrchr(true_name, '\\');
1630     if (!last_component)
1631         last_component = (char *) strrchr(true_name, '/');
1632     if (last_component) {
1633             /*
1634              * Found it.  Designate everything before it as the parent directory,
1635              * everything after it as the final component.
1636              */
1637         strncpy(parent_dir, true_name, last_component - true_name + 1);
1638         parent_dir[last_component - true_name + 1] = 0;
1639         last_component++;   /*Skip the slash*/
1640     }
1641     else {
1642         /*
1643          * No slash appears in the given file name.  Set parent_dir to the current
1644          * directory, and the last component as the given name.
1645          */
1646         fs_ExtractDriveLetter(true_name, parent_dir);
1647         strcat(parent_dir, ".");
1648         last_component = true_name;
1649         fs_StripDriveLetter(true_name, true_name, sizeof(true_name));
1650     }
1651     blob.in = last_component;
1652     blob.in_size = strlen(last_component)+1;
1653     blob.out_size = MAXSIZE;
1654     blob.out = space;
1655     memset(space, 0, MAXSIZE);
1656     if ((code = pioctl(parent_dir, VIOC_LISTSYMLINK, &blob, 1)))
1657         strcpy(space,"???");
1658     ASSERT(strlen(space)<MAX_PATH);
1659     strncpy(strPath,space,nlenPath);
1660 }