]> git.sur5r.net Git - openldap/blob - servers/slapd/back-ldap/unbind.c
aa699342b6aa97f41f4dd4514d50bf38146d7316
[openldap] / servers / slapd / back-ldap / unbind.c
1 /* unbind.c - ldap backend unbind function */
2 /* $OpenLDAP$ */
3 /* This work is part of OpenLDAP Software <http://www.openldap.org/>.
4  *
5  * Copyright 1999-2005 The OpenLDAP Foundation.
6  * Portions Copyright 1999-2003 Howard Chu.
7  * Portions Copyright 2000-2003 Pierangelo Masarati.
8  * All rights reserved.
9  *
10  * Redistribution and use in source and binary forms, with or without
11  * modification, are permitted only as authorized by the OpenLDAP
12  * Public License.
13  *
14  * A copy of this license is available in the file LICENSE in the
15  * top-level directory of the distribution or, alternatively, at
16  * <http://www.OpenLDAP.org/license.html>.
17  */
18 /* ACKNOWLEDGEMENTS:
19  * This work was initially developed by the Howard Chu for inclusion
20  * in OpenLDAP Software and subsequently enhanced by Pierangelo
21  * Masarati.
22  */
23
24 #include "portable.h"
25
26 #include <stdio.h>
27
28 #include <ac/errno.h>
29 #include <ac/socket.h>
30 #include <ac/string.h>
31
32 #include "slap.h"
33 #include "back-ldap.h"
34
35 int
36 ldap_back_conn_destroy(
37                 Backend         *be,
38                 Connection      *conn
39 )
40 {
41         struct ldapinfo *li = (struct ldapinfo *) be->be_private;
42         struct ldapconn *lc = NULL, lc_curr;
43
44         Debug( LDAP_DEBUG_TRACE,
45                 "=>ldap_back_conn_destroy: fetching conn %ld\n",
46                 conn->c_connid, 0, 0 );
47
48         lc_curr.lc_conn = conn;
49         lc_curr.lc_local_ndn = conn->c_ndn;
50         
51 retry_lock:;
52         switch ( ldap_pvt_thread_mutex_trylock( &li->conn_mutex ) ) {
53         case LDAP_PVT_THREAD_EBUSY:
54         default:
55                 ldap_pvt_thread_yield();
56                 goto retry_lock;
57
58         case 0:
59                 break;
60         }
61
62         lc = avl_delete( &li->conntree, (caddr_t)&lc_curr, ldap_back_conn_cmp );
63         ldap_pvt_thread_mutex_unlock( &li->conn_mutex );
64
65         if ( lc ) {
66                 Debug( LDAP_DEBUG_TRACE,
67                         "=>ldap_back_conn_destroy: destroying conn %ld (refcnt=%u)\n",
68                         lc->lc_conn->c_connid, lc->lc_refcnt, 0 );
69
70                 assert( lc->lc_refcnt == 0 );
71
72                 /*
73                  * Needs a test because the handler may be corrupted,
74                  * and calling ldap_unbind on a corrupted header results
75                  * in a segmentation fault
76                  */
77                 ldap_back_conn_free( lc );
78         }
79
80         /* no response to unbind */
81
82         return 0;
83 }