2 * Copyright (c) 1997, 1999 Kungliga Tekniska Högskolan
3 * (Royal Institute of Technology, Stockholm, Sweden).
6 * Redistribution and use in source and binary forms, with or without
7 * modification, are permitted provided that the following conditions
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
36 __RCSID("$Heimdal: get_ad_tkt.c 10113 2001-06-18 13:11:33Z assar $"
39 /* get an additional version 4 ticket via the 524 protocol */
42 #define NEVERDATE ((unsigned long)0x7fffffffL)
46 get_ad_tkt(char *service
, char *sinstance
, char *realm
, int lifetime
)
52 krb5_creds in_creds
, *out_creds
;
55 char pname
[ANAME_SZ
], pinst
[INST_SZ
], prealm
[REALM_SZ
];
57 ret
= krb5_init_context(&context
);
60 ret
= krb5_cc_default(context
, &id
);
62 krb5_free_context(context
);
65 memset(&in_creds
, 0, sizeof(in_creds
));
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
);
72 krb5_cc_close(context
, id
);
73 krb5_free_context(context
);
76 ret
= krb5_524_conv_principal(context
, in_creds
.client
,
77 pname
, pinst
, prealm
);
79 krb5_free_principal(context
, in_creds
.client
);
80 krb5_cc_close(context
, id
);
81 krb5_free_context(context
);
84 ret
= krb5_425_conv_principal(context
, service
, sinstance
, realm
,
87 krb5_free_principal(context
, in_creds
.client
);
88 krb5_cc_close(context
, id
);
89 krb5_free_context(context
);
92 ret
= krb5_get_credentials(context
,
97 krb5_free_principal(context
, in_creds
.client
);
98 krb5_free_principal(context
, in_creds
.server
);
100 krb5_cc_close(context
, id
);
101 krb5_free_context(context
);
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
);
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
));