blob: adb32b57a9d1e1fac84e94be5fc3eccff08345f8 [file] [log] [blame]
Amaury Denoyelle1b5f77f2022-05-09 09:37:27 +02001#include <haproxy/ncbuf.h>
2
Amaury Denoyelle077e0962022-05-09 09:43:11 +02003#include <string.h>
4
5#ifndef MIN
6#define MIN(a, b) (((a) < (b)) ? (a) : (b))
7#endif
8
Amaury Denoyelleeeeeed42022-05-04 16:51:19 +02009#ifdef STANDALONE
10#include <stdarg.h>
11#include <stdlib.h>
12#include <stdio.h>
13#include <unistd.h>
14
15#include <haproxy/list.h>
16#endif /* STANDALONE */
17
Amaury Denoyelle1b5f77f2022-05-09 09:37:27 +020018#ifdef DEBUG_DEV
19# include <haproxy/bug.h>
20#else
21# include <stdio.h>
22# include <stdlib.h>
23
24# undef BUG_ON
25# define BUG_ON(x) if (x) { fprintf(stderr, "CRASH ON %s:%d\n", __func__, __LINE__); abort(); }
26
27# undef BUG_ON_HOT
28# define BUG_ON_HOT(x) if (x) { fprintf(stderr, "CRASH ON %s:%d\n", __func__, __LINE__); abort(); }
29#endif /* DEBUG_DEV */
30
31/* ******** internal API ******** */
32
Amaury Denoyelled5d2ed92022-05-09 09:38:45 +020033#define NCB_BLK_NULL ((struct ncb_blk){ .st = NULL })
34
35#define NCB_BK_F_GAP 0x01 /* block represents a gap */
Amaury Denoyelleedeb0a62022-05-04 16:16:39 +020036#define NCB_BK_F_FIN 0x02 /* special reduced gap present at the end of the buffer */
Amaury Denoyelled5d2ed92022-05-09 09:38:45 +020037struct ncb_blk {
38 char *st; /* first byte of the block */
39 char *end; /* first byte after this block */
40
Amaury Denoyelleedeb0a62022-05-04 16:16:39 +020041 char *sz_ptr; /* pointer to size element - NULL for reduced gap */
Amaury Denoyelled5d2ed92022-05-09 09:38:45 +020042 ncb_sz_t sz; /* size of the block */
Amaury Denoyelleedeb0a62022-05-04 16:16:39 +020043 ncb_sz_t sz_data; /* size of the data following the block - invalid for reduced GAP */
Amaury Denoyelled5d2ed92022-05-09 09:38:45 +020044 ncb_sz_t off; /* offset of block in buffer */
45
46 char flag;
47};
48
Amaury Denoyelle1b5f77f2022-05-09 09:37:27 +020049/* Return pointer to <off> relative to <buf> head. Support buffer wrapping. */
50static char *ncb_peek(const struct ncbuf *buf, ncb_sz_t off)
51{
52 char *ptr = ncb_head(buf) + off;
53 if (ptr >= buf->area + buf->size)
54 ptr -= buf->size;
55 return ptr;
56}
57
58/* Returns the reserved space of <buf> which contains the size of the first
59 * data block.
60 */
61static char *ncb_reserved(const struct ncbuf *buf)
62{
63 return ncb_peek(buf, buf->size - NCB_RESERVED_SZ);
64}
65
66/* Encode <off> at <st> position in <buf>. Support wrapping. */
67static void ncb_write_off(const struct ncbuf *buf, char *st, ncb_sz_t off)
68{
69 int i;
70
71 BUG_ON_HOT(st >= buf->area + buf->size);
72
73 for (i = 0; i < sizeof(ncb_sz_t); ++i) {
74 (*st) = off >> (8 * i) & 0xff;
75
76 if ((++st) == ncb_wrap(buf))
77 st = ncb_orig(buf);
78 }
79}
80
81/* Decode offset stored at <st> position in <buf>. Support wrapping. */
82static ncb_sz_t ncb_read_off(const struct ncbuf *buf, char *st)
83{
84 int i;
85 ncb_sz_t off = 0;
86
87 BUG_ON_HOT(st >= buf->area + buf->size);
88
89 for (i = 0; i < sizeof(ncb_sz_t); ++i) {
90 off |= (unsigned char )(*st) << (8 * i);
91
92 if ((++st) == ncb_wrap(buf))
93 st = ncb_orig(buf);
94 }
95
96 return off;
97}
98
Amaury Denoyelle077e0962022-05-09 09:43:11 +020099/* Add <off> to the offset stored at <st> in <buf>. Support wrapping. */
100static void ncb_inc_off(const struct ncbuf *buf, char *st, ncb_sz_t off)
101{
102 const ncb_sz_t old = ncb_read_off(buf, st);
103 ncb_write_off(buf, st, old + off);
104}
105
Amaury Denoyelleedeb0a62022-05-04 16:16:39 +0200106/* Returns true if a gap cannot be inserted at <off> : a reduced gap must be used. */
107static int ncb_off_reduced(const struct ncbuf *b, ncb_sz_t off)
108{
109 return off + NCB_GAP_MIN_SZ > ncb_size(b);
110}
111
Amaury Denoyelled5d2ed92022-05-09 09:38:45 +0200112/* Returns true if <blk> is the special NULL block. */
113static int ncb_blk_is_null(const struct ncb_blk blk)
114{
115 return !blk.st;
116}
117
118/* Returns true if <blk> is the last block of <buf>. */
119static int ncb_blk_is_last(const struct ncbuf *buf, const struct ncb_blk blk)
120{
121 BUG_ON_HOT(blk.off + blk.sz > ncb_size(buf));
122 return blk.off + blk.sz == ncb_size(buf);
123}
124
125/* Returns the first block of <buf> which is always a DATA. */
126static struct ncb_blk ncb_blk_first(const struct ncbuf *buf)
127{
128 struct ncb_blk blk;
129
Amaury Denoyelle48fbad42022-05-16 11:09:29 +0200130 if (ncb_is_null(buf))
131 return NCB_BLK_NULL;
132
Amaury Denoyelled5d2ed92022-05-09 09:38:45 +0200133 blk.st = ncb_head(buf);
134
135 blk.sz_ptr = ncb_reserved(buf);
136 blk.sz = ncb_read_off(buf, ncb_reserved(buf));
Amaury Denoyelleb5ca9432022-05-13 15:33:50 +0200137 blk.sz_data = 0;
Amaury Denoyelled5d2ed92022-05-09 09:38:45 +0200138 BUG_ON_HOT(blk.sz > ncb_size(buf));
139
140 blk.end = ncb_peek(buf, blk.sz);
141 blk.off = 0;
142 blk.flag = 0;
143
144 return blk;
145}
146
147/* Returns the block following <prev> in the buffer <buf>. */
148static struct ncb_blk ncb_blk_next(const struct ncbuf *buf,
149 const struct ncb_blk prev)
150{
151 struct ncb_blk blk;
152
153 BUG_ON_HOT(ncb_blk_is_null(prev));
154
155 if (ncb_blk_is_last(buf, prev))
156 return NCB_BLK_NULL;
157
158 blk.st = prev.end;
159 blk.off = prev.off + prev.sz;
160 blk.flag = ~prev.flag & NCB_BK_F_GAP;
161
162 if (blk.flag & NCB_BK_F_GAP) {
Amaury Denoyelleedeb0a62022-05-04 16:16:39 +0200163 if (ncb_off_reduced(buf, blk.off)) {
164 blk.flag |= NCB_BK_F_FIN;
165 blk.sz_ptr = NULL;
166 blk.sz = ncb_size(buf) - blk.off;
167 blk.sz_data = 0;
168
169 /* A reduced gap can only be the last block. */
170 BUG_ON_HOT(!ncb_blk_is_last(buf, blk));
171 }
172 else {
173 blk.sz_ptr = ncb_peek(buf, blk.off + NCB_GAP_SZ_OFF);
174 blk.sz = ncb_read_off(buf, blk.sz_ptr);
175 blk.sz_data = ncb_read_off(buf, ncb_peek(buf, blk.off + NCB_GAP_SZ_DATA_OFF));
176 BUG_ON_HOT(blk.sz < NCB_GAP_MIN_SZ);
177 }
Amaury Denoyelled5d2ed92022-05-09 09:38:45 +0200178 }
179 else {
180 blk.sz_ptr = ncb_peek(buf, prev.off + NCB_GAP_SZ_DATA_OFF);
181 blk.sz = prev.sz_data;
182 blk.sz_data = 0;
183
184 /* only first DATA block can be empty. If this happens, a GAP
185 * merge should have been realized.
186 */
187 BUG_ON_HOT(!blk.sz);
188 }
189
190 BUG_ON_HOT(blk.off + blk.sz > ncb_size(buf));
191 blk.end = ncb_peek(buf, blk.off + blk.sz);
192
193 return blk;
194}
195
196/* Returns the block containing offset <off>. Note that if <off> is at the
197 * frontier between two blocks, this function will return the preceding one.
198 * This is done to easily merge blocks on insertion/deletion.
199 */
200static struct ncb_blk ncb_blk_find(const struct ncbuf *buf, ncb_sz_t off)
201{
202 struct ncb_blk blk;
203
Amaury Denoyelle48fbad42022-05-16 11:09:29 +0200204 if (ncb_is_null(buf))
205 return NCB_BLK_NULL;
206
Amaury Denoyelled5d2ed92022-05-09 09:38:45 +0200207 BUG_ON_HOT(off >= ncb_size(buf));
208
209 for (blk = ncb_blk_first(buf); off > blk.off + blk.sz;
210 blk = ncb_blk_next(buf, blk)) {
211 }
212
213 return blk;
214}
215
216/* Transform absolute offset <off> to a relative one from <blk> start. */
217static ncb_sz_t ncb_blk_off(const struct ncb_blk blk, ncb_sz_t off)
218{
219 BUG_ON_HOT(off < blk.off || off > blk.off + blk.sz);
220 BUG_ON_HOT(off - blk.off > blk.sz);
221 return off - blk.off;
222}
223
Amaury Denoyelle077e0962022-05-09 09:43:11 +0200224/* Simulate insertion in <buf> of <data> of length <len> at offset <off>. This
225 * ensures that minimal block size are respected for newly formed gaps. <blk>
Amaury Denoyelleb830f0d2022-05-09 11:59:15 +0200226 * must be the block where the insert operation begins. If <mode> is
227 * NCB_ADD_COMPARE, old and new overlapped data are compared to validate the
228 * insertion.
Amaury Denoyelle077e0962022-05-09 09:43:11 +0200229 *
230 * Returns NCB_RET_OK if insertion can proceed.
231 */
232static enum ncb_ret ncb_check_insert(const struct ncbuf *buf,
233 struct ncb_blk blk, ncb_sz_t off,
Amaury Denoyelleb830f0d2022-05-09 11:59:15 +0200234 const char *data, ncb_sz_t len,
235 enum ncb_add_mode mode)
Amaury Denoyelle077e0962022-05-09 09:43:11 +0200236{
237 ncb_sz_t off_blk = ncb_blk_off(blk, off);
238 ncb_sz_t to_copy;
239 ncb_sz_t left = len;
240
241 /* If insertion starts in a gap, it must leave enough space to keep the
242 * gap header.
243 */
244 if (left && (blk.flag & NCB_BK_F_GAP)) {
245 if (off_blk < NCB_GAP_MIN_SZ)
246 return NCB_RET_GAP_SIZE;
247 }
248
249 while (left) {
250 off_blk = ncb_blk_off(blk, off);
251 to_copy = MIN(left, blk.sz - off_blk);
252
253 if (blk.flag & NCB_BK_F_GAP && off_blk + to_copy < blk.sz) {
254 /* Insertion must leave enough space for a new gap
255 * header if stopped in a middle of a gap.
256 */
257 const ncb_sz_t gap_sz = blk.sz - (off_blk + to_copy);
258 if (gap_sz < NCB_GAP_MIN_SZ && !ncb_blk_is_last(buf, blk))
259 return NCB_RET_GAP_SIZE;
260 }
Amaury Denoyelleb830f0d2022-05-09 11:59:15 +0200261 else if (!(blk.flag & NCB_BK_F_GAP) && mode == NCB_ADD_COMPARE) {
262 /* Compare memory of data block in NCB_ADD_COMPARE mode. */
263 const ncb_sz_t off_blk = ncb_blk_off(blk, off);
264 char *st = ncb_peek(buf, off);
265
266 to_copy = MIN(left, blk.sz - off_blk);
267 if (st + to_copy > ncb_wrap(buf)) {
268 const ncb_sz_t sz1 = ncb_wrap(buf) - st;
269 if (memcmp(st, data, sz1))
270 return NCB_RET_DATA_REJ;
271 if (memcmp(ncb_orig(buf), data + sz1, to_copy - sz1))
272 return NCB_RET_DATA_REJ;
273 }
274 else {
275 if (memcmp(st, data, to_copy))
276 return NCB_RET_DATA_REJ;
277 }
278 }
Amaury Denoyelle077e0962022-05-09 09:43:11 +0200279
280 left -= to_copy;
281 data += to_copy;
282 off += to_copy;
283
284 blk = ncb_blk_next(buf, blk);
285 }
286
287 return NCB_RET_OK;
288}
289
290/* Fill new <data> of length <len> inside an already existing data <blk> at
291 * offset <off>. Offset is relative to <blk> so it cannot be greater than the
Amaury Denoyelleb830f0d2022-05-09 11:59:15 +0200292 * block size. <mode> specifies if old data are preserved or overwritten.
Amaury Denoyelle077e0962022-05-09 09:43:11 +0200293 */
294static ncb_sz_t ncb_fill_data_blk(const struct ncbuf *buf,
295 struct ncb_blk blk, ncb_sz_t off,
Amaury Denoyelleb830f0d2022-05-09 11:59:15 +0200296 const char *data, ncb_sz_t len,
297 enum ncb_add_mode mode)
Amaury Denoyelle077e0962022-05-09 09:43:11 +0200298{
299 const ncb_sz_t to_copy = MIN(len, blk.sz - off);
Amaury Denoyelleb830f0d2022-05-09 11:59:15 +0200300 char *ptr = NULL;
Amaury Denoyelle077e0962022-05-09 09:43:11 +0200301
302 BUG_ON_HOT(off > blk.sz);
303 /* This can happens due to previous ncb_blk_find() usage. In this
304 * case the current fill is a noop.
305 */
306 if (off == blk.sz)
307 return 0;
308
Amaury Denoyelleb830f0d2022-05-09 11:59:15 +0200309 if (mode == NCB_ADD_OVERWRT) {
310 ptr = ncb_peek(buf, blk.off + off);
311
312 if (ptr + to_copy >= ncb_wrap(buf)) {
313 const ncb_sz_t sz1 = ncb_wrap(buf) - ptr;
314 memcpy(ptr, data, sz1);
315 memcpy(ncb_orig(buf), data + sz1, to_copy - sz1);
316 }
317 else {
318 memcpy(ptr, data, to_copy);
319 }
320 }
321
Amaury Denoyelle077e0962022-05-09 09:43:11 +0200322 return to_copy;
323}
324
325/* Fill the gap <blk> starting at <off> with new <data> of length <len>. <off>
326 * is relative to <blk> so it cannot be greater than the block size.
327 */
328static ncb_sz_t ncb_fill_gap_blk(const struct ncbuf *buf,
329 struct ncb_blk blk, ncb_sz_t off,
330 const char *data, ncb_sz_t len)
331{
332 const ncb_sz_t to_copy = MIN(len, blk.sz - off);
333 char *ptr;
334
335 BUG_ON_HOT(off > blk.sz);
336 /* This can happens due to previous ncb_blk_find() usage. In this
337 * case the current fill is a noop.
338 */
339 if (off == blk.sz)
340 return 0;
341
342 /* A new gap must be created if insertion stopped before gap end. */
343 if (off + to_copy < blk.sz) {
344 const ncb_sz_t gap_off = blk.off + off + to_copy;
345 const ncb_sz_t gap_sz = blk.sz - off - to_copy;
346
347 BUG_ON_HOT(!ncb_off_reduced(buf, gap_off) &&
348 blk.off + blk.sz - gap_off < NCB_GAP_MIN_SZ);
349
350 /* write the new gap header unless this is a reduced gap. */
351 if (!ncb_off_reduced(buf, gap_off)) {
352 char *gap_ptr = ncb_peek(buf, gap_off + NCB_GAP_SZ_OFF);
353 char *gap_data_ptr = ncb_peek(buf, gap_off + NCB_GAP_SZ_DATA_OFF);
354
355 ncb_write_off(buf, gap_ptr, gap_sz);
356 ncb_write_off(buf, gap_data_ptr, blk.sz_data);
357 }
358 }
359
360 /* fill the gap with new data */
361 ptr = ncb_peek(buf, blk.off + off);
362 if (ptr + to_copy >= ncb_wrap(buf)) {
363 ncb_sz_t sz1 = ncb_wrap(buf) - ptr;
364 memcpy(ptr, data, sz1);
365 memcpy(ncb_orig(buf), data + sz1, to_copy - sz1);
366 }
367 else {
368 memcpy(ptr, data, to_copy);
369 }
370
371 return to_copy;
372}
373
Amaury Denoyelle1b5f77f2022-05-09 09:37:27 +0200374/* ******** public API ******** */
375
376int ncb_is_null(const struct ncbuf *buf)
377{
378 return buf->size == 0;
379}
380
381/* Initialize or reset <buf> by clearing all data. Its size is untouched.
Amaury Denoyelle48fbad42022-05-16 11:09:29 +0200382 * Buffer is positioned to <head> offset. Use 0 to realign it. <buf> must not
383 * be NCBUF_NULL.
Amaury Denoyelle1b5f77f2022-05-09 09:37:27 +0200384 */
385void ncb_init(struct ncbuf *buf, ncb_sz_t head)
386{
Amaury Denoyelle48fbad42022-05-16 11:09:29 +0200387 BUG_ON_HOT(ncb_is_null(buf));
388
Amaury Denoyelle1b5f77f2022-05-09 09:37:27 +0200389 BUG_ON_HOT(head >= buf->size);
390 buf->head = head;
391
392 ncb_write_off(buf, ncb_reserved(buf), 0);
393 ncb_write_off(buf, ncb_head(buf), ncb_size(buf));
394 ncb_write_off(buf, ncb_peek(buf, sizeof(ncb_sz_t)), 0);
395}
396
397/* Construct a ncbuf with all its parameters. */
398struct ncbuf ncb_make(char *area, ncb_sz_t size, ncb_sz_t head)
399{
400 struct ncbuf buf;
401
402 /* Ensure that there is enough space for the reserved space and data.
403 * This is the minimal value to not crash later.
404 */
405 BUG_ON_HOT(size <= NCB_RESERVED_SZ);
406
407 buf.area = area;
408 buf.size = size;
409 buf.head = head;
410
411 return buf;
412}
413
414/* Returns start of allocated buffer area. */
415char *ncb_orig(const struct ncbuf *buf)
416{
417 return buf->area;
418}
419
420/* Returns current head pointer into buffer area. */
421char *ncb_head(const struct ncbuf *buf)
422{
423 return buf->area + buf->head;
424}
425
426/* Returns the first byte after the allocated buffer area. */
427char *ncb_wrap(const struct ncbuf *buf)
428{
429 return buf->area + buf->size;
430}
431
432/* Returns the usable size of <buf> for data storage. This is the size of the
433 * allocated buffer without the reserved header space.
434 */
435ncb_sz_t ncb_size(const struct ncbuf *buf)
436{
Amaury Denoyelle48fbad42022-05-16 11:09:29 +0200437 if (ncb_is_null(buf))
438 return 0;
439
Amaury Denoyelle1b5f77f2022-05-09 09:37:27 +0200440 return buf->size - NCB_RESERVED_SZ;
441}
442
Amaury Denoyelled5d2ed92022-05-09 09:38:45 +0200443/* Returns the total number of bytes stored in whole <buf>. */
444ncb_sz_t ncb_total_data(const struct ncbuf *buf)
445{
446 struct ncb_blk blk;
447 int total = 0;
448
449 for (blk = ncb_blk_first(buf); !ncb_blk_is_null(blk); blk = ncb_blk_next(buf, blk)) {
450 if (!(blk.flag & NCB_BK_F_GAP))
451 total += blk.sz;
452 }
453
454 return total;
455}
456
Amaury Denoyelle1b5f77f2022-05-09 09:37:27 +0200457/* Returns true if there is no data anywhere in <buf>. */
458int ncb_is_empty(const struct ncbuf *buf)
459{
Amaury Denoyellef6dbdc12022-05-17 18:52:22 +0200460 int first_data, first_gap;
461
Amaury Denoyelle48fbad42022-05-16 11:09:29 +0200462 if (ncb_is_null(buf))
463 return 1;
464
Amaury Denoyellef6dbdc12022-05-17 18:52:22 +0200465 first_data = ncb_read_off(buf, ncb_reserved(buf));
466 BUG_ON_HOT(first_data > ncb_size(buf));
467 /* Buffer is not empty if first data block is not nul. */
468 if (first_data)
469 return 0;
470
471 /* Head contains the first gap size if first data block is empty. */
472 first_gap = ncb_read_off(buf, ncb_head(buf));
473 BUG_ON_HOT(first_gap > ncb_size(buf));
474 return first_gap == ncb_size(buf);
Amaury Denoyelle1b5f77f2022-05-09 09:37:27 +0200475}
476
477/* Returns true if no more data can be inserted in <buf>. */
478int ncb_is_full(const struct ncbuf *buf)
479{
Amaury Denoyellef6dbdc12022-05-17 18:52:22 +0200480 int first_data;
481
Amaury Denoyelle48fbad42022-05-16 11:09:29 +0200482 if (ncb_is_null(buf))
483 return 0;
484
Amaury Denoyellef6dbdc12022-05-17 18:52:22 +0200485 /* First data block must cover whole buffer if full. */
486 first_data = ncb_read_off(buf, ncb_reserved(buf));
487 BUG_ON_HOT(first_data > ncb_size(buf));
488 return first_data == ncb_size(buf);
Amaury Denoyelle1b5f77f2022-05-09 09:37:27 +0200489}
Amaury Denoyelled5d2ed92022-05-09 09:38:45 +0200490
491/* Returns the number of bytes of data avaiable in <buf> starting at offset
492 * <off> until the next gap or the buffer end. The counted data may wrapped if
493 * the buffer storage is not aligned.
494 */
495ncb_sz_t ncb_data(const struct ncbuf *buf, ncb_sz_t off)
496{
Amaury Denoyelle1194db22022-05-31 11:44:25 +0200497 struct ncb_blk blk;
498 ncb_sz_t off_blk;
Amaury Denoyelled5d2ed92022-05-09 09:38:45 +0200499
Amaury Denoyelle1194db22022-05-31 11:44:25 +0200500 if (ncb_is_null(buf))
Amaury Denoyelle48fbad42022-05-16 11:09:29 +0200501 return 0;
502
Amaury Denoyelle1194db22022-05-31 11:44:25 +0200503 blk = ncb_blk_find(buf, off);
504 off_blk = ncb_blk_off(blk, off);
505
Amaury Denoyelled5d2ed92022-05-09 09:38:45 +0200506 /* if <off> at the frontier between two and <blk> is gap, retrieve the
507 * next data block.
508 */
509 if (blk.flag & NCB_BK_F_GAP && off_blk == blk.sz &&
510 !ncb_blk_is_last(buf, blk)) {
511 blk = ncb_blk_next(buf, blk);
512 off_blk = ncb_blk_off(blk, off);
513 }
514
515 if (blk.flag & NCB_BK_F_GAP)
516 return 0;
517
518 return blk.sz - off_blk;
519}
Amaury Denoyelle077e0962022-05-09 09:43:11 +0200520
521/* Add a new block at <data> of size <len> in <buf> at offset <off>.
522 *
523 * Returns NCB_RET_OK on success. On error the following codes are returned :
524 * - NCB_RET_GAP_SIZE : cannot add data because the gap formed is too small
Amaury Denoyelleb830f0d2022-05-09 11:59:15 +0200525 * - NCB_RET_DATA_REJ : old data would be overwritten by different ones in
526 * NCB_ADD_COMPARE mode.
Amaury Denoyelle077e0962022-05-09 09:43:11 +0200527 */
528enum ncb_ret ncb_add(struct ncbuf *buf, ncb_sz_t off,
Amaury Denoyelleb830f0d2022-05-09 11:59:15 +0200529 const char *data, ncb_sz_t len, enum ncb_add_mode mode)
Amaury Denoyelle077e0962022-05-09 09:43:11 +0200530{
531 struct ncb_blk blk;
532 ncb_sz_t left = len;
533 enum ncb_ret ret;
534 char *new_sz;
535
536 if (!len)
537 return NCB_RET_OK;
538
539 BUG_ON_HOT(off + len > ncb_size(buf));
540
541 /* Get block where insertion begins. */
542 blk = ncb_blk_find(buf, off);
543
544 /* Check if insertion is possible. */
Amaury Denoyelleb830f0d2022-05-09 11:59:15 +0200545 ret = ncb_check_insert(buf, blk, off, data, len, mode);
Amaury Denoyelle077e0962022-05-09 09:43:11 +0200546 if (ret != NCB_RET_OK)
547 return ret;
548
549 if (blk.flag & NCB_BK_F_GAP) {
550 /* Reduce gap size if insertion begins in a gap. Gap data size
551 * is reset and will be recalculated during insertion.
552 */
553 const ncb_sz_t gap_sz = off - blk.off;
554 BUG_ON_HOT(gap_sz < NCB_GAP_MIN_SZ);
555
556 /* pointer to data size to increase. */
557 new_sz = ncb_peek(buf, blk.off + NCB_GAP_SZ_DATA_OFF);
558
559 ncb_write_off(buf, blk.sz_ptr, gap_sz);
560 ncb_write_off(buf, new_sz, 0);
561 }
562 else {
563 /* pointer to data size to increase. */
564 new_sz = blk.sz_ptr;
565 }
566
567 /* insert data */
568 while (left) {
569 struct ncb_blk next;
570 const ncb_sz_t off_blk = ncb_blk_off(blk, off);
571 ncb_sz_t done;
572
573 /* retrieve the next block. This is necessary to do this
574 * before overwritting a gap.
575 */
576 next = ncb_blk_next(buf, blk);
577
578 if (blk.flag & NCB_BK_F_GAP) {
579 done = ncb_fill_gap_blk(buf, blk, off_blk, data, left);
580
581 /* update the inserted data block size */
582 if (off + done == blk.off + blk.sz) {
583 /* merge next data block if insertion reached gap end */
584 ncb_inc_off(buf, new_sz, done + blk.sz_data);
585 }
586 else {
587 /* insertion stopped before gap end */
588 ncb_inc_off(buf, new_sz, done);
589 }
590 }
591 else {
Amaury Denoyelleb830f0d2022-05-09 11:59:15 +0200592 done = ncb_fill_data_blk(buf, blk, off_blk, data, left, mode);
Amaury Denoyelle077e0962022-05-09 09:43:11 +0200593 }
594
595 BUG_ON_HOT(done > blk.sz || done > left);
596 left -= done;
597 data += done;
598 off += done;
599
600 blk = next;
601 }
602
603 return NCB_RET_OK;
604}
Amaury Denoyelledf25acf2022-05-04 16:47:09 +0200605
Amaury Denoyelleca21c762022-05-17 18:52:39 +0200606/* Advance the head of <buf> to the offset <adv>. Data at the start of buffer
Amaury Denoyelledf25acf2022-05-04 16:47:09 +0200607 * will be lost while some space will be formed at the end to be able to insert
608 * new data.
609 *
610 * Returns NCB_RET_OK on success.
611 */
Amaury Denoyelleca21c762022-05-17 18:52:39 +0200612enum ncb_ret ncb_advance(struct ncbuf *buf, ncb_sz_t adv)
Amaury Denoyelledf25acf2022-05-04 16:47:09 +0200613{
Amaury Denoyelleca21c762022-05-17 18:52:39 +0200614 struct ncb_blk start, last;
Amaury Denoyelledf25acf2022-05-04 16:47:09 +0200615 ncb_sz_t off_blk;
616 ncb_sz_t first_data_sz;
617
Amaury Denoyelleca21c762022-05-17 18:52:39 +0200618 BUG_ON_HOT(adv > ncb_size(buf));
619 if (!adv)
Amaury Denoyelledf25acf2022-05-04 16:47:09 +0200620 return NCB_RET_OK;
621
Amaury Denoyelleca21c762022-05-17 18:52:39 +0200622 /* Special case if adv is full size. This is equivalent to a reset. */
623 if (adv == ncb_size(buf)) {
Amaury Denoyelledf25acf2022-05-04 16:47:09 +0200624 ncb_init(buf, buf->head);
625 return NCB_RET_OK;
626 }
627
Amaury Denoyelleca21c762022-05-17 18:52:39 +0200628 start = ncb_blk_find(buf, adv);
629
630 /* Special case if advance until the last block which is a GAP. The
631 * buffer will be left empty and is thus equivalent to a reset.
632 */
633 if (ncb_blk_is_last(buf, start) && (start.flag & NCB_BK_F_GAP)) {
634 ncb_sz_t new_head = buf->head + adv;
635 if (new_head >= buf->size)
636 new_head -= buf->size;
637
638 ncb_init(buf, new_head);
639 return NCB_RET_OK;
640 }
641
642 last = start;
Amaury Denoyelledf25acf2022-05-04 16:47:09 +0200643 while (!ncb_blk_is_last(buf, last))
644 last = ncb_blk_next(buf, last);
645
Amaury Denoyelleca21c762022-05-17 18:52:39 +0200646 off_blk = ncb_blk_off(start, adv);
Amaury Denoyelledf25acf2022-05-04 16:47:09 +0200647
Amaury Denoyelleca21c762022-05-17 18:52:39 +0200648 if (start.flag & NCB_BK_F_GAP) {
649 /* If advance in a GAP, its new size must be big enough. */
650 if (start.sz == off_blk) {
651 /* GAP removed. Buffer will start with following DATA block. */
652 first_data_sz = start.sz_data;
Amaury Denoyelledf25acf2022-05-04 16:47:09 +0200653 }
Amaury Denoyelleca21c762022-05-17 18:52:39 +0200654 else if (start.sz - off_blk < NCB_GAP_MIN_SZ) {
Amaury Denoyelledf25acf2022-05-04 16:47:09 +0200655 return NCB_RET_GAP_SIZE;
656 }
657 else {
Amaury Denoyelleca21c762022-05-17 18:52:39 +0200658 /* Buffer will start with this GAP block. */
Amaury Denoyelledf25acf2022-05-04 16:47:09 +0200659 first_data_sz = 0;
660 }
661 }
662 else {
Amaury Denoyelleca21c762022-05-17 18:52:39 +0200663 /* If off_blk less than start.sz, the data block will becomes the
Amaury Denoyelledf25acf2022-05-04 16:47:09 +0200664 * first block. If equal, the data block is completely removed
665 * and thus the following GAP will be the first block.
666 */
Amaury Denoyelleca21c762022-05-17 18:52:39 +0200667 first_data_sz = start.sz - off_blk;
Amaury Denoyelledf25acf2022-05-04 16:47:09 +0200668 }
669
Amaury Denoyelleca21c762022-05-17 18:52:39 +0200670 if (last.flag & NCB_BK_F_GAP) {
671 /* Extend last GAP unless this is a reduced gap. */
672 if (!(last.flag & NCB_BK_F_FIN) || last.sz + adv >= NCB_GAP_MIN_SZ) {
Amaury Denoyelledf25acf2022-05-04 16:47:09 +0200673 /* use .st instead of .sz_ptr which can be NULL if reduced gap */
Amaury Denoyelleca21c762022-05-17 18:52:39 +0200674 ncb_write_off(buf, last.st, last.sz + adv);
Amaury Denoyelledf25acf2022-05-04 16:47:09 +0200675 ncb_write_off(buf, ncb_peek(buf, last.off + NCB_GAP_SZ_DATA_OFF), 0);
676 }
677 }
Amaury Denoyelleca21c762022-05-17 18:52:39 +0200678 else {
679 /* Insert a GAP after the last DATA block. */
680 if (adv >= NCB_GAP_MIN_SZ) {
681 ncb_write_off(buf, ncb_peek(buf, last.off + last.sz + NCB_GAP_SZ_OFF), adv);
Amaury Denoyelledf25acf2022-05-04 16:47:09 +0200682 ncb_write_off(buf, ncb_peek(buf, last.off + last.sz + NCB_GAP_SZ_DATA_OFF), 0);
683 }
684 }
685
Amaury Denoyelleca21c762022-05-17 18:52:39 +0200686 /* Advance head and update reserved header with new first data size. */
687 buf->head += adv;
Amaury Denoyelledf25acf2022-05-04 16:47:09 +0200688 if (buf->head >= buf->size)
689 buf->head -= buf->size;
690 ncb_write_off(buf, ncb_reserved(buf), first_data_sz);
691
Amaury Denoyelleca21c762022-05-17 18:52:39 +0200692 /* If advance in a GAP, reduce its size. */
693 if (start.flag & NCB_BK_F_GAP && !first_data_sz) {
694 ncb_write_off(buf, ncb_head(buf), start.sz - off_blk);
Amaury Denoyelledf25acf2022-05-04 16:47:09 +0200695 /* Recopy the block sz_data at the new position. */
Amaury Denoyelleca21c762022-05-17 18:52:39 +0200696 ncb_write_off(buf, ncb_peek(buf, NCB_GAP_SZ_DATA_OFF), start.sz_data);
Amaury Denoyelledf25acf2022-05-04 16:47:09 +0200697 }
698
699 return NCB_RET_OK;
700}
Amaury Denoyelleeeeeed42022-05-04 16:51:19 +0200701
702/* ******** testing API ******** */
703/* To build it :
Amaury Denoyellef46393a2022-05-16 11:09:05 +0200704 * gcc -Wall -DSTANDALONE -lasan -I./include -o ncbuf src/ncbuf.c
Amaury Denoyelleeeeeed42022-05-04 16:51:19 +0200705 */
706#ifdef STANDALONE
707
708int ncb_print = 0;
709
710static void ncbuf_printf(char *str, ...)
711{
712 va_list args;
713
714 va_start(args, str);
715 if (ncb_print)
716 vfprintf(stderr, str, args);
717 va_end(args);
718}
719
720struct rand_off {
721 struct list el;
722 ncb_sz_t off;
723 ncb_sz_t len;
724};
725
726static struct rand_off *ncb_generate_rand_off(const struct ncbuf *buf)
727{
728 struct rand_off *roff;
Tim Duesterhus9fb57e82022-06-01 21:58:37 +0200729 roff = calloc(1, sizeof(*roff));
Amaury Denoyelleeeeeed42022-05-04 16:51:19 +0200730 BUG_ON(!roff);
731
732 roff->off = rand() % (ncb_size(buf));
733 if (roff->off > 0 && roff->off < NCB_GAP_MIN_SZ)
734 roff->off = 0;
735
736 roff->len = rand() % (ncb_size(buf) - roff->off + 1);
737
738 return roff;
739}
740
741static void ncb_print_blk(const struct ncb_blk blk)
742{
743 if (ncb_print) {
Amaury Denoyellef46393a2022-05-16 11:09:05 +0200744 fprintf(stderr, "%s(%s): %2u/%u.\n",
Amaury Denoyelleeeeeed42022-05-04 16:51:19 +0200745 blk.flag & NCB_BK_F_GAP ? "GAP " : "DATA",
746 blk.flag & NCB_BK_F_FIN ? "F" : "-", blk.off, blk.sz);
747 }
748}
749
750static inline int ncb_is_null_blk(const struct ncb_blk blk)
751{
752 return !blk.st;
753}
754
755static void ncb_loop(const struct ncbuf *buf)
756{
757 struct ncb_blk blk;
758
759 blk = ncb_blk_first(buf);
760 do {
761 ncb_print_blk(blk);
762 blk = ncb_blk_next(buf, blk);
763 } while (!ncb_is_null_blk(blk));
764
765 ncbuf_printf("\n");
766}
767
768static void ncbuf_print_buf(struct ncbuf *b, ncb_sz_t len,
769 unsigned char *area, int line)
770{
771 int i;
772
773 ncbuf_printf("buffer status at line %d\n", line);
774 for (i = 0; i < len; ++i) {
775 ncbuf_printf("%02x.", area[i]);
776 if (i && i % 32 == 31) ncbuf_printf("\n");
777 else if (i && i % 8 == 7) ncbuf_printf(" ");
778 }
779 ncbuf_printf("\n");
780
781 ncb_loop(b);
782
783 if (ncb_print)
784 getchar();
785}
786
787static struct ncbuf b;
788static unsigned char *bufarea = NULL;
789static ncb_sz_t bufsize = 16384;
790static ncb_sz_t bufhead = 15;
791
792#define NCB_INIT(buf) \
793 if ((reset)) { memset(bufarea, 0xaa, bufsize); } \
794 ncb_init(buf, bufhead); \
795 ncbuf_print_buf(&b, bufsize, bufarea, __LINE__);
796
797#define NCB_ADD_EQ(buf, off, data, sz, mode, ret) \
798 BUG_ON(ncb_add((buf), (off), (data), (sz), (mode)) != (ret)); \
799 ncbuf_print_buf(buf, bufsize, bufarea, __LINE__);
800
801#define NCB_ADD_NEQ(buf, off, data, sz, mode, ret) \
802 BUG_ON(ncb_add((buf), (off), (data), (sz), (mode)) == (ret)); \
803 ncbuf_print_buf(buf, bufsize, bufarea, __LINE__);
804
805#define NCB_ADVANCE_EQ(buf, off, ret) \
806 BUG_ON(ncb_advance((buf), (off)) != (ret)); \
807 ncbuf_print_buf(buf, bufsize, bufarea, __LINE__);
808
809#define NCB_TOTAL_DATA_EQ(buf, data) \
810 BUG_ON(ncb_total_data((buf)) != (data));
811
812#define NCB_DATA_EQ(buf, off, data) \
813 BUG_ON(ncb_data((buf), (off)) != (data));
814
815static int ncbuf_test(ncb_sz_t head, int reset, int print_delay)
816{
817 char *data0, data1[] = { 0x00, 0x01, 0x02, 0x03, 0x04, 0x05, 0x06, 0x07, 0x08, 0x09, 0x0a, 0x0b, 0x0c, 0x0d, 0x0e, 0x0f };
818 struct list list = LIST_HEAD_INIT(list);
819 struct rand_off *roff, *roff_tmp;
820 enum ncb_ret ret;
821
822 data0 = malloc(bufsize);
823 memset(data0, 0xff, bufsize);
824
825 bufarea = malloc(bufsize);
826
Amaury Denoyelle48fbad42022-05-16 11:09:29 +0200827 fprintf(stderr, "running unit tests\n");
828
829 b = NCBUF_NULL;
830 BUG_ON(!ncb_is_null(&b));
831 NCB_DATA_EQ(&b, 0, 0);
832 NCB_TOTAL_DATA_EQ(&b, 0);
833 BUG_ON(ncb_size(&b) != 0);
834 BUG_ON(!ncb_is_empty(&b));
835 BUG_ON(ncb_is_full(&b));
836
Amaury Denoyellef46393a2022-05-16 11:09:05 +0200837 b.area = (char *)bufarea;
Amaury Denoyelleeeeeed42022-05-04 16:51:19 +0200838 b.size = bufsize;
839 b.head = head;
840 NCB_INIT(&b);
841
Amaury Denoyelleeeeeed42022-05-04 16:51:19 +0200842 /* insertion test suite */
843 NCB_INIT(&b);
844 NCB_DATA_EQ(&b, 0, 0); NCB_DATA_EQ(&b, bufsize - NCB_RESERVED_SZ - 1, 0); /* first and last offset */
845 NCB_ADD_EQ(&b, 24, data0, 9, NCB_ADD_PRESERVE, NCB_RET_OK); NCB_DATA_EQ(&b, 24, 9);
846 /* insert new data at the same offset as old */
847 NCB_ADD_EQ(&b, 24, data0, 16, NCB_ADD_PRESERVE, NCB_RET_OK); NCB_DATA_EQ(&b, 24, 16);
848
849 NCB_INIT(&b); NCB_DATA_EQ(&b, 0, 0);
850 NCB_ADD_EQ(&b, 0, data0, 16, NCB_ADD_PRESERVE, NCB_RET_OK); NCB_DATA_EQ(&b, 0, 16);
851 NCB_ADD_EQ(&b, 24, data0, 16, NCB_ADD_PRESERVE, NCB_RET_OK); NCB_DATA_EQ(&b, 0, 16);
852 /* insert data overlapping two data blocks and a gap */
853 NCB_ADD_EQ(&b, 12, data0, 16, NCB_ADD_PRESERVE, NCB_RET_OK); NCB_DATA_EQ(&b, 0, 40);
854
855 NCB_INIT(&b);
856 NCB_ADD_EQ(&b, 32, data0, 16, NCB_ADD_PRESERVE, NCB_RET_OK); NCB_DATA_EQ(&b, 0, 0); NCB_DATA_EQ(&b, 16, 0); NCB_DATA_EQ(&b, 32, 16);
857 NCB_ADD_EQ(&b, 0, data0, 16, NCB_ADD_PRESERVE, NCB_RET_OK); NCB_DATA_EQ(&b, 0, 16); NCB_DATA_EQ(&b, 16, 0); NCB_DATA_EQ(&b, 32, 16);
858 /* insert data to exactly cover a gap between two data blocks */
859 NCB_ADD_EQ(&b, 16, data0, 16, NCB_ADD_PRESERVE, NCB_RET_OK); NCB_DATA_EQ(&b, 0, 48); NCB_DATA_EQ(&b, 16, 32); NCB_DATA_EQ(&b, 32, 16);
860
861 NCB_INIT(&b);
862 NCB_ADD_EQ(&b, 0, data0, 8, NCB_ADD_PRESERVE, NCB_RET_OK);
863 /* this insertion must be rejected because of minimal gap size */
864 NCB_ADD_EQ(&b, 10, data0, 8, NCB_ADD_PRESERVE, NCB_RET_GAP_SIZE);
865
866 /* Test reduced gap support */
867 NCB_INIT(&b);
868 /* this insertion will form a reduced gap */
869 NCB_ADD_EQ(&b, 0, data0, bufsize - (NCB_GAP_MIN_SZ - 1), NCB_ADD_COMPARE, NCB_RET_OK);
870
871 /* Test the various insertion mode */
872 NCB_INIT(&b);
873 NCB_ADD_EQ(&b, 10, data1, 16, NCB_ADD_PRESERVE, NCB_RET_OK);
874 NCB_ADD_EQ(&b, 12, data1, 16, NCB_ADD_COMPARE, NCB_RET_DATA_REJ);
875 NCB_ADD_EQ(&b, 12, data1, 16, NCB_ADD_PRESERVE, NCB_RET_OK); BUG_ON(*ncb_peek(&b, 12) != data1[2]);
876 NCB_ADD_EQ(&b, 12, data1, 16, NCB_ADD_OVERWRT, NCB_RET_OK); BUG_ON(*ncb_peek(&b, 12) == data1[2]);
877
878 /* advance test suite */
879 NCB_INIT(&b);
880 NCB_ADVANCE_EQ(&b, 10, NCB_RET_OK); /* advance in an empty buffer; this ensures we do not leave an empty DATA in the middle of the buffer */
881 NCB_ADVANCE_EQ(&b, ncb_size(&b) - 2, NCB_RET_OK);
882
883 NCB_INIT(&b);
884 /* first fill the buffer */
885 NCB_ADD_EQ(&b, 0, data0, bufsize - NCB_RESERVED_SZ, NCB_ADD_COMPARE, NCB_RET_OK);
886 /* delete 2 bytes : a reduced gap must be created */
887 NCB_ADVANCE_EQ(&b, 2, NCB_RET_OK); NCB_TOTAL_DATA_EQ(&b, ncb_size(&b) - 2);
888 /* delete 1 byte : extend the reduced gap */
889 NCB_ADVANCE_EQ(&b, 1, NCB_RET_OK); NCB_TOTAL_DATA_EQ(&b, ncb_size(&b) - 3);
890 /* delete 5 bytes : a full gap must be present */
891 NCB_ADVANCE_EQ(&b, 5, NCB_RET_OK); NCB_TOTAL_DATA_EQ(&b, ncb_size(&b) - 8);
892 /* completely clear the buffer */
893 NCB_ADVANCE_EQ(&b, bufsize - NCB_RESERVED_SZ, NCB_RET_OK); NCB_TOTAL_DATA_EQ(&b, 0);
894
895
896 NCB_INIT(&b);
897 NCB_ADD_EQ(&b, 10, data0, 10, NCB_ADD_PRESERVE, NCB_RET_OK);
898 NCB_ADVANCE_EQ(&b, 2, NCB_RET_OK); /* reduce a gap in front of the buffer */
899 NCB_ADVANCE_EQ(&b, 1, NCB_RET_GAP_SIZE); /* reject */
900 NCB_ADVANCE_EQ(&b, 8, NCB_RET_OK); /* remove completely the gap */
901 NCB_ADVANCE_EQ(&b, 8, NCB_RET_OK); /* remove inside the data */
902 NCB_ADVANCE_EQ(&b, 10, NCB_RET_OK); /* remove completely the data */
903
904 fprintf(stderr, "first random pass\n");
905 NCB_INIT(&b);
906
907 /* generate randon data offsets until the buffer is full */
908 while (!ncb_is_full(&b)) {
909 roff = ncb_generate_rand_off(&b);
910 LIST_INSERT(&list, &roff->el);
911
912 ret = ncb_add(&b, roff->off, data0, roff->len, NCB_ADD_COMPARE);
913 BUG_ON(ret == NCB_RET_DATA_REJ);
914 ncbuf_print_buf(&b, bufsize, bufarea, __LINE__);
915 usleep(print_delay);
916 }
917
918 fprintf(stderr, "buf full, prepare for reverse random\n");
919 ncbuf_print_buf(&b, bufsize, bufarea, __LINE__);
920
921 /* insert the previously generated random offsets in the reverse order.
922 * At the end, the buffer should be full.
923 */
924 NCB_INIT(&b);
925 list_for_each_entry_safe(roff, roff_tmp, &list, el) {
926 int full = ncb_is_full(&b);
927 if (!full) {
928 ret = ncb_add(&b, roff->off, data0, roff->len, NCB_ADD_COMPARE);
929 BUG_ON(ret == NCB_RET_DATA_REJ);
930 ncbuf_print_buf(&b, bufsize, bufarea, __LINE__);
931 usleep(print_delay);
932 }
933
934 LIST_DELETE(&roff->el);
935 free(roff);
936 }
937
938 if (!ncb_is_full(&b))
939 abort();
940
941 fprintf(stderr, "done\n");
942
943 free(bufarea);
944 free(data0);
945
946 return 1;
947}
948
949int main(int argc, char **argv)
950{
951 int reset = 0;
952 int print_delay = 100000;
953 char c;
954
955 opterr = 0;
956 while ((c = getopt(argc, argv, "h:s:rp::")) != -1) {
957 switch (c) {
958 case 'h':
959 bufhead = atoi(optarg);
960 break;
961 case 's':
962 bufsize = atoi(optarg);
963 if (bufsize < 64) {
964 fprintf(stderr, "bufsize should be at least 64 bytes for unit test suite\n");
965 exit(127);
966 }
967 break;
968 case 'r':
969 reset = 1;
970 break;
971 case 'p':
972 if (optarg)
973 print_delay = atoi(optarg);
974 ncb_print = 1;
975 break;
976 case '?':
977 default:
978 fprintf(stderr, "usage: %s [-r] [-s bufsize] [-h bufhead] [-p <delay_msec>]\n", argv[0]);
979 exit(127);
980 }
981 }
982
983 ncbuf_test(bufhead, reset, print_delay);
984 return EXIT_SUCCESS;
985}
986
987#endif /* STANDALONE */