build: Remove sys_opendir wrapper
[kai/samba.git] / source3 / rpc_server / rpc_handles.c
index 223d32b9a8ad5b0d186ba16b3aa328d4cd344e12..d0b9777f6f03449ec9556a70a4923a0f63ab73e1 100644 (file)
  */
 
 #include "includes.h"
+#include "system/passwd.h" /* uid_wrapper */
 #include "../librpc/gen_ndr/ndr_lsa.h"
 #include "../librpc/gen_ndr/ndr_samr.h"
+#include "auth.h"
+#include "rpc_server/rpc_pipes.h"
+#include "../libcli/security/security.h"
+#include "lib/tsocket/tsocket.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...
+ */
+
+int make_base_pipes_struct(TALLOC_CTX *mem_ctx,
+                          struct messaging_context *msg_ctx,
+                          const char *pipe_name,
+                          enum dcerpc_transport_t transport,
+                          bool endian, bool ncalrpc_as_system,
+                          const struct tsocket_address *remote_address,
+                          const struct tsocket_address *local_address,
+                          struct pipes_struct **_p)
+{
+       struct pipes_struct *p;
+
+       p = talloc_zero(mem_ctx, struct pipes_struct);
+       if (!p) {
+               return ENOMEM;
+       }
+
+       p->mem_ctx = talloc_named(p, 0, "pipe %s %p", pipe_name, p);
+       if (!p->mem_ctx) {
+               talloc_free(p);
+               return ENOMEM;
+       }
+
+       p->msg_ctx = msg_ctx;
+       p->transport = transport;
+       p->endian = endian;
+       p->ncalrpc_as_system = ncalrpc_as_system;
+
+       p->remote_address = tsocket_address_copy(remote_address, p);
+       if (p->remote_address == NULL) {
+               talloc_free(p);
+               return ENOMEM;
+       }
+
+       if (local_address) {
+               p->local_address = tsocket_address_copy(local_address, p);
+               if (p->local_address == NULL) {
+                       talloc_free(p);
+                       return ENOMEM;
+               }
+       }
+
+       DLIST_ADD(InternalPipes, p);
+       talloc_set_destructor(p, close_internal_rpc_pipe_hnd);
+
+       *_p = p;
+       return 0;
+}
+
+
+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;
+       }
+
+       /* Free the handles database. */
+       close_policy_by_pipe(p);
+
+       DLIST_REMOVE(InternalPipes, p);
+
+       return 0;
+}
+
 /*
  * Handle database - stored per pipe.
  */
@@ -78,18 +175,29 @@ bool init_pipe_handles(struct pipes_struct *p, const struct ndr_syntax_id *synta
        struct pipes_struct *plist;
        struct handle_list *hl;
 
-       for (plist = get_first_internal_pipe();
-            plist;
-            plist = get_next_internal_pipe(plist)) {
-               if (ndr_syntax_id_equal(syntax, &plist->syntax)) {
-                       break;
+       for (plist = InternalPipes; plist; plist = plist->next) {
+               struct pipe_rpc_fns *p_ctx;
+               bool stop = false;
+
+               for (p_ctx = plist->contexts;
+                    p_ctx != NULL;
+                    p_ctx = p_ctx->next) {
+                       if (ndr_syntax_id_equal(syntax, &p_ctx->syntax)) {
+                               stop = true;
+                               break;
+                       }
+                       if (is_samr_lsa_pipe(&p_ctx->syntax)
+                           && is_samr_lsa_pipe(syntax)) {
+                               /*
+                                * samr and lsa share a handle space (same process
+                                * under Windows?)
+                                */
+                               stop = true;
+                               break;
+                       }
                }
-               if (is_samr_lsa_pipe(&plist->syntax)
-                   && is_samr_lsa_pipe(syntax)) {
-                       /*
-                        * samr and lsa share a handle space (same process
-                        * under Windows?)
-                        */
+
+               if (stop) {
                        break;
                }
        }
@@ -184,15 +292,15 @@ static struct dcesrv_handle *create_rpc_handle_internal(struct pipes_struct *p,
        /* something random */
        SSVAL(rpc_hnd->wire_handle.uuid.node, 0, t);
        /* something more random */
-       SIVAL(rpc_hnd->wire_handle.uuid.node, 2, sys_getpid());
+       SIVAL(rpc_hnd->wire_handle.uuid.node, 2, getpid());
 
        DLIST_ADD(p->pipe_handles->handles, rpc_hnd);
        p->pipe_handles->count++;
 
        *hnd = rpc_hnd->wire_handle;
 
-       DEBUG(4, ("Opened policy hnd[%d] ", (int)p->pipe_handles->count));
-       dump_data(4, (uint8_t *)hnd, sizeof(*hnd));
+       DEBUG(6, ("Opened policy hnd[%d] ", (int)p->pipe_handles->count));
+       dump_data(6, (uint8_t *)hnd, sizeof(*hnd));
 
        return rpc_hnd;
 }
@@ -226,8 +334,8 @@ static struct dcesrv_handle *find_policy_by_hnd_internal(struct pipes_struct *p,
        count = 0;
        for (h = p->pipe_handles->handles; h != NULL; h = h->next) {
                if (memcmp(&h->wire_handle, hnd, sizeof(*hnd)) == 0) {
-                       DEBUG(4,("Found policy hnd[%u] ", count));
-                       dump_data(4, (uint8 *)hnd, sizeof(*hnd));
+                       DEBUG(6,("Found policy hnd[%u] ", count));
+                       dump_data(6, (const uint8 *)hnd, sizeof(*hnd));
                        if (data_p) {
                                *data_p = h->data;
                        }
@@ -237,7 +345,7 @@ static struct dcesrv_handle *find_policy_by_hnd_internal(struct pipes_struct *p,
        }
 
        DEBUG(4,("Policy not found: "));
-       dump_data(4, (uint8_t *)hnd, sizeof(*hnd));
+       dump_data(4, (const uint8_t *)hnd, sizeof(*hnd));
 
        p->bad_handle_fault_state = true;
 
@@ -275,7 +383,7 @@ bool close_policy_hnd(struct pipes_struct *p, struct policy_handle *hnd)
                return false;
        }
 
-       DEBUG(3,("Closed policy\n"));
+       DEBUG(6,("Closed policy\n"));
 
        p->pipe_handles->count--;
 
@@ -291,6 +399,10 @@ bool close_policy_hnd(struct pipes_struct *p, struct policy_handle *hnd)
 
 void close_policy_by_pipe(struct pipes_struct *p)
 {
+       if (p->pipe_handles == NULL) {
+               return;
+       }
+
        p->pipe_handles->pipe_ref_count--;
 
        if (p->pipe_handles->pipe_ref_count == 0) {
@@ -299,9 +411,9 @@ void close_policy_by_pipe(struct pipes_struct *p)
                 */
                TALLOC_FREE(p->pipe_handles);
 
-               DEBUG(10,("close_policy_by_pipe: deleted handle list for "
-                         "pipe %s\n",
-                         get_pipe_name_from_syntax(talloc_tos(), &p->syntax)));
+               DEBUG(10,("Deleted handle list for RPC connection %s\n",
+                         get_pipe_name_from_syntax(talloc_tos(),
+                                                   &p->contexts->syntax)));
        }
 }
 
@@ -326,7 +438,7 @@ bool pipe_access_check(struct pipes_struct *p)
                        return True;
                }
 
-               if (p->session_info->guest) {
+               if (security_session_user_level(p->session_info, NULL) < SECURITY_USER) {
                        return False;
                }
        }
@@ -342,9 +454,10 @@ void *_policy_handle_create(struct pipes_struct *p, struct policy_handle *hnd,
        void *data;
 
        if (p->pipe_handles->count > MAX_OPEN_POLS) {
-               DEBUG(0, ("policy_handle_create: ERROR: too many handles (%d) "
-                         "on pipe %s.\n", (int)p->pipe_handles->count,
-                         get_pipe_name_from_syntax(talloc_tos(), &p->syntax)));
+               DEBUG(0, ("ERROR: Too many handles (%d) for RPC connection %s\n",
+                         (int) p->pipe_handles->count,
+                         get_pipe_name_from_syntax(talloc_tos(),
+                                                   &p->contexts->syntax)));
                *pstatus = NT_STATUS_INSUFFICIENT_RESOURCES;
                return NULL;
        }