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