]> git.sur5r.net Git - openldap/blob - libraries/libldap/unbind.c
e09ef637bec0e6f9d8b9db19bc48343b8cedb3ef
[openldap] / libraries / libldap / unbind.c
1 /* $OpenLDAP$ */
2 /*
3  * Copyright 1998-2002 The OpenLDAP Foundation, All Rights Reserved.
4  * COPYING RESTRICTIONS APPLY, see COPYRIGHT file
5  */
6 /*  Portions
7  *  Copyright (c) 1990 Regents of the University of Michigan.
8  *  All rights reserved.
9  *
10  *  unbind.c
11  */
12
13 /* An Unbind Request looks like this:
14  *
15  *      UnbindRequest ::= NULL
16  *
17  * and has no response.
18  */
19
20 #include "portable.h"
21
22 #include <stdio.h>
23 #include <ac/stdlib.h>
24
25 #include <ac/socket.h>
26 #include <ac/string.h>
27 #include <ac/time.h>
28
29 #include "ldap-int.h"
30
31 int
32 ldap_unbind_ext(
33         LDAP *ld,
34         LDAPControl **sctrls,
35         LDAPControl **cctrls )
36 {
37         int rc;
38
39         assert( ld != NULL );
40         assert( LDAP_VALID( ld ) );
41
42         /* check client controls */
43         rc = ldap_int_client_controls( ld, cctrls );
44         if( rc != LDAP_SUCCESS ) return rc;
45
46         return ldap_ld_free( ld, 1, sctrls, cctrls );
47 }
48
49 int
50 ldap_unbind_ext_s(
51         LDAP *ld,
52         LDAPControl **sctrls,
53         LDAPControl **cctrls )
54 {
55         return ldap_unbind_ext( ld, sctrls, cctrls );
56 }
57
58 int
59 ldap_unbind( LDAP *ld )
60 {
61 #ifdef NEW_LOGGING
62         LDAP_LOG ( OPERATION, ENTRY, "ldap_unbind\n", 0, 0, 0 );
63 #else
64         Debug( LDAP_DEBUG_TRACE, "ldap_unbind\n", 0, 0, 0 );
65 #endif
66
67         return( ldap_unbind_ext( ld, NULL, NULL ) );
68 }
69
70
71 int
72 ldap_ld_free(
73         LDAP *ld,
74         int close,
75         LDAPControl **sctrls,
76         LDAPControl **cctrls )
77 {
78         LDAPMessage     *lm, *next;
79         int             err = LDAP_SUCCESS;
80
81         /* free LDAP structure and outstanding requests/responses */
82         while ( ld->ld_requests != NULL ) {
83                 ldap_free_request( ld, ld->ld_requests );
84         }
85
86         /* free and unbind from all open connections */
87         while ( ld->ld_conns != NULL ) {
88                 ldap_free_connection( ld, ld->ld_conns, 1, close );
89         }
90
91         for ( lm = ld->ld_responses; lm != NULL; lm = next ) {
92                 next = lm->lm_next;
93                 ldap_msgfree( lm );
94         }
95
96 #ifndef LDAP_NOCACHE
97         if ( ld->ld_cache != NULL ) {
98                 ldap_destroy_cache( ld );
99                 ld->ld_cache = NULL;
100         }
101 #endif /* !LDAP_NOCACHE */
102
103         if ( ld->ld_error != NULL ) {
104                 LDAP_FREE( ld->ld_error );
105                 ld->ld_error = NULL;
106         }
107
108         if ( ld->ld_matched != NULL ) {
109                 LDAP_FREE( ld->ld_matched );
110                 ld->ld_matched = NULL;
111         }
112
113         if( ld->ld_referrals != NULL) {
114                 LDAP_VFREE(ld->ld_referrals);
115                 ld->ld_referrals = NULL;
116         }  
117     
118         if ( ld->ld_abandoned != NULL ) {
119                 LDAP_FREE( ld->ld_abandoned );
120                 ld->ld_abandoned = NULL;
121         }
122
123         if ( ld->ld_selectinfo != NULL ) {
124                 ldap_free_select_info( ld->ld_selectinfo );
125                 ld->ld_selectinfo = NULL;
126         }
127
128         if ( ld->ld_options.ldo_defludp != NULL ) {
129                 ldap_free_urllist( ld->ld_options.ldo_defludp );
130                 ld->ld_options.ldo_defludp = NULL;
131         }
132
133         if ( ld->ld_options.ldo_tm_api != NULL ) {
134                 LDAP_FREE( ld->ld_options.ldo_tm_api );
135                 ld->ld_options.ldo_tm_api = NULL;
136         }
137
138         if ( ld->ld_options.ldo_tm_net != NULL ) {
139                 LDAP_FREE( ld->ld_options.ldo_tm_net );
140                 ld->ld_options.ldo_tm_net = NULL;
141         }
142
143 #ifdef HAVE_CYRUS_SASL
144         if ( ld->ld_options.ldo_def_sasl_mech != NULL ) {
145                 LDAP_FREE( ld->ld_options.ldo_def_sasl_mech );
146                 ld->ld_options.ldo_def_sasl_mech = NULL;
147         }
148
149         if ( ld->ld_options.ldo_def_sasl_realm != NULL ) {
150                 LDAP_FREE( ld->ld_options.ldo_def_sasl_realm );
151                 ld->ld_options.ldo_def_sasl_realm = NULL;
152         }
153
154         if ( ld->ld_options.ldo_def_sasl_authcid != NULL ) {
155                 LDAP_FREE( ld->ld_options.ldo_def_sasl_authcid );
156                 ld->ld_options.ldo_def_sasl_authcid = NULL;
157         }
158
159         if ( ld->ld_options.ldo_def_sasl_authzid != NULL ) {
160                 LDAP_FREE( ld->ld_options.ldo_def_sasl_authzid );
161                 ld->ld_options.ldo_def_sasl_authzid = NULL;
162         }
163 #endif
164
165         ber_sockbuf_free( ld->ld_sb );   
166    
167         LDAP_FREE( (char *) ld );
168    
169         return( err );
170 }
171
172 int
173 ldap_unbind_s( LDAP *ld )
174 {
175         return( ldap_unbind_ext( ld, NULL, NULL ) );
176 }
177
178
179 int
180 ldap_send_unbind(
181         LDAP *ld,
182         Sockbuf *sb,
183         LDAPControl **sctrls,
184         LDAPControl **cctrls )
185 {
186         BerElement      *ber;
187
188 #ifdef NEW_LOGGING
189         LDAP_LOG ( OPERATION, ENTRY, "ldap_send_unbind\n", 0, 0, 0 );
190 #else
191         Debug( LDAP_DEBUG_TRACE, "ldap_send_unbind\n", 0, 0, 0 );
192 #endif
193
194 #ifdef LDAP_CONNECTIONLESS
195         if (LDAP_IS_UDP(ld))
196                 return LDAP_SUCCESS;
197 #endif
198         /* create a message to send */
199         if ( (ber = ldap_alloc_ber_with_options( ld )) == NULL ) {
200                 return( ld->ld_errno );
201         }
202
203         /* fill it in */
204         if ( ber_printf( ber, "{itn" /*}*/, ++ld->ld_msgid,
205             LDAP_REQ_UNBIND ) == -1 ) {
206                 ld->ld_errno = LDAP_ENCODING_ERROR;
207                 ber_free( ber, 1 );
208                 return( ld->ld_errno );
209         }
210
211         /* Put Server Controls */
212         if( ldap_int_put_controls( ld, sctrls, ber ) != LDAP_SUCCESS ) {
213                 ber_free( ber, 1 );
214                 return ld->ld_errno;
215         }
216
217         if ( ber_printf( ber, /*{*/ "N}", LDAP_REQ_UNBIND ) == -1 ) {
218                 ld->ld_errno = LDAP_ENCODING_ERROR;
219                 ber_free( ber, 1 );
220                 return( ld->ld_errno );
221         }
222
223         /* send the message */
224         if ( ber_flush( sb, ber, 1 ) == -1 ) {
225                 ld->ld_errno = LDAP_SERVER_DOWN;
226                 ber_free( ber, 1 );
227                 return( ld->ld_errno );
228         }
229
230         return( LDAP_SUCCESS );
231 }