s3:rpc_client: pass object and table to rpccli_bh_create()
[mat/samba.git] / source3 / rpc_server / rpc_ncacn_np.c
index f43d0b81bc4e433571f55e152c0e778f0f867ec8..c58f97dec9879fe5131c6d792df993c0a82f5b10 100644 (file)
 #include "librpc/gen_ndr/auth.h"
 #include "../auth/auth_sam_reply.h"
 #include "auth.h"
-#include "ntdomain.h"
+#include "rpc_server/rpc_pipes.h"
 #include "../lib/tsocket/tsocket.h"
 #include "../lib/util/tevent_ntstatus.h"
 #include "rpc_contexts.h"
+#include "rpc_server/rpc_config.h"
+#include "librpc/ndr/ndr_table.h"
 
 #undef DBGC_CLASS
 #define DBGC_CLASS DBGC_RPC_SRV
 
-static struct pipes_struct *InternalPipes;
-
-/* TODO
- * the following prototypes are declared here to avoid
- * code being moved about too much for a patch to be
- * disrupted / less obvious.
- *
- * these functions, and associated functions that they
- * call, should be moved behind a .so module-loading
- * system _anyway_.  so that's the next step...
- */
-
-/****************************************************************************
- Internal Pipe iterator functions.
-****************************************************************************/
-
-struct pipes_struct *get_first_internal_pipe(void)
-{
-       return InternalPipes;
-}
-
-struct pipes_struct *get_next_internal_pipe(struct pipes_struct *p)
-{
-       return p->next;
-}
-
-static void free_pipe_rpc_context_internal( PIPE_RPC_FNS *list )
-{
-       PIPE_RPC_FNS *tmp = list;
-       PIPE_RPC_FNS *tmp2;
-
-       while (tmp) {
-               tmp2 = tmp->next;
-               SAFE_FREE(tmp);
-               tmp = tmp2;
-       }
-
-       return;
-}
-
-bool check_open_pipes(void)
-{
-       struct pipes_struct *p;
-
-       for (p = InternalPipes; p != NULL; p = p->next) {
-               if (num_pipe_handles(p) != 0) {
-                       return true;
-               }
-       }
-       return false;
-}
-
-/****************************************************************************
- Close an rpc pipe.
-****************************************************************************/
-
-int close_internal_rpc_pipe_hnd(struct pipes_struct *p)
-{
-       if (!p) {
-               DEBUG(0,("Invalid pipe in close_internal_rpc_pipe_hnd\n"));
-               return False;
-       }
-
-       TALLOC_FREE(p->auth.auth_ctx);
-
-       /* Free the handles database. */
-       close_policy_by_pipe(p);
-
-       free_pipe_rpc_context_internal( p->contexts );
-
-       DLIST_REMOVE(InternalPipes, p);
-
-       ZERO_STRUCTP(p);
-
-       return 0;
-}
-
 /****************************************************************************
  Make an internal namedpipes structure
 ****************************************************************************/
@@ -123,28 +48,30 @@ int close_internal_rpc_pipe_hnd(struct pipes_struct *p)
 struct pipes_struct *make_internal_rpc_pipe_p(TALLOC_CTX *mem_ctx,
                                              const struct ndr_syntax_id *syntax,
                                              const struct tsocket_address *remote_address,
-                                             const struct auth3_session_info *session_info,
+                                             const struct auth_session_info *session_info,
                                              struct messaging_context *msg_ctx)
 {
        struct pipes_struct *p;
        struct pipe_rpc_fns *context_fns;
+       const char *pipe_name;
+       int ret;
+       const struct ndr_interface_table *table;
 
-       DEBUG(4,("Create pipe requested %s\n",
-                get_pipe_name_from_syntax(talloc_tos(), syntax)));
-
-       p = talloc_zero(mem_ctx, struct pipes_struct);
-
-       if (!p) {
-               DEBUG(0,("ERROR! no memory for pipes_struct!\n"));
+       table = ndr_table_by_uuid(&syntax->uuid);
+       if (table == NULL) {
+               DEBUG(0,("unknown interface\n"));
                return NULL;
        }
 
-       p->mem_ctx = talloc_named(p, 0, "pipe %s %p",
-                                get_pipe_name_from_syntax(talloc_tos(),
-                                                          syntax), p);
-       if (p->mem_ctx == NULL) {
-               DEBUG(0,("open_rpc_pipe_p: talloc_init failed.\n"));
-               TALLOC_FREE(p);
+       pipe_name = dcerpc_default_transport_endpoint(mem_ctx, NCACN_NP, table);
+
+       DEBUG(4,("Create pipe requested %s\n", pipe_name));
+
+       ret = make_base_pipes_struct(mem_ctx, msg_ctx, pipe_name,
+                                    NCALRPC, RPC_LITTLE_ENDIAN, false,
+                                    remote_address, NULL, &p);
+       if (ret) {
+               DEBUG(0,("ERROR! no memory for pipes_struct!\n"));
                return NULL;
        }
 
@@ -162,23 +89,11 @@ struct pipes_struct *make_internal_rpc_pipe_p(TALLOC_CTX *mem_ctx,
                return NULL;
        }
 
-       p->msg_ctx = msg_ctx;
-
-       DLIST_ADD(InternalPipes, p);
-
-       p->remote_address = tsocket_address_copy(remote_address, p);
-       if (p->remote_address == NULL) {
-               return false;
-       }
-
-       p->endian = RPC_LITTLE_ENDIAN;
-
-       p->transport = NCALRPC;
-
-       context_fns = SMB_MALLOC_P(struct pipe_rpc_fns);
+       context_fns = talloc(p, struct pipe_rpc_fns);
        if (context_fns == NULL) {
-               DEBUG(0,("malloc() failed!\n"));
-               return False;
+               DEBUG(0,("talloc() failed!\n"));
+               TALLOC_FREE(p);
+               return NULL;
        }
 
        context_fns->next = context_fns->prev = NULL;
@@ -190,10 +105,7 @@ struct pipes_struct *make_internal_rpc_pipe_p(TALLOC_CTX *mem_ctx,
        /* add to the list of open contexts */
        DLIST_ADD(p->contexts, context_fns);
 
-       DEBUG(4,("Created internal pipe %s\n",
-                get_pipe_name_from_syntax(talloc_tos(), syntax)));
-
-       talloc_set_destructor(p, close_internal_rpc_pipe_hnd);
+       DEBUG(4,("Created internal pipe %s\n", pipe_name));
 
        return p;
 }
@@ -235,24 +147,13 @@ static NTSTATUS rpcint_dispatch(struct pipes_struct *p,
        }
 
        if (p->fault_state) {
-               p->fault_state = false;
-               data_blob_free(&p->out_data.rdata);
-               talloc_free_children(p->mem_ctx);
-               return NT_STATUS_RPC_CALL_FAILED;
-       }
-
-       if (p->bad_handle_fault_state) {
-               p->bad_handle_fault_state = false;
-               data_blob_free(&p->out_data.rdata);
-               talloc_free_children(p->mem_ctx);
-               return NT_STATUS_RPC_SS_CONTEXT_MISMATCH;
-       }
+               NTSTATUS status;
 
-       if (p->rng_fault_state) {
-               p->rng_fault_state = false;
+               status = NT_STATUS(p->fault_state);
+               p->fault_state = 0;
                data_blob_free(&p->out_data.rdata);
                talloc_free_children(p->mem_ctx);
-               return NT_STATUS_RPC_PROCNUM_OUT_OF_RANGE;
+               return status;
        }
 
        *out_data = p->out_data.rdata;
@@ -319,7 +220,7 @@ static struct tevent_req *rpcint_bh_raw_call_send(TALLOC_CTX *mem_ctx,
 
        ok = rpcint_bh_is_connected(h);
        if (!ok) {
-               tevent_req_nterror(req, NT_STATUS_INVALID_CONNECTION);
+               tevent_req_nterror(req, NT_STATUS_CONNECTION_DISCONNECTED);
                return tevent_req_post(req, ev);
        }
 
@@ -381,7 +282,7 @@ static struct tevent_req *rpcint_bh_disconnect_send(TALLOC_CTX *mem_ctx,
 
        ok = rpcint_bh_is_connected(h);
        if (!ok) {
-               tevent_req_nterror(req, NT_STATUS_INVALID_CONNECTION);
+               tevent_req_nterror(req, NT_STATUS_CONNECTION_DISCONNECTED);
                return tevent_req_post(req, ev);
        }
 
@@ -456,7 +357,7 @@ static NTSTATUS rpcint_binding_handle_ex(TALLOC_CTX *mem_ctx,
                        const struct ndr_syntax_id *abstract_syntax,
                        const struct ndr_interface_table *ndr_table,
                        const struct tsocket_address *remote_address,
-                       const struct auth3_session_info *session_info,
+                       const struct auth_session_info *session_info,
                        struct messaging_context *msg_ctx,
                        struct dcerpc_binding_handle **binding_handle)
 {
@@ -524,7 +425,7 @@ static NTSTATUS rpcint_binding_handle_ex(TALLOC_CTX *mem_ctx,
 NTSTATUS rpcint_binding_handle(TALLOC_CTX *mem_ctx,
                               const struct ndr_interface_table *ndr_table,
                               const struct tsocket_address *remote_address,
-                              const struct auth3_session_info *session_info,
+                              const struct auth_session_info *session_info,
                               struct messaging_context *msg_ctx,
                               struct dcerpc_binding_handle **binding_handle)
 {
@@ -557,9 +458,9 @@ NTSTATUS rpcint_binding_handle(TALLOC_CTX *mem_ctx,
  * @return              NT_STATUS_OK on success, a corresponding NT status if an
  *                      error occured.
  */
-static NTSTATUS rpc_pipe_open_internal(TALLOC_CTX *mem_ctx,
+NTSTATUS rpc_pipe_open_internal(TALLOC_CTX *mem_ctx,
                                const struct ndr_syntax_id *abstract_syntax,
-                               const struct auth3_session_info *session_info,
+                               const struct auth_session_info *session_info,
                                const struct tsocket_address *remote_address,
                                struct messaging_context *msg_ctx,
                                struct rpc_pipe_client **presult)
@@ -573,7 +474,7 @@ static NTSTATUS rpc_pipe_open_internal(TALLOC_CTX *mem_ctx,
        }
 
        result->abstract_syntax = *abstract_syntax;
-       result->transfer_syntax = ndr_transfer_syntax;
+       result->transfer_syntax = ndr_transfer_syntax_ndr;
 
        if (remote_address == NULL) {
                struct tsocket_address *local;
@@ -620,7 +521,7 @@ struct np_proxy_state *make_external_rpc_pipe_p(TALLOC_CTX *mem_ctx,
                                const char *pipe_name,
                                const struct tsocket_address *local_address,
                                const struct tsocket_address *remote_address,
-                               const struct auth3_session_info *session_info)
+                               const struct auth_session_info *session_info)
 {
        struct np_proxy_state *result;
        char *socket_np_dir;
@@ -628,10 +529,6 @@ struct np_proxy_state *make_external_rpc_pipe_p(TALLOC_CTX *mem_ctx,
        struct tevent_context *ev;
        struct tevent_req *subreq;
        struct auth_session_info_transport *session_info_t;
-       struct auth_session_info *session_info_npa;
-       struct auth_user_info_dc *user_info_dc;
-       union netr_Validation val;
-       NTSTATUS status;
        bool ok;
        int ret;
        int sys_errno;
@@ -664,7 +561,7 @@ struct np_proxy_state *make_external_rpc_pipe_p(TALLOC_CTX *mem_ctx,
                GLOBAL_SECTION_SNUM, "external_rpc_pipe", "socket_dir",
                lp_ncalrpc_dir());
        if (socket_dir == NULL) {
-               DEBUG(0, ("externan_rpc_pipe:socket_dir not set\n"));
+               DEBUG(0, ("external_rpc_pipe:socket_dir not set\n"));
                goto fail;
        }
        socket_np_dir = talloc_asprintf(talloc_tos(), "%s/np", socket_dir);
@@ -673,41 +570,19 @@ struct np_proxy_state *make_external_rpc_pipe_p(TALLOC_CTX *mem_ctx,
                goto fail;
        }
 
-       session_info_npa = talloc_zero(talloc_tos(), struct auth_session_info);
-       if (session_info_npa == NULL) {
+       session_info_t = talloc_zero(talloc_tos(), struct auth_session_info_transport);
+       if (session_info_t == NULL) {
                DEBUG(0, ("talloc failed\n"));
                goto fail;
        }
 
-       /* Send the named_pipe_auth server the user's full token */
-       session_info_npa->security_token = session_info->security_token;
-       session_info_npa->session_key = session_info->session_key;
-       session_info_npa->unix_token = session_info->unix_token;
-       session_info_npa->unix_info = session_info->unix_info;
-
-       val.sam3 = session_info->info3;
-
-       /* Convert into something we can build a struct
-        * auth_session_info from.  Most of the work here
-        * will be to convert the SIDS, which we will then ignore, but
-        * this is the easier way to handle it */
-       status = make_user_info_dc_netlogon_validation(talloc_tos(), "", 3, &val, &user_info_dc);
-       if (!NT_STATUS_IS_OK(status)) {
-               DEBUG(0, ("conversion of info3 into user_info_dc failed!\n"));
+       session_info_t->session_info = copy_session_info(session_info_t,
+                                                        session_info);
+       if (session_info_t->session_info == NULL) {
+               DEBUG(0, ("copy_session_info failed\n"));
                goto fail;
        }
 
-       session_info_npa->info = talloc_move(session_info_npa, &user_info_dc->info);
-       talloc_free(user_info_dc);
-
-       session_info_t = talloc_zero(talloc_tos(), struct auth_session_info_transport);
-       if (session_info_npa == NULL) {
-               DEBUG(0, ("talloc failed\n"));
-               goto fail;
-       }
-
-       session_info_t->session_info = talloc_steal(session_info_t, session_info_npa);
-
        become_root();
        subreq = tstream_npa_connect_send(talloc_tos(), ev,
                                          socket_np_dir,
@@ -744,7 +619,11 @@ struct np_proxy_state *make_external_rpc_pipe_p(TALLOC_CTX *mem_ctx,
                                       &result->allocation_size);
        TALLOC_FREE(subreq);
        if (ret != 0) {
-               DEBUG(0, ("tstream_npa_connect_recv  to %s for pipe %s and "
+               int l = 1;
+               if (errno == ENOENT) {
+                       l = 2;
+               }
+               DEBUG(l, ("tstream_npa_connect_recv  to %s for pipe %s and "
                          "user %s\\%s failed: %s\n",
                          socket_np_dir, pipe_name, session_info_t->session_info->info->domain_name,
                          session_info_t->session_info->info->account_name,
@@ -761,8 +640,8 @@ struct np_proxy_state *make_external_rpc_pipe_p(TALLOC_CTX *mem_ctx,
 
 static NTSTATUS rpc_pipe_open_external(TALLOC_CTX *mem_ctx,
                                const char *pipe_name,
-                               const struct ndr_syntax_id *abstract_syntax,
-                               const struct auth3_session_info *session_info,
+                               const struct ndr_interface_table *table,
+                               const struct auth_session_info *session_info,
                                struct rpc_pipe_client **_result)
 {
        struct tsocket_address *local, *remote;
@@ -796,8 +675,8 @@ static NTSTATUS rpc_pipe_open_external(TALLOC_CTX *mem_ctx,
                goto done;
        }
 
-       result->abstract_syntax = *abstract_syntax;
-       result->transfer_syntax = ndr_transfer_syntax;
+       result->abstract_syntax = table->syntax_id;
+       result->transfer_syntax = ndr_transfer_syntax_ndr;
 
        result->desthost = get_myname(result);
        result->srv_name_slash = talloc_asprintf_strupper_m(
@@ -817,7 +696,7 @@ static NTSTATUS rpc_pipe_open_external(TALLOC_CTX *mem_ctx,
                goto done;
        }
 
-       result->binding_handle = rpccli_bh_create(result);
+       result->binding_handle = rpccli_bh_create(result, NULL, table);
        if (result->binding_handle == NULL) {
                status = NT_STATUS_NO_MEMORY;
                DEBUG(0, ("Failed to create binding handle.\n"));
@@ -887,22 +766,24 @@ done:
  */
 
 NTSTATUS rpc_pipe_open_interface(TALLOC_CTX *mem_ctx,
-                                const struct ndr_syntax_id *syntax,
-                                const struct auth3_session_info *session_info,
+                                const struct ndr_interface_table *table,
+                                const struct auth_session_info *session_info,
                                 const struct tsocket_address *remote_address,
                                 struct messaging_context *msg_ctx,
                                 struct rpc_pipe_client **cli_pipe)
 {
        struct rpc_pipe_client *cli = NULL;
-       const char *server_type;
+       enum rpc_service_mode_e pipe_mode;
        const char *pipe_name;
        NTSTATUS status;
        TALLOC_CTX *tmp_ctx;
 
-       if (cli_pipe && rpccli_is_connected(*cli_pipe)) {
-               return NT_STATUS_OK;
-       } else {
-               TALLOC_FREE(*cli_pipe);
+       if (cli_pipe != NULL) {
+               if (rpccli_is_connected(*cli_pipe)) {
+                       return NT_STATUS_OK;
+               } else {
+                       TALLOC_FREE(*cli_pipe);
+               }
        }
 
        tmp_ctx = talloc_stackframe();
@@ -910,7 +791,7 @@ NTSTATUS rpc_pipe_open_interface(TALLOC_CTX *mem_ctx,
                return NT_STATUS_NO_MEMORY;
        }
 
-       pipe_name = get_pipe_name_from_syntax(tmp_ctx, syntax);
+       pipe_name = dcerpc_default_transport_endpoint(mem_ctx, NCACN_NP, table);
        if (pipe_name == NULL) {
                status = NT_STATUS_INVALID_PARAMETER;
                goto done;
@@ -922,41 +803,41 @@ NTSTATUS rpc_pipe_open_interface(TALLOC_CTX *mem_ctx,
 
        DEBUG(5, ("Connecting to %s pipe.\n", pipe_name));
 
-       server_type = lp_parm_const_string(GLOBAL_SECTION_SNUM,
-                                          "rpc_server", pipe_name,
-                                          "embedded");
+       pipe_mode = rpc_service_mode(pipe_name);
 
-       if (strcasecmp_m(server_type, "embedded") == 0) {
+       switch (pipe_mode) {
+       case RPC_SERVICE_MODE_EMBEDDED:
                status = rpc_pipe_open_internal(tmp_ctx,
-                                               syntax, session_info,
+                                               &table->syntax_id, session_info,
                                                remote_address, msg_ctx,
                                                &cli);
                if (!NT_STATUS_IS_OK(status)) {
                        goto done;
                }
-       } else if (strcasecmp_m(server_type, "daemon") == 0 ||
-                  strcasecmp_m(server_type, "external") == 0) {
+               break;
+       case RPC_SERVICE_MODE_EXTERNAL:
                /* It would be nice to just use rpc_pipe_open_ncalrpc() but
                 * for now we need to use the special proxy setup to connect
                 * to spoolssd. */
 
                status = rpc_pipe_open_external(tmp_ctx,
-                                               pipe_name, syntax,
+                                               pipe_name, table,
                                                session_info,
                                                &cli);
                if (!NT_STATUS_IS_OK(status)) {
                        goto done;
                }
-       } else {
+               break;
+       case RPC_SERVICE_MODE_DISABLED:
                status = NT_STATUS_NOT_IMPLEMENTED;
-               DEBUG(0, ("Wrong servertype specified in config file: %s",
-                         nt_errstr(status)));
+               DEBUG(0, ("Service pipe %s is disabled in config file: %s",
+                         pipe_name, nt_errstr(status)));
                goto done;
         }
 
        status = NT_STATUS_OK;
 done:
-       if (NT_STATUS_IS_OK(status)) {
+       if (NT_STATUS_IS_OK(status) && cli_pipe != NULL) {
                *cli_pipe = talloc_move(mem_ctx, &cli);
        }
        TALLOC_FREE(tmp_ctx);