]> git.sur5r.net Git - openldap/blob - libraries/libldap/unbind.c
More winsock changes from HEAD
[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         /* check client controls */
40         rc = ldap_int_client_controls( ld, cctrls );
41         if( rc != LDAP_SUCCESS ) return rc;
42
43         return ldap_ld_free( ld, 1, sctrls, cctrls );
44 }
45
46 int
47 ldap_unbind_ext_s(
48         LDAP *ld,
49         LDAPControl **sctrls,
50         LDAPControl **cctrls )
51 {
52         return ldap_unbind_ext( ld, sctrls, cctrls );
53 }
54
55 int
56 ldap_unbind( LDAP *ld )
57 {
58         Debug( LDAP_DEBUG_TRACE, "ldap_unbind\n", 0, 0, 0 );
59
60         return( ldap_unbind_ext( ld, NULL, NULL ) );
61 }
62
63
64 int
65 ldap_ld_free(
66         LDAP *ld,
67         int close,
68         LDAPControl **sctrls,
69         LDAPControl **cctrls )
70 {
71         LDAPMessage     *lm, *next;
72         int             err = LDAP_SUCCESS;
73
74         /* free LDAP structure and outstanding requests/responses */
75         while ( ld->ld_requests != NULL ) {
76                 ldap_free_request( ld, ld->ld_requests );
77         }
78
79                 /* free and unbind from all open connections */
80                 while ( ld->ld_conns != NULL ) {
81                         ldap_free_connection( ld, ld->ld_conns, 1, close );
82                 }
83
84         for ( lm = ld->ld_responses; lm != NULL; lm = next ) {
85                 next = lm->lm_next;
86                 ldap_msgfree( lm );
87         }
88
89 #ifndef LDAP_NOCACHE
90         if ( ld->ld_cache != NULL ) {
91                 ldap_destroy_cache( ld );
92                 ld->ld_cache = NULL;
93         }
94 #endif /* !LDAP_NOCACHE */
95
96         if ( ld->ld_error != NULL ) {
97                 LDAP_FREE( ld->ld_error );
98                 ld->ld_error = NULL;
99         }
100
101         if ( ld->ld_matched != NULL ) {
102                 LDAP_FREE( ld->ld_matched );
103                 ld->ld_matched = NULL;
104         }
105
106         if ( ld->ld_abandoned != NULL ) {
107                 LDAP_FREE( ld->ld_abandoned );
108                 ld->ld_abandoned = NULL;
109         }
110
111         if ( ld->ld_selectinfo != NULL ) {
112                 ldap_free_select_info( ld->ld_selectinfo );
113                 ld->ld_selectinfo = NULL;
114         }
115
116         if ( ld->ld_options.ldo_defludp != NULL ) {
117                 ldap_free_urllist( ld->ld_options.ldo_defludp );
118                 ld->ld_options.ldo_defludp = NULL;
119         }
120
121         if ( ld->ld_options.ldo_tm_api != NULL ) {
122                 LDAP_FREE( ld->ld_options.ldo_tm_api );
123                 ld->ld_options.ldo_tm_api = NULL;
124         }
125
126         if ( ld->ld_options.ldo_tm_net != NULL ) {
127                 LDAP_FREE( ld->ld_options.ldo_tm_net );
128                 ld->ld_options.ldo_tm_net = NULL;
129         }
130
131 #ifdef HAVE_CYRUS_SASL
132         if ( ld->ld_options.ldo_def_sasl_mech != NULL ) {
133                 LDAP_FREE( ld->ld_options.ldo_def_sasl_mech );
134                 ld->ld_options.ldo_def_sasl_mech = NULL;
135         }
136
137         if ( ld->ld_options.ldo_def_sasl_realm != NULL ) {
138                 LDAP_FREE( ld->ld_options.ldo_def_sasl_realm );
139                 ld->ld_options.ldo_def_sasl_realm = NULL;
140         }
141
142         if ( ld->ld_options.ldo_def_sasl_authcid != NULL ) {
143                 LDAP_FREE( ld->ld_options.ldo_def_sasl_authcid );
144                 ld->ld_options.ldo_def_sasl_authcid = NULL;
145         }
146
147         if ( ld->ld_options.ldo_def_sasl_authzid != NULL ) {
148                 LDAP_FREE( ld->ld_options.ldo_def_sasl_authzid );
149                 ld->ld_options.ldo_def_sasl_authzid = NULL;
150         }
151 #endif
152
153         ber_sockbuf_free( ld->ld_sb );   
154    
155         LDAP_FREE( (char *) ld );
156    
157         return( err );
158 }
159
160 int
161 ldap_unbind_s( LDAP *ld )
162 {
163         return( ldap_unbind_ext( ld, NULL, NULL ) );
164 }
165
166
167 int
168 ldap_send_unbind(
169         LDAP *ld,
170         Sockbuf *sb,
171         LDAPControl **sctrls,
172         LDAPControl **cctrls )
173 {
174         BerElement      *ber;
175
176         Debug( LDAP_DEBUG_TRACE, "ldap_send_unbind\n", 0, 0, 0 );
177
178         /* create a message to send */
179         if ( (ber = ldap_alloc_ber_with_options( ld )) == NULL ) {
180                 return( ld->ld_errno );
181         }
182
183         /* fill it in */
184         if ( ber_printf( ber, "{itn" /*}*/, ++ld->ld_msgid,
185             LDAP_REQ_UNBIND ) == -1 ) {
186                 ld->ld_errno = LDAP_ENCODING_ERROR;
187                 ber_free( ber, 1 );
188                 return( ld->ld_errno );
189         }
190
191         /* Put Server Controls */
192         if( ldap_int_put_controls( ld, sctrls, ber ) != LDAP_SUCCESS ) {
193                 ber_free( ber, 1 );
194                 return ld->ld_errno;
195         }
196
197         if ( ber_printf( ber, /*{*/ "N}", LDAP_REQ_UNBIND ) == -1 ) {
198                 ld->ld_errno = LDAP_ENCODING_ERROR;
199                 ber_free( ber, 1 );
200                 return( ld->ld_errno );
201         }
202
203         /* send the message */
204         if ( ber_flush( sb, ber, 1 ) == -1 ) {
205                 ld->ld_errno = LDAP_SERVER_DOWN;
206                 ber_free( ber, 1 );
207                 return( ld->ld_errno );
208         }
209
210         return( LDAP_SUCCESS );
211 }