ofpbuf: Use ptrdiff_t for pointer delta.
[cascardo/ovs.git] / lib / ofpbuf.c
1 /*
2  * Copyright (c) 2008, 2009, 2010, 2011, 2012, 2013, 2016 Nicira, Inc.
3  *
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:
7  *
8  *     http://www.apache.org/licenses/LICENSE-2.0
9  *
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.
15  */
16
17 #include <config.h>
18 #include "ofpbuf.h"
19 #include <stdlib.h>
20 #include <string.h>
21 #include "dynamic-string.h"
22 #include "netdev-dpdk.h"
23 #include "util.h"
24
25 static void
26 ofpbuf_init__(struct ofpbuf *b, size_t allocated, enum ofpbuf_source source)
27 {
28     b->allocated = allocated;
29     b->source = source;
30     b->header = NULL;
31     b->msg = NULL;
32     list_poison(&b->list_node);
33 }
34
35 static void
36 ofpbuf_use__(struct ofpbuf *b, void *base, size_t allocated, size_t size,
37              enum ofpbuf_source source)
38 {
39     b->base = base;
40     b->data = base;
41     b->size = size;
42
43     ofpbuf_init__(b, allocated, source);
44 }
45
46 /* Initializes 'b' as an empty ofpbuf that contains the 'allocated' bytes of
47  * memory starting at 'base'.  'base' should be the first byte of a region
48  * obtained from malloc().  It will be freed (with free()) if 'b' is resized or
49  * freed. */
50 static void
51 ofpbuf_use(struct ofpbuf *b, void *base, size_t allocated)
52 {
53     ofpbuf_use__(b, base, allocated, 0, OFPBUF_MALLOC);
54 }
55
56 /* Converts ds into ofpbuf 'b'. 'b' contains the 'ds->allocated' bytes of
57  * memory starting at 'ds->string'.  'ds' should not be modified any more.
58  * The memory allocated for 'ds' will be freed (with free()) if 'b' is
59  * resized or freed. */
60 void
61 ofpbuf_use_ds(struct ofpbuf *b, const struct ds *ds)
62 {
63     ofpbuf_use__(b, ds->string, ds->allocated + 1, ds->length, OFPBUF_MALLOC);
64 }
65
66 /* Initializes 'b' as an empty ofpbuf that contains the 'allocated' bytes of
67  * memory starting at 'base'.  'base' should point to a buffer on the stack.
68  * (Nothing actually relies on 'base' being allocated on the stack.  It could
69  * be static or malloc()'d memory.  But stack space is the most common use
70  * case.)
71  *
72  * 'base' should be appropriately aligned.  Using an array of uint32_t or
73  * uint64_t for the buffer is a reasonable way to ensure appropriate alignment
74  * for 32- or 64-bit data.
75  *
76  * An ofpbuf operation that requires reallocating data will assert-fail if this
77  * function was used to initialize it.  Thus, one need not call ofpbuf_uninit()
78  * on an ofpbuf initialized by this function (though doing so is harmless),
79  * because it is guaranteed that 'b' does not own any heap-allocated memory. */
80 void
81 ofpbuf_use_stack(struct ofpbuf *b, void *base, size_t allocated)
82 {
83     ofpbuf_use__(b, base, allocated, 0, OFPBUF_STACK);
84 }
85
86 /* Initializes 'b' as an empty ofpbuf that contains the 'allocated' bytes of
87  * memory starting at 'base'.  'base' should point to a buffer on the stack.
88  * (Nothing actually relies on 'base' being allocated on the stack.  It could
89  * be static or malloc()'d memory.  But stack space is the most common use
90  * case.)
91  *
92  * 'base' should be appropriately aligned.  Using an array of uint32_t or
93  * uint64_t for the buffer is a reasonable way to ensure appropriate alignment
94  * for 32- or 64-bit data.
95  *
96  * An ofpbuf operation that requires reallocating data will copy the provided
97  * buffer into a malloc()'d buffer.  Thus, it is wise to call ofpbuf_uninit()
98  * on an ofpbuf initialized by this function, so that if it expanded into the
99  * heap, that memory is freed. */
100 void
101 ofpbuf_use_stub(struct ofpbuf *b, void *base, size_t allocated)
102 {
103     ofpbuf_use__(b, base, allocated, 0, OFPBUF_STUB);
104 }
105
106 /* Initializes 'b' as an ofpbuf whose data starts at 'data' and continues for
107  * 'size' bytes.  This is appropriate for an ofpbuf that will be used to
108  * inspect existing data, without moving it around or reallocating it, and
109  * generally without modifying it at all.
110  *
111  * An ofpbuf operation that requires reallocating data will assert-fail if this
112  * function was used to initialize it. */
113 void
114 ofpbuf_use_const(struct ofpbuf *b, const void *data, size_t size)
115 {
116     ofpbuf_use__(b, CONST_CAST(void *, data), size, size, OFPBUF_STACK);
117 }
118
119 /* Initializes 'b' as an empty ofpbuf with an initial capacity of 'size'
120  * bytes. */
121 void
122 ofpbuf_init(struct ofpbuf *b, size_t size)
123 {
124     ofpbuf_use(b, size ? xmalloc(size) : NULL, size);
125 }
126
127 /* Frees memory that 'b' points to. */
128 void
129 ofpbuf_uninit(struct ofpbuf *b)
130 {
131     if (b) {
132         if (b->source == OFPBUF_MALLOC) {
133             free(b->base);
134         }
135     }
136 }
137
138 /* Frees memory that 'b' points to and allocates a new ofpbuf */
139 void
140 ofpbuf_reinit(struct ofpbuf *b, size_t size)
141 {
142     ofpbuf_uninit(b);
143     ofpbuf_init(b, size);
144 }
145
146 /* Creates and returns a new ofpbuf with an initial capacity of 'size'
147  * bytes. */
148 struct ofpbuf *
149 ofpbuf_new(size_t size)
150 {
151     struct ofpbuf *b = xmalloc(sizeof *b);
152     ofpbuf_init(b, size);
153     return b;
154 }
155
156 /* Creates and returns a new ofpbuf with an initial capacity of 'size +
157  * headroom' bytes, reserving the first 'headroom' bytes as headroom. */
158 struct ofpbuf *
159 ofpbuf_new_with_headroom(size_t size, size_t headroom)
160 {
161     struct ofpbuf *b = ofpbuf_new(size + headroom);
162     ofpbuf_reserve(b, headroom);
163     return b;
164 }
165
166 /* Creates and returns a new ofpbuf that initially contains a copy of the
167  * 'buffer->size' bytes of data starting at 'buffer->data' with no headroom or
168  * tailroom. */
169 struct ofpbuf *
170 ofpbuf_clone(const struct ofpbuf *buffer)
171 {
172     return ofpbuf_clone_with_headroom(buffer, 0);
173 }
174
175 /* Creates and returns a new ofpbuf whose data are copied from 'buffer'.   The
176  * returned ofpbuf will additionally have 'headroom' bytes of headroom. */
177 struct ofpbuf *
178 ofpbuf_clone_with_headroom(const struct ofpbuf *buffer, size_t headroom)
179 {
180     struct ofpbuf *new_buffer;
181
182     new_buffer = ofpbuf_clone_data_with_headroom(buffer->data,
183                                                  buffer->size,
184                                                  headroom);
185     if (buffer->header) {
186         ptrdiff_t data_delta = (char *)new_buffer->data - (char *)buffer->data;
187
188         new_buffer->header = (char *) buffer->header + data_delta;
189     }
190     new_buffer->msg = buffer->msg;
191
192     return new_buffer;
193 }
194
195 /* Creates and returns a new ofpbuf that initially contains a copy of the
196  * 'size' bytes of data starting at 'data' with no headroom or tailroom. */
197 struct ofpbuf *
198 ofpbuf_clone_data(const void *data, size_t size)
199 {
200     return ofpbuf_clone_data_with_headroom(data, size, 0);
201 }
202
203 /* Creates and returns a new ofpbuf that initially contains 'headroom' bytes of
204  * headroom followed by a copy of the 'size' bytes of data starting at
205  * 'data'. */
206 struct ofpbuf *
207 ofpbuf_clone_data_with_headroom(const void *data, size_t size, size_t headroom)
208 {
209     struct ofpbuf *b = ofpbuf_new_with_headroom(size, headroom);
210     ofpbuf_put(b, data, size);
211     return b;
212 }
213
214 static void
215 ofpbuf_copy__(struct ofpbuf *b, uint8_t *new_base,
216               size_t new_headroom, size_t new_tailroom)
217 {
218     const uint8_t *old_base = b->base;
219     size_t old_headroom = ofpbuf_headroom(b);
220     size_t old_tailroom = ofpbuf_tailroom(b);
221     size_t copy_headroom = MIN(old_headroom, new_headroom);
222     size_t copy_tailroom = MIN(old_tailroom, new_tailroom);
223
224     memcpy(&new_base[new_headroom - copy_headroom],
225            &old_base[old_headroom - copy_headroom],
226            copy_headroom + b->size + copy_tailroom);
227 }
228
229 /* Reallocates 'b' so that it has exactly 'new_headroom' and 'new_tailroom'
230  * bytes of headroom and tailroom, respectively. */
231 static void
232 ofpbuf_resize__(struct ofpbuf *b, size_t new_headroom, size_t new_tailroom)
233 {
234     void *new_base, *new_data;
235     size_t new_allocated;
236
237     new_allocated = new_headroom + b->size + new_tailroom;
238
239     switch (b->source) {
240     case OFPBUF_MALLOC:
241         if (new_headroom == ofpbuf_headroom(b)) {
242             new_base = xrealloc(b->base, new_allocated);
243         } else {
244             new_base = xmalloc(new_allocated);
245             ofpbuf_copy__(b, new_base, new_headroom, new_tailroom);
246             free(b->base);
247         }
248         break;
249
250     case OFPBUF_STACK:
251         OVS_NOT_REACHED();
252
253     case OFPBUF_STUB:
254         b->source = OFPBUF_MALLOC;
255         new_base = xmalloc(new_allocated);
256         ofpbuf_copy__(b, new_base, new_headroom, new_tailroom);
257         break;
258
259     default:
260         OVS_NOT_REACHED();
261     }
262
263     b->allocated = new_allocated;
264     b->base = new_base;
265
266     new_data = (char *) new_base + new_headroom;
267     if (b->data != new_data) {
268         if (b->header) {
269             ptrdiff_t data_delta = (char *) b->header - (char *) b->data;
270
271             b->header = (char *) new_data + data_delta;
272         }
273         if (b->msg) {
274             ptrdiff_t data_delta = (char *) b->msg - (char *) b->data;
275
276             b->msg = (char *) new_data + data_delta;
277         }
278         b->data = new_data;
279     }
280 }
281
282 /* Ensures that 'b' has room for at least 'size' bytes at its tail end,
283  * reallocating and copying its data if necessary.  Its headroom, if any, is
284  * preserved. */
285 void
286 ofpbuf_prealloc_tailroom(struct ofpbuf *b, size_t size)
287 {
288     if (size > ofpbuf_tailroom(b)) {
289         ofpbuf_resize__(b, ofpbuf_headroom(b), MAX(size, 64));
290     }
291 }
292
293 /* Ensures that 'b' has room for at least 'size' bytes at its head,
294  * reallocating and copying its data if necessary.  Its tailroom, if any, is
295  * preserved. */
296 void
297 ofpbuf_prealloc_headroom(struct ofpbuf *b, size_t size)
298 {
299     if (size > ofpbuf_headroom(b)) {
300         ofpbuf_resize__(b, MAX(size, 64), ofpbuf_tailroom(b));
301     }
302 }
303
304 /* Trims the size of 'b' to fit its actual content, reducing its headroom and
305  * tailroom to 0, if any.
306  *
307  * Buffers not obtained from malloc() are not resized, since that wouldn't save
308  * any memory.
309  *
310  * Caller needs to updates 'b->header' and 'b->msg' so that they point to the
311  * same locations in the data.  (If they pointed into the tailroom or headroom
312  * then they become invalid.)
313  *
314  */
315 void
316 ofpbuf_trim(struct ofpbuf *b)
317 {
318     if (b->source == OFPBUF_MALLOC
319         && (ofpbuf_headroom(b) || ofpbuf_tailroom(b))) {
320         ofpbuf_resize__(b, 0, 0);
321     }
322 }
323
324 /* If 'b' is shorter than 'length' bytes, pads its tail out with zeros to that
325  * length. */
326 void
327 ofpbuf_padto(struct ofpbuf *b, size_t length)
328 {
329     if (b->size < length) {
330         ofpbuf_put_zeros(b, length - b->size);
331     }
332 }
333
334 /* Shifts all of the data within the allocated space in 'b' by 'delta' bytes.
335  * For example, a 'delta' of 1 would cause each byte of data to move one byte
336  * forward (from address 'p' to 'p+1'), and a 'delta' of -1 would cause each
337  * byte to move one byte backward (from 'p' to 'p-1').
338  *
339  * If used, user must make sure the 'header' and 'msg' pointers are updated
340  * after shifting.
341  */
342 void
343 ofpbuf_shift(struct ofpbuf *b, int delta)
344 {
345     ovs_assert(delta > 0 ? delta <= ofpbuf_tailroom(b)
346                : delta < 0 ? -delta <= ofpbuf_headroom(b)
347                : true);
348
349     if (delta != 0) {
350         char *dst = (char *) b->data + delta;
351         memmove(dst, b->data, b->size);
352         b->data = dst;
353     }
354 }
355
356 /* Appends 'size' bytes of data to the tail end of 'b', reallocating and
357  * copying its data if necessary.  Returns a pointer to the first byte of the
358  * new data, which is left uninitialized. */
359 void *
360 ofpbuf_put_uninit(struct ofpbuf *b, size_t size)
361 {
362     void *p;
363     ofpbuf_prealloc_tailroom(b, size);
364     p = ofpbuf_tail(b);
365     b->size += size;
366     return p;
367 }
368
369 /* Appends 'size' zeroed bytes to the tail end of 'b'.  Data in 'b' is
370  * reallocated and copied if necessary.  Returns a pointer to the first byte of
371  * the data's location in the ofpbuf. */
372 void *
373 ofpbuf_put_zeros(struct ofpbuf *b, size_t size)
374 {
375     void *dst = ofpbuf_put_uninit(b, size);
376     memset(dst, 0, size);
377     return dst;
378 }
379
380 /* Appends the 'size' bytes of data in 'p' to the tail end of 'b'.  Data in 'b'
381  * is reallocated and copied if necessary.  Returns a pointer to the first
382  * byte of the data's location in the ofpbuf. */
383 void *
384 ofpbuf_put(struct ofpbuf *b, const void *p, size_t size)
385 {
386     void *dst = ofpbuf_put_uninit(b, size);
387     memcpy(dst, p, size);
388     return dst;
389 }
390
391 /* Parses as many pairs of hex digits as possible (possibly separated by spaces
392  * or periods) from the beginning of 's', appending bytes for their values to
393  * 'b'.  Returns the first character of 's' that is not the first of a pair of
394  * hex digits.  If 'n' is nonnull, stores the number of bytes added to 'b' in
395  * '*n'. */
396 char *
397 ofpbuf_put_hex(struct ofpbuf *b, const char *s, size_t *n)
398 {
399     size_t initial_size = b->size;
400     for (;;) {
401         uint8_t byte;
402         bool ok;
403
404         s += strspn(s, " .\t\r\n");
405         byte = hexits_value(s, 2, &ok);
406         if (!ok) {
407             if (n) {
408                 *n = b->size - initial_size;
409             }
410             return CONST_CAST(char *, s);
411         }
412
413         ofpbuf_put(b, &byte, 1);
414         s += 2;
415     }
416 }
417
418 /* Reserves 'size' bytes of headroom so that they can be later allocated with
419  * ofpbuf_push_uninit() without reallocating the ofpbuf. */
420 void
421 ofpbuf_reserve(struct ofpbuf *b, size_t size)
422 {
423     ovs_assert(!b->size);
424     ofpbuf_prealloc_tailroom(b, size);
425     b->data = (char*)b->data + size;
426 }
427
428 /* Prefixes 'size' bytes to the head end of 'b', reallocating and copying its
429  * data if necessary.  Returns a pointer to the first byte of the data's
430  * location in the ofpbuf.  The new data is left uninitialized. */
431 void *
432 ofpbuf_push_uninit(struct ofpbuf *b, size_t size)
433 {
434     ofpbuf_prealloc_headroom(b, size);
435     b->data = (char*)b->data - size;
436     b->size += size;
437     return b->data;
438 }
439
440 /* Prefixes 'size' zeroed bytes to the head end of 'b', reallocating and
441  * copying its data if necessary.  Returns a pointer to the first byte of the
442  * data's location in the ofpbuf. */
443 void *
444 ofpbuf_push_zeros(struct ofpbuf *b, size_t size)
445 {
446     void *dst = ofpbuf_push_uninit(b, size);
447     memset(dst, 0, size);
448     return dst;
449 }
450
451 /* Copies the 'size' bytes starting at 'p' to the head end of 'b', reallocating
452  * and copying its data if necessary.  Returns a pointer to the first byte of
453  * the data's location in the ofpbuf. */
454 void *
455 ofpbuf_push(struct ofpbuf *b, const void *p, size_t size)
456 {
457     void *dst = ofpbuf_push_uninit(b, size);
458     memcpy(dst, p, size);
459     return dst;
460 }
461
462 /* Returns the data in 'b' as a block of malloc()'d memory and frees the buffer
463  * within 'b'.  (If 'b' itself was dynamically allocated, e.g. with
464  * ofpbuf_new(), then it should still be freed with, e.g., ofpbuf_delete().) */
465 void *
466 ofpbuf_steal_data(struct ofpbuf *b)
467 {
468     void *p;
469
470     if (b->source == OFPBUF_MALLOC && b->data == b->base) {
471         p = b->data;
472     } else {
473         p = xmemdup(b->data, b->size);
474         if (b->source == OFPBUF_MALLOC) {
475             free(b->base);
476         }
477     }
478     b->base = NULL;
479     b->data = NULL;
480     b->header = NULL;
481     b->msg = NULL;
482     return p;
483 }
484
485 /* Returns a string that describes some of 'b''s metadata plus a hex dump of up
486  * to 'maxbytes' from the start of the buffer. */
487 char *
488 ofpbuf_to_string(const struct ofpbuf *b, size_t maxbytes)
489 {
490     struct ds s;
491
492     ds_init(&s);
493     ds_put_format(&s, "size=%"PRIu32", allocated=%"PRIu32", head=%"PRIuSIZE", tail=%"PRIuSIZE"\n",
494                   b->size, b->allocated,
495                   ofpbuf_headroom(b), ofpbuf_tailroom(b));
496     ds_put_hex_dump(&s, b->data, MIN(b->size, maxbytes), 0, false);
497     return ds_cstr(&s);
498 }
499
500 /* Removes each of the "struct ofpbuf"s on 'list' from the list and frees
501  * them.  */
502 void
503 ofpbuf_list_delete(struct ovs_list *list)
504 {
505     struct ofpbuf *b;
506
507     LIST_FOR_EACH_POP (b, list_node, list) {
508         ofpbuf_delete(b);
509     }
510 }