]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - sys/cddl/contrib/opensolaris/uts/common/fs/zfs/zfs_vfsops.c
Merge ACPICA 20130214.
[FreeBSD/FreeBSD.git] / sys / cddl / contrib / opensolaris / uts / common / fs / zfs / zfs_vfsops.c
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 (c) 2005, 2010, Oracle and/or its affiliates. All rights reserved.
23  * Copyright (c) 2011 Pawel Jakub Dawidek <pawel@dawidek.net>.
24  * All rights reserved.
25  */
26
27 /* Portions Copyright 2010 Robert Milkowski */
28
29 #include <sys/types.h>
30 #include <sys/param.h>
31 #include <sys/systm.h>
32 #include <sys/kernel.h>
33 #include <sys/sysmacros.h>
34 #include <sys/kmem.h>
35 #include <sys/acl.h>
36 #include <sys/vnode.h>
37 #include <sys/vfs.h>
38 #include <sys/mntent.h>
39 #include <sys/mount.h>
40 #include <sys/cmn_err.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/sa.h>
52 #include <sys/sa_impl.h>
53 #include <sys/varargs.h>
54 #include <sys/policy.h>
55 #include <sys/atomic.h>
56 #include <sys/zfs_ioctl.h>
57 #include <sys/zfs_ctldir.h>
58 #include <sys/zfs_fuid.h>
59 #include <sys/sunddi.h>
60 #include <sys/dnlc.h>
61 #include <sys/dmu_objset.h>
62 #include <sys/spa_boot.h>
63 #include <sys/jail.h>
64 #include "zfs_comutil.h"
65
66 struct mtx zfs_debug_mtx;
67 MTX_SYSINIT(zfs_debug_mtx, &zfs_debug_mtx, "zfs_debug", MTX_DEF);
68
69 SYSCTL_NODE(_vfs, OID_AUTO, zfs, CTLFLAG_RW, 0, "ZFS file system");
70
71 int zfs_super_owner;
72 SYSCTL_INT(_vfs_zfs, OID_AUTO, super_owner, CTLFLAG_RW, &zfs_super_owner, 0,
73     "File system owner can perform privileged operation on his file systems");
74
75 int zfs_debug_level;
76 TUNABLE_INT("vfs.zfs.debug", &zfs_debug_level);
77 SYSCTL_INT(_vfs_zfs, OID_AUTO, debug, CTLFLAG_RW, &zfs_debug_level, 0,
78     "Debug level");
79
80 SYSCTL_NODE(_vfs_zfs, OID_AUTO, version, CTLFLAG_RD, 0, "ZFS versions");
81 static int zfs_version_acl = ZFS_ACL_VERSION;
82 SYSCTL_INT(_vfs_zfs_version, OID_AUTO, acl, CTLFLAG_RD, &zfs_version_acl, 0,
83     "ZFS_ACL_VERSION");
84 static int zfs_version_spa = SPA_VERSION;
85 SYSCTL_INT(_vfs_zfs_version, OID_AUTO, spa, CTLFLAG_RD, &zfs_version_spa, 0,
86     "SPA_VERSION");
87 static int zfs_version_zpl = ZPL_VERSION;
88 SYSCTL_INT(_vfs_zfs_version, OID_AUTO, zpl, CTLFLAG_RD, &zfs_version_zpl, 0,
89     "ZPL_VERSION");
90
91 static int zfs_mount(vfs_t *vfsp);
92 static int zfs_umount(vfs_t *vfsp, int fflag);
93 static int zfs_root(vfs_t *vfsp, int flags, vnode_t **vpp);
94 static int zfs_statfs(vfs_t *vfsp, struct statfs *statp);
95 static int zfs_vget(vfs_t *vfsp, ino_t ino, int flags, vnode_t **vpp);
96 static int zfs_sync(vfs_t *vfsp, int waitfor);
97 static int zfs_checkexp(vfs_t *vfsp, struct sockaddr *nam, int *extflagsp,
98     struct ucred **credanonp, int *numsecflavors, int **secflavors);
99 static int zfs_fhtovp(vfs_t *vfsp, fid_t *fidp, int flags, vnode_t **vpp);
100 static void zfs_objset_close(zfsvfs_t *zfsvfs);
101 static void zfs_freevfs(vfs_t *vfsp);
102
103 static struct vfsops zfs_vfsops = {
104         .vfs_mount =            zfs_mount,
105         .vfs_unmount =          zfs_umount,
106         .vfs_root =             zfs_root,
107         .vfs_statfs =           zfs_statfs,
108         .vfs_vget =             zfs_vget,
109         .vfs_sync =             zfs_sync,
110         .vfs_checkexp =         zfs_checkexp,
111         .vfs_fhtovp =           zfs_fhtovp,
112 };
113
114 VFS_SET(zfs_vfsops, zfs, VFCF_JAIL | VFCF_DELEGADMIN);
115
116 /*
117  * We need to keep a count of active fs's.
118  * This is necessary to prevent our module
119  * from being unloaded after a umount -f
120  */
121 static uint32_t zfs_active_fs_count = 0;
122
123 /*ARGSUSED*/
124 static int
125 zfs_sync(vfs_t *vfsp, int waitfor)
126 {
127
128         /*
129          * Data integrity is job one.  We don't want a compromised kernel
130          * writing to the storage pool, so we never sync during panic.
131          */
132         if (panicstr)
133                 return (0);
134
135         if (vfsp != NULL) {
136                 /*
137                  * Sync a specific filesystem.
138                  */
139                 zfsvfs_t *zfsvfs = vfsp->vfs_data;
140                 dsl_pool_t *dp;
141                 int error;
142
143                 error = vfs_stdsync(vfsp, waitfor);
144                 if (error != 0)
145                         return (error);
146
147                 ZFS_ENTER(zfsvfs);
148                 dp = dmu_objset_pool(zfsvfs->z_os);
149
150                 /*
151                  * If the system is shutting down, then skip any
152                  * filesystems which may exist on a suspended pool.
153                  */
154                 if (sys_shutdown && spa_suspended(dp->dp_spa)) {
155                         ZFS_EXIT(zfsvfs);
156                         return (0);
157                 }
158
159                 if (zfsvfs->z_log != NULL)
160                         zil_commit(zfsvfs->z_log, 0);
161
162                 ZFS_EXIT(zfsvfs);
163         } else {
164                 /*
165                  * Sync all ZFS filesystems.  This is what happens when you
166                  * run sync(1M).  Unlike other filesystems, ZFS honors the
167                  * request by waiting for all pools to commit all dirty data.
168                  */
169                 spa_sync_allpools();
170         }
171
172         return (0);
173 }
174
175 #ifndef __FreeBSD__
176 static int
177 zfs_create_unique_device(dev_t *dev)
178 {
179         major_t new_major;
180
181         do {
182                 ASSERT3U(zfs_minor, <=, MAXMIN32);
183                 minor_t start = zfs_minor;
184                 do {
185                         mutex_enter(&zfs_dev_mtx);
186                         if (zfs_minor >= MAXMIN32) {
187                                 /*
188                                  * If we're still using the real major
189                                  * keep out of /dev/zfs and /dev/zvol minor
190                                  * number space.  If we're using a getudev()'ed
191                                  * major number, we can use all of its minors.
192                                  */
193                                 if (zfs_major == ddi_name_to_major(ZFS_DRIVER))
194                                         zfs_minor = ZFS_MIN_MINOR;
195                                 else
196                                         zfs_minor = 0;
197                         } else {
198                                 zfs_minor++;
199                         }
200                         *dev = makedevice(zfs_major, zfs_minor);
201                         mutex_exit(&zfs_dev_mtx);
202                 } while (vfs_devismounted(*dev) && zfs_minor != start);
203                 if (zfs_minor == start) {
204                         /*
205                          * We are using all ~262,000 minor numbers for the
206                          * current major number.  Create a new major number.
207                          */
208                         if ((new_major = getudev()) == (major_t)-1) {
209                                 cmn_err(CE_WARN,
210                                     "zfs_mount: Can't get unique major "
211                                     "device number.");
212                                 return (-1);
213                         }
214                         mutex_enter(&zfs_dev_mtx);
215                         zfs_major = new_major;
216                         zfs_minor = 0;
217
218                         mutex_exit(&zfs_dev_mtx);
219                 } else {
220                         break;
221                 }
222                 /* CONSTANTCONDITION */
223         } while (1);
224
225         return (0);
226 }
227 #endif  /* !__FreeBSD__ */
228
229 static void
230 atime_changed_cb(void *arg, uint64_t newval)
231 {
232         zfsvfs_t *zfsvfs = arg;
233
234         if (newval == TRUE) {
235                 zfsvfs->z_atime = TRUE;
236                 zfsvfs->z_vfs->vfs_flag &= ~MNT_NOATIME;
237                 vfs_clearmntopt(zfsvfs->z_vfs, MNTOPT_NOATIME);
238                 vfs_setmntopt(zfsvfs->z_vfs, MNTOPT_ATIME, NULL, 0);
239         } else {
240                 zfsvfs->z_atime = FALSE;
241                 zfsvfs->z_vfs->vfs_flag |= MNT_NOATIME;
242                 vfs_clearmntopt(zfsvfs->z_vfs, MNTOPT_ATIME);
243                 vfs_setmntopt(zfsvfs->z_vfs, MNTOPT_NOATIME, NULL, 0);
244         }
245 }
246
247 static void
248 xattr_changed_cb(void *arg, uint64_t newval)
249 {
250         zfsvfs_t *zfsvfs = arg;
251
252         if (newval == TRUE) {
253                 /* XXX locking on vfs_flag? */
254 #ifdef TODO
255                 zfsvfs->z_vfs->vfs_flag |= VFS_XATTR;
256 #endif
257                 vfs_clearmntopt(zfsvfs->z_vfs, MNTOPT_NOXATTR);
258                 vfs_setmntopt(zfsvfs->z_vfs, MNTOPT_XATTR, NULL, 0);
259         } else {
260                 /* XXX locking on vfs_flag? */
261 #ifdef TODO
262                 zfsvfs->z_vfs->vfs_flag &= ~VFS_XATTR;
263 #endif
264                 vfs_clearmntopt(zfsvfs->z_vfs, MNTOPT_XATTR);
265                 vfs_setmntopt(zfsvfs->z_vfs, MNTOPT_NOXATTR, NULL, 0);
266         }
267 }
268
269 static void
270 blksz_changed_cb(void *arg, uint64_t newval)
271 {
272         zfsvfs_t *zfsvfs = arg;
273
274         if (newval < SPA_MINBLOCKSIZE ||
275             newval > SPA_MAXBLOCKSIZE || !ISP2(newval))
276                 newval = SPA_MAXBLOCKSIZE;
277
278         zfsvfs->z_max_blksz = newval;
279         zfsvfs->z_vfs->mnt_stat.f_iosize = newval;
280 }
281
282 static void
283 readonly_changed_cb(void *arg, uint64_t newval)
284 {
285         zfsvfs_t *zfsvfs = arg;
286
287         if (newval) {
288                 /* XXX locking on vfs_flag? */
289                 zfsvfs->z_vfs->vfs_flag |= VFS_RDONLY;
290                 vfs_clearmntopt(zfsvfs->z_vfs, MNTOPT_RW);
291                 vfs_setmntopt(zfsvfs->z_vfs, MNTOPT_RO, NULL, 0);
292         } else {
293                 /* XXX locking on vfs_flag? */
294                 zfsvfs->z_vfs->vfs_flag &= ~VFS_RDONLY;
295                 vfs_clearmntopt(zfsvfs->z_vfs, MNTOPT_RO);
296                 vfs_setmntopt(zfsvfs->z_vfs, MNTOPT_RW, NULL, 0);
297         }
298 }
299
300 static void
301 setuid_changed_cb(void *arg, uint64_t newval)
302 {
303         zfsvfs_t *zfsvfs = arg;
304
305         if (newval == FALSE) {
306                 zfsvfs->z_vfs->vfs_flag |= VFS_NOSETUID;
307                 vfs_clearmntopt(zfsvfs->z_vfs, MNTOPT_SETUID);
308                 vfs_setmntopt(zfsvfs->z_vfs, MNTOPT_NOSETUID, NULL, 0);
309         } else {
310                 zfsvfs->z_vfs->vfs_flag &= ~VFS_NOSETUID;
311                 vfs_clearmntopt(zfsvfs->z_vfs, MNTOPT_NOSETUID);
312                 vfs_setmntopt(zfsvfs->z_vfs, MNTOPT_SETUID, NULL, 0);
313         }
314 }
315
316 static void
317 exec_changed_cb(void *arg, uint64_t newval)
318 {
319         zfsvfs_t *zfsvfs = arg;
320
321         if (newval == FALSE) {
322                 zfsvfs->z_vfs->vfs_flag |= VFS_NOEXEC;
323                 vfs_clearmntopt(zfsvfs->z_vfs, MNTOPT_EXEC);
324                 vfs_setmntopt(zfsvfs->z_vfs, MNTOPT_NOEXEC, NULL, 0);
325         } else {
326                 zfsvfs->z_vfs->vfs_flag &= ~VFS_NOEXEC;
327                 vfs_clearmntopt(zfsvfs->z_vfs, MNTOPT_NOEXEC);
328                 vfs_setmntopt(zfsvfs->z_vfs, MNTOPT_EXEC, NULL, 0);
329         }
330 }
331
332 /*
333  * The nbmand mount option can be changed at mount time.
334  * We can't allow it to be toggled on live file systems or incorrect
335  * behavior may be seen from cifs clients
336  *
337  * This property isn't registered via dsl_prop_register(), but this callback
338  * will be called when a file system is first mounted
339  */
340 static void
341 nbmand_changed_cb(void *arg, uint64_t newval)
342 {
343         zfsvfs_t *zfsvfs = arg;
344         if (newval == FALSE) {
345                 vfs_clearmntopt(zfsvfs->z_vfs, MNTOPT_NBMAND);
346                 vfs_setmntopt(zfsvfs->z_vfs, MNTOPT_NONBMAND, NULL, 0);
347         } else {
348                 vfs_clearmntopt(zfsvfs->z_vfs, MNTOPT_NONBMAND);
349                 vfs_setmntopt(zfsvfs->z_vfs, MNTOPT_NBMAND, NULL, 0);
350         }
351 }
352
353 static void
354 snapdir_changed_cb(void *arg, uint64_t newval)
355 {
356         zfsvfs_t *zfsvfs = arg;
357
358         zfsvfs->z_show_ctldir = newval;
359 }
360
361 static void
362 vscan_changed_cb(void *arg, uint64_t newval)
363 {
364         zfsvfs_t *zfsvfs = arg;
365
366         zfsvfs->z_vscan = newval;
367 }
368
369 static void
370 acl_mode_changed_cb(void *arg, uint64_t newval)
371 {
372         zfsvfs_t *zfsvfs = arg;
373
374         zfsvfs->z_acl_mode = newval;
375 }
376
377 static void
378 acl_inherit_changed_cb(void *arg, uint64_t newval)
379 {
380         zfsvfs_t *zfsvfs = arg;
381
382         zfsvfs->z_acl_inherit = newval;
383 }
384
385 static int
386 zfs_register_callbacks(vfs_t *vfsp)
387 {
388         struct dsl_dataset *ds = NULL;
389         objset_t *os = NULL;
390         zfsvfs_t *zfsvfs = NULL;
391         uint64_t nbmand;
392         int readonly, do_readonly = B_FALSE;
393         int setuid, do_setuid = B_FALSE;
394         int exec, do_exec = B_FALSE;
395         int xattr, do_xattr = B_FALSE;
396         int atime, do_atime = B_FALSE;
397         int error = 0;
398
399         ASSERT(vfsp);
400         zfsvfs = vfsp->vfs_data;
401         ASSERT(zfsvfs);
402         os = zfsvfs->z_os;
403
404         /*
405          * This function can be called for a snapshot when we update snapshot's
406          * mount point, which isn't really supported.
407          */
408         if (dmu_objset_is_snapshot(os))
409                 return (EOPNOTSUPP);
410
411         /*
412          * The act of registering our callbacks will destroy any mount
413          * options we may have.  In order to enable temporary overrides
414          * of mount options, we stash away the current values and
415          * restore them after we register the callbacks.
416          */
417         if (vfs_optionisset(vfsp, MNTOPT_RO, NULL) ||
418             !spa_writeable(dmu_objset_spa(os))) {
419                 readonly = B_TRUE;
420                 do_readonly = B_TRUE;
421         } else if (vfs_optionisset(vfsp, MNTOPT_RW, NULL)) {
422                 readonly = B_FALSE;
423                 do_readonly = B_TRUE;
424         }
425         if (vfs_optionisset(vfsp, MNTOPT_NOSUID, NULL)) {
426                 setuid = B_FALSE;
427                 do_setuid = B_TRUE;
428         } else {
429                 if (vfs_optionisset(vfsp, MNTOPT_NOSETUID, NULL)) {
430                         setuid = B_FALSE;
431                         do_setuid = B_TRUE;
432                 } else if (vfs_optionisset(vfsp, MNTOPT_SETUID, NULL)) {
433                         setuid = B_TRUE;
434                         do_setuid = B_TRUE;
435                 }
436         }
437         if (vfs_optionisset(vfsp, MNTOPT_NOEXEC, NULL)) {
438                 exec = B_FALSE;
439                 do_exec = B_TRUE;
440         } else if (vfs_optionisset(vfsp, MNTOPT_EXEC, NULL)) {
441                 exec = B_TRUE;
442                 do_exec = B_TRUE;
443         }
444         if (vfs_optionisset(vfsp, MNTOPT_NOXATTR, NULL)) {
445                 xattr = B_FALSE;
446                 do_xattr = B_TRUE;
447         } else if (vfs_optionisset(vfsp, MNTOPT_XATTR, NULL)) {
448                 xattr = B_TRUE;
449                 do_xattr = B_TRUE;
450         }
451         if (vfs_optionisset(vfsp, MNTOPT_NOATIME, NULL)) {
452                 atime = B_FALSE;
453                 do_atime = B_TRUE;
454         } else if (vfs_optionisset(vfsp, MNTOPT_ATIME, NULL)) {
455                 atime = B_TRUE;
456                 do_atime = B_TRUE;
457         }
458
459         /*
460          * nbmand is a special property.  It can only be changed at
461          * mount time.
462          *
463          * This is weird, but it is documented to only be changeable
464          * at mount time.
465          */
466         if (vfs_optionisset(vfsp, MNTOPT_NONBMAND, NULL)) {
467                 nbmand = B_FALSE;
468         } else if (vfs_optionisset(vfsp, MNTOPT_NBMAND, NULL)) {
469                 nbmand = B_TRUE;
470         } else {
471                 char osname[MAXNAMELEN];
472
473                 dmu_objset_name(os, osname);
474                 if (error = dsl_prop_get_integer(osname, "nbmand", &nbmand,
475                     NULL)) {
476                         return (error);
477                 }
478         }
479
480         /*
481          * Register property callbacks.
482          *
483          * It would probably be fine to just check for i/o error from
484          * the first prop_register(), but I guess I like to go
485          * overboard...
486          */
487         ds = dmu_objset_ds(os);
488         error = dsl_prop_register(ds, "atime", atime_changed_cb, zfsvfs);
489         error = error ? error : dsl_prop_register(ds,
490             "xattr", xattr_changed_cb, zfsvfs);
491         error = error ? error : dsl_prop_register(ds,
492             "recordsize", blksz_changed_cb, zfsvfs);
493         error = error ? error : dsl_prop_register(ds,
494             "readonly", readonly_changed_cb, zfsvfs);
495         error = error ? error : dsl_prop_register(ds,
496             "setuid", setuid_changed_cb, zfsvfs);
497         error = error ? error : dsl_prop_register(ds,
498             "exec", exec_changed_cb, zfsvfs);
499         error = error ? error : dsl_prop_register(ds,
500             "snapdir", snapdir_changed_cb, zfsvfs);
501         error = error ? error : dsl_prop_register(ds,
502             "aclmode", acl_mode_changed_cb, zfsvfs);
503         error = error ? error : dsl_prop_register(ds,
504             "aclinherit", acl_inherit_changed_cb, zfsvfs);
505         error = error ? error : dsl_prop_register(ds,
506             "vscan", vscan_changed_cb, zfsvfs);
507         if (error)
508                 goto unregister;
509
510         /*
511          * Invoke our callbacks to restore temporary mount options.
512          */
513         if (do_readonly)
514                 readonly_changed_cb(zfsvfs, readonly);
515         if (do_setuid)
516                 setuid_changed_cb(zfsvfs, setuid);
517         if (do_exec)
518                 exec_changed_cb(zfsvfs, exec);
519         if (do_xattr)
520                 xattr_changed_cb(zfsvfs, xattr);
521         if (do_atime)
522                 atime_changed_cb(zfsvfs, atime);
523
524         nbmand_changed_cb(zfsvfs, nbmand);
525
526         return (0);
527
528 unregister:
529         /*
530          * We may attempt to unregister some callbacks that are not
531          * registered, but this is OK; it will simply return ENOMSG,
532          * which we will ignore.
533          */
534         (void) dsl_prop_unregister(ds, "atime", atime_changed_cb, zfsvfs);
535         (void) dsl_prop_unregister(ds, "xattr", xattr_changed_cb, zfsvfs);
536         (void) dsl_prop_unregister(ds, "recordsize", blksz_changed_cb, zfsvfs);
537         (void) dsl_prop_unregister(ds, "readonly", readonly_changed_cb, zfsvfs);
538         (void) dsl_prop_unregister(ds, "setuid", setuid_changed_cb, zfsvfs);
539         (void) dsl_prop_unregister(ds, "exec", exec_changed_cb, zfsvfs);
540         (void) dsl_prop_unregister(ds, "snapdir", snapdir_changed_cb, zfsvfs);
541         (void) dsl_prop_unregister(ds, "aclmode", acl_mode_changed_cb, zfsvfs);
542         (void) dsl_prop_unregister(ds, "aclinherit", acl_inherit_changed_cb,
543             zfsvfs);
544         (void) dsl_prop_unregister(ds, "vscan", vscan_changed_cb, zfsvfs);
545         return (error);
546
547 }
548
549 static int
550 zfs_space_delta_cb(dmu_object_type_t bonustype, void *data,
551     uint64_t *userp, uint64_t *groupp)
552 {
553         int error = 0;
554
555         /*
556          * Is it a valid type of object to track?
557          */
558         if (bonustype != DMU_OT_ZNODE && bonustype != DMU_OT_SA)
559                 return (ENOENT);
560
561         /*
562          * If we have a NULL data pointer
563          * then assume the id's aren't changing and
564          * return EEXIST to the dmu to let it know to
565          * use the same ids
566          */
567         if (data == NULL)
568                 return (EEXIST);
569
570         if (bonustype == DMU_OT_ZNODE) {
571                 znode_phys_t *znp = data;
572                 *userp = znp->zp_uid;
573                 *groupp = znp->zp_gid;
574         } else {
575                 int hdrsize;
576                 sa_hdr_phys_t *sap = data;
577                 sa_hdr_phys_t sa = *sap;
578                 boolean_t swap = B_FALSE;
579
580                 ASSERT(bonustype == DMU_OT_SA);
581
582                 if (sa.sa_magic == 0) {
583                         /*
584                          * This should only happen for newly created
585                          * files that haven't had the znode data filled
586                          * in yet.
587                          */
588                         *userp = 0;
589                         *groupp = 0;
590                         return (0);
591                 }
592                 if (sa.sa_magic == BSWAP_32(SA_MAGIC)) {
593                         sa.sa_magic = SA_MAGIC;
594                         sa.sa_layout_info = BSWAP_16(sa.sa_layout_info);
595                         swap = B_TRUE;
596                 } else {
597                         VERIFY3U(sa.sa_magic, ==, SA_MAGIC);
598                 }
599
600                 hdrsize = sa_hdrsize(&sa);
601                 VERIFY3U(hdrsize, >=, sizeof (sa_hdr_phys_t));
602                 *userp = *((uint64_t *)((uintptr_t)data + hdrsize +
603                     SA_UID_OFFSET));
604                 *groupp = *((uint64_t *)((uintptr_t)data + hdrsize +
605                     SA_GID_OFFSET));
606                 if (swap) {
607                         *userp = BSWAP_64(*userp);
608                         *groupp = BSWAP_64(*groupp);
609                 }
610         }
611         return (error);
612 }
613
614 static void
615 fuidstr_to_sid(zfsvfs_t *zfsvfs, const char *fuidstr,
616     char *domainbuf, int buflen, uid_t *ridp)
617 {
618         uint64_t fuid;
619         const char *domain;
620
621         fuid = strtonum(fuidstr, NULL);
622
623         domain = zfs_fuid_find_by_idx(zfsvfs, FUID_INDEX(fuid));
624         if (domain)
625                 (void) strlcpy(domainbuf, domain, buflen);
626         else
627                 domainbuf[0] = '\0';
628         *ridp = FUID_RID(fuid);
629 }
630
631 static uint64_t
632 zfs_userquota_prop_to_obj(zfsvfs_t *zfsvfs, zfs_userquota_prop_t type)
633 {
634         switch (type) {
635         case ZFS_PROP_USERUSED:
636                 return (DMU_USERUSED_OBJECT);
637         case ZFS_PROP_GROUPUSED:
638                 return (DMU_GROUPUSED_OBJECT);
639         case ZFS_PROP_USERQUOTA:
640                 return (zfsvfs->z_userquota_obj);
641         case ZFS_PROP_GROUPQUOTA:
642                 return (zfsvfs->z_groupquota_obj);
643         }
644         return (0);
645 }
646
647 int
648 zfs_userspace_many(zfsvfs_t *zfsvfs, zfs_userquota_prop_t type,
649     uint64_t *cookiep, void *vbuf, uint64_t *bufsizep)
650 {
651         int error;
652         zap_cursor_t zc;
653         zap_attribute_t za;
654         zfs_useracct_t *buf = vbuf;
655         uint64_t obj;
656
657         if (!dmu_objset_userspace_present(zfsvfs->z_os))
658                 return (ENOTSUP);
659
660         obj = zfs_userquota_prop_to_obj(zfsvfs, type);
661         if (obj == 0) {
662                 *bufsizep = 0;
663                 return (0);
664         }
665
666         for (zap_cursor_init_serialized(&zc, zfsvfs->z_os, obj, *cookiep);
667             (error = zap_cursor_retrieve(&zc, &za)) == 0;
668             zap_cursor_advance(&zc)) {
669                 if ((uintptr_t)buf - (uintptr_t)vbuf + sizeof (zfs_useracct_t) >
670                     *bufsizep)
671                         break;
672
673                 fuidstr_to_sid(zfsvfs, za.za_name,
674                     buf->zu_domain, sizeof (buf->zu_domain), &buf->zu_rid);
675
676                 buf->zu_space = za.za_first_integer;
677                 buf++;
678         }
679         if (error == ENOENT)
680                 error = 0;
681
682         ASSERT3U((uintptr_t)buf - (uintptr_t)vbuf, <=, *bufsizep);
683         *bufsizep = (uintptr_t)buf - (uintptr_t)vbuf;
684         *cookiep = zap_cursor_serialize(&zc);
685         zap_cursor_fini(&zc);
686         return (error);
687 }
688
689 /*
690  * buf must be big enough (eg, 32 bytes)
691  */
692 static int
693 id_to_fuidstr(zfsvfs_t *zfsvfs, const char *domain, uid_t rid,
694     char *buf, boolean_t addok)
695 {
696         uint64_t fuid;
697         int domainid = 0;
698
699         if (domain && domain[0]) {
700                 domainid = zfs_fuid_find_by_domain(zfsvfs, domain, NULL, addok);
701                 if (domainid == -1)
702                         return (ENOENT);
703         }
704         fuid = FUID_ENCODE(domainid, rid);
705         (void) sprintf(buf, "%llx", (longlong_t)fuid);
706         return (0);
707 }
708
709 int
710 zfs_userspace_one(zfsvfs_t *zfsvfs, zfs_userquota_prop_t type,
711     const char *domain, uint64_t rid, uint64_t *valp)
712 {
713         char buf[32];
714         int err;
715         uint64_t obj;
716
717         *valp = 0;
718
719         if (!dmu_objset_userspace_present(zfsvfs->z_os))
720                 return (ENOTSUP);
721
722         obj = zfs_userquota_prop_to_obj(zfsvfs, type);
723         if (obj == 0)
724                 return (0);
725
726         err = id_to_fuidstr(zfsvfs, domain, rid, buf, B_FALSE);
727         if (err)
728                 return (err);
729
730         err = zap_lookup(zfsvfs->z_os, obj, buf, 8, 1, valp);
731         if (err == ENOENT)
732                 err = 0;
733         return (err);
734 }
735
736 int
737 zfs_set_userquota(zfsvfs_t *zfsvfs, zfs_userquota_prop_t type,
738     const char *domain, uint64_t rid, uint64_t quota)
739 {
740         char buf[32];
741         int err;
742         dmu_tx_t *tx;
743         uint64_t *objp;
744         boolean_t fuid_dirtied;
745
746         if (type != ZFS_PROP_USERQUOTA && type != ZFS_PROP_GROUPQUOTA)
747                 return (EINVAL);
748
749         if (zfsvfs->z_version < ZPL_VERSION_USERSPACE)
750                 return (ENOTSUP);
751
752         objp = (type == ZFS_PROP_USERQUOTA) ? &zfsvfs->z_userquota_obj :
753             &zfsvfs->z_groupquota_obj;
754
755         err = id_to_fuidstr(zfsvfs, domain, rid, buf, B_TRUE);
756         if (err)
757                 return (err);
758         fuid_dirtied = zfsvfs->z_fuid_dirty;
759
760         tx = dmu_tx_create(zfsvfs->z_os);
761         dmu_tx_hold_zap(tx, *objp ? *objp : DMU_NEW_OBJECT, B_TRUE, NULL);
762         if (*objp == 0) {
763                 dmu_tx_hold_zap(tx, MASTER_NODE_OBJ, B_TRUE,
764                     zfs_userquota_prop_prefixes[type]);
765         }
766         if (fuid_dirtied)
767                 zfs_fuid_txhold(zfsvfs, tx);
768         err = dmu_tx_assign(tx, TXG_WAIT);
769         if (err) {
770                 dmu_tx_abort(tx);
771                 return (err);
772         }
773
774         mutex_enter(&zfsvfs->z_lock);
775         if (*objp == 0) {
776                 *objp = zap_create(zfsvfs->z_os, DMU_OT_USERGROUP_QUOTA,
777                     DMU_OT_NONE, 0, tx);
778                 VERIFY(0 == zap_add(zfsvfs->z_os, MASTER_NODE_OBJ,
779                     zfs_userquota_prop_prefixes[type], 8, 1, objp, tx));
780         }
781         mutex_exit(&zfsvfs->z_lock);
782
783         if (quota == 0) {
784                 err = zap_remove(zfsvfs->z_os, *objp, buf, tx);
785                 if (err == ENOENT)
786                         err = 0;
787         } else {
788                 err = zap_update(zfsvfs->z_os, *objp, buf, 8, 1, &quota, tx);
789         }
790         ASSERT(err == 0);
791         if (fuid_dirtied)
792                 zfs_fuid_sync(zfsvfs, tx);
793         dmu_tx_commit(tx);
794         return (err);
795 }
796
797 boolean_t
798 zfs_fuid_overquota(zfsvfs_t *zfsvfs, boolean_t isgroup, uint64_t fuid)
799 {
800         char buf[32];
801         uint64_t used, quota, usedobj, quotaobj;
802         int err;
803
804         usedobj = isgroup ? DMU_GROUPUSED_OBJECT : DMU_USERUSED_OBJECT;
805         quotaobj = isgroup ? zfsvfs->z_groupquota_obj : zfsvfs->z_userquota_obj;
806
807         if (quotaobj == 0 || zfsvfs->z_replay)
808                 return (B_FALSE);
809
810         (void) sprintf(buf, "%llx", (longlong_t)fuid);
811         err = zap_lookup(zfsvfs->z_os, quotaobj, buf, 8, 1, &quota);
812         if (err != 0)
813                 return (B_FALSE);
814
815         err = zap_lookup(zfsvfs->z_os, usedobj, buf, 8, 1, &used);
816         if (err != 0)
817                 return (B_FALSE);
818         return (used >= quota);
819 }
820
821 boolean_t
822 zfs_owner_overquota(zfsvfs_t *zfsvfs, znode_t *zp, boolean_t isgroup)
823 {
824         uint64_t fuid;
825         uint64_t quotaobj;
826
827         quotaobj = isgroup ? zfsvfs->z_groupquota_obj : zfsvfs->z_userquota_obj;
828
829         fuid = isgroup ? zp->z_gid : zp->z_uid;
830
831         if (quotaobj == 0 || zfsvfs->z_replay)
832                 return (B_FALSE);
833
834         return (zfs_fuid_overquota(zfsvfs, isgroup, fuid));
835 }
836
837 int
838 zfsvfs_create(const char *osname, zfsvfs_t **zfvp)
839 {
840         objset_t *os;
841         zfsvfs_t *zfsvfs;
842         uint64_t zval;
843         int i, error;
844         uint64_t sa_obj;
845
846         zfsvfs = kmem_zalloc(sizeof (zfsvfs_t), KM_SLEEP);
847
848         /*
849          * We claim to always be readonly so we can open snapshots;
850          * other ZPL code will prevent us from writing to snapshots.
851          */
852         error = dmu_objset_own(osname, DMU_OST_ZFS, B_TRUE, zfsvfs, &os);
853         if (error) {
854                 kmem_free(zfsvfs, sizeof (zfsvfs_t));
855                 return (error);
856         }
857
858         /*
859          * Initialize the zfs-specific filesystem structure.
860          * Should probably make this a kmem cache, shuffle fields,
861          * and just bzero up to z_hold_mtx[].
862          */
863         zfsvfs->z_vfs = NULL;
864         zfsvfs->z_parent = zfsvfs;
865         zfsvfs->z_max_blksz = SPA_MAXBLOCKSIZE;
866         zfsvfs->z_show_ctldir = ZFS_SNAPDIR_VISIBLE;
867         zfsvfs->z_os = os;
868
869         error = zfs_get_zplprop(os, ZFS_PROP_VERSION, &zfsvfs->z_version);
870         if (error) {
871                 goto out;
872         } else if (zfsvfs->z_version >
873             zfs_zpl_version_map(spa_version(dmu_objset_spa(os)))) {
874                 (void) printf("Can't mount a version %lld file system "
875                     "on a version %lld pool\n. Pool must be upgraded to mount "
876                     "this file system.", (u_longlong_t)zfsvfs->z_version,
877                     (u_longlong_t)spa_version(dmu_objset_spa(os)));
878                 error = ENOTSUP;
879                 goto out;
880         }
881         if ((error = zfs_get_zplprop(os, ZFS_PROP_NORMALIZE, &zval)) != 0)
882                 goto out;
883         zfsvfs->z_norm = (int)zval;
884
885         if ((error = zfs_get_zplprop(os, ZFS_PROP_UTF8ONLY, &zval)) != 0)
886                 goto out;
887         zfsvfs->z_utf8 = (zval != 0);
888
889         if ((error = zfs_get_zplprop(os, ZFS_PROP_CASE, &zval)) != 0)
890                 goto out;
891         zfsvfs->z_case = (uint_t)zval;
892
893         /*
894          * Fold case on file systems that are always or sometimes case
895          * insensitive.
896          */
897         if (zfsvfs->z_case == ZFS_CASE_INSENSITIVE ||
898             zfsvfs->z_case == ZFS_CASE_MIXED)
899                 zfsvfs->z_norm |= U8_TEXTPREP_TOUPPER;
900
901         zfsvfs->z_use_fuids = USE_FUIDS(zfsvfs->z_version, zfsvfs->z_os);
902         zfsvfs->z_use_sa = USE_SA(zfsvfs->z_version, zfsvfs->z_os);
903
904         if (zfsvfs->z_use_sa) {
905                 /* should either have both of these objects or none */
906                 error = zap_lookup(os, MASTER_NODE_OBJ, ZFS_SA_ATTRS, 8, 1,
907                     &sa_obj);
908                 if (error)
909                         return (error);
910         } else {
911                 /*
912                  * Pre SA versions file systems should never touch
913                  * either the attribute registration or layout objects.
914                  */
915                 sa_obj = 0;
916         }
917
918         error = sa_setup(os, sa_obj, zfs_attr_table, ZPL_END,
919             &zfsvfs->z_attr_table);
920         if (error)
921                 goto out;
922
923         if (zfsvfs->z_version >= ZPL_VERSION_SA)
924                 sa_register_update_callback(os, zfs_sa_upgrade);
925
926         error = zap_lookup(os, MASTER_NODE_OBJ, ZFS_ROOT_OBJ, 8, 1,
927             &zfsvfs->z_root);
928         if (error)
929                 goto out;
930         ASSERT(zfsvfs->z_root != 0);
931
932         error = zap_lookup(os, MASTER_NODE_OBJ, ZFS_UNLINKED_SET, 8, 1,
933             &zfsvfs->z_unlinkedobj);
934         if (error)
935                 goto out;
936
937         error = zap_lookup(os, MASTER_NODE_OBJ,
938             zfs_userquota_prop_prefixes[ZFS_PROP_USERQUOTA],
939             8, 1, &zfsvfs->z_userquota_obj);
940         if (error && error != ENOENT)
941                 goto out;
942
943         error = zap_lookup(os, MASTER_NODE_OBJ,
944             zfs_userquota_prop_prefixes[ZFS_PROP_GROUPQUOTA],
945             8, 1, &zfsvfs->z_groupquota_obj);
946         if (error && error != ENOENT)
947                 goto out;
948
949         error = zap_lookup(os, MASTER_NODE_OBJ, ZFS_FUID_TABLES, 8, 1,
950             &zfsvfs->z_fuid_obj);
951         if (error && error != ENOENT)
952                 goto out;
953
954         error = zap_lookup(os, MASTER_NODE_OBJ, ZFS_SHARES_DIR, 8, 1,
955             &zfsvfs->z_shares_dir);
956         if (error && error != ENOENT)
957                 goto out;
958
959         mutex_init(&zfsvfs->z_znodes_lock, NULL, MUTEX_DEFAULT, NULL);
960         mutex_init(&zfsvfs->z_lock, NULL, MUTEX_DEFAULT, NULL);
961         list_create(&zfsvfs->z_all_znodes, sizeof (znode_t),
962             offsetof(znode_t, z_link_node));
963         rrw_init(&zfsvfs->z_teardown_lock);
964         rw_init(&zfsvfs->z_teardown_inactive_lock, NULL, RW_DEFAULT, NULL);
965         rw_init(&zfsvfs->z_fuid_lock, NULL, RW_DEFAULT, NULL);
966         for (i = 0; i != ZFS_OBJ_MTX_SZ; i++)
967                 mutex_init(&zfsvfs->z_hold_mtx[i], NULL, MUTEX_DEFAULT, NULL);
968
969         *zfvp = zfsvfs;
970         return (0);
971
972 out:
973         dmu_objset_disown(os, zfsvfs);
974         *zfvp = NULL;
975         kmem_free(zfsvfs, sizeof (zfsvfs_t));
976         return (error);
977 }
978
979 static int
980 zfsvfs_setup(zfsvfs_t *zfsvfs, boolean_t mounting)
981 {
982         int error;
983
984         error = zfs_register_callbacks(zfsvfs->z_vfs);
985         if (error)
986                 return (error);
987
988         /*
989          * Set the objset user_ptr to track its zfsvfs.
990          */
991         mutex_enter(&zfsvfs->z_os->os_user_ptr_lock);
992         dmu_objset_set_user(zfsvfs->z_os, zfsvfs);
993         mutex_exit(&zfsvfs->z_os->os_user_ptr_lock);
994
995         zfsvfs->z_log = zil_open(zfsvfs->z_os, zfs_get_data);
996
997         /*
998          * If we are not mounting (ie: online recv), then we don't
999          * have to worry about replaying the log as we blocked all
1000          * operations out since we closed the ZIL.
1001          */
1002         if (mounting) {
1003                 boolean_t readonly;
1004
1005                 /*
1006                  * During replay we remove the read only flag to
1007                  * allow replays to succeed.
1008                  */
1009                 readonly = zfsvfs->z_vfs->vfs_flag & VFS_RDONLY;
1010                 if (readonly != 0)
1011                         zfsvfs->z_vfs->vfs_flag &= ~VFS_RDONLY;
1012                 else
1013                         zfs_unlinked_drain(zfsvfs);
1014
1015                 /*
1016                  * Parse and replay the intent log.
1017                  *
1018                  * Because of ziltest, this must be done after
1019                  * zfs_unlinked_drain().  (Further note: ziltest
1020                  * doesn't use readonly mounts, where
1021                  * zfs_unlinked_drain() isn't called.)  This is because
1022                  * ziltest causes spa_sync() to think it's committed,
1023                  * but actually it is not, so the intent log contains
1024                  * many txg's worth of changes.
1025                  *
1026                  * In particular, if object N is in the unlinked set in
1027                  * the last txg to actually sync, then it could be
1028                  * actually freed in a later txg and then reallocated
1029                  * in a yet later txg.  This would write a "create
1030                  * object N" record to the intent log.  Normally, this
1031                  * would be fine because the spa_sync() would have
1032                  * written out the fact that object N is free, before
1033                  * we could write the "create object N" intent log
1034                  * record.
1035                  *
1036                  * But when we are in ziltest mode, we advance the "open
1037                  * txg" without actually spa_sync()-ing the changes to
1038                  * disk.  So we would see that object N is still
1039                  * allocated and in the unlinked set, and there is an
1040                  * intent log record saying to allocate it.
1041                  */
1042                 if (spa_writeable(dmu_objset_spa(zfsvfs->z_os))) {
1043                         if (zil_replay_disable) {
1044                                 zil_destroy(zfsvfs->z_log, B_FALSE);
1045                         } else {
1046                                 zfsvfs->z_replay = B_TRUE;
1047                                 zil_replay(zfsvfs->z_os, zfsvfs,
1048                                     zfs_replay_vector);
1049                                 zfsvfs->z_replay = B_FALSE;
1050                         }
1051                 }
1052                 zfsvfs->z_vfs->vfs_flag |= readonly; /* restore readonly bit */
1053         }
1054
1055         return (0);
1056 }
1057
1058 extern krwlock_t zfsvfs_lock; /* in zfs_znode.c */
1059
1060 void
1061 zfsvfs_free(zfsvfs_t *zfsvfs)
1062 {
1063         int i;
1064
1065         /*
1066          * This is a barrier to prevent the filesystem from going away in
1067          * zfs_znode_move() until we can safely ensure that the filesystem is
1068          * not unmounted. We consider the filesystem valid before the barrier
1069          * and invalid after the barrier.
1070          */
1071         rw_enter(&zfsvfs_lock, RW_READER);
1072         rw_exit(&zfsvfs_lock);
1073
1074         zfs_fuid_destroy(zfsvfs);
1075
1076         mutex_destroy(&zfsvfs->z_znodes_lock);
1077         mutex_destroy(&zfsvfs->z_lock);
1078         list_destroy(&zfsvfs->z_all_znodes);
1079         rrw_destroy(&zfsvfs->z_teardown_lock);
1080         rw_destroy(&zfsvfs->z_teardown_inactive_lock);
1081         rw_destroy(&zfsvfs->z_fuid_lock);
1082         for (i = 0; i != ZFS_OBJ_MTX_SZ; i++)
1083                 mutex_destroy(&zfsvfs->z_hold_mtx[i]);
1084         kmem_free(zfsvfs, sizeof (zfsvfs_t));
1085 }
1086
1087 static void
1088 zfs_set_fuid_feature(zfsvfs_t *zfsvfs)
1089 {
1090         zfsvfs->z_use_fuids = USE_FUIDS(zfsvfs->z_version, zfsvfs->z_os);
1091         if (zfsvfs->z_vfs) {
1092                 if (zfsvfs->z_use_fuids) {
1093                         vfs_set_feature(zfsvfs->z_vfs, VFSFT_XVATTR);
1094                         vfs_set_feature(zfsvfs->z_vfs, VFSFT_SYSATTR_VIEWS);
1095                         vfs_set_feature(zfsvfs->z_vfs, VFSFT_ACEMASKONACCESS);
1096                         vfs_set_feature(zfsvfs->z_vfs, VFSFT_ACLONCREATE);
1097                         vfs_set_feature(zfsvfs->z_vfs, VFSFT_ACCESS_FILTER);
1098                         vfs_set_feature(zfsvfs->z_vfs, VFSFT_REPARSE);
1099                 } else {
1100                         vfs_clear_feature(zfsvfs->z_vfs, VFSFT_XVATTR);
1101                         vfs_clear_feature(zfsvfs->z_vfs, VFSFT_SYSATTR_VIEWS);
1102                         vfs_clear_feature(zfsvfs->z_vfs, VFSFT_ACEMASKONACCESS);
1103                         vfs_clear_feature(zfsvfs->z_vfs, VFSFT_ACLONCREATE);
1104                         vfs_clear_feature(zfsvfs->z_vfs, VFSFT_ACCESS_FILTER);
1105                         vfs_clear_feature(zfsvfs->z_vfs, VFSFT_REPARSE);
1106                 }
1107         }
1108         zfsvfs->z_use_sa = USE_SA(zfsvfs->z_version, zfsvfs->z_os);
1109 }
1110
1111 static int
1112 zfs_domount(vfs_t *vfsp, char *osname)
1113 {
1114         uint64_t recordsize, fsid_guid;
1115         int error = 0;
1116         zfsvfs_t *zfsvfs;
1117         vnode_t *vp;
1118
1119         ASSERT(vfsp);
1120         ASSERT(osname);
1121
1122         error = zfsvfs_create(osname, &zfsvfs);
1123         if (error)
1124                 return (error);
1125         zfsvfs->z_vfs = vfsp;
1126
1127         if (error = dsl_prop_get_integer(osname, "recordsize", &recordsize,
1128             NULL))
1129                 goto out;
1130         zfsvfs->z_vfs->vfs_bsize = SPA_MINBLOCKSIZE;
1131         zfsvfs->z_vfs->mnt_stat.f_iosize = recordsize;
1132
1133         vfsp->vfs_data = zfsvfs;
1134         vfsp->mnt_flag |= MNT_LOCAL;
1135         vfsp->mnt_kern_flag |= MNTK_LOOKUP_SHARED;
1136         vfsp->mnt_kern_flag |= MNTK_SHARED_WRITES;
1137         vfsp->mnt_kern_flag |= MNTK_EXTENDED_SHARED;
1138
1139         /*
1140          * The fsid is 64 bits, composed of an 8-bit fs type, which
1141          * separates our fsid from any other filesystem types, and a
1142          * 56-bit objset unique ID.  The objset unique ID is unique to
1143          * all objsets open on this system, provided by unique_create().
1144          * The 8-bit fs type must be put in the low bits of fsid[1]
1145          * because that's where other Solaris filesystems put it.
1146          */
1147         fsid_guid = dmu_objset_fsid_guid(zfsvfs->z_os);
1148         ASSERT((fsid_guid & ~((1ULL<<56)-1)) == 0);
1149         vfsp->vfs_fsid.val[0] = fsid_guid;
1150         vfsp->vfs_fsid.val[1] = ((fsid_guid>>32) << 8) |
1151             vfsp->mnt_vfc->vfc_typenum & 0xFF;
1152
1153         /*
1154          * Set features for file system.
1155          */
1156         zfs_set_fuid_feature(zfsvfs);
1157         if (zfsvfs->z_case == ZFS_CASE_INSENSITIVE) {
1158                 vfs_set_feature(vfsp, VFSFT_DIRENTFLAGS);
1159                 vfs_set_feature(vfsp, VFSFT_CASEINSENSITIVE);
1160                 vfs_set_feature(vfsp, VFSFT_NOCASESENSITIVE);
1161         } else if (zfsvfs->z_case == ZFS_CASE_MIXED) {
1162                 vfs_set_feature(vfsp, VFSFT_DIRENTFLAGS);
1163                 vfs_set_feature(vfsp, VFSFT_CASEINSENSITIVE);
1164         }
1165         vfs_set_feature(vfsp, VFSFT_ZEROCOPY_SUPPORTED);
1166
1167         if (dmu_objset_is_snapshot(zfsvfs->z_os)) {
1168                 uint64_t pval;
1169
1170                 atime_changed_cb(zfsvfs, B_FALSE);
1171                 readonly_changed_cb(zfsvfs, B_TRUE);
1172                 if (error = dsl_prop_get_integer(osname, "xattr", &pval, NULL))
1173                         goto out;
1174                 xattr_changed_cb(zfsvfs, pval);
1175                 zfsvfs->z_issnap = B_TRUE;
1176                 zfsvfs->z_os->os_sync = ZFS_SYNC_DISABLED;
1177
1178                 mutex_enter(&zfsvfs->z_os->os_user_ptr_lock);
1179                 dmu_objset_set_user(zfsvfs->z_os, zfsvfs);
1180                 mutex_exit(&zfsvfs->z_os->os_user_ptr_lock);
1181         } else {
1182                 error = zfsvfs_setup(zfsvfs, B_TRUE);
1183         }
1184
1185         vfs_mountedfrom(vfsp, osname);
1186         /* Grab extra reference. */
1187         VERIFY(VFS_ROOT(vfsp, LK_EXCLUSIVE, &vp) == 0);
1188         VOP_UNLOCK(vp, 0);
1189
1190         if (!zfsvfs->z_issnap)
1191                 zfsctl_create(zfsvfs);
1192 out:
1193         if (error) {
1194                 dmu_objset_disown(zfsvfs->z_os, zfsvfs);
1195                 zfsvfs_free(zfsvfs);
1196         } else {
1197                 atomic_add_32(&zfs_active_fs_count, 1);
1198         }
1199
1200         return (error);
1201 }
1202
1203 void
1204 zfs_unregister_callbacks(zfsvfs_t *zfsvfs)
1205 {
1206         objset_t *os = zfsvfs->z_os;
1207         struct dsl_dataset *ds;
1208
1209         /*
1210          * Unregister properties.
1211          */
1212         if (!dmu_objset_is_snapshot(os)) {
1213                 ds = dmu_objset_ds(os);
1214                 VERIFY(dsl_prop_unregister(ds, "atime", atime_changed_cb,
1215                     zfsvfs) == 0);
1216
1217                 VERIFY(dsl_prop_unregister(ds, "xattr", xattr_changed_cb,
1218                     zfsvfs) == 0);
1219
1220                 VERIFY(dsl_prop_unregister(ds, "recordsize", blksz_changed_cb,
1221                     zfsvfs) == 0);
1222
1223                 VERIFY(dsl_prop_unregister(ds, "readonly", readonly_changed_cb,
1224                     zfsvfs) == 0);
1225
1226                 VERIFY(dsl_prop_unregister(ds, "setuid", setuid_changed_cb,
1227                     zfsvfs) == 0);
1228
1229                 VERIFY(dsl_prop_unregister(ds, "exec", exec_changed_cb,
1230                     zfsvfs) == 0);
1231
1232                 VERIFY(dsl_prop_unregister(ds, "snapdir", snapdir_changed_cb,
1233                     zfsvfs) == 0);
1234
1235                 VERIFY(dsl_prop_unregister(ds, "aclmode", acl_mode_changed_cb,
1236                     zfsvfs) == 0);
1237
1238                 VERIFY(dsl_prop_unregister(ds, "aclinherit",
1239                     acl_inherit_changed_cb, zfsvfs) == 0);
1240
1241                 VERIFY(dsl_prop_unregister(ds, "vscan",
1242                     vscan_changed_cb, zfsvfs) == 0);
1243         }
1244 }
1245
1246 #ifdef SECLABEL
1247 /*
1248  * Convert a decimal digit string to a uint64_t integer.
1249  */
1250 static int
1251 str_to_uint64(char *str, uint64_t *objnum)
1252 {
1253         uint64_t num = 0;
1254
1255         while (*str) {
1256                 if (*str < '0' || *str > '9')
1257                         return (EINVAL);
1258
1259                 num = num*10 + *str++ - '0';
1260         }
1261
1262         *objnum = num;
1263         return (0);
1264 }
1265
1266 /*
1267  * The boot path passed from the boot loader is in the form of
1268  * "rootpool-name/root-filesystem-object-number'. Convert this
1269  * string to a dataset name: "rootpool-name/root-filesystem-name".
1270  */
1271 static int
1272 zfs_parse_bootfs(char *bpath, char *outpath)
1273 {
1274         char *slashp;
1275         uint64_t objnum;
1276         int error;
1277
1278         if (*bpath == 0 || *bpath == '/')
1279                 return (EINVAL);
1280
1281         (void) strcpy(outpath, bpath);
1282
1283         slashp = strchr(bpath, '/');
1284
1285         /* if no '/', just return the pool name */
1286         if (slashp == NULL) {
1287                 return (0);
1288         }
1289
1290         /* if not a number, just return the root dataset name */
1291         if (str_to_uint64(slashp+1, &objnum)) {
1292                 return (0);
1293         }
1294
1295         *slashp = '\0';
1296         error = dsl_dsobj_to_dsname(bpath, objnum, outpath);
1297         *slashp = '/';
1298
1299         return (error);
1300 }
1301
1302 /*
1303  * zfs_check_global_label:
1304  *      Check that the hex label string is appropriate for the dataset
1305  *      being mounted into the global_zone proper.
1306  *
1307  *      Return an error if the hex label string is not default or
1308  *      admin_low/admin_high.  For admin_low labels, the corresponding
1309  *      dataset must be readonly.
1310  */
1311 int
1312 zfs_check_global_label(const char *dsname, const char *hexsl)
1313 {
1314         if (strcasecmp(hexsl, ZFS_MLSLABEL_DEFAULT) == 0)
1315                 return (0);
1316         if (strcasecmp(hexsl, ADMIN_HIGH) == 0)
1317                 return (0);
1318         if (strcasecmp(hexsl, ADMIN_LOW) == 0) {
1319                 /* must be readonly */
1320                 uint64_t rdonly;
1321
1322                 if (dsl_prop_get_integer(dsname,
1323                     zfs_prop_to_name(ZFS_PROP_READONLY), &rdonly, NULL))
1324                         return (EACCES);
1325                 return (rdonly ? 0 : EACCES);
1326         }
1327         return (EACCES);
1328 }
1329
1330 /*
1331  * zfs_mount_label_policy:
1332  *      Determine whether the mount is allowed according to MAC check.
1333  *      by comparing (where appropriate) label of the dataset against
1334  *      the label of the zone being mounted into.  If the dataset has
1335  *      no label, create one.
1336  *
1337  *      Returns:
1338  *               0 :    access allowed
1339  *              >0 :    error code, such as EACCES
1340  */
1341 static int
1342 zfs_mount_label_policy(vfs_t *vfsp, char *osname)
1343 {
1344         int             error, retv;
1345         zone_t          *mntzone = NULL;
1346         ts_label_t      *mnt_tsl;
1347         bslabel_t       *mnt_sl;
1348         bslabel_t       ds_sl;
1349         char            ds_hexsl[MAXNAMELEN];
1350
1351         retv = EACCES;                          /* assume the worst */
1352
1353         /*
1354          * Start by getting the dataset label if it exists.
1355          */
1356         error = dsl_prop_get(osname, zfs_prop_to_name(ZFS_PROP_MLSLABEL),
1357             1, sizeof (ds_hexsl), &ds_hexsl, NULL);
1358         if (error)
1359                 return (EACCES);
1360
1361         /*
1362          * If labeling is NOT enabled, then disallow the mount of datasets
1363          * which have a non-default label already.  No other label checks
1364          * are needed.
1365          */
1366         if (!is_system_labeled()) {
1367                 if (strcasecmp(ds_hexsl, ZFS_MLSLABEL_DEFAULT) == 0)
1368                         return (0);
1369                 return (EACCES);
1370         }
1371
1372         /*
1373          * Get the label of the mountpoint.  If mounting into the global
1374          * zone (i.e. mountpoint is not within an active zone and the
1375          * zoned property is off), the label must be default or
1376          * admin_low/admin_high only; no other checks are needed.
1377          */
1378         mntzone = zone_find_by_any_path(refstr_value(vfsp->vfs_mntpt), B_FALSE);
1379         if (mntzone->zone_id == GLOBAL_ZONEID) {
1380                 uint64_t zoned;
1381
1382                 zone_rele(mntzone);
1383
1384                 if (dsl_prop_get_integer(osname,
1385                     zfs_prop_to_name(ZFS_PROP_ZONED), &zoned, NULL))
1386                         return (EACCES);
1387                 if (!zoned)
1388                         return (zfs_check_global_label(osname, ds_hexsl));
1389                 else
1390                         /*
1391                          * This is the case of a zone dataset being mounted
1392                          * initially, before the zone has been fully created;
1393                          * allow this mount into global zone.
1394                          */
1395                         return (0);
1396         }
1397
1398         mnt_tsl = mntzone->zone_slabel;
1399         ASSERT(mnt_tsl != NULL);
1400         label_hold(mnt_tsl);
1401         mnt_sl = label2bslabel(mnt_tsl);
1402
1403         if (strcasecmp(ds_hexsl, ZFS_MLSLABEL_DEFAULT) == 0) {
1404                 /*
1405                  * The dataset doesn't have a real label, so fabricate one.
1406                  */
1407                 char *str = NULL;
1408
1409                 if (l_to_str_internal(mnt_sl, &str) == 0 &&
1410                     dsl_prop_set(osname, zfs_prop_to_name(ZFS_PROP_MLSLABEL),
1411                     ZPROP_SRC_LOCAL, 1, strlen(str) + 1, str) == 0)
1412                         retv = 0;
1413                 if (str != NULL)
1414                         kmem_free(str, strlen(str) + 1);
1415         } else if (hexstr_to_label(ds_hexsl, &ds_sl) == 0) {
1416                 /*
1417                  * Now compare labels to complete the MAC check.  If the
1418                  * labels are equal then allow access.  If the mountpoint
1419                  * label dominates the dataset label, allow readonly access.
1420                  * Otherwise, access is denied.
1421                  */
1422                 if (blequal(mnt_sl, &ds_sl))
1423                         retv = 0;
1424                 else if (bldominates(mnt_sl, &ds_sl)) {
1425                         vfs_setmntopt(vfsp, MNTOPT_RO, NULL, 0);
1426                         retv = 0;
1427                 }
1428         }
1429
1430         label_rele(mnt_tsl);
1431         zone_rele(mntzone);
1432         return (retv);
1433 }
1434 #endif  /* SECLABEL */
1435
1436 #ifdef OPENSOLARIS_MOUNTROOT
1437 static int
1438 zfs_mountroot(vfs_t *vfsp, enum whymountroot why)
1439 {
1440         int error = 0;
1441         static int zfsrootdone = 0;
1442         zfsvfs_t *zfsvfs = NULL;
1443         znode_t *zp = NULL;
1444         vnode_t *vp = NULL;
1445         char *zfs_bootfs;
1446         char *zfs_devid;
1447
1448         ASSERT(vfsp);
1449
1450         /*
1451          * The filesystem that we mount as root is defined in the
1452          * boot property "zfs-bootfs" with a format of
1453          * "poolname/root-dataset-objnum".
1454          */
1455         if (why == ROOT_INIT) {
1456                 if (zfsrootdone++)
1457                         return (EBUSY);
1458                 /*
1459                  * the process of doing a spa_load will require the
1460                  * clock to be set before we could (for example) do
1461                  * something better by looking at the timestamp on
1462                  * an uberblock, so just set it to -1.
1463                  */
1464                 clkset(-1);
1465
1466                 if ((zfs_bootfs = spa_get_bootprop("zfs-bootfs")) == NULL) {
1467                         cmn_err(CE_NOTE, "spa_get_bootfs: can not get "
1468                             "bootfs name");
1469                         return (EINVAL);
1470                 }
1471                 zfs_devid = spa_get_bootprop("diskdevid");
1472                 error = spa_import_rootpool(rootfs.bo_name, zfs_devid);
1473                 if (zfs_devid)
1474                         spa_free_bootprop(zfs_devid);
1475                 if (error) {
1476                         spa_free_bootprop(zfs_bootfs);
1477                         cmn_err(CE_NOTE, "spa_import_rootpool: error %d",
1478                             error);
1479                         return (error);
1480                 }
1481                 if (error = zfs_parse_bootfs(zfs_bootfs, rootfs.bo_name)) {
1482                         spa_free_bootprop(zfs_bootfs);
1483                         cmn_err(CE_NOTE, "zfs_parse_bootfs: error %d",
1484                             error);
1485                         return (error);
1486                 }
1487
1488                 spa_free_bootprop(zfs_bootfs);
1489
1490                 if (error = vfs_lock(vfsp))
1491                         return (error);
1492
1493                 if (error = zfs_domount(vfsp, rootfs.bo_name)) {
1494                         cmn_err(CE_NOTE, "zfs_domount: error %d", error);
1495                         goto out;
1496                 }
1497
1498                 zfsvfs = (zfsvfs_t *)vfsp->vfs_data;
1499                 ASSERT(zfsvfs);
1500                 if (error = zfs_zget(zfsvfs, zfsvfs->z_root, &zp)) {
1501                         cmn_err(CE_NOTE, "zfs_zget: error %d", error);
1502                         goto out;
1503                 }
1504
1505                 vp = ZTOV(zp);
1506                 mutex_enter(&vp->v_lock);
1507                 vp->v_flag |= VROOT;
1508                 mutex_exit(&vp->v_lock);
1509                 rootvp = vp;
1510
1511                 /*
1512                  * Leave rootvp held.  The root file system is never unmounted.
1513                  */
1514
1515                 vfs_add((struct vnode *)0, vfsp,
1516                     (vfsp->vfs_flag & VFS_RDONLY) ? MS_RDONLY : 0);
1517 out:
1518                 vfs_unlock(vfsp);
1519                 return (error);
1520         } else if (why == ROOT_REMOUNT) {
1521                 readonly_changed_cb(vfsp->vfs_data, B_FALSE);
1522                 vfsp->vfs_flag |= VFS_REMOUNT;
1523
1524                 /* refresh mount options */
1525                 zfs_unregister_callbacks(vfsp->vfs_data);
1526                 return (zfs_register_callbacks(vfsp));
1527
1528         } else if (why == ROOT_UNMOUNT) {
1529                 zfs_unregister_callbacks((zfsvfs_t *)vfsp->vfs_data);
1530                 (void) zfs_sync(vfsp, 0, 0);
1531                 return (0);
1532         }
1533
1534         /*
1535          * if "why" is equal to anything else other than ROOT_INIT,
1536          * ROOT_REMOUNT, or ROOT_UNMOUNT, we do not support it.
1537          */
1538         return (ENOTSUP);
1539 }
1540 #endif  /* OPENSOLARIS_MOUNTROOT */
1541
1542 static int
1543 getpoolname(const char *osname, char *poolname)
1544 {
1545         char *p;
1546
1547         p = strchr(osname, '/');
1548         if (p == NULL) {
1549                 if (strlen(osname) >= MAXNAMELEN)
1550                         return (ENAMETOOLONG);
1551                 (void) strcpy(poolname, osname);
1552         } else {
1553                 if (p - osname >= MAXNAMELEN)
1554                         return (ENAMETOOLONG);
1555                 (void) strncpy(poolname, osname, p - osname);
1556                 poolname[p - osname] = '\0';
1557         }
1558         return (0);
1559 }
1560
1561 /*ARGSUSED*/
1562 static int
1563 zfs_mount(vfs_t *vfsp)
1564 {
1565         kthread_t       *td = curthread;
1566         vnode_t         *mvp = vfsp->mnt_vnodecovered;
1567         cred_t          *cr = td->td_ucred;
1568         char            *osname;
1569         int             error = 0;
1570         int             canwrite;
1571
1572         if (!prison_allow(td->td_ucred, PR_ALLOW_MOUNT_ZFS))
1573                 return (EPERM);
1574
1575         if (vfs_getopt(vfsp->mnt_optnew, "from", (void **)&osname, NULL))
1576                 return (EINVAL);
1577
1578         /*
1579          * If full-owner-access is enabled and delegated administration is
1580          * turned on, we must set nosuid.
1581          */
1582         if (zfs_super_owner &&
1583             dsl_deleg_access(osname, ZFS_DELEG_PERM_MOUNT, cr) != ECANCELED) {
1584                 secpolicy_fs_mount_clearopts(cr, vfsp);
1585         }
1586
1587         /*
1588          * Check for mount privilege?
1589          *
1590          * If we don't have privilege then see if
1591          * we have local permission to allow it
1592          */
1593         error = secpolicy_fs_mount(cr, mvp, vfsp);
1594         if (error) {
1595                 if (dsl_deleg_access(osname, ZFS_DELEG_PERM_MOUNT, cr) != 0)
1596                         goto out;
1597
1598                 if (!(vfsp->vfs_flag & MS_REMOUNT)) {
1599                         vattr_t         vattr;
1600
1601                         /*
1602                          * Make sure user is the owner of the mount point
1603                          * or has sufficient privileges.
1604                          */
1605
1606                         vattr.va_mask = AT_UID;
1607
1608                         vn_lock(mvp, LK_SHARED | LK_RETRY);
1609                         if (VOP_GETATTR(mvp, &vattr, cr)) {
1610                                 VOP_UNLOCK(mvp, 0);
1611                                 goto out;
1612                         }
1613
1614                         if (secpolicy_vnode_owner(mvp, cr, vattr.va_uid) != 0 &&
1615                             VOP_ACCESS(mvp, VWRITE, cr, td) != 0) {
1616                                 VOP_UNLOCK(mvp, 0);
1617                                 goto out;
1618                         }
1619                         VOP_UNLOCK(mvp, 0);
1620                 }
1621
1622                 secpolicy_fs_mount_clearopts(cr, vfsp);
1623         }
1624
1625         /*
1626          * Refuse to mount a filesystem if we are in a local zone and the
1627          * dataset is not visible.
1628          */
1629         if (!INGLOBALZONE(curthread) &&
1630             (!zone_dataset_visible(osname, &canwrite) || !canwrite)) {
1631                 error = EPERM;
1632                 goto out;
1633         }
1634
1635 #ifdef SECLABEL
1636         error = zfs_mount_label_policy(vfsp, osname);
1637         if (error)
1638                 goto out;
1639 #endif
1640
1641         vfsp->vfs_flag |= MNT_NFS4ACLS;
1642
1643         /*
1644          * When doing a remount, we simply refresh our temporary properties
1645          * according to those options set in the current VFS options.
1646          */
1647         if (vfsp->vfs_flag & MS_REMOUNT) {
1648                 /* refresh mount options */
1649                 zfs_unregister_callbacks(vfsp->vfs_data);
1650                 error = zfs_register_callbacks(vfsp);
1651                 goto out;
1652         }
1653
1654         /* Initial root mount: try hard to import the requested root pool. */
1655         if ((vfsp->vfs_flag & MNT_ROOTFS) != 0 &&
1656             (vfsp->vfs_flag & MNT_UPDATE) == 0) {
1657                 char pname[MAXNAMELEN];
1658
1659                 error = getpoolname(osname, pname);
1660                 if (error == 0)
1661                         error = spa_import_rootpool(pname);
1662                 if (error)
1663                         goto out;
1664         }
1665         DROP_GIANT();
1666         error = zfs_domount(vfsp, osname);
1667         PICKUP_GIANT();
1668
1669 #ifdef sun
1670         /*
1671          * Add an extra VFS_HOLD on our parent vfs so that it can't
1672          * disappear due to a forced unmount.
1673          */
1674         if (error == 0 && ((zfsvfs_t *)vfsp->vfs_data)->z_issnap)
1675                 VFS_HOLD(mvp->v_vfsp);
1676 #endif  /* sun */
1677
1678 out:
1679         return (error);
1680 }
1681
1682 static int
1683 zfs_statfs(vfs_t *vfsp, struct statfs *statp)
1684 {
1685         zfsvfs_t *zfsvfs = vfsp->vfs_data;
1686         uint64_t refdbytes, availbytes, usedobjs, availobjs;
1687
1688         statp->f_version = STATFS_VERSION;
1689
1690         ZFS_ENTER(zfsvfs);
1691
1692         dmu_objset_space(zfsvfs->z_os,
1693             &refdbytes, &availbytes, &usedobjs, &availobjs);
1694
1695         /*
1696          * The underlying storage pool actually uses multiple block sizes.
1697          * We report the fragsize as the smallest block size we support,
1698          * and we report our blocksize as the filesystem's maximum blocksize.
1699          */
1700         statp->f_bsize = SPA_MINBLOCKSIZE;
1701         statp->f_iosize = zfsvfs->z_vfs->mnt_stat.f_iosize;
1702
1703         /*
1704          * The following report "total" blocks of various kinds in the
1705          * file system, but reported in terms of f_frsize - the
1706          * "fragment" size.
1707          */
1708
1709         statp->f_blocks = (refdbytes + availbytes) >> SPA_MINBLOCKSHIFT;
1710         statp->f_bfree = availbytes / statp->f_bsize;
1711         statp->f_bavail = statp->f_bfree; /* no root reservation */
1712
1713         /*
1714          * statvfs() should really be called statufs(), because it assumes
1715          * static metadata.  ZFS doesn't preallocate files, so the best
1716          * we can do is report the max that could possibly fit in f_files,
1717          * and that minus the number actually used in f_ffree.
1718          * For f_ffree, report the smaller of the number of object available
1719          * and the number of blocks (each object will take at least a block).
1720          */
1721         statp->f_ffree = MIN(availobjs, statp->f_bfree);
1722         statp->f_files = statp->f_ffree + usedobjs;
1723
1724         /*
1725          * We're a zfs filesystem.
1726          */
1727         (void) strlcpy(statp->f_fstypename, "zfs", sizeof(statp->f_fstypename));
1728
1729         strlcpy(statp->f_mntfromname, vfsp->mnt_stat.f_mntfromname,
1730             sizeof(statp->f_mntfromname));
1731         strlcpy(statp->f_mntonname, vfsp->mnt_stat.f_mntonname,
1732             sizeof(statp->f_mntonname));
1733
1734         statp->f_namemax = ZFS_MAXNAMELEN;
1735
1736         ZFS_EXIT(zfsvfs);
1737         return (0);
1738 }
1739
1740 int
1741 zfs_vnode_lock(vnode_t *vp, int flags)
1742 {
1743         int error;
1744
1745         ASSERT(vp != NULL);
1746
1747         error = vn_lock(vp, flags);
1748         return (error);
1749 }
1750
1751 static int
1752 zfs_root(vfs_t *vfsp, int flags, vnode_t **vpp)
1753 {
1754         zfsvfs_t *zfsvfs = vfsp->vfs_data;
1755         znode_t *rootzp;
1756         int error;
1757
1758         ZFS_ENTER_NOERROR(zfsvfs);
1759
1760         error = zfs_zget(zfsvfs, zfsvfs->z_root, &rootzp);
1761         if (error == 0)
1762                 *vpp = ZTOV(rootzp);
1763
1764         ZFS_EXIT(zfsvfs);
1765
1766         if (error == 0) {
1767                 error = zfs_vnode_lock(*vpp, flags);
1768                 if (error == 0)
1769                         (*vpp)->v_vflag |= VV_ROOT;
1770         }
1771         if (error != 0)
1772                 *vpp = NULL;
1773
1774         return (error);
1775 }
1776
1777 /*
1778  * Teardown the zfsvfs::z_os.
1779  *
1780  * Note, if 'unmounting' if FALSE, we return with the 'z_teardown_lock'
1781  * and 'z_teardown_inactive_lock' held.
1782  */
1783 static int
1784 zfsvfs_teardown(zfsvfs_t *zfsvfs, boolean_t unmounting)
1785 {
1786         znode_t *zp;
1787
1788         rrw_enter(&zfsvfs->z_teardown_lock, RW_WRITER, FTAG);
1789
1790         if (!unmounting) {
1791                 /*
1792                  * We purge the parent filesystem's vfsp as the parent
1793                  * filesystem and all of its snapshots have their vnode's
1794                  * v_vfsp set to the parent's filesystem's vfsp.  Note,
1795                  * 'z_parent' is self referential for non-snapshots.
1796                  */
1797                 (void) dnlc_purge_vfsp(zfsvfs->z_parent->z_vfs, 0);
1798 #ifdef FREEBSD_NAMECACHE
1799                 cache_purgevfs(zfsvfs->z_parent->z_vfs);
1800 #endif
1801         }
1802
1803         /*
1804          * Close the zil. NB: Can't close the zil while zfs_inactive
1805          * threads are blocked as zil_close can call zfs_inactive.
1806          */
1807         if (zfsvfs->z_log) {
1808                 zil_close(zfsvfs->z_log);
1809                 zfsvfs->z_log = NULL;
1810         }
1811
1812         rw_enter(&zfsvfs->z_teardown_inactive_lock, RW_WRITER);
1813
1814         /*
1815          * If we are not unmounting (ie: online recv) and someone already
1816          * unmounted this file system while we were doing the switcheroo,
1817          * or a reopen of z_os failed then just bail out now.
1818          */
1819         if (!unmounting && (zfsvfs->z_unmounted || zfsvfs->z_os == NULL)) {
1820                 rw_exit(&zfsvfs->z_teardown_inactive_lock);
1821                 rrw_exit(&zfsvfs->z_teardown_lock, FTAG);
1822                 return (EIO);
1823         }
1824
1825         /*
1826          * At this point there are no vops active, and any new vops will
1827          * fail with EIO since we have z_teardown_lock for writer (only
1828          * relavent for forced unmount).
1829          *
1830          * Release all holds on dbufs.
1831          */
1832         mutex_enter(&zfsvfs->z_znodes_lock);
1833         for (zp = list_head(&zfsvfs->z_all_znodes); zp != NULL;
1834             zp = list_next(&zfsvfs->z_all_znodes, zp))
1835                 if (zp->z_sa_hdl) {
1836                         ASSERT(ZTOV(zp)->v_count >= 0);
1837                         zfs_znode_dmu_fini(zp);
1838                 }
1839         mutex_exit(&zfsvfs->z_znodes_lock);
1840
1841         /*
1842          * If we are unmounting, set the unmounted flag and let new vops
1843          * unblock.  zfs_inactive will have the unmounted behavior, and all
1844          * other vops will fail with EIO.
1845          */
1846         if (unmounting) {
1847                 zfsvfs->z_unmounted = B_TRUE;
1848                 rrw_exit(&zfsvfs->z_teardown_lock, FTAG);
1849                 rw_exit(&zfsvfs->z_teardown_inactive_lock);
1850         }
1851
1852         /*
1853          * z_os will be NULL if there was an error in attempting to reopen
1854          * zfsvfs, so just return as the properties had already been
1855          * unregistered and cached data had been evicted before.
1856          */
1857         if (zfsvfs->z_os == NULL)
1858                 return (0);
1859
1860         /*
1861          * Unregister properties.
1862          */
1863         zfs_unregister_callbacks(zfsvfs);
1864
1865         /*
1866          * Evict cached data
1867          */
1868         if (dsl_dataset_is_dirty(dmu_objset_ds(zfsvfs->z_os)) &&
1869             !(zfsvfs->z_vfs->vfs_flag & VFS_RDONLY))
1870                 txg_wait_synced(dmu_objset_pool(zfsvfs->z_os), 0);
1871         (void) dmu_objset_evict_dbufs(zfsvfs->z_os);
1872
1873         return (0);
1874 }
1875
1876 /*ARGSUSED*/
1877 static int
1878 zfs_umount(vfs_t *vfsp, int fflag)
1879 {
1880         kthread_t *td = curthread;
1881         zfsvfs_t *zfsvfs = vfsp->vfs_data;
1882         objset_t *os;
1883         cred_t *cr = td->td_ucred;
1884         int ret;
1885
1886         ret = secpolicy_fs_unmount(cr, vfsp);
1887         if (ret) {
1888                 if (dsl_deleg_access((char *)refstr_value(vfsp->vfs_resource),
1889                     ZFS_DELEG_PERM_MOUNT, cr))
1890                         return (ret);
1891         }
1892
1893         /*
1894          * We purge the parent filesystem's vfsp as the parent filesystem
1895          * and all of its snapshots have their vnode's v_vfsp set to the
1896          * parent's filesystem's vfsp.  Note, 'z_parent' is self
1897          * referential for non-snapshots.
1898          */
1899         (void) dnlc_purge_vfsp(zfsvfs->z_parent->z_vfs, 0);
1900
1901         /*
1902          * Unmount any snapshots mounted under .zfs before unmounting the
1903          * dataset itself.
1904          */
1905         if (zfsvfs->z_ctldir != NULL) {
1906                 if ((ret = zfsctl_umount_snapshots(vfsp, fflag, cr)) != 0)
1907                         return (ret);
1908                 ret = vflush(vfsp, 0, 0, td);
1909                 ASSERT(ret == EBUSY);
1910                 if (!(fflag & MS_FORCE)) {
1911                         if (zfsvfs->z_ctldir->v_count > 1)
1912                                 return (EBUSY);
1913                         ASSERT(zfsvfs->z_ctldir->v_count == 1);
1914                 }
1915                 zfsctl_destroy(zfsvfs);
1916                 ASSERT(zfsvfs->z_ctldir == NULL);
1917         }
1918
1919         if (fflag & MS_FORCE) {
1920                 /*
1921                  * Mark file system as unmounted before calling
1922                  * vflush(FORCECLOSE). This way we ensure no future vnops
1923                  * will be called and risk operating on DOOMED vnodes.
1924                  */
1925                 rrw_enter(&zfsvfs->z_teardown_lock, RW_WRITER, FTAG);
1926                 zfsvfs->z_unmounted = B_TRUE;
1927                 rrw_exit(&zfsvfs->z_teardown_lock, FTAG);
1928         }
1929
1930         /*
1931          * Flush all the files.
1932          */
1933         ret = vflush(vfsp, 1, (fflag & MS_FORCE) ? FORCECLOSE : 0, td);
1934         if (ret != 0) {
1935                 if (!zfsvfs->z_issnap) {
1936                         zfsctl_create(zfsvfs);
1937                         ASSERT(zfsvfs->z_ctldir != NULL);
1938                 }
1939                 return (ret);
1940         }
1941
1942         if (!(fflag & MS_FORCE)) {
1943                 /*
1944                  * Check the number of active vnodes in the file system.
1945                  * Our count is maintained in the vfs structure, but the
1946                  * number is off by 1 to indicate a hold on the vfs
1947                  * structure itself.
1948                  *
1949                  * The '.zfs' directory maintains a reference of its
1950                  * own, and any active references underneath are
1951                  * reflected in the vnode count.
1952                  */
1953                 if (zfsvfs->z_ctldir == NULL) {
1954                         if (vfsp->vfs_count > 1)
1955                                 return (EBUSY);
1956                 } else {
1957                         if (vfsp->vfs_count > 2 ||
1958                             zfsvfs->z_ctldir->v_count > 1)
1959                                 return (EBUSY);
1960                 }
1961         }
1962
1963         VERIFY(zfsvfs_teardown(zfsvfs, B_TRUE) == 0);
1964         os = zfsvfs->z_os;
1965
1966         /*
1967          * z_os will be NULL if there was an error in
1968          * attempting to reopen zfsvfs.
1969          */
1970         if (os != NULL) {
1971                 /*
1972                  * Unset the objset user_ptr.
1973                  */
1974                 mutex_enter(&os->os_user_ptr_lock);
1975                 dmu_objset_set_user(os, NULL);
1976                 mutex_exit(&os->os_user_ptr_lock);
1977
1978                 /*
1979                  * Finally release the objset
1980                  */
1981                 dmu_objset_disown(os, zfsvfs);
1982         }
1983
1984         /*
1985          * We can now safely destroy the '.zfs' directory node.
1986          */
1987         if (zfsvfs->z_ctldir != NULL)
1988                 zfsctl_destroy(zfsvfs);
1989         if (zfsvfs->z_issnap) {
1990                 vnode_t *svp = vfsp->mnt_vnodecovered;
1991
1992                 if (svp->v_count >= 2)
1993                         VN_RELE(svp);
1994         }
1995         zfs_freevfs(vfsp);
1996
1997         return (0);
1998 }
1999
2000 static int
2001 zfs_vget(vfs_t *vfsp, ino_t ino, int flags, vnode_t **vpp)
2002 {
2003         zfsvfs_t        *zfsvfs = vfsp->vfs_data;
2004         znode_t         *zp;
2005         int             err;
2006
2007         /*
2008          * zfs_zget() can't operate on virtual entries like .zfs/ or
2009          * .zfs/snapshot/ directories, that's why we return EOPNOTSUPP.
2010          * This will make NFS to switch to LOOKUP instead of using VGET.
2011          */
2012         if (ino == ZFSCTL_INO_ROOT || ino == ZFSCTL_INO_SNAPDIR ||
2013             (zfsvfs->z_shares_dir != 0 && ino == zfsvfs->z_shares_dir))
2014                 return (EOPNOTSUPP);
2015
2016         ZFS_ENTER(zfsvfs);
2017         err = zfs_zget(zfsvfs, ino, &zp);
2018         if (err == 0 && zp->z_unlinked) {
2019                 VN_RELE(ZTOV(zp));
2020                 err = EINVAL;
2021         }
2022         if (err == 0)
2023                 *vpp = ZTOV(zp);
2024         ZFS_EXIT(zfsvfs);
2025         if (err == 0)
2026                 err = zfs_vnode_lock(*vpp, flags);
2027         if (err != 0)
2028                 *vpp = NULL;
2029         else
2030                 (*vpp)->v_hash = ino;
2031         return (err);
2032 }
2033
2034 static int
2035 zfs_checkexp(vfs_t *vfsp, struct sockaddr *nam, int *extflagsp,
2036     struct ucred **credanonp, int *numsecflavors, int **secflavors)
2037 {
2038         zfsvfs_t *zfsvfs = vfsp->vfs_data;
2039
2040         /*
2041          * If this is regular file system vfsp is the same as
2042          * zfsvfs->z_parent->z_vfs, but if it is snapshot,
2043          * zfsvfs->z_parent->z_vfs represents parent file system
2044          * which we have to use here, because only this file system
2045          * has mnt_export configured.
2046          */
2047         return (vfs_stdcheckexp(zfsvfs->z_parent->z_vfs, nam, extflagsp,
2048             credanonp, numsecflavors, secflavors));
2049 }
2050
2051 CTASSERT(SHORT_FID_LEN <= sizeof(struct fid));
2052 CTASSERT(LONG_FID_LEN <= sizeof(struct fid));
2053
2054 static int
2055 zfs_fhtovp(vfs_t *vfsp, fid_t *fidp, int flags, vnode_t **vpp)
2056 {
2057         zfsvfs_t        *zfsvfs = vfsp->vfs_data;
2058         znode_t         *zp;
2059         uint64_t        object = 0;
2060         uint64_t        fid_gen = 0;
2061         uint64_t        gen_mask;
2062         uint64_t        zp_gen;
2063         int             i, err;
2064
2065         *vpp = NULL;
2066
2067         ZFS_ENTER(zfsvfs);
2068
2069         /*
2070          * On FreeBSD we can get snapshot's mount point or its parent file
2071          * system mount point depending if snapshot is already mounted or not.
2072          */
2073         if (zfsvfs->z_parent == zfsvfs && fidp->fid_len == LONG_FID_LEN) {
2074                 zfid_long_t     *zlfid = (zfid_long_t *)fidp;
2075                 uint64_t        objsetid = 0;
2076                 uint64_t        setgen = 0;
2077
2078                 for (i = 0; i < sizeof (zlfid->zf_setid); i++)
2079                         objsetid |= ((uint64_t)zlfid->zf_setid[i]) << (8 * i);
2080
2081                 for (i = 0; i < sizeof (zlfid->zf_setgen); i++)
2082                         setgen |= ((uint64_t)zlfid->zf_setgen[i]) << (8 * i);
2083
2084                 ZFS_EXIT(zfsvfs);
2085
2086                 err = zfsctl_lookup_objset(vfsp, objsetid, &zfsvfs);
2087                 if (err)
2088                         return (EINVAL);
2089                 ZFS_ENTER(zfsvfs);
2090         }
2091
2092         if (fidp->fid_len == SHORT_FID_LEN || fidp->fid_len == LONG_FID_LEN) {
2093                 zfid_short_t    *zfid = (zfid_short_t *)fidp;
2094
2095                 for (i = 0; i < sizeof (zfid->zf_object); i++)
2096                         object |= ((uint64_t)zfid->zf_object[i]) << (8 * i);
2097
2098                 for (i = 0; i < sizeof (zfid->zf_gen); i++)
2099                         fid_gen |= ((uint64_t)zfid->zf_gen[i]) << (8 * i);
2100         } else {
2101                 ZFS_EXIT(zfsvfs);
2102                 return (EINVAL);
2103         }
2104
2105         /*
2106          * A zero fid_gen means we are in .zfs or the .zfs/snapshot
2107          * directory tree. If the object == zfsvfs->z_shares_dir, then
2108          * we are in the .zfs/shares directory tree.
2109          */
2110         if ((fid_gen == 0 &&
2111              (object == ZFSCTL_INO_ROOT || object == ZFSCTL_INO_SNAPDIR)) ||
2112             (zfsvfs->z_shares_dir != 0 && object == zfsvfs->z_shares_dir)) {
2113                 *vpp = zfsvfs->z_ctldir;
2114                 ASSERT(*vpp != NULL);
2115                 if (object == ZFSCTL_INO_SNAPDIR) {
2116                         VERIFY(zfsctl_root_lookup(*vpp, "snapshot", vpp, NULL,
2117                             0, NULL, NULL, NULL, NULL, NULL) == 0);
2118                 } else if (object == zfsvfs->z_shares_dir) {
2119                         VERIFY(zfsctl_root_lookup(*vpp, "shares", vpp, NULL,
2120                             0, NULL, NULL, NULL, NULL, NULL) == 0);
2121                 } else {
2122                         VN_HOLD(*vpp);
2123                 }
2124                 ZFS_EXIT(zfsvfs);
2125                 err = zfs_vnode_lock(*vpp, flags);
2126                 if (err != 0)
2127                         *vpp = NULL;
2128                 return (err);
2129         }
2130
2131         gen_mask = -1ULL >> (64 - 8 * i);
2132
2133         dprintf("getting %llu [%u mask %llx]\n", object, fid_gen, gen_mask);
2134         if (err = zfs_zget(zfsvfs, object, &zp)) {
2135                 ZFS_EXIT(zfsvfs);
2136                 return (err);
2137         }
2138         (void) sa_lookup(zp->z_sa_hdl, SA_ZPL_GEN(zfsvfs), &zp_gen,
2139             sizeof (uint64_t));
2140         zp_gen = zp_gen & gen_mask;
2141         if (zp_gen == 0)
2142                 zp_gen = 1;
2143         if (zp->z_unlinked || zp_gen != fid_gen) {
2144                 dprintf("znode gen (%u) != fid gen (%u)\n", zp_gen, fid_gen);
2145                 VN_RELE(ZTOV(zp));
2146                 ZFS_EXIT(zfsvfs);
2147                 return (EINVAL);
2148         }
2149
2150         *vpp = ZTOV(zp);
2151         ZFS_EXIT(zfsvfs);
2152         err = zfs_vnode_lock(*vpp, flags | LK_RETRY);
2153         if (err == 0)
2154                 vnode_create_vobject(*vpp, zp->z_size, curthread);
2155         else
2156                 *vpp = NULL;
2157         return (err);
2158 }
2159
2160 /*
2161  * Block out VOPs and close zfsvfs_t::z_os
2162  *
2163  * Note, if successful, then we return with the 'z_teardown_lock' and
2164  * 'z_teardown_inactive_lock' write held.
2165  */
2166 int
2167 zfs_suspend_fs(zfsvfs_t *zfsvfs)
2168 {
2169         int error;
2170
2171         if ((error = zfsvfs_teardown(zfsvfs, B_FALSE)) != 0)
2172                 return (error);
2173         dmu_objset_disown(zfsvfs->z_os, zfsvfs);
2174
2175         return (0);
2176 }
2177
2178 /*
2179  * Reopen zfsvfs_t::z_os and release VOPs.
2180  */
2181 int
2182 zfs_resume_fs(zfsvfs_t *zfsvfs, const char *osname)
2183 {
2184         int err;
2185
2186         ASSERT(RRW_WRITE_HELD(&zfsvfs->z_teardown_lock));
2187         ASSERT(RW_WRITE_HELD(&zfsvfs->z_teardown_inactive_lock));
2188
2189         err = dmu_objset_own(osname, DMU_OST_ZFS, B_FALSE, zfsvfs,
2190             &zfsvfs->z_os);
2191         if (err) {
2192                 zfsvfs->z_os = NULL;
2193         } else {
2194                 znode_t *zp;
2195                 uint64_t sa_obj = 0;
2196
2197                 /*
2198                  * Make sure version hasn't changed
2199                  */
2200
2201                 err = zfs_get_zplprop(zfsvfs->z_os, ZFS_PROP_VERSION,
2202                     &zfsvfs->z_version);
2203
2204                 if (err)
2205                         goto bail;
2206
2207                 err = zap_lookup(zfsvfs->z_os, MASTER_NODE_OBJ,
2208                     ZFS_SA_ATTRS, 8, 1, &sa_obj);
2209
2210                 if (err && zfsvfs->z_version >= ZPL_VERSION_SA)
2211                         goto bail;
2212
2213                 if ((err = sa_setup(zfsvfs->z_os, sa_obj,
2214                     zfs_attr_table,  ZPL_END, &zfsvfs->z_attr_table)) != 0)
2215                         goto bail;
2216
2217                 if (zfsvfs->z_version >= ZPL_VERSION_SA)
2218                         sa_register_update_callback(zfsvfs->z_os,
2219                             zfs_sa_upgrade);
2220
2221                 VERIFY(zfsvfs_setup(zfsvfs, B_FALSE) == 0);
2222
2223                 zfs_set_fuid_feature(zfsvfs);
2224
2225                 /*
2226                  * Attempt to re-establish all the active znodes with
2227                  * their dbufs.  If a zfs_rezget() fails, then we'll let
2228                  * any potential callers discover that via ZFS_ENTER_VERIFY_VP
2229                  * when they try to use their znode.
2230                  */
2231                 mutex_enter(&zfsvfs->z_znodes_lock);
2232                 for (zp = list_head(&zfsvfs->z_all_znodes); zp;
2233                     zp = list_next(&zfsvfs->z_all_znodes, zp)) {
2234                         (void) zfs_rezget(zp);
2235                 }
2236                 mutex_exit(&zfsvfs->z_znodes_lock);
2237         }
2238
2239 bail:
2240         /* release the VOPs */
2241         rw_exit(&zfsvfs->z_teardown_inactive_lock);
2242         rrw_exit(&zfsvfs->z_teardown_lock, FTAG);
2243
2244         if (err) {
2245                 /*
2246                  * Since we couldn't reopen zfsvfs::z_os, or
2247                  * setup the sa framework force unmount this file system.
2248                  */
2249                 if (vn_vfswlock(zfsvfs->z_vfs->vfs_vnodecovered) == 0)
2250                         (void) dounmount(zfsvfs->z_vfs, MS_FORCE, curthread);
2251         }
2252         return (err);
2253 }
2254
2255 static void
2256 zfs_freevfs(vfs_t *vfsp)
2257 {
2258         zfsvfs_t *zfsvfs = vfsp->vfs_data;
2259
2260 #ifdef sun
2261         /*
2262          * If this is a snapshot, we have an extra VFS_HOLD on our parent
2263          * from zfs_mount().  Release it here.  If we came through
2264          * zfs_mountroot() instead, we didn't grab an extra hold, so
2265          * skip the VFS_RELE for rootvfs.
2266          */
2267         if (zfsvfs->z_issnap && (vfsp != rootvfs))
2268                 VFS_RELE(zfsvfs->z_parent->z_vfs);
2269 #endif  /* sun */
2270
2271         zfsvfs_free(zfsvfs);
2272
2273         atomic_add_32(&zfs_active_fs_count, -1);
2274 }
2275
2276 #ifdef __i386__
2277 static int desiredvnodes_backup;
2278 #endif
2279
2280 static void
2281 zfs_vnodes_adjust(void)
2282 {
2283 #ifdef __i386__
2284         int newdesiredvnodes;
2285
2286         desiredvnodes_backup = desiredvnodes;
2287
2288         /*
2289          * We calculate newdesiredvnodes the same way it is done in
2290          * vntblinit(). If it is equal to desiredvnodes, it means that
2291          * it wasn't tuned by the administrator and we can tune it down.
2292          */
2293         newdesiredvnodes = min(maxproc + cnt.v_page_count / 4, 2 *
2294             vm_kmem_size / (5 * (sizeof(struct vm_object) +
2295             sizeof(struct vnode))));
2296         if (newdesiredvnodes == desiredvnodes)
2297                 desiredvnodes = (3 * newdesiredvnodes) / 4;
2298 #endif
2299 }
2300
2301 static void
2302 zfs_vnodes_adjust_back(void)
2303 {
2304
2305 #ifdef __i386__
2306         desiredvnodes = desiredvnodes_backup;
2307 #endif
2308 }
2309
2310 void
2311 zfs_init(void)
2312 {
2313
2314         printf("ZFS filesystem version: " ZPL_VERSION_STRING "\n");
2315
2316         /*
2317          * Initialize .zfs directory structures
2318          */
2319         zfsctl_init();
2320
2321         /*
2322          * Initialize znode cache, vnode ops, etc...
2323          */
2324         zfs_znode_init();
2325
2326         /*
2327          * Reduce number of vnodes. Originally number of vnodes is calculated
2328          * with UFS inode in mind. We reduce it here, because it's too big for
2329          * ZFS/i386.
2330          */
2331         zfs_vnodes_adjust();
2332
2333         dmu_objset_register_type(DMU_OST_ZFS, zfs_space_delta_cb);
2334 }
2335
2336 void
2337 zfs_fini(void)
2338 {
2339         zfsctl_fini();
2340         zfs_znode_fini();
2341         zfs_vnodes_adjust_back();
2342 }
2343
2344 int
2345 zfs_busy(void)
2346 {
2347         return (zfs_active_fs_count != 0);
2348 }
2349
2350 int
2351 zfs_set_version(zfsvfs_t *zfsvfs, uint64_t newvers)
2352 {
2353         int error;
2354         objset_t *os = zfsvfs->z_os;
2355         dmu_tx_t *tx;
2356
2357         if (newvers < ZPL_VERSION_INITIAL || newvers > ZPL_VERSION)
2358                 return (EINVAL);
2359
2360         if (newvers < zfsvfs->z_version)
2361                 return (EINVAL);
2362
2363         if (zfs_spa_version_map(newvers) >
2364             spa_version(dmu_objset_spa(zfsvfs->z_os)))
2365                 return (ENOTSUP);
2366
2367         tx = dmu_tx_create(os);
2368         dmu_tx_hold_zap(tx, MASTER_NODE_OBJ, B_FALSE, ZPL_VERSION_STR);
2369         if (newvers >= ZPL_VERSION_SA && !zfsvfs->z_use_sa) {
2370                 dmu_tx_hold_zap(tx, MASTER_NODE_OBJ, B_TRUE,
2371                     ZFS_SA_ATTRS);
2372                 dmu_tx_hold_zap(tx, DMU_NEW_OBJECT, FALSE, NULL);
2373         }
2374         error = dmu_tx_assign(tx, TXG_WAIT);
2375         if (error) {
2376                 dmu_tx_abort(tx);
2377                 return (error);
2378         }
2379
2380         error = zap_update(os, MASTER_NODE_OBJ, ZPL_VERSION_STR,
2381             8, 1, &newvers, tx);
2382
2383         if (error) {
2384                 dmu_tx_commit(tx);
2385                 return (error);
2386         }
2387
2388         if (newvers >= ZPL_VERSION_SA && !zfsvfs->z_use_sa) {
2389                 uint64_t sa_obj;
2390
2391                 ASSERT3U(spa_version(dmu_objset_spa(zfsvfs->z_os)), >=,
2392                     SPA_VERSION_SA);
2393                 sa_obj = zap_create(os, DMU_OT_SA_MASTER_NODE,
2394                     DMU_OT_NONE, 0, tx);
2395
2396                 error = zap_add(os, MASTER_NODE_OBJ,
2397                     ZFS_SA_ATTRS, 8, 1, &sa_obj, tx);
2398                 ASSERT0(error);
2399
2400                 VERIFY(0 == sa_set_sa_object(os, sa_obj));
2401                 sa_register_update_callback(os, zfs_sa_upgrade);
2402         }
2403
2404         spa_history_log_internal(LOG_DS_UPGRADE,
2405             dmu_objset_spa(os), tx, "oldver=%llu newver=%llu dataset = %llu",
2406             zfsvfs->z_version, newvers, dmu_objset_id(os));
2407
2408         dmu_tx_commit(tx);
2409
2410         zfsvfs->z_version = newvers;
2411
2412         zfs_set_fuid_feature(zfsvfs);
2413
2414         return (0);
2415 }
2416
2417 /*
2418  * Read a property stored within the master node.
2419  */
2420 int
2421 zfs_get_zplprop(objset_t *os, zfs_prop_t prop, uint64_t *value)
2422 {
2423         const char *pname;
2424         int error = ENOENT;
2425
2426         /*
2427          * Look up the file system's value for the property.  For the
2428          * version property, we look up a slightly different string.
2429          */
2430         if (prop == ZFS_PROP_VERSION)
2431                 pname = ZPL_VERSION_STR;
2432         else
2433                 pname = zfs_prop_to_name(prop);
2434
2435         if (os != NULL)
2436                 error = zap_lookup(os, MASTER_NODE_OBJ, pname, 8, 1, value);
2437
2438         if (error == ENOENT) {
2439                 /* No value set, use the default value */
2440                 switch (prop) {
2441                 case ZFS_PROP_VERSION:
2442                         *value = ZPL_VERSION;
2443                         break;
2444                 case ZFS_PROP_NORMALIZE:
2445                 case ZFS_PROP_UTF8ONLY:
2446                         *value = 0;
2447                         break;
2448                 case ZFS_PROP_CASE:
2449                         *value = ZFS_CASE_SENSITIVE;
2450                         break;
2451                 default:
2452                         return (error);
2453                 }
2454                 error = 0;
2455         }
2456         return (error);
2457 }
2458
2459 #ifdef _KERNEL
2460 void
2461 zfsvfs_update_fromname(const char *oldname, const char *newname)
2462 {
2463         char tmpbuf[MAXPATHLEN];
2464         struct mount *mp;
2465         char *fromname;
2466         size_t oldlen;
2467
2468         oldlen = strlen(oldname);
2469
2470         mtx_lock(&mountlist_mtx);
2471         TAILQ_FOREACH(mp, &mountlist, mnt_list) {
2472                 fromname = mp->mnt_stat.f_mntfromname;
2473                 if (strcmp(fromname, oldname) == 0) {
2474                         (void)strlcpy(fromname, newname,
2475                             sizeof(mp->mnt_stat.f_mntfromname));
2476                         continue;
2477                 }
2478                 if (strncmp(fromname, oldname, oldlen) == 0 &&
2479                     (fromname[oldlen] == '/' || fromname[oldlen] == '@')) {
2480                         (void)snprintf(tmpbuf, sizeof(tmpbuf), "%s%s",
2481                             newname, fromname + oldlen);
2482                         (void)strlcpy(fromname, tmpbuf,
2483                             sizeof(mp->mnt_stat.f_mntfromname));
2484                         continue;
2485                 }
2486         }
2487         mtx_unlock(&mountlist_mtx);
2488 }
2489 #endif