2001-10-12 08:49:42 +04:00
/*
2002-01-30 09:08:46 +03:00
Unix SMB / CIFS implementation .
2001-10-12 08:49:42 +04:00
simple kerberos5 / SPNEGO routines
Copyright ( C ) Andrew Tridgell 2001
2003-08-01 19:21:20 +04:00
Copyright ( C ) Jim McDonough < jmcd @ us . ibm . com > 2002
2003-03-18 01:45:16 +03:00
Copyright ( C ) Luke Howard 2003
2010-07-20 20:51:48 +04:00
Copyright ( C ) Jeremy Allison 2010
2001-10-12 08:49:42 +04:00
This program is free software ; you can redistribute it and / or modify
it under the terms of the GNU General Public License as published by
2007-07-09 23:25:36 +04:00
the Free Software Foundation ; either version 3 of the License , or
2001-10-12 08:49:42 +04:00
( at your option ) any later version .
This program is distributed in the hope that it will be useful ,
but WITHOUT ANY WARRANTY ; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE . See the
GNU General Public License for more details .
You should have received a copy of the GNU General Public License
2007-07-10 04:52:41 +04:00
along with this program . If not , see < http : //www.gnu.org/licenses/>.
2001-10-12 08:49:42 +04:00
*/
# include "includes.h"
2009-09-17 02:21:01 +04:00
# include "../libcli/auth/spnego.h"
2009-11-27 17:52:57 +03:00
# include "smb_krb5.h"
2011-02-24 14:27:29 +03:00
# include "../lib/util/asn1.h"
2001-10-12 08:49:42 +04:00
/*
2010-07-20 03:45:16 +04:00
generate a negTokenInit packet given a list of supported
2010-07-20 04:14:26 +04:00
OIDs ( the mechanisms ) a blob , and a principal name string
2001-10-12 08:49:42 +04:00
*/
2010-07-20 04:14:26 +04:00
2010-07-21 01:59:31 +04:00
DATA_BLOB spnego_gen_negTokenInit ( TALLOC_CTX * ctx ,
const char * OIDs [ ] ,
2010-07-20 04:14:26 +04:00
DATA_BLOB * psecblob ,
2001-10-22 00:51:27 +04:00
const char * principal )
2001-10-12 08:49:42 +04:00
{
int i ;
2008-10-22 21:23:49 +04:00
ASN1_DATA * data ;
2001-10-17 12:54:19 +04:00
DATA_BLOB ret ;
2001-10-12 08:49:42 +04:00
2008-10-22 21:23:49 +04:00
data = asn1_init ( talloc_tos ( ) ) ;
if ( data = = NULL ) {
return data_blob_null ;
}
2001-10-12 08:49:42 +04:00
2008-10-22 21:23:49 +04:00
asn1_push_tag ( data , ASN1_APPLICATION ( 0 ) ) ;
asn1_write_OID ( data , OID_SPNEGO ) ;
asn1_push_tag ( data , ASN1_CONTEXT ( 0 ) ) ;
asn1_push_tag ( data , ASN1_SEQUENCE ( 0 ) ) ;
2001-10-12 08:49:42 +04:00
2008-10-22 21:23:49 +04:00
asn1_push_tag ( data , ASN1_CONTEXT ( 0 ) ) ;
asn1_push_tag ( data , ASN1_SEQUENCE ( 0 ) ) ;
2001-10-12 08:49:42 +04:00
for ( i = 0 ; OIDs [ i ] ; i + + ) {
2008-10-22 21:23:49 +04:00
asn1_write_OID ( data , OIDs [ i ] ) ;
2001-10-12 08:49:42 +04:00
}
2008-10-22 21:23:49 +04:00
asn1_pop_tag ( data ) ;
asn1_pop_tag ( data ) ;
2001-10-12 08:49:42 +04:00
2010-07-20 04:14:26 +04:00
if ( psecblob & & psecblob - > length & & psecblob - > data ) {
asn1_push_tag ( data , ASN1_CONTEXT ( 2 ) ) ;
asn1_write_OctetString ( data , psecblob - > data ,
psecblob - > length ) ;
asn1_pop_tag ( data ) ;
2001-10-12 08:49:42 +04:00
}
2010-07-20 04:14:26 +04:00
if ( principal ) {
asn1_push_tag ( data , ASN1_CONTEXT ( 3 ) ) ;
asn1_push_tag ( data , ASN1_SEQUENCE ( 0 ) ) ;
asn1_push_tag ( data , ASN1_CONTEXT ( 0 ) ) ;
asn1_write_GeneralString ( data , principal ) ;
asn1_pop_tag ( data ) ;
asn1_pop_tag ( data ) ;
asn1_pop_tag ( data ) ;
2008-10-22 21:23:49 +04:00
}
2002-09-25 19:19:00 +04:00
2008-10-22 21:23:49 +04:00
asn1_pop_tag ( data ) ;
asn1_pop_tag ( data ) ;
2002-09-25 19:19:00 +04:00
2008-10-22 21:23:49 +04:00
asn1_pop_tag ( data ) ;
2002-09-25 19:19:00 +04:00
2008-10-22 21:23:49 +04:00
if ( data - > has_error ) {
DEBUG ( 1 , ( " Failed to build negTokenInit at offset %d \n " , ( int ) data - > ofs ) ) ;
2002-09-25 19:19:00 +04:00
}
2010-07-21 01:59:31 +04:00
ret = data_blob_talloc ( ctx , data - > data , data - > length ) ;
2008-10-22 21:23:49 +04:00
asn1_free ( data ) ;
2002-09-25 19:19:00 +04:00
return ret ;
}
2001-10-12 08:49:42 +04:00
/*
parse a negTokenInit packet giving a GUID , a list of supported
2001-10-22 00:51:27 +04:00
OIDs ( the mechanisms ) and a principal name string
2001-10-12 08:49:42 +04:00
*/
2010-07-21 00:35:43 +04:00
bool spnego_parse_negTokenInit ( TALLOC_CTX * ctx ,
DATA_BLOB blob ,
2008-10-22 16:06:08 +04:00
char * OIDs [ ASN1_MAX_OIDS ] ,
2010-07-20 02:41:45 +04:00
char * * principal ,
DATA_BLOB * secblob )
2001-10-12 08:49:42 +04:00
{
int i ;
2007-10-19 04:40:25 +04:00
bool ret ;
2008-10-22 21:23:49 +04:00
ASN1_DATA * data ;
data = asn1_init ( talloc_tos ( ) ) ;
if ( data = = NULL ) {
return false ;
}
asn1_load ( data , blob ) ;
2001-10-12 08:49:42 +04:00
2008-10-22 21:23:49 +04:00
asn1_start_tag ( data , ASN1_APPLICATION ( 0 ) ) ;
2001-10-12 08:49:42 +04:00
2008-10-22 21:23:49 +04:00
asn1_check_OID ( data , OID_SPNEGO ) ;
2010-07-20 01:21:01 +04:00
/* negTokenInit [0] NegTokenInit */
2008-10-22 21:23:49 +04:00
asn1_start_tag ( data , ASN1_CONTEXT ( 0 ) ) ;
asn1_start_tag ( data , ASN1_SEQUENCE ( 0 ) ) ;
2001-10-12 08:49:42 +04:00
2010-07-20 01:21:01 +04:00
/* mechTypes [0] MechTypeList OPTIONAL */
/* Not really optional, we depend on this to decide
* what mechanisms we have to work with . */
2008-10-22 21:23:49 +04:00
asn1_start_tag ( data , ASN1_CONTEXT ( 0 ) ) ;
asn1_start_tag ( data , ASN1_SEQUENCE ( 0 ) ) ;
for ( i = 0 ; asn1_tag_remaining ( data ) > 0 & & i < ASN1_MAX_OIDS - 1 ; i + + ) {
2011-09-21 05:50:00 +04:00
if ( ! asn1_read_OID ( data , ctx , & OIDs [ i ] ) ) {
break ;
}
if ( data - > has_error ) {
break ;
}
2001-10-12 08:49:42 +04:00
}
OIDs [ i ] = NULL ;
2008-10-22 21:23:49 +04:00
asn1_end_tag ( data ) ;
asn1_end_tag ( data ) ;
2001-10-12 08:49:42 +04:00
2010-07-20 02:41:45 +04:00
if ( principal ) {
* principal = NULL ;
}
if ( secblob ) {
* secblob = data_blob_null ;
}
2010-07-20 01:21:01 +04:00
/*
Win7 + Live Sign - in Assistant attaches a mechToken
ASN1_CONTEXT ( 2 ) to the negTokenInit packet
which breaks our negotiation if we just assume
the next tag is ASN1_CONTEXT ( 3 ) .
*/
2010-07-20 20:51:48 +04:00
if ( asn1_peek_tag ( data , ASN1_CONTEXT ( 1 ) ) ) {
uint8 flags ;
/* reqFlags [1] ContextFlags OPTIONAL */
asn1_start_tag ( data , ASN1_CONTEXT ( 1 ) ) ;
asn1_start_tag ( data , ASN1_BIT_STRING ) ;
while ( asn1_tag_remaining ( data ) > 0 ) {
asn1_read_uint8 ( data , & flags ) ;
2010-07-20 01:21:01 +04:00
}
2010-07-20 20:51:48 +04:00
asn1_end_tag ( data ) ;
asn1_end_tag ( data ) ;
2010-07-20 01:21:01 +04:00
}
2010-07-20 20:51:48 +04:00
if ( asn1_peek_tag ( data , ASN1_CONTEXT ( 2 ) ) ) {
DATA_BLOB sblob = data_blob_null ;
/* mechToken [2] OCTET STRING OPTIONAL */
asn1_start_tag ( data , ASN1_CONTEXT ( 2 ) ) ;
2010-07-21 00:35:43 +04:00
asn1_read_OctetString ( data , ctx , & sblob ) ;
2010-07-20 20:51:48 +04:00
asn1_end_tag ( data ) ;
if ( secblob ) {
* secblob = sblob ;
} else {
data_blob_free ( & sblob ) ;
2010-07-20 01:21:01 +04:00
}
}
2010-07-20 20:51:48 +04:00
if ( asn1_peek_tag ( data , ASN1_CONTEXT ( 3 ) ) ) {
char * princ = NULL ;
/* mechListMIC [3] OCTET STRING OPTIONAL */
asn1_start_tag ( data , ASN1_CONTEXT ( 3 ) ) ;
asn1_start_tag ( data , ASN1_SEQUENCE ( 0 ) ) ;
asn1_start_tag ( data , ASN1_CONTEXT ( 0 ) ) ;
2010-07-21 00:35:43 +04:00
asn1_read_GeneralString ( data , ctx , & princ ) ;
2010-07-20 20:51:48 +04:00
asn1_end_tag ( data ) ;
asn1_end_tag ( data ) ;
asn1_end_tag ( data ) ;
if ( principal ) {
* principal = princ ;
} else {
TALLOC_FREE ( princ ) ;
2010-07-20 01:21:01 +04:00
}
2006-10-02 16:54:49 +04:00
}
2001-10-12 08:49:42 +04:00
2008-10-22 21:23:49 +04:00
asn1_end_tag ( data ) ;
asn1_end_tag ( data ) ;
2001-10-12 08:49:42 +04:00
2008-10-22 21:23:49 +04:00
asn1_end_tag ( data ) ;
2001-10-12 08:49:42 +04:00
2008-10-22 21:23:49 +04:00
ret = ! data - > has_error ;
if ( data - > has_error ) {
2006-06-17 02:25:17 +04:00
int j ;
2010-07-20 02:41:45 +04:00
if ( principal ) {
TALLOC_FREE ( * principal ) ;
}
if ( secblob ) {
data_blob_free ( secblob ) ;
}
2006-06-17 02:25:17 +04:00
for ( j = 0 ; j < i & & j < ASN1_MAX_OIDS - 1 ; j + + ) {
2008-10-22 16:06:08 +04:00
TALLOC_FREE ( OIDs [ j ] ) ;
2006-06-17 02:25:17 +04:00
}
}
2008-10-22 21:23:49 +04:00
asn1_free ( data ) ;
2001-10-12 08:49:42 +04:00
return ret ;
}
/*
generate a krb5 GSS - API wrapper packet given a ticket
*/
2010-07-21 03:17:58 +04:00
DATA_BLOB spnego_gen_krb5_wrap ( TALLOC_CTX * ctx , const DATA_BLOB ticket , const uint8 tok_id [ 2 ] )
2001-10-12 08:49:42 +04:00
{
2008-10-22 21:23:49 +04:00
ASN1_DATA * data ;
2001-10-12 08:49:42 +04:00
DATA_BLOB ret ;
2008-10-22 21:23:49 +04:00
data = asn1_init ( talloc_tos ( ) ) ;
if ( data = = NULL ) {
return data_blob_null ;
}
2001-10-12 08:49:42 +04:00
2008-10-22 21:23:49 +04:00
asn1_push_tag ( data , ASN1_APPLICATION ( 0 ) ) ;
asn1_write_OID ( data , OID_KERBEROS5 ) ;
2003-03-18 01:45:16 +03:00
2008-10-22 21:23:49 +04:00
asn1_write ( data , tok_id , 2 ) ;
asn1_write ( data , ticket . data , ticket . length ) ;
asn1_pop_tag ( data ) ;
2001-10-12 08:49:42 +04:00
2008-10-22 21:23:49 +04:00
if ( data - > has_error ) {
DEBUG ( 1 , ( " Failed to build krb5 wrapper at offset %d \n " , ( int ) data - > ofs ) ) ;
2001-10-12 08:49:42 +04:00
}
2010-07-21 03:17:58 +04:00
ret = data_blob_talloc ( ctx , data - > data , data - > length ) ;
2008-10-22 21:23:49 +04:00
asn1_free ( data ) ;
2001-10-12 08:49:42 +04:00
return ret ;
}
/*
2010-07-20 22:14:49 +04:00
generate a SPNEGO krb5 negTokenInit packet , ready for a EXTENDED_SECURITY
kerberos session setup
2001-10-12 08:49:42 +04:00
*/
2010-07-21 01:59:31 +04:00
int spnego_gen_krb5_negTokenInit ( TALLOC_CTX * ctx ,
const char * principal , int time_offset ,
DATA_BLOB * targ ,
2007-02-08 20:02:39 +03:00
DATA_BLOB * session_key_krb5 , uint32 extra_ap_opts ,
time_t * expire_time )
2001-10-12 08:49:42 +04:00
{
2004-01-08 11:19:18 +03:00
int retval ;
DATA_BLOB tkt , tkt_wrapped ;
2007-04-05 16:36:10 +04:00
const char * krb_mechs [ ] = { OID_KERBEROS5_OLD , OID_KERBEROS5 , OID_NTLMSSP , NULL } ;
2001-10-12 08:49:42 +04:00
2003-07-26 03:15:30 +04:00
/* get a kerberos ticket for the service and extract the session key */
2010-07-21 04:00:12 +04:00
retval = cli_krb5_get_ticket ( ctx , principal , time_offset ,
& tkt , session_key_krb5 ,
extra_ap_opts , NULL ,
expire_time , NULL ) ;
if ( retval ) {
2004-01-08 11:19:18 +03:00
return retval ;
2010-07-21 04:00:12 +04:00
}
2003-08-14 00:27:18 +04:00
2001-10-12 08:49:42 +04:00
/* wrap that up in a nice GSS-API wrapping */
2010-07-21 03:17:58 +04:00
tkt_wrapped = spnego_gen_krb5_wrap ( ctx , tkt , TOK_ID_KRB_AP_REQ ) ;
2001-10-12 08:49:42 +04:00
/* and wrap that in a shiny SPNEGO wrapper */
2010-07-21 01:59:31 +04:00
* targ = spnego_gen_negTokenInit ( ctx , krb_mechs , & tkt_wrapped , NULL ) ;
2001-10-12 08:49:42 +04:00
2001-10-17 12:54:19 +04:00
data_blob_free ( & tkt_wrapped ) ;
data_blob_free ( & tkt ) ;
2001-10-12 08:49:42 +04:00
2004-01-08 11:19:18 +03:00
return retval ;
2001-10-12 08:49:42 +04:00
}
/*
parse a spnego NTLMSSP challenge packet giving two security blobs
*/
2010-07-21 03:17:58 +04:00
bool spnego_parse_challenge ( TALLOC_CTX * ctx , const DATA_BLOB blob ,
2001-10-12 08:49:42 +04:00
DATA_BLOB * chal1 , DATA_BLOB * chal2 )
{
2007-10-19 04:40:25 +04:00
bool ret ;
2008-10-22 21:23:49 +04:00
ASN1_DATA * data ;
2001-10-12 08:49:42 +04:00
2001-10-14 10:14:11 +04:00
ZERO_STRUCTP ( chal1 ) ;
ZERO_STRUCTP ( chal2 ) ;
2008-10-22 21:23:49 +04:00
data = asn1_init ( talloc_tos ( ) ) ;
if ( data = = NULL ) {
return false ;
}
asn1_load ( data , blob ) ;
asn1_start_tag ( data , ASN1_CONTEXT ( 1 ) ) ;
asn1_start_tag ( data , ASN1_SEQUENCE ( 0 ) ) ;
2001-10-12 08:49:42 +04:00
2008-10-22 21:23:49 +04:00
asn1_start_tag ( data , ASN1_CONTEXT ( 0 ) ) ;
asn1_check_enumerated ( data , 1 ) ;
asn1_end_tag ( data ) ;
2001-10-12 08:49:42 +04:00
2008-10-22 21:23:49 +04:00
asn1_start_tag ( data , ASN1_CONTEXT ( 1 ) ) ;
asn1_check_OID ( data , OID_NTLMSSP ) ;
asn1_end_tag ( data ) ;
2001-10-12 08:49:42 +04:00
2008-10-22 21:23:49 +04:00
asn1_start_tag ( data , ASN1_CONTEXT ( 2 ) ) ;
2010-07-21 03:17:58 +04:00
asn1_read_OctetString ( data , ctx , chal1 ) ;
2008-10-22 21:23:49 +04:00
asn1_end_tag ( data ) ;
2001-10-12 08:49:42 +04:00
2001-10-14 10:14:11 +04:00
/* the second challenge is optional (XP doesn't send it) */
2008-10-22 21:23:49 +04:00
if ( asn1_tag_remaining ( data ) ) {
asn1_start_tag ( data , ASN1_CONTEXT ( 3 ) ) ;
2010-07-21 03:17:58 +04:00
asn1_read_OctetString ( data , ctx , chal2 ) ;
2008-10-22 21:23:49 +04:00
asn1_end_tag ( data ) ;
2001-10-14 10:14:11 +04:00
}
2001-10-12 08:49:42 +04:00
2008-10-22 21:23:49 +04:00
asn1_end_tag ( data ) ;
asn1_end_tag ( data ) ;
2001-10-12 08:49:42 +04:00
2008-10-22 21:23:49 +04:00
ret = ! data - > has_error ;
2006-06-17 02:25:17 +04:00
2008-10-22 21:23:49 +04:00
if ( data - > has_error ) {
2006-06-17 02:25:17 +04:00
data_blob_free ( chal1 ) ;
data_blob_free ( chal2 ) ;
}
2008-10-22 21:23:49 +04:00
asn1_free ( data ) ;
2001-10-12 08:49:42 +04:00
return ret ;
}
2001-10-17 12:54:19 +04:00
2001-10-12 08:49:42 +04:00
/*
2003-02-19 15:31:16 +03:00
generate a SPNEGO auth packet . This will contain the encrypted passwords
2001-10-12 08:49:42 +04:00
*/
2010-07-21 03:17:58 +04:00
DATA_BLOB spnego_gen_auth ( TALLOC_CTX * ctx , DATA_BLOB blob )
2001-10-12 08:49:42 +04:00
{
2008-10-22 21:23:49 +04:00
ASN1_DATA * data ;
2001-10-12 08:49:42 +04:00
DATA_BLOB ret ;
2008-10-22 21:23:49 +04:00
data = asn1_init ( talloc_tos ( ) ) ;
if ( data = = NULL ) {
return data_blob_null ;
}
2001-10-12 08:49:42 +04:00
2008-10-22 21:23:49 +04:00
asn1_push_tag ( data , ASN1_CONTEXT ( 1 ) ) ;
asn1_push_tag ( data , ASN1_SEQUENCE ( 0 ) ) ;
asn1_push_tag ( data , ASN1_CONTEXT ( 2 ) ) ;
asn1_write_OctetString ( data , blob . data , blob . length ) ;
asn1_pop_tag ( data ) ;
asn1_pop_tag ( data ) ;
asn1_pop_tag ( data ) ;
2001-10-12 08:49:42 +04:00
2010-07-21 03:17:58 +04:00
ret = data_blob_talloc ( ctx , data - > data , data - > length ) ;
2001-10-12 08:49:42 +04:00
2008-10-22 21:23:49 +04:00
asn1_free ( data ) ;
2001-10-12 08:49:42 +04:00
return ret ;
2001-10-17 12:54:19 +04:00
}
2001-10-12 08:49:42 +04:00
/*
2007-04-05 16:30:23 +04:00
parse a SPNEGO auth packet . This contains the encrypted passwords
2003-02-24 05:55:00 +03:00
*/
2010-07-21 03:17:58 +04:00
bool spnego_parse_auth_response ( TALLOC_CTX * ctx ,
DATA_BLOB blob , NTSTATUS nt_status ,
2007-04-05 16:30:23 +04:00
const char * mechOID ,
2003-02-24 05:55:00 +03:00
DATA_BLOB * auth )
2001-10-12 08:49:42 +04:00
{
2008-10-22 21:23:49 +04:00
ASN1_DATA * data ;
2003-02-24 05:55:00 +03:00
uint8 negResult ;
2001-10-12 08:49:42 +04:00
2003-02-24 05:55:00 +03:00
if ( NT_STATUS_IS_OK ( nt_status ) ) {
2009-09-17 02:21:01 +04:00
negResult = SPNEGO_ACCEPT_COMPLETED ;
2003-02-24 05:55:00 +03:00
} else if ( NT_STATUS_EQUAL ( nt_status , NT_STATUS_MORE_PROCESSING_REQUIRED ) ) {
2009-09-17 02:21:01 +04:00
negResult = SPNEGO_ACCEPT_INCOMPLETE ;
2003-02-24 05:55:00 +03:00
} else {
2009-09-17 02:21:01 +04:00
negResult = SPNEGO_REJECT ;
2003-02-24 05:55:00 +03:00
}
2001-10-17 12:54:19 +04:00
2008-10-22 21:23:49 +04:00
data = asn1_init ( talloc_tos ( ) ) ;
if ( data = = NULL ) {
return false ;
}
asn1_load ( data , blob ) ;
asn1_start_tag ( data , ASN1_CONTEXT ( 1 ) ) ;
asn1_start_tag ( data , ASN1_SEQUENCE ( 0 ) ) ;
asn1_start_tag ( data , ASN1_CONTEXT ( 0 ) ) ;
asn1_check_enumerated ( data , negResult ) ;
asn1_end_tag ( data ) ;
2001-10-17 12:54:19 +04:00
2007-05-14 16:16:20 +04:00
* auth = data_blob_null ;
2007-04-05 16:30:23 +04:00
2008-10-22 21:23:49 +04:00
if ( asn1_tag_remaining ( data ) ) {
asn1_start_tag ( data , ASN1_CONTEXT ( 1 ) ) ;
asn1_check_OID ( data , mechOID ) ;
asn1_end_tag ( data ) ;
2007-04-05 16:30:23 +04:00
2008-10-22 21:23:49 +04:00
if ( asn1_tag_remaining ( data ) ) {
asn1_start_tag ( data , ASN1_CONTEXT ( 2 ) ) ;
2010-07-21 03:17:58 +04:00
asn1_read_OctetString ( data , ctx , auth ) ;
2008-10-22 21:23:49 +04:00
asn1_end_tag ( data ) ;
2007-04-05 16:30:23 +04:00
}
2009-09-17 02:21:01 +04:00
} else if ( negResult = = SPNEGO_ACCEPT_INCOMPLETE ) {
2008-10-22 21:23:49 +04:00
data - > has_error = 1 ;
2001-10-17 12:54:19 +04:00
}
2007-09-19 18:33:32 +04:00
/* Binding against Win2K DC returns a duplicate of the responseToken in
* the optional mechListMIC field . This is a bug in Win2K . We ignore
* this field if it exists . Win2K8 may return a proper mechListMIC at
* which point we need to implement the integrity checking . */
2008-10-22 21:23:49 +04:00
if ( asn1_tag_remaining ( data ) ) {
2007-09-19 18:33:32 +04:00
DATA_BLOB mechList = data_blob_null ;
2008-10-22 21:23:49 +04:00
asn1_start_tag ( data , ASN1_CONTEXT ( 3 ) ) ;
2010-07-21 03:17:58 +04:00
asn1_read_OctetString ( data , ctx , & mechList ) ;
2008-10-22 21:23:49 +04:00
asn1_end_tag ( data ) ;
2007-09-19 18:33:32 +04:00
data_blob_free ( & mechList ) ;
DEBUG ( 5 , ( " spnego_parse_auth_response received mechListMIC, "
" ignoring. \n " ) ) ;
}
2008-10-22 21:23:49 +04:00
asn1_end_tag ( data ) ;
asn1_end_tag ( data ) ;
2002-07-15 14:35:28 +04:00
2008-10-22 21:23:49 +04:00
if ( data - > has_error ) {
DEBUG ( 3 , ( " spnego_parse_auth_response failed at %d \n " , ( int ) data - > ofs ) ) ;
asn1_free ( data ) ;
2003-02-24 05:55:00 +03:00
data_blob_free ( auth ) ;
return False ;
}
2002-07-15 14:35:28 +04:00
2008-10-22 21:23:49 +04:00
asn1_free ( data ) ;
2003-02-24 05:55:00 +03:00
return True ;
2002-07-15 14:35:28 +04:00
}
2010-08-31 23:08:31 +04:00