Add printf format checks to afs_com_err()
[openafs.git] / src / aklog / klog.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 #include <afsconfig.h>
11 #include <afs/param.h>
12
13 #include <afs/stds.h>
14 #include <sys/types.h>
15 #include <rx/xdr.h>
16 #ifdef  AFS_AIX32_ENV
17 #include <signal.h>
18 #endif
19 #include <string.h>
20 #include <errno.h>
21
22 #include <lock.h>
23 #include <ubik.h>
24
25 #include <stdio.h>
26 #include <pwd.h>
27 #include <afs/com_err.h>
28 #include <afs/auth.h>
29 #include <afs/afsutil.h>
30 #include <afs/cellconfig.h>
31 #ifdef AFS_RXK5
32 #include "rxk5_utilafs.h"
33 #endif
34 #include <afs/ptclient.h>
35 #include <afs/cmd.h>
36 #include <krb5.h>
37
38 #ifdef HAVE_KRB5_CREDS_KEYBLOCK
39 #define USING_MIT 1
40 #endif
41 #ifdef HAVE_KRB5_CREDS_SESSION
42 #define USING_HEIMDAL 1
43 #endif
44
45 #include "assert.h"
46 #include "skipwrap.h"
47
48 /* This code borrowed heavily from the previous version of log.  Here is the
49    intro comment for that program: */
50
51 /*
52         log -- tell the Andrew Cache Manager your password
53         5 June 1985
54         modified
55         February 1986
56
57         Further modified in August 1987 to understand cell IDs.
58
59         Further modified in October 2006 to understand kerberos 5.
60  */
61
62 /* Current Usage:
63      klog [principal [password]] [-t] [-c cellname] [-k <k5realm>]
64
65      where:
66        principal is of the form 'name' or 'name@cell' which provides the
67           cellname.  See the -c option below.
68        password is the user's password.  This form is NOT recommended for
69           interactive users.
70        -t advises klog to write a Kerberos style ticket file in /tmp.
71        -c identifies cellname as the cell in which authentication is to take
72           place.
73        -k identifies an alternate kerberos realm to use provide
74           authentication services for the cell.
75  */
76
77 #define KLOGEXIT(code) rx_Finalize(); \
78                        (exit(!!code))
79 static int CommandProc(struct cmd_syndesc *as, void *arock);
80
81 static int zero_argc;
82 static char **zero_argv;
83
84 static krb5_context k5context;
85 static struct afsconf_dir *tdir;
86 static int always_evil = 2;     /* gcc optimizes 0 into bss.  fools. */
87
88 int
89 main(int argc, char *argv[])
90 {
91     struct cmd_syndesc *ts;
92     afs_int32 code;
93 #ifdef  AFS_AIX32_ENV
94     /*
95      * The following signal action for AIX is necessary so that in case of a 
96      * crash (i.e. core is generated) we can include the user's data section 
97      * in the core dump. Unfortunately, by default, only a partial core is
98      * generated which, in many cases, isn't too useful.
99      */
100     struct sigaction nsa;
101
102     sigemptyset(&nsa.sa_mask);
103     nsa.sa_handler = SIG_DFL;
104     nsa.sa_flags = SA_FULLDUMP;
105     sigaction(SIGABRT, &nsa, NULL);
106     sigaction(SIGSEGV, &nsa, NULL);
107 #endif
108     zero_argc = argc;
109     zero_argv = argv;
110
111     ts = cmd_CreateSyntax(NULL, CommandProc, NULL,
112                           "obtain Kerberos authentication");
113
114 #define aXFLAG 0
115 #define aPRINCIPAL 1
116 #define aPASSWORD 2
117 #define aCELL 3
118 #define aKRBREALM 4
119 #define aPIPE 5
120 #define aSILENT 6
121 #define aLIFETIME 7
122 #define aSETPAG 8
123 #define aTMP 9
124 #define aNOPRDB 10
125 #define aUNWRAP 11
126 #define aK5 12
127 #define aK4 13
128
129     cmd_AddParm(ts, "-x", CMD_FLAG, CMD_OPTIONAL|CMD_HIDDEN, 0);
130     cmd_Seek(ts, aPRINCIPAL);
131     cmd_AddParm(ts, "-principal", CMD_SINGLE, CMD_OPTIONAL, "user name");
132     cmd_AddParm(ts, "-password", CMD_SINGLE, CMD_OPTIONAL, "user's password");
133     cmd_AddParm(ts, "-cell", CMD_SINGLE, CMD_OPTIONAL, "cell name");
134     cmd_AddParm(ts, "-k", CMD_SINGLE, CMD_OPTIONAL, "krb5 realm");
135     cmd_AddParm(ts, "-pipe", CMD_FLAG, CMD_OPTIONAL,
136                 "read password from stdin");
137     cmd_AddParm(ts, "-silent", CMD_FLAG, CMD_OPTIONAL, "silent operation");
138     cmd_AddParm(ts, "-lifetime", CMD_SINGLE, CMD_OPTIONAL,
139                 "ticket lifetime in hh[:mm[:ss]]");
140     cmd_AddParm(ts, "-setpag", CMD_FLAG, CMD_OPTIONAL,
141                 "Create a new setpag before authenticating");
142     cmd_AddParm(ts, "-tmp", CMD_FLAG, CMD_OPTIONAL,
143                 "write Kerberos-style ticket file in /tmp");
144     cmd_AddParm(ts, "-noprdb", CMD_FLAG, CMD_OPTIONAL, "don't consult pt");
145     cmd_AddParm(ts, "-unwrap", CMD_FLAG, CMD_OPTIONAL, "perform 524d conversion");
146 #ifdef AFS_RXK5
147     cmd_AddParm(ts, "-k5", CMD_FLAG, CMD_OPTIONAL, "get rxk5 credentials");
148     cmd_AddParm(ts, "-k4", CMD_FLAG, CMD_OPTIONAL, "get rxkad credentials");
149 #else
150     ++ts->nParms;       /* skip -k5 */
151     cmd_AddParm(ts, "-k4", CMD_FLAG, CMD_OPTIONAL|CMD_HIDDEN, 0);
152 #endif
153
154     code = cmd_Dispatch(argc, argv);
155     KLOGEXIT(code);
156 }
157
158 static char *
159 getpipepass(void)
160 {
161     static char gpbuf[BUFSIZ];
162     /* read a password from stdin, stop on \n or eof */
163     register int i, tc;
164     memset(gpbuf, 0, sizeof(gpbuf));
165     for (i = 0; i < (sizeof(gpbuf) - 1); i++) {
166         tc = fgetc(stdin);
167         if (tc == '\n' || tc == EOF)
168             break;
169         gpbuf[i] = tc;
170     }
171     return gpbuf;
172 }
173
174 void
175 silent_errors(const char *who,
176     afs_int32 code,
177     const char *fmt,
178     va_list ap)
179 {
180     /* ignore and don't print error */
181 }
182
183 #if defined(HAVE_KRB5_PRINC_SIZE) || defined(krb5_princ_size)
184
185 #define get_princ_str(c, p, n) krb5_princ_component(c, p, n)->data
186 #define get_princ_len(c, p, n) krb5_princ_component(c, p, n)->length
187 #define num_comp(c, p) (krb5_princ_size(c, p))
188 #define realm_data(c, p) krb5_princ_realm(c, p)->data
189 #define realm_len(c, p) krb5_princ_realm(c, p)->length
190
191 #elif defined(HAVE_KRB5_PRINCIPAL_GET_COMP_STRING)
192
193 #define get_princ_str(c, p, n) krb5_principal_get_comp_string(c, p, n)
194 #define get_princ_len(c, p, n) strlen(krb5_principal_get_comp_string(c, p, n))
195 #define num_comp(c, p) ((p)->name.name_string.len)
196 #define realm_data(c, p) krb5_realm_data(krb5_principal_get_realm(c, p))
197 #define realm_len(c, p) krb5_realm_length(krb5_principal_get_realm(c, p))
198
199 #else
200 #error "Must have either krb5_princ_size or krb5_principal_get_comp_string"
201 #endif
202
203 #if defined(HAVE_KRB5_CREDS_KEYBLOCK)
204
205 #define get_cred_keydata(c) c->keyblock.contents
206 #define get_cred_keylen(c) c->keyblock.length
207 #define get_creds_enctype(c) c->keyblock.enctype
208
209 #elif defined(HAVE_KRB5_CREDS_SESSION)
210
211 #define get_cred_keydata(c) c->session.keyvalue.data
212 #define get_cred_keylen(c) c->session.keyvalue.length
213 #define get_creds_enctype(c) c->session.keytype
214
215 #else
216 #error "Must have either keyblock or session member of krb5_creds"
217 #endif
218
219 static int
220 whoami(struct ktc_token *atoken,
221     struct afsconf_cell *cellconfig,
222     struct ktc_principal *aclient,
223     int *vicep)
224 {
225     int scIndex;
226     int code;
227     int i;
228     struct ubik_client *ptconn = 0;
229     struct rx_securityClass *sc;
230     struct rx_connection *conns[MAXSERVERS+1];
231     idlist lids[1];
232     namelist lnames[1];
233     char tempname[PR_MAXNAMELEN + 1];
234
235     memset(lnames, 0, sizeof *lnames);
236     memset(lids, 0, sizeof *lids);
237     scIndex = 2;
238     sc = rxkad_NewClientSecurityObject(rxkad_auth,
239         &atoken->sessionKey, atoken->kvno,
240         atoken->ticketLen, atoken->ticket);
241     for (i = 0; i < cellconfig->numServers; ++i)
242         conns[i] = rx_NewConnection(cellconfig->hostAddr[i].sin_addr.s_addr,
243                 cellconfig->hostAddr[i].sin_port, PRSRV, sc, scIndex);
244     conns[i] = 0;
245     ptconn = 0;
246     if ((code = ubik_ClientInit(conns, &ptconn)))
247         goto Failed;
248     if (*aclient->instance)
249         snprintf (tempname, sizeof tempname, "%s.%s",
250             aclient->name, aclient->instance);
251     else
252         snprintf (tempname, sizeof tempname, "%s", aclient->name);
253     lnames->namelist_len = 1;
254     lnames->namelist_val = (prname *) tempname;
255     code = ubik_PR_NameToID(ptconn, 0, lnames, lids);
256     if (lids->idlist_val) {
257         *vicep = *lids->idlist_val;
258     }
259 Failed:
260     if (lids->idlist_val) free(lids->idlist_val);
261     if (ptconn) ubik_ClientDestroy(ptconn);
262     return code;
263 }
264
265 static void
266 k5_to_k4_name(krb5_context k5context,
267     krb5_principal k5princ,
268     struct ktc_principal *ktcprinc)
269 {
270     int i;
271
272     switch(num_comp(k5context, k5princ)) {
273         default:
274         /* case 2: */
275             i = get_princ_len(k5context, k5princ, 1);
276             if (i > MAXKTCNAMELEN-1) i = MAXKTCNAMELEN-1;
277             memcpy(ktcprinc->instance, get_princ_str(k5context, k5princ, 1), i);
278             /* fall through */
279         case 1:
280             i = get_princ_len(k5context, k5princ, 0);
281             if (i > MAXKTCNAMELEN-1) i = MAXKTCNAMELEN-1;
282             memcpy(ktcprinc->name, get_princ_str(k5context, k5princ, 0), i);
283             /* fall through */
284         case 0:
285             break;
286         }
287 }
288
289 /* save and reuse password.  This is necessary to make
290  *  "direct to service" authentication work with most
291  *  flavors of kerberos, when the afs principal has no instance.
292  */
293 struct kp_arg {
294     char **pp, *pstore;
295 };
296 krb5_error_code
297 klog_prompter(krb5_context context,
298     void *a,
299     const char *name,
300     const char *banner,
301     int num_prompts,
302     krb5_prompt prompts[])
303 {
304     krb5_error_code code;
305     int i, type;
306 #if !defined(USING_HEIMDAL) && defined(HAVE_KRB5_GET_PROMPT_TYPES)
307     krb5_prompt_type *types;
308 #endif
309     struct kp_arg *kparg = (struct kp_arg *) a;
310     code = krb5_prompter_posix(context, a, name, banner, num_prompts, prompts);
311     if (code) return code;
312 #if !defined(USING_HEIMDAL) && defined(HAVE_KRB5_GET_PROMPT_TYPES)
313     if ((types = krb5_get_prompt_types(context)))
314 #endif
315     for (i = 0; i < num_prompts; ++i) {
316 #if !defined(USING_HEIMDAL) 
317 #if defined(HAVE_KRB5_GET_PROMPT_TYPES)
318         type = types[i];
319 #elif defined(HAVE_KRB5_PROMPT_TYPE)    
320         type = prompts[i].type;
321 #else
322         /* AIX 5.3 krb5_get_prompt_types is missing. Um... */
323         type = ((i == 1)&&(num_prompts == 2)) ? 
324           KRB5_PROMPT_TYPE_NEW_PASSWORD_AGAIN : KRB5_PROMPT_TYPE_PASSWORD;
325 #endif
326 #else
327         type = prompts[i].type;
328 #endif
329 #if 0
330         printf ("i%d t%d <%.*s>\n", i, type, prompts[i].reply->length,
331                 prompts[i].reply->data);
332 #endif
333         switch(type) {
334         case KRB5_PROMPT_TYPE_PASSWORD:
335         case KRB5_PROMPT_TYPE_NEW_PASSWORD_AGAIN:
336             memcpy(kparg->pstore, prompts[i].reply->data, prompts[i].reply->length);
337             kparg->pstore[prompts[i].reply->length] = 0;
338             *kparg->pp = kparg->pstore;
339         }
340     }
341     return 0;
342 }
343
344 static int
345 CommandProc(struct cmd_syndesc *as, void *arock)
346 {
347     krb5_principal princ = 0;
348     char *cell, *pname, **hrealms, *service;
349     char service_temp[MAXKTCREALMLEN + 20];
350     krb5_creds incred[1], mcred[1], *outcred = 0, *afscred;
351     krb5_ccache cc = 0;
352     krb5_get_init_creds_opt gic_opts[1];
353     char *tofree = NULL, *outname;
354     int code;
355     char *what;
356     int i, dosetpag, evil, noprdb, id;
357 #ifdef AFS_RXK5
358     int authtype;
359 #endif
360     krb5_data enc_part[1];
361     time_t lifetime;            /* requested ticket lifetime */
362     krb5_prompter_fct pf = NULL;
363     char *pass = 0;
364     void *pa = 0;
365     struct kp_arg klog_arg[1];
366
367     char passwd[BUFSIZ];
368     struct afsconf_cell cellconfig[1];
369
370     static char rn[] = "klog";  /*Routine name */
371     static int Pipe = 0;        /* reading from a pipe */
372     static int Silent = 0;      /* Don't want error messages */
373
374     int writeTicketFile = 0;    /* write ticket file to /tmp */
375
376     service = 0;
377     memset(incred, 0, sizeof *incred);
378     /* blow away command line arguments */
379     for (i = 1; i < zero_argc; i++)
380         memset(zero_argv[i], 0, strlen(zero_argv[i]));
381     zero_argc = 0;
382     memset(klog_arg, 0, sizeof *klog_arg);
383
384     /* first determine quiet flag based on -silent switch */
385     Silent = (as->parms[aSILENT].items ? 1 : 0);
386
387     if (Silent) {
388         afs_set_com_err_hook(silent_errors);
389     }
390
391     if ((code = krb5_init_context(&k5context))) {
392         afs_com_err(rn, code, "while initializing Kerberos 5 library");
393         KLOGEXIT(code);
394     }
395     if ((code = rx_Init(0))) {
396         afs_com_err(rn, code, "while initializing rx");
397         KLOGEXIT(code);
398     }
399     initialize_U_error_table();
400     /*initialize_krb5_error_table();*/ 
401     initialize_RXK_error_table();
402     initialize_KTC_error_table();
403     initialize_ACFG_error_table();
404     /* initialize_rx_error_table(); */
405     if (!(tdir = afsconf_Open(AFSDIR_CLIENT_ETC_DIRPATH))) {
406         afs_com_err(rn, 0, "can't get afs configuration (afsconf_Open(%s))",
407             AFSDIR_CLIENT_ETC_DIRPATH);
408         KLOGEXIT(1);
409     }
410
411     /*
412      * Enable DES enctypes, which are currently still required for AFS.
413      * krb5_allow_weak_crypto is MIT Kerberos 1.8.  krb5_enctype_enable is
414      * Heimdal.
415      */
416 #if defined(HAVE_KRB5_ALLOW_WEAK_CRYPTO)
417     krb5_allow_weak_crypto(k5context, 1);
418 #elif defined(HAVE_KRB5_ENCTYPE_ENABLE)
419     i = krb5_enctype_valid(k5context, ETYPE_DES_CBC_CRC);
420     if (i)
421         krb5_enctype_enable(k5context, ETYPE_DES_CBC_CRC);
422 #endif
423
424     /* Parse remaining arguments. */
425
426     dosetpag = !! as->parms[aSETPAG].items;
427     Pipe = !! as->parms[aPIPE].items;
428     writeTicketFile = !! as->parms[aTMP].items;
429     noprdb = !! as->parms[aNOPRDB].items;
430     evil = (always_evil&1) || !! as->parms[aUNWRAP].items;
431
432 #ifdef AFS_RXK5
433     authtype = 0;
434     if (as->parms[aK5].items)
435         authtype |= FORCE_RXK5;
436     if (as->parms[aK4].items)
437         authtype |= FORCE_RXKAD;
438     if (!authtype)
439         authtype |= env_afs_rxk5_default();
440 #endif
441
442     cell = as->parms[aCELL].items ? as->parms[aCELL].items->data : 0;
443     if ((code = afsconf_GetCellInfo(tdir, cell, "afsprot", cellconfig))) {
444         if (cell)
445             afs_com_err(rn, code, "Can't get cell information for '%s'", cell);
446         else
447             afs_com_err(rn, code, "Can't get determine local cell!");
448         KLOGEXIT(code);
449     }
450
451     if (as->parms[aKRBREALM].items) {
452         code = krb5_set_default_realm(k5context,
453                 as->parms[aKRBREALM].items->data);
454         if (code) {
455             afs_com_err(rn, code, "Can't make <%s> the default realm",
456                 as->parms[aKRBREALM].items->data);
457             KLOGEXIT(code);
458         }
459     }
460     else if ((code = krb5_get_host_realm(k5context, cellconfig->hostName[0], &hrealms))) {
461         afs_com_err(rn, code, "Can't get realm for host <%s> in cell <%s>\n",
462                 cellconfig->hostName[0], cellconfig->name);
463         KLOGEXIT(code);
464     } else {
465         if (hrealms && *hrealms) {
466             code = krb5_set_default_realm(k5context,
467                     *hrealms);
468             if (code) {
469                 afs_com_err(rn, code, "Can't make <%s> the default realm",
470                     *hrealms);
471                 KLOGEXIT(code);
472             }
473         }
474         if (hrealms) krb5_free_host_realm(k5context, hrealms);
475     }
476
477     id = getuid();
478     if (as->parms[aPRINCIPAL].items) {
479         pname = as->parms[aPRINCIPAL].items->data;
480     } else {
481         /* No explicit name provided: use Unix uid. */
482         struct passwd *pw;
483         pw = getpwuid(id);
484         if (pw == 0) {
485             afs_com_err(rn, 0,
486                 "Can't figure out your name from your user id (%d).", id);
487             if (!Silent)
488                 fprintf(stderr, "%s: Try providing the user name.\n", rn);
489             KLOGEXIT(1);
490         }
491         pname = pw->pw_name;
492     }
493     code = krb5_parse_name(k5context, pname, &princ);
494     if (code) {
495         afs_com_err(rn, code, "Can't parse principal <%s>", pname);
496         KLOGEXIT(code);
497     }
498
499     if (as->parms[aPASSWORD].items) {
500         /*
501          * Current argument is the desired password string.  Remember it in
502          * our local buffer, and zero out the argument string - anyone can
503          * see it there with ps!
504          */
505         strncpy(passwd, as->parms[aPASSWORD].items->data, sizeof(passwd));
506         memset(as->parms[aPASSWORD].items->data, 0,
507                strlen(as->parms[aPASSWORD].items->data));
508         pass = passwd;
509     }
510
511     if (as->parms[aLIFETIME].items) {
512         char *life = as->parms[aLIFETIME].items->data;
513         char *sp;               /* string ptr to rest of life */
514         lifetime = 3600 * strtol(life, &sp, 0); /* hours */
515         if (sp == life) {
516           bad_lifetime:
517             if (!Silent)
518                 fprintf(stderr, "%s: translating '%s' to lifetime failed\n",
519                         rn, life);
520             return 1;
521         }
522         if (*sp == ':') {
523             life = sp + 1;      /* skip the colon */
524             lifetime += 60 * strtol(life, &sp, 0);      /* minutes */
525             if (sp == life)
526                 goto bad_lifetime;
527             if (*sp == ':') {
528                 life = sp + 1;
529                 lifetime += strtol(life, &sp, 0);       /* seconds */
530                 if (sp == life)
531                     goto bad_lifetime;
532                 if (*sp)
533                     goto bad_lifetime;
534             } else if (*sp)
535                 goto bad_lifetime;
536         } else if (*sp)
537             goto bad_lifetime;
538     } else
539         lifetime = 0;
540
541     /* Get the password if it wasn't provided. */
542     if (!pass) {
543         if (Pipe) {
544             strncpy(passwd, getpipepass(), sizeof(passwd));
545             pass = passwd;
546         } else {
547             pf = klog_prompter;
548             pa = klog_arg;
549         }
550     }
551
552     service = 0;
553 #ifdef AFS_RXK5
554     if (authtype & FORCE_RXK5) {
555         tofree = get_afs_krb5_svc_princ(cellconfig);
556         snprintf(service_temp, sizeof service_temp, "%s", tofree);
557     } else
558 #endif
559     snprintf (service_temp, sizeof service_temp, "afs/%s", cellconfig->name);
560     if (writeTicketFile)
561         service = 0;
562     else 
563         service = service_temp;
564
565     klog_arg->pp = &pass;
566     klog_arg->pstore = passwd;
567     /* XXX should allow k5 to prompt in most cases -- what about expired pw?*/
568     krb5_get_init_creds_opt_init(gic_opts);
569     for (;;) {
570         code = krb5_get_init_creds_password(k5context,
571             incred,
572             princ,
573             pass,
574             pf, /* prompter */
575             pa, /* data */
576             0,  /* start_time */
577             service,    /* in_tkt_service */
578             gic_opts);
579         if (code != KRB5KDC_ERR_S_PRINCIPAL_UNKNOWN || service != service_temp) break;
580 #ifdef AFS_RXK5
581         if (authtype & FORCE_RXK5) break;
582 #endif
583         service = "afs";
584     }
585     memset(passwd, 0, sizeof(passwd));
586     if (code) {
587         char *r = 0;
588         if (krb5_get_default_realm(k5context, &r))
589             r = 0;
590         if (service)
591             afs_com_err(rn, code, "Unable to authenticate to use %s", service);
592         else if (r)
593             afs_com_err(rn, code, "Unable to authenticate in realm %s", r);
594         else
595             afs_com_err(rn, code, "Unable to authenticate to use cell %s",
596                 cellconfig->name);
597         if (r) free(r);
598         KLOGEXIT(code);
599     }
600
601     if (service) {
602         afscred = incred;
603     } else {
604         for (;;writeTicketFile = 0) {
605             if (writeTicketFile) {
606                 what = "getting default ccache";
607                 code = krb5_cc_default(k5context, &cc);
608             } else {
609                 what = "krb5_cc_resolve";
610                 code = krb5_cc_resolve(k5context, "MEMORY:core", &cc);
611                 if (code) goto Failed;
612             }
613             what = "initializing ccache";
614             code = krb5_cc_initialize(k5context, cc, princ);
615             if (code) goto Failed;
616             what = "writing Kerberos ticket file";
617             code = krb5_cc_store_cred(k5context, cc, incred);
618             if (code) goto Failed;
619             if (writeTicketFile)
620                 fprintf(stderr,
621                     "Wrote ticket file to %s\n",
622                     krb5_cc_get_name(k5context, cc));
623             break;
624         Failed:
625             if (code)
626                 afs_com_err(rn, code, "%s", what);
627             if (writeTicketFile) {
628                 if (cc) {
629                     krb5_cc_close(k5context, cc);
630                     cc = 0;
631                 }
632                 continue;
633             }
634             KLOGEXIT(code);
635         }
636
637         for (service = service_temp;;service = "afs") {
638             memset(mcred, 0, sizeof *mcred);
639             mcred->client = princ;
640             code = krb5_parse_name(k5context, service, &mcred->server);
641             if (code) {
642                 afs_com_err(rn, code, "Unable to parse service <%s>\n", service);
643                 KLOGEXIT(code);
644             }
645             if (tofree) { free(tofree); tofree = 0; }
646             if (!(code = krb5_unparse_name(k5context, mcred->server, &outname)))
647                 tofree = outname;
648             else outname = service;
649             code = krb5_get_credentials(k5context, 0, cc, mcred, &outcred);
650             krb5_free_principal(k5context, mcred->server);
651             if (code != KRB5KDC_ERR_S_PRINCIPAL_UNKNOWN || service != service_temp) break;
652 #ifdef AFS_RXK5
653             if (authtype & FORCE_RXK5) break;
654 #endif
655         }
656         afscred = outcred;
657     }
658     if (code) {
659         afs_com_err(rn, code, "Unable to get credentials to use %s", outname);
660         KLOGEXIT(code);
661     }
662
663 #ifdef AFS_RXK5
664     if (authtype & FORCE_RXK5) {
665         struct ktc_principal aserver[1];
666         int viceid = 555;
667
668         memset(aserver, 0, sizeof *aserver);
669         strncpy(aserver->cell, cellconfig->name, MAXKTCREALMLEN-1);
670         code = ktc_SetK5Token(k5context, aserver, afscred, viceid, dosetpag);
671         if (code) {
672             afs_com_err(rn, code, "Unable to store tokens for cell %s\n",
673                 cellconfig->name);
674             KLOGEXIT(1);
675         }
676     } else
677 #endif
678     {
679         struct ktc_principal aserver[1], aclient[1];
680         struct ktc_token atoken[1];
681
682         memset(atoken, 0, sizeof *atoken);
683         if (evil) {
684             size_t elen = enc_part->length;
685             atoken->kvno = RXKAD_TKT_TYPE_KERBEROS_V5_ENCPART_ONLY;
686             if (afs_krb5_skip_ticket_wrapper(afscred->ticket.data,
687                         afscred->ticket.length, &enc_part->data,
688                         &elen)) {
689                 afs_com_err(rn, 0, "Can't unwrap %s AFS credential",
690                     cellconfig->name);
691                 KLOGEXIT(1);
692             }
693         } else {
694             atoken->kvno = RXKAD_TKT_TYPE_KERBEROS_V5;
695             *enc_part = afscred->ticket;
696         }
697         atoken->startTime = afscred->times.starttime;
698         atoken->endTime = afscred->times.endtime;
699         memcpy(&atoken->sessionKey, get_cred_keydata(afscred),
700             get_cred_keylen(afscred));
701         memcpy(atoken->ticket, enc_part->data,
702             atoken->ticketLen = enc_part->length);
703         memset(aserver, 0, sizeof *aserver);
704         strncpy(aserver->name, "afs", 4);
705         strncpy(aserver->cell, cellconfig->name, MAXKTCREALMLEN-1);
706         memset(aclient, 0, sizeof *aclient);
707         i = realm_len(k5context, afscred->client);
708         if (i > MAXKTCREALMLEN-1) i = MAXKTCREALMLEN-1;
709         memcpy(aclient->cell, realm_data(k5context, afscred->client), i);
710         if (!noprdb) {
711             int viceid;
712             k5_to_k4_name(k5context, afscred->client, aclient);
713             code = whoami(atoken, cellconfig, aclient, &viceid);
714             if (code) {
715                 afs_com_err(rn, code, "Can't get your viceid for cell %s", cellconfig->name);
716                 *aclient->name = 0;
717             } else
718                 snprintf(aclient->name, MAXKTCNAMELEN-1, "AFS ID %d", viceid);
719         }
720         if (!*aclient->name)
721             k5_to_k4_name(k5context, afscred->client, aclient);
722         code = ktc_SetToken(aserver, atoken, aclient, dosetpag);
723         if (code) {
724             afs_com_err(rn, code, "Unable to store tokens for cell %s\n",
725                 cellconfig->name);
726             KLOGEXIT(1);
727         }
728     }
729
730     krb5_free_principal(k5context, princ);
731     krb5_free_cred_contents(k5context, incred);
732     if (outcred) krb5_free_creds(k5context, outcred);
733     if (cc)
734         krb5_cc_close(k5context, cc);
735     if (tofree) free(tofree);
736
737     return 0;
738 }