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"
39 #include "librpc/ndr/ndr_table.h"
40 #include "rpc_server/rpc_server.h"
43 #define DBGC_CLASS DBGC_RPC_SRV
45 static struct npa_state
*npa_state_init(TALLOC_CTX
*mem_ctx
)
47 struct npa_state
*npa
;
49 npa
= talloc_zero(mem_ctx
, struct npa_state
);
54 npa
->read_queue
= tevent_queue_create(npa
, "npa_cli_read");
55 if (npa
->read_queue
== NULL
) {
56 DEBUG(0, ("tevent_queue_create failed\n"));
60 npa
->write_queue
= tevent_queue_create(npa
, "npa_cli_write");
61 if (npa
->write_queue
== NULL
) {
62 DEBUG(0, ("tevent_queue_create failed\n"));
72 NTSTATUS
make_internal_rpc_pipe_socketpair(TALLOC_CTX
*mem_ctx
,
73 struct tevent_context
*ev_ctx
,
74 struct messaging_context
*msg_ctx
,
75 const char *pipe_name
,
76 const struct ndr_syntax_id
*syntax
,
77 const struct tsocket_address
*remote_address
,
78 const struct auth_session_info
*session_info
,
79 struct npa_state
**pnpa
)
81 TALLOC_CTX
*tmp_ctx
= talloc_stackframe();
82 struct named_pipe_client
*npc
;
83 struct tevent_req
*subreq
;
84 struct npa_state
*npa
;
89 DEBUG(4, ("Create of internal pipe %s requested\n", pipe_name
));
91 npa
= npa_state_init(tmp_ctx
);
93 status
= NT_STATUS_NO_MEMORY
;
97 npa
->file_type
= FILE_TYPE_MESSAGE_MODE_PIPE
;
98 npa
->device_state
= 0xff | 0x0400 | 0x0100;
99 npa
->allocation_size
= 4096;
101 npc
= named_pipe_client_init(npa
,
108 npa
->allocation_size
,
109 NULL
); /* private_data */
111 status
= NT_STATUS_NO_MEMORY
;
114 npa
->private_data
= (void*) npc
;
116 rc
= tstream_npa_socketpair(npa
->file_type
,
122 status
= map_nt_error_from_unix(errno
);
126 npc
->client
= tsocket_address_copy(remote_address
, npc
);
127 if (npc
->client
== NULL
) {
128 status
= NT_STATUS_NO_MEMORY
;
132 npc
->client_name
= tsocket_address_inet_addr_string(npc
->client
, npc
);
133 if (npc
->client_name
== NULL
) {
134 status
= NT_STATUS_NO_MEMORY
;
138 npc
->session_info
= copy_session_info(npc
, session_info
);
139 if (npc
->session_info
== NULL
) {
140 status
= NT_STATUS_NO_MEMORY
;
144 rc
= make_server_pipes_struct(npc
,
155 status
= map_nt_error_from_unix(error
);
159 npc
->write_queue
= tevent_queue_create(npc
, "npa_server_write_queue");
160 if (npc
->write_queue
== NULL
) {
161 status
= NT_STATUS_NO_MEMORY
;
165 subreq
= dcerpc_read_ncacn_packet_send(npc
, npc
->ev
, npc
->tstream
);
166 if (subreq
== NULL
) {
167 DEBUG(2, ("Failed to start receving packets\n"));
168 status
= NT_STATUS_PIPE_BROKEN
;
171 tevent_req_set_callback(subreq
, named_pipe_packet_process
, npc
);
173 *pnpa
= talloc_steal(mem_ctx
, npa
);
174 status
= NT_STATUS_OK
;
176 talloc_free(tmp_ctx
);
180 /****************************************************************************
181 Make an internal namedpipes structure
182 ****************************************************************************/
184 struct pipes_struct
*make_internal_rpc_pipe_p(TALLOC_CTX
*mem_ctx
,
185 const struct ndr_syntax_id
*syntax
,
186 const struct tsocket_address
*remote_address
,
187 const struct auth_session_info
*session_info
,
188 struct messaging_context
*msg_ctx
)
190 struct pipes_struct
*p
;
191 struct pipe_rpc_fns
*context_fns
;
192 const char *pipe_name
;
194 const struct ndr_interface_table
*table
;
196 table
= ndr_table_by_uuid(&syntax
->uuid
);
198 DEBUG(0,("unknown interface\n"));
202 pipe_name
= dcerpc_default_transport_endpoint(mem_ctx
, NCACN_NP
, table
);
204 DEBUG(4,("Create pipe requested %s\n", pipe_name
));
206 ret
= make_base_pipes_struct(mem_ctx
, msg_ctx
, pipe_name
,
207 NCALRPC
, RPC_LITTLE_ENDIAN
, false,
208 remote_address
, NULL
, &p
);
210 DEBUG(0,("ERROR! no memory for pipes_struct!\n"));
214 if (!init_pipe_handles(p
, syntax
)) {
215 DEBUG(0,("open_rpc_pipe_p: init_pipe_handles failed.\n"));
220 p
->session_info
= copy_session_info(p
, session_info
);
221 if (p
->session_info
== NULL
) {
222 DEBUG(0, ("open_rpc_pipe_p: copy_serverinfo failed\n"));
223 close_policy_by_pipe(p
);
228 context_fns
= talloc(p
, struct pipe_rpc_fns
);
229 if (context_fns
== NULL
) {
230 DEBUG(0,("talloc() failed!\n"));
235 context_fns
->next
= context_fns
->prev
= NULL
;
236 context_fns
->n_cmds
= rpc_srv_get_pipe_num_cmds(syntax
);
237 context_fns
->cmds
= rpc_srv_get_pipe_cmds(syntax
);
238 context_fns
->context_id
= 0;
239 context_fns
->syntax
= *syntax
;
241 /* add to the list of open contexts */
242 DLIST_ADD(p
->contexts
, context_fns
);
244 DEBUG(4,("Created internal pipe %s\n", pipe_name
));
249 static NTSTATUS
rpcint_dispatch(struct pipes_struct
*p
,
252 const DATA_BLOB
*in_data
,
255 struct pipe_rpc_fns
*fns
= find_pipe_fns_by_context(p
->contexts
, 0);
256 uint32_t num_cmds
= fns
->n_cmds
;
257 const struct api_struct
*cmds
= fns
->cmds
;
264 for (i
= 0; i
< num_cmds
; i
++) {
265 if (cmds
[i
].opnum
== opnum
&& cmds
[i
].fn
!= NULL
) {
271 return NT_STATUS_RPC_PROCNUM_OUT_OF_RANGE
;
274 p
->in_data
.data
= *in_data
;
275 p
->out_data
.rdata
= data_blob_null
;
278 p
->in_data
.data
= data_blob_null
;
280 data_blob_free(&p
->out_data
.rdata
);
281 talloc_free_children(p
->mem_ctx
);
282 return NT_STATUS_RPC_CALL_FAILED
;
285 if (p
->fault_state
) {
288 status
= NT_STATUS(p
->fault_state
);
290 data_blob_free(&p
->out_data
.rdata
);
291 talloc_free_children(p
->mem_ctx
);
295 *out_data
= p
->out_data
.rdata
;
296 talloc_steal(mem_ctx
, out_data
->data
);
297 p
->out_data
.rdata
= data_blob_null
;
299 talloc_free_children(p
->mem_ctx
);
303 struct rpcint_bh_state
{
304 struct pipes_struct
*p
;
307 static bool rpcint_bh_is_connected(struct dcerpc_binding_handle
*h
)
309 struct rpcint_bh_state
*hs
= dcerpc_binding_handle_data(h
,
310 struct rpcint_bh_state
);
319 static uint32_t rpcint_bh_set_timeout(struct dcerpc_binding_handle
*h
,
322 /* TODO: implement timeouts */
326 struct rpcint_bh_raw_call_state
{
332 static struct tevent_req
*rpcint_bh_raw_call_send(TALLOC_CTX
*mem_ctx
,
333 struct tevent_context
*ev
,
334 struct dcerpc_binding_handle
*h
,
335 const struct GUID
*object
,
338 const uint8_t *in_data
,
341 struct rpcint_bh_state
*hs
=
342 dcerpc_binding_handle_data(h
,
343 struct rpcint_bh_state
);
344 struct tevent_req
*req
;
345 struct rpcint_bh_raw_call_state
*state
;
349 req
= tevent_req_create(mem_ctx
, &state
,
350 struct rpcint_bh_raw_call_state
);
354 state
->in_data
.data
= discard_const_p(uint8_t, in_data
);
355 state
->in_data
.length
= in_length
;
357 ok
= rpcint_bh_is_connected(h
);
359 tevent_req_nterror(req
, NT_STATUS_CONNECTION_DISCONNECTED
);
360 return tevent_req_post(req
, ev
);
363 /* TODO: allow async */
364 status
= rpcint_dispatch(hs
->p
, state
, opnum
,
367 if (!NT_STATUS_IS_OK(status
)) {
368 tevent_req_nterror(req
, status
);
369 return tevent_req_post(req
, ev
);
372 tevent_req_done(req
);
373 return tevent_req_post(req
, ev
);
376 static NTSTATUS
rpcint_bh_raw_call_recv(struct tevent_req
*req
,
382 struct rpcint_bh_raw_call_state
*state
=
384 struct rpcint_bh_raw_call_state
);
387 if (tevent_req_is_nterror(req
, &status
)) {
388 tevent_req_received(req
);
392 *out_data
= talloc_move(mem_ctx
, &state
->out_data
.data
);
393 *out_length
= state
->out_data
.length
;
395 tevent_req_received(req
);
399 struct rpcint_bh_disconnect_state
{
403 static struct tevent_req
*rpcint_bh_disconnect_send(TALLOC_CTX
*mem_ctx
,
404 struct tevent_context
*ev
,
405 struct dcerpc_binding_handle
*h
)
407 struct rpcint_bh_state
*hs
= dcerpc_binding_handle_data(h
,
408 struct rpcint_bh_state
);
409 struct tevent_req
*req
;
410 struct rpcint_bh_disconnect_state
*state
;
413 req
= tevent_req_create(mem_ctx
, &state
,
414 struct rpcint_bh_disconnect_state
);
419 ok
= rpcint_bh_is_connected(h
);
421 tevent_req_nterror(req
, NT_STATUS_CONNECTION_DISCONNECTED
);
422 return tevent_req_post(req
, ev
);
426 * TODO: do a real async disconnect ...
428 * For now the caller needs to free pipes_struct
432 tevent_req_done(req
);
433 return tevent_req_post(req
, ev
);
436 static NTSTATUS
rpcint_bh_disconnect_recv(struct tevent_req
*req
)
440 if (tevent_req_is_nterror(req
, &status
)) {
441 tevent_req_received(req
);
445 tevent_req_received(req
);
449 static bool rpcint_bh_ref_alloc(struct dcerpc_binding_handle
*h
)
454 static void rpcint_bh_do_ndr_print(struct dcerpc_binding_handle
*h
,
456 const void *_struct_ptr
,
457 const struct ndr_interface_call
*call
)
459 void *struct_ptr
= discard_const(_struct_ptr
);
461 if (DEBUGLEVEL
< 11) {
465 if (ndr_flags
& NDR_IN
) {
466 ndr_print_function_debug(call
->ndr_print
,
471 if (ndr_flags
& NDR_OUT
) {
472 ndr_print_function_debug(call
->ndr_print
,
479 static const struct dcerpc_binding_handle_ops rpcint_bh_ops
= {
481 .is_connected
= rpcint_bh_is_connected
,
482 .set_timeout
= rpcint_bh_set_timeout
,
483 .raw_call_send
= rpcint_bh_raw_call_send
,
484 .raw_call_recv
= rpcint_bh_raw_call_recv
,
485 .disconnect_send
= rpcint_bh_disconnect_send
,
486 .disconnect_recv
= rpcint_bh_disconnect_recv
,
488 .ref_alloc
= rpcint_bh_ref_alloc
,
489 .do_ndr_print
= rpcint_bh_do_ndr_print
,
492 static NTSTATUS
rpcint_binding_handle_ex(TALLOC_CTX
*mem_ctx
,
493 const struct ndr_syntax_id
*abstract_syntax
,
494 const struct ndr_interface_table
*ndr_table
,
495 const struct tsocket_address
*remote_address
,
496 const struct auth_session_info
*session_info
,
497 struct messaging_context
*msg_ctx
,
498 struct dcerpc_binding_handle
**binding_handle
)
500 struct dcerpc_binding_handle
*h
;
501 struct rpcint_bh_state
*hs
;
504 abstract_syntax
= &ndr_table
->syntax_id
;
507 h
= dcerpc_binding_handle_create(mem_ctx
,
512 struct rpcint_bh_state
,
515 return NT_STATUS_NO_MEMORY
;
517 hs
->p
= make_internal_rpc_pipe_p(hs
,
524 return NT_STATUS_NO_MEMORY
;
531 * @brief Create a new DCERPC Binding Handle which uses a local dispatch function.
533 * @param[in] mem_ctx The memory context to use.
535 * @param[in] ndr_table Normally the ndr_table_<name>.
537 * @param[in] remote_address The info about the connected client.
539 * @param[in] serversupplied_info The server supplied authentication function.
541 * @param[in] msg_ctx The messaging context that can be used by the server
543 * @param[out] binding_handle A pointer to store the connected
544 * dcerpc_binding_handle
546 * @return NT_STATUS_OK on success, a corresponding NT status if an
550 * struct dcerpc_binding_handle *winreg_binding;
553 * status = rpcint_binding_handle(tmp_ctx,
561 NTSTATUS
rpcint_binding_handle(TALLOC_CTX
*mem_ctx
,
562 const struct ndr_interface_table
*ndr_table
,
563 const struct tsocket_address
*remote_address
,
564 const struct auth_session_info
*session_info
,
565 struct messaging_context
*msg_ctx
,
566 struct dcerpc_binding_handle
**binding_handle
)
568 return rpcint_binding_handle_ex(mem_ctx
, NULL
, ndr_table
, remote_address
,
569 session_info
, msg_ctx
, binding_handle
);
575 * @brief Create a new RPC client context which uses a local transport.
577 * This creates a local transport. It is a shortcut to directly call the server
578 * functions and avoid marshalling.
579 * NOTE: this function should be used only by rpc_pipe_open_interface()
581 * @param[in] mem_ctx The memory context to use.
583 * @param[in] abstract_syntax Normally the syntax_id of the autogenerated
586 * @param[in] serversupplied_info The server supplied authentication function.
588 * @param[in] remote_address The client address information.
590 * @param[in] msg_ctx The messaging context to use.
592 * @param[out] presult A pointer to store the connected rpc client pipe.
594 * @return NT_STATUS_OK on success, a corresponding NT status if an
597 NTSTATUS
rpc_pipe_open_internal(TALLOC_CTX
*mem_ctx
,
598 const struct ndr_syntax_id
*abstract_syntax
,
599 const struct auth_session_info
*session_info
,
600 const struct tsocket_address
*remote_address
,
601 struct messaging_context
*msg_ctx
,
602 struct rpc_pipe_client
**presult
)
604 struct rpc_pipe_client
*result
;
607 result
= talloc_zero(mem_ctx
, struct rpc_pipe_client
);
608 if (result
== NULL
) {
609 return NT_STATUS_NO_MEMORY
;
612 result
->abstract_syntax
= *abstract_syntax
;
613 result
->transfer_syntax
= ndr_transfer_syntax_ndr
;
615 if (remote_address
== NULL
) {
616 struct tsocket_address
*local
;
619 rc
= tsocket_address_inet_from_strings(mem_ctx
,
626 return NT_STATUS_NO_MEMORY
;
629 remote_address
= local
;
632 result
->max_xmit_frag
= -1;
633 result
->max_recv_frag
= -1;
635 status
= rpcint_binding_handle_ex(result
,
641 &result
->binding_handle
);
642 if (!NT_STATUS_IS_OK(status
)) {
651 /****************************************************************************
652 * External pipes functions
653 ***************************************************************************/
655 NTSTATUS
make_external_rpc_pipe(TALLOC_CTX
*mem_ctx
,
656 const char *pipe_name
,
657 const struct tsocket_address
*local_address
,
658 const struct tsocket_address
*remote_address
,
659 const struct auth_session_info
*session_info
,
660 struct npa_state
**pnpa
)
662 TALLOC_CTX
*tmp_ctx
= talloc_stackframe();
663 struct auth_session_info_transport
*session_info_t
;
664 struct tevent_context
*ev_ctx
;
665 struct tevent_req
*subreq
;
666 const char *socket_np_dir
;
667 const char *socket_dir
;
668 struct npa_state
*npa
;
674 npa
= npa_state_init(tmp_ctx
);
676 status
= NT_STATUS_NO_MEMORY
;
680 socket_dir
= lp_parm_const_string(GLOBAL_SECTION_SNUM
,
684 if (socket_dir
== NULL
) {
685 DEBUG(0, ("external_rpc_pipe: socket_dir not set\n"));
686 status
= NT_STATUS_PIPE_NOT_AVAILABLE
;
690 socket_np_dir
= talloc_asprintf(tmp_ctx
, "%s/np", socket_dir
);
691 if (socket_np_dir
== NULL
) {
692 DEBUG(0, ("talloc_asprintf failed\n"));
693 status
= NT_STATUS_NO_MEMORY
;
697 session_info_t
= talloc_zero(tmp_ctx
,
698 struct auth_session_info_transport
);
699 if (session_info_t
== NULL
) {
700 DEBUG(0, ("talloc failed\n"));
701 status
= NT_STATUS_NO_MEMORY
;
705 session_info_t
->session_info
= copy_session_info(session_info_t
,
707 if (session_info_t
->session_info
== NULL
) {
708 DEBUG(0, ("copy_session_info failed\n"));
709 status
= NT_STATUS_NO_MEMORY
;
713 ev_ctx
= s3_tevent_context_init(tmp_ctx
);
714 if (ev_ctx
== NULL
) {
715 DEBUG(0, ("s3_tevent_context_init failed\n"));
716 status
= NT_STATUS_NO_MEMORY
;
721 subreq
= tstream_npa_connect_send(tmp_ctx
,
725 remote_address
, /* client_addr */
726 NULL
, /* client_name */
727 local_address
, /* server_addr */
728 NULL
, /* server_name */
730 if (subreq
== NULL
) {
732 DEBUG(0, ("tstream_npa_connect_send to %s for pipe %s and "
733 "user %s\\%s failed\n",
734 socket_np_dir
, pipe_name
, session_info_t
->session_info
->info
->domain_name
,
735 session_info_t
->session_info
->info
->account_name
));
736 status
= NT_STATUS_OBJECT_NAME_NOT_FOUND
;
739 ok
= tevent_req_poll(subreq
, ev_ctx
);
742 DEBUG(0, ("tevent_req_poll to %s for pipe %s and user %s\\%s "
743 "failed for tstream_npa_connect: %s\n",
746 session_info_t
->session_info
->info
->domain_name
,
747 session_info_t
->session_info
->info
->account_name
,
749 status
= NT_STATUS_OBJECT_NAME_NOT_FOUND
;
753 rc
= tstream_npa_connect_recv(subreq
,
759 &npa
->allocation_size
);
764 if (errno
== ENOENT
) {
768 DEBUG(l
, ("tstream_npa_connect_recv to %s for pipe %s and "
769 "user %s\\%s failed: %s\n",
772 session_info_t
->session_info
->info
->domain_name
,
773 session_info_t
->session_info
->info
->account_name
,
774 strerror(sys_errno
)));
775 status
= NT_STATUS_OBJECT_NAME_NOT_FOUND
;
779 *pnpa
= talloc_steal(mem_ctx
, npa
);
780 status
= NT_STATUS_OK
;
782 talloc_free(tmp_ctx
);
787 struct np_proxy_state
*make_external_rpc_pipe_p(TALLOC_CTX
*mem_ctx
,
788 const char *pipe_name
,
789 const struct tsocket_address
*local_address
,
790 const struct tsocket_address
*remote_address
,
791 const struct auth_session_info
*session_info
)
793 struct np_proxy_state
*result
;
795 const char *socket_dir
;
796 struct tevent_context
*ev
;
797 struct tevent_req
*subreq
;
798 struct auth_session_info_transport
*session_info_t
;
803 result
= talloc(mem_ctx
, struct np_proxy_state
);
804 if (result
== NULL
) {
805 DEBUG(0, ("talloc failed\n"));
809 result
->read_queue
= tevent_queue_create(result
, "np_read");
810 if (result
->read_queue
== NULL
) {
811 DEBUG(0, ("tevent_queue_create failed\n"));
815 result
->write_queue
= tevent_queue_create(result
, "np_write");
816 if (result
->write_queue
== NULL
) {
817 DEBUG(0, ("tevent_queue_create failed\n"));
821 ev
= s3_tevent_context_init(talloc_tos());
823 DEBUG(0, ("s3_tevent_context_init failed\n"));
827 socket_dir
= lp_parm_const_string(
828 GLOBAL_SECTION_SNUM
, "external_rpc_pipe", "socket_dir",
830 if (socket_dir
== NULL
) {
831 DEBUG(0, ("external_rpc_pipe:socket_dir not set\n"));
834 socket_np_dir
= talloc_asprintf(talloc_tos(), "%s/np", socket_dir
);
835 if (socket_np_dir
== NULL
) {
836 DEBUG(0, ("talloc_asprintf failed\n"));
840 session_info_t
= talloc_zero(talloc_tos(), struct auth_session_info_transport
);
841 if (session_info_t
== NULL
) {
842 DEBUG(0, ("talloc failed\n"));
846 session_info_t
->session_info
= copy_session_info(session_info_t
,
848 if (session_info_t
->session_info
== NULL
) {
849 DEBUG(0, ("copy_session_info failed\n"));
854 subreq
= tstream_npa_connect_send(talloc_tos(), ev
,
857 remote_address
, /* client_addr */
858 NULL
, /* client_name */
859 local_address
, /* server_addr */
860 NULL
, /* server_name */
862 if (subreq
== NULL
) {
864 DEBUG(0, ("tstream_npa_connect_send to %s for pipe %s and "
865 "user %s\\%s failed\n",
866 socket_np_dir
, pipe_name
, session_info_t
->session_info
->info
->domain_name
,
867 session_info_t
->session_info
->info
->account_name
));
870 ok
= tevent_req_poll(subreq
, ev
);
873 DEBUG(0, ("tevent_req_poll to %s for pipe %s and user %s\\%s "
874 "failed for tstream_npa_connect: %s\n",
875 socket_np_dir
, pipe_name
, session_info_t
->session_info
->info
->domain_name
,
876 session_info_t
->session_info
->info
->account_name
,
881 ret
= tstream_npa_connect_recv(subreq
, &sys_errno
,
885 &result
->device_state
,
886 &result
->allocation_size
);
890 if (errno
== ENOENT
) {
893 DEBUG(l
, ("tstream_npa_connect_recv to %s for pipe %s and "
894 "user %s\\%s failed: %s\n",
895 socket_np_dir
, pipe_name
, session_info_t
->session_info
->info
->domain_name
,
896 session_info_t
->session_info
->info
->account_name
,
897 strerror(sys_errno
)));
908 static NTSTATUS
rpc_pipe_open_external(TALLOC_CTX
*mem_ctx
,
909 const char *pipe_name
,
910 const struct ndr_interface_table
*table
,
911 const struct auth_session_info
*session_info
,
912 struct rpc_pipe_client
**_result
)
914 struct tsocket_address
*local
, *remote
;
915 struct rpc_pipe_client
*result
= NULL
;
916 struct np_proxy_state
*proxy_state
= NULL
;
917 struct pipe_auth_data
*auth
;
921 /* this is an internal connection, fake up ip addresses */
922 ret
= tsocket_address_inet_from_strings(talloc_tos(), "ip",
925 return NT_STATUS_NO_MEMORY
;
927 ret
= tsocket_address_inet_from_strings(talloc_tos(), "ip",
930 return NT_STATUS_NO_MEMORY
;
933 proxy_state
= make_external_rpc_pipe_p(mem_ctx
, pipe_name
,
934 local
, remote
, session_info
);
936 return NT_STATUS_UNSUCCESSFUL
;
939 result
= talloc_zero(mem_ctx
, struct rpc_pipe_client
);
940 if (result
== NULL
) {
941 status
= NT_STATUS_NO_MEMORY
;
945 result
->abstract_syntax
= table
->syntax_id
;
946 result
->transfer_syntax
= ndr_transfer_syntax_ndr
;
948 result
->desthost
= get_myname(result
);
949 result
->srv_name_slash
= talloc_asprintf_strupper_m(
950 result
, "\\\\%s", result
->desthost
);
951 if ((result
->desthost
== NULL
) || (result
->srv_name_slash
== NULL
)) {
952 status
= NT_STATUS_NO_MEMORY
;
956 result
->max_xmit_frag
= RPC_MAX_PDU_FRAG_LEN
;
957 result
->max_recv_frag
= RPC_MAX_PDU_FRAG_LEN
;
959 status
= rpc_transport_tstream_init(result
,
962 if (!NT_STATUS_IS_OK(status
)) {
966 result
->binding_handle
= rpccli_bh_create(result
, NULL
, table
);
967 if (result
->binding_handle
== NULL
) {
968 status
= NT_STATUS_NO_MEMORY
;
969 DEBUG(0, ("Failed to create binding handle.\n"));
973 result
->auth
= talloc_zero(result
, struct pipe_auth_data
);
975 status
= NT_STATUS_NO_MEMORY
;
978 result
->auth
->auth_type
= DCERPC_AUTH_TYPE_NONE
;
979 result
->auth
->auth_level
= DCERPC_AUTH_LEVEL_NONE
;
981 status
= rpccli_anon_bind_data(result
, &auth
);
982 if (!NT_STATUS_IS_OK(status
)) {
983 DEBUG(0, ("Failed to initialize anonymous bind.\n"));
987 status
= rpc_pipe_bind(result
, auth
);
988 if (!NT_STATUS_IS_OK(status
)) {
989 DEBUG(0, ("Failed to bind external pipe.\n"));
994 if (!NT_STATUS_IS_OK(status
)) {
997 TALLOC_FREE(proxy_state
);
1003 * @brief Create a new RPC client context which uses a local dispatch function
1004 * or a remote transport, depending on rpc_server configuration for the
1007 * @param[in] mem_ctx The memory context to use.
1009 * @param[in] abstract_syntax Normally the syntax_id of the autogenerated
1012 * @param[in] serversupplied_info The server supplied authentication function.
1014 * @param[in] remote_address The client address information.
1016 * @param[in] msg_ctx The messaging context to use.
1018 * @param[out] presult A pointer to store the connected rpc client pipe.
1020 * @return NT_STATUS_OK on success, a corresponding NT status if an
1024 * struct rpc_pipe_client *winreg_pipe;
1027 * status = rpc_pipe_open_interface(tmp_ctx,
1028 * &ndr_table_winreg.syntax_id,
1035 NTSTATUS
rpc_pipe_open_interface(TALLOC_CTX
*mem_ctx
,
1036 const struct ndr_interface_table
*table
,
1037 const struct auth_session_info
*session_info
,
1038 const struct tsocket_address
*remote_address
,
1039 struct messaging_context
*msg_ctx
,
1040 struct rpc_pipe_client
**cli_pipe
)
1042 struct rpc_pipe_client
*cli
= NULL
;
1043 enum rpc_service_mode_e pipe_mode
;
1044 const char *pipe_name
;
1046 TALLOC_CTX
*tmp_ctx
;
1048 if (cli_pipe
!= NULL
) {
1049 if (rpccli_is_connected(*cli_pipe
)) {
1050 return NT_STATUS_OK
;
1052 TALLOC_FREE(*cli_pipe
);
1056 tmp_ctx
= talloc_stackframe();
1057 if (tmp_ctx
== NULL
) {
1058 return NT_STATUS_NO_MEMORY
;
1061 pipe_name
= dcerpc_default_transport_endpoint(mem_ctx
, NCACN_NP
, table
);
1062 if (pipe_name
== NULL
) {
1063 status
= NT_STATUS_INVALID_PARAMETER
;
1067 while (pipe_name
[0] == '\\') {
1071 DEBUG(5, ("Connecting to %s pipe.\n", pipe_name
));
1073 pipe_mode
= rpc_service_mode(pipe_name
);
1075 switch (pipe_mode
) {
1076 case RPC_SERVICE_MODE_EMBEDDED
:
1077 status
= rpc_pipe_open_internal(tmp_ctx
,
1078 &table
->syntax_id
, session_info
,
1079 remote_address
, msg_ctx
,
1081 if (!NT_STATUS_IS_OK(status
)) {
1085 case RPC_SERVICE_MODE_EXTERNAL
:
1086 /* It would be nice to just use rpc_pipe_open_ncalrpc() but
1087 * for now we need to use the special proxy setup to connect
1090 status
= rpc_pipe_open_external(tmp_ctx
,
1094 if (!NT_STATUS_IS_OK(status
)) {
1098 case RPC_SERVICE_MODE_DISABLED
:
1099 status
= NT_STATUS_NOT_IMPLEMENTED
;
1100 DEBUG(0, ("Service pipe %s is disabled in config file: %s",
1101 pipe_name
, nt_errstr(status
)));
1105 status
= NT_STATUS_OK
;
1107 if (NT_STATUS_IS_OK(status
) && cli_pipe
!= NULL
) {
1108 *cli_pipe
= talloc_move(mem_ctx
, &cli
);
1110 TALLOC_FREE(tmp_ctx
);