blob: 92db0a174bc213312bf0fe556e5c00658de41b1a [file] [log] [blame]
Willy Tarreau41806d12018-07-11 09:39:05 +02001/*
2 * include/common/buf.h
3 * Simple buffer handling.
4 *
5 * Copyright (C) 2000-2018 Willy Tarreau - w@1wt.eu
6 *
7 * Permission is hereby granted, free of charge, to any person obtaining
8 * a copy of this software and associated documentation files (the
9 * "Software"), to deal in the Software without restriction, including
10 * without limitation the rights to use, copy, modify, merge, publish,
11 * distribute, sublicense, and/or sell copies of the Software, and to
12 * permit persons to whom the Software is furnished to do so, subject to
13 * the following conditions:
14 *
15 * The above copyright notice and this permission notice shall be
16 * included in all copies or substantial portions of the Software.
17 *
18 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
19 * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
20 * OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
21 * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
22 * HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
23 * WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
24 * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
25 * OTHER DEALINGS IN THE SOFTWARE.
26 */
27
28#ifndef _COMMON_BUF_H
29#define _COMMON_BUF_H
30
Willy Tarreau506a29a2018-07-18 10:07:58 +020031#include <stdint.h>
32
Willy Tarreau41806d12018-07-11 09:39:05 +020033/* Structure defining a buffer's head */
34struct buffer {
Willy Tarreau506a29a2018-07-18 10:07:58 +020035 size_t size; /* buffer size in bytes */
Willy Tarreauc9fa0482018-07-10 17:43:27 +020036 char *area; /* points to <size> bytes */
37 size_t data; /* amount of data after head including wrapping */
38 size_t head; /* start offset of remaining data relative to area */
Willy Tarreau41806d12018-07-11 09:39:05 +020039};
40
Willy Tarreauc9fa0482018-07-10 17:43:27 +020041/* A buffer may be in 3 different states :
42 * - unallocated : size == 0, area == 0 (b_is_null() is true)
43 * - waiting : size == 0, area != 0
44 * - allocated : size > 0, area > 0
45 */
46
47/* initializers for certain buffer states. It is important that the NULL buffer
48 * remains the one with all fields initialized to zero so that a calloc() or a
49 * memset() on a struct automatically sets a NULL buffer.
50 */
51#define BUF_NULL ((struct buffer){ })
52#define BUF_WANTED ((struct buffer){ .area = (char *)1 })
53
Willy Tarreaubbc68df2018-06-06 14:30:50 +020054
55/***************************************************************************/
56/* Functions used to compute offsets and pointers. Most of them exist in */
57/* both wrapping-safe and unchecked ("__" prefix) variants. Some returning */
58/* a pointer are also provided with an "_ofs" suffix when they return an */
59/* offset relative to the storage area. */
60/***************************************************************************/
61
Willy Tarreauc9fa0482018-07-10 17:43:27 +020062/* b_is_null() : returns true if (and only if) the buffer is not yet allocated
63 * and thus points to a NULL area.
64 */
65static inline int b_is_null(const struct buffer *buf)
66{
67 return buf->area == NULL;
68}
69
Willy Tarreaubbc68df2018-06-06 14:30:50 +020070/* b_orig() : returns the pointer to the origin of the storage, which is the
71 * location of byte at offset zero. This is mostly used by functions which
72 * handle the wrapping by themselves.
73 */
74static inline char *b_orig(const struct buffer *b)
75{
Willy Tarreauc9fa0482018-07-10 17:43:27 +020076 return b->area;
Willy Tarreaubbc68df2018-06-06 14:30:50 +020077}
78
79/* b_size() : returns the size of the buffer. */
80static inline size_t b_size(const struct buffer *b)
81{
82 return b->size;
83}
84
85/* b_wrap() : returns the pointer to the wrapping position of the buffer area,
86 * which is by definition the first byte not part of the buffer.
87 */
88static inline char *b_wrap(const struct buffer *b)
89{
Willy Tarreauc9fa0482018-07-10 17:43:27 +020090 return b->area + b->size;
Willy Tarreaubbc68df2018-06-06 14:30:50 +020091}
92
93/* b_data() : returns the number of bytes present in the buffer. */
94static inline size_t b_data(const struct buffer *b)
95{
Willy Tarreaubd1dba82018-07-10 10:43:27 +020096 return b->data;
Willy Tarreaubbc68df2018-06-06 14:30:50 +020097}
98
99/* b_room() : returns the amount of room left in the buffer */
100static inline size_t b_room(const struct buffer *b)
101{
102 return b->size - b_data(b);
103}
104
105/* b_full() : returns true if the buffer is full. */
106static inline size_t b_full(const struct buffer *b)
107{
108 return !b_room(b);
109}
110
111
112/* b_stop() : returns the pointer to the byte following the end of the buffer,
113 * which may be out of the buffer if the buffer ends on the last byte of the
114 * area.
115 */
116static inline size_t __b_stop_ofs(const struct buffer *b)
117{
Willy Tarreaubd1dba82018-07-10 10:43:27 +0200118 return b->head + b->data;
Willy Tarreaubbc68df2018-06-06 14:30:50 +0200119}
120
121static inline const char *__b_stop(const struct buffer *b)
122{
Willy Tarreaud54a8ce2018-06-29 18:42:02 +0200123 return b_orig(b) + __b_stop_ofs(b);
Willy Tarreaubbc68df2018-06-06 14:30:50 +0200124}
125
126static inline size_t b_stop_ofs(const struct buffer *b)
127{
128 size_t stop = __b_stop_ofs(b);
129
130 if (stop > b->size)
131 stop -= b->size;
132 return stop;
133}
134
135static inline const char *b_stop(const struct buffer *b)
136{
Willy Tarreaud54a8ce2018-06-29 18:42:02 +0200137 return b_orig(b) + b_stop_ofs(b);
Willy Tarreaubbc68df2018-06-06 14:30:50 +0200138}
139
140
141/* b_peek() : returns a pointer to the data at position <ofs> relative to the
142 * head of the buffer. Will typically point to input data if called with the
143 * amount of output data. The wrapped versions will only support wrapping once
144 * before the beginning or after the end.
145 */
146static inline size_t __b_peek_ofs(const struct buffer *b, size_t ofs)
147{
Willy Tarreaud54a8ce2018-06-29 18:42:02 +0200148 return b->head + ofs;
Willy Tarreaubbc68df2018-06-06 14:30:50 +0200149}
150
151static inline char *__b_peek(const struct buffer *b, size_t ofs)
152{
Willy Tarreaud54a8ce2018-06-29 18:42:02 +0200153 return b_orig(b) + __b_peek_ofs(b, ofs);
Willy Tarreaubbc68df2018-06-06 14:30:50 +0200154}
155
156static inline size_t b_peek_ofs(const struct buffer *b, size_t ofs)
157{
158 size_t ret = __b_peek_ofs(b, ofs);
159
Willy Tarreaud54a8ce2018-06-29 18:42:02 +0200160 if (ret >= b->size)
161 ret -= b->size;
Willy Tarreaubbc68df2018-06-06 14:30:50 +0200162
163 return ret;
164}
165
166static inline char *b_peek(const struct buffer *b, size_t ofs)
167{
Willy Tarreaud54a8ce2018-06-29 18:42:02 +0200168 return b_orig(b) + b_peek_ofs(b, ofs);
Willy Tarreaubbc68df2018-06-06 14:30:50 +0200169}
170
171
172/* b_head() : returns the pointer to the buffer's head, which is the location
173 * of the next byte to be dequeued. Note that for buffers of size zero, the
174 * returned pointer may be outside of the buffer or even invalid.
175 */
176static inline size_t __b_head_ofs(const struct buffer *b)
177{
Willy Tarreaud54a8ce2018-06-29 18:42:02 +0200178 return b->head;
Willy Tarreaubbc68df2018-06-06 14:30:50 +0200179}
180
181static inline char *__b_head(const struct buffer *b)
182{
Willy Tarreaud54a8ce2018-06-29 18:42:02 +0200183 return b_orig(b) + __b_head_ofs(b);
Willy Tarreaubbc68df2018-06-06 14:30:50 +0200184}
185
186static inline size_t b_head_ofs(const struct buffer *b)
187{
Willy Tarreaud54a8ce2018-06-29 18:42:02 +0200188 return __b_head_ofs(b);
Willy Tarreaubbc68df2018-06-06 14:30:50 +0200189}
190
191static inline char *b_head(const struct buffer *b)
192{
Willy Tarreaud54a8ce2018-06-29 18:42:02 +0200193 return __b_head(b);
Willy Tarreaubbc68df2018-06-06 14:30:50 +0200194}
195
196
197/* b_tail() : returns the pointer to the tail of the buffer, which is the
198 * location of the first byte where it is possible to enqueue new data. Note
199 * that for buffers of size zero, the returned pointer may be outside of the
200 * buffer or even invalid.
201 */
202static inline size_t __b_tail_ofs(const struct buffer *b)
203{
204 return __b_peek_ofs(b, b_data(b));
205}
206
207static inline char *__b_tail(const struct buffer *b)
208{
209 return __b_peek(b, b_data(b));
210}
211
212static inline size_t b_tail_ofs(const struct buffer *b)
213{
214 return b_peek_ofs(b, b_data(b));
215}
216
217static inline char *b_tail(const struct buffer *b)
218{
219 return b_peek(b, b_data(b));
220}
221
222
223/* b_next() : for an absolute pointer <p> or a relative offset <o> pointing to
224 * a valid location within buffer <b>, returns either the absolute pointer or
225 * the relative offset pointing to the next byte, which usually is at (p + 1)
226 * unless p reaches the wrapping point and wrapping is needed.
227 */
228static inline size_t b_next_ofs(const struct buffer *b, size_t o)
229{
230 o++;
231 if (o == b->size)
232 o = 0;
233 return o;
234}
235
236static inline char *b_next(const struct buffer *b, const char *p)
237{
238 p++;
239 if (p == b_wrap(b))
240 p = b_orig(b);
241 return (char *)p;
242}
243
244/* b_dist() : returns the distance between two pointers, taking into account
245 * the ability to wrap around the buffer's end. The operation is not defined if
246 * either of the pointers does not belong to the buffer or if their distance is
247 * greater than the buffer's size.
248 */
249static inline size_t b_dist(const struct buffer *b, const char *from, const char *to)
250{
251 ssize_t dist = to - from;
252
253 dist += dist < 0 ? b_size(b) : 0;
254 return dist;
255}
256
257/* b_almost_full() : returns 1 if the buffer uses at least 3/4 of its capacity,
258 * otherwise zero. Buffers of size zero are considered full.
259 */
260static inline int b_almost_full(const struct buffer *b)
261{
262 return b_data(b) >= b_size(b) * 3 / 4;
263}
264
265/* b_space_wraps() : returns non-zero only if the buffer's free space wraps :
Willy Tarreaud54a8ce2018-06-29 18:42:02 +0200266 * [ |xxxx| ] => yes
267 * [xxxx| ] => no
268 * [ |xxxx] => no
269 * [xxxx| |xxxx] => no
270 * [xxxxxxxxxx|xxxxxxxxxxx] => no
Willy Tarreaubbc68df2018-06-06 14:30:50 +0200271 *
272 * So the only case where the buffer does not wrap is when there's data either
273 * at the beginning or at the end of the buffer. Thus we have this :
274 * - if (head <= 0) ==> doesn't wrap
275 * - if (tail >= size) ==> doesn't wrap
276 * - otherwise wraps
277 */
278static inline int b_space_wraps(const struct buffer *b)
279{
280 if ((ssize_t)__b_head_ofs(b) <= 0)
281 return 0;
282 if (__b_tail_ofs(b) >= b_size(b))
283 return 0;
284 return 1;
285}
286
Willy Tarreau7194d3c2018-06-06 16:55:45 +0200287/* b_contig_data() : returns the amount of data that can contiguously be read
288 * at once starting from a relative offset <start> (which allows to easily
289 * pre-compute blocks for memcpy). The start point will typically contain the
290 * amount of past data already returned by a previous call to this function.
291 */
292static inline size_t b_contig_data(const struct buffer *b, size_t start)
293{
294 size_t data = b_wrap(b) - b_peek(b, start);
295 size_t limit = b_data(b) - start;
296
297 if (data > limit)
298 data = limit;
299 return data;
300}
301
Willy Tarreaue4d5a032018-06-07 18:58:07 +0200302/* b_contig_space() : returns the amount of bytes that can be appended to the
303 * buffer at once.
304 */
305static inline size_t b_contig_space(const struct buffer *b)
306{
307 const char *left, *right;
308
309 right = b_head(b);
310 left = right + b_data(b);
311
312 if (left >= b_wrap(b))
313 left -= b_size(b);
314 else
315 right = b_wrap(b);
316
317 return right - left;
318}
319
Willy Tarreau90ed3832018-06-15 14:20:26 +0200320/* b_getblk() : gets one full block of data at once from a buffer, starting
321 * from offset <offset> after the buffer's head, and limited to no more than
322 * <len> bytes. The caller is responsible for ensuring that neither <offset>
323 * nor <offset>+<len> exceed the total number of bytes available in the buffer.
324 * Return values :
325 * >0 : number of bytes read, equal to requested size.
326 * =0 : not enough data available. <blk> is left undefined.
327 * The buffer is left unaffected.
328 */
329static inline size_t b_getblk(const struct buffer *buf, char *blk, size_t len, size_t offset)
330{
331 size_t firstblock;
332
333 if (len + offset > b_data(buf))
334 return 0;
335
336 firstblock = b_wrap(buf) - b_head(buf);
337 if (firstblock > offset) {
338 if (firstblock >= len + offset) {
339 memcpy(blk, b_head(buf) + offset, len);
340 return len;
341 }
342
343 memcpy(blk, b_head(buf) + offset, firstblock - offset);
344 memcpy(blk + firstblock - offset, b_orig(buf), len - firstblock + offset);
345 return len;
346 }
347
348 memcpy(blk, b_orig(buf) + offset - firstblock, len);
349 return len;
350}
351
Willy Tarreaua1f78fb2018-06-14 14:38:11 +0200352/* b_getblk_nc() : gets one or two blocks of data at once from a buffer,
353 * starting from offset <ofs> after the beginning of its output, and limited to
354 * no more than <max> bytes. The caller is responsible for ensuring that
355 * neither <ofs> nor <ofs>+<max> exceed the total number of bytes available in
356 * the buffer. Return values :
357 * >0 : number of blocks filled (1 or 2). blk1 is always filled before blk2.
358 * =0 : not enough data available. <blk*> are left undefined.
359 * The buffer is left unaffected. Unused buffers are left in an undefined state.
360 */
Willy Tarreau55f3ce12018-07-18 11:49:27 +0200361static inline size_t b_getblk_nc(const struct buffer *buf, const char **blk1, size_t *len1, const char **blk2, size_t *len2, size_t ofs, size_t max)
Willy Tarreaua1f78fb2018-06-14 14:38:11 +0200362{
363 size_t l1;
364
365 if (!max)
366 return 0;
367
368 *blk1 = b_peek(buf, ofs);
369 l1 = b_wrap(buf) - *blk1;
370 if (l1 < max) {
371 *len1 = l1;
372 *len2 = max - l1;
Willy Tarreau591d4452018-06-15 17:21:00 +0200373 *blk2 = b_orig(buf);
Willy Tarreaua1f78fb2018-06-14 14:38:11 +0200374 return 2;
375 }
376 *len1 = max;
377 return 1;
378}
379
Willy Tarreaubbc68df2018-06-06 14:30:50 +0200380
381/*********************************************/
382/* Functions used to modify the buffer state */
383/*********************************************/
384
385/* b_reset() : resets a buffer. The size is not touched. */
386static inline void b_reset(struct buffer *b)
387{
Willy Tarreaud54a8ce2018-06-29 18:42:02 +0200388 b->head = 0;
Willy Tarreaubd1dba82018-07-10 10:43:27 +0200389 b->data = 0;
Willy Tarreaubbc68df2018-06-06 14:30:50 +0200390}
Willy Tarreau41806d12018-07-11 09:39:05 +0200391
Olivier Houchard09138ec2018-06-28 19:17:38 +0200392/* b_sub() : decreases the buffer length by <count> */
393static inline void b_sub(struct buffer *b, size_t count)
394{
Willy Tarreaubd1dba82018-07-10 10:43:27 +0200395 b->data -= count;
Olivier Houchard09138ec2018-06-28 19:17:38 +0200396}
397
398/* b_add() : increase the buffer length by <count> */
399static inline void b_add(struct buffer *b, size_t count)
400{
Willy Tarreaubd1dba82018-07-10 10:43:27 +0200401 b->data += count;
Olivier Houchard09138ec2018-06-28 19:17:38 +0200402}
403
Olivier Houcharda04e40d2018-06-28 19:10:25 +0200404/* b_set_data() : sets the buffer's length */
405static inline void b_set_data(struct buffer *b, size_t len)
406{
Willy Tarreaubd1dba82018-07-10 10:43:27 +0200407 b->data = len;
Olivier Houcharda04e40d2018-06-28 19:10:25 +0200408}
409
Willy Tarreaue5f12ce2018-06-15 10:28:05 +0200410/* b_del() : skips <del> bytes in a buffer <b>. Covers both the output and the
411 * input parts so it's up to the caller to know where it plays and that <del>
412 * is always smaller than the amount of data in the buffer.
413 */
414static inline void b_del(struct buffer *b, size_t del)
415{
Willy Tarreaubd1dba82018-07-10 10:43:27 +0200416 b->data -= del;
Willy Tarreaud54a8ce2018-06-29 18:42:02 +0200417 b->head += del;
418 if (b->head >= b->size)
419 b->head -= b->size;
Willy Tarreaue5f12ce2018-06-15 10:28:05 +0200420}
421
Willy Tarreauf17f19f2018-06-15 17:50:15 +0200422/* b_realign_if_empty() : realigns a buffer if it's empty */
423static inline void b_realign_if_empty(struct buffer *b)
424{
425 if (!b_data(b))
Willy Tarreaud54a8ce2018-06-29 18:42:02 +0200426 b->head = 0;
Willy Tarreauf17f19f2018-06-15 17:50:15 +0200427}
428
Willy Tarreau4cf13002018-06-06 06:53:15 +0200429/* b_slow_realign() : this function realigns a possibly wrapping buffer so that
430 * the part remaining to be parsed is contiguous and starts at the beginning of
431 * the buffer and the already parsed output part ends at the end of the buffer.
432 * This provides the best conditions since it allows the largest inputs to be
433 * processed at once and ensures that once the output data leaves, the whole
434 * buffer is available at once. The number of output bytes supposedly present
435 * at the beginning of the buffer and which need to be moved to the end must be
436 * passed in <output>. A temporary swap area at least as large as b->size must
437 * be provided in <swap>. It's up to the caller to ensure <output> is no larger
438 * than the difference between the whole buffer's length and its input.
439 */
440static inline void b_slow_realign(struct buffer *b, char *swap, size_t output)
441{
442 size_t block1 = output;
443 size_t block2 = 0;
444
445 /* process output data in two steps to cover wrapping */
446 if (block1 > b_size(b) - b_head_ofs(b)) {
447 block2 = b_size(b) - b_head_ofs(b);
448 block1 -= block2;
449 }
450 memcpy(swap + b_size(b) - output, b_head(b), block1);
451 memcpy(swap + b_size(b) - block2, b_orig(b), block2);
452
453 /* process input data in two steps to cover wrapping */
454 block1 = b_data(b) - output;
455 block2 = 0;
456
457 if (block1 > b_tail_ofs(b)) {
458 block2 = b_tail_ofs(b);
459 block1 = block1 - block2;
460 }
461 memcpy(swap, b_peek(b, output), block1);
462 memcpy(swap + block1, b_orig(b), block2);
463
464 /* reinject changes into the buffer */
465 memcpy(b_orig(b), swap, b_data(b) - output);
466 memcpy(b_wrap(b) - output, swap + b_size(b) - output, output);
467
Willy Tarreaud54a8ce2018-06-29 18:42:02 +0200468 b->head = b_size(b) - output;
Willy Tarreau4cf13002018-06-06 06:53:15 +0200469}
Willy Tarreau41806d12018-07-11 09:39:05 +0200470
Willy Tarreau55372f62018-07-10 10:04:02 +0200471/* b_putchar() : tries to append char <c> at the end of buffer <b>. Supports
472 * wrapping. Data are truncated if buffer is full.
473 */
474static inline void b_putchr(struct buffer *b, char c)
475{
476 if (b_full(b))
477 return;
478 *b_tail(b) = c;
Willy Tarreaubd1dba82018-07-10 10:43:27 +0200479 b->data++;
Willy Tarreau55372f62018-07-10 10:04:02 +0200480}
481
482/* b_putblk() : tries to append block <blk> at the end of buffer <b>. Supports
483 * wrapping. Data are truncated if buffer is too short. It returns the number
484 * of bytes copied.
485 */
486static inline size_t b_putblk(struct buffer *b, const char *blk, size_t len)
487{
488 size_t half;
489
490 if (len > b_room(b))
491 len = b_room(b);
492 if (!len)
493 return 0;
494
495 half = b_contig_space(b);
496 if (half > len)
497 half = len;
498
499 memcpy(b_tail(b), blk, half);
Willy Tarreaubd1dba82018-07-10 10:43:27 +0200500 b->data += half;
Willy Tarreau55372f62018-07-10 10:04:02 +0200501 if (len > half) {
502 memcpy(b_tail(b), blk + half, len - half);
Willy Tarreaubd1dba82018-07-10 10:43:27 +0200503 b->data += len - half;
Willy Tarreau55372f62018-07-10 10:04:02 +0200504 }
505 return len;
506}
507
Willy Tarreaue3128022018-07-12 15:55:34 +0200508/* b_rep_blk() : writes the block <blk> at position <pos> which must be in
509 * buffer <b>, and moves the part between <end> and the buffer's tail just
510 * after the end of the copy of <blk>. This effectively replaces the part
511 * located between <pos> and <end> with a copy of <blk> of length <len>. The
512 * buffer's length is automatically updated. This is used to replace a block
513 * with another one inside a buffer. The shift value (positive or negative) is
514 * returned. If there's no space left, the move is not done. If <len> is null,
515 * the <blk> pointer is allowed to be null, in order to erase a block.
516 */
517static inline int b_rep_blk(struct buffer *b, char *pos, char *end, const char *blk, size_t len)
518{
519 int delta;
520
521 delta = len - (end - pos);
522
523 if (b_tail(b) + delta > b_wrap(b))
524 return 0; /* no space left */
525
526 if (b_data(b) &&
527 b_tail(b) + delta > b_head(b) &&
528 b_head(b) >= b_tail(b))
529 return 0; /* no space left before wrapping data */
530
531 /* first, protect the end of the buffer */
532 memmove(end + delta, end, b_tail(b) - end);
533
534 /* now, copy blk over pos */
535 if (len)
536 memcpy(pos, blk, len);
537
538 b_add(b, delta);
539 b_realign_if_empty(b);
540
541 return delta;
542}
543
Willy Tarreau55372f62018-07-10 10:04:02 +0200544
Willy Tarreau41806d12018-07-11 09:39:05 +0200545#endif /* _COMMON_BUF_H */
546
547/*
548 * Local variables:
549 * c-indent-level: 8
550 * c-basic-offset: 8
551 * End:
552 */