]> CyberLeo.Net >> Repos - FreeBSD/stable/9.git/blob - sys/cddl/contrib/opensolaris/uts/common/fs/zfs/zfs_ctldir.c
MFC r299946: gfs_lookup_dot() does not have to acquire any locks
[FreeBSD/stable/9.git] / sys / cddl / contrib / opensolaris / uts / common / fs / zfs / zfs_ctldir.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) 2013 by Delphix. All rights reserved.
24  */
25
26 /*
27  * ZFS control directory (a.k.a. ".zfs")
28  *
29  * This directory provides a common location for all ZFS meta-objects.
30  * Currently, this is only the 'snapshot' directory, but this may expand in the
31  * future.  The elements are built using the GFS primitives, as the hierarchy
32  * does not actually exist on disk.
33  *
34  * For 'snapshot', we don't want to have all snapshots always mounted, because
35  * this would take up a huge amount of space in /etc/mnttab.  We have three
36  * types of objects:
37  *
38  *      ctldir ------> snapshotdir -------> snapshot
39  *                                             |
40  *                                             |
41  *                                             V
42  *                                         mounted fs
43  *
44  * The 'snapshot' node contains just enough information to lookup '..' and act
45  * as a mountpoint for the snapshot.  Whenever we lookup a specific snapshot, we
46  * perform an automount of the underlying filesystem and return the
47  * corresponding vnode.
48  *
49  * All mounts are handled automatically by the kernel, but unmounts are
50  * (currently) handled from user land.  The main reason is that there is no
51  * reliable way to auto-unmount the filesystem when it's "no longer in use".
52  * When the user unmounts a filesystem, we call zfsctl_unmount(), which
53  * unmounts any snapshots within the snapshot directory.
54  *
55  * The '.zfs', '.zfs/snapshot', and all directories created under
56  * '.zfs/snapshot' (ie: '.zfs/snapshot/<snapname>') are all GFS nodes and
57  * share the same vfs_t as the head filesystem (what '.zfs' lives under).
58  *
59  * File systems mounted ontop of the GFS nodes '.zfs/snapshot/<snapname>'
60  * (ie: snapshots) are ZFS nodes and have their own unique vfs_t.
61  * However, vnodes within these mounted on file systems have their v_vfsp
62  * fields set to the head filesystem to make NFS happy (see
63  * zfsctl_snapdir_lookup()). We VFS_HOLD the head filesystem's vfs_t
64  * so that it cannot be freed until all snapshots have been unmounted.
65  */
66
67 #include <sys/zfs_context.h>
68 #include <sys/zfs_ctldir.h>
69 #include <sys/zfs_ioctl.h>
70 #include <sys/zfs_vfsops.h>
71 #include <sys/namei.h>
72 #include <sys/gfs.h>
73 #include <sys/stat.h>
74 #include <sys/dmu.h>
75 #include <sys/dsl_destroy.h>
76 #include <sys/dsl_deleg.h>
77 #include <sys/mount.h>
78 #include <sys/sunddi.h>
79
80 #include "zfs_namecheck.h"
81
82 typedef struct zfsctl_node {
83         gfs_dir_t       zc_gfs_private;
84         uint64_t        zc_id;
85         timestruc_t     zc_cmtime;      /* ctime and mtime, always the same */
86 } zfsctl_node_t;
87
88 typedef struct zfsctl_snapdir {
89         zfsctl_node_t   sd_node;
90         kmutex_t        sd_lock;
91         avl_tree_t      sd_snaps;
92 } zfsctl_snapdir_t;
93
94 typedef struct {
95         char            *se_name;
96         vnode_t         *se_root;
97         avl_node_t      se_node;
98 } zfs_snapentry_t;
99
100 static int
101 snapentry_compare(const void *a, const void *b)
102 {
103         const zfs_snapentry_t *sa = a;
104         const zfs_snapentry_t *sb = b;
105         int ret = strcmp(sa->se_name, sb->se_name);
106
107         if (ret < 0)
108                 return (-1);
109         else if (ret > 0)
110                 return (1);
111         else
112                 return (0);
113 }
114
115 #ifdef sun
116 vnodeops_t *zfsctl_ops_root;
117 vnodeops_t *zfsctl_ops_snapdir;
118 vnodeops_t *zfsctl_ops_snapshot;
119 vnodeops_t *zfsctl_ops_shares;
120 vnodeops_t *zfsctl_ops_shares_dir;
121
122 static const fs_operation_def_t zfsctl_tops_root[];
123 static const fs_operation_def_t zfsctl_tops_snapdir[];
124 static const fs_operation_def_t zfsctl_tops_snapshot[];
125 static const fs_operation_def_t zfsctl_tops_shares[];
126 #else   /* !sun */
127 static struct vop_vector zfsctl_ops_root;
128 static struct vop_vector zfsctl_ops_snapdir;
129 static struct vop_vector zfsctl_ops_snapshot;
130 static struct vop_vector zfsctl_ops_shares;
131 static struct vop_vector zfsctl_ops_shares_dir;
132 #endif  /* !sun */
133
134 static vnode_t *zfsctl_mknode_snapdir(vnode_t *);
135 static vnode_t *zfsctl_mknode_shares(vnode_t *);
136 static vnode_t *zfsctl_snapshot_mknode(vnode_t *, uint64_t objset);
137 static int zfsctl_unmount_snap(zfs_snapentry_t *, int, cred_t *);
138
139 #ifdef sun
140 static gfs_opsvec_t zfsctl_opsvec[] = {
141         { ".zfs", zfsctl_tops_root, &zfsctl_ops_root },
142         { ".zfs/snapshot", zfsctl_tops_snapdir, &zfsctl_ops_snapdir },
143         { ".zfs/snapshot/vnode", zfsctl_tops_snapshot, &zfsctl_ops_snapshot },
144         { ".zfs/shares", zfsctl_tops_shares, &zfsctl_ops_shares_dir },
145         { ".zfs/shares/vnode", zfsctl_tops_shares, &zfsctl_ops_shares },
146         { NULL }
147 };
148 #endif  /* sun */
149
150 /*
151  * Root directory elements.  We only have two entries
152  * snapshot and shares.
153  */
154 static gfs_dirent_t zfsctl_root_entries[] = {
155         { "snapshot", zfsctl_mknode_snapdir, GFS_CACHE_VNODE },
156         { "shares", zfsctl_mknode_shares, GFS_CACHE_VNODE },
157         { NULL }
158 };
159
160 /* include . and .. in the calculation */
161 #define NROOT_ENTRIES   ((sizeof (zfsctl_root_entries) / \
162     sizeof (gfs_dirent_t)) + 1)
163
164
165 /*
166  * Initialize the various GFS pieces we'll need to create and manipulate .zfs
167  * directories.  This is called from the ZFS init routine, and initializes the
168  * vnode ops vectors that we'll be using.
169  */
170 void
171 zfsctl_init(void)
172 {
173 #ifdef sun
174         VERIFY(gfs_make_opsvec(zfsctl_opsvec) == 0);
175 #endif
176 }
177
178 void
179 zfsctl_fini(void)
180 {
181 #ifdef sun
182         /*
183          * Remove vfsctl vnode ops
184          */
185         if (zfsctl_ops_root)
186                 vn_freevnodeops(zfsctl_ops_root);
187         if (zfsctl_ops_snapdir)
188                 vn_freevnodeops(zfsctl_ops_snapdir);
189         if (zfsctl_ops_snapshot)
190                 vn_freevnodeops(zfsctl_ops_snapshot);
191         if (zfsctl_ops_shares)
192                 vn_freevnodeops(zfsctl_ops_shares);
193         if (zfsctl_ops_shares_dir)
194                 vn_freevnodeops(zfsctl_ops_shares_dir);
195
196         zfsctl_ops_root = NULL;
197         zfsctl_ops_snapdir = NULL;
198         zfsctl_ops_snapshot = NULL;
199         zfsctl_ops_shares = NULL;
200         zfsctl_ops_shares_dir = NULL;
201 #endif  /* sun */
202 }
203
204 boolean_t
205 zfsctl_is_node(vnode_t *vp)
206 {
207         return (vn_matchops(vp, zfsctl_ops_root) ||
208             vn_matchops(vp, zfsctl_ops_snapdir) ||
209             vn_matchops(vp, zfsctl_ops_snapshot) ||
210             vn_matchops(vp, zfsctl_ops_shares) ||
211             vn_matchops(vp, zfsctl_ops_shares_dir));
212
213 }
214
215 /*
216  * Return the inode number associated with the 'snapshot' or
217  * 'shares' directory.
218  */
219 /* ARGSUSED */
220 static ino64_t
221 zfsctl_root_inode_cb(vnode_t *vp, int index)
222 {
223         zfsvfs_t *zfsvfs = vp->v_vfsp->vfs_data;
224
225         ASSERT(index < 2);
226
227         if (index == 0)
228                 return (ZFSCTL_INO_SNAPDIR);
229
230         return (zfsvfs->z_shares_dir);
231 }
232
233 /*
234  * Create the '.zfs' directory.  This directory is cached as part of the VFS
235  * structure.  This results in a hold on the vfs_t.  The code in zfs_umount()
236  * therefore checks against a vfs_count of 2 instead of 1.  This reference
237  * is removed when the ctldir is destroyed in the unmount.
238  */
239 void
240 zfsctl_create(zfsvfs_t *zfsvfs)
241 {
242         vnode_t *vp, *rvp;
243         zfsctl_node_t *zcp;
244         uint64_t crtime[2];
245
246         ASSERT(zfsvfs->z_ctldir == NULL);
247
248         vp = gfs_root_create(sizeof (zfsctl_node_t), zfsvfs->z_vfs,
249             &zfsctl_ops_root, ZFSCTL_INO_ROOT, zfsctl_root_entries,
250             zfsctl_root_inode_cb, MAXNAMELEN, NULL, NULL);
251         zcp = vp->v_data;
252         zcp->zc_id = ZFSCTL_INO_ROOT;
253
254         VERIFY(VFS_ROOT(zfsvfs->z_vfs, LK_EXCLUSIVE, &rvp) == 0);
255         VERIFY(0 == sa_lookup(VTOZ(rvp)->z_sa_hdl, SA_ZPL_CRTIME(zfsvfs),
256             &crtime, sizeof (crtime)));
257         ZFS_TIME_DECODE(&zcp->zc_cmtime, crtime);
258         VN_URELE(rvp);
259
260         /*
261          * We're only faking the fact that we have a root of a filesystem for
262          * the sake of the GFS interfaces.  Undo the flag manipulation it did
263          * for us.
264          */
265         vp->v_vflag &= ~VV_ROOT;
266
267         zfsvfs->z_ctldir = vp;
268
269         VOP_UNLOCK(vp, 0);
270 }
271
272 /*
273  * Destroy the '.zfs' directory.  Only called when the filesystem is unmounted.
274  * There might still be more references if we were force unmounted, but only
275  * new zfs_inactive() calls can occur and they don't reference .zfs
276  */
277 void
278 zfsctl_destroy(zfsvfs_t *zfsvfs)
279 {
280         VN_RELE(zfsvfs->z_ctldir);
281         zfsvfs->z_ctldir = NULL;
282 }
283
284 /*
285  * Given a root znode, retrieve the associated .zfs directory.
286  * Add a hold to the vnode and return it.
287  */
288 vnode_t *
289 zfsctl_root(znode_t *zp)
290 {
291         ASSERT(zfs_has_ctldir(zp));
292         VN_HOLD(zp->z_zfsvfs->z_ctldir);
293         return (zp->z_zfsvfs->z_ctldir);
294 }
295
296 /*
297  * Common open routine.  Disallow any write access.
298  */
299 /* ARGSUSED */
300 static int
301 zfsctl_common_open(struct vop_open_args *ap)
302 {
303         int flags = ap->a_mode;
304
305         if (flags & FWRITE)
306                 return (SET_ERROR(EACCES));
307
308         return (0);
309 }
310
311 /*
312  * Common close routine.  Nothing to do here.
313  */
314 /* ARGSUSED */
315 static int
316 zfsctl_common_close(struct vop_close_args *ap)
317 {
318         return (0);
319 }
320
321 /*
322  * Common access routine.  Disallow writes.
323  */
324 /* ARGSUSED */
325 static int
326 zfsctl_common_access(ap)
327         struct vop_access_args /* {
328                 struct vnode *a_vp;
329                 accmode_t a_accmode;
330                 struct ucred *a_cred;
331                 struct thread *a_td;
332         } */ *ap;
333 {
334         accmode_t accmode = ap->a_accmode;
335
336 #ifdef TODO
337         if (flags & V_ACE_MASK) {
338                 if (accmode & ACE_ALL_WRITE_PERMS)
339                         return (SET_ERROR(EACCES));
340         } else {
341 #endif
342                 if (accmode & VWRITE)
343                         return (SET_ERROR(EACCES));
344 #ifdef TODO
345         }
346 #endif
347
348         return (0);
349 }
350
351 /*
352  * Common getattr function.  Fill in basic information.
353  */
354 static void
355 zfsctl_common_getattr(vnode_t *vp, vattr_t *vap)
356 {
357         timestruc_t     now;
358
359         vap->va_uid = 0;
360         vap->va_gid = 0;
361         vap->va_rdev = 0;
362         /*
363          * We are a purely virtual object, so we have no
364          * blocksize or allocated blocks.
365          */
366         vap->va_blksize = 0;
367         vap->va_nblocks = 0;
368         vap->va_seq = 0;
369         vap->va_fsid = vp->v_mount->mnt_stat.f_fsid.val[0];
370         vap->va_mode = S_IRUSR | S_IXUSR | S_IRGRP | S_IXGRP |
371             S_IROTH | S_IXOTH;
372         vap->va_type = VDIR;
373         /*
374          * We live in the now (for atime).
375          */
376         gethrestime(&now);
377         vap->va_atime = now;
378         /* FreeBSD: Reset chflags(2) flags. */
379         vap->va_flags = 0;
380 }
381
382 /*ARGSUSED*/
383 static int
384 zfsctl_common_fid(ap)
385         struct vop_fid_args /* {
386                 struct vnode *a_vp;
387                 struct fid *a_fid;
388         } */ *ap;
389 {
390         vnode_t         *vp = ap->a_vp;
391         fid_t           *fidp = (void *)ap->a_fid;
392         zfsvfs_t        *zfsvfs = vp->v_vfsp->vfs_data;
393         zfsctl_node_t   *zcp = vp->v_data;
394         uint64_t        object = zcp->zc_id;
395         zfid_short_t    *zfid;
396         int             i;
397
398         ZFS_ENTER(zfsvfs);
399
400 #ifdef illumos
401         if (fidp->fid_len < SHORT_FID_LEN) {
402                 fidp->fid_len = SHORT_FID_LEN;
403                 ZFS_EXIT(zfsvfs);
404                 return (SET_ERROR(ENOSPC));
405         }
406 #endif
407
408         zfid = (zfid_short_t *)fidp;
409
410         zfid->zf_len = SHORT_FID_LEN;
411
412         for (i = 0; i < sizeof (zfid->zf_object); i++)
413                 zfid->zf_object[i] = (uint8_t)(object >> (8 * i));
414
415         /* .zfs znodes always have a generation number of 0 */
416         for (i = 0; i < sizeof (zfid->zf_gen); i++)
417                 zfid->zf_gen[i] = 0;
418
419         ZFS_EXIT(zfsvfs);
420         return (0);
421 }
422
423
424 /*ARGSUSED*/
425 static int
426 zfsctl_shares_fid(ap)
427         struct vop_fid_args /* {
428                 struct vnode *a_vp;
429                 struct fid *a_fid;
430         } */ *ap;
431 {
432         vnode_t         *vp = ap->a_vp;
433         fid_t           *fidp = (void *)ap->a_fid;
434         zfsvfs_t        *zfsvfs = vp->v_vfsp->vfs_data;
435         znode_t         *dzp;
436         int             error;
437
438         ZFS_ENTER(zfsvfs);
439
440         if (zfsvfs->z_shares_dir == 0) {
441                 ZFS_EXIT(zfsvfs);
442                 return (SET_ERROR(ENOTSUP));
443         }
444
445         if ((error = zfs_zget(zfsvfs, zfsvfs->z_shares_dir, &dzp)) == 0) {
446                 error = VOP_FID(ZTOV(dzp), fidp);
447                 VN_RELE(ZTOV(dzp));
448         }
449
450         ZFS_EXIT(zfsvfs);
451         return (error);
452 }
453
454 static int
455 zfsctl_common_reclaim(ap)
456         struct vop_reclaim_args /* {
457                 struct vnode *a_vp;
458                 struct thread *a_td;
459         } */ *ap;
460 {
461         vnode_t *vp = ap->a_vp;
462
463         /*
464          * Destroy the vm object and flush associated pages.
465          */
466         vnode_destroy_vobject(vp);
467         VI_LOCK(vp);
468         vp->v_data = NULL;
469         VI_UNLOCK(vp);
470         return (0);
471 }
472
473 /*
474  * .zfs inode namespace
475  *
476  * We need to generate unique inode numbers for all files and directories
477  * within the .zfs pseudo-filesystem.  We use the following scheme:
478  *
479  *      ENTRY                   ZFSCTL_INODE
480  *      .zfs                    1
481  *      .zfs/snapshot           2
482  *      .zfs/snapshot/<snap>    objectid(snap)
483  */
484
485 #define ZFSCTL_INO_SNAP(id)     (id)
486
487 /*
488  * Get root directory attributes.
489  */
490 /* ARGSUSED */
491 static int
492 zfsctl_root_getattr(ap)
493         struct vop_getattr_args /* {
494                 struct vnode *a_vp;
495                 struct vattr *a_vap;
496                 struct ucred *a_cred;
497         } */ *ap;
498 {
499         struct vnode *vp = ap->a_vp;
500         struct vattr *vap = ap->a_vap;
501         zfsvfs_t *zfsvfs = vp->v_vfsp->vfs_data;
502         zfsctl_node_t *zcp = vp->v_data;
503
504         ZFS_ENTER(zfsvfs);
505         vap->va_nodeid = ZFSCTL_INO_ROOT;
506         vap->va_nlink = vap->va_size = NROOT_ENTRIES;
507         vap->va_mtime = vap->va_ctime = zcp->zc_cmtime;
508         vap->va_birthtime = vap->va_ctime;
509
510         zfsctl_common_getattr(vp, vap);
511         ZFS_EXIT(zfsvfs);
512
513         return (0);
514 }
515
516 /*
517  * Special case the handling of "..".
518  */
519 /* ARGSUSED */
520 int
521 zfsctl_root_lookup(vnode_t *dvp, char *nm, vnode_t **vpp, pathname_t *pnp,
522     int flags, vnode_t *rdir, cred_t *cr, caller_context_t *ct,
523     int *direntflags, pathname_t *realpnp)
524 {
525         zfsvfs_t *zfsvfs = dvp->v_vfsp->vfs_data;
526         int err;
527
528         /*
529          * No extended attributes allowed under .zfs
530          */
531         if (flags & LOOKUP_XATTR)
532                 return (SET_ERROR(EINVAL));
533
534         ZFS_ENTER(zfsvfs);
535
536         if (strcmp(nm, "..") == 0) {
537                 err = VFS_ROOT(dvp->v_vfsp, LK_EXCLUSIVE, vpp);
538                 if (err == 0)
539                         VOP_UNLOCK(*vpp, 0);
540         } else {
541                 err = gfs_vop_lookup(dvp, nm, vpp, pnp, flags, rdir,
542                     cr, ct, direntflags, realpnp);
543         }
544
545         ZFS_EXIT(zfsvfs);
546
547         return (err);
548 }
549
550 #ifdef sun
551 static int
552 zfsctl_pathconf(vnode_t *vp, int cmd, ulong_t *valp, cred_t *cr,
553     caller_context_t *ct)
554 {
555         /*
556          * We only care about ACL_ENABLED so that libsec can
557          * display ACL correctly and not default to POSIX draft.
558          */
559         if (cmd == _PC_ACL_ENABLED) {
560                 *valp = _ACL_ACE_ENABLED;
561                 return (0);
562         }
563
564         return (fs_pathconf(vp, cmd, valp, cr, ct));
565 }
566 #endif  /* sun */
567
568 #ifdef sun
569 static const fs_operation_def_t zfsctl_tops_root[] = {
570         { VOPNAME_OPEN,         { .vop_open = zfsctl_common_open }      },
571         { VOPNAME_CLOSE,        { .vop_close = zfsctl_common_close }    },
572         { VOPNAME_IOCTL,        { .error = fs_inval }                   },
573         { VOPNAME_GETATTR,      { .vop_getattr = zfsctl_root_getattr }  },
574         { VOPNAME_ACCESS,       { .vop_access = zfsctl_common_access }  },
575         { VOPNAME_READDIR,      { .vop_readdir = gfs_vop_readdir }      },
576         { VOPNAME_LOOKUP,       { .vop_lookup = zfsctl_root_lookup }    },
577         { VOPNAME_SEEK,         { .vop_seek = fs_seek }                 },
578         { VOPNAME_INACTIVE,     { .vop_inactive = gfs_vop_inactive }    },
579         { VOPNAME_PATHCONF,     { .vop_pathconf = zfsctl_pathconf }     },
580         { VOPNAME_FID,          { .vop_fid = zfsctl_common_fid  }       },
581         { NULL }
582 };
583 #endif  /* sun */
584
585 /*
586  * Special case the handling of "..".
587  */
588 /* ARGSUSED */
589 int
590 zfsctl_freebsd_root_lookup(ap)
591         struct vop_lookup_args /* {
592                 struct vnode *a_dvp;
593                 struct vnode **a_vpp;
594                 struct componentname *a_cnp;
595         } */ *ap;
596 {
597         vnode_t *dvp = ap->a_dvp;
598         vnode_t **vpp = ap->a_vpp;
599         cred_t *cr = ap->a_cnp->cn_cred;
600         int flags = ap->a_cnp->cn_flags;
601         int nameiop = ap->a_cnp->cn_nameiop;
602         char nm[NAME_MAX + 1];
603         int err;
604
605         if ((flags & ISLASTCN) && (nameiop == RENAME || nameiop == CREATE))
606                 return (EOPNOTSUPP);
607
608         ASSERT(ap->a_cnp->cn_namelen < sizeof(nm));
609         strlcpy(nm, ap->a_cnp->cn_nameptr, ap->a_cnp->cn_namelen + 1);
610
611         err = zfsctl_root_lookup(dvp, nm, vpp, NULL, 0, NULL, cr, NULL, NULL, NULL);
612         if (err == 0 && (nm[0] != '.' || nm[1] != '\0'))
613                 vn_lock(*vpp, LK_EXCLUSIVE | LK_RETRY);
614         return (err);
615 }
616
617 static struct vop_vector zfsctl_ops_root = {
618         .vop_default =  &default_vnodeops,
619         .vop_open =     zfsctl_common_open,
620         .vop_close =    zfsctl_common_close,
621         .vop_ioctl =    VOP_EINVAL,
622         .vop_getattr =  zfsctl_root_getattr,
623         .vop_access =   zfsctl_common_access,
624         .vop_readdir =  gfs_vop_readdir,
625         .vop_lookup =   zfsctl_freebsd_root_lookup,
626         .vop_inactive = gfs_vop_inactive,
627         .vop_reclaim =  zfsctl_common_reclaim,
628 #ifdef TODO
629         .vop_pathconf = zfsctl_pathconf,
630 #endif
631         .vop_fid =      zfsctl_common_fid,
632 };
633
634 /*
635  * Gets the full dataset name that corresponds to the given snapshot name
636  * Example:
637  *      zfsctl_snapshot_zname("snap1") -> "mypool/myfs@snap1"
638  */
639 static int
640 zfsctl_snapshot_zname(vnode_t *vp, const char *name, int len, char *zname)
641 {
642         objset_t *os = ((zfsvfs_t *)((vp)->v_vfsp->vfs_data))->z_os;
643
644         if (zfs_component_namecheck(name, NULL, NULL) != 0)
645                 return (SET_ERROR(EILSEQ));
646         dmu_objset_name(os, zname);
647         if (strlen(zname) + 1 + strlen(name) >= len)
648                 return (SET_ERROR(ENAMETOOLONG));
649         (void) strcat(zname, "@");
650         (void) strcat(zname, name);
651         return (0);
652 }
653
654 static int
655 zfsctl_unmount_snap(zfs_snapentry_t *sep, int fflags, cred_t *cr)
656 {
657         vnode_t *svp = sep->se_root;
658         int error;
659
660         ASSERT(vn_ismntpt(svp));
661
662         /* this will be dropped by dounmount() */
663         if ((error = vn_vfswlock(svp)) != 0)
664                 return (error);
665
666 #ifdef sun
667         VN_HOLD(svp);
668         error = dounmount(vn_mountedvfs(svp), fflags, cr);
669         if (error) {
670                 VN_RELE(svp);
671                 return (error);
672         }
673
674         /*
675          * We can't use VN_RELE(), as that will try to invoke
676          * zfsctl_snapdir_inactive(), which would cause us to destroy
677          * the sd_lock mutex held by our caller.
678          */
679         ASSERT(svp->v_count == 1);
680         gfs_vop_inactive(svp, cr, NULL);
681
682         kmem_free(sep->se_name, strlen(sep->se_name) + 1);
683         kmem_free(sep, sizeof (zfs_snapentry_t));
684
685         return (0);
686 #else   /* !sun */
687         return (dounmount(vn_mountedvfs(svp), fflags, curthread));
688 #endif  /* !sun */
689 }
690
691 #ifdef sun
692 static void
693 zfsctl_rename_snap(zfsctl_snapdir_t *sdp, zfs_snapentry_t *sep, const char *nm)
694 {
695         avl_index_t where;
696         vfs_t *vfsp;
697         refstr_t *pathref;
698         char newpath[MAXNAMELEN];
699         char *tail;
700
701         ASSERT(MUTEX_HELD(&sdp->sd_lock));
702         ASSERT(sep != NULL);
703
704         vfsp = vn_mountedvfs(sep->se_root);
705         ASSERT(vfsp != NULL);
706
707         vfs_lock_wait(vfsp);
708
709         /*
710          * Change the name in the AVL tree.
711          */
712         avl_remove(&sdp->sd_snaps, sep);
713         kmem_free(sep->se_name, strlen(sep->se_name) + 1);
714         sep->se_name = kmem_alloc(strlen(nm) + 1, KM_SLEEP);
715         (void) strcpy(sep->se_name, nm);
716         VERIFY(avl_find(&sdp->sd_snaps, sep, &where) == NULL);
717         avl_insert(&sdp->sd_snaps, sep, where);
718
719         /*
720          * Change the current mountpoint info:
721          *      - update the tail of the mntpoint path
722          *      - update the tail of the resource path
723          */
724         pathref = vfs_getmntpoint(vfsp);
725         (void) strncpy(newpath, refstr_value(pathref), sizeof (newpath));
726         VERIFY((tail = strrchr(newpath, '/')) != NULL);
727         *(tail+1) = '\0';
728         ASSERT3U(strlen(newpath) + strlen(nm), <, sizeof (newpath));
729         (void) strcat(newpath, nm);
730         refstr_rele(pathref);
731         vfs_setmntpoint(vfsp, newpath, 0);
732
733         pathref = vfs_getresource(vfsp);
734         (void) strncpy(newpath, refstr_value(pathref), sizeof (newpath));
735         VERIFY((tail = strrchr(newpath, '@')) != NULL);
736         *(tail+1) = '\0';
737         ASSERT3U(strlen(newpath) + strlen(nm), <, sizeof (newpath));
738         (void) strcat(newpath, nm);
739         refstr_rele(pathref);
740         vfs_setresource(vfsp, newpath, 0);
741
742         vfs_unlock(vfsp);
743 }
744 #endif  /* sun */
745
746 #ifdef sun
747 /*ARGSUSED*/
748 static int
749 zfsctl_snapdir_rename(vnode_t *sdvp, char *snm, vnode_t *tdvp, char *tnm,
750     cred_t *cr, caller_context_t *ct, int flags)
751 {
752         zfsctl_snapdir_t *sdp = sdvp->v_data;
753         zfs_snapentry_t search, *sep;
754         zfsvfs_t *zfsvfs;
755         avl_index_t where;
756         char from[MAXNAMELEN], to[MAXNAMELEN];
757         char real[MAXNAMELEN], fsname[MAXNAMELEN];
758         int err;
759
760         zfsvfs = sdvp->v_vfsp->vfs_data;
761         ZFS_ENTER(zfsvfs);
762
763         if ((flags & FIGNORECASE) || zfsvfs->z_case == ZFS_CASE_INSENSITIVE) {
764                 err = dmu_snapshot_realname(zfsvfs->z_os, snm, real,
765                     MAXNAMELEN, NULL);
766                 if (err == 0) {
767                         snm = real;
768                 } else if (err != ENOTSUP) {
769                         ZFS_EXIT(zfsvfs);
770                         return (err);
771                 }
772         }
773
774         ZFS_EXIT(zfsvfs);
775
776         dmu_objset_name(zfsvfs->z_os, fsname);
777
778         err = zfsctl_snapshot_zname(sdvp, snm, MAXNAMELEN, from);
779         if (err == 0)
780                 err = zfsctl_snapshot_zname(tdvp, tnm, MAXNAMELEN, to);
781         if (err == 0)
782                 err = zfs_secpolicy_rename_perms(from, to, cr);
783         if (err != 0)
784                 return (err);
785
786         /*
787          * Cannot move snapshots out of the snapdir.
788          */
789         if (sdvp != tdvp)
790                 return (SET_ERROR(EINVAL));
791
792         if (strcmp(snm, tnm) == 0)
793                 return (0);
794
795         mutex_enter(&sdp->sd_lock);
796
797         search.se_name = (char *)snm;
798         if ((sep = avl_find(&sdp->sd_snaps, &search, &where)) == NULL) {
799                 mutex_exit(&sdp->sd_lock);
800                 return (SET_ERROR(ENOENT));
801         }
802
803         err = dsl_dataset_rename_snapshot(fsname, snm, tnm, 0);
804         if (err == 0)
805                 zfsctl_rename_snap(sdp, sep, tnm);
806
807         mutex_exit(&sdp->sd_lock);
808
809         return (err);
810 }
811 #endif  /* sun */
812
813 #ifdef sun
814 /* ARGSUSED */
815 static int
816 zfsctl_snapdir_remove(vnode_t *dvp, char *name, vnode_t *cwd, cred_t *cr,
817     caller_context_t *ct, int flags)
818 {
819         zfsctl_snapdir_t *sdp = dvp->v_data;
820         zfs_snapentry_t *sep;
821         zfs_snapentry_t search;
822         zfsvfs_t *zfsvfs;
823         char snapname[MAXNAMELEN];
824         char real[MAXNAMELEN];
825         int err;
826
827         zfsvfs = dvp->v_vfsp->vfs_data;
828         ZFS_ENTER(zfsvfs);
829
830         if ((flags & FIGNORECASE) || zfsvfs->z_case == ZFS_CASE_INSENSITIVE) {
831
832                 err = dmu_snapshot_realname(zfsvfs->z_os, name, real,
833                     MAXNAMELEN, NULL);
834                 if (err == 0) {
835                         name = real;
836                 } else if (err != ENOTSUP) {
837                         ZFS_EXIT(zfsvfs);
838                         return (err);
839                 }
840         }
841
842         ZFS_EXIT(zfsvfs);
843
844         err = zfsctl_snapshot_zname(dvp, name, MAXNAMELEN, snapname);
845         if (err == 0)
846                 err = zfs_secpolicy_destroy_perms(snapname, cr);
847         if (err != 0)
848                 return (err);
849
850         mutex_enter(&sdp->sd_lock);
851
852         search.se_name = name;
853         sep = avl_find(&sdp->sd_snaps, &search, NULL);
854         if (sep) {
855                 avl_remove(&sdp->sd_snaps, sep);
856                 err = zfsctl_unmount_snap(sep, MS_FORCE, cr);
857                 if (err != 0)
858                         avl_add(&sdp->sd_snaps, sep);
859                 else
860                         err = dsl_destroy_snapshot(snapname, B_FALSE);
861         } else {
862                 err = SET_ERROR(ENOENT);
863         }
864
865         mutex_exit(&sdp->sd_lock);
866
867         return (err);
868 }
869 #endif  /* sun */
870
871 /*
872  * This creates a snapshot under '.zfs/snapshot'.
873  */
874 /* ARGSUSED */
875 static int
876 zfsctl_snapdir_mkdir(vnode_t *dvp, char *dirname, vattr_t *vap, vnode_t  **vpp,
877     cred_t *cr, caller_context_t *cc, int flags, vsecattr_t *vsecp)
878 {
879         zfsvfs_t *zfsvfs = dvp->v_vfsp->vfs_data;
880         char name[MAXNAMELEN];
881         int err;
882         static enum symfollow follow = NO_FOLLOW;
883         static enum uio_seg seg = UIO_SYSSPACE;
884
885         if (zfs_component_namecheck(dirname, NULL, NULL) != 0)
886                 return (SET_ERROR(EILSEQ));
887
888         dmu_objset_name(zfsvfs->z_os, name);
889
890         *vpp = NULL;
891
892         err = zfs_secpolicy_snapshot_perms(name, cr);
893         if (err != 0)
894                 return (err);
895
896         if (err == 0) {
897                 err = dmu_objset_snapshot_one(name, dirname);
898                 if (err != 0)
899                         return (err);
900                 err = lookupnameat(dirname, seg, follow, NULL, vpp, dvp);
901         }
902
903         return (err);
904 }
905
906 static int
907 zfsctl_freebsd_snapdir_mkdir(ap)
908         struct vop_mkdir_args /* {
909                 struct vnode *a_dvp;
910                 struct vnode **a_vpp;
911                 struct componentname *a_cnp;
912                 struct vattr *a_vap;
913         } */ *ap;
914 {
915
916         ASSERT(ap->a_cnp->cn_flags & SAVENAME);
917
918         return (zfsctl_snapdir_mkdir(ap->a_dvp, ap->a_cnp->cn_nameptr, NULL,
919             ap->a_vpp, ap->a_cnp->cn_cred, NULL, 0, NULL));
920 }
921
922 /*
923  * Lookup entry point for the 'snapshot' directory.  Try to open the
924  * snapshot if it exist, creating the pseudo filesystem vnode as necessary.
925  * Perform a mount of the associated dataset on top of the vnode.
926  */
927 /* ARGSUSED */
928 int
929 zfsctl_snapdir_lookup(ap)
930         struct vop_lookup_args /* {
931                 struct vnode *a_dvp;
932                 struct vnode **a_vpp;
933                 struct componentname *a_cnp;
934         } */ *ap;
935 {
936         vnode_t *dvp = ap->a_dvp;
937         vnode_t **vpp = ap->a_vpp;
938         struct componentname *cnp = ap->a_cnp;
939         char nm[NAME_MAX + 1];
940         zfsctl_snapdir_t *sdp = dvp->v_data;
941         objset_t *snap;
942         char snapname[MAXNAMELEN];
943         char real[MAXNAMELEN];
944         char *mountpoint;
945         zfs_snapentry_t *sep, search;
946         size_t mountpoint_len;
947         avl_index_t where;
948         zfsvfs_t *zfsvfs = dvp->v_vfsp->vfs_data;
949         int err;
950         int flags = 0;
951
952         /*
953          * No extended attributes allowed under .zfs
954          */
955         if (flags & LOOKUP_XATTR)
956                 return (SET_ERROR(EINVAL));
957         ASSERT(ap->a_cnp->cn_namelen < sizeof(nm));
958         strlcpy(nm, ap->a_cnp->cn_nameptr, ap->a_cnp->cn_namelen + 1);
959
960         ASSERT(dvp->v_type == VDIR);
961
962         *vpp = NULL;
963
964         /*
965          * If we get a recursive call, that means we got called
966          * from the domount() code while it was trying to look up the
967          * spec (which looks like a local path for zfs).  We need to
968          * add some flag to domount() to tell it not to do this lookup.
969          */
970         if (MUTEX_HELD(&sdp->sd_lock))
971                 return (SET_ERROR(ENOENT));
972
973         ZFS_ENTER(zfsvfs);
974
975         if (gfs_lookup_dot(vpp, dvp, zfsvfs->z_ctldir, nm) == 0) {
976                 if (nm[0] == '.' && nm[1] == '.' && nm[2] =='\0') {
977                         VOP_UNLOCK(dvp, 0);
978                         VERIFY0(vn_lock(*vpp, LK_EXCLUSIVE));
979                         VERIFY0(vn_lock(dvp, LK_EXCLUSIVE));
980                 }
981                 ZFS_EXIT(zfsvfs);
982                 return (0);
983         }
984
985         if (flags & FIGNORECASE) {
986                 boolean_t conflict = B_FALSE;
987
988                 err = dmu_snapshot_realname(zfsvfs->z_os, nm, real,
989                     MAXNAMELEN, &conflict);
990                 if (err == 0) {
991                         strlcpy(nm, real, sizeof(nm));
992                 } else if (err != ENOTSUP) {
993                         ZFS_EXIT(zfsvfs);
994                         return (err);
995                 }
996 #if 0
997                 if (realpnp)
998                         (void) strlcpy(realpnp->pn_buf, nm,
999                             realpnp->pn_bufsize);
1000                 if (conflict && direntflags)
1001                         *direntflags = ED_CASE_CONFLICT;
1002 #endif
1003         }
1004
1005 relookup:
1006         mutex_enter(&sdp->sd_lock);
1007         search.se_name = (char *)nm;
1008         if ((sep = avl_find(&sdp->sd_snaps, &search, &where)) != NULL) {
1009                 *vpp = sep->se_root;
1010                 VN_HOLD(*vpp);
1011                 err = traverse(vpp, LK_EXCLUSIVE | LK_RETRY);
1012                 if (err != 0) {
1013                         *vpp = NULL;
1014                 } else if (*vpp == sep->se_root) {
1015                         /*
1016                          * The snapshot was unmounted behind our backs,
1017                          * try to remount it.
1018                          */
1019                         VERIFY(zfsctl_snapshot_zname(dvp, nm, MAXNAMELEN, snapname) == 0);
1020                         goto domount;
1021                 }
1022                 mutex_exit(&sdp->sd_lock);
1023                 ZFS_EXIT(zfsvfs);
1024                 return (err);
1025         }
1026
1027         /*
1028          * The requested snapshot is not currently mounted, look it up.
1029          */
1030         err = zfsctl_snapshot_zname(dvp, nm, MAXNAMELEN, snapname);
1031         if (err != 0) {
1032                 mutex_exit(&sdp->sd_lock);
1033                 ZFS_EXIT(zfsvfs);
1034                 /*
1035                  * handle "ls *" or "?" in a graceful manner,
1036                  * forcing EILSEQ to ENOENT.
1037                  * Since shell ultimately passes "*" or "?" as name to lookup
1038                  */
1039                 return (err == EILSEQ ? ENOENT : err);
1040         }
1041         if (dmu_objset_hold(snapname, FTAG, &snap) != 0) {
1042                 mutex_exit(&sdp->sd_lock);
1043 #ifdef illumos
1044                 ZFS_EXIT(zfsvfs);
1045                 return (SET_ERROR(ENOENT));
1046 #else   /* !illumos */
1047                 /* Translate errors and add SAVENAME when needed. */
1048                 if ((cnp->cn_flags & ISLASTCN) && cnp->cn_nameiop == CREATE) {
1049                         err = EJUSTRETURN;
1050                         cnp->cn_flags |= SAVENAME;
1051                 } else {
1052                         err = SET_ERROR(ENOENT);
1053                 }
1054                 ZFS_EXIT(zfsvfs);
1055                 return (err);
1056 #endif  /* !illumos */
1057         }
1058
1059         sep = kmem_alloc(sizeof (zfs_snapentry_t), KM_SLEEP);
1060         sep->se_name = kmem_alloc(strlen(nm) + 1, KM_SLEEP);
1061         (void) strcpy(sep->se_name, nm);
1062         *vpp = sep->se_root = zfsctl_snapshot_mknode(dvp, dmu_objset_id(snap));
1063         avl_insert(&sdp->sd_snaps, sep, where);
1064
1065         dmu_objset_rele(snap, FTAG);
1066 domount:
1067         mountpoint_len = strlen(dvp->v_vfsp->mnt_stat.f_mntonname) +
1068             strlen("/" ZFS_CTLDIR_NAME "/snapshot/") + strlen(nm) + 1;
1069         mountpoint = kmem_alloc(mountpoint_len, KM_SLEEP);
1070         (void) snprintf(mountpoint, mountpoint_len,
1071             "%s/" ZFS_CTLDIR_NAME "/snapshot/%s",
1072             dvp->v_vfsp->mnt_stat.f_mntonname, nm);
1073         mutex_exit(&sdp->sd_lock);
1074
1075         /*
1076          * The vnode may get reclaimed between dropping sd_lock and
1077          * getting the vnode lock.
1078          * */
1079         err = vn_lock(*vpp, LK_EXCLUSIVE);
1080         if (err == ENOENT)
1081                 goto relookup;
1082         VERIFY0(err);
1083         err = mount_snapshot(curthread, vpp, "zfs", mountpoint, snapname, 0);
1084         kmem_free(mountpoint, mountpoint_len);
1085         if (err == 0) {
1086                 /*
1087                  * Fix up the root vnode mounted on .zfs/snapshot/<snapname>.
1088                  *
1089                  * This is where we lie about our v_vfsp in order to
1090                  * make .zfs/snapshot/<snapname> accessible over NFS
1091                  * without requiring manual mounts of <snapname>.
1092                  */
1093                 ASSERT(VTOZ(*vpp)->z_zfsvfs != zfsvfs);
1094                 VTOZ(*vpp)->z_zfsvfs->z_parent = zfsvfs;
1095         }
1096         ZFS_EXIT(zfsvfs);
1097
1098 #ifdef illumos
1099         /*
1100          * If we had an error, drop our hold on the vnode and
1101          * zfsctl_snapshot_inactive() will clean up.
1102          */
1103         if (err != 0) {
1104                 VN_RELE(*vpp);
1105                 *vpp = NULL;
1106         }
1107 #else
1108         if (err != 0)
1109                 *vpp = NULL;
1110 #endif
1111         return (err);
1112 }
1113
1114 /* ARGSUSED */
1115 int
1116 zfsctl_shares_lookup(ap)
1117         struct vop_lookup_args /* {
1118                 struct vnode *a_dvp;
1119                 struct vnode **a_vpp;
1120                 struct componentname *a_cnp;
1121         } */ *ap;
1122 {
1123         vnode_t *dvp = ap->a_dvp;
1124         vnode_t **vpp = ap->a_vpp;
1125         struct componentname *cnp = ap->a_cnp;
1126         zfsvfs_t *zfsvfs = dvp->v_vfsp->vfs_data;
1127         char nm[NAME_MAX + 1];
1128         znode_t *dzp;
1129         int error;
1130
1131         ZFS_ENTER(zfsvfs);
1132
1133         ASSERT(cnp->cn_namelen < sizeof(nm));
1134         strlcpy(nm, cnp->cn_nameptr, cnp->cn_namelen + 1);
1135
1136         if (gfs_lookup_dot(vpp, dvp, zfsvfs->z_ctldir, nm) == 0) {
1137                 if (nm[0] == '.' && nm[1] == '.' && nm[2] =='\0') {
1138                         VOP_UNLOCK(dvp, 0);
1139                         VERIFY0(vn_lock(*vpp, LK_EXCLUSIVE));
1140                         VERIFY0(vn_lock(dvp, LK_EXCLUSIVE));
1141                 }
1142                 ZFS_EXIT(zfsvfs);
1143                 return (0);
1144         }
1145
1146         if (zfsvfs->z_shares_dir == 0) {
1147                 ZFS_EXIT(zfsvfs);
1148                 return (SET_ERROR(ENOTSUP));
1149         }
1150         if ((error = zfs_zget(zfsvfs, zfsvfs->z_shares_dir, &dzp)) == 0)
1151                 error = VOP_LOOKUP(ZTOV(dzp), vpp, cnp);
1152
1153         VN_RELE(ZTOV(dzp));
1154         ZFS_EXIT(zfsvfs);
1155
1156         return (error);
1157 }
1158
1159 /* ARGSUSED */
1160 static int
1161 zfsctl_snapdir_readdir_cb(vnode_t *vp, void *dp, int *eofp,
1162     offset_t *offp, offset_t *nextp, void *data, int flags)
1163 {
1164         zfsvfs_t *zfsvfs = vp->v_vfsp->vfs_data;
1165         char snapname[MAXNAMELEN];
1166         uint64_t id, cookie;
1167         boolean_t case_conflict;
1168         int error;
1169
1170         ZFS_ENTER(zfsvfs);
1171
1172         cookie = *offp;
1173         dsl_pool_config_enter(dmu_objset_pool(zfsvfs->z_os), FTAG);
1174         error = dmu_snapshot_list_next(zfsvfs->z_os, MAXNAMELEN, snapname, &id,
1175             &cookie, &case_conflict);
1176         dsl_pool_config_exit(dmu_objset_pool(zfsvfs->z_os), FTAG);
1177         if (error) {
1178                 ZFS_EXIT(zfsvfs);
1179                 if (error == ENOENT) {
1180                         *eofp = 1;
1181                         return (0);
1182                 }
1183                 return (error);
1184         }
1185
1186         if (flags & V_RDDIR_ENTFLAGS) {
1187                 edirent_t *eodp = dp;
1188
1189                 (void) strcpy(eodp->ed_name, snapname);
1190                 eodp->ed_ino = ZFSCTL_INO_SNAP(id);
1191                 eodp->ed_eflags = case_conflict ? ED_CASE_CONFLICT : 0;
1192         } else {
1193                 struct dirent64 *odp = dp;
1194
1195                 (void) strcpy(odp->d_name, snapname);
1196                 odp->d_ino = ZFSCTL_INO_SNAP(id);
1197         }
1198         *nextp = cookie;
1199
1200         ZFS_EXIT(zfsvfs);
1201
1202         return (0);
1203 }
1204
1205 /* ARGSUSED */
1206 static int
1207 zfsctl_shares_readdir(ap)
1208         struct vop_readdir_args /* {
1209                 struct vnode *a_vp;
1210                 struct uio *a_uio;
1211                 struct ucred *a_cred;
1212                 int *a_eofflag;
1213                 int *a_ncookies;
1214                 u_long **a_cookies;
1215         } */ *ap;
1216 {
1217         vnode_t *vp = ap->a_vp;
1218         uio_t *uiop = ap->a_uio;
1219         cred_t *cr = ap->a_cred;
1220         int *eofp = ap->a_eofflag;
1221         zfsvfs_t *zfsvfs = vp->v_vfsp->vfs_data;
1222         znode_t *dzp;
1223         int error;
1224
1225         ZFS_ENTER(zfsvfs);
1226
1227         if (zfsvfs->z_shares_dir == 0) {
1228                 ZFS_EXIT(zfsvfs);
1229                 return (SET_ERROR(ENOTSUP));
1230         }
1231         if ((error = zfs_zget(zfsvfs, zfsvfs->z_shares_dir, &dzp)) == 0) {
1232                 vn_lock(ZTOV(dzp), LK_SHARED | LK_RETRY);
1233                 error = VOP_READDIR(ZTOV(dzp), uiop, cr, eofp, ap->a_ncookies, ap->a_cookies);
1234                 VN_URELE(ZTOV(dzp));
1235         } else {
1236                 *eofp = 1;
1237                 error = SET_ERROR(ENOENT);
1238         }
1239
1240         ZFS_EXIT(zfsvfs);
1241         return (error);
1242 }
1243
1244 /*
1245  * pvp is the '.zfs' directory (zfsctl_node_t).
1246  *
1247  * Creates vp, which is '.zfs/snapshot' (zfsctl_snapdir_t).
1248  *
1249  * This function is the callback to create a GFS vnode for '.zfs/snapshot'
1250  * when a lookup is performed on .zfs for "snapshot".
1251  */
1252 vnode_t *
1253 zfsctl_mknode_snapdir(vnode_t *pvp)
1254 {
1255         vnode_t *vp;
1256         zfsctl_snapdir_t *sdp;
1257
1258         vp = gfs_dir_create(sizeof (zfsctl_snapdir_t), pvp, pvp->v_vfsp,
1259             &zfsctl_ops_snapdir, NULL, NULL, MAXNAMELEN,
1260             zfsctl_snapdir_readdir_cb, NULL);
1261         sdp = vp->v_data;
1262         sdp->sd_node.zc_id = ZFSCTL_INO_SNAPDIR;
1263         sdp->sd_node.zc_cmtime = ((zfsctl_node_t *)pvp->v_data)->zc_cmtime;
1264         mutex_init(&sdp->sd_lock, NULL, MUTEX_DEFAULT, NULL);
1265         avl_create(&sdp->sd_snaps, snapentry_compare,
1266             sizeof (zfs_snapentry_t), offsetof(zfs_snapentry_t, se_node));
1267         VOP_UNLOCK(vp, 0);
1268         return (vp);
1269 }
1270
1271 vnode_t *
1272 zfsctl_mknode_shares(vnode_t *pvp)
1273 {
1274         vnode_t *vp;
1275         zfsctl_node_t *sdp;
1276
1277         vp = gfs_dir_create(sizeof (zfsctl_node_t), pvp, pvp->v_vfsp,
1278             &zfsctl_ops_shares, NULL, NULL, MAXNAMELEN,
1279             NULL, NULL);
1280         sdp = vp->v_data;
1281         sdp->zc_cmtime = ((zfsctl_node_t *)pvp->v_data)->zc_cmtime;
1282         VOP_UNLOCK(vp, 0);
1283         return (vp);
1284
1285 }
1286
1287 /* ARGSUSED */
1288 static int
1289 zfsctl_shares_getattr(ap)
1290         struct vop_getattr_args /* {
1291                 struct vnode *a_vp;
1292                 struct vattr *a_vap;
1293                 struct ucred *a_cred;
1294                 struct thread *a_td;
1295         } */ *ap;
1296 {
1297         vnode_t *vp = ap->a_vp;
1298         vattr_t *vap = ap->a_vap;
1299         cred_t *cr = ap->a_cred;
1300         zfsvfs_t *zfsvfs = vp->v_vfsp->vfs_data;
1301         znode_t *dzp;
1302         int error;
1303
1304         ZFS_ENTER(zfsvfs);
1305         if (zfsvfs->z_shares_dir == 0) {
1306                 ZFS_EXIT(zfsvfs);
1307                 return (SET_ERROR(ENOTSUP));
1308         }
1309         if ((error = zfs_zget(zfsvfs, zfsvfs->z_shares_dir, &dzp)) == 0) {
1310                 vn_lock(ZTOV(dzp), LK_SHARED | LK_RETRY);
1311                 error = VOP_GETATTR(ZTOV(dzp), vap, cr);
1312                 VN_URELE(ZTOV(dzp));
1313         }
1314         ZFS_EXIT(zfsvfs);
1315         return (error);
1316
1317
1318 }
1319
1320 /* ARGSUSED */
1321 static int
1322 zfsctl_snapdir_getattr(ap)
1323         struct vop_getattr_args /* {
1324                 struct vnode *a_vp;
1325                 struct vattr *a_vap;
1326                 struct ucred *a_cred;
1327         } */ *ap;
1328 {
1329         vnode_t *vp = ap->a_vp;
1330         vattr_t *vap = ap->a_vap;
1331         zfsvfs_t *zfsvfs = vp->v_vfsp->vfs_data;
1332         zfsctl_snapdir_t *sdp = vp->v_data;
1333
1334         ZFS_ENTER(zfsvfs);
1335         zfsctl_common_getattr(vp, vap);
1336         vap->va_nodeid = gfs_file_inode(vp);
1337         vap->va_nlink = vap->va_size = avl_numnodes(&sdp->sd_snaps) + 2;
1338         vap->va_ctime = vap->va_mtime = dmu_objset_snap_cmtime(zfsvfs->z_os);
1339         vap->va_birthtime = vap->va_ctime;
1340         ZFS_EXIT(zfsvfs);
1341
1342         return (0);
1343 }
1344
1345 /* ARGSUSED */
1346 static int
1347 zfsctl_snapdir_inactive(ap)
1348         struct vop_inactive_args /* {
1349                 struct vnode *a_vp;
1350                 struct thread *a_td;
1351         } */ *ap;
1352 {
1353         vnode_t *vp = ap->a_vp;
1354         zfsctl_snapdir_t *sdp = vp->v_data;
1355         zfs_snapentry_t *sep;
1356
1357         /*
1358          * On forced unmount we have to free snapshots from here.
1359          */
1360         mutex_enter(&sdp->sd_lock);
1361         while ((sep = avl_first(&sdp->sd_snaps)) != NULL) {
1362                 avl_remove(&sdp->sd_snaps, sep);
1363                 kmem_free(sep->se_name, strlen(sep->se_name) + 1);
1364                 kmem_free(sep, sizeof (zfs_snapentry_t));
1365         }
1366         mutex_exit(&sdp->sd_lock);
1367         gfs_dir_inactive(vp);
1368         ASSERT(avl_numnodes(&sdp->sd_snaps) == 0);
1369         mutex_destroy(&sdp->sd_lock);
1370         avl_destroy(&sdp->sd_snaps);
1371         kmem_free(sdp, sizeof (zfsctl_snapdir_t));
1372
1373         return (0);
1374 }
1375
1376 #ifdef sun
1377 static const fs_operation_def_t zfsctl_tops_snapdir[] = {
1378         { VOPNAME_OPEN,         { .vop_open = zfsctl_common_open }      },
1379         { VOPNAME_CLOSE,        { .vop_close = zfsctl_common_close }    },
1380         { VOPNAME_IOCTL,        { .error = fs_inval }                   },
1381         { VOPNAME_GETATTR,      { .vop_getattr = zfsctl_snapdir_getattr } },
1382         { VOPNAME_ACCESS,       { .vop_access = zfsctl_common_access }  },
1383         { VOPNAME_RENAME,       { .vop_rename = zfsctl_snapdir_rename } },
1384         { VOPNAME_RMDIR,        { .vop_rmdir = zfsctl_snapdir_remove }  },
1385         { VOPNAME_MKDIR,        { .vop_mkdir = zfsctl_snapdir_mkdir }   },
1386         { VOPNAME_READDIR,      { .vop_readdir = gfs_vop_readdir }      },
1387         { VOPNAME_LOOKUP,       { .vop_lookup = zfsctl_snapdir_lookup } },
1388         { VOPNAME_SEEK,         { .vop_seek = fs_seek }                 },
1389         { VOPNAME_INACTIVE,     { .vop_inactive = zfsctl_snapdir_inactive } },
1390         { VOPNAME_FID,          { .vop_fid = zfsctl_common_fid }        },
1391         { NULL }
1392 };
1393
1394 static const fs_operation_def_t zfsctl_tops_shares[] = {
1395         { VOPNAME_OPEN,         { .vop_open = zfsctl_common_open }      },
1396         { VOPNAME_CLOSE,        { .vop_close = zfsctl_common_close }    },
1397         { VOPNAME_IOCTL,        { .error = fs_inval }                   },
1398         { VOPNAME_GETATTR,      { .vop_getattr = zfsctl_shares_getattr } },
1399         { VOPNAME_ACCESS,       { .vop_access = zfsctl_common_access }  },
1400         { VOPNAME_READDIR,      { .vop_readdir = zfsctl_shares_readdir } },
1401         { VOPNAME_LOOKUP,       { .vop_lookup = zfsctl_shares_lookup }  },
1402         { VOPNAME_SEEK,         { .vop_seek = fs_seek }                 },
1403         { VOPNAME_INACTIVE,     { .vop_inactive = gfs_vop_inactive } },
1404         { VOPNAME_FID,          { .vop_fid = zfsctl_shares_fid } },
1405         { NULL }
1406 };
1407 #else   /* !sun */
1408 static struct vop_vector zfsctl_ops_snapdir = {
1409         .vop_default =  &default_vnodeops,
1410         .vop_open =     zfsctl_common_open,
1411         .vop_close =    zfsctl_common_close,
1412         .vop_ioctl =    VOP_EINVAL,
1413         .vop_getattr =  zfsctl_snapdir_getattr,
1414         .vop_access =   zfsctl_common_access,
1415         .vop_mkdir =    zfsctl_freebsd_snapdir_mkdir,
1416         .vop_readdir =  gfs_vop_readdir,
1417         .vop_lookup =   zfsctl_snapdir_lookup,
1418         .vop_inactive = zfsctl_snapdir_inactive,
1419         .vop_reclaim =  zfsctl_common_reclaim,
1420         .vop_fid =      zfsctl_common_fid,
1421 };
1422
1423 static struct vop_vector zfsctl_ops_shares = {
1424         .vop_default =  &default_vnodeops,
1425         .vop_open =     zfsctl_common_open,
1426         .vop_close =    zfsctl_common_close,
1427         .vop_ioctl =    VOP_EINVAL,
1428         .vop_getattr =  zfsctl_shares_getattr,
1429         .vop_access =   zfsctl_common_access,
1430         .vop_readdir =  zfsctl_shares_readdir,
1431         .vop_lookup =   zfsctl_shares_lookup,
1432         .vop_inactive = gfs_vop_inactive,
1433         .vop_reclaim =  zfsctl_common_reclaim,
1434         .vop_fid =      zfsctl_shares_fid,
1435 };
1436 #endif  /* !sun */
1437
1438 /*
1439  * pvp is the GFS vnode '.zfs/snapshot'.
1440  *
1441  * This creates a GFS node under '.zfs/snapshot' representing each
1442  * snapshot.  This newly created GFS node is what we mount snapshot
1443  * vfs_t's ontop of.
1444  */
1445 static vnode_t *
1446 zfsctl_snapshot_mknode(vnode_t *pvp, uint64_t objset)
1447 {
1448         vnode_t *vp;
1449         zfsctl_node_t *zcp;
1450
1451         vp = gfs_dir_create(sizeof (zfsctl_node_t), pvp, pvp->v_vfsp,
1452             &zfsctl_ops_snapshot, NULL, NULL, MAXNAMELEN, NULL, NULL);
1453         zcp = vp->v_data;
1454         zcp->zc_id = objset;
1455         VOP_UNLOCK(vp, 0);
1456
1457         return (vp);
1458 }
1459
1460 static int
1461 zfsctl_snapshot_inactive(ap)
1462         struct vop_inactive_args /* {
1463                 struct vnode *a_vp;
1464                 struct thread *a_td;
1465         } */ *ap;
1466 {
1467         vnode_t *vp = ap->a_vp;
1468         cred_t *cr = ap->a_td->td_ucred;
1469         struct vop_inactive_args iap;
1470         zfsctl_snapdir_t *sdp;
1471         zfs_snapentry_t *sep, *next;
1472         int locked;
1473         vnode_t *dvp;
1474
1475         if (vp->v_count > 0)
1476                 goto end;
1477
1478         VERIFY(gfs_dir_lookup(vp, "..", &dvp, cr, 0, NULL, NULL) == 0);
1479         sdp = dvp->v_data;
1480
1481         if (!(locked = MUTEX_HELD(&sdp->sd_lock)))
1482                 mutex_enter(&sdp->sd_lock);
1483
1484         ASSERT(!vn_ismntpt(vp));
1485
1486         sep = avl_first(&sdp->sd_snaps);
1487         while (sep != NULL) {
1488                 next = AVL_NEXT(&sdp->sd_snaps, sep);
1489
1490                 if (sep->se_root == vp) {
1491                         avl_remove(&sdp->sd_snaps, sep);
1492                         kmem_free(sep->se_name, strlen(sep->se_name) + 1);
1493                         kmem_free(sep, sizeof (zfs_snapentry_t));
1494                         break;
1495                 }
1496                 sep = next;
1497         }
1498         ASSERT(sep != NULL);
1499
1500         if (!locked)
1501                 mutex_exit(&sdp->sd_lock);
1502         VN_RELE(dvp);
1503
1504 end:
1505         /*
1506          * Dispose of the vnode for the snapshot mount point.
1507          * This is safe to do because once this entry has been removed
1508          * from the AVL tree, it can't be found again, so cannot become
1509          * "active".  If we lookup the same name again we will end up
1510          * creating a new vnode.
1511          */
1512         iap.a_vp = vp;
1513         return (gfs_vop_inactive(&iap));
1514 }
1515
1516 static int
1517 zfsctl_snapshot_vptocnp(struct vop_vptocnp_args *ap)
1518 {
1519         zfsvfs_t *zfsvfs = ap->a_vp->v_vfsp->vfs_data;
1520         vnode_t *dvp, *vp;
1521         zfsctl_snapdir_t *sdp;
1522         zfs_snapentry_t *sep;
1523         int error;
1524
1525         ASSERT(zfsvfs->z_ctldir != NULL);
1526         error = zfsctl_root_lookup(zfsvfs->z_ctldir, "snapshot", &dvp,
1527             NULL, 0, NULL, kcred, NULL, NULL, NULL);
1528         if (error != 0)
1529                 return (error);
1530         sdp = dvp->v_data;
1531
1532         mutex_enter(&sdp->sd_lock);
1533         sep = avl_first(&sdp->sd_snaps);
1534         while (sep != NULL) {
1535                 vp = sep->se_root;
1536                 if (vp == ap->a_vp)
1537                         break;
1538                 sep = AVL_NEXT(&sdp->sd_snaps, sep);
1539         }
1540         if (sep == NULL) {
1541                 mutex_exit(&sdp->sd_lock);
1542                 error = ENOENT;
1543         } else {
1544                 size_t len;
1545
1546                 len = strlen(sep->se_name);
1547                 *ap->a_buflen -= len;
1548                 bcopy(sep->se_name, ap->a_buf + *ap->a_buflen, len);
1549                 mutex_exit(&sdp->sd_lock);
1550                 vref(dvp);
1551                 *ap->a_vpp = dvp;
1552         }
1553         VN_RELE(dvp);
1554
1555         return (error);
1556 }
1557
1558 /*
1559  * These VP's should never see the light of day.  They should always
1560  * be covered.
1561  */
1562 static struct vop_vector zfsctl_ops_snapshot = {
1563         .vop_default =  &default_vnodeops,
1564         .vop_inactive = zfsctl_snapshot_inactive,
1565         .vop_reclaim =  zfsctl_common_reclaim,
1566         .vop_vptocnp =  zfsctl_snapshot_vptocnp,
1567 };
1568
1569 int
1570 zfsctl_lookup_objset(vfs_t *vfsp, uint64_t objsetid, zfsvfs_t **zfsvfsp)
1571 {
1572         zfsvfs_t *zfsvfs = vfsp->vfs_data;
1573         vnode_t *dvp, *vp;
1574         zfsctl_snapdir_t *sdp;
1575         zfsctl_node_t *zcp;
1576         zfs_snapentry_t *sep;
1577         int error;
1578
1579         ASSERT(zfsvfs->z_ctldir != NULL);
1580         error = zfsctl_root_lookup(zfsvfs->z_ctldir, "snapshot", &dvp,
1581             NULL, 0, NULL, kcred, NULL, NULL, NULL);
1582         if (error != 0)
1583                 return (error);
1584         sdp = dvp->v_data;
1585
1586         mutex_enter(&sdp->sd_lock);
1587         sep = avl_first(&sdp->sd_snaps);
1588         while (sep != NULL) {
1589                 vp = sep->se_root;
1590                 zcp = vp->v_data;
1591                 if (zcp->zc_id == objsetid)
1592                         break;
1593
1594                 sep = AVL_NEXT(&sdp->sd_snaps, sep);
1595         }
1596
1597         if (sep != NULL) {
1598                 VN_HOLD(vp);
1599                 /*
1600                  * Return the mounted root rather than the covered mount point.
1601                  * Takes the GFS vnode at .zfs/snapshot/<snapshot objsetid>
1602                  * and returns the ZFS vnode mounted on top of the GFS node.
1603                  * This ZFS vnode is the root of the vfs for objset 'objsetid'.
1604                  */
1605                 error = traverse(&vp, LK_SHARED | LK_RETRY);
1606                 if (error == 0) {
1607                         if (vp == sep->se_root) {
1608                                 VN_RELE(vp);    /* release covered vp */
1609                                 error = SET_ERROR(EINVAL);
1610                         } else {
1611                                 *zfsvfsp = VTOZ(vp)->z_zfsvfs;
1612                                 VN_URELE(vp);   /* put snapshot's root vp */
1613                         }
1614                 }
1615                 mutex_exit(&sdp->sd_lock);
1616         } else {
1617                 error = SET_ERROR(EINVAL);
1618                 mutex_exit(&sdp->sd_lock);
1619         }
1620
1621         VN_RELE(dvp);
1622
1623         return (error);
1624 }
1625
1626 /*
1627  * Unmount any snapshots for the given filesystem.  This is called from
1628  * zfs_umount() - if we have a ctldir, then go through and unmount all the
1629  * snapshots.
1630  */
1631 int
1632 zfsctl_umount_snapshots(vfs_t *vfsp, int fflags, cred_t *cr)
1633 {
1634         zfsvfs_t *zfsvfs = vfsp->vfs_data;
1635         vnode_t *dvp;
1636         zfsctl_snapdir_t *sdp;
1637         zfs_snapentry_t *sep, *next;
1638         int error;
1639
1640         ASSERT(zfsvfs->z_ctldir != NULL);
1641         error = zfsctl_root_lookup(zfsvfs->z_ctldir, "snapshot", &dvp,
1642             NULL, 0, NULL, cr, NULL, NULL, NULL);
1643         if (error != 0)
1644                 return (error);
1645         sdp = dvp->v_data;
1646
1647         mutex_enter(&sdp->sd_lock);
1648
1649         sep = avl_first(&sdp->sd_snaps);
1650         while (sep != NULL) {
1651                 next = AVL_NEXT(&sdp->sd_snaps, sep);
1652
1653                 /*
1654                  * If this snapshot is not mounted, then it must
1655                  * have just been unmounted by somebody else, and
1656                  * will be cleaned up by zfsctl_snapdir_inactive().
1657                  */
1658                 if (vn_ismntpt(sep->se_root)) {
1659                         error = zfsctl_unmount_snap(sep, fflags, cr);
1660                         if (error) {
1661                                 avl_index_t where;
1662
1663                                 /*
1664                                  * Before reinserting snapshot to the tree,
1665                                  * check if it was actually removed. For example
1666                                  * when snapshot mount point is busy, we will
1667                                  * have an error here, but there will be no need
1668                                  * to reinsert snapshot.
1669                                  */
1670                                 if (avl_find(&sdp->sd_snaps, sep, &where) == NULL)
1671                                         avl_insert(&sdp->sd_snaps, sep, where);
1672                                 break;
1673                         }
1674                 }
1675                 sep = next;
1676         }
1677
1678         mutex_exit(&sdp->sd_lock);
1679         VN_RELE(dvp);
1680
1681         return (error);
1682 }