Remove calls to pmap_clear_modify() in the swap_pager, fixing a kernel panic.
[dragonfly.git] / sys / vfs / hammer / hammer.h
... / ...
CommitLineData
1/*
2 * Copyright (c) 2007 The DragonFly Project. All rights reserved.
3 *
4 * This code is derived from software contributed to The DragonFly Project
5 * by Matthew Dillon <dillon@backplane.com>
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 * $DragonFly: src/sys/vfs/hammer/hammer.h,v 1.41 2008/03/19 20:18:17 dillon Exp $
35 */
36/*
37 * This header file contains structures used internally by the HAMMERFS
38 * implementation. See hammer_disk.h for on-disk structures.
39 */
40
41#include <sys/param.h>
42#include <sys/types.h>
43#include <sys/kernel.h>
44#include <sys/conf.h>
45#include <sys/systm.h>
46#include <sys/tree.h>
47#include <sys/malloc.h>
48#include <sys/mount.h>
49#include <sys/mountctl.h>
50#include <sys/vnode.h>
51#include <sys/proc.h>
52#include <sys/globaldata.h>
53#include <sys/lockf.h>
54#include <sys/buf.h>
55#include <sys/queue.h>
56#include <sys/globaldata.h>
57
58#include <sys/buf2.h>
59#include "hammer_disk.h"
60#include "hammer_mount.h"
61#include "hammer_ioctl.h"
62
63#if defined(_KERNEL) || defined(_KERNEL_STRUCTURES)
64
65MALLOC_DECLARE(M_HAMMER);
66
67struct hammer_mount;
68
69/*
70 * Key structure used for custom RB tree inode lookups. This prototypes
71 * the function hammer_ino_rb_tree_RB_LOOKUP_INFO(root, info).
72 */
73typedef struct hammer_inode_info {
74 int64_t obj_id; /* (key) object identifier */
75 hammer_tid_t obj_asof; /* (key) snapshot transid or 0 */
76} *hammer_inode_info_t;
77
78/*
79 * HAMMER Transaction tracking
80 */
81struct hammer_transaction {
82 struct hammer_mount *hmp;
83 hammer_tid_t tid;
84 struct hammer_volume *rootvol;
85/* TAILQ_HEAD(, hammer_io) recycle_list;*/
86};
87
88typedef struct hammer_transaction *hammer_transaction_t;
89
90/*
91 * HAMMER locks
92 */
93struct hammer_lock {
94 int refs; /* active references delay writes */
95 int lockcount; /* lock count for exclusive/shared access */
96 int wanted;
97 struct thread *locktd;
98};
99
100static __inline int
101hammer_islocked(struct hammer_lock *lock)
102{
103 return(lock->lockcount != 0);
104}
105
106static __inline int
107hammer_isactive(struct hammer_lock *lock)
108{
109 return(lock->refs != 0);
110}
111
112static __inline int
113hammer_islastref(struct hammer_lock *lock)
114{
115 return(lock->refs == 1);
116}
117
118/*
119 * This inline is specifically optimized for the case where the caller
120 * owns the lock, but wants to know what kind of lock he owns. A
121 * negative value indicates a shared lock, a positive value indicates
122 * an exclusive lock.
123 */
124static __inline int
125hammer_lock_held(struct hammer_lock *lock)
126{
127 return(lock->lockcount);
128}
129
130/*
131 * Structure used to represent an inode in-memory.
132 *
133 * The record and data associated with an inode may be out of sync with
134 * the disk (xDIRTY flags), or not even on the disk at all (ONDISK flag
135 * clear).
136 *
137 * An inode may also hold a cache of unsynchronized records, used for
138 * database and directories only. Unsynchronized regular file data is
139 * stored in the buffer cache.
140 *
141 * NOTE: A file which is created and destroyed within the initial
142 * synchronization period can wind up not doing any disk I/O at all.
143 *
144 * Finally, an inode may cache numerous disk-referencing B-Tree cursors.
145 */
146struct hammer_ino_rb_tree;
147struct hammer_inode;
148RB_HEAD(hammer_ino_rb_tree, hammer_inode);
149RB_PROTOTYPEX(hammer_ino_rb_tree, INFO, hammer_inode, rb_node,
150 hammer_ino_rb_compare, hammer_inode_info_t);
151
152struct hammer_rec_rb_tree;
153struct hammer_record;
154RB_HEAD(hammer_rec_rb_tree, hammer_record);
155RB_PROTOTYPEX(hammer_rec_rb_tree, INFO, hammer_record, rb_node,
156 hammer_rec_rb_compare, hammer_base_elm_t);
157
158TAILQ_HEAD(hammer_node_list, hammer_node);
159
160struct hammer_inode {
161 RB_ENTRY(hammer_inode) rb_node;
162 u_int64_t obj_id; /* (key) object identifier */
163 hammer_tid_t obj_asof; /* (key) snapshot transid or 0 */
164 hammer_tid_t last_tid; /* last modified tid (for fsync) */
165 struct hammer_mount *hmp;
166 int flags;
167 struct vnode *vp;
168 struct lockf advlock;
169 struct hammer_lock lock;
170 struct hammer_inode_record ino_rec;
171 struct hammer_inode_data ino_data;
172 struct hammer_rec_rb_tree rec_tree; /* red-black record tree */
173 struct hammer_node *cache[2]; /* search initiate cache */
174};
175
176typedef struct hammer_inode *hammer_inode_t;
177
178#define VTOI(vp) ((struct hammer_inode *)(vp)->v_data)
179
180#define HAMMER_INODE_DDIRTY 0x0001 /* in-memory ino_data is dirty */
181#define HAMMER_INODE_RDIRTY 0x0002 /* in-memory ino_rec is dirty */
182#define HAMMER_INODE_ITIMES 0x0004 /* in-memory mtime/atime modified */
183#define HAMMER_INODE_XDIRTY 0x0008 /* in-memory records present */
184#define HAMMER_INODE_ONDISK 0x0010 /* inode is on-disk (else not yet) */
185#define HAMMER_INODE_FLUSH 0x0020 /* flush on last ref */
186#define HAMMER_INODE_DELETED 0x0080 /* inode ready for deletion */
187#define HAMMER_INODE_DELONDISK 0x0100 /* delete synchronized to disk */
188#define HAMMER_INODE_RO 0x0200 /* read-only (because of as-of) */
189#define HAMMER_INODE_GONE 0x0400 /* delete flushed out */
190#define HAMMER_INODE_DONDISK 0x0800 /* data records may be on disk */
191#define HAMMER_INODE_BUFS 0x1000 /* dirty high level bps present */
192#define HAMMER_INODE_TIDLOCKED 0x2000 /* tid locked until inode synced */
193
194#define HAMMER_INODE_MODMASK (HAMMER_INODE_DDIRTY|HAMMER_INODE_RDIRTY| \
195 HAMMER_INODE_XDIRTY|HAMMER_INODE_BUFS| \
196 HAMMER_INODE_ITIMES|HAMMER_INODE_DELETED)
197
198#define HAMMER_MAX_INODE_CURSORS 4
199
200/*
201 * Structure used to represent an unsynchronized record in-memory. This
202 * structure is orgranized in a per-inode RB-tree. If the inode is not
203 * on disk then neither are any records and the in-memory record tree
204 * represents the entire contents of the inode. If the inode is on disk
205 * then the on-disk B-Tree is scanned in parallel with the in-memory
206 * RB-Tree to synthesize the current state of the file.
207 *
208 * Only current (delete_tid == 0) unsynchronized records are kept in-memory.
209 *
210 * blocked is the count of the number of cursors (ip_first/ip_next) blocked
211 * on the record waiting for a synchronization to complete.
212 */
213struct hammer_record {
214 RB_ENTRY(hammer_record) rb_node;
215 struct hammer_lock lock;
216 struct hammer_inode *ip;
217 union hammer_record_ondisk rec;
218 union hammer_data_ondisk *data;
219 int flags;
220 int blocked;
221};
222
223typedef struct hammer_record *hammer_record_t;
224
225#define HAMMER_RECF_ALLOCDATA 0x0001
226#define HAMMER_RECF_ONRBTREE 0x0002
227#define HAMMER_RECF_DELETED 0x0004
228#define HAMMER_RECF_INBAND 0x0008
229#define HAMMER_RECF_SYNCING 0x0010
230#define HAMMER_RECF_WANTED 0x0020
231
232/*
233 * In-memory structures representing on-disk structures.
234 */
235struct hammer_volume;
236struct hammer_buffer;
237struct hammer_node;
238RB_HEAD(hammer_vol_rb_tree, hammer_volume);
239RB_HEAD(hammer_buf_rb_tree, hammer_buffer);
240RB_HEAD(hammer_nod_rb_tree, hammer_node);
241
242RB_PROTOTYPE2(hammer_vol_rb_tree, hammer_volume, rb_node,
243 hammer_vol_rb_compare, int32_t);
244RB_PROTOTYPE2(hammer_buf_rb_tree, hammer_buffer, rb_node,
245 hammer_buf_rb_compare, hammer_off_t);
246RB_PROTOTYPE2(hammer_nod_rb_tree, hammer_node, rb_node,
247 hammer_nod_rb_compare, hammer_off_t);
248
249/*
250 * IO management - embedded at the head of various in-memory structures
251 */
252enum hammer_io_type { HAMMER_STRUCTURE_VOLUME,
253 HAMMER_STRUCTURE_BUFFER };
254
255union hammer_io_structure;
256struct hammer_io;
257
258struct worklist {
259 LIST_ENTRY(worklist) node;
260};
261
262TAILQ_HEAD(hammer_io_list, hammer_io);
263
264struct hammer_io {
265 struct worklist worklist;
266 struct hammer_lock lock;
267 enum hammer_io_type type;
268 struct buf *bp;
269 int64_t offset;
270 TAILQ_ENTRY(hammer_io) entry; /* based on modified flag */
271 struct hammer_io_list *entry_list;
272 struct hammer_io_list deplist;
273 u_int modified : 1; /* bp's data was modified */
274 u_int released : 1; /* bp released (w/ B_LOCKED set) */
275 u_int running : 1; /* bp write IO in progress */
276 u_int waiting : 1; /* someone is waiting on us */
277 u_int loading : 1; /* ondisk is loading */
278 u_int validated : 1; /* ondisk has been validated */
279};
280
281typedef struct hammer_io *hammer_io_t;
282
283/*
284 * In-memory volume representing on-disk buffer
285 */
286struct hammer_volume {
287 struct hammer_io io;
288 RB_ENTRY(hammer_volume) rb_node;
289 struct hammer_buf_rb_tree rb_bufs_root;
290 struct hammer_volume_ondisk *ondisk;
291 int32_t vol_no;
292 int64_t nblocks; /* note: special calculation for statfs */
293 int64_t buffer_base; /* base offset of buffer 0 */
294 hammer_off_t maxbuf_off; /* Maximum buffer offset */
295 char *vol_name;
296 struct vnode *devvp;
297 struct hammer_mount *hmp;
298 int vol_flags;
299};
300
301typedef struct hammer_volume *hammer_volume_t;
302
303/*
304 * In-memory buffer (other then volume, super-cluster, or cluster),
305 * representing an on-disk buffer.
306 */
307struct hammer_buffer {
308 struct hammer_io io;
309 RB_ENTRY(hammer_buffer) rb_node;
310 void *ondisk;
311 struct hammer_volume *volume;
312 hammer_off_t zone2_offset;
313 hammer_off_t zoneX_offset;
314 struct hammer_node_list clist;
315};
316
317typedef struct hammer_buffer *hammer_buffer_t;
318
319/*
320 * In-memory B-Tree node, representing an on-disk B-Tree node.
321 *
322 * This is a hang-on structure which is backed by a hammer_buffer,
323 * indexed by a hammer_cluster, and used for fine-grained locking of
324 * B-Tree nodes in order to properly control lock ordering. A hammer_buffer
325 * can contain multiple nodes representing wildly disassociated portions
326 * of the B-Tree so locking cannot be done on a buffer-by-buffer basis.
327 *
328 * This structure uses a cluster-relative index to reduce the number
329 * of layers required to access it, and also because all on-disk B-Tree
330 * references are cluster-relative offsets.
331 */
332struct hammer_node {
333 struct hammer_lock lock; /* node-by-node lock */
334 TAILQ_ENTRY(hammer_node) entry; /* per-buffer linkage */
335 RB_ENTRY(hammer_node) rb_node; /* per-cluster linkage */
336 hammer_off_t node_offset; /* full offset spec */
337 struct hammer_mount *hmp;
338 struct hammer_buffer *buffer; /* backing buffer */
339 hammer_node_ondisk_t ondisk; /* ptr to on-disk structure */
340 struct hammer_node **cache1; /* passive cache(s) */
341 struct hammer_node **cache2;
342 int flags;
343};
344
345#define HAMMER_NODE_DELETED 0x0001
346#define HAMMER_NODE_FLUSH 0x0002
347
348typedef struct hammer_node *hammer_node_t;
349
350/*
351 * List of locked nodes.
352 */
353struct hammer_node_locklist {
354 struct hammer_node_locklist *next;
355 hammer_node_t node;
356};
357
358typedef struct hammer_node_locklist *hammer_node_locklist_t;
359
360
361/*
362 * Common I/O management structure - embedded in in-memory structures
363 * which are backed by filesystem buffers.
364 */
365union hammer_io_structure {
366 struct hammer_io io;
367 struct hammer_volume volume;
368 struct hammer_buffer buffer;
369};
370
371typedef union hammer_io_structure *hammer_io_structure_t;
372
373/*
374 * Allocation holes are recorded for a short period of time in an attempt
375 * to use up the space.
376 */
377
378#define HAMMER_MAX_HOLES 8
379
380struct hammer_hole;
381
382struct hammer_holes {
383 TAILQ_HEAD(, hammer_hole) list;
384 int count;
385};
386
387typedef struct hammer_holes *hammer_holes_t;
388
389struct hammer_hole {
390 TAILQ_ENTRY(hammer_hole) entry;
391 hammer_off_t offset;
392 int bytes;
393};
394
395typedef struct hammer_hole *hammer_hole_t;
396
397#include "hammer_cursor.h"
398
399/*
400 * Internal hammer mount data structure
401 */
402struct hammer_mount {
403 struct mount *mp;
404 /*struct vnode *rootvp;*/
405 struct hammer_ino_rb_tree rb_inos_root;
406 struct hammer_vol_rb_tree rb_vols_root;
407 struct hammer_nod_rb_tree rb_nods_root;
408 struct hammer_volume *rootvol;
409 struct hammer_base_elm root_btree_beg;
410 struct hammer_base_elm root_btree_end;
411 char *zbuf; /* HAMMER_BUFSIZE bytes worth of all-zeros */
412 int hflags;
413 int ronly;
414 int nvolumes;
415 int volume_iterator;
416 uuid_t fsid;
417 udev_t fsid_udev;
418 hammer_tid_t asof;
419 u_int32_t namekey_iterator;
420 hammer_off_t zone_limits[HAMMER_MAX_ZONES];
421 struct netexport export;
422 struct lock blockmap_lock;
423 struct hammer_holes holes[HAMMER_MAX_ZONES];
424};
425
426typedef struct hammer_mount *hammer_mount_t;
427
428struct hammer_sync_info {
429 int error;
430 int waitfor;
431};
432
433#endif
434
435#if defined(_KERNEL)
436
437extern struct vop_ops hammer_vnode_vops;
438extern struct vop_ops hammer_spec_vops;
439extern struct vop_ops hammer_fifo_vops;
440extern struct bio_ops hammer_bioops;
441
442extern int hammer_debug_general;
443extern int hammer_debug_btree;
444extern int hammer_debug_tid;
445extern int hammer_debug_recover;
446extern int hammer_debug_recover_faults;
447extern int hammer_count_inodes;
448extern int hammer_count_records;
449extern int hammer_count_record_datas;
450extern int hammer_count_volumes;
451extern int hammer_count_buffers;
452extern int hammer_count_nodes;
453
454int hammer_vop_inactive(struct vop_inactive_args *);
455int hammer_vop_reclaim(struct vop_reclaim_args *);
456int hammer_get_vnode(struct hammer_inode *ip, int lktype,
457 struct vnode **vpp);
458struct hammer_inode *hammer_get_inode(hammer_transaction_t trans,
459 struct hammer_node **cache,
460 u_int64_t obj_id, hammer_tid_t asof, int flags,
461 int *errorp);
462void hammer_put_inode(struct hammer_inode *ip);
463void hammer_put_inode_ref(struct hammer_inode *ip);
464
465int hammer_unload_inode(hammer_inode_t ip, void *data);
466int hammer_unload_volume(hammer_volume_t volume, void *data __unused);
467int hammer_unload_buffer(hammer_buffer_t buffer, void *data __unused);
468int hammer_install_volume(hammer_mount_t hmp, const char *volname);
469
470int hammer_ip_lookup(hammer_cursor_t cursor, hammer_inode_t ip);
471int hammer_ip_first(hammer_cursor_t cursor, hammer_inode_t ip);
472int hammer_ip_next(hammer_cursor_t cursor);
473int hammer_ip_resolve_record_and_data(hammer_cursor_t cursor);
474int hammer_ip_resolve_data(hammer_cursor_t cursor);
475int hammer_ip_delete_record(hammer_cursor_t cursor, hammer_tid_t tid);
476int hammer_delete_at_cursor(hammer_cursor_t cursor, int64_t *stat_bytes);
477int hammer_ip_check_directory_empty(hammer_transaction_t trans,
478 hammer_inode_t ip);
479int hammer_sync_hmp(hammer_mount_t hmp, int waitfor);
480int hammer_sync_volume(hammer_volume_t volume, void *data);
481int hammer_sync_buffer(hammer_buffer_t buffer, void *data);
482
483hammer_record_t
484 hammer_alloc_mem_record(hammer_inode_t ip);
485void hammer_rel_mem_record(hammer_record_t record);
486
487int hammer_cursor_up(hammer_cursor_t cursor);
488int hammer_cursor_down(hammer_cursor_t cursor);
489int hammer_cursor_upgrade(hammer_cursor_t cursor);
490void hammer_cursor_downgrade(hammer_cursor_t cursor);
491int hammer_cursor_seek(hammer_cursor_t cursor, hammer_node_t node,
492 int index);
493void hammer_lock_ex(struct hammer_lock *lock);
494int hammer_lock_ex_try(struct hammer_lock *lock);
495void hammer_lock_sh(struct hammer_lock *lock);
496int hammer_lock_upgrade(struct hammer_lock *lock);
497void hammer_lock_downgrade(struct hammer_lock *lock);
498void hammer_unlock(struct hammer_lock *lock);
499void hammer_ref(struct hammer_lock *lock);
500void hammer_unref(struct hammer_lock *lock);
501
502u_int32_t hammer_to_unix_xid(uuid_t *uuid);
503void hammer_guid_to_uuid(uuid_t *uuid, u_int32_t guid);
504void hammer_to_timespec(hammer_tid_t tid, struct timespec *ts);
505hammer_tid_t hammer_timespec_to_transid(struct timespec *ts);
506hammer_tid_t hammer_alloc_tid(hammer_transaction_t trans);
507hammer_tid_t hammer_now_tid(void);
508hammer_tid_t hammer_str_to_tid(const char *str);
509
510enum vtype hammer_get_vnode_type(u_int8_t obj_type);
511int hammer_get_dtype(u_int8_t obj_type);
512u_int8_t hammer_get_obj_type(enum vtype vtype);
513int64_t hammer_directory_namekey(void *name, int len);
514
515int hammer_init_cursor(hammer_transaction_t trans, hammer_cursor_t cursor,
516 struct hammer_node **cache);
517
518void hammer_done_cursor(hammer_cursor_t cursor);
519void hammer_mem_done(hammer_cursor_t cursor);
520
521int hammer_btree_lookup(hammer_cursor_t cursor);
522int hammer_btree_first(hammer_cursor_t cursor);
523int hammer_btree_last(hammer_cursor_t cursor);
524int hammer_btree_extract(hammer_cursor_t cursor, int flags);
525int hammer_btree_iterate(hammer_cursor_t cursor);
526int hammer_btree_iterate_reverse(hammer_cursor_t cursor);
527int hammer_btree_insert(hammer_cursor_t cursor, hammer_btree_elm_t elm);
528int hammer_btree_delete(hammer_cursor_t cursor);
529int hammer_btree_cmp(hammer_base_elm_t key1, hammer_base_elm_t key2);
530int hammer_btree_chkts(hammer_tid_t ts, hammer_base_elm_t key);
531int hammer_btree_correct_rhb(hammer_cursor_t cursor, hammer_tid_t tid);
532int hammer_btree_correct_lhb(hammer_cursor_t cursor, hammer_tid_t tid);
533
534
535int hammer_btree_lock_children(hammer_cursor_t cursor,
536 struct hammer_node_locklist **locklistp);
537
538void hammer_print_btree_node(hammer_node_ondisk_t ondisk);
539void hammer_print_btree_elm(hammer_btree_elm_t elm, u_int8_t type, int i);
540
541void *hammer_bread(struct hammer_mount *hmp, hammer_off_t off,
542 int *errorp, struct hammer_buffer **bufferp);
543void *hammer_bnew(struct hammer_mount *hmp, hammer_off_t off,
544 int *errorp, struct hammer_buffer **bufferp);
545
546hammer_volume_t hammer_get_root_volume(hammer_mount_t hmp, int *errorp);
547
548hammer_volume_t hammer_get_volume(hammer_mount_t hmp,
549 int32_t vol_no, int *errorp);
550hammer_buffer_t hammer_get_buffer(hammer_mount_t hmp,
551 hammer_off_t buf_offset, int isnew, int *errorp);
552
553int hammer_ref_volume(hammer_volume_t volume);
554int hammer_ref_buffer(hammer_buffer_t buffer);
555void hammer_flush_buffer_nodes(hammer_buffer_t buffer);
556
557void hammer_rel_volume(hammer_volume_t volume, int flush);
558void hammer_rel_buffer(hammer_buffer_t buffer, int flush);
559
560int hammer_vfs_export(struct mount *mp, int op,
561 const struct export_args *export);
562hammer_node_t hammer_get_node(hammer_mount_t hmp,
563 hammer_off_t node_offset, int *errorp);
564int hammer_ref_node(hammer_node_t node);
565hammer_node_t hammer_ref_node_safe(struct hammer_mount *hmp,
566 struct hammer_node **cache, int *errorp);
567void hammer_rel_node(hammer_node_t node);
568void hammer_delete_node(hammer_transaction_t trans,
569 hammer_node_t node);
570void hammer_cache_node(hammer_node_t node,
571 struct hammer_node **cache);
572void hammer_uncache_node(struct hammer_node **cache);
573void hammer_flush_node(hammer_node_t node);
574
575void hammer_dup_buffer(struct hammer_buffer **bufferp,
576 struct hammer_buffer *buffer);
577hammer_node_t hammer_alloc_btree(hammer_transaction_t trans, int *errorp);
578void *hammer_alloc_record(hammer_transaction_t trans,
579 hammer_off_t *rec_offp, u_int16_t rec_type,
580 struct hammer_buffer **rec_bufferp,
581 int32_t data_len, void **datap,
582 struct hammer_buffer **data_bufferp, int *errorp);
583void *hammer_alloc_data(hammer_transaction_t trans, int32_t data_len,
584 hammer_off_t *data_offsetp,
585 struct hammer_buffer **data_bufferp, int *errorp);
586
587int hammer_generate_undo(hammer_transaction_t trans, hammer_off_t zone1_offset,
588 void *base, int len);
589
590void hammer_put_volume(struct hammer_volume *volume, int flush);
591void hammer_put_buffer(struct hammer_buffer *buffer, int flush);
592
593hammer_off_t hammer_freemap_alloc(hammer_transaction_t trans,
594 hammer_off_t owner, int *errorp);
595void hammer_freemap_free(hammer_transaction_t trans, hammer_off_t phys_offset,
596 hammer_off_t owner, int *errorp);
597hammer_off_t hammer_blockmap_alloc(hammer_transaction_t trans, int zone,
598 int bytes, int *errorp);
599void hammer_blockmap_free(hammer_transaction_t trans,
600 hammer_off_t bmap_off, int bytes);
601int hammer_blockmap_getfree(hammer_mount_t hmp, hammer_off_t bmap_off,
602 int *curp, int *errorp);
603hammer_off_t hammer_blockmap_lookup(hammer_mount_t hmp, hammer_off_t bmap_off,
604 int *errorp);
605hammer_off_t hammer_undo_lookup(hammer_mount_t hmp, hammer_off_t bmap_off,
606 int *errorp);
607
608void hammer_start_transaction(struct hammer_transaction *trans,
609 struct hammer_mount *hmp);
610void hammer_simple_transaction(struct hammer_transaction *trans,
611 struct hammer_mount *hmp);
612void hammer_start_transaction_tid(struct hammer_transaction *trans,
613 struct hammer_mount *hmp, hammer_tid_t tid);
614void hammer_commit_transaction(struct hammer_transaction *trans);
615void hammer_abort_transaction(struct hammer_transaction *trans);
616
617void hammer_modify_inode(struct hammer_transaction *trans,
618 hammer_inode_t ip, int flags);
619int hammer_create_inode(struct hammer_transaction *trans, struct vattr *vap,
620 struct ucred *cred, struct hammer_inode *dip,
621 struct hammer_inode **ipp);
622void hammer_rel_inode(hammer_inode_t ip, int flush);
623int hammer_sync_inode(hammer_inode_t ip, int waitfor, int handle_delete);
624
625int hammer_ip_add_directory(struct hammer_transaction *trans,
626 hammer_inode_t dip, struct namecache *ncp,
627 hammer_inode_t nip);
628int hammer_ip_del_directory(struct hammer_transaction *trans,
629 hammer_cursor_t cursor, hammer_inode_t dip,
630 hammer_inode_t ip);
631int hammer_ip_add_record(struct hammer_transaction *trans,
632 hammer_record_t record);
633int hammer_ip_delete_range(struct hammer_transaction *trans,
634 hammer_inode_t ip, int64_t ran_beg, int64_t ran_end);
635int hammer_ip_delete_range_all(struct hammer_transaction *trans,
636 hammer_inode_t ip);
637int hammer_ip_sync_data(struct hammer_transaction *trans,
638 hammer_inode_t ip, int64_t offset,
639 void *data, int bytes);
640int hammer_ip_sync_record(hammer_transaction_t trans, hammer_record_t rec);
641
642int hammer_ioctl(hammer_inode_t ip, u_long com, caddr_t data, int fflag,
643 struct ucred *cred);
644
645void hammer_io_init(hammer_io_t io, enum hammer_io_type type);
646int hammer_io_read(struct vnode *devvp, struct hammer_io *io);
647int hammer_io_new(struct vnode *devvp, struct hammer_io *io);
648void hammer_io_release(struct hammer_io *io, int flush);
649void hammer_io_flush(struct hammer_io *io);
650int hammer_io_checkflush(hammer_io_t io);
651void hammer_io_clear_modify(struct hammer_io *io);
652void hammer_io_waitdep(struct hammer_io *io);
653
654void hammer_modify_volume(hammer_transaction_t trans, hammer_volume_t volume,
655 void *base, int len);
656void hammer_modify_buffer(hammer_transaction_t trans, hammer_buffer_t buffer,
657 void *base, int len);
658
659int hammer_ioc_reblock(hammer_transaction_t trans, hammer_inode_t ip,
660 struct hammer_ioc_reblock *reblock);
661
662void hammer_init_holes(hammer_mount_t hmp, hammer_holes_t holes);
663void hammer_free_holes(hammer_mount_t hmp, hammer_holes_t holes);
664
665#endif
666
667static __inline void
668hammer_modify_node_noundo(hammer_transaction_t trans, hammer_node_t node)
669{
670 hammer_modify_buffer(trans, node->buffer, NULL, 0);
671}
672
673static __inline void
674hammer_modify_node_all(hammer_transaction_t trans, struct hammer_node *node)
675{
676 hammer_modify_buffer(trans, node->buffer,
677 node->ondisk, sizeof(*node->ondisk));
678}
679
680static __inline void
681hammer_modify_node(hammer_transaction_t trans, hammer_node_t node,
682 void *base, int len)
683{
684 KKASSERT((char *)base >= (char *)node->ondisk &&
685 (char *)base + len <=
686 (char *)node->ondisk + sizeof(*node->ondisk));
687 hammer_modify_buffer(trans, node->buffer, base, len);
688}
689
690static __inline void
691hammer_modify_record(hammer_transaction_t trans, hammer_buffer_t buffer,
692 void *base, int len)
693{
694 KKASSERT((char *)base >= (char *)buffer->ondisk &&
695 (char *)base + len <= (char *)buffer->ondisk + HAMMER_BUFSIZE);
696 hammer_modify_buffer(trans, buffer, base, len);
697}
698