dmake: do not set MAKEFLAGS=k
[unleashed/tickless.git] / usr / src / lib / libldap5 / sources / ldap / common / sbind.c
blob735ebdaaaa9e68aab46678eaf41d35da6f7e094f
1 #pragma ident "%Z%%M% %I% %E% SMI"
3 /*
4 * The contents of this file are subject to the Netscape Public
5 * License Version 1.1 (the "License"); you may not use this file
6 * except in compliance with the License. You may obtain a copy of
7 * the License at http://www.mozilla.org/NPL/
9 * Software distributed under the License is distributed on an "AS
10 * IS" basis, WITHOUT WARRANTY OF ANY KIND, either express or
11 * implied. See the License for the specific language governing
12 * rights and limitations under the License.
14 * The Original Code is Mozilla Communicator client code, released
15 * March 31, 1998.
17 * The Initial Developer of the Original Code is Netscape
18 * Communications Corporation. Portions created by Netscape are
19 * Copyright (C) 1998-1999 Netscape Communications Corporation. All
20 * Rights Reserved.
22 * Contributor(s):
25 * Copyright (c) 1993 Regents of the University of Michigan.
26 * All rights reserved.
29 * sbind.c
32 #if 0
33 static char copyright[] = "@(#) Copyright (c) 1993 Regents of the University of Michigan.\nAll rights reserved.\n";
34 #endif
36 #include "ldap-int.h"
38 static int simple_bind_nolock( LDAP *ld, const char *dn, const char *passwd,
39 int unlock_permitted );
40 static int simple_bindifnot_s( LDAP *ld, const char *dn, const char *passwd );
43 * ldap_simple_bind - bind to the ldap server. The dn and
44 * password of the entry to which to bind are supplied. The message id
45 * of the request initiated is returned.
47 * Example:
48 * ldap_simple_bind( ld, "cn=manager, o=university of michigan, c=us",
49 * "secret" )
52 int
53 LDAP_CALL
54 ldap_simple_bind( LDAP *ld, const char *dn, const char *passwd )
56 int rc;
58 LDAPDebug( LDAP_DEBUG_TRACE, "ldap_simple_bind\n", 0, 0, 0 );
60 if ( !NSLDAPI_VALID_LDAP_POINTER( ld )) {
61 return( -1 );
64 rc = simple_bind_nolock( ld, dn, passwd, 1 );
66 return( rc );
70 static int
71 simple_bind_nolock( LDAP *ld, const char *dn, const char *passwd,
72 int unlock_permitted )
74 BerElement *ber;
75 int rc, msgid;
78 * The bind request looks like this:
79 * BindRequest ::= SEQUENCE {
80 * version INTEGER,
81 * name DistinguishedName, -- who
82 * authentication CHOICE {
83 * simple [0] OCTET STRING -- passwd
84 * }
85 * }
86 * all wrapped up in an LDAPMessage sequence.
89 LDAP_MUTEX_LOCK( ld, LDAP_MSGID_LOCK );
90 msgid = ++ld->ld_msgid;
91 LDAP_MUTEX_UNLOCK( ld, LDAP_MSGID_LOCK );
93 if ( dn == NULL )
94 dn = "";
95 if ( passwd == NULL )
96 passwd = "";
98 if ( ld->ld_cache_on && ld->ld_cache_bind != NULL ) {
99 struct berval bv;
101 bv.bv_val = (char *)passwd;
102 bv.bv_len = strlen( passwd );
103 /* if ( unlock_permitted ) LDAP_MUTEX_UNLOCK( ld ); */
104 LDAP_MUTEX_LOCK( ld, LDAP_CACHE_LOCK );
105 rc = (ld->ld_cache_bind)( ld, msgid, LDAP_REQ_BIND, dn, &bv,
106 LDAP_AUTH_SIMPLE );
107 LDAP_MUTEX_UNLOCK( ld, LDAP_CACHE_LOCK );
108 /* if ( unlock_permitted ) LDAP_MUTEX_LOCK( ld ); */
109 if ( rc != 0 ) {
110 return( rc );
114 /* create a message to send */
115 if (( rc = nsldapi_alloc_ber_with_options( ld, &ber ))
116 != LDAP_SUCCESS ) {
117 return( -1 );
120 /* fill it in */
121 if ( ber_printf( ber, "{it{ists}", msgid, LDAP_REQ_BIND,
122 NSLDAPI_LDAP_VERSION( ld ), dn, LDAP_AUTH_SIMPLE, passwd ) == -1 ) {
123 LDAP_SET_LDERRNO( ld, LDAP_ENCODING_ERROR, NULL, NULL );
124 ber_free( ber, 1 );
125 return( -1 );
128 if ( nsldapi_put_controls( ld, NULL, 1, ber ) != LDAP_SUCCESS ) {
129 ber_free( ber, 1 );
130 return( -1 );
133 /* send the message */
134 return( nsldapi_send_initial_request( ld, msgid, LDAP_REQ_BIND,
135 (char *)dn, ber ));
140 * ldap_simple_bind - bind to the ldap server using simple
141 * authentication. The dn and password of the entry to which to bind are
142 * supplied. LDAP_SUCCESS is returned upon success, the ldap error code
143 * otherwise.
145 * Example:
146 * ldap_simple_bind_s( ld, "cn=manager, o=university of michigan, c=us",
147 * "secret" )
150 LDAP_CALL
151 ldap_simple_bind_s( LDAP *ld, const char *dn, const char *passwd )
153 int msgid;
154 LDAPMessage *result;
156 LDAPDebug( LDAP_DEBUG_TRACE, "ldap_simple_bind_s\n", 0, 0, 0 );
158 if ( NSLDAPI_VALID_LDAP_POINTER( ld ) &&
159 ( ld->ld_options & LDAP_BITOPT_RECONNECT ) != 0 ) {
160 return( simple_bindifnot_s( ld, dn, passwd ));
163 if ( (msgid = ldap_simple_bind( ld, dn, passwd )) == -1 )
164 return( LDAP_GET_LDERRNO( ld, NULL, NULL ) );
166 if ( ldap_result( ld, msgid, 1, NULL, &result ) == -1 )
167 return( LDAP_GET_LDERRNO( ld, NULL, NULL ) );
169 return( ldap_result2error( ld, result, 1 ) );
174 * simple_bindifnot_s() is like ldap_simple_bind_s() except that it only does
175 * a bind if the default connection is not currently bound.
176 * If a successful bind using the same DN has already taken place we just
177 * return LDAP_SUCCESS without conversing with the server at all.
179 static int
180 simple_bindifnot_s( LDAP *ld, const char *dn, const char *passwd )
182 int msgid, rc;
183 LDAPMessage *result;
184 char *binddn;
186 LDAPDebug( LDAP_DEBUG_TRACE, "simple_bindifnot_s\n", 0, 0, 0 );
188 if ( !NSLDAPI_VALID_LDAP_POINTER( ld )) {
189 return( LDAP_PARAM_ERROR );
192 if ( dn == NULL ) {
193 dn = ""; /* to make comparisons simpler */
197 * if we are already bound using the same DN, just return LDAP_SUCCESS.
199 if ( NULL != ( binddn = nsldapi_get_binddn( ld ))
200 && 0 == strcmp( dn, binddn )) {
201 rc = LDAP_SUCCESS;
202 LDAP_SET_LDERRNO( ld, rc, NULL, NULL );
203 return rc;
207 * if the default connection has been lost and is now marked dead,
208 * dispose of the default connection so it will get re-established.
210 * if not, clear the bind DN and status to ensure that we don't
211 * report the wrong bind DN to a different thread while waiting
212 * for our bind result to return from the server.
214 LDAP_MUTEX_LOCK( ld, LDAP_CONN_LOCK );
215 if ( NULL != ld->ld_defconn ) {
216 if ( LDAP_CONNST_DEAD == ld->ld_defconn->lconn_status ) {
217 nsldapi_free_connection( ld, ld->ld_defconn, NULL, NULL, 1, 0 );
218 ld->ld_defconn = NULL;
219 } else if ( ld->ld_defconn->lconn_binddn != NULL ) {
220 NSLDAPI_FREE( ld->ld_defconn->lconn_binddn );
221 ld->ld_defconn->lconn_binddn = NULL;
222 ld->ld_defconn->lconn_bound = 0;
225 LDAP_MUTEX_UNLOCK( ld, LDAP_CONN_LOCK );
228 * finally, bind (this will open a new connection if necessary)
230 * do everything under the protection of the result lock to
231 * ensure that only one thread will be in this code at a time.
232 * XXXmcs: we should use a condition variable instead?
234 LDAP_MUTEX_LOCK( ld, LDAP_RESULT_LOCK );
235 if ( (msgid = simple_bind_nolock( ld, dn, passwd, 0 )) == -1 ) {
236 rc = LDAP_GET_LDERRNO( ld, NULL, NULL );
237 goto unlock_and_return;
241 * Note that at this point the bind request is on its way to the
242 * server and at any time now we will either be bound as the new
243 * DN (if the bind succeeded) or we will be bound as anonymous (if
244 * the bind failed).
248 * Wait for the bind result. Code inside result.c:read1msg()
249 * takes care of setting the connection's bind DN and status.
251 if ( nsldapi_result_nolock( ld, msgid, 1, 0, NULL,
252 &result ) == -1 ) {
253 rc = LDAP_GET_LDERRNO( ld, NULL, NULL );
254 goto unlock_and_return;
257 rc = ldap_result2error( ld, result, 1 );
259 unlock_and_return:
260 LDAP_MUTEX_UNLOCK( ld, LDAP_RESULT_LOCK );
261 return( rc );