drsuapi.idl: fix source_dsa spelling
[samba4-gss.git] / third_party / heimdal / lib / krb5 / rd_req.c
blob012cfefc2d80d3f6353e37bb56903cfb77e56935
2 /*
3 * Copyright (c) 1997 - 2007 Kungliga Tekniska Högskolan
4 * (Royal Institute of Technology, Stockholm, Sweden).
5 * All rights reserved.
7 * Redistribution and use in source and binary forms, with or without
8 * modification, are permitted provided that the following conditions
9 * are met:
11 * 1. Redistributions of source code must retain the above copyright
12 * notice, this list of conditions and the following disclaimer.
14 * 2. Redistributions in binary form must reproduce the above copyright
15 * notice, this list of conditions and the following disclaimer in the
16 * documentation and/or other materials provided with the distribution.
18 * 3. Neither the name of the Institute nor the names of its contributors
19 * may be used to endorse or promote products derived from this software
20 * without specific prior written permission.
22 * THIS SOFTWARE IS PROVIDED BY THE INSTITUTE AND CONTRIBUTORS ``AS IS'' AND
23 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
24 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
25 * ARE DISCLAIMED. IN NO EVENT SHALL THE INSTITUTE OR CONTRIBUTORS BE LIABLE
26 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
27 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
28 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
29 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
30 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
31 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
32 * SUCH DAMAGE.
35 #include "krb5_locl.h"
37 static krb5_error_code
38 decrypt_tkt_enc_part (krb5_context context,
39 krb5_keyblock *key,
40 EncryptedData *enc_part,
41 EncTicketPart *decr_part)
43 krb5_error_code ret;
44 krb5_data plain;
45 size_t len;
46 krb5_crypto crypto;
48 ret = krb5_crypto_init(context, key, 0, &crypto);
49 if (ret)
50 return ret;
51 ret = krb5_decrypt_EncryptedData (context,
52 crypto,
53 KRB5_KU_TICKET,
54 enc_part,
55 &plain);
56 krb5_crypto_destroy(context, crypto);
57 if (ret)
58 return ret;
60 ret = decode_EncTicketPart(plain.data, plain.length, decr_part, &len);
61 if (ret)
62 krb5_set_error_message(context, ret,
63 N_("Failed to decode encrypted "
64 "ticket part", ""));
65 krb5_data_free (&plain);
66 return ret;
69 static krb5_error_code
70 decrypt_authenticator (krb5_context context,
71 EncryptionKey *key,
72 EncryptedData *enc_part,
73 Authenticator *authenticator,
74 krb5_key_usage usage)
76 krb5_error_code ret;
77 krb5_data plain;
78 size_t len;
79 krb5_crypto crypto;
81 ret = krb5_crypto_init(context, key, 0, &crypto);
82 if (ret)
83 return ret;
84 ret = krb5_decrypt_EncryptedData (context,
85 crypto,
86 usage /* KRB5_KU_AP_REQ_AUTH */,
87 enc_part,
88 &plain);
89 /* for backwards compatibility, also try the old usage */
90 if (ret && usage == KRB5_KU_TGS_REQ_AUTH)
91 ret = krb5_decrypt_EncryptedData (context,
92 crypto,
93 KRB5_KU_AP_REQ_AUTH,
94 enc_part,
95 &plain);
96 krb5_crypto_destroy(context, crypto);
97 if (ret)
98 return ret;
100 ret = decode_Authenticator(plain.data, plain.length,
101 authenticator, &len);
102 krb5_data_free (&plain);
103 return ret;
106 KRB5_LIB_FUNCTION krb5_error_code KRB5_LIB_CALL
107 krb5_decode_ap_req(krb5_context context,
108 const krb5_data *inbuf,
109 krb5_ap_req *ap_req)
111 krb5_error_code ret;
112 size_t len;
113 ret = decode_AP_REQ(inbuf->data, inbuf->length, ap_req, &len);
114 if (ret)
115 return ret;
116 if (ap_req->pvno != 5){
117 free_AP_REQ(ap_req);
118 krb5_clear_error_message (context);
119 return KRB5KRB_AP_ERR_BADVERSION;
121 if (ap_req->msg_type != krb_ap_req){
122 free_AP_REQ(ap_req);
123 krb5_clear_error_message (context);
124 return KRB5KRB_AP_ERR_MSG_TYPE;
126 if (ap_req->ticket.tkt_vno != 5){
127 free_AP_REQ(ap_req);
128 krb5_clear_error_message (context);
129 return KRB5KRB_AP_ERR_BADVERSION;
131 return 0;
134 static krb5_error_code
135 check_transited(krb5_context context, Ticket *ticket, EncTicketPart *enc)
137 char **realms;
138 unsigned int num_realms, n;
139 krb5_error_code ret;
142 * Windows 2000 and 2003 uses this inside their TGT so it's normaly
143 * not seen by others, however, samba4 joined with a Windows AD as
144 * a Domain Controller gets exposed to this.
146 if(enc->transited.tr_type == 0 && enc->transited.contents.length == 0)
147 return 0;
149 if(enc->transited.tr_type != domain_X500_Compress)
150 return KRB5KDC_ERR_TRTYPE_NOSUPP;
152 if(enc->transited.contents.length == 0)
153 return 0;
155 ret = krb5_domain_x500_decode(context, enc->transited.contents,
156 &realms, &num_realms,
157 enc->crealm,
158 ticket->realm);
159 if(ret)
160 return ret;
161 ret = krb5_check_transited(context, enc->crealm,
162 ticket->realm,
163 realms, num_realms, NULL);
164 for (n = 0; n < num_realms; n++)
165 free(realms[n]);
166 free(realms);
167 return ret;
170 static krb5_error_code
171 find_etypelist(krb5_context context,
172 krb5_auth_context auth_context,
173 EtypeList *etypes)
175 krb5_error_code ret;
176 krb5_data data;
178 ret = _krb5_get_ad(context, auth_context->authenticator->authorization_data, NULL, KRB5_AUTHDATA_GSS_API_ETYPE_NEGOTIATION, &data);
179 if (ret)
180 return 0;
182 ret = decode_EtypeList(data.data, data.length, etypes, NULL);
183 krb5_data_free(&data);
184 if (ret)
185 krb5_clear_error_message(context);
187 return ret;
190 KRB5_LIB_FUNCTION krb5_error_code KRB5_LIB_CALL
191 krb5_decrypt_ticket(krb5_context context,
192 Ticket *ticket,
193 krb5_keyblock *key,
194 EncTicketPart *out,
195 krb5_flags flags)
197 EncTicketPart t;
198 krb5_error_code ret;
199 ret = decrypt_tkt_enc_part (context, key, &ticket->enc_part, &t);
200 if (ret)
201 return ret;
204 krb5_timestamp now;
205 time_t start = t.authtime;
207 krb5_timeofday (context, &now);
208 if(t.starttime)
209 start = *t.starttime;
210 if(start - now > context->max_skew
211 || (t.flags.invalid
212 && !(flags & KRB5_VERIFY_AP_REQ_IGNORE_INVALID))) {
213 free_EncTicketPart(&t);
214 krb5_clear_error_message (context);
215 return KRB5KRB_AP_ERR_TKT_NYV;
217 if(now - t.endtime > context->max_skew) {
218 free_EncTicketPart(&t);
219 krb5_clear_error_message (context);
220 return KRB5KRB_AP_ERR_TKT_EXPIRED;
223 if(!t.flags.transited_policy_checked) {
224 ret = check_transited(context, ticket, &t);
225 if(ret) {
226 free_EncTicketPart(&t);
227 return ret;
232 if(out)
233 *out = t;
234 else
235 free_EncTicketPart(&t);
236 return 0;
239 KRB5_LIB_FUNCTION krb5_error_code KRB5_LIB_CALL
240 krb5_verify_authenticator_checksum(krb5_context context,
241 krb5_auth_context ac,
242 void *data,
243 size_t len)
245 krb5_error_code ret;
246 krb5_keyblock *key = NULL;
247 krb5_authenticator authenticator;
248 krb5_crypto crypto;
250 ret = krb5_auth_con_getauthenticator(context, ac, &authenticator);
251 if (ret)
252 return ret;
253 if (authenticator->cksum == NULL) {
254 ret = -17;
255 goto out;
257 ret = krb5_auth_con_getkey(context, ac, &key);
258 if (ret)
259 goto out;
260 ret = krb5_crypto_init(context, key, 0, &crypto);
261 if (ret)
262 goto out;
264 _krb5_crypto_set_flags(context, crypto, KRB5_CRYPTO_FLAG_ALLOW_UNKEYED_CHECKSUM);
265 ret = krb5_verify_checksum(context, crypto,
266 KRB5_KU_AP_REQ_AUTH_CKSUM,
267 data, len, authenticator->cksum);
268 krb5_crypto_destroy(context, crypto);
269 out:
270 krb5_free_authenticator(context, &authenticator);
271 krb5_free_keyblock(context, key);
272 return ret;
276 KRB5_LIB_FUNCTION krb5_error_code KRB5_LIB_CALL
277 krb5_verify_ap_req(krb5_context context,
278 krb5_auth_context *auth_context,
279 krb5_ap_req *ap_req,
280 krb5_const_principal server,
281 krb5_keyblock *keyblock,
282 krb5_flags flags,
283 krb5_flags *ap_req_options,
284 krb5_ticket **ticket)
286 return krb5_verify_ap_req2 (context,
287 auth_context,
288 ap_req,
289 server,
290 keyblock,
291 flags,
292 ap_req_options,
293 ticket,
294 KRB5_KU_AP_REQ_AUTH);
297 KRB5_LIB_FUNCTION krb5_error_code KRB5_LIB_CALL
298 krb5_verify_ap_req2(krb5_context context,
299 krb5_auth_context *auth_context,
300 krb5_ap_req *ap_req,
301 krb5_const_principal server,
302 krb5_keyblock *keyblock,
303 krb5_flags flags,
304 krb5_flags *ap_req_options,
305 krb5_ticket **ticket,
306 krb5_key_usage usage)
308 krb5_ticket *t;
309 krb5_auth_context ac;
310 krb5_error_code ret;
311 EtypeList etypes;
312 int badaddr = 0;
314 memset(&etypes, 0, sizeof(etypes));
316 if (ticket)
317 *ticket = NULL;
319 if (auth_context && *auth_context) {
320 ac = *auth_context;
321 } else {
322 ret = krb5_auth_con_init (context, &ac);
323 if (ret)
324 return ret;
327 t = calloc(1, sizeof(*t));
328 if (t == NULL) {
329 ret = krb5_enomem(context);
330 goto out;
333 if (ap_req->ap_options.use_session_key && ac->keyblock){
334 ret = krb5_decrypt_ticket(context, &ap_req->ticket,
335 ac->keyblock,
336 &t->ticket,
337 flags);
338 krb5_free_keyblock(context, ac->keyblock);
339 ac->keyblock = NULL;
340 }else
341 ret = krb5_decrypt_ticket(context, &ap_req->ticket,
342 keyblock,
343 &t->ticket,
344 flags);
346 if(ret)
347 goto out;
349 ret = _krb5_principalname2krb5_principal(context,
350 &t->server,
351 ap_req->ticket.sname,
352 ap_req->ticket.realm);
353 if (ret) goto out;
355 ret = decrypt_authenticator (context,
356 &t->ticket.key,
357 &ap_req->authenticator,
358 ac->authenticator,
359 usage);
360 if (ret)
361 goto out;
364 krb5_principal p1, p2;
365 krb5_boolean res;
367 _krb5_principalname2krb5_principal(context,
368 &p1,
369 ac->authenticator->cname,
370 ac->authenticator->crealm);
371 _krb5_principalname2krb5_principal(context,
372 &p2,
373 t->ticket.cname,
374 t->ticket.crealm);
375 res = krb5_principal_compare (context, p1, p2);
376 krb5_free_principal (context, p1);
377 krb5_free_principal (context, p2);
378 if (!res) {
379 ret = KRB5KRB_AP_ERR_BADMATCH;
380 krb5_clear_error_message (context);
381 goto out;
386 * The ticket authenticates the client, and conveys naming attributes that
387 * we want to expose in GSS using RFC6680 APIs.
389 * So we same the ticket enc-part in the client's krb5_principal object
390 * (note though that the session key will be absent in that copy of the
391 * ticket enc-part).
393 ret = _krb5_ticket2krb5_principal(context, &t->client, &t->ticket,
394 ac->authenticator->authorization_data);
395 if (ret) goto out;
397 t->client->nameattrs->peer_realm =
398 calloc(1, sizeof(t->client->nameattrs->peer_realm[0]));
399 if (t->client->nameattrs->peer_realm == NULL) {
400 ret = krb5_enomem(context);
401 goto out;
403 ret = copy_Realm(&ap_req->ticket.realm, t->client->nameattrs->peer_realm);
404 if (ret) goto out;
406 /* check addresses */
408 if (t->ticket.caddr
409 && ac->remote_address
410 && !krb5_address_search (context,
411 ac->remote_address,
412 t->ticket.caddr)) {
414 * Hack alert. If KRB5_VERIFY_AP_REQ_IGNORE_ADDRS and the client's
415 * address didn't check out then we'll return KRB5KRB_AP_ERR_BADADDR
416 * even on success, and we'll let the caller figure it out because
417 * `*ticket != NULL' or `*auth_context != NULL'.
419 if ((flags & KRB5_VERIFY_AP_REQ_IGNORE_ADDRS)) {
420 badaddr = 1;
421 } else {
422 ret = KRB5KRB_AP_ERR_BADADDR;
423 krb5_clear_error_message(context);
424 goto out;
428 /* check timestamp in authenticator */
430 krb5_timestamp now;
432 krb5_timeofday (context, &now);
434 if (krb5_time_abs(ac->authenticator->ctime, now) > context->max_skew) {
435 ret = KRB5KRB_AP_ERR_SKEW;
436 krb5_clear_error_message (context);
437 goto out;
441 if (ac->authenticator->seq_number)
442 krb5_auth_con_setremoteseqnumber(context, ac,
443 *ac->authenticator->seq_number);
445 /* XXX - Xor sequence numbers */
447 if (ac->authenticator->subkey) {
448 ret = krb5_auth_con_setremotesubkey(context, ac,
449 ac->authenticator->subkey);
450 if (ret)
451 goto out;
454 ret = find_etypelist(context, ac, &etypes);
455 if (ret)
456 goto out;
458 ac->keytype = ETYPE_NULL;
460 if (etypes.val) {
461 size_t i;
463 for (i = 0; i < etypes.len; i++) {
464 if (krb5_enctype_valid(context, etypes.val[i]) == 0) {
465 ac->keytype = etypes.val[i];
466 break;
471 /* save key */
472 ret = krb5_copy_keyblock(context, &t->ticket.key, &ac->keyblock);
473 if (ret) goto out;
475 if (ap_req_options) {
476 *ap_req_options = 0;
477 if (ac->keytype != ETYPE_NULL)
478 *ap_req_options |= AP_OPTS_USE_SUBKEY;
479 if (ap_req->ap_options.use_session_key)
480 *ap_req_options |= AP_OPTS_USE_SESSION_KEY;
481 if (ap_req->ap_options.mutual_required)
482 *ap_req_options |= AP_OPTS_MUTUAL_REQUIRED;
485 if(ticket)
486 *ticket = t;
487 else
488 krb5_free_ticket (context, t);
489 if (auth_context) {
490 if (*auth_context == NULL)
491 *auth_context = ac;
492 } else
493 krb5_auth_con_free (context, ac);
494 free_EtypeList(&etypes);
496 if (badaddr) {
497 krb5_clear_error_message(context);
498 return KRB5KRB_AP_ERR_BADADDR;
500 return 0;
501 out:
502 free_EtypeList(&etypes);
503 if (t)
504 krb5_free_ticket (context, t);
505 if (auth_context == NULL || *auth_context == NULL)
506 krb5_auth_con_free (context, ac);
507 return ret;
514 struct krb5_rd_req_in_ctx_data {
515 krb5_keytab keytab;
516 krb5_keyblock *keyblock;
517 krb5_boolean check_pac;
520 struct krb5_rd_req_out_ctx_data {
521 krb5_keyblock *keyblock;
522 krb5_flags ap_req_options;
523 krb5_ticket *ticket;
524 krb5_principal server;
528 * Allocate a krb5_rd_req_in_ctx as an input parameter to
529 * krb5_rd_req_ctx(). The caller should free the context with
530 * krb5_rd_req_in_ctx_free() when done with the context.
532 * @param context Keberos 5 context.
533 * @param ctx in ctx to krb5_rd_req_ctx().
535 * @return Kerberos 5 error code, see krb5_get_error_message().
537 * @ingroup krb5_auth
540 KRB5_LIB_FUNCTION krb5_error_code KRB5_LIB_CALL
541 krb5_rd_req_in_ctx_alloc(krb5_context context, krb5_rd_req_in_ctx *ctx)
543 *ctx = calloc(1, sizeof(**ctx));
544 if (*ctx == NULL)
545 return krb5_enomem(context);
546 (*ctx)->check_pac = (context->flags & KRB5_CTX_F_CHECK_PAC) ? 1 : 0;
547 return 0;
551 * Set the keytab that krb5_rd_req_ctx() will use.
553 * @param context Keberos 5 context.
554 * @param in in ctx to krb5_rd_req_ctx().
555 * @param keytab keytab that krb5_rd_req_ctx() will use, only copy the
556 * pointer, so the caller must free they keytab after
557 * krb5_rd_req_in_ctx_free() is called.
559 * @return Kerberos 5 error code, see krb5_get_error_message().
561 * @ingroup krb5_auth
564 KRB5_LIB_FUNCTION krb5_error_code KRB5_LIB_CALL
565 krb5_rd_req_in_set_keytab(krb5_context context,
566 krb5_rd_req_in_ctx in,
567 krb5_keytab keytab)
569 in->keytab = keytab;
570 return 0;
574 * Set if krb5_rq_red() is going to check the Windows PAC or not
576 * @param context Keberos 5 context.
577 * @param in krb5_rd_req_in_ctx to check the option on.
578 * @param flag flag to select if to check the pac (TRUE) or not (FALSE).
580 * @return Kerberos 5 error code, see krb5_get_error_message().
582 * @ingroup krb5_auth
585 KRB5_LIB_FUNCTION krb5_error_code KRB5_LIB_CALL
586 krb5_rd_req_in_set_pac_check(krb5_context context,
587 krb5_rd_req_in_ctx in,
588 krb5_boolean flag)
590 in->check_pac = flag;
591 return 0;
595 KRB5_LIB_FUNCTION krb5_error_code KRB5_LIB_CALL
596 krb5_rd_req_in_set_keyblock(krb5_context context,
597 krb5_rd_req_in_ctx in,
598 krb5_keyblock *keyblock)
600 in->keyblock = keyblock; /* XXX should make copy */
601 return 0;
604 KRB5_LIB_FUNCTION krb5_error_code KRB5_LIB_CALL
605 krb5_rd_req_out_get_ap_req_options(krb5_context context,
606 krb5_rd_req_out_ctx out,
607 krb5_flags *ap_req_options)
609 *ap_req_options = out->ap_req_options;
610 return 0;
613 KRB5_LIB_FUNCTION krb5_error_code KRB5_LIB_CALL
614 krb5_rd_req_out_get_ticket(krb5_context context,
615 krb5_rd_req_out_ctx out,
616 krb5_ticket **ticket)
618 return krb5_copy_ticket(context, out->ticket, ticket);
621 KRB5_LIB_FUNCTION krb5_error_code KRB5_LIB_CALL
622 krb5_rd_req_out_get_keyblock(krb5_context context,
623 krb5_rd_req_out_ctx out,
624 krb5_keyblock **keyblock)
626 return krb5_copy_keyblock(context, out->keyblock, keyblock);
630 * Get the principal that was used in the request from the
631 * client. Might not match whats in the ticket if krb5_rd_req_ctx()
632 * searched in the keytab for a matching key.
634 * @param context a Kerberos 5 context.
635 * @param out a krb5_rd_req_out_ctx from krb5_rd_req_ctx().
636 * @param principal return principal, free with krb5_free_principal().
638 * @ingroup krb5_auth
641 KRB5_LIB_FUNCTION krb5_error_code KRB5_LIB_CALL
642 krb5_rd_req_out_get_server(krb5_context context,
643 krb5_rd_req_out_ctx out,
644 krb5_principal *principal)
646 return krb5_copy_principal(context, out->server, principal);
649 KRB5_LIB_FUNCTION void KRB5_LIB_CALL
650 krb5_rd_req_in_ctx_free(krb5_context context, krb5_rd_req_in_ctx ctx)
652 free(ctx);
656 * Free the krb5_rd_req_out_ctx.
658 * @param context Keberos 5 context.
659 * @param ctx krb5_rd_req_out_ctx context to free.
661 * @ingroup krb5_auth
664 KRB5_LIB_FUNCTION void KRB5_LIB_CALL
665 krb5_rd_req_out_ctx_free(krb5_context context, krb5_rd_req_out_ctx ctx)
667 if (ctx->ticket)
668 krb5_free_ticket(context, ctx->ticket);
669 if (ctx->keyblock)
670 krb5_free_keyblock(context, ctx->keyblock);
671 if (ctx->server)
672 krb5_free_principal(context, ctx->server);
673 free(ctx);
677 * Process an AP_REQ message.
679 * @param context Kerberos 5 context.
680 * @param auth_context authentication context of the peer.
681 * @param inbuf the AP_REQ message, obtained for example with krb5_read_message().
682 * @param server server principal.
683 * @param keytab server keytab.
684 * @param ap_req_options set to the AP_REQ options. See the AP_OPTS_* defines.
685 * @param ticket on success, set to the authenticated client credentials.
686 * Must be deallocated with krb5_free_ticket(). If not
687 * interested, pass a NULL value.
689 * @return 0 to indicate success. Otherwise a Kerberos error code is
690 * returned, see krb5_get_error_message().
692 KRB5_LIB_FUNCTION krb5_error_code KRB5_LIB_CALL
693 krb5_rd_req(krb5_context context,
694 krb5_auth_context *auth_context,
695 const krb5_data *inbuf,
696 krb5_const_principal server,
697 krb5_keytab keytab,
698 krb5_flags *ap_req_options,
699 krb5_ticket **ticket)
701 krb5_error_code ret;
702 krb5_rd_req_in_ctx in;
703 krb5_rd_req_out_ctx out;
705 ret = krb5_rd_req_in_ctx_alloc(context, &in);
706 if (ret)
707 return ret;
709 ret = krb5_rd_req_in_set_keytab(context, in, keytab);
710 if (ret) {
711 krb5_rd_req_in_ctx_free(context, in);
712 return ret;
715 ret = krb5_rd_req_ctx(context, auth_context, inbuf, server, in, &out);
716 krb5_rd_req_in_ctx_free(context, in);
717 if (ret)
718 return ret;
720 if (ap_req_options)
721 *ap_req_options = out->ap_req_options;
722 if (ticket) {
723 ret = krb5_copy_ticket(context, out->ticket, ticket);
724 if (ret)
725 goto out;
728 out:
729 krb5_rd_req_out_ctx_free(context, out);
730 return ret;
737 KRB5_LIB_FUNCTION krb5_error_code KRB5_LIB_CALL
738 krb5_rd_req_with_keyblock(krb5_context context,
739 krb5_auth_context *auth_context,
740 const krb5_data *inbuf,
741 krb5_const_principal server,
742 krb5_keyblock *keyblock,
743 krb5_flags *ap_req_options,
744 krb5_ticket **ticket)
746 krb5_error_code ret;
747 krb5_rd_req_in_ctx in;
748 krb5_rd_req_out_ctx out;
750 ret = krb5_rd_req_in_ctx_alloc(context, &in);
751 if (ret)
752 return ret;
754 ret = krb5_rd_req_in_set_keyblock(context, in, keyblock);
755 if (ret) {
756 krb5_rd_req_in_ctx_free(context, in);
757 return ret;
760 ret = krb5_rd_req_ctx(context, auth_context, inbuf, server, in, &out);
761 krb5_rd_req_in_ctx_free(context, in);
762 if (ret)
763 return ret;
765 if (ap_req_options)
766 *ap_req_options = out->ap_req_options;
767 if (ticket) {
768 ret = krb5_copy_ticket(context, out->ticket, ticket);
769 if (ret)
770 goto out;
773 out:
774 krb5_rd_req_out_ctx_free(context, out);
775 return ret;
782 static krb5_error_code
783 get_key_from_keytab(krb5_context context,
784 krb5_ap_req *ap_req,
785 krb5_const_principal server,
786 krb5_keytab keytab,
787 krb5_keyblock **out_key)
789 krb5_keytab_entry entry;
790 krb5_error_code ret;
791 int kvno;
792 krb5_keytab real_keytab;
794 if(keytab == NULL)
795 krb5_kt_default(context, &real_keytab);
796 else
797 real_keytab = keytab;
799 if (ap_req->ticket.enc_part.kvno)
800 kvno = *ap_req->ticket.enc_part.kvno;
801 else
802 kvno = 0;
804 ret = krb5_kt_get_entry (context,
805 real_keytab,
806 server,
807 kvno,
808 ap_req->ticket.enc_part.etype,
809 &entry);
810 if(ret == 0) {
811 ret = krb5_copy_keyblock(context, &entry.keyblock, out_key);
812 krb5_kt_free_entry(context, &entry);
814 if(keytab == NULL)
815 krb5_kt_close(context, real_keytab);
817 return ret;
821 * The core server function that verify application authentication
822 * requests from clients.
824 * @param context Keberos 5 context.
825 * @param auth_context the authentication context, can be NULL, then
826 * default values for the authentication context will used.
827 * @param inbuf the (AP-REQ) authentication buffer
829 * @param server the server to authenticate to. If NULL the function
830 * will try to find any available credential in the keytab
831 * that will verify the reply. The function will prefer the
832 * server specified in the AP-REQ, but if
833 * there is no mach, it will try all keytab entries for a
834 * match. This has serious performance issues for large keytabs.
836 * @param inctx control the behavior of the function, if NULL, the
837 * default behavior is used.
838 * @param outctx the return outctx, free with krb5_rd_req_out_ctx_free().
839 * @return Kerberos 5 error code, see krb5_get_error_message().
841 * @ingroup krb5_auth
844 KRB5_LIB_FUNCTION krb5_error_code KRB5_LIB_CALL
845 krb5_rd_req_ctx(krb5_context context,
846 krb5_auth_context *auth_context,
847 const krb5_data *inbuf,
848 krb5_const_principal server,
849 krb5_rd_req_in_ctx inctx,
850 krb5_rd_req_out_ctx *outctx)
852 krb5_error_code ret;
853 krb5_ap_req ap_req;
854 krb5_rd_req_out_ctx o = NULL;
855 krb5_keytab id = NULL, keytab = NULL;
856 krb5_principal service = NULL;
858 if (outctx)
859 *outctx = NULL;
861 o = calloc(1, sizeof(*o));
862 if (o == NULL)
863 return krb5_enomem(context);
865 if (*auth_context == NULL) {
866 ret = krb5_auth_con_init(context, auth_context);
867 if (ret)
868 goto out;
871 ret = krb5_decode_ap_req(context, inbuf, &ap_req);
872 if(ret)
873 goto out;
875 /* Save the principal that was in the request */
876 ret = _krb5_principalname2krb5_principal(context,
877 &o->server,
878 ap_req.ticket.sname,
879 ap_req.ticket.realm);
880 if (ret)
881 goto out;
883 if (ap_req.ap_options.use_session_key &&
884 (*auth_context)->keyblock == NULL) {
885 ret = KRB5KRB_AP_ERR_NOKEY;
886 krb5_set_error_message(context, ret,
887 N_("krb5_rd_req: user to user auth "
888 "without session key given", ""));
889 goto out;
892 if (inctx && inctx->keytab)
893 id = inctx->keytab;
895 if((*auth_context)->keyblock){
896 ret = krb5_copy_keyblock(context,
897 (*auth_context)->keyblock,
898 &o->keyblock);
899 if (ret)
900 goto out;
901 } else if(inctx && inctx->keyblock){
902 ret = krb5_copy_keyblock(context,
903 inctx->keyblock,
904 &o->keyblock);
905 if (ret)
906 goto out;
907 } else {
909 if(id == NULL) {
910 krb5_kt_default(context, &keytab);
911 id = keytab;
913 if (id == NULL)
914 goto out;
916 if (server == NULL) {
917 ret = _krb5_principalname2krb5_principal(context,
918 &service,
919 ap_req.ticket.sname,
920 ap_req.ticket.realm);
921 if (ret)
922 goto out;
923 server = service;
926 ret = get_key_from_keytab(context,
927 &ap_req,
928 server,
930 &o->keyblock);
931 if (ret) {
932 /* If caller specified a server, fail. */
933 if (service == NULL && (context->flags & KRB5_CTX_F_RD_REQ_IGNORE) == 0)
934 goto out;
935 /* Otherwise, fall back to iterating over the keytab. This
936 * have serious performace issues for larger keytab.
938 o->keyblock = NULL;
942 if (o->keyblock) {
944 * We got an exact keymatch, use that.
947 ret = krb5_verify_ap_req2(context,
948 auth_context,
949 &ap_req,
950 server,
951 o->keyblock,
953 &o->ap_req_options,
954 &o->ticket,
955 KRB5_KU_AP_REQ_AUTH);
957 if (ret)
958 goto out;
960 } else {
962 * Interate over keytab to find a key that can decrypt the request.
965 krb5_keytab_entry entry;
966 krb5_kt_cursor cursor;
967 int done = 0, kvno = 0;
969 memset(&cursor, 0, sizeof(cursor));
971 if (ap_req.ticket.enc_part.kvno)
972 kvno = *ap_req.ticket.enc_part.kvno;
974 ret = krb5_kt_start_seq_get(context, id, &cursor);
975 if (ret)
976 goto out;
978 done = 0;
979 while (!done) {
980 krb5_principal p;
982 ret = krb5_kt_next_entry(context, id, &entry, &cursor);
983 if (ret) {
984 _krb5_kt_principal_not_found(context, ret, id, o->server,
985 ap_req.ticket.enc_part.etype,
986 kvno);
987 break;
990 if (entry.keyblock.keytype != ap_req.ticket.enc_part.etype) {
991 krb5_kt_free_entry (context, &entry);
992 continue;
995 ret = krb5_verify_ap_req2(context,
996 auth_context,
997 &ap_req,
998 server,
999 &entry.keyblock,
1001 &o->ap_req_options,
1002 &o->ticket,
1003 KRB5_KU_AP_REQ_AUTH);
1004 if (ret) {
1005 krb5_kt_free_entry (context, &entry);
1006 continue;
1010 * Found a match, save the keyblock for PAC processing,
1011 * and update the service principal in the ticket to match
1012 * whatever is in the keytab.
1015 ret = krb5_copy_keyblock(context,
1016 &entry.keyblock,
1017 &o->keyblock);
1018 if (ret) {
1019 krb5_kt_free_entry (context, &entry);
1020 break;
1023 ret = krb5_copy_principal(context, entry.principal, &p);
1024 if (ret) {
1025 krb5_kt_free_entry (context, &entry);
1026 break;
1028 krb5_free_principal(context, o->ticket->server);
1029 o->ticket->server = p;
1031 krb5_kt_free_entry (context, &entry);
1033 done = 1;
1035 krb5_kt_end_seq_get (context, id, &cursor);
1036 if (ret)
1037 goto out;
1040 if (krb5_ticket_get_authorization_data_type(context, o->ticket,
1041 KRB5_AUTHDATA_KDC_ISSUED,
1042 NULL) == 0)
1043 o->ticket->client->nameattrs->kdc_issued_verified = 1;
1045 /* If there is a PAC, verify its server signature */
1046 if (inctx == NULL || inctx->check_pac) {
1047 krb5_pac pac;
1048 krb5_data data;
1050 ret = krb5_ticket_get_authorization_data_type(context,
1051 o->ticket,
1052 KRB5_AUTHDATA_WIN2K_PAC,
1053 &data);
1054 if (ret == 0) {
1055 ret = krb5_pac_parse(context, data.data, data.length, &pac);
1056 krb5_data_free(&data);
1057 if (ret)
1058 goto out;
1060 ret = krb5_pac_verify(context,
1061 pac,
1062 o->ticket->ticket.authtime,
1063 o->ticket->client,
1064 o->keyblock,
1065 NULL);
1066 if (ret == 0)
1067 o->ticket->client->nameattrs->pac_verified = 1;
1068 if (ret == 0 && (context->flags & KRB5_CTX_F_REPORT_CANONICAL_CLIENT_NAME)) {
1069 krb5_error_code ret2;
1070 krb5_principal canon_name;
1072 ret2 = _krb5_pac_get_canon_principal(context, pac, &canon_name);
1073 if (ret2 == 0) {
1074 free_Realm(&o->ticket->client->realm);
1075 free_PrincipalName(&o->ticket->client->name);
1076 ret = copy_Realm(&canon_name->realm, &o->ticket->client->realm);
1077 if (ret == 0)
1078 ret = copy_PrincipalName(&canon_name->name, &o->ticket->client->name);
1079 krb5_free_principal(context, canon_name);
1080 } else if (ret2 != ENOENT)
1081 ret = ret2;
1083 if (ret) {
1084 krb5_pac_free(context, pac);
1085 goto out;
1087 o->ticket->client->nameattrs->pac = pac;
1088 } else
1089 ret = 0;
1091 out:
1093 if (ret || outctx == NULL)
1094 krb5_rd_req_out_ctx_free(context, o);
1095 else
1096 *outctx = o;
1098 free_AP_REQ(&ap_req);
1100 if (service)
1101 krb5_free_principal(context, service);
1103 if (keytab)
1104 krb5_kt_close(context, keytab);
1106 return ret;