1 #pragma ident "%Z%%M% %I% %E% SMI"
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
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
25 * Copyright (c) 1993 Regents of the University of Michigan.
26 * All rights reserved.
33 static char copyright
[] = "@(#) Copyright (c) 1993 Regents of the University of Michigan.\nAll rights reserved.\n";
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.
48 * ldap_simple_bind( ld, "cn=manager, o=university of michigan, c=us",
54 ldap_simple_bind( LDAP
*ld
, const char *dn
, const char *passwd
)
58 LDAPDebug( LDAP_DEBUG_TRACE
, "ldap_simple_bind\n", 0, 0, 0 );
60 if ( !NSLDAPI_VALID_LDAP_POINTER( ld
)) {
64 rc
= simple_bind_nolock( ld
, dn
, passwd
, 1 );
71 simple_bind_nolock( LDAP
*ld
, const char *dn
, const char *passwd
,
72 int unlock_permitted
)
78 * The bind request looks like this:
79 * BindRequest ::= SEQUENCE {
81 * name DistinguishedName, -- who
82 * authentication CHOICE {
83 * simple [0] OCTET STRING -- passwd
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
);
98 if ( ld
->ld_cache_on
&& ld
->ld_cache_bind
!= NULL
) {
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
,
107 LDAP_MUTEX_UNLOCK( ld
, LDAP_CACHE_LOCK
);
108 /* if ( unlock_permitted ) LDAP_MUTEX_LOCK( ld ); */
114 /* create a message to send */
115 if (( rc
= nsldapi_alloc_ber_with_options( ld
, &ber
))
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
);
128 if ( nsldapi_put_controls( ld
, NULL
, 1, ber
) != LDAP_SUCCESS
) {
133 /* send the message */
134 return( nsldapi_send_initial_request( ld
, msgid
, LDAP_REQ_BIND
,
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
146 * ldap_simple_bind_s( ld, "cn=manager, o=university of michigan, c=us",
151 ldap_simple_bind_s( LDAP
*ld
, const char *dn
, const char *passwd
)
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.
180 simple_bindifnot_s( LDAP
*ld
, const char *dn
, const char *passwd
)
186 LDAPDebug( LDAP_DEBUG_TRACE
, "simple_bindifnot_s\n", 0, 0, 0 );
188 if ( !NSLDAPI_VALID_LDAP_POINTER( ld
)) {
189 return( LDAP_PARAM_ERROR
);
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
)) {
202 LDAP_SET_LDERRNO( ld
, rc
, NULL
, NULL
);
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
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
,
253 rc
= LDAP_GET_LDERRNO( ld
, NULL
, NULL
);
254 goto unlock_and_return
;
257 rc
= ldap_result2error( ld
, result
, 1 );
260 LDAP_MUTEX_UNLOCK( ld
, LDAP_RESULT_LOCK
);