Merge branch 'vendor/GDB' into gdb7
[dragonfly.git] / sys / vfs / hammer / hammer_vfsops.c
1 /*
2  * Copyright (c) 2007-2008 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_vfsops.c,v 1.74 2008/11/13 02:18:43 dillon Exp $
35  */
36
37 #include <sys/param.h>
38 #include <sys/systm.h>
39 #include <sys/kernel.h>
40 #include <sys/vnode.h>
41 #include <sys/mount.h>
42 #include <sys/malloc.h>
43 #include <sys/nlookup.h>
44 #include <sys/fcntl.h>
45 #include <sys/sysctl.h>
46 #include <sys/buf.h>
47 #include <sys/buf2.h>
48 #include "hammer.h"
49
50 int hammer_supported_version = HAMMER_VOL_VERSION_TWO;
51 int hammer_debug_io;
52 int hammer_debug_general;
53 int hammer_debug_debug = 1;             /* medium-error panics */ 
54 int hammer_debug_inode;
55 int hammer_debug_locks;
56 int hammer_debug_btree;
57 int hammer_debug_tid;
58 int hammer_debug_recover;               /* -1 will disable, +1 will force */
59 int hammer_debug_recover_faults;
60 int hammer_error_panic;                 /* panic on error levels */
61 int hammer_cluster_enable = 1;          /* enable read clustering by default */
62 int hammer_count_fsyncs;
63 int hammer_count_inodes;
64 int hammer_count_iqueued;
65 int hammer_count_reclaiming;
66 int hammer_count_records;
67 int hammer_count_record_datas;
68 int hammer_count_volumes;
69 int hammer_count_buffers;
70 int hammer_count_nodes;
71 int64_t hammer_count_extra_space_used;
72 int64_t hammer_stats_btree_lookups;
73 int64_t hammer_stats_btree_searches;
74 int64_t hammer_stats_btree_inserts;
75 int64_t hammer_stats_btree_deletes;
76 int64_t hammer_stats_btree_elements;
77 int64_t hammer_stats_btree_splits;
78 int64_t hammer_stats_btree_iterations;
79 int64_t hammer_stats_btree_root_iterations;
80 int64_t hammer_stats_record_iterations;
81
82 int64_t hammer_stats_file_read;
83 int64_t hammer_stats_file_write;
84 int64_t hammer_stats_file_iopsr;
85 int64_t hammer_stats_file_iopsw;
86 int64_t hammer_stats_disk_read;
87 int64_t hammer_stats_disk_write;
88 int64_t hammer_stats_inode_flushes;
89 int64_t hammer_stats_commits;
90 int64_t hammer_stats_undo;
91
92 int hammer_count_dirtybufspace;         /* global */
93 int hammer_count_refedbufs;             /* global */
94 int hammer_count_reservations;
95 int hammer_count_io_running_read;
96 int hammer_count_io_running_write;
97 int hammer_count_io_locked;
98 int hammer_limit_dirtybufspace;         /* per-mount */
99 int hammer_limit_recs;                  /* as a whole XXX */
100 int hammer_limit_inode_recs = 1024;     /* per inode */
101 int hammer_autoflush = 2000;            /* auto flush */
102 int hammer_bio_count;
103 int hammer_verify_zone;
104 int hammer_verify_data = 1;
105 int hammer_write_mode;
106 int hammer_yield_check = 16;
107 int hammer_fsync_mode;
108 int64_t hammer_contention_count;
109 int64_t hammer_zone_limit;
110
111 SYSCTL_NODE(_vfs, OID_AUTO, hammer, CTLFLAG_RW, 0, "HAMMER filesystem");
112 SYSCTL_INT(_vfs_hammer, OID_AUTO, supported_version, CTLFLAG_RD,
113            &hammer_supported_version, 0, "");
114 SYSCTL_INT(_vfs_hammer, OID_AUTO, debug_general, CTLFLAG_RW,
115            &hammer_debug_general, 0, "");
116 SYSCTL_INT(_vfs_hammer, OID_AUTO, debug_io, CTLFLAG_RW,
117            &hammer_debug_io, 0, "");
118 SYSCTL_INT(_vfs_hammer, OID_AUTO, debug_debug, CTLFLAG_RW,
119            &hammer_debug_debug, 0, "");
120 SYSCTL_INT(_vfs_hammer, OID_AUTO, debug_inode, CTLFLAG_RW,
121            &hammer_debug_inode, 0, "");
122 SYSCTL_INT(_vfs_hammer, OID_AUTO, debug_locks, CTLFLAG_RW,
123            &hammer_debug_locks, 0, "");
124 SYSCTL_INT(_vfs_hammer, OID_AUTO, debug_btree, CTLFLAG_RW,
125            &hammer_debug_btree, 0, "");
126 SYSCTL_INT(_vfs_hammer, OID_AUTO, debug_tid, CTLFLAG_RW,
127            &hammer_debug_tid, 0, "");
128 SYSCTL_INT(_vfs_hammer, OID_AUTO, debug_recover, CTLFLAG_RW,
129            &hammer_debug_recover, 0, "");
130 SYSCTL_INT(_vfs_hammer, OID_AUTO, debug_recover_faults, CTLFLAG_RW,
131            &hammer_debug_recover_faults, 0, "");
132 SYSCTL_INT(_vfs_hammer, OID_AUTO, error_panic, CTLFLAG_RW,
133            &hammer_error_panic, 0, "");
134 SYSCTL_INT(_vfs_hammer, OID_AUTO, cluster_enable, CTLFLAG_RW,
135            &hammer_cluster_enable, 0, "");
136
137 SYSCTL_INT(_vfs_hammer, OID_AUTO, limit_dirtybufspace, CTLFLAG_RW,
138            &hammer_limit_dirtybufspace, 0, "");
139 SYSCTL_INT(_vfs_hammer, OID_AUTO, limit_recs, CTLFLAG_RW,
140            &hammer_limit_recs, 0, "");
141 SYSCTL_INT(_vfs_hammer, OID_AUTO, limit_inode_recs, CTLFLAG_RW,
142            &hammer_limit_inode_recs, 0, "");
143
144 SYSCTL_INT(_vfs_hammer, OID_AUTO, count_fsyncs, CTLFLAG_RD,
145            &hammer_count_fsyncs, 0, "");
146 SYSCTL_INT(_vfs_hammer, OID_AUTO, count_inodes, CTLFLAG_RD,
147            &hammer_count_inodes, 0, "");
148 SYSCTL_INT(_vfs_hammer, OID_AUTO, count_iqueued, CTLFLAG_RD,
149            &hammer_count_iqueued, 0, "");
150 SYSCTL_INT(_vfs_hammer, OID_AUTO, count_reclaiming, CTLFLAG_RD,
151            &hammer_count_reclaiming, 0, "");
152 SYSCTL_INT(_vfs_hammer, OID_AUTO, count_records, CTLFLAG_RD,
153            &hammer_count_records, 0, "");
154 SYSCTL_INT(_vfs_hammer, OID_AUTO, count_record_datas, CTLFLAG_RD,
155            &hammer_count_record_datas, 0, "");
156 SYSCTL_INT(_vfs_hammer, OID_AUTO, count_volumes, CTLFLAG_RD,
157            &hammer_count_volumes, 0, "");
158 SYSCTL_INT(_vfs_hammer, OID_AUTO, count_buffers, CTLFLAG_RD,
159            &hammer_count_buffers, 0, "");
160 SYSCTL_INT(_vfs_hammer, OID_AUTO, count_nodes, CTLFLAG_RD,
161            &hammer_count_nodes, 0, "");
162 SYSCTL_QUAD(_vfs_hammer, OID_AUTO, count_extra_space_used, CTLFLAG_RD,
163            &hammer_count_extra_space_used, 0, "");
164
165 SYSCTL_QUAD(_vfs_hammer, OID_AUTO, stats_btree_searches, CTLFLAG_RD,
166            &hammer_stats_btree_searches, 0, "");
167 SYSCTL_QUAD(_vfs_hammer, OID_AUTO, stats_btree_lookups, CTLFLAG_RD,
168            &hammer_stats_btree_lookups, 0, "");
169 SYSCTL_QUAD(_vfs_hammer, OID_AUTO, stats_btree_inserts, CTLFLAG_RD,
170            &hammer_stats_btree_inserts, 0, "");
171 SYSCTL_QUAD(_vfs_hammer, OID_AUTO, stats_btree_deletes, CTLFLAG_RD,
172            &hammer_stats_btree_deletes, 0, "");
173 SYSCTL_QUAD(_vfs_hammer, OID_AUTO, stats_btree_elements, CTLFLAG_RD,
174            &hammer_stats_btree_elements, 0, "");
175 SYSCTL_QUAD(_vfs_hammer, OID_AUTO, stats_btree_splits, CTLFLAG_RD,
176            &hammer_stats_btree_splits, 0, "");
177 SYSCTL_QUAD(_vfs_hammer, OID_AUTO, stats_btree_iterations, CTLFLAG_RD,
178            &hammer_stats_btree_iterations, 0, "");
179 SYSCTL_QUAD(_vfs_hammer, OID_AUTO, stats_btree_root_iterations, CTLFLAG_RD,
180            &hammer_stats_btree_root_iterations, 0, "");
181 SYSCTL_QUAD(_vfs_hammer, OID_AUTO, stats_record_iterations, CTLFLAG_RD,
182            &hammer_stats_record_iterations, 0, "");
183
184 SYSCTL_QUAD(_vfs_hammer, OID_AUTO, stats_file_read, CTLFLAG_RD,
185            &hammer_stats_file_read, 0, "");
186 SYSCTL_QUAD(_vfs_hammer, OID_AUTO, stats_file_write, CTLFLAG_RD,
187            &hammer_stats_file_write, 0, "");
188 SYSCTL_QUAD(_vfs_hammer, OID_AUTO, stats_file_iopsr, CTLFLAG_RD,
189            &hammer_stats_file_iopsr, 0, "");
190 SYSCTL_QUAD(_vfs_hammer, OID_AUTO, stats_file_iopsw, CTLFLAG_RD,
191            &hammer_stats_file_iopsw, 0, "");
192 SYSCTL_QUAD(_vfs_hammer, OID_AUTO, stats_disk_read, CTLFLAG_RD,
193            &hammer_stats_disk_read, 0, "");
194 SYSCTL_QUAD(_vfs_hammer, OID_AUTO, stats_disk_write, CTLFLAG_RD,
195            &hammer_stats_disk_write, 0, "");
196 SYSCTL_QUAD(_vfs_hammer, OID_AUTO, stats_inode_flushes, CTLFLAG_RD,
197            &hammer_stats_inode_flushes, 0, "");
198 SYSCTL_QUAD(_vfs_hammer, OID_AUTO, stats_commits, CTLFLAG_RD,
199            &hammer_stats_commits, 0, "");
200 SYSCTL_QUAD(_vfs_hammer, OID_AUTO, stats_undo, CTLFLAG_RD,
201            &hammer_stats_undo, 0, "");
202
203 SYSCTL_INT(_vfs_hammer, OID_AUTO, count_dirtybufspace, CTLFLAG_RD,
204            &hammer_count_dirtybufspace, 0, "");
205 SYSCTL_INT(_vfs_hammer, OID_AUTO, count_refedbufs, CTLFLAG_RD,
206            &hammer_count_refedbufs, 0, "");
207 SYSCTL_INT(_vfs_hammer, OID_AUTO, count_reservations, CTLFLAG_RD,
208            &hammer_count_reservations, 0, "");
209 SYSCTL_INT(_vfs_hammer, OID_AUTO, count_io_running_read, CTLFLAG_RD,
210            &hammer_count_io_running_read, 0, "");
211 SYSCTL_INT(_vfs_hammer, OID_AUTO, count_io_locked, CTLFLAG_RD,
212            &hammer_count_io_locked, 0, "");
213 SYSCTL_INT(_vfs_hammer, OID_AUTO, count_io_running_write, CTLFLAG_RD,
214            &hammer_count_io_running_write, 0, "");
215 SYSCTL_QUAD(_vfs_hammer, OID_AUTO, zone_limit, CTLFLAG_RW,
216            &hammer_zone_limit, 0, "");
217 SYSCTL_QUAD(_vfs_hammer, OID_AUTO, contention_count, CTLFLAG_RW,
218            &hammer_contention_count, 0, "");
219 SYSCTL_INT(_vfs_hammer, OID_AUTO, autoflush, CTLFLAG_RW,
220            &hammer_autoflush, 0, "");
221 SYSCTL_INT(_vfs_hammer, OID_AUTO, verify_zone, CTLFLAG_RW,
222            &hammer_verify_zone, 0, "");
223 SYSCTL_INT(_vfs_hammer, OID_AUTO, verify_data, CTLFLAG_RW,
224            &hammer_verify_data, 0, "");
225 SYSCTL_INT(_vfs_hammer, OID_AUTO, write_mode, CTLFLAG_RW,
226            &hammer_write_mode, 0, "");
227 SYSCTL_INT(_vfs_hammer, OID_AUTO, yield_check, CTLFLAG_RW,
228            &hammer_yield_check, 0, "");
229 SYSCTL_INT(_vfs_hammer, OID_AUTO, fsync_mode, CTLFLAG_RW,
230            &hammer_fsync_mode, 0, "");
231
232 KTR_INFO_MASTER(hammer);
233
234 /*
235  * VFS ABI
236  */
237 static void     hammer_free_hmp(struct mount *mp);
238
239 static int      hammer_vfs_mount(struct mount *mp, char *path, caddr_t data,
240                                 struct ucred *cred);
241 static int      hammer_vfs_unmount(struct mount *mp, int mntflags);
242 static int      hammer_vfs_root(struct mount *mp, struct vnode **vpp);
243 static int      hammer_vfs_statfs(struct mount *mp, struct statfs *sbp,
244                                 struct ucred *cred);
245 static int      hammer_vfs_statvfs(struct mount *mp, struct statvfs *sbp,
246                                 struct ucred *cred);
247 static int      hammer_vfs_sync(struct mount *mp, int waitfor);
248 static int      hammer_vfs_vget(struct mount *mp, struct vnode *dvp,
249                                 ino_t ino, struct vnode **vpp);
250 static int      hammer_vfs_init(struct vfsconf *conf);
251 static int      hammer_vfs_fhtovp(struct mount *mp, struct vnode *rootvp,
252                                 struct fid *fhp, struct vnode **vpp);
253 static int      hammer_vfs_vptofh(struct vnode *vp, struct fid *fhp);
254 static int      hammer_vfs_checkexp(struct mount *mp, struct sockaddr *nam,
255                                 int *exflagsp, struct ucred **credanonp);
256
257
258 static struct vfsops hammer_vfsops = {
259         .vfs_mount      = hammer_vfs_mount,
260         .vfs_unmount    = hammer_vfs_unmount,
261         .vfs_root       = hammer_vfs_root,
262         .vfs_statfs     = hammer_vfs_statfs,
263         .vfs_statvfs    = hammer_vfs_statvfs,
264         .vfs_sync       = hammer_vfs_sync,
265         .vfs_vget       = hammer_vfs_vget,
266         .vfs_init       = hammer_vfs_init,
267         .vfs_vptofh     = hammer_vfs_vptofh,
268         .vfs_fhtovp     = hammer_vfs_fhtovp,
269         .vfs_checkexp   = hammer_vfs_checkexp
270 };
271
272 MALLOC_DEFINE(M_HAMMER, "HAMMER-mount", "");
273
274 VFS_SET(hammer_vfsops, hammer, 0);
275 MODULE_VERSION(hammer, 1);
276
277 static int
278 hammer_vfs_init(struct vfsconf *conf)
279 {
280         int n;
281
282         if (hammer_limit_recs == 0) {
283                 hammer_limit_recs = nbuf * 25;
284                 n = kmalloc_limit(M_HAMMER) / 512;
285                 if (hammer_limit_recs > n)
286                         hammer_limit_recs = n;
287         }
288         if (hammer_limit_dirtybufspace == 0) {
289                 hammer_limit_dirtybufspace = hidirtybufspace / 2;
290                 if (hammer_limit_dirtybufspace < 100)
291                         hammer_limit_dirtybufspace = 100;
292         }
293         return(0);
294 }
295
296 static int
297 hammer_vfs_mount(struct mount *mp, char *mntpt, caddr_t data,
298                  struct ucred *cred)
299 {
300         struct hammer_mount_info info;
301         hammer_mount_t hmp;
302         hammer_volume_t rootvol;
303         struct vnode *rootvp;
304         struct vnode *devvp = NULL;
305         const char *upath;      /* volume name in userspace */
306         char *path;             /* volume name in system space */
307         int error;
308         int i;
309         int master_id;
310         int maxinodes;
311
312         /*
313          * Accept hammer_mount_info.  mntpt is NULL for root mounts at boot.
314          */
315         if (mntpt == NULL) {
316                 if ((error = bdevvp(rootdev, &devvp))) {
317                         kprintf("hammer_mountroot: can't find devvp\n");
318                         return (error);
319                 }
320                 mp->mnt_flag &= ~MNT_RDONLY; /* mount R/W */
321                 bzero(&info, sizeof(info));
322                 info.asof = 0;
323                 info.hflags = 0;
324                 info.nvolumes = 1;
325         } else {
326                 if ((error = copyin(data, &info, sizeof(info))) != 0)
327                         return (error);
328         }
329
330         /*
331          * updating or new mount
332          */
333         if (mp->mnt_flag & MNT_UPDATE) {
334                 hmp = (void *)mp->mnt_data;
335                 KKASSERT(hmp != NULL);
336         } else {
337                 if (info.nvolumes <= 0 || info.nvolumes >= 32768)
338                         return (EINVAL);
339                 hmp = NULL;
340         }
341
342         /*
343          * master-id validation.  The master id may not be changed by a
344          * mount update.
345          */
346         if (info.hflags & HMNT_MASTERID) {
347                 if (hmp && hmp->master_id != info.master_id) {
348                         kprintf("hammer: cannot change master id "
349                                 "with mount update\n");
350                         return(EINVAL);
351                 }
352                 master_id = info.master_id;
353                 if (master_id < -1 || master_id >= HAMMER_MAX_MASTERS)
354                         return (EINVAL);
355         } else {
356                 if (hmp)
357                         master_id = hmp->master_id;
358                 else
359                         master_id = 0;
360         }
361
362         /*
363          * Interal mount data structure
364          */
365         if (hmp == NULL) {
366                 hmp = kmalloc(sizeof(*hmp), M_HAMMER, M_WAITOK | M_ZERO);
367                 mp->mnt_data = (qaddr_t)hmp;
368                 hmp->mp = mp;
369                 /*TAILQ_INIT(&hmp->recycle_list);*/
370
371                 /*
372                  * Make sure kmalloc type limits are set appropriately.  If root
373                  * increases the vnode limit you may have to do a dummy remount
374                  * to adjust the HAMMER inode limit.
375                  */
376                 kmalloc_create(&hmp->m_misc, "HAMMER-others");
377                 kmalloc_create(&hmp->m_inodes, "HAMMER-inodes");
378
379                 maxinodes = desiredvnodes + desiredvnodes / 5 +
380                             HAMMER_RECLAIM_WAIT;
381                 kmalloc_raise_limit(hmp->m_inodes,
382                                     maxinodes * sizeof(struct hammer_inode));
383
384                 hmp->root_btree_beg.localization = 0x00000000U;
385                 hmp->root_btree_beg.obj_id = -0x8000000000000000LL;
386                 hmp->root_btree_beg.key = -0x8000000000000000LL;
387                 hmp->root_btree_beg.create_tid = 1;
388                 hmp->root_btree_beg.delete_tid = 1;
389                 hmp->root_btree_beg.rec_type = 0;
390                 hmp->root_btree_beg.obj_type = 0;
391
392                 hmp->root_btree_end.localization = 0xFFFFFFFFU;
393                 hmp->root_btree_end.obj_id = 0x7FFFFFFFFFFFFFFFLL;
394                 hmp->root_btree_end.key = 0x7FFFFFFFFFFFFFFFLL;
395                 hmp->root_btree_end.create_tid = 0xFFFFFFFFFFFFFFFFULL;
396                 hmp->root_btree_end.delete_tid = 0;   /* special case */
397                 hmp->root_btree_end.rec_type = 0xFFFFU;
398                 hmp->root_btree_end.obj_type = 0;
399
400                 hmp->krate.freq = 1;    /* maximum reporting rate (hz) */
401                 hmp->krate.count = -16; /* initial burst */
402
403                 hmp->sync_lock.refs = 1;
404                 hmp->free_lock.refs = 1;
405                 hmp->undo_lock.refs = 1;
406                 hmp->blkmap_lock.refs = 1;
407                 hmp->snapshot_lock.refs = 1;
408
409                 TAILQ_INIT(&hmp->delay_list);
410                 TAILQ_INIT(&hmp->flush_group_list);
411                 TAILQ_INIT(&hmp->objid_cache_list);
412                 TAILQ_INIT(&hmp->undo_lru_list);
413                 TAILQ_INIT(&hmp->reclaim_list);
414         }
415         hmp->hflags &= ~HMNT_USERFLAGS;
416         hmp->hflags |= info.hflags & HMNT_USERFLAGS;
417
418         hmp->master_id = master_id;
419
420         if (info.asof) {
421                 mp->mnt_flag |= MNT_RDONLY;
422                 hmp->asof = info.asof;
423         } else {
424                 hmp->asof = HAMMER_MAX_TID;
425         }
426
427         /*
428          * Re-open read-write if originally read-only, or vise-versa.
429          */
430         if (mp->mnt_flag & MNT_UPDATE) {
431                 error = 0;
432                 if (hmp->ronly && (mp->mnt_kern_flag & MNTK_WANTRDWR)) {
433                         kprintf("HAMMER read-only -> read-write\n");
434                         hmp->ronly = 0;
435                         RB_SCAN(hammer_vol_rb_tree, &hmp->rb_vols_root, NULL,
436                                 hammer_adjust_volume_mode, NULL);
437                         rootvol = hammer_get_root_volume(hmp, &error);
438                         if (rootvol) {
439                                 hammer_recover_flush_buffers(hmp, rootvol, 1);
440                                 bcopy(rootvol->ondisk->vol0_blockmap,
441                                       hmp->blockmap,
442                                       sizeof(hmp->blockmap));
443                                 hammer_rel_volume(rootvol, 0);
444                         }
445                         RB_SCAN(hammer_ino_rb_tree, &hmp->rb_inos_root, NULL,
446                                 hammer_reload_inode, NULL);
447                         /* kernel clears MNT_RDONLY */
448                 } else if (hmp->ronly == 0 && (mp->mnt_flag & MNT_RDONLY)) {
449                         kprintf("HAMMER read-write -> read-only\n");
450                         hmp->ronly = 1; /* messy */
451                         RB_SCAN(hammer_ino_rb_tree, &hmp->rb_inos_root, NULL,
452                                 hammer_reload_inode, NULL);
453                         hmp->ronly = 0;
454                         hammer_flusher_sync(hmp);
455                         hammer_flusher_sync(hmp);
456                         hammer_flusher_sync(hmp);
457                         hmp->ronly = 1;
458                         RB_SCAN(hammer_vol_rb_tree, &hmp->rb_vols_root, NULL,
459                                 hammer_adjust_volume_mode, NULL);
460                 }
461                 return(error);
462         }
463
464         RB_INIT(&hmp->rb_vols_root);
465         RB_INIT(&hmp->rb_inos_root);
466         RB_INIT(&hmp->rb_nods_root);
467         RB_INIT(&hmp->rb_undo_root);
468         RB_INIT(&hmp->rb_resv_root);
469         RB_INIT(&hmp->rb_bufs_root);
470         RB_INIT(&hmp->rb_pfsm_root);
471
472         hmp->ronly = ((mp->mnt_flag & MNT_RDONLY) != 0);
473
474         TAILQ_INIT(&hmp->volu_list);
475         TAILQ_INIT(&hmp->undo_list);
476         TAILQ_INIT(&hmp->data_list);
477         TAILQ_INIT(&hmp->meta_list);
478         TAILQ_INIT(&hmp->lose_list);
479
480         /*
481          * Load volumes
482          */
483         path = objcache_get(namei_oc, M_WAITOK);
484         hmp->nvolumes = -1;
485         for (i = 0; i < info.nvolumes; ++i) {
486                 if (mntpt == NULL) {
487                         /*
488                          * Root mount.
489                          * Only one volume; and no need for copyin.
490                          */
491                         KKASSERT(info.nvolumes == 1);
492                         ksnprintf(path, MAXPATHLEN, "/dev/%s",
493                                   mp->mnt_stat.f_mntfromname);  
494                         error = 0;
495                 } else {
496                         error = copyin(&info.volumes[i], &upath,
497                                        sizeof(char *));
498                         if (error == 0)
499                                 error = copyinstr(upath, path,
500                                                   MAXPATHLEN, NULL);
501                 }
502                 if (error == 0)
503                         error = hammer_install_volume(hmp, path, devvp);
504                 if (error)
505                         break;
506         }
507         objcache_put(namei_oc, path);
508
509         /*
510          * Make sure we found a root volume
511          */
512         if (error == 0 && hmp->rootvol == NULL) {
513                 kprintf("hammer_mount: No root volume found!\n");
514                 error = EINVAL;
515         }
516
517         /*
518          * Check that all required volumes are available
519          */
520         if (error == 0 && hammer_mountcheck_volumes(hmp)) {
521                 kprintf("hammer_mount: Missing volumes, cannot mount!\n");
522                 error = EINVAL;
523         }
524
525         if (error) {
526                 hammer_free_hmp(mp);
527                 return (error);
528         }
529
530         /*
531          * No errors, setup enough of the mount point so we can lookup the
532          * root vnode.
533          */
534         mp->mnt_iosize_max = MAXPHYS;
535         mp->mnt_kern_flag |= MNTK_FSMID;
536
537         /* 
538          * note: f_iosize is used by vnode_pager_haspage() when constructing
539          * its VOP_BMAP call.
540          */
541         mp->mnt_stat.f_iosize = HAMMER_BUFSIZE;
542         mp->mnt_stat.f_bsize = HAMMER_BUFSIZE;
543
544         mp->mnt_vstat.f_frsize = HAMMER_BUFSIZE;
545         mp->mnt_vstat.f_bsize = HAMMER_BUFSIZE;
546
547         mp->mnt_maxsymlinklen = 255;
548         mp->mnt_flag |= MNT_LOCAL;
549
550         vfs_add_vnodeops(mp, &hammer_vnode_vops, &mp->mnt_vn_norm_ops);
551         vfs_add_vnodeops(mp, &hammer_spec_vops, &mp->mnt_vn_spec_ops);
552         vfs_add_vnodeops(mp, &hammer_fifo_vops, &mp->mnt_vn_fifo_ops);
553
554         /*
555          * The root volume's ondisk pointer is only valid if we hold a
556          * reference to it.
557          */
558         rootvol = hammer_get_root_volume(hmp, &error);
559         if (error)
560                 goto failed;
561
562         /*
563          * Perform any necessary UNDO operations.  The recovery code does
564          * call hammer_undo_lookup() so we have to pre-cache the blockmap,
565          * and then re-copy it again after recovery is complete.
566          *
567          * If this is a read-only mount the UNDO information is retained
568          * in memory in the form of dirty buffer cache buffers, and not
569          * written back to the media.
570          */
571         bcopy(rootvol->ondisk->vol0_blockmap, hmp->blockmap,
572               sizeof(hmp->blockmap));
573
574         /*
575          * Check filesystem version
576          */
577         hmp->version = rootvol->ondisk->vol_version;
578         if (hmp->version < HAMMER_VOL_VERSION_MIN ||
579             hmp->version > HAMMER_VOL_VERSION_MAX) {
580                 kprintf("HAMMER: mount unsupported fs version %d\n",
581                         hmp->version);
582                 error = ERANGE;
583                 goto done;
584         }
585
586         /*
587          * The undo_rec_limit limits the size of flush groups to avoid
588          * blowing out the UNDO FIFO.  This calculation is typically in
589          * the tens of thousands and is designed primarily when small
590          * HAMMER filesystems are created.
591          */
592         hmp->undo_rec_limit = hammer_undo_max(hmp) / 8192 + 100;
593         if (hammer_debug_general & 0x0001)
594                 kprintf("HAMMER: undo_rec_limit %d\n", hmp->undo_rec_limit);
595
596         error = hammer_recover(hmp, rootvol);
597         if (error) {
598                 kprintf("Failed to recover HAMMER filesystem on mount\n");
599                 goto done;
600         }
601
602         /*
603          * Finish setup now that we have a good root volume.
604          *
605          * The top 16 bits of fsid.val[1] is a pfs id.
606          */
607         ksnprintf(mp->mnt_stat.f_mntfromname,
608                   sizeof(mp->mnt_stat.f_mntfromname), "%s",
609                   rootvol->ondisk->vol_name);
610         mp->mnt_stat.f_fsid.val[0] =
611                 crc32((char *)&rootvol->ondisk->vol_fsid + 0, 8);
612         mp->mnt_stat.f_fsid.val[1] =
613                 crc32((char *)&rootvol->ondisk->vol_fsid + 8, 8);
614         mp->mnt_stat.f_fsid.val[1] &= 0x0000FFFF;
615
616         mp->mnt_vstat.f_fsid_uuid = rootvol->ondisk->vol_fsid;
617         mp->mnt_vstat.f_fsid = crc32(&mp->mnt_vstat.f_fsid_uuid,
618                                      sizeof(mp->mnt_vstat.f_fsid_uuid));
619
620         /*
621          * Certain often-modified fields in the root volume are cached in
622          * the hammer_mount structure so we do not have to generate lots
623          * of little UNDO structures for them.
624          *
625          * Recopy after recovery.  This also has the side effect of
626          * setting our cached undo FIFO's first_offset, which serves to
627          * placemark the FIFO start for the NEXT flush cycle while the
628          * on-disk first_offset represents the LAST flush cycle.
629          */
630         hmp->next_tid = rootvol->ondisk->vol0_next_tid;
631         hmp->flush_tid1 = hmp->next_tid;
632         hmp->flush_tid2 = hmp->next_tid;
633         bcopy(rootvol->ondisk->vol0_blockmap, hmp->blockmap,
634               sizeof(hmp->blockmap));
635         hmp->copy_stat_freebigblocks = rootvol->ondisk->vol0_stat_freebigblocks;
636
637         hammer_flusher_create(hmp);
638
639         /*
640          * Locate the root directory using the root cluster's B-Tree as a
641          * starting point.  The root directory uses an obj_id of 1.
642          *
643          * FUTURE: Leave the root directory cached referenced but unlocked
644          * in hmp->rootvp (need to flush it on unmount).
645          */
646         error = hammer_vfs_vget(mp, NULL, 1, &rootvp);
647         if (error)
648                 goto done;
649         vput(rootvp);
650         /*vn_unlock(hmp->rootvp);*/
651
652 done:
653         hammer_rel_volume(rootvol, 0);
654 failed:
655         /*
656          * Cleanup and return.
657          */
658         if (error)
659                 hammer_free_hmp(mp);
660         return (error);
661 }
662
663 static int
664 hammer_vfs_unmount(struct mount *mp, int mntflags)
665 {
666 #if 0
667         struct hammer_mount *hmp = (void *)mp->mnt_data;
668 #endif
669         int flags;
670         int error;
671
672         /*
673          * Clean out the vnodes
674          */
675         flags = 0;
676         if (mntflags & MNT_FORCE)
677                 flags |= FORCECLOSE;
678         if ((error = vflush(mp, 0, flags)) != 0)
679                 return (error);
680
681         /*
682          * Clean up the internal mount structure and related entities.  This
683          * may issue I/O.
684          */
685         hammer_free_hmp(mp);
686         return(0);
687 }
688
689 /*
690  * Clean up the internal mount structure and disassociate it from the mount.
691  * This may issue I/O.
692  */
693 static void
694 hammer_free_hmp(struct mount *mp)
695 {
696         struct hammer_mount *hmp = (void *)mp->mnt_data;
697         hammer_flush_group_t flg;
698         int count;
699         int dummy;
700
701         /*
702          * Flush anything dirty.  This won't even run if the
703          * filesystem errored-out.
704          */
705         count = 0;
706         while (hammer_flusher_haswork(hmp)) {
707                 hammer_flusher_sync(hmp);
708                 ++count;
709                 if (count >= 5) {
710                         if (count == 5)
711                                 kprintf("HAMMER: umount flushing.");
712                         else
713                                 kprintf(".");
714                         tsleep(&dummy, 0, "hmrufl", hz);
715                 }
716                 if (count == 30) {
717                         kprintf("giving up\n");
718                         break;
719                 }
720         }
721         if (count >= 5 && count < 30)
722                 kprintf("\n");
723
724         /*
725          * If the mount had a critical error we have to destroy any
726          * remaining inodes before we can finish cleaning up the flusher.
727          */
728         if (hmp->flags & HAMMER_MOUNT_CRITICAL_ERROR) {
729                 RB_SCAN(hammer_ino_rb_tree, &hmp->rb_inos_root, NULL,
730                         hammer_destroy_inode_callback, NULL);
731         }
732
733         /*
734          * There shouldn't be any inodes left now and any left over
735          * flush groups should now be empty.
736          */
737         KKASSERT(RB_EMPTY(&hmp->rb_inos_root));
738         while ((flg = TAILQ_FIRST(&hmp->flush_group_list)) != NULL) {
739                 TAILQ_REMOVE(&hmp->flush_group_list, flg, flush_entry);
740                 KKASSERT(TAILQ_EMPTY(&flg->flush_list));
741                 if (flg->refs) {
742                         kprintf("HAMMER: Warning, flush_group %p was "
743                                 "not empty on umount!\n", flg);
744                 }
745                 kfree(flg, hmp->m_misc);
746         }
747
748         /*
749          * We can finally destroy the flusher
750          */
751         hammer_flusher_destroy(hmp);
752
753         /*
754          * We may have held recovered buffers due to a read-only mount.
755          * These must be discarded.
756          */
757         if (hmp->ronly)
758                 hammer_recover_flush_buffers(hmp, NULL, -1);
759
760         /*
761          * Unload buffers and then volumes
762          */
763         RB_SCAN(hammer_buf_rb_tree, &hmp->rb_bufs_root, NULL,
764                 hammer_unload_buffer, NULL);
765         RB_SCAN(hammer_vol_rb_tree, &hmp->rb_vols_root, NULL,
766                 hammer_unload_volume, NULL);
767
768         mp->mnt_data = NULL;
769         mp->mnt_flag &= ~MNT_LOCAL;
770         hmp->mp = NULL;
771         hammer_destroy_objid_cache(hmp);
772         kmalloc_destroy(&hmp->m_misc);
773         kmalloc_destroy(&hmp->m_inodes);
774         kfree(hmp, M_HAMMER);
775 }
776
777 /*
778  * Report critical errors.  ip may be NULL.
779  */
780 void
781 hammer_critical_error(hammer_mount_t hmp, hammer_inode_t ip,
782                       int error, const char *msg)
783 {
784         hmp->flags |= HAMMER_MOUNT_CRITICAL_ERROR;
785
786         krateprintf(&hmp->krate,
787                     "HAMMER(%s): Critical error inode=%jd error=%d %s\n",
788                     hmp->mp->mnt_stat.f_mntfromname,
789                     (intmax_t)(ip ? ip->obj_id : -1),
790                     error, msg);
791
792         if (hmp->ronly == 0) {
793                 hmp->ronly = 2;         /* special errored read-only mode */
794                 hmp->mp->mnt_flag |= MNT_RDONLY;
795                 kprintf("HAMMER(%s): Forcing read-only mode\n",
796                         hmp->mp->mnt_stat.f_mntfromname);
797         }
798         hmp->error = error;
799         if (hammer_error_panic > 2)
800                 Debugger("Entering debugger");
801 }
802
803
804 /*
805  * Obtain a vnode for the specified inode number.  An exclusively locked
806  * vnode is returned.
807  */
808 int
809 hammer_vfs_vget(struct mount *mp, struct vnode *dvp,
810                 ino_t ino, struct vnode **vpp)
811 {
812         struct hammer_transaction trans;
813         struct hammer_mount *hmp = (void *)mp->mnt_data;
814         struct hammer_inode *ip;
815         int error;
816         u_int32_t localization;
817
818         hammer_simple_transaction(&trans, hmp);
819
820         /*
821          * If a directory vnode is supplied (mainly NFS) then we can acquire
822          * the PFS domain from it.  Otherwise we would only be able to vget
823          * inodes in the root PFS.
824          */
825         if (dvp) {
826                 localization = HAMMER_DEF_LOCALIZATION +
827                                 VTOI(dvp)->obj_localization;
828         } else {
829                 localization = HAMMER_DEF_LOCALIZATION;
830         }
831
832         /*
833          * Lookup the requested HAMMER inode.  The structure must be
834          * left unlocked while we manipulate the related vnode to avoid
835          * a deadlock.
836          */
837         ip = hammer_get_inode(&trans, NULL, ino,
838                               hmp->asof, localization,
839                               0, &error);
840         if (ip == NULL) {
841                 *vpp = NULL;
842                 hammer_done_transaction(&trans);
843                 return(error);
844         }
845         error = hammer_get_vnode(ip, vpp);
846         hammer_rel_inode(ip, 0);
847         hammer_done_transaction(&trans);
848         return (error);
849 }
850
851 /*
852  * Return the root vnode for the filesystem.
853  *
854  * HAMMER stores the root vnode in the hammer_mount structure so
855  * getting it is easy.
856  */
857 static int
858 hammer_vfs_root(struct mount *mp, struct vnode **vpp)
859 {
860 #if 0
861         struct hammer_mount *hmp = (void *)mp->mnt_data;
862 #endif
863         int error;
864
865         error = hammer_vfs_vget(mp, NULL, 1, vpp);
866         return (error);
867 }
868
869 static int
870 hammer_vfs_statfs(struct mount *mp, struct statfs *sbp, struct ucred *cred)
871 {
872         struct hammer_mount *hmp = (void *)mp->mnt_data;
873         hammer_volume_t volume;
874         hammer_volume_ondisk_t ondisk;
875         int error;
876         int64_t bfree;
877         int64_t breserved;
878
879         volume = hammer_get_root_volume(hmp, &error);
880         if (error)
881                 return(error);
882         ondisk = volume->ondisk;
883
884         /*
885          * Basic stats
886          */
887         _hammer_checkspace(hmp, HAMMER_CHKSPC_WRITE, &breserved);
888         mp->mnt_stat.f_files = ondisk->vol0_stat_inodes;
889         bfree = ondisk->vol0_stat_freebigblocks * HAMMER_LARGEBLOCK_SIZE;
890         hammer_rel_volume(volume, 0);
891
892         mp->mnt_stat.f_bfree = (bfree - breserved) / HAMMER_BUFSIZE;
893         mp->mnt_stat.f_bavail = mp->mnt_stat.f_bfree;
894         if (mp->mnt_stat.f_files < 0)
895                 mp->mnt_stat.f_files = 0;
896
897         *sbp = mp->mnt_stat;
898         return(0);
899 }
900
901 static int
902 hammer_vfs_statvfs(struct mount *mp, struct statvfs *sbp, struct ucred *cred)
903 {
904         struct hammer_mount *hmp = (void *)mp->mnt_data;
905         hammer_volume_t volume;
906         hammer_volume_ondisk_t ondisk;
907         int error;
908         int64_t bfree;
909         int64_t breserved;
910
911         volume = hammer_get_root_volume(hmp, &error);
912         if (error)
913                 return(error);
914         ondisk = volume->ondisk;
915
916         /*
917          * Basic stats
918          */
919         _hammer_checkspace(hmp, HAMMER_CHKSPC_WRITE, &breserved);
920         mp->mnt_vstat.f_files = ondisk->vol0_stat_inodes;
921         bfree = ondisk->vol0_stat_freebigblocks * HAMMER_LARGEBLOCK_SIZE;
922         hammer_rel_volume(volume, 0);
923
924         mp->mnt_vstat.f_bfree = (bfree - breserved) / HAMMER_BUFSIZE;
925         mp->mnt_vstat.f_bavail = mp->mnt_stat.f_bfree;
926         if (mp->mnt_vstat.f_files < 0)
927                 mp->mnt_vstat.f_files = 0;
928         *sbp = mp->mnt_vstat;
929         return(0);
930 }
931
932 /*
933  * Sync the filesystem.  Currently we have to run it twice, the second
934  * one will advance the undo start index to the end index, so if a crash
935  * occurs no undos will be run on mount.
936  *
937  * We do not sync the filesystem if we are called from a panic.  If we did
938  * we might end up blowing up a sync that was already in progress.
939  */
940 static int
941 hammer_vfs_sync(struct mount *mp, int waitfor)
942 {
943         struct hammer_mount *hmp = (void *)mp->mnt_data;
944         int error;
945
946         if (panicstr == NULL) {
947                 error = hammer_sync_hmp(hmp, waitfor);
948         } else {
949                 error = EIO;
950         }
951         return (error);
952 }
953
954 /*
955  * Convert a vnode to a file handle.
956  */
957 static int
958 hammer_vfs_vptofh(struct vnode *vp, struct fid *fhp)
959 {
960         hammer_inode_t ip;
961
962         KKASSERT(MAXFIDSZ >= 16);
963         ip = VTOI(vp);
964         fhp->fid_len = offsetof(struct fid, fid_data[16]);
965         fhp->fid_ext = ip->obj_localization >> 16;
966         bcopy(&ip->obj_id, fhp->fid_data + 0, sizeof(ip->obj_id));
967         bcopy(&ip->obj_asof, fhp->fid_data + 8, sizeof(ip->obj_asof));
968         return(0);
969 }
970
971
972 /*
973  * Convert a file handle back to a vnode.
974  *
975  * Use rootvp to enforce PFS isolation when a PFS is exported via a
976  * null mount.
977  */
978 static int
979 hammer_vfs_fhtovp(struct mount *mp, struct vnode *rootvp,
980                   struct fid *fhp, struct vnode **vpp)
981 {
982         struct hammer_transaction trans;
983         struct hammer_inode *ip;
984         struct hammer_inode_info info;
985         int error;
986         u_int32_t localization;
987
988         bcopy(fhp->fid_data + 0, &info.obj_id, sizeof(info.obj_id));
989         bcopy(fhp->fid_data + 8, &info.obj_asof, sizeof(info.obj_asof));
990         if (rootvp)
991                 localization = VTOI(rootvp)->obj_localization;
992         else
993                 localization = (u_int32_t)fhp->fid_ext << 16;
994
995         hammer_simple_transaction(&trans, (void *)mp->mnt_data);
996
997         /*
998          * Get/allocate the hammer_inode structure.  The structure must be
999          * unlocked while we manipulate the related vnode to avoid a
1000          * deadlock.
1001          */
1002         ip = hammer_get_inode(&trans, NULL, info.obj_id,
1003                               info.obj_asof, localization, 0, &error);
1004         if (ip == NULL) {
1005                 *vpp = NULL;
1006                 return(error);
1007         }
1008         error = hammer_get_vnode(ip, vpp);
1009         hammer_rel_inode(ip, 0);
1010         hammer_done_transaction(&trans);
1011         return (error);
1012 }
1013
1014 static int
1015 hammer_vfs_checkexp(struct mount *mp, struct sockaddr *nam,
1016                     int *exflagsp, struct ucred **credanonp)
1017 {
1018         hammer_mount_t hmp = (void *)mp->mnt_data;
1019         struct netcred *np;
1020         int error;
1021
1022         np = vfs_export_lookup(mp, &hmp->export, nam);
1023         if (np) {
1024                 *exflagsp = np->netc_exflags;
1025                 *credanonp = &np->netc_anon;
1026                 error = 0;
1027         } else {
1028                 error = EACCES;
1029         }
1030         return (error);
1031
1032 }
1033
1034 int
1035 hammer_vfs_export(struct mount *mp, int op, const struct export_args *export)
1036 {
1037         hammer_mount_t hmp = (void *)mp->mnt_data;
1038         int error;
1039
1040         switch(op) {
1041         case MOUNTCTL_SET_EXPORT:
1042                 error = vfs_export(mp, &hmp->export, export);
1043                 break;
1044         default:
1045                 error = EOPNOTSUPP;
1046                 break;
1047         }
1048         return(error);
1049 }
1050