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
9 * This program is free software; you can redistribute it and/or modify
10 * it under the terms of the GNU General Public License as published by
11 * the Free Software Foundation; either version 3 of the License, or
12 * (at your option) any later version.
14 * This program is distributed in the hope that it will be useful,
15 * but WITHOUT ANY WARRANTY; without even the implied warranty of
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 * GNU General Public License for more details.
19 * You should have received a copy of the GNU General Public License
20 * along with this program; if not, see <http://www.gnu.org/licenses/>.
24 #include "rpc_client/cli_pipe.h"
25 #include "rpc_server/srv_pipe_internal.h"
27 #include "../libcli/named_pipe_auth/npa_tstream.h"
28 #include "rpc_server/rpc_ncacn_np.h"
29 #include "librpc/gen_ndr/netlogon.h"
30 #include "librpc/gen_ndr/auth.h"
31 #include "../auth/auth_sam_reply.h"
34 #include "../lib/tsocket/tsocket.h"
35 #include "../lib/util/tevent_ntstatus.h"
38 #define DBGC_CLASS DBGC_RPC_SRV
40 static int pipes_open
;
42 static struct pipes_struct
*InternalPipes
;
45 * the following prototypes are declared here to avoid
46 * code being moved about too much for a patch to be
47 * disrupted / less obvious.
49 * these functions, and associated functions that they
50 * call, should be moved behind a .so module-loading
51 * system _anyway_. so that's the next step...
54 /****************************************************************************
55 Internal Pipe iterator functions.
56 ****************************************************************************/
58 struct pipes_struct
*get_first_internal_pipe(void)
63 struct pipes_struct
*get_next_internal_pipe(struct pipes_struct
*p
)
68 static void free_pipe_rpc_context_internal( PIPE_RPC_FNS
*list
)
70 PIPE_RPC_FNS
*tmp
= list
;
82 bool check_open_pipes(void)
84 struct pipes_struct
*p
;
86 for (p
= InternalPipes
; p
!= NULL
; p
= p
->next
) {
87 if (num_pipe_handles(p
) != 0) {
94 /****************************************************************************
96 ****************************************************************************/
98 int close_internal_rpc_pipe_hnd(struct pipes_struct
*p
)
101 DEBUG(0,("Invalid pipe in close_internal_rpc_pipe_hnd\n"));
105 TALLOC_FREE(p
->auth
.auth_ctx
);
107 free_pipe_rpc_context_internal( p
->contexts
);
109 /* Free the handles database. */
110 close_policy_by_pipe(p
);
112 DLIST_REMOVE(InternalPipes
, p
);
119 /****************************************************************************
120 Make an internal namedpipes structure
121 ****************************************************************************/
123 struct pipes_struct
*make_internal_rpc_pipe_p(TALLOC_CTX
*mem_ctx
,
124 const struct ndr_syntax_id
*syntax
,
125 struct client_address
*client_id
,
126 const struct auth_serversupplied_info
*session_info
,
127 struct messaging_context
*msg_ctx
)
129 struct pipes_struct
*p
;
131 DEBUG(4,("Create pipe requested %s\n",
132 get_pipe_name_from_syntax(talloc_tos(), syntax
)));
134 p
= TALLOC_ZERO_P(mem_ctx
, struct pipes_struct
);
137 DEBUG(0,("ERROR! no memory for pipes_struct!\n"));
141 p
->mem_ctx
= talloc_named(p
, 0, "pipe %s %p",
142 get_pipe_name_from_syntax(talloc_tos(),
144 if (p
->mem_ctx
== NULL
) {
145 DEBUG(0,("open_rpc_pipe_p: talloc_init failed.\n"));
150 if (!init_pipe_handles(p
, syntax
)) {
151 DEBUG(0,("open_rpc_pipe_p: init_pipe_handles failed.\n"));
156 p
->session_info
= copy_serverinfo(p
, session_info
);
157 if (p
->session_info
== NULL
) {
158 DEBUG(0, ("open_rpc_pipe_p: copy_serverinfo failed\n"));
159 close_policy_by_pipe(p
);
164 p
->msg_ctx
= msg_ctx
;
166 DLIST_ADD(InternalPipes
, p
);
168 p
->client_id
= client_id
;
170 p
->endian
= RPC_LITTLE_ENDIAN
;
173 p
->transport
= NCALRPC
;
175 DEBUG(4,("Created internal pipe %s (pipes_open=%d)\n",
176 get_pipe_name_from_syntax(talloc_tos(), syntax
), pipes_open
));
178 talloc_set_destructor(p
, close_internal_rpc_pipe_hnd
);
183 static NTSTATUS
rpcint_dispatch(struct pipes_struct
*p
,
186 const DATA_BLOB
*in_data
,
189 uint32_t num_cmds
= rpc_srv_get_pipe_num_cmds(&p
->syntax
);
190 const struct api_struct
*cmds
= rpc_srv_get_pipe_cmds(&p
->syntax
);
197 for (i
= 0; i
< num_cmds
; i
++) {
198 if (cmds
[i
].opnum
== opnum
&& cmds
[i
].fn
!= NULL
) {
204 return NT_STATUS_RPC_PROCNUM_OUT_OF_RANGE
;
207 p
->in_data
.data
= *in_data
;
208 p
->out_data
.rdata
= data_blob_null
;
211 p
->in_data
.data
= data_blob_null
;
213 data_blob_free(&p
->out_data
.rdata
);
214 talloc_free_children(p
->mem_ctx
);
215 return NT_STATUS_RPC_CALL_FAILED
;
218 if (p
->fault_state
) {
219 p
->fault_state
= false;
220 data_blob_free(&p
->out_data
.rdata
);
221 talloc_free_children(p
->mem_ctx
);
222 return NT_STATUS_RPC_CALL_FAILED
;
225 if (p
->bad_handle_fault_state
) {
226 p
->bad_handle_fault_state
= false;
227 data_blob_free(&p
->out_data
.rdata
);
228 talloc_free_children(p
->mem_ctx
);
229 return NT_STATUS_RPC_SS_CONTEXT_MISMATCH
;
232 if (p
->rng_fault_state
) {
233 p
->rng_fault_state
= false;
234 data_blob_free(&p
->out_data
.rdata
);
235 talloc_free_children(p
->mem_ctx
);
236 return NT_STATUS_RPC_PROCNUM_OUT_OF_RANGE
;
239 *out_data
= p
->out_data
.rdata
;
240 talloc_steal(mem_ctx
, out_data
->data
);
241 p
->out_data
.rdata
= data_blob_null
;
243 talloc_free_children(p
->mem_ctx
);
247 struct rpcint_bh_state
{
248 struct pipes_struct
*p
;
251 static bool rpcint_bh_is_connected(struct dcerpc_binding_handle
*h
)
253 struct rpcint_bh_state
*hs
= dcerpc_binding_handle_data(h
,
254 struct rpcint_bh_state
);
263 static uint32_t rpcint_bh_set_timeout(struct dcerpc_binding_handle
*h
,
266 /* TODO: implement timeouts */
270 struct rpcint_bh_raw_call_state
{
276 static struct tevent_req
*rpcint_bh_raw_call_send(TALLOC_CTX
*mem_ctx
,
277 struct tevent_context
*ev
,
278 struct dcerpc_binding_handle
*h
,
279 const struct GUID
*object
,
282 const uint8_t *in_data
,
285 struct rpcint_bh_state
*hs
=
286 dcerpc_binding_handle_data(h
,
287 struct rpcint_bh_state
);
288 struct tevent_req
*req
;
289 struct rpcint_bh_raw_call_state
*state
;
293 req
= tevent_req_create(mem_ctx
, &state
,
294 struct rpcint_bh_raw_call_state
);
298 state
->in_data
.data
= discard_const_p(uint8_t, in_data
);
299 state
->in_data
.length
= in_length
;
301 ok
= rpcint_bh_is_connected(h
);
303 tevent_req_nterror(req
, NT_STATUS_INVALID_CONNECTION
);
304 return tevent_req_post(req
, ev
);
307 /* TODO: allow async */
308 status
= rpcint_dispatch(hs
->p
, state
, opnum
,
311 if (!NT_STATUS_IS_OK(status
)) {
312 tevent_req_nterror(req
, status
);
313 return tevent_req_post(req
, ev
);
316 tevent_req_done(req
);
317 return tevent_req_post(req
, ev
);
320 static NTSTATUS
rpcint_bh_raw_call_recv(struct tevent_req
*req
,
326 struct rpcint_bh_raw_call_state
*state
=
328 struct rpcint_bh_raw_call_state
);
331 if (tevent_req_is_nterror(req
, &status
)) {
332 tevent_req_received(req
);
336 *out_data
= talloc_move(mem_ctx
, &state
->out_data
.data
);
337 *out_length
= state
->out_data
.length
;
339 tevent_req_received(req
);
343 struct rpcint_bh_disconnect_state
{
347 static struct tevent_req
*rpcint_bh_disconnect_send(TALLOC_CTX
*mem_ctx
,
348 struct tevent_context
*ev
,
349 struct dcerpc_binding_handle
*h
)
351 struct rpcint_bh_state
*hs
= dcerpc_binding_handle_data(h
,
352 struct rpcint_bh_state
);
353 struct tevent_req
*req
;
354 struct rpcint_bh_disconnect_state
*state
;
357 req
= tevent_req_create(mem_ctx
, &state
,
358 struct rpcint_bh_disconnect_state
);
363 ok
= rpcint_bh_is_connected(h
);
365 tevent_req_nterror(req
, NT_STATUS_INVALID_CONNECTION
);
366 return tevent_req_post(req
, ev
);
370 * TODO: do a real async disconnect ...
372 * For now the caller needs to free pipes_struct
376 tevent_req_done(req
);
377 return tevent_req_post(req
, ev
);
380 static NTSTATUS
rpcint_bh_disconnect_recv(struct tevent_req
*req
)
384 if (tevent_req_is_nterror(req
, &status
)) {
385 tevent_req_received(req
);
389 tevent_req_received(req
);
393 static bool rpcint_bh_ref_alloc(struct dcerpc_binding_handle
*h
)
398 static void rpcint_bh_do_ndr_print(struct dcerpc_binding_handle
*h
,
400 const void *_struct_ptr
,
401 const struct ndr_interface_call
*call
)
403 void *struct_ptr
= discard_const(_struct_ptr
);
405 if (DEBUGLEVEL
< 11) {
409 if (ndr_flags
& NDR_IN
) {
410 ndr_print_function_debug(call
->ndr_print
,
415 if (ndr_flags
& NDR_OUT
) {
416 ndr_print_function_debug(call
->ndr_print
,
423 static const struct dcerpc_binding_handle_ops rpcint_bh_ops
= {
425 .is_connected
= rpcint_bh_is_connected
,
426 .set_timeout
= rpcint_bh_set_timeout
,
427 .raw_call_send
= rpcint_bh_raw_call_send
,
428 .raw_call_recv
= rpcint_bh_raw_call_recv
,
429 .disconnect_send
= rpcint_bh_disconnect_send
,
430 .disconnect_recv
= rpcint_bh_disconnect_recv
,
432 .ref_alloc
= rpcint_bh_ref_alloc
,
433 .do_ndr_print
= rpcint_bh_do_ndr_print
,
436 static NTSTATUS
rpcint_binding_handle_ex(TALLOC_CTX
*mem_ctx
,
437 const struct ndr_syntax_id
*abstract_syntax
,
438 const struct ndr_interface_table
*ndr_table
,
439 struct client_address
*client_id
,
440 const struct auth_serversupplied_info
*session_info
,
441 struct messaging_context
*msg_ctx
,
442 struct dcerpc_binding_handle
**binding_handle
)
444 struct dcerpc_binding_handle
*h
;
445 struct rpcint_bh_state
*hs
;
448 abstract_syntax
= &ndr_table
->syntax_id
;
451 h
= dcerpc_binding_handle_create(mem_ctx
,
456 struct rpcint_bh_state
,
459 return NT_STATUS_NO_MEMORY
;
461 hs
->p
= make_internal_rpc_pipe_p(hs
,
468 return NT_STATUS_NO_MEMORY
;
475 * @brief Create a new DCERPC Binding Handle which uses a local dispatch function.
477 * @param[in] mem_ctx The memory context to use.
479 * @param[in] ndr_table Normally the ndr_table_<name>.
481 * @param[in] client_id The info about the connected client.
483 * @param[in] serversupplied_info The server supplied authentication function.
485 * @param[in] msg_ctx The messaging context that can be used by the server
487 * @param[out] binding_handle A pointer to store the connected
488 * dcerpc_binding_handle
490 * @return NT_STATUS_OK on success, a corresponding NT status if an
494 * struct dcerpc_binding_handle *winreg_binding;
497 * status = rpcint_binding_handle(tmp_ctx,
505 NTSTATUS
rpcint_binding_handle(TALLOC_CTX
*mem_ctx
,
506 const struct ndr_interface_table
*ndr_table
,
507 struct client_address
*client_id
,
508 const struct auth_serversupplied_info
*session_info
,
509 struct messaging_context
*msg_ctx
,
510 struct dcerpc_binding_handle
**binding_handle
)
512 return rpcint_binding_handle_ex(mem_ctx
, NULL
, ndr_table
, client_id
,
513 session_info
, msg_ctx
, binding_handle
);
519 * @brief Create a new RPC client context which uses a local transport.
521 * This creates a local transport. It is a shortcut to directly call the server
522 * functions and avoid marshalling.
523 * NOTE: this function should be used only by rpc_pipe_open_interface()
525 * @param[in] mem_ctx The memory context to use.
527 * @param[in] abstract_syntax Normally the syntax_id of the autogenerated
530 * @param[in] serversupplied_info The server supplied authentication function.
532 * @param[in] client_id The client address information.
534 * @param[in] msg_ctx The messaging context to use.
536 * @param[out] presult A pointer to store the connected rpc client pipe.
538 * @return NT_STATUS_OK on success, a corresponding NT status if an
541 static NTSTATUS
rpc_pipe_open_internal(TALLOC_CTX
*mem_ctx
,
542 const struct ndr_syntax_id
*abstract_syntax
,
543 const struct auth_serversupplied_info
*serversupplied_info
,
544 struct client_address
*client_id
,
545 struct messaging_context
*msg_ctx
,
546 struct rpc_pipe_client
**presult
)
548 struct rpc_pipe_client
*result
;
551 result
= TALLOC_ZERO_P(mem_ctx
, struct rpc_pipe_client
);
552 if (result
== NULL
) {
553 return NT_STATUS_NO_MEMORY
;
556 result
->abstract_syntax
= *abstract_syntax
;
557 result
->transfer_syntax
= ndr_transfer_syntax
;
559 if (client_id
== NULL
) {
560 static struct client_address unknown
;
561 strlcpy(unknown
.addr
, "<UNKNOWN>", sizeof(unknown
.addr
));
562 unknown
.name
= "<UNKNOWN>";
563 client_id
= &unknown
;
566 result
->max_xmit_frag
= -1;
567 result
->max_recv_frag
= -1;
569 status
= rpcint_binding_handle_ex(result
,
575 &result
->binding_handle
);
576 if (!NT_STATUS_IS_OK(status
)) {
585 /****************************************************************************
586 * External pipes functions
587 ***************************************************************************/
590 struct np_proxy_state
*make_external_rpc_pipe_p(TALLOC_CTX
*mem_ctx
,
591 const char *pipe_name
,
592 const struct tsocket_address
*local_address
,
593 const struct tsocket_address
*remote_address
,
594 const struct auth_serversupplied_info
*session_info
)
596 struct np_proxy_state
*result
;
598 const char *socket_dir
;
599 struct tevent_context
*ev
;
600 struct tevent_req
*subreq
;
601 struct auth_session_info_transport
*session_info_t
;
602 struct auth_user_info_dc
*user_info_dc
;
603 union netr_Validation val
;
609 result
= talloc(mem_ctx
, struct np_proxy_state
);
610 if (result
== NULL
) {
611 DEBUG(0, ("talloc failed\n"));
615 result
->read_queue
= tevent_queue_create(result
, "np_read");
616 if (result
->read_queue
== NULL
) {
617 DEBUG(0, ("tevent_queue_create failed\n"));
621 result
->write_queue
= tevent_queue_create(result
, "np_write");
622 if (result
->write_queue
== NULL
) {
623 DEBUG(0, ("tevent_queue_create failed\n"));
627 ev
= s3_tevent_context_init(talloc_tos());
629 DEBUG(0, ("s3_tevent_context_init failed\n"));
633 socket_dir
= lp_parm_const_string(
634 GLOBAL_SECTION_SNUM
, "external_rpc_pipe", "socket_dir",
636 if (socket_dir
== NULL
) {
637 DEBUG(0, ("externan_rpc_pipe:socket_dir not set\n"));
640 socket_np_dir
= talloc_asprintf(talloc_tos(), "%s/np", socket_dir
);
641 if (socket_np_dir
== NULL
) {
642 DEBUG(0, ("talloc_asprintf failed\n"));
646 session_info_t
= talloc_zero(talloc_tos(), struct auth_session_info_transport
);
647 if (session_info_t
== NULL
) {
648 DEBUG(0, ("talloc failed\n"));
652 /* Send the named_pipe_auth server the user's full token */
653 session_info_t
->security_token
= session_info
->security_token
;
654 session_info_t
->session_key
= session_info
->user_session_key
;
656 val
.sam3
= session_info
->info3
;
658 /* Convert into something we can build a struct
659 * auth_session_info_transport from. Most of the work here
660 * will be to convert the SIDS, which we will then ignore, but
661 * this is the easier way to handle it */
662 status
= make_user_info_dc_netlogon_validation(talloc_tos(), "", 3, &val
, &user_info_dc
);
663 if (!NT_STATUS_IS_OK(status
)) {
664 DEBUG(0, ("conversion of info3 into user_info_dc failed!\n"));
668 session_info_t
->info
= talloc_move(session_info_t
, &user_info_dc
->info
);
669 talloc_free(user_info_dc
);
672 subreq
= tstream_npa_connect_send(talloc_tos(), ev
,
675 remote_address
, /* client_addr */
676 NULL
, /* client_name */
677 local_address
, /* server_addr */
678 NULL
, /* server_name */
680 if (subreq
== NULL
) {
682 DEBUG(0, ("tstream_npa_connect_send to %s for pipe %s and "
683 "user %s\\%s failed\n",
684 socket_np_dir
, pipe_name
, session_info_t
->info
->domain_name
,
685 session_info_t
->info
->account_name
));
688 ok
= tevent_req_poll(subreq
, ev
);
691 DEBUG(0, ("tevent_req_poll to %s for pipe %s and user %s\\%s "
692 "failed for tstream_npa_connect: %s\n",
693 socket_np_dir
, pipe_name
, session_info_t
->info
->domain_name
,
694 session_info_t
->info
->account_name
,
699 ret
= tstream_npa_connect_recv(subreq
, &sys_errno
,
703 &result
->device_state
,
704 &result
->allocation_size
);
707 DEBUG(0, ("tstream_npa_connect_recv to %s for pipe %s and "
708 "user %s\\%s failed: %s\n",
709 socket_np_dir
, pipe_name
, session_info_t
->info
->domain_name
,
710 session_info_t
->info
->account_name
,
711 strerror(sys_errno
)));
722 static NTSTATUS
rpc_pipe_open_external(TALLOC_CTX
*mem_ctx
,
723 const char *pipe_name
,
724 const struct ndr_syntax_id
*abstract_syntax
,
725 const struct auth_serversupplied_info
*session_info
,
726 struct rpc_pipe_client
**_result
)
728 struct tsocket_address
*local
, *remote
;
729 struct rpc_pipe_client
*result
= NULL
;
730 struct np_proxy_state
*proxy_state
= NULL
;
731 struct pipe_auth_data
*auth
;
735 /* this is an internal connection, fake up ip addresses */
736 ret
= tsocket_address_inet_from_strings(talloc_tos(), "ip",
739 return NT_STATUS_NO_MEMORY
;
741 ret
= tsocket_address_inet_from_strings(talloc_tos(), "ip",
744 return NT_STATUS_NO_MEMORY
;
747 proxy_state
= make_external_rpc_pipe_p(mem_ctx
, pipe_name
,
748 local
, remote
, session_info
);
750 return NT_STATUS_UNSUCCESSFUL
;
753 result
= talloc_zero(mem_ctx
, struct rpc_pipe_client
);
754 if (result
== NULL
) {
755 status
= NT_STATUS_NO_MEMORY
;
759 result
->abstract_syntax
= *abstract_syntax
;
760 result
->transfer_syntax
= ndr_transfer_syntax
;
762 result
->desthost
= get_myname(result
);
763 result
->srv_name_slash
= talloc_asprintf_strupper_m(
764 result
, "\\\\%s", result
->desthost
);
765 if ((result
->desthost
== NULL
) || (result
->srv_name_slash
== NULL
)) {
766 status
= NT_STATUS_NO_MEMORY
;
770 result
->max_xmit_frag
= RPC_MAX_PDU_FRAG_LEN
;
771 result
->max_recv_frag
= RPC_MAX_PDU_FRAG_LEN
;
773 status
= rpc_transport_tstream_init(result
,
776 if (!NT_STATUS_IS_OK(status
)) {
780 result
->binding_handle
= rpccli_bh_create(result
);
781 if (result
->binding_handle
== NULL
) {
782 status
= NT_STATUS_NO_MEMORY
;
783 DEBUG(0, ("Failed to create binding handle.\n"));
787 result
->auth
= talloc_zero(result
, struct pipe_auth_data
);
789 status
= NT_STATUS_NO_MEMORY
;
792 result
->auth
->auth_type
= DCERPC_AUTH_TYPE_NONE
;
793 result
->auth
->auth_level
= DCERPC_AUTH_LEVEL_NONE
;
795 status
= rpccli_anon_bind_data(result
, &auth
);
796 if (!NT_STATUS_IS_OK(status
)) {
797 DEBUG(0, ("Failed to initialize anonymous bind.\n"));
801 status
= rpc_pipe_bind(result
, auth
);
802 if (!NT_STATUS_IS_OK(status
)) {
803 DEBUG(0, ("Failed to bind external pipe.\n"));
808 if (!NT_STATUS_IS_OK(status
)) {
811 TALLOC_FREE(proxy_state
);
817 * @brief Create a new RPC client context which uses a local dispatch function
818 * or a remote transport, depending on rpc_server configuration for the
821 * @param[in] mem_ctx The memory context to use.
823 * @param[in] abstract_syntax Normally the syntax_id of the autogenerated
826 * @param[in] serversupplied_info The server supplied authentication function.
828 * @param[in] client_id The client address information.
830 * @param[in] msg_ctx The messaging context to use.
832 * @param[out] presult A pointer to store the connected rpc client pipe.
834 * @return NT_STATUS_OK on success, a corresponding NT status if an
838 * struct rpc_pipe_client *winreg_pipe;
841 * status = rpc_pipe_open_interface(tmp_ctx,
842 * &ndr_table_winreg.syntax_id,
849 NTSTATUS
rpc_pipe_open_interface(TALLOC_CTX
*mem_ctx
,
850 const struct ndr_syntax_id
*syntax
,
851 const struct auth_serversupplied_info
*session_info
,
852 struct client_address
*client_id
,
853 struct messaging_context
*msg_ctx
,
854 struct rpc_pipe_client
**cli_pipe
)
856 struct rpc_pipe_client
*cli
= NULL
;
857 const char *server_type
;
858 const char *pipe_name
;
862 if (cli_pipe
&& rpccli_is_connected(*cli_pipe
)) {
865 TALLOC_FREE(*cli_pipe
);
868 tmp_ctx
= talloc_stackframe();
869 if (tmp_ctx
== NULL
) {
870 return NT_STATUS_NO_MEMORY
;
873 pipe_name
= get_pipe_name_from_syntax(tmp_ctx
, syntax
);
874 if (pipe_name
== NULL
) {
875 status
= NT_STATUS_INVALID_PARAMETER
;
879 while (pipe_name
[0] == '\\') {
883 DEBUG(5, ("Connecting to %s pipe.\n", pipe_name
));
885 server_type
= lp_parm_const_string(GLOBAL_SECTION_SNUM
,
886 "rpc_server", pipe_name
,
889 if (StrCaseCmp(server_type
, "embedded") == 0) {
890 status
= rpc_pipe_open_internal(tmp_ctx
,
891 syntax
, session_info
,
894 if (!NT_STATUS_IS_OK(status
)) {
897 } else if (StrCaseCmp(server_type
, "daemon") == 0 ||
898 StrCaseCmp(server_type
, "external") == 0) {
899 /* It would be nice to just use rpc_pipe_open_ncalrpc() but
900 * for now we need to use the special proxy setup to connect
903 status
= rpc_pipe_open_external(tmp_ctx
,
907 if (!NT_STATUS_IS_OK(status
)) {
911 status
= NT_STATUS_NOT_IMPLEMENTED
;
912 DEBUG(0, ("Wrong servertype specified in config file: %s",
917 status
= NT_STATUS_OK
;
919 if (NT_STATUS_IS_OK(status
)) {
920 *cli_pipe
= talloc_move(mem_ctx
, &cli
);
922 TALLOC_FREE(tmp_ctx
);