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