hammer2 - Fix critical bulkfree bug, refactor hammer2_io
[dragonfly.git] / sys / vfs / hammer2 / hammer2_bulkfree.c
1 /*
2  * Copyright (c) 2013-2015 The DragonFly Project.  All rights reserved.
3  *
4  * This code is derived from software contributed to The DragonFly Project
5  * by Matthew Dillon <dillon@dragonflybsd.org>
6  *
7  * Redistribution and use in source and binary forms, with or without
8  * modification, are permitted provided that the following conditions
9  * are met:
10  *
11  * 1. Redistributions of source code must retain the above copyright
12  *    notice, this list of conditions and the following disclaimer.
13  * 2. Redistributions in binary form must reproduce the above copyright
14  *    notice, this list of conditions and the following disclaimer in
15  *    the documentation and/or other materials provided with the
16  *    distribution.
17  * 3. Neither the name of The DragonFly Project nor the names of its
18  *    contributors may be used to endorse or promote products derived
19  *    from this software without specific, prior written permission.
20  *
21  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
22  * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
23  * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
24  * FOR A PARTICULAR PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE
25  * COPYRIGHT HOLDERS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
26  * INCIDENTAL, SPECIAL, EXEMPLARY OR CONSEQUENTIAL DAMAGES (INCLUDING,
27  * BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
28  * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED
29  * AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
30  * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT
31  * OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
32  * SUCH DAMAGE.
33  */
34 #include <sys/param.h>
35 #include <sys/systm.h>
36 #include <sys/kernel.h>
37 #include <sys/fcntl.h>
38 #include <sys/buf.h>
39 #include <sys/proc.h>
40 #include <sys/namei.h>
41 #include <sys/mount.h>
42 #include <sys/vnode.h>
43 #include <sys/mountctl.h>
44 #include <vm/vm_kern.h>
45 #include <vm/vm_extern.h>
46
47 #include "hammer2.h"
48
49 #define H2FMBASE(key, radix)    ((key) & ~(((hammer2_off_t)1 << (radix)) - 1))
50 #define H2FMSHIFT(radix)        ((hammer2_off_t)1 << (radix))
51
52 /*
53  * breadth-first search
54  */
55 typedef struct hammer2_chain_save {
56         TAILQ_ENTRY(hammer2_chain_save) entry;
57         hammer2_chain_t *chain;
58         int pri;
59 } hammer2_chain_save_t;
60
61 TAILQ_HEAD(hammer2_chain_save_list, hammer2_chain_save);
62 typedef struct hammer2_chain_save_list hammer2_chain_save_list_t;
63
64 typedef struct hammer2_bulkfree_info {
65         hammer2_dev_t           *hmp;
66         kmem_anon_desc_t        kp;
67         hammer2_off_t           sbase;          /* sub-loop iteration */
68         hammer2_off_t           sstop;
69         hammer2_bmap_data_t     *bmap;
70         int                     depth;
71         long                    count_10_00;    /* staged->free      */
72         long                    count_11_10;    /* allocated->staged */
73         long                    count_00_11;    /* (should not happen) */
74         long                    count_01_11;    /* (should not happen) */
75         long                    count_10_11;    /* staged->allocated */
76         long                    count_l0cleans;
77         long                    count_linadjusts;
78         long                    count_inodes_scanned;
79         long                    count_dedup_factor;
80         long                    bytes_scanned;
81         hammer2_off_t           adj_free;
82         hammer2_tid_t           mtid;
83         hammer2_tid_t           saved_mirror_tid;
84         time_t                  save_time;
85         hammer2_chain_save_list_t list;
86         hammer2_dedup_t         *dedup;
87         int                     pri;
88 } hammer2_bulkfree_info_t;
89
90 static int h2_bulkfree_test(hammer2_bulkfree_info_t *info,
91                         hammer2_blockref_t *bref, int pri);
92
93 /*
94  * General bulk scan function with callback.  Called with a referenced
95  * but UNLOCKED parent.  The parent is returned in the same state.
96  */
97 static
98 int
99 hammer2_bulk_scan(hammer2_chain_t *parent,
100                   int (*func)(hammer2_bulkfree_info_t *info,
101                               hammer2_blockref_t *bref),
102                   hammer2_bulkfree_info_t *info)
103 {
104         hammer2_blockref_t bref;
105         hammer2_chain_t *chain;
106         int cache_index = -1;
107         int doabort = 0;
108         int first = 1;
109
110         ++info->pri;
111
112         hammer2_chain_lock(parent, HAMMER2_RESOLVE_ALWAYS |
113                                    HAMMER2_RESOLVE_SHARED);
114         chain = NULL;
115
116         /*
117          * Generally loop on the contents if we have not been flagged
118          * for abort.
119          *
120          * Remember that these chains are completely isolated from
121          * the frontend, so we can release locks temporarily without
122          * imploding.
123          */
124         while ((doabort & HAMMER2_BULK_ABORT) == 0 &&
125                 hammer2_chain_scan(parent, &chain, &bref, &first,
126                                    &cache_index,
127                                    HAMMER2_LOOKUP_NODATA |
128                                    HAMMER2_LOOKUP_SHARED) != NULL) {
129                 /*
130                  * Process bref, chain is only non-NULL if the bref
131                  * might be recursable (its possible that we sometimes get
132                  * a non-NULL chain where the bref cannot be recursed).
133                  */
134 #if 0
135                 kprintf("SCAN %p/%p %016jx.%02x\n",
136                         parent, chain, bref.data_off, bref.type);
137                 int xerr = tsleep(&info->pri, PCATCH, "slp", hz / 10);
138                 if (xerr == EINTR || xerr == ERESTART) {
139                         doabort |= HAMMER2_BULK_ABORT;
140                 }
141 #endif
142                 ++info->pri;
143                 if (h2_bulkfree_test(info, &bref, 1))
144                         continue;
145
146                 doabort |= func(info, &bref);
147
148                 if (doabort & HAMMER2_BULK_ABORT)
149                         break;
150
151                 /*
152                  * A non-null chain is always returned if it is
153                  * recursive, otherwise a non-null chain might be
154                  * returned but usually is not when not recursive.
155                  */
156                 if (chain == NULL)
157                         continue;
158
159                 /*
160                  * Else check type and setup depth-first scan.
161                  *
162                  * Account for bytes actually read.
163                  */
164                 info->bytes_scanned += chain->bytes;
165
166                 switch(chain->bref.type) {
167                 case HAMMER2_BREF_TYPE_INODE:
168                 case HAMMER2_BREF_TYPE_FREEMAP_NODE:
169                 case HAMMER2_BREF_TYPE_INDIRECT:
170                 case HAMMER2_BREF_TYPE_VOLUME:
171                 case HAMMER2_BREF_TYPE_FREEMAP:
172                         ++info->depth;
173                         if (info->depth > 16) {
174                                 hammer2_chain_save_t *save;
175                                 save = kmalloc(sizeof(*save), M_HAMMER2,
176                                                M_WAITOK | M_ZERO);
177                                 save->chain = chain;
178                                 hammer2_chain_ref(chain);
179                                 TAILQ_INSERT_TAIL(&info->list, save, entry);
180
181                                 /* guess */
182                                 info->pri += 10;
183                         } else {
184                                 int savepri = info->pri;
185
186                                 hammer2_chain_unlock(chain);
187                                 info->pri = 0;
188                                 doabort |= hammer2_bulk_scan(chain, func, info);
189                                 info->pri += savepri;
190                                 hammer2_chain_lock(chain,
191                                                    HAMMER2_RESOLVE_ALWAYS |
192                                                    HAMMER2_RESOLVE_SHARED);
193                         }
194                         --info->depth;
195                         break;
196                 default:
197                         /* does not recurse */
198                         break;
199                 }
200         }
201         if (chain) {
202                 hammer2_chain_unlock(chain);
203                 hammer2_chain_drop(chain);
204         }
205
206         /*
207          * Save with higher pri now that we know what it is.
208          */
209         h2_bulkfree_test(info, &parent->bref, info->pri + 1);
210
211         hammer2_chain_unlock(parent);
212
213         return doabort;
214 }
215
216 /*
217  * Bulkfree algorithm
218  *
219  * Repeat {
220  *      Chain flush (partial synchronization) XXX removed
221  *      Scan the whole topology - build in-memory freemap (mark 11)
222  *      Reconcile the in-memory freemap against the on-disk freemap.
223  *              ondisk xx -> ondisk 11 (if allocated)
224  *              ondisk 11 -> ondisk 10 (if free in-memory)
225  *              ondisk 10 -> ondisk 00 (if free in-memory) - on next pass
226  * }
227  *
228  * The topology scan may have to be performed multiple times to window
229  * freemaps which are too large to fit in kernel memory.
230  *
231  * Races are handled using a double-transition (11->10, 10->00).  The bulkfree
232  * scan snapshots the volume root's blockset and thus can run concurrent with
233  * normal operations, as long as a full flush is made between each pass to
234  * synchronize any modified chains (otherwise their blocks might be improperly
235  * freed).
236  *
237  * Temporary memory in multiples of 64KB is required to reconstruct the leaf
238  * hammer2_bmap_data blocks so they can later be compared against the live
239  * freemap.  Each 64KB block represents 128 x 16KB x 1024 = ~2 GB of storage.
240  * A 32MB save area thus represents around ~1 TB.  The temporary memory
241  * allocated can be specified.  If it is not sufficient multiple topology
242  * passes will be made.
243  */
244
245 /*
246  * Bulkfree callback info
247  */
248 static void hammer2_bulkfree_thread(void *arg __unused);
249 static void cbinfo_bmap_init(hammer2_bulkfree_info_t *cbinfo, size_t size);
250 static int h2_bulkfree_callback(hammer2_bulkfree_info_t *cbinfo,
251                         hammer2_blockref_t *bref);
252 static void h2_bulkfree_sync(hammer2_bulkfree_info_t *cbinfo);
253 static void h2_bulkfree_sync_adjust(hammer2_bulkfree_info_t *cbinfo,
254                         hammer2_off_t data_off, hammer2_bmap_data_t *live,
255                         hammer2_bmap_data_t *bmap, hammer2_key_t alloc_base);
256
257 void
258 hammer2_bulkfree_init(hammer2_dev_t *hmp)
259 {
260         hammer2_thr_create(&hmp->bfthr, NULL, hmp,
261                            hmp->devrepname, -1, -1,
262                            hammer2_bulkfree_thread);
263 }
264
265 void
266 hammer2_bulkfree_uninit(hammer2_dev_t *hmp)
267 {
268         hammer2_thr_delete(&hmp->bfthr);
269 }
270
271 static void
272 hammer2_bulkfree_thread(void *arg)
273 {
274         hammer2_thread_t *thr = arg;
275         hammer2_ioc_bulkfree_t bfi;
276         uint32_t flags;
277
278         for (;;) {
279                 hammer2_thr_wait_any(thr,
280                                      HAMMER2_THREAD_STOP |
281                                      HAMMER2_THREAD_FREEZE |
282                                      HAMMER2_THREAD_UNFREEZE |
283                                      HAMMER2_THREAD_REMASTER,
284                                      hz * 60);
285
286                 flags = thr->flags;
287                 cpu_ccfence();
288                 if (flags & HAMMER2_THREAD_STOP)
289                         break;
290                 if (flags & HAMMER2_THREAD_FREEZE) {
291                         hammer2_thr_signal2(thr, HAMMER2_THREAD_FROZEN,
292                                                  HAMMER2_THREAD_FREEZE);
293                         continue;
294                 }
295                 if (flags & HAMMER2_THREAD_UNFREEZE) {
296                         hammer2_thr_signal2(thr, 0,
297                                                  HAMMER2_THREAD_FROZEN |
298                                                  HAMMER2_THREAD_UNFREEZE);
299                         continue;
300                 }
301                 if (flags & HAMMER2_THREAD_FROZEN)
302                         continue;
303                 if (flags & HAMMER2_THREAD_REMASTER) {
304                         hammer2_thr_signal2(thr, 0, HAMMER2_THREAD_REMASTER);
305                         bzero(&bfi, sizeof(bfi));
306                         bfi.size = 8192 * 1024;
307                         /* hammer2_bulkfree_pass(thr->hmp, &bfi); */
308                 }
309         }
310         thr->td = NULL;
311         hammer2_thr_signal(thr, HAMMER2_THREAD_STOPPED);
312         /* structure can go invalid at this point */
313 }
314
315 int
316 hammer2_bulkfree_pass(hammer2_dev_t *hmp, hammer2_chain_t *vchain,
317                       hammer2_ioc_bulkfree_t *bfi)
318 {
319         hammer2_bulkfree_info_t cbinfo;
320         hammer2_chain_save_t *save;
321         hammer2_off_t incr;
322         size_t size;
323         int doabort = 0;
324
325         /*
326          * We have to clear the live dedup cache as it might have entries
327          * that are freeable as of now.  Any new entries in the dedup cache
328          * made after this point, even if they become freeable, will have
329          * previously been fully allocated and will be protected by the
330          * 2-stage bulkfree.
331          */
332         hammer2_dedup_clear(hmp);
333
334         /*
335          * Setup for free pass
336          */
337         bzero(&cbinfo, sizeof(cbinfo));
338         size = (bfi->size + HAMMER2_FREEMAP_LEVELN_PSIZE - 1) &
339                ~(size_t)(HAMMER2_FREEMAP_LEVELN_PSIZE - 1);
340         cbinfo.hmp = hmp;
341         cbinfo.bmap = kmem_alloc_swapbacked(&cbinfo.kp, size, VM_SUBSYS_HAMMER);
342         cbinfo.saved_mirror_tid = hmp->voldata.mirror_tid;
343
344         cbinfo.dedup = kmalloc(sizeof(*cbinfo.dedup) * HAMMER2_DEDUP_HEUR_SIZE,
345                                M_HAMMER2, M_WAITOK | M_ZERO);
346
347         /*
348          * Normalize start point to a 2GB boundary.  We operate on a
349          * 64KB leaf bitmap boundary which represents 2GB of storage.
350          */
351         cbinfo.sbase = bfi->sbase;
352         if (cbinfo.sbase > hmp->voldata.volu_size)
353                 cbinfo.sbase = hmp->voldata.volu_size;
354         cbinfo.sbase &= ~HAMMER2_FREEMAP_LEVEL1_MASK;
355         TAILQ_INIT(&cbinfo.list);
356
357         /*
358          * Loop on a full meta-data scan as many times as required to
359          * get through all available storage.
360          */
361         while (cbinfo.sbase < hmp->voldata.volu_size) {
362                 /*
363                  * We have enough ram to represent (incr) bytes of storage.
364                  * Each 64KB of ram represents 2GB of storage.
365                  *
366                  * We must also clean out our de-duplication heuristic for
367                  * each (incr) bytes of storage, otherwise we wind up not
368                  * scanning meta-data for later areas of storage because
369                  * they had already been scanned in earlier areas of storage.
370                  * Since the ranging is different, we have to restart
371                  * the dedup heuristic too.
372                  */
373                 cbinfo_bmap_init(&cbinfo, size);
374                 bzero(cbinfo.dedup, sizeof(*cbinfo.dedup));
375                 incr = size / HAMMER2_FREEMAP_LEVELN_PSIZE *
376                        HAMMER2_FREEMAP_LEVEL1_SIZE;
377                 if (hmp->voldata.volu_size - cbinfo.sbase < incr)
378                         cbinfo.sstop = hmp->voldata.volu_size;
379                 else
380                         cbinfo.sstop = cbinfo.sbase + incr;
381                 if (hammer2_debug & 1) {
382                         kprintf("bulkfree pass %016jx/%jdGB\n",
383                                 (intmax_t)cbinfo.sbase,
384                                 (intmax_t)incr / HAMMER2_FREEMAP_LEVEL1_SIZE);
385                 }
386
387                 /*
388                  * Scan topology for stuff inside this range.
389                  */
390                 hammer2_trans_init(hmp->spmp, 0);
391                 cbinfo.mtid = hammer2_trans_sub(hmp->spmp);
392                 cbinfo.pri = 0;
393                 doabort |= hammer2_bulk_scan(vchain, h2_bulkfree_callback,
394                                              &cbinfo);
395
396                 while ((save = TAILQ_FIRST(&cbinfo.list)) != NULL &&
397                        doabort == 0) {
398                         TAILQ_REMOVE(&cbinfo.list, save, entry);
399                         cbinfo.pri = 0;
400                         doabort |= hammer2_bulk_scan(save->chain,
401                                                      h2_bulkfree_callback,
402                                                      &cbinfo);
403                         hammer2_chain_drop(save->chain);
404                         kfree(save, M_HAMMER2);
405                 }
406                 while (save) {
407                         TAILQ_REMOVE(&cbinfo.list, save, entry);
408                         hammer2_chain_drop(save->chain);
409                         kfree(save, M_HAMMER2);
410                         save = TAILQ_FIRST(&cbinfo.list);
411                 }
412
413                 kprintf("bulkfree lastdrop %d %d doabort=%d\n",
414                         vchain->refs, vchain->core.chain_count, doabort);
415
416                 /*
417                  * If complete scan succeeded we can synchronize our
418                  * in-memory freemap against live storage.  If an abort
419                  * did occur we cannot safely synchronize our partially
420                  * filled-out in-memory freemap.
421                  */
422                 if (doabort == 0) {
423                         h2_bulkfree_sync(&cbinfo);
424
425                         hammer2_voldata_lock(hmp);
426                         hammer2_voldata_modify(hmp);
427                         hmp->voldata.allocator_free += cbinfo.adj_free;
428                         hammer2_voldata_unlock(hmp);
429                 }
430
431                 /*
432                  * Cleanup for next loop.
433                  */
434                 hammer2_trans_done(hmp->spmp);
435                 if (doabort)
436                         break;
437                 cbinfo.sbase = cbinfo.sstop;
438                 cbinfo.adj_free = 0;
439         }
440         kmem_free_swapbacked(&cbinfo.kp);
441         kfree(cbinfo.dedup, M_HAMMER2);
442         cbinfo.dedup = NULL;
443
444         bfi->sstop = cbinfo.sbase;
445
446         incr = bfi->sstop / (hmp->voldata.volu_size / 10000);
447         if (incr > 10000)
448                 incr = 10000;
449
450         kprintf("bulkfree pass statistics (%d.%02d%% storage processed):\n",
451                 (int)incr / 100,
452                 (int)incr % 100);
453
454         kprintf("    transition->free   %ld\n", cbinfo.count_10_00);
455         kprintf("    transition->staged %ld\n", cbinfo.count_11_10);
456         kprintf("    ERR(00)->allocated %ld\n", cbinfo.count_00_11);
457         kprintf("    ERR(01)->allocated %ld\n", cbinfo.count_01_11);
458         kprintf("    staged->allocated  %ld\n", cbinfo.count_10_11);
459         kprintf("    ~2MB segs cleaned  %ld\n", cbinfo.count_l0cleans);
460         kprintf("    linear adjusts     %ld\n", cbinfo.count_linadjusts);
461         kprintf("    dedup factor       %ld\n", cbinfo.count_dedup_factor);
462
463         return doabort;
464 }
465
466 static void
467 cbinfo_bmap_init(hammer2_bulkfree_info_t *cbinfo, size_t size)
468 {
469         hammer2_bmap_data_t *bmap = cbinfo->bmap;
470         hammer2_key_t key = cbinfo->sbase;
471         hammer2_key_t lokey;
472         hammer2_key_t hikey;
473
474         lokey = (cbinfo->hmp->voldata.allocator_beg + HAMMER2_SEGMASK64) &
475                 ~HAMMER2_SEGMASK64;
476         hikey = cbinfo->hmp->voldata.volu_size & ~HAMMER2_SEGMASK64;
477
478         bzero(bmap, size);
479         while (size) {
480                 if (lokey < H2FMBASE(key, HAMMER2_FREEMAP_LEVEL1_RADIX) +
481                             HAMMER2_ZONE_SEG64) {
482                         lokey = H2FMBASE(key, HAMMER2_FREEMAP_LEVEL1_RADIX) +
483                                 HAMMER2_ZONE_SEG64;
484                 }
485                 if (key < lokey || key >= hikey) {
486                         memset(bmap->bitmapq, -1,
487                                sizeof(bmap->bitmapq));
488                         bmap->avail = 0;
489                         bmap->linear = HAMMER2_SEGSIZE;
490                 } else {
491                         bmap->avail = H2FMSHIFT(HAMMER2_FREEMAP_LEVEL0_RADIX);
492                 }
493                 size -= sizeof(*bmap);
494                 key += HAMMER2_FREEMAP_LEVEL0_SIZE;
495                 ++bmap;
496         }
497 }
498
499 static int
500 h2_bulkfree_callback(hammer2_bulkfree_info_t *cbinfo, hammer2_blockref_t *bref)
501 {
502         hammer2_bmap_data_t *bmap;
503         hammer2_off_t data_off;
504         uint16_t class;
505         size_t bytes;
506         int radix;
507         int error;
508
509         /*
510          * Check for signal and allow yield to userland during scan
511          */
512         if (hammer2_signal_check(&cbinfo->save_time))
513                 return HAMMER2_BULK_ABORT;
514         if (bref->type == HAMMER2_BREF_TYPE_INODE) {
515                 ++cbinfo->count_inodes_scanned;
516                 if ((cbinfo->count_inodes_scanned & 65535) == 0)
517                         kprintf(" inodes %6ld bytes %9ld\n",
518                                 cbinfo->count_inodes_scanned,
519                                 cbinfo->bytes_scanned);
520         }
521
522         /*
523          * Calculate the data offset and determine if it is within
524          * the current freemap range being gathered.
525          */
526         error = 0;
527         data_off = bref->data_off & ~HAMMER2_OFF_MASK_RADIX;
528         if (data_off < cbinfo->sbase || data_off >= cbinfo->sstop)
529                 return 0;
530         if (data_off < cbinfo->hmp->voldata.allocator_beg)
531                 return 0;
532         if (data_off >= cbinfo->hmp->voldata.volu_size)
533                 return 0;
534
535         /*
536          * Calculate the information needed to generate the in-memory
537          * freemap record.
538          *
539          * Hammer2 does not allow allocations to cross the L1 (2GB) boundary,
540          * it's a problem if it does.  (Or L0 (2MB) for that matter).
541          */
542         radix = (int)(bref->data_off & HAMMER2_OFF_MASK_RADIX);
543         KKASSERT(radix != 0);
544         bytes = (size_t)1 << radix;
545         class = (bref->type << 8) | hammer2_devblkradix(radix);
546
547         if (data_off + bytes >= cbinfo->sstop) {
548                 kprintf("hammer2_bulkfree_scan: illegal 2GB boundary "
549                         "%016jx %016jx/%d\n",
550                         (intmax_t)bref->data_off,
551                         (intmax_t)bref->key,
552                         bref->keybits);
553                 bytes = cbinfo->sstop - data_off;       /* XXX */
554         }
555
556         /*
557          * Convert to a storage offset relative to the beginning of the
558          * storage range we are collecting.  Then lookup the level0 bmap entry.
559          */
560         data_off -= cbinfo->sbase;
561         bmap = cbinfo->bmap + (data_off >> HAMMER2_FREEMAP_LEVEL0_RADIX);
562
563         /*
564          * Convert data_off to a bmap-relative value (~4MB storage range).
565          * Adjust linear, class, and avail.
566          *
567          * Hammer2 does not allow allocations to cross the L0 (4MB) boundary,
568          */
569         data_off &= HAMMER2_FREEMAP_LEVEL0_MASK;
570         if (data_off + bytes > HAMMER2_FREEMAP_LEVEL0_SIZE) {
571                 kprintf("hammer2_bulkfree_scan: illegal 4MB boundary "
572                         "%016jx %016jx/%d\n",
573                         (intmax_t)bref->data_off,
574                         (intmax_t)bref->key,
575                         bref->keybits);
576                 bytes = HAMMER2_FREEMAP_LEVEL0_SIZE - data_off;
577         }
578
579         if (bmap->class == 0) {
580                 bmap->class = class;
581                 bmap->avail = HAMMER2_FREEMAP_LEVEL0_SIZE;
582         }
583         if (bmap->class != class) {
584                 kprintf("hammer2_bulkfree_scan: illegal mixed class "
585                         "%016jx %016jx/%d (%04x vs %04x)\n",
586                         (intmax_t)bref->data_off,
587                         (intmax_t)bref->key,
588                         bref->keybits,
589                         class, bmap->class);
590         }
591
592         /*
593          * Just record the highest byte-granular offset for now.  Do not
594          * match against allocations which are in multiples of whole blocks.
595          *
596          * Make sure that any in-block linear offset at least covers the
597          * data range.  This can cause bmap->linear to become block-aligned.
598          */
599         if (bytes & HAMMER2_FREEMAP_BLOCK_MASK) {
600                 if (bmap->linear < (int32_t)data_off + (int32_t)bytes)
601                         bmap->linear = (int32_t)data_off + (int32_t)bytes;
602         } else if (bmap->linear >= (int32_t)data_off &&
603                    bmap->linear < (int32_t)data_off + (int32_t)bytes) {
604                 bmap->linear = (int32_t)data_off + (int32_t)bytes;
605         }
606
607         /*
608          * Adjust the hammer2_bitmap_t bitmap[HAMMER2_BMAP_ELEMENTS].
609          * 64-bit entries, 2 bits per entry, to code 11.
610          *
611          * NOTE: data_off mask to 524288, shift right by 14 (radix for 16384),
612          *       and multiply shift amount by 2 for sets of 2 bits.
613          *
614          * NOTE: The allocation can be smaller than HAMMER2_FREEMAP_BLOCK_SIZE.
615          *       also, data_off may not be FREEMAP_BLOCK_SIZE aligned.
616          */
617         while (bytes > 0) {
618                 hammer2_bitmap_t bmask;
619                 int bindex;
620
621                 bindex = (int)data_off >> (HAMMER2_FREEMAP_BLOCK_RADIX +
622                                            HAMMER2_BMAP_INDEX_RADIX);
623                 bmask = (hammer2_bitmap_t)3 <<
624                         ((((int)data_off & HAMMER2_BMAP_INDEX_MASK) >>
625                          HAMMER2_FREEMAP_BLOCK_RADIX) << 1);
626
627                 /*
628                  * NOTE! The (avail) calculation is bitmap-granular.  Multiple
629                  *       sub-granular records can wind up at the same bitmap
630                  *       position.
631                  */
632                 if ((bmap->bitmapq[bindex] & bmask) == 0) {
633                         if (bytes < HAMMER2_FREEMAP_BLOCK_SIZE) {
634                                 bmap->avail -= HAMMER2_FREEMAP_BLOCK_SIZE;
635                         } else {
636                                 bmap->avail -= bytes;
637                         }
638                         bmap->bitmapq[bindex] |= bmask;
639                 }
640                 data_off += HAMMER2_FREEMAP_BLOCK_SIZE;
641                 if (bytes < HAMMER2_FREEMAP_BLOCK_SIZE)
642                         bytes = 0;
643                 else
644                         bytes -= HAMMER2_FREEMAP_BLOCK_SIZE;
645         }
646         return error;
647 }
648
649 /*
650  * Synchronize the in-memory bitmap with the live freemap.  This is not a
651  * direct copy.  Instead the bitmaps must be compared:
652  *
653  *      In-memory       Live-freemap
654  *         00             11 -> 10      (do nothing if live modified)
655  *                        10 -> 00      (do nothing if live modified)
656  *         11             10 -> 11      handles race against live
657  *                        ** -> 11      nominally warn of corruption
658  * 
659  */
660 static void
661 h2_bulkfree_sync(hammer2_bulkfree_info_t *cbinfo)
662 {
663         hammer2_off_t data_off;
664         hammer2_key_t key;
665         hammer2_key_t key_dummy;
666         hammer2_bmap_data_t *bmap;
667         hammer2_bmap_data_t *live;
668         hammer2_chain_t *live_parent;
669         hammer2_chain_t *live_chain;
670         int cache_index = -1;
671         int bmapindex;
672
673         kprintf("hammer2_bulkfree - range ");
674
675         if (cbinfo->sbase < cbinfo->hmp->voldata.allocator_beg)
676                 kprintf("%016jx-",
677                         (intmax_t)cbinfo->hmp->voldata.allocator_beg);
678         else
679                 kprintf("%016jx-",
680                         (intmax_t)cbinfo->sbase);
681
682         if (cbinfo->sstop > cbinfo->hmp->voldata.volu_size)
683                 kprintf("%016jx\n",
684                         (intmax_t)cbinfo->hmp->voldata.volu_size);
685         else
686                 kprintf("%016jx\n",
687                         (intmax_t)cbinfo->sstop);
688                 
689         data_off = cbinfo->sbase;
690         bmap = cbinfo->bmap;
691
692         live_parent = &cbinfo->hmp->fchain;
693         hammer2_chain_ref(live_parent);
694         hammer2_chain_lock(live_parent, HAMMER2_RESOLVE_ALWAYS);
695         live_chain = NULL;
696
697         /*
698          * Iterate each hammer2_bmap_data_t line (128 bytes) managing
699          * 4MB of storage.
700          */
701         while (data_off < cbinfo->sstop) {
702                 /*
703                  * The freemap is not used below allocator_beg or beyond
704                  * volu_size.
705                  */
706
707                 if (data_off < cbinfo->hmp->voldata.allocator_beg)
708                         goto next;
709                 if (data_off >= cbinfo->hmp->voldata.volu_size)
710                         goto next;
711
712                 /*
713                  * Locate the freemap leaf on the live filesystem
714                  */
715                 key = (data_off & ~HAMMER2_FREEMAP_LEVEL1_MASK);
716
717                 if (live_chain == NULL || live_chain->bref.key != key) {
718                         if (live_chain) {
719                                 hammer2_chain_unlock(live_chain);
720                                 hammer2_chain_drop(live_chain);
721                         }
722                         live_chain = hammer2_chain_lookup(
723                                             &live_parent,
724                                             &key_dummy,
725                                             key,
726                                             key + HAMMER2_FREEMAP_LEVEL1_MASK,
727                                             &cache_index,
728                                             HAMMER2_LOOKUP_ALWAYS);
729
730 #if 0
731                         /*
732                          * If recent allocations were made we avoid races by
733                          * not staging or freeing any blocks.  We can still
734                          * remark blocks as fully allocated.
735                          */
736                         if (live_chain) {
737                                 if (hammer2_debug & 1) {
738                                         kprintf("live_chain %016jx\n",
739                                                 (intmax_t)key);
740                                 }
741                                 if (live_chain->bref.mirror_tid >
742                                     cbinfo->saved_mirror_tid) {
743                                         kprintf("hammer2_bulkfree: "
744                                                 "avoid %016jx\n",
745                                                 data_off);
746                                         nofree = 1;
747                                 } else {
748                                         nofree = 0;
749                                 }
750                         }
751 #endif
752                 }
753                 if (live_chain == NULL) {
754                         /*
755                          * XXX if we implement a full recovery mode we need
756                          * to create/recreate missing freemap chains if our
757                          * bmap has any allocated blocks.
758                          */
759                         if (bmap->class &&
760                             bmap->avail != HAMMER2_FREEMAP_LEVEL0_SIZE) {
761                                 kprintf("hammer2_bulkfree: cannot locate "
762                                         "live leaf for allocated data "
763                                         "near %016jx\n",
764                                         (intmax_t)data_off);
765                         }
766                         goto next;
767                 }
768                 if (live_chain->error) {
769                         kprintf("hammer2_bulkfree: error %s looking up "
770                                 "live leaf for allocated data near %016jx\n",
771                                 hammer2_error_str(live_chain->error),
772                                 (intmax_t)data_off);
773                         hammer2_chain_unlock(live_chain);
774                         hammer2_chain_drop(live_chain);
775                         live_chain = NULL;
776                         goto next;
777                 }
778
779                 bmapindex = (data_off & HAMMER2_FREEMAP_LEVEL1_MASK) >>
780                             HAMMER2_FREEMAP_LEVEL0_RADIX;
781                 live = &live_chain->data->bmdata[bmapindex];
782
783                 /*
784                  * Shortcut if the bitmaps match and the live linear
785                  * indicator is sane.  We can't do a perfect check of
786                  * live->linear because the only real requirement is that
787                  * if it is not block-aligned, that it not cover the space
788                  * within its current block which overlaps one of the data
789                  * ranges we scan.  We don't retain enough fine-grained
790                  * data in our scan to be able to set it exactly.
791                  *
792                  * TODO - we could shortcut this by testing that both
793                  * live->class and bmap->class are 0, and both avails are
794                  * set to HAMMER2_FREEMAP_LEVEL0_SIZE (4MB).
795                  */
796                 if (bcmp(live->bitmapq, bmap->bitmapq,
797                          sizeof(bmap->bitmapq)) == 0 &&
798                     live->linear >= bmap->linear) {
799                         goto next;
800                 }
801                 if (hammer2_debug & 1) {
802                         kprintf("live %016jx %04d.%04x (avail=%d)\n",
803                                 data_off, bmapindex, live->class, live->avail);
804                 }
805
806                 hammer2_chain_modify(live_chain, cbinfo->mtid, 0, 0);
807                 live = &live_chain->data->bmdata[bmapindex];
808
809                 h2_bulkfree_sync_adjust(cbinfo, data_off, live, bmap,
810                                         live_chain->bref.key +
811                                         bmapindex *
812                                         HAMMER2_FREEMAP_LEVEL0_SIZE);
813 next:
814                 data_off += HAMMER2_FREEMAP_LEVEL0_SIZE;
815                 ++bmap;
816         }
817         if (live_chain) {
818                 hammer2_chain_unlock(live_chain);
819                 hammer2_chain_drop(live_chain);
820         }
821         if (live_parent) {
822                 hammer2_chain_unlock(live_parent);
823                 hammer2_chain_drop(live_parent);
824         }
825 }
826
827 /*
828  * Merge the bulkfree bitmap against the existing bitmap.
829  */
830 static
831 void
832 h2_bulkfree_sync_adjust(hammer2_bulkfree_info_t *cbinfo,
833                         hammer2_off_t data_off, hammer2_bmap_data_t *live,
834                         hammer2_bmap_data_t *bmap, hammer2_key_t alloc_base)
835 {
836         int bindex;
837         int scount;
838         hammer2_off_t tmp_off;
839         hammer2_bitmap_t lmask;
840         hammer2_bitmap_t mmask;
841
842         tmp_off = data_off;
843
844         for (bindex = 0; bindex < HAMMER2_BMAP_ELEMENTS; ++bindex) {
845                 lmask = live->bitmapq[bindex];  /* live */
846                 mmask = bmap->bitmapq[bindex];  /* snapshotted bulkfree */
847                 if (lmask == mmask) {
848                         tmp_off += HAMMER2_BMAP_INDEX_SIZE;
849                         continue;
850                 }
851
852                 for (scount = 0;
853                      scount < HAMMER2_BMAP_BITS_PER_ELEMENT;
854                      scount += 2) {
855                         if ((mmask & 3) == 0) {
856                                 /*
857                                  * in-memory 00         live 11 -> 10
858                                  *                      live 10 -> 00
859                                  *
860                                  * Storage might be marked allocated or
861                                  * staged and must be remarked staged or
862                                  * free.
863                                  */
864                                 switch (lmask & 3) {
865                                 case 0: /* 00 */
866                                         break;
867                                 case 1: /* 01 */
868                                         kprintf("hammer2_bulkfree: cannot "
869                                                 "transition m=00/l=01\n");
870                                         break;
871                                 case 2: /* 10 -> 00 */
872                                         live->bitmapq[bindex] &=
873                                             ~((hammer2_bitmap_t)2 << scount);
874                                         live->avail +=
875                                                 HAMMER2_FREEMAP_BLOCK_SIZE;
876                                         if (live->avail >
877                                             HAMMER2_FREEMAP_LEVEL0_SIZE) {
878                                                 live->avail =
879                                                     HAMMER2_FREEMAP_LEVEL0_SIZE;
880                                         }
881                                         cbinfo->adj_free +=
882                                                 HAMMER2_FREEMAP_BLOCK_SIZE;
883                                         ++cbinfo->count_10_00;
884                                         hammer2_io_dedup_assert(
885                                                 cbinfo->hmp,
886                                                 tmp_off |
887                                                 HAMMER2_FREEMAP_BLOCK_RADIX,
888                                                 HAMMER2_FREEMAP_BLOCK_SIZE);
889                                         break;
890                                 case 3: /* 11 -> 10 */
891                                         live->bitmapq[bindex] &=
892                                             ~((hammer2_bitmap_t)1 << scount);
893                                         ++cbinfo->count_11_10;
894                                         hammer2_io_dedup_delete(
895                                                 cbinfo->hmp,
896                                                 HAMMER2_BREF_TYPE_DATA,
897                                                 tmp_off |
898                                                 HAMMER2_FREEMAP_BLOCK_RADIX,
899                                                 HAMMER2_FREEMAP_BLOCK_SIZE);
900                                         break;
901                                 }
902                         } else if ((mmask & 3) == 3) {
903                                 /*
904                                  * in-memory 11         live 10 -> 11
905                                  *                      live ** -> 11
906                                  *
907                                  * Storage might be incorrectly marked free
908                                  * or staged and must be remarked fully
909                                  * allocated.
910                                  */
911                                 switch (lmask & 3) {
912                                 case 0: /* 00 */
913                                         ++cbinfo->count_00_11;
914                                         cbinfo->adj_free -=
915                                                 HAMMER2_FREEMAP_BLOCK_SIZE;
916                                         live->avail -=
917                                                 HAMMER2_FREEMAP_BLOCK_SIZE;
918                                         if ((int32_t)live->avail < 0)
919                                                 live->avail = 0;
920                                         break;
921                                 case 1: /* 01 */
922                                         ++cbinfo->count_01_11;
923                                         break;
924                                 case 2: /* 10 -> 11 */
925                                         ++cbinfo->count_10_11;
926                                         break;
927                                 case 3: /* 11 */
928                                         break;
929                                 }
930                                 live->bitmapq[bindex] |=
931                                         ((hammer2_bitmap_t)3 << scount);
932                         }
933                         mmask >>= 2;
934                         lmask >>= 2;
935                         tmp_off += HAMMER2_FREEMAP_BLOCK_SIZE;
936                 }
937         }
938
939         /*
940          * Determine if the live bitmap is completely free and reset its
941          * fields if so.  Otherwise check to see if we can reduce the linear
942          * offset.
943          */
944         for (bindex = HAMMER2_BMAP_ELEMENTS - 1; bindex >= 0; --bindex) {
945                 if (live->bitmapq[bindex] != 0)
946                         break;
947         }
948         if (bindex < 0) {
949                 /*
950                  * Completely empty, reset entire segment
951                  */
952 #if 0
953                 kprintf("hammer2: cleanseg %016jx.%04x (%d)\n",
954                         alloc_base, live->class, live->avail);
955 #endif
956                 live->avail = HAMMER2_FREEMAP_LEVEL0_SIZE;
957                 live->class = 0;
958                 live->linear = 0;
959                 ++cbinfo->count_l0cleans;
960         } else if (bindex < 7) {
961                 /*
962                  * Partially full, bitmapq[bindex] != 0.  The live->linear
963                  * offset can legitimately be just about anything, but
964                  * our bulkfree pass doesn't record enough information to
965                  * set it exactly.  Just make sure that it is set to a
966                  * safe value that also works in our match code above (the
967                  * bcmp and linear test).
968                  *
969                  * We cannot safely leave live->linear at a sub-block offset
970                  * unless it is already in the same block as bmap->linear.
971                  *
972                  * If it is not in the same block, we cannot assume that
973                  * we can set it to bmap->linear on a sub-block boundary,
974                  * because the live system could have bounced it around.
975                  * In that situation we satisfy our bcmp/skip requirement
976                  * above by setting it to the nearest higher block boundary.
977                  * This alignment effectively kills any partial allocation it
978                  * might have been tracking before.
979                  */
980                 if (live->linear < bmap->linear &&
981                     ((live->linear ^ bmap->linear) &
982                      ~HAMMER2_FREEMAP_BLOCK_MASK) == 0) {
983                         live->linear = bmap->linear;
984                         ++cbinfo->count_linadjusts;
985                 } else {
986                         live->linear =
987                                 (bmap->linear + HAMMER2_FREEMAP_BLOCK_MASK) &
988                                 ~HAMMER2_FREEMAP_BLOCK_MASK;
989                         ++cbinfo->count_linadjusts;
990                 }
991         } else {
992                 /*
993                  * Completely full, effectively disable the linear iterator
994                  */
995                 live->linear = HAMMER2_SEGSIZE;
996         }
997
998 #if 0
999         if (bmap->class) {
1000                 kprintf("%016jx %04d.%04x (avail=%7d) "
1001                         "%08x %08x %08x %08x %08x %08x %08x %08x\n",
1002                         (intmax_t)data_off,
1003                         (int)((data_off &
1004                                HAMMER2_FREEMAP_LEVEL1_MASK) >>
1005                               HAMMER2_FREEMAP_LEVEL0_RADIX),
1006                         bmap->class,
1007                         bmap->avail,
1008                         bmap->bitmap[0], bmap->bitmap[1],
1009                         bmap->bitmap[2], bmap->bitmap[3],
1010                         bmap->bitmap[4], bmap->bitmap[5],
1011                         bmap->bitmap[6], bmap->bitmap[7]);
1012         }
1013 #endif
1014 }
1015
1016 /*
1017  * BULKFREE DEDUP HEURISTIC
1018  *
1019  * WARNING! This code is SMP safe but the heuristic allows SMP collisions.
1020  *          All fields must be loaded into locals and validated.
1021  */
1022 static
1023 int
1024 h2_bulkfree_test(hammer2_bulkfree_info_t *cbinfo, hammer2_blockref_t *bref,
1025                  int pri)
1026 {
1027         hammer2_dedup_t *dedup;
1028         int best;
1029         int n;
1030         int i;
1031
1032         n = hammer2_icrc32(&bref->data_off, sizeof(bref->data_off));
1033         dedup = cbinfo->dedup + (n & (HAMMER2_DEDUP_HEUR_MASK & ~7));
1034
1035         for (i = best = 0; i < 8; ++i) {
1036                 if (dedup[i].data_off == bref->data_off) {
1037                         if (dedup[i].ticks < pri)
1038                                 dedup[i].ticks = pri;
1039                         if (pri == 1)
1040                                 cbinfo->count_dedup_factor += dedup[i].ticks;
1041                         return 1;
1042                 }
1043                 if (dedup[i].ticks < dedup[best].ticks)
1044                         best = i;
1045         }
1046         dedup[best].data_off = bref->data_off;
1047         dedup[best].ticks = pri;
1048
1049         return 0;
1050 }