2 * Unix SMB/CIFS implementation.
3 * RPC Pipe client / server routines
4 * Copyright (C) Andrew Tridgell 1992-1998,
5 * Largely re-written : 2005
6 * Copyright (C) Jeremy Allison 1998 - 2005
7 * Copyright (C) Simo Sorce 2010
8 * Copyright (C) Andrew Bartlett 2011
10 * This program is free software; you can redistribute it and/or modify
11 * it under the terms of the GNU General Public License as published by
12 * the Free Software Foundation; either version 3 of the License, or
13 * (at your option) any later version.
15 * This program is distributed in the hope that it will be useful,
16 * but WITHOUT ANY WARRANTY; without even the implied warranty of
17 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18 * GNU General Public License for more details.
20 * You should have received a copy of the GNU General Public License
21 * along with this program; if not, see <http://www.gnu.org/licenses/>.
25 #include "rpc_client/cli_pipe.h"
26 #include "rpc_server/srv_pipe_internal.h"
28 #include "../libcli/named_pipe_auth/npa_tstream.h"
29 #include "rpc_server/rpc_ncacn_np.h"
30 #include "librpc/gen_ndr/netlogon.h"
31 #include "librpc/gen_ndr/auth.h"
32 #include "../auth/auth_sam_reply.h"
34 #include "rpc_server/rpc_pipes.h"
35 #include "../lib/tsocket/tsocket.h"
36 #include "../lib/util/tevent_ntstatus.h"
37 #include "rpc_contexts.h"
38 #include "rpc_server/rpc_config.h"
41 #define DBGC_CLASS DBGC_RPC_SRV
43 /****************************************************************************
44 Make an internal namedpipes structure
45 ****************************************************************************/
47 struct pipes_struct
*make_internal_rpc_pipe_p(TALLOC_CTX
*mem_ctx
,
48 const struct ndr_syntax_id
*syntax
,
49 const struct tsocket_address
*remote_address
,
50 const struct auth_session_info
*session_info
,
51 struct messaging_context
*msg_ctx
)
53 struct pipes_struct
*p
;
54 struct pipe_rpc_fns
*context_fns
;
55 const char *pipe_name
;
58 pipe_name
= get_pipe_name_from_syntax(talloc_tos(), syntax
);
60 DEBUG(4,("Create pipe requested %s\n", pipe_name
));
62 ret
= make_base_pipes_struct(mem_ctx
, msg_ctx
, pipe_name
,
63 NCALRPC
, RPC_LITTLE_ENDIAN
, false,
64 remote_address
, NULL
, &p
);
66 DEBUG(0,("ERROR! no memory for pipes_struct!\n"));
70 if (!init_pipe_handles(p
, syntax
)) {
71 DEBUG(0,("open_rpc_pipe_p: init_pipe_handles failed.\n"));
76 p
->session_info
= copy_session_info(p
, session_info
);
77 if (p
->session_info
== NULL
) {
78 DEBUG(0, ("open_rpc_pipe_p: copy_serverinfo failed\n"));
79 close_policy_by_pipe(p
);
84 context_fns
= talloc(p
, struct pipe_rpc_fns
);
85 if (context_fns
== NULL
) {
86 DEBUG(0,("talloc() failed!\n"));
91 context_fns
->next
= context_fns
->prev
= NULL
;
92 context_fns
->n_cmds
= rpc_srv_get_pipe_num_cmds(syntax
);
93 context_fns
->cmds
= rpc_srv_get_pipe_cmds(syntax
);
94 context_fns
->context_id
= 0;
95 context_fns
->syntax
= *syntax
;
97 /* add to the list of open contexts */
98 DLIST_ADD(p
->contexts
, context_fns
);
100 DEBUG(4,("Created internal pipe %s\n", pipe_name
));
105 static NTSTATUS
rpcint_dispatch(struct pipes_struct
*p
,
108 const DATA_BLOB
*in_data
,
111 struct pipe_rpc_fns
*fns
= find_pipe_fns_by_context(p
->contexts
, 0);
112 uint32_t num_cmds
= fns
->n_cmds
;
113 const struct api_struct
*cmds
= fns
->cmds
;
120 for (i
= 0; i
< num_cmds
; i
++) {
121 if (cmds
[i
].opnum
== opnum
&& cmds
[i
].fn
!= NULL
) {
127 return NT_STATUS_RPC_PROCNUM_OUT_OF_RANGE
;
130 p
->in_data
.data
= *in_data
;
131 p
->out_data
.rdata
= data_blob_null
;
134 p
->in_data
.data
= data_blob_null
;
136 data_blob_free(&p
->out_data
.rdata
);
137 talloc_free_children(p
->mem_ctx
);
138 return NT_STATUS_RPC_CALL_FAILED
;
141 if (p
->fault_state
) {
144 status
= NT_STATUS(p
->fault_state
);
146 data_blob_free(&p
->out_data
.rdata
);
147 talloc_free_children(p
->mem_ctx
);
151 *out_data
= p
->out_data
.rdata
;
152 talloc_steal(mem_ctx
, out_data
->data
);
153 p
->out_data
.rdata
= data_blob_null
;
155 talloc_free_children(p
->mem_ctx
);
159 struct rpcint_bh_state
{
160 struct pipes_struct
*p
;
163 static bool rpcint_bh_is_connected(struct dcerpc_binding_handle
*h
)
165 struct rpcint_bh_state
*hs
= dcerpc_binding_handle_data(h
,
166 struct rpcint_bh_state
);
175 static uint32_t rpcint_bh_set_timeout(struct dcerpc_binding_handle
*h
,
178 /* TODO: implement timeouts */
182 struct rpcint_bh_raw_call_state
{
188 static struct tevent_req
*rpcint_bh_raw_call_send(TALLOC_CTX
*mem_ctx
,
189 struct tevent_context
*ev
,
190 struct dcerpc_binding_handle
*h
,
191 const struct GUID
*object
,
194 const uint8_t *in_data
,
197 struct rpcint_bh_state
*hs
=
198 dcerpc_binding_handle_data(h
,
199 struct rpcint_bh_state
);
200 struct tevent_req
*req
;
201 struct rpcint_bh_raw_call_state
*state
;
205 req
= tevent_req_create(mem_ctx
, &state
,
206 struct rpcint_bh_raw_call_state
);
210 state
->in_data
.data
= discard_const_p(uint8_t, in_data
);
211 state
->in_data
.length
= in_length
;
213 ok
= rpcint_bh_is_connected(h
);
215 tevent_req_nterror(req
, NT_STATUS_CONNECTION_DISCONNECTED
);
216 return tevent_req_post(req
, ev
);
219 /* TODO: allow async */
220 status
= rpcint_dispatch(hs
->p
, state
, opnum
,
223 if (!NT_STATUS_IS_OK(status
)) {
224 tevent_req_nterror(req
, status
);
225 return tevent_req_post(req
, ev
);
228 tevent_req_done(req
);
229 return tevent_req_post(req
, ev
);
232 static NTSTATUS
rpcint_bh_raw_call_recv(struct tevent_req
*req
,
238 struct rpcint_bh_raw_call_state
*state
=
240 struct rpcint_bh_raw_call_state
);
243 if (tevent_req_is_nterror(req
, &status
)) {
244 tevent_req_received(req
);
248 *out_data
= talloc_move(mem_ctx
, &state
->out_data
.data
);
249 *out_length
= state
->out_data
.length
;
251 tevent_req_received(req
);
255 struct rpcint_bh_disconnect_state
{
259 static struct tevent_req
*rpcint_bh_disconnect_send(TALLOC_CTX
*mem_ctx
,
260 struct tevent_context
*ev
,
261 struct dcerpc_binding_handle
*h
)
263 struct rpcint_bh_state
*hs
= dcerpc_binding_handle_data(h
,
264 struct rpcint_bh_state
);
265 struct tevent_req
*req
;
266 struct rpcint_bh_disconnect_state
*state
;
269 req
= tevent_req_create(mem_ctx
, &state
,
270 struct rpcint_bh_disconnect_state
);
275 ok
= rpcint_bh_is_connected(h
);
277 tevent_req_nterror(req
, NT_STATUS_CONNECTION_DISCONNECTED
);
278 return tevent_req_post(req
, ev
);
282 * TODO: do a real async disconnect ...
284 * For now the caller needs to free pipes_struct
288 tevent_req_done(req
);
289 return tevent_req_post(req
, ev
);
292 static NTSTATUS
rpcint_bh_disconnect_recv(struct tevent_req
*req
)
296 if (tevent_req_is_nterror(req
, &status
)) {
297 tevent_req_received(req
);
301 tevent_req_received(req
);
305 static bool rpcint_bh_ref_alloc(struct dcerpc_binding_handle
*h
)
310 static void rpcint_bh_do_ndr_print(struct dcerpc_binding_handle
*h
,
312 const void *_struct_ptr
,
313 const struct ndr_interface_call
*call
)
315 void *struct_ptr
= discard_const(_struct_ptr
);
317 if (DEBUGLEVEL
< 11) {
321 if (ndr_flags
& NDR_IN
) {
322 ndr_print_function_debug(call
->ndr_print
,
327 if (ndr_flags
& NDR_OUT
) {
328 ndr_print_function_debug(call
->ndr_print
,
335 static const struct dcerpc_binding_handle_ops rpcint_bh_ops
= {
337 .is_connected
= rpcint_bh_is_connected
,
338 .set_timeout
= rpcint_bh_set_timeout
,
339 .raw_call_send
= rpcint_bh_raw_call_send
,
340 .raw_call_recv
= rpcint_bh_raw_call_recv
,
341 .disconnect_send
= rpcint_bh_disconnect_send
,
342 .disconnect_recv
= rpcint_bh_disconnect_recv
,
344 .ref_alloc
= rpcint_bh_ref_alloc
,
345 .do_ndr_print
= rpcint_bh_do_ndr_print
,
348 static NTSTATUS
rpcint_binding_handle_ex(TALLOC_CTX
*mem_ctx
,
349 const struct ndr_syntax_id
*abstract_syntax
,
350 const struct ndr_interface_table
*ndr_table
,
351 const struct tsocket_address
*remote_address
,
352 const struct auth_session_info
*session_info
,
353 struct messaging_context
*msg_ctx
,
354 struct dcerpc_binding_handle
**binding_handle
)
356 struct dcerpc_binding_handle
*h
;
357 struct rpcint_bh_state
*hs
;
360 abstract_syntax
= &ndr_table
->syntax_id
;
363 h
= dcerpc_binding_handle_create(mem_ctx
,
368 struct rpcint_bh_state
,
371 return NT_STATUS_NO_MEMORY
;
373 hs
->p
= make_internal_rpc_pipe_p(hs
,
380 return NT_STATUS_NO_MEMORY
;
387 * @brief Create a new DCERPC Binding Handle which uses a local dispatch function.
389 * @param[in] mem_ctx The memory context to use.
391 * @param[in] ndr_table Normally the ndr_table_<name>.
393 * @param[in] remote_address The info about the connected client.
395 * @param[in] serversupplied_info The server supplied authentication function.
397 * @param[in] msg_ctx The messaging context that can be used by the server
399 * @param[out] binding_handle A pointer to store the connected
400 * dcerpc_binding_handle
402 * @return NT_STATUS_OK on success, a corresponding NT status if an
406 * struct dcerpc_binding_handle *winreg_binding;
409 * status = rpcint_binding_handle(tmp_ctx,
417 NTSTATUS
rpcint_binding_handle(TALLOC_CTX
*mem_ctx
,
418 const struct ndr_interface_table
*ndr_table
,
419 const struct tsocket_address
*remote_address
,
420 const struct auth_session_info
*session_info
,
421 struct messaging_context
*msg_ctx
,
422 struct dcerpc_binding_handle
**binding_handle
)
424 return rpcint_binding_handle_ex(mem_ctx
, NULL
, ndr_table
, remote_address
,
425 session_info
, msg_ctx
, binding_handle
);
431 * @brief Create a new RPC client context which uses a local transport.
433 * This creates a local transport. It is a shortcut to directly call the server
434 * functions and avoid marshalling.
435 * NOTE: this function should be used only by rpc_pipe_open_interface()
437 * @param[in] mem_ctx The memory context to use.
439 * @param[in] abstract_syntax Normally the syntax_id of the autogenerated
442 * @param[in] serversupplied_info The server supplied authentication function.
444 * @param[in] remote_address The client address information.
446 * @param[in] msg_ctx The messaging context to use.
448 * @param[out] presult A pointer to store the connected rpc client pipe.
450 * @return NT_STATUS_OK on success, a corresponding NT status if an
453 NTSTATUS
rpc_pipe_open_internal(TALLOC_CTX
*mem_ctx
,
454 const struct ndr_syntax_id
*abstract_syntax
,
455 const struct auth_session_info
*session_info
,
456 const struct tsocket_address
*remote_address
,
457 struct messaging_context
*msg_ctx
,
458 struct rpc_pipe_client
**presult
)
460 struct rpc_pipe_client
*result
;
463 result
= talloc_zero(mem_ctx
, struct rpc_pipe_client
);
464 if (result
== NULL
) {
465 return NT_STATUS_NO_MEMORY
;
468 result
->abstract_syntax
= *abstract_syntax
;
469 result
->transfer_syntax
= ndr_transfer_syntax_ndr
;
471 if (remote_address
== NULL
) {
472 struct tsocket_address
*local
;
475 rc
= tsocket_address_inet_from_strings(mem_ctx
,
482 return NT_STATUS_NO_MEMORY
;
485 remote_address
= local
;
488 result
->max_xmit_frag
= -1;
489 result
->max_recv_frag
= -1;
491 status
= rpcint_binding_handle_ex(result
,
497 &result
->binding_handle
);
498 if (!NT_STATUS_IS_OK(status
)) {
507 /****************************************************************************
508 * External pipes functions
509 ***************************************************************************/
512 struct np_proxy_state
*make_external_rpc_pipe_p(TALLOC_CTX
*mem_ctx
,
513 const char *pipe_name
,
514 const struct tsocket_address
*local_address
,
515 const struct tsocket_address
*remote_address
,
516 const struct auth_session_info
*session_info
)
518 struct np_proxy_state
*result
;
520 const char *socket_dir
;
521 struct tevent_context
*ev
;
522 struct tevent_req
*subreq
;
523 struct auth_session_info_transport
*session_info_t
;
528 result
= talloc(mem_ctx
, struct np_proxy_state
);
529 if (result
== NULL
) {
530 DEBUG(0, ("talloc failed\n"));
534 result
->read_queue
= tevent_queue_create(result
, "np_read");
535 if (result
->read_queue
== NULL
) {
536 DEBUG(0, ("tevent_queue_create failed\n"));
540 result
->write_queue
= tevent_queue_create(result
, "np_write");
541 if (result
->write_queue
== NULL
) {
542 DEBUG(0, ("tevent_queue_create failed\n"));
546 ev
= s3_tevent_context_init(talloc_tos());
548 DEBUG(0, ("s3_tevent_context_init failed\n"));
552 socket_dir
= lp_parm_const_string(
553 GLOBAL_SECTION_SNUM
, "external_rpc_pipe", "socket_dir",
555 if (socket_dir
== NULL
) {
556 DEBUG(0, ("externan_rpc_pipe:socket_dir not set\n"));
559 socket_np_dir
= talloc_asprintf(talloc_tos(), "%s/np", socket_dir
);
560 if (socket_np_dir
== NULL
) {
561 DEBUG(0, ("talloc_asprintf failed\n"));
565 session_info_t
= talloc_zero(talloc_tos(), struct auth_session_info_transport
);
566 if (session_info_t
== NULL
) {
567 DEBUG(0, ("talloc failed\n"));
571 session_info_t
->session_info
= copy_session_info(session_info_t
,
573 if (session_info_t
->session_info
== NULL
) {
574 DEBUG(0, ("copy_session_info failed\n"));
579 subreq
= tstream_npa_connect_send(talloc_tos(), ev
,
582 remote_address
, /* client_addr */
583 NULL
, /* client_name */
584 local_address
, /* server_addr */
585 NULL
, /* server_name */
587 if (subreq
== NULL
) {
589 DEBUG(0, ("tstream_npa_connect_send to %s for pipe %s and "
590 "user %s\\%s failed\n",
591 socket_np_dir
, pipe_name
, session_info_t
->session_info
->info
->domain_name
,
592 session_info_t
->session_info
->info
->account_name
));
595 ok
= tevent_req_poll(subreq
, ev
);
598 DEBUG(0, ("tevent_req_poll to %s for pipe %s and user %s\\%s "
599 "failed for tstream_npa_connect: %s\n",
600 socket_np_dir
, pipe_name
, session_info_t
->session_info
->info
->domain_name
,
601 session_info_t
->session_info
->info
->account_name
,
606 ret
= tstream_npa_connect_recv(subreq
, &sys_errno
,
610 &result
->device_state
,
611 &result
->allocation_size
);
615 if (errno
== ENOENT
) {
618 DEBUG(l
, ("tstream_npa_connect_recv to %s for pipe %s and "
619 "user %s\\%s failed: %s\n",
620 socket_np_dir
, pipe_name
, session_info_t
->session_info
->info
->domain_name
,
621 session_info_t
->session_info
->info
->account_name
,
622 strerror(sys_errno
)));
633 static NTSTATUS
rpc_pipe_open_external(TALLOC_CTX
*mem_ctx
,
634 const char *pipe_name
,
635 const struct ndr_syntax_id
*abstract_syntax
,
636 const struct auth_session_info
*session_info
,
637 struct rpc_pipe_client
**_result
)
639 struct tsocket_address
*local
, *remote
;
640 struct rpc_pipe_client
*result
= NULL
;
641 struct np_proxy_state
*proxy_state
= NULL
;
642 struct pipe_auth_data
*auth
;
646 /* this is an internal connection, fake up ip addresses */
647 ret
= tsocket_address_inet_from_strings(talloc_tos(), "ip",
650 return NT_STATUS_NO_MEMORY
;
652 ret
= tsocket_address_inet_from_strings(talloc_tos(), "ip",
655 return NT_STATUS_NO_MEMORY
;
658 proxy_state
= make_external_rpc_pipe_p(mem_ctx
, pipe_name
,
659 local
, remote
, session_info
);
661 return NT_STATUS_UNSUCCESSFUL
;
664 result
= talloc_zero(mem_ctx
, struct rpc_pipe_client
);
665 if (result
== NULL
) {
666 status
= NT_STATUS_NO_MEMORY
;
670 result
->abstract_syntax
= *abstract_syntax
;
671 result
->transfer_syntax
= ndr_transfer_syntax_ndr
;
673 result
->desthost
= get_myname(result
);
674 result
->srv_name_slash
= talloc_asprintf_strupper_m(
675 result
, "\\\\%s", result
->desthost
);
676 if ((result
->desthost
== NULL
) || (result
->srv_name_slash
== NULL
)) {
677 status
= NT_STATUS_NO_MEMORY
;
681 result
->max_xmit_frag
= RPC_MAX_PDU_FRAG_LEN
;
682 result
->max_recv_frag
= RPC_MAX_PDU_FRAG_LEN
;
684 status
= rpc_transport_tstream_init(result
,
687 if (!NT_STATUS_IS_OK(status
)) {
691 result
->binding_handle
= rpccli_bh_create(result
);
692 if (result
->binding_handle
== NULL
) {
693 status
= NT_STATUS_NO_MEMORY
;
694 DEBUG(0, ("Failed to create binding handle.\n"));
698 result
->auth
= talloc_zero(result
, struct pipe_auth_data
);
700 status
= NT_STATUS_NO_MEMORY
;
703 result
->auth
->auth_type
= DCERPC_AUTH_TYPE_NONE
;
704 result
->auth
->auth_level
= DCERPC_AUTH_LEVEL_NONE
;
706 status
= rpccli_anon_bind_data(result
, &auth
);
707 if (!NT_STATUS_IS_OK(status
)) {
708 DEBUG(0, ("Failed to initialize anonymous bind.\n"));
712 status
= rpc_pipe_bind(result
, auth
);
713 if (!NT_STATUS_IS_OK(status
)) {
714 DEBUG(0, ("Failed to bind external pipe.\n"));
719 if (!NT_STATUS_IS_OK(status
)) {
722 TALLOC_FREE(proxy_state
);
728 * @brief Create a new RPC client context which uses a local dispatch function
729 * or a remote transport, depending on rpc_server configuration for the
732 * @param[in] mem_ctx The memory context to use.
734 * @param[in] abstract_syntax Normally the syntax_id of the autogenerated
737 * @param[in] serversupplied_info The server supplied authentication function.
739 * @param[in] remote_address The client address information.
741 * @param[in] msg_ctx The messaging context to use.
743 * @param[out] presult A pointer to store the connected rpc client pipe.
745 * @return NT_STATUS_OK on success, a corresponding NT status if an
749 * struct rpc_pipe_client *winreg_pipe;
752 * status = rpc_pipe_open_interface(tmp_ctx,
753 * &ndr_table_winreg.syntax_id,
760 NTSTATUS
rpc_pipe_open_interface(TALLOC_CTX
*mem_ctx
,
761 const struct ndr_syntax_id
*syntax
,
762 const struct auth_session_info
*session_info
,
763 const struct tsocket_address
*remote_address
,
764 struct messaging_context
*msg_ctx
,
765 struct rpc_pipe_client
**cli_pipe
)
767 struct rpc_pipe_client
*cli
= NULL
;
768 enum rpc_service_mode_e pipe_mode
;
769 const char *pipe_name
;
773 if (cli_pipe
!= NULL
) {
774 if (rpccli_is_connected(*cli_pipe
)) {
777 TALLOC_FREE(*cli_pipe
);
781 tmp_ctx
= talloc_stackframe();
782 if (tmp_ctx
== NULL
) {
783 return NT_STATUS_NO_MEMORY
;
786 pipe_name
= get_pipe_name_from_syntax(tmp_ctx
, syntax
);
787 if (pipe_name
== NULL
) {
788 status
= NT_STATUS_INVALID_PARAMETER
;
792 while (pipe_name
[0] == '\\') {
796 DEBUG(5, ("Connecting to %s pipe.\n", pipe_name
));
798 pipe_mode
= rpc_service_mode(pipe_name
);
801 case RPC_SERVICE_MODE_EMBEDDED
:
802 status
= rpc_pipe_open_internal(tmp_ctx
,
803 syntax
, session_info
,
804 remote_address
, msg_ctx
,
806 if (!NT_STATUS_IS_OK(status
)) {
810 case RPC_SERVICE_MODE_EXTERNAL
:
811 /* It would be nice to just use rpc_pipe_open_ncalrpc() but
812 * for now we need to use the special proxy setup to connect
815 status
= rpc_pipe_open_external(tmp_ctx
,
819 if (!NT_STATUS_IS_OK(status
)) {
823 case RPC_SERVICE_MODE_DISABLED
:
824 status
= NT_STATUS_NOT_IMPLEMENTED
;
825 DEBUG(0, ("Service pipe %s is disabled in config file: %s",
826 pipe_name
, nt_errstr(status
)));
830 status
= NT_STATUS_OK
;
832 if (NT_STATUS_IS_OK(status
) && cli_pipe
!= NULL
) {
833 *cli_pipe
= talloc_move(mem_ctx
, &cli
);
835 TALLOC_FREE(tmp_ctx
);