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.
34 static char copyright
[] = "@(#) Copyright (c) 1993 Regents of the University of Michigan.\nAll rights reserved.\n";
40 static int simple_bind_nolock( LDAP
*ld
, const char *dn
, const char *passwd
,
41 int unlock_permitted
);
42 static int simple_bindifnot_s( LDAP
*ld
, const char *dn
, const char *passwd
);
45 * ldap_simple_bind - bind to the ldap server. The dn and
46 * password of the entry to which to bind are supplied. The message id
47 * of the request initiated is returned.
50 * ldap_simple_bind( ld, "cn=manager, o=university of michigan, c=us",
56 ldap_simple_bind( LDAP
*ld
, const char *dn
, const char *passwd
)
60 LDAPDebug( LDAP_DEBUG_TRACE
, "ldap_simple_bind\n", 0, 0, 0 );
62 if ( !NSLDAPI_VALID_LDAP_POINTER( ld
)) {
66 rc
= simple_bind_nolock( ld
, dn
, passwd
, 1 );
73 simple_bind_nolock( LDAP
*ld
, const char *dn
, const char *passwd
,
74 int unlock_permitted
)
80 * The bind request looks like this:
81 * BindRequest ::= SEQUENCE {
83 * name DistinguishedName, -- who
84 * authentication CHOICE {
85 * simple [0] OCTET STRING -- passwd
88 * all wrapped up in an LDAPMessage sequence.
91 LDAP_MUTEX_LOCK( ld
, LDAP_MSGID_LOCK
);
92 msgid
= ++ld
->ld_msgid
;
93 LDAP_MUTEX_UNLOCK( ld
, LDAP_MSGID_LOCK
);
100 if ( ld
->ld_cache_on
&& ld
->ld_cache_bind
!= NULL
) {
103 bv
.bv_val
= (char *)passwd
;
104 bv
.bv_len
= strlen( passwd
);
105 /* if ( unlock_permitted ) LDAP_MUTEX_UNLOCK( ld ); */
106 LDAP_MUTEX_LOCK( ld
, LDAP_CACHE_LOCK
);
107 rc
= (ld
->ld_cache_bind
)( ld
, msgid
, LDAP_REQ_BIND
, dn
, &bv
,
109 LDAP_MUTEX_UNLOCK( ld
, LDAP_CACHE_LOCK
);
110 /* if ( unlock_permitted ) LDAP_MUTEX_LOCK( ld ); */
116 /* create a message to send */
117 if (( rc
= nsldapi_alloc_ber_with_options( ld
, &ber
))
123 if ( ber_printf( ber
, "{it{ists}", msgid
, LDAP_REQ_BIND
,
124 NSLDAPI_LDAP_VERSION( ld
), dn
, LDAP_AUTH_SIMPLE
, passwd
) == -1 ) {
125 LDAP_SET_LDERRNO( ld
, LDAP_ENCODING_ERROR
, NULL
, NULL
);
130 if ( nsldapi_put_controls( ld
, NULL
, 1, ber
) != LDAP_SUCCESS
) {
135 /* send the message */
136 return( nsldapi_send_initial_request( ld
, msgid
, LDAP_REQ_BIND
,
142 * ldap_simple_bind - bind to the ldap server using simple
143 * authentication. The dn and password of the entry to which to bind are
144 * supplied. LDAP_SUCCESS is returned upon success, the ldap error code
148 * ldap_simple_bind_s( ld, "cn=manager, o=university of michigan, c=us",
153 ldap_simple_bind_s( LDAP
*ld
, const char *dn
, const char *passwd
)
158 LDAPDebug( LDAP_DEBUG_TRACE
, "ldap_simple_bind_s\n", 0, 0, 0 );
160 if ( NSLDAPI_VALID_LDAP_POINTER( ld
) &&
161 ( ld
->ld_options
& LDAP_BITOPT_RECONNECT
) != 0 ) {
162 return( simple_bindifnot_s( ld
, dn
, passwd
));
165 if ( (msgid
= ldap_simple_bind( ld
, dn
, passwd
)) == -1 )
166 return( LDAP_GET_LDERRNO( ld
, NULL
, NULL
) );
168 if ( ldap_result( ld
, msgid
, 1, (struct timeval
*) 0, &result
) == -1 )
169 return( LDAP_GET_LDERRNO( ld
, NULL
, NULL
) );
171 return( ldap_result2error( ld
, result
, 1 ) );
176 * simple_bindifnot_s() is like ldap_simple_bind_s() except that it only does
177 * a bind if the default connection is not currently bound.
178 * If a successful bind using the same DN has already taken place we just
179 * return LDAP_SUCCESS without conversing with the server at all.
182 simple_bindifnot_s( LDAP
*ld
, const char *dn
, const char *passwd
)
188 LDAPDebug( LDAP_DEBUG_TRACE
, "simple_bindifnot_s\n", 0, 0, 0 );
190 if ( !NSLDAPI_VALID_LDAP_POINTER( ld
)) {
191 return( LDAP_PARAM_ERROR
);
195 dn
= ""; /* to make comparisons simpler */
199 * if we are already bound using the same DN, just return LDAP_SUCCESS.
201 if ( NULL
!= ( binddn
= nsldapi_get_binddn( ld
))
202 && 0 == strcmp( dn
, binddn
)) {
204 LDAP_SET_LDERRNO( ld
, rc
, NULL
, NULL
);
209 * if the default connection has been lost and is now marked dead,
210 * dispose of the default connection so it will get re-established.
212 * if not, clear the bind DN and status to ensure that we don't
213 * report the wrong bind DN to a different thread while waiting
214 * for our bind result to return from the server.
216 LDAP_MUTEX_LOCK( ld
, LDAP_CONN_LOCK
);
217 if ( NULL
!= ld
->ld_defconn
) {
218 if ( LDAP_CONNST_DEAD
== ld
->ld_defconn
->lconn_status
) {
219 nsldapi_free_connection( ld
, ld
->ld_defconn
, NULL
, NULL
, 1, 0 );
220 ld
->ld_defconn
= NULL
;
221 } else if ( ld
->ld_defconn
->lconn_binddn
!= NULL
) {
222 NSLDAPI_FREE( ld
->ld_defconn
->lconn_binddn
);
223 ld
->ld_defconn
->lconn_binddn
= NULL
;
224 ld
->ld_defconn
->lconn_bound
= 0;
227 LDAP_MUTEX_UNLOCK( ld
, LDAP_CONN_LOCK
);
230 * finally, bind (this will open a new connection if necessary)
232 * do everything under the protection of the result lock to
233 * ensure that only one thread will be in this code at a time.
234 * XXXmcs: we should use a condition variable instead?
236 LDAP_MUTEX_LOCK( ld
, LDAP_RESULT_LOCK
);
237 if ( (msgid
= simple_bind_nolock( ld
, dn
, passwd
, 0 )) == -1 ) {
238 rc
= LDAP_GET_LDERRNO( ld
, NULL
, NULL
);
239 goto unlock_and_return
;
243 * Note that at this point the bind request is on its way to the
244 * server and at any time now we will either be bound as the new
245 * DN (if the bind succeeded) or we will be bound as anonymous (if
250 * Wait for the bind result. Code inside result.c:read1msg()
251 * takes care of setting the connection's bind DN and status.
253 if ( nsldapi_result_nolock( ld
, msgid
, 1, 0, (struct timeval
*) 0,
255 rc
= LDAP_GET_LDERRNO( ld
, NULL
, NULL
);
256 goto unlock_and_return
;
259 rc
= ldap_result2error( ld
, result
, 1 );
262 LDAP_MUTEX_UNLOCK( ld
, LDAP_RESULT_LOCK
);