blob: f9a6f72ff02e0f6e44ca4223dac49a581e18cb38 [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 Tarreaua1bd1fa2019-03-29 17:26:33 +010031#include <inttypes.h>
Willy Tarreau35b51c62018-09-10 15:38:55 +020032#include <string.h>
Willy Tarreaua7280a12018-11-26 19:41:40 +010033#include <unistd.h>
Willy Tarreau506a29a2018-07-18 10:07:58 +020034
Willy Tarreau41806d12018-07-11 09:39:05 +020035/* Structure defining a buffer's head */
36struct buffer {
Willy Tarreau506a29a2018-07-18 10:07:58 +020037 size_t size; /* buffer size in bytes */
Willy Tarreauc9fa0482018-07-10 17:43:27 +020038 char *area; /* points to <size> bytes */
39 size_t data; /* amount of data after head including wrapping */
40 size_t head; /* start offset of remaining data relative to area */
Willy Tarreau41806d12018-07-11 09:39:05 +020041};
42
Willy Tarreauc9fa0482018-07-10 17:43:27 +020043/* A buffer may be in 3 different states :
44 * - unallocated : size == 0, area == 0 (b_is_null() is true)
Olivier Houchard203d7352019-01-29 19:10:02 +010045 * - waiting : size == 0, area != 0 (b_is_null() is true)
46 * - allocated : size > 0, area > 0 (b_is_null() is false)
Willy Tarreauc9fa0482018-07-10 17:43:27 +020047 */
48
49/* initializers for certain buffer states. It is important that the NULL buffer
50 * remains the one with all fields initialized to zero so that a calloc() or a
51 * memset() on a struct automatically sets a NULL buffer.
52 */
53#define BUF_NULL ((struct buffer){ })
54#define BUF_WANTED ((struct buffer){ .area = (char *)1 })
55
Willy Tarreaubbc68df2018-06-06 14:30:50 +020056
57/***************************************************************************/
58/* Functions used to compute offsets and pointers. Most of them exist in */
59/* both wrapping-safe and unchecked ("__" prefix) variants. Some returning */
60/* a pointer are also provided with an "_ofs" suffix when they return an */
61/* offset relative to the storage area. */
62/***************************************************************************/
63
Willy Tarreauc9fa0482018-07-10 17:43:27 +020064/* b_is_null() : returns true if (and only if) the buffer is not yet allocated
Olivier Houchard203d7352019-01-29 19:10:02 +010065 * and thus has an empty size. Its pointer may then be anything, including NULL
66 * (unallocated) or an invalid pointer such as (char*)1 (allocation pending).
Willy Tarreauc9fa0482018-07-10 17:43:27 +020067 */
68static inline int b_is_null(const struct buffer *buf)
69{
Olivier Houchard203d7352019-01-29 19:10:02 +010070 return buf->size == 0;
Willy Tarreauc9fa0482018-07-10 17:43:27 +020071}
72
Willy Tarreaubbc68df2018-06-06 14:30:50 +020073/* b_orig() : returns the pointer to the origin of the storage, which is the
74 * location of byte at offset zero. This is mostly used by functions which
75 * handle the wrapping by themselves.
76 */
77static inline char *b_orig(const struct buffer *b)
78{
Willy Tarreauc9fa0482018-07-10 17:43:27 +020079 return b->area;
Willy Tarreaubbc68df2018-06-06 14:30:50 +020080}
81
82/* b_size() : returns the size of the buffer. */
83static inline size_t b_size(const struct buffer *b)
84{
85 return b->size;
86}
87
88/* b_wrap() : returns the pointer to the wrapping position of the buffer area,
89 * which is by definition the first byte not part of the buffer.
90 */
91static inline char *b_wrap(const struct buffer *b)
92{
Willy Tarreauc9fa0482018-07-10 17:43:27 +020093 return b->area + b->size;
Willy Tarreaubbc68df2018-06-06 14:30:50 +020094}
95
96/* b_data() : returns the number of bytes present in the buffer. */
97static inline size_t b_data(const struct buffer *b)
98{
Willy Tarreaubd1dba82018-07-10 10:43:27 +020099 return b->data;
Willy Tarreaubbc68df2018-06-06 14:30:50 +0200100}
101
102/* b_room() : returns the amount of room left in the buffer */
103static inline size_t b_room(const struct buffer *b)
104{
105 return b->size - b_data(b);
106}
107
108/* b_full() : returns true if the buffer is full. */
109static inline size_t b_full(const struct buffer *b)
110{
111 return !b_room(b);
112}
113
114
115/* b_stop() : returns the pointer to the byte following the end of the buffer,
116 * which may be out of the buffer if the buffer ends on the last byte of the
117 * area.
118 */
119static inline size_t __b_stop_ofs(const struct buffer *b)
120{
Willy Tarreaubd1dba82018-07-10 10:43:27 +0200121 return b->head + b->data;
Willy Tarreaubbc68df2018-06-06 14:30:50 +0200122}
123
124static inline const char *__b_stop(const struct buffer *b)
125{
Willy Tarreaud54a8ce2018-06-29 18:42:02 +0200126 return b_orig(b) + __b_stop_ofs(b);
Willy Tarreaubbc68df2018-06-06 14:30:50 +0200127}
128
129static inline size_t b_stop_ofs(const struct buffer *b)
130{
131 size_t stop = __b_stop_ofs(b);
132
133 if (stop > b->size)
134 stop -= b->size;
135 return stop;
136}
137
138static inline const char *b_stop(const struct buffer *b)
139{
Willy Tarreaud54a8ce2018-06-29 18:42:02 +0200140 return b_orig(b) + b_stop_ofs(b);
Willy Tarreaubbc68df2018-06-06 14:30:50 +0200141}
142
143
144/* b_peek() : returns a pointer to the data at position <ofs> relative to the
145 * head of the buffer. Will typically point to input data if called with the
146 * amount of output data. The wrapped versions will only support wrapping once
147 * before the beginning or after the end.
148 */
149static inline size_t __b_peek_ofs(const struct buffer *b, size_t ofs)
150{
Willy Tarreaud54a8ce2018-06-29 18:42:02 +0200151 return b->head + ofs;
Willy Tarreaubbc68df2018-06-06 14:30:50 +0200152}
153
154static inline char *__b_peek(const struct buffer *b, size_t ofs)
155{
Willy Tarreaud54a8ce2018-06-29 18:42:02 +0200156 return b_orig(b) + __b_peek_ofs(b, ofs);
Willy Tarreaubbc68df2018-06-06 14:30:50 +0200157}
158
159static inline size_t b_peek_ofs(const struct buffer *b, size_t ofs)
160{
161 size_t ret = __b_peek_ofs(b, ofs);
162
Willy Tarreaud54a8ce2018-06-29 18:42:02 +0200163 if (ret >= b->size)
164 ret -= b->size;
Willy Tarreaubbc68df2018-06-06 14:30:50 +0200165
166 return ret;
167}
168
169static inline char *b_peek(const struct buffer *b, size_t ofs)
170{
Willy Tarreaud54a8ce2018-06-29 18:42:02 +0200171 return b_orig(b) + b_peek_ofs(b, ofs);
Willy Tarreaubbc68df2018-06-06 14:30:50 +0200172}
173
174
175/* b_head() : returns the pointer to the buffer's head, which is the location
176 * of the next byte to be dequeued. Note that for buffers of size zero, the
177 * returned pointer may be outside of the buffer or even invalid.
178 */
179static inline size_t __b_head_ofs(const struct buffer *b)
180{
Willy Tarreaud54a8ce2018-06-29 18:42:02 +0200181 return b->head;
Willy Tarreaubbc68df2018-06-06 14:30:50 +0200182}
183
184static inline char *__b_head(const struct buffer *b)
185{
Willy Tarreaud54a8ce2018-06-29 18:42:02 +0200186 return b_orig(b) + __b_head_ofs(b);
Willy Tarreaubbc68df2018-06-06 14:30:50 +0200187}
188
189static inline size_t b_head_ofs(const struct buffer *b)
190{
Willy Tarreaud54a8ce2018-06-29 18:42:02 +0200191 return __b_head_ofs(b);
Willy Tarreaubbc68df2018-06-06 14:30:50 +0200192}
193
194static inline char *b_head(const struct buffer *b)
195{
Willy Tarreaud54a8ce2018-06-29 18:42:02 +0200196 return __b_head(b);
Willy Tarreaubbc68df2018-06-06 14:30:50 +0200197}
198
199
200/* b_tail() : returns the pointer to the tail of the buffer, which is the
201 * location of the first byte where it is possible to enqueue new data. Note
202 * that for buffers of size zero, the returned pointer may be outside of the
203 * buffer or even invalid.
204 */
205static inline size_t __b_tail_ofs(const struct buffer *b)
206{
207 return __b_peek_ofs(b, b_data(b));
208}
209
210static inline char *__b_tail(const struct buffer *b)
211{
212 return __b_peek(b, b_data(b));
213}
214
215static inline size_t b_tail_ofs(const struct buffer *b)
216{
217 return b_peek_ofs(b, b_data(b));
218}
219
220static inline char *b_tail(const struct buffer *b)
221{
222 return b_peek(b, b_data(b));
223}
224
225
226/* b_next() : for an absolute pointer <p> or a relative offset <o> pointing to
227 * a valid location within buffer <b>, returns either the absolute pointer or
228 * the relative offset pointing to the next byte, which usually is at (p + 1)
229 * unless p reaches the wrapping point and wrapping is needed.
230 */
231static inline size_t b_next_ofs(const struct buffer *b, size_t o)
232{
233 o++;
234 if (o == b->size)
235 o = 0;
236 return o;
237}
238
239static inline char *b_next(const struct buffer *b, const char *p)
240{
241 p++;
242 if (p == b_wrap(b))
243 p = b_orig(b);
244 return (char *)p;
245}
246
247/* b_dist() : returns the distance between two pointers, taking into account
248 * the ability to wrap around the buffer's end. The operation is not defined if
249 * either of the pointers does not belong to the buffer or if their distance is
250 * greater than the buffer's size.
251 */
252static inline size_t b_dist(const struct buffer *b, const char *from, const char *to)
253{
254 ssize_t dist = to - from;
255
256 dist += dist < 0 ? b_size(b) : 0;
257 return dist;
258}
259
260/* b_almost_full() : returns 1 if the buffer uses at least 3/4 of its capacity,
261 * otherwise zero. Buffers of size zero are considered full.
262 */
263static inline int b_almost_full(const struct buffer *b)
264{
265 return b_data(b) >= b_size(b) * 3 / 4;
266}
267
268/* b_space_wraps() : returns non-zero only if the buffer's free space wraps :
Willy Tarreaud54a8ce2018-06-29 18:42:02 +0200269 * [ |xxxx| ] => yes
270 * [xxxx| ] => no
271 * [ |xxxx] => no
272 * [xxxx| |xxxx] => no
273 * [xxxxxxxxxx|xxxxxxxxxxx] => no
Willy Tarreaubbc68df2018-06-06 14:30:50 +0200274 *
275 * So the only case where the buffer does not wrap is when there's data either
276 * at the beginning or at the end of the buffer. Thus we have this :
277 * - if (head <= 0) ==> doesn't wrap
278 * - if (tail >= size) ==> doesn't wrap
279 * - otherwise wraps
280 */
281static inline int b_space_wraps(const struct buffer *b)
282{
283 if ((ssize_t)__b_head_ofs(b) <= 0)
284 return 0;
285 if (__b_tail_ofs(b) >= b_size(b))
286 return 0;
287 return 1;
288}
289
Willy Tarreau7194d3c2018-06-06 16:55:45 +0200290/* b_contig_data() : returns the amount of data that can contiguously be read
291 * at once starting from a relative offset <start> (which allows to easily
292 * pre-compute blocks for memcpy). The start point will typically contain the
293 * amount of past data already returned by a previous call to this function.
294 */
295static inline size_t b_contig_data(const struct buffer *b, size_t start)
296{
297 size_t data = b_wrap(b) - b_peek(b, start);
298 size_t limit = b_data(b) - start;
299
300 if (data > limit)
301 data = limit;
302 return data;
303}
304
Willy Tarreaue4d5a032018-06-07 18:58:07 +0200305/* b_contig_space() : returns the amount of bytes that can be appended to the
Willy Tarreauab322d42018-07-20 16:07:42 +0200306 * buffer at once. We have 8 possible cases :
307 *
308 * [____________________] return size
309 * [______|_____________] return size - tail_ofs
310 * [XXXXXX|_____________] return size - tail_ofs
311 * [___|XXXXXX|_________] return size - tail_ofs
312 * [______________XXXXXX] return head_ofs
313 * [XXXX|___________|XXX] return head_ofs - tail_ofs
314 * [XXXXXXXXXX|XXXXXXXXX] return 0
315 * [XXXXXXXXXXXXXXXXXXXX] return 0
Willy Tarreaue4d5a032018-06-07 18:58:07 +0200316 */
317static inline size_t b_contig_space(const struct buffer *b)
318{
Willy Tarreauab322d42018-07-20 16:07:42 +0200319 size_t left, right;
Willy Tarreaue4d5a032018-06-07 18:58:07 +0200320
Willy Tarreauab322d42018-07-20 16:07:42 +0200321 right = b_head_ofs(b);
Willy Tarreaue4d5a032018-06-07 18:58:07 +0200322 left = right + b_data(b);
323
Willy Tarreauab322d42018-07-20 16:07:42 +0200324 left = b_size(b) - left;
325 if ((ssize_t)left <= 0)
326 left += right;
327 return left;
Willy Tarreaue4d5a032018-06-07 18:58:07 +0200328}
329
Willy Tarreau90ed3832018-06-15 14:20:26 +0200330/* b_getblk() : gets one full block of data at once from a buffer, starting
331 * from offset <offset> after the buffer's head, and limited to no more than
332 * <len> bytes. The caller is responsible for ensuring that neither <offset>
333 * nor <offset>+<len> exceed the total number of bytes available in the buffer.
334 * Return values :
335 * >0 : number of bytes read, equal to requested size.
336 * =0 : not enough data available. <blk> is left undefined.
337 * The buffer is left unaffected.
338 */
339static inline size_t b_getblk(const struct buffer *buf, char *blk, size_t len, size_t offset)
340{
341 size_t firstblock;
342
343 if (len + offset > b_data(buf))
344 return 0;
345
346 firstblock = b_wrap(buf) - b_head(buf);
347 if (firstblock > offset) {
348 if (firstblock >= len + offset) {
349 memcpy(blk, b_head(buf) + offset, len);
350 return len;
351 }
352
353 memcpy(blk, b_head(buf) + offset, firstblock - offset);
354 memcpy(blk + firstblock - offset, b_orig(buf), len - firstblock + offset);
355 return len;
356 }
357
358 memcpy(blk, b_orig(buf) + offset - firstblock, len);
359 return len;
360}
361
Willy Tarreaua1f78fb2018-06-14 14:38:11 +0200362/* b_getblk_nc() : gets one or two blocks of data at once from a buffer,
363 * starting from offset <ofs> after the beginning of its output, and limited to
364 * no more than <max> bytes. The caller is responsible for ensuring that
365 * neither <ofs> nor <ofs>+<max> exceed the total number of bytes available in
366 * the buffer. Return values :
367 * >0 : number of blocks filled (1 or 2). blk1 is always filled before blk2.
368 * =0 : not enough data available. <blk*> are left undefined.
369 * The buffer is left unaffected. Unused buffers are left in an undefined state.
370 */
Willy Tarreau55f3ce12018-07-18 11:49:27 +0200371static 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 +0200372{
373 size_t l1;
374
375 if (!max)
376 return 0;
377
378 *blk1 = b_peek(buf, ofs);
379 l1 = b_wrap(buf) - *blk1;
380 if (l1 < max) {
381 *len1 = l1;
382 *len2 = max - l1;
Willy Tarreau591d4452018-06-15 17:21:00 +0200383 *blk2 = b_orig(buf);
Willy Tarreaua1f78fb2018-06-14 14:38:11 +0200384 return 2;
385 }
386 *len1 = max;
387 return 1;
388}
389
Willy Tarreaubbc68df2018-06-06 14:30:50 +0200390
391/*********************************************/
392/* Functions used to modify the buffer state */
393/*********************************************/
394
395/* b_reset() : resets a buffer. The size is not touched. */
396static inline void b_reset(struct buffer *b)
397{
Willy Tarreaud54a8ce2018-06-29 18:42:02 +0200398 b->head = 0;
Willy Tarreaubd1dba82018-07-10 10:43:27 +0200399 b->data = 0;
Willy Tarreaubbc68df2018-06-06 14:30:50 +0200400}
Willy Tarreau41806d12018-07-11 09:39:05 +0200401
Willy Tarreaue39b58f2019-05-24 14:52:56 +0200402/* b_make() : make a buffer from all parameters */
403static inline struct buffer b_make(char *area, size_t size, size_t head, size_t data)
404{
405 struct buffer b;
406
407 b.area = area;
408 b.size = size;
409 b.head = head;
410 b.data = data;
411 return b;
412}
413
Olivier Houchard09138ec2018-06-28 19:17:38 +0200414/* b_sub() : decreases the buffer length by <count> */
415static inline void b_sub(struct buffer *b, size_t count)
416{
Willy Tarreaubd1dba82018-07-10 10:43:27 +0200417 b->data -= count;
Olivier Houchard09138ec2018-06-28 19:17:38 +0200418}
419
420/* b_add() : increase the buffer length by <count> */
421static inline void b_add(struct buffer *b, size_t count)
422{
Willy Tarreaubd1dba82018-07-10 10:43:27 +0200423 b->data += count;
Olivier Houchard09138ec2018-06-28 19:17:38 +0200424}
425
Olivier Houcharda04e40d2018-06-28 19:10:25 +0200426/* b_set_data() : sets the buffer's length */
427static inline void b_set_data(struct buffer *b, size_t len)
428{
Willy Tarreaubd1dba82018-07-10 10:43:27 +0200429 b->data = len;
Olivier Houcharda04e40d2018-06-28 19:10:25 +0200430}
431
Willy Tarreaue5f12ce2018-06-15 10:28:05 +0200432/* b_del() : skips <del> bytes in a buffer <b>. Covers both the output and the
433 * input parts so it's up to the caller to know where it plays and that <del>
434 * is always smaller than the amount of data in the buffer.
435 */
436static inline void b_del(struct buffer *b, size_t del)
437{
Willy Tarreaubd1dba82018-07-10 10:43:27 +0200438 b->data -= del;
Willy Tarreaud54a8ce2018-06-29 18:42:02 +0200439 b->head += del;
440 if (b->head >= b->size)
441 b->head -= b->size;
Willy Tarreaue5f12ce2018-06-15 10:28:05 +0200442}
443
Willy Tarreauf17f19f2018-06-15 17:50:15 +0200444/* b_realign_if_empty() : realigns a buffer if it's empty */
445static inline void b_realign_if_empty(struct buffer *b)
446{
447 if (!b_data(b))
Willy Tarreaud54a8ce2018-06-29 18:42:02 +0200448 b->head = 0;
Willy Tarreauf17f19f2018-06-15 17:50:15 +0200449}
450
Willy Tarreau4cf13002018-06-06 06:53:15 +0200451/* b_slow_realign() : this function realigns a possibly wrapping buffer so that
452 * the part remaining to be parsed is contiguous and starts at the beginning of
453 * the buffer and the already parsed output part ends at the end of the buffer.
454 * This provides the best conditions since it allows the largest inputs to be
455 * processed at once and ensures that once the output data leaves, the whole
456 * buffer is available at once. The number of output bytes supposedly present
457 * at the beginning of the buffer and which need to be moved to the end must be
458 * passed in <output>. A temporary swap area at least as large as b->size must
459 * be provided in <swap>. It's up to the caller to ensure <output> is no larger
460 * than the difference between the whole buffer's length and its input.
461 */
462static inline void b_slow_realign(struct buffer *b, char *swap, size_t output)
463{
464 size_t block1 = output;
465 size_t block2 = 0;
466
467 /* process output data in two steps to cover wrapping */
468 if (block1 > b_size(b) - b_head_ofs(b)) {
469 block2 = b_size(b) - b_head_ofs(b);
470 block1 -= block2;
471 }
472 memcpy(swap + b_size(b) - output, b_head(b), block1);
473 memcpy(swap + b_size(b) - block2, b_orig(b), block2);
474
475 /* process input data in two steps to cover wrapping */
476 block1 = b_data(b) - output;
477 block2 = 0;
478
479 if (block1 > b_tail_ofs(b)) {
480 block2 = b_tail_ofs(b);
481 block1 = block1 - block2;
482 }
483 memcpy(swap, b_peek(b, output), block1);
484 memcpy(swap + block1, b_orig(b), block2);
485
486 /* reinject changes into the buffer */
487 memcpy(b_orig(b), swap, b_data(b) - output);
488 memcpy(b_wrap(b) - output, swap + b_size(b) - output, output);
489
Christopher Fauletad4e1a42018-08-06 15:43:12 +0200490 b->head = (output ? b_size(b) - output : 0);
Willy Tarreau4cf13002018-06-06 06:53:15 +0200491}
Willy Tarreau41806d12018-07-11 09:39:05 +0200492
Willy Tarreau55372f62018-07-10 10:04:02 +0200493/* b_putchar() : tries to append char <c> at the end of buffer <b>. Supports
494 * wrapping. Data are truncated if buffer is full.
495 */
496static inline void b_putchr(struct buffer *b, char c)
497{
498 if (b_full(b))
499 return;
500 *b_tail(b) = c;
Willy Tarreaubd1dba82018-07-10 10:43:27 +0200501 b->data++;
Willy Tarreau55372f62018-07-10 10:04:02 +0200502}
503
Willy Tarreauf7d04472018-07-20 16:20:34 +0200504/* __b_putblk() : tries to append <len> bytes from block <blk> to the end of
505 * buffer <b> without checking for free space (it's up to the caller to do it).
506 * Supports wrapping. It must not be called with len == 0.
507 */
508static inline void __b_putblk(struct buffer *b, const char *blk, size_t len)
509{
510 size_t half = b_contig_space(b);
511
Willy Tarreauec3750c2018-09-05 19:00:20 +0200512 if (half > len)
513 half = len;
514
Willy Tarreauf7d04472018-07-20 16:20:34 +0200515 memcpy(b_tail(b), blk, half);
516
517 if (len > half)
518 memcpy(b_peek(b, b_data(b) + half), blk + half, len - half);
519 b->data += len;
520}
521
Willy Tarreau55372f62018-07-10 10:04:02 +0200522/* b_putblk() : tries to append block <blk> at the end of buffer <b>. Supports
523 * wrapping. Data are truncated if buffer is too short. It returns the number
524 * of bytes copied.
525 */
526static inline size_t b_putblk(struct buffer *b, const char *blk, size_t len)
527{
Willy Tarreau55372f62018-07-10 10:04:02 +0200528 if (len > b_room(b))
529 len = b_room(b);
Willy Tarreauf7d04472018-07-20 16:20:34 +0200530 if (len)
531 __b_putblk(b, blk, len);
Willy Tarreau55372f62018-07-10 10:04:02 +0200532 return len;
533}
534
Willy Tarreauf1488882018-07-20 16:24:39 +0200535/* b_xfer() : transfers at most <count> bytes from buffer <src> to buffer <dst>
536 * and returns the number of bytes copied. The bytes are removed from <src> and
537 * added to <dst>. The caller is responsible for ensuring that <count> is not
Willy Tarreau7999bfb2018-07-20 18:58:51 +0200538 * larger than b_room(dst). Whenever possible (if the destination is empty and
539 * at least as much as the source was requested), the buffers are simply
540 * swapped instead of copied.
Willy Tarreauf1488882018-07-20 16:24:39 +0200541 */
542static inline size_t b_xfer(struct buffer *dst, struct buffer *src, size_t count)
543{
544 size_t ret, block1, block2;
545
546 ret = 0;
547 if (!count)
548 goto leave;
549
550 ret = b_data(src);
551 if (!ret)
552 goto leave;
553
554 if (ret > count)
555 ret = count;
Willy Tarreau7999bfb2018-07-20 18:58:51 +0200556 else if (!b_data(dst)) {
557 /* zero copy is possible by just swapping buffers */
558 struct buffer tmp = *dst;
559 *dst = *src;
560 *src = tmp;
561 goto leave;
562 }
Willy Tarreauf1488882018-07-20 16:24:39 +0200563
564 block1 = b_contig_data(src, 0);
565 if (block1 > ret)
566 block1 = ret;
567 block2 = ret - block1;
568
569 if (block1)
570 __b_putblk(dst, b_head(src), block1);
571
572 if (block2)
573 __b_putblk(dst, b_peek(src, block1), block2);
574
575 b_del(src, ret);
576 leave:
577 return ret;
578}
579
Willy Tarreauf48919a2018-12-22 19:19:50 +0100580/* Moves <len> bytes from absolute position <src> of buffer <b> by <shift>
581 * bytes, while supporting wrapping of both the source and the destination.
582 * The position is relative to the buffer's origin and may overlap with the
583 * target position. The <shift>'s absolute value must be strictly lower than
584 * the buffer's size. The main purpose is to aggregate data block during
585 * parsing while removing unused delimiters. The buffer's length is not
586 * modified, and the caller must take care of size adjustments and holes by
587 * itself.
588 */
589static inline void b_move(const struct buffer *b, size_t src, size_t len, ssize_t shift)
590{
591 char *orig = b_orig(b);
592 size_t size = b_size(b);
593 size_t dst = src + size + shift;
594 size_t cnt;
595
596 if (dst >= size)
597 dst -= size;
598
599 if (shift < 0) {
600 /* copy from left to right */
601 for (; (cnt = len); len -= cnt) {
602 if (cnt > size - src)
603 cnt = size - src;
604 if (cnt > size - dst)
605 cnt = size - dst;
606
607 memmove(orig + dst, orig + src, cnt);
608 dst += cnt;
609 src += cnt;
610 if (dst >= size)
611 dst -= size;
612 if (src >= size)
613 src -= size;
614 }
615 }
616 else if (shift > 0) {
617 /* copy from right to left */
618 for (; (cnt = len); len -= cnt) {
619 size_t src_end = src + len;
620 size_t dst_end = dst + len;
621
622 if (dst_end > size)
623 dst_end -= size;
624 if (src_end > size)
625 src_end -= size;
626
627 if (cnt > dst_end)
628 cnt = dst_end;
629 if (cnt > src_end)
630 cnt = src_end;
631
632 memmove(orig + dst_end - cnt, orig + src_end - cnt, cnt);
633 }
634 }
635}
636
Willy Tarreaue3128022018-07-12 15:55:34 +0200637/* b_rep_blk() : writes the block <blk> at position <pos> which must be in
638 * buffer <b>, and moves the part between <end> and the buffer's tail just
639 * after the end of the copy of <blk>. This effectively replaces the part
640 * located between <pos> and <end> with a copy of <blk> of length <len>. The
641 * buffer's length is automatically updated. This is used to replace a block
642 * with another one inside a buffer. The shift value (positive or negative) is
643 * returned. If there's no space left, the move is not done. If <len> is null,
644 * the <blk> pointer is allowed to be null, in order to erase a block.
645 */
646static inline int b_rep_blk(struct buffer *b, char *pos, char *end, const char *blk, size_t len)
647{
648 int delta;
649
650 delta = len - (end - pos);
651
Olivier Houchard363c7452018-09-26 15:09:58 +0200652 if (__b_tail(b) + delta > b_wrap(b))
Willy Tarreaue3128022018-07-12 15:55:34 +0200653 return 0; /* no space left */
654
655 if (b_data(b) &&
656 b_tail(b) + delta > b_head(b) &&
657 b_head(b) >= b_tail(b))
658 return 0; /* no space left before wrapping data */
659
660 /* first, protect the end of the buffer */
661 memmove(end + delta, end, b_tail(b) - end);
662
663 /* now, copy blk over pos */
664 if (len)
665 memcpy(pos, blk, len);
666
667 b_add(b, delta);
668 b_realign_if_empty(b);
669
670 return delta;
671}
672
Willy Tarreau55372f62018-07-10 10:04:02 +0200673
Willy Tarreau41806d12018-07-11 09:39:05 +0200674#endif /* _COMMON_BUF_H */
675
676/*
677 * Local variables:
678 * c-indent-level: 8
679 * c-basic-offset: 8
680 * End:
681 */