2 * Copyright (c) 1997 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. All advertising materials mentioning features or use of this software
18 * must display the following acknowledgement:
19 * This product includes software developed by Kungliga Tekniska
20 * Högskolan and its contributors.
22 * 4. Neither the name of the Institute nor the names of its contributors
23 * may be used to endorse or promote products derived from this software
24 * without specific prior written permission.
26 * THIS SOFTWARE IS PROVIDED BY THE INSTITUTE AND CONTRIBUTORS ``AS IS'' AND
27 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
28 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
29 * ARE DISCLAIMED. IN NO EVENT SHALL THE INSTITUTE OR CONTRIBUTORS BE LIABLE
30 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
31 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
32 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
33 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
34 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
35 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
43 /* get an additional version 4 ticket via the 524 protocol */
46 #define NEVERDATE ((unsigned long)0x7fffffffL)
50 get_ad_tkt(char *service
, char *sinstance
, char *realm
, int lifetime
)
56 krb5_creds in_creds
, *out_creds
;
59 char pname
[ANAME_SZ
], pinst
[INST_SZ
], prealm
[REALM_SZ
];
61 ret
= krb5_init_context(&context
);
64 ret
= krb5_cc_default(context
, &id
);
66 krb5_free_context(context
);
69 memset(&in_creds
, 0, sizeof(in_creds
));
71 in_creds
.times
.endtime
= krb_life_to_time(time(NULL
), lifetime
);
72 if(in_creds
.times
.endtime
== NEVERDATE
)
73 in_creds
.times
.endtime
= 0;
74 ret
= krb5_cc_get_principal(context
, id
, &in_creds
.client
);
76 krb5_cc_close(context
, id
);
77 krb5_free_context(context
);
80 ret
= krb5_524_conv_principal(context
, in_creds
.client
,
81 pname
, pinst
, prealm
);
83 krb5_free_principal(context
, in_creds
.client
);
84 krb5_cc_close(context
, id
);
85 krb5_free_context(context
);
88 ret
= krb5_425_conv_principal(context
, service
, sinstance
, realm
,
91 krb5_free_principal(context
, in_creds
.client
);
92 krb5_cc_close(context
, id
);
93 krb5_free_context(context
);
96 ret
= krb5_get_credentials(context
,
101 krb5_cc_close(context
, id
);
102 krb5_free_principal(context
, in_creds
.client
);
103 krb5_free_principal(context
, in_creds
.server
);
105 krb5_free_context(context
);
108 ret
= krb524_convert_creds_kdc(context
, out_creds
, &cred
);
109 krb5_free_context(context
);
110 krb5_free_creds(context
, out_creds
);
113 code
= save_credentials(cred
.service
, cred
.instance
, cred
.realm
,
114 cred
.session
, cred
.lifetime
, cred
.kvno
,
115 &cred
.ticket_st
, now
);
116 if(code
== NO_TKT_FIL
)
117 code
= tf_setup(&cred
, pname
, pinst
);
118 memset(&cred
.session
, 0, sizeof(cred
.session
));