forked from archiecobbs/s3backer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
ec_protect.c
645 lines (564 loc) · 22.3 KB
/
ec_protect.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
/*
* s3backer - FUSE-based single file backing store via Amazon S3
*
* Copyright 2008-2011 Archie L. Cobbs <[email protected]>
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public License
* as published by the Free Software Foundation; either version 2
* of the License, or (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
* 02110-1301, USA.
*/
#include "s3backer.h"
#include "ec_protect.h"
#include "block_part.h"
#include "hash.h"
/*
* Written block information caching.
*
* The purpose of this is to minimize problems from the weak guarantees provided
* by S3's "eventual consistency". We do this by:
*
* (a) Enforcing a minimum delay between the completion of one PUT/DELETE
* of a block and the initiation of the next PUT/DELETE of the same block
* (b) Caching the MD5 checksum of every block written for some minimum time
* and verifying that data returned from subsequent GETs is correct.
*
* These are the relevant configuration parameters:
*
* min_write_delay
* Minimum time delay after a PUT/DELETE completes before the next PUT/DELETE
* can be initiated.
* cache_time
* How long after writing a block we'll remember its MD5 checksum. This
* must be at least as long as min_write_delay. Zero means infinity.
* cache_size
* Maximum number of blocks we'll track at one time. When table
* is full, additional writes will block.
*
* Blocks we are currently tracking can be in the following states:
*
* State Meaning Hash table List Other invariants
* ----- ------- ---------- ---- ----------------
*
* CLEAN initial state No No
* WRITING currently being written Yes No timestamp == 0, u.data valid
* WRITTEN written and MD5 cached Yes Yes timestamp != 0, u.md5 valid
*
* The steady state for a block is CLEAN. WRITING means the block is currently
* being sent; concurrent attempts to write will simply sleep until the first one
* finishes. WRITTEN is where you go after successfully writing a block. The WRITTEN
* state will timeout (and the entry revert to CLEAN) after cache_time.
*
* If another attempt to write a block in the WRITTEN state occurs occurs before
* min_write_delay has elapsed, the second attempt will sleep.
*
* In the WRITING state, we have the data still so any reads are local. In the WRITTEN
* state we don't have the data but we do know its MD5, so therefore we can verify what
* comes back; if it doesn't verify, we retry as we would with any other error.
*
* If we hit the 'cache_size' limit, we sleep a little while and then try again.
*
* We keep track of blocks in 'struct block_info' structures. These structures
* are themselves tracked in both (a) a linked list and (b) a hash table.
*
* The hash table contains all structures, and is keyed by block number. This
* is simply so we can quickly find the structure associated with a specific block.
*
* The linked list contains WRITTEN blocks, and is sorted in increasing order by timestamp,
* so the entries that will expire first are at the front of the list.
*/
struct block_info {
s3b_block_t block_num; // block number - MUST BE FIRST
uint64_t timestamp; // time PUT/DELETE completed (if WRITTEN)
TAILQ_ENTRY(block_info) link; // list entry link
union {
const void *data; // blocks actual content (if WRITING)
u_char md5[MD5_DIGEST_LENGTH]; // block's content MD5 (if WRITTEN)
} u;
};
/* Internal state */
struct ec_protect_private {
struct ec_protect_conf *config;
struct s3backer_store *inner;
struct ec_protect_stats stats;
struct s3b_hash *hashtable;
u_int num_sleepers; // count of sleeping threads
TAILQ_HEAD(, block_info) list;
pthread_mutex_t mutex;
pthread_cond_t space_cond; // signaled when cache space available
pthread_cond_t sleepers_cond; // signaled when no more threads are sleeping
pthread_cond_t never_cond; // never signaled; used for sleeping only
};
/* Callback info */
struct cbinfo {
block_list_func_t *callback;
void *arg;
};
/* s3backer_store functions */
static int ec_protect_meta_data(struct s3backer_store *s3b, off_t *file_sizep, u_int *block_sizep);
static int ec_protect_set_mounted(struct s3backer_store *s3b, int *old_valuep, int new_value);
static int ec_protect_read_block(struct s3backer_store *s3b, s3b_block_t block_num, void *dest,
u_char *actual_md5, const u_char *expect_md5, int strict);
static int ec_protect_write_block(struct s3backer_store *s3b, s3b_block_t block_num, const void *src, u_char *md5,
check_cancel_t *check_cancel, void *check_cancel_arg);
static int ec_protect_read_block_part(struct s3backer_store *s3b, s3b_block_t block_num, u_int off, u_int len, void *dest);
static int ec_protect_write_block_part(struct s3backer_store *s3b, s3b_block_t block_num, u_int off, u_int len, const void *src);
static int ec_protect_flush(struct s3backer_store *s3b);
static void ec_protect_destroy(struct s3backer_store *s3b);
/* Misc */
static uint64_t ec_protect_sleep_until(struct ec_protect_private *priv, pthread_cond_t *cond, uint64_t wake_time_millis);
static void ec_protect_scrub_expired_writtens(struct ec_protect_private *priv, uint64_t current_time);
static uint64_t ec_protect_get_time(void);
static int ec_protect_list_blocks(struct s3backer_store *s3b, block_list_func_t *callback, void *arg);
static void ec_protect_dirty_callback(void *arg, void *value);
static void ec_protect_free_one(void *arg, void *value);
/* Invariants checking */
#ifndef NDEBUG
static void ec_protect_check_one(void *arg, void *value);
static void ec_protect_check_invariants(struct ec_protect_private *priv);
#define EC_PROTECT_CHECK_INVARIANTS(priv) ec_protect_check_invariants(priv)
#else
#define EC_PROTECT_CHECK_INVARIANTS(priv) do { } while (0)
#endif
/* Special all-zeroes MD5 value signifying a zeroed block */
static const u_char zero_md5[MD5_DIGEST_LENGTH];
/*
* Constructor
*
* On error, returns NULL and sets `errno'.
*/
struct s3backer_store *
ec_protect_create(struct ec_protect_conf *config, struct s3backer_store *inner)
{
struct s3backer_store *s3b;
struct ec_protect_private *priv;
int r;
/* Initialize structures */
if ((s3b = calloc(1, sizeof(*s3b))) == NULL) {
r = errno;
(*config->log)(LOG_ERR, "calloc(): %s", strerror(r));
goto fail0;
}
s3b->meta_data = ec_protect_meta_data;
s3b->set_mounted = ec_protect_set_mounted;
s3b->read_block = ec_protect_read_block;
s3b->write_block = ec_protect_write_block;
s3b->read_block_part = ec_protect_read_block_part;
s3b->write_block_part = ec_protect_write_block_part;
s3b->list_blocks = ec_protect_list_blocks;
s3b->flush = ec_protect_flush;
s3b->destroy = ec_protect_destroy;
if ((priv = calloc(1, sizeof(*priv))) == NULL) {
r = errno;
(*config->log)(LOG_ERR, "calloc(): %s", strerror(r));
goto fail1;
}
priv->config = config;
priv->inner = inner;
if ((r = pthread_mutex_init(&priv->mutex, NULL)) != 0)
goto fail2;
if ((r = pthread_cond_init(&priv->space_cond, NULL)) != 0)
goto fail3;
if ((r = pthread_cond_init(&priv->sleepers_cond, NULL)) != 0)
goto fail4;
if ((r = pthread_cond_init(&priv->never_cond, NULL)) != 0)
goto fail5;
TAILQ_INIT(&priv->list);
if ((r = s3b_hash_create(&priv->hashtable, config->cache_size)) != 0)
goto fail6;
s3b->data = priv;
/* Done */
EC_PROTECT_CHECK_INVARIANTS(priv);
return s3b;
fail6:
pthread_cond_destroy(&priv->never_cond);
fail5:
pthread_cond_destroy(&priv->sleepers_cond);
fail4:
pthread_cond_destroy(&priv->space_cond);
fail3:
pthread_mutex_destroy(&priv->mutex);
fail2:
free(priv);
fail1:
free(s3b);
fail0:
(*config->log)(LOG_ERR, "ec_protect creation failed: %s", strerror(r));
errno = r;
return NULL;
}
static int
ec_protect_meta_data(struct s3backer_store *s3b, off_t *file_sizep, u_int *block_sizep)
{
struct ec_protect_private *const priv = s3b->data;
return (*priv->inner->meta_data)(priv->inner, file_sizep, block_sizep);
}
static int
ec_protect_set_mounted(struct s3backer_store *s3b, int *old_valuep, int new_value)
{
struct ec_protect_private *const priv = s3b->data;
return (*priv->inner->set_mounted)(priv->inner, old_valuep, new_value);
}
static int
ec_protect_flush(struct s3backer_store *const s3b)
{
struct ec_protect_private *const priv = s3b->data;
/* Grab lock and sanity check */
pthread_mutex_lock(&priv->mutex);
EC_PROTECT_CHECK_INVARIANTS(priv);
/* Wait for all sleeping writers to finish */
while (priv->num_sleepers > 0)
pthread_cond_wait(&priv->sleepers_cond, &priv->mutex);
/* Release lock */
pthread_mutex_unlock(&priv->mutex);
return 0;
}
static void
ec_protect_destroy(struct s3backer_store *const s3b)
{
struct ec_protect_private *const priv = s3b->data;
/* Grab lock and sanity check */
pthread_mutex_lock(&priv->mutex);
EC_PROTECT_CHECK_INVARIANTS(priv);
/* Wait for all sleeping writers to finish */
while (priv->num_sleepers > 0)
pthread_cond_wait(&priv->sleepers_cond, &priv->mutex);
/* Destroy inner store */
(*priv->inner->destroy)(priv->inner);
/* Free structures */
pthread_mutex_destroy(&priv->mutex);
pthread_cond_destroy(&priv->space_cond);
pthread_cond_destroy(&priv->sleepers_cond);
pthread_cond_destroy(&priv->never_cond);
s3b_hash_foreach(priv->hashtable, ec_protect_free_one, NULL);
s3b_hash_destroy(priv->hashtable);
free(priv);
free(s3b);
}
void
ec_protect_get_stats(struct s3backer_store *s3b, struct ec_protect_stats *stats)
{
struct ec_protect_private *const priv = s3b->data;
pthread_mutex_lock(&priv->mutex);
memcpy(stats, &priv->stats, sizeof(*stats));
stats->current_cache_size = s3b_hash_size(priv->hashtable);
pthread_mutex_unlock(&priv->mutex);
}
static int
ec_protect_list_blocks(struct s3backer_store *s3b, block_list_func_t *callback, void *arg)
{
struct ec_protect_private *const priv = s3b->data;
struct cbinfo cbinfo;
int r;
if ((r = (*priv->inner->list_blocks)(priv->inner, callback, arg)) != 0)
return r;
cbinfo.callback = callback;
cbinfo.arg = arg;
pthread_mutex_lock(&priv->mutex);
s3b_hash_foreach(priv->hashtable, ec_protect_dirty_callback, &cbinfo);
pthread_mutex_unlock(&priv->mutex);
return 0;
}
static int
ec_protect_read_block(struct s3backer_store *const s3b, s3b_block_t block_num, void *dest,
u_char *actual_md5, const u_char *expect_md5, int strict)
{
struct ec_protect_private *const priv = s3b->data;
struct ec_protect_conf *const config = priv->config;
u_char md5[MD5_DIGEST_LENGTH];
struct block_info *binfo;
/* Sanity check */
if (config->block_size == 0)
return EINVAL;
/* Grab lock and sanity check */
pthread_mutex_lock(&priv->mutex);
EC_PROTECT_CHECK_INVARIANTS(priv);
/* Scrub the list of WRITTENs */
ec_protect_scrub_expired_writtens(priv, ec_protect_get_time());
/* Find info for this block */
if ((binfo = s3b_hash_get(priv->hashtable, block_num)) != NULL) {
/* In WRITING state: we have the data already! */
if (binfo->timestamp == 0) {
if (binfo->u.data == NULL)
memset(dest, 0, config->block_size);
else
memcpy(dest, binfo->u.data, config->block_size);
if (actual_md5 != NULL)
memset(actual_md5, 0, MD5_DIGEST_LENGTH); // we don't know it yet!
priv->stats.cache_data_hits++;
pthread_mutex_unlock(&priv->mutex);
return 0;
}
/* In WRITTEN state: special case: zero block */
if (memcmp(binfo->u.md5, zero_md5, MD5_DIGEST_LENGTH) == 0) {
if (expect_md5 != NULL && strict && memcmp(expect_md5, zero_md5, MD5_DIGEST_LENGTH) != 0)
(*config->log)(LOG_ERR, "ec_protect_read_block(): impossible expected MD5?");
memset(dest, 0, config->block_size);
if (actual_md5 != NULL)
memset(actual_md5, 0, MD5_DIGEST_LENGTH);
priv->stats.cache_data_hits++;
pthread_mutex_unlock(&priv->mutex);
return 0;
}
/* In WRITTEN state: we know the expected MD5 */
memcpy(md5, binfo->u.md5, MD5_DIGEST_LENGTH);
if (expect_md5 != NULL && strict && memcmp(md5, expect_md5, MD5_DIGEST_LENGTH) != 0)
(*config->log)(LOG_ERR, "ec_protect_read_block(): impossible expected MD5?");
expect_md5 = md5;
strict = 1;
}
/* Release lock */
pthread_mutex_unlock(&priv->mutex);
/* Read block normally */
return (*priv->inner->read_block)(priv->inner, block_num, dest, actual_md5, expect_md5, strict);
}
static int
ec_protect_write_block(struct s3backer_store *const s3b, s3b_block_t block_num, const void *src, u_char *caller_md5,
check_cancel_t *check_cancel, void *check_cancel_arg)
{
struct ec_protect_private *const priv = s3b->data;
struct ec_protect_conf *const config = priv->config;
u_char md5[MD5_DIGEST_LENGTH];
struct block_info *binfo;
uint64_t current_time;
uint64_t delay;
int r;
/* Sanity check */
if (config->block_size == 0)
return EINVAL;
/* Grab lock */
pthread_mutex_lock(&priv->mutex);
again:
/* Sanity check */
EC_PROTECT_CHECK_INVARIANTS(priv);
/* Scrub the list of WRITTENs */
current_time = ec_protect_get_time();
ec_protect_scrub_expired_writtens(priv, current_time);
/* Find info for this block */
binfo = s3b_hash_get(priv->hashtable, block_num);
/* CLEAN case: add new entry in state WRITING and write the block */
if (binfo == NULL) {
/* If we have reached max cache capacity, wait until there's more room */
if (s3b_hash_size(priv->hashtable) >= config->cache_size) {
/* Report deadlock situation */
if (config->cache_time == 0)
(*config->log)(LOG_ERR, "md5 cache is full, but timeout is infinite: you have write deadlock!");
/* Sleep until space becomes available */
if ((binfo = TAILQ_FIRST(&priv->list)) != NULL && config->cache_time > 0)
delay = ec_protect_sleep_until(priv, &priv->space_cond, binfo->timestamp + config->cache_time);
else
delay = ec_protect_sleep_until(priv, &priv->space_cond, 0); /* sleep indefinitely... */
priv->stats.cache_full_delay += delay;
goto again;
}
/* Create new entry in WRITING state */
if ((binfo = calloc(1, sizeof(*binfo))) == NULL) {
r = errno;
(*config->log)(LOG_ERR, "can't alloc new MD5 cache entry: %s", strerror(r));
priv->stats.out_of_memory_errors++;
pthread_mutex_unlock(&priv->mutex);
return r;
}
binfo->block_num = block_num;
binfo->u.data = src;
s3b_hash_put_new(priv->hashtable, binfo);
writeit:
/* Write the block */
pthread_mutex_unlock(&priv->mutex);
r = (*priv->inner->write_block)(priv->inner, block_num, src, md5, check_cancel, check_cancel_arg);
pthread_mutex_lock(&priv->mutex);
EC_PROTECT_CHECK_INVARIANTS(priv);
/* If there was an error, just return it and forget */
if (r != 0) {
s3b_hash_remove(priv->hashtable, block_num);
pthread_cond_signal(&priv->space_cond);
pthread_mutex_unlock(&priv->mutex);
free(binfo);
return r;
}
/*
* Wake up at least one thread that might be sleeping indefinitely (see above). This handles an obscure
* case where the cache is full and every entry is in the WRITING state. The next thread that attempts
* to write could be stuck waiting indefinitely unless we wake it up here.
*/
pthread_cond_signal(&priv->space_cond);
/* Move to state WRITTEN */
binfo->timestamp = ec_protect_get_time();
memcpy(binfo->u.md5, md5, MD5_DIGEST_LENGTH);
TAILQ_INSERT_TAIL(&priv->list, binfo, link);
pthread_mutex_unlock(&priv->mutex);
/* Copy expected MD5 for caller */
if (caller_md5 != NULL)
memcpy(caller_md5, md5, MD5_DIGEST_LENGTH);
return 0;
}
/*
* WRITING case: wait until current write completes (hmm, why is kernel doing overlapping writes?).
* Since we know after current write completes we'll have to wait another 'min_write_time' milliseconds
* anyway, we conservatively just wait exactly that long now. There may be an extra wakeup or two,
* but that's OK.
*/
if (binfo->timestamp == 0) {
delay = ec_protect_sleep_until(priv, NULL, current_time + config->min_write_delay);
priv->stats.repeated_write_delay += delay;
goto again;
}
/*
* WRITTEN case: wait until at least 'min_write_time' milliseconds has passed since previous write.
*/
if (current_time < binfo->timestamp + config->min_write_delay) {
delay = ec_protect_sleep_until(priv, NULL, binfo->timestamp + config->min_write_delay);
priv->stats.repeated_write_delay += delay;
goto again;
}
/*
* WRITTEN case: 'min_write_time' milliseconds have indeed passed, so go back to WRITING.
*/
binfo->timestamp = 0;
binfo->u.data = src;
TAILQ_REMOVE(&priv->list, binfo, link);
goto writeit;
}
static int
ec_protect_read_block_part(struct s3backer_store *s3b, s3b_block_t block_num, u_int off, u_int len, void *dest)
{
struct ec_protect_private *const priv = s3b->data;
struct ec_protect_conf *const config = priv->config;
return block_part_read_block_part(s3b, block_num, config->block_size, off, len, dest);
}
static int
ec_protect_write_block_part(struct s3backer_store *s3b, s3b_block_t block_num, u_int off, u_int len, const void *src)
{
struct ec_protect_private *const priv = s3b->data;
struct ec_protect_conf *const config = priv->config;
return block_part_write_block_part(s3b, block_num, config->block_size, off, len, src);
}
/*
* Return current time in milliseconds.
*/
static uint64_t
ec_protect_get_time(void)
{
struct timeval tv;
gettimeofday(&tv, NULL);
return (uint64_t)tv.tv_sec * 1000 + (uint64_t)tv.tv_usec / 1000;
}
/*
* Remove expired WRITTEN entries from the list.
* This assumes the mutex is held.
*/
static void
ec_protect_scrub_expired_writtens(struct ec_protect_private *priv, uint64_t current_time)
{
struct ec_protect_conf *const config = priv->config;
struct block_info *binfo;
int num_removed = 0;
if (config->cache_time > 0) {
while ((binfo = TAILQ_FIRST(&priv->list)) != NULL && current_time >= binfo->timestamp + config->cache_time) {
TAILQ_REMOVE(&priv->list, binfo, link);
s3b_hash_remove(priv->hashtable, binfo->block_num);
free(binfo);
num_removed++;
}
}
switch (num_removed) {
case 0:
break;
case 1:
pthread_cond_signal(&priv->space_cond);
break;
default:
pthread_cond_broadcast(&priv->space_cond);
break;
}
}
/*
* Sleep until specified time (if non-zero) or condition (if non-NULL).
* Note: in rare cases there can be spurious early wakeups.
* Returns number of milliseconds slept.
*
* This assumes the mutex is locked.
*/
static uint64_t
ec_protect_sleep_until(struct ec_protect_private *priv, pthread_cond_t *cond, uint64_t wake_time_millis)
{
uint64_t time_before;
uint64_t time_after;
assert(cond != NULL || wake_time_millis != 0);
if (cond == NULL)
cond = &priv->never_cond;
time_before = ec_protect_get_time();
priv->num_sleepers++;
if (wake_time_millis != 0) {
struct timespec wake_time;
wake_time.tv_sec = wake_time_millis / 1000;
wake_time.tv_nsec = (wake_time_millis % 1000) * 1000000;
if (pthread_cond_timedwait(cond, &priv->mutex, &wake_time) == ETIMEDOUT)
time_after = wake_time_millis;
else
time_after = ec_protect_get_time();
} else {
pthread_cond_wait(cond, &priv->mutex);
time_after = ec_protect_get_time();
}
assert(priv->num_sleepers > 0);
if (--priv->num_sleepers == 0)
pthread_cond_broadcast(&priv->sleepers_cond);
return time_after - time_before;
}
static void
ec_protect_free_one(void *arg, void *value)
{
free(value);
}
static void
ec_protect_dirty_callback(void *arg, void *value)
{
struct cbinfo *const cbinfo = arg;
struct block_info *const binfo = value;
if (binfo->timestamp == 0 ? binfo->u.data != NULL : memcmp(binfo->u.md5, zero_md5, MD5_DIGEST_LENGTH) != 0)
(*cbinfo->callback)(cbinfo->arg, binfo->block_num);
}
#ifndef NDEBUG
/* Accounting structure */
struct check_info {
u_int num_in_list;
u_int written;
u_int writing;
};
static void
ec_protect_check_one(void *arg, void *value)
{
struct block_info *const binfo = value;
struct check_info *const info = arg;
if (binfo->timestamp == 0)
info->writing++;
else
info->written++;
}
static void
ec_protect_check_invariants(struct ec_protect_private *priv)
{
struct block_info *binfo;
struct check_info info;
memset(&info, 0, sizeof(info));
for (binfo = TAILQ_FIRST(&priv->list); binfo != NULL; binfo = TAILQ_NEXT(binfo, link)) {
assert(binfo->timestamp != 0);
assert(s3b_hash_get(priv->hashtable, binfo->block_num) == binfo);
info.num_in_list++;
}
s3b_hash_foreach(priv->hashtable, ec_protect_check_one, &info);
assert(info.written == info.num_in_list);
assert(info.written + info.writing == s3b_hash_size(priv->hashtable));
}
#endif