r11870: fixed the problem volker reported with the RPX-XPLOGIN test. The
authorAndrew Tridgell <tridge@samba.org>
Wed, 23 Nov 2005 00:30:58 +0000 (00:30 +0000)
committerGerald (Jerry) Carter <jerry@samba.org>
Wed, 10 Oct 2007 18:46:38 +0000 (13:46 -0500)
problem was caused by a callback destroying the packet processing
context while that context was being used in packet_recv()

This is the first time we have used the ability of talloc destructors
to 'refuse' a free request. It works well in this case as it makes the
composite API simpler to use for other code, and isolates the
complexity of having callbacks destroying the packet context to the
packet.c code.
(This used to be commit b1b2d86541a376f1ef33fae897f750005c386ebe)

source4/lib/stream/packet.c

index 45ca1feb45a6065f1bcbe8bfdfe38e178d721ca1..54cf662e2e78ddc14a99e45f5b8a3771fb01a5ab 100644 (file)
@@ -47,6 +47,9 @@ struct packet_context {
        BOOL recv_disable;
        BOOL nofree;
 
+       BOOL busy;
+       BOOL destructor_called;
+
        struct send_element {
                struct send_element *next, *prev;
                DATA_BLOB blob;
@@ -54,12 +57,35 @@ struct packet_context {
        } *send_queue;
 };
 
+/*
+  a destructor used when we are processing packets to prevent freeing of this
+  context while it is being used
+*/
+static int packet_destructor(void *p)
+{
+       struct packet_context *pc = talloc_get_type(p, struct packet_context);
+
+       if (pc->busy) {
+               pc->destructor_called = True;
+               /* now we refuse the talloc_free() request. The free will
+                  happen again in the packet_recv() code */
+               return -1;
+       }
+
+       return 0;
+}
+
+
 /*
   initialise a packet receiver
 */
 struct packet_context *packet_init(TALLOC_CTX *mem_ctx)
 {
-       return talloc_zero(mem_ctx, struct packet_context);
+       struct packet_context *pc = talloc_zero(mem_ctx, struct packet_context);
+       if (pc != NULL) {
+               talloc_set_destructor(pc, packet_destructor);
+       }
+       return pc;
 }
 
 
@@ -205,6 +231,7 @@ static void packet_next_event(struct event_context *ev, struct timed_event *te,
        }
 }
 
+
 /*
   call this when the socket becomes readable to kick off the whole
   stream parsing process
@@ -342,8 +369,17 @@ next_partial:
                pc->processing = 1;
        }
 
+       pc->busy = True;
+
        status = pc->callback(pc->private, blob);
 
+       pc->busy = False;
+
+       if (pc->destructor_called) {
+               talloc_free(pc);
+               return;
+       }
+
        if (pc->processing) {
                if (pc->processing > 1) {
                        EVENT_FD_READABLE(pc->fde);