hammer2 - Cleanup hammer2_cluster API
[dragonfly.git] / sys / vfs / hammer2 / hammer2.h
1 /*
2  * Copyright (c) 2011-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  * by Venkatesh Srinivas <vsrinivas@dragonflybsd.org>
7  *
8  * Redistribution and use in source and binary forms, with or without
9  * modification, are permitted provided that the following conditions
10  * are met:
11  *
12  * 1. Redistributions of source code must retain the above copyright
13  *    notice, this list of conditions and the following disclaimer.
14  * 2. Redistributions in binary form must reproduce the above copyright
15  *    notice, this list of conditions and the following disclaimer in
16  *    the documentation and/or other materials provided with the
17  *    distribution.
18  * 3. Neither the name of The DragonFly Project nor the names of its
19  *    contributors may be used to endorse or promote products derived
20  *    from this software without specific, prior written permission.
21  *
22  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
23  * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
24  * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
25  * FOR A PARTICULAR PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE
26  * COPYRIGHT HOLDERS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
27  * INCIDENTAL, SPECIAL, EXEMPLARY OR CONSEQUENTIAL DAMAGES (INCLUDING,
28  * BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
29  * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED
30  * AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
31  * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT
32  * OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
33  * SUCH DAMAGE.
34  */
35
36 /*
37  * HAMMER2 IN-MEMORY CACHE OF MEDIA STRUCTURES
38  *
39  * This header file contains structures used internally by the HAMMER2
40  * implementation.  See hammer2_disk.h for on-disk structures.
41  *
42  * There is an in-memory representation of all on-media data structure.
43  * Almost everything is represented by a hammer2_chain structure in-memory.
44  * Other higher-level structures typically map to chains.
45  *
46  * A great deal of data is accessed simply via its buffer cache buffer,
47  * which is mapped for the duration of the chain's lock.  Hammer2 must
48  * implement its own buffer cache layer on top of the system layer to
49  * allow for different threads to lock different sub-block-sized buffers.
50  *
51  * When modifications are made to a chain a new filesystem block must be
52  * allocated.  Multiple modifications do not typically allocate new blocks
53  * until the current block has been flushed.  Flushes do not block the
54  * front-end unless the front-end operation crosses the current inode being
55  * flushed.
56  *
57  * The in-memory representation may remain cached (for example in order to
58  * placemark clustering locks) even after the related data has been
59  * detached.
60  */
61
62 #ifndef _VFS_HAMMER2_HAMMER2_H_
63 #define _VFS_HAMMER2_HAMMER2_H_
64
65 #include <sys/param.h>
66 #include <sys/types.h>
67 #include <sys/kernel.h>
68 #include <sys/conf.h>
69 #include <sys/systm.h>
70 #include <sys/tree.h>
71 #include <sys/malloc.h>
72 #include <sys/mount.h>
73 #include <sys/vnode.h>
74 #include <sys/proc.h>
75 #include <sys/mountctl.h>
76 #include <sys/priv.h>
77 #include <sys/stat.h>
78 #include <sys/thread.h>
79 #include <sys/globaldata.h>
80 #include <sys/lockf.h>
81 #include <sys/buf.h>
82 #include <sys/queue.h>
83 #include <sys/limits.h>
84 #include <sys/dmsg.h>
85 #include <sys/mutex.h>
86 #include <sys/kern_syscall.h>
87
88 #include <sys/signal2.h>
89 #include <sys/buf2.h>
90 #include <sys/mutex2.h>
91 #include <sys/thread2.h>
92
93 #include "hammer2_disk.h"
94 #include "hammer2_mount.h"
95 #include "hammer2_ioctl.h"
96
97 struct hammer2_io;
98 struct hammer2_iocb;
99 struct hammer2_chain;
100 struct hammer2_cluster;
101 struct hammer2_inode;
102 struct hammer2_dev;
103 struct hammer2_pfs;
104 struct hammer2_span;
105 struct hammer2_state;
106 struct hammer2_msg;
107
108 /*
109  * Mutex and lock shims.  Hammer2 requires support for asynchronous and
110  * abortable locks, and both exclusive and shared spinlocks.  Normal
111  * synchronous non-abortable locks can be substituted for spinlocks.
112  */
113 typedef mtx_t                           hammer2_mtx_t;
114 typedef mtx_link_t                      hammer2_mtx_link_t;
115 typedef mtx_state_t                     hammer2_mtx_state_t;
116
117 typedef struct spinlock                 hammer2_spin_t;
118
119 #define hammer2_mtx_ex                  mtx_lock_ex_quick
120 #define hammer2_mtx_sh                  mtx_lock_sh_quick
121 #define hammer2_mtx_unlock              mtx_unlock
122 #define hammer2_mtx_owned               mtx_owned
123 #define hammer2_mtx_init                mtx_init
124 #define hammer2_mtx_temp_release        mtx_lock_temp_release
125 #define hammer2_mtx_temp_restore        mtx_lock_temp_restore
126 #define hammer2_mtx_refs                mtx_lockrefs
127
128 #define hammer2_spin_init               spin_init
129 #define hammer2_spin_sh                 spin_lock_shared
130 #define hammer2_spin_ex                 spin_lock
131 #define hammer2_spin_unsh               spin_unlock_shared
132 #define hammer2_spin_unex               spin_unlock
133
134 /*
135  * General lock support
136  */
137 static __inline
138 int
139 hammer2_mtx_upgrade(hammer2_mtx_t *mtx)
140 {
141         int wasexclusive;
142
143         if (mtx_islocked_ex(mtx)) {
144                 wasexclusive = 1;
145         } else {
146                 mtx_unlock(mtx);
147                 mtx_lock_ex_quick(mtx);
148                 wasexclusive = 0;
149         }
150         return wasexclusive;
151 }
152
153 /*
154  * Downgrade an inode lock from exclusive to shared only if the inode
155  * lock was previously shared.  If the inode lock was previously exclusive,
156  * this is a NOP.
157  */
158 static __inline
159 void
160 hammer2_mtx_downgrade(hammer2_mtx_t *mtx, int wasexclusive)
161 {
162         if (wasexclusive == 0)
163                 mtx_downgrade(mtx);
164 }
165
166 /*
167  * The xid tracks internal transactional updates.
168  *
169  * XXX fix-me, really needs to be 64-bits
170  */
171 typedef uint32_t hammer2_xid_t;
172
173 #define HAMMER2_XID_MIN 0x00000000U
174 #define HAMMER2_XID_MAX 0x7FFFFFFFU
175
176 /*
177  * The chain structure tracks a portion of the media topology from the
178  * root (volume) down.  Chains represent volumes, inodes, indirect blocks,
179  * data blocks, and freemap nodes and leafs.
180  *
181  * The chain structure utilizes a simple singly-homed topology and the
182  * chain's in-memory topology will move around as the chains do, due mainly
183  * to renames and indirect block creation.
184  *
185  * Block Table Updates
186  *
187  *      Block table updates for insertions and updates are delayed until the
188  *      flush.  This allows us to avoid having to modify the parent chain
189  *      all the way to the root.
190  *
191  *      Block table deletions are performed immediately (modifying the parent
192  *      in the process) because the flush code uses the chain structure to
193  *      track delayed updates and the chain will be (likely) gone or moved to
194  *      another location in the topology after a deletion.
195  *
196  *      A prior iteration of the code tried to keep the relationship intact
197  *      on deletes by doing a delete-duplicate operation on the chain, but
198  *      it added way too much complexity to the codebase.
199  *
200  * Flush Synchronization
201  *
202  *      The flush code must flush modified chains bottom-up.  Because chain
203  *      structures can shift around and are NOT topologically stable,
204  *      modified chains are independently indexed for the flush.  As the flush
205  *      runs it modifies (or further modifies) and updates the parents,
206  *      propagating the flush all the way to the volume root.
207  *
208  *      Modifying front-end operations can occur during a flush but will block
209  *      in two cases: (1) when the front-end tries to operate on the inode
210  *      currently in the midst of being flushed and (2) if the front-end
211  *      crosses an inode currently being flushed (such as during a rename).
212  *      So, for example, if you rename directory "x" to "a/b/c/d/e/f/g/x" and
213  *      the flusher is currently working on "a/b/c", the rename will block
214  *      temporarily in order to ensure that "x" exists in one place or the
215  *      other.
216  *
217  *      Meta-data statistics are updated by the flusher.  The front-end will
218  *      make estimates but meta-data must be fully synchronized only during a
219  *      flush in order to ensure that it remains correct across a crash.
220  *
221  *      Multiple flush synchronizations can theoretically be in-flight at the
222  *      same time but the implementation is not coded to handle the case and
223  *      currently serializes them.
224  *
225  * Snapshots:
226  *
227  *      Snapshots currently require the subdirectory tree being snapshotted
228  *      to be flushed.  The snapshot then creates a new super-root inode which
229  *      copies the flushed blockdata of the directory or file that was
230  *      snapshotted.
231  *
232  * RBTREE NOTES:
233  *
234  *      - Note that the radix tree runs in powers of 2 only so sub-trees
235  *        cannot straddle edges.
236  */
237 RB_HEAD(hammer2_chain_tree, hammer2_chain);
238 TAILQ_HEAD(h2_flush_list, hammer2_chain);
239 TAILQ_HEAD(h2_core_list, hammer2_chain);
240 TAILQ_HEAD(h2_iocb_list, hammer2_iocb);
241
242 #define CHAIN_CORE_DELETE_BMAP_ENTRIES  \
243         (HAMMER2_PBUFSIZE / sizeof(hammer2_blockref_t) / sizeof(uint32_t))
244
245 struct hammer2_chain_core {
246         hammer2_mtx_t   lock;
247         hammer2_spin_t  spin;
248         struct hammer2_chain_tree rbtree; /* sub-chains */
249         int             live_zero;      /* blockref array opt */
250         u_int           flags;
251         u_int           live_count;     /* live (not deleted) chains in tree */
252         u_int           chain_count;    /* live + deleted chains under core */
253         int             generation;     /* generation number (inserts only) */
254 };
255
256 typedef struct hammer2_chain_core hammer2_chain_core_t;
257
258 #define HAMMER2_CORE_UNUSED0001         0x0001
259 #define HAMMER2_CORE_COUNTEDBREFS       0x0002
260
261 RB_HEAD(hammer2_io_tree, hammer2_io);
262
263 /*
264  * IOCB - IO callback (into chain, cluster, or manual request)
265  */
266 struct hammer2_iocb {
267         TAILQ_ENTRY(hammer2_iocb) entry;
268         void (*callback)(struct hammer2_iocb *iocb);
269         struct hammer2_io       *dio;
270         struct hammer2_cluster  *cluster;
271         struct hammer2_chain    *chain;
272         void                    *ptr;
273         off_t                   lbase;
274         int                     lsize;
275         uint32_t                flags;
276         int                     error;
277 };
278
279 typedef struct hammer2_iocb hammer2_iocb_t;
280
281 #define HAMMER2_IOCB_INTERLOCK  0x00000001
282 #define HAMMER2_IOCB_ONQ        0x00000002
283 #define HAMMER2_IOCB_DONE       0x00000004
284 #define HAMMER2_IOCB_INPROG     0x00000008
285 #define HAMMER2_IOCB_UNUSED10   0x00000010
286 #define HAMMER2_IOCB_QUICK      0x00010000
287 #define HAMMER2_IOCB_ZERO       0x00020000
288 #define HAMMER2_IOCB_READ       0x00040000
289 #define HAMMER2_IOCB_WAKEUP     0x00080000
290
291 /*
292  * DIO - Management structure wrapping system buffer cache.
293  *
294  *       Used for multiple purposes including concurrent management
295  *       if small requests by chains into larger DIOs.
296  */
297 struct hammer2_io {
298         RB_ENTRY(hammer2_io) rbnode;    /* indexed by device offset */
299         struct h2_iocb_list iocbq;
300         struct spinlock spin;
301         struct hammer2_dev *hmp;
302         struct buf      *bp;
303         off_t           pbase;
304         int             psize;
305         int             refs;
306         int             act;                    /* activity */
307 };
308
309 typedef struct hammer2_io hammer2_io_t;
310
311 #define HAMMER2_DIO_INPROG      0x80000000      /* bio in progress */
312 #define HAMMER2_DIO_GOOD        0x40000000      /* dio->bp is stable */
313 #define HAMMER2_DIO_WAITING     0x20000000      /* (old) */
314 #define HAMMER2_DIO_DIRTY       0x10000000      /* flush on last drop */
315
316 #define HAMMER2_DIO_MASK        0x0FFFFFFF
317
318 /*
319  * Primary chain structure keeps track of the topology in-memory.
320  */
321 struct hammer2_chain {
322         hammer2_chain_core_t    core;
323         RB_ENTRY(hammer2_chain) rbnode;         /* live chain(s) */
324         hammer2_blockref_t      bref;
325         struct hammer2_chain    *parent;
326         struct hammer2_state    *state;         /* if active cache msg */
327         struct hammer2_dev      *hmp;
328         struct hammer2_pfs      *pmp;           /* A PFS or super-root (spmp) */
329
330         hammer2_xid_t   flush_xid;              /* flush sequencing */
331         hammer2_key_t   data_count;             /* delta's to apply */
332         hammer2_key_t   inode_count;            /* delta's to apply */
333         hammer2_key_t   data_count_up;          /* delta's to apply */
334         hammer2_key_t   inode_count_up;         /* delta's to apply */
335         hammer2_io_t    *dio;                   /* physical data buffer */
336         u_int           bytes;                  /* physical data size */
337         u_int           flags;
338         u_int           refs;
339         u_int           lockcnt;
340         hammer2_media_data_t *data;             /* data pointer shortcut */
341         TAILQ_ENTRY(hammer2_chain) flush_node;  /* flush list */
342 };
343
344 typedef struct hammer2_chain hammer2_chain_t;
345
346 int hammer2_chain_cmp(hammer2_chain_t *chain1, hammer2_chain_t *chain2);
347 RB_PROTOTYPE(hammer2_chain_tree, hammer2_chain, rbnode, hammer2_chain_cmp);
348
349 /*
350  * Special notes on flags:
351  *
352  * INITIAL - This flag allows a chain to be created and for storage to
353  *           be allocated without having to immediately instantiate the
354  *           related buffer.  The data is assumed to be all-zeros.  It
355  *           is primarily used for indirect blocks.
356  *
357  * MODIFIED- The chain's media data has been modified.
358  * UPDATE  - Chain might not be modified but parent blocktable needs update
359  *
360  * BMAPPED - Indicates that the chain is present in the parent blockmap.
361  * BMAPUPD - Indicates that the chain is present but needs to be updated
362  *           in the parent blockmap.
363  */
364 #define HAMMER2_CHAIN_MODIFIED          0x00000001      /* dirty chain data */
365 #define HAMMER2_CHAIN_ALLOCATED         0x00000002      /* kmalloc'd chain */
366 #define HAMMER2_CHAIN_DESTROY           0x00000004
367 #define HAMMER2_CHAIN_UNLINKED          0x00000008      /* unlinked file */
368 #define HAMMER2_CHAIN_DELETED           0x00000010      /* deleted chain */
369 #define HAMMER2_CHAIN_INITIAL           0x00000020      /* initial create */
370 #define HAMMER2_CHAIN_UPDATE            0x00000040      /* need parent update */
371 #define HAMMER2_CHAIN_DEFERRED          0x00000080      /* flush depth defer */
372 #define HAMMER2_CHAIN_IOFLUSH           0x00000100      /* bawrite on put */
373 #define HAMMER2_CHAIN_ONFLUSH           0x00000200      /* on a flush list */
374 #define HAMMER2_CHAIN_UNUSED00000400    0x00000400
375 #define HAMMER2_CHAIN_VOLUMESYNC        0x00000800      /* needs volume sync */
376 #define HAMMER2_CHAIN_UNUSED00001000    0x00001000
377 #define HAMMER2_CHAIN_UNUSED00002000    0x00002000
378 #define HAMMER2_CHAIN_ONRBTREE          0x00004000      /* on parent RB tree */
379 #define HAMMER2_CHAIN_SNAPSHOT          0x00008000      /* snapshot special */
380 #define HAMMER2_CHAIN_EMBEDDED          0x00010000      /* embedded data */
381 #define HAMMER2_CHAIN_RELEASE           0x00020000      /* don't keep around */
382 #define HAMMER2_CHAIN_BMAPPED           0x00040000      /* present in blkmap */
383 #define HAMMER2_CHAIN_BMAPUPD           0x00080000      /* +needs updating */
384 #define HAMMER2_CHAIN_UNUSED00100000    0x00100000
385 #define HAMMER2_CHAIN_UNUSED00200000    0x00200000
386 #define HAMMER2_CHAIN_PFSBOUNDARY       0x00400000      /* super->pfs inode */
387
388 #define HAMMER2_CHAIN_FLUSH_MASK        (HAMMER2_CHAIN_MODIFIED |       \
389                                          HAMMER2_CHAIN_UPDATE |         \
390                                          HAMMER2_CHAIN_ONFLUSH)
391
392 /*
393  * Flags passed to hammer2_chain_lookup() and hammer2_chain_next()
394  *
395  * NOTE: MATCHIND allows an indirect block / freemap node to be returned
396  *       when the passed key range matches the radix.  Remember that key_end
397  *       is inclusive (e.g. {0x000,0xFFF}, not {0x000,0x1000}).
398  */
399 #define HAMMER2_LOOKUP_NOLOCK           0x00000001      /* ref only */
400 #define HAMMER2_LOOKUP_NODATA           0x00000002      /* data left NULL */
401 #define HAMMER2_LOOKUP_SHARED           0x00000100
402 #define HAMMER2_LOOKUP_MATCHIND         0x00000200      /* return all chains */
403 #define HAMMER2_LOOKUP_UNUSED0400       0x00000400
404 #define HAMMER2_LOOKUP_ALWAYS           0x00000800      /* resolve data */
405
406 /*
407  * Flags passed to hammer2_chain_modify() and hammer2_chain_resize()
408  *
409  * NOTE: OPTDATA allows us to avoid instantiating buffers for INDIRECT
410  *       blocks in the INITIAL-create state.
411  */
412 #define HAMMER2_MODIFY_OPTDATA          0x00000002      /* data can be NULL */
413 #define HAMMER2_MODIFY_NO_MODIFY_TID    0x00000004
414 #define HAMMER2_MODIFY_UNUSED0008       0x00000008
415 #define HAMMER2_MODIFY_NOREALLOC        0x00000010
416
417 /*
418  * Flags passed to hammer2_chain_lock()
419  *
420  * NOTE: RDONLY is set to optimize cluster operations when *no* modifications
421  *       will be made to either the cluster being locked or any underlying
422  *       cluster.  It allows the cluster to lock and access data for a subset
423  *       of available nodes instead of all available nodes.
424  */
425 #define HAMMER2_RESOLVE_NEVER           1
426 #define HAMMER2_RESOLVE_MAYBE           2
427 #define HAMMER2_RESOLVE_ALWAYS          3
428 #define HAMMER2_RESOLVE_MASK            0x0F
429
430 #define HAMMER2_RESOLVE_SHARED          0x10    /* request shared lock */
431 #define HAMMER2_RESOLVE_NOREF           0x20    /* already ref'd on lock */
432 #define HAMMER2_RESOLVE_RDONLY          0x40    /* higher level op flag */
433
434 /*
435  * Flags passed to hammer2_chain_delete()
436  */
437 #define HAMMER2_DELETE_PERMANENT        0x0001
438 #define HAMMER2_DELETE_NOSTATS          0x0002
439
440 #define HAMMER2_INSERT_NOSTATS          0x0002
441 #define HAMMER2_INSERT_PFSROOT          0x0004
442
443 /*
444  * Flags passed to hammer2_chain_delete_duplicate()
445  */
446 #define HAMMER2_DELDUP_RECORE           0x0001
447
448 /*
449  * Cluster different types of storage together for allocations
450  */
451 #define HAMMER2_FREECACHE_INODE         0
452 #define HAMMER2_FREECACHE_INDIR         1
453 #define HAMMER2_FREECACHE_DATA          2
454 #define HAMMER2_FREECACHE_UNUSED3       3
455 #define HAMMER2_FREECACHE_TYPES         4
456
457 /*
458  * hammer2_freemap_alloc() block preference
459  */
460 #define HAMMER2_OFF_NOPREF              ((hammer2_off_t)-1)
461
462 /*
463  * BMAP read-ahead maximum parameters
464  */
465 #define HAMMER2_BMAP_COUNT              16      /* max bmap read-ahead */
466 #define HAMMER2_BMAP_BYTES              (HAMMER2_PBUFSIZE * HAMMER2_BMAP_COUNT)
467
468 /*
469  * hammer2_freemap_adjust()
470  */
471 #define HAMMER2_FREEMAP_DORECOVER       1
472 #define HAMMER2_FREEMAP_DOMAYFREE       2
473 #define HAMMER2_FREEMAP_DOREALFREE      3
474
475 /*
476  * HAMMER2 cluster - A set of chains representing the same entity.
477  *
478  * hammer2_cluster typically represents a temporary set of representitive
479  * chains.  The one exception is that a hammer2_cluster is embedded in
480  * hammer2_inode.  This embedded cluster is ONLY used to track the
481  * representitive chains and cannot be directly locked.
482  *
483  * A cluster is usually temporary (and thus per-thread) for locking purposes,
484  * allowing us to embed the asynchronous storage required for cluster
485  * operations in the cluster itself and adjust the state and status without
486  * having to worry too much about SMP issues.
487  *
488  * The exception is the cluster embedded in the hammer2_inode structure.
489  * This is used to cache the cluster state on an inode-by-inode basis.
490  * Individual hammer2_chain structures not incorporated into clusters might
491  * also stick around to cache miscellanious elements.
492  *
493  * Because the cluster is a 'working copy' and is usually subject to cluster
494  * quorum rules, it is quite possible for us to end up with an insufficient
495  * number of live chains to execute an operation.  If an insufficient number
496  * of chains remain in a working copy, the operation may have to be
497  * downgraded, retried, stall until the requisit number of chains are
498  * available, or possibly even error out depending on the mount type.
499  */
500 #define HAMMER2_MAXCLUSTER      8
501
502 struct hammer2_cluster_item {
503         hammer2_mtx_link_t      async_link;
504         hammer2_chain_t         *chain;
505         struct hammer2_cluster  *cluster;       /* link back to cluster */
506         int                     cache_index;
507         uint32_t                flags;
508 };
509
510 typedef struct hammer2_cluster_item hammer2_cluster_item_t;
511
512 #define HAMMER2_CLUSTER_ITEM_LOCKED     0x0001  /* valid lock */
513 #define HAMMER2_CLUSTER_ITEM_DATA
514
515 struct hammer2_cluster {
516         int                     refs;           /* track for deallocation */
517         int                     ddflag;
518         struct hammer2_pfs      *pmp;
519         uint32_t                flags;
520         int                     nchains;
521         hammer2_iocb_t          iocb;
522         hammer2_chain_t         *focus;         /* current focus (or mod) */
523         hammer2_cluster_item_t  array[HAMMER2_MAXCLUSTER];
524 };
525
526 typedef struct hammer2_cluster  hammer2_cluster_t;
527
528 /*
529  * WRHARD       - Hard mounts can write fully synchronized
530  * RDHARD       - Hard mounts can read fully synchronized
531  * WRSOFT       - Soft mounts can write to at least the SOFT_MASTER
532  * RDSOFT       - Soft mounts can read from at least a SOFT_SLAVE
533  * RDSLAVE      - slaves are accessible (possibly unsynchronized or remote).
534  * MSYNCED      - All masters are fully synchronized
535  * SSYNCED      - All known local slaves are fully synchronized to masters
536  *
537  * All available masters are always incorporated.  All PFSs belonging to a
538  * cluster (master, slave, copy, whatever) always try to synchronize the
539  * total number of known masters in the PFSs root inode.
540  *
541  * A cluster might have access to many slaves, copies, or caches, but we
542  * have a limited number of cluster slots.  Any such elements which are
543  * directly mounted from block device(s) will always be incorporated.   Note
544  * that SSYNCED only applies to such elements which are directly mounted,
545  * not to any remote slaves, copies, or caches that could be available.  These
546  * bits are used to monitor and drive our synchronization threads.
547  *
548  * When asking the question 'is any data accessible at all', then a simple
549  * test against (RDHARD|RDSOFT|RDSLAVE) gives you the answer.  If any of
550  * these bits are set the object can be read with certain caveats:
551  * RDHARD - no caveats.  RDSOFT - authoritative but might not be synchronized.
552  * and RDSLAVE - not authoritative, has some data but it could be old or
553  * incomplete.
554  *
555  * When both soft and hard mounts are available, data will be read and written
556  * via the soft mount only.  But all might be in the cluster because
557  * background synchronization threads still need to do their work.
558  */
559 #define HAMMER2_CLUSTER_INODE   0x00000001      /* embedded in inode */
560 #define HAMMER2_CLUSTER_NOSYNC  0x00000002      /* not in sync (cumulative) */
561 #define HAMMER2_CLUSTER_LOCKED  0x00000004      /* cluster lks not recursive */
562 #define HAMMER2_CLUSTER_WRHARD  0x00000100      /* hard-mount can write */
563 #define HAMMER2_CLUSTER_RDHARD  0x00000200      /* hard-mount can read */
564 #define HAMMER2_CLUSTER_WRSOFT  0x00000400      /* soft-mount can write */
565 #define HAMMER2_CLUSTER_RDSOFT  0x00000800      /* soft-mount can read */
566 #define HAMMER2_CLUSTER_MSYNCED 0x00001000      /* all masters synchronized */
567 #define HAMMER2_CLUSTER_SSYNCED 0x00002000      /* known slaves synchronized */
568
569 #define HAMMER2_CLUSTER_ANYDATA ( HAMMER2_CLUSTER_RDHARD |      \
570                                   HAMMER2_CLUSTER_RDSOFT |      \
571                                   HAMMER2_CLUSTER_RDSLAVE)
572
573 #define HAMMER2_CLUSTER_RDOK    ( HAMMER2_CLUSTER_RDHARD |      \
574                                   HAMMER2_CLUSTER_RDSOFT)
575
576 #define HAMMER2_CLUSTER_WROK    ( HAMMER2_CLUSTER_WRHARD |      \
577                                   HAMMER2_CLUSTER_WRSOFT)
578
579 #define HAMMER2_CLUSTER_ZFLAGS  ( HAMMER2_CLUSTER_WRHARD |      \
580                                   HAMMER2_CLUSTER_RDHARD |      \
581                                   HAMMER2_CLUSTER_WRSOFT |      \
582                                   HAMMER2_CLUSTER_RDSOFT |      \
583                                   HAMMER2_CLUSTER_MSYNCED |     \
584                                   HAMMER2_CLUSTER_SSYNCED)
585
586 RB_HEAD(hammer2_inode_tree, hammer2_inode);
587
588 /*
589  * A hammer2 inode.
590  *
591  * NOTE: The inode-embedded cluster is never used directly for I/O (since
592  *       it may be shared).  Instead it will be replicated-in and synchronized
593  *       back out if changed.
594  */
595 struct hammer2_inode {
596         RB_ENTRY(hammer2_inode) rbnode;         /* inumber lookup (HL) */
597         hammer2_mtx_t           lock;           /* inode lock */
598         struct hammer2_pfs      *pmp;           /* PFS mount */
599         struct hammer2_inode    *pip;           /* parent inode */
600         struct vnode            *vp;
601         hammer2_cluster_t       cluster;
602         struct lockf            advlock;
603         hammer2_tid_t           inum;
604         u_int                   flags;
605         u_int                   refs;           /* +vpref, +flushref */
606         uint8_t                 comp_heuristic;
607         hammer2_off_t           size;
608         uint64_t                mtime;
609 };
610
611 typedef struct hammer2_inode hammer2_inode_t;
612
613 #define HAMMER2_INODE_MODIFIED          0x0001
614 #define HAMMER2_INODE_SROOT             0x0002  /* kmalloc special case */
615 #define HAMMER2_INODE_RENAME_INPROG     0x0004
616 #define HAMMER2_INODE_ONRBTREE          0x0008
617 #define HAMMER2_INODE_RESIZED           0x0010
618 #define HAMMER2_INODE_MTIME             0x0020
619
620 int hammer2_inode_cmp(hammer2_inode_t *ip1, hammer2_inode_t *ip2);
621 RB_PROTOTYPE2(hammer2_inode_tree, hammer2_inode, rbnode, hammer2_inode_cmp,
622                 hammer2_tid_t);
623
624 /*
625  * inode-unlink side-structure
626  */
627 struct hammer2_inode_unlink {
628         TAILQ_ENTRY(hammer2_inode_unlink) entry;
629         hammer2_inode_t *ip;
630 };
631 TAILQ_HEAD(h2_unlk_list, hammer2_inode_unlink);
632
633 typedef struct hammer2_inode_unlink hammer2_inode_unlink_t;
634
635 /*
636  * Cluster node synchronization thread element.
637  *
638  * Multiple syncthr's can hang off of a hammer2_pfs structure, typically one
639  * for each block device that is part of the PFS.  Synchronization threads
640  * for PFSs accessed over the network are handled by their respective hosts.
641  *
642  * Synchronization threads are responsible for keeping a local node
643  * synchronized to the greater cluster.
644  *
645  * A syncthr can also hang off each hammer2_dev's super-root PFS (spmp).
646  * This thread is responsible for automatic bulkfree and dedup scans.
647  */
648 struct hammer2_syncthr {
649         struct hammer2_pfs *pmp;
650         kdmsg_state_t   *span;
651         thread_t        td;
652         uint32_t        flags;
653         uint32_t        unused01;
654         struct lock     lk;
655 };
656
657 typedef struct hammer2_syncthr hammer2_syncthr_t;
658
659 #define HAMMER2_SYNCTHR_UNMOUNTING      0x0001  /* unmount request */
660 #define HAMMER2_SYNCTHR_DEV             0x0002  /* related to dev, not pfs */
661 #define HAMMER2_SYNCTHR_SPANNED         0x0004  /* LNK_SPAN active */
662 #define HAMMER2_SYNCTHR_REMASTER        0x0008  /* remaster request */
663 #define HAMMER2_SYNCTHR_STOP            0x0010  /* exit request */
664 #define HAMMER2_SYNCTHR_FREEZE          0x0020  /* force idle */
665 #define HAMMER2_SYNCTHR_FROZEN          0x0040  /* restart */
666
667 /*
668  * A hammer2 transaction and flush sequencing structure.
669  *
670  * This global structure is tied into hammer2_dev and is used
671  * to sequence modifying operations and flushes.
672  *
673  * (a) Any modifying operations with sync_tid >= flush_tid will stall until
674  *     all modifying operating with sync_tid < flush_tid complete.
675  *
676  *     The flush related to flush_tid stalls until all modifying operations
677  *     with sync_tid < flush_tid complete.
678  *
679  * (b) Once unstalled, modifying operations with sync_tid > flush_tid are
680  *     allowed to run.  All modifications cause modify/duplicate operations
681  *     to occur on the related chains.  Note that most INDIRECT blocks will
682  *     be unaffected because the modifications just overload the RBTREE
683  *     structurally instead of actually modifying the indirect blocks.
684  *
685  * (c) The actual flush unstalls and RUNS CONCURRENTLY with (b), but only
686  *     utilizes the chain structures with sync_tid <= flush_tid.  The
687  *     flush will modify related indirect blocks and inodes in-place
688  *     (rather than duplicate) since the adjustments are compatible with
689  *     (b)'s RBTREE overloading
690  *
691  *     SPECIAL NOTE:  Inode modifications have to also propagate along any
692  *                    modify/duplicate chains.  File writes detect the flush
693  *                    and force out the conflicting buffer cache buffer(s)
694  *                    before reusing them.
695  *
696  * (d) Snapshots can be made instantly but must be flushed and disconnected
697  *     from their duplicative source before they can be mounted.  This is
698  *     because while H2's on-media structure supports forks, its in-memory
699  *     structure only supports very simple forking for background flushing
700  *     purposes.
701  *
702  * TODO: Flush merging.  When fsync() is called on multiple discrete files
703  *       concurrently there is no reason to stall the second fsync.
704  *       The final flush that reaches to root can cover both fsync()s.
705  *
706  *     The chains typically terminate as they fly onto the disk.  The flush
707  *     ultimately reaches the volume header.
708  */
709 struct hammer2_trans {
710         TAILQ_ENTRY(hammer2_trans) entry;
711         struct hammer2_pfs      *pmp;
712         hammer2_xid_t           sync_xid;
713         hammer2_tid_t           inode_tid;      /* inode number assignment */
714         thread_t                td;             /* pointer */
715         int                     flags;
716         int                     blocked;
717         uint8_t                 inodes_created;
718         uint8_t                 dummy[7];
719 };
720
721 typedef struct hammer2_trans hammer2_trans_t;
722
723 #define HAMMER2_TRANS_ISFLUSH           0x0001  /* formal flush */
724 #define HAMMER2_TRANS_CONCURRENT        0x0002  /* concurrent w/flush */
725 #define HAMMER2_TRANS_BUFCACHE          0x0004  /* from bioq strategy write */
726 #define HAMMER2_TRANS_NEWINODE          0x0008  /* caller allocating inode */
727 #define HAMMER2_TRANS_UNUSED0010        0x0010
728 #define HAMMER2_TRANS_PREFLUSH          0x0020  /* preflush state */
729
730 #define HAMMER2_FREEMAP_HEUR_NRADIX     4       /* pwr 2 PBUFRADIX-MINIORADIX */
731 #define HAMMER2_FREEMAP_HEUR_TYPES      8
732 #define HAMMER2_FREEMAP_HEUR            (HAMMER2_FREEMAP_HEUR_NRADIX * \
733                                          HAMMER2_FREEMAP_HEUR_TYPES)
734
735 /*
736  * Transaction Rendezvous
737  */
738 TAILQ_HEAD(hammer2_trans_queue, hammer2_trans);
739
740 struct hammer2_trans_manage {
741         hammer2_xid_t           flush_xid;      /* last flush transaction */
742         hammer2_xid_t           alloc_xid;
743         struct lock             translk;        /* lockmgr lock */
744         struct hammer2_trans_queue transq;      /* modifying transactions */
745         int                     flushcnt;       /* track flush trans */
746 };
747
748 typedef struct hammer2_trans_manage hammer2_trans_manage_t;
749
750 /*
751  * Global (per partition) management structure, represents a hard block
752  * device.  Typically referenced by hammer2_chain structures when applicable.
753  * Typically not used for network-managed elements.
754  *
755  * Note that a single hammer2_dev can be indirectly tied to multiple system
756  * mount points.  There is no direct relationship.  System mounts are
757  * per-cluster-id, not per-block-device, and a single hard mount might contain
758  * many PFSs and those PFSs might combine together in various ways to form
759  * the set of available clusters.
760  */
761 struct hammer2_dev {
762         struct vnode    *devvp;         /* device vnode */
763         int             ronly;          /* read-only mount */
764         int             pmp_count;      /* number of actively mounted PFSs */
765         TAILQ_ENTRY(hammer2_dev) mntentry; /* hammer2_mntlist */
766
767         struct malloc_type *mchain;
768         int             nipstacks;
769         int             maxipstacks;
770         kdmsg_iocom_t   iocom;          /* volume-level dmsg interface */
771         struct spinlock io_spin;        /* iotree access */
772         struct hammer2_io_tree iotree;
773         int             iofree_count;
774         hammer2_chain_t vchain;         /* anchor chain (topology) */
775         hammer2_chain_t fchain;         /* anchor chain (freemap) */
776         struct spinlock list_spin;
777         struct h2_flush_list    flushq; /* flush seeds */
778         struct hammer2_pfs *spmp;       /* super-root pmp for transactions */
779         struct lock     vollk;          /* lockmgr lock */
780         hammer2_off_t   heur_freemap[HAMMER2_FREEMAP_HEUR];
781         int             volhdrno;       /* last volhdrno written */
782         hammer2_volume_data_t voldata;
783         hammer2_volume_data_t volsync;  /* synchronized voldata */
784 };
785
786 typedef struct hammer2_dev hammer2_dev_t;
787
788 /*
789  * Per-cluster management structure.  This structure will be tied to a
790  * system mount point if the system is mounting the PFS, but is also used
791  * to manage clusters encountered during the super-root scan or received
792  * via LNK_SPANs that might not be mounted.
793  *
794  * This structure is also used to represent the super-root that hangs off
795  * of a hard mount point.  The super-root is not really a cluster element.
796  * In this case the spmp_hmp field will be non-NULL.  It's just easier to do
797  * this than to special case super-root manipulation in the hammer2_chain*
798  * code as being only hammer2_dev-related.
799  *
800  * pfs_mode and pfs_nmasters are rollup fields which critically describes
801  * how elements of the cluster act on the cluster.  pfs_mode is only applicable
802  * when a PFS is mounted by the system.  pfs_nmasters is our best guess as to
803  * how many masters have been configured for a cluster and is always
804  * applicable.
805  *
806  * WARNING! Portions of this structure have deferred initialization.  In
807  *          particular, if not mounted there will be no ihidden or wthread.
808  *          umounted network PFSs will also be missing iroot and numerous
809  *          other fields will not be initialized prior to mount.
810  *
811  *          Synchronization threads are chain-specific and only applicable
812  *          to local hard PFS entries.  A hammer2_pfs structure may contain
813  *          more than one when multiple hard PFSs are present on the local
814  *          machine which require synchronization monitoring.  Most PFSs
815  *          (such as snapshots) are 1xMASTER PFSs which do not need a
816  *          synchronization thread.
817  *
818  * WARNING! The chains making up pfs->iroot's cluster are accounted for in
819  *          hammer2_dev->pmp_count when the pfs is associated with a mount
820  *          point.
821  */
822 struct hammer2_pfs {
823         struct mount            *mp;
824         TAILQ_ENTRY(hammer2_pfs) mntentry;      /* hammer2_pfslist */
825         uuid_t                  pfs_clid;
826         hammer2_dev_t           *spmp_hmp;      /* only if super-root pmp */
827         hammer2_inode_t         *iroot;         /* PFS root inode */
828         hammer2_inode_t         *ihidden;       /* PFS hidden directory */
829         struct lock             lock;           /* PFS lock for certain ops */
830         hammer2_off_t           inode_count;    /* copy of inode_count */
831         struct netexport        export;         /* nfs export */
832         int                     ronly;          /* read-only mount */
833         struct malloc_type      *minode;
834         struct malloc_type      *mmsg;
835         struct spinlock         inum_spin;      /* inumber lookup */
836         struct hammer2_inode_tree inum_tree;    /* (not applicable to spmp) */
837         hammer2_tid_t           alloc_tid;
838         hammer2_tid_t           flush_tid;
839         hammer2_tid_t           inode_tid;
840         uint8_t                 pfs_nmasters;   /* total masters */
841         uint8_t                 pfs_mode;       /* operating mode PFSMODE */
842         uint8_t                 unused01;
843         uint8_t                 unused02;
844         uint32_t                unused03;
845         long                    inmem_inodes;
846         uint32_t                inmem_dirty_chains;
847         int                     count_lwinprog; /* logical write in prog */
848         struct spinlock         list_spin;
849         struct h2_unlk_list     unlinkq;        /* last-close unlink */
850         hammer2_syncthr_t       primary_thr;
851         thread_t                wthread_td;     /* write thread td */
852         struct bio_queue_head   wthread_bioq;   /* logical buffer bioq */
853         hammer2_mtx_t           wthread_mtx;    /* interlock */
854         int                     wthread_destroy;/* termination sequencing */
855 };
856
857 typedef struct hammer2_pfs hammer2_pfs_t;
858
859 #define HAMMER2_DIRTYCHAIN_WAITING      0x80000000
860 #define HAMMER2_DIRTYCHAIN_MASK         0x7FFFFFFF
861
862 #define HAMMER2_LWINPROG_WAITING        0x80000000
863 #define HAMMER2_LWINPROG_MASK           0x7FFFFFFF
864
865 /*
866  * Bulkscan
867  */
868 #define HAMMER2_BULK_ABORT      0x00000001
869
870 /*
871  * Misc
872  */
873 #if defined(_KERNEL)
874
875 MALLOC_DECLARE(M_HAMMER2);
876
877 #define VTOI(vp)        ((hammer2_inode_t *)(vp)->v_data)
878 #define ITOV(ip)        ((ip)->vp)
879
880 /*
881  * Currently locked chains retain the locked buffer cache buffer for
882  * indirect blocks, and indirect blocks can be one of two sizes.  The
883  * device buffer has to match the case to avoid deadlocking recursive
884  * chains that might otherwise try to access different offsets within
885  * the same device buffer.
886  */
887 static __inline
888 int
889 hammer2_devblkradix(int radix)
890 {
891 #if 0
892         if (radix <= HAMMER2_LBUFRADIX) {
893                 return (HAMMER2_LBUFRADIX);
894         } else {
895                 return (HAMMER2_PBUFRADIX);
896         }
897 #endif
898         return (HAMMER2_PBUFRADIX);
899 }
900
901 /*
902  * XXX almost time to remove this.  DIO uses PBUFSIZE exclusively now.
903  */
904 static __inline
905 size_t
906 hammer2_devblksize(size_t bytes)
907 {
908 #if 0
909         if (bytes <= HAMMER2_LBUFSIZE) {
910                 return(HAMMER2_LBUFSIZE);
911         } else {
912                 KKASSERT(bytes <= HAMMER2_PBUFSIZE &&
913                          (bytes ^ (bytes - 1)) == ((bytes << 1) - 1));
914                 return (HAMMER2_PBUFSIZE);
915         }
916 #endif
917         return (HAMMER2_PBUFSIZE);
918 }
919
920
921 static __inline
922 hammer2_pfs_t *
923 MPTOPMP(struct mount *mp)
924 {
925         return ((hammer2_pfs_t *)mp->mnt_data);
926 }
927
928 #define LOCKSTART       int __nlocks = curthread->td_locks
929 #define LOCKENTER       (++curthread->td_locks)
930 #define LOCKEXIT        (--curthread->td_locks)
931 #define LOCKSTOP        KKASSERT(curthread->td_locks == __nlocks)
932
933 extern struct vop_ops hammer2_vnode_vops;
934 extern struct vop_ops hammer2_spec_vops;
935 extern struct vop_ops hammer2_fifo_vops;
936
937 extern int hammer2_debug;
938 extern int hammer2_cluster_enable;
939 extern int hammer2_hardlink_enable;
940 extern int hammer2_flush_pipe;
941 extern int hammer2_synchronous_flush;
942 extern int hammer2_dio_count;
943 extern long hammer2_limit_dirty_chains;
944 extern long hammer2_iod_file_read;
945 extern long hammer2_iod_meta_read;
946 extern long hammer2_iod_indr_read;
947 extern long hammer2_iod_fmap_read;
948 extern long hammer2_iod_volu_read;
949 extern long hammer2_iod_file_write;
950 extern long hammer2_iod_meta_write;
951 extern long hammer2_iod_indr_write;
952 extern long hammer2_iod_fmap_write;
953 extern long hammer2_iod_volu_write;
954 extern long hammer2_ioa_file_read;
955 extern long hammer2_ioa_meta_read;
956 extern long hammer2_ioa_indr_read;
957 extern long hammer2_ioa_fmap_read;
958 extern long hammer2_ioa_volu_read;
959 extern long hammer2_ioa_file_write;
960 extern long hammer2_ioa_meta_write;
961 extern long hammer2_ioa_indr_write;
962 extern long hammer2_ioa_fmap_write;
963 extern long hammer2_ioa_volu_write;
964
965 extern struct objcache *cache_buffer_read;
966 extern struct objcache *cache_buffer_write;
967
968 extern int destroy;
969 extern int write_thread_wakeup;
970
971 /*
972  * hammer2_subr.c
973  */
974 #define hammer2_icrc32(buf, size)       iscsi_crc32((buf), (size))
975 #define hammer2_icrc32c(buf, size, crc) iscsi_crc32_ext((buf), (size), (crc))
976
977 int hammer2_signal_check(time_t *timep);
978 hammer2_cluster_t *hammer2_inode_lock_ex(hammer2_inode_t *ip);
979 hammer2_cluster_t *hammer2_inode_lock_nex(hammer2_inode_t *ip, int how);
980 hammer2_cluster_t *hammer2_inode_lock_sh(hammer2_inode_t *ip);
981 void hammer2_inode_unlock_ex(hammer2_inode_t *ip, hammer2_cluster_t *chain);
982 void hammer2_inode_unlock_sh(hammer2_inode_t *ip, hammer2_cluster_t *chain);
983 hammer2_mtx_state_t hammer2_inode_lock_temp_release(hammer2_inode_t *ip);
984 void hammer2_inode_lock_temp_restore(hammer2_inode_t *ip,
985                         hammer2_mtx_state_t ostate);
986 int hammer2_inode_lock_upgrade(hammer2_inode_t *ip);
987 void hammer2_inode_lock_downgrade(hammer2_inode_t *ip, int);
988
989 void hammer2_dev_exlock(hammer2_dev_t *hmp);
990 void hammer2_dev_shlock(hammer2_dev_t *hmp);
991 void hammer2_dev_unlock(hammer2_dev_t *hmp);
992
993 int hammer2_get_dtype(const hammer2_inode_data_t *ipdata);
994 int hammer2_get_vtype(const hammer2_inode_data_t *ipdata);
995 u_int8_t hammer2_get_obj_type(enum vtype vtype);
996 void hammer2_time_to_timespec(u_int64_t xtime, struct timespec *ts);
997 u_int64_t hammer2_timespec_to_time(const struct timespec *ts);
998 u_int32_t hammer2_to_unix_xid(const uuid_t *uuid);
999 void hammer2_guid_to_uuid(uuid_t *uuid, u_int32_t guid);
1000 hammer2_xid_t hammer2_trans_newxid(hammer2_pfs_t *pmp);
1001 void hammer2_trans_manage_init(void);
1002
1003 hammer2_key_t hammer2_dirhash(const unsigned char *name, size_t len);
1004 int hammer2_getradix(size_t bytes);
1005
1006 int hammer2_calc_logical(hammer2_inode_t *ip, hammer2_off_t uoff,
1007                         hammer2_key_t *lbasep, hammer2_key_t *leofp);
1008 int hammer2_calc_physical(hammer2_inode_t *ip,
1009                         const hammer2_inode_data_t *ipdata,
1010                         hammer2_key_t lbase);
1011 void hammer2_update_time(uint64_t *timep);
1012 void hammer2_adjreadcounter(hammer2_blockref_t *bref, size_t bytes);
1013
1014 /*
1015  * hammer2_inode.c
1016  */
1017 struct vnode *hammer2_igetv(hammer2_inode_t *ip, hammer2_cluster_t *cparent,
1018                         int *errorp);
1019 void hammer2_inode_lock_nlinks(hammer2_inode_t *ip);
1020 void hammer2_inode_unlock_nlinks(hammer2_inode_t *ip);
1021 hammer2_inode_t *hammer2_inode_lookup(hammer2_pfs_t *pmp,
1022                         hammer2_tid_t inum);
1023 hammer2_inode_t *hammer2_inode_get(hammer2_pfs_t *pmp,
1024                         hammer2_inode_t *dip, hammer2_cluster_t *cluster);
1025 void hammer2_inode_free(hammer2_inode_t *ip);
1026 void hammer2_inode_ref(hammer2_inode_t *ip);
1027 void hammer2_inode_drop(hammer2_inode_t *ip);
1028 void hammer2_inode_repoint(hammer2_inode_t *ip, hammer2_inode_t *pip,
1029                         hammer2_cluster_t *cluster);
1030 void hammer2_run_unlinkq(hammer2_trans_t *trans, hammer2_pfs_t *pmp);
1031
1032 hammer2_inode_t *hammer2_inode_create(hammer2_trans_t *trans,
1033                         hammer2_inode_t *dip,
1034                         struct vattr *vap, struct ucred *cred,
1035                         const uint8_t *name, size_t name_len,
1036                         hammer2_cluster_t **clusterp,
1037                         int flags, int *errorp);
1038 int hammer2_inode_connect(hammer2_trans_t *trans,
1039                         hammer2_cluster_t **clusterp, int hlink,
1040                         hammer2_inode_t *dip, hammer2_cluster_t *dcluster,
1041                         const uint8_t *name, size_t name_len,
1042                         hammer2_key_t key);
1043 hammer2_inode_t *hammer2_inode_common_parent(hammer2_inode_t *fdip,
1044                         hammer2_inode_t *tdip);
1045 void hammer2_inode_fsync(hammer2_trans_t *trans, hammer2_inode_t *ip,
1046                         hammer2_cluster_t *cparent);
1047 int hammer2_unlink_file(hammer2_trans_t *trans, hammer2_inode_t *dip,
1048                         const uint8_t *name, size_t name_len, int isdir,
1049                         int *hlinkp, struct nchandle *nch, int nlinks);
1050 int hammer2_hardlink_consolidate(hammer2_trans_t *trans,
1051                         hammer2_inode_t *ip, hammer2_cluster_t **clusterp,
1052                         hammer2_inode_t *cdip, hammer2_cluster_t *cdcluster,
1053                         int nlinks);
1054 int hammer2_hardlink_deconsolidate(hammer2_trans_t *trans, hammer2_inode_t *dip,
1055                         hammer2_chain_t **chainp, hammer2_chain_t **ochainp);
1056 int hammer2_hardlink_find(hammer2_inode_t *dip, hammer2_cluster_t **cparentp,
1057                         hammer2_cluster_t **clusterp);
1058 int hammer2_parent_find(hammer2_cluster_t **cparentp,
1059                         hammer2_cluster_t *cluster);
1060 void hammer2_inode_install_hidden(hammer2_pfs_t *pmp);
1061
1062 /*
1063  * hammer2_chain.c
1064  */
1065 void hammer2_voldata_lock(hammer2_dev_t *hmp);
1066 void hammer2_voldata_unlock(hammer2_dev_t *hmp);
1067 void hammer2_voldata_modify(hammer2_dev_t *hmp);
1068 hammer2_chain_t *hammer2_chain_alloc(hammer2_dev_t *hmp,
1069                                 hammer2_pfs_t *pmp,
1070                                 hammer2_trans_t *trans,
1071                                 hammer2_blockref_t *bref);
1072 void hammer2_chain_core_alloc(hammer2_trans_t *trans, hammer2_chain_t *chain);
1073 void hammer2_chain_ref(hammer2_chain_t *chain);
1074 void hammer2_chain_drop(hammer2_chain_t *chain);
1075 int hammer2_chain_lock(hammer2_chain_t *chain, int how);
1076 const hammer2_media_data_t *hammer2_chain_rdata(hammer2_chain_t *chain);
1077 hammer2_media_data_t *hammer2_chain_wdata(hammer2_chain_t *chain);
1078
1079 /*
1080  * hammer2_cluster.c
1081  */
1082 int hammer2_cluster_isunlinked(hammer2_cluster_t *cluster);
1083 void hammer2_cluster_load_async(hammer2_cluster_t *cluster,
1084                                 void (*callback)(hammer2_iocb_t *iocb),
1085                                 void *ptr);
1086 void hammer2_chain_moved(hammer2_chain_t *chain);
1087 void hammer2_chain_modify(hammer2_trans_t *trans,
1088                                 hammer2_chain_t *chain, int flags);
1089 void hammer2_chain_resize(hammer2_trans_t *trans, hammer2_inode_t *ip,
1090                                 hammer2_chain_t *parent,
1091                                 hammer2_chain_t *chain,
1092                                 int nradix, int flags);
1093 void hammer2_chain_unlock(hammer2_chain_t *chain);
1094 void hammer2_chain_wait(hammer2_chain_t *chain);
1095 hammer2_chain_t *hammer2_chain_get(hammer2_chain_t *parent, int generation,
1096                                 hammer2_blockref_t *bref);
1097 hammer2_chain_t *hammer2_chain_lookup_init(hammer2_chain_t *parent, int flags);
1098 void hammer2_chain_lookup_done(hammer2_chain_t *parent);
1099 hammer2_chain_t *hammer2_chain_lookup(hammer2_chain_t **parentp,
1100                                 hammer2_key_t *key_nextp,
1101                                 hammer2_key_t key_beg, hammer2_key_t key_end,
1102                                 int *cache_indexp, int flags);
1103 hammer2_chain_t *hammer2_chain_next(hammer2_chain_t **parentp,
1104                                 hammer2_chain_t *chain,
1105                                 hammer2_key_t *key_nextp,
1106                                 hammer2_key_t key_beg, hammer2_key_t key_end,
1107                                 int *cache_indexp, int flags);
1108 hammer2_chain_t *hammer2_chain_scan(hammer2_chain_t *parent,
1109                                 hammer2_chain_t *chain,
1110                                 int *cache_indexp, int flags);
1111
1112 int hammer2_chain_create(hammer2_trans_t *trans, hammer2_chain_t **parentp,
1113                                 hammer2_chain_t **chainp,
1114                                 hammer2_pfs_t *pmp,
1115                                 hammer2_key_t key, int keybits,
1116                                 int type, size_t bytes, int flags);
1117 void hammer2_chain_rename(hammer2_trans_t *trans, hammer2_blockref_t *bref,
1118                                 hammer2_chain_t **parentp,
1119                                 hammer2_chain_t *chain, int flags);
1120 int hammer2_chain_snapshot(hammer2_trans_t *trans, hammer2_chain_t **chainp,
1121                                 hammer2_ioc_pfs_t *pfs);
1122 void hammer2_chain_delete(hammer2_trans_t *trans, hammer2_chain_t *parent,
1123                                 hammer2_chain_t *chain, int flags);
1124 void hammer2_chain_delete_duplicate(hammer2_trans_t *trans,
1125                                 hammer2_chain_t **chainp, int flags);
1126 void hammer2_flush(hammer2_trans_t *trans, hammer2_chain_t *chain);
1127 void hammer2_chain_commit(hammer2_trans_t *trans, hammer2_chain_t *chain);
1128 void hammer2_chain_setflush(hammer2_trans_t *trans, hammer2_chain_t *chain);
1129 void hammer2_chain_countbrefs(hammer2_chain_t *chain,
1130                                 hammer2_blockref_t *base, int count);
1131
1132 void hammer2_chain_setcheck(hammer2_chain_t *chain, void *bdata);
1133 int hammer2_chain_testcheck(hammer2_chain_t *chain, void *bdata);
1134
1135
1136 void hammer2_pfs_memory_wait(hammer2_pfs_t *pmp);
1137 void hammer2_pfs_memory_inc(hammer2_pfs_t *pmp);
1138 void hammer2_pfs_memory_wakeup(hammer2_pfs_t *pmp);
1139
1140 void hammer2_base_delete(hammer2_trans_t *trans, hammer2_chain_t *chain,
1141                                 hammer2_blockref_t *base, int count,
1142                                 int *cache_indexp, hammer2_chain_t *child);
1143 void hammer2_base_insert(hammer2_trans_t *trans, hammer2_chain_t *chain,
1144                                 hammer2_blockref_t *base, int count,
1145                                 int *cache_indexp, hammer2_chain_t *child);
1146
1147 /*
1148  * hammer2_trans.c
1149  */
1150 void hammer2_trans_init(hammer2_trans_t *trans, hammer2_pfs_t *pmp,
1151                                 int flags);
1152 void hammer2_trans_spmp(hammer2_trans_t *trans, hammer2_pfs_t *pmp);
1153 void hammer2_trans_done(hammer2_trans_t *trans);
1154
1155 /*
1156  * hammer2_ioctl.c
1157  */
1158 int hammer2_ioctl(hammer2_inode_t *ip, u_long com, void *data,
1159                                 int fflag, struct ucred *cred);
1160
1161 /*
1162  * hammer2_io.c
1163  */
1164 void hammer2_io_putblk(hammer2_io_t **diop);
1165 void hammer2_io_cleanup(hammer2_dev_t *hmp, struct hammer2_io_tree *tree);
1166 char *hammer2_io_data(hammer2_io_t *dio, off_t lbase);
1167 void hammer2_io_getblk(hammer2_dev_t *hmp, off_t lbase, int lsize,
1168                                 hammer2_iocb_t *iocb);
1169 void hammer2_io_complete(hammer2_iocb_t *iocb);
1170 void hammer2_io_callback(struct bio *bio);
1171 void hammer2_iocb_wait(hammer2_iocb_t *iocb);
1172 int hammer2_io_new(hammer2_dev_t *hmp, off_t lbase, int lsize,
1173                                 hammer2_io_t **diop);
1174 int hammer2_io_newnz(hammer2_dev_t *hmp, off_t lbase, int lsize,
1175                                 hammer2_io_t **diop);
1176 int hammer2_io_newq(hammer2_dev_t *hmp, off_t lbase, int lsize,
1177                                 hammer2_io_t **diop);
1178 int hammer2_io_bread(hammer2_dev_t *hmp, off_t lbase, int lsize,
1179                                 hammer2_io_t **diop);
1180 void hammer2_io_bawrite(hammer2_io_t **diop);
1181 void hammer2_io_bdwrite(hammer2_io_t **diop);
1182 int hammer2_io_bwrite(hammer2_io_t **diop);
1183 int hammer2_io_isdirty(hammer2_io_t *dio);
1184 void hammer2_io_setdirty(hammer2_io_t *dio);
1185 void hammer2_io_setinval(hammer2_io_t *dio, u_int bytes);
1186 void hammer2_io_brelse(hammer2_io_t **diop);
1187 void hammer2_io_bqrelse(hammer2_io_t **diop);
1188
1189 /*
1190  * hammer2_msgops.c
1191  */
1192 int hammer2_msg_dbg_rcvmsg(kdmsg_msg_t *msg);
1193 int hammer2_msg_adhoc_input(kdmsg_msg_t *msg);
1194
1195 /*
1196  * hammer2_vfsops.c
1197  */
1198 void hammer2_clusterctl_wakeup(kdmsg_iocom_t *iocom);
1199 void hammer2_volconf_update(hammer2_dev_t *hmp, int index);
1200 void hammer2_dump_chain(hammer2_chain_t *chain, int tab, int *countp, char pfx);
1201 void hammer2_bioq_sync(hammer2_pfs_t *pmp);
1202 int hammer2_vfs_sync(struct mount *mp, int waitflags);
1203 hammer2_pfs_t *hammer2_pfsalloc(hammer2_cluster_t *cluster,
1204                                 const hammer2_inode_data_t *ripdata,
1205                                 hammer2_tid_t alloc_tid);
1206
1207 void hammer2_lwinprog_ref(hammer2_pfs_t *pmp);
1208 void hammer2_lwinprog_drop(hammer2_pfs_t *pmp);
1209 void hammer2_lwinprog_wait(hammer2_pfs_t *pmp);
1210
1211 /*
1212  * hammer2_freemap.c
1213  */
1214 int hammer2_freemap_alloc(hammer2_trans_t *trans, hammer2_chain_t *chain,
1215                                 size_t bytes);
1216 void hammer2_freemap_adjust(hammer2_trans_t *trans, hammer2_dev_t *hmp,
1217                                 hammer2_blockref_t *bref, int how);
1218
1219 /*
1220  * hammer2_cluster.c
1221  */
1222 int hammer2_cluster_need_resize(hammer2_cluster_t *cluster, int bytes);
1223 uint8_t hammer2_cluster_type(hammer2_cluster_t *cluster);
1224 const hammer2_media_data_t *hammer2_cluster_rdata(hammer2_cluster_t *cluster);
1225 hammer2_media_data_t *hammer2_cluster_wdata(hammer2_cluster_t *cluster);
1226 hammer2_cluster_t *hammer2_cluster_from_chain(hammer2_chain_t *chain);
1227 int hammer2_cluster_modified(hammer2_cluster_t *cluster);
1228 int hammer2_cluster_duplicated(hammer2_cluster_t *cluster);
1229 void hammer2_cluster_set_chainflags(hammer2_cluster_t *cluster, uint32_t flags);
1230 void hammer2_cluster_clr_chainflags(hammer2_cluster_t *cluster, uint32_t flags);
1231 void hammer2_cluster_bref(hammer2_cluster_t *cluster, hammer2_blockref_t *bref);
1232 void hammer2_cluster_setflush(hammer2_trans_t *trans,
1233                         hammer2_cluster_t *cluster);
1234 void hammer2_cluster_setmethod_check(hammer2_trans_t *trans,
1235                         hammer2_cluster_t *cluster, int check_algo);
1236 hammer2_cluster_t *hammer2_cluster_alloc(hammer2_pfs_t *pmp,
1237                         hammer2_trans_t *trans,
1238                         hammer2_blockref_t *bref);
1239 void hammer2_cluster_ref(hammer2_cluster_t *cluster);
1240 void hammer2_cluster_drop(hammer2_cluster_t *cluster);
1241 void hammer2_cluster_wait(hammer2_cluster_t *cluster);
1242 int hammer2_cluster_lock(hammer2_cluster_t *cluster, int how);
1243 hammer2_cluster_t *hammer2_cluster_copy(hammer2_cluster_t *ocluster);
1244 void hammer2_cluster_unlock(hammer2_cluster_t *cluster);
1245 void hammer2_cluster_resize(hammer2_trans_t *trans, hammer2_inode_t *ip,
1246                         hammer2_cluster_t *cparent, hammer2_cluster_t *cluster,
1247                         int nradix, int flags);
1248 hammer2_inode_data_t *hammer2_cluster_modify_ip(hammer2_trans_t *trans,
1249                         hammer2_inode_t *ip, hammer2_cluster_t *cluster,
1250                         int flags);
1251 void hammer2_cluster_modify(hammer2_trans_t *trans, hammer2_cluster_t *cluster,
1252                         int flags);
1253 void hammer2_cluster_modsync(hammer2_cluster_t *cluster);
1254 hammer2_cluster_t *hammer2_cluster_lookup_init(hammer2_cluster_t *cparent,
1255                         int flags);
1256 void hammer2_cluster_lookup_done(hammer2_cluster_t *cparent);
1257 hammer2_cluster_t *hammer2_cluster_lookup(hammer2_cluster_t *cparent,
1258                         hammer2_key_t *key_nextp,
1259                         hammer2_key_t key_beg, hammer2_key_t key_end,
1260                         int flags);
1261 hammer2_cluster_t *hammer2_cluster_next(hammer2_cluster_t *cparent,
1262                         hammer2_cluster_t *cluster,
1263                         hammer2_key_t *key_nextp,
1264                         hammer2_key_t key_beg, hammer2_key_t key_end,
1265                         int flags);
1266 hammer2_cluster_t *hammer2_cluster_scan(hammer2_cluster_t *cparent,
1267                         hammer2_cluster_t *cluster, int flags);
1268 int hammer2_cluster_create(hammer2_trans_t *trans, hammer2_cluster_t *cparent,
1269                         hammer2_cluster_t **clusterp,
1270                         hammer2_key_t key, int keybits,
1271                         int type, size_t bytes, int flags);
1272 void hammer2_cluster_rename(hammer2_trans_t *trans, hammer2_blockref_t *bref,
1273                         hammer2_cluster_t *cparent, hammer2_cluster_t *cluster,
1274                         int flags);
1275 void hammer2_cluster_delete(hammer2_trans_t *trans, hammer2_cluster_t *pcluster,
1276                         hammer2_cluster_t *cluster, int flags);
1277 int hammer2_cluster_snapshot(hammer2_trans_t *trans,
1278                         hammer2_cluster_t *ocluster, hammer2_ioc_pfs_t *pfs);
1279 hammer2_cluster_t *hammer2_cluster_parent(hammer2_cluster_t *cluster);
1280
1281 int hammer2_bulk_scan(hammer2_trans_t *trans, hammer2_chain_t *parent,
1282                         int (*func)(hammer2_chain_t *chain, void *info),
1283                         void *info);
1284 int hammer2_bulkfree_pass(hammer2_dev_t *hmp,
1285                         struct hammer2_ioc_bulkfree *bfi);
1286
1287 /*
1288  * hammer2_iocom.c
1289  */
1290 void hammer2_iocom_init(hammer2_dev_t *hmp);
1291 void hammer2_iocom_uninit(hammer2_dev_t *hmp);
1292 void hammer2_cluster_reconnect(hammer2_dev_t *hmp, struct file *fp);
1293
1294 /*
1295  * hammer2_syncthr.c
1296  */
1297 void hammer2_syncthr_create(hammer2_syncthr_t *thr, hammer2_pfs_t *pmp,
1298                         void (*func)(void *arg));
1299 void hammer2_syncthr_delete(hammer2_syncthr_t *thr);
1300 void hammer2_syncthr_remaster(hammer2_syncthr_t *thr);
1301 void hammer2_syncthr_freeze(hammer2_syncthr_t *thr);
1302 void hammer2_syncthr_unfreeze(hammer2_syncthr_t *thr);
1303 void hammer2_syncthr_primary(void *arg);
1304
1305 #endif /* !_KERNEL */
1306 #endif /* !_VFS_HAMMER2_HAMMER2_H_ */