xref: /illumos-gate/usr/src/uts/common/fs/zfs/zfs_vfsops.c (revision 40d3dfe15f0068009eaddacc3ded2afa9c994fa0)
1 /*
2  * CDDL HEADER START
3  *
4  * The contents of this file are subject to the terms of the
5  * Common Development and Distribution License (the "License").
6  * You may not use this file except in compliance with the License.
7  *
8  * You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
9  * or http://www.opensolaris.org/os/licensing.
10  * See the License for the specific language governing permissions
11  * and limitations under the License.
12  *
13  * When distributing Covered Code, include this CDDL HEADER in each
14  * file and include the License file at usr/src/OPENSOLARIS.LICENSE.
15  * If applicable, add the following below this CDDL HEADER, with the
16  * fields enclosed by brackets "[]" replaced with your own identifying
17  * information: Portions Copyright [yyyy] [name of copyright owner]
18  *
19  * CDDL HEADER END
20  */
21 /*
22  * Copyright 2008 Sun Microsystems, Inc.  All rights reserved.
23  * Use is subject to license terms.
24  */
25 
26 #pragma ident	"%Z%%M%	%I%	%E% SMI"
27 
28 #include <sys/types.h>
29 #include <sys/param.h>
30 #include <sys/systm.h>
31 #include <sys/sysmacros.h>
32 #include <sys/kmem.h>
33 #include <sys/pathname.h>
34 #include <sys/vnode.h>
35 #include <sys/vfs.h>
36 #include <sys/vfs_opreg.h>
37 #include <sys/mntent.h>
38 #include <sys/mount.h>
39 #include <sys/cmn_err.h>
40 #include "fs/fs_subr.h"
41 #include <sys/zfs_znode.h>
42 #include <sys/zfs_dir.h>
43 #include <sys/zil.h>
44 #include <sys/fs/zfs.h>
45 #include <sys/dmu.h>
46 #include <sys/dsl_prop.h>
47 #include <sys/dsl_dataset.h>
48 #include <sys/dsl_deleg.h>
49 #include <sys/spa.h>
50 #include <sys/zap.h>
51 #include <sys/varargs.h>
52 #include <sys/policy.h>
53 #include <sys/atomic.h>
54 #include <sys/mkdev.h>
55 #include <sys/modctl.h>
56 #include <sys/refstr.h>
57 #include <sys/zfs_ioctl.h>
58 #include <sys/zfs_ctldir.h>
59 #include <sys/zfs_fuid.h>
60 #include <sys/bootconf.h>
61 #include <sys/sunddi.h>
62 #include <sys/dnlc.h>
63 #include <sys/dmu_objset.h>
64 #include <sys/spa_boot.h>
65 
66 int zfsfstype;
67 vfsops_t *zfs_vfsops = NULL;
68 static major_t zfs_major;
69 static minor_t zfs_minor;
70 static kmutex_t	zfs_dev_mtx;
71 
72 static int zfs_mount(vfs_t *vfsp, vnode_t *mvp, struct mounta *uap, cred_t *cr);
73 static int zfs_umount(vfs_t *vfsp, int fflag, cred_t *cr);
74 static int zfs_mountroot(vfs_t *vfsp, enum whymountroot);
75 static int zfs_root(vfs_t *vfsp, vnode_t **vpp);
76 static int zfs_statvfs(vfs_t *vfsp, struct statvfs64 *statp);
77 static int zfs_vget(vfs_t *vfsp, vnode_t **vpp, fid_t *fidp);
78 static void zfs_freevfs(vfs_t *vfsp);
79 
80 static const fs_operation_def_t zfs_vfsops_template[] = {
81 	VFSNAME_MOUNT,		{ .vfs_mount = zfs_mount },
82 	VFSNAME_MOUNTROOT,	{ .vfs_mountroot = zfs_mountroot },
83 	VFSNAME_UNMOUNT,	{ .vfs_unmount = zfs_umount },
84 	VFSNAME_ROOT,		{ .vfs_root = zfs_root },
85 	VFSNAME_STATVFS,	{ .vfs_statvfs = zfs_statvfs },
86 	VFSNAME_SYNC,		{ .vfs_sync = zfs_sync },
87 	VFSNAME_VGET,		{ .vfs_vget = zfs_vget },
88 	VFSNAME_FREEVFS,	{ .vfs_freevfs = zfs_freevfs },
89 	NULL,			NULL
90 };
91 
92 static const fs_operation_def_t zfs_vfsops_eio_template[] = {
93 	VFSNAME_FREEVFS,	{ .vfs_freevfs =  zfs_freevfs },
94 	NULL,			NULL
95 };
96 
97 /*
98  * We need to keep a count of active fs's.
99  * This is necessary to prevent our module
100  * from being unloaded after a umount -f
101  */
102 static uint32_t	zfs_active_fs_count = 0;
103 
104 static char *noatime_cancel[] = { MNTOPT_ATIME, NULL };
105 static char *atime_cancel[] = { MNTOPT_NOATIME, NULL };
106 static char *noxattr_cancel[] = { MNTOPT_XATTR, NULL };
107 static char *xattr_cancel[] = { MNTOPT_NOXATTR, NULL };
108 
109 /*
110  * MO_DEFAULT is not used since the default value is determined
111  * by the equivalent property.
112  */
113 static mntopt_t mntopts[] = {
114 	{ MNTOPT_NOXATTR, noxattr_cancel, NULL, 0, NULL },
115 	{ MNTOPT_XATTR, xattr_cancel, NULL, 0, NULL },
116 	{ MNTOPT_NOATIME, noatime_cancel, NULL, 0, NULL },
117 	{ MNTOPT_ATIME, atime_cancel, NULL, 0, NULL }
118 };
119 
120 static mntopts_t zfs_mntopts = {
121 	sizeof (mntopts) / sizeof (mntopt_t),
122 	mntopts
123 };
124 
125 /*ARGSUSED*/
126 int
127 zfs_sync(vfs_t *vfsp, short flag, cred_t *cr)
128 {
129 	/*
130 	 * Data integrity is job one.  We don't want a compromised kernel
131 	 * writing to the storage pool, so we never sync during panic.
132 	 */
133 	if (panicstr)
134 		return (0);
135 
136 	/*
137 	 * SYNC_ATTR is used by fsflush() to force old filesystems like UFS
138 	 * to sync metadata, which they would otherwise cache indefinitely.
139 	 * Semantically, the only requirement is that the sync be initiated.
140 	 * The DMU syncs out txgs frequently, so there's nothing to do.
141 	 */
142 	if (flag & SYNC_ATTR)
143 		return (0);
144 
145 	if (vfsp != NULL) {
146 		/*
147 		 * Sync a specific filesystem.
148 		 */
149 		zfsvfs_t *zfsvfs = vfsp->vfs_data;
150 
151 		ZFS_ENTER(zfsvfs);
152 		if (zfsvfs->z_log != NULL)
153 			zil_commit(zfsvfs->z_log, UINT64_MAX, 0);
154 		else
155 			txg_wait_synced(dmu_objset_pool(zfsvfs->z_os), 0);
156 		ZFS_EXIT(zfsvfs);
157 	} else {
158 		/*
159 		 * Sync all ZFS filesystems.  This is what happens when you
160 		 * run sync(1M).  Unlike other filesystems, ZFS honors the
161 		 * request by waiting for all pools to commit all dirty data.
162 		 */
163 		spa_sync_allpools();
164 	}
165 
166 	return (0);
167 }
168 
169 static int
170 zfs_create_unique_device(dev_t *dev)
171 {
172 	major_t new_major;
173 
174 	do {
175 		ASSERT3U(zfs_minor, <=, MAXMIN32);
176 		minor_t start = zfs_minor;
177 		do {
178 			mutex_enter(&zfs_dev_mtx);
179 			if (zfs_minor >= MAXMIN32) {
180 				/*
181 				 * If we're still using the real major
182 				 * keep out of /dev/zfs and /dev/zvol minor
183 				 * number space.  If we're using a getudev()'ed
184 				 * major number, we can use all of its minors.
185 				 */
186 				if (zfs_major == ddi_name_to_major(ZFS_DRIVER))
187 					zfs_minor = ZFS_MIN_MINOR;
188 				else
189 					zfs_minor = 0;
190 			} else {
191 				zfs_minor++;
192 			}
193 			*dev = makedevice(zfs_major, zfs_minor);
194 			mutex_exit(&zfs_dev_mtx);
195 		} while (vfs_devismounted(*dev) && zfs_minor != start);
196 		if (zfs_minor == start) {
197 			/*
198 			 * We are using all ~262,000 minor numbers for the
199 			 * current major number.  Create a new major number.
200 			 */
201 			if ((new_major = getudev()) == (major_t)-1) {
202 				cmn_err(CE_WARN,
203 				    "zfs_mount: Can't get unique major "
204 				    "device number.");
205 				return (-1);
206 			}
207 			mutex_enter(&zfs_dev_mtx);
208 			zfs_major = new_major;
209 			zfs_minor = 0;
210 
211 			mutex_exit(&zfs_dev_mtx);
212 		} else {
213 			break;
214 		}
215 		/* CONSTANTCONDITION */
216 	} while (1);
217 
218 	return (0);
219 }
220 
221 static void
222 atime_changed_cb(void *arg, uint64_t newval)
223 {
224 	zfsvfs_t *zfsvfs = arg;
225 
226 	if (newval == TRUE) {
227 		zfsvfs->z_atime = TRUE;
228 		vfs_clearmntopt(zfsvfs->z_vfs, MNTOPT_NOATIME);
229 		vfs_setmntopt(zfsvfs->z_vfs, MNTOPT_ATIME, NULL, 0);
230 	} else {
231 		zfsvfs->z_atime = FALSE;
232 		vfs_clearmntopt(zfsvfs->z_vfs, MNTOPT_ATIME);
233 		vfs_setmntopt(zfsvfs->z_vfs, MNTOPT_NOATIME, NULL, 0);
234 	}
235 }
236 
237 static void
238 xattr_changed_cb(void *arg, uint64_t newval)
239 {
240 	zfsvfs_t *zfsvfs = arg;
241 
242 	if (newval == TRUE) {
243 		/* XXX locking on vfs_flag? */
244 		zfsvfs->z_vfs->vfs_flag |= VFS_XATTR;
245 		vfs_clearmntopt(zfsvfs->z_vfs, MNTOPT_NOXATTR);
246 		vfs_setmntopt(zfsvfs->z_vfs, MNTOPT_XATTR, NULL, 0);
247 	} else {
248 		/* XXX locking on vfs_flag? */
249 		zfsvfs->z_vfs->vfs_flag &= ~VFS_XATTR;
250 		vfs_clearmntopt(zfsvfs->z_vfs, MNTOPT_XATTR);
251 		vfs_setmntopt(zfsvfs->z_vfs, MNTOPT_NOXATTR, NULL, 0);
252 	}
253 }
254 
255 static void
256 blksz_changed_cb(void *arg, uint64_t newval)
257 {
258 	zfsvfs_t *zfsvfs = arg;
259 
260 	if (newval < SPA_MINBLOCKSIZE ||
261 	    newval > SPA_MAXBLOCKSIZE || !ISP2(newval))
262 		newval = SPA_MAXBLOCKSIZE;
263 
264 	zfsvfs->z_max_blksz = newval;
265 	zfsvfs->z_vfs->vfs_bsize = newval;
266 }
267 
268 static void
269 readonly_changed_cb(void *arg, uint64_t newval)
270 {
271 	zfsvfs_t *zfsvfs = arg;
272 
273 	if (newval) {
274 		/* XXX locking on vfs_flag? */
275 		zfsvfs->z_vfs->vfs_flag |= VFS_RDONLY;
276 		vfs_clearmntopt(zfsvfs->z_vfs, MNTOPT_RW);
277 		vfs_setmntopt(zfsvfs->z_vfs, MNTOPT_RO, NULL, 0);
278 	} else {
279 		/* XXX locking on vfs_flag? */
280 		zfsvfs->z_vfs->vfs_flag &= ~VFS_RDONLY;
281 		vfs_clearmntopt(zfsvfs->z_vfs, MNTOPT_RO);
282 		vfs_setmntopt(zfsvfs->z_vfs, MNTOPT_RW, NULL, 0);
283 	}
284 }
285 
286 static void
287 devices_changed_cb(void *arg, uint64_t newval)
288 {
289 	zfsvfs_t *zfsvfs = arg;
290 
291 	if (newval == FALSE) {
292 		zfsvfs->z_vfs->vfs_flag |= VFS_NODEVICES;
293 		vfs_clearmntopt(zfsvfs->z_vfs, MNTOPT_DEVICES);
294 		vfs_setmntopt(zfsvfs->z_vfs, MNTOPT_NODEVICES, NULL, 0);
295 	} else {
296 		zfsvfs->z_vfs->vfs_flag &= ~VFS_NODEVICES;
297 		vfs_clearmntopt(zfsvfs->z_vfs, MNTOPT_NODEVICES);
298 		vfs_setmntopt(zfsvfs->z_vfs, MNTOPT_DEVICES, NULL, 0);
299 	}
300 }
301 
302 static void
303 setuid_changed_cb(void *arg, uint64_t newval)
304 {
305 	zfsvfs_t *zfsvfs = arg;
306 
307 	if (newval == FALSE) {
308 		zfsvfs->z_vfs->vfs_flag |= VFS_NOSETUID;
309 		vfs_clearmntopt(zfsvfs->z_vfs, MNTOPT_SETUID);
310 		vfs_setmntopt(zfsvfs->z_vfs, MNTOPT_NOSETUID, NULL, 0);
311 	} else {
312 		zfsvfs->z_vfs->vfs_flag &= ~VFS_NOSETUID;
313 		vfs_clearmntopt(zfsvfs->z_vfs, MNTOPT_NOSETUID);
314 		vfs_setmntopt(zfsvfs->z_vfs, MNTOPT_SETUID, NULL, 0);
315 	}
316 }
317 
318 static void
319 exec_changed_cb(void *arg, uint64_t newval)
320 {
321 	zfsvfs_t *zfsvfs = arg;
322 
323 	if (newval == FALSE) {
324 		zfsvfs->z_vfs->vfs_flag |= VFS_NOEXEC;
325 		vfs_clearmntopt(zfsvfs->z_vfs, MNTOPT_EXEC);
326 		vfs_setmntopt(zfsvfs->z_vfs, MNTOPT_NOEXEC, NULL, 0);
327 	} else {
328 		zfsvfs->z_vfs->vfs_flag &= ~VFS_NOEXEC;
329 		vfs_clearmntopt(zfsvfs->z_vfs, MNTOPT_NOEXEC);
330 		vfs_setmntopt(zfsvfs->z_vfs, MNTOPT_EXEC, NULL, 0);
331 	}
332 }
333 
334 /*
335  * The nbmand mount option can be changed at mount time.
336  * We can't allow it to be toggled on live file systems or incorrect
337  * behavior may be seen from cifs clients
338  *
339  * This property isn't registered via dsl_prop_register(), but this callback
340  * will be called when a file system is first mounted
341  */
342 static void
343 nbmand_changed_cb(void *arg, uint64_t newval)
344 {
345 	zfsvfs_t *zfsvfs = arg;
346 	if (newval == FALSE) {
347 		vfs_clearmntopt(zfsvfs->z_vfs, MNTOPT_NBMAND);
348 		vfs_setmntopt(zfsvfs->z_vfs, MNTOPT_NONBMAND, NULL, 0);
349 	} else {
350 		vfs_clearmntopt(zfsvfs->z_vfs, MNTOPT_NONBMAND);
351 		vfs_setmntopt(zfsvfs->z_vfs, MNTOPT_NBMAND, NULL, 0);
352 	}
353 }
354 
355 static void
356 snapdir_changed_cb(void *arg, uint64_t newval)
357 {
358 	zfsvfs_t *zfsvfs = arg;
359 
360 	zfsvfs->z_show_ctldir = newval;
361 }
362 
363 static void
364 vscan_changed_cb(void *arg, uint64_t newval)
365 {
366 	zfsvfs_t *zfsvfs = arg;
367 
368 	zfsvfs->z_vscan = newval;
369 }
370 
371 static void
372 acl_mode_changed_cb(void *arg, uint64_t newval)
373 {
374 	zfsvfs_t *zfsvfs = arg;
375 
376 	zfsvfs->z_acl_mode = newval;
377 }
378 
379 static void
380 acl_inherit_changed_cb(void *arg, uint64_t newval)
381 {
382 	zfsvfs_t *zfsvfs = arg;
383 
384 	zfsvfs->z_acl_inherit = newval;
385 }
386 
387 static int
388 zfs_register_callbacks(vfs_t *vfsp)
389 {
390 	struct dsl_dataset *ds = NULL;
391 	objset_t *os = NULL;
392 	zfsvfs_t *zfsvfs = NULL;
393 	uint64_t nbmand;
394 	int readonly, do_readonly = B_FALSE;
395 	int setuid, do_setuid = B_FALSE;
396 	int exec, do_exec = B_FALSE;
397 	int devices, do_devices = B_FALSE;
398 	int xattr, do_xattr = B_FALSE;
399 	int atime, do_atime = B_FALSE;
400 	int error = 0;
401 
402 	ASSERT(vfsp);
403 	zfsvfs = vfsp->vfs_data;
404 	ASSERT(zfsvfs);
405 	os = zfsvfs->z_os;
406 
407 	/*
408 	 * The act of registering our callbacks will destroy any mount
409 	 * options we may have.  In order to enable temporary overrides
410 	 * of mount options, we stash away the current values and
411 	 * restore them after we register the callbacks.
412 	 */
413 	if (vfs_optionisset(vfsp, MNTOPT_RO, NULL)) {
414 		readonly = B_TRUE;
415 		do_readonly = B_TRUE;
416 	} else if (vfs_optionisset(vfsp, MNTOPT_RW, NULL)) {
417 		readonly = B_FALSE;
418 		do_readonly = B_TRUE;
419 	}
420 	if (vfs_optionisset(vfsp, MNTOPT_NOSUID, NULL)) {
421 		devices = B_FALSE;
422 		setuid = B_FALSE;
423 		do_devices = B_TRUE;
424 		do_setuid = B_TRUE;
425 	} else {
426 		if (vfs_optionisset(vfsp, MNTOPT_NODEVICES, NULL)) {
427 			devices = B_FALSE;
428 			do_devices = B_TRUE;
429 		} else if (vfs_optionisset(vfsp, MNTOPT_DEVICES, NULL)) {
430 			devices = B_TRUE;
431 			do_devices = B_TRUE;
432 		}
433 
434 		if (vfs_optionisset(vfsp, MNTOPT_NOSETUID, NULL)) {
435 			setuid = B_FALSE;
436 			do_setuid = B_TRUE;
437 		} else if (vfs_optionisset(vfsp, MNTOPT_SETUID, NULL)) {
438 			setuid = B_TRUE;
439 			do_setuid = B_TRUE;
440 		}
441 	}
442 	if (vfs_optionisset(vfsp, MNTOPT_NOEXEC, NULL)) {
443 		exec = B_FALSE;
444 		do_exec = B_TRUE;
445 	} else if (vfs_optionisset(vfsp, MNTOPT_EXEC, NULL)) {
446 		exec = B_TRUE;
447 		do_exec = B_TRUE;
448 	}
449 	if (vfs_optionisset(vfsp, MNTOPT_NOXATTR, NULL)) {
450 		xattr = B_FALSE;
451 		do_xattr = B_TRUE;
452 	} else if (vfs_optionisset(vfsp, MNTOPT_XATTR, NULL)) {
453 		xattr = B_TRUE;
454 		do_xattr = B_TRUE;
455 	}
456 	if (vfs_optionisset(vfsp, MNTOPT_NOATIME, NULL)) {
457 		atime = B_FALSE;
458 		do_atime = B_TRUE;
459 	} else if (vfs_optionisset(vfsp, MNTOPT_ATIME, NULL)) {
460 		atime = B_TRUE;
461 		do_atime = B_TRUE;
462 	}
463 
464 	/*
465 	 * nbmand is a special property.  It can only be changed at
466 	 * mount time.
467 	 *
468 	 * This is weird, but it is documented to only be changeable
469 	 * at mount time.
470 	 */
471 	if (vfs_optionisset(vfsp, MNTOPT_NONBMAND, NULL)) {
472 		nbmand = B_FALSE;
473 	} else if (vfs_optionisset(vfsp, MNTOPT_NBMAND, NULL)) {
474 		nbmand = B_TRUE;
475 	} else {
476 		char osname[MAXNAMELEN];
477 
478 		dmu_objset_name(os, osname);
479 		if (error = dsl_prop_get_integer(osname, "nbmand", &nbmand,
480 		    NULL))
481 		return (error);
482 	}
483 
484 	/*
485 	 * Register property callbacks.
486 	 *
487 	 * It would probably be fine to just check for i/o error from
488 	 * the first prop_register(), but I guess I like to go
489 	 * overboard...
490 	 */
491 	ds = dmu_objset_ds(os);
492 	error = dsl_prop_register(ds, "atime", atime_changed_cb, zfsvfs);
493 	error = error ? error : dsl_prop_register(ds,
494 	    "xattr", xattr_changed_cb, zfsvfs);
495 	error = error ? error : dsl_prop_register(ds,
496 	    "recordsize", blksz_changed_cb, zfsvfs);
497 	error = error ? error : dsl_prop_register(ds,
498 	    "readonly", readonly_changed_cb, zfsvfs);
499 	error = error ? error : dsl_prop_register(ds,
500 	    "devices", devices_changed_cb, zfsvfs);
501 	error = error ? error : dsl_prop_register(ds,
502 	    "setuid", setuid_changed_cb, zfsvfs);
503 	error = error ? error : dsl_prop_register(ds,
504 	    "exec", exec_changed_cb, zfsvfs);
505 	error = error ? error : dsl_prop_register(ds,
506 	    "snapdir", snapdir_changed_cb, zfsvfs);
507 	error = error ? error : dsl_prop_register(ds,
508 	    "aclmode", acl_mode_changed_cb, zfsvfs);
509 	error = error ? error : dsl_prop_register(ds,
510 	    "aclinherit", acl_inherit_changed_cb, zfsvfs);
511 	error = error ? error : dsl_prop_register(ds,
512 	    "vscan", vscan_changed_cb, zfsvfs);
513 	if (error)
514 		goto unregister;
515 
516 	/*
517 	 * Invoke our callbacks to restore temporary mount options.
518 	 */
519 	if (do_readonly)
520 		readonly_changed_cb(zfsvfs, readonly);
521 	if (do_setuid)
522 		setuid_changed_cb(zfsvfs, setuid);
523 	if (do_exec)
524 		exec_changed_cb(zfsvfs, exec);
525 	if (do_devices)
526 		devices_changed_cb(zfsvfs, devices);
527 	if (do_xattr)
528 		xattr_changed_cb(zfsvfs, xattr);
529 	if (do_atime)
530 		atime_changed_cb(zfsvfs, atime);
531 
532 	nbmand_changed_cb(zfsvfs, nbmand);
533 
534 	return (0);
535 
536 unregister:
537 	/*
538 	 * We may attempt to unregister some callbacks that are not
539 	 * registered, but this is OK; it will simply return ENOMSG,
540 	 * which we will ignore.
541 	 */
542 	(void) dsl_prop_unregister(ds, "atime", atime_changed_cb, zfsvfs);
543 	(void) dsl_prop_unregister(ds, "xattr", xattr_changed_cb, zfsvfs);
544 	(void) dsl_prop_unregister(ds, "recordsize", blksz_changed_cb, zfsvfs);
545 	(void) dsl_prop_unregister(ds, "readonly", readonly_changed_cb, zfsvfs);
546 	(void) dsl_prop_unregister(ds, "devices", devices_changed_cb, zfsvfs);
547 	(void) dsl_prop_unregister(ds, "setuid", setuid_changed_cb, zfsvfs);
548 	(void) dsl_prop_unregister(ds, "exec", exec_changed_cb, zfsvfs);
549 	(void) dsl_prop_unregister(ds, "snapdir", snapdir_changed_cb, zfsvfs);
550 	(void) dsl_prop_unregister(ds, "aclmode", acl_mode_changed_cb, zfsvfs);
551 	(void) dsl_prop_unregister(ds, "aclinherit", acl_inherit_changed_cb,
552 	    zfsvfs);
553 	(void) dsl_prop_unregister(ds, "vscan", vscan_changed_cb, zfsvfs);
554 	return (error);
555 
556 }
557 
558 static int
559 zfsvfs_setup(zfsvfs_t *zfsvfs, boolean_t mounting)
560 {
561 	uint_t readonly;
562 	int error;
563 
564 	error = zfs_register_callbacks(zfsvfs->z_vfs);
565 	if (error)
566 		return (error);
567 
568 	/*
569 	 * Set the objset user_ptr to track its zfsvfs.
570 	 */
571 	mutex_enter(&zfsvfs->z_os->os->os_user_ptr_lock);
572 	dmu_objset_set_user(zfsvfs->z_os, zfsvfs);
573 	mutex_exit(&zfsvfs->z_os->os->os_user_ptr_lock);
574 
575 	/*
576 	 * If we are not mounting (ie: online recv), then we don't
577 	 * have to worry about replaying the log as we blocked all
578 	 * operations out since we closed the ZIL.
579 	 */
580 	if (mounting) {
581 		/*
582 		 * During replay we remove the read only flag to
583 		 * allow replays to succeed.
584 		 */
585 		readonly = zfsvfs->z_vfs->vfs_flag & VFS_RDONLY;
586 		if (readonly != 0)
587 			zfsvfs->z_vfs->vfs_flag &= ~VFS_RDONLY;
588 		else
589 			zfs_unlinked_drain(zfsvfs);
590 
591 		/*
592 		 * Parse and replay the intent log.
593 		 *
594 		 * Because of ziltest, this must be done after
595 		 * zfs_unlinked_drain().  (Further note: ziltest doesn't
596 		 * use readonly mounts, where zfs_unlinked_drain() isn't
597 		 * called.)  This is because ziltest causes spa_sync()
598 		 * to think it's committed, but actually it is not, so
599 		 * the intent log contains many txg's worth of changes.
600 		 *
601 		 * In particular, if object N is in the unlinked set in
602 		 * the last txg to actually sync, then it could be
603 		 * actually freed in a later txg and then reallocated in
604 		 * a yet later txg.  This would write a "create object
605 		 * N" record to the intent log.  Normally, this would be
606 		 * fine because the spa_sync() would have written out
607 		 * the fact that object N is free, before we could write
608 		 * the "create object N" intent log record.
609 		 *
610 		 * But when we are in ziltest mode, we advance the "open
611 		 * txg" without actually spa_sync()-ing the changes to
612 		 * disk.  So we would see that object N is still
613 		 * allocated and in the unlinked set, and there is an
614 		 * intent log record saying to allocate it.
615 		 */
616 		zil_replay(zfsvfs->z_os, zfsvfs, &zfsvfs->z_assign,
617 		    zfs_replay_vector);
618 
619 		zfsvfs->z_vfs->vfs_flag |= readonly; /* restore readonly bit */
620 	}
621 
622 	if (!zil_disable)
623 		zfsvfs->z_log = zil_open(zfsvfs->z_os, zfs_get_data);
624 
625 	return (0);
626 }
627 
628 static void
629 zfs_freezfsvfs(zfsvfs_t *zfsvfs)
630 {
631 	mutex_destroy(&zfsvfs->z_znodes_lock);
632 	mutex_destroy(&zfsvfs->z_online_recv_lock);
633 	list_destroy(&zfsvfs->z_all_znodes);
634 	rrw_destroy(&zfsvfs->z_teardown_lock);
635 	rw_destroy(&zfsvfs->z_teardown_inactive_lock);
636 	rw_destroy(&zfsvfs->z_fuid_lock);
637 	kmem_free(zfsvfs, sizeof (zfsvfs_t));
638 }
639 
640 static int
641 zfs_domount(vfs_t *vfsp, char *osname, cred_t *cr)
642 {
643 	dev_t mount_dev;
644 	uint64_t recordsize, readonly;
645 	int error = 0;
646 	int mode;
647 	zfsvfs_t *zfsvfs;
648 	znode_t *zp = NULL;
649 
650 	ASSERT(vfsp);
651 	ASSERT(osname);
652 
653 	/*
654 	 * Initialize the zfs-specific filesystem structure.
655 	 * Should probably make this a kmem cache, shuffle fields,
656 	 * and just bzero up to z_hold_mtx[].
657 	 */
658 	zfsvfs = kmem_zalloc(sizeof (zfsvfs_t), KM_SLEEP);
659 	zfsvfs->z_vfs = vfsp;
660 	zfsvfs->z_parent = zfsvfs;
661 	zfsvfs->z_assign = TXG_NOWAIT;
662 	zfsvfs->z_max_blksz = SPA_MAXBLOCKSIZE;
663 	zfsvfs->z_show_ctldir = ZFS_SNAPDIR_VISIBLE;
664 
665 	mutex_init(&zfsvfs->z_znodes_lock, NULL, MUTEX_DEFAULT, NULL);
666 	mutex_init(&zfsvfs->z_online_recv_lock, NULL, MUTEX_DEFAULT, NULL);
667 	list_create(&zfsvfs->z_all_znodes, sizeof (znode_t),
668 	    offsetof(znode_t, z_link_node));
669 	rrw_init(&zfsvfs->z_teardown_lock);
670 	rw_init(&zfsvfs->z_teardown_inactive_lock, NULL, RW_DEFAULT, NULL);
671 	rw_init(&zfsvfs->z_fuid_lock, NULL, RW_DEFAULT, NULL);
672 
673 	/* Initialize the generic filesystem structure. */
674 	vfsp->vfs_bcount = 0;
675 	vfsp->vfs_data = NULL;
676 
677 	if (zfs_create_unique_device(&mount_dev) == -1) {
678 		error = ENODEV;
679 		goto out;
680 	}
681 	ASSERT(vfs_devismounted(mount_dev) == 0);
682 
683 	if (error = dsl_prop_get_integer(osname, "recordsize", &recordsize,
684 	    NULL))
685 		goto out;
686 
687 	vfsp->vfs_dev = mount_dev;
688 	vfsp->vfs_fstype = zfsfstype;
689 	vfsp->vfs_bsize = recordsize;
690 	vfsp->vfs_flag |= VFS_NOTRUNC;
691 	vfsp->vfs_data = zfsvfs;
692 
693 	if (error = dsl_prop_get_integer(osname, "readonly", &readonly, NULL))
694 		goto out;
695 
696 	if (readonly)
697 		mode = DS_MODE_PRIMARY | DS_MODE_READONLY;
698 	else
699 		mode = DS_MODE_PRIMARY;
700 
701 	error = dmu_objset_open(osname, DMU_OST_ZFS, mode, &zfsvfs->z_os);
702 	if (error == EROFS) {
703 		mode = DS_MODE_PRIMARY | DS_MODE_READONLY;
704 		error = dmu_objset_open(osname, DMU_OST_ZFS, mode,
705 		    &zfsvfs->z_os);
706 	}
707 
708 	if (error)
709 		goto out;
710 
711 	if (error = zfs_init_fs(zfsvfs, &zp, cr))
712 		goto out;
713 
714 	/* The call to zfs_init_fs leaves the vnode held, release it here. */
715 	VN_RELE(ZTOV(zp));
716 
717 	/*
718 	 * Set features for file system.
719 	 */
720 	zfsvfs->z_use_fuids = USE_FUIDS(zfsvfs->z_version, zfsvfs->z_os);
721 	if (zfsvfs->z_use_fuids) {
722 		vfs_set_feature(vfsp, VFSFT_XVATTR);
723 		vfs_set_feature(vfsp, VFSFT_ACEMASKONACCESS);
724 		vfs_set_feature(vfsp, VFSFT_ACLONCREATE);
725 	}
726 	if (zfsvfs->z_case == ZFS_CASE_INSENSITIVE) {
727 		vfs_set_feature(vfsp, VFSFT_DIRENTFLAGS);
728 		vfs_set_feature(vfsp, VFSFT_CASEINSENSITIVE);
729 		vfs_set_feature(vfsp, VFSFT_NOCASESENSITIVE);
730 	} else if (zfsvfs->z_case == ZFS_CASE_MIXED) {
731 		vfs_set_feature(vfsp, VFSFT_DIRENTFLAGS);
732 		vfs_set_feature(vfsp, VFSFT_CASEINSENSITIVE);
733 	}
734 
735 	if (dmu_objset_is_snapshot(zfsvfs->z_os)) {
736 		uint64_t pval;
737 
738 		ASSERT(mode & DS_MODE_READONLY);
739 		atime_changed_cb(zfsvfs, B_FALSE);
740 		readonly_changed_cb(zfsvfs, B_TRUE);
741 		if (error = dsl_prop_get_integer(osname, "xattr", &pval, NULL))
742 			goto out;
743 		xattr_changed_cb(zfsvfs, pval);
744 		zfsvfs->z_issnap = B_TRUE;
745 	} else {
746 		error = zfsvfs_setup(zfsvfs, B_TRUE);
747 	}
748 
749 	if (!zfsvfs->z_issnap)
750 		zfsctl_create(zfsvfs);
751 out:
752 	if (error) {
753 		if (zfsvfs->z_os)
754 			dmu_objset_close(zfsvfs->z_os);
755 		zfs_freezfsvfs(zfsvfs);
756 	} else {
757 		atomic_add_32(&zfs_active_fs_count, 1);
758 	}
759 
760 	return (error);
761 }
762 
763 void
764 zfs_unregister_callbacks(zfsvfs_t *zfsvfs)
765 {
766 	objset_t *os = zfsvfs->z_os;
767 	struct dsl_dataset *ds;
768 
769 	/*
770 	 * Unregister properties.
771 	 */
772 	if (!dmu_objset_is_snapshot(os)) {
773 		ds = dmu_objset_ds(os);
774 		VERIFY(dsl_prop_unregister(ds, "atime", atime_changed_cb,
775 		    zfsvfs) == 0);
776 
777 		VERIFY(dsl_prop_unregister(ds, "xattr", xattr_changed_cb,
778 		    zfsvfs) == 0);
779 
780 		VERIFY(dsl_prop_unregister(ds, "recordsize", blksz_changed_cb,
781 		    zfsvfs) == 0);
782 
783 		VERIFY(dsl_prop_unregister(ds, "readonly", readonly_changed_cb,
784 		    zfsvfs) == 0);
785 
786 		VERIFY(dsl_prop_unregister(ds, "devices", devices_changed_cb,
787 		    zfsvfs) == 0);
788 
789 		VERIFY(dsl_prop_unregister(ds, "setuid", setuid_changed_cb,
790 		    zfsvfs) == 0);
791 
792 		VERIFY(dsl_prop_unregister(ds, "exec", exec_changed_cb,
793 		    zfsvfs) == 0);
794 
795 		VERIFY(dsl_prop_unregister(ds, "snapdir", snapdir_changed_cb,
796 		    zfsvfs) == 0);
797 
798 		VERIFY(dsl_prop_unregister(ds, "aclmode", acl_mode_changed_cb,
799 		    zfsvfs) == 0);
800 
801 		VERIFY(dsl_prop_unregister(ds, "aclinherit",
802 		    acl_inherit_changed_cb, zfsvfs) == 0);
803 
804 		VERIFY(dsl_prop_unregister(ds, "vscan",
805 		    vscan_changed_cb, zfsvfs) == 0);
806 	}
807 }
808 
809 /*
810  * Convert a decimal digit string to a uint64_t integer.
811  */
812 static int
813 str_to_uint64(char *str, uint64_t *objnum)
814 {
815 	uint64_t num = 0;
816 
817 	while (*str) {
818 		if (*str < '0' || *str > '9')
819 			return (EINVAL);
820 
821 		num = num*10 + *str++ - '0';
822 	}
823 
824 	*objnum = num;
825 	return (0);
826 }
827 
828 /*
829  * The boot path passed from the boot loader is in the form of
830  * "rootpool-name/root-filesystem-object-number'. Convert this
831  * string to a dataset name: "rootpool-name/root-filesystem-name".
832  */
833 static int
834 zfs_parse_bootfs(char *bpath, char *outpath)
835 {
836 	char *slashp;
837 	uint64_t objnum;
838 	int error;
839 
840 	if (*bpath == 0 || *bpath == '/')
841 		return (EINVAL);
842 
843 	slashp = strchr(bpath, '/');
844 
845 	/* if no '/', just return the pool name */
846 	if (slashp == NULL) {
847 		(void) strcpy(outpath, bpath);
848 		return (0);
849 	}
850 
851 	if (error = str_to_uint64(slashp+1, &objnum))
852 		return (error);
853 
854 	*slashp = '\0';
855 	error = dsl_dsobj_to_dsname(bpath, objnum, outpath);
856 	*slashp = '/';
857 
858 	return (error);
859 }
860 
861 static int
862 zfs_mountroot(vfs_t *vfsp, enum whymountroot why)
863 {
864 	int error = 0;
865 	static int zfsrootdone = 0;
866 	zfsvfs_t *zfsvfs = NULL;
867 	znode_t *zp = NULL;
868 	vnode_t *vp = NULL;
869 	char *zfs_bootfs;
870 
871 	ASSERT(vfsp);
872 
873 	/*
874 	 * The filesystem that we mount as root is defined in the
875 	 * boot property "zfs-bootfs" with a format of
876 	 * "poolname/root-dataset-objnum".
877 	 */
878 	if (why == ROOT_INIT) {
879 		if (zfsrootdone++)
880 			return (EBUSY);
881 		/*
882 		 * the process of doing a spa_load will require the
883 		 * clock to be set before we could (for example) do
884 		 * something better by looking at the timestamp on
885 		 * an uberblock, so just set it to -1.
886 		 */
887 		clkset(-1);
888 
889 		if ((zfs_bootfs = spa_get_bootfs()) == NULL) {
890 			cmn_err(CE_NOTE, "\nspa_get_bootfs: can not get "
891 			    "bootfs name \n");
892 			return (EINVAL);
893 		}
894 
895 		if (error = spa_import_rootpool(rootfs.bo_name)) {
896 			spa_free_bootfs(zfs_bootfs);
897 			cmn_err(CE_NOTE, "\nspa_import_rootpool: error %d\n",
898 			    error);
899 			return (error);
900 		}
901 
902 		if (error = zfs_parse_bootfs(zfs_bootfs, rootfs.bo_name)) {
903 			spa_free_bootfs(zfs_bootfs);
904 			cmn_err(CE_NOTE, "\nzfs_parse_bootfs: error %d\n",
905 			    error);
906 			return (error);
907 		}
908 
909 		spa_free_bootfs(zfs_bootfs);
910 
911 		if (error = vfs_lock(vfsp))
912 			return (error);
913 
914 		if (error = zfs_domount(vfsp, rootfs.bo_name, CRED())) {
915 			cmn_err(CE_NOTE, "\nzfs_domount: error %d\n", error);
916 			goto out;
917 		}
918 
919 		zfsvfs = (zfsvfs_t *)vfsp->vfs_data;
920 		ASSERT(zfsvfs);
921 		if (error = zfs_zget(zfsvfs, zfsvfs->z_root, &zp)) {
922 			cmn_err(CE_NOTE, "\nzfs_zget: error %d\n", error);
923 			goto out;
924 		}
925 
926 		vp = ZTOV(zp);
927 		mutex_enter(&vp->v_lock);
928 		vp->v_flag |= VROOT;
929 		mutex_exit(&vp->v_lock);
930 		rootvp = vp;
931 
932 		/*
933 		 * Leave rootvp held.  The root file system is never unmounted.
934 		 */
935 
936 		vfs_add((struct vnode *)0, vfsp,
937 		    (vfsp->vfs_flag & VFS_RDONLY) ? MS_RDONLY : 0);
938 out:
939 		vfs_unlock(vfsp);
940 		return (error);
941 	} else if (why == ROOT_REMOUNT) {
942 		readonly_changed_cb(vfsp->vfs_data, B_FALSE);
943 		vfsp->vfs_flag |= VFS_REMOUNT;
944 
945 		/* refresh mount options */
946 		zfs_unregister_callbacks(vfsp->vfs_data);
947 		return (zfs_register_callbacks(vfsp));
948 
949 	} else if (why == ROOT_UNMOUNT) {
950 		zfs_unregister_callbacks((zfsvfs_t *)vfsp->vfs_data);
951 		(void) zfs_sync(vfsp, 0, 0);
952 		return (0);
953 	}
954 
955 	/*
956 	 * if "why" is equal to anything else other than ROOT_INIT,
957 	 * ROOT_REMOUNT, or ROOT_UNMOUNT, we do not support it.
958 	 */
959 	return (ENOTSUP);
960 }
961 
962 /*ARGSUSED*/
963 static int
964 zfs_mount(vfs_t *vfsp, vnode_t *mvp, struct mounta *uap, cred_t *cr)
965 {
966 	char		*osname;
967 	pathname_t	spn;
968 	int		error = 0;
969 	uio_seg_t	fromspace = (uap->flags & MS_SYSSPACE) ?
970 	    UIO_SYSSPACE : UIO_USERSPACE;
971 	int		canwrite;
972 
973 	if (mvp->v_type != VDIR)
974 		return (ENOTDIR);
975 
976 	mutex_enter(&mvp->v_lock);
977 	if ((uap->flags & MS_REMOUNT) == 0 &&
978 	    (uap->flags & MS_OVERLAY) == 0 &&
979 	    (mvp->v_count != 1 || (mvp->v_flag & VROOT))) {
980 		mutex_exit(&mvp->v_lock);
981 		return (EBUSY);
982 	}
983 	mutex_exit(&mvp->v_lock);
984 
985 	/*
986 	 * ZFS does not support passing unparsed data in via MS_DATA.
987 	 * Users should use the MS_OPTIONSTR interface; this means
988 	 * that all option parsing is already done and the options struct
989 	 * can be interrogated.
990 	 */
991 	if ((uap->flags & MS_DATA) && uap->datalen > 0)
992 		return (EINVAL);
993 
994 	/*
995 	 * Get the objset name (the "special" mount argument).
996 	 */
997 	if (error = pn_get(uap->spec, fromspace, &spn))
998 		return (error);
999 
1000 	osname = spn.pn_path;
1001 
1002 	/*
1003 	 * Check for mount privilege?
1004 	 *
1005 	 * If we don't have privilege then see if
1006 	 * we have local permission to allow it
1007 	 */
1008 	error = secpolicy_fs_mount(cr, mvp, vfsp);
1009 	if (error) {
1010 		error = dsl_deleg_access(osname, ZFS_DELEG_PERM_MOUNT, cr);
1011 		if (error == 0) {
1012 			vattr_t		vattr;
1013 
1014 			/*
1015 			 * Make sure user is the owner of the mount point
1016 			 * or has sufficient privileges.
1017 			 */
1018 
1019 			vattr.va_mask = AT_UID;
1020 
1021 			if (error = VOP_GETATTR(mvp, &vattr, 0, cr, NULL)) {
1022 				goto out;
1023 			}
1024 
1025 			if (secpolicy_vnode_owner(cr, vattr.va_uid) != 0 &&
1026 			    VOP_ACCESS(mvp, VWRITE, 0, cr, NULL) != 0) {
1027 				error = EPERM;
1028 				goto out;
1029 			}
1030 
1031 			secpolicy_fs_mount_clearopts(cr, vfsp);
1032 		} else {
1033 			goto out;
1034 		}
1035 	}
1036 
1037 	/*
1038 	 * Refuse to mount a filesystem if we are in a local zone and the
1039 	 * dataset is not visible.
1040 	 */
1041 	if (!INGLOBALZONE(curproc) &&
1042 	    (!zone_dataset_visible(osname, &canwrite) || !canwrite)) {
1043 		error = EPERM;
1044 		goto out;
1045 	}
1046 
1047 	/*
1048 	 * When doing a remount, we simply refresh our temporary properties
1049 	 * according to those options set in the current VFS options.
1050 	 */
1051 	if (uap->flags & MS_REMOUNT) {
1052 		/* refresh mount options */
1053 		zfs_unregister_callbacks(vfsp->vfs_data);
1054 		error = zfs_register_callbacks(vfsp);
1055 		goto out;
1056 	}
1057 
1058 	error = zfs_domount(vfsp, osname, cr);
1059 
1060 out:
1061 	pn_free(&spn);
1062 	return (error);
1063 }
1064 
1065 static int
1066 zfs_statvfs(vfs_t *vfsp, struct statvfs64 *statp)
1067 {
1068 	zfsvfs_t *zfsvfs = vfsp->vfs_data;
1069 	dev32_t d32;
1070 	uint64_t refdbytes, availbytes, usedobjs, availobjs;
1071 
1072 	ZFS_ENTER(zfsvfs);
1073 
1074 	dmu_objset_space(zfsvfs->z_os,
1075 	    &refdbytes, &availbytes, &usedobjs, &availobjs);
1076 
1077 	/*
1078 	 * The underlying storage pool actually uses multiple block sizes.
1079 	 * We report the fragsize as the smallest block size we support,
1080 	 * and we report our blocksize as the filesystem's maximum blocksize.
1081 	 */
1082 	statp->f_frsize = 1UL << SPA_MINBLOCKSHIFT;
1083 	statp->f_bsize = zfsvfs->z_max_blksz;
1084 
1085 	/*
1086 	 * The following report "total" blocks of various kinds in the
1087 	 * file system, but reported in terms of f_frsize - the
1088 	 * "fragment" size.
1089 	 */
1090 
1091 	statp->f_blocks = (refdbytes + availbytes) >> SPA_MINBLOCKSHIFT;
1092 	statp->f_bfree = availbytes >> SPA_MINBLOCKSHIFT;
1093 	statp->f_bavail = statp->f_bfree; /* no root reservation */
1094 
1095 	/*
1096 	 * statvfs() should really be called statufs(), because it assumes
1097 	 * static metadata.  ZFS doesn't preallocate files, so the best
1098 	 * we can do is report the max that could possibly fit in f_files,
1099 	 * and that minus the number actually used in f_ffree.
1100 	 * For f_ffree, report the smaller of the number of object available
1101 	 * and the number of blocks (each object will take at least a block).
1102 	 */
1103 	statp->f_ffree = MIN(availobjs, statp->f_bfree);
1104 	statp->f_favail = statp->f_ffree;	/* no "root reservation" */
1105 	statp->f_files = statp->f_ffree + usedobjs;
1106 
1107 	(void) cmpldev(&d32, vfsp->vfs_dev);
1108 	statp->f_fsid = d32;
1109 
1110 	/*
1111 	 * We're a zfs filesystem.
1112 	 */
1113 	(void) strcpy(statp->f_basetype, vfssw[vfsp->vfs_fstype].vsw_name);
1114 
1115 	statp->f_flag = vf_to_stf(vfsp->vfs_flag);
1116 
1117 	statp->f_namemax = ZFS_MAXNAMELEN;
1118 
1119 	/*
1120 	 * We have all of 32 characters to stuff a string here.
1121 	 * Is there anything useful we could/should provide?
1122 	 */
1123 	bzero(statp->f_fstr, sizeof (statp->f_fstr));
1124 
1125 	ZFS_EXIT(zfsvfs);
1126 	return (0);
1127 }
1128 
1129 static int
1130 zfs_root(vfs_t *vfsp, vnode_t **vpp)
1131 {
1132 	zfsvfs_t *zfsvfs = vfsp->vfs_data;
1133 	znode_t *rootzp;
1134 	int error;
1135 
1136 	ZFS_ENTER(zfsvfs);
1137 
1138 	error = zfs_zget(zfsvfs, zfsvfs->z_root, &rootzp);
1139 	if (error == 0)
1140 		*vpp = ZTOV(rootzp);
1141 
1142 	ZFS_EXIT(zfsvfs);
1143 	return (error);
1144 }
1145 
1146 /*
1147  * Teardown the zfsvfs::z_os.
1148  *
1149  * Note, if 'unmounting' if FALSE, we return with the 'z_teardown_lock'
1150  * and 'z_teardown_inactive_lock' held.
1151  */
1152 static int
1153 zfsvfs_teardown(zfsvfs_t *zfsvfs, boolean_t unmounting)
1154 {
1155 	znode_t	*zp;
1156 
1157 	rrw_enter(&zfsvfs->z_teardown_lock, RW_WRITER, FTAG);
1158 
1159 	if (!unmounting) {
1160 		/*
1161 		 * We purge the parent filesystem's vfsp as the parent
1162 		 * filesystem and all of its snapshots have their vnode's
1163 		 * v_vfsp set to the parent's filesystem's vfsp.  Note,
1164 		 * 'z_parent' is self referential for non-snapshots.
1165 		 */
1166 		(void) dnlc_purge_vfsp(zfsvfs->z_parent->z_vfs, 0);
1167 	}
1168 
1169 	/*
1170 	 * Close the zil. NB: Can't close the zil while zfs_inactive
1171 	 * threads are blocked as zil_close can call zfs_inactive.
1172 	 */
1173 	if (zfsvfs->z_log) {
1174 		zil_close(zfsvfs->z_log);
1175 		zfsvfs->z_log = NULL;
1176 	}
1177 
1178 	rw_enter(&zfsvfs->z_teardown_inactive_lock, RW_WRITER);
1179 
1180 	/*
1181 	 * If we are not unmounting (ie: online recv) and someone already
1182 	 * unmounted this file system while we were doing the switcheroo,
1183 	 * or a reopen of z_os failed then just bail out now.
1184 	 */
1185 	if (!unmounting && (zfsvfs->z_unmounted || zfsvfs->z_os == NULL)) {
1186 		rw_exit(&zfsvfs->z_teardown_inactive_lock);
1187 		rrw_exit(&zfsvfs->z_teardown_lock, FTAG);
1188 		return (EIO);
1189 	}
1190 
1191 	/*
1192 	 * At this point there are no vops active, and any new vops will
1193 	 * fail with EIO since we have z_teardown_lock for writer (only
1194 	 * relavent for forced unmount).
1195 	 *
1196 	 * Release all holds on dbufs.
1197 	 */
1198 	mutex_enter(&zfsvfs->z_znodes_lock);
1199 	for (zp = list_head(&zfsvfs->z_all_znodes); zp != NULL;
1200 	    zp = list_next(&zfsvfs->z_all_znodes, zp))
1201 		if (zp->z_dbuf) {
1202 			ASSERT(ZTOV(zp)->v_count > 0);
1203 			zfs_znode_dmu_fini(zp);
1204 		}
1205 	mutex_exit(&zfsvfs->z_znodes_lock);
1206 
1207 	/*
1208 	 * If we are unmounting, set the unmounted flag and let new vops
1209 	 * unblock.  zfs_inactive will have the unmounted behavior, and all
1210 	 * other vops will fail with EIO.
1211 	 */
1212 	if (unmounting) {
1213 		zfsvfs->z_unmounted = B_TRUE;
1214 		rrw_exit(&zfsvfs->z_teardown_lock, FTAG);
1215 		rw_exit(&zfsvfs->z_teardown_inactive_lock);
1216 	}
1217 
1218 	/*
1219 	 * z_os will be NULL if there was an error in attempting to reopen
1220 	 * zfsvfs, so just return as the properties had already been
1221 	 * unregistered and cached data had been evicted before.
1222 	 */
1223 	if (zfsvfs->z_os == NULL)
1224 		return (0);
1225 
1226 	/*
1227 	 * Unregister properties.
1228 	 */
1229 	zfs_unregister_callbacks(zfsvfs);
1230 
1231 	/*
1232 	 * Evict cached data
1233 	 */
1234 	if (dmu_objset_evict_dbufs(zfsvfs->z_os)) {
1235 		txg_wait_synced(dmu_objset_pool(zfsvfs->z_os), 0);
1236 		(void) dmu_objset_evict_dbufs(zfsvfs->z_os);
1237 	}
1238 
1239 	return (0);
1240 }
1241 
1242 /*ARGSUSED*/
1243 static int
1244 zfs_umount(vfs_t *vfsp, int fflag, cred_t *cr)
1245 {
1246 	zfsvfs_t *zfsvfs = vfsp->vfs_data;
1247 	objset_t *os;
1248 	int ret;
1249 
1250 	ret = secpolicy_fs_unmount(cr, vfsp);
1251 	if (ret) {
1252 		ret = dsl_deleg_access((char *)refstr_value(vfsp->vfs_resource),
1253 		    ZFS_DELEG_PERM_MOUNT, cr);
1254 		if (ret)
1255 			return (ret);
1256 	}
1257 
1258 	/*
1259 	 * We purge the parent filesystem's vfsp as the parent filesystem
1260 	 * and all of its snapshots have their vnode's v_vfsp set to the
1261 	 * parent's filesystem's vfsp.  Note, 'z_parent' is self
1262 	 * referential for non-snapshots.
1263 	 */
1264 	(void) dnlc_purge_vfsp(zfsvfs->z_parent->z_vfs, 0);
1265 
1266 	/*
1267 	 * Unmount any snapshots mounted under .zfs before unmounting the
1268 	 * dataset itself.
1269 	 */
1270 	if (zfsvfs->z_ctldir != NULL &&
1271 	    (ret = zfsctl_umount_snapshots(vfsp, fflag, cr)) != 0) {
1272 		return (ret);
1273 	}
1274 
1275 	if (!(fflag & MS_FORCE)) {
1276 		/*
1277 		 * Check the number of active vnodes in the file system.
1278 		 * Our count is maintained in the vfs structure, but the
1279 		 * number is off by 1 to indicate a hold on the vfs
1280 		 * structure itself.
1281 		 *
1282 		 * The '.zfs' directory maintains a reference of its
1283 		 * own, and any active references underneath are
1284 		 * reflected in the vnode count.
1285 		 */
1286 		if (zfsvfs->z_ctldir == NULL) {
1287 			if (vfsp->vfs_count > 1)
1288 				return (EBUSY);
1289 		} else {
1290 			if (vfsp->vfs_count > 2 ||
1291 			    zfsvfs->z_ctldir->v_count > 1)
1292 				return (EBUSY);
1293 		}
1294 	}
1295 
1296 	vfsp->vfs_flag |= VFS_UNMOUNTED;
1297 
1298 	VERIFY(zfsvfs_teardown(zfsvfs, B_TRUE) == 0);
1299 	os = zfsvfs->z_os;
1300 
1301 	/*
1302 	 * z_os will be NULL if there was an error in
1303 	 * attempting to reopen zfsvfs.
1304 	 */
1305 	if (os != NULL) {
1306 		/*
1307 		 * Unset the objset user_ptr.
1308 		 */
1309 		mutex_enter(&os->os->os_user_ptr_lock);
1310 		dmu_objset_set_user(os, NULL);
1311 		mutex_exit(&os->os->os_user_ptr_lock);
1312 
1313 		/*
1314 		 * Finally close the objset
1315 		 */
1316 		dmu_objset_close(os);
1317 	}
1318 
1319 	/*
1320 	 * We can now safely destroy the '.zfs' directory node.
1321 	 */
1322 	if (zfsvfs->z_ctldir != NULL)
1323 		zfsctl_destroy(zfsvfs);
1324 
1325 	return (0);
1326 }
1327 
1328 static int
1329 zfs_vget(vfs_t *vfsp, vnode_t **vpp, fid_t *fidp)
1330 {
1331 	zfsvfs_t	*zfsvfs = vfsp->vfs_data;
1332 	znode_t		*zp;
1333 	uint64_t	object = 0;
1334 	uint64_t	fid_gen = 0;
1335 	uint64_t	gen_mask;
1336 	uint64_t	zp_gen;
1337 	int 		i, err;
1338 
1339 	*vpp = NULL;
1340 
1341 	ZFS_ENTER(zfsvfs);
1342 
1343 	if (fidp->fid_len == LONG_FID_LEN) {
1344 		zfid_long_t	*zlfid = (zfid_long_t *)fidp;
1345 		uint64_t	objsetid = 0;
1346 		uint64_t	setgen = 0;
1347 
1348 		for (i = 0; i < sizeof (zlfid->zf_setid); i++)
1349 			objsetid |= ((uint64_t)zlfid->zf_setid[i]) << (8 * i);
1350 
1351 		for (i = 0; i < sizeof (zlfid->zf_setgen); i++)
1352 			setgen |= ((uint64_t)zlfid->zf_setgen[i]) << (8 * i);
1353 
1354 		ZFS_EXIT(zfsvfs);
1355 
1356 		err = zfsctl_lookup_objset(vfsp, objsetid, &zfsvfs);
1357 		if (err)
1358 			return (EINVAL);
1359 		ZFS_ENTER(zfsvfs);
1360 	}
1361 
1362 	if (fidp->fid_len == SHORT_FID_LEN || fidp->fid_len == LONG_FID_LEN) {
1363 		zfid_short_t	*zfid = (zfid_short_t *)fidp;
1364 
1365 		for (i = 0; i < sizeof (zfid->zf_object); i++)
1366 			object |= ((uint64_t)zfid->zf_object[i]) << (8 * i);
1367 
1368 		for (i = 0; i < sizeof (zfid->zf_gen); i++)
1369 			fid_gen |= ((uint64_t)zfid->zf_gen[i]) << (8 * i);
1370 	} else {
1371 		ZFS_EXIT(zfsvfs);
1372 		return (EINVAL);
1373 	}
1374 
1375 	/* A zero fid_gen means we are in the .zfs control directories */
1376 	if (fid_gen == 0 &&
1377 	    (object == ZFSCTL_INO_ROOT || object == ZFSCTL_INO_SNAPDIR)) {
1378 		*vpp = zfsvfs->z_ctldir;
1379 		ASSERT(*vpp != NULL);
1380 		if (object == ZFSCTL_INO_SNAPDIR) {
1381 			VERIFY(zfsctl_root_lookup(*vpp, "snapshot", vpp, NULL,
1382 			    0, NULL, NULL, NULL, NULL, NULL) == 0);
1383 		} else {
1384 			VN_HOLD(*vpp);
1385 		}
1386 		ZFS_EXIT(zfsvfs);
1387 		return (0);
1388 	}
1389 
1390 	gen_mask = -1ULL >> (64 - 8 * i);
1391 
1392 	dprintf("getting %llu [%u mask %llx]\n", object, fid_gen, gen_mask);
1393 	if (err = zfs_zget(zfsvfs, object, &zp)) {
1394 		ZFS_EXIT(zfsvfs);
1395 		return (err);
1396 	}
1397 	zp_gen = zp->z_phys->zp_gen & gen_mask;
1398 	if (zp_gen == 0)
1399 		zp_gen = 1;
1400 	if (zp->z_unlinked || zp_gen != fid_gen) {
1401 		dprintf("znode gen (%u) != fid gen (%u)\n", zp_gen, fid_gen);
1402 		VN_RELE(ZTOV(zp));
1403 		ZFS_EXIT(zfsvfs);
1404 		return (EINVAL);
1405 	}
1406 
1407 	*vpp = ZTOV(zp);
1408 	ZFS_EXIT(zfsvfs);
1409 	return (0);
1410 }
1411 
1412 /*
1413  * Block out VOPs and close zfsvfs_t::z_os
1414  *
1415  * Note, if successful, then we return with the 'z_teardown_lock' and
1416  * 'z_teardown_inactive_lock' write held.
1417  */
1418 int
1419 zfs_suspend_fs(zfsvfs_t *zfsvfs, char *name, int *mode)
1420 {
1421 	int error;
1422 
1423 	if ((error = zfsvfs_teardown(zfsvfs, B_FALSE)) != 0)
1424 		return (error);
1425 
1426 	*mode = zfsvfs->z_os->os_mode;
1427 	dmu_objset_name(zfsvfs->z_os, name);
1428 	dmu_objset_close(zfsvfs->z_os);
1429 
1430 	return (0);
1431 }
1432 
1433 /*
1434  * Reopen zfsvfs_t::z_os and release VOPs.
1435  */
1436 int
1437 zfs_resume_fs(zfsvfs_t *zfsvfs, const char *osname, int mode)
1438 {
1439 	int err;
1440 
1441 	ASSERT(RRW_WRITE_HELD(&zfsvfs->z_teardown_lock));
1442 	ASSERT(RW_WRITE_HELD(&zfsvfs->z_teardown_inactive_lock));
1443 
1444 	err = dmu_objset_open(osname, DMU_OST_ZFS, mode, &zfsvfs->z_os);
1445 	if (err) {
1446 		zfsvfs->z_os = NULL;
1447 	} else {
1448 		znode_t *zp;
1449 
1450 		VERIFY(zfsvfs_setup(zfsvfs, B_FALSE) == 0);
1451 
1452 		/*
1453 		 * Attempt to re-establish all the active znodes with
1454 		 * their dbufs.  If a zfs_rezget() fails, then we'll let
1455 		 * any potential callers discover that via ZFS_ENTER_VERIFY_VP
1456 		 * when they try to use their znode.
1457 		 */
1458 		mutex_enter(&zfsvfs->z_znodes_lock);
1459 		for (zp = list_head(&zfsvfs->z_all_znodes); zp;
1460 		    zp = list_next(&zfsvfs->z_all_znodes, zp)) {
1461 			(void) zfs_rezget(zp);
1462 		}
1463 		mutex_exit(&zfsvfs->z_znodes_lock);
1464 
1465 	}
1466 
1467 	/* release the VOPs */
1468 	rw_exit(&zfsvfs->z_teardown_inactive_lock);
1469 	rrw_exit(&zfsvfs->z_teardown_lock, FTAG);
1470 
1471 	if (err) {
1472 		/*
1473 		 * Since we couldn't reopen zfsvfs::z_os, force
1474 		 * unmount this file system.
1475 		 */
1476 		if (vn_vfswlock(zfsvfs->z_vfs->vfs_vnodecovered) == 0)
1477 			(void) dounmount(zfsvfs->z_vfs, MS_FORCE, CRED());
1478 	}
1479 	return (err);
1480 }
1481 
1482 static void
1483 zfs_freevfs(vfs_t *vfsp)
1484 {
1485 	zfsvfs_t *zfsvfs = vfsp->vfs_data;
1486 	int i;
1487 
1488 	for (i = 0; i != ZFS_OBJ_MTX_SZ; i++)
1489 		mutex_destroy(&zfsvfs->z_hold_mtx[i]);
1490 
1491 	zfs_fuid_destroy(zfsvfs);
1492 	zfs_freezfsvfs(zfsvfs);
1493 
1494 	atomic_add_32(&zfs_active_fs_count, -1);
1495 }
1496 
1497 /*
1498  * VFS_INIT() initialization.  Note that there is no VFS_FINI(),
1499  * so we can't safely do any non-idempotent initialization here.
1500  * Leave that to zfs_init() and zfs_fini(), which are called
1501  * from the module's _init() and _fini() entry points.
1502  */
1503 /*ARGSUSED*/
1504 static int
1505 zfs_vfsinit(int fstype, char *name)
1506 {
1507 	int error;
1508 
1509 	zfsfstype = fstype;
1510 
1511 	/*
1512 	 * Setup vfsops and vnodeops tables.
1513 	 */
1514 	error = vfs_setfsops(fstype, zfs_vfsops_template, &zfs_vfsops);
1515 	if (error != 0) {
1516 		cmn_err(CE_WARN, "zfs: bad vfs ops template");
1517 	}
1518 
1519 	error = zfs_create_op_tables();
1520 	if (error) {
1521 		zfs_remove_op_tables();
1522 		cmn_err(CE_WARN, "zfs: bad vnode ops template");
1523 		(void) vfs_freevfsops_by_type(zfsfstype);
1524 		return (error);
1525 	}
1526 
1527 	mutex_init(&zfs_dev_mtx, NULL, MUTEX_DEFAULT, NULL);
1528 
1529 	/*
1530 	 * Unique major number for all zfs mounts.
1531 	 * If we run out of 32-bit minors, we'll getudev() another major.
1532 	 */
1533 	zfs_major = ddi_name_to_major(ZFS_DRIVER);
1534 	zfs_minor = ZFS_MIN_MINOR;
1535 
1536 	return (0);
1537 }
1538 
1539 void
1540 zfs_init(void)
1541 {
1542 	/*
1543 	 * Initialize .zfs directory structures
1544 	 */
1545 	zfsctl_init();
1546 
1547 	/*
1548 	 * Initialize znode cache, vnode ops, etc...
1549 	 */
1550 	zfs_znode_init();
1551 }
1552 
1553 void
1554 zfs_fini(void)
1555 {
1556 	zfsctl_fini();
1557 	zfs_znode_fini();
1558 }
1559 
1560 int
1561 zfs_busy(void)
1562 {
1563 	return (zfs_active_fs_count != 0);
1564 }
1565 
1566 int
1567 zfs_set_version(const char *name, uint64_t newvers)
1568 {
1569 	int error;
1570 	objset_t *os;
1571 	dmu_tx_t *tx;
1572 	uint64_t curvers;
1573 
1574 	/*
1575 	 * XXX for now, require that the filesystem be unmounted.  Would
1576 	 * be nice to find the zfsvfs_t and just update that if
1577 	 * possible.
1578 	 */
1579 
1580 	if (newvers < ZPL_VERSION_INITIAL || newvers > ZPL_VERSION)
1581 		return (EINVAL);
1582 
1583 	error = dmu_objset_open(name, DMU_OST_ZFS, DS_MODE_PRIMARY, &os);
1584 	if (error)
1585 		return (error);
1586 
1587 	error = zap_lookup(os, MASTER_NODE_OBJ, ZPL_VERSION_STR,
1588 	    8, 1, &curvers);
1589 	if (error)
1590 		goto out;
1591 	if (newvers < curvers) {
1592 		error = EINVAL;
1593 		goto out;
1594 	}
1595 
1596 	tx = dmu_tx_create(os);
1597 	dmu_tx_hold_zap(tx, MASTER_NODE_OBJ, 0, ZPL_VERSION_STR);
1598 	error = dmu_tx_assign(tx, TXG_WAIT);
1599 	if (error) {
1600 		dmu_tx_abort(tx);
1601 		goto out;
1602 	}
1603 	error = zap_update(os, MASTER_NODE_OBJ, ZPL_VERSION_STR, 8, 1,
1604 	    &newvers, tx);
1605 
1606 	spa_history_internal_log(LOG_DS_UPGRADE,
1607 	    dmu_objset_spa(os), tx, CRED(),
1608 	    "oldver=%llu newver=%llu dataset = %llu", curvers, newvers,
1609 	    dmu_objset_id(os));
1610 	dmu_tx_commit(tx);
1611 
1612 out:
1613 	dmu_objset_close(os);
1614 	return (error);
1615 }
1616 
1617 /*
1618  * Read a property stored within the master node.
1619  */
1620 int
1621 zfs_get_zplprop(objset_t *os, zfs_prop_t prop, uint64_t *value)
1622 {
1623 	const char *pname;
1624 	int error;
1625 
1626 	/*
1627 	 * Look up the file system's value for the property.  For the
1628 	 * version property, we look up a slightly different string.
1629 	 */
1630 	if (prop == ZFS_PROP_VERSION)
1631 		pname = ZPL_VERSION_STR;
1632 	else
1633 		pname = zfs_prop_to_name(prop);
1634 
1635 	error = zap_lookup(os, MASTER_NODE_OBJ, pname, 8, 1, value);
1636 
1637 	if (error == ENOENT) {
1638 		/* No value set, use the default value */
1639 		switch (prop) {
1640 		case ZFS_PROP_VERSION:
1641 			*value = ZPL_VERSION;
1642 			break;
1643 		case ZFS_PROP_NORMALIZE:
1644 		case ZFS_PROP_UTF8ONLY:
1645 			*value = 0;
1646 			break;
1647 		case ZFS_PROP_CASE:
1648 			*value = ZFS_CASE_SENSITIVE;
1649 			break;
1650 		default:
1651 			return (error);
1652 		}
1653 		error = 0;
1654 	}
1655 	return (error);
1656 }
1657 
1658 static vfsdef_t vfw = {
1659 	VFSDEF_VERSION,
1660 	MNTTYPE_ZFS,
1661 	zfs_vfsinit,
1662 	VSW_HASPROTO|VSW_CANRWRO|VSW_CANREMOUNT|VSW_VOLATILEDEV|VSW_STATS|
1663 	    VSW_XID,
1664 	&zfs_mntopts
1665 };
1666 
1667 struct modlfs zfs_modlfs = {
1668 	&mod_fsops, "ZFS filesystem version " SPA_VERSION_STRING, &vfw
1669 };
1670