From: Ben Pfaff Date: Wed, 14 Jul 2010 17:05:53 +0000 (-0700) Subject: ofpbuf: Implement unsupported feature in ofpbuf_trim(). X-Git-Tag: v1.1.0pre1~183 X-Git-Url: http://git.onelab.eu/?a=commitdiff_plain;h=1f5cbaa3ba28794ffbaad170cd6f8597dcd25f94;p=sliver-openvswitch.git ofpbuf: Implement unsupported feature in ofpbuf_trim(). Until now, ofpbuf_trim() has not handled the case where the ofpbuf has nonzero headroom. This causes an assertion failure when pinsched_send() queues a packet to be sent later, because such packets have been guaranteed to have nonzero headroom since commit 43253595 "ofproto: Avoid buffer copy in OFPT_PACKET_IN path." This commit fixes the problem by implementing the until-now unsupported case. This commit factors code out of ofpbuf_prealloc_tailroom() into two new functions, ofpbuf_rebase__() and ofpbuf_resize_tailroom__(), and uses the latter to implement both ofpbuf_prealloc_tailroom() and ofpbuf_trim(). ofpbuf_rebase__() isn't used on its own at all, but it seems potentially useful so I made it an independent function. Reported-by: Tom Everman --- diff --git a/lib/ofpbuf.c b/lib/ofpbuf.c index 1621bcc19..e9ad400ce 100644 --- a/lib/ofpbuf.c +++ b/lib/ofpbuf.c @@ -117,19 +117,14 @@ ofpbuf_tailroom(const struct ofpbuf *b) return (char*)ofpbuf_end(b) - (char*)ofpbuf_tail(b); } -/* Ensures that 'b' has room for at least 'size' bytes at its tail end, - * reallocating and copying its data if necessary. */ -void -ofpbuf_prealloc_tailroom(struct ofpbuf *b, size_t size) +/* Changes 'b->base' to 'new_base' and adjusts all of 'b''s internal pointers + * to reflect the change. */ +static void +ofpbuf_rebase__(struct ofpbuf *b, void *new_base) { - if (size > ofpbuf_tailroom(b)) { - size_t new_allocated = b->allocated + MAX(size, 64); - void *new_base = xmalloc(new_allocated); + if (b->base != new_base) { uintptr_t base_delta = (char*)new_base - (char*)b->base; - memcpy(new_base, b->base, b->allocated); - free(b->base); b->base = new_base; - b->allocated = new_allocated; b->data = (char*)b->data + base_delta; if (b->l2) { b->l2 = (char*)b->l2 + base_delta; @@ -146,22 +141,38 @@ ofpbuf_prealloc_tailroom(struct ofpbuf *b, size_t size) } } +/* Reallocates 'b' so that it has exactly 'new_tailroom' bytes of tailroom. */ +static void +ofpbuf_resize_tailroom__(struct ofpbuf *b, size_t new_tailroom) +{ + b->allocated = ofpbuf_headroom(b) + b->size + new_tailroom; + ofpbuf_rebase__(b, xrealloc(b->base, b->allocated)); +} + +/* Ensures that 'b' has room for at least 'size' bytes at its tail end, + * reallocating and copying its data if necessary. Its headroom, if any, is + * preserved. */ +void +ofpbuf_prealloc_tailroom(struct ofpbuf *b, size_t size) +{ + if (size > ofpbuf_tailroom(b)) { + ofpbuf_resize_tailroom__(b, MAX(size, 64)); + } +} + void ofpbuf_prealloc_headroom(struct ofpbuf *b, size_t size) { assert(size <= ofpbuf_headroom(b)); } -/* Trims the size of 'b' to fit its actual content. */ +/* Trims the size of 'b' to fit its actual content, reducing its tailroom to + * 0. Its headroom, if any, is preserved. */ void ofpbuf_trim(struct ofpbuf *b) { - /* XXX These could be supported, but the current client doesn't care. */ - assert(b->data == b->base); - assert(b->l2 == NULL && b->l3 == NULL && b->l4 == NULL && b->l7 == NULL); - if (b->allocated > b->size) { - b->base = b->data = xrealloc(b->base, b->size); - b->allocated = b->size; + if (ofpbuf_tailroom(b) > 0) { + ofpbuf_resize_tailroom__(b, 0); } }