2 Unix SMB/CIFS implementation.
4 Copyright (C) Stefan Metzmacher 2004
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 3 of the License, or
9 (at your option) any later version.
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.
16 You should have received a copy of the GNU General Public License
17 along with this program. If not, see <http://www.gnu.org/licenses/>.
21 #include "ldap_server/ldap_server.h"
22 #include "auth/auth.h"
23 #include "smbd/service.h"
24 #include "lib/ldb/include/ldb.h"
25 #include "lib/ldb/include/ldb_errors.h"
26 #include "dsdb/samdb/samdb.h"
27 #include "auth/gensec/gensec.h"
28 #include "param/param.h"
30 static NTSTATUS
ldapsrv_BindSimple(struct ldapsrv_call
*call
)
32 struct ldap_BindRequest
*req
= &call
->request
->r
.BindRequest
;
33 struct ldapsrv_reply
*reply
;
34 struct ldap_BindResponse
*resp
;
38 const char *nt4_domain
, *nt4_account
;
40 struct auth_session_info
*session_info
;
44 DEBUG(10, ("BindSimple dn: %s\n",req
->dn
));
46 status
= crack_auto_name_to_nt4_name(call
, call
->conn
->connection
->event
.ctx
, call
->conn
->lp_ctx
, req
->dn
, &nt4_domain
, &nt4_account
);
47 if (NT_STATUS_IS_OK(status
)) {
48 status
= authenticate_username_pw(call
,
49 call
->conn
->connection
->event
.ctx
,
50 call
->conn
->connection
->msg_ctx
,
52 nt4_domain
, nt4_account
,
57 reply
= ldapsrv_init_reply(call
, LDAP_TAG_BindResponse
);
59 return NT_STATUS_NO_MEMORY
;
62 if (NT_STATUS_IS_OK(status
)) {
63 result
= LDAP_SUCCESS
;
66 talloc_free(call
->conn
->session_info
);
67 call
->conn
->session_info
= session_info
;
68 talloc_steal(call
->conn
, session_info
);
70 /* don't leak the old LDB */
71 talloc_free(call
->conn
->ldb
);
73 status
= ldapsrv_backend_Init(call
->conn
);
75 if (!NT_STATUS_IS_OK(status
)) {
76 result
= LDAP_OPERATIONS_ERROR
;
77 errstr
= talloc_asprintf(reply
, "Simple Bind: Failed to advise ldb new credentials: %s", nt_errstr(status
));
80 status
= auth_nt_status_squash(status
);
82 result
= LDAP_INVALID_CREDENTIALS
;
83 errstr
= talloc_asprintf(reply
, "Simple Bind Failed: %s", nt_errstr(status
));
86 resp
= &reply
->msg
->r
.BindResponse
;
87 resp
->response
.resultcode
= result
;
88 resp
->response
.errormessage
= errstr
;
89 resp
->response
.dn
= NULL
;
90 resp
->response
.referral
= NULL
;
91 resp
->SASL
.secblob
= NULL
;
93 ldapsrv_queue_reply(call
, reply
);
97 struct ldapsrv_sasl_context
{
98 struct ldapsrv_connection
*conn
;
99 struct socket_context
*sasl_socket
;
102 static void ldapsrv_set_sasl(void *private_data
)
104 struct ldapsrv_sasl_context
*ctx
= talloc_get_type(private_data
, struct ldapsrv_sasl_context
);
105 talloc_steal(ctx
->conn
->connection
, ctx
->sasl_socket
);
106 talloc_unlink(ctx
->conn
->connection
, ctx
->conn
->connection
->socket
);
108 ctx
->conn
->sockets
.sasl
= ctx
->sasl_socket
;
109 ctx
->conn
->connection
->socket
= ctx
->sasl_socket
;
110 packet_set_socket(ctx
->conn
->packet
, ctx
->conn
->connection
->socket
);
113 static NTSTATUS
ldapsrv_BindSASL(struct ldapsrv_call
*call
)
115 struct ldap_BindRequest
*req
= &call
->request
->r
.BindRequest
;
116 struct ldapsrv_reply
*reply
;
117 struct ldap_BindResponse
*resp
;
118 struct ldapsrv_connection
*conn
;
120 const char *errstr
=NULL
;
121 NTSTATUS status
= NT_STATUS_OK
;
123 DEBUG(10, ("BindSASL dn: %s\n",req
->dn
));
125 reply
= ldapsrv_init_reply(call
, LDAP_TAG_BindResponse
);
127 return NT_STATUS_NO_MEMORY
;
129 resp
= &reply
->msg
->r
.BindResponse
;
134 * TODO: a SASL bind with a different mechanism
135 * should cancel an inprogress SASL bind.
140 conn
->session_info
= NULL
;
142 status
= samba_server_gensec_start(conn
,
143 conn
->connection
->event
.ctx
,
144 conn
->connection
->msg_ctx
,
146 conn
->server_credentials
,
149 if (!NT_STATUS_IS_OK(status
)) {
150 DEBUG(1, ("Failed to start GENSEC server code: %s\n", nt_errstr(status
)));
151 result
= LDAP_OPERATIONS_ERROR
;
152 errstr
= talloc_asprintf(reply
, "SASL: Failed to start authentication system: %s",
156 gensec_want_feature(conn
->gensec
, GENSEC_FEATURE_SIGN
);
157 gensec_want_feature(conn
->gensec
, GENSEC_FEATURE_SEAL
);
158 gensec_want_feature(conn
->gensec
, GENSEC_FEATURE_ASYNC_REPLIES
);
160 status
= gensec_start_mech_by_sasl_name(conn
->gensec
, req
->creds
.SASL
.mechanism
);
162 if (!NT_STATUS_IS_OK(status
)) {
163 DEBUG(1, ("Failed to start GENSEC SASL[%s] server code: %s\n",
164 req
->creds
.SASL
.mechanism
, nt_errstr(status
)));
165 result
= LDAP_OPERATIONS_ERROR
;
166 errstr
= talloc_asprintf(reply
, "SASL:[%s]: Failed to start authentication backend: %s",
167 req
->creds
.SASL
.mechanism
, nt_errstr(status
));
172 if (NT_STATUS_IS_OK(status
)) {
173 DATA_BLOB input
= data_blob(NULL
, 0);
174 DATA_BLOB output
= data_blob(NULL
, 0);
176 if (req
->creds
.SASL
.secblob
) {
177 input
= *req
->creds
.SASL
.secblob
;
180 status
= gensec_update(conn
->gensec
, reply
,
183 /* Windows 2000 mmc doesn't like secblob == NULL and reports a decoding error */
184 resp
->SASL
.secblob
= talloc(reply
, DATA_BLOB
);
185 NT_STATUS_HAVE_NO_MEMORY(resp
->SASL
.secblob
);
186 *resp
->SASL
.secblob
= output
;
188 resp
->SASL
.secblob
= NULL
;
191 if (NT_STATUS_EQUAL(NT_STATUS_MORE_PROCESSING_REQUIRED
, status
)) {
192 result
= LDAP_SASL_BIND_IN_PROGRESS
;
194 } else if (NT_STATUS_IS_OK(status
)) {
195 struct auth_session_info
*old_session_info
=NULL
;
196 struct ldapsrv_sasl_context
*ctx
;
198 result
= LDAP_SUCCESS
;
201 ctx
= talloc(call
, struct ldapsrv_sasl_context
);
204 status
= NT_STATUS_NO_MEMORY
;
207 status
= gensec_socket_init(conn
->gensec
,
209 conn
->connection
->socket
,
210 conn
->connection
->event
.ctx
,
211 stream_io_handler_callback
,
216 if (!ctx
|| !NT_STATUS_IS_OK(status
)) {
217 conn
->session_info
= old_session_info
;
218 result
= LDAP_OPERATIONS_ERROR
;
219 errstr
= talloc_asprintf(reply
,
220 "SASL:[%s]: Failed to setup SASL socket: %s",
221 req
->creds
.SASL
.mechanism
, nt_errstr(status
));
224 call
->send_callback
= ldapsrv_set_sasl
;
225 call
->send_private
= ctx
;
227 old_session_info
= conn
->session_info
;
228 conn
->session_info
= NULL
;
229 status
= gensec_session_info(conn
->gensec
, &conn
->session_info
);
230 if (!NT_STATUS_IS_OK(status
)) {
231 conn
->session_info
= old_session_info
;
232 result
= LDAP_OPERATIONS_ERROR
;
233 errstr
= talloc_asprintf(reply
,
234 "SASL:[%s]: Failed to get session info: %s",
235 req
->creds
.SASL
.mechanism
, nt_errstr(status
));
237 talloc_free(old_session_info
);
238 talloc_steal(conn
, conn
->session_info
);
240 /* don't leak the old LDB */
241 talloc_free(conn
->ldb
);
243 status
= ldapsrv_backend_Init(conn
);
245 if (!NT_STATUS_IS_OK(status
)) {
246 result
= LDAP_OPERATIONS_ERROR
;
247 errstr
= talloc_asprintf(reply
,
248 "SASL:[%s]: Failed to advise samdb of new credentials: %s",
249 req
->creds
.SASL
.mechanism
,
255 status
= auth_nt_status_squash(status
);
257 result
= LDAP_INVALID_CREDENTIALS
;
258 errstr
= talloc_asprintf(reply
, "SASL:[%s]: %s", req
->creds
.SASL
.mechanism
, nt_errstr(status
));
262 resp
->response
.resultcode
= result
;
263 resp
->response
.dn
= NULL
;
264 resp
->response
.errormessage
= errstr
;
265 resp
->response
.referral
= NULL
;
267 ldapsrv_queue_reply(call
, reply
);
271 NTSTATUS
ldapsrv_BindRequest(struct ldapsrv_call
*call
)
273 struct ldap_BindRequest
*req
= &call
->request
->r
.BindRequest
;
274 struct ldapsrv_reply
*reply
;
275 struct ldap_BindResponse
*resp
;
278 * TODO: we should fail the bind request
279 * if there're any pending requests.
281 * also a simple bind should cancel an
282 * inprogress SASL bind.
285 switch (req
->mechanism
) {
286 case LDAP_AUTH_MECH_SIMPLE
:
287 return ldapsrv_BindSimple(call
);
288 case LDAP_AUTH_MECH_SASL
:
289 return ldapsrv_BindSASL(call
);
292 reply
= ldapsrv_init_reply(call
, LDAP_TAG_BindResponse
);
294 return NT_STATUS_NO_MEMORY
;
297 resp
= &reply
->msg
->r
.BindResponse
;
298 resp
->response
.resultcode
= 7;
299 resp
->response
.dn
= NULL
;
300 resp
->response
.errormessage
= talloc_asprintf(reply
, "Bad AuthenticationChoice [%d]", req
->mechanism
);
301 resp
->response
.referral
= NULL
;
302 resp
->SASL
.secblob
= NULL
;
304 ldapsrv_queue_reply(call
, reply
);
308 NTSTATUS
ldapsrv_UnbindRequest(struct ldapsrv_call
*call
)
310 DEBUG(10, ("UnbindRequest\n"));