]> git.sur5r.net Git - openldap/blob - servers/slapd/back-ndb/bind.cpp
(blind) fix for ITS#6661
[openldap] / servers / slapd / back-ndb / bind.cpp
1 /* bind.cpp - ndb backend bind routine */
2 /* $OpenLDAP$ */
3 /* This work is part of OpenLDAP Software <http://www.openldap.org/>.
4  *
5  * Copyright 2008-2010 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 /* ACKNOWLEDGEMENTS:
17  * This work was initially developed by Howard Chu for inclusion
18  * in OpenLDAP Software. This work was sponsored by MySQL.
19  */
20
21 #include "portable.h"
22
23 #include <stdio.h>
24 #include <ac/string.h>
25 #include <ac/unistd.h>
26
27 #include "back-ndb.h"
28
29 extern "C" int
30 ndb_back_bind( Operation *op, SlapReply *rs )
31 {
32         struct ndb_info *ni = (struct ndb_info *) op->o_bd->be_private;
33         Entry           e = {0};
34         Attribute       *a;
35
36         AttributeDescription *password = slap_schema.si_ad_userPassword;
37
38         NdbArgs NA;
39
40         Debug( LDAP_DEBUG_ARGS,
41                 "==> " LDAP_XSTRING(ndb_back_bind) ": dn: %s\n",
42                 op->o_req_dn.bv_val, 0, 0);
43
44         /* allow noauth binds */
45         rs->sr_err = be_rootdn_bind( op, NULL );
46         if ( rs->sr_err != SLAP_CB_CONTINUE ) {
47                 return rs->sr_err;
48         }
49
50         /* Get our NDB handle */
51         rs->sr_err = ndb_thread_handle( op, &NA.ndb );
52
53         e.e_name = op->o_req_dn;
54         e.e_nname = op->o_req_ndn;
55         NA.e = &e;
56
57 dn2entry_retry:
58         NA.txn = NA.ndb->startTransaction();
59         rs->sr_text = NULL;
60         if( !NA.txn ) {
61                 Debug( LDAP_DEBUG_TRACE,
62                         LDAP_XSTRING(ndb_back_bind) ": startTransaction failed: %s (%d)\n",
63                         NA.ndb->getNdbError().message, NA.ndb->getNdbError().code, 0 );
64                 rs->sr_err = LDAP_OTHER;
65                 rs->sr_text = "internal error";
66                 goto done;
67         }
68
69         /* get entry */
70         {
71                 NdbRdns rdns;
72                 rdns.nr_num = 0;
73                 NA.rdns = &rdns;
74                 NA.ocs = NULL;
75                 rs->sr_err = ndb_entry_get_info( op, &NA, 0, NULL );
76         }
77         switch(rs->sr_err) {
78         case 0:
79                 break;
80         case LDAP_NO_SUCH_OBJECT:
81                 rs->sr_err = LDAP_INVALID_CREDENTIALS;
82                 goto done;
83         case LDAP_BUSY:
84                 rs->sr_text = "ldap_server_busy";
85                 goto done;
86 #if 0
87         case DB_LOCK_DEADLOCK:
88         case DB_LOCK_NOTGRANTED:
89                 goto dn2entry_retry;
90 #endif
91         default:
92                 rs->sr_err = LDAP_OTHER;
93                 rs->sr_text = "internal error";
94                 goto done;
95         }
96
97         rs->sr_err = ndb_entry_get_data( op, &NA, 0 );
98         ber_bvarray_free_x( NA.ocs, op->o_tmpmemctx );
99         ber_dupbv( &op->oq_bind.rb_edn, &e.e_name );
100
101         /* check for deleted */
102         if ( is_entry_subentry( &e ) ) {
103                 /* entry is an subentry, don't allow bind */
104                 Debug( LDAP_DEBUG_TRACE, "entry is subentry\n", 0,
105                         0, 0 );
106                 rs->sr_err = LDAP_INVALID_CREDENTIALS;
107                 goto done;
108         }
109
110         if ( is_entry_alias( &e ) ) {
111                 /* entry is an alias, don't allow bind */
112                 Debug( LDAP_DEBUG_TRACE, "entry is alias\n", 0, 0, 0 );
113                 rs->sr_err = LDAP_INVALID_CREDENTIALS;
114                 goto done;
115         }
116
117         if ( is_entry_referral( &e ) ) {
118                 Debug( LDAP_DEBUG_TRACE, "entry is referral\n", 0,
119                         0, 0 );
120                 rs->sr_err = LDAP_INVALID_CREDENTIALS;
121                 goto done;
122         }
123
124         switch ( op->oq_bind.rb_method ) {
125         case LDAP_AUTH_SIMPLE:
126                 a = attr_find( e.e_attrs, password );
127                 if ( a == NULL ) {
128                         rs->sr_err = LDAP_INVALID_CREDENTIALS;
129                         goto done;
130                 }
131
132                 if ( slap_passwd_check( op, &e, a, &op->oq_bind.rb_cred,
133                                         &rs->sr_text ) != 0 )
134                 {
135                         /* failure; stop front end from sending result */
136                         rs->sr_err = LDAP_INVALID_CREDENTIALS;
137                         goto done;
138                 }
139                         
140                 rs->sr_err = 0;
141                 break;
142
143         default:
144                 assert( 0 ); /* should not be reachable */
145                 rs->sr_err = LDAP_STRONG_AUTH_NOT_SUPPORTED;
146                 rs->sr_text = "authentication method not supported";
147         }
148
149 done:
150         NA.txn->close();
151         if ( e.e_attrs ) {
152                 attrs_free( e.e_attrs );
153                 e.e_attrs = NULL;
154         }
155         if ( rs->sr_err ) {
156                 send_ldap_result( op, rs );
157         }
158         /* front end will send result on success (rs->sr_err==0) */
159         return rs->sr_err;
160 }