2 Unix SMB/CIFS implementation.
4 server side dcerpc authentication code
6 Copyright (C) Andrew Tridgell 2003
7 Copyright (C) Stefan (metze) Metzmacher 2004
9 This program is free software; you can redistribute it and/or modify
10 it under the terms of the GNU General Public License as published by
11 the Free Software Foundation; either version 3 of the License, or
12 (at your option) any later version.
14 This program is distributed in the hope that it will be useful,
15 but WITHOUT ANY WARRANTY; without even the implied warranty of
16 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 GNU General Public License for more details.
19 You should have received a copy of the GNU General Public License
20 along with this program. If not, see <http://www.gnu.org/licenses/>.
24 #include "rpc_server/dcerpc_server.h"
25 #include "rpc_server/dcerpc_server_proto.h"
26 #include "rpc_server/common/proto.h"
27 #include "librpc/rpc/dcerpc_proto.h"
28 #include "librpc/gen_ndr/ndr_dcerpc.h"
29 #include "auth/credentials/credentials.h"
30 #include "auth/gensec/gensec.h"
31 #include "auth/auth.h"
32 #include "param/param.h"
33 #include "librpc/rpc/rpc_common.h"
36 parse any auth information from a dcerpc bind request
37 return false if we can't handle the auth request for some
38 reason (in which case we send a bind_nak)
40 bool dcesrv_auth_bind(struct dcesrv_call_state *call)
42 struct cli_credentials *server_credentials = NULL;
43 struct ncacn_packet *pkt = &call->pkt;
44 struct dcesrv_connection *dce_conn = call->conn;
45 struct dcesrv_auth *auth = &dce_conn->auth_state;
49 if (pkt->auth_length == 0) {
50 auth->auth_type = DCERPC_AUTH_TYPE_NONE;
51 auth->auth_level = DCERPC_AUTH_LEVEL_NONE;
52 auth->auth_context_id = 0;
56 status = dcerpc_pull_auth_trailer(pkt, call, &pkt->u.bind.auth_info,
59 if (!NT_STATUS_IS_OK(status)) {
63 auth->auth_type = call->in_auth_info.auth_type;
64 auth->auth_level = call->in_auth_info.auth_level;
65 auth->auth_context_id = call->in_auth_info.auth_context_id;
68 = cli_credentials_init(call);
69 if (!server_credentials) {
70 DEBUG(1, ("Failed to init server credentials\n"));
74 cli_credentials_set_conf(server_credentials, call->conn->dce_ctx->lp_ctx);
75 status = cli_credentials_set_machine_account(server_credentials, call->conn->dce_ctx->lp_ctx);
76 if (!NT_STATUS_IS_OK(status)) {
77 DEBUG(1, ("Failed to obtain server credentials: %s\n",
82 status = samba_server_gensec_start(dce_conn, call->event_ctx,
84 call->conn->dce_ctx->lp_ctx,
87 &auth->gensec_security);
88 if (!NT_STATUS_IS_OK(status)) {
89 DEBUG(1, ("Failed to call samba_server_gensec_start %s\n",
94 if (call->conn->remote_address != NULL) {
95 status = gensec_set_remote_address(auth->gensec_security,
96 call->conn->remote_address);
97 if (!NT_STATUS_IS_OK(status)) {
98 DEBUG(1, ("Failed to call gensec_set_remote_address() %s\n",
104 status = gensec_start_mech_by_authtype(auth->gensec_security, auth->auth_type,
106 if (!NT_STATUS_IS_OK(status)) {
107 DEBUG(3, ("Failed to start GENSEC mechanism for DCERPC server: auth_type=%d, auth_level=%d: %s\n",
108 (int)auth->auth_type,
109 (int)auth->auth_level,
118 add any auth information needed in a bind ack, and process the authentication
119 information found in the bind.
121 NTSTATUS dcesrv_auth_bind_ack(struct dcesrv_call_state *call, struct ncacn_packet *pkt)
123 struct dcesrv_connection *dce_conn = call->conn;
125 bool want_header_signing = false;
127 dce_conn->allow_alter = true;
128 dce_conn->allow_auth3 = true;
130 if (call->pkt.auth_length == 0) {
131 dce_conn->auth_state.auth_finished = true;
132 dce_conn->allow_request = true;
136 /* We can't work without an existing gensec state */
137 if (!call->conn->auth_state.gensec_security) {
138 return NT_STATUS_INTERNAL_ERROR;
141 if (call->pkt.pfc_flags & DCERPC_PFC_FLAG_SUPPORT_HEADER_SIGN) {
142 dce_conn->auth_state.client_hdr_signing = true;
143 want_header_signing = true;
146 if (!lpcfg_parm_bool(call->conn->dce_ctx->lp_ctx, NULL, "dcesrv","header signing", true)) {
147 want_header_signing = false;
150 call->_out_auth_info = (struct dcerpc_auth) {
151 .auth_type = dce_conn->auth_state.auth_type,
152 .auth_level = dce_conn->auth_state.auth_level,
153 .auth_context_id = dce_conn->auth_state.auth_context_id,
155 call->out_auth_info = &call->_out_auth_info;
157 status = gensec_update_ev(dce_conn->auth_state.gensec_security,
158 call, call->event_ctx,
159 call->in_auth_info.credentials,
160 &call->out_auth_info->credentials);
162 if (NT_STATUS_IS_OK(status)) {
163 status = gensec_session_info(dce_conn->auth_state.gensec_security,
165 &dce_conn->auth_state.session_info);
166 if (!NT_STATUS_IS_OK(status)) {
167 DEBUG(1, ("Failed to establish session_info: %s\n", nt_errstr(status)));
170 dce_conn->auth_state.auth_finished = true;
171 dce_conn->allow_request = true;
173 if (!gensec_have_feature(dce_conn->auth_state.gensec_security,
174 GENSEC_FEATURE_SIGN_PKT_HEADER))
176 want_header_signing = false;
179 if (want_header_signing) {
180 gensec_want_feature(dce_conn->auth_state.gensec_security,
181 GENSEC_FEATURE_SIGN_PKT_HEADER);
182 dce_conn->auth_state.hdr_signing = true;
183 pkt->pfc_flags |= DCERPC_PFC_FLAG_SUPPORT_HEADER_SIGN;
186 /* Now that we are authenticated, go back to the generic session key... */
187 dce_conn->auth_state.session_key = dcesrv_generic_session_key;
189 } else if (NT_STATUS_EQUAL(status, NT_STATUS_MORE_PROCESSING_REQUIRED)) {
190 if (!gensec_have_feature(dce_conn->auth_state.gensec_security,
191 GENSEC_FEATURE_SIGN_PKT_HEADER))
193 want_header_signing = false;
196 if (want_header_signing) {
197 gensec_want_feature(dce_conn->auth_state.gensec_security,
198 GENSEC_FEATURE_SIGN_PKT_HEADER);
199 dce_conn->auth_state.hdr_signing = true;
200 pkt->pfc_flags |= DCERPC_PFC_FLAG_SUPPORT_HEADER_SIGN;
205 DEBUG(4, ("GENSEC mech rejected the incoming authentication at bind_ack: %s\n",
213 process the final stage of a auth request
215 bool dcesrv_auth_auth3(struct dcesrv_call_state *call)
217 struct ncacn_packet *pkt = &call->pkt;
218 struct dcesrv_connection *dce_conn = call->conn;
220 uint32_t auth_length;
222 if (pkt->auth_length == 0) {
226 if (dce_conn->auth_state.auth_finished) {
230 /* We can't work without an existing gensec state */
231 if (!dce_conn->auth_state.gensec_security) {
235 status = dcerpc_pull_auth_trailer(pkt, call, &pkt->u.auth3.auth_info,
236 &call->in_auth_info, &auth_length, true);
237 if (!NT_STATUS_IS_OK(status)) {
241 if (call->in_auth_info.auth_type != dce_conn->auth_state.auth_type) {
245 if (call->in_auth_info.auth_level != dce_conn->auth_state.auth_level) {
249 if (call->in_auth_info.auth_context_id != dce_conn->auth_state.auth_context_id) {
253 call->_out_auth_info = (struct dcerpc_auth) {
254 .auth_type = dce_conn->auth_state.auth_type,
255 .auth_level = dce_conn->auth_state.auth_level,
256 .auth_context_id = dce_conn->auth_state.auth_context_id,
258 call->out_auth_info = &call->_out_auth_info;
260 /* Pass the extra data we got from the client down to gensec for processing */
261 status = gensec_update_ev(dce_conn->auth_state.gensec_security,
262 call, call->event_ctx,
263 call->in_auth_info.credentials,
264 &call->out_auth_info->credentials);
265 if (NT_STATUS_IS_OK(status)) {
266 status = gensec_session_info(dce_conn->auth_state.gensec_security,
268 &dce_conn->auth_state.session_info);
269 if (!NT_STATUS_IS_OK(status)) {
270 DEBUG(1, ("Failed to establish session_info: %s\n", nt_errstr(status)));
273 dce_conn->auth_state.auth_finished = true;
274 dce_conn->allow_request = true;
276 /* Now that we are authenticated, go back to the generic session key... */
277 dce_conn->auth_state.session_key = dcesrv_generic_session_key;
280 DEBUG(4, ("GENSEC mech rejected the incoming authentication at bind_auth3: %s\n",
287 parse any auth information from a dcerpc alter request
288 return false if we can't handle the auth request for some
289 reason (in which case we send a bind_nak (is this true for here?))
291 bool dcesrv_auth_alter(struct dcesrv_call_state *call)
293 struct ncacn_packet *pkt = &call->pkt;
294 struct dcesrv_connection *dce_conn = call->conn;
296 uint32_t auth_length;
298 /* on a pure interface change there is no auth blob */
299 if (pkt->auth_length == 0) {
300 if (!dce_conn->auth_state.auth_finished) {
306 if (dce_conn->auth_state.auth_finished) {
310 /* We can't work without an existing gensec state */
311 if (!dce_conn->auth_state.gensec_security) {
315 status = dcerpc_pull_auth_trailer(pkt, call, &pkt->u.alter.auth_info,
316 &call->in_auth_info, &auth_length, true);
317 if (!NT_STATUS_IS_OK(status)) {
321 if (call->in_auth_info.auth_type != dce_conn->auth_state.auth_type) {
325 if (call->in_auth_info.auth_level != dce_conn->auth_state.auth_level) {
329 if (call->in_auth_info.auth_context_id != dce_conn->auth_state.auth_context_id) {
337 add any auth information needed in a alter ack, and process the authentication
338 information found in the alter.
340 NTSTATUS dcesrv_auth_alter_ack(struct dcesrv_call_state *call, struct ncacn_packet *pkt)
342 struct dcesrv_connection *dce_conn = call->conn;
345 /* on a pure interface change there is no auth_info structure
347 if (call->pkt.auth_length == 0) {
351 if (!call->conn->auth_state.gensec_security) {
352 return NT_STATUS_INTERNAL_ERROR;
355 call->_out_auth_info = (struct dcerpc_auth) {
356 .auth_type = dce_conn->auth_state.auth_type,
357 .auth_level = dce_conn->auth_state.auth_level,
358 .auth_context_id = dce_conn->auth_state.auth_context_id,
360 call->out_auth_info = &call->_out_auth_info;
362 status = gensec_update_ev(dce_conn->auth_state.gensec_security,
363 call, call->event_ctx,
364 call->in_auth_info.credentials,
365 &call->out_auth_info->credentials);
367 if (NT_STATUS_IS_OK(status)) {
368 status = gensec_session_info(dce_conn->auth_state.gensec_security,
370 &dce_conn->auth_state.session_info);
371 if (!NT_STATUS_IS_OK(status)) {
372 DEBUG(1, ("Failed to establish session_info: %s\n", nt_errstr(status)));
375 dce_conn->auth_state.auth_finished = true;
376 dce_conn->allow_request = true;
378 /* Now that we are authenticated, got back to the generic session key... */
379 dce_conn->auth_state.session_key = dcesrv_generic_session_key;
381 } else if (NT_STATUS_EQUAL(status, NT_STATUS_MORE_PROCESSING_REQUIRED)) {
385 DEBUG(4, ("GENSEC mech rejected the incoming authentication at auth alter_ack: %s\n",
391 check credentials on a request
393 bool dcesrv_auth_request(struct dcesrv_call_state *call, DATA_BLOB *full_packet)
395 struct ncacn_packet *pkt = &call->pkt;
396 struct dcesrv_connection *dce_conn = call->conn;
398 uint32_t auth_length;
399 size_t hdr_size = DCERPC_REQUEST_LENGTH;
401 if (!dce_conn->allow_request) {
405 if (pkt->pfc_flags & DCERPC_PFC_FLAG_OBJECT_UUID) {
409 switch (dce_conn->auth_state.auth_level) {
410 case DCERPC_AUTH_LEVEL_PRIVACY:
411 case DCERPC_AUTH_LEVEL_INTEGRITY:
414 case DCERPC_AUTH_LEVEL_CONNECT:
415 if (pkt->auth_length != 0) {
419 case DCERPC_AUTH_LEVEL_NONE:
420 if (pkt->auth_length != 0) {
429 if (!dce_conn->auth_state.gensec_security) {
433 status = dcerpc_pull_auth_trailer(pkt, call,
434 &pkt->u.request.stub_and_verifier,
435 &call->in_auth_info, &auth_length, false);
436 if (!NT_STATUS_IS_OK(status)) {
440 if (call->in_auth_info.auth_type != dce_conn->auth_state.auth_type) {
444 if (call->in_auth_info.auth_level != dce_conn->auth_state.auth_level) {
448 if (call->in_auth_info.auth_context_id != dce_conn->auth_state.auth_context_id) {
452 pkt->u.request.stub_and_verifier.length -= auth_length;
454 /* check signature or unseal the packet */
455 switch (dce_conn->auth_state.auth_level) {
456 case DCERPC_AUTH_LEVEL_PRIVACY:
457 status = gensec_unseal_packet(dce_conn->auth_state.gensec_security,
458 full_packet->data + hdr_size,
459 pkt->u.request.stub_and_verifier.length,
462 call->in_auth_info.credentials.length,
463 &call->in_auth_info.credentials);
464 memcpy(pkt->u.request.stub_and_verifier.data,
465 full_packet->data + hdr_size,
466 pkt->u.request.stub_and_verifier.length);
469 case DCERPC_AUTH_LEVEL_INTEGRITY:
470 status = gensec_check_packet(dce_conn->auth_state.gensec_security,
471 pkt->u.request.stub_and_verifier.data,
472 pkt->u.request.stub_and_verifier.length,
475 call->in_auth_info.credentials.length,
476 &call->in_auth_info.credentials);
479 case DCERPC_AUTH_LEVEL_CONNECT:
480 /* for now we ignore possible signatures here */
481 status = NT_STATUS_OK;
485 status = NT_STATUS_INVALID_LEVEL;
489 /* remove the indicated amount of padding */
490 if (pkt->u.request.stub_and_verifier.length < call->in_auth_info.auth_pad_length) {
493 pkt->u.request.stub_and_verifier.length -= call->in_auth_info.auth_pad_length;
495 return NT_STATUS_IS_OK(status);
500 push a signed or sealed dcerpc request packet into a blob
502 bool dcesrv_auth_response(struct dcesrv_call_state *call,
503 DATA_BLOB *blob, size_t sig_size,
504 struct ncacn_packet *pkt)
506 struct dcesrv_connection *dce_conn = call->conn;
508 enum ndr_err_code ndr_err;
509 struct ndr_push *ndr;
510 uint32_t payload_length;
513 switch (dce_conn->auth_state.auth_level) {
514 case DCERPC_AUTH_LEVEL_PRIVACY:
515 case DCERPC_AUTH_LEVEL_INTEGRITY:
522 case DCERPC_AUTH_LEVEL_CONNECT:
524 * TODO: let the gensec mech decide if it wants to generate a
525 * signature that might be needed for schannel...
527 status = ncacn_push_auth(blob, call, pkt, NULL);
528 return NT_STATUS_IS_OK(status);
530 case DCERPC_AUTH_LEVEL_NONE:
531 status = ncacn_push_auth(blob, call, pkt, NULL);
532 return NT_STATUS_IS_OK(status);
538 if (!dce_conn->auth_state.gensec_security) {
542 ndr = ndr_push_init_ctx(call);
547 if (!(pkt->drep[0] & DCERPC_DREP_LE)) {
548 ndr->flags |= LIBNDR_FLAG_BIGENDIAN;
551 ndr_err = ndr_push_ncacn_packet(ndr, NDR_SCALARS|NDR_BUFFERS, pkt);
552 if (!NDR_ERR_CODE_IS_SUCCESS(ndr_err)) {
556 call->_out_auth_info = (struct dcerpc_auth) {
557 .auth_type = dce_conn->auth_state.auth_type,
558 .auth_level = dce_conn->auth_state.auth_level,
559 .auth_context_id = dce_conn->auth_state.auth_context_id,
561 call->out_auth_info = &call->_out_auth_info;
563 /* pad to 16 byte multiple in the payload portion of the
564 packet. This matches what w2k3 does. Note that we can't use
565 ndr_push_align() as that is relative to the start of the
566 whole packet, whereas w2k8 wants it relative to the start
568 call->out_auth_info->auth_pad_length =
569 DCERPC_AUTH_PAD_LENGTH(pkt->u.response.stub_and_verifier.length);
570 ndr_err = ndr_push_zero(ndr, call->out_auth_info->auth_pad_length);
571 if (!NDR_ERR_CODE_IS_SUCCESS(ndr_err)) {
575 payload_length = pkt->u.response.stub_and_verifier.length +
576 call->out_auth_info->auth_pad_length;
578 /* add the auth verifier */
579 ndr_err = ndr_push_dcerpc_auth(ndr, NDR_SCALARS|NDR_BUFFERS,
580 call->out_auth_info);
581 if (!NDR_ERR_CODE_IS_SUCCESS(ndr_err)) {
585 /* extract the whole packet as a blob */
586 *blob = ndr_push_blob(ndr);
589 * Setup the frag and auth length in the packet buffer.
590 * This is needed if the GENSEC mech does AEAD signing
591 * of the packet headers. The signature itself will be
594 dcerpc_set_frag_length(blob, blob->length + sig_size);
595 dcerpc_set_auth_length(blob, sig_size);
597 /* sign or seal the packet */
598 switch (dce_conn->auth_state.auth_level) {
599 case DCERPC_AUTH_LEVEL_PRIVACY:
600 status = gensec_seal_packet(dce_conn->auth_state.gensec_security,
602 ndr->data + DCERPC_REQUEST_LENGTH,
609 case DCERPC_AUTH_LEVEL_INTEGRITY:
610 status = gensec_sign_packet(dce_conn->auth_state.gensec_security,
612 ndr->data + DCERPC_REQUEST_LENGTH,
620 status = NT_STATUS_INVALID_LEVEL;
624 if (!NT_STATUS_IS_OK(status)) {
628 if (creds2.length != sig_size) {
629 DEBUG(3,("dcesrv_auth_response: creds2.length[%u] != sig_size[%u] pad[%u] stub[%u]\n",
630 (unsigned)creds2.length, (uint32_t)sig_size,
631 (unsigned)call->out_auth_info->auth_pad_length,
632 (unsigned)pkt->u.response.stub_and_verifier.length));
633 dcerpc_set_frag_length(blob, blob->length + creds2.length);
634 dcerpc_set_auth_length(blob, creds2.length);
637 if (!data_blob_append(call, blob, creds2.data, creds2.length)) {
638 status = NT_STATUS_NO_MEMORY;
641 data_blob_free(&creds2);