]> git.sur5r.net Git - openldap/blob - servers/slapd/back-bdb/bind.c
e945716ee3fcc043c992c4e94a2297ba80d67b8f
[openldap] / servers / slapd / back-bdb / bind.c
1 /* bind.c - bdb backend bind routine */
2 /* $OpenLDAP$ */
3 /* This work is part of OpenLDAP Software <http://www.openldap.org/>.
4  *
5  * Copyright 2000-2017 The OpenLDAP Foundation.
6  * All rights reserved.
7  *
8  * Redistribution and use in source and binary forms, with or without
9  * modification, are permitted only as authorized by the OpenLDAP
10  * Public License.
11  *
12  * A copy of this license is available in the file LICENSE in the
13  * top-level directory of the distribution or, alternatively, at
14  * <http://www.OpenLDAP.org/license.html>.
15  */
16
17 #include "portable.h"
18
19 #include <stdio.h>
20 #include <ac/string.h>
21 #include <ac/unistd.h>
22
23 #include "back-bdb.h"
24
25 int
26 bdb_bind( Operation *op, SlapReply *rs )
27 {
28         struct bdb_info *bdb = (struct bdb_info *) op->o_bd->be_private;
29         Entry           *e;
30         Attribute       *a;
31         EntryInfo       *ei;
32
33         AttributeDescription *password = slap_schema.si_ad_userPassword;
34
35         DB_TXN          *rtxn;
36         DB_LOCK         lock;
37
38         Debug( LDAP_DEBUG_ARGS,
39                 "==> " LDAP_XSTRING(bdb_bind) ": dn: %s\n",
40                 op->o_req_dn.bv_val, 0, 0);
41
42         /* allow noauth binds */
43         switch ( be_rootdn_bind( op, NULL ) ) {
44         case LDAP_SUCCESS:
45                 /* frontend will send result */
46                 return rs->sr_err = LDAP_SUCCESS;
47
48         default:
49                 /* give the database a chance */
50                 /* NOTE: this behavior departs from that of other backends,
51                  * since the others, in case of password checking failure
52                  * do not give the database a chance.  If an entry with
53                  * rootdn's name does not exist in the database the result
54                  * will be the same.  See ITS#4962 for discussion. */
55                 break;
56         }
57
58         rs->sr_err = bdb_reader_get(op, bdb->bi_dbenv, &rtxn);
59         switch(rs->sr_err) {
60         case 0:
61                 break;
62         default:
63                 rs->sr_text = "internal error";
64                 send_ldap_result( op, rs );
65                 return rs->sr_err;
66         }
67
68 dn2entry_retry:
69         /* get entry with reader lock */
70         rs->sr_err = bdb_dn2entry( op, rtxn, &op->o_req_ndn, &ei, 1,
71                 &lock );
72
73         switch(rs->sr_err) {
74         case DB_NOTFOUND:
75         case 0:
76                 break;
77         case LDAP_BUSY:
78                 send_ldap_error( op, rs, LDAP_BUSY, "ldap_server_busy" );
79                 return LDAP_BUSY;
80         case DB_LOCK_DEADLOCK:
81         case DB_LOCK_NOTGRANTED:
82                 goto dn2entry_retry;
83         default:
84                 send_ldap_error( op, rs, LDAP_OTHER, "internal error" );
85                 return rs->sr_err;
86         }
87
88         e = ei->bei_e;
89         if ( rs->sr_err == DB_NOTFOUND ) {
90                 if( e != NULL ) {
91                         bdb_cache_return_entry_r( bdb, e, &lock );
92                         e = NULL;
93                 }
94
95                 rs->sr_err = LDAP_INVALID_CREDENTIALS;
96                 send_ldap_result( op, rs );
97
98                 return rs->sr_err;
99         }
100
101         ber_dupbv( &op->oq_bind.rb_edn, &e->e_name );
102
103         /* check for deleted */
104         if ( is_entry_subentry( e ) ) {
105                 /* entry is an subentry, don't allow bind */
106                 Debug( LDAP_DEBUG_TRACE, "entry is subentry\n", 0,
107                         0, 0 );
108                 rs->sr_err = LDAP_INVALID_CREDENTIALS;
109                 goto done;
110         }
111
112         if ( is_entry_alias( e ) ) {
113                 /* entry is an alias, don't allow bind */
114                 Debug( LDAP_DEBUG_TRACE, "entry is alias\n", 0, 0, 0 );
115                 rs->sr_err = LDAP_INVALID_CREDENTIALS;
116                 goto done;
117         }
118
119         if ( is_entry_referral( e ) ) {
120                 Debug( LDAP_DEBUG_TRACE, "entry is referral\n", 0,
121                         0, 0 );
122                 rs->sr_err = LDAP_INVALID_CREDENTIALS;
123                 goto done;
124         }
125
126         switch ( op->oq_bind.rb_method ) {
127         case LDAP_AUTH_SIMPLE:
128                 a = attr_find( e->e_attrs, password );
129                 if ( a == NULL ) {
130                         rs->sr_err = LDAP_INVALID_CREDENTIALS;
131                         goto done;
132                 }
133
134                 if ( slap_passwd_check( op, e, a, &op->oq_bind.rb_cred,
135                                         &rs->sr_text ) != 0 )
136                 {
137                         /* failure; stop front end from sending result */
138                         rs->sr_err = LDAP_INVALID_CREDENTIALS;
139                         goto done;
140                 }
141                         
142                 rs->sr_err = 0;
143                 break;
144
145         default:
146                 assert( 0 ); /* should not be reachable */
147                 rs->sr_err = LDAP_STRONG_AUTH_NOT_SUPPORTED;
148                 rs->sr_text = "authentication method not supported";
149         }
150
151 done:
152         /* free entry and reader lock */
153         if( e != NULL ) {
154                 bdb_cache_return_entry_r( bdb, e, &lock );
155         }
156
157         if ( rs->sr_err ) {
158                 send_ldap_result( op, rs );
159                 if ( rs->sr_ref ) {
160                         ber_bvarray_free( rs->sr_ref );
161                         rs->sr_ref = NULL;
162                 }
163         }
164         /* front end will send result on success (rs->sr_err==0) */
165         return rs->sr_err;
166 }