]> git.sur5r.net Git - openldap/blob - libraries/libldap/unbind.c
more cleanup
[openldap] / libraries / libldap / unbind.c
1 /* $OpenLDAP$ */
2 /* This work is part of OpenLDAP Software <http://www.openldap.org/>.
3  *
4  * Copyright 1998-2006 The OpenLDAP Foundation.
5  * All rights reserved.
6  *
7  * Redistribution and use in source and binary forms, with or without
8  * modification, are permitted only as authorized by the OpenLDAP
9  * Public License.
10  *
11  * A copy of this license is available in the file LICENSE in the
12  * top-level directory of the distribution or, alternatively, at
13  * <http://www.OpenLDAP.org/license.html>.
14  */
15 /* Portions Copyright (c) 1990 Regents of the University of Michigan.
16  * All rights reserved.
17  */
18 /* Portions Copyright (C) The Internet Society (1997)
19  * ASN.1 fragments are from RFC 2251; see RFC for full legal notices.
20  */
21
22 /* An Unbind Request looks like this:
23  *
24  *      UnbindRequest ::= NULL
25  *
26  * and has no response.
27  */
28
29 #include "portable.h"
30
31 #include <stdio.h>
32 #include <ac/stdlib.h>
33
34 #include <ac/socket.h>
35 #include <ac/string.h>
36 #include <ac/time.h>
37
38 #include "ldap-int.h"
39
40 int
41 ldap_unbind_ext(
42         LDAP *ld,
43         LDAPControl **sctrls,
44         LDAPControl **cctrls )
45 {
46         int rc;
47
48         assert( ld != NULL );
49         assert( LDAP_VALID( ld ) );
50
51         /* check client controls */
52         rc = ldap_int_client_controls( ld, cctrls );
53         if( rc != LDAP_SUCCESS ) return rc;
54
55         return ldap_ld_free( ld, 1, sctrls, cctrls );
56 }
57
58 int
59 ldap_unbind_ext_s(
60         LDAP *ld,
61         LDAPControl **sctrls,
62         LDAPControl **cctrls )
63 {
64         return ldap_unbind_ext( ld, sctrls, cctrls );
65 }
66
67 int
68 ldap_unbind( LDAP *ld )
69 {
70         Debug( LDAP_DEBUG_TRACE, "ldap_unbind\n", 0, 0, 0 );
71
72         return( ldap_unbind_ext( ld, NULL, NULL ) );
73 }
74
75
76 int
77 ldap_ld_free(
78         LDAP *ld,
79         int close,
80         LDAPControl **sctrls,
81         LDAPControl **cctrls )
82 {
83         LDAPMessage     *lm, *next;
84         int             err = LDAP_SUCCESS;
85
86         /* free LDAP structure and outstanding requests/responses */
87 #ifdef LDAP_R_COMPILE
88         ldap_pvt_thread_mutex_lock( &ld->ld_req_mutex );
89 #endif
90         while ( ld->ld_requests != NULL ) {
91                 ldap_free_request( ld, ld->ld_requests );
92         }
93
94         /* free and unbind from all open connections */
95         while ( ld->ld_conns != NULL ) {
96                 ldap_free_connection( ld, ld->ld_conns, 1, close );
97         }
98 #ifdef LDAP_R_COMPILE
99         ldap_pvt_thread_mutex_unlock( &ld->ld_req_mutex );
100 #endif
101
102 #ifdef LDAP_R_COMPILE
103         ldap_pvt_thread_mutex_lock( &ld->ld_res_mutex );
104 #endif
105         for ( lm = ld->ld_responses; lm != NULL; lm = next ) {
106                 next = lm->lm_next;
107                 ldap_msgfree( lm );
108         }
109     
110         if ( ld->ld_abandoned != NULL ) {
111                 LDAP_FREE( ld->ld_abandoned );
112                 ld->ld_abandoned = NULL;
113         }
114 #ifdef LDAP_R_COMPILE
115         ldap_pvt_thread_mutex_unlock( &ld->ld_res_mutex );
116 #endif
117
118         if ( ld->ld_error != NULL ) {
119                 LDAP_FREE( ld->ld_error );
120                 ld->ld_error = NULL;
121         }
122
123         if ( ld->ld_matched != NULL ) {
124                 LDAP_FREE( ld->ld_matched );
125                 ld->ld_matched = NULL;
126         }
127
128         if( ld->ld_referrals != NULL) {
129                 LDAP_VFREE(ld->ld_referrals);
130                 ld->ld_referrals = NULL;
131         }  
132     
133         if ( ld->ld_selectinfo != NULL ) {
134                 ldap_free_select_info( ld->ld_selectinfo );
135                 ld->ld_selectinfo = NULL;
136         }
137
138         if ( ld->ld_options.ldo_defludp != NULL ) {
139                 ldap_free_urllist( ld->ld_options.ldo_defludp );
140                 ld->ld_options.ldo_defludp = NULL;
141         }
142
143 #ifdef LDAP_CONNECTIONLESS
144         if ( ld->ld_options.ldo_peer != NULL ) {
145                 LDAP_FREE( ld->ld_options.ldo_peer );
146                 ld->ld_options.ldo_peer = NULL;
147         }
148 #endif
149
150         if ( ld->ld_options.ldo_tm_api != NULL ) {
151                 LDAP_FREE( ld->ld_options.ldo_tm_api );
152                 ld->ld_options.ldo_tm_api = NULL;
153         }
154
155         if ( ld->ld_options.ldo_tm_net != NULL ) {
156                 LDAP_FREE( ld->ld_options.ldo_tm_net );
157                 ld->ld_options.ldo_tm_net = NULL;
158         }
159
160 #ifdef HAVE_CYRUS_SASL
161         if ( ld->ld_options.ldo_def_sasl_mech != NULL ) {
162                 LDAP_FREE( ld->ld_options.ldo_def_sasl_mech );
163                 ld->ld_options.ldo_def_sasl_mech = NULL;
164         }
165
166         if ( ld->ld_options.ldo_def_sasl_realm != NULL ) {
167                 LDAP_FREE( ld->ld_options.ldo_def_sasl_realm );
168                 ld->ld_options.ldo_def_sasl_realm = NULL;
169         }
170
171         if ( ld->ld_options.ldo_def_sasl_authcid != NULL ) {
172                 LDAP_FREE( ld->ld_options.ldo_def_sasl_authcid );
173                 ld->ld_options.ldo_def_sasl_authcid = NULL;
174         }
175
176         if ( ld->ld_options.ldo_def_sasl_authzid != NULL ) {
177                 LDAP_FREE( ld->ld_options.ldo_def_sasl_authzid );
178                 ld->ld_options.ldo_def_sasl_authzid = NULL;
179         }
180 #endif
181
182 #ifdef HAVE_TLS
183         ldap_int_tls_destroy( &ld->ld_options );
184 #endif
185
186         if ( ld->ld_options.ldo_sctrls != NULL ) {
187                 ldap_controls_free( ld->ld_options.ldo_sctrls );
188                 ld->ld_options.ldo_sctrls = NULL;
189         }
190
191         if ( ld->ld_options.ldo_cctrls != NULL ) {
192                 ldap_controls_free( ld->ld_options.ldo_cctrls );
193                 ld->ld_options.ldo_cctrls = NULL;
194         }
195
196         ber_sockbuf_free( ld->ld_sb );   
197    
198 #ifdef LDAP_R_COMPILE
199         ldap_pvt_thread_mutex_destroy( &ld->ld_req_mutex );
200         ldap_pvt_thread_mutex_destroy( &ld->ld_res_mutex );
201         ldap_pvt_thread_mutex_destroy( &ld->ld_conn_mutex );
202 #endif
203 #ifndef NDEBUG
204         LDAP_TRASH(ld);
205 #endif
206         LDAP_FREE( (char *) ld );
207    
208         return( err );
209 }
210
211 int
212 ldap_unbind_s( LDAP *ld )
213 {
214         return( ldap_unbind_ext( ld, NULL, NULL ) );
215 }
216
217 /* FIXME: this function is called only by ldap_free_connection(),
218  * which, most of the times, is called with ld_req_mutex locked */
219 int
220 ldap_send_unbind(
221         LDAP *ld,
222         Sockbuf *sb,
223         LDAPControl **sctrls,
224         LDAPControl **cctrls )
225 {
226         BerElement      *ber;
227         ber_int_t       id;
228
229         Debug( LDAP_DEBUG_TRACE, "ldap_send_unbind\n", 0, 0, 0 );
230
231 #ifdef LDAP_CONNECTIONLESS
232         if (LDAP_IS_UDP(ld))
233                 return LDAP_SUCCESS;
234 #endif
235         /* create a message to send */
236         if ( (ber = ldap_alloc_ber_with_options( ld )) == NULL ) {
237                 return( ld->ld_errno );
238         }
239
240         id = ++(ld)->ld_msgid;
241
242         /* fill it in */
243         if ( ber_printf( ber, "{itn" /*}*/, id,
244             LDAP_REQ_UNBIND ) == -1 ) {
245                 ld->ld_errno = LDAP_ENCODING_ERROR;
246                 ber_free( ber, 1 );
247                 return( ld->ld_errno );
248         }
249
250         /* Put Server Controls */
251         if( ldap_int_put_controls( ld, sctrls, ber ) != LDAP_SUCCESS ) {
252                 ber_free( ber, 1 );
253                 return ld->ld_errno;
254         }
255
256         if ( ber_printf( ber, /*{*/ "N}", LDAP_REQ_UNBIND ) == -1 ) {
257                 ld->ld_errno = LDAP_ENCODING_ERROR;
258                 ber_free( ber, 1 );
259                 return( ld->ld_errno );
260         }
261
262         ld->ld_errno = LDAP_SUCCESS;
263         /* send the message */
264         if ( ber_flush( sb, ber, 1 ) == -1 ) {
265                 ld->ld_errno = LDAP_SERVER_DOWN;
266                 ber_free( ber, 1 );
267         }
268
269         return( ld->ld_errno );
270 }