aklog: Actually use new get_realm_from_cred fn
[openafs.git] / src / aklog / aklog.c
1 /* 
2  * $Id$
3  *
4  * Copyright 1990,1991 by the Massachusetts Institute of Technology
5  * For distribution and copying rights, see the file "mit-copyright.h"
6  */
7 /*
8  * Copyright (c) 2005, 2006                                     
9  * The Linux Box Corporation                                    
10  * ALL RIGHTS RESERVED                                          
11  *                                                              
12  * Permission is granted to use, copy, create derivative works  
13  * and redistribute this software and such derivative works     
14  * for any purpose, so long as the name of the Linux Box        
15  * Corporation is not used in any advertising or publicity      
16  * pertaining to the use or distribution of this software       
17  * without specific, written prior authorization.  If the       
18  * above copyright notice or any other identification of the    
19  * Linux Box Corporation is included in any copy of any         
20  * portion of this software, then the disclaimer below must     
21  * also be included.                                            
22  *                                                              
23  * This software is provided as is, without representation      
24  * from the Linux Box Corporation as to its fitness for any     
25  * purpose, and without warranty by the Linux Box Corporation   
26  * of any kind, either express or implied, including            
27  * without limitation the implied warranties of                 
28  * merchantability and fitness for a particular purpose.  The   
29  * regents of the Linux Box Corporation shall not be liable     
30  * for any damages, including special, indirect, incidental, or 
31  * consequential damages, with respect to any claim arising     
32  * out of or in connection with the use of the software, even   
33  * if it has been or is hereafter advised of the possibility of 
34  * such damages.                                                
35  */
36
37 #include <afsconfig.h>
38
39 #include <stdio.h>
40 #include <string.h>
41 #include <ctype.h>
42 #include <sys/types.h>
43 #ifdef HAVE_UNISTD_H
44 #include <unistd.h>
45 #endif
46 #ifdef HAVE_STDLIB_H
47 #include <stdlib.h>
48 #endif
49 #ifdef HAVE_MEMORY_H
50 #include <memory.h>
51 #endif
52 #include <errno.h>
53
54 #include <sys/stat.h>
55 #include <fcntl.h>
56
57 #include <sys/param.h>
58 #include <sys/errno.h>
59 #include <netdb.h>
60 #include <sys/socket.h>
61 #include <netinet/in.h>
62 #include <arpa/inet.h>
63 #include <pwd.h>
64
65 #include <afs/stds.h>
66 #include <krb5.h>
67 #if defined(HAVE_ET_COM_ERR_H)
68 #include <et/com_err.h>
69 #else
70 #include <com_err.h>
71 #endif
72
73 #ifndef HAVE_KERBEROSV_HEIM_ERR_H
74 #include <afs/com_err.h>
75 #endif
76
77 #include <afs/param.h>
78 #ifdef AFS_SUN5_ENV
79 #include <sys/ioccom.h>
80 #endif
81
82 /* Prevent inclusion of des.h to avoid conflicts with des types */
83 #define NO_DES_H_INCLUDE
84
85 #include <afs/auth.h>
86 #include <afs/cellconfig.h>
87 #include <afs/vice.h>
88 #include <afs/venus.h>
89 #include <afs/ptserver.h>
90 #include <afs/ptuser.h>
91 #include <afs/dirpath.h>
92
93 #include "aklog.h"
94 #include "linked_list.h"
95
96 #ifdef HAVE_KRB5_CREDS_KEYBLOCK
97 #define USING_MIT 1
98 #endif
99 #ifdef HAVE_KRB5_CREDS_SESSION
100 #define USING_HEIMDAL 1
101 #endif
102
103 #define AFSKEY "afs"
104 #define AFSINST ""
105
106 #ifndef AFS_TRY_FULL_PRINC
107 #define AFS_TRY_FULL_PRINC 1
108 #endif /* AFS_TRY_FULL_PRINC */
109
110 #define AKLOG_TRYAGAIN -1
111 #define AKLOG_SUCCESS 0
112 #define AKLOG_USAGE 1
113 #define AKLOG_SOMETHINGSWRONG 2
114 #define AKLOG_AFS 3
115 #define AKLOG_KERBEROS 4
116 #define AKLOG_TOKEN 5
117 #define AKLOG_BADPATH 6
118 #define AKLOG_MISC 7
119
120 #ifndef NULL
121 #define NULL 0
122 #endif
123
124 #ifndef TRUE
125 #define TRUE 1
126 #endif
127
128 #ifndef FALSE
129 #define FALSE 0
130 #endif
131
132 #ifndef MAXSYMLINKS
133 /* RedHat 4.x doesn't seem to define this */
134 #define MAXSYMLINKS     5
135 #endif
136
137 #define DIR '/'                 /* Character that divides directories */
138 #define DIRSTRING "/"           /* String form of above */
139 #define VOLMARKER ':'           /* Character separating cellname from mntpt */
140 #define VOLMARKERSTRING ":"     /* String form of above */
141
142 typedef struct {
143     char cell[BUFSIZ];
144     char realm[REALM_SZ];
145 } cellinfo_t;
146
147 static krb5_ccache  _krb425_ccache = NULL;
148
149 /*
150  * Why doesn't AFS provide these prototypes?
151  */
152
153 extern int pioctl(char *, afs_int32, struct ViceIoctl *, afs_int32);
154
155 /*
156  * Other prototypes
157  */
158
159 extern char *afs_realm_of_cell(krb5_context, struct afsconf_cell *, int);
160 static int isdir(char *, unsigned char *);
161 static krb5_error_code get_credv5(krb5_context context, char *, char *,
162                                   char *, krb5_creds **);
163 static int get_user_realm(krb5_context, char **);
164
165 #define TRYAGAIN(x) (x == AKLOG_TRYAGAIN || \
166                      x == KRB5KDC_ERR_S_PRINCIPAL_UNKNOWN || \
167                      x == KRB5KRB_ERR_GENERIC)
168
169 #if defined(HAVE_KRB5_PRINC_SIZE) || defined(krb5_princ_size)
170
171 #define get_princ_str(c, p, n) krb5_princ_component(c, p, n)->data
172 #define get_princ_len(c, p, n) krb5_princ_component(c, p, n)->length
173 #define second_comp(c, p) (krb5_princ_size(c, p) > 1)
174 #define realm_data(c, p) krb5_princ_realm(c, p)->data
175 #define realm_len(c, p) krb5_princ_realm(c, p)->length
176
177 #elif defined(HAVE_KRB5_PRINCIPAL_GET_COMP_STRING)
178
179 #define get_princ_str(c, p, n) krb5_principal_get_comp_string(c, p, n)
180 #define get_princ_len(c, p, n) strlen(krb5_principal_get_comp_string(c, p, n))
181 #define second_comp(c, p) (krb5_principal_get_comp_string(c, p, 1) != NULL)
182 #define realm_data(c, p) krb5_realm_data(krb5_principal_get_realm(c, p))
183 #define realm_len(c, p) krb5_realm_length(krb5_principal_get_realm(c, p))
184
185 #else
186 #error "Must have either krb5_princ_size or krb5_principal_get_comp_string"
187 #endif
188
189 #if !defined(HAVE_KRB5_ENCRYPT_TKT_PART) && defined(HAVE_ENCODE_KRB5_ENC_TKT_PART) && defined(HAVE_KRB5_C_ENCRYPT) 
190 extern krb5_error_code encode_krb5_enc_tkt_part (const krb5_enc_tkt_part *rep,
191                                                  krb5_data **code);
192
193 krb5_error_code
194 krb5_encrypt_tkt_part(krb5_context context,
195                       const krb5_keyblock *key,
196                       krb5_ticket *ticket)
197 {
198     krb5_data *data = 0;
199     int code;
200     size_t enclen;
201     
202     if ((code = encode_krb5_enc_tkt_part(ticket->enc_part2, &data)))
203         goto Done;
204     if ((code = krb5_c_encrypt_length(context, key->enctype,
205                                       data->length, &enclen)))
206         goto Done;
207     ticket->enc_part.ciphertext.length = enclen;
208     if (!(ticket->enc_part.ciphertext.data = malloc(enclen))) {
209         code = ENOMEM;
210         goto Done;
211     }
212     if ((code = krb5_c_encrypt(context, key, KRB5_KEYUSAGE_KDC_REP_TICKET,
213                                0, data, &ticket->enc_part))) {
214         free(ticket->enc_part.ciphertext.data);
215         ticket->enc_part.ciphertext.data = 0;
216     }
217 Done:
218     if (data) {
219         if (data->data)
220             free(data->data);
221         free(data);
222     }
223     return code;
224 }
225 #endif
226
227 #if defined(HAVE_KRB5_CREDS_KEYBLOCK)
228
229 #define get_cred_keydata(c) c->keyblock.contents
230 #define get_cred_keylen(c) c->keyblock.length
231 #define get_creds_enctype(c) c->keyblock.enctype
232
233 #elif defined(HAVE_KRB5_CREDS_SESSION)
234
235 #define get_cred_keydata(c) c->session.keyvalue.data
236 #define get_cred_keylen(c) c->session.keyvalue.length
237 #define get_creds_enctype(c) c->session.keytype
238
239 #else
240 #error "Must have either keyblock or session member of krb5_creds"
241 #endif
242
243 #if !defined(HAVE_KRB5_524_CONVERT_CREDS) && defined(HAVE_KRB524_CONVERT_CREDS_KDC)
244 #define krb5_524_convert_creds krb524_convert_creds_kdc
245 #elif !defined(HAVE_KRB5_524_CONVERT_CREDS) && !defined(HAVE_KRB524_CONVERT_CREDS_KDC)
246 #define HAVE_NO_KRB5_524
247 #endif
248
249 #if USING_HEIMDAL
250 #define deref_keyblock_enctype(kb)              \
251     ((kb)->keytype)
252
253 #define deref_entry_keyblock(entry)             \
254     entry->keyblock
255
256 #define deref_session_key(creds)                \
257     creds->session
258
259 #define deref_enc_tkt_addrs(tkt)                \
260     tkt->caddr
261
262 #define deref_enc_length(enc)                   \
263     ((enc)->cipher.length)
264
265 #define deref_enc_data(enc)                     \
266     ((enc)->cipher.data)
267
268 #define krb5_free_keytab_entry_contents krb5_kt_free_entry
269
270 #else
271 #define deref_keyblock_enctype(kb)              \
272     ((kb)->enctype)
273
274 #define deref_entry_keyblock(entry)             \
275     entry->key
276
277 #define deref_session_key(creds)                \
278     creds->keyblock
279
280 #define deref_enc_tkt_addrs(tkt)                \
281     tkt->caddrs
282
283 #define deref_enc_length(enc)                   \
284     ((enc)->ciphertext.length)
285
286 #define deref_enc_data(enc)                     \
287     ((enc)->ciphertext.data)
288
289 #endif
290
291 #define deref_entry_enctype(entry)                      \
292     deref_keyblock_enctype(&deref_entry_keyblock(entry))
293
294 /*
295  * Provide a replacement for strerror if we don't have it
296  */
297
298 #ifndef HAVE_STRERROR
299 extern char *sys_errlist[];
300 #define strerror(x) sys_errlist[x]
301 #endif /* HAVE_STRERROR */
302
303 static char *progname = NULL;   /* Name of this program */
304 static int dflag = FALSE;       /* Give debugging information */
305 static int noauth = FALSE;      /* If true, don't try to get tokens */
306 static int zsubs = FALSE;       /* Are we keeping track of zephyr subs? */
307 static int hosts = FALSE;       /* Are we keeping track of hosts? */
308 static int noprdb = FALSE;      /* Skip resolving name to id? */
309 static int linked = FALSE;      /* try for both AFS nodes */
310 static int afssetpag = FALSE;   /* setpag for AFS */
311 static int force = FALSE;       /* Bash identical tokens? */
312 static int do524 = FALSE;       /* Should we do 524 instead of rxkad2b? */
313 static char *keytab = NULL;     /* keytab for akimpersonate */
314 static char *client = NULL;     /* client principal for akimpersonate */
315 static linked_list zsublist;    /* List of zephyr subscriptions */
316 static linked_list hostlist;    /* List of host addresses */
317 static linked_list authedcells; /* List of cells already logged to */
318
319 /* A com_error bodge. The idea here is that this routine lets us lookup
320  * things in the system com_err, if the AFS one just tells us the error
321  * is unknown
322  */
323
324 void
325 redirect_errors(const char *who, afs_int32 code, const char *fmt, va_list ap)
326 {
327     if (who) {
328         fputs(who, stderr);
329         fputs(": ", stderr);
330     }
331     if (code) {
332         const char *str = afs_error_message(code);
333         if (strncmp(str, "unknown", strlen("unknown")) == 0) {
334             str = error_message(code);
335         }
336         fputs(str, stderr);
337         fputs(" ", stderr);
338     }
339     if (fmt) {
340         vfprintf(stderr, fmt, ap);
341     }
342     putc('\n', stderr);
343     fflush(stderr);
344 }
345
346 static char *
347 copy_cellinfo(cellinfo_t *cellinfo)
348 {
349     cellinfo_t *new_cellinfo;
350
351     if ((new_cellinfo = (cellinfo_t *)malloc(sizeof(cellinfo_t))))
352         memcpy(new_cellinfo, cellinfo, sizeof(cellinfo_t));
353     
354     return ((char *)new_cellinfo);
355 }
356
357
358 static int
359 get_cellconfig(char *cell, struct afsconf_cell *cellconfig, char **local_cell)
360 {
361     int status = AKLOG_SUCCESS;
362     struct afsconf_dir *configdir;
363
364     memset(cellconfig, 0, sizeof(*cellconfig));
365
366     *local_cell = malloc(MAXCELLCHARS);
367     if (*local_cell == NULL) {
368         fprintf(stderr, "%s: can't allocate memory for local cell name\n",
369                 progname);
370         exit(AKLOG_AFS);
371     }
372
373     if (!(configdir = afsconf_Open(AFSDIR_CLIENT_ETC_DIRPATH))) {
374         fprintf(stderr, 
375                 "%s: can't get afs configuration (afsconf_Open(%s))\n",
376                 progname, AFSDIR_CLIENT_ETC_DIRPATH);
377         exit(AKLOG_AFS);
378     }
379
380     if (afsconf_GetLocalCell(configdir, *local_cell, MAXCELLCHARS)) {
381         fprintf(stderr, "%s: can't determine local cell.\n", progname);
382         exit(AKLOG_AFS);
383     }
384
385     if ((cell == NULL) || (cell[0] == 0))
386         cell = *local_cell;
387
388     /* XXX - This function modifies 'cell' by passing it through lcstring */
389     if (afsconf_GetCellInfo(configdir, cell, NULL, cellconfig)) {
390         fprintf(stderr, "%s: Can't get information about cell %s.\n",
391                 progname, cell);
392         status = AKLOG_AFS;
393     }
394
395     afsconf_Close(configdir);
396
397     return(status);
398 }
399
400 static char *
401 extract_realm(krb5_context context, krb5_principal princ) {
402     int len;
403     char *realm;
404
405     len = realm_len(context, princ);
406     if (len > REALM_SZ-1)
407         len = REALM_SZ-1;
408
409     realm = malloc(sizeof(char) * (len+1));
410     if (realm == NULL)
411         return NULL;
412
413     strncpy(realm, realm_data(context, princ), len);
414     realm[len] = '\0';
415
416     return realm;
417 }
418
419 static int
420 get_realm_from_cred(krb5_context context, krb5_creds *v5cred, char **realm) {
421 #if !defined(HEIMDAL) && defined(HAVE_KRB5_DECODE_TICKET)
422     krb5_error_code code;
423     krb5_ticket *ticket;
424
425     *realm = NULL;
426
427     code = krb5_decode_ticket(&v5cred->ticket, &ticket);
428     if (code)
429         return code;
430
431     *realm = extract_realm(context, ticket->server);
432     if (*realm == NULL)
433         code = ENOMEM;
434
435     krb5_free_ticket(context, ticket);
436
437     return code;
438 #else
439     *realm = NULL;
440     return 0;
441 #endif
442 }
443
444 /* 
445  * Log to a cell.  If the cell has already been logged to, return without
446  * doing anything.  Otherwise, log to it and mark that it has been logged
447  * to.
448  */
449 static int
450 auth_to_cell(krb5_context context, char *cell, char *realm, char **linkedcell)
451 {
452     int status = AKLOG_SUCCESS;
453     char username[BUFSIZ];      /* To hold client username structure */
454     afs_int32 viceId;           /* AFS uid of user */
455
456     char *realm_of_user = NULL;    /* Kerberos realm of user */
457     char *realm_from_princ = NULL; /* Calculated realm data */
458     char *realm_of_cell = NULL;    /* Pointer to realm we're using */
459     int retry;                     /* round, and round we go ... */
460     
461     char *local_cell = NULL;
462     krb5_creds *v5cred = NULL;
463     struct ktc_principal aserver;
464     struct ktc_principal aclient;
465     struct ktc_token atoken, btoken;
466     struct afsconf_cell cellconf;
467
468     /* NULL or empty cell returns information on local cell */
469     if ((status = get_cellconfig(cell, &cellconf, &local_cell)))
470         return(status);
471
472     if (linkedcell != NULL && cellconf.linkedCell != NULL) {
473         *linkedcell = strdup(cellconf.linkedCell);
474         if (*linkedcell == NULL) {
475             status = ENOMEM;
476             goto out;
477         }
478     }
479
480     if (ll_string(&authedcells, ll_s_check, cellconf.name)) {
481         if (dflag) {
482             printf("Already authenticated to %s (or tried to)\n", 
483                    cellconf.name);
484         }
485         status = AKLOG_SUCCESS;
486         goto out;
487     }
488
489     /* 
490      * Record that we have attempted to log to this cell.  We do this
491      * before we try rather than after so that we will not try
492      * and fail repeatedly for one cell.
493      */
494     ll_string(&authedcells, ll_s_add, cellconf.name);
495
496     /* 
497      * Record this cell in the list of zephyr subscriptions.  We may
498      * want zephyr subscriptions even if authentication fails.
499      * If this is done after we attempt to get tokens, aklog -zsubs
500      * can return something different depending on whether or not we
501      * are in -noauth mode.
502      */
503     if (ll_string(&zsublist, ll_s_add, cellconf.name) == LL_FAILURE) {
504         fprintf(stderr, 
505                 "%s: failure adding cell %s to zephyr subscriptions list.\n",
506                 progname, cellconf.name);
507         exit(AKLOG_MISC);
508     }
509     if (ll_string(&zsublist, ll_s_add, local_cell) == LL_FAILURE) {
510         fprintf(stderr, 
511                 "%s: failure adding cell %s to zephyr subscriptions list.\n",
512                 progname, local_cell);
513         exit(AKLOG_MISC);
514     }
515
516     if (!noauth) {
517         if (dflag) {
518             printf("Authenticating to cell %s (server %s).\n",
519                    cellconf.name, cellconf.hostName[0]);
520         }
521
522         if ((status = get_user_realm(context, &realm_of_user))) {
523             fprintf(stderr, "%s: Couldn't determine realm of user:)",
524                     progname);
525             afs_com_err(progname, status, " while getting realm");
526             status = AKLOG_KERBEROS;
527             goto out;
528         }
529
530         retry = 1;
531         
532         while(retry) {
533
534             /* This code tries principals in the following, much debated,
535              * order:
536              * 
537              * If the realm is specified on the command line we do
538              *    - afs/cell@COMMAND-LINE-REALM
539              *    - afs@COMMAND-LINE-REALM
540              * 
541              * Otherwise, we do
542              *    - afs/cell@REALM-FROM-USERS-PRINCIPAL
543              *    - afs/cell@krb5_get_host_realm(db-server)
544              *   Then, if krb5_get_host_realm(db-server) is non-empty
545              *      - afs@ krb5_get_host_realm(db-server)
546              *   Otherwise
547              *      - afs/cell@ upper-case-domain-of-db-server
548              *      - afs@ upper-case-domain-of-db-server
549              * 
550              * In all cases, the 'afs@' variant is only tried where the
551              * cell and the realm match case-insensitively.
552              */
553                 
554             /* Cell on command line - use that one */
555             if (realm && realm[0]) {
556                 realm_of_cell = realm;
557                 status = AKLOG_TRYAGAIN;
558                 if (dflag) {
559                     printf("We were told to authenticate to realm %s.\n", 
560                            realm);
561                 }
562             } else {
563                 /* Initially, try using afs/cell@USERREALM */
564                 if (dflag) {
565                     printf("Trying to authenticate to user's realm %s.\n",
566                            realm_of_user);
567                 }
568                 
569                 realm_of_cell = realm_of_user;
570                 status = get_credv5(context, AFSKEY, cellconf.name,
571                                     realm_of_cell, &v5cred);
572             
573                 /* If that failed, try to determine the realm from the name of 
574                  * one of the DB servers */
575                 if (TRYAGAIN(status)) {
576                     realm_of_cell = afs_realm_of_cell(context, &cellconf,
577                                                       FALSE);
578                     if (!realm_of_cell) {
579                         fprintf(stderr, 
580                                 "%s: Couldn't figure out realm for cell %s.\n",
581                                 progname, cellconf.name);
582                         exit(AKLOG_MISC);
583                     }
584
585                     if (dflag) {
586                         if (realm_of_cell[0])
587                             printf("We've deduced that we need to authenticate"
588                                    " to realm %s.\n", realm_of_cell);
589                     else
590                         printf("We've deduced that we need to authenticate "
591                                "using referrals.\n");
592                     }
593                 }
594             }
595         
596             if (TRYAGAIN(status)) {
597                 /* If we've got the full-princ-first option, or we're in a
598                  * different realm from the cell - use the cell name as the
599                  * instance */
600                 if (AFS_TRY_FULL_PRINC || 
601                     strcasecmp(cellconf.name, realm_of_cell)!=0) {
602                     status = get_credv5(context, AFSKEY, cellconf.name,
603                                         realm_of_cell, &v5cred);
604
605                     /* If we failed & we've got an empty realm, then try 
606                      * calling afs_realm_for_cell again. */
607                     if (TRYAGAIN(status) && !realm_of_cell[0]) {
608                         /* This time, get the realm by taking the domain 
609                          * component of the db server and make it upper case */
610                         realm_of_cell = afs_realm_of_cell(context,
611                                                           &cellconf, TRUE);
612                         if (!realm_of_cell) {
613                             fprintf(stderr,
614                                     "%s: Couldn't figure out realm for cell "
615                                     "%s.\n", progname, cellconf.name);
616                             exit(AKLOG_MISC);
617                         }
618                         if (dflag) {
619                             printf("We've deduced that we need to authenticate"
620                                    " to realm %s.\n", realm_of_cell);
621                         }
622                     }
623                     status = get_credv5(context, AFSKEY, cellconf.name,
624                                         realm_of_cell, &v5cred);
625                 }
626            
627                 /* If the realm and cell name match, then try without an 
628                  * instance, but only if realm is non-empty */
629                 
630                 if (TRYAGAIN(status) && 
631                     strcasecmp(cellconf.name, realm_of_cell) == 0) {
632                     status = get_credv5(context, AFSKEY, NULL, 
633                                         realm_of_cell, &v5cred);
634                     if (!AFS_TRY_FULL_PRINC && TRYAGAIN(status)) {
635                         status = get_credv5(context, AFSKEY, cellconf.name,
636                                             realm_of_cell, &v5cred);
637                     }
638                 }
639             }
640
641             /* Try to find a service principal for this cell.
642              * Some broken MIT libraries return KRB5KRB_AP_ERR_MSG_TYPE upon 
643              * the first attempt, so we try twice to be sure */
644
645             if (status == KRB5KRB_AP_ERR_MSG_TYPE && retry == 1)
646                 retry++;
647             else
648                 retry = 0;
649         } 
650         
651         if (status != 0) {
652             if (dflag) {
653                 printf("Kerberos error code returned by get_cred : %d\n",
654                        status);
655             }
656             fprintf(stderr, "%s: Couldn't get %s AFS tickets:\n",
657                     progname, cellconf.name);
658             afs_com_err(progname, status, "while getting AFS tickets");
659             status = AKLOG_KERBEROS;
660             goto out;
661         }
662         
663         /* If we've got a valid ticket, and we still don't know the realm name
664          * try to figure it out from the contents of the ticket
665          */
666         if (strcmp(realm_of_cell, "") == 0) {
667             status = get_realm_from_cred(context, v5cred, &realm_from_princ);
668             if (status) {
669                 fprintf(stderr,
670                         "%s: Couldn't decode ticket to determine realm for "
671                         "cell %s.\n",
672                         progname, cellconf.name);
673             } else {
674                 if (realm_from_princ)
675                     realm_of_cell = realm_from_princ;
676             }
677         }
678
679         strncpy(aserver.name, AFSKEY, MAXKTCNAMELEN - 1);
680         strncpy(aserver.instance, AFSINST, MAXKTCNAMELEN - 1);
681         strncpy(aserver.cell, cellconf.name, MAXKTCREALMLEN - 1);
682
683         /*
684          * The default is to use rxkad2b, which means we put in a full
685          * V5 ticket.  If the user specifies -524, we talk to the
686          * 524 ticket converter.
687          */
688
689         if (! do524) {
690             char k4name[ANAME_SZ], k4inst[INST_SZ], k4realm[REALM_SZ];
691 #ifdef HAVE_NO_KRB5_524
692             char *p;
693             int len;
694 #endif
695
696             if (dflag)
697                 printf("Using Kerberos V5 ticket natively\n");
698
699 #ifndef HAVE_NO_KRB5_524
700             status = krb5_524_conv_principal (context, v5cred->client,
701                                               (char *) &k4name,
702                                               (char *) &k4inst,
703                                               (char *) &k4realm);
704             if (status) {
705                 afs_com_err(progname, status, "while converting principal "
706                         "to Kerberos V4 format");
707                 status = AKLOG_KERBEROS;
708                 goto out;
709             }
710             strcpy (username, k4name);
711             if (k4inst[0]) {
712                 strcat (username, ".");
713                 strcat (username, k4inst);
714             }
715 #else
716             len = min(get_princ_len(context, v5cred->client, 0),
717                       second_comp(context, v5cred->client) ?
718                       MAXKTCNAMELEN - 2 : MAXKTCNAMELEN - 1);
719             strncpy(username, get_princ_str(context, v5cred->client, 0), len);
720             username[len] = '\0';
721             
722             if (second_comp(context, v5cred->client)) {
723                 strcat(username, ".");
724                 p = username + strlen(username);
725                 len = min(get_princ_len(context, v5cred->client, 1),
726                           MAXKTCNAMELEN - strlen(username) - 1);
727                 strncpy(p, get_princ_str(context, v5cred->client, 1), len);
728                 p[len] = '\0';
729             }
730 #endif
731
732             memset(&atoken, 0, sizeof(atoken));
733             atoken.kvno = RXKAD_TKT_TYPE_KERBEROS_V5;
734             atoken.startTime = v5cred->times.starttime;;
735             atoken.endTime = v5cred->times.endtime;
736             memcpy(&atoken.sessionKey, get_cred_keydata(v5cred),
737                    get_cred_keylen(v5cred));
738             atoken.ticketLen = v5cred->ticket.length;
739             memcpy(atoken.ticket, v5cred->ticket.data, atoken.ticketLen);
740 #ifndef HAVE_NO_KRB5_524
741         } else {
742             CREDENTIALS cred;
743
744             if (dflag)
745                 printf("Using Kerberos 524 translator service\n");
746
747             status = krb5_524_convert_creds(context, v5cred, &cred);
748
749             if (status) {
750                 afs_com_err(progname, status, "while converting tickets "
751                         "to Kerberos V4 format");
752                 status = AKLOG_KERBEROS;
753                 goto out;
754             }
755
756             strcpy (username, cred.pname);
757             if (cred.pinst[0]) {
758                 strcat (username, ".");
759                 strcat (username, cred.pinst);
760             }
761
762             atoken.kvno = cred.kvno;
763             atoken.startTime = cred.issue_date;
764             /*
765              * It seems silly to go through a bunch of contortions to
766              * extract the expiration time, when the v5 credentials already
767              * has the exact time!  Let's use that instead.
768              *
769              * Note that this isn't a security hole, as the expiration time
770              * is also contained in the encrypted token
771              */
772             atoken.endTime = v5cred->times.endtime;
773             memcpy(&atoken.sessionKey, cred.session, 8);
774             atoken.ticketLen = cred.ticket_st.length;
775             memcpy(atoken.ticket, cred.ticket_st.dat, atoken.ticketLen);
776 #endif /* HAVE_NO_KRB5_524 */
777         }
778         
779         if (!force &&
780             !ktc_GetToken(&aserver, &btoken, sizeof(btoken), &aclient) &&
781             atoken.kvno == btoken.kvno &&
782             atoken.ticketLen == btoken.ticketLen &&
783             !memcmp(&atoken.sessionKey, &btoken.sessionKey, sizeof(atoken.sessionKey)) &&
784             !memcmp(atoken.ticket, btoken.ticket, atoken.ticketLen)) {
785
786             if (dflag) {
787                 printf("Identical tokens already exist; skipping.\n");
788             }
789             status = AKLOG_SUCCESS;
790             goto out;
791         }
792
793 #ifdef FORCE_NOPRDB
794         noprdb = 1;
795 #endif
796
797         if (noprdb) {
798             if (dflag) {
799                 printf("Not resolving name %s to id (-noprdb set)\n",
800                         username);
801             }
802         }
803         else {
804             if (strcmp(realm_of_user, realm_of_cell)) {
805                 strcat(username, "@");
806                 strcat(username, realm_of_user);
807             }
808
809             if (dflag) {
810                 printf("About to resolve name %s to id in cell %s.\n", 
811                         username, aserver.cell);
812             }
813
814             if (!pr_Initialize (0,  AFSDIR_CLIENT_ETC_DIRPATH, aserver.cell))
815                 status = pr_SNameToId (username, &viceId);
816             
817             if (dflag) {
818                 if (status) 
819                     printf("Error %d\n", status);
820                 else
821                     printf("Id %d\n", (int) viceId);
822             }
823             
824
825             /*
826              * This code is taken from cklog -- it lets people
827              * automatically register with the ptserver in foreign cells
828              */
829
830 #ifdef ALLOW_REGISTER
831             if ((status == 0) && (viceId == ANONYMOUSID) &&
832                 (strcmp(realm_of_user, realm_of_cell) != 0)) {
833                 if (dflag) {
834                     printf("doing first-time registration of %s "
835                             "at %s\n", username, cellconf.name);
836                 }
837                 viceId = 0;
838                 strncpy(aclient.name, username, MAXKTCNAMELEN - 1);
839                 strcpy(aclient.instance, "");
840                 strncpy(aclient.cell, realm_of_user, MAXKTCREALMLEN - 1);
841                 if ((status = ktc_SetToken(&aserver, &atoken, &aclient, 0))) {
842                     afs_com_err(progname, status,
843                                 "while obtaining tokens for cell %s",
844                                 cellconf.name);
845                     status = AKLOG_TOKEN;
846                 }
847
848                 /*
849                  * In case you're wondering, we don't need to change the
850                  * filename here because we're still connecting to the
851                  * same cell -- we're just using a different authentication
852                  * level
853                  */
854
855                 if ((status = pr_Initialize(1L,  AFSDIR_CLIENT_ETC_DIRPATH,
856                                             aserver.cell))) {
857                     printf("Error %d\n", status);
858                 }
859
860                 if ((status = pr_CreateUser(username, &viceId))) {
861                     fprintf(stderr, "%s: %s so unable to create remote PTS "
862                             "user %s in cell %s (status: %d).\n", progname,
863                             afs_error_message(status), username, cellconf.name,
864                             status);
865                     viceId = ANONYMOUSID;
866                 } else {
867                     printf("created cross-cell entry for %s (Id %d) at %s\n",
868                            username, viceId, cellconf.name);
869                 }
870             }
871 #endif /* ALLOW_REGISTER */
872
873             /*
874              * This is a crock, but it is Transarc's crock, so we have to play
875              * along in order to get the functionality.  The way the afs id is
876              * stored is as a string in the username field of the token.
877              * Contrary to what you may think by looking at the code for
878              * tokens, this hack (AFS ID %d) will not work if you change %d
879              * to something else.
880              */
881
882             if ((status == 0) && (viceId != ANONYMOUSID)) {
883                 sprintf(username, "AFS ID %d", (int) viceId);
884             }
885         }
886
887         if (dflag) {
888             fprintf(stdout, "Set username to %s\n", username);
889         }
890
891         /* Reset the "aclient" structure before we call ktc_SetToken.
892          * This structure was first set by the ktc_GetToken call when
893          * we were comparing whether identical tokens already existed.
894          */
895         strncpy(aclient.name, username, MAXKTCNAMELEN - 1);
896         strcpy(aclient.instance, "");
897         strncpy(aclient.cell, realm_of_user, MAXKTCREALMLEN - 1);
898
899         if (dflag) {
900             printf("Setting tokens. %s / %s @ %s \n",
901                     aclient.name, aclient.instance, aclient.cell );
902         }
903 #ifndef AFS_AIX51_ENV
904         /* on AIX 4.1.4 with AFS 3.4a+ if a write is not done before 
905          * this routine, it will not add the token. It is not clear what 
906          * is going on here! So we will do the following operation.
907          * On AIX 5, it causes the parent program to die, so we won't.
908          */
909         write(2,"",0); /* dummy write */
910 #endif
911         if ((status = ktc_SetToken(&aserver, &atoken, &aclient, afssetpag))) {
912             afs_com_err(progname, status, "while obtaining tokens for cell %s",
913                         cellconf.name);
914             status = AKLOG_TOKEN;
915         }
916     }
917     else
918         if (dflag) {
919             printf("Noauth mode; not authenticating.\n");
920         }
921
922 out:
923     if (local_cell)
924         free(local_cell);
925     if (realm_from_princ)
926         free(realm_from_princ);
927     if (realm_of_user)
928         free(realm_of_user);
929
930     return(status);
931 }
932
933 static int
934 get_afs_mountpoint(char *file, char *mountpoint, int size)
935 {
936 #ifdef AFS_SUN_ENV
937     char V ='V'; /* AFS has problem on Sun with pioctl */
938 #endif
939     char our_file[MAXPATHLEN + 1];
940     char *parent_dir;
941     char *last_component;
942     struct ViceIoctl vio;
943     char cellname[BUFSIZ];
944
945     memset(our_file, 0, sizeof(our_file));
946     strcpy(our_file, file);
947
948     if ((last_component = strrchr(our_file, DIR))) {
949         *last_component++ = 0;
950         parent_dir = our_file;
951     }
952     else {
953         last_component = our_file;
954         parent_dir = ".";
955     }    
956     
957     memset(cellname, 0, sizeof(cellname));
958
959     vio.in = last_component;
960     vio.in_size = strlen(last_component)+1;
961     vio.out_size = size;
962     vio.out = mountpoint;
963
964     if (!pioctl(parent_dir, VIOC_AFS_STAT_MT_PT, &vio, 0)) {
965         if (strchr(mountpoint, VOLMARKER) == NULL) {
966             vio.in = file;
967             vio.in_size = strlen(file) + 1;
968             vio.out_size = sizeof(cellname);
969             vio.out = cellname;
970             
971             if (!pioctl(file, VIOC_FILE_CELL_NAME, &vio, 1)) {
972                 strcat(cellname, VOLMARKERSTRING);
973                 strcat(cellname, mountpoint + 1);
974                 memset(mountpoint + 1, 0, size - 1);
975                 strcpy(mountpoint + 1, cellname);
976             }
977         }
978         return(TRUE);
979     }
980     else
981         return(FALSE);
982 }
983
984 /* 
985  * This routine each time it is called returns the next directory 
986  * down a pathname.  It resolves all symbolic links.  The first time
987  * it is called, it should be called with the name of the path
988  * to be descended.  After that, it should be called with the arguemnt
989  * NULL.
990  */
991 static char *
992 next_path(char *origpath)
993 {
994     static char path[MAXPATHLEN + 1];
995     static char pathtocheck[MAXPATHLEN + 1];
996
997     int link = FALSE;           /* Is this a symbolic link? */
998     char linkbuf[MAXPATHLEN + 1];
999     char tmpbuf[MAXPATHLEN + 1];
1000
1001     static char *last_comp;     /* last component of directory name */
1002     static char *elast_comp;    /* End of last component */
1003     char *t;
1004     int len;
1005     
1006     static int symlinkcount = 0; /* We can't exceed MAXSYMLINKS */
1007     
1008     /* If we are given something for origpath, we are initializing only. */
1009     if (origpath) {
1010         memset(path, 0, sizeof(path));
1011         memset(pathtocheck, 0, sizeof(pathtocheck));
1012         strcpy(path, origpath);
1013         last_comp = path;
1014         symlinkcount = 0;
1015         return(NULL);
1016     }
1017
1018     /* We were not given origpath; find then next path to check */
1019     
1020     /* If we've gotten all the way through already, return NULL */
1021     if (last_comp == NULL)
1022         return(NULL);
1023
1024     do {
1025         while (*last_comp == DIR)
1026             strncat(pathtocheck, last_comp++, 1);
1027         len = (elast_comp = strchr(last_comp, DIR)) 
1028             ? elast_comp - last_comp : strlen(last_comp);
1029         strncat(pathtocheck, last_comp, len);
1030         memset(linkbuf, 0, sizeof(linkbuf));
1031         if ((link = (readlink(pathtocheck, linkbuf, 
1032                                     sizeof(linkbuf)) > 0))) {
1033             if (++symlinkcount > MAXSYMLINKS) {
1034                 fprintf(stderr, "%s: %s\n", progname, strerror(ELOOP));
1035                 exit(AKLOG_BADPATH);
1036             }
1037             memset(tmpbuf, 0, sizeof(tmpbuf));
1038             if (elast_comp)
1039                 strcpy(tmpbuf, elast_comp);
1040             if (linkbuf[0] == DIR) {
1041                 /* 
1042                  * If this is a symbolic link to an absolute path, 
1043                  * replace what we have by the absolute path.
1044                  */
1045                 memset(path, 0, strlen(path));
1046                 memcpy(path, linkbuf, sizeof(linkbuf));
1047                 strcat(path, tmpbuf);
1048                 last_comp = path;
1049                 elast_comp = NULL;
1050                 memset(pathtocheck, 0, sizeof(pathtocheck));
1051             }
1052             else {
1053                 /* 
1054                  * If this is a symbolic link to a relative path, 
1055                  * replace only the last component with the link name.
1056                  */
1057                 strncpy(last_comp, linkbuf, strlen(linkbuf) + 1);
1058                 strcat(path, tmpbuf);
1059                 elast_comp = NULL;
1060                 if ((t = strrchr(pathtocheck, DIR))) {
1061                     t++;
1062                     memset(t, 0, strlen(t));
1063                 }
1064                 else
1065                     memset(pathtocheck, 0, sizeof(pathtocheck));
1066             }
1067         }
1068         else
1069             last_comp = elast_comp;
1070     }
1071     while(link);
1072
1073     return(pathtocheck);
1074 }
1075
1076 static void
1077 add_hosts(char *file)
1078 {
1079 #ifdef AFS_SUN_ENV
1080     char V = 'V'; /* AFS has problem on SunOS */
1081 #endif
1082     struct ViceIoctl vio;
1083     char outbuf[BUFSIZ];
1084     long *phosts;
1085     int i;
1086     struct hostent *hp;
1087     struct in_addr in;
1088     
1089     memset(outbuf, 0, sizeof(outbuf));
1090
1091     vio.out_size = sizeof(outbuf);
1092     vio.in_size = 0;
1093     vio.out = outbuf;
1094
1095     if (dflag) {
1096         printf("Getting list of hosts for %s\n", file);
1097     }
1098     /* Don't worry about errors. */
1099     if (!pioctl(file, VIOCWHEREIS, &vio, 1)) {
1100         phosts = (long *) outbuf;
1101
1102         /*
1103          * Lists hosts that we care about.  If ALLHOSTS is defined,
1104          * then all hosts that you ever may possible go through are
1105          * included in this list.  If not, then only hosts that are
1106          * the only ones appear.  That is, if a volume you must use
1107          * is replaced on only one server, that server is included.
1108          * If it is replicated on many servers, then none are included.
1109          * This is not perfect, but the result is that people don't
1110          * get subscribed to a lot of instances of FILSRV that they
1111          * probably won't need which reduces the instances of 
1112          * people getting messages that don't apply to them.
1113          */
1114 #ifndef ALLHOSTS
1115         if (phosts[1] != '\0')
1116             return;
1117 #endif
1118         for (i = 0; phosts[i]; i++) {
1119             if (hosts) {
1120                 in.s_addr = phosts[i];
1121                 if (dflag) {
1122                     printf("Got host %s\n", inet_ntoa(in));
1123                 }
1124                 ll_string(&hostlist, ll_s_add, (char *)inet_ntoa(in));
1125             }
1126             if (zsubs && (hp=gethostbyaddr((char *) &phosts[i],sizeof(long),AF_INET))) {
1127                 if (dflag) {
1128                     printf("Got host %s\n", hp->h_name);
1129                 }
1130                 ll_string(&zsublist, ll_s_add, hp->h_name);
1131             }
1132         }
1133     }
1134 }
1135
1136 /*
1137  * This routine descends through a path to a directory, logging to 
1138  * every cell it encounters along the way.
1139  */
1140 static int
1141 auth_to_path(krb5_context context, char *path)
1142 {
1143     int status = AKLOG_SUCCESS;
1144     int auth_status = AKLOG_SUCCESS;
1145
1146     char *nextpath;
1147     char pathtocheck[MAXPATHLEN + 1];
1148     char mountpoint[MAXPATHLEN + 1];
1149
1150     char *cell;
1151     char *endofcell;
1152
1153     u_char isdirectory;
1154
1155     /* Initialize */
1156     if (path[0] == DIR)
1157         strcpy(pathtocheck, path);
1158     else {
1159         if (getcwd(pathtocheck, sizeof(pathtocheck)) == NULL) {
1160             fprintf(stderr, "Unable to find current working directory:\n");
1161             fprintf(stderr, "%s\n", pathtocheck);
1162             fprintf(stderr, "Try an absolute pathname.\n");
1163             exit(AKLOG_BADPATH);
1164         }
1165         else {
1166             strcat(pathtocheck, DIRSTRING);
1167             strcat(pathtocheck, path);
1168         }
1169     }
1170     next_path(pathtocheck);
1171
1172     /* Go on to the next level down the path */
1173     while ((nextpath = next_path(NULL))) {
1174         strcpy(pathtocheck, nextpath);
1175         if (dflag) {
1176             printf("Checking directory %s\n", pathtocheck);
1177         }
1178         /* 
1179          * If this is an afs mountpoint, determine what cell from 
1180          * the mountpoint name which is of the form 
1181          * #cellname:volumename or %cellname:volumename.
1182          */
1183         if (get_afs_mountpoint(pathtocheck, mountpoint, sizeof(mountpoint))) {
1184             /* skip over the '#' or '%' */
1185             cell = mountpoint + 1;
1186             /* Add this (cell:volumename) to the list of zsubs */
1187             if (zsubs)
1188                 ll_string(&zsublist, ll_s_add, cell);
1189             if (zsubs || hosts)
1190                 add_hosts(pathtocheck);
1191             if ((endofcell = strchr(mountpoint, VOLMARKER))) {
1192                 *endofcell = '\0';
1193                 if ((auth_status = auth_to_cell(context, cell, NULL, NULL))) {
1194                     if (status == AKLOG_SUCCESS)
1195                         status = auth_status;
1196                     else if (status != auth_status)
1197                         status = AKLOG_SOMETHINGSWRONG;
1198                 }
1199             }
1200         }
1201         else {
1202             if (isdir(pathtocheck, &isdirectory) < 0) {
1203                 /*
1204                  * If we've logged and still can't stat, there's
1205                  * a problem... 
1206                  */
1207                 fprintf(stderr, "%s: stat(%s): %s\n", progname, 
1208                         pathtocheck, strerror(errno));
1209                 return(AKLOG_BADPATH);
1210             }
1211             else if (! isdirectory) {
1212                 /* Allow only directories */
1213                 fprintf(stderr, "%s: %s: %s\n", progname, pathtocheck,
1214                         strerror(ENOTDIR));
1215                 return(AKLOG_BADPATH);
1216             }
1217         }
1218     }
1219     
1220
1221     return(status);
1222 }
1223
1224
1225 /* Print usage message and exit */
1226 static void
1227 usage(void)
1228 {
1229     fprintf(stderr, "\nUsage: %s %s%s%s\n", progname,
1230             "[-d] [[-cell | -c] cell [-k krb_realm]] ",
1231             "[[-p | -path] pathname]\n",
1232             "    [-zsubs] [-hosts] [-noauth] [-noprdb] [-force] [-setpag] \n"
1233                 "    [-linked]"
1234 #ifndef HAVE_NO_KRB5_524
1235                 " [-524]"
1236 #endif
1237                 "\n");
1238     fprintf(stderr, "    -d gives debugging information.\n");
1239     fprintf(stderr, "    krb_realm is the kerberos realm of a cell.\n");
1240     fprintf(stderr, "    pathname is the name of a directory to which ");
1241     fprintf(stderr, "you wish to authenticate.\n");
1242     fprintf(stderr, "    -zsubs gives zephyr subscription information.\n");
1243     fprintf(stderr, "    -hosts gives host address information.\n");
1244     fprintf(stderr, "    -noauth does not attempt to get tokens.\n");
1245     fprintf(stderr, "    -noprdb means don't try to determine AFS ID.\n");
1246     fprintf(stderr, "    -force means replace identical tickets. \n");
1247     fprintf(stderr, "    -linked means if AFS node is linked, try both. \n");
1248     fprintf(stderr, "    -setpag set the AFS process authentication group.\n");
1249 #ifndef HAVE_NO_KRB5_524
1250     fprintf(stderr, "    -524 means use the 524 converter instead of V5 directly\n");
1251 #endif
1252     fprintf(stderr, "    No commandline arguments means ");
1253     fprintf(stderr, "authenticate to the local cell.\n");
1254     fprintf(stderr, "\n");
1255     exit(AKLOG_USAGE);
1256 }
1257
1258 int
1259 main(int argc, char *argv[])
1260 {
1261     krb5_context context;
1262     int status = AKLOG_SUCCESS;
1263     int i;
1264     int somethingswrong = FALSE;
1265
1266     cellinfo_t cellinfo;
1267
1268     extern char *progname;      /* Name of this program */
1269
1270     extern int dflag;           /* Debug mode */
1271
1272     int cmode = FALSE;          /* Cellname mode */
1273     int pmode = FALSE;          /* Path name mode */
1274
1275     char realm[REALM_SZ];       /* Kerberos realm of afs server */
1276     char cell[BUFSIZ];          /* Cell to which we are authenticating */
1277     char path[MAXPATHLEN + 1];          /* Path length for path mode */
1278
1279     linked_list cells;          /* List of cells to log to */
1280     linked_list paths;          /* List of paths to log to */
1281     ll_node *cur_node;
1282     char *linkedcell;
1283
1284     memset(&cellinfo, 0, sizeof(cellinfo));
1285
1286     memset(realm, 0, sizeof(realm));
1287     memset(cell, 0, sizeof(cell));
1288     memset(path, 0, sizeof(path));
1289
1290     ll_init(&cells);
1291     ll_init(&paths);
1292
1293     ll_init(&zsublist);
1294     ll_init(&hostlist);
1295
1296     /* Store the program name here for error messages */
1297     if ((progname = strrchr(argv[0], DIR)))
1298         progname++;
1299     else
1300         progname = argv[0];
1301
1302     krb5_init_context(&context);
1303     initialize_ktc_error_table ();
1304     afs_set_com_err_hook(redirect_errors);
1305
1306     /*
1307      * Enable DES enctypes, which are currently still required for AFS.
1308      * krb5_allow_weak_crypto is MIT Kerberos 1.8.  krb5_enctype_enable is
1309      * Heimdal.
1310      */
1311 #if defined(HAVE_KRB5_ALLOW_WEAK_CRYPTO)
1312     krb5_allow_weak_crypto(context, 1);
1313 #elif defined(HAVE_KRB5_ENCTYPE_ENABLE)
1314     i = krb5_enctype_valid(context, ETYPE_DES_CBC_CRC);
1315     if (i)
1316         krb5_enctype_enable(context, ETYPE_DES_CBC_CRC);
1317 #endif
1318
1319     /* Initialize list of cells to which we have authenticated */
1320     ll_init(&authedcells);
1321
1322     /* Parse commandline arguments and make list of what to do. */
1323     for (i = 1; i < argc; i++) {
1324         if (strcmp(argv[i], "-d") == 0)
1325             dflag++;
1326         else if (strcmp(argv[i], "-noauth") == 0) 
1327             noauth++;
1328         else if (strcmp(argv[i], "-zsubs") == 0)
1329             zsubs++;
1330         else if (strcmp(argv[i], "-hosts") == 0)
1331             hosts++;
1332         else if (strcmp(argv[i], "-noprdb") == 0)
1333             noprdb++;
1334         else if (strcmp(argv[i], "-linked") == 0)
1335                 linked++;
1336         else if (strcmp(argv[i], "-force") == 0)
1337             force++;
1338 #ifndef HAVE_NO_KRB5_524
1339         else if (strcmp(argv[i], "-524") == 0)
1340             do524++;
1341 #endif
1342     else if (strcmp(argv[i], "-setpag") == 0)
1343             afssetpag++;
1344         else if (((strcmp(argv[i], "-cell") == 0) ||
1345                   (strcmp(argv[i], "-c") == 0)) && !pmode)
1346             if (++i < argc) {
1347                 cmode++;
1348                 strcpy(cell, argv[i]);
1349             }
1350             else
1351                 usage();
1352         else if ((strcmp(argv[i], "-keytab") == 0))
1353             if (++i < argc) {
1354                 keytab = argv[i];
1355             }
1356             else
1357                 usage();
1358         else if ((strcmp(argv[i], "-principal") == 0))
1359             if (++i < argc) {
1360                 client = argv[i];
1361             }
1362             else
1363                 usage();
1364         else if (((strcmp(argv[i], "-path") == 0) ||
1365                   (strcmp(argv[i], "-p") == 0)) && !cmode)
1366             if (++i < argc) {
1367                 pmode++;
1368                 strcpy(path, argv[i]);
1369             }
1370             else
1371                 usage();
1372             
1373         else if (argv[i][0] == '-')
1374             usage();
1375         else if (!pmode && !cmode) {
1376             if (strchr(argv[i], DIR) || (strcmp(argv[i], ".") == 0) ||
1377                 (strcmp(argv[i], "..") == 0)) {
1378                 pmode++;
1379                 strcpy(path, argv[i]);
1380             }
1381             else { 
1382                 cmode++;
1383                 strcpy(cell, argv[i]);
1384             }
1385         }
1386         else
1387             usage();
1388
1389         if (cmode) {
1390             if (((i + 1) < argc) && (strcmp(argv[i + 1], "-k") == 0)) {
1391                 i+=2;
1392                 if (i < argc)
1393                     strcpy(realm, argv[i]);
1394                 else
1395                     usage();
1396             }
1397             /* Add this cell to list of cells */
1398             strcpy(cellinfo.cell, cell);
1399             strcpy(cellinfo.realm, realm);
1400             if ((cur_node = ll_add_node(&cells, ll_tail))) {
1401                 char *new_cellinfo;
1402                 if ((new_cellinfo = copy_cellinfo(&cellinfo)))
1403                     ll_add_data(cur_node, new_cellinfo);
1404                 else {
1405                     fprintf(stderr, 
1406                             "%s: failure copying cellinfo.\n", progname);
1407                     exit(AKLOG_MISC);
1408                 }
1409             }
1410             else {
1411                 fprintf(stderr, "%s: failure adding cell to cells list.\n",
1412                         progname);
1413                 exit(AKLOG_MISC);
1414             }
1415             memset(&cellinfo, 0, sizeof(cellinfo));
1416             cmode = FALSE;
1417             memset(cell, 0, sizeof(cell));
1418             memset(realm, 0, sizeof(realm));
1419         }
1420         else if (pmode) {
1421             /* Add this path to list of paths */
1422             if ((cur_node = ll_add_node(&paths, ll_tail))) {
1423                 char *new_path;
1424                 if ((new_path = strdup(path)))
1425                     ll_add_data(cur_node, new_path);
1426                 else {
1427                     fprintf(stderr, "%s: failure copying path name.\n",
1428                             progname);
1429                     exit(AKLOG_MISC);
1430                 }
1431             }
1432             else {
1433                 fprintf(stderr, "%s: failure adding path to paths list.\n",
1434                         progname);
1435                 exit(AKLOG_MISC);
1436             }
1437             pmode = FALSE;
1438             memset(path, 0, sizeof(path));
1439         }
1440     }
1441
1442     /* If nothing was given, log to the local cell. */
1443     if ((cells.nelements + paths.nelements) == 0) {
1444         struct passwd *pwd;
1445
1446         status = auth_to_cell(context, NULL, NULL, &linkedcell);
1447         
1448         /* If this cell is linked to a DCE cell, and user requested -linked,
1449          * get tokens for both. This is very useful when the AFS cell is
1450          * linked to a DFS cell and this system does not also have DFS.
1451          */
1452
1453         if (!status && linked && linkedcell != NULL) {
1454             if (dflag) {
1455                 printf("Linked cell: %s\n", linkedcell);
1456             }
1457             status = auth_to_cell(context, linkedcell, NULL, NULL);
1458         }
1459         if (linkedcell) {
1460             free(linkedcell);
1461             linkedcell = NULL;
1462         }
1463
1464         /*
1465          * Local hack - if the person has a file in their home
1466          * directory called ".xlog", read that for a list of
1467          * extra cells to authenticate to
1468          */
1469
1470         if ((pwd = getpwuid(getuid())) != NULL) {
1471             struct stat sbuf;
1472             FILE *f;
1473             char fcell[100], xlog_path[512];
1474
1475             strcpy(xlog_path, pwd->pw_dir);
1476             strcat(xlog_path, "/.xlog");
1477
1478             if ((stat(xlog_path, &sbuf) == 0) &&
1479                 ((f = fopen(xlog_path, "r")) != NULL)) {
1480
1481                 if (dflag) {
1482                     printf("Reading %s for cells to authenticate to.\n",
1483                            xlog_path);
1484                 }
1485
1486                 while (fgets(fcell, 100, f) != NULL) {
1487                     int auth_status;
1488
1489                     fcell[strlen(fcell) - 1] = '\0';
1490
1491                     if (dflag) {
1492                         printf("Found cell %s in %s.\n", fcell, xlog_path);
1493                     }
1494
1495                     auth_status = auth_to_cell(context, fcell, NULL, NULL);
1496                     if (status == AKLOG_SUCCESS)
1497                         status = auth_status;
1498                     else
1499                         status = AKLOG_SOMETHINGSWRONG;
1500                 }
1501             }
1502         }
1503     }
1504     else {
1505         /* Log to all cells in the cells list first */
1506         for (cur_node = cells.first; cur_node; cur_node = cur_node->next) {
1507             memcpy((char *)&cellinfo, cur_node->data, sizeof(cellinfo));
1508             if ((status = auth_to_cell(context, cellinfo.cell, cellinfo.realm,
1509                                        &linkedcell)))
1510                 somethingswrong++;
1511             else {
1512                 if (linked && linkedcell != NULL) {
1513                     if (dflag) {
1514                         printf("Linked cell: %s\n", linkedcell);
1515                     }
1516                     if ((status = auth_to_cell(context, linkedcell,
1517                                                cellinfo.realm, NULL)))
1518                         somethingswrong++;
1519                 }
1520                 if (linkedcell != NULL) {
1521                     free(linkedcell);
1522                     linkedcell = NULL;
1523                 }
1524             }
1525         }
1526
1527         /* Then, log to all paths in the paths list */
1528         for (cur_node = paths.first; cur_node; cur_node = cur_node->next) {
1529             if ((status = auth_to_path(context, cur_node->data)))
1530                 somethingswrong++;
1531         }
1532         
1533         /* 
1534          * If only one thing was logged to, we'll return the status 
1535          * of the single call.  Otherwise, we'll return a generic
1536          * something failed status.
1537          */
1538         if (somethingswrong && ((cells.nelements + paths.nelements) > 1))
1539             status = AKLOG_SOMETHINGSWRONG;
1540     }
1541
1542     /* If we are keeping track of zephyr subscriptions, print them. */
1543     if (zsubs) 
1544         for (cur_node = zsublist.first; cur_node; cur_node = cur_node->next) {
1545             printf("zsub: %s\n", cur_node->data);
1546         }
1547
1548     /* If we are keeping track of host information, print it. */
1549     if (hosts)
1550         for (cur_node = hostlist.first; cur_node; cur_node = cur_node->next) {
1551             printf("host: %s\n", cur_node->data);
1552         }
1553
1554     exit(status);
1555 }
1556
1557 static int
1558 isdir(char *path, unsigned char *val)
1559 {
1560     struct stat statbuf;
1561
1562     if (lstat(path, &statbuf) < 0)
1563         return (-1);
1564     else {
1565         if ((statbuf.st_mode & S_IFMT) == S_IFDIR) 
1566             *val = TRUE;
1567         else
1568             *val = FALSE;
1569         return (0);
1570     }  
1571 }
1572
1573 static krb5_error_code
1574 get_credv5_akimpersonate(krb5_context context,
1575                          char* keytab,
1576                          krb5_principal service_principal,
1577                          krb5_principal client_principal,
1578                          time_t starttime,
1579                          time_t endtime,
1580                          int *allowed_enctypes,
1581                          int *paddress,
1582                          krb5_creds** out_creds /* out */ )
1583 {
1584 #if defined(USING_HEIMDAL) || (defined(HAVE_ENCODE_KRB5_ENC_TKT) && defined(HAVE_ENCODE_KRB5_TICKET) && defined(HAVE_KRB5_C_ENCRYPT))
1585     krb5_error_code code;
1586     krb5_keytab kt = 0;
1587     krb5_kt_cursor cursor[1];
1588     krb5_keytab_entry entry[1];
1589     krb5_ccache cc = 0;
1590     krb5_creds *creds = 0;
1591     krb5_enctype enctype;
1592     krb5_kvno kvno;
1593     krb5_keyblock session_key[1];
1594 #if USING_HEIMDAL
1595     Ticket ticket_reply[1];
1596     EncTicketPart enc_tkt_reply[1];
1597     krb5_address address[30];
1598     krb5_addresses faddr[1];
1599     int temp_vno[1];
1600     time_t temp_time[2];
1601 #else
1602     krb5_ticket ticket_reply[1];
1603     krb5_enc_tkt_part enc_tkt_reply[1];
1604     krb5_address address[30], *faddr[30];
1605 #endif
1606     krb5_data * temp;
1607     int i;
1608     static int any_enctype[] = {0};
1609     *out_creds = 0;
1610     if (!(creds = malloc(sizeof *creds))) {
1611         code = ENOMEM;
1612         goto cleanup;
1613     }
1614     if (!allowed_enctypes)
1615         allowed_enctypes = any_enctype;
1616
1617     cc = 0;
1618     enctype = 0; /* AKIMPERSONATE_IGNORE_ENCTYPE */
1619     kvno = 0; /* AKIMPERSONATE_IGNORE_VNO */
1620     memset((char*)creds, 0, sizeof *creds);
1621     memset((char*)entry, 0, sizeof *entry);
1622     memset((char*)session_key, 0, sizeof *session_key);
1623     memset((char*)ticket_reply, 0, sizeof *ticket_reply);
1624     memset((char*)enc_tkt_reply, 0, sizeof *enc_tkt_reply);
1625     code = krb5_kt_resolve(context, keytab, &kt);
1626     if (code) {
1627         if (keytab)
1628             afs_com_err(progname, code, "while resolving keytab %s", keytab);
1629         else
1630             afs_com_err(progname, code, "while resolving default keytab");
1631         goto cleanup;
1632     }
1633
1634     if (service_principal) {
1635         for (i = 0; (enctype = allowed_enctypes[i]) || !i; ++i) {
1636             code = krb5_kt_get_entry(context,
1637                                      kt,
1638                                      service_principal,
1639                                      kvno,
1640                                      enctype,
1641                                      entry);
1642             if (!code) {
1643                 if (allowed_enctypes[i])
1644                     deref_keyblock_enctype(session_key) = allowed_enctypes[i];
1645                 break;
1646             }
1647         }
1648         if (code) {
1649             afs_com_err(progname, code,"while scanning keytab entries");
1650             goto cleanup;
1651         }
1652     } else {
1653         krb5_keytab_entry new[1];
1654         int best = -1;
1655         memset(new, 0, sizeof *new);
1656         if ((code == krb5_kt_start_seq_get(context, kt, cursor))) {
1657             afs_com_err(progname, code, "while starting keytab scan");
1658             goto cleanup;
1659         }
1660         while (!(code = krb5_kt_next_entry(context, kt, new, cursor))) {
1661             for (i = 0;
1662                     allowed_enctypes[i] && allowed_enctypes[i]
1663                      != deref_entry_enctype(new); ++i)
1664                 ;
1665             if ((!i || allowed_enctypes[i]) &&
1666                 (best < 0 || best > i)) {
1667                 krb5_free_keytab_entry_contents(context, entry);
1668                 *entry = *new;
1669                 memset(new, 0, sizeof *new);
1670             } else krb5_free_keytab_entry_contents(context, new);
1671         }
1672         if ((i = krb5_kt_end_seq_get(context, kt, cursor))) {
1673             afs_com_err(progname, i, "while ending keytab scan");
1674             code = i;
1675             goto cleanup;
1676         }
1677         if (best < 0) {
1678             afs_com_err(progname, code, "while scanning keytab");
1679             goto cleanup;
1680         }
1681         deref_keyblock_enctype(session_key) = deref_entry_enctype(entry);
1682     }
1683
1684     /* Make Ticket */
1685
1686 #if USING_HEIMDAL
1687     if ((code = krb5_generate_random_keyblock(context,
1688                                               deref_keyblock_enctype(session_key), session_key))) {
1689         afs_com_err(progname, code, "while making session key");
1690         goto cleanup;
1691     }
1692     enc_tkt_reply->flags.initial = 1;
1693     enc_tkt_reply->transited.tr_type = DOMAIN_X500_COMPRESS;
1694     enc_tkt_reply->cname = client_principal->name;
1695     enc_tkt_reply->crealm = client_principal->realm;
1696     enc_tkt_reply->key = *session_key;
1697     {
1698         static krb5_data empty_string;
1699         enc_tkt_reply->transited.contents = empty_string;
1700     }
1701     enc_tkt_reply->authtime = starttime;
1702     enc_tkt_reply->starttime = temp_time;
1703     *enc_tkt_reply->starttime = starttime;
1704 #if 0
1705     enc_tkt_reply->renew_till = temp_time + 1;
1706     *enc_tkt_reply->renew_till = endtime;
1707 #endif
1708     enc_tkt_reply->endtime = endtime;
1709 #else
1710     if ((code = krb5_c_make_random_key(context,
1711                                        deref_keyblock_enctype(session_key), session_key))) {
1712         afs_com_err(progname, code, "while making session key");
1713         goto cleanup;
1714     }
1715     enc_tkt_reply->magic = KV5M_ENC_TKT_PART;
1716 #define DATACAST        (unsigned char *)
1717     enc_tkt_reply->flags |= TKT_FLG_INITIAL;
1718     enc_tkt_reply->transited.tr_type = KRB5_DOMAIN_X500_COMPRESS;
1719     enc_tkt_reply->session = session_key;
1720     enc_tkt_reply->client = client_principal;
1721     {
1722         static krb5_data empty_string;
1723         enc_tkt_reply->transited.tr_contents = empty_string;
1724     }
1725     enc_tkt_reply->times.authtime = starttime;
1726     enc_tkt_reply->times.starttime = starttime; /* krb524init needs this */
1727     enc_tkt_reply->times.endtime = endtime;
1728 #endif  /* USING_HEIMDAL */
1729     /* NB:  We will discard address for now--ignoring caddr field               
1730        in any case.  MIT branch does what it always did. */
1731
1732     if (paddress && *paddress) {
1733         deref_enc_tkt_addrs(enc_tkt_reply) = faddr;
1734 #if USING_HEIMDAL
1735         faddr->len = 0;
1736         faddr->val = address;
1737 #endif
1738         for (i = 0; paddress[i]; ++i) {
1739 #if USING_HEIMDAL
1740             address[i].addr_type = KRB5_ADDRESS_INET;
1741             address[i].address.data = (void*)(paddress+i);
1742             address[i].address.length = sizeof(paddress[i]);
1743 #else
1744 #if !USING_SSL
1745             address[i].magic = KV5M_ADDRESS;
1746             address[i].addrtype = ADDRTYPE_INET;
1747 #else
1748             address[i].addrtype = AF_INET;
1749 #endif
1750             address[i].contents = (void*)(paddress+i);
1751             address[i].length = sizeof(int);
1752             faddr[i] = address+i;
1753 #endif
1754         }
1755 #if USING_HEIMDAL
1756         faddr->len = i;
1757 #else
1758         faddr[i] = 0;
1759 #endif
1760     }
1761
1762 #if USING_HEIMDAL
1763     ticket_reply->sname = service_principal->name;
1764     ticket_reply->realm = service_principal->realm;
1765
1766     { /* crypto block */
1767         krb5_crypto crypto = 0;
1768         unsigned char *buf = 0;
1769         size_t buf_size, buf_len;
1770         char *what;
1771
1772         ASN1_MALLOC_ENCODE(EncTicketPart, buf, buf_size,
1773                            enc_tkt_reply, &buf_len, code);
1774         if(code) {
1775             afs_com_err(progname, code, "while encoding ticket");
1776             goto cleanup;
1777         }
1778
1779         if(buf_len != buf_size) {
1780             afs_com_err(progname, code,
1781                     "%d != %d while encoding ticket (internal ASN.1 encoder error",
1782                     buf_len, buf_size);
1783             goto cleanup;
1784         }
1785         what = "krb5_crypto_init";
1786         code = krb5_crypto_init(context,
1787                                 &deref_entry_keyblock(entry),
1788                                 deref_entry_enctype(entry),
1789                                 &crypto);
1790         if(!code) {
1791             what = "krb5_encrypt";
1792             code = krb5_encrypt_EncryptedData(context, crypto, KRB5_KU_TICKET,
1793                                               buf, buf_len, entry->vno, &(ticket_reply->enc_part));
1794         }
1795         if (buf) free(buf);
1796         if (crypto) krb5_crypto_destroy(context, crypto);
1797         if(code) {
1798             afs_com_err(progname, code, "while %s", what);
1799             goto cleanup;
1800         }
1801     } /* crypto block */
1802     ticket_reply->enc_part.etype = deref_entry_enctype(entry);
1803     ticket_reply->enc_part.kvno = temp_vno;
1804     *ticket_reply->enc_part.kvno = entry->vno;
1805     ticket_reply->tkt_vno = 5;
1806 #else
1807     ticket_reply->server = service_principal;
1808     ticket_reply->enc_part2 = enc_tkt_reply;
1809     if ((code = krb5_encrypt_tkt_part(context, &deref_entry_keyblock(entry), ticket_reply))) {
1810         afs_com_err(progname, code, "while making ticket");
1811         goto cleanup;
1812     }
1813     ticket_reply->enc_part.kvno = entry->vno;
1814 #endif
1815
1816     /* Construct Creds */
1817
1818     if ((code = krb5_copy_principal(context, service_principal,
1819                                     &creds->server))) {
1820         afs_com_err(progname, code, "while copying service principal");
1821         goto cleanup;
1822     }
1823     if ((code = krb5_copy_principal(context, client_principal,
1824                                     &creds->client))) {
1825         afs_com_err(progname, code, "while copying client principal");
1826         goto cleanup;
1827     }
1828     if ((code = krb5_copy_keyblock_contents(context, session_key,
1829                                             &deref_session_key(creds)))) {
1830         afs_com_err(progname, code, "while copying session key");
1831         goto cleanup;
1832     }
1833
1834 #if USING_HEIMDAL
1835     creds->times.authtime = enc_tkt_reply->authtime;
1836     creds->times.starttime = *(enc_tkt_reply->starttime);
1837     creds->times.endtime = enc_tkt_reply->endtime;
1838     creds->times.renew_till = 0; /* *(enc_tkt_reply->renew_till) */
1839     creds->flags.b = enc_tkt_reply->flags;
1840 #else
1841     creds->times = enc_tkt_reply->times;
1842     creds->ticket_flags = enc_tkt_reply->flags;
1843 #endif
1844     if (!deref_enc_tkt_addrs(enc_tkt_reply))
1845         ;
1846     else if ((code = krb5_copy_addresses(context,
1847                                          deref_enc_tkt_addrs(enc_tkt_reply), &creds->addresses))) {
1848         afs_com_err(progname, code, "while copying addresses");
1849         goto cleanup;
1850     }
1851
1852 #if USING_HEIMDAL
1853     {
1854         size_t creds_tkt_len;
1855         ASN1_MALLOC_ENCODE(Ticket, creds->ticket.data, creds->ticket.length,
1856                            ticket_reply, &creds_tkt_len, code);
1857         if(code) {
1858             afs_com_err(progname, code, "while encoding ticket");
1859             goto cleanup;
1860         }
1861     }
1862 #else
1863     if ((code = encode_krb5_ticket(ticket_reply, &temp))) {
1864         afs_com_err(progname, code, "while encoding ticket");
1865         goto cleanup;
1866     }
1867     creds->ticket = *temp;
1868     free(temp);
1869 #endif
1870     /* return creds */
1871     *out_creds = creds;
1872     creds = 0;
1873 cleanup:
1874     if (deref_enc_data(&ticket_reply->enc_part))
1875         free(deref_enc_data(&ticket_reply->enc_part));
1876     krb5_free_keytab_entry_contents(context, entry);
1877     if (client_principal)
1878         krb5_free_principal(context, client_principal);
1879     if (service_principal)
1880         krb5_free_principal(context, service_principal);
1881     if (cc)
1882         krb5_cc_close(context, cc);
1883     if (kt)
1884         krb5_kt_close(context, kt);
1885     if (creds) krb5_free_creds(context, creds);
1886     krb5_free_keyblock_contents(context, session_key);
1887 out:
1888     return code;
1889 #else
1890     return -1;
1891 #endif
1892 }
1893
1894
1895 static krb5_error_code
1896 get_credv5(krb5_context context, char *name, char *inst, char *realm,
1897            krb5_creds **creds)
1898 {
1899     krb5_creds increds;
1900     krb5_error_code r;
1901     static krb5_principal client_principal = 0;
1902
1903     if (dflag) {
1904         printf("Getting tickets: %s%s%s@%s\n", name, (inst && inst[0])
1905                ? "/" : "", inst ? inst : "", realm);
1906     }
1907     
1908     memset(&increds, 0, sizeof(increds));
1909 /* ANL - instance may be ptr to a null string. Pass null then */
1910     if ((r = krb5_build_principal(context, &increds.server,
1911                                   strlen(realm), realm,
1912                                   name,
1913                                   (inst && strlen(inst)) ? inst : (void *) NULL,
1914                                   (void *) NULL))) {
1915         return r;
1916     }
1917     
1918
1919     if (!_krb425_ccache) {
1920         r = krb5_cc_default(context, &_krb425_ccache);
1921         if (r)
1922             return r;
1923     }
1924     if (!client_principal) {
1925         if (client) {
1926             r = krb5_parse_name(context, client,  &client_principal);
1927         } else {
1928             r = krb5_cc_get_principal(context, _krb425_ccache, &client_principal);
1929         }
1930         if (r)
1931             return r;
1932     }
1933     
1934     increds.client = client_principal;
1935     increds.times.endtime = 0;
1936     /* Ask for DES since that is what V4 understands */
1937     get_creds_enctype((&increds)) = ENCTYPE_DES_CBC_CRC;
1938     
1939     if (keytab) {
1940         int allowed_enctypes[] = {
1941             ENCTYPE_DES_CBC_CRC, 0
1942         };
1943
1944         r = get_credv5_akimpersonate(context,
1945                                      keytab,
1946                                      increds.server,
1947                                      increds.client,
1948                                      300, ((~0U)>>1),
1949                                      allowed_enctypes,
1950                                      0 /* paddress */,
1951                                      creds /* out */);
1952     } else {
1953         r = krb5_get_credentials(context, 0, _krb425_ccache, &increds, creds);
1954     }    
1955     return r;
1956 }
1957
1958
1959 static int
1960 get_user_realm(krb5_context context, char **realm)
1961 {
1962     static krb5_principal client_principal = 0;
1963     krb5_error_code r = 0;
1964
1965     *realm = NULL;
1966
1967     if (!_krb425_ccache)
1968         krb5_cc_default(context, &_krb425_ccache);
1969     if (!client_principal) {
1970         if (client) {
1971             r = krb5_parse_name(context, client,  &client_principal);
1972         } else {
1973             r = krb5_cc_get_principal(context, _krb425_ccache, &client_principal);
1974         }
1975         if (r)
1976             return r;
1977     }
1978
1979     *realm = extract_realm(context, client_principal);
1980     if (*realm == NULL)
1981         return ENOMEM;
1982
1983     return(r);
1984 }