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 "librpc/rpc/dcerpc_proto.h"
27 #include "librpc/gen_ndr/ndr_dcerpc.h"
28 #include "auth/credentials/credentials.h"
29 #include "auth/gensec/gensec.h"
30 #include "param/param.h"
33 parse any auth information from a dcerpc bind request
34 return false if we can't handle the auth request for some
35 reason (in which case we send a bind_nak)
37 bool dcesrv_auth_bind(struct dcesrv_call_state
*call
)
39 struct cli_credentials
*server_credentials
;
40 struct ncacn_packet
*pkt
= &call
->pkt
;
41 struct dcesrv_connection
*dce_conn
= call
->conn
;
42 struct dcesrv_auth
*auth
= &dce_conn
->auth_state
;
44 enum ndr_err_code ndr_err
;
46 if (pkt
->u
.bind
.auth_info
.length
== 0) {
47 dce_conn
->auth_state
.auth_info
= NULL
;
51 dce_conn
->auth_state
.auth_info
= talloc(dce_conn
, struct dcerpc_auth
);
52 if (!dce_conn
->auth_state
.auth_info
) {
56 ndr_err
= ndr_pull_struct_blob(&pkt
->u
.bind
.auth_info
,
58 dce_conn
->auth_state
.auth_info
,
59 (ndr_pull_flags_fn_t
)ndr_pull_dcerpc_auth
);
60 if (!NDR_ERR_CODE_IS_SUCCESS(ndr_err
)) {
64 status
= gensec_server_start(dce_conn
, call
->event_ctx
, call
->conn
->dce_ctx
->lp_ctx
, call
->msg_ctx
, &auth
->gensec_security
);
65 if (!NT_STATUS_IS_OK(status
)) {
66 DEBUG(1, ("Failed to start GENSEC for DCERPC server: %s\n", nt_errstr(status
)));
71 = cli_credentials_init(call
);
72 if (!server_credentials
) {
73 DEBUG(1, ("Failed to init server credentials\n"));
77 cli_credentials_set_conf(server_credentials
, call
->conn
->dce_ctx
->lp_ctx
);
78 status
= cli_credentials_set_machine_account(server_credentials
, call
->conn
->dce_ctx
->lp_ctx
);
79 if (!NT_STATUS_IS_OK(status
)) {
80 DEBUG(10, ("Failed to obtain server credentials, perhaps a standalone server?: %s\n", nt_errstr(status
)));
81 talloc_free(server_credentials
);
82 server_credentials
= NULL
;
85 gensec_set_credentials(auth
->gensec_security
, server_credentials
);
87 status
= gensec_start_mech_by_authtype(auth
->gensec_security
, auth
->auth_info
->auth_type
,
88 auth
->auth_info
->auth_level
);
90 if (!NT_STATUS_IS_OK(status
)) {
91 DEBUG(1, ("Failed to start GENSEC mechanism for DCERPC server: auth_type=%d, auth_level=%d: %s\n",
92 (int)auth
->auth_info
->auth_type
,
93 (int)auth
->auth_info
->auth_level
,
102 add any auth information needed in a bind ack, and process the authentication
103 information found in the bind.
105 NTSTATUS
dcesrv_auth_bind_ack(struct dcesrv_call_state
*call
, struct ncacn_packet
*pkt
)
107 struct dcesrv_connection
*dce_conn
= call
->conn
;
110 if (!call
->conn
->auth_state
.gensec_security
) {
114 status
= gensec_update(dce_conn
->auth_state
.gensec_security
,
116 dce_conn
->auth_state
.auth_info
->credentials
,
117 &dce_conn
->auth_state
.auth_info
->credentials
);
119 if (NT_STATUS_IS_OK(status
)) {
120 status
= gensec_session_info(dce_conn
->auth_state
.gensec_security
,
121 &dce_conn
->auth_state
.session_info
);
122 if (!NT_STATUS_IS_OK(status
)) {
123 DEBUG(1, ("Failed to establish session_info: %s\n", nt_errstr(status
)));
127 if (dce_conn
->state_flags
& DCESRV_CALL_STATE_FLAG_HEADER_SIGNING
) {
128 gensec_want_feature(dce_conn
->auth_state
.gensec_security
,
129 GENSEC_FEATURE_SIGN_PKT_HEADER
);
132 /* Now that we are authenticated, go back to the generic session key... */
133 dce_conn
->auth_state
.session_key
= dcesrv_generic_session_key
;
135 } else if (NT_STATUS_EQUAL(status
, NT_STATUS_MORE_PROCESSING_REQUIRED
)) {
136 dce_conn
->auth_state
.auth_info
->auth_pad_length
= 0;
137 dce_conn
->auth_state
.auth_info
->auth_reserved
= 0;
140 DEBUG(2, ("Failed to start dcesrv auth negotiate: %s\n", nt_errstr(status
)));
147 process the final stage of a auth request
149 bool dcesrv_auth_auth3(struct dcesrv_call_state
*call
)
151 struct ncacn_packet
*pkt
= &call
->pkt
;
152 struct dcesrv_connection
*dce_conn
= call
->conn
;
154 enum ndr_err_code ndr_err
;
156 /* We can't work without an existing gensec state, and an new blob to feed it */
157 if (!dce_conn
->auth_state
.auth_info
||
158 !dce_conn
->auth_state
.gensec_security
||
159 pkt
->u
.auth3
.auth_info
.length
== 0) {
163 ndr_err
= ndr_pull_struct_blob(&pkt
->u
.auth3
.auth_info
,
165 dce_conn
->auth_state
.auth_info
,
166 (ndr_pull_flags_fn_t
)ndr_pull_dcerpc_auth
);
167 if (!NDR_ERR_CODE_IS_SUCCESS(ndr_err
)) {
171 /* Pass the extra data we got from the client down to gensec for processing */
172 status
= gensec_update(dce_conn
->auth_state
.gensec_security
,
174 dce_conn
->auth_state
.auth_info
->credentials
,
175 &dce_conn
->auth_state
.auth_info
->credentials
);
176 if (NT_STATUS_IS_OK(status
)) {
177 status
= gensec_session_info(dce_conn
->auth_state
.gensec_security
,
178 &dce_conn
->auth_state
.session_info
);
179 if (!NT_STATUS_IS_OK(status
)) {
180 DEBUG(1, ("Failed to establish session_info: %s\n", nt_errstr(status
)));
183 /* Now that we are authenticated, go back to the generic session key... */
184 dce_conn
->auth_state
.session_key
= dcesrv_generic_session_key
;
187 DEBUG(4, ("dcesrv_auth_auth3: failed to authenticate: %s\n",
196 parse any auth information from a dcerpc alter request
197 return false if we can't handle the auth request for some
198 reason (in which case we send a bind_nak (is this true for here?))
200 bool dcesrv_auth_alter(struct dcesrv_call_state
*call
)
202 struct ncacn_packet
*pkt
= &call
->pkt
;
203 struct dcesrv_connection
*dce_conn
= call
->conn
;
204 enum ndr_err_code ndr_err
;
206 /* on a pure interface change there is no auth blob */
207 if (pkt
->u
.alter
.auth_info
.length
== 0) {
211 /* We can't work without an existing gensec state */
212 if (!dce_conn
->auth_state
.gensec_security
) {
216 dce_conn
->auth_state
.auth_info
= talloc(dce_conn
, struct dcerpc_auth
);
217 if (!dce_conn
->auth_state
.auth_info
) {
221 ndr_err
= ndr_pull_struct_blob(&pkt
->u
.alter
.auth_info
,
223 dce_conn
->auth_state
.auth_info
,
224 (ndr_pull_flags_fn_t
)ndr_pull_dcerpc_auth
);
225 if (!NDR_ERR_CODE_IS_SUCCESS(ndr_err
)) {
233 add any auth information needed in a alter ack, and process the authentication
234 information found in the alter.
236 NTSTATUS
dcesrv_auth_alter_ack(struct dcesrv_call_state
*call
, struct ncacn_packet
*pkt
)
238 struct dcesrv_connection
*dce_conn
= call
->conn
;
241 /* on a pure interface change there is no auth_info structure
243 if (!call
->conn
->auth_state
.auth_info
||
244 dce_conn
->auth_state
.auth_info
->credentials
.length
== 0) {
248 if (!call
->conn
->auth_state
.gensec_security
) {
249 return NT_STATUS_INVALID_PARAMETER
;
252 status
= gensec_update(dce_conn
->auth_state
.gensec_security
,
254 dce_conn
->auth_state
.auth_info
->credentials
,
255 &dce_conn
->auth_state
.auth_info
->credentials
);
257 if (NT_STATUS_IS_OK(status
)) {
258 status
= gensec_session_info(dce_conn
->auth_state
.gensec_security
,
259 &dce_conn
->auth_state
.session_info
);
260 if (!NT_STATUS_IS_OK(status
)) {
261 DEBUG(1, ("Failed to establish session_info: %s\n", nt_errstr(status
)));
265 /* Now that we are authenticated, got back to the generic session key... */
266 dce_conn
->auth_state
.session_key
= dcesrv_generic_session_key
;
268 } else if (NT_STATUS_EQUAL(status
, NT_STATUS_MORE_PROCESSING_REQUIRED
)) {
269 dce_conn
->auth_state
.auth_info
->auth_pad_length
= 0;
270 dce_conn
->auth_state
.auth_info
->auth_reserved
= 0;
274 DEBUG(2, ("Failed to finish dcesrv auth alter_ack: %s\n", nt_errstr(status
)));
279 check credentials on a request
281 bool dcesrv_auth_request(struct dcesrv_call_state
*call
, DATA_BLOB
*full_packet
)
283 struct ncacn_packet
*pkt
= &call
->pkt
;
284 struct dcesrv_connection
*dce_conn
= call
->conn
;
286 struct dcerpc_auth auth
;
287 struct ndr_pull
*ndr
;
289 enum ndr_err_code ndr_err
;
291 if (!dce_conn
->auth_state
.auth_info
||
292 !dce_conn
->auth_state
.gensec_security
) {
296 switch (dce_conn
->auth_state
.auth_info
->auth_level
) {
297 case DCERPC_AUTH_LEVEL_PRIVACY
:
298 case DCERPC_AUTH_LEVEL_INTEGRITY
:
301 case DCERPC_AUTH_LEVEL_CONNECT
:
302 if (pkt
->auth_length
!= 0) {
306 case DCERPC_AUTH_LEVEL_NONE
:
307 if (pkt
->auth_length
!= 0) {
316 auth_blob
.length
= 8 + pkt
->auth_length
;
318 /* check for a valid length */
319 if (pkt
->u
.request
.stub_and_verifier
.length
< auth_blob
.length
) {
324 pkt
->u
.request
.stub_and_verifier
.data
+
325 pkt
->u
.request
.stub_and_verifier
.length
- auth_blob
.length
;
326 pkt
->u
.request
.stub_and_verifier
.length
-= auth_blob
.length
;
328 /* pull the auth structure */
329 ndr
= ndr_pull_init_blob(&auth_blob
, call
, lp_iconv_convenience(call
->conn
->dce_ctx
->lp_ctx
));
334 if (!(pkt
->drep
[0] & DCERPC_DREP_LE
)) {
335 ndr
->flags
|= LIBNDR_FLAG_BIGENDIAN
;
338 ndr_err
= ndr_pull_dcerpc_auth(ndr
, NDR_SCALARS
|NDR_BUFFERS
, &auth
);
339 if (!NDR_ERR_CODE_IS_SUCCESS(ndr_err
)) {
344 /* check signature or unseal the packet */
345 switch (dce_conn
->auth_state
.auth_info
->auth_level
) {
346 case DCERPC_AUTH_LEVEL_PRIVACY
:
347 status
= gensec_unseal_packet(dce_conn
->auth_state
.gensec_security
,
349 full_packet
->data
+ DCERPC_REQUEST_LENGTH
,
350 pkt
->u
.request
.stub_and_verifier
.length
,
352 full_packet
->length
-auth
.credentials
.length
,
354 memcpy(pkt
->u
.request
.stub_and_verifier
.data
,
355 full_packet
->data
+ DCERPC_REQUEST_LENGTH
,
356 pkt
->u
.request
.stub_and_verifier
.length
);
359 case DCERPC_AUTH_LEVEL_INTEGRITY
:
360 status
= gensec_check_packet(dce_conn
->auth_state
.gensec_security
,
362 pkt
->u
.request
.stub_and_verifier
.data
,
363 pkt
->u
.request
.stub_and_verifier
.length
,
365 full_packet
->length
-auth
.credentials
.length
,
369 case DCERPC_AUTH_LEVEL_CONNECT
:
370 /* for now we ignore possible signatures here */
371 status
= NT_STATUS_OK
;
375 status
= NT_STATUS_INVALID_LEVEL
;
379 /* remove the indicated amount of padding */
380 if (pkt
->u
.request
.stub_and_verifier
.length
< auth
.auth_pad_length
) {
384 pkt
->u
.request
.stub_and_verifier
.length
-= auth
.auth_pad_length
;
387 return NT_STATUS_IS_OK(status
);
392 push a signed or sealed dcerpc request packet into a blob
394 bool dcesrv_auth_response(struct dcesrv_call_state
*call
,
395 DATA_BLOB
*blob
, size_t sig_size
,
396 struct ncacn_packet
*pkt
)
398 struct dcesrv_connection
*dce_conn
= call
->conn
;
400 enum ndr_err_code ndr_err
;
401 struct ndr_push
*ndr
;
402 uint32_t payload_length
;
405 /* non-signed packets are simple */
407 status
= ncacn_push_auth(blob
, call
, lp_iconv_convenience(dce_conn
->dce_ctx
->lp_ctx
), pkt
, NULL
);
408 return NT_STATUS_IS_OK(status
);
411 switch (dce_conn
->auth_state
.auth_info
->auth_level
) {
412 case DCERPC_AUTH_LEVEL_PRIVACY
:
413 case DCERPC_AUTH_LEVEL_INTEGRITY
:
416 case DCERPC_AUTH_LEVEL_CONNECT
:
418 * TODO: let the gensec mech decide if it wants to generate a signature
419 * that might be needed for schannel...
421 status
= ncacn_push_auth(blob
, call
, lp_iconv_convenience(dce_conn
->dce_ctx
->lp_ctx
), pkt
, NULL
);
422 return NT_STATUS_IS_OK(status
);
424 case DCERPC_AUTH_LEVEL_NONE
:
425 status
= ncacn_push_auth(blob
, call
, lp_iconv_convenience(dce_conn
->dce_ctx
->lp_ctx
), pkt
, NULL
);
426 return NT_STATUS_IS_OK(status
);
432 ndr
= ndr_push_init_ctx(call
, lp_iconv_convenience(dce_conn
->dce_ctx
->lp_ctx
));
437 if (!(pkt
->drep
[0] & DCERPC_DREP_LE
)) {
438 ndr
->flags
|= LIBNDR_FLAG_BIGENDIAN
;
441 ndr_err
= ndr_push_ncacn_packet(ndr
, NDR_SCALARS
|NDR_BUFFERS
, pkt
);
442 if (!NDR_ERR_CODE_IS_SUCCESS(ndr_err
)) {
446 /* pad to 16 byte multiple, match win2k3 */
447 dce_conn
->auth_state
.auth_info
->auth_pad_length
=
448 (16 - (pkt
->u
.response
.stub_and_verifier
.length
& 15)) & 15;
449 ndr_err
= ndr_push_zero(ndr
, dce_conn
->auth_state
.auth_info
->auth_pad_length
);
450 if (!NDR_ERR_CODE_IS_SUCCESS(ndr_err
)) {
454 payload_length
= pkt
->u
.response
.stub_and_verifier
.length
+
455 dce_conn
->auth_state
.auth_info
->auth_pad_length
;
457 /* we start without signature, it will appended later */
458 dce_conn
->auth_state
.auth_info
->credentials
= data_blob(NULL
, 0);
460 /* add the auth verifier */
461 ndr_err
= ndr_push_dcerpc_auth(ndr
, NDR_SCALARS
|NDR_BUFFERS
,
462 dce_conn
->auth_state
.auth_info
);
463 if (!NDR_ERR_CODE_IS_SUCCESS(ndr_err
)) {
467 /* extract the whole packet as a blob */
468 *blob
= ndr_push_blob(ndr
);
471 * Setup the frag and auth length in the packet buffer.
472 * This is needed if the GENSEC mech does AEAD signing
473 * of the packet headers. The signature itself will be
476 dcerpc_set_frag_length(blob
, blob
->length
+ sig_size
);
477 dcerpc_set_auth_length(blob
, sig_size
);
479 /* sign or seal the packet */
480 switch (dce_conn
->auth_state
.auth_info
->auth_level
) {
481 case DCERPC_AUTH_LEVEL_PRIVACY
:
482 status
= gensec_seal_packet(dce_conn
->auth_state
.gensec_security
,
484 ndr
->data
+ DCERPC_REQUEST_LENGTH
,
491 case DCERPC_AUTH_LEVEL_INTEGRITY
:
492 status
= gensec_sign_packet(dce_conn
->auth_state
.gensec_security
,
494 ndr
->data
+ DCERPC_REQUEST_LENGTH
,
502 status
= NT_STATUS_INVALID_LEVEL
;
506 if (NT_STATUS_IS_OK(status
)) {
507 if (creds2
.length
!= sig_size
) {
508 DEBUG(0,("dcesrv_auth_response: creds2.length[%u] != sig_size[%u] pad[%u] stub[%u]\n",
509 creds2
.length
, (uint32_t)sig_size
,
510 dce_conn
->auth_state
.auth_info
->auth_pad_length
,
511 pkt
->u
.response
.stub_and_verifier
.length
));
512 data_blob_free(&creds2
);
513 status
= NT_STATUS_INTERNAL_ERROR
;
517 if (NT_STATUS_IS_OK(status
)) {
518 if (!data_blob_append(call
, blob
, creds2
.data
, creds2
.length
)) {
519 status
= NT_STATUS_NO_MEMORY
;
521 data_blob_free(&creds2
);
524 if (!NT_STATUS_IS_OK(status
)) {