r10810: This adds the hooks required to communicate the current user from the
[bbaumbach/samba-autobuild/.git] / source4 / ldap_server / ldap_bind.c
1 /* 
2    Unix SMB/CIFS implementation.
3    LDAP server
4    Copyright (C) Stefan Metzmacher 2004
5    
6    This program is free software; you can redistribute it and/or modify
7    it under the terms of the GNU General Public License as published by
8    the Free Software Foundation; either version 2 of the License, or
9    (at your option) any later version.
10    
11    This program is distributed in the hope that it will be useful,
12    but WITHOUT ANY WARRANTY; without even the implied warranty of
13    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14    GNU General Public License for more details.
15    
16    You should have received a copy of the GNU General Public License
17    along with this program; if not, write to the Free Software
18    Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
19 */
20
21 #include "includes.h"
22 #include "ldap_server/ldap_server.h"
23 #include "auth/auth.h"
24 #include "libcli/ldap/ldap.h"
25 #include "smbd/service_stream.h"
26
27 static NTSTATUS ldapsrv_BindSimple(struct ldapsrv_call *call)
28 {
29         struct ldap_BindRequest *req = &call->request->r.BindRequest;
30         struct ldapsrv_reply *reply;
31         struct ldap_BindResponse *resp;
32
33         DEBUG(10, ("BindSimple dn: %s\n",req->dn));
34
35         /* When we add authentication here, we also need to handle telling the backends */
36
37         reply = ldapsrv_init_reply(call, LDAP_TAG_BindResponse);
38         if (!reply) {
39                 return NT_STATUS_NO_MEMORY;
40         }
41
42         resp = &reply->msg->r.BindResponse;
43         resp->response.resultcode = 0;
44         resp->response.dn = NULL;
45         resp->response.errormessage = NULL;
46         resp->response.referral = NULL;
47         resp->SASL.secblob = data_blob(NULL, 0);
48
49         ldapsrv_queue_reply(call, reply);
50         return NT_STATUS_OK;
51 }
52
53 static NTSTATUS ldapsrv_BindSASL(struct ldapsrv_call *call)
54 {
55         struct ldap_BindRequest *req = &call->request->r.BindRequest;
56         struct ldapsrv_reply *reply;
57         struct ldap_BindResponse *resp;
58         struct ldapsrv_connection *conn;
59         int result;
60         const char *errstr;
61         NTSTATUS status = NT_STATUS_OK;
62
63         DEBUG(10, ("BindSASL dn: %s\n",req->dn));
64
65         if (!call->conn->gensec) {
66                 call->conn->session_info = NULL;
67
68                 status = gensec_server_start(call->conn, &call->conn->gensec,
69                                              call->conn->connection->event.ctx);
70                 if (!NT_STATUS_IS_OK(status)) {
71                         DEBUG(1, ("Failed to start GENSEC server code: %s\n", nt_errstr(status)));
72                         return status;
73                 }
74                 
75                 gensec_set_target_service(call->conn->gensec, "ldap");
76
77                 gensec_want_feature(call->conn->gensec, GENSEC_FEATURE_SIGN);
78                 gensec_want_feature(call->conn->gensec, GENSEC_FEATURE_SEAL);
79                 gensec_want_feature(call->conn->gensec, GENSEC_FEATURE_ASYNC_REPLIES);
80
81                 status = gensec_start_mech_by_sasl_name(call->conn->gensec, req->creds.SASL.mechanism);
82                 if (!NT_STATUS_IS_OK(status)) {
83                         DEBUG(1, ("Failed to start GENSEC SASL[%s] server code: %s\n", 
84                                 req->creds.SASL.mechanism, nt_errstr(status)));
85                         goto reply;
86                 }
87         }
88
89 reply:
90         reply = ldapsrv_init_reply(call, LDAP_TAG_BindResponse);
91         if (!reply) {
92                 return NT_STATUS_NO_MEMORY;
93         }
94         resp = &reply->msg->r.BindResponse;
95         
96         conn = call->conn;
97
98         if (NT_STATUS_IS_OK(status)) {
99                 status = gensec_update(call->conn->gensec, reply,
100                                        req->creds.SASL.secblob, &resp->SASL.secblob);
101         }
102
103         if (NT_STATUS_EQUAL(NT_STATUS_MORE_PROCESSING_REQUIRED, status)) {
104                 result = LDAP_SASL_BIND_IN_PROGRESS;
105                 errstr = NULL;
106         } else if (NT_STATUS_IS_OK(status)) {
107                 struct ldapsrv_partition *part;
108
109                 result = LDAP_SUCCESS;
110                 errstr = NULL;
111                 if (gensec_have_feature(call->conn->gensec, GENSEC_FEATURE_SEAL) ||
112                     gensec_have_feature(call->conn->gensec, GENSEC_FEATURE_SIGN)) {
113                         call->conn->enable_wrap = True;
114                 }
115                 status = gensec_session_info(call->conn->gensec, &call->conn->session_info);
116                 if (!NT_STATUS_IS_OK(status)) {
117                         result = LDAP_OPERATIONS_ERROR;
118                         errstr = talloc_asprintf(reply, "SASL:[%s]: Failed to get session info: %s", req->creds.SASL.mechanism, nt_errstr(status));
119                 } else {
120                         for (part = call->conn->partitions; part; part = part->next) {
121                                 if (!part->ops->Bind) {
122                                         continue;
123                                 }
124                                 status = part->ops->Bind(part, conn);
125                                 if (!NT_STATUS_IS_OK(status)) {
126                                         result = LDAP_OPERATIONS_ERROR;
127                                         errstr = talloc_asprintf(reply, "SASL:[%s]: Failed to advise partition %s of new credentials: %s", req->creds.SASL.mechanism, part->base_dn, nt_errstr(status));
128                                 }
129                         }
130                 }
131         } else {
132                 status = auth_nt_status_squash(status);
133                 result = LDAP_INVALID_CREDENTIALS;
134                 errstr = talloc_asprintf(reply, "SASL:[%s]: %s", req->creds.SASL.mechanism, nt_errstr(status));
135         }
136
137         resp->response.resultcode = result;
138         resp->response.dn = NULL;
139         resp->response.errormessage = errstr;
140         resp->response.referral = NULL;
141
142         ldapsrv_queue_reply(call, reply);
143         return NT_STATUS_OK;
144 }
145
146 NTSTATUS ldapsrv_BindRequest(struct ldapsrv_call *call)
147 {
148         struct ldap_BindRequest *req = &call->request->r.BindRequest;
149         struct ldapsrv_reply *reply;
150         struct ldap_BindResponse *resp;
151
152         switch (req->mechanism) {
153                 case LDAP_AUTH_MECH_SIMPLE:
154                         return ldapsrv_BindSimple(call);
155                 case LDAP_AUTH_MECH_SASL:
156                         return ldapsrv_BindSASL(call);
157         }
158
159         reply = ldapsrv_init_reply(call, LDAP_TAG_BindResponse);
160         if (!reply) {
161                 return NT_STATUS_NO_MEMORY;
162         }
163
164         resp = &reply->msg->r.BindResponse;
165         resp->response.resultcode = 7;
166         resp->response.dn = NULL;
167         resp->response.errormessage = talloc_asprintf(reply, "Bad AuthenticationChoice [%d]", req->mechanism);
168         resp->response.referral = NULL;
169         resp->SASL.secblob = data_blob(NULL, 0);
170
171         ldapsrv_queue_reply(call, reply);
172         return NT_STATUS_OK;
173 }
174
175 NTSTATUS ldapsrv_UnbindRequest(struct ldapsrv_call *call)
176 {
177         DEBUG(10, ("UnbindRequest\n"));
178         return NT_STATUS_OK;
179 }