2 Unix SMB/CIFS implementation.
3 simple kerberos5 routines for active directory
4 Copyright (C) Andrew Tridgell 2001
5 Copyright (C) Luke Howard 2002-2003
7 This program is free software; you can redistribute it and/or modify
8 it under the terms of the GNU General Public License as published by
9 the Free Software Foundation; either version 2 of the License, or
10 (at your option) any later version.
12 This program is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 GNU General Public License for more details.
17 You should have received a copy of the GNU General Public License
18 along with this program; if not, write to the Free Software
19 Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
23 #include "system/network.h"
24 #include "system/kerberos.h"
25 #include "libcli/auth/kerberos.h"
26 #include "system/time.h"
30 #ifndef HAVE_KRB5_SET_REAL_TIME
32 * This function is not in the Heimdal mainline.
34 krb5_error_code krb5_set_real_time(krb5_context context, int32_t seconds, int32_t microseconds)
39 ret = krb5_us_timeofday(context, &sec, &usec);
43 context->kdc_sec_offset = seconds - sec;
44 context->kdc_usec_offset = microseconds - usec;
50 #if defined(HAVE_KRB5_SET_DEFAULT_IN_TKT_ETYPES) && !defined(HAVE_KRB5_SET_DEFAULT_TGS_KTYPES)
51 krb5_error_code krb5_set_default_tgs_ktypes(krb5_context ctx, const krb5_enctype *enc)
53 return krb5_set_default_in_tkt_etypes(ctx, enc);
57 #if defined(HAVE_ADDR_TYPE_IN_KRB5_ADDRESS)
59 void setup_kaddr( krb5_address *pkaddr, struct sockaddr *paddr)
61 pkaddr->addr_type = KRB5_ADDRESS_INET;
62 pkaddr->address.length = sizeof(((struct sockaddr_in *)paddr)->sin_addr);
63 pkaddr->address.data = (char *)&(((struct sockaddr_in *)paddr)->sin_addr);
65 #elif defined(HAVE_ADDRTYPE_IN_KRB5_ADDRESS)
67 void setup_kaddr( krb5_address *pkaddr, struct sockaddr *paddr)
69 pkaddr->addrtype = ADDRTYPE_INET;
70 pkaddr->length = sizeof(((struct sockaddr_in *)paddr)->sin_addr);
71 pkaddr->contents = (krb5_octet *)&(((struct sockaddr_in *)paddr)->sin_addr);
74 #error UNKNOWN_ADDRTYPE
77 #if defined(HAVE_KRB5_PRINCIPAL2SALT) && defined(HAVE_KRB5_USE_ENCTYPE) && defined(HAVE_KRB5_STRING_TO_KEY) && defined(HAVE_KRB5_ENCRYPT_BLOCK)
78 int create_kerberos_key_from_string_direct(krb5_context context,
79 krb5_principal host_princ,
86 krb5_encrypt_block eblock;
88 ret = krb5_principal2salt(context, host_princ, &salt);
90 DEBUG(1,("krb5_principal2salt failed (%s)\n", error_message(ret)));
93 krb5_use_enctype(context, &eblock, enctype);
94 ret = krb5_string_to_key(context, &eblock, key, password, &salt);
98 #elif defined(HAVE_KRB5_GET_PW_SALT) && defined(HAVE_KRB5_STRING_TO_KEY_SALT)
99 int create_kerberos_key_from_string_direct(krb5_context context,
100 krb5_principal host_princ,
103 krb5_enctype enctype)
108 ret = krb5_get_pw_salt(context, host_princ, &salt);
110 DEBUG(1,("krb5_get_pw_salt failed (%s)\n", error_message(ret)));
113 return krb5_string_to_key_salt(context, enctype, password->data,
117 #error UNKNOWN_CREATE_KEY_FUNCTIONS
120 int create_kerberos_key_from_string(krb5_context context,
121 krb5_principal host_princ,
124 krb5_enctype enctype)
126 krb5_principal salt_princ = NULL;
129 * Check if we've determined that the KDC is salting keys for this
130 * principal/enctype in a non-obvious way. If it is, try to match
133 salt_princ = kerberos_fetch_salt_princ_for_host_princ(context, host_princ, enctype);
134 ret = create_kerberos_key_from_string_direct(context, salt_princ ? salt_princ : host_princ, password, key, enctype);
136 krb5_free_principal(context, salt_princ);
141 #if defined(HAVE_KRB5_GET_PERMITTED_ENCTYPES)
142 krb5_error_code get_kerberos_allowed_etypes(krb5_context context,
143 krb5_enctype **enctypes)
145 return krb5_get_permitted_enctypes(context, enctypes);
147 #elif defined(HAVE_KRB5_GET_DEFAULT_IN_TKT_ETYPES)
148 krb5_error_code get_kerberos_allowed_etypes(krb5_context context,
149 krb5_enctype **enctypes)
151 return krb5_get_default_in_tkt_etypes(context, enctypes);
154 #error UNKNOWN_GET_ENCTYPES_FUNCTIONS
157 void free_kerberos_etypes(krb5_context context,
158 krb5_enctype *enctypes)
160 #if defined(HAVE_KRB5_FREE_KTYPES)
161 krb5_free_ktypes(context, enctypes);
169 #if defined(HAVE_KRB5_AUTH_CON_SETKEY) && !defined(HAVE_KRB5_AUTH_CON_SETUSERUSERKEY)
170 krb5_error_code krb5_auth_con_setuseruserkey(krb5_context context,
171 krb5_auth_context auth_context,
172 krb5_keyblock *keyblock)
174 return krb5_auth_con_setkey(context, auth_context, keyblock);
178 DATA_BLOB get_auth_data_from_tkt(TALLOC_CTX *mem_ctx,
181 DATA_BLOB auth_data = data_blob(NULL, 0);
182 #if defined(HAVE_KRB5_TKT_ENC_PART2)
183 if (tkt && tkt->enc_part2
184 && tkt->enc_part2->authorization_data
185 && tkt->enc_part2->authorization_data[0]
186 && tkt->enc_part2->authorization_data[0]->length)
187 auth_data = data_blob(tkt->enc_part2->authorization_data[0]->contents,
188 tkt->enc_part2->authorization_data[0]->length);
190 if (tkt && tkt->ticket.authorization_data && tkt->ticket.authorization_data->len)
191 auth_data = data_blob(tkt->ticket.authorization_data->val->ad_data.data,
192 tkt->ticket.authorization_data->val->ad_data.length);
197 krb5_const_principal get_principal_from_tkt(krb5_ticket *tkt)
199 #if defined(HAVE_KRB5_TKT_ENC_PART2)
200 return tkt->enc_part2->client;
206 #if !defined(HAVE_KRB5_LOCATE_KDC)
207 krb5_error_code krb5_locate_kdc(krb5_context ctx, const krb5_data *realm, struct sockaddr **addr_pp, int *naddrs, int get_masters)
209 krb5_krbhst_handle hnd;
210 krb5_krbhst_info *hinfo;
219 rc = krb5_krbhst_init(ctx, realm->data, KRB5_KRBHST_KDC, &hnd);
221 DEBUG(0, ("krb5_locate_kdc: krb5_krbhst_init failed (%s)\n", error_message(rc)));
225 for ( num_kdcs = 0; (rc = krb5_krbhst_next(ctx, hnd, &hinfo) == 0); num_kdcs++)
228 krb5_krbhst_reset(ctx, hnd);
231 DEBUG(0, ("krb5_locate_kdc: zero kdcs found !\n"));
232 krb5_krbhst_free(ctx, hnd);
236 sa = malloc_array_p(struct sockaddr, num_kdcs);
238 DEBUG(0, ("krb5_locate_kdc: malloc failed\n"));
239 krb5_krbhst_free(ctx, hnd);
244 memset(sa, '\0', sizeof(struct sockaddr) * num_kdcs );
246 for (i = 0; i < num_kdcs && (rc = krb5_krbhst_next(ctx, hnd, &hinfo) == 0); i++) {
248 #if defined(HAVE_KRB5_KRBHST_GET_ADDRINFO)
249 rc = krb5_krbhst_get_addrinfo(ctx, hinfo, &ai);
251 DEBUG(0,("krb5_krbhst_get_addrinfo failed: %s\n", error_message(rc)));
255 if (hinfo->ai && hinfo->ai->ai_family == AF_INET)
256 memcpy(&sa[i], hinfo->ai->ai_addr, sizeof(struct sockaddr));
259 krb5_krbhst_free(ctx, hnd);
267 #if !defined(HAVE_KRB5_FREE_UNPARSED_NAME)
268 void krb5_free_unparsed_name(krb5_context context, char *val)
274 void kerberos_free_data_contents(krb5_context context, krb5_data *pdata)
276 #if defined(HAVE_KRB5_FREE_DATA_CONTENTS)
278 krb5_free_data_contents(context, pdata);
281 SAFE_FREE(pdata->data);
285 void kerberos_set_creds_enctype(krb5_creds *pcreds, int enctype)
287 #if defined(HAVE_KRB5_KEYBLOCK_IN_CREDS)
288 KRB5_KEY_TYPE((&pcreds->keyblock)) = enctype;
289 #elif defined(HAVE_KRB5_SESSION_IN_CREDS)
290 KRB5_KEY_TYPE((&pcreds->session)) = enctype;
292 #error UNKNOWN_KEYBLOCK_MEMBER_IN_KRB5_CREDS_STRUCT
296 BOOL kerberos_compatible_enctypes(krb5_context context,
297 krb5_enctype enctype1,
298 krb5_enctype enctype2)
300 #if defined(HAVE_KRB5_C_ENCTYPE_COMPARE)
301 krb5_boolean similar = 0;
303 krb5_c_enctype_compare(context, enctype1, enctype2, &similar);
304 return similar ? True : False;
305 #elif defined(HAVE_KRB5_ENCTYPES_COMPATIBLE_KEYS)
306 return krb5_enctypes_compatible_keys(context, enctype1, enctype2) ? True : False;
310 static BOOL ads_cleanup_expired_creds(krb5_context context,
314 krb5_error_code retval;
315 TALLOC_CTX *mem_ctx = talloc_init("ticket expied time");
320 DEBUG(3, ("Ticket in ccache[%s] expiration %s\n",
321 krb5_cc_default_name(context),
322 http_timestring(mem_ctx, credsp->times.endtime)));
324 talloc_destroy(mem_ctx);
326 /* we will probably need new tickets if the current ones
327 will expire within 10 seconds.
329 if (credsp->times.endtime >= (time(NULL) + 10))
332 /* heimdal won't remove creds from a file ccache, and
333 perhaps we shouldn't anyway, since internally we
334 use memory ccaches, and a FILE one probably means that
335 we're using creds obtained outside of our exectuable
337 if (StrCaseCmp(krb5_cc_get_type(context, ccache), "FILE") == 0) {
338 DEBUG(5, ("ads_cleanup_expired_creds: We do not remove creds from a FILE ccache\n"));
342 retval = krb5_cc_remove_cred(context, ccache, 0, credsp);
344 DEBUG(1, ("ads_cleanup_expired_creds: krb5_cc_remove_cred failed, err %s\n",
345 error_message(retval)));
346 /* If we have an error in this, we want to display it,
347 but continue as though we deleted it */
353 we can't use krb5_mk_req because w2k wants the service to be in a particular format
355 krb5_error_code ads_krb5_mk_req(krb5_context context,
356 krb5_auth_context *auth_context,
357 const krb5_flags ap_req_options,
358 const char *principal,
362 krb5_error_code retval;
363 krb5_principal server;
367 BOOL creds_ready = False;
369 TALLOC_CTX *mem_ctx = NULL;
371 retval = krb5_parse_name(context, principal, &server);
373 DEBUG(1,("ads_krb5_mk_req: Failed to parse principal %s\n", principal));
377 /* obtain ticket & session key */
379 if ((retval = krb5_copy_principal(context, server, &creds.server))) {
380 DEBUG(1,("krb5_copy_principal failed (%s)\n",
381 error_message(retval)));
385 if ((retval = krb5_cc_get_principal(context, ccache, &creds.client))) {
386 /* This can commonly fail on smbd startup with no ticket in the cache.
387 * Report at higher level than 1. */
388 DEBUG(3,("ads_krb5_mk_req: krb5_cc_get_principal failed (%s)\n",
389 error_message(retval)));
393 while(!creds_ready) {
394 if ((retval = krb5_get_credentials(context, 0, ccache,
396 DEBUG(1,("ads_krb5_mk_req: krb5_get_credentials failed for %s (%s)\n",
397 principal, error_message(retval)));
401 /* cope with ticket being in the future due to clock skew */
402 if ((unsigned)credsp->times.starttime > time(NULL)) {
403 time_t t = time(NULL);
404 int time_offset =(unsigned)credsp->times.starttime-t;
405 DEBUG(4,("ads_krb5_mk_req: Advancing clock by %d seconds to cope with clock skew\n", time_offset));
406 krb5_set_real_time(context, t + time_offset + 1, 0);
409 if (!ads_cleanup_expired_creds(context, ccache, credsp))
413 mem_ctx = talloc_init("ticket expied time");
418 DEBUG(10,("Ticket (%s) in ccache (%s) is valid until: (%s - %d)\n",
419 principal, krb5_cc_default_name(context),
420 http_timestring(mem_ctx, (unsigned)credsp->times.endtime),
421 (unsigned)credsp->times.endtime));
424 retval = krb5_mk_req_extended(context, auth_context, ap_req_options,
425 &in_data, credsp, outbuf);
427 DEBUG(1,("ads_krb5_mk_req: krb5_mk_req_extended failed (%s)\n",
428 error_message(retval)));
431 krb5_free_creds(context, credsp);
434 krb5_free_cred_contents(context, &creds);
437 krb5_free_principal(context, server);
442 #if defined(HAVE_KRB5_PRINCIPAL_GET_COMP_STRING) && !defined(HAVE_KRB5_PRINC_COMPONENT)
443 const krb5_data *krb5_princ_component(krb5_context context, krb5_principal principal, int i )
445 static krb5_data kdata;
447 kdata.data = discard_const(krb5_principal_get_comp_string(context, principal, i));
448 kdata.length = strlen(kdata.data);
453 krb5_error_code smb_krb5_kt_free_entry(krb5_context context, krb5_keytab_entry *kt_entry)
455 #if defined(HAVE_KRB5_KT_FREE_ENTRY)
456 return krb5_kt_free_entry(context, kt_entry);
457 #elif defined(HAVE_KRB5_FREE_KEYTAB_ENTRY_CONTENTS)
458 return krb5_free_keytab_entry_contents(context, kt_entry);
460 #error UNKNOWN_KT_FREE_FUNCTION