]> git.sur5r.net Git - openldap/blob - libraries/libldap/unbind.c
Sync with HEAD
[openldap] / libraries / libldap / unbind.c
1 /* $OpenLDAP$ */
2 /* This work is part of OpenLDAP Software <http://www.openldap.org/>.
3  *
4  * Copyright 1998-2005 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 #ifdef LDAP_R_COMPILE
110         ldap_pvt_thread_mutex_unlock( &ld->ld_res_mutex );
111 #endif
112
113         if ( ld->ld_error != NULL ) {
114                 LDAP_FREE( ld->ld_error );
115                 ld->ld_error = NULL;
116         }
117
118         if ( ld->ld_matched != NULL ) {
119                 LDAP_FREE( ld->ld_matched );
120                 ld->ld_matched = NULL;
121         }
122
123         if( ld->ld_referrals != NULL) {
124                 LDAP_VFREE(ld->ld_referrals);
125                 ld->ld_referrals = NULL;
126         }  
127     
128         if ( ld->ld_abandoned != NULL ) {
129                 LDAP_FREE( ld->ld_abandoned );
130                 ld->ld_abandoned = 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         if ( ld->ld_options.ldo_sctrls != NULL ) {
183                 ldap_controls_free( ld->ld_options.ldo_sctrls );
184                 ld->ld_options.ldo_sctrls = NULL;
185         }
186
187         if ( ld->ld_options.ldo_cctrls != NULL ) {
188                 ldap_controls_free( ld->ld_options.ldo_cctrls );
189                 ld->ld_options.ldo_cctrls = NULL;
190         }
191
192         ber_sockbuf_free( ld->ld_sb );   
193    
194 #ifdef LDAP_R_COMPILE
195         ldap_pvt_thread_mutex_destroy( &ld->ld_req_mutex );
196         ldap_pvt_thread_mutex_destroy( &ld->ld_res_mutex );
197 #endif
198         LDAP_FREE( (char *) ld );
199    
200         return( err );
201 }
202
203 int
204 ldap_unbind_s( LDAP *ld )
205 {
206         return( ldap_unbind_ext( ld, NULL, NULL ) );
207 }
208
209 /* FIXME: this function is called only by ldap_free_connection(),
210  * which, most of the times, is called with ld_req_mutex locked */
211 int
212 ldap_send_unbind(
213         LDAP *ld,
214         Sockbuf *sb,
215         LDAPControl **sctrls,
216         LDAPControl **cctrls )
217 {
218         BerElement      *ber;
219         ber_int_t       id;
220
221         Debug( LDAP_DEBUG_TRACE, "ldap_send_unbind\n", 0, 0, 0 );
222
223 #ifdef LDAP_CONNECTIONLESS
224         if (LDAP_IS_UDP(ld))
225                 return LDAP_SUCCESS;
226 #endif
227         /* create a message to send */
228         if ( (ber = ldap_alloc_ber_with_options( ld )) == NULL ) {
229                 return( ld->ld_errno );
230         }
231
232         id = ++(ld)->ld_msgid;
233
234         /* fill it in */
235         if ( ber_printf( ber, "{itn" /*}*/, id,
236             LDAP_REQ_UNBIND ) == -1 ) {
237                 ld->ld_errno = LDAP_ENCODING_ERROR;
238                 ber_free( ber, 1 );
239                 return( ld->ld_errno );
240         }
241
242         /* Put Server Controls */
243         if( ldap_int_put_controls( ld, sctrls, ber ) != LDAP_SUCCESS ) {
244                 ber_free( ber, 1 );
245                 return ld->ld_errno;
246         }
247
248         if ( ber_printf( ber, /*{*/ "N}", LDAP_REQ_UNBIND ) == -1 ) {
249                 ld->ld_errno = LDAP_ENCODING_ERROR;
250                 ber_free( ber, 1 );
251                 return( ld->ld_errno );
252         }
253
254         ld->ld_errno = LDAP_SUCCESS;
255         /* send the message */
256         if ( ber_flush( sb, ber, 1 ) == -1 ) {
257                 ld->ld_errno = LDAP_SERVER_DOWN;
258                 ber_free( ber, 1 );
259         }
260
261         return( ld->ld_errno );
262 }