2 * Unix SMB/CIFS implementation.
3 * RPC Pipe client / server routines
4 * Almost completely rewritten by (C) Jeremy Allison 2005.
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/>.
20 /* this module apparently provides an implementation of DCE/RPC over a
21 * named pipe (IPC$ connection using SMBtrans). details of DCE/RPC
22 * documentation are available (in on-line form) from the X-Open group.
24 * this module should provide a level of abstraction between SMB
25 * and DCE/RPC, while minimising the amount of mallocs, unnecessary
26 * data copies, and network traffic.
32 extern struct current_user current_user
;
35 #define DBGC_CLASS DBGC_RPC_SRV
37 static void free_pipe_ntlmssp_auth_data(struct pipe_auth_data
*auth
)
39 AUTH_NTLMSSP_STATE
*a
= auth
->a_u
.auth_ntlmssp_state
;
44 auth
->a_u
.auth_ntlmssp_state
= NULL
;
47 static DATA_BLOB
generic_session_key(void)
49 return data_blob("SystemLibraryDTC", 16);
52 /*******************************************************************
53 Generate the next PDU to be returned from the data in p->rdata.
55 ********************************************************************/
57 static bool create_next_pdu_ntlmssp(pipes_struct
*p
)
59 RPC_HDR_RESP hdr_resp
;
60 uint32 ss_padding_len
= 0;
61 uint32 data_space_available
;
64 prs_struct outgoing_pdu
;
67 RPC_HDR_AUTH auth_info
;
68 uint8 auth_type
, auth_level
;
69 AUTH_NTLMSSP_STATE
*a
= p
->auth
.a_u
.auth_ntlmssp_state
;
72 * If we're in the fault state, keep returning fault PDU's until
73 * the pipe gets closed. JRA.
77 setup_fault_pdu(p
, NT_STATUS(DCERPC_FAULT_OP_RNG_ERROR
));
81 memset((char *)&hdr_resp
, '\0', sizeof(hdr_resp
));
83 /* Change the incoming request header to a response. */
84 p
->hdr
.pkt_type
= RPC_RESPONSE
;
86 /* Set up rpc header flags. */
87 if (p
->out_data
.data_sent_length
== 0) {
88 p
->hdr
.flags
= RPC_FLG_FIRST
;
94 * Work out how much we can fit in a single PDU.
97 data_len_left
= prs_offset(&p
->out_data
.rdata
) - p
->out_data
.data_sent_length
;
100 * Ensure there really is data left to send.
104 DEBUG(0,("create_next_pdu_ntlmssp: no data left to send !\n"));
108 data_space_available
= sizeof(p
->out_data
.current_pdu
) - RPC_HEADER_LEN
- RPC_HDR_RESP_LEN
-
109 RPC_HDR_AUTH_LEN
- NTLMSSP_SIG_SIZE
;
112 * The amount we send is the minimum of the available
113 * space and the amount left to send.
116 data_len
= MIN(data_len_left
, data_space_available
);
119 * Set up the alloc hint. This should be the data left to
123 hdr_resp
.alloc_hint
= data_len_left
;
126 * Work out if this PDU will be the last.
129 if(p
->out_data
.data_sent_length
+ data_len
>= prs_offset(&p
->out_data
.rdata
)) {
130 p
->hdr
.flags
|= RPC_FLG_LAST
;
131 if (data_len_left
% 8) {
132 ss_padding_len
= 8 - (data_len_left
% 8);
133 DEBUG(10,("create_next_pdu_ntlmssp: adding sign/seal padding of %u\n",
139 * Set up the header lengths.
142 p
->hdr
.frag_len
= RPC_HEADER_LEN
+ RPC_HDR_RESP_LEN
+
143 data_len
+ ss_padding_len
+
144 RPC_HDR_AUTH_LEN
+ NTLMSSP_SIG_SIZE
;
145 p
->hdr
.auth_len
= NTLMSSP_SIG_SIZE
;
149 * Init the parse struct to point at the outgoing
153 prs_init_empty( &outgoing_pdu
, p
->mem_ctx
, MARSHALL
);
154 prs_give_memory( &outgoing_pdu
, (char *)p
->out_data
.current_pdu
, sizeof(p
->out_data
.current_pdu
), False
);
156 /* Store the header in the data stream. */
157 if(!smb_io_rpc_hdr("hdr", &p
->hdr
, &outgoing_pdu
, 0)) {
158 DEBUG(0,("create_next_pdu_ntlmssp: failed to marshall RPC_HDR.\n"));
159 prs_mem_free(&outgoing_pdu
);
163 if(!smb_io_rpc_hdr_resp("resp", &hdr_resp
, &outgoing_pdu
, 0)) {
164 DEBUG(0,("create_next_pdu_ntlmssp: failed to marshall RPC_HDR_RESP.\n"));
165 prs_mem_free(&outgoing_pdu
);
169 /* Copy the data into the PDU. */
171 if(!prs_append_some_prs_data(&outgoing_pdu
, &p
->out_data
.rdata
, p
->out_data
.data_sent_length
, data_len
)) {
172 DEBUG(0,("create_next_pdu_ntlmssp: failed to copy %u bytes of data.\n", (unsigned int)data_len
));
173 prs_mem_free(&outgoing_pdu
);
177 /* Copy the sign/seal padding data. */
178 if (ss_padding_len
) {
181 memset(pad
, '\0', 8);
182 if (!prs_copy_data_in(&outgoing_pdu
, pad
, ss_padding_len
)) {
183 DEBUG(0,("create_next_pdu_ntlmssp: failed to add %u bytes of pad data.\n",
184 (unsigned int)ss_padding_len
));
185 prs_mem_free(&outgoing_pdu
);
191 /* Now write out the auth header and null blob. */
192 if (p
->auth
.auth_type
== PIPE_AUTH_TYPE_NTLMSSP
) {
193 auth_type
= RPC_NTLMSSP_AUTH_TYPE
;
195 auth_type
= RPC_SPNEGO_AUTH_TYPE
;
197 if (p
->auth
.auth_level
== PIPE_AUTH_LEVEL_PRIVACY
) {
198 auth_level
= RPC_AUTH_LEVEL_PRIVACY
;
200 auth_level
= RPC_AUTH_LEVEL_INTEGRITY
;
203 init_rpc_hdr_auth(&auth_info
, auth_type
, auth_level
, ss_padding_len
, 1 /* context id. */);
204 if(!smb_io_rpc_hdr_auth("hdr_auth", &auth_info
, &outgoing_pdu
, 0)) {
205 DEBUG(0,("create_next_pdu_ntlmssp: failed to marshall RPC_HDR_AUTH.\n"));
206 prs_mem_free(&outgoing_pdu
);
210 /* Generate the sign blob. */
212 switch (p
->auth
.auth_level
) {
213 case PIPE_AUTH_LEVEL_PRIVACY
:
214 /* Data portion is encrypted. */
215 status
= ntlmssp_seal_packet(a
->ntlmssp_state
,
216 (unsigned char *)prs_data_p(&outgoing_pdu
) + RPC_HEADER_LEN
+ RPC_HDR_RESP_LEN
,
217 data_len
+ ss_padding_len
,
218 (unsigned char *)prs_data_p(&outgoing_pdu
),
219 (size_t)prs_offset(&outgoing_pdu
),
221 if (!NT_STATUS_IS_OK(status
)) {
222 data_blob_free(&auth_blob
);
223 prs_mem_free(&outgoing_pdu
);
227 case PIPE_AUTH_LEVEL_INTEGRITY
:
228 /* Data is signed. */
229 status
= ntlmssp_sign_packet(a
->ntlmssp_state
,
230 (unsigned char *)prs_data_p(&outgoing_pdu
) + RPC_HEADER_LEN
+ RPC_HDR_RESP_LEN
,
231 data_len
+ ss_padding_len
,
232 (unsigned char *)prs_data_p(&outgoing_pdu
),
233 (size_t)prs_offset(&outgoing_pdu
),
235 if (!NT_STATUS_IS_OK(status
)) {
236 data_blob_free(&auth_blob
);
237 prs_mem_free(&outgoing_pdu
);
242 prs_mem_free(&outgoing_pdu
);
246 /* Append the auth blob. */
247 if (!prs_copy_data_in(&outgoing_pdu
, (char *)auth_blob
.data
, NTLMSSP_SIG_SIZE
)) {
248 DEBUG(0,("create_next_pdu_ntlmssp: failed to add %u bytes auth blob.\n",
249 (unsigned int)NTLMSSP_SIG_SIZE
));
250 data_blob_free(&auth_blob
);
251 prs_mem_free(&outgoing_pdu
);
255 data_blob_free(&auth_blob
);
258 * Setup the counts for this PDU.
261 p
->out_data
.data_sent_length
+= data_len
;
262 p
->out_data
.current_pdu_len
= p
->hdr
.frag_len
;
263 p
->out_data
.current_pdu_sent
= 0;
265 prs_mem_free(&outgoing_pdu
);
269 /*******************************************************************
270 Generate the next PDU to be returned from the data in p->rdata.
271 Return an schannel authenticated fragment.
272 ********************************************************************/
274 static bool create_next_pdu_schannel(pipes_struct
*p
)
276 RPC_HDR_RESP hdr_resp
;
277 uint32 ss_padding_len
= 0;
279 uint32 data_space_available
;
280 uint32 data_len_left
;
281 prs_struct outgoing_pdu
;
285 * If we're in the fault state, keep returning fault PDU's until
286 * the pipe gets closed. JRA.
290 setup_fault_pdu(p
, NT_STATUS(DCERPC_FAULT_OP_RNG_ERROR
));
294 memset((char *)&hdr_resp
, '\0', sizeof(hdr_resp
));
296 /* Change the incoming request header to a response. */
297 p
->hdr
.pkt_type
= RPC_RESPONSE
;
299 /* Set up rpc header flags. */
300 if (p
->out_data
.data_sent_length
== 0) {
301 p
->hdr
.flags
= RPC_FLG_FIRST
;
307 * Work out how much we can fit in a single PDU.
310 data_len_left
= prs_offset(&p
->out_data
.rdata
) - p
->out_data
.data_sent_length
;
313 * Ensure there really is data left to send.
317 DEBUG(0,("create_next_pdu_schannel: no data left to send !\n"));
321 data_space_available
= sizeof(p
->out_data
.current_pdu
) - RPC_HEADER_LEN
- RPC_HDR_RESP_LEN
-
322 RPC_HDR_AUTH_LEN
- RPC_AUTH_SCHANNEL_SIGN_OR_SEAL_CHK_LEN
;
325 * The amount we send is the minimum of the available
326 * space and the amount left to send.
329 data_len
= MIN(data_len_left
, data_space_available
);
332 * Set up the alloc hint. This should be the data left to
336 hdr_resp
.alloc_hint
= data_len_left
;
339 * Work out if this PDU will be the last.
342 if(p
->out_data
.data_sent_length
+ data_len
>= prs_offset(&p
->out_data
.rdata
)) {
343 p
->hdr
.flags
|= RPC_FLG_LAST
;
344 if (data_len_left
% 8) {
345 ss_padding_len
= 8 - (data_len_left
% 8);
346 DEBUG(10,("create_next_pdu_schannel: adding sign/seal padding of %u\n",
351 p
->hdr
.frag_len
= RPC_HEADER_LEN
+ RPC_HDR_RESP_LEN
+ data_len
+ ss_padding_len
+
352 RPC_HDR_AUTH_LEN
+ RPC_AUTH_SCHANNEL_SIGN_OR_SEAL_CHK_LEN
;
353 p
->hdr
.auth_len
= RPC_AUTH_SCHANNEL_SIGN_OR_SEAL_CHK_LEN
;
356 * Init the parse struct to point at the outgoing
360 prs_init_empty( &outgoing_pdu
, p
->mem_ctx
, MARSHALL
);
361 prs_give_memory( &outgoing_pdu
, (char *)p
->out_data
.current_pdu
, sizeof(p
->out_data
.current_pdu
), False
);
363 /* Store the header in the data stream. */
364 if(!smb_io_rpc_hdr("hdr", &p
->hdr
, &outgoing_pdu
, 0)) {
365 DEBUG(0,("create_next_pdu_schannel: failed to marshall RPC_HDR.\n"));
366 prs_mem_free(&outgoing_pdu
);
370 if(!smb_io_rpc_hdr_resp("resp", &hdr_resp
, &outgoing_pdu
, 0)) {
371 DEBUG(0,("create_next_pdu_schannel: failed to marshall RPC_HDR_RESP.\n"));
372 prs_mem_free(&outgoing_pdu
);
376 /* Store the current offset. */
377 data_pos
= prs_offset(&outgoing_pdu
);
379 /* Copy the data into the PDU. */
381 if(!prs_append_some_prs_data(&outgoing_pdu
, &p
->out_data
.rdata
, p
->out_data
.data_sent_length
, data_len
)) {
382 DEBUG(0,("create_next_pdu_schannel: failed to copy %u bytes of data.\n", (unsigned int)data_len
));
383 prs_mem_free(&outgoing_pdu
);
387 /* Copy the sign/seal padding data. */
388 if (ss_padding_len
) {
390 memset(pad
, '\0', 8);
391 if (!prs_copy_data_in(&outgoing_pdu
, pad
, ss_padding_len
)) {
392 DEBUG(0,("create_next_pdu_schannel: failed to add %u bytes of pad data.\n", (unsigned int)ss_padding_len
));
393 prs_mem_free(&outgoing_pdu
);
400 * Schannel processing.
403 RPC_HDR_AUTH auth_info
;
404 RPC_AUTH_SCHANNEL_CHK verf
;
406 data
= prs_data_p(&outgoing_pdu
) + data_pos
;
407 /* Check it's the type of reply we were expecting to decode */
409 init_rpc_hdr_auth(&auth_info
,
410 RPC_SCHANNEL_AUTH_TYPE
,
411 p
->auth
.auth_level
== PIPE_AUTH_LEVEL_PRIVACY
?
412 RPC_AUTH_LEVEL_PRIVACY
: RPC_AUTH_LEVEL_INTEGRITY
,
415 if(!smb_io_rpc_hdr_auth("hdr_auth", &auth_info
, &outgoing_pdu
, 0)) {
416 DEBUG(0,("create_next_pdu_schannel: failed to marshall RPC_HDR_AUTH.\n"));
417 prs_mem_free(&outgoing_pdu
);
421 schannel_encode(p
->auth
.a_u
.schannel_auth
,
424 &verf
, data
, data_len
+ ss_padding_len
);
426 if (!smb_io_rpc_auth_schannel_chk("", RPC_AUTH_SCHANNEL_SIGN_OR_SEAL_CHK_LEN
,
427 &verf
, &outgoing_pdu
, 0)) {
428 prs_mem_free(&outgoing_pdu
);
432 p
->auth
.a_u
.schannel_auth
->seq_num
++;
436 * Setup the counts for this PDU.
439 p
->out_data
.data_sent_length
+= data_len
;
440 p
->out_data
.current_pdu_len
= p
->hdr
.frag_len
;
441 p
->out_data
.current_pdu_sent
= 0;
443 prs_mem_free(&outgoing_pdu
);
447 /*******************************************************************
448 Generate the next PDU to be returned from the data in p->rdata.
449 No authentication done.
450 ********************************************************************/
452 static bool create_next_pdu_noauth(pipes_struct
*p
)
454 RPC_HDR_RESP hdr_resp
;
456 uint32 data_space_available
;
457 uint32 data_len_left
;
458 prs_struct outgoing_pdu
;
461 * If we're in the fault state, keep returning fault PDU's until
462 * the pipe gets closed. JRA.
466 setup_fault_pdu(p
, NT_STATUS(DCERPC_FAULT_OP_RNG_ERROR
));
470 memset((char *)&hdr_resp
, '\0', sizeof(hdr_resp
));
472 /* Change the incoming request header to a response. */
473 p
->hdr
.pkt_type
= RPC_RESPONSE
;
475 /* Set up rpc header flags. */
476 if (p
->out_data
.data_sent_length
== 0) {
477 p
->hdr
.flags
= RPC_FLG_FIRST
;
483 * Work out how much we can fit in a single PDU.
486 data_len_left
= prs_offset(&p
->out_data
.rdata
) - p
->out_data
.data_sent_length
;
489 * Ensure there really is data left to send.
493 DEBUG(0,("create_next_pdu_noath: no data left to send !\n"));
497 data_space_available
= sizeof(p
->out_data
.current_pdu
) - RPC_HEADER_LEN
- RPC_HDR_RESP_LEN
;
500 * The amount we send is the minimum of the available
501 * space and the amount left to send.
504 data_len
= MIN(data_len_left
, data_space_available
);
507 * Set up the alloc hint. This should be the data left to
511 hdr_resp
.alloc_hint
= data_len_left
;
514 * Work out if this PDU will be the last.
517 if(p
->out_data
.data_sent_length
+ data_len
>= prs_offset(&p
->out_data
.rdata
)) {
518 p
->hdr
.flags
|= RPC_FLG_LAST
;
522 * Set up the header lengths.
525 p
->hdr
.frag_len
= RPC_HEADER_LEN
+ RPC_HDR_RESP_LEN
+ data_len
;
529 * Init the parse struct to point at the outgoing
533 prs_init_empty( &outgoing_pdu
, p
->mem_ctx
, MARSHALL
);
534 prs_give_memory( &outgoing_pdu
, (char *)p
->out_data
.current_pdu
, sizeof(p
->out_data
.current_pdu
), False
);
536 /* Store the header in the data stream. */
537 if(!smb_io_rpc_hdr("hdr", &p
->hdr
, &outgoing_pdu
, 0)) {
538 DEBUG(0,("create_next_pdu_noath: failed to marshall RPC_HDR.\n"));
539 prs_mem_free(&outgoing_pdu
);
543 if(!smb_io_rpc_hdr_resp("resp", &hdr_resp
, &outgoing_pdu
, 0)) {
544 DEBUG(0,("create_next_pdu_noath: failed to marshall RPC_HDR_RESP.\n"));
545 prs_mem_free(&outgoing_pdu
);
549 /* Copy the data into the PDU. */
551 if(!prs_append_some_prs_data(&outgoing_pdu
, &p
->out_data
.rdata
, p
->out_data
.data_sent_length
, data_len
)) {
552 DEBUG(0,("create_next_pdu_noauth: failed to copy %u bytes of data.\n", (unsigned int)data_len
));
553 prs_mem_free(&outgoing_pdu
);
558 * Setup the counts for this PDU.
561 p
->out_data
.data_sent_length
+= data_len
;
562 p
->out_data
.current_pdu_len
= p
->hdr
.frag_len
;
563 p
->out_data
.current_pdu_sent
= 0;
565 prs_mem_free(&outgoing_pdu
);
569 /*******************************************************************
570 Generate the next PDU to be returned from the data in p->rdata.
571 ********************************************************************/
573 bool create_next_pdu(pipes_struct
*p
)
575 switch(p
->auth
.auth_level
) {
576 case PIPE_AUTH_LEVEL_NONE
:
577 case PIPE_AUTH_LEVEL_CONNECT
:
578 /* This is incorrect for auth level connect. Fixme. JRA */
579 return create_next_pdu_noauth(p
);
582 switch(p
->auth
.auth_type
) {
583 case PIPE_AUTH_TYPE_NTLMSSP
:
584 case PIPE_AUTH_TYPE_SPNEGO_NTLMSSP
:
585 return create_next_pdu_ntlmssp(p
);
586 case PIPE_AUTH_TYPE_SCHANNEL
:
587 return create_next_pdu_schannel(p
);
593 DEBUG(0,("create_next_pdu: invalid internal auth level %u / type %u",
594 (unsigned int)p
->auth
.auth_level
,
595 (unsigned int)p
->auth
.auth_type
));
599 /*******************************************************************
600 Process an NTLMSSP authentication response.
601 If this function succeeds, the user has been authenticated
602 and their domain, name and calling workstation stored in
604 *******************************************************************/
606 static bool pipe_ntlmssp_verify_final(pipes_struct
*p
, DATA_BLOB
*p_resp_blob
)
608 DATA_BLOB session_key
, reply
;
610 AUTH_NTLMSSP_STATE
*a
= p
->auth
.a_u
.auth_ntlmssp_state
;
613 DEBUG(5,("pipe_ntlmssp_verify_final: pipe %s checking user details\n", p
->name
));
617 /* Set up for non-authenticated user. */
618 TALLOC_FREE(p
->pipe_user
.nt_user_token
);
619 p
->pipe_user
.ut
.ngroups
= 0;
620 SAFE_FREE( p
->pipe_user
.ut
.groups
);
622 /* this has to be done as root in order to verify the password */
624 status
= auth_ntlmssp_update(a
, *p_resp_blob
, &reply
);
627 /* Don't generate a reply. */
628 data_blob_free(&reply
);
630 if (!NT_STATUS_IS_OK(status
)) {
634 /* Finally - if the pipe negotiated integrity (sign) or privacy (seal)
635 ensure the underlying NTLMSSP flags are also set. If not we should
638 if (p
->auth
.auth_level
== PIPE_AUTH_LEVEL_INTEGRITY
) {
639 if (!(a
->ntlmssp_state
->neg_flags
& NTLMSSP_NEGOTIATE_SIGN
)) {
640 DEBUG(0,("pipe_ntlmssp_verify_final: pipe %s : packet integrity requested "
641 "but client declined signing.\n",
646 if (p
->auth
.auth_level
== PIPE_AUTH_LEVEL_PRIVACY
) {
647 if (!(a
->ntlmssp_state
->neg_flags
& NTLMSSP_NEGOTIATE_SEAL
)) {
648 DEBUG(0,("pipe_ntlmssp_verify_final: pipe %s : packet privacy requested "
649 "but client declined sealing.\n",
655 DEBUG(5, ("pipe_ntlmssp_verify_final: OK: user: %s domain: %s "
656 "workstation: %s\n", a
->ntlmssp_state
->user
,
657 a
->ntlmssp_state
->domain
, a
->ntlmssp_state
->workstation
));
660 * Store the UNIX credential data (uid/gid pair) in the pipe structure.
663 p
->pipe_user
.ut
.uid
= a
->server_info
->utok
.uid
;
664 p
->pipe_user
.ut
.gid
= a
->server_info
->utok
.gid
;
666 p
->pipe_user
.ut
.ngroups
= a
->server_info
->utok
.ngroups
;
667 if (p
->pipe_user
.ut
.ngroups
) {
668 if (!(p
->pipe_user
.ut
.groups
= (gid_t
*)memdup(
669 a
->server_info
->utok
.groups
,
670 sizeof(gid_t
) * p
->pipe_user
.ut
.ngroups
))) {
671 DEBUG(0,("failed to memdup group list to p->pipe_user.groups\n"));
676 if (a
->server_info
->ptok
) {
677 p
->pipe_user
.nt_user_token
=
678 dup_nt_token(NULL
, a
->server_info
->ptok
);
680 DEBUG(1,("Error: Authmodule failed to provide nt_user_token\n"));
681 p
->pipe_user
.nt_user_token
= NULL
;
685 TALLOC_FREE(p
->server_info
);
687 p
->server_info
= copy_serverinfo(p
, a
->server_info
);
688 if (p
->server_info
== NULL
) {
689 DEBUG(0, ("copy_serverinfo failed\n"));
694 * We're an authenticated bind over smb, so the session key needs to
695 * be set to "SystemLibraryDTC". Weird, but this is what Windows
696 * does. See the RPC-SAMBA3SESSIONKEY.
699 session_key
= generic_session_key();
700 if (session_key
.data
== NULL
) {
704 ret
= server_info_set_session_key(p
->server_info
, session_key
);
706 data_blob_free(&session_key
);
711 /*******************************************************************
712 The switch table for the pipe names and the functions to handle them.
713 *******************************************************************/
720 struct ndr_syntax_id rpc_interface
;
721 const struct api_struct
*cmds
;
725 static struct rpc_table
*rpc_lookup
;
726 static int rpc_lookup_size
;
728 /*******************************************************************
729 This is the "stage3" NTLMSSP response after a bind request and reply.
730 *******************************************************************/
732 bool api_pipe_bind_auth3(pipes_struct
*p
, prs_struct
*rpc_in_p
)
734 RPC_HDR_AUTH auth_info
;
740 DEBUG(5,("api_pipe_bind_auth3: decode request. %d\n", __LINE__
));
742 if (p
->hdr
.auth_len
== 0) {
743 DEBUG(0,("api_pipe_bind_auth3: No auth field sent !\n"));
747 /* 4 bytes padding. */
748 if (!prs_uint32("pad", rpc_in_p
, 0, &pad
)) {
749 DEBUG(0,("api_pipe_bind_auth3: unmarshall of 4 byte pad failed.\n"));
754 * Decode the authentication verifier response.
757 if(!smb_io_rpc_hdr_auth("", &auth_info
, rpc_in_p
, 0)) {
758 DEBUG(0,("api_pipe_bind_auth3: unmarshall of RPC_HDR_AUTH failed.\n"));
762 if (auth_info
.auth_type
!= RPC_NTLMSSP_AUTH_TYPE
) {
763 DEBUG(0,("api_pipe_bind_auth3: incorrect auth type (%u).\n",
764 (unsigned int)auth_info
.auth_type
));
768 blob
= data_blob(NULL
,p
->hdr
.auth_len
);
770 if (!prs_copy_data_out((char *)blob
.data
, rpc_in_p
, p
->hdr
.auth_len
)) {
771 DEBUG(0,("api_pipe_bind_auth3: Failed to pull %u bytes - the response blob.\n",
772 (unsigned int)p
->hdr
.auth_len
));
777 * The following call actually checks the challenge/response data.
778 * for correctness against the given DOMAIN\user name.
781 if (!pipe_ntlmssp_verify_final(p
, &blob
)) {
785 data_blob_free(&blob
);
787 p
->pipe_bound
= True
;
793 data_blob_free(&blob
);
794 free_pipe_ntlmssp_auth_data(&p
->auth
);
795 p
->auth
.a_u
.auth_ntlmssp_state
= NULL
;
800 /*******************************************************************
801 Marshall a bind_nak pdu.
802 *******************************************************************/
804 static bool setup_bind_nak(pipes_struct
*p
)
806 prs_struct outgoing_rpc
;
810 /* Free any memory in the current return data buffer. */
811 prs_mem_free(&p
->out_data
.rdata
);
814 * Marshall directly into the outgoing PDU space. We
815 * must do this as we need to set to the bind response
816 * header and are never sending more than one PDU here.
819 prs_init_empty( &outgoing_rpc
, p
->mem_ctx
, MARSHALL
);
820 prs_give_memory( &outgoing_rpc
, (char *)p
->out_data
.current_pdu
, sizeof(p
->out_data
.current_pdu
), False
);
823 * Initialize a bind_nak header.
826 init_rpc_hdr(&nak_hdr
, RPC_BINDNACK
, RPC_FLG_FIRST
| RPC_FLG_LAST
,
827 p
->hdr
.call_id
, RPC_HEADER_LEN
+ sizeof(uint16
), 0);
830 * Marshall the header into the outgoing PDU.
833 if(!smb_io_rpc_hdr("", &nak_hdr
, &outgoing_rpc
, 0)) {
834 DEBUG(0,("setup_bind_nak: marshalling of RPC_HDR failed.\n"));
835 prs_mem_free(&outgoing_rpc
);
840 * Now add the reject reason.
843 if(!prs_uint16("reject code", &outgoing_rpc
, 0, &zero
)) {
844 prs_mem_free(&outgoing_rpc
);
848 p
->out_data
.data_sent_length
= 0;
849 p
->out_data
.current_pdu_len
= prs_offset(&outgoing_rpc
);
850 p
->out_data
.current_pdu_sent
= 0;
852 if (p
->auth
.auth_data_free_func
) {
853 (*p
->auth
.auth_data_free_func
)(&p
->auth
);
855 p
->auth
.auth_level
= PIPE_AUTH_LEVEL_NONE
;
856 p
->auth
.auth_type
= PIPE_AUTH_TYPE_NONE
;
857 p
->pipe_bound
= False
;
862 /*******************************************************************
863 Marshall a fault pdu.
864 *******************************************************************/
866 bool setup_fault_pdu(pipes_struct
*p
, NTSTATUS status
)
868 prs_struct outgoing_pdu
;
870 RPC_HDR_RESP hdr_resp
;
871 RPC_HDR_FAULT fault_resp
;
873 /* Free any memory in the current return data buffer. */
874 prs_mem_free(&p
->out_data
.rdata
);
877 * Marshall directly into the outgoing PDU space. We
878 * must do this as we need to set to the bind response
879 * header and are never sending more than one PDU here.
882 prs_init_empty( &outgoing_pdu
, p
->mem_ctx
, MARSHALL
);
883 prs_give_memory( &outgoing_pdu
, (char *)p
->out_data
.current_pdu
, sizeof(p
->out_data
.current_pdu
), False
);
886 * Initialize a fault header.
889 init_rpc_hdr(&fault_hdr
, RPC_FAULT
, RPC_FLG_FIRST
| RPC_FLG_LAST
| RPC_FLG_NOCALL
,
890 p
->hdr
.call_id
, RPC_HEADER_LEN
+ RPC_HDR_RESP_LEN
+ RPC_HDR_FAULT_LEN
, 0);
893 * Initialize the HDR_RESP and FAULT parts of the PDU.
896 memset((char *)&hdr_resp
, '\0', sizeof(hdr_resp
));
898 fault_resp
.status
= status
;
899 fault_resp
.reserved
= 0;
902 * Marshall the header into the outgoing PDU.
905 if(!smb_io_rpc_hdr("", &fault_hdr
, &outgoing_pdu
, 0)) {
906 DEBUG(0,("setup_fault_pdu: marshalling of RPC_HDR failed.\n"));
907 prs_mem_free(&outgoing_pdu
);
911 if(!smb_io_rpc_hdr_resp("resp", &hdr_resp
, &outgoing_pdu
, 0)) {
912 DEBUG(0,("setup_fault_pdu: failed to marshall RPC_HDR_RESP.\n"));
913 prs_mem_free(&outgoing_pdu
);
917 if(!smb_io_rpc_hdr_fault("fault", &fault_resp
, &outgoing_pdu
, 0)) {
918 DEBUG(0,("setup_fault_pdu: failed to marshall RPC_HDR_FAULT.\n"));
919 prs_mem_free(&outgoing_pdu
);
923 p
->out_data
.data_sent_length
= 0;
924 p
->out_data
.current_pdu_len
= prs_offset(&outgoing_pdu
);
925 p
->out_data
.current_pdu_sent
= 0;
927 prs_mem_free(&outgoing_pdu
);
932 /*******************************************************************
933 Marshall a cancel_ack pdu.
934 We should probably check the auth-verifier here.
935 *******************************************************************/
937 bool setup_cancel_ack_reply(pipes_struct
*p
, prs_struct
*rpc_in_p
)
939 prs_struct outgoing_pdu
;
940 RPC_HDR ack_reply_hdr
;
942 /* Free any memory in the current return data buffer. */
943 prs_mem_free(&p
->out_data
.rdata
);
946 * Marshall directly into the outgoing PDU space. We
947 * must do this as we need to set to the bind response
948 * header and are never sending more than one PDU here.
951 prs_init_empty( &outgoing_pdu
, p
->mem_ctx
, MARSHALL
);
952 prs_give_memory( &outgoing_pdu
, (char *)p
->out_data
.current_pdu
, sizeof(p
->out_data
.current_pdu
), False
);
955 * Initialize a cancel_ack header.
958 init_rpc_hdr(&ack_reply_hdr
, RPC_CANCEL_ACK
, RPC_FLG_FIRST
| RPC_FLG_LAST
,
959 p
->hdr
.call_id
, RPC_HEADER_LEN
, 0);
962 * Marshall the header into the outgoing PDU.
965 if(!smb_io_rpc_hdr("", &ack_reply_hdr
, &outgoing_pdu
, 0)) {
966 DEBUG(0,("setup_cancel_ack_reply: marshalling of RPC_HDR failed.\n"));
967 prs_mem_free(&outgoing_pdu
);
971 p
->out_data
.data_sent_length
= 0;
972 p
->out_data
.current_pdu_len
= prs_offset(&outgoing_pdu
);
973 p
->out_data
.current_pdu_sent
= 0;
975 prs_mem_free(&outgoing_pdu
);
980 /*******************************************************************
981 Ensure a bind request has the correct abstract & transfer interface.
982 Used to reject unknown binds from Win2k.
983 *******************************************************************/
985 bool check_bind_req(struct pipes_struct
*p
, RPC_IFACE
* abstract
,
986 RPC_IFACE
* transfer
, uint32 context_id
)
989 struct pipe_rpc_fns
*context_fns
;
991 DEBUG(3,("check_bind_req for %s\n", p
->name
));
993 /* we have to check all now since win2k introduced a new UUID on the lsaprpc pipe */
995 for (i
=0; i
<rpc_lookup_size
; i
++) {
996 DEBUGADD(10, ("checking %s\n", rpc_lookup
[i
].pipe
.clnt
));
997 if (strequal(rpc_lookup
[i
].pipe
.clnt
, p
->name
)
998 && ndr_syntax_id_equal(
999 abstract
, &rpc_lookup
[i
].rpc_interface
)
1000 && ndr_syntax_id_equal(
1001 transfer
, &ndr_transfer_syntax
)) {
1006 if (i
== rpc_lookup_size
) {
1010 context_fns
= SMB_MALLOC_P(struct pipe_rpc_fns
);
1011 if (context_fns
== NULL
) {
1012 DEBUG(0,("check_bind_req: malloc() failed!\n"));
1016 context_fns
->cmds
= rpc_lookup
[i
].cmds
;
1017 context_fns
->n_cmds
= rpc_lookup
[i
].n_cmds
;
1018 context_fns
->context_id
= context_id
;
1020 /* add to the list of open contexts */
1022 DLIST_ADD( p
->contexts
, context_fns
);
1027 /*******************************************************************
1028 Register commands to an RPC pipe
1029 *******************************************************************/
1031 NTSTATUS
rpc_pipe_register_commands(int version
, const char *clnt
,
1033 const struct ndr_syntax_id
*interface
,
1034 const struct api_struct
*cmds
, int size
)
1036 struct rpc_table
*rpc_entry
;
1038 if (!clnt
|| !srv
|| !cmds
) {
1039 return NT_STATUS_INVALID_PARAMETER
;
1042 if (version
!= SMB_RPC_INTERFACE_VERSION
) {
1043 DEBUG(0,("Can't register rpc commands!\n"
1044 "You tried to register a rpc module with SMB_RPC_INTERFACE_VERSION %d"
1045 ", while this version of samba uses version %d!\n",
1046 version
,SMB_RPC_INTERFACE_VERSION
));
1047 return NT_STATUS_OBJECT_TYPE_MISMATCH
;
1052 * we still need to make sure that don't register the same commands twice!!!
1057 /* We use a temporary variable because this call can fail and
1058 rpc_lookup will still be valid afterwards. It could then succeed if
1059 called again later */
1061 rpc_entry
= SMB_REALLOC_ARRAY_KEEP_OLD_ON_ERROR(rpc_lookup
, struct rpc_table
, rpc_lookup_size
);
1062 if (NULL
== rpc_entry
) {
1064 DEBUG(0, ("rpc_pipe_register_commands: memory allocation failed\n"));
1065 return NT_STATUS_NO_MEMORY
;
1067 rpc_lookup
= rpc_entry
;
1070 rpc_entry
= rpc_lookup
+ (rpc_lookup_size
- 1);
1071 ZERO_STRUCTP(rpc_entry
);
1072 rpc_entry
->pipe
.clnt
= SMB_STRDUP(clnt
);
1073 rpc_entry
->pipe
.srv
= SMB_STRDUP(srv
);
1074 rpc_entry
->rpc_interface
= *interface
;
1075 rpc_entry
->cmds
= cmds
;
1076 rpc_entry
->n_cmds
= size
;
1078 return NT_STATUS_OK
;
1081 /*******************************************************************
1082 Handle a SPNEGO krb5 bind auth.
1083 *******************************************************************/
1085 static bool pipe_spnego_auth_bind_kerberos(pipes_struct
*p
, prs_struct
*rpc_in_p
, RPC_HDR_AUTH
*pauth_info
,
1086 DATA_BLOB
*psecblob
, prs_struct
*pout_auth
)
1091 /*******************************************************************
1092 Handle the first part of a SPNEGO bind auth.
1093 *******************************************************************/
1095 static bool pipe_spnego_auth_bind_negotiate(pipes_struct
*p
, prs_struct
*rpc_in_p
,
1096 RPC_HDR_AUTH
*pauth_info
, prs_struct
*pout_auth
)
1102 char *OIDs
[ASN1_MAX_OIDS
];
1105 bool got_kerberos_mechanism
= false;
1106 AUTH_NTLMSSP_STATE
*a
= NULL
;
1107 RPC_HDR_AUTH auth_info
;
1109 ZERO_STRUCT(secblob
);
1111 ZERO_STRUCT(response
);
1113 /* Grab the SPNEGO blob. */
1114 blob
= data_blob(NULL
,p
->hdr
.auth_len
);
1116 if (!prs_copy_data_out((char *)blob
.data
, rpc_in_p
, p
->hdr
.auth_len
)) {
1117 DEBUG(0,("pipe_spnego_auth_bind_negotiate: Failed to pull %u bytes - the SPNEGO auth header.\n",
1118 (unsigned int)p
->hdr
.auth_len
));
1122 if (blob
.data
[0] != ASN1_APPLICATION(0)) {
1126 /* parse out the OIDs and the first sec blob */
1127 if (!parse_negTokenTarg(blob
, OIDs
, &secblob
)) {
1128 DEBUG(0,("pipe_spnego_auth_bind_negotiate: Failed to parse the security blob.\n"));
1132 if (strcmp(OID_KERBEROS5
, OIDs
[0]) == 0 || strcmp(OID_KERBEROS5_OLD
, OIDs
[0]) == 0) {
1133 got_kerberos_mechanism
= true;
1136 for (i
=0;OIDs
[i
];i
++) {
1137 DEBUG(3,("pipe_spnego_auth_bind_negotiate: Got OID %s\n", OIDs
[i
]));
1140 DEBUG(3,("pipe_spnego_auth_bind_negotiate: Got secblob of size %lu\n", (unsigned long)secblob
.length
));
1142 if ( got_kerberos_mechanism
&& ((lp_security()==SEC_ADS
) || lp_use_kerberos_keytab()) ) {
1143 bool ret
= pipe_spnego_auth_bind_kerberos(p
, rpc_in_p
, pauth_info
, &secblob
, pout_auth
);
1144 data_blob_free(&secblob
);
1145 data_blob_free(&blob
);
1149 if (p
->auth
.auth_type
== PIPE_AUTH_TYPE_SPNEGO_NTLMSSP
&& p
->auth
.a_u
.auth_ntlmssp_state
) {
1150 /* Free any previous auth type. */
1151 free_pipe_ntlmssp_auth_data(&p
->auth
);
1154 if (!got_kerberos_mechanism
) {
1155 /* Initialize the NTLM engine. */
1156 status
= auth_ntlmssp_start(&a
);
1157 if (!NT_STATUS_IS_OK(status
)) {
1162 * Pass the first security blob of data to it.
1163 * This can return an error or NT_STATUS_MORE_PROCESSING_REQUIRED
1164 * which means we need another packet to complete the bind.
1167 status
= auth_ntlmssp_update(a
, secblob
, &chal
);
1169 if (!NT_STATUS_EQUAL(status
, NT_STATUS_MORE_PROCESSING_REQUIRED
)) {
1170 DEBUG(3,("pipe_spnego_auth_bind_negotiate: auth_ntlmssp_update failed.\n"));
1174 /* Generate the response blob we need for step 2 of the bind. */
1175 response
= spnego_gen_auth_response(&chal
, status
, OID_NTLMSSP
);
1178 * SPNEGO negotiate down to NTLMSSP. The subsequent
1179 * code to process follow-up packets is not complete
1182 response
= spnego_gen_auth_response(NULL
,
1183 NT_STATUS_MORE_PROCESSING_REQUIRED
,
1187 /* Copy the blob into the pout_auth parse struct */
1188 init_rpc_hdr_auth(&auth_info
, RPC_SPNEGO_AUTH_TYPE
, pauth_info
->auth_level
, RPC_HDR_AUTH_LEN
, 1);
1189 if(!smb_io_rpc_hdr_auth("", &auth_info
, pout_auth
, 0)) {
1190 DEBUG(0,("pipe_spnego_auth_bind_negotiate: marshalling of RPC_HDR_AUTH failed.\n"));
1194 if (!prs_copy_data_in(pout_auth
, (char *)response
.data
, response
.length
)) {
1195 DEBUG(0,("pipe_spnego_auth_bind_negotiate: marshalling of data blob failed.\n"));
1199 p
->auth
.a_u
.auth_ntlmssp_state
= a
;
1200 p
->auth
.auth_data_free_func
= &free_pipe_ntlmssp_auth_data
;
1201 p
->auth
.auth_type
= PIPE_AUTH_TYPE_SPNEGO_NTLMSSP
;
1203 data_blob_free(&blob
);
1204 data_blob_free(&secblob
);
1205 data_blob_free(&chal
);
1206 data_blob_free(&response
);
1208 /* We can't set pipe_bound True yet - we need an RPC_ALTER_CONTEXT response packet... */
1213 data_blob_free(&blob
);
1214 data_blob_free(&secblob
);
1215 data_blob_free(&chal
);
1216 data_blob_free(&response
);
1218 p
->auth
.a_u
.auth_ntlmssp_state
= NULL
;
1223 /*******************************************************************
1224 Handle the second part of a SPNEGO bind auth.
1225 *******************************************************************/
1227 static bool pipe_spnego_auth_bind_continue(pipes_struct
*p
, prs_struct
*rpc_in_p
,
1228 RPC_HDR_AUTH
*pauth_info
, prs_struct
*pout_auth
)
1230 RPC_HDR_AUTH auth_info
;
1231 DATA_BLOB spnego_blob
;
1232 DATA_BLOB auth_blob
;
1233 DATA_BLOB auth_reply
;
1235 AUTH_NTLMSSP_STATE
*a
= p
->auth
.a_u
.auth_ntlmssp_state
;
1237 ZERO_STRUCT(spnego_blob
);
1238 ZERO_STRUCT(auth_blob
);
1239 ZERO_STRUCT(auth_reply
);
1240 ZERO_STRUCT(response
);
1243 * NB. If we've negotiated down from krb5 to NTLMSSP we'll currently
1244 * fail here as 'a' == NULL.
1246 if (p
->auth
.auth_type
!= PIPE_AUTH_TYPE_SPNEGO_NTLMSSP
|| !a
) {
1247 DEBUG(0,("pipe_spnego_auth_bind_continue: not in NTLMSSP auth state.\n"));
1251 /* Grab the SPNEGO blob. */
1252 spnego_blob
= data_blob(NULL
,p
->hdr
.auth_len
);
1254 if (!prs_copy_data_out((char *)spnego_blob
.data
, rpc_in_p
, p
->hdr
.auth_len
)) {
1255 DEBUG(0,("pipe_spnego_auth_bind_continue: Failed to pull %u bytes - the SPNEGO auth header.\n",
1256 (unsigned int)p
->hdr
.auth_len
));
1260 if (spnego_blob
.data
[0] != ASN1_CONTEXT(1)) {
1261 DEBUG(0,("pipe_spnego_auth_bind_continue: invalid SPNEGO blob type.\n"));
1265 if (!spnego_parse_auth(spnego_blob
, &auth_blob
)) {
1266 DEBUG(0,("pipe_spnego_auth_bind_continue: invalid SPNEGO blob.\n"));
1271 * The following call actually checks the challenge/response data.
1272 * for correctness against the given DOMAIN\user name.
1275 if (!pipe_ntlmssp_verify_final(p
, &auth_blob
)) {
1279 data_blob_free(&spnego_blob
);
1280 data_blob_free(&auth_blob
);
1282 /* Generate the spnego "accept completed" blob - no incoming data. */
1283 response
= spnego_gen_auth_response(&auth_reply
, NT_STATUS_OK
, OID_NTLMSSP
);
1285 /* Copy the blob into the pout_auth parse struct */
1286 init_rpc_hdr_auth(&auth_info
, RPC_SPNEGO_AUTH_TYPE
, pauth_info
->auth_level
, RPC_HDR_AUTH_LEN
, 1);
1287 if(!smb_io_rpc_hdr_auth("", &auth_info
, pout_auth
, 0)) {
1288 DEBUG(0,("pipe_spnego_auth_bind_continue: marshalling of RPC_HDR_AUTH failed.\n"));
1292 if (!prs_copy_data_in(pout_auth
, (char *)response
.data
, response
.length
)) {
1293 DEBUG(0,("pipe_spnego_auth_bind_continue: marshalling of data blob failed.\n"));
1297 data_blob_free(&auth_reply
);
1298 data_blob_free(&response
);
1300 p
->pipe_bound
= True
;
1306 data_blob_free(&spnego_blob
);
1307 data_blob_free(&auth_blob
);
1308 data_blob_free(&auth_reply
);
1309 data_blob_free(&response
);
1311 free_pipe_ntlmssp_auth_data(&p
->auth
);
1312 p
->auth
.a_u
.auth_ntlmssp_state
= NULL
;
1317 /*******************************************************************
1318 Handle an schannel bind auth.
1319 *******************************************************************/
1321 static bool pipe_schannel_auth_bind(pipes_struct
*p
, prs_struct
*rpc_in_p
,
1322 RPC_HDR_AUTH
*pauth_info
, prs_struct
*pout_auth
)
1324 RPC_HDR_AUTH auth_info
;
1325 RPC_AUTH_SCHANNEL_NEG neg
;
1326 RPC_AUTH_VERIFIER auth_verifier
;
1328 struct dcinfo
*pdcinfo
;
1330 DATA_BLOB session_key
;
1332 if (!smb_io_rpc_auth_schannel_neg("", &neg
, rpc_in_p
, 0)) {
1333 DEBUG(0,("pipe_schannel_auth_bind: Could not unmarshal SCHANNEL auth neg\n"));
1338 * The neg.myname key here must match the remote computer name
1339 * given in the DOM_CLNT_SRV.uni_comp_name used on all netlogon pipe
1340 * operations that use credentials.
1344 ret
= secrets_restore_schannel_session_info(p
->mem_ctx
, neg
.myname
, &pdcinfo
);
1348 DEBUG(0, ("pipe_schannel_auth_bind: Attempt to bind using schannel without successful serverauth2\n"));
1352 p
->auth
.a_u
.schannel_auth
= talloc(p
, struct schannel_auth_struct
);
1353 if (!p
->auth
.a_u
.schannel_auth
) {
1354 TALLOC_FREE(pdcinfo
);
1358 memset(p
->auth
.a_u
.schannel_auth
->sess_key
, 0, sizeof(p
->auth
.a_u
.schannel_auth
->sess_key
));
1359 memcpy(p
->auth
.a_u
.schannel_auth
->sess_key
, pdcinfo
->sess_key
,
1360 sizeof(pdcinfo
->sess_key
));
1362 TALLOC_FREE(pdcinfo
);
1364 p
->auth
.a_u
.schannel_auth
->seq_num
= 0;
1367 * JRA. Should we also copy the schannel session key into the pipe session key p->session_key
1368 * here ? We do that for NTLMSSP, but the session key is already set up from the vuser
1369 * struct of the person who opened the pipe. I need to test this further. JRA.
1371 * VL. As we are mapping this to guest set the generic key
1372 * "SystemLibraryDTC" key here. It's a bit difficult to test against
1373 * W2k3, as it does not allow schannel binds against SAMR and LSA
1377 session_key
= generic_session_key();
1378 if (session_key
.data
== NULL
) {
1379 DEBUG(0, ("pipe_schannel_auth_bind: Could not alloc session"
1384 ret
= server_info_set_session_key(p
->server_info
, session_key
);
1386 data_blob_free(&session_key
);
1389 DEBUG(0, ("server_info_set_session_key failed\n"));
1393 init_rpc_hdr_auth(&auth_info
, RPC_SCHANNEL_AUTH_TYPE
, pauth_info
->auth_level
, RPC_HDR_AUTH_LEN
, 1);
1394 if(!smb_io_rpc_hdr_auth("", &auth_info
, pout_auth
, 0)) {
1395 DEBUG(0,("pipe_schannel_auth_bind: marshalling of RPC_HDR_AUTH failed.\n"));
1399 /*** SCHANNEL verifier ***/
1401 init_rpc_auth_verifier(&auth_verifier
, "\001", 0x0);
1402 if(!smb_io_rpc_schannel_verifier("", &auth_verifier
, pout_auth
, 0)) {
1403 DEBUG(0,("pipe_schannel_auth_bind: marshalling of RPC_AUTH_VERIFIER failed.\n"));
1407 prs_align(pout_auth
);
1410 if(!prs_uint32("flags ", pout_auth
, 0, &flags
)) {
1414 DEBUG(10,("pipe_schannel_auth_bind: schannel auth: domain [%s] myname [%s]\n",
1415 neg
.domain
, neg
.myname
));
1417 /* We're finished with this bind - no more packets. */
1418 p
->auth
.auth_data_free_func
= NULL
;
1419 p
->auth
.auth_type
= PIPE_AUTH_TYPE_SCHANNEL
;
1421 p
->pipe_bound
= True
;
1426 /*******************************************************************
1427 Handle an NTLMSSP bind auth.
1428 *******************************************************************/
1430 static bool pipe_ntlmssp_auth_bind(pipes_struct
*p
, prs_struct
*rpc_in_p
,
1431 RPC_HDR_AUTH
*pauth_info
, prs_struct
*pout_auth
)
1433 RPC_HDR_AUTH auth_info
;
1437 AUTH_NTLMSSP_STATE
*a
= NULL
;
1440 ZERO_STRUCT(response
);
1442 /* Grab the NTLMSSP blob. */
1443 blob
= data_blob(NULL
,p
->hdr
.auth_len
);
1445 if (!prs_copy_data_out((char *)blob
.data
, rpc_in_p
, p
->hdr
.auth_len
)) {
1446 DEBUG(0,("pipe_ntlmssp_auth_bind: Failed to pull %u bytes - the NTLM auth header.\n",
1447 (unsigned int)p
->hdr
.auth_len
));
1451 if (strncmp((char *)blob
.data
, "NTLMSSP", 7) != 0) {
1452 DEBUG(0,("pipe_ntlmssp_auth_bind: Failed to read NTLMSSP in blob\n"));
1456 /* We have an NTLMSSP blob. */
1457 status
= auth_ntlmssp_start(&a
);
1458 if (!NT_STATUS_IS_OK(status
)) {
1459 DEBUG(0,("pipe_ntlmssp_auth_bind: auth_ntlmssp_start failed: %s\n",
1460 nt_errstr(status
) ));
1464 status
= auth_ntlmssp_update(a
, blob
, &response
);
1465 if (!NT_STATUS_EQUAL(status
, NT_STATUS_MORE_PROCESSING_REQUIRED
)) {
1466 DEBUG(0,("pipe_ntlmssp_auth_bind: auth_ntlmssp_update failed: %s\n",
1467 nt_errstr(status
) ));
1471 data_blob_free(&blob
);
1473 /* Copy the blob into the pout_auth parse struct */
1474 init_rpc_hdr_auth(&auth_info
, RPC_NTLMSSP_AUTH_TYPE
, pauth_info
->auth_level
, RPC_HDR_AUTH_LEN
, 1);
1475 if(!smb_io_rpc_hdr_auth("", &auth_info
, pout_auth
, 0)) {
1476 DEBUG(0,("pipe_ntlmssp_auth_bind: marshalling of RPC_HDR_AUTH failed.\n"));
1480 if (!prs_copy_data_in(pout_auth
, (char *)response
.data
, response
.length
)) {
1481 DEBUG(0,("pipe_ntlmssp_auth_bind: marshalling of data blob failed.\n"));
1485 p
->auth
.a_u
.auth_ntlmssp_state
= a
;
1486 p
->auth
.auth_data_free_func
= &free_pipe_ntlmssp_auth_data
;
1487 p
->auth
.auth_type
= PIPE_AUTH_TYPE_NTLMSSP
;
1489 data_blob_free(&blob
);
1490 data_blob_free(&response
);
1492 DEBUG(10,("pipe_ntlmssp_auth_bind: NTLMSSP auth started\n"));
1494 /* We can't set pipe_bound True yet - we need an RPC_AUTH3 response packet... */
1499 data_blob_free(&blob
);
1500 data_blob_free(&response
);
1502 free_pipe_ntlmssp_auth_data(&p
->auth
);
1503 p
->auth
.a_u
.auth_ntlmssp_state
= NULL
;
1507 /*******************************************************************
1508 Respond to a pipe bind request.
1509 *******************************************************************/
1511 bool api_pipe_bind_req(pipes_struct
*p
, prs_struct
*rpc_in_p
)
1515 RPC_HDR_AUTH auth_info
;
1517 fstring ack_pipe_name
;
1518 prs_struct out_hdr_ba
;
1519 prs_struct out_auth
;
1520 prs_struct outgoing_rpc
;
1523 unsigned int auth_type
= RPC_ANONYMOUS_AUTH_TYPE
;
1525 /* No rebinds on a bound pipe - use alter context. */
1526 if (p
->pipe_bound
) {
1527 DEBUG(2,("api_pipe_bind_req: rejecting bind request on bound pipe %s.\n", p
->pipe_srv_name
));
1528 return setup_bind_nak(p
);
1531 prs_init_empty( &outgoing_rpc
, p
->mem_ctx
, MARSHALL
);
1534 * Marshall directly into the outgoing PDU space. We
1535 * must do this as we need to set to the bind response
1536 * header and are never sending more than one PDU here.
1539 prs_give_memory( &outgoing_rpc
, (char *)p
->out_data
.current_pdu
, sizeof(p
->out_data
.current_pdu
), False
);
1542 * Setup the memory to marshall the ba header, and the
1546 if(!prs_init(&out_hdr_ba
, 1024, p
->mem_ctx
, MARSHALL
)) {
1547 DEBUG(0,("api_pipe_bind_req: malloc out_hdr_ba failed.\n"));
1548 prs_mem_free(&outgoing_rpc
);
1552 if(!prs_init(&out_auth
, 1024, p
->mem_ctx
, MARSHALL
)) {
1553 DEBUG(0,("api_pipe_bind_req: malloc out_auth failed.\n"));
1554 prs_mem_free(&outgoing_rpc
);
1555 prs_mem_free(&out_hdr_ba
);
1559 DEBUG(5,("api_pipe_bind_req: decode request. %d\n", __LINE__
));
1561 ZERO_STRUCT(hdr_rb
);
1563 /* decode the bind request */
1565 if(!smb_io_rpc_hdr_rb("", &hdr_rb
, rpc_in_p
, 0)) {
1566 DEBUG(0,("api_pipe_bind_req: unable to unmarshall RPC_HDR_RB "
1571 if (hdr_rb
.num_contexts
== 0) {
1572 DEBUG(0, ("api_pipe_bind_req: no rpc contexts around\n"));
1577 * Try and find the correct pipe name to ensure
1578 * that this is a pipe name we support.
1581 for (i
= 0; i
< rpc_lookup_size
; i
++) {
1582 if (ndr_syntax_id_equal(&rpc_lookup
[i
].rpc_interface
,
1583 &hdr_rb
.rpc_context
[0].abstract
)) {
1584 DEBUG(3, ("api_pipe_bind_req: \\PIPE\\%s -> \\PIPE\\%s\n",
1585 rpc_lookup
[i
].pipe
.clnt
, rpc_lookup
[i
].pipe
.srv
));
1586 fstrcpy(p
->name
, rpc_lookup
[i
].pipe
.clnt
);
1587 fstrcpy(p
->pipe_srv_name
, rpc_lookup
[i
].pipe
.srv
);
1592 if (i
== rpc_lookup_size
) {
1593 if (NT_STATUS_IS_ERR(smb_probe_module("rpc", p
->name
))) {
1594 DEBUG(3,("api_pipe_bind_req: Unknown pipe name %s in bind request.\n",
1596 prs_mem_free(&outgoing_rpc
);
1597 prs_mem_free(&out_hdr_ba
);
1598 prs_mem_free(&out_auth
);
1600 return setup_bind_nak(p
);
1603 for (i
= 0; i
< rpc_lookup_size
; i
++) {
1604 if (strequal(rpc_lookup
[i
].pipe
.clnt
, p
->name
)) {
1605 DEBUG(3, ("api_pipe_bind_req: \\PIPE\\%s -> \\PIPE\\%s\n",
1606 rpc_lookup
[i
].pipe
.clnt
, rpc_lookup
[i
].pipe
.srv
));
1607 fstrcpy(p
->pipe_srv_name
, rpc_lookup
[i
].pipe
.srv
);
1612 if (i
== rpc_lookup_size
) {
1613 DEBUG(0, ("module %s doesn't provide functions for pipe %s!\n", p
->name
, p
->name
));
1618 /* name has to be \PIPE\xxxxx */
1619 fstrcpy(ack_pipe_name
, "\\PIPE\\");
1620 fstrcat(ack_pipe_name
, p
->pipe_srv_name
);
1622 DEBUG(5,("api_pipe_bind_req: make response. %d\n", __LINE__
));
1625 * Check if this is an authenticated bind request.
1628 if (p
->hdr
.auth_len
) {
1630 * Decode the authentication verifier.
1633 if(!smb_io_rpc_hdr_auth("", &auth_info
, rpc_in_p
, 0)) {
1634 DEBUG(0,("api_pipe_bind_req: unable to unmarshall RPC_HDR_AUTH struct.\n"));
1638 auth_type
= auth_info
.auth_type
;
1640 /* Work out if we have to sign or seal etc. */
1641 switch (auth_info
.auth_level
) {
1642 case RPC_AUTH_LEVEL_INTEGRITY
:
1643 p
->auth
.auth_level
= PIPE_AUTH_LEVEL_INTEGRITY
;
1645 case RPC_AUTH_LEVEL_PRIVACY
:
1646 p
->auth
.auth_level
= PIPE_AUTH_LEVEL_PRIVACY
;
1649 DEBUG(0,("api_pipe_bind_req: unexpected auth level (%u).\n",
1650 (unsigned int)auth_info
.auth_level
));
1654 ZERO_STRUCT(auth_info
);
1657 assoc_gid
= hdr_rb
.bba
.assoc_gid
? hdr_rb
.bba
.assoc_gid
: 0x53f0;
1660 case RPC_NTLMSSP_AUTH_TYPE
:
1661 if (!pipe_ntlmssp_auth_bind(p
, rpc_in_p
, &auth_info
, &out_auth
)) {
1667 case RPC_SCHANNEL_AUTH_TYPE
:
1668 if (!pipe_schannel_auth_bind(p
, rpc_in_p
, &auth_info
, &out_auth
)) {
1673 case RPC_SPNEGO_AUTH_TYPE
:
1674 if (!pipe_spnego_auth_bind_negotiate(p
, rpc_in_p
, &auth_info
, &out_auth
)) {
1679 case RPC_ANONYMOUS_AUTH_TYPE
:
1680 /* Unauthenticated bind request. */
1681 /* Get the authenticated pipe user from current_user */
1682 if (!copy_current_user(&p
->pipe_user
, ¤t_user
)) {
1683 DEBUG(10, ("Could not copy current user\n"));
1686 /* We're finished - no more packets. */
1687 p
->auth
.auth_type
= PIPE_AUTH_TYPE_NONE
;
1688 /* We must set the pipe auth_level here also. */
1689 p
->auth
.auth_level
= PIPE_AUTH_LEVEL_NONE
;
1690 p
->pipe_bound
= True
;
1691 /* The session key was initialized from the SMB
1692 * session in make_internal_rpc_pipe_p */
1696 DEBUG(0,("api_pipe_bind_req: unknown auth type %x requested.\n", auth_type
));
1701 * Create the bind response struct.
1704 /* If the requested abstract synt uuid doesn't match our client pipe,
1705 reject the bind_ack & set the transfer interface synt to all 0's,
1706 ver 0 (observed when NT5 attempts to bind to abstract interfaces
1708 Needed when adding entries to a DACL from NT5 - SK */
1710 if(check_bind_req(p
, &hdr_rb
.rpc_context
[0].abstract
, &hdr_rb
.rpc_context
[0].transfer
[0],
1711 hdr_rb
.rpc_context
[0].context_id
)) {
1712 init_rpc_hdr_ba(&hdr_ba
,
1713 RPC_MAX_PDU_FRAG_LEN
,
1714 RPC_MAX_PDU_FRAG_LEN
,
1718 &hdr_rb
.rpc_context
[0].transfer
[0]);
1720 RPC_IFACE null_interface
;
1721 ZERO_STRUCT(null_interface
);
1722 /* Rejection reason: abstract syntax not supported */
1723 init_rpc_hdr_ba(&hdr_ba
, RPC_MAX_PDU_FRAG_LEN
,
1724 RPC_MAX_PDU_FRAG_LEN
, assoc_gid
,
1725 ack_pipe_name
, 0x1, 0x2, 0x1,
1727 p
->pipe_bound
= False
;
1734 if(!smb_io_rpc_hdr_ba("", &hdr_ba
, &out_hdr_ba
, 0)) {
1735 DEBUG(0,("api_pipe_bind_req: marshalling of RPC_HDR_BA failed.\n"));
1740 * Create the header, now we know the length.
1743 if (prs_offset(&out_auth
)) {
1744 auth_len
= prs_offset(&out_auth
) - RPC_HDR_AUTH_LEN
;
1747 init_rpc_hdr(&p
->hdr
, RPC_BINDACK
, RPC_FLG_FIRST
| RPC_FLG_LAST
,
1749 RPC_HEADER_LEN
+ prs_offset(&out_hdr_ba
) + prs_offset(&out_auth
),
1753 * Marshall the header into the outgoing PDU.
1756 if(!smb_io_rpc_hdr("", &p
->hdr
, &outgoing_rpc
, 0)) {
1757 DEBUG(0,("api_pipe_bind_req: marshalling of RPC_HDR failed.\n"));
1762 * Now add the RPC_HDR_BA and any auth needed.
1765 if(!prs_append_prs_data( &outgoing_rpc
, &out_hdr_ba
)) {
1766 DEBUG(0,("api_pipe_bind_req: append of RPC_HDR_BA failed.\n"));
1770 if (auth_len
&& !prs_append_prs_data( &outgoing_rpc
, &out_auth
)) {
1771 DEBUG(0,("api_pipe_bind_req: append of auth info failed.\n"));
1776 * Setup the lengths for the initial reply.
1779 p
->out_data
.data_sent_length
= 0;
1780 p
->out_data
.current_pdu_len
= prs_offset(&outgoing_rpc
);
1781 p
->out_data
.current_pdu_sent
= 0;
1783 prs_mem_free(&out_hdr_ba
);
1784 prs_mem_free(&out_auth
);
1790 prs_mem_free(&outgoing_rpc
);
1791 prs_mem_free(&out_hdr_ba
);
1792 prs_mem_free(&out_auth
);
1793 return setup_bind_nak(p
);
1796 /****************************************************************************
1797 Deal with an alter context call. Can be third part of 3 leg auth request for
1799 ****************************************************************************/
1801 bool api_pipe_alter_context(pipes_struct
*p
, prs_struct
*rpc_in_p
)
1805 RPC_HDR_AUTH auth_info
;
1807 fstring ack_pipe_name
;
1808 prs_struct out_hdr_ba
;
1809 prs_struct out_auth
;
1810 prs_struct outgoing_rpc
;
1813 prs_init_empty( &outgoing_rpc
, p
->mem_ctx
, MARSHALL
);
1816 * Marshall directly into the outgoing PDU space. We
1817 * must do this as we need to set to the bind response
1818 * header and are never sending more than one PDU here.
1821 prs_give_memory( &outgoing_rpc
, (char *)p
->out_data
.current_pdu
, sizeof(p
->out_data
.current_pdu
), False
);
1824 * Setup the memory to marshall the ba header, and the
1828 if(!prs_init(&out_hdr_ba
, 1024, p
->mem_ctx
, MARSHALL
)) {
1829 DEBUG(0,("api_pipe_alter_context: malloc out_hdr_ba failed.\n"));
1830 prs_mem_free(&outgoing_rpc
);
1834 if(!prs_init(&out_auth
, 1024, p
->mem_ctx
, MARSHALL
)) {
1835 DEBUG(0,("api_pipe_alter_context: malloc out_auth failed.\n"));
1836 prs_mem_free(&outgoing_rpc
);
1837 prs_mem_free(&out_hdr_ba
);
1841 DEBUG(5,("api_pipe_alter_context: decode request. %d\n", __LINE__
));
1843 /* decode the alter context request */
1844 if(!smb_io_rpc_hdr_rb("", &hdr_rb
, rpc_in_p
, 0)) {
1845 DEBUG(0,("api_pipe_alter_context: unable to unmarshall RPC_HDR_RB struct.\n"));
1849 /* secondary address CAN be NULL
1850 * as the specs say it's ignored.
1851 * It MUST be NULL to have the spoolss working.
1853 fstrcpy(ack_pipe_name
,"");
1855 DEBUG(5,("api_pipe_alter_context: make response. %d\n", __LINE__
));
1858 * Check if this is an authenticated alter context request.
1861 if (p
->hdr
.auth_len
!= 0) {
1863 * Decode the authentication verifier.
1866 if(!smb_io_rpc_hdr_auth("", &auth_info
, rpc_in_p
, 0)) {
1867 DEBUG(0,("api_pipe_alter_context: unable to unmarshall RPC_HDR_AUTH struct.\n"));
1872 * Currently only the SPNEGO auth type uses the alter ctx
1873 * response in place of the NTLMSSP auth3 type.
1876 if (auth_info
.auth_type
== RPC_SPNEGO_AUTH_TYPE
) {
1877 /* We can only finish if the pipe is unbound. */
1878 if (!p
->pipe_bound
) {
1879 if (!pipe_spnego_auth_bind_continue(p
, rpc_in_p
, &auth_info
, &out_auth
)) {
1887 ZERO_STRUCT(auth_info
);
1890 assoc_gid
= hdr_rb
.bba
.assoc_gid
? hdr_rb
.bba
.assoc_gid
: 0x53f0;
1893 * Create the bind response struct.
1896 /* If the requested abstract synt uuid doesn't match our client pipe,
1897 reject the bind_ack & set the transfer interface synt to all 0's,
1898 ver 0 (observed when NT5 attempts to bind to abstract interfaces
1900 Needed when adding entries to a DACL from NT5 - SK */
1902 if(check_bind_req(p
, &hdr_rb
.rpc_context
[0].abstract
, &hdr_rb
.rpc_context
[0].transfer
[0],
1903 hdr_rb
.rpc_context
[0].context_id
)) {
1904 init_rpc_hdr_ba(&hdr_ba
,
1905 RPC_MAX_PDU_FRAG_LEN
,
1906 RPC_MAX_PDU_FRAG_LEN
,
1910 &hdr_rb
.rpc_context
[0].transfer
[0]);
1912 RPC_IFACE null_interface
;
1913 ZERO_STRUCT(null_interface
);
1914 /* Rejection reason: abstract syntax not supported */
1915 init_rpc_hdr_ba(&hdr_ba
, RPC_MAX_PDU_FRAG_LEN
,
1916 RPC_MAX_PDU_FRAG_LEN
, assoc_gid
,
1917 ack_pipe_name
, 0x1, 0x2, 0x1,
1919 p
->pipe_bound
= False
;
1926 if(!smb_io_rpc_hdr_ba("", &hdr_ba
, &out_hdr_ba
, 0)) {
1927 DEBUG(0,("api_pipe_alter_context: marshalling of RPC_HDR_BA failed.\n"));
1932 * Create the header, now we know the length.
1935 if (prs_offset(&out_auth
)) {
1936 auth_len
= prs_offset(&out_auth
) - RPC_HDR_AUTH_LEN
;
1939 init_rpc_hdr(&p
->hdr
, RPC_ALTCONTRESP
, RPC_FLG_FIRST
| RPC_FLG_LAST
,
1941 RPC_HEADER_LEN
+ prs_offset(&out_hdr_ba
) + prs_offset(&out_auth
),
1945 * Marshall the header into the outgoing PDU.
1948 if(!smb_io_rpc_hdr("", &p
->hdr
, &outgoing_rpc
, 0)) {
1949 DEBUG(0,("api_pipe_alter_context: marshalling of RPC_HDR failed.\n"));
1954 * Now add the RPC_HDR_BA and any auth needed.
1957 if(!prs_append_prs_data( &outgoing_rpc
, &out_hdr_ba
)) {
1958 DEBUG(0,("api_pipe_alter_context: append of RPC_HDR_BA failed.\n"));
1962 if (auth_len
&& !prs_append_prs_data( &outgoing_rpc
, &out_auth
)) {
1963 DEBUG(0,("api_pipe_alter_context: append of auth info failed.\n"));
1968 * Setup the lengths for the initial reply.
1971 p
->out_data
.data_sent_length
= 0;
1972 p
->out_data
.current_pdu_len
= prs_offset(&outgoing_rpc
);
1973 p
->out_data
.current_pdu_sent
= 0;
1975 prs_mem_free(&out_hdr_ba
);
1976 prs_mem_free(&out_auth
);
1982 prs_mem_free(&outgoing_rpc
);
1983 prs_mem_free(&out_hdr_ba
);
1984 prs_mem_free(&out_auth
);
1985 return setup_bind_nak(p
);
1988 /****************************************************************************
1989 Deal with NTLMSSP sign & seal processing on an RPC request.
1990 ****************************************************************************/
1992 bool api_pipe_ntlmssp_auth_process(pipes_struct
*p
, prs_struct
*rpc_in
,
1993 uint32
*p_ss_padding_len
, NTSTATUS
*pstatus
)
1995 RPC_HDR_AUTH auth_info
;
1996 uint32 auth_len
= p
->hdr
.auth_len
;
1997 uint32 save_offset
= prs_offset(rpc_in
);
1998 AUTH_NTLMSSP_STATE
*a
= p
->auth
.a_u
.auth_ntlmssp_state
;
1999 unsigned char *data
= NULL
;
2001 unsigned char *full_packet_data
= NULL
;
2002 size_t full_packet_data_len
;
2003 DATA_BLOB auth_blob
;
2005 *pstatus
= NT_STATUS_OK
;
2007 if (p
->auth
.auth_level
== PIPE_AUTH_LEVEL_NONE
|| p
->auth
.auth_level
== PIPE_AUTH_LEVEL_CONNECT
) {
2012 *pstatus
= NT_STATUS_INVALID_PARAMETER
;
2016 /* Ensure there's enough data for an authenticated request. */
2017 if ((auth_len
> RPC_MAX_SIGN_SIZE
) ||
2018 (RPC_HEADER_LEN
+ RPC_HDR_REQ_LEN
+ RPC_HDR_AUTH_LEN
+ auth_len
> p
->hdr
.frag_len
)) {
2019 DEBUG(0,("api_pipe_ntlmssp_auth_process: auth_len %u is too large.\n",
2020 (unsigned int)auth_len
));
2021 *pstatus
= NT_STATUS_INVALID_PARAMETER
;
2026 * We need the full packet data + length (minus auth stuff) as well as the packet data + length
2027 * after the RPC header.
2028 * We need to pass in the full packet (minus auth len) to the NTLMSSP sign and check seal
2029 * functions as NTLMv2 checks the rpc headers also.
2032 data
= (unsigned char *)(prs_data_p(rpc_in
) + RPC_HDR_REQ_LEN
);
2033 data_len
= (size_t)(p
->hdr
.frag_len
- RPC_HEADER_LEN
- RPC_HDR_REQ_LEN
- RPC_HDR_AUTH_LEN
- auth_len
);
2035 full_packet_data
= p
->in_data
.current_in_pdu
;
2036 full_packet_data_len
= p
->hdr
.frag_len
- auth_len
;
2038 /* Pull the auth header and the following data into a blob. */
2039 if(!prs_set_offset(rpc_in
, RPC_HDR_REQ_LEN
+ data_len
)) {
2040 DEBUG(0,("api_pipe_ntlmssp_auth_process: cannot move offset to %u.\n",
2041 (unsigned int)RPC_HDR_REQ_LEN
+ (unsigned int)data_len
));
2042 *pstatus
= NT_STATUS_INVALID_PARAMETER
;
2046 if(!smb_io_rpc_hdr_auth("hdr_auth", &auth_info
, rpc_in
, 0)) {
2047 DEBUG(0,("api_pipe_ntlmssp_auth_process: failed to unmarshall RPC_HDR_AUTH.\n"));
2048 *pstatus
= NT_STATUS_INVALID_PARAMETER
;
2052 auth_blob
.data
= (unsigned char *)prs_data_p(rpc_in
) + prs_offset(rpc_in
);
2053 auth_blob
.length
= auth_len
;
2055 switch (p
->auth
.auth_level
) {
2056 case PIPE_AUTH_LEVEL_PRIVACY
:
2057 /* Data is encrypted. */
2058 *pstatus
= ntlmssp_unseal_packet(a
->ntlmssp_state
,
2061 full_packet_data_len
,
2063 if (!NT_STATUS_IS_OK(*pstatus
)) {
2067 case PIPE_AUTH_LEVEL_INTEGRITY
:
2068 /* Data is signed. */
2069 *pstatus
= ntlmssp_check_packet(a
->ntlmssp_state
,
2072 full_packet_data_len
,
2074 if (!NT_STATUS_IS_OK(*pstatus
)) {
2079 *pstatus
= NT_STATUS_INVALID_PARAMETER
;
2084 * Return the current pointer to the data offset.
2087 if(!prs_set_offset(rpc_in
, save_offset
)) {
2088 DEBUG(0,("api_pipe_auth_process: failed to set offset back to %u\n",
2089 (unsigned int)save_offset
));
2090 *pstatus
= NT_STATUS_INVALID_PARAMETER
;
2095 * Remember the padding length. We must remove it from the real data
2096 * stream once the sign/seal is done.
2099 *p_ss_padding_len
= auth_info
.auth_pad_len
;
2104 /****************************************************************************
2105 Deal with schannel processing on an RPC request.
2106 ****************************************************************************/
2108 bool api_pipe_schannel_process(pipes_struct
*p
, prs_struct
*rpc_in
, uint32
*p_ss_padding_len
)
2112 uint32 save_offset
= prs_offset(rpc_in
);
2113 RPC_HDR_AUTH auth_info
;
2114 RPC_AUTH_SCHANNEL_CHK schannel_chk
;
2116 auth_len
= p
->hdr
.auth_len
;
2118 if (auth_len
!= RPC_AUTH_SCHANNEL_SIGN_OR_SEAL_CHK_LEN
) {
2119 DEBUG(0,("Incorrect auth_len %u.\n", (unsigned int)auth_len
));
2124 * The following is that length of the data we must verify or unseal.
2125 * This doesn't include the RPC headers or the auth_len or the RPC_HDR_AUTH_LEN
2126 * preceeding the auth_data.
2129 if (p
->hdr
.frag_len
< RPC_HEADER_LEN
+ RPC_HDR_REQ_LEN
+ RPC_HDR_AUTH_LEN
+ auth_len
) {
2130 DEBUG(0,("Incorrect frag %u, auth %u.\n",
2131 (unsigned int)p
->hdr
.frag_len
,
2132 (unsigned int)auth_len
));
2136 data_len
= p
->hdr
.frag_len
- RPC_HEADER_LEN
- RPC_HDR_REQ_LEN
-
2137 RPC_HDR_AUTH_LEN
- auth_len
;
2139 DEBUG(5,("data %d auth %d\n", data_len
, auth_len
));
2141 if(!prs_set_offset(rpc_in
, RPC_HDR_REQ_LEN
+ data_len
)) {
2142 DEBUG(0,("cannot move offset to %u.\n",
2143 (unsigned int)RPC_HDR_REQ_LEN
+ data_len
));
2147 if(!smb_io_rpc_hdr_auth("hdr_auth", &auth_info
, rpc_in
, 0)) {
2148 DEBUG(0,("failed to unmarshall RPC_HDR_AUTH.\n"));
2152 if (auth_info
.auth_type
!= RPC_SCHANNEL_AUTH_TYPE
) {
2153 DEBUG(0,("Invalid auth info %d on schannel\n",
2154 auth_info
.auth_type
));
2158 if(!smb_io_rpc_auth_schannel_chk("", RPC_AUTH_SCHANNEL_SIGN_OR_SEAL_CHK_LEN
, &schannel_chk
, rpc_in
, 0)) {
2159 DEBUG(0,("failed to unmarshal RPC_AUTH_SCHANNEL_CHK.\n"));
2163 if (!schannel_decode(p
->auth
.a_u
.schannel_auth
,
2165 SENDER_IS_INITIATOR
,
2167 prs_data_p(rpc_in
)+RPC_HDR_REQ_LEN
, data_len
)) {
2168 DEBUG(3,("failed to decode PDU\n"));
2173 * Return the current pointer to the data offset.
2176 if(!prs_set_offset(rpc_in
, save_offset
)) {
2177 DEBUG(0,("failed to set offset back to %u\n",
2178 (unsigned int)save_offset
));
2182 /* The sequence number gets incremented on both send and receive. */
2183 p
->auth
.a_u
.schannel_auth
->seq_num
++;
2186 * Remember the padding length. We must remove it from the real data
2187 * stream once the sign/seal is done.
2190 *p_ss_padding_len
= auth_info
.auth_pad_len
;
2195 /****************************************************************************
2196 Return a user struct for a pipe user.
2197 ****************************************************************************/
2199 struct current_user
*get_current_user(struct current_user
*user
, pipes_struct
*p
)
2201 if (p
->pipe_bound
&&
2202 (p
->auth
.auth_type
== PIPE_AUTH_TYPE_NTLMSSP
||
2203 (p
->auth
.auth_type
== PIPE_AUTH_TYPE_SPNEGO_NTLMSSP
))) {
2204 memcpy(user
, &p
->pipe_user
, sizeof(struct current_user
));
2206 memcpy(user
, ¤t_user
, sizeof(struct current_user
));
2212 /****************************************************************************
2213 Find the set of RPC functions associated with this context_id
2214 ****************************************************************************/
2216 static PIPE_RPC_FNS
* find_pipe_fns_by_context( PIPE_RPC_FNS
*list
, uint32 context_id
)
2218 PIPE_RPC_FNS
*fns
= NULL
;
2219 PIPE_RPC_FNS
*tmp
= NULL
;
2222 DEBUG(0,("find_pipe_fns_by_context: ERROR! No context list for pipe!\n"));
2226 for (tmp
=list
; tmp
; tmp
=tmp
->next
) {
2227 if ( tmp
->context_id
== context_id
)
2236 /****************************************************************************
2238 ****************************************************************************/
2240 void free_pipe_rpc_context( PIPE_RPC_FNS
*list
)
2242 PIPE_RPC_FNS
*tmp
= list
;
2254 /****************************************************************************
2255 Find the correct RPC function to call for this request.
2256 If the pipe is authenticated then become the correct UNIX user
2257 before doing the call.
2258 ****************************************************************************/
2260 bool api_pipe_request(pipes_struct
*p
)
2263 bool changed_user
= False
;
2264 PIPE_RPC_FNS
*pipe_fns
;
2266 if (p
->pipe_bound
&&
2267 ((p
->auth
.auth_type
== PIPE_AUTH_TYPE_NTLMSSP
) ||
2268 (p
->auth
.auth_type
== PIPE_AUTH_TYPE_SPNEGO_NTLMSSP
))) {
2269 if(!become_authenticated_pipe_user(p
)) {
2270 prs_mem_free(&p
->out_data
.rdata
);
2273 changed_user
= True
;
2276 DEBUG(5, ("Requested \\PIPE\\%s\n", p
->name
));
2278 /* get the set of RPC functions for this context */
2280 pipe_fns
= find_pipe_fns_by_context(p
->contexts
, p
->hdr_req
.context_id
);
2283 TALLOC_CTX
*frame
= talloc_stackframe();
2284 ret
= api_rpcTNP(p
, p
->name
, pipe_fns
->cmds
, pipe_fns
->n_cmds
);
2288 DEBUG(0,("api_pipe_request: No rpc function table associated with context [%d] on pipe [%s]\n",
2289 p
->hdr_req
.context_id
, p
->name
));
2293 unbecome_authenticated_pipe_user();
2299 /*******************************************************************
2300 Calls the underlying RPC function for a named pipe.
2301 ********************************************************************/
2303 bool api_rpcTNP(pipes_struct
*p
, const char *rpc_name
,
2304 const struct api_struct
*api_rpc_cmds
, int n_cmds
)
2308 uint32 offset1
, offset2
;
2310 /* interpret the command */
2311 DEBUG(4,("api_rpcTNP: %s op 0x%x - ", rpc_name
, p
->hdr_req
.opnum
));
2313 slprintf(name
, sizeof(name
)-1, "in_%s", rpc_name
);
2314 prs_dump(name
, p
->hdr_req
.opnum
, &p
->in_data
.data
);
2316 for (fn_num
= 0; fn_num
< n_cmds
; fn_num
++) {
2317 if (api_rpc_cmds
[fn_num
].opnum
== p
->hdr_req
.opnum
&& api_rpc_cmds
[fn_num
].fn
!= NULL
) {
2318 DEBUG(3,("api_rpcTNP: rpc command: %s\n", api_rpc_cmds
[fn_num
].name
));
2323 if (fn_num
== n_cmds
) {
2325 * For an unknown RPC just return a fault PDU but
2326 * return True to allow RPC's on the pipe to continue
2327 * and not put the pipe into fault state. JRA.
2329 DEBUG(4, ("unknown\n"));
2330 setup_fault_pdu(p
, NT_STATUS(DCERPC_FAULT_OP_RNG_ERROR
));
2334 offset1
= prs_offset(&p
->out_data
.rdata
);
2336 DEBUG(6, ("api_rpc_cmds[%d].fn == %p\n",
2337 fn_num
, api_rpc_cmds
[fn_num
].fn
));
2338 /* do the actual command */
2339 if(!api_rpc_cmds
[fn_num
].fn(p
)) {
2340 DEBUG(0,("api_rpcTNP: %s: %s failed.\n", rpc_name
, api_rpc_cmds
[fn_num
].name
));
2341 prs_mem_free(&p
->out_data
.rdata
);
2345 if (p
->bad_handle_fault_state
) {
2346 DEBUG(4,("api_rpcTNP: bad handle fault return.\n"));
2347 p
->bad_handle_fault_state
= False
;
2348 setup_fault_pdu(p
, NT_STATUS(DCERPC_FAULT_CONTEXT_MISMATCH
));
2352 if (p
->rng_fault_state
) {
2353 DEBUG(4, ("api_rpcTNP: rng fault return\n"));
2354 p
->rng_fault_state
= False
;
2355 setup_fault_pdu(p
, NT_STATUS(DCERPC_FAULT_OP_RNG_ERROR
));
2359 slprintf(name
, sizeof(name
)-1, "out_%s", rpc_name
);
2360 offset2
= prs_offset(&p
->out_data
.rdata
);
2361 prs_set_offset(&p
->out_data
.rdata
, offset1
);
2362 prs_dump(name
, p
->hdr_req
.opnum
, &p
->out_data
.rdata
);
2363 prs_set_offset(&p
->out_data
.rdata
, offset2
);
2365 DEBUG(5,("api_rpcTNP: called %s successfully\n", rpc_name
));
2367 /* Check for buffer underflow in rpc parsing */
2369 if ((DEBUGLEVEL
>= 10) &&
2370 (prs_offset(&p
->in_data
.data
) != prs_data_size(&p
->in_data
.data
))) {
2371 size_t data_len
= prs_data_size(&p
->in_data
.data
) - prs_offset(&p
->in_data
.data
);
2372 char *data
= (char *)SMB_MALLOC(data_len
);
2374 DEBUG(10, ("api_rpcTNP: rpc input buffer underflow (parse error?)\n"));
2376 prs_uint8s(False
, "", &p
->in_data
.data
, 0, (unsigned char *)data
, (uint32
)data_len
);