async_sock: Use unix errnos instead of NTSTATUS
[jra/samba/.git] / source3 / rpc_server / srv_pipe_hnd.c
index 1711565c0dca543a221a26796b0371bd619f597d..6dfe7a091174dff9bd424ea8b80625adb438f01d 100644 (file)
  */
 
 #include "includes.h"
+#include "librpc/gen_ndr/ndr_named_pipe_auth.h"
 
 #undef DBGC_CLASS
 #define DBGC_CLASS DBGC_RPC_SRV
 
 static int pipes_open;
 
-/*
- * Sometimes I can't decide if I hate Windows printer driver
- * writers more than I hate the Windows spooler service driver
- * writers. This gets around a combination of bugs in the spooler
- * and the HP 8500 PCL driver that causes a spooler spin. JRA.
- *
- * bumped up from 20 -> 64 after viewing traffic from WordPerfect
- * 2002 running on NT 4.- SP6
- * bumped up from 64 -> 256 after viewing traffic from con2prt
- * for lots of printers on a WinNT 4.x SP6 box.
- */
-#ifndef MAX_OPEN_SPOOLSS_PIPES
-#define MAX_OPEN_SPOOLSS_PIPES 256
-#endif
-static int current_spoolss_pipes_open;
-
 static pipes_struct *InternalPipes;
-static struct bitmap *bmap;
 
 /* TODO
  * the following prototypes are declared here to avoid
@@ -72,34 +55,6 @@ pipes_struct *get_next_internal_pipe(pipes_struct *p)
        return p->next;
 }
 
-/* this must be larger than the sum of the open files and directories */
-static int pipe_handle_offset;
-
-/****************************************************************************
- Set the pipe_handle_offset. Called from smbd/files.c
-****************************************************************************/
-
-void set_pipe_handle_offset(int max_open_files)
-{
-       if(max_open_files < 0x7000) {
-               pipe_handle_offset = 0x7000;
-       } else {
-               pipe_handle_offset = max_open_files + 10; /* For safety. :-) */
-       }
-}
-
-/****************************************************************************
- Initialise pipe handle states.
-****************************************************************************/
-
-void init_rpc_pipe_hnd(void)
-{
-       bmap = bitmap_allocate(MAX_OPEN_PIPES);
-       if (!bmap) {
-               exit_server("out of memory in init_rpc_pipe_hnd");
-       }
-}
-
 /****************************************************************************
  Initialise an outgoing packet.
 ****************************************************************************/
@@ -110,10 +65,9 @@ static bool pipe_init_outgoing_data(pipes_struct *p)
 
        /* Reset the offset counters. */
        o_data->data_sent_length = 0;
-       o_data->current_pdu_len = 0;
        o_data->current_pdu_sent = 0;
 
-       memset(o_data->current_pdu, '\0', sizeof(o_data->current_pdu));
+       prs_mem_free(&o_data->frag);
 
        /* Free any memory in the current return data buffer. */
        prs_mem_free(&o_data->rdata);
@@ -122,7 +76,7 @@ static bool pipe_init_outgoing_data(pipes_struct *p)
         * Initialize the outgoing RPC data buffer.
         * we will use this as the raw data area for replying to rpc requests.
         */     
-       if(!prs_init(&o_data->rdata, RPC_MAX_PDU_FRAG_LEN, p->mem_ctx, MARSHALL)) {
+       if(!prs_init(&o_data->rdata, 128, p->mem_ctx, MARSHALL)) {
                DEBUG(0,("pipe_init_outgoing_data: malloc fail.\n"));
                return False;
        }
@@ -134,15 +88,15 @@ static bool pipe_init_outgoing_data(pipes_struct *p)
  Make an internal namedpipes structure
 ****************************************************************************/
 
-struct pipes_struct *make_internal_rpc_pipe_p(TALLOC_CTX *mem_ctx,
-                                             const char *pipe_name,
-                                             const char *client_address,
-                                             struct auth_serversupplied_info *server_info,
-                                             uint16_t vuid)
+static struct pipes_struct *make_internal_rpc_pipe_p(TALLOC_CTX *mem_ctx,
+                                                    const struct ndr_syntax_id *syntax,
+                                                    const char *client_address,
+                                                    struct auth_serversupplied_info *server_info)
 {
        pipes_struct *p;
 
-       DEBUG(4,("Create pipe requested %s\n", pipe_name));
+       DEBUG(4,("Create pipe requested %s\n",
+                get_pipe_name_from_iface(syntax)));
 
        p = TALLOC_ZERO_P(mem_ctx, struct pipes_struct);
 
@@ -151,13 +105,15 @@ struct pipes_struct *make_internal_rpc_pipe_p(TALLOC_CTX *mem_ctx,
                return NULL;
        }
 
-       if ((p->mem_ctx = talloc_init("pipe %s %p", pipe_name, p)) == NULL) {
+       if ((p->mem_ctx = talloc_init("pipe %s %p",
+                                     get_pipe_name_from_iface(syntax),
+                                     p)) == NULL) {
                DEBUG(0,("open_rpc_pipe_p: talloc_init failed.\n"));
                TALLOC_FREE(p);
                return NULL;
        }
 
-       if (!init_pipe_handle_list(p, pipe_name)) {
+       if (!init_pipe_handle_list(p, syntax)) {
                DEBUG(0,("open_rpc_pipe_p: init_pipe_handles failed.\n"));
                talloc_destroy(p->mem_ctx);
                TALLOC_FREE(p);
@@ -171,7 +127,7 @@ struct pipes_struct *make_internal_rpc_pipe_p(TALLOC_CTX *mem_ctx,
         * change the type to UNMARSALLING before processing the stream.
         */
 
-       if(!prs_init(&p->in_data.data, RPC_MAX_PDU_FRAG_LEN, p->mem_ctx, MARSHALL)) {
+       if(!prs_init(&p->in_data.data, 128, p->mem_ctx, MARSHALL)) {
                DEBUG(0,("open_rpc_pipe_p: malloc fail for in_data struct.\n"));
                talloc_destroy(p->mem_ctx);
                close_policy_by_pipe(p);
@@ -194,22 +150,15 @@ struct pipes_struct *make_internal_rpc_pipe_p(TALLOC_CTX *mem_ctx,
 
        p->endian = RPC_LITTLE_ENDIAN;
 
-       ZERO_STRUCT(p->pipe_user);
-
-       p->pipe_user.vuid = vuid;
-       p->pipe_user.ut.uid = (uid_t)-1;
-       p->pipe_user.ut.gid = (gid_t)-1;
-       p->pipe_user.nt_user_token = dup_nt_token(NULL, server_info->ptok);
-
        /*
         * Initialize the outgoing RPC data buffer with no memory.
         */     
        prs_init_empty(&p->out_data.rdata, p->mem_ctx, MARSHALL);
-       
-       fstrcpy(p->name, pipe_name);
-       
+
+       p->syntax = *syntax;
+
        DEBUG(4,("Created internal pipe %s (pipes_open=%d)\n",
-                pipe_name, pipes_open));
+                get_pipe_name_from_iface(syntax), pipes_open));
 
        talloc_set_destructor(p, close_internal_rpc_pipe_hnd);
 
@@ -227,7 +176,7 @@ static void set_incoming_fault(pipes_struct *p)
        p->in_data.pdu_received_len = 0;
        p->fault_state = True;
        DEBUG(10, ("set_incoming_fault: Setting fault state on pipe %s\n",
-                  p->name));
+                  get_pipe_name_from_iface(&p->syntax)));
 }
 
 /****************************************************************************
@@ -242,6 +191,15 @@ static ssize_t fill_rpc_header(pipes_struct *p, char *data, size_t data_to_copy)
                        (unsigned int)data_to_copy, (unsigned int)len_needed_to_complete_hdr,
                        (unsigned int)p->in_data.pdu_received_len ));
 
+       if (p->in_data.current_in_pdu == NULL) {
+               p->in_data.current_in_pdu = talloc_array(p, uint8_t,
+                                                        RPC_HEADER_LEN);
+       }
+       if (p->in_data.current_in_pdu == NULL) {
+               DEBUG(0, ("talloc failed\n"));
+               return -1;
+       }
+
        memcpy((char *)&p->in_data.current_in_pdu[p->in_data.pdu_received_len], data, len_needed_to_complete_hdr);
        p->in_data.pdu_received_len += len_needed_to_complete_hdr;
 
@@ -362,6 +320,14 @@ static ssize_t unmarshall_rpc_header(pipes_struct *p)
 
        prs_mem_free(&rpc_in);
 
+       p->in_data.current_in_pdu = TALLOC_REALLOC_ARRAY(
+               p, p->in_data.current_in_pdu, uint8_t, p->hdr.frag_len);
+       if (p->in_data.current_in_pdu == NULL) {
+               DEBUG(0, ("talloc failed\n"));
+               set_incoming_fault(p);
+               return -1;
+       }
+
        return 0; /* No extra data processed. */
 }
 
@@ -377,7 +343,8 @@ static void free_pipe_context(pipes_struct *p)
                         "%lu\n", (unsigned long)talloc_total_size(p->mem_ctx) ));
                talloc_free_children(p->mem_ctx);
        } else {
-               p->mem_ctx = talloc_init("pipe %s %p", p->name, p);
+               p->mem_ctx = talloc_init(
+                       "pipe %s %p", get_pipe_name_from_iface(&p->syntax), p);
                if (p->mem_ctx == NULL) {
                        p->fault_state = True;
                }
@@ -545,7 +512,7 @@ static void process_complete_pdu(pipes_struct *p)
 
        if(p->fault_state) {
                DEBUG(10,("process_complete_pdu: pipe %s in fault state.\n",
-                       p->name ));
+                        get_pipe_name_from_iface(&p->syntax)));
                set_incoming_fault(p);
                setup_fault_pdu(p, NT_STATUS(DCERPC_FAULT_OP_RNG_ERROR));
                return;
@@ -573,12 +540,13 @@ static void process_complete_pdu(pipes_struct *p)
 
                case RPC_PING: /* CL request - ignore... */
                        DEBUG(0,("process_complete_pdu: Error. Connectionless packet type %u received on pipe %s.\n",
-                               (unsigned int)p->hdr.pkt_type, p->name));
+                               (unsigned int)p->hdr.pkt_type,
+                               get_pipe_name_from_iface(&p->syntax)));
                        break;
 
                case RPC_RESPONSE: /* No responses here. */
                        DEBUG(0,("process_complete_pdu: Error. RPC_RESPONSE received from client on pipe %s.\n",
-                               p->name ));
+                               get_pipe_name_from_iface(&p->syntax)));
                        break;
 
                case RPC_FAULT:
@@ -590,7 +558,8 @@ static void process_complete_pdu(pipes_struct *p)
                case RPC_FACK:
                case RPC_CANCEL_ACK:
                        DEBUG(0,("process_complete_pdu: Error. Connectionless packet type %u received on pipe %s.\n",
-                               (unsigned int)p->hdr.pkt_type, p->name));
+                               (unsigned int)p->hdr.pkt_type,
+                               get_pipe_name_from_iface(&p->syntax)));
                        break;
 
                case RPC_BIND:
@@ -605,7 +574,8 @@ static void process_complete_pdu(pipes_struct *p)
                case RPC_BINDACK:
                case RPC_BINDNACK:
                        DEBUG(0,("process_complete_pdu: Error. RPC_BINDACK/RPC_BINDNACK packet type %u received on pipe %s.\n",
-                               (unsigned int)p->hdr.pkt_type, p->name));
+                               (unsigned int)p->hdr.pkt_type,
+                               get_pipe_name_from_iface(&p->syntax)));
                        break;
 
 
@@ -620,7 +590,7 @@ static void process_complete_pdu(pipes_struct *p)
 
                case RPC_ALTCONTRESP:
                        DEBUG(0,("process_complete_pdu: Error. RPC_ALTCONTRESP on pipe %s: Should only be server -> client.\n",
-                               p->name));
+                               get_pipe_name_from_iface(&p->syntax)));
                        break;
 
                case RPC_AUTH3:
@@ -634,7 +604,7 @@ static void process_complete_pdu(pipes_struct *p)
 
                case RPC_SHUTDOWN:
                        DEBUG(0,("process_complete_pdu: Error. RPC_SHUTDOWN on pipe %s: Should only be server -> client.\n",
-                               p->name));
+                               get_pipe_name_from_iface(&p->syntax)));
                        break;
 
                case RPC_CO_CANCEL:
@@ -672,7 +642,8 @@ static void process_complete_pdu(pipes_struct *p)
        prs_set_endian_data( &p->in_data.data, RPC_LITTLE_ENDIAN);
 
        if (!reply) {
-               DEBUG(3,("process_complete_pdu: DCE/RPC fault sent on pipe %s\n", p->pipe_srv_name));
+               DEBUG(3,("process_complete_pdu: DCE/RPC fault sent on "
+                        "pipe %s\n", get_pipe_name_from_iface(&p->syntax)));
                set_incoming_fault(p);
                setup_fault_pdu(p, NT_STATUS(DCERPC_FAULT_OP_RNG_ERROR));
                prs_mem_free(&rpc_in);
@@ -680,6 +651,7 @@ static void process_complete_pdu(pipes_struct *p)
                /*
                 * Reset the lengths. We're ready for a new pdu.
                 */
+               TALLOC_FREE(p->in_data.current_in_pdu);
                p->in_data.pdu_needed_len = 0;
                p->in_data.pdu_received_len = 0;
        }
@@ -780,7 +752,7 @@ incoming data size = %u\n", (unsigned int)p->in_data.pdu_received_len, (unsigned
  Accepts incoming data on an internal rpc pipe.
 ****************************************************************************/
 
-ssize_t write_to_internal_pipe(struct pipes_struct *p, char *data, size_t n)
+static ssize_t write_to_internal_pipe(struct pipes_struct *p, char *data, size_t n)
 {
        size_t data_left = n;
 
@@ -815,8 +787,8 @@ ssize_t write_to_internal_pipe(struct pipes_struct *p, char *data, size_t n)
  have been prepared into arrays of headers + data stream sections.
 ****************************************************************************/
 
-ssize_t read_from_internal_pipe(struct pipes_struct *p, char *data, size_t n,
-                               bool *is_data_outstanding)
+static ssize_t read_from_internal_pipe(struct pipes_struct *p, char *data, size_t n,
+                                      bool *is_data_outstanding)
 {
        uint32 pdu_remaining = 0;
        ssize_t data_returned = 0;
@@ -826,7 +798,8 @@ ssize_t read_from_internal_pipe(struct pipes_struct *p, char *data, size_t n,
                return -1;              
        }
 
-       DEBUG(6,(" name: %s len: %u\n", p->name, (unsigned int)n));
+       DEBUG(6,(" name: %s len: %u\n", get_pipe_name_from_iface(&p->syntax),
+                (unsigned int)n));
 
        /*
         * We cannot return more than one PDU length per
@@ -840,8 +813,10 @@ ssize_t read_from_internal_pipe(struct pipes_struct *p, char *data, size_t n,
         */
 
        if(n > RPC_MAX_PDU_FRAG_LEN) {
-                DEBUG(5,("read_from_pipe: too large read (%u) requested on \
-pipe %s. We can only service %d sized reads.\n", (unsigned int)n, p->name, RPC_MAX_PDU_FRAG_LEN ));
+                DEBUG(5,("read_from_pipe: too large read (%u) requested on "
+                        "pipe %s. We can only service %d sized reads.\n",
+                        (unsigned int)n, get_pipe_name_from_iface(&p->syntax),
+                        RPC_MAX_PDU_FRAG_LEN ));
                n = RPC_MAX_PDU_FRAG_LEN;
        }
 
@@ -853,14 +828,24 @@ pipe %s. We can only service %d sized reads.\n", (unsigned int)n, p->name, RPC_M
         * PDU.
         */
 
-       if((pdu_remaining = p->out_data.current_pdu_len - p->out_data.current_pdu_sent) > 0) {
+       pdu_remaining = prs_offset(&p->out_data.frag)
+               - p->out_data.current_pdu_sent;
+
+       if (pdu_remaining > 0) {
                data_returned = (ssize_t)MIN(n, pdu_remaining);
 
-               DEBUG(10,("read_from_pipe: %s: current_pdu_len = %u, current_pdu_sent = %u \
-returning %d bytes.\n", p->name, (unsigned int)p->out_data.current_pdu_len, 
-                       (unsigned int)p->out_data.current_pdu_sent, (int)data_returned));
+               DEBUG(10,("read_from_pipe: %s: current_pdu_len = %u, "
+                         "current_pdu_sent = %u returning %d bytes.\n",
+                         get_pipe_name_from_iface(&p->syntax),
+                         (unsigned int)prs_offset(&p->out_data.frag),
+                         (unsigned int)p->out_data.current_pdu_sent,
+                         (int)data_returned));
+
+               memcpy(data,
+                      prs_data_p(&p->out_data.frag)
+                      + p->out_data.current_pdu_sent,
+                      data_returned);
 
-               memcpy( data, &p->out_data.current_pdu[p->out_data.current_pdu_sent], (size_t)data_returned);
                p->out_data.current_pdu_sent += (uint32)data_returned;
                goto out;
        }
@@ -870,9 +855,11 @@ returning %d bytes.\n", p->name, (unsigned int)p->out_data.current_pdu_len,
         * may of course be zero if this is the first return fragment.
         */
 
-       DEBUG(10,("read_from_pipe: %s: fault_state = %d : data_sent_length \
-= %u, prs_offset(&p->out_data.rdata) = %u.\n",
-               p->name, (int)p->fault_state, (unsigned int)p->out_data.data_sent_length, (unsigned int)prs_offset(&p->out_data.rdata) ));
+       DEBUG(10,("read_from_pipe: %s: fault_state = %d : data_sent_length "
+                 "= %u, prs_offset(&p->out_data.rdata) = %u.\n",
+                 get_pipe_name_from_iface(&p->syntax), (int)p->fault_state,
+                 (unsigned int)p->out_data.data_sent_length,
+                 (unsigned int)prs_offset(&p->out_data.rdata) ));
 
        if(p->out_data.data_sent_length >= prs_offset(&p->out_data.rdata)) {
                /*
@@ -890,18 +877,19 @@ returning %d bytes.\n", p->name, (unsigned int)p->out_data.current_pdu_len,
         */
 
        if(!create_next_pdu(p)) {
-               DEBUG(0,("read_from_pipe: %s: create_next_pdu failed.\n", p->name));
+               DEBUG(0,("read_from_pipe: %s: create_next_pdu failed.\n",
+                        get_pipe_name_from_iface(&p->syntax)));
                return -1;
        }
 
-       data_returned = MIN(n, p->out_data.current_pdu_len);
+       data_returned = MIN(n, prs_offset(&p->out_data.frag));
 
-       memcpy( data, p->out_data.current_pdu, (size_t)data_returned);
+       memcpy( data, prs_data_p(&p->out_data.frag), (size_t)data_returned);
        p->out_data.current_pdu_sent += (uint32)data_returned;
 
   out:
+       (*is_data_outstanding) = prs_offset(&p->out_data.frag) > n;
 
-       (*is_data_outstanding) = p->out_data.current_pdu_len > n;
        return data_returned;
 }
 
@@ -916,6 +904,7 @@ static int close_internal_rpc_pipe_hnd(struct pipes_struct *p)
                return False;
        }
 
+       prs_mem_free(&p->out_data.frag);
        prs_mem_free(&p->out_data.rdata);
        prs_mem_free(&p->in_data.data);
 
@@ -923,18 +912,13 @@ static int close_internal_rpc_pipe_hnd(struct pipes_struct *p)
                (*p->auth.auth_data_free_func)(&p->auth);
        }
 
-       if (p->mem_ctx) {
-               talloc_destroy(p->mem_ctx);
-       }
+       TALLOC_FREE(p->mem_ctx);
 
        free_pipe_rpc_context( p->contexts );
 
        /* Free the handles database. */
        close_policy_by_pipe(p);
 
-       TALLOC_FREE(p->pipe_user.nt_user_token);
-       SAFE_FREE(p->pipe_user.ut.groups);
-
        DLIST_REMOVE(InternalPipes, p);
 
        ZERO_STRUCTP(p);
@@ -946,90 +930,458 @@ static int close_internal_rpc_pipe_hnd(struct pipes_struct *p)
 
 bool fsp_is_np(struct files_struct *fsp)
 {
-       return ((fsp != NULL)
-               && (fsp->fake_file_handle != NULL)
-               && (fsp->fake_file_handle->type == FAKE_FILE_TYPE_NAMED_PIPE));
+       enum FAKE_FILE_TYPE type;
+
+       if ((fsp == NULL) || (fsp->fake_file_handle == NULL)) {
+               return false;
+       }
+
+       type = fsp->fake_file_handle->type;
+
+       return ((type == FAKE_FILE_TYPE_NAMED_PIPE)
+               || (type == FAKE_FILE_TYPE_NAMED_PIPE_PROXY));
 }
 
-NTSTATUS np_open(struct smb_request *smb_req, struct connection_struct *conn,
-                const char *name, struct files_struct **pfsp)
+struct np_proxy_state {
+       int fd;
+};
+
+static int np_proxy_state_destructor(struct np_proxy_state *state)
+{
+       if (state->fd != -1) {
+               close(state->fd);
+       }
+       return 0;
+}
+
+static struct np_proxy_state *make_external_rpc_pipe_p(TALLOC_CTX *mem_ctx,
+                                                      const char *pipe_name,
+                                                      struct auth_serversupplied_info *server_info)
 {
+       struct np_proxy_state *result;
+       struct sockaddr_un addr;
+       char *socket_path;
+       const char *socket_dir;
+
+       DATA_BLOB req_blob;
+       struct netr_SamInfo3 *info3;
+       struct named_pipe_auth_req req;
+       DATA_BLOB rep_blob;
+       uint8 rep_buf[20];
+       struct named_pipe_auth_rep rep;
+       enum ndr_err_code ndr_err;
        NTSTATUS status;
-       struct files_struct *fsp;
-       struct pipes_struct *p;
+       ssize_t written;
+
+       result = talloc(mem_ctx, struct np_proxy_state);
+       if (result == NULL) {
+               DEBUG(0, ("talloc failed\n"));
+               return NULL;
+       }
+
+       result->fd = socket(AF_UNIX, SOCK_STREAM, 0);
+       if (result->fd == -1) {
+               DEBUG(10, ("socket(2) failed: %s\n", strerror(errno)));
+               goto fail;
+       }
+       talloc_set_destructor(result, np_proxy_state_destructor);
+
+       ZERO_STRUCT(addr);
+       addr.sun_family = AF_UNIX;
 
-       status = file_new(smb_req, conn, &fsp);
+       socket_dir = lp_parm_const_string(
+               GLOBAL_SECTION_SNUM, "external_rpc_pipe", "socket_dir",
+               get_dyn_NCALRPCDIR());
+       if (socket_dir == NULL) {
+               DEBUG(0, ("externan_rpc_pipe:socket_dir not set\n"));
+               goto fail;
+       }
+
+       socket_path = talloc_asprintf(talloc_tos(), "%s/np/%s",
+                                     socket_dir, pipe_name);
+       if (socket_path == NULL) {
+               DEBUG(0, ("talloc_asprintf failed\n"));
+               goto fail;
+       }
+       strncpy(addr.sun_path, socket_path, sizeof(addr.sun_path));
+       TALLOC_FREE(socket_path);
+
+       become_root();
+       if (sys_connect(result->fd, (struct sockaddr *)&addr) == -1) {
+               unbecome_root();
+               DEBUG(0, ("connect(%s) failed: %s\n", addr.sun_path,
+                         strerror(errno)));
+               goto fail;
+       }
+       unbecome_root();
+
+       info3 = talloc(talloc_tos(), struct netr_SamInfo3);
+       if (info3 == NULL) {
+               DEBUG(0, ("talloc failed\n"));
+               goto fail;
+       }
+
+       status = serverinfo_to_SamInfo3(server_info, NULL, 0, info3);
        if (!NT_STATUS_IS_OK(status)) {
-               DEBUG(0, ("file_new failed: %s\n", nt_errstr(status)));
-               return status;
+               TALLOC_FREE(info3);
+               DEBUG(0, ("serverinfo_to_SamInfo3 failed: %s\n",
+                         nt_errstr(status)));
+               goto fail;
        }
 
-       fsp->conn = conn;
-       fsp->fh->fd = -1;
-       fsp->vuid = smb_req->vuid;
-       fsp->can_lock = false;
-       fsp->access_mask = FILE_READ_DATA | FILE_WRITE_DATA;
-       string_set(&fsp->fsp_name, name);
+       req.level = 1;
+       req.info.info1 = *info3;
+
+       ndr_err = ndr_push_struct_blob(
+               &req_blob, talloc_tos(), NULL, &req,
+               (ndr_push_flags_fn_t)ndr_push_named_pipe_auth_req);
+
+       if (!NDR_ERR_CODE_IS_SUCCESS(ndr_err)) {
+               DEBUG(10, ("ndr_push_named_pipe_auth_req failed: %s\n",
+                          ndr_errstr(ndr_err)));
+               goto fail;
+       }
+
+       DEBUG(10, ("named_pipe_auth_req(client)[%u]\n", (uint32_t)req_blob.length));
+       dump_data(10, req_blob.data, req_blob.length);
+
+       written = write_data(result->fd, (char *)req_blob.data,
+                            req_blob.length);
+       if (written == -1) {
+               DEBUG(3, ("Could not write auth req data to RPC server\n"));
+               goto fail;
+       }
+
+       status = read_data(result->fd, (char *)rep_buf, sizeof(rep_buf));
+       if (!NT_STATUS_IS_OK(status)) {
+               DEBUG(3, ("Could not read auth result\n"));
+               goto fail;
+       }
+
+       rep_blob = data_blob_const(rep_buf, sizeof(rep_buf));
+
+       DEBUG(10,("name_pipe_auth_rep(client)[%u]\n", (uint32_t)rep_blob.length));
+       dump_data(10, rep_blob.data, rep_blob.length);
+
+       ndr_err = ndr_pull_struct_blob(
+               &rep_blob, talloc_tos(), NULL, &rep,
+               (ndr_pull_flags_fn_t)ndr_pull_named_pipe_auth_rep);
+
+       if (!NDR_ERR_CODE_IS_SUCCESS(ndr_err)) {
+               DEBUG(0, ("ndr_pull_named_pipe_auth_rep failed: %s\n",
+                         ndr_errstr(ndr_err)));
+               goto fail;
+       }
+
+       if (rep.length != 16) {
+               DEBUG(0, ("req invalid length: %u != 16\n",
+                         rep.length));
+               goto fail;
+       }
+
+       if (strcmp(NAMED_PIPE_AUTH_MAGIC, rep.magic) != 0) {
+               DEBUG(0, ("req invalid magic: %s != %s\n",
+                         rep.magic, NAMED_PIPE_AUTH_MAGIC));
+               goto fail;
+       }
+
+       if (!NT_STATUS_IS_OK(rep.status)) {
+               DEBUG(0, ("req failed: %s\n",
+                         nt_errstr(rep.status)));
+               goto fail;
+       }
+
+       if (rep.level != 1) {
+               DEBUG(0, ("req invalid level: %u != 1\n",
+                         rep.level));
+               goto fail;
+       }
+
+       return result;
+
+ fail:
+       TALLOC_FREE(result);
+       return NULL;
+}
+
+NTSTATUS np_open(TALLOC_CTX *mem_ctx, const char *name,
+                const char *client_address,
+                struct auth_serversupplied_info *server_info,
+                struct fake_file_handle **phandle)
+{
+       const char **proxy_list;
+       struct fake_file_handle *handle;
 
-       fsp->fake_file_handle = talloc(NULL, struct fake_file_handle);
-       if (fsp->fake_file_handle == NULL) {
-               file_free(smb_req, fsp);
+       proxy_list = lp_parm_string_list(-1, "np", "proxy", NULL);
+
+       handle = talloc(mem_ctx, struct fake_file_handle);
+       if (handle == NULL) {
                return NT_STATUS_NO_MEMORY;
        }
-       fsp->fake_file_handle->type = FAKE_FILE_TYPE_NAMED_PIPE;
 
-       p = make_internal_rpc_pipe_p(fsp->fake_file_handle, name,
-                                    conn->client_address, conn->server_info,
-                                    smb_req->vuid);
-       if (p == NULL) {
-               file_free(smb_req, fsp);
+       if ((proxy_list != NULL) && str_list_check_ci(proxy_list, name)) {
+               struct np_proxy_state *p;
+
+               p = make_external_rpc_pipe_p(handle, name, server_info);
+
+               handle->type = FAKE_FILE_TYPE_NAMED_PIPE_PROXY;
+               handle->private_data = p;
+       } else {
+               struct pipes_struct *p;
+               struct ndr_syntax_id syntax;
+
+               if (!is_known_pipename(name, &syntax)) {
+                       TALLOC_FREE(handle);
+                       return NT_STATUS_OBJECT_NAME_NOT_FOUND;
+               }
+
+               p = make_internal_rpc_pipe_p(handle, &syntax, client_address,
+                                            server_info);
+
+               handle->type = FAKE_FILE_TYPE_NAMED_PIPE;
+               handle->private_data = p;
+       }
+
+       if (handle->private_data == NULL) {
+               TALLOC_FREE(handle);
                return NT_STATUS_PIPE_NOT_AVAILABLE;
        }
-       fsp->fake_file_handle->private_data = p;
 
-       *pfsp = fsp;
+       *phandle = handle;
 
        return NT_STATUS_OK;
 }
 
-NTSTATUS np_write(struct files_struct *fsp, uint8_t *data, size_t len,
-                 ssize_t *nwritten)
+struct np_write_state {
+       ssize_t nwritten;
+};
+
+static void np_write_done(struct async_req *subreq);
+
+struct async_req *np_write_send(TALLOC_CTX *mem_ctx, struct event_context *ev,
+                               struct fake_file_handle *handle,
+                               const uint8_t *data, size_t len)
 {
-       struct pipes_struct *p;
+       struct async_req *result, *subreq;
+       struct np_write_state *state;
+       NTSTATUS status;
 
-       if (!fsp_is_np(fsp)) {
-               return NT_STATUS_INVALID_HANDLE;
+       DEBUG(6, ("np_write_send: len: %d\n", (int)len));
+       dump_data(50, data, len);
+
+       if (!async_req_setup(mem_ctx, &result, &state,
+                            struct np_write_state)) {
+               return NULL;
        }
 
-       p = talloc_get_type_abort(
-               fsp->fake_file_handle->private_data, struct pipes_struct);
+       if (len == 0) {
+               state->nwritten = 0;
+               status = NT_STATUS_OK;
+               goto post_status;
+       }
 
-       DEBUG(6, ("np_write: %x name: %s len: %d\n", (int)fsp->fnum,
-                 fsp->fsp_name, (int)len));
-       dump_data(50, data, len);
+       if (handle->type == FAKE_FILE_TYPE_NAMED_PIPE) {
+               struct pipes_struct *p = talloc_get_type_abort(
+                       handle->private_data, struct pipes_struct);
+
+               state->nwritten = write_to_internal_pipe(p, (char *)data, len);
 
-       *nwritten = write_to_internal_pipe(p, (char *)data, len);
+               status = (state->nwritten >= 0)
+                       ? NT_STATUS_OK : NT_STATUS_UNEXPECTED_IO_ERROR;
+               goto post_status;
+       }
+
+       if (handle->type == FAKE_FILE_TYPE_NAMED_PIPE_PROXY) {
+               struct np_proxy_state *p = talloc_get_type_abort(
+                       handle->private_data, struct np_proxy_state);
+
+               state->nwritten = len;
+
+               subreq = sendall_send(state, ev, p->fd, data, len, 0);
+               if (subreq == NULL) {
+                       goto fail;
+               }
+               subreq->async.fn = np_write_done;
+               subreq->async.priv = result;
+               return result;
+       }
 
-       return ((*nwritten) >= 0)
-               ? NT_STATUS_OK : NT_STATUS_UNEXPECTED_IO_ERROR;
+       status = NT_STATUS_INVALID_HANDLE;
+ post_status:
+       if (async_post_ntstatus(result, ev, status)) {
+               return result;
+       }
+ fail:
+       TALLOC_FREE(result);
+       return NULL;
+}
+
+static void np_write_done(struct async_req *subreq)
+{
+       struct async_req *req = talloc_get_type_abort(
+               subreq->async.priv, struct async_req);
+       int err;
+       ssize_t ret;
+
+       ret = sendall_recv(subreq, &err);
+       if (ret < 0) {
+               async_req_nterror(req, map_nt_error_from_unix(err));
+               return;
+       }
+       async_req_done(req);
 }
 
-NTSTATUS np_read(struct files_struct *fsp, uint8_t *data, size_t len,
-                ssize_t *nread, bool *is_data_outstanding)
+NTSTATUS np_write_recv(struct async_req *req, ssize_t *pnwritten)
 {
-       struct pipes_struct *p;
+       struct np_write_state *state = talloc_get_type_abort(
+               req->private_data, struct np_write_state);
+       NTSTATUS status;
 
-       if (!fsp_is_np(fsp)) {
-               return NT_STATUS_INVALID_HANDLE;
+       if (async_req_is_nterror(req, &status)) {
+               return status;
        }
+       *pnwritten = state->nwritten;
+       return NT_STATUS_OK;
+}
+
+struct np_read_state {
+       ssize_t nread;
+       bool is_data_outstanding;
+       int fd;
+};
 
-       p = talloc_get_type_abort(
-               fsp->fake_file_handle->private_data, struct pipes_struct);
+static void np_read_done(struct async_req *subreq);
 
-       *nread = read_from_internal_pipe(p, (char *)data, len,
-                                        is_data_outstanding);
+struct async_req *np_read_send(TALLOC_CTX *mem_ctx, struct event_context *ev,
+                              struct fake_file_handle *handle,
+                              uint8_t *data, size_t len)
+{
+       struct async_req *result, *subreq;
+       struct np_read_state *state;
+       NTSTATUS status;
+
+       if (!async_req_setup(mem_ctx, &result, &state,
+                            struct np_read_state)) {
+               return NULL;
+       }
 
-       return ((*nread) >= 0)
-               ? NT_STATUS_OK : NT_STATUS_UNEXPECTED_IO_ERROR;
+       if (handle->type == FAKE_FILE_TYPE_NAMED_PIPE) {
+               struct pipes_struct *p = talloc_get_type_abort(
+                       handle->private_data, struct pipes_struct);
 
+               state->nread = read_from_internal_pipe(
+                       p, (char *)data, len, &state->is_data_outstanding);
+
+               status = (state->nread >= 0)
+                       ? NT_STATUS_OK : NT_STATUS_UNEXPECTED_IO_ERROR;
+               goto post_status;
+       }
+
+       if (handle->type == FAKE_FILE_TYPE_NAMED_PIPE_PROXY) {
+               struct np_proxy_state *p = talloc_get_type_abort(
+                       handle->private_data, struct np_proxy_state);
+
+               state->fd = p->fd;
+
+               subreq = async_recv(state, ev, p->fd, data, len, 0);
+               if (subreq == NULL) {
+                       goto fail;
+               }
+               subreq->async.fn = np_read_done;
+               subreq->async.priv = result;
+               return result;
+       }
+
+       status = NT_STATUS_INVALID_HANDLE;
+ post_status:
+       if (async_post_ntstatus(result, ev, status)) {
+               return result;
+       }
+ fail:
+       TALLOC_FREE(result);
+       return NULL;
+}
+
+static void np_read_done(struct async_req *subreq)
+{
+       struct async_req *req = talloc_get_type_abort(
+               subreq->async.priv, struct async_req);
+       struct np_read_state *state = talloc_get_type_abort(
+               req->private_data, struct np_read_state);
+       ssize_t result;
+       int sys_errno;
+       int available = 0;
+
+       result = async_syscall_result_ssize_t(subreq, &sys_errno);
+       if (result == -1) {
+               async_req_nterror(req, map_nt_error_from_unix(sys_errno));
+               return;
+       }
+       if (result == 0) {
+               async_req_nterror(req, NT_STATUS_END_OF_FILE);
+               return;
+       }
+
+       state->nread = result;
+
+       /*
+        * We don't look at the ioctl result. We don't really care if there is
+        * data available, because this is racy anyway.
+        */
+       ioctl(state->fd, FIONREAD, &available);
+       state->is_data_outstanding = (available > 0);
+
+       async_req_done(req);
+}
+
+NTSTATUS np_read_recv(struct async_req *req, ssize_t *nread,
+                     bool *is_data_outstanding)
+{
+       struct np_read_state *state = talloc_get_type_abort(
+               req->private_data, struct np_read_state);
+       NTSTATUS status;
+
+       if (async_req_is_nterror(req, &status)) {
+               return status;
+       }
+       *nread = state->nread;
+       *is_data_outstanding = state->is_data_outstanding;
+       return NT_STATUS_OK;
+}
+
+/**
+ * Create a new RPC client context which uses a local dispatch function.
+ */
+NTSTATUS rpc_pipe_open_internal(TALLOC_CTX *mem_ctx,
+                               const struct ndr_syntax_id *abstract_syntax,
+                               NTSTATUS (*dispatch) (struct rpc_pipe_client *cli,
+                                                     TALLOC_CTX *mem_ctx,
+                                                     const struct ndr_interface_table *table,
+                                                     uint32_t opnum, void *r),
+                               struct auth_serversupplied_info *serversupplied_info,
+                               struct rpc_pipe_client **presult)
+{
+       struct rpc_pipe_client *result;
+
+       result = TALLOC_ZERO_P(mem_ctx, struct rpc_pipe_client);
+       if (result == NULL) {
+               return NT_STATUS_NO_MEMORY;
+       }
+
+       result->abstract_syntax = *abstract_syntax;
+       result->transfer_syntax = ndr_transfer_syntax;
+       result->dispatch = dispatch;
+
+       result->pipes_struct = make_internal_rpc_pipe_p(
+               result, abstract_syntax, "", serversupplied_info);
+       if (result->pipes_struct == NULL) {
+               TALLOC_FREE(result);
+               return NT_STATUS_NO_MEMORY;
+       }
+
+       result->max_xmit_frag = -1;
+       result->max_recv_frag = -1;
+
+       *presult = result;
+       return NT_STATUS_OK;
 }