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