2 * Copyright (c) 1995-2003 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
34 #include "kafs_locl.h"
36 __RCSID("$Heimdal: afskrb5.c 17032 2006-04-10 08:45:04Z lha $"
39 struct krb5_kafs_data
{
42 krb5_const_realm realm
;
46 KAFS_RXKAD_2B_KVNO
= 213,
47 KAFS_RXKAD_K5_KVNO
= 256
51 v5_to_kt(krb5_creds
*cred
, uid_t uid
, struct kafs_token
*kt
, int local524
)
57 /* check if des key */
58 if (cred
->session
.keyvalue
.length
!= 8)
67 kvno
= KAFS_RXKAD_2B_KVNO
;
69 ret
= decode_Ticket(cred
->ticket
.data
, cred
->ticket
.length
, &t
, &len
);
75 ASN1_MALLOC_ENCODE(EncryptedData
, buf
, buf_len
, &t
.enc_part
,
82 return KRB5KRB_ERR_GENERIC
;
86 kt
->ticket_len
= buf_len
;
89 kvno
= KAFS_RXKAD_K5_KVNO
;
90 kt
->ticket
= malloc(cred
->ticket
.length
);
91 if (kt
->ticket
== NULL
)
93 kt
->ticket_len
= cred
->ticket
.length
;
94 memcpy(kt
->ticket
, cred
->ticket
.data
, kt
->ticket_len
);
101 * Build a struct ClearToken
104 kt
->ct
.AuthHandle
= kvno
;
105 memcpy(kt
->ct
.HandShakeKey
, cred
->session
.keyvalue
.data
, 8);
107 kt
->ct
.BeginTimestamp
= cred
->times
.starttime
;
108 kt
->ct
.EndTimestamp
= cred
->times
.endtime
;
110 _kafs_fixup_viceid(&kt
->ct
, uid
);
115 static krb5_error_code
116 v5_convert(krb5_context context
, krb5_ccache id
,
117 krb5_creds
*cred
, uid_t uid
,
119 struct kafs_token
*kt
)
128 krb5_appdefault_string (context
, "libkafs",
130 "afs-use-524", "2b", &val
);
133 if (strcasecmp(val
, "local") == 0 ||
134 strcasecmp(val
, "2b") == 0)
135 ret
= v5_to_kt(cred
, uid
, kt
, 1);
136 else if(strcasecmp(val
, "yes") == 0 ||
137 strcasecmp(val
, "true") == 0 ||
139 struct credentials cred4
;
142 ret
= krb524_convert_creds_kdc(context
, cred
, &cred4
);
144 ret
= krb524_convert_creds_kdc_ccache(context
, id
, cred
, &cred4
);
148 ret
= _kafs_v4_to_kt(&cred4
, uid
, kt
);
150 ret
= v5_to_kt(cred
, uid
, kt
, 0);
163 get_cred(struct kafs_data
*data
, const char *name
, const char *inst
,
164 const char *realm
, uid_t uid
, struct kafs_token
*kt
)
167 krb5_creds in_creds
, *out_creds
;
168 struct krb5_kafs_data
*d
= data
->data
;
170 memset(&in_creds
, 0, sizeof(in_creds
));
171 ret
= krb5_425_conv_principal(d
->context
, name
, inst
, realm
,
175 ret
= krb5_cc_get_principal(d
->context
, d
->id
, &in_creds
.client
);
177 krb5_free_principal(d
->context
, in_creds
.server
);
180 in_creds
.session
.keytype
= ETYPE_DES_CBC_CRC
;
181 ret
= krb5_get_credentials(d
->context
, 0, d
->id
, &in_creds
, &out_creds
);
182 krb5_free_principal(d
->context
, in_creds
.server
);
183 krb5_free_principal(d
->context
, in_creds
.client
);
187 ret
= v5_convert(d
->context
, d
->id
, out_creds
, uid
,
188 (inst
!= NULL
&& inst
[0] != '\0') ? inst
: realm
, kt
);
189 krb5_free_creds(d
->context
, out_creds
);
194 static krb5_error_code
195 afslog_uid_int(struct kafs_data
*data
, const char *cell
, const char *rh
,
196 uid_t uid
, const char *homedir
)
199 struct kafs_token kt
;
200 krb5_principal princ
;
201 const char *trealm
; /* ticket realm */
202 struct krb5_kafs_data
*d
= data
->data
;
204 if (cell
== 0 || cell
[0] == 0)
205 return _kafs_afslog_all_local_cells (data
, uid
, homedir
);
207 ret
= krb5_cc_get_principal (d
->context
, d
->id
, &princ
);
211 trealm
= krb5_principal_get_realm (d
->context
, princ
);
214 ret
= _kafs_get_cred(data
, cell
, d
->realm
, trealm
, uid
, &kt
);
215 krb5_free_principal (d
->context
, princ
);
218 ret
= kafs_settoken_rxkad(cell
, &kt
.ct
, kt
.ticket
, kt
.ticket_len
);
225 get_realm(struct kafs_data
*data
, const char *host
)
227 struct krb5_kafs_data
*d
= data
->data
;
230 if(krb5_get_host_realm(d
->context
, host
, &realms
))
232 r
= strdup(realms
[0]);
233 krb5_free_host_realm(d
->context
, realms
);
238 krb5_afslog_uid_home(krb5_context context
,
241 krb5_const_realm realm
,
246 struct krb5_kafs_data d
;
250 kd
.afslog_uid
= afslog_uid_int
;
251 kd
.get_cred
= get_cred
;
252 kd
.get_realm
= get_realm
;
254 if (context
== NULL
) {
255 ret
= krb5_init_context(&d
.context
);
261 ret
= krb5_cc_default(d
.context
, &d
.id
);
267 ret
= afslog_uid_int(&kd
, cell
, 0, uid
, homedir
);
269 krb5_cc_close(context
, d
.id
);
272 krb5_free_context(d
.context
);
277 krb5_afslog_uid(krb5_context context
,
280 krb5_const_realm realm
,
283 return krb5_afslog_uid_home (context
, id
, cell
, realm
, uid
, NULL
);
287 krb5_afslog(krb5_context context
,
290 krb5_const_realm realm
)
292 return krb5_afslog_uid (context
, id
, cell
, realm
, getuid());
296 krb5_afslog_home(krb5_context context
,
299 krb5_const_realm realm
,
302 return krb5_afslog_uid_home (context
, id
, cell
, realm
, getuid(), homedir
);
310 krb5_realm_of_cell(const char *cell
, char **realm
)
315 kd
.get_realm
= get_realm
;
316 return _kafs_realm_of_cell(&kd
, cell
, realm
);
324 kafs_settoken5(krb5_context context
, const char *cell
, uid_t uid
,
327 struct kafs_token kt
;
330 ret
= v5_convert(context
, NULL
, cred
, uid
, cell
, &kt
);
334 ret
= kafs_settoken_rxkad(cell
, &kt
.ct
, kt
.ticket
, kt
.ticket_len
);