2 * Copyright (c) 2008, 2009, 2010 Nicira Networks.
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at:
8 * http://www.apache.org/licenses/LICENSE-2.0
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
22 #include "dynamic-string.h"
26 ofpbuf_use__(struct ofpbuf *b, void *base, size_t allocated,
27 enum ofpbuf_source source)
29 b->base = b->data = base;
30 b->allocated = allocated;
33 b->l2 = b->l3 = b->l4 = b->l7 = NULL;
34 list_poison(&b->list_node);
38 /* Initializes 'b' as an empty ofpbuf that contains the 'allocated' bytes of
39 * memory starting at 'base'. 'base' should be the first byte of a region
40 * obtained from malloc(). It will be freed (with free()) if 'b' is resized or
43 ofpbuf_use(struct ofpbuf *b, void *base, size_t allocated)
45 ofpbuf_use__(b, base, allocated, OFPBUF_MALLOC);
48 /* Initializes 'b' as an empty ofpbuf that contains the 'allocated' bytes of
49 * memory starting at 'base'. 'base' should point to a buffer on the stack.
50 * If 'b' is resized, new memory will be allocated with malloc() and 'base'
51 * will not be freed. This is useful when a small stack-allocated buffer is
52 * normally appropriate but sometimes it must be expanded.
54 * 'base' should be appropriately aligned. Using an array of uint32_t or
55 * uint64_t for the buffer is a reasonable way to ensure appropriate alignment
56 * for 32- or 64-bit data.
58 * (Nothing actually relies on 'base' being allocated on the stack. It could
59 * be static or malloc()'d memory. But stack space is the most common use
62 ofpbuf_use_stack(struct ofpbuf *b, void *base, size_t allocated)
64 ofpbuf_use__(b, base, allocated, OFPBUF_STACK);
67 /* Initializes 'b' as an ofpbuf whose data starts at 'data' and continues for
68 * 'size' bytes. This is appropriate for an ofpbuf that will be used to
69 * inspect existing data, without moving it around or reallocating it, and
70 * generally without modifying it at all.
72 * An ofpbuf operation that requires reallocating data will assert-fail if this
73 * function was used to initialize it. */
75 ofpbuf_use_const(struct ofpbuf *b, const void *data, size_t size)
77 ofpbuf_use__(b, (void *) data, size, OFPBUF_CONST);
81 /* Initializes 'b' as an empty ofpbuf with an initial capacity of 'size'
84 ofpbuf_init(struct ofpbuf *b, size_t size)
86 ofpbuf_use(b, size ? xmalloc(size) : NULL, size);
89 /* Frees memory that 'b' points to. */
91 ofpbuf_uninit(struct ofpbuf *b)
93 if (b && b->source == OFPBUF_MALLOC) {
98 /* Frees memory that 'b' points to and allocates a new ofpbuf */
100 ofpbuf_reinit(struct ofpbuf *b, size_t size)
103 ofpbuf_init(b, size);
106 /* Creates and returns a new ofpbuf with an initial capacity of 'size'
109 ofpbuf_new(size_t size)
111 struct ofpbuf *b = xmalloc(sizeof *b);
112 ofpbuf_init(b, size);
116 /* Creates and returns a new ofpbuf with an initial capacity of 'size +
117 * headroom' bytes, reserving the first 'headroom' bytes as headroom. */
119 ofpbuf_new_with_headroom(size_t size, size_t headroom)
121 struct ofpbuf *b = ofpbuf_new(size + headroom);
122 ofpbuf_reserve(b, headroom);
126 /* Creates and returns a new ofpbuf that initially contains a copy of the
127 * 'buffer->size' bytes of data starting at 'buffer->data' with no headroom or
130 ofpbuf_clone(const struct ofpbuf *buffer)
132 return ofpbuf_clone_data(buffer->data, buffer->size);
135 /* Creates and returns a new ofpbuf whose data are copied from 'buffer'. The
136 * returned ofpbuf will additionally have 'headroom' bytes of headroom. */
138 ofpbuf_clone_with_headroom(const struct ofpbuf *buffer, size_t headroom)
140 return ofpbuf_clone_data_with_headroom(buffer->data, buffer->size,
144 /* Creates and returns a new ofpbuf that initially contains a copy of the
145 * 'size' bytes of data starting at 'data' with no headroom or tailroom. */
147 ofpbuf_clone_data(const void *data, size_t size)
149 return ofpbuf_clone_data_with_headroom(data, size, 0);
152 /* Creates and returns a new ofpbuf that initially contains 'headroom' bytes of
153 * headroom followed by a copy of the 'size' bytes of data starting at
156 ofpbuf_clone_data_with_headroom(const void *data, size_t size, size_t headroom)
158 struct ofpbuf *b = ofpbuf_new_with_headroom(size, headroom);
159 ofpbuf_put(b, data, size);
163 /* Frees memory that 'b' points to, as well as 'b' itself. */
165 ofpbuf_delete(struct ofpbuf *b)
173 /* Returns the number of bytes of headroom in 'b', that is, the number of bytes
174 * of unused space in ofpbuf 'b' before the data that is in use. (Most
175 * commonly, the data in a ofpbuf is at its beginning, and thus the ofpbuf's
178 ofpbuf_headroom(const struct ofpbuf *b)
180 return (char*)b->data - (char*)b->base;
183 /* Returns the number of bytes that may be appended to the tail end of ofpbuf
184 * 'b' before the ofpbuf must be reallocated. */
186 ofpbuf_tailroom(const struct ofpbuf *b)
188 return (char*)ofpbuf_end(b) - (char*)ofpbuf_tail(b);
192 ofpbuf_copy__(struct ofpbuf *b, uint8_t *new_base,
193 size_t new_headroom, size_t new_tailroom)
195 const uint8_t *old_base = b->base;
196 size_t old_headroom = ofpbuf_headroom(b);
197 size_t old_tailroom = ofpbuf_tailroom(b);
198 size_t copy_headroom = MIN(old_headroom, new_headroom);
199 size_t copy_tailroom = MIN(old_tailroom, new_tailroom);
201 memcpy(&new_base[new_headroom - copy_headroom],
202 &old_base[old_headroom - copy_headroom],
203 copy_headroom + b->size + copy_tailroom);
206 /* Reallocates 'b' so that it has exactly 'new_headroom' and 'new_tailroom'
207 * bytes of headroom and tailroom, respectively. */
209 ofpbuf_resize__(struct ofpbuf *b, size_t new_headroom, size_t new_tailroom)
211 void *new_base, *new_data;
212 size_t new_allocated;
214 new_allocated = new_headroom + b->size + new_tailroom;
218 if (new_headroom == ofpbuf_headroom(b)) {
219 new_base = xrealloc(b->base, new_allocated);
221 new_base = xmalloc(new_allocated);
222 ofpbuf_copy__(b, new_base, new_headroom, new_tailroom);
228 new_base = xmalloc(new_allocated);
229 ofpbuf_copy__(b, new_base, new_headroom, new_tailroom);
230 b->source = OFPBUF_MALLOC;
240 b->allocated = new_allocated;
243 new_data = (char *) new_base + new_headroom;
244 if (b->data != new_data) {
245 uintptr_t data_delta = (char *) new_data - (char *) b->data;
248 b->l2 = (char *) b->l2 + data_delta;
251 b->l3 = (char *) b->l3 + data_delta;
254 b->l4 = (char *) b->l4 + data_delta;
257 b->l7 = (char *) b->l7 + data_delta;
262 /* Ensures that 'b' has room for at least 'size' bytes at its tail end,
263 * reallocating and copying its data if necessary. Its headroom, if any, is
266 ofpbuf_prealloc_tailroom(struct ofpbuf *b, size_t size)
268 if (size > ofpbuf_tailroom(b)) {
269 ofpbuf_resize__(b, ofpbuf_headroom(b), MAX(size, 64));
273 /* Ensures that 'b' has room for at least 'size' bytes at its head,
274 * reallocating and copying its data if necessary. Its tailroom, if any, is
277 ofpbuf_prealloc_headroom(struct ofpbuf *b, size_t size)
279 if (size > ofpbuf_headroom(b)) {
280 ofpbuf_resize__(b, MAX(size, 64), ofpbuf_tailroom(b));
284 /* Trims the size of 'b' to fit its actual content, reducing its tailroom to
285 * 0. Its headroom, if any, is preserved.
287 * Buffers not obtained from malloc() are not resized, since that wouldn't save
290 ofpbuf_trim(struct ofpbuf *b)
292 if (b->source == OFPBUF_MALLOC
293 && (ofpbuf_headroom(b) || ofpbuf_tailroom(b))) {
294 ofpbuf_resize__(b, 0, 0);
298 /* Appends 'size' bytes of data to the tail end of 'b', reallocating and
299 * copying its data if necessary. Returns a pointer to the first byte of the
300 * new data, which is left uninitialized. */
302 ofpbuf_put_uninit(struct ofpbuf *b, size_t size)
305 ofpbuf_prealloc_tailroom(b, size);
311 /* Appends 'size' zeroed bytes to the tail end of 'b'. Data in 'b' is
312 * reallocated and copied if necessary. Returns a pointer to the first byte of
313 * the data's location in the ofpbuf. */
315 ofpbuf_put_zeros(struct ofpbuf *b, size_t size)
317 void *dst = ofpbuf_put_uninit(b, size);
318 memset(dst, 0, size);
322 /* Appends the 'size' bytes of data in 'p' to the tail end of 'b'. Data in 'b'
323 * is reallocated and copied if necessary. Returns a pointer to the first
324 * byte of the data's location in the ofpbuf. */
326 ofpbuf_put(struct ofpbuf *b, const void *p, size_t size)
328 void *dst = ofpbuf_put_uninit(b, size);
329 memcpy(dst, p, size);
333 /* Parses as many pairs of hex digits as possible (possibly separated by
334 * spaces) from the beginning of 's', appending bytes for their values to 'b'.
335 * Returns the first character of 's' that is not the first of a pair of hex
336 * digits. If 'n' is nonnull, stores the number of bytes added to 'b' in
339 ofpbuf_put_hex(struct ofpbuf *b, const char *s, size_t *n)
341 size_t initial_size = b->size;
347 byte = hexits_value(s, 2, &ok);
350 *n = b->size - initial_size;
355 ofpbuf_put(b, &byte, 1);
360 /* Reserves 'size' bytes of headroom so that they can be later allocated with
361 * ofpbuf_push_uninit() without reallocating the ofpbuf. */
363 ofpbuf_reserve(struct ofpbuf *b, size_t size)
366 ofpbuf_prealloc_tailroom(b, size);
367 b->data = (char*)b->data + size;
370 /* Prefixes 'size' bytes to the head end of 'b', reallocating and copying its
371 * data if necessary. Returns a pointer to the first byte of the data's
372 * location in the ofpbuf. The new data is left uninitialized. */
374 ofpbuf_push_uninit(struct ofpbuf *b, size_t size)
376 ofpbuf_prealloc_headroom(b, size);
377 b->data = (char*)b->data - size;
382 /* Prefixes 'size' zeroed bytes to the head end of 'b', reallocating and
383 * copying its data if necessary. Returns a pointer to the first byte of the
384 * data's location in the ofpbuf. */
386 ofpbuf_push_zeros(struct ofpbuf *b, size_t size)
388 void *dst = ofpbuf_push_uninit(b, size);
389 memset(dst, 0, size);
393 /* Copies the 'size' bytes starting at 'p' to the head end of 'b', reallocating
394 * and copying its data if necessary. Returns a pointer to the first byte of
395 * the data's location in the ofpbuf. */
397 ofpbuf_push(struct ofpbuf *b, const void *p, size_t size)
399 void *dst = ofpbuf_push_uninit(b, size);
400 memcpy(dst, p, size);
404 /* If 'b' contains at least 'offset + size' bytes of data, returns a pointer to
405 * byte 'offset'. Otherwise, returns a null pointer. */
407 ofpbuf_at(const struct ofpbuf *b, size_t offset, size_t size)
409 return offset + size <= b->size ? (char *) b->data + offset : NULL;
412 /* Returns a pointer to byte 'offset' in 'b', which must contain at least
413 * 'offset + size' bytes of data. */
415 ofpbuf_at_assert(const struct ofpbuf *b, size_t offset, size_t size)
417 assert(offset + size <= b->size);
418 return ((char *) b->data) + offset;
421 /* Returns the byte following the last byte of data in use in 'b'. */
423 ofpbuf_tail(const struct ofpbuf *b)
425 return (char *) b->data + b->size;
428 /* Returns the byte following the last byte allocated for use (but not
429 * necessarily in use) by 'b'. */
431 ofpbuf_end(const struct ofpbuf *b)
433 return (char *) b->base + b->allocated;
436 /* Clears any data from 'b'. */
438 ofpbuf_clear(struct ofpbuf *b)
444 /* Removes 'size' bytes from the head end of 'b', which must contain at least
445 * 'size' bytes of data. Returns the first byte of data removed. */
447 ofpbuf_pull(struct ofpbuf *b, size_t size)
449 void *data = b->data;
450 assert(b->size >= size);
451 b->data = (char*)b->data + size;
456 /* If 'b' has at least 'size' bytes of data, removes that many bytes from the
457 * head end of 'b' and returns the first byte removed. Otherwise, returns a
458 * null pointer without modifying 'b'. */
460 ofpbuf_try_pull(struct ofpbuf *b, size_t size)
462 return b->size >= size ? ofpbuf_pull(b, size) : NULL;
465 /* Returns a string that describes some of 'b''s metadata plus a hex dump of up
466 * to 'maxbytes' from the start of the buffer. */
468 ofpbuf_to_string(const struct ofpbuf *b, size_t maxbytes)
473 ds_put_format(&s, "size=%zu, allocated=%zu, head=%zu, tail=%zu\n",
474 b->size, b->allocated,
475 ofpbuf_headroom(b), ofpbuf_tailroom(b));
476 ds_put_hex_dump(&s, b->data, MIN(b->size, maxbytes), 0, false);
480 /* Removes each of the "struct ofpbuf"s on 'list' from the list and frees
483 ofpbuf_list_delete(struct list *list)
485 struct ofpbuf *b, *next;
487 LIST_FOR_EACH_SAFE (b, next, list_node, list) {
488 list_remove(&b->list_node);