X-Git-Url: https://git.sur5r.net/?a=blobdiff_plain;f=libraries%2Flibldap%2Funbind.c;h=7fd116f76048f781cfb36f115ceb949a71a0d2f9;hb=7573a81efea63bc0e07d88ba4c9b6973d51d857d;hp=c9f14ec34a9c8d5d85711c2f9a0711ebc120b89e;hpb=042898d2f0bc21a3f8c755ddc0f49487b4a12dee;p=openldap diff --git a/libraries/libldap/unbind.c b/libraries/libldap/unbind.c index c9f14ec34a..7fd116f760 100644 --- a/libraries/libldap/unbind.c +++ b/libraries/libldap/unbind.c @@ -1,5 +1,6 @@ +/* $OpenLDAP$ */ /* - * Copyright 1998-1999 The OpenLDAP Foundation, All Rights Reserved. + * Copyright 1998-2000 The OpenLDAP Foundation, All Rights Reserved. * COPYING RESTRICTIONS APPLY, see COPYRIGHT file */ /* Portions @@ -9,10 +10,17 @@ * unbind.c */ +/* An Unbind Request looks like this: + * + * UnbindRequest ::= NULL + * + * and has no response. + */ + #include "portable.h" #include -#include +#include #include #include @@ -47,12 +55,9 @@ ldap_ld_free( { LDAPMessage *lm, *next; int err = LDAP_SUCCESS; -#ifdef LDAP_API_FEATURE_X_OPENLDAP_V2_REFERRALS LDAPRequest *lr, *nextlr; -#endif /* LDAP_API_FEATURE_X_OPENLDAP_V2_REFERRALS */ if ( ld->ld_cldapnaddr == 0 ) { -#ifdef LDAP_API_FEATURE_X_OPENLDAP_V2_REFERRALS /* free LDAP structure and outstanding requests/responses */ for ( lr = ld->ld_requests; lr != NULL; lr = nextlr ) { nextlr = lr->lr_next; @@ -63,19 +68,13 @@ ldap_ld_free( while ( ld->ld_conns != NULL ) { ldap_free_connection( ld, ld->ld_conns, 1, close ); } -#else /* LDAP_API_FEATURE_X_OPENLDAP_V2_REFERRALS */ - if ( close ) { - err = ldap_send_unbind( ld, &ld->ld_sb, sctrls, cctrls ); - ldap_close_connection( &ld->ld_sb ); - } -#endif /* LDAP_API_FEATURE_X_OPENLDAP_V2_REFERRALS */ } else { int i; for ( i = 0; i < ld->ld_cldapnaddr; ++i ) { - free( ld->ld_cldapaddrs[ i ] ); + LDAP_FREE( ld->ld_cldapaddrs[ i ] ); } - free( ld->ld_cldapaddrs ); + LDAP_FREE( ld->ld_cldapaddrs ); } for ( lm = ld->ld_responses; lm != NULL; lm = next ) { @@ -91,22 +90,22 @@ ldap_ld_free( #endif /* !LDAP_NOCACHE */ if ( ld->ld_error != NULL ) { - free( ld->ld_error ); + LDAP_FREE( ld->ld_error ); ld->ld_error = NULL; } if ( ld->ld_matched != NULL ) { - free( ld->ld_matched ); + LDAP_FREE( ld->ld_matched ); ld->ld_matched = NULL; } if ( ld->ld_host != NULL ) { - free( ld->ld_host ); + LDAP_FREE( ld->ld_host ); ld->ld_host = NULL; } if ( ld->ld_ufnprefix != NULL ) { - free( ld->ld_ufnprefix ); + LDAP_FREE( ld->ld_ufnprefix ); ld->ld_ufnprefix = NULL; } @@ -116,32 +115,39 @@ ldap_ld_free( } if ( ld->ld_abandoned != NULL ) { - free( ld->ld_abandoned ); + LDAP_FREE( ld->ld_abandoned ); ld->ld_abandoned = NULL; } -#ifdef LDAP_API_FEATURE_X_OPENLDAP_V2_REFERRALS if ( ld->ld_selectinfo != NULL ) { ldap_free_select_info( ld->ld_selectinfo ); ld->ld_selectinfo = NULL; } -#else - ber_clear( &(ld->ld_ber), 1 ); -#endif /* LDAP_API_FEATURE_X_OPENLDAP_V2_REFERRALS */ - if ( ld->ld_options.ldo_defbase != NULL ) { - free( ld->ld_options.ldo_defbase ); - ld->ld_options.ldo_defbase = NULL; + if ( ld->ld_options.ldo_defludp != NULL ) { + ldap_free_urllist( ld->ld_options.ldo_defludp ); + ld->ld_options.ldo_defludp = NULL; } - if ( ld->ld_options.ldo_defhost != NULL ) { - free( ld->ld_options.ldo_defhost ); - ld->ld_options.ldo_defhost = NULL; + if ( ld->ld_options.ldo_tm_api != NULL ) { + LDAP_FREE( ld->ld_options.ldo_tm_api ); + ld->ld_options.ldo_tm_api = NULL; } - ber_pvt_sb_destroy( &(ld->ld_sb) ); + if ( ld->ld_options.ldo_tm_net != NULL ) { + LDAP_FREE( ld->ld_options.ldo_tm_net ); + ld->ld_options.ldo_tm_net = NULL; + } + +#ifdef HAVE_CYRUS_SASL + if ( ld->ld_sasl_context != NULL ) { + sasl_dispose( &ld->ld_sasl_context ); + } +#endif + + ber_sockbuf_free( ld->ld_sb ); - free( (char *) ld ); + LDAP_FREE( (char *) ld ); WSACleanup(); @@ -167,12 +173,12 @@ ldap_send_unbind( Debug( LDAP_DEBUG_TRACE, "ldap_send_unbind\n", 0, 0, 0 ); /* create a message to send */ - if ( (ber = ldap_alloc_ber_with_options( ld )) == NULLBER ) { + if ( (ber = ldap_alloc_ber_with_options( ld )) == NULL ) { return( ld->ld_errno ); } /* fill it in */ - if ( ber_printf( ber, "{itn", ++ld->ld_msgid, + if ( ber_printf( ber, "{itn" /*}*/, ++ld->ld_msgid, LDAP_REQ_UNBIND ) == -1 ) { ld->ld_errno = LDAP_ENCODING_ERROR; ber_free( ber, 1 ); @@ -185,8 +191,7 @@ ldap_send_unbind( return ld->ld_errno; } - if ( ber_printf( ber, "}", ++ld->ld_msgid, - LDAP_REQ_UNBIND ) == -1 ) { + if ( ber_printf( ber, /*{*/ "}", LDAP_REQ_UNBIND ) == -1 ) { ld->ld_errno = LDAP_ENCODING_ERROR; ber_free( ber, 1 ); return( ld->ld_errno );