]> git.sur5r.net Git - openldap/blob - servers/slapd/back-ldap/bind.c
a91ab15c9023106a332f01f04b9ba036dd02f1f3
[openldap] / servers / slapd / back-ldap / bind.c
1 /* bind.c - ldap backend bind function */
2
3 /*
4  * Copyright 1999, Howard Chu, All rights reserved. <hyc@highlandsun.com>
5  * 
6  * Permission is granted to anyone to use this software for any purpose
7  * on any computer system, and to alter it and redistribute it, subject
8  * to the following restrictions:
9  * 
10  * 1. The author is not responsible for the consequences of use of this
11  *    software, no matter how awful, even if they arise from flaws in it.
12  * 
13  * 2. The origin of this software must not be misrepresented, either by
14  *    explicit claim or by omission.  Since few users ever read sources,
15  *    credits should appear in the documentation.
16  * 
17  * 3. Altered versions must be plainly marked as such, and must not be
18  *    misrepresented as being the original software.  Since few users
19  *    ever read sources, credits should appear in the documentation.
20  * 
21  * 4. This notice may not be removed or altered.
22  */
23
24 #include "portable.h"
25
26 #include <stdio.h>
27
28 #include <ac/socket.h>
29 #include <ac/string.h>
30
31 #include "slap.h"
32 #include "back-ldap.h"
33
34 int
35 ldap_back_bind(
36     Backend             *be,
37     Connection          *conn,
38     Operation           *op,
39     char                *dn,
40     int                 method,
41     struct berval       *cred,
42         char            **edn
43 )
44 {
45         struct ldapinfo *li = (struct ldapinfo *) be->be_private;
46         struct ldapconn *lc;
47
48         *edn = NULL;
49
50         lc = ldap_back_getconn(li, conn, op);
51         if (!lc)
52                 return( -1 );
53
54         if (ldap_bind_s(lc->ld, dn, cred->bv_val, method) != LDAP_SUCCESS)
55                 return( ldap_back_op_result(lc, op) );
56
57         lc->bound = 1;
58         return( 0 );
59 }
60
61 struct ldapconn *
62 ldap_back_getconn(struct ldapinfo *li, Connection *conn, Operation *op)
63 {
64         struct ldapconn *lc;
65         LDAP *ld;
66
67         ldap_pvt_thread_mutex_lock( &li->conn_mutex );
68         for (lc = li->lcs; lc; lc=lc->next)
69                 if (lc->conn == conn)
70                         break;
71         ldap_pvt_thread_mutex_unlock( &li->conn_mutex );
72
73         /* Looks like we didn't get a bind. Open a new session... */
74         if (!lc) {
75                 ld = ldap_init(li->host, li->port);
76                 if (!ld) {
77                         send_ldap_result( conn, op, LDAP_OPERATIONS_ERROR, NULL,
78                         "ldap_init failed" );
79                         return( NULL );
80                 }
81                 lc = (struct ldapconn *)ch_malloc(sizeof(struct ldapconn));
82                 lc->conn = conn;
83                 lc->ld = ld;
84                 lc->bound = 0;
85                 ldap_pvt_thread_mutex_lock( &li->conn_mutex );
86                 lc->next = li->lcs;
87                 li->lcs = lc;
88                 ldap_pvt_thread_mutex_unlock( &li->conn_mutex );
89         }
90         return( lc );
91 }
92
93 ldap_back_dobind(struct ldapconn *lc, Operation *op)
94 {
95         if (lc->bound)
96                 return;
97
98         if (ldap_bind_s(lc->ld, lc->conn->c_cdn, NULL, LDAP_AUTH_SIMPLE) !=
99                 LDAP_SUCCESS)
100                 ldap_back_op_result(lc, op);
101         else
102                 lc->bound = 1;
103 }
104
105 ldap_back_op_result(struct ldapconn *lc, Operation *op)
106 {
107         int err;
108         char *msg;
109         char *match;
110
111         ldap_get_option(lc->ld, LDAP_OPT_ERROR_NUMBER, &err);
112         ldap_get_option(lc->ld, LDAP_OPT_ERROR_STRING, &msg);
113         ldap_get_option(lc->ld, LDAP_OPT_MATCH_STRING, &match);
114         send_ldap_result( lc->conn, op, err, match, msg);
115         free(match);
116         free(msg);
117         return( (err==LDAP_SUCCESS) ? 0 : -1 );
118 }