r12608: Remove some unused #include lines.
[jelmer/samba4-debian.git] / source / lib / messaging / messaging.c
index 1a2485d7005785002b7e4224259f9686b3d0b9cd..c7cce9c133edc5e1208b407459ddceb206a79923 100644 (file)
 
 #include "includes.h"
 #include "lib/events/events.h"
-#include "system/dir.h"
 #include "system/filesys.h"
-#include "system/time.h"
 #include "messages.h"
 #include "dlinklist.h"
 #include "lib/socket/socket.h"
 #include "librpc/gen_ndr/ndr_irpc.h"
 #include "lib/messaging/irpc.h"
 #include "db_wrap.h"
-#include "lib/tdb/include/tdb.h"
 #include "lib/tdb/include/tdbutil.h"
 
 /* change the message version with any incompatible changes in the protocol */
@@ -479,7 +476,7 @@ NTSTATUS irpc_register(struct messaging_context *msg_ctx,
        irpc->callnum = callnum;
        irpc->fn      = fn;
        irpc->private = private;
-       GUID_from_string(irpc->table->uuid, &irpc->uuid);
+       irpc->uuid = irpc->table->uuid;
 
        return NT_STATUS_OK;
 }
@@ -488,88 +485,116 @@ NTSTATUS irpc_register(struct messaging_context *msg_ctx,
 /*
   handle an incoming irpc reply message
 */
-static void irpc_handler_reply(struct messaging_context *msg_ctx, 
-                              struct ndr_pull *ndr, struct irpc_header *header)
+static void irpc_handler_reply(struct messaging_context *msg_ctx, struct irpc_message *m)
 {
        struct irpc_request *irpc;
 
-       irpc = idr_find(msg_ctx->idr, header->callid);
+       irpc = idr_find(msg_ctx->idr, m->header.callid);
        if (irpc == NULL) return;
 
        /* parse the reply data */
-       irpc->status = irpc->table->calls[irpc->callnum].ndr_pull(ndr, NDR_OUT, irpc->r);
+       irpc->status = irpc->table->calls[irpc->callnum].ndr_pull(m->ndr, NDR_OUT, irpc->r);
        if (NT_STATUS_IS_OK(irpc->status)) {
-               irpc->status = header->status;
+               irpc->status = m->header.status;
+               talloc_steal(irpc->mem_ctx, m);
+       } else {
+               talloc_steal(irpc, m);
        }
        irpc->done = True;
-       talloc_steal(irpc, ndr);
        if (irpc->async.fn) {
                irpc->async.fn(irpc);
        }
 }
 
+/*
+  send a irpc reply
+*/
+NTSTATUS irpc_send_reply(struct irpc_message *m, NTSTATUS status)
+{
+       struct ndr_push *push;
+       DATA_BLOB packet;
+
+       m->header.status = status;
+
+       /* setup the reply */
+       push = ndr_push_init_ctx(m->ndr);
+       if (push == NULL) {
+               status = NT_STATUS_NO_MEMORY;
+               goto failed;
+       }
+
+       m->header.flags |= IRPC_FLAG_REPLY;
+
+       /* construct the packet */
+       status = ndr_push_irpc_header(push, NDR_SCALARS|NDR_BUFFERS, &m->header);
+       if (!NT_STATUS_IS_OK(status)) goto failed;
+
+       status = m->irpc->table->calls[m->irpc->callnum].ndr_push(push, NDR_OUT, m->data);
+       if (!NT_STATUS_IS_OK(status)) goto failed;
+
+       /* send the reply message */
+       packet = ndr_push_blob(push);
+       status = messaging_send(m->msg_ctx, m->from, MSG_IRPC, &packet);
+       if (!NT_STATUS_IS_OK(status)) goto failed;
+
+failed:
+       talloc_free(m);
+       return status;
+}
 
 /*
   handle an incoming irpc request message
 */
 static void irpc_handler_request(struct messaging_context *msg_ctx, 
-                                struct ndr_pull *ndr, struct irpc_header *header,
-                                uint32_t src)
+                                struct irpc_message *m)
 {
        struct irpc_list *i;
        void *r;
        NTSTATUS status;
-       struct irpc_message m;
-       struct ndr_push *push;
-       DATA_BLOB packet;
 
        for (i=msg_ctx->irpc; i; i=i->next) {
-               if (GUID_equal(&i->uuid, &header->uuid) &&
-                   i->table->if_version == header->if_version &&
-                   i->callnum == header->callnum) {
+               if (GUID_equal(&i->uuid, &m->header.uuid) &&
+                   i->table->if_version == m->header.if_version &&
+                   i->callnum == m->header.callnum) {
                        break;
                }
        }
 
        if (i == NULL) {
                /* no registered handler for this message */
+               talloc_free(m);
                return;
        }
 
        /* allocate space for the structure */
-       r = talloc_zero_size(ndr, i->table->calls[header->callnum].struct_size);
+       r = talloc_zero_size(m->ndr, i->table->calls[m->header.callnum].struct_size);
        if (r == NULL) goto failed;
 
        /* parse the request data */
-       status = i->table->calls[i->callnum].ndr_pull(ndr, NDR_IN, r);
+       status = i->table->calls[i->callnum].ndr_pull(m->ndr, NDR_IN, r);
        if (!NT_STATUS_IS_OK(status)) goto failed;
 
        /* make the call */
-       m.from    = src;
-       m.private = i->private;
-       header->status = i->fn(&m, r);
-
-       /* setup the reply */
-       push = ndr_push_init_ctx(ndr);
-       if (push == NULL) goto failed;
-
-       header->flags |= IRPC_FLAG_REPLY;
-
-       /* construct the packet */
-       status = ndr_push_irpc_header(push, NDR_SCALARS|NDR_BUFFERS, header);
-       if (!NT_STATUS_IS_OK(status)) goto failed;
-
-       status = i->table->calls[i->callnum].ndr_push(push, NDR_OUT, r);
-       if (!NT_STATUS_IS_OK(status)) goto failed;
+       m->private     = i->private;
+       m->defer_reply = False;
+       m->msg_ctx     = msg_ctx;
+       m->irpc        = i;
+       m->data        = r;
+       m->ev          = msg_ctx->event.ev;
+
+       m->header.status = i->fn(m, r);
+
+       if (m->defer_reply) {
+               /* the server function has asked to defer the reply to later */
+               talloc_steal(msg_ctx, m);
+               return;
+       }
 
-       /* send the reply message */
-       packet = ndr_push_blob(push);
-       status = messaging_send(msg_ctx, src, MSG_IRPC, &packet);
-       if (!NT_STATUS_IS_OK(status)) goto failed;
+       irpc_send_reply(m, m->header.status);
+       return;
 
 failed:
-       /* nothing to clean up */
-       return;
+       talloc_free(m);
 }
 
 /*
@@ -578,28 +603,31 @@ failed:
 static void irpc_handler(struct messaging_context *msg_ctx, void *private, 
                         uint32_t msg_type, uint32_t src, DATA_BLOB *packet)
 {
-       struct irpc_header header;
-       struct ndr_pull *ndr;
+       struct irpc_message *m;
        NTSTATUS status;
 
-       ndr = ndr_pull_init_blob(packet, msg_ctx);
-       if (ndr == NULL) goto failed;
+       m = talloc(msg_ctx, struct irpc_message);
+       if (m == NULL) goto failed;
+
+       m->from = src;
 
-       ndr->flags |= LIBNDR_FLAG_REF_ALLOC;
+       m->ndr = ndr_pull_init_blob(packet, m);
+       if (m->ndr == NULL) goto failed;
 
-       status = ndr_pull_irpc_header(ndr, NDR_BUFFERS|NDR_SCALARS, &header);
+       m->ndr->flags |= LIBNDR_FLAG_REF_ALLOC;
+
+       status = ndr_pull_irpc_header(m->ndr, NDR_BUFFERS|NDR_SCALARS, &m->header);
        if (!NT_STATUS_IS_OK(status)) goto failed;
 
-       if (header.flags & IRPC_FLAG_REPLY) {
-               irpc_handler_reply(msg_ctx, ndr, &header);
+       if (m->header.flags & IRPC_FLAG_REPLY) {
+               irpc_handler_reply(msg_ctx, m);
        } else {
-               irpc_handler_request(msg_ctx, ndr, &header, src);
-               talloc_free(ndr);
+               irpc_handler_request(msg_ctx, m);
        }
        return;
 
 failed:
-       talloc_free(ndr);
+       talloc_free(m);
 }
 
 
@@ -634,7 +662,7 @@ static void irpc_timeout(struct event_context *ev, struct timed_event *te,
 struct irpc_request *irpc_call_send(struct messaging_context *msg_ctx, 
                                    uint32_t server_id, 
                                    const struct dcerpc_interface_table *table, 
-                                   int callnum, void *r)
+                                   int callnum, void *r, TALLOC_CTX *ctx)
 {
        struct irpc_header header;
        struct ndr_push *ndr;
@@ -653,12 +681,12 @@ struct irpc_request *irpc_call_send(struct messaging_context *msg_ctx,
        irpc->r        = r;
        irpc->done     = False;
        irpc->async.fn = NULL;
+       irpc->mem_ctx  = ctx;
 
        talloc_set_destructor(irpc, irpc_destructor);
 
        /* setup the header */
-       status = GUID_from_string(table->uuid, &header.uuid);
-       if (!NT_STATUS_IS_OK(status)) goto failed;
+       header.uuid = table->uuid;
 
        header.if_version = table->if_version;
        header.callid     = irpc->callid;
@@ -698,13 +726,18 @@ failed:
 */
 NTSTATUS irpc_call_recv(struct irpc_request *irpc)
 {
+       NTSTATUS status;
+
        NT_STATUS_HAVE_NO_MEMORY(irpc);
+
        while (!irpc->done) {
                if (event_loop_once(irpc->msg_ctx->event.ev) != 0) {
                        return NT_STATUS_CONNECTION_DISCONNECTED;
-               }               
+               }
        }
-       return irpc->status;
+       status = irpc->status;
+       talloc_free(irpc);
+       return status;
 }
 
 /*
@@ -713,10 +746,11 @@ NTSTATUS irpc_call_recv(struct irpc_request *irpc)
 NTSTATUS irpc_call(struct messaging_context *msg_ctx, 
                   uint32_t server_id, 
                   const struct dcerpc_interface_table *table, 
-                  int callnum, void *r)
+                  int callnum, void *r,
+                  TALLOC_CTX *mem_ctx)
 {
        struct irpc_request *irpc = irpc_call_send(msg_ctx, server_id, 
-                                                  table, callnum, r);
+                                                  table, callnum, r, mem_ctx);
        return irpc_call_recv(irpc);
 }
 
@@ -755,7 +789,7 @@ NTSTATUS irpc_add_name(struct messaging_context *msg_ctx, const char *name)
        }
        rec = tdb_fetch_bystring(t->tdb, name);
        count = rec.dsize / sizeof(uint32_t);
-       rec.dptr = (char *)realloc_p(rec.dptr, uint32_t, count+1);
+       rec.dptr = (unsigned char *)realloc_p(rec.dptr, uint32_t, count+1);
        rec.dsize += sizeof(uint32_t);
        if (rec.dptr == NULL) {
                tdb_unlock_bystring(t->tdb, name);