511c42b7d5c2667de7b3acd37e52dd7014b6c0eb
[openafs.git] / src / auth / ktc.c
1 /*
2  * Copyright 2000, International Business Machines Corporation and others.
3  * All Rights Reserved.
4  *
5  * This software has been released under the terms of the IBM Public
6  * License.  For details, see the LICENSE file in the top-level source
7  * directory or online at http://www.openafs.org/dl/license10.html
8  */
9
10 /* ticket caching code */
11
12 #include <afsconfig.h>
13 #include <afs/param.h>
14
15 #include <roken.h>
16
17 #include <afs/stds.h>
18 #include <afs/opr.h>
19 #include <afs/pthread_glock.h>
20 #include <ctype.h>
21
22 #ifdef HAVE_SYS_FILE_H
23 #include <sys/file.h>
24 #endif
25
26 #if defined(UKERNEL)
27 #include "afsincludes.h"
28 #endif
29
30 #ifdef  AFS_AIX_ENV
31 #include <sys/lockf.h>
32 #ifdef AFS_AIX51_ENV
33 #include <sys/cred.h>
34 #ifdef HAVE_SYS_PAG_H
35 #include <sys/pag.h>
36 #endif
37 #endif
38 #endif
39
40 #ifdef HAVE_CRT_EXTERNS_H
41 #include <crt_externs.h>
42 #endif
43
44 #include <afs/vice.h>
45 #include <afs/auth.h>
46 #include <afs/venus.h>
47 #include <afs/afsutil.h>
48
49 #if !defined(UKERNEL)
50 #include <afs/sys_prototypes.h>
51 #endif
52
53 #if defined(AFS_LINUX26_ENV)
54 #include <sys/syscall.h>
55 #if defined(SYS_keyctl)
56 /* Open code this value to avoid a dependency on keyutils */
57 #define KEYCTL_SESSION_TO_PARENT        18
58 #endif
59 #endif
60
61 #include "token.h"
62 #include "ktc.h"
63
64 #ifdef AFS_KERBEROS_ENV
65 #include <afs/cellconfig.h>
66 static char lcell[MAXCELLCHARS];
67
68 #define TKT_ROOT "/tmp/tkt"
69
70 #define KSUCCESS 0
71 #define KFAILURE 255
72
73 /* Definitions for ticket file utilities */
74 #define R_TKT_FIL       0
75 #define W_TKT_FIL       1
76
77 /* Error codes returned by ticket file utilities */
78 #define         NO_TKT_FIL      76      /* No ticket file found */
79 #define         TKT_FIL_ACC     77      /* Couldn't access tkt file */
80 #define         TKT_FIL_LCK     78      /* Couldn't lock ticket file */
81 #define         TKT_FIL_FMT     79      /* Bad ticket file format */
82 #define         TKT_FIL_INI     80      /* afs_tf_init not called first */
83
84 /* Values returned by get_credentials */
85 #define         RET_TKFIL      21       /* Can't read ticket file */
86
87 #ifndef BUFSIZ
88 #define BUFSIZ 4096
89 #endif
90
91 #ifdef  AFS_HPUX_ENV
92 #include <unistd.h>
93 #endif
94 #if     defined(AFS_AIX_ENV) || defined(AFS_SUN5_ENV)
95 static struct flock fileWlock = { F_WRLCK, 0, 0, 0, 0, 0 };
96 static struct flock fileRlock = { F_RDLCK, 0, 0, 0, 0, 0 };
97 static struct flock fileUlock = { F_UNLCK, 0, 0, 0, 0, 0 };
98 #endif
99 #ifdef AFS_HPUX_ENV
100 static struct flock fileWlock = { F_WRLCK, 0, 0, 0, 0 };
101 static struct flock fileRlock = { F_RDLCK, 0, 0, 0, 0 };
102 static struct flock fileUlock = { F_UNLCK, 0, 0, 0, 0 };
103 #endif
104
105 #ifndef EOF
106 #define EOF (-1)
107 #endif
108
109 /* the following routines aren't static anymore on behalf of the kerberos IV
110  * compatibility library built in subtree krb.
111  */
112 int afs_tf_init(char *, int);
113 int afs_tf_get_pname(char *);
114 int afs_tf_get_pinst(char *);
115 int afs_tf_get_cred(struct ktc_principal *, struct ktc_token *);
116 int afs_tf_save_cred(struct ktc_principal *, struct ktc_token *,
117                      struct ktc_principal *);
118 int afs_tf_close(void);
119 int afs_tf_create(char *, char *);
120 int afs_tf_dest_tkt(void);
121 static void ktc_LocalCell(void);
122 #endif /* AFS_KERBEROS_ENV */
123
124 #ifdef AFS_DUX40_ENV
125 #define PIOCTL afs_pioctl
126 #elif defined(UKERNEL)
127 #define PIOCTL(A,B,C,D) (errno = (call_syscall(AFSCALL_PIOCTL,A,B,C,D)), errno?-1:0)
128 #else
129 #define PIOCTL pioctl
130 #endif
131
132 #if !defined(UKERNEL)
133 /* this is a structure used to communicate with the afs cache mgr, but is
134  * otherwise irrelevant */
135 struct ClearToken {
136     afs_int32 AuthHandle;
137     char HandShakeKey[8];
138     afs_int32 ViceId;
139     afs_int32 BeginTimestamp;
140     afs_int32 EndTimestamp;
141 };
142 #endif /* !defined(UKERNEL) */
143
144 #define MAXLOCALTOKENS 4
145
146 static struct {
147     int valid;
148     struct ktc_principal server;
149     struct ktc_principal client;
150     struct ktc_token token;
151 } local_tokens[MAXLOCALTOKENS] = { {
152 0}, {
153 0}, {
154 0}, {
155 0}};
156
157 static int
158 GetToken(struct ktc_principal *aserver, struct ktc_token *atoken,
159           int atokenLen, struct ktc_principal *alicnet, afs_int32 *aviceid);
160
161
162 #define MAXPIOCTLTOKENLEN \
163 (3*sizeof(afs_int32)+MAXKTCTICKETLEN+sizeof(struct ClearToken)+MAXKTCREALMLEN)
164
165 static int
166 SetToken(struct ktc_principal *aserver, struct ktc_token *atoken,
167             struct ktc_principal *aclient, afs_int32 flags)
168 {
169     struct ViceIoctl iob;
170     char tbuffer[MAXPIOCTLTOKENLEN];
171     char *tp;
172     struct ClearToken ct;
173     afs_int32 code;
174     afs_int32 temp;
175
176     if (strcmp(aserver->name, "afs") != 0) {
177         int found = -1;
178         int i;
179         for (i = 0; i < MAXLOCALTOKENS; i++)
180             if (local_tokens[i].valid) {
181                 if ((strcmp(local_tokens[i].server.name, aserver->name) == 0)
182                     &&
183                     (strcmp
184                      (local_tokens[i].server.instance,
185                       aserver->instance) == 0)
186                     && (strcmp(local_tokens[i].server.cell, aserver->cell) ==
187                         0)) {
188                     found = i;  /* replace existing entry */
189                     break;
190                 } else          /* valid, but no match */
191                     ;
192             } else
193                 found = i;      /* remember this empty slot */
194         if (found == -1)
195             return KTC_NOENT;
196         memcpy(&local_tokens[found].token, atoken, sizeof(struct ktc_token));
197         local_tokens[found].server = *aserver;
198         local_tokens[found].client = *aclient;
199         local_tokens[found].valid = 1;
200         return 0;
201     }
202     tp = tbuffer;               /* start copying here */
203     if ((atoken->ticketLen < MINKTCTICKETLEN)
204         || (atoken->ticketLen > MAXKTCTICKETLEN))
205         return KTC_TOOBIG;
206     memcpy(tp, &atoken->ticketLen, sizeof(afs_int32));  /* copy in ticket length */
207     tp += sizeof(afs_int32);
208     memcpy(tp, atoken->ticket, atoken->ticketLen);      /* copy in ticket */
209     tp += atoken->ticketLen;
210     /* next, copy in the "clear token", describing who we are */
211     ct.AuthHandle = atoken->kvno;       /* hide auth handle here */
212     memcpy(ct.HandShakeKey, &atoken->sessionKey, 8);
213
214     ct.BeginTimestamp = atoken->startTime;
215     ct.EndTimestamp = atoken->endTime;
216     if (ct.BeginTimestamp == 0)
217         ct.BeginTimestamp = 1;
218
219     if ((strlen(aclient->name) > strlen("AFS ID "))
220         && (aclient->instance[0] == 0)) {
221         int sign = 1;
222         afs_int32 viceId = 0;
223         char *cp = aclient->name + strlen("AFS ID ");
224         if (*cp == '-') {
225             sign = -1;
226             cp++;
227         }
228         while (*cp) {
229             if (isdigit(*cp))
230                 viceId = viceId * 10 + (int)(*cp - '0');
231             else
232                 goto not_vice_id;
233             cp++;
234         }
235         ct.ViceId = viceId * sign;      /* OK to let any value here? */
236         if (((ct.EndTimestamp - ct.BeginTimestamp) & 1) == 0)
237             ct.BeginTimestamp++;        /* force lifetime to be odd */
238     } else {
239       not_vice_id:
240         ct.ViceId = getuid();   /* wrong, but works in primary cell */
241         if (((ct.EndTimestamp - ct.BeginTimestamp) & 1) == 1)
242             ct.BeginTimestamp++;        /* force lifetime to be even */
243     }
244
245 #ifdef UKERNEL
246     /*
247      * Information needed by the user space cache manager
248      */
249     get_user_struct()->u_expiration = ct.EndTimestamp;
250     get_user_struct()->u_viceid = ct.ViceId;
251 #endif
252
253     temp = sizeof(struct ClearToken);
254     memcpy(tp, &temp, sizeof(afs_int32));
255     tp += sizeof(afs_int32);
256     memcpy(tp, &ct, sizeof(struct ClearToken));
257     tp += sizeof(struct ClearToken);
258
259     /* next copy in primary flag */
260     temp = 0;
261
262     /*
263      * The following means that setpag will happen inside afs just before
264      * the authentication to prevent the setpag/klog race condition.
265      *
266      * The following means that setpag will affect the parent process as
267      * well as the current process.
268      */
269     if (flags & AFS_SETTOK_SETPAG)
270         temp |= 0x8000;
271
272     memcpy(tp, &temp, sizeof(afs_int32));
273     tp += sizeof(afs_int32);
274
275     /* finally copy in the cell name */
276     temp = strlen(aserver->cell);
277     if (temp >= MAXKTCREALMLEN)
278         return KTC_TOOBIG;
279     strcpy(tp, aserver->cell);
280     tp += temp + 1;
281
282     /* now setup for the pioctl */
283     iob.in = tbuffer;
284     iob.in_size = tp - tbuffer;
285     iob.out = tbuffer;
286     iob.out_size = sizeof(tbuffer);
287
288 #if defined(NO_AFS_CLIENT)
289     {
290         int fd;                 /* DEBUG */
291         char *tkfile;
292         if ((tkfile = getenv("TKTFILE"))
293             &&
294             ((fd =
295               open(tkfile, O_WRONLY | O_APPEND | O_TRUNC | O_CREAT,
296                    0644)) >= 0)) {
297             printf("Writing ticket to: %s\n", tkfile);
298             code = (write(fd, iob.in, iob.in_size) != iob.in_size);
299             close(fd);
300         } else
301             code = KTC_PIOCTLFAIL;
302     }
303 #else /* NO_AFS_CLIENT */
304     code = PIOCTL(0, VIOCSETTOK, &iob, 0);
305 #endif /* NO_AFS_CLIENT */
306     if (code)
307         return KTC_PIOCTLFAIL;
308     return 0;
309 }
310
311 int
312 ktc_SetTokenEx(struct ktc_setTokenData *token) {
313     struct ViceIoctl iob;
314     afs_int32 code;
315     XDR xdrs;
316
317     xdrlen_create(&xdrs);
318     if (!xdr_ktc_setTokenData(&xdrs, token))
319         return EINVAL;
320     iob.in_size = xdr_getpos(&xdrs);
321     xdr_destroy(&xdrs);
322
323     iob.in = malloc(iob.in_size);
324     if (iob.in == NULL)
325         return ENOMEM;
326
327     xdrmem_create(&xdrs, iob.in, iob.in_size, XDR_ENCODE);
328     if (!xdr_ktc_setTokenData(&xdrs, token))
329         return KTC_INVAL;
330     xdr_destroy(&xdrs);
331
332     iob.out = NULL;
333     iob.out_size = 0;
334
335     code = PIOCTL(0, VIOC_SETTOK2, &iob, 0);
336
337     free(iob.in);
338
339     /* If we can't use the new pioctl, then fallback to using the old
340      * one, with just the rxkad portion of the token we're being asked to
341      * set
342      */
343     if (code == -1 && errno == EINVAL) {
344         struct ktc_principal server, client;
345         struct ktc_token *rxkadToken;
346         afs_int32 flags;
347
348         /* With the growth of ticket sizes, a ktc_token is now 12k. Don't
349          * allocate it on the stack! */
350         rxkadToken = malloc(sizeof(*rxkadToken));
351         if (rxkadToken == NULL)
352             return ENOMEM;
353
354         code = token_extractRxkad(token, rxkadToken, &flags, &client);
355         if (code) {
356             free(rxkadToken);
357             return KTC_INVAL;
358         }
359
360         memset(&server, 0, sizeof(server));
361         strcpy(server.name, "afs");
362         strcpy(server.cell, token->cell);
363         code = ktc_SetToken(&server, rxkadToken, &client, flags);
364         free(rxkadToken);
365         return code;
366     }
367
368     if (code)
369         return KTC_PIOCTLFAIL;
370 #if defined(AFS_LINUX26_ENV) && defined(SYS_keyctl)
371     else
372         /*
373          * If we're using keyring based PAGs and the SESSION_TO_PARENT keyctl
374          * is available, use it to copy the session keyring to the parent process
375          */
376         if (token->flags & AFS_SETTOK_SETPAG)
377             syscall(SYS_keyctl, KEYCTL_SESSION_TO_PARENT);
378 #endif
379
380     return 0;
381 }
382
383 int
384 ktc_SetToken(struct ktc_principal *aserver,
385     struct ktc_token *atoken,
386     struct ktc_principal *aclient,
387     afs_int32 flags)
388 {
389     int code;
390
391     LOCK_GLOBAL_MUTEX;
392 #ifdef AFS_KERBEROS_ENV
393     if (!lcell[0])
394         ktc_LocalCell();
395
396     if (                        /*!strcmp(aclient->cell, lcell) && this would only store local creds */
397            (strcmp(aserver->name, "AuthServer")
398             || strcmp(aserver->instance, "Admin"))) {
399         if (strcmp(aserver->name, "krbtgt") == 0) {
400             static char lrealm[MAXKTCREALMLEN];
401
402             if (!lrealm[0])
403                 ucstring(lrealm, lcell, MAXKTCREALMLEN);
404             if (strcmp(aserver->instance, lrealm) == 0) {
405                 afs_tf_create(aclient->name, aclient->instance);
406             }
407         }
408
409         code = afs_tf_init(ktc_tkt_string(), W_TKT_FIL);
410         if (code == NO_TKT_FIL) {
411             (void)afs_tf_create(aclient->name, aclient->instance);
412             code = afs_tf_init(ktc_tkt_string(), W_TKT_FIL);
413         }
414
415         if (!code) {
416             afs_tf_save_cred(aserver, atoken, aclient);
417         }
418         afs_tf_close();
419 #ifdef NO_AFS_CLIENT
420         UNLOCK_GLOBAL_MUTEX;
421         return code;
422 #endif /* NO_AFS_CLIENT */
423     }
424 #endif
425
426 #ifndef NO_AFS_CLIENT
427     code = SetToken(aserver, atoken, aclient, flags);
428     if (code) {
429         UNLOCK_GLOBAL_MUTEX;
430         if (code == -1)
431             code = errno;
432         else if (code == KTC_PIOCTLFAIL)
433             code = errno;
434         if (code == ESRCH)
435             return KTC_NOCELL;
436         if (code == EINVAL)
437             return KTC_NOPIOCTL;
438         if (code == EIO)
439             return KTC_NOCM;
440         return KTC_PIOCTLFAIL;
441     }
442 #endif /* NO_AFS_CLIENT */
443     UNLOCK_GLOBAL_MUTEX;
444     return 0;
445 }
446
447 /*!
448  * Get a token, given the cell that we need to get information for
449  *
450  * @param cellName
451  *      The name of the cell we're getting the token for - if NULL, we'll
452  *      get information for the primary cell
453  */
454 int
455 ktc_GetTokenEx(char *cellName, struct ktc_setTokenData **tokenSet) {
456     struct ViceIoctl iob;
457     char tbuffer[MAXPIOCTLTOKENLEN];
458     char *tp;
459     afs_int32 code;
460     XDR xdrs;
461
462     tp = tbuffer;
463
464     /* If we have a cellName, write it out here */
465     if (cellName) {
466         memcpy(tp, cellName, strlen(cellName) +1);
467         tp += strlen(cellName)+1;
468     }
469
470     iob.in = tbuffer;
471     iob.in_size = tp - tbuffer;
472     iob.out = tbuffer;
473     iob.out_size = sizeof(tbuffer);
474
475     code = PIOCTL(0, VIOC_GETTOK2, &iob, 0);
476
477     /* If we can't use the new pioctl, the fall back to the old one. We then
478      * need to convert the rxkad token we get back into the new format
479      */
480     if (code == -1 && errno == EINVAL) {
481         struct ktc_principal server;
482         struct ktc_tokenUnion token;
483         struct ktc_token *ktcToken; /* too huge for the stack */
484         afs_int32 viceid;
485
486         memset(&server, 0, sizeof(server));
487         ktcToken = malloc(sizeof(struct ktc_token));
488         if (ktcToken == NULL)
489             return ENOMEM;
490         memset(ktcToken, 0, sizeof(struct ktc_token));
491
492         strcpy(server.name, "afs");
493         strcpy(server.cell, cellName);
494         code = GetToken(&server, ktcToken, sizeof(struct ktc_token),
495                          NULL /*client*/, &viceid);
496         if (code == 0) {
497             *tokenSet = token_buildTokenJar(cellName);
498             token.at_type = AFSTOKEN_UNION_KAD;
499             token.ktc_tokenUnion_u.at_kad.rk_kvno = ktcToken->kvno;
500             memcpy(token.ktc_tokenUnion_u.at_kad.rk_key,
501                    ktcToken->sessionKey.data, 8);
502
503             token.ktc_tokenUnion_u.at_kad.rk_begintime = ktcToken->startTime;
504             token.ktc_tokenUnion_u.at_kad.rk_endtime   = ktcToken->endTime;
505             token.ktc_tokenUnion_u.at_kad.rk_ticket.rk_ticket_len
506                 = ktcToken->ticketLen;
507             token.ktc_tokenUnion_u.at_kad.rk_ticket.rk_ticket_val
508                 = ktcToken->ticket;
509             token.ktc_tokenUnion_u.at_kad.rk_viceid = viceid;
510
511             token_addToken(*tokenSet, &token);
512
513             memset(ktcToken, 0, sizeof(struct ktc_token));
514         }
515         free(ktcToken);
516         return code;
517     }
518     if (code)
519         return KTC_PIOCTLFAIL;
520
521     *tokenSet = malloc(sizeof(struct ktc_setTokenData));
522     if (*tokenSet == NULL)
523         return ENOMEM;
524     memset(*tokenSet, 0, sizeof(struct ktc_setTokenData));
525
526     xdrmem_create(&xdrs, iob.out, iob.out_size, XDR_DECODE);
527     if (!xdr_ktc_setTokenData(&xdrs, *tokenSet)) {
528         free(*tokenSet);
529         *tokenSet = NULL;
530         xdr_destroy(&xdrs);
531         return EINVAL;
532     }
533     xdr_destroy(&xdrs);
534     return 0;
535 }
536
537 /* get token, given server we need and token buffer.  aclient will eventually
538  * be set to our identity to the server.
539  */
540 int
541 ktc_GetToken(struct ktc_principal *aserver, struct ktc_token *atoken,
542              int atokenLen, struct ktc_principal *aclient)
543 {
544     return GetToken(aserver, atoken, atokenLen, aclient, NULL);
545 }
546
547 static int
548 GetToken(struct ktc_principal *aserver, struct ktc_token *atoken,
549           int atokenLen, struct ktc_principal *aclient, afs_int32 *aviceid)
550 {
551     struct ViceIoctl iob;
552     char tbuffer[MAXPIOCTLTOKENLEN];
553     afs_int32 code = 0;
554     int index;
555     char *stp, *cellp;          /* secret token ptr */
556     struct ClearToken ct;
557     char *tp;
558     afs_int32 temp;
559     int maxLen;                 /* biggest ticket we can copy */
560     int tktLen;                 /* server ticket length */
561 #ifdef AFS_KERBEROS_ENV
562     char found = 0;
563 #endif
564     if (aviceid) {
565         *aviceid = 0;
566     }
567
568     LOCK_GLOBAL_MUTEX;
569
570 #ifdef AFS_KERBEROS_ENV
571     if (!lcell[0])
572         ktc_LocalCell();
573 #endif
574 #ifndef NO_AFS_CLIENT
575     if (strcmp(aserver->name, "afs") != 0)
576 #endif /* NO_AFS_CLIENT */
577     {
578         int i;
579         /* try the local tokens */
580         for (i = 0; i < MAXLOCALTOKENS; i++)
581             if (local_tokens[i].valid
582                 && (strcmp(local_tokens[i].server.name, aserver->name) == 0)
583                 && (strcmp(local_tokens[i].server.instance, aserver->instance)
584                     == 0)
585                 && (strcmp(local_tokens[i].server.cell, aserver->cell) == 0)) {
586                 memcpy(atoken, &local_tokens[i].token,
587                        min(atokenLen, sizeof(struct ktc_token)));
588                 if (aclient)
589                     *aclient = local_tokens[i].client;
590                 UNLOCK_GLOBAL_MUTEX;
591                 return 0;
592             }
593 #ifdef AFS_KERBEROS_ENV
594         if (!afs_tf_init(ktc_tkt_string(), R_TKT_FIL)) {
595             if (aclient) {
596                 if (!afs_tf_get_pname(aclient->name)
597                     && !afs_tf_get_pinst(aclient->instance))
598                     found = 1;
599             } else {
600                 char tmpstring[MAXHOSTCHARS];
601                 afs_tf_get_pname(tmpstring);
602                 afs_tf_get_pinst(tmpstring);
603                 found = 1;
604             }
605         }
606         if (found) {
607             struct ktc_principal cprincipal;
608             struct ktc_token ctoken;
609
610             while (!afs_tf_get_cred(&cprincipal, &ctoken)) {
611                 if (strcmp(cprincipal.name, aserver->name) == 0
612                     && strcmp(cprincipal.instance, aserver->instance) == 0
613                     && strcmp(cprincipal.cell, aserver->cell) == 0) {
614
615                     if (aclient)
616                         strcpy(aclient->cell, lcell);
617                     memcpy(atoken, &ctoken,
618                            min(atokenLen, sizeof(struct ktc_token)));
619
620                     afs_tf_close();
621                     UNLOCK_GLOBAL_MUTEX;
622                     return 0;
623                 }
624             }
625         }
626         afs_tf_close();
627 #endif
628         UNLOCK_GLOBAL_MUTEX;
629         return KTC_NOENT;
630     }
631 #ifndef NO_AFS_CLIENT
632     for (index = 0; index < 200; index++) {     /* sanity check in case pioctl fails */
633         iob.in = (char *)&index;
634         iob.in_size = sizeof(afs_int32);
635         iob.out = tbuffer;
636         iob.out_size = sizeof(tbuffer);
637
638         code = PIOCTL(0, VIOCGETTOK, &iob, 0);
639
640         if (code) {
641             /* failed to retrieve specified token */
642             if (code < 0 && errno == EDOM) {
643                 UNLOCK_GLOBAL_MUTEX;
644                 return KTC_NOENT;
645             }
646         } else {
647             /* token retrieved; parse buffer */
648             tp = tbuffer;
649
650             /* get ticket length */
651             memcpy(&temp, tp, sizeof(afs_int32));
652             tktLen = temp;
653             tp += sizeof(afs_int32);
654
655             /* remember where ticket is and skip over it */
656             stp = tp;
657             tp += tktLen;
658
659             /* get size of clear token and verify */
660             memcpy(&temp, tp, sizeof(afs_int32));
661             if (temp != sizeof(struct ClearToken)) {
662                 UNLOCK_GLOBAL_MUTEX;
663                 return KTC_ERROR;
664             }
665             tp += sizeof(afs_int32);
666
667             /* copy clear token */
668             memcpy(&ct, tp, temp);
669             tp += temp;
670
671             /* skip over primary flag */
672             tp += sizeof(afs_int32);
673
674             /* remember where cell name is */
675             cellp = tp;
676
677             if ((strcmp(cellp, aserver->cell) == 0)
678 #ifdef  AFS_KERBEROS_ENV
679                 || (*aserver->cell == '\0' && strcmp(cellp, lcell) == 0)
680 #endif
681                 ) {
682                 /* got token for cell; check that it will fit */
683                 maxLen =
684                     atokenLen - sizeof(struct ktc_token) + MAXKTCTICKETLEN;
685                 if (maxLen < tktLen) {
686                     UNLOCK_GLOBAL_MUTEX;
687                     return KTC_TOOBIG;
688                 }
689
690                 /* set return values */
691                 memcpy(atoken->ticket, stp, tktLen);
692                 atoken->startTime = ct.BeginTimestamp;
693                 atoken->endTime = ct.EndTimestamp;
694                 if (ct.AuthHandle == -1) {
695                     ct.AuthHandle = 999;
696                 }
697                 atoken->kvno = ct.AuthHandle;
698                 memcpy(&atoken->sessionKey, ct.HandShakeKey,
699                        sizeof(struct ktc_encryptionKey));
700                 atoken->ticketLen = tktLen;
701
702                 if (aclient || aviceid) {
703                     if (aclient) {
704                         strcpy(aclient->cell, cellp);
705                         aclient->instance[0] = 0;
706                     }
707
708                     if ((atoken->kvno == 999) ||        /* old style bcrypt ticket */
709                         (ct.BeginTimestamp &&   /* new w/ prserver lookup */
710                          (((ct.EndTimestamp - ct.BeginTimestamp) & 1) == 1))) {
711                         if (aclient) {
712                             sprintf(aclient->name, "AFS ID %d", ct.ViceId);
713                         }
714                         if (aviceid) {
715                             *aviceid = ct.ViceId;
716                         }
717                     } else if (aclient) {
718                         sprintf(aclient->name, "Unix UID %d", ct.ViceId);
719                     }
720                 }
721                 UNLOCK_GLOBAL_MUTEX;
722                 return 0;
723             }
724         }
725     }
726 #endif /* NO_AFS_CLIENT */
727
728     UNLOCK_GLOBAL_MUTEX;
729     if ((code < 0) && (errno == EINVAL))
730         return KTC_NOPIOCTL;
731     return KTC_PIOCTLFAIL;      /* probable cause */
732 }
733
734 /*
735  * Forget tokens for this server and the calling user.
736  * NOT IMPLEMENTED YET!
737  */
738 #ifndef NO_AFS_CLIENT
739 int
740 ktc_ForgetToken(struct ktc_principal *aserver)
741 {
742     int rc;
743
744     LOCK_GLOBAL_MUTEX;
745     rc = ktc_ForgetAllTokens(); /* bogus, but better */
746     UNLOCK_GLOBAL_MUTEX;
747     return rc;
748 }
749 #endif /* NO_AFS_CLIENT */
750
751 /*!
752  * An iterator which can list all cells with tokens in the cache
753  *
754  * This function may be used to list the names of all cells for which
755  * tokens exist in the current cache. The first time that it is called,
756  * prevIndex should be set to 0. On all subsequent calls, prevIndex
757  * should be set to the value returned in newIndex by the last call
758  * to the function. Note that there is no guarantee that the index value
759  * is monotonically increasing.
760  *
761  * @param prevIndex
762  *      The index returned by the last call, or 0 if this is the first
763  *      call in an iteration
764  * @param newIndex
765  *      A pointer to an int which, upon return, will hold the next value
766  *      to be used.
767  * @param cellName
768  *      A pointer to a char * which, upon return, will hold a cellname.
769  *      This must be freed by the caller using free()
770  */
771
772 int
773 ktc_ListTokensEx(int prevIndex, int *newIndex, char **cellName) {
774     struct ViceIoctl iob;
775     char tbuffer[MAXPIOCTLTOKENLEN];
776     afs_int32 code;
777     afs_int32 index;
778     struct ktc_setTokenData tokenSet;
779     XDR xdrs;
780
781     memset(&tokenSet, 0, sizeof(tokenSet));
782
783     *cellName = NULL;
784     *newIndex = prevIndex;
785
786     index = prevIndex;
787
788     while (index<100) { /* Safety, incase of pioctl failure */
789         memset(tbuffer, 0, sizeof(tbuffer));
790         iob.in = tbuffer;
791         memcpy(tbuffer, &index, sizeof(afs_int32));
792         iob.in_size = sizeof(afs_int32);
793         iob.out = tbuffer;
794         iob.out_size = sizeof(tbuffer);
795
796         code = PIOCTL(0, VIOC_GETTOK2, &iob, 0);
797
798         /* Can't use new pioctl, so must use old one */
799         if (code == -1 && errno == EINVAL) {
800             struct ktc_principal server;
801
802             code = ktc_ListTokens(index, newIndex, &server);
803             if (code == 0)
804                 *cellName = strdup(server.cell);
805             return code;
806         }
807
808         if (code == 0) {
809             /* Got a token from the pioctl. Now we throw it away,
810              * so we can return just a cellname. This is rather wasteful,
811              * but it's what the old API does. Ho hum.  */
812
813             xdrmem_create(&xdrs, iob.out, iob.out_size, XDR_DECODE);
814             if (!xdr_ktc_setTokenData(&xdrs, &tokenSet)) {
815                 xdr_destroy(&xdrs);
816                 return EINVAL;
817             }
818             xdr_destroy(&xdrs);
819             *cellName = strdup(tokenSet.cell);
820             xdr_free((xdrproc_t)xdr_ktc_setTokenData, &tokenSet);
821             *newIndex = index + 1;
822             return 0;
823         }
824         index++;
825     }
826     return KTC_PIOCTLFAIL;
827 }
828
829 /* ktc_ListTokens - list all tokens.  start aprevIndex at 0, it returns the
830  * next rock in (*aindex).  (*aserver) is set to the relevant ticket on
831  * success.  */
832
833 int
834 ktc_ListTokens(int aprevIndex,
835     int *aindex,
836     struct ktc_principal *aserver)
837 {
838     struct ViceIoctl iob;
839     char tbuffer[MAXPIOCTLTOKENLEN];
840     afs_int32 code = 0 ;
841     char *tp;
842     afs_int32 temp, index;
843
844     memset(tbuffer, 0, sizeof(tbuffer));
845
846     LOCK_GLOBAL_MUTEX;
847
848     index = aprevIndex;
849 #ifdef NO_AFS_CLIENT
850     if (index < 214)
851         index = 214;
852 #endif /* NO_AFS_CLIENT */
853 #ifdef AFS_KERBEROS_ENV
854     if (index >= 214) {
855         int i;
856         struct ktc_principal cprincipal;
857         struct ktc_token ctoken;
858
859         if (afs_tf_init(ktc_tkt_string(), R_TKT_FIL)
860             || afs_tf_get_pname(tbuffer) || afs_tf_get_pinst(tbuffer)) {
861             afs_tf_close();
862             UNLOCK_GLOBAL_MUTEX;
863             return KTC_NOENT;
864         }
865
866         for (i = 214; i < index; i++) {
867             if (afs_tf_get_cred(&cprincipal, &ctoken)) {
868                 afs_tf_close();
869                 UNLOCK_GLOBAL_MUTEX;
870                 return KTC_NOENT;
871             }
872         }
873
874       again:
875         if (afs_tf_get_cred(&cprincipal, &ctoken)) {
876             afs_tf_close();
877             UNLOCK_GLOBAL_MUTEX;
878             return KTC_NOENT;
879         }
880         index++;
881
882 #ifndef NO_AFS_CLIENT
883         if (!strcmp(cprincipal.name, "afs") && cprincipal.instance[0] == 0) {
884             goto again;
885         }
886 #endif /* NO_AFS_CLIENT */
887
888         for (i = 0; i < MAXLOCALTOKENS; i++) {
889             if (!strcmp(cprincipal.name, local_tokens[i].server.name)
890                 && !strcmp(cprincipal.instance,
891                            local_tokens[i].server.instance)
892                 && !strcmp(cprincipal.cell, local_tokens[i].server.cell)) {
893                 goto again;
894             }
895         }
896
897         *aserver = cprincipal;
898         *aindex = index;
899         afs_tf_close();
900         UNLOCK_GLOBAL_MUTEX;
901         return 0;
902     }
903 #endif
904
905 #ifndef NO_AFS_CLIENT
906     if (index >= 123) {         /* special hack for returning TCS */
907         while (index - 123 < MAXLOCALTOKENS) {
908             if (local_tokens[index - 123].valid) {
909                 *aserver = local_tokens[index - 123].server;
910                 *aindex = index + 1;
911                 UNLOCK_GLOBAL_MUTEX;
912                 return 0;
913             }
914             index++;
915         }
916         UNLOCK_GLOBAL_MUTEX;
917 #ifdef AFS_KERBEROS_ENV
918         return ktc_ListTokens(214, aindex, aserver);
919 #else
920         return KTC_NOENT;
921 #endif
922     }
923
924     /* get tokens from the kernel */
925     while (index < 200) {       /* sanity check in case pioctl fails */
926         iob.in = (char *)&index;
927         iob.in_size = sizeof(afs_int32);
928         iob.out = tbuffer;
929         iob.out_size = sizeof(tbuffer);
930         code = PIOCTL(0, VIOCGETTOK, &iob, 0);
931         if (code < 0 && errno == EDOM) {
932             if (index < 123) {
933                 int rc;
934                 rc = ktc_ListTokens(123, aindex, aserver);
935                 UNLOCK_GLOBAL_MUTEX;
936                 return rc;
937             } else {
938                 UNLOCK_GLOBAL_MUTEX;
939                 return KTC_NOENT;
940             }
941         }
942         if (code == 0)
943             break;              /* got a ticket */
944         /* otherwise we should skip this ticket slot */
945         index++;
946     }
947     if (code < 0) {
948         UNLOCK_GLOBAL_MUTEX;
949         if (errno == EINVAL)
950             return KTC_NOPIOCTL;
951         return KTC_PIOCTLFAIL;
952     }
953
954     /* parse buffer */
955     tp = tbuffer;
956
957     /* next iterator determined by earlier loop */
958     *aindex = index + 1;
959
960     memcpy(&temp, tp, sizeof(afs_int32));       /* get size of secret token */
961     tp += sizeof(afs_int32);
962     tp += temp;                 /* skip ticket for now */
963     memcpy(&temp, tp, sizeof(afs_int32));       /* get size of clear token */
964     if (temp != sizeof(struct ClearToken)) {
965         UNLOCK_GLOBAL_MUTEX;
966         return KTC_ERROR;
967     }
968     tp += sizeof(afs_int32);    /* skip length */
969     tp += temp;                 /* skip clear token itself */
970     tp += sizeof(afs_int32);    /* skip primary flag */
971     /* tp now points to the cell name */
972     strcpy(aserver->cell, tp);
973     aserver->instance[0] = 0;
974     strcpy(aserver->name, "afs");
975 #endif /* NO_AFS_CLIENT */
976     UNLOCK_GLOBAL_MUTEX;
977     return 0;
978 }
979
980 static int
981 ForgetAll(void)
982 {
983     struct ViceIoctl iob;
984     afs_int32 code;
985     int i;
986
987     for (i = 0; i < MAXLOCALTOKENS; i++)
988         local_tokens[i].valid = 0;
989
990     iob.in = 0;
991     iob.in_size = 0;
992     iob.out = 0;
993     iob.out_size = 0;
994 #ifndef NO_AFS_CLIENT
995     code = PIOCTL(0, VIOCUNPAG, &iob, 0);
996     if (code)
997         return KTC_PIOCTLFAIL;
998 #endif /* NO_AFS_CLIENT */
999     return 0;
1000 }
1001
1002 int
1003 ktc_ForgetAllTokens(void)
1004 {
1005     int ocode;
1006
1007     LOCK_GLOBAL_MUTEX;
1008 #ifdef AFS_KERBEROS_ENV
1009     (void)afs_tf_dest_tkt();
1010 #endif
1011
1012     ocode = ForgetAll();
1013     if (ocode) {
1014         if (ocode == -1)
1015             ocode = errno;
1016         else if (ocode == KTC_PIOCTLFAIL)
1017             ocode = errno;
1018         UNLOCK_GLOBAL_MUTEX;
1019         if (ocode == EINVAL)
1020             return KTC_NOPIOCTL;
1021         return KTC_PIOCTLFAIL;
1022     }
1023     UNLOCK_GLOBAL_MUTEX;
1024     return 0;
1025 }
1026
1027 /* ktc_OldPioctl - returns a boolean true if the kernel supports only the old
1028  * pioctl interface for delivering AFS tickets to the cache manager. */
1029
1030 int
1031 ktc_OldPioctl(void)
1032 {
1033     return 1;
1034 }
1035
1036 afs_uint32
1037 ktc_curpag(void)
1038 {
1039     int code;
1040     struct ViceIoctl iob;
1041     afs_uint32 pag;
1042
1043     /* now setup for the pioctl */
1044     iob.in = NULL;
1045     iob.in_size = 0;
1046     iob.out = (caddr_t) &pag;
1047     iob.out_size = sizeof(afs_uint32);
1048
1049     code = PIOCTL(0, VIOC_GETPAG, &iob, 0);
1050     if (code < 0) {
1051 #if defined(AFS_AIX52_ENV)
1052         code = getpagvalue("afs");
1053         if (code < 0 && errno == EINVAL)
1054             code = 0;
1055         return code;
1056 #elif defined(AFS_AIX51_ENV)
1057         return -1;
1058 #else
1059         gid_t groups[NGROUPS_MAX];
1060         afs_uint32 g0, g1;
1061         afs_uint32 h, l, ret;
1062         int ngroups;
1063 #ifdef AFS_LINUX26_ENV
1064         int i;
1065 #endif
1066
1067         ngroups = getgroups(sizeof groups / sizeof groups[0], groups);
1068
1069 #ifdef AFS_LINUX26_ENV
1070         /* check for AFS_LINUX26_ONEGROUP_ENV PAGs */
1071         for (i = 0; i < ngroups; i++) {
1072             if (((groups[i] >> 24) & 0xff) == 'A') {
1073                 return groups[i];
1074             }
1075         }
1076 #endif
1077
1078         if (ngroups < 2)
1079             return 0;
1080
1081         g0 = groups[0] & 0xffff;
1082         g1 = groups[1] & 0xffff;
1083         g0 -= 0x3f00;
1084         g1 -= 0x3f00;
1085         if (g0 < 0xc000 && g1 < 0xc000) {
1086             l = ((g0 & 0x3fff) << 14) | (g1 & 0x3fff);
1087             h = (g0 >> 14);
1088             h = (g1 >> 14) + h + h + h;
1089             ret = ((h << 28) | l);
1090             /* Additional testing */
1091             if (((ret >> 24) & 0xff) == 'A')
1092                 return ret;
1093             else
1094                 return -1;
1095         }
1096         return -1;
1097 #endif
1098     }
1099     return pag;
1100 }
1101
1102
1103 #ifdef AFS_KERBEROS_ENV
1104  /*
1105   * Copyright 1987, 1988 by the Massachusetts Institute of Technology.
1106   *
1107   * For copying and distribution information, please see the file
1108   * <mit-copyright.h>.
1109   */
1110
1111 #if 0
1112 #include <stdio.h>
1113 #include <errno.h>
1114 #include <sys/types.h>
1115 #include <sys/stat.h>
1116 #include <sys/file.h>
1117 #include <krb.h>
1118 #endif
1119
1120 #define TOO_BIG -1
1121 #define TF_LCK_RETRY ((unsigned)2)      /* seconds to sleep before
1122                                          * retry if ticket file is
1123                                          * locked */
1124
1125 /*
1126  * fd must be initialized to something that won't ever occur as a real
1127  * file descriptor. Since open(2) returns only non-negative numbers as
1128  * valid file descriptors, and afs_tf_init always stuffs the return value
1129  * from open in here even if it is an error flag, we must
1130  *      a. Initialize fd to a negative number, to indicate that it is
1131  *         not initially valid.
1132  *      b. When checking for a valid fd, assume that negative values
1133  *         are invalid (ie. when deciding whether afs_tf_init has been
1134  *         called.)
1135  *      c. In tf_close, be sure it gets reinitialized to a negative
1136  *         number.
1137  */
1138 static int fd = -1;
1139 static int curpos;                      /* Position in tfbfr */
1140 static int lastpos;                     /* End of tfbfr */
1141 static char tfbfr[BUFSIZ];      /* Buffer for ticket data */
1142
1143 static int tf_gets(char *, int);
1144 static int tf_read(char *, int);
1145
1146 /*
1147  * This file contains routines for manipulating the ticket cache file.
1148  *
1149  * The ticket file is in the following format:
1150  *
1151  *      principal's name        (null-terminated string)
1152  *      principal's instance    (null-terminated string)
1153  *      CREDENTIAL_1
1154  *      CREDENTIAL_2
1155  *      ...
1156  *      CREDENTIAL_n
1157  *      EOF
1158  *
1159  *      Where "CREDENTIAL_x" consists of the following fixed-length
1160  *      fields from the CREDENTIALS structure (see "krb.h"):
1161  *
1162  *              char            service[MAXKTCNAMELEN]
1163  *              char            instance[MAXKTCNAMELEN]
1164  *              char            realm[REALM_SZ]
1165  *              C_Block         session
1166  *              int             lifetime
1167  *              int             kvno
1168  *              KTEXT_ST        ticket_st
1169  *              afs_int32            issue_date
1170  *
1171  * Short description of routines:
1172  *
1173  * afs_tf_init() opens the ticket file and locks it.
1174  *
1175  * afs_tf_get_pname() returns the principal's name.
1176  *
1177  * afs_tf_get_pinst() returns the principal's instance (may be null).
1178  *
1179  * afs_tf_get_cred() returns the next CREDENTIALS record.
1180  *
1181  * afs_tf_save_cred() appends a new CREDENTIAL record to the ticket file.
1182  *
1183  * afs_tf_close() closes the ticket file and releases the lock.
1184  *
1185  * tf_gets() returns the next null-terminated string.  It's an internal
1186  * routine used by afs_tf_get_pname(), afs_tf_get_pinst(), and
1187  * afs_tf_get_cred().
1188  *
1189  * tf_read() reads a given number of bytes.  It's an internal routine
1190  * used by afs_tf_get_cred().
1191  */
1192
1193 /*
1194  * afs_tf_init() should be called before the other ticket file routines.
1195  * It takes the name of the ticket file to use, "tf_name", and a
1196  * read/write flag "rw" as arguments.
1197  *
1198  * It tries to open the ticket file, checks the mode, and if everything
1199  * is okay, locks the file.  If it's opened for reading, the lock is
1200  * shared.  If it's opened for writing, the lock is exclusive.
1201  *
1202  * Returns 0 if all went well, otherwise one of the following:
1203  *
1204  * NO_TKT_FIL   - file wasn't there
1205  * TKT_FIL_ACC  - file was in wrong mode, etc.
1206  * TKT_FIL_LCK  - couldn't lock the file, even after a retry
1207  */
1208
1209 int
1210 afs_tf_init(char *tf_name, int rw)
1211 {
1212     int wflag;
1213     int me;
1214     struct stat stat_buf;
1215
1216     switch (rw) {
1217     case R_TKT_FIL:
1218         wflag = 0;
1219         break;
1220     case W_TKT_FIL:
1221         wflag = 1;
1222         break;
1223     default:
1224         return TKT_FIL_ACC;
1225     }
1226     if (lstat(tf_name, &stat_buf) < 0)
1227         switch (errno) {
1228         case ENOENT:
1229             return NO_TKT_FIL;
1230         default:
1231             return TKT_FIL_ACC;
1232         }
1233     me = getuid();
1234     if ((stat_buf.st_uid != me && me != 0)
1235         || ((stat_buf.st_mode & S_IFMT) != S_IFREG))
1236         return TKT_FIL_ACC;
1237
1238     /*
1239      * If "wflag" is set, open the ticket file in append-writeonly mode
1240      * and lock the ticket file in exclusive mode.  If unable to lock
1241      * the file, sleep and try again.  If we fail again, return with the
1242      * proper error message.
1243      */
1244
1245     curpos = sizeof(tfbfr);
1246
1247     if (wflag) {
1248         fd = open(tf_name, O_RDWR, 0600);
1249         if (fd < 0) {
1250             return TKT_FIL_ACC;
1251         }
1252 #if defined(AFS_AIX_ENV) || defined(AFS_HPUX_ENV) || defined(AFS_SUN5_ENV)
1253         if (fcntl(fd, F_SETLK, &fileWlock) == -1) {
1254             sleep(TF_LCK_RETRY);
1255             if (fcntl(fd, F_SETLK, &fileWlock) == -1) {
1256 #else
1257         if (flock(fd, LOCK_EX | LOCK_NB) < 0) {
1258             sleep(TF_LCK_RETRY);
1259             if (flock(fd, LOCK_EX | LOCK_NB) < 0) {
1260 #endif
1261                 (void)close(fd);
1262                 fd = -1;
1263                 return TKT_FIL_LCK;
1264             }
1265         }
1266         return 0;
1267     }
1268     /*
1269      * Otherwise "wflag" is not set and the ticket file should be opened
1270      * for read-only operations and locked for shared access.
1271      */
1272
1273     fd = open(tf_name, O_RDONLY, 0600);
1274     if (fd < 0) {
1275         return TKT_FIL_ACC;
1276     }
1277 #if defined(AFS_AIX_ENV) || defined(AFS_HPUX_ENV) || defined(AFS_SUN5_ENV)
1278     if (fcntl(fd, F_SETLK, &fileRlock) == -1) {
1279         sleep(TF_LCK_RETRY);
1280         if (fcntl(fd, F_SETLK, &fileRlock) == -1) {
1281 #else
1282     if (flock(fd, LOCK_SH | LOCK_NB) < 0) {
1283         sleep(TF_LCK_RETRY);
1284         if (flock(fd, LOCK_SH | LOCK_NB) < 0) {
1285 #endif
1286             (void)close(fd);
1287             fd = -1;
1288             return TKT_FIL_LCK;
1289         }
1290     }
1291     return 0;
1292 }
1293
1294 /*
1295  * afs_tf_get_pname() reads the principal's name from the ticket file. It
1296  * should only be called after afs_tf_init() has been called.  The
1297  * principal's name is filled into the "p" parameter.  If all goes well,
1298  * 0 is returned.  If afs_tf_init() wasn't called, TKT_FIL_INI is
1299  * returned.  If the name was null, or EOF was encountered, or the name
1300  * was longer than MAXKTCNAMELEN, TKT_FIL_FMT is returned.
1301  */
1302
1303 int
1304 afs_tf_get_pname(char *p)
1305 {
1306     if (fd < 0) {
1307         return TKT_FIL_INI;
1308     }
1309     if (tf_gets(p, MAXKTCNAMELEN) < 2)  /* can't be just a null */
1310         return TKT_FIL_FMT;
1311     return 0;
1312 }
1313
1314 /*
1315  * afs_tf_get_pinst() reads the principal's instance from a ticket file.
1316  * It should only be called after afs_tf_init() and afs_tf_get_pname() have
1317  * been called.  The instance is filled into the "inst" parameter.  If all
1318  * goes well, 0 is returned.  If afs_tf_init() wasn't called,
1319  * TKT_FIL_INI is returned.  If EOF was encountered, or the instance
1320  * was longer than MAXKTCNAMELEN, TKT_FIL_FMT is returned.  Note that the
1321  * instance may be null.
1322  */
1323
1324 int
1325 afs_tf_get_pinst(char *inst)
1326 {
1327     if (fd < 0) {
1328         return TKT_FIL_INI;
1329     }
1330     if (tf_gets(inst, MAXKTCNAMELEN) < 1)
1331         return TKT_FIL_FMT;
1332     return 0;
1333 }
1334
1335 /*
1336  * afs_tf_get_cred() reads a CREDENTIALS record from a ticket file and fills
1337  * in the given structure "c".  It should only be called after afs_tf_init(),
1338  * afs_tf_get_pname(), and afs_tf_get_pinst() have been called. If all goes
1339  * well, 0 is returned.  Possible error codes are:
1340  *
1341  * TKT_FIL_INI  - afs_tf_init wasn't called first
1342  * TKT_FIL_FMT  - bad format
1343  * EOF          - end of file encountered
1344  */
1345
1346 int
1347 afs_tf_get_cred(struct ktc_principal *principal, struct ktc_token *token)
1348 {
1349     int k_errno;
1350     int kvno, lifetime;
1351     long mit_compat;            /* MIT Kerberos 5 with Krb4 uses a "long" for issue_date */
1352
1353     if (fd < 0) {
1354         return TKT_FIL_INI;
1355     }
1356     if ((k_errno = tf_gets(principal->name, MAXKTCNAMELEN)) < 2)
1357         switch (k_errno) {
1358         case TOO_BIG:
1359         case 1:         /* can't be just a null */
1360             return TKT_FIL_FMT;
1361         case 0:
1362             return EOF;
1363         }
1364     if ((k_errno = tf_gets(principal->instance, MAXKTCNAMELEN)) < 1)
1365         switch (k_errno) {
1366         case TOO_BIG:
1367             return TKT_FIL_FMT;
1368         case 0:
1369             return EOF;
1370         }
1371     if ((k_errno = tf_gets(principal->cell, MAXKTCREALMLEN)) < 2)
1372         switch (k_errno) {
1373         case TOO_BIG:
1374         case 1:         /* can't be just a null */
1375             return TKT_FIL_FMT;
1376         case 0:
1377             return EOF;
1378         }
1379     lcstring(principal->cell, principal->cell, MAXKTCREALMLEN);
1380     if (tf_read((char *)&(token->sessionKey), 8) < 1
1381         || tf_read((char *)&(lifetime), sizeof(lifetime)) < 1
1382         || tf_read((char *)&(kvno), sizeof(kvno)) < 1
1383         || tf_read((char *)&(token->ticketLen), sizeof(token->ticketLen))
1384         < 1 ||
1385         /* don't try to read a silly amount into ticket->dat */
1386         token->ticketLen > MAXKTCTICKETLEN
1387         || tf_read((char *)(token->ticket), token->ticketLen) < 1
1388         || tf_read((char *)&mit_compat, sizeof(mit_compat)) < 1) {
1389         return TKT_FIL_FMT;
1390     }
1391     token->startTime = mit_compat;
1392     token->endTime = life_to_time(token->startTime, lifetime);
1393     token->kvno = kvno;
1394     return 0;
1395 }
1396
1397 /*
1398  * tf_close() closes the ticket file and sets "fd" to -1. If "fd" is
1399  * not a valid file descriptor, it just returns.  It also clears the
1400  * buffer used to read tickets.
1401  *
1402  * The return value is not defined.
1403  */
1404
1405 int
1406 afs_tf_close(void)
1407 {
1408     if (!(fd < 0)) {
1409 #if defined(AFS_AIX_ENV) || defined(AFS_HPUX_ENV) || defined(AFS_SUN5_ENV)
1410         (void)fcntl(fd, F_SETLK, &fileUlock);
1411 #else
1412         (void)flock(fd, LOCK_UN);
1413 #endif
1414         (void)close(fd);
1415         fd = -1;                /* see declaration of fd above */
1416     }
1417     memset(tfbfr, 0, sizeof(tfbfr));
1418     return 0;
1419 }
1420
1421 /*
1422  * tf_gets() is an internal routine.  It takes a string "s" and a count
1423  * "n", and reads from the file until either it has read "n" characters,
1424  * or until it reads a null byte. When finished, what has been read exists
1425  * in "s".
1426  *
1427  * Possible return values are:
1428  *
1429  * n            the number of bytes read (including null terminator)
1430  *              when all goes well
1431  *
1432  * 0            end of file or read error
1433  *
1434  * TOO_BIG      if "count" characters are read and no null is
1435  *              encountered. This is an indication that the ticket
1436  *              file is seriously ill.
1437  */
1438
1439 static int
1440 tf_gets(char *s, int n)
1441 {
1442     int count;
1443
1444     if (fd < 0) {
1445         return TKT_FIL_INI;
1446     }
1447     for (count = n - 1; count > 0; --count) {
1448         if (curpos >= sizeof(tfbfr)) {
1449             lastpos = read(fd, tfbfr, sizeof(tfbfr));
1450             curpos = 0;
1451         }
1452         if (curpos == lastpos) {
1453             return 0;
1454         }
1455         *s = tfbfr[curpos++];
1456         if (*s++ == '\0')
1457             return (n - count);
1458     }
1459     return TOO_BIG;
1460 }
1461
1462 /*
1463  * tf_read() is an internal routine.  It takes a string "s" and a count
1464  * "n", and reads from the file until "n" bytes have been read.  When
1465  * finished, what has been read exists in "s".
1466  *
1467  * Possible return values are:
1468  *
1469  * n            the number of bytes read when all goes well
1470  *
1471  * 0            on end of file or read error
1472  */
1473
1474 static int
1475 tf_read(char *s, int n)
1476 {
1477     int count;
1478
1479     for (count = n; count > 0; --count) {
1480         if (curpos >= sizeof(tfbfr)) {
1481             lastpos = read(fd, tfbfr, sizeof(tfbfr));
1482             curpos = 0;
1483         }
1484         if (curpos == lastpos) {
1485             return 0;
1486         }
1487         *s++ = tfbfr[curpos++];
1488     }
1489     return n;
1490 }
1491
1492 /*
1493  * afs_tf_save_cred() appends an incoming ticket to the end of the ticket
1494  * file.  You must call afs_tf_init() before calling afs_tf_save_cred().
1495  *
1496  * The "service", "instance", and "realm" arguments specify the
1497  * server's name; "aticket" contains the credential.
1498  *
1499  * Returns 0 if all goes well, TKT_FIL_INI if afs_tf_init() wasn't
1500  * called previously, and KFAILURE for anything else that went wrong.
1501  */
1502
1503 int
1504 afs_tf_save_cred(struct ktc_principal *aserver,
1505                  struct ktc_token *atoken,
1506                  struct ktc_principal *aclient)
1507 {
1508     char realm[MAXKTCREALMLEN + 1];
1509     char junk[MAXKTCNAMELEN];
1510     struct ktc_principal principal;
1511     struct ktc_token token;
1512     int status;
1513     off_t start;
1514     int lifetime, kvno;
1515     int count;                  /* count for write */
1516     long mit_compat;            /* MIT Kerberos 5 with Krb4 uses a "long" for issue_date */
1517
1518     if (fd < 0) {               /* fd is ticket file as set by afs_tf_init */
1519         return TKT_FIL_INI;
1520     }
1521
1522     ucstring(realm, aserver->cell, MAXKTCREALMLEN);
1523     realm[MAXKTCREALMLEN] = '\0';
1524
1525     /* Look for a duplicate ticket */
1526     (void)lseek(fd, (off_t) 0L, 0);
1527     curpos = sizeof(tfbfr);
1528
1529     if (afs_tf_get_pname(junk) || strcmp(junk, aclient->name)
1530         || afs_tf_get_pinst(junk) || strcmp(junk, aclient->instance))
1531         goto bad;
1532
1533     do {
1534         start = lseek(fd, (off_t) 0L, 1) - lastpos + curpos;
1535         status = afs_tf_get_cred(&principal, &token);
1536     } while (status == 0
1537              && (strcmp(aserver->name, principal.name) != 0
1538                  || strcmp(aserver->instance, principal.instance) != 0
1539                  || strcmp(aserver->cell, principal.cell) != 0));
1540
1541     /*
1542      * Two tickets for the same user authenticating to the same service
1543      * should be the same length, but we check here just to make sure.
1544      */
1545     if (status == 0 && token.ticketLen != atoken->ticketLen)
1546         return KFAILURE;
1547     if (status && status != EOF)
1548         return status;
1549
1550     /* Position over the credential we just matched (or the EOF) */
1551     lseek(fd, start, 0);
1552     curpos = lastpos = sizeof(tfbfr);
1553
1554     /* Write the ticket and associated data */
1555     /* Service */
1556     count = strlen(aserver->name) + 1;
1557     if (write(fd, aserver->name, count) != count)
1558         goto bad;
1559     /* Instance */
1560     count = strlen(aserver->instance) + 1;
1561     if (write(fd, aserver->instance, count) != count)
1562         goto bad;
1563     /* Realm */
1564     count = strlen(realm) + 1;
1565     if (write(fd, realm, count) != count)
1566         goto bad;
1567     /* Session key */
1568     if (write(fd, (char *)&atoken->sessionKey, 8) != 8)
1569         goto bad;
1570     /* Lifetime */
1571     lifetime = time_to_life(atoken->startTime, atoken->endTime);
1572     if (write(fd, (char *)&lifetime, sizeof(int)) != sizeof(int))
1573         goto bad;
1574     /* Key vno */
1575     kvno = atoken->kvno;
1576     if (write(fd, (char *)&kvno, sizeof(int)) != sizeof(int))
1577         goto bad;
1578     /* Tkt length */
1579     if (write(fd, (char *)&(atoken->ticketLen), sizeof(int)) != sizeof(int))
1580         goto bad;
1581     /* Ticket */
1582     count = atoken->ticketLen;
1583     if (write(fd, atoken->ticket, count) != count)
1584         goto bad;
1585     /* Issue date */
1586     mit_compat = atoken->startTime;
1587     if (write(fd, (char *)&mit_compat, sizeof(mit_compat))
1588         != sizeof(mit_compat))
1589         goto bad;
1590
1591     /* Actually, we should check each write for success */
1592     return (0);
1593   bad:
1594     return (KFAILURE);
1595 }
1596
1597 /*
1598  * Copyright 1985, 1986, 1987, 1988 by the Massachusetts Institute
1599  * of Technology.
1600  *
1601  * For copying and distribution information, please see the file
1602  * <mit-copyright.h>.
1603  */
1604
1605 /*
1606  * This routine is used to generate the name of the file that holds
1607  * the user's cache of server tickets and associated session keys.
1608  *
1609  * If it is set, krb_ticket_string contains the ticket file name.
1610  * Otherwise, the filename is constructed as follows:
1611  *
1612  * If it is set, the environment variable "KRBTKFILE" will be used as
1613  * the ticket file name.  Otherwise TKT_ROOT (defined in "krb.h") and
1614  * the user's uid are concatenated to produce the ticket file name
1615  * (e.g., "/tmp/tkt123").  A pointer to the string containing the ticket
1616  * file name is returned.
1617  */
1618
1619 static char krb_ticket_string[4096] = "";
1620
1621 char *
1622 ktc_tkt_string(void)
1623 {
1624     return ktc_tkt_string_uid(getuid());
1625 }
1626
1627 char *
1628 ktc_tkt_string_uid(afs_uint32 uid)
1629 {
1630     char *env;
1631
1632     LOCK_GLOBAL_MUTEX;
1633     if (!*krb_ticket_string) {
1634         if ((env = getenv("KRBTKFILE"))) {
1635             (void)strncpy(krb_ticket_string, env,
1636                           sizeof(krb_ticket_string) - 1);
1637             krb_ticket_string[sizeof(krb_ticket_string) - 1] = '\0';
1638         } else {
1639             /* 32 bits of signed integer will always fit in 11 characters
1640              * (including the sign), so no need to worry about overflow */
1641             (void)sprintf(krb_ticket_string, "%s%d", TKT_ROOT, uid);
1642         }
1643     }
1644     UNLOCK_GLOBAL_MUTEX;
1645     return krb_ticket_string;
1646 }
1647
1648 /*
1649  * This routine is used to set the name of the file that holds the user's
1650  * cache of server tickets and associated session keys.
1651  *
1652  * The value passed in is copied into local storage.
1653  *
1654  * NOTE:  This routine should be called during initialization, before other
1655  * Kerberos routines are called; otherwise tkt_string() above may be called
1656  * and return an undesired ticket file name until this routine is called.
1657  */
1658
1659 void
1660 ktc_set_tkt_string(char * val)
1661 {
1662
1663     LOCK_GLOBAL_MUTEX;
1664     (void)strncpy(krb_ticket_string, val, sizeof(krb_ticket_string) - 1);
1665     krb_ticket_string[sizeof(krb_ticket_string) - 1] = '\0';
1666     UNLOCK_GLOBAL_MUTEX;
1667     return;
1668 }
1669
1670 /*
1671  * tf_create() is used to initialize the ticket store.  It creates the
1672  * file to contain the tickets and writes the given user's name "pname"
1673  * and instance "pinst" in the file.  in_tkt() returns KSUCCESS on
1674  * success, or KFAILURE if something goes wrong.
1675  */
1676
1677 int
1678 afs_tf_create(char *pname, char *pinst)
1679 {
1680     int tktfile;
1681     int me, metoo;
1682     int count;
1683     char *file = ktc_tkt_string();
1684     int fd;
1685     int i;
1686     char zerobuf[1024];
1687     struct stat sbuf;
1688
1689     me = getuid();
1690     metoo = geteuid();
1691
1692     if (lstat(file, &sbuf) == 0) {
1693         if ((sbuf.st_uid != me && me != 0)
1694             || ((sbuf.st_mode & S_IFMT) != S_IFREG) || sbuf.st_mode & 077) {
1695             return KFAILURE;
1696         }
1697         /* file already exists, and permissions appear ok, so nuke it */
1698         if ((fd = open(file, O_RDWR, 0)) < 0)
1699             goto out;           /* can't zero it, but we can still try truncating it */
1700
1701         memset(zerobuf, 0, sizeof(zerobuf));
1702
1703         for (i = 0; i < sbuf.st_size; i += sizeof(zerobuf))
1704             if (write(fd, zerobuf, sizeof(zerobuf)) != sizeof(zerobuf)) {
1705                 (void)fsync(fd);
1706                 (void)close(fd);
1707                 goto out;
1708             }
1709
1710         (void)fsync(fd);
1711         (void)close(fd);
1712     }
1713
1714   out:
1715     /* arrange so the file is owned by the ruid
1716      * (swap real & effective uid if necessary).
1717      * This isn't a security problem, since the ticket file, if it already
1718      * exists, has the right uid (== ruid) and mode. */
1719     if (me != metoo) {
1720         if (setreuid(metoo, me) < 0) {
1721             return (KFAILURE);
1722         }
1723     }
1724     tktfile = creat(file, 0600);
1725     if (me != metoo) {
1726         if (setreuid(me, metoo) < 0) {
1727             /* can't switch??? fail! */
1728             return (KFAILURE);
1729         }
1730     }
1731     if (tktfile < 0) {
1732         return (KFAILURE);
1733     }
1734     count = strlen(pname) + 1;
1735     if (write(tktfile, pname, count) != count) {
1736         (void)close(tktfile);
1737         return (KFAILURE);
1738     }
1739     count = strlen(pinst) + 1;
1740     if (write(tktfile, pinst, count) != count) {
1741         (void)close(tktfile);
1742         return (KFAILURE);
1743     }
1744     (void)close(tktfile);
1745     return (KSUCCESS);
1746 }
1747
1748 /*
1749  * dest_tkt() is used to destroy the ticket store upon logout.
1750  * If the ticket file does not exist, dest_tkt() returns RET_TKFIL.
1751  * Otherwise the function returns 0 on success, KFAILURE on
1752  * failure.
1753  */
1754
1755 int
1756 afs_tf_dest_tkt(void)
1757 {
1758     char *file = ktc_tkt_string();
1759     int i, fd;
1760     struct stat statb;
1761     char buf[BUFSIZ];
1762
1763     errno = 0;
1764     if (lstat(file, &statb) < 0)
1765         goto out;
1766
1767     if (!(statb.st_mode & S_IFREG))
1768         goto out;
1769
1770     if ((fd = open(file, O_RDWR, 0)) < 0)
1771         goto out;
1772
1773     memset(buf, 0, BUFSIZ);
1774
1775     for (i = 0; i < statb.st_size; i += BUFSIZ)
1776         if (write(fd, buf, BUFSIZ) != BUFSIZ) {
1777             (void)fsync(fd);
1778             (void)close(fd);
1779             goto out;
1780         }
1781
1782     (void)fsync(fd);
1783     (void)close(fd);
1784
1785     (void)unlink(file);
1786
1787   out:
1788     if (errno == ENOENT)
1789         return RET_TKFIL;
1790     else if (errno != 0)
1791         return KFAILURE;
1792     return 0;
1793 }
1794
1795 int
1796 ktc_newpag(void)
1797 {
1798 #if !defined(AFS_DARWIN100_ENV) || defined(HAVE_CRT_EXTERNS_H)
1799 # if defined(AFS_DARWIN100_ENV)
1800 #  define environ (*_NSGetEnviron())
1801 # else
1802 extern char **environ;
1803 # endif
1804
1805     afs_uint32 pag;
1806     struct stat sbuf;
1807     char fname[256], *prefix = "/ticket/";
1808     char fname5[256], *prefix5 = "FILE:/ticket/krb5cc_";
1809     int numenv;
1810     char **newenv, **senv, **denv;
1811
1812     LOCK_GLOBAL_MUTEX;
1813     if (stat("/ticket", &sbuf) == -1) {
1814         prefix = "/tmp/tkt";
1815         prefix5 = "FILE:/tmp/krb5cc_";
1816     }
1817
1818     pag = ktc_curpag() & 0xffffffff;
1819     if (pag == -1) {
1820         sprintf(fname, "%s%d", prefix, getuid());
1821         sprintf(fname5, "%s%d", prefix5, getuid());
1822     } else {
1823         sprintf(fname, "%sp%lu", prefix, afs_printable_uint32_lu(pag));
1824         sprintf(fname5, "%sp%lud", prefix5, afs_printable_uint32_lu(pag));
1825     }
1826     ktc_set_tkt_string(fname);
1827
1828     for (senv = environ, numenv = 0; *senv; senv++)
1829         numenv++;
1830     newenv = (char **)malloc((numenv + 2) * sizeof(char *));
1831
1832     for (senv = environ, denv = newenv; *senv; senv++) {
1833         if (strncmp(*senv, "KRBTKFILE=", 10) != 0 &&
1834             strncmp(*senv, "KRB5CCNAME=", 11) != 0)
1835             *denv++ = *senv;
1836     }
1837
1838     *denv = malloc(10+11 + strlen(fname) + strlen(fname5) + 2);
1839     strcpy(*denv, "KRBTKFILE=");
1840     strcat(*denv, fname);
1841     *(denv+1) = *denv + strlen(*denv) + 1;
1842     denv++;
1843     strcpy(*denv, "KRB5CCNAME=");
1844     strcat(*denv, fname5);
1845     *++denv = 0;
1846     environ = newenv;
1847     UNLOCK_GLOBAL_MUTEX;
1848 #endif
1849     return 0;
1850 }
1851
1852 /*
1853  * BLETCH!  We have to invoke the entire afsconf package just to
1854  * find out what the local cell is.
1855  */
1856 static void
1857 ktc_LocalCell(void)
1858 {
1859     int code = 0;
1860     struct afsconf_dir *conf;
1861
1862     if ((conf = afsconf_Open(AFSDIR_CLIENT_ETC_DIRPATH))
1863         || (conf = afsconf_Open(AFSDIR_SERVER_ETC_DIRPATH))) {
1864         code = afsconf_GetLocalCell(conf, lcell, sizeof(lcell));
1865         afsconf_Close(conf);
1866     }
1867     if (!conf || code) {
1868         printf("** Can't determine local cell name!\n");
1869     }
1870 }
1871
1872 #endif