Expand PMF_FN_* macros.
[netbsd-mini2440.git] / crypto / dist / heimdal / lib / 45 / get_ad_tkt.c
blob2de7e057376f67984df7dd07a1af812a0647a805
1 /*
2 * Copyright (c) 1997, 1999 Kungliga Tekniska Högskolan
3 * (Royal Institute of Technology, Stockholm, Sweden).
4 * All rights reserved.
6 * Redistribution and use in source and binary forms, with or without
7 * modification, are permitted provided that the following conditions
8 * are met:
10 * 1. Redistributions of source code must retain the above copyright
11 * notice, this list of conditions and the following disclaimer.
13 * 2. Redistributions in binary form must reproduce the above copyright
14 * notice, this list of conditions and the following disclaimer in the
15 * documentation and/or other materials provided with the distribution.
17 * 3. Neither the name of the Institute nor the names of its contributors
18 * may be used to endorse or promote products derived from this software
19 * without specific prior written permission.
21 * THIS SOFTWARE IS PROVIDED BY THE INSTITUTE AND CONTRIBUTORS ``AS IS'' AND
22 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
23 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
24 * ARE DISCLAIMED. IN NO EVENT SHALL THE INSTITUTE OR CONTRIBUTORS BE LIABLE
25 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
26 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
27 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
28 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
29 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
30 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
31 * SUCH DAMAGE.
34 #include "45_locl.h"
36 __RCSID("$Heimdal: get_ad_tkt.c 10113 2001-06-18 13:11:33Z assar $"
37 "$NetBSD$");
39 /* get an additional version 4 ticket via the 524 protocol */
41 #ifndef NEVERDATE
42 #define NEVERDATE ((unsigned long)0x7fffffffL)
43 #endif
45 int
46 get_ad_tkt(char *service, char *sinstance, char *realm, int lifetime)
48 krb5_error_code ret;
49 int code;
50 krb5_context context;
51 krb5_ccache id;
52 krb5_creds in_creds, *out_creds;
53 CREDENTIALS cred;
54 time_t now;
55 char pname[ANAME_SZ], pinst[INST_SZ], prealm[REALM_SZ];
57 ret = krb5_init_context(&context);
58 if(ret)
59 return KFAILURE;
60 ret = krb5_cc_default(context, &id);
61 if(ret){
62 krb5_free_context(context);
63 return KFAILURE;
65 memset(&in_creds, 0, sizeof(in_creds));
66 now = time(NULL);
67 in_creds.times.endtime = krb_life_to_time(time(NULL), lifetime);
68 if(in_creds.times.endtime == NEVERDATE)
69 in_creds.times.endtime = 0;
70 ret = krb5_cc_get_principal(context, id, &in_creds.client);
71 if(ret){
72 krb5_cc_close(context, id);
73 krb5_free_context(context);
74 return KFAILURE;
76 ret = krb5_524_conv_principal(context, in_creds.client,
77 pname, pinst, prealm);
78 if(ret){
79 krb5_free_principal(context, in_creds.client);
80 krb5_cc_close(context, id);
81 krb5_free_context(context);
82 return KFAILURE;
84 ret = krb5_425_conv_principal(context, service, sinstance, realm,
85 &in_creds.server);
86 if(ret){
87 krb5_free_principal(context, in_creds.client);
88 krb5_cc_close(context, id);
89 krb5_free_context(context);
90 return KFAILURE;
92 ret = krb5_get_credentials(context,
93 0,
94 id,
95 &in_creds,
96 &out_creds);
97 krb5_free_principal(context, in_creds.client);
98 krb5_free_principal(context, in_creds.server);
99 if(ret){
100 krb5_cc_close(context, id);
101 krb5_free_context(context);
102 return KFAILURE;
104 ret = krb524_convert_creds_kdc_ccache(context, id, out_creds, &cred);
105 krb5_cc_close(context, id);
106 krb5_free_context(context);
107 krb5_free_creds(context, out_creds);
108 if(ret)
109 return KFAILURE;
110 code = save_credentials(cred.service, cred.instance, cred.realm,
111 cred.session, cred.lifetime, cred.kvno,
112 &cred.ticket_st, now);
113 if(code == NO_TKT_FIL)
114 code = tf_setup(&cred, pname, pinst);
115 memset(&cred.session, 0, sizeof(cred.session));
116 return code;