]> git.ozlabs.org Git - ccan/blob - ccan/tdb2/free.c
tdb2: Add stats attribute.
[ccan] / ccan / tdb2 / free.c
1  /* 
2    Trivial Database 2: free list/block handling
3    Copyright (C) Rusty Russell 2010
4    
5    This library is free software; you can redistribute it and/or
6    modify it under the terms of the GNU Lesser General Public
7    License as published by the Free Software Foundation; either
8    version 3 of the License, or (at your option) any later version.
9
10    This library is distributed in the hope that it will be useful,
11    but WITHOUT ANY WARRANTY; without even the implied warranty of
12    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
13    Lesser General Public License for more details.
14
15    You should have received a copy of the GNU Lesser General Public
16    License along with this library; if not, see <http://www.gnu.org/licenses/>.
17 */
18 #include "private.h"
19 #include <ccan/likely/likely.h>
20 #include <ccan/ilog/ilog.h>
21 #include <time.h>
22 #include <assert.h>
23 #include <limits.h>
24
25 static unsigned fls64(uint64_t val)
26 {
27         return ilog64(val);
28 }
29
30 /* In which bucket would we find a particular record size? (ignoring header) */
31 unsigned int size_to_bucket(tdb_len_t data_len)
32 {
33         unsigned int bucket;
34
35         /* We can't have records smaller than this. */
36         assert(data_len >= TDB_MIN_DATA_LEN);
37
38         /* Ignoring the header... */
39         if (data_len - TDB_MIN_DATA_LEN <= 64) {
40                 /* 0 in bucket 0, 8 in bucket 1... 64 in bucket 8. */
41                 bucket = (data_len - TDB_MIN_DATA_LEN) / 8;
42         } else {
43                 /* After that we go power of 2. */
44                 bucket = fls64(data_len - TDB_MIN_DATA_LEN) + 2;
45         }
46
47         if (unlikely(bucket >= TDB_FREE_BUCKETS))
48                 bucket = TDB_FREE_BUCKETS - 1;
49         return bucket;
50 }
51
52 tdb_off_t first_flist(struct tdb_context *tdb)
53 {
54         return tdb_read_off(tdb, offsetof(struct tdb_header, free_list));
55 }
56
57 tdb_off_t next_flist(struct tdb_context *tdb, tdb_off_t flist)
58 {
59         return tdb_read_off(tdb, flist + offsetof(struct tdb_freelist, next));
60 }
61
62 int tdb_flist_init(struct tdb_context *tdb)
63 {
64         /* Use reservoir sampling algorithm to select a free list at random. */
65         unsigned int rnd, max = 0, count = 0;
66         tdb_off_t off;
67
68         tdb->flist_off = off = first_flist(tdb);
69         tdb->flist = 0;
70
71         while (off) {
72                 if (off == TDB_OFF_ERR)
73                         return -1;
74
75                 rnd = random();
76                 if (rnd >= max) {
77                         tdb->flist_off = off;
78                         tdb->flist = count;
79                         max = rnd;
80                 }
81
82                 off = next_flist(tdb, off);
83                 count++;
84         }
85         return 0;
86 }
87
88 /* Offset of a given bucket. */
89 tdb_off_t bucket_off(tdb_off_t flist_off, unsigned bucket)
90 {
91         return flist_off + offsetof(struct tdb_freelist, buckets)
92                 + bucket * sizeof(tdb_off_t);
93 }
94
95 /* Returns free_buckets + 1, or list number to search. */
96 static tdb_off_t find_free_head(struct tdb_context *tdb,
97                                 tdb_off_t flist_off,
98                                 tdb_off_t bucket)
99 {
100         /* Speculatively search for a non-zero bucket. */
101         return tdb_find_nonzero_off(tdb, bucket_off(flist_off, 0),
102                                     bucket, TDB_FREE_BUCKETS);
103 }
104
105 /* Remove from free bucket. */
106 static int remove_from_list(struct tdb_context *tdb,
107                             tdb_off_t b_off, tdb_off_t r_off,
108                             struct tdb_free_record *r)
109 {
110         tdb_off_t off;
111
112         /* Front of list? */
113         if (frec_prev(r) == 0) {
114                 off = b_off;
115         } else {
116                 off = frec_prev(r) + offsetof(struct tdb_free_record, next);
117         }
118
119 #ifdef DEBUG
120         if (tdb_read_off(tdb, off) != r_off) {
121                 tdb->log(tdb, TDB_DEBUG_FATAL, tdb->log_priv,
122                          "remove_from_list: %llu bad prev in list %llu\n",
123                          (long long)r_off, (long long)b_off);
124                 return -1;
125         }
126 #endif
127
128         /* r->prev->next = r->next */
129         if (tdb_write_off(tdb, off, r->next)) {
130                 return -1;
131         }
132
133         if (r->next != 0) {
134                 off = r->next + offsetof(struct tdb_free_record,magic_and_prev);
135                 /* r->next->prev = r->prev */
136
137 #ifdef DEBUG
138                 if (tdb_read_off(tdb, off) & TDB_OFF_MASK != r_off) {
139                         tdb->log(tdb, TDB_DEBUG_FATAL, tdb->log_priv,
140                                  "remove_from_list: %llu bad list %llu\n",
141                                  (long long)r_off, (long long)b_off);
142                         return -1;
143                 }
144 #endif
145
146                 if (tdb_write_off(tdb, off, r->magic_and_prev)) {
147                         return -1;
148                 }
149         }
150         return 0;
151 }
152
153 /* Enqueue in this free bucket. */
154 static int enqueue_in_free(struct tdb_context *tdb,
155                            tdb_off_t b_off,
156                            tdb_off_t off,
157                            tdb_len_t len)
158 {
159         struct tdb_free_record new;
160         uint64_t magic = (TDB_FREE_MAGIC << (64 - TDB_OFF_UPPER_STEAL));
161
162         /* We only need to set flist_and_len; rest is set in enqueue_in_free */
163         new.flist_and_len = ((uint64_t)tdb->flist << (64 - TDB_OFF_UPPER_STEAL))
164                 | len;
165         /* prev = 0. */
166         new.magic_and_prev = magic;
167
168         /* new->next = head. */
169         new.next = tdb_read_off(tdb, b_off);
170         if (new.next == TDB_OFF_ERR)
171                 return -1;
172
173         if (new.next) {
174 #ifdef DEBUG
175                 if (tdb_read_off(tdb,
176                                  new.next + offsetof(struct tdb_free_record,
177                                                      magic_and_prev))
178                     != magic) {
179                         tdb->log(tdb, TDB_DEBUG_FATAL, tdb->log_priv,
180                                  "enqueue_in_free: %llu bad head prev %llu\n",
181                                  (long long)new.next, (long long)b_off);
182                         return -1;
183                 }
184 #endif
185                 /* next->prev = new. */
186                 if (tdb_write_off(tdb, new.next
187                                   + offsetof(struct tdb_free_record,
188                                              magic_and_prev),
189                                   off | magic) != 0)
190                         return -1;
191         }
192         /* head = new */
193         if (tdb_write_off(tdb, b_off, off) != 0)
194                 return -1;
195
196         return tdb_write_convert(tdb, off, &new, sizeof(new));
197 }
198
199 /* List need not be locked. */
200 int add_free_record(struct tdb_context *tdb,
201                     tdb_off_t off, tdb_len_t len_with_header)
202 {
203         tdb_off_t b_off;
204         tdb_len_t len;
205         int ret;
206
207         assert(len_with_header >= sizeof(struct tdb_free_record));
208
209         len = len_with_header - sizeof(struct tdb_used_record);
210
211         b_off = bucket_off(tdb->flist_off, size_to_bucket(len));
212         if (tdb_lock_free_bucket(tdb, b_off, TDB_LOCK_WAIT) != 0)
213                 return -1;
214
215         ret = enqueue_in_free(tdb, b_off, off, len);
216         tdb_unlock_free_bucket(tdb, b_off);
217         return ret;
218 }
219
220 static size_t adjust_size(size_t keylen, size_t datalen)
221 {
222         size_t size = keylen + datalen;
223
224         if (size < TDB_MIN_DATA_LEN)
225                 size = TDB_MIN_DATA_LEN;
226
227         /* Round to next uint64_t boundary. */
228         return (size + (sizeof(uint64_t) - 1ULL)) & ~(sizeof(uint64_t) - 1ULL);
229 }
230
231 /* If we have enough left over to be useful, split that off. */
232 static size_t record_leftover(size_t keylen, size_t datalen,
233                               bool want_extra, size_t total_len)
234 {
235         ssize_t leftover;
236
237         if (want_extra)
238                 datalen += datalen / 2;
239         leftover = total_len - adjust_size(keylen, datalen);
240
241         if (leftover < (ssize_t)sizeof(struct tdb_free_record))
242                 return 0;
243
244         return leftover;
245 }
246
247 /* FIXME: Shortcut common case where tdb->flist == flist */
248 static tdb_off_t flist_offset(struct tdb_context *tdb, unsigned int flist)
249 {
250         tdb_off_t off = first_flist(tdb);
251         unsigned int i;
252
253         for (i = 0; i < flist; i++)
254                 off = next_flist(tdb, off);
255         return off;
256 }
257
258 /* Note: we unlock the current bucket if we coalesce or fail. */
259 static int coalesce(struct tdb_context *tdb,
260                     tdb_off_t off, tdb_off_t b_off, tdb_len_t data_len)
261 {
262         struct tdb_free_record pad, *r;
263         tdb_off_t end;
264
265         add_stat(tdb, alloc_coalesce_tried, 1);
266         end = off + sizeof(struct tdb_used_record) + data_len;
267
268         while (end < tdb->map_size) {
269                 tdb_off_t nb_off;
270                 unsigned flist, bucket;
271
272                 /* FIXME: do tdb_get here and below really win? */
273                 r = tdb_get(tdb, end, &pad, sizeof(pad));
274                 if (!r)
275                         goto err;
276
277                 if (frec_magic(r) != TDB_FREE_MAGIC)
278                         break;
279
280                 flist = frec_flist(r);
281                 bucket = size_to_bucket(frec_len(r));
282                 nb_off = bucket_off(flist_offset(tdb, flist), bucket);
283
284                 /* We may be violating lock order here, so best effort. */
285                 if (tdb_lock_free_bucket(tdb, nb_off, TDB_LOCK_NOWAIT) == -1) {
286                         add_stat(tdb, alloc_coalesce_lockfail, 1);
287                         break;
288                 }
289
290                 /* Now we have lock, re-check. */
291                 r = tdb_get(tdb, end, &pad, sizeof(pad));
292                 if (!r) {
293                         tdb_unlock_free_bucket(tdb, nb_off);
294                         goto err;
295                 }
296
297                 if (unlikely(frec_magic(r) != TDB_FREE_MAGIC)) {
298                         add_stat(tdb, alloc_coalesce_race, 1);
299                         tdb_unlock_free_bucket(tdb, nb_off);
300                         break;
301                 }
302
303                 if (unlikely(frec_flist(r) != flist)
304                     || unlikely(size_to_bucket(frec_len(r)) != bucket)) {
305                         add_stat(tdb, alloc_coalesce_race, 1);
306                         tdb_unlock_free_bucket(tdb, nb_off);
307                         break;
308                 }
309
310                 if (remove_from_list(tdb, nb_off, end, r) == -1) {
311                         tdb_unlock_free_bucket(tdb, nb_off);
312                         goto err;
313                 }
314
315                 end += sizeof(struct tdb_used_record) + frec_len(r);
316                 tdb_unlock_free_bucket(tdb, nb_off);
317                 add_stat(tdb, alloc_coalesce_num_merged, 1);
318         }
319
320         /* Didn't find any adjacent free? */
321         if (end == off + sizeof(struct tdb_used_record) + data_len)
322                 return 0;
323
324         /* OK, expand record */
325         r = tdb_get(tdb, off, &pad, sizeof(pad));
326         if (!r)
327                 goto err;
328
329         if (frec_len(r) != data_len) {
330                 tdb->ecode = TDB_ERR_CORRUPT;
331                 tdb->log(tdb, TDB_DEBUG_FATAL, tdb->log_priv,
332                          "coalesce: expected data len %llu not %llu\n",
333                          (long long)data_len, (long long)frec_len(r));
334                 goto err;
335         }
336
337         if (remove_from_list(tdb, b_off, off, r) == -1)
338                 goto err;
339
340         r = tdb_access_write(tdb, off, sizeof(*r), true);
341         if (!r)
342                 goto err;
343
344         /* We have to drop this to avoid deadlocks, so make sure record
345          * doesn't get coalesced by someone else! */
346         r->magic_and_prev = TDB_COALESCING_MAGIC << (64 - TDB_OFF_UPPER_STEAL);
347         /* FIXME: Use 255 as invalid free list? */
348         r->flist_and_len = end - off - sizeof(struct tdb_used_record);
349         if (tdb_access_commit(tdb, r) != 0)
350                 goto err;
351
352         add_stat(tdb, alloc_coalesce_succeeded, 1);
353         tdb_unlock_free_bucket(tdb, b_off);
354
355         if (add_free_record(tdb, off, end - off) == -1)
356                 return -1;
357         return 1;
358
359 err:
360         /* To unify error paths, we *always* unlock bucket on error. */
361         tdb_unlock_free_bucket(tdb, b_off);
362         return -1;
363 }
364
365 /* We need size bytes to put our key and data in. */
366 static tdb_off_t lock_and_alloc(struct tdb_context *tdb,
367                                 tdb_off_t flist_off,
368                                 tdb_off_t bucket,
369                                 size_t keylen, size_t datalen,
370                                 bool want_extra,
371                                 unsigned hashlow)
372 {
373         tdb_off_t off, b_off,best_off;
374         struct tdb_free_record pad, best = { 0 }, *r;
375         double multiplier;
376         size_t size = adjust_size(keylen, datalen);
377
378         add_stat(tdb, allocs, 1);
379 again:
380         b_off = bucket_off(flist_off, bucket);
381
382         /* FIXME: Try non-blocking wait first, to measure contention. */
383         /* Lock this bucket. */
384         if (tdb_lock_free_bucket(tdb, b_off, TDB_LOCK_WAIT) == -1) {
385                 return TDB_OFF_ERR;
386         }
387
388         best.flist_and_len = -1ULL;
389         best_off = 0;
390
391         /* Get slack if we're after extra. */
392         if (want_extra)
393                 multiplier = 1.5;
394         else
395                 multiplier = 1.0;
396
397         /* Walk the list to see if any are large enough, getting less fussy
398          * as we go. */
399         off = tdb_read_off(tdb, b_off);
400         if (unlikely(off == TDB_OFF_ERR))
401                 goto unlock_err;
402
403         while (off) {
404                 /* FIXME: Does tdb_get win anything here? */
405                 r = tdb_get(tdb, off, &pad, sizeof(*r));
406                 if (!r)
407                         goto unlock_err;
408
409                 if (frec_magic(r) != TDB_FREE_MAGIC) {
410                         tdb->log(tdb, TDB_DEBUG_ERROR, tdb->log_priv,
411                                  "lock_and_alloc: %llu non-free 0x%llx\n",
412                                  (long long)off, (long long)r->magic_and_prev);
413                         goto unlock_err;
414                 }
415
416                 if (frec_len(r) >= size && frec_len(r) < frec_len(&best)) {
417                         best_off = off;
418                         best = *r;
419                 }
420
421                 if (frec_len(&best) < size * multiplier && best_off)
422                         break;
423
424                 multiplier *= 1.01;
425
426                 /* Since we're going slow anyway, try coalescing here. */
427                 switch (coalesce(tdb, off, b_off, frec_len(r))) {
428                 case -1:
429                         /* This has already unlocked on error. */
430                         return -1;
431                 case 1:
432                         /* This has unlocked list, restart. */
433                         goto again;
434                 }
435                 off = r->next;
436         }
437
438         /* If we found anything at all, use it. */
439         if (best_off) {
440                 struct tdb_used_record rec;
441                 size_t leftover;
442
443                 /* We're happy with this size: take it. */
444                 if (remove_from_list(tdb, b_off, best_off, &best) != 0)
445                         goto unlock_err;
446
447                 leftover = record_leftover(keylen, datalen, want_extra,
448                                            frec_len(&best));
449
450                 assert(keylen + datalen + leftover <= frec_len(&best));
451                 /* We need to mark non-free before we drop lock, otherwise
452                  * coalesce() could try to merge it! */
453                 if (set_used_header(tdb, &rec, keylen, datalen,
454                                     frec_len(&best) - leftover,
455                                     hashlow) != 0)
456                         goto unlock_err;
457
458                 if (tdb_write_convert(tdb, best_off, &rec, sizeof(rec)) != 0)
459                         goto unlock_err;
460
461                 /* Bucket of leftover will be <= current bucket, so nested
462                  * locking is allowed. */
463                 if (leftover) {
464                         add_stat(tdb, alloc_leftover, 1);
465                         if (add_free_record(tdb,
466                                             best_off + sizeof(rec)
467                                             + frec_len(&best) - leftover,
468                                             leftover))
469                                 best_off = TDB_OFF_ERR;
470                 }
471                 tdb_unlock_free_bucket(tdb, b_off);
472
473                 return best_off;
474         }
475
476         tdb_unlock_free_bucket(tdb, b_off);
477         return 0;
478
479 unlock_err:
480         tdb_unlock_free_bucket(tdb, b_off);
481         return TDB_OFF_ERR;
482 }
483
484 /* Get a free block from current free list, or 0 if none. */
485 static tdb_off_t get_free(struct tdb_context *tdb,
486                           size_t keylen, size_t datalen, bool want_extra,
487                           unsigned hashlow)
488 {
489         tdb_off_t off, flist_off;
490         unsigned start_b, b, flist;
491         bool wrapped = false;
492
493         /* If they are growing, add 50% to get to higher bucket. */
494         if (want_extra)
495                 start_b = size_to_bucket(adjust_size(keylen,
496                                                      datalen + datalen / 2));
497         else
498                 start_b = size_to_bucket(adjust_size(keylen, datalen));
499
500         flist_off = tdb->flist_off;
501         flist = tdb->flist;
502         while (!wrapped || flist_off != tdb->flist_off) {
503                 /* Start at exact size bucket, and search up... */
504                 for (b = find_free_head(tdb, flist_off, start_b);
505                      b < TDB_FREE_BUCKETS;
506                      b = find_free_head(tdb, flist_off, b + 1)) {
507                         /* Try getting one from list. */
508                         off = lock_and_alloc(tdb, flist_off,
509                                              b, keylen, datalen, want_extra,
510                                              hashlow);
511                         if (off == TDB_OFF_ERR)
512                                 return TDB_OFF_ERR;
513                         if (off != 0) {
514                                 if (b == start_b)
515                                         add_stat(tdb, alloc_bucket_exact, 1);
516                                 if (b == TDB_FREE_BUCKETS - 1)
517                                         add_stat(tdb, alloc_bucket_max, 1);
518                                 /* Worked?  Stay using this list. */
519                                 tdb->flist_off = flist_off;
520                                 tdb->flist = flist;
521                                 return off;
522                         }
523                         /* Didn't work.  Try next bucket. */
524                 }
525
526                 /* Hmm, try next list. */
527                 flist_off = next_flist(tdb, flist_off);
528                 flist++;
529
530                 if (flist_off == 0) {
531                         wrapped = true;
532                         flist_off = first_flist(tdb);
533                         flist = 0;
534                 }
535         }
536
537         return 0;
538 }
539
540 int set_used_header(struct tdb_context *tdb,
541                     struct tdb_used_record *rec,
542                     uint64_t keylen, uint64_t datalen,
543                     uint64_t actuallen, unsigned hashlow)
544 {
545         uint64_t keybits = (fls64(keylen) + 1) / 2;
546
547         /* Use bottom bits of hash, so it's independent of hash table size. */
548         rec->magic_and_meta = (hashlow & ((1 << 11)-1))
549                 | ((actuallen - (keylen + datalen)) << 11)
550                 | (keybits << 43)
551                 | (TDB_MAGIC << 48);
552         rec->key_and_data_len = (keylen | (datalen << (keybits*2)));
553
554         /* Encoding can fail on big values. */
555         if (rec_key_length(rec) != keylen
556             || rec_data_length(rec) != datalen
557             || rec_extra_padding(rec) != actuallen - (keylen + datalen)) {
558                 tdb->ecode = TDB_ERR_IO;
559                 tdb->log(tdb, TDB_DEBUG_ERROR, tdb->log_priv,
560                          "Could not encode k=%llu,d=%llu,a=%llu\n",
561                          (long long)keylen, (long long)datalen,
562                          (long long)actuallen);
563                 return -1;
564         }
565         return 0;
566 }
567
568 /* Expand the database. */
569 static int tdb_expand(struct tdb_context *tdb, tdb_len_t size)
570 {
571         uint64_t old_size;
572         tdb_len_t wanted;
573
574         /* We need room for the record header too. */
575         wanted = sizeof(struct tdb_used_record) + size;
576
577         /* Need to hold a hash lock to expand DB: transactions rely on it. */
578         if (!(tdb->flags & TDB_NOLOCK)
579             && !tdb->allrecord_lock.count && !tdb_has_hash_locks(tdb)) {
580                 tdb->log(tdb, TDB_DEBUG_FATAL, tdb->log_priv,
581                          "tdb_expand: must hold lock during expand\n");
582                 return -1;
583         }
584
585         /* always make room for at least 100 more records, and at
586            least 25% more space. */
587         if (size * TDB_EXTENSION_FACTOR > tdb->map_size / 4)
588                 wanted = size * TDB_EXTENSION_FACTOR;
589         else
590                 wanted = tdb->map_size / 4;
591         wanted = adjust_size(0, wanted);
592
593         /* Only one person can expand file at a time. */
594         if (tdb_lock_expand(tdb, F_WRLCK) != 0)
595                 return -1;
596
597         /* Someone else may have expanded the file, so retry. */
598         old_size = tdb->map_size;
599         tdb->methods->oob(tdb, tdb->map_size + 1, true);
600         if (tdb->map_size != old_size) {
601                 tdb_unlock_expand(tdb, F_WRLCK);
602                 return 0;
603         }
604
605         if (tdb->methods->expand_file(tdb, wanted) == -1) {
606                 tdb_unlock_expand(tdb, F_WRLCK);
607                 return -1;
608         }
609
610         /* We need to drop this lock before adding free record. */
611         tdb_unlock_expand(tdb, F_WRLCK);
612
613         add_stat(tdb, expands, 1);
614         return add_free_record(tdb, old_size, wanted);
615 }
616
617 /* This won't fail: it will expand the database if it has to. */
618 tdb_off_t alloc(struct tdb_context *tdb, size_t keylen, size_t datalen,
619                 uint64_t hash, bool growing)
620 {
621         tdb_off_t off;
622
623         /* We can't hold pointers during this: we could unmap! */
624         assert(!tdb->direct_access);
625
626         for (;;) {
627                 off = get_free(tdb, keylen, datalen, growing, hash);
628                 if (likely(off != 0))
629                         break;
630
631                 if (tdb_expand(tdb, adjust_size(keylen, datalen)))
632                         return TDB_OFF_ERR;
633         }
634
635         return off;
636 }