3 * Copyright (c) 1997 - 2007 Kungliga Tekniska Högskolan
4 * (Royal Institute of Technology, Stockholm, Sweden).
7 * Redistribution and use in source and binary forms, with or without
8 * modification, are permitted provided that the following conditions
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
35 #include "krb5_locl.h"
37 static krb5_error_code
38 decrypt_tkt_enc_part (krb5_context context
,
40 EncryptedData
*enc_part
,
41 EncTicketPart
*decr_part
)
48 ret
= krb5_crypto_init(context
, key
, 0, &crypto
);
51 ret
= krb5_decrypt_EncryptedData (context
,
56 krb5_crypto_destroy(context
, crypto
);
60 ret
= decode_EncTicketPart(plain
.data
, plain
.length
, decr_part
, &len
);
62 krb5_set_error_message(context
, ret
,
63 N_("Failed to decode encrypted "
65 krb5_data_free (&plain
);
69 static krb5_error_code
70 decrypt_authenticator (krb5_context context
,
72 EncryptedData
*enc_part
,
73 Authenticator
*authenticator
,
81 ret
= krb5_crypto_init(context
, key
, 0, &crypto
);
84 ret
= krb5_decrypt_EncryptedData (context
,
86 usage
/* KRB5_KU_AP_REQ_AUTH */,
89 /* for backwards compatibility, also try the old usage */
90 if (ret
&& usage
== KRB5_KU_TGS_REQ_AUTH
)
91 ret
= krb5_decrypt_EncryptedData (context
,
96 krb5_crypto_destroy(context
, crypto
);
100 ret
= decode_Authenticator(plain
.data
, plain
.length
,
101 authenticator
, &len
);
102 krb5_data_free (&plain
);
106 KRB5_LIB_FUNCTION krb5_error_code KRB5_LIB_CALL
107 krb5_decode_ap_req(krb5_context context
,
108 const krb5_data
*inbuf
,
113 ret
= decode_AP_REQ(inbuf
->data
, inbuf
->length
, ap_req
, &len
);
116 if (ap_req
->pvno
!= 5){
118 krb5_clear_error_message (context
);
119 return KRB5KRB_AP_ERR_BADVERSION
;
121 if (ap_req
->msg_type
!= krb_ap_req
){
123 krb5_clear_error_message (context
);
124 return KRB5KRB_AP_ERR_MSG_TYPE
;
126 if (ap_req
->ticket
.tkt_vno
!= 5){
128 krb5_clear_error_message (context
);
129 return KRB5KRB_AP_ERR_BADVERSION
;
134 static krb5_error_code
135 check_transited(krb5_context context
, Ticket
*ticket
, EncTicketPart
*enc
)
138 unsigned int num_realms
, n
;
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)
149 if(enc
->transited
.tr_type
!= DOMAIN_X500_COMPRESS
)
150 return KRB5KDC_ERR_TRTYPE_NOSUPP
;
152 if(enc
->transited
.contents
.length
== 0)
155 ret
= krb5_domain_x500_decode(context
, enc
->transited
.contents
,
156 &realms
, &num_realms
,
161 ret
= krb5_check_transited(context
, enc
->crealm
,
163 realms
, num_realms
, NULL
);
164 for (n
= 0; n
< num_realms
; n
++)
170 static krb5_error_code
171 find_etypelist(krb5_context context
,
172 krb5_auth_context auth_context
,
178 ret
= _krb5_get_ad(context
, auth_context
->authenticator
->authorization_data
, NULL
, KRB5_AUTHDATA_GSS_API_ETYPE_NEGOTIATION
, &data
);
182 ret
= decode_EtypeList(data
.data
, data
.length
, etypes
, NULL
);
183 krb5_data_free(&data
);
185 krb5_clear_error_message(context
);
190 KRB5_LIB_FUNCTION krb5_error_code KRB5_LIB_CALL
191 krb5_decrypt_ticket(krb5_context context
,
199 ret
= decrypt_tkt_enc_part (context
, key
, &ticket
->enc_part
, &t
);
205 time_t start
= t
.authtime
;
207 krb5_timeofday (context
, &now
);
209 start
= *t
.starttime
;
210 if(start
- now
> context
->max_skew
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
);
226 free_EncTicketPart(&t
);
235 free_EncTicketPart(&t
);
239 KRB5_LIB_FUNCTION krb5_error_code KRB5_LIB_CALL
240 krb5_verify_authenticator_checksum(krb5_context context
,
241 krb5_auth_context ac
,
247 krb5_authenticator authenticator
;
250 ret
= krb5_auth_con_getauthenticator (context
,
255 if(authenticator
->cksum
== NULL
) {
256 krb5_free_authenticator(context
, &authenticator
);
259 ret
= krb5_auth_con_getkey(context
, ac
, &key
);
261 krb5_free_authenticator(context
, &authenticator
);
264 ret
= krb5_crypto_init(context
, key
, 0, &crypto
);
267 ret
= krb5_verify_checksum (context
,
269 KRB5_KU_AP_REQ_AUTH_CKSUM
,
272 authenticator
->cksum
);
273 krb5_crypto_destroy(context
, crypto
);
275 krb5_free_authenticator(context
, &authenticator
);
276 krb5_free_keyblock(context
, key
);
281 KRB5_LIB_FUNCTION krb5_error_code KRB5_LIB_CALL
282 krb5_verify_ap_req(krb5_context context
,
283 krb5_auth_context
*auth_context
,
285 krb5_const_principal server
,
286 krb5_keyblock
*keyblock
,
288 krb5_flags
*ap_req_options
,
289 krb5_ticket
**ticket
)
291 return krb5_verify_ap_req2 (context
,
299 KRB5_KU_AP_REQ_AUTH
);
302 KRB5_LIB_FUNCTION krb5_error_code KRB5_LIB_CALL
303 krb5_verify_ap_req2(krb5_context context
,
304 krb5_auth_context
*auth_context
,
306 krb5_const_principal server
,
307 krb5_keyblock
*keyblock
,
309 krb5_flags
*ap_req_options
,
310 krb5_ticket
**ticket
,
311 krb5_key_usage usage
)
314 krb5_auth_context ac
;
318 memset(&etypes
, 0, sizeof(etypes
));
323 if (auth_context
&& *auth_context
) {
326 ret
= krb5_auth_con_init (context
, &ac
);
331 t
= calloc(1, sizeof(*t
));
333 ret
= krb5_enomem(context
);
337 if (ap_req
->ap_options
.use_session_key
&& ac
->keyblock
){
338 ret
= krb5_decrypt_ticket(context
, &ap_req
->ticket
,
342 krb5_free_keyblock(context
, ac
->keyblock
);
345 ret
= krb5_decrypt_ticket(context
, &ap_req
->ticket
,
353 ret
= _krb5_principalname2krb5_principal(context
,
355 ap_req
->ticket
.sname
,
356 ap_req
->ticket
.realm
);
358 ret
= _krb5_principalname2krb5_principal(context
,
364 ret
= decrypt_authenticator (context
,
366 &ap_req
->authenticator
,
373 krb5_principal p1
, p2
;
376 _krb5_principalname2krb5_principal(context
,
378 ac
->authenticator
->cname
,
379 ac
->authenticator
->crealm
);
380 _krb5_principalname2krb5_principal(context
,
384 res
= krb5_principal_compare (context
, p1
, p2
);
385 krb5_free_principal (context
, p1
);
386 krb5_free_principal (context
, p2
);
388 ret
= KRB5KRB_AP_ERR_BADMATCH
;
389 krb5_clear_error_message (context
);
394 /* check addresses */
397 && ac
->remote_address
398 && !krb5_address_search (context
,
401 ret
= KRB5KRB_AP_ERR_BADADDR
;
402 krb5_clear_error_message (context
);
406 /* check timestamp in authenticator */
410 krb5_timeofday (context
, &now
);
412 if (abs(ac
->authenticator
->ctime
- now
) > context
->max_skew
) {
413 ret
= KRB5KRB_AP_ERR_SKEW
;
414 krb5_clear_error_message (context
);
419 if (ac
->authenticator
->seq_number
)
420 krb5_auth_con_setremoteseqnumber(context
, ac
,
421 *ac
->authenticator
->seq_number
);
423 /* XXX - Xor sequence numbers */
425 if (ac
->authenticator
->subkey
) {
426 ret
= krb5_auth_con_setremotesubkey(context
, ac
,
427 ac
->authenticator
->subkey
);
432 ret
= find_etypelist(context
, ac
, &etypes
);
436 ac
->keytype
= ETYPE_NULL
;
441 for (i
= 0; i
< etypes
.len
; i
++) {
442 if (krb5_enctype_valid(context
, etypes
.val
[i
]) == 0) {
443 ac
->keytype
= etypes
.val
[i
];
450 ret
= krb5_copy_keyblock(context
, &t
->ticket
.key
, &ac
->keyblock
);
453 if (ap_req_options
) {
455 if (ac
->keytype
!= (krb5_enctype
)ETYPE_NULL
)
456 *ap_req_options
|= AP_OPTS_USE_SUBKEY
;
457 if (ap_req
->ap_options
.use_session_key
)
458 *ap_req_options
|= AP_OPTS_USE_SESSION_KEY
;
459 if (ap_req
->ap_options
.mutual_required
)
460 *ap_req_options
|= AP_OPTS_MUTUAL_REQUIRED
;
466 krb5_free_ticket (context
, t
);
468 if (*auth_context
== NULL
)
471 krb5_auth_con_free (context
, ac
);
472 free_EtypeList(&etypes
);
475 free_EtypeList(&etypes
);
477 krb5_free_ticket (context
, t
);
478 if (auth_context
== NULL
|| *auth_context
== NULL
)
479 krb5_auth_con_free (context
, ac
);
487 struct krb5_rd_req_in_ctx_data
{
489 krb5_keyblock
*keyblock
;
490 krb5_boolean check_pac
;
493 struct krb5_rd_req_out_ctx_data
{
494 krb5_keyblock
*keyblock
;
495 krb5_flags ap_req_options
;
497 krb5_principal server
;
501 * Allocate a krb5_rd_req_in_ctx as an input parameter to
502 * krb5_rd_req_ctx(). The caller should free the context with
503 * krb5_rd_req_in_ctx_free() when done with the context.
505 * @param context Keberos 5 context.
506 * @param ctx in ctx to krb5_rd_req_ctx().
508 * @return Kerberos 5 error code, see krb5_get_error_message().
513 KRB5_LIB_FUNCTION krb5_error_code KRB5_LIB_CALL
514 krb5_rd_req_in_ctx_alloc(krb5_context context
, krb5_rd_req_in_ctx
*ctx
)
516 *ctx
= calloc(1, sizeof(**ctx
));
518 return krb5_enomem(context
);
519 (*ctx
)->check_pac
= (context
->flags
& KRB5_CTX_F_CHECK_PAC
) ? 1 : 0;
524 * Set the keytab that krb5_rd_req_ctx() will use.
526 * @param context Keberos 5 context.
527 * @param in in ctx to krb5_rd_req_ctx().
528 * @param keytab keytab that krb5_rd_req_ctx() will use, only copy the
529 * pointer, so the caller must free they keytab after
530 * krb5_rd_req_in_ctx_free() is called.
532 * @return Kerberos 5 error code, see krb5_get_error_message().
537 KRB5_LIB_FUNCTION krb5_error_code KRB5_LIB_CALL
538 krb5_rd_req_in_set_keytab(krb5_context context
,
539 krb5_rd_req_in_ctx in
,
547 * Set if krb5_rq_red() is going to check the Windows PAC or not
549 * @param context Keberos 5 context.
550 * @param in krb5_rd_req_in_ctx to check the option on.
551 * @param flag flag to select if to check the pac (TRUE) or not (FALSE).
553 * @return Kerberos 5 error code, see krb5_get_error_message().
558 KRB5_LIB_FUNCTION krb5_error_code KRB5_LIB_CALL
559 krb5_rd_req_in_set_pac_check(krb5_context context
,
560 krb5_rd_req_in_ctx in
,
563 in
->check_pac
= flag
;
568 KRB5_LIB_FUNCTION krb5_error_code KRB5_LIB_CALL
569 krb5_rd_req_in_set_keyblock(krb5_context context
,
570 krb5_rd_req_in_ctx in
,
571 krb5_keyblock
*keyblock
)
573 in
->keyblock
= keyblock
; /* XXX should make copy */
577 KRB5_LIB_FUNCTION krb5_error_code KRB5_LIB_CALL
578 krb5_rd_req_out_get_ap_req_options(krb5_context context
,
579 krb5_rd_req_out_ctx out
,
580 krb5_flags
*ap_req_options
)
582 *ap_req_options
= out
->ap_req_options
;
586 KRB5_LIB_FUNCTION krb5_error_code KRB5_LIB_CALL
587 krb5_rd_req_out_get_ticket(krb5_context context
,
588 krb5_rd_req_out_ctx out
,
589 krb5_ticket
**ticket
)
591 return krb5_copy_ticket(context
, out
->ticket
, ticket
);
594 KRB5_LIB_FUNCTION krb5_error_code KRB5_LIB_CALL
595 krb5_rd_req_out_get_keyblock(krb5_context context
,
596 krb5_rd_req_out_ctx out
,
597 krb5_keyblock
**keyblock
)
599 return krb5_copy_keyblock(context
, out
->keyblock
, keyblock
);
603 * Get the principal that was used in the request from the
604 * client. Might not match whats in the ticket if krb5_rd_req_ctx()
605 * searched in the keytab for a matching key.
607 * @param context a Kerberos 5 context.
608 * @param out a krb5_rd_req_out_ctx from krb5_rd_req_ctx().
609 * @param principal return principal, free with krb5_free_principal().
614 KRB5_LIB_FUNCTION krb5_error_code KRB5_LIB_CALL
615 krb5_rd_req_out_get_server(krb5_context context
,
616 krb5_rd_req_out_ctx out
,
617 krb5_principal
*principal
)
619 return krb5_copy_principal(context
, out
->server
, principal
);
622 KRB5_LIB_FUNCTION
void KRB5_LIB_CALL
623 krb5_rd_req_in_ctx_free(krb5_context context
, krb5_rd_req_in_ctx ctx
)
629 * Free the krb5_rd_req_out_ctx.
631 * @param context Keberos 5 context.
632 * @param ctx krb5_rd_req_out_ctx context to free.
637 KRB5_LIB_FUNCTION
void KRB5_LIB_CALL
638 krb5_rd_req_out_ctx_free(krb5_context context
, krb5_rd_req_out_ctx ctx
)
641 krb5_free_ticket(context
, ctx
->ticket
);
643 krb5_free_keyblock(context
, ctx
->keyblock
);
645 krb5_free_principal(context
, ctx
->server
);
650 * Process an AP_REQ message.
652 * @param context Kerberos 5 context.
653 * @param auth_context authentication context of the peer.
654 * @param inbuf the AP_REQ message, obtained for example with krb5_read_message().
655 * @param server server principal.
656 * @param keytab server keytab.
657 * @param ap_req_options set to the AP_REQ options. See the AP_OPTS_* defines.
658 * @param ticket on success, set to the authenticated client credentials.
659 * Must be deallocated with krb5_free_ticket(). If not
660 * interested, pass a NULL value.
662 * @return 0 to indicate success. Otherwise a Kerberos error code is
663 * returned, see krb5_get_error_message().
665 KRB5_LIB_FUNCTION krb5_error_code KRB5_LIB_CALL
666 krb5_rd_req(krb5_context context
,
667 krb5_auth_context
*auth_context
,
668 const krb5_data
*inbuf
,
669 krb5_const_principal server
,
671 krb5_flags
*ap_req_options
,
672 krb5_ticket
**ticket
)
675 krb5_rd_req_in_ctx in
;
676 krb5_rd_req_out_ctx out
;
678 ret
= krb5_rd_req_in_ctx_alloc(context
, &in
);
682 ret
= krb5_rd_req_in_set_keytab(context
, in
, keytab
);
684 krb5_rd_req_in_ctx_free(context
, in
);
688 ret
= krb5_rd_req_ctx(context
, auth_context
, inbuf
, server
, in
, &out
);
689 krb5_rd_req_in_ctx_free(context
, in
);
694 *ap_req_options
= out
->ap_req_options
;
696 ret
= krb5_copy_ticket(context
, out
->ticket
, ticket
);
702 krb5_rd_req_out_ctx_free(context
, out
);
710 KRB5_LIB_FUNCTION krb5_error_code KRB5_LIB_CALL
711 krb5_rd_req_with_keyblock(krb5_context context
,
712 krb5_auth_context
*auth_context
,
713 const krb5_data
*inbuf
,
714 krb5_const_principal server
,
715 krb5_keyblock
*keyblock
,
716 krb5_flags
*ap_req_options
,
717 krb5_ticket
**ticket
)
720 krb5_rd_req_in_ctx in
;
721 krb5_rd_req_out_ctx out
;
723 ret
= krb5_rd_req_in_ctx_alloc(context
, &in
);
727 ret
= krb5_rd_req_in_set_keyblock(context
, in
, keyblock
);
729 krb5_rd_req_in_ctx_free(context
, in
);
733 ret
= krb5_rd_req_ctx(context
, auth_context
, inbuf
, server
, in
, &out
);
734 krb5_rd_req_in_ctx_free(context
, in
);
739 *ap_req_options
= out
->ap_req_options
;
741 ret
= krb5_copy_ticket(context
, out
->ticket
, ticket
);
747 krb5_rd_req_out_ctx_free(context
, out
);
755 static krb5_error_code
756 get_key_from_keytab(krb5_context context
,
758 krb5_const_principal server
,
760 krb5_keyblock
**out_key
)
762 krb5_keytab_entry entry
;
765 krb5_keytab real_keytab
;
768 krb5_kt_default(context
, &real_keytab
);
770 real_keytab
= keytab
;
772 if (ap_req
->ticket
.enc_part
.kvno
)
773 kvno
= *ap_req
->ticket
.enc_part
.kvno
;
777 ret
= krb5_kt_get_entry (context
,
781 ap_req
->ticket
.enc_part
.etype
,
785 ret
= krb5_copy_keyblock(context
, &entry
.keyblock
, out_key
);
786 krb5_kt_free_entry (context
, &entry
);
789 krb5_kt_close(context
, real_keytab
);
795 * The core server function that verify application authentication
796 * requests from clients.
798 * @param context Keberos 5 context.
799 * @param auth_context the authentication context, can be NULL, then
800 * default values for the authentication context will used.
801 * @param inbuf the (AP-REQ) authentication buffer
803 * @param server the server to authenticate to. If NULL the function
804 * will try to find any available credential in the keytab
805 * that will verify the reply. The function will prefer the
806 * server specified in the AP-REQ, but if
807 * there is no mach, it will try all keytab entries for a
808 * match. This has serious performance issues for large keytabs.
810 * @param inctx control the behavior of the function, if NULL, the
811 * default behavior is used.
812 * @param outctx the return outctx, free with krb5_rd_req_out_ctx_free().
813 * @return Kerberos 5 error code, see krb5_get_error_message().
818 KRB5_LIB_FUNCTION krb5_error_code KRB5_LIB_CALL
819 krb5_rd_req_ctx(krb5_context context
,
820 krb5_auth_context
*auth_context
,
821 const krb5_data
*inbuf
,
822 krb5_const_principal server
,
823 krb5_rd_req_in_ctx inctx
,
824 krb5_rd_req_out_ctx
*outctx
)
828 krb5_rd_req_out_ctx o
= NULL
;
829 krb5_keytab id
= NULL
, keytab
= NULL
;
830 krb5_principal service
= NULL
;
834 o
= calloc(1, sizeof(*o
));
836 return krb5_enomem(context
);
838 if (*auth_context
== NULL
) {
839 ret
= krb5_auth_con_init(context
, auth_context
);
844 ret
= krb5_decode_ap_req(context
, inbuf
, &ap_req
);
848 /* Save the principal that was in the request */
849 ret
= _krb5_principalname2krb5_principal(context
,
852 ap_req
.ticket
.realm
);
856 if (ap_req
.ap_options
.use_session_key
&&
857 (*auth_context
)->keyblock
== NULL
) {
858 ret
= KRB5KRB_AP_ERR_NOKEY
;
859 krb5_set_error_message(context
, ret
,
860 N_("krb5_rd_req: user to user auth "
861 "without session key given", ""));
865 if (inctx
&& inctx
->keytab
)
868 if((*auth_context
)->keyblock
){
869 ret
= krb5_copy_keyblock(context
,
870 (*auth_context
)->keyblock
,
874 } else if(inctx
&& inctx
->keyblock
){
875 ret
= krb5_copy_keyblock(context
,
883 krb5_kt_default(context
, &keytab
);
889 if (server
== NULL
) {
890 ret
= _krb5_principalname2krb5_principal(context
,
893 ap_req
.ticket
.realm
);
899 ret
= get_key_from_keytab(context
,
905 /* If caller specified a server, fail. */
906 if (service
== NULL
&& (context
->flags
& KRB5_CTX_F_RD_REQ_IGNORE
) == 0)
908 /* Otherwise, fall back to iterating over the keytab. This
909 * have serious performace issues for larger keytab.
917 * We got an exact keymatch, use that.
920 ret
= krb5_verify_ap_req2(context
,
928 KRB5_KU_AP_REQ_AUTH
);
935 * Interate over keytab to find a key that can decrypt the request.
938 krb5_keytab_entry entry
;
939 krb5_kt_cursor cursor
;
940 int done
= 0, kvno
= 0;
942 memset(&cursor
, 0, sizeof(cursor
));
944 if (ap_req
.ticket
.enc_part
.kvno
)
945 kvno
= *ap_req
.ticket
.enc_part
.kvno
;
947 ret
= krb5_kt_start_seq_get(context
, id
, &cursor
);
955 ret
= krb5_kt_next_entry(context
, id
, &entry
, &cursor
);
957 _krb5_kt_principal_not_found(context
, ret
, id
, o
->server
,
958 ap_req
.ticket
.enc_part
.etype
,
963 if (entry
.keyblock
.keytype
!= ap_req
.ticket
.enc_part
.etype
) {
964 krb5_kt_free_entry (context
, &entry
);
968 ret
= krb5_verify_ap_req2(context
,
976 KRB5_KU_AP_REQ_AUTH
);
978 krb5_kt_free_entry (context
, &entry
);
983 * Found a match, save the keyblock for PAC processing,
984 * and update the service principal in the ticket to match
985 * whatever is in the keytab.
988 ret
= krb5_copy_keyblock(context
,
992 krb5_kt_free_entry (context
, &entry
);
996 ret
= krb5_copy_principal(context
, entry
.principal
, &p
);
998 krb5_kt_free_entry (context
, &entry
);
1001 krb5_free_principal(context
, o
->ticket
->server
);
1002 o
->ticket
->server
= p
;
1004 krb5_kt_free_entry (context
, &entry
);
1008 krb5_kt_end_seq_get (context
, id
, &cursor
);
1013 /* If there is a PAC, verify its server signature */
1014 if (inctx
== NULL
|| inctx
->check_pac
) {
1018 ret
= krb5_ticket_get_authorization_data_type(context
,
1020 KRB5_AUTHDATA_WIN2K_PAC
,
1023 ret
= krb5_pac_parse(context
, data
.data
, data
.length
, &pac
);
1024 krb5_data_free(&data
);
1028 ret
= krb5_pac_verify(context
,
1030 o
->ticket
->ticket
.authtime
,
1034 krb5_pac_free(context
, pac
);
1042 if (ret
|| outctx
== NULL
) {
1043 krb5_rd_req_out_ctx_free(context
, o
);
1047 free_AP_REQ(&ap_req
);
1050 krb5_free_principal(context
, service
);
1053 krb5_kt_close(context
, keytab
);