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.
8 * You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
9 * or https://opensource.org/licenses/CDDL-1.0.
10 * See the License for the specific language governing permissions
11 * and limitations under the License.
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]
23 * Copyright (c) 2005, 2010, Oracle and/or its affiliates. All rights reserved.
24 * Copyright (C) 2011 Lawrence Livermore National Security, LLC.
25 * Produced at Lawrence Livermore National Laboratory (cf, DISCLAIMER).
27 * Rewritten for Linux by:
28 * Rohan Puri <rohan.puri15@gmail.com>
29 * Brian Behlendorf <behlendorf1@llnl.gov>
30 * Copyright (c) 2013 by Delphix. All rights reserved.
31 * Copyright 2015, OmniTI Computer Consulting, Inc. All rights reserved.
32 * Copyright (c) 2018 George Melikov. All Rights Reserved.
33 * Copyright (c) 2019 Datto, Inc. All rights reserved.
34 * Copyright (c) 2020 The MathWorks, Inc. All rights reserved.
38 * ZFS control directory (a.k.a. ".zfs")
40 * This directory provides a common location for all ZFS meta-objects.
41 * Currently, this is only the 'snapshot' and 'shares' directory, but this may
42 * expand in the future. The elements are built dynamically, as the hierarchy
43 * does not actually exist on disk.
45 * For 'snapshot', we don't want to have all snapshots always mounted, because
46 * this would take up a huge amount of space in /etc/mnttab. We have three
49 * ctldir ------> snapshotdir -------> snapshot
55 * The 'snapshot' node contains just enough information to lookup '..' and act
56 * as a mountpoint for the snapshot. Whenever we lookup a specific snapshot, we
57 * perform an automount of the underlying filesystem and return the
58 * corresponding inode.
60 * All mounts are handled automatically by an user mode helper which invokes
61 * the mount procedure. Unmounts are handled by allowing the mount
62 * point to expire so the kernel may automatically unmount it.
64 * The '.zfs', '.zfs/snapshot', and all directories created under
65 * '.zfs/snapshot' (ie: '.zfs/snapshot/<snapname>') all share the same
66 * zfsvfs_t as the head filesystem (what '.zfs' lives under).
68 * File systems mounted on top of the '.zfs/snapshot/<snapname>' paths
69 * (ie: snapshots) are complete ZFS filesystems and have their own unique
70 * zfsvfs_t. However, the fsid reported by these mounts will be the same
71 * as that used by the parent zfsvfs_t to make NFS happy.
74 #include <sys/types.h>
75 #include <sys/param.h>
77 #include <sys/sysmacros.h>
78 #include <sys/pathname.h>
80 #include <sys/zfs_ctldir.h>
81 #include <sys/zfs_ioctl.h>
82 #include <sys/zfs_vfsops.h>
83 #include <sys/zfs_vnops.h>
86 #include <sys/dmu_objset.h>
87 #include <sys/dsl_destroy.h>
88 #include <sys/dsl_deleg.h>
90 #include <sys/mntent.h>
91 #include "zfs_namecheck.h"
94 * Two AVL trees are maintained which contain all currently automounted
95 * snapshots. Every automounted snapshots maps to a single zfs_snapentry_t
98 * - be attached to both trees, and
99 * - be unique, no duplicate entries are allowed.
101 * The zfs_snapshots_by_name tree is indexed by the full dataset name
102 * while the zfs_snapshots_by_objsetid tree is indexed by the unique
103 * objsetid. This allows for fast lookups either by name or objsetid.
105 static avl_tree_t zfs_snapshots_by_name
;
106 static avl_tree_t zfs_snapshots_by_objsetid
;
107 static krwlock_t zfs_snapshot_lock
;
110 * Control Directory Tunables (.zfs)
112 int zfs_expire_snapshot
= ZFSCTL_EXPIRE_SNAPSHOT
;
113 static int zfs_admin_snapshot
= 0;
116 char *se_name
; /* full snapshot name */
117 char *se_path
; /* full mount path */
118 spa_t
*se_spa
; /* pool spa */
119 uint64_t se_objsetid
; /* snapshot objset id */
120 struct dentry
*se_root_dentry
; /* snapshot root dentry */
121 krwlock_t se_taskqid_lock
; /* scheduled unmount taskqid lock */
122 taskqid_t se_taskqid
; /* scheduled unmount taskqid */
123 avl_node_t se_node_name
; /* zfs_snapshots_by_name link */
124 avl_node_t se_node_objsetid
; /* zfs_snapshots_by_objsetid link */
125 zfs_refcount_t se_refcount
; /* reference count */
128 static void zfsctl_snapshot_unmount_delay_impl(zfs_snapentry_t
*se
, int delay
);
131 * Allocate a new zfs_snapentry_t being careful to make a copy of the
132 * the snapshot name and provided mount point. No reference is taken.
134 static zfs_snapentry_t
*
135 zfsctl_snapshot_alloc(const char *full_name
, const char *full_path
, spa_t
*spa
,
136 uint64_t objsetid
, struct dentry
*root_dentry
)
140 se
= kmem_zalloc(sizeof (zfs_snapentry_t
), KM_SLEEP
);
142 se
->se_name
= kmem_strdup(full_name
);
143 se
->se_path
= kmem_strdup(full_path
);
145 se
->se_objsetid
= objsetid
;
146 se
->se_root_dentry
= root_dentry
;
147 se
->se_taskqid
= TASKQID_INVALID
;
148 rw_init(&se
->se_taskqid_lock
, NULL
, RW_DEFAULT
, NULL
);
150 zfs_refcount_create(&se
->se_refcount
);
156 * Free a zfs_snapentry_t the caller must ensure there are no active
160 zfsctl_snapshot_free(zfs_snapentry_t
*se
)
162 zfs_refcount_destroy(&se
->se_refcount
);
163 kmem_strfree(se
->se_name
);
164 kmem_strfree(se
->se_path
);
165 rw_destroy(&se
->se_taskqid_lock
);
167 kmem_free(se
, sizeof (zfs_snapentry_t
));
171 * Hold a reference on the zfs_snapentry_t.
174 zfsctl_snapshot_hold(zfs_snapentry_t
*se
)
176 zfs_refcount_add(&se
->se_refcount
, NULL
);
180 * Release a reference on the zfs_snapentry_t. When the number of
181 * references drops to zero the structure will be freed.
184 zfsctl_snapshot_rele(zfs_snapentry_t
*se
)
186 if (zfs_refcount_remove(&se
->se_refcount
, NULL
) == 0)
187 zfsctl_snapshot_free(se
);
191 * Add a zfs_snapentry_t to both the zfs_snapshots_by_name and
192 * zfs_snapshots_by_objsetid trees. While the zfs_snapentry_t is part
193 * of the trees a reference is held.
196 zfsctl_snapshot_add(zfs_snapentry_t
*se
)
198 ASSERT(RW_WRITE_HELD(&zfs_snapshot_lock
));
199 zfsctl_snapshot_hold(se
);
200 avl_add(&zfs_snapshots_by_name
, se
);
201 avl_add(&zfs_snapshots_by_objsetid
, se
);
205 * Remove a zfs_snapentry_t from both the zfs_snapshots_by_name and
206 * zfs_snapshots_by_objsetid trees. Upon removal a reference is dropped,
207 * this can result in the structure being freed if that was the last
208 * remaining reference.
211 zfsctl_snapshot_remove(zfs_snapentry_t
*se
)
213 ASSERT(RW_WRITE_HELD(&zfs_snapshot_lock
));
214 avl_remove(&zfs_snapshots_by_name
, se
);
215 avl_remove(&zfs_snapshots_by_objsetid
, se
);
216 zfsctl_snapshot_rele(se
);
220 * Snapshot name comparison function for the zfs_snapshots_by_name.
223 snapentry_compare_by_name(const void *a
, const void *b
)
225 const zfs_snapentry_t
*se_a
= a
;
226 const zfs_snapentry_t
*se_b
= b
;
229 ret
= strcmp(se_a
->se_name
, se_b
->se_name
);
240 * Snapshot name comparison function for the zfs_snapshots_by_objsetid.
243 snapentry_compare_by_objsetid(const void *a
, const void *b
)
245 const zfs_snapentry_t
*se_a
= a
;
246 const zfs_snapentry_t
*se_b
= b
;
248 if (se_a
->se_spa
!= se_b
->se_spa
)
249 return ((ulong_t
)se_a
->se_spa
< (ulong_t
)se_b
->se_spa
? -1 : 1);
251 if (se_a
->se_objsetid
< se_b
->se_objsetid
)
253 else if (se_a
->se_objsetid
> se_b
->se_objsetid
)
260 * Find a zfs_snapentry_t in zfs_snapshots_by_name. If the snapname
261 * is found a pointer to the zfs_snapentry_t is returned and a reference
262 * taken on the structure. The caller is responsible for dropping the
263 * reference with zfsctl_snapshot_rele(). If the snapname is not found
264 * NULL will be returned.
266 static zfs_snapentry_t
*
267 zfsctl_snapshot_find_by_name(const char *snapname
)
269 zfs_snapentry_t
*se
, search
;
271 ASSERT(RW_LOCK_HELD(&zfs_snapshot_lock
));
273 search
.se_name
= (char *)snapname
;
274 se
= avl_find(&zfs_snapshots_by_name
, &search
, NULL
);
276 zfsctl_snapshot_hold(se
);
282 * Find a zfs_snapentry_t in zfs_snapshots_by_objsetid given the objset id
283 * rather than the snapname. In all other respects it behaves the same
284 * as zfsctl_snapshot_find_by_name().
286 static zfs_snapentry_t
*
287 zfsctl_snapshot_find_by_objsetid(spa_t
*spa
, uint64_t objsetid
)
289 zfs_snapentry_t
*se
, search
;
291 ASSERT(RW_LOCK_HELD(&zfs_snapshot_lock
));
294 search
.se_objsetid
= objsetid
;
295 se
= avl_find(&zfs_snapshots_by_objsetid
, &search
, NULL
);
297 zfsctl_snapshot_hold(se
);
303 * Rename a zfs_snapentry_t in the zfs_snapshots_by_name. The structure is
304 * removed, renamed, and added back to the new correct location in the tree.
307 zfsctl_snapshot_rename(const char *old_snapname
, const char *new_snapname
)
311 ASSERT(RW_WRITE_HELD(&zfs_snapshot_lock
));
313 se
= zfsctl_snapshot_find_by_name(old_snapname
);
315 return (SET_ERROR(ENOENT
));
317 zfsctl_snapshot_remove(se
);
318 kmem_strfree(se
->se_name
);
319 se
->se_name
= kmem_strdup(new_snapname
);
320 zfsctl_snapshot_add(se
);
321 zfsctl_snapshot_rele(se
);
327 * Delayed task responsible for unmounting an expired automounted snapshot.
330 snapentry_expire(void *data
)
332 zfs_snapentry_t
*se
= (zfs_snapentry_t
*)data
;
333 spa_t
*spa
= se
->se_spa
;
334 uint64_t objsetid
= se
->se_objsetid
;
336 if (zfs_expire_snapshot
<= 0) {
337 zfsctl_snapshot_rele(se
);
341 rw_enter(&se
->se_taskqid_lock
, RW_WRITER
);
342 se
->se_taskqid
= TASKQID_INVALID
;
343 rw_exit(&se
->se_taskqid_lock
);
344 (void) zfsctl_snapshot_unmount(se
->se_name
, MNT_EXPIRE
);
345 zfsctl_snapshot_rele(se
);
348 * Reschedule the unmount if the zfs_snapentry_t wasn't removed.
349 * This can occur when the snapshot is busy.
351 rw_enter(&zfs_snapshot_lock
, RW_READER
);
352 if ((se
= zfsctl_snapshot_find_by_objsetid(spa
, objsetid
)) != NULL
) {
353 zfsctl_snapshot_unmount_delay_impl(se
, zfs_expire_snapshot
);
354 zfsctl_snapshot_rele(se
);
356 rw_exit(&zfs_snapshot_lock
);
360 * Cancel an automatic unmount of a snapname. This callback is responsible
361 * for dropping the reference on the zfs_snapentry_t which was taken when
365 zfsctl_snapshot_unmount_cancel(zfs_snapentry_t
*se
)
368 rw_enter(&se
->se_taskqid_lock
, RW_WRITER
);
369 err
= taskq_cancel_id(system_delay_taskq
, se
->se_taskqid
);
371 * if we get ENOENT, the taskq couldn't be found to be
372 * canceled, so we can just mark it as invalid because
373 * it's already gone. If we got EBUSY, then we already
374 * blocked until it was gone _anyway_, so we don't care.
376 se
->se_taskqid
= TASKQID_INVALID
;
377 rw_exit(&se
->se_taskqid_lock
);
379 zfsctl_snapshot_rele(se
);
384 * Dispatch the unmount task for delayed handling with a hold protecting it.
387 zfsctl_snapshot_unmount_delay_impl(zfs_snapentry_t
*se
, int delay
)
393 zfsctl_snapshot_hold(se
);
394 rw_enter(&se
->se_taskqid_lock
, RW_WRITER
);
395 ASSERT3S(se
->se_taskqid
, ==, TASKQID_INVALID
);
396 se
->se_taskqid
= taskq_dispatch_delay(system_delay_taskq
,
397 snapentry_expire
, se
, TQ_SLEEP
, ddi_get_lbolt() + delay
* HZ
);
398 rw_exit(&se
->se_taskqid_lock
);
402 * Schedule an automatic unmount of objset id to occur in delay seconds from
403 * now. Any previous delayed unmount will be cancelled in favor of the
404 * updated deadline. A reference is taken by zfsctl_snapshot_find_by_name()
405 * and held until the outstanding task is handled or cancelled.
408 zfsctl_snapshot_unmount_delay(spa_t
*spa
, uint64_t objsetid
, int delay
)
413 rw_enter(&zfs_snapshot_lock
, RW_READER
);
414 if ((se
= zfsctl_snapshot_find_by_objsetid(spa
, objsetid
)) != NULL
) {
415 zfsctl_snapshot_unmount_cancel(se
);
416 zfsctl_snapshot_unmount_delay_impl(se
, delay
);
417 zfsctl_snapshot_rele(se
);
420 rw_exit(&zfs_snapshot_lock
);
426 * Check if snapname is currently mounted. Returned non-zero when mounted
427 * and zero when unmounted.
430 zfsctl_snapshot_ismounted(const char *snapname
)
433 boolean_t ismounted
= B_FALSE
;
435 rw_enter(&zfs_snapshot_lock
, RW_READER
);
436 if ((se
= zfsctl_snapshot_find_by_name(snapname
)) != NULL
) {
437 zfsctl_snapshot_rele(se
);
440 rw_exit(&zfs_snapshot_lock
);
446 * Check if the given inode is a part of the virtual .zfs directory.
449 zfsctl_is_node(struct inode
*ip
)
451 return (ITOZ(ip
)->z_is_ctldir
);
455 * Check if the given inode is a .zfs/snapshots/snapname directory.
458 zfsctl_is_snapdir(struct inode
*ip
)
460 return (zfsctl_is_node(ip
) && (ip
->i_ino
<= ZFSCTL_INO_SNAPDIRS
));
464 * Allocate a new inode with the passed id and ops.
466 static struct inode
*
467 zfsctl_inode_alloc(zfsvfs_t
*zfsvfs
, uint64_t id
,
468 const struct file_operations
*fops
, const struct inode_operations
*ops
)
470 inode_timespec_t now
;
474 ip
= new_inode(zfsvfs
->z_sb
);
478 now
= current_time(ip
);
480 ASSERT3P(zp
->z_dirlocks
, ==, NULL
);
481 ASSERT3P(zp
->z_acl_cached
, ==, NULL
);
482 ASSERT3P(zp
->z_xattr_cached
, ==, NULL
);
484 zp
->z_unlinked
= B_FALSE
;
485 zp
->z_atime_dirty
= B_FALSE
;
486 zp
->z_zn_prefetch
= B_FALSE
;
487 zp
->z_is_sa
= B_FALSE
;
488 zp
->z_is_mapped
= B_FALSE
;
489 zp
->z_is_ctldir
= B_TRUE
;
490 zp
->z_is_stale
= B_FALSE
;
499 zp
->z_sync_writes_cnt
= 0;
500 zp
->z_async_writes_cnt
= 0;
501 ip
->i_generation
= 0;
503 ip
->i_mode
= (S_IFDIR
| S_IRWXUGO
);
504 ip
->i_uid
= SUID_TO_KUID(0);
505 ip
->i_gid
= SGID_TO_KGID(0);
506 ip
->i_blkbits
= SPA_MINBLOCKSHIFT
;
512 #if defined(IOP_XATTR)
513 ip
->i_opflags
&= ~IOP_XATTR
;
516 if (insert_inode_locked(ip
)) {
517 unlock_new_inode(ip
);
522 mutex_enter(&zfsvfs
->z_znodes_lock
);
523 list_insert_tail(&zfsvfs
->z_all_znodes
, zp
);
524 zfsvfs
->z_nr_znodes
++;
526 mutex_exit(&zfsvfs
->z_znodes_lock
);
528 unlock_new_inode(ip
);
534 * Lookup the inode with given id, it will be allocated if needed.
536 static struct inode
*
537 zfsctl_inode_lookup(zfsvfs_t
*zfsvfs
, uint64_t id
,
538 const struct file_operations
*fops
, const struct inode_operations
*ops
)
540 struct inode
*ip
= NULL
;
543 ip
= ilookup(zfsvfs
->z_sb
, (unsigned long)id
);
547 /* May fail due to concurrent zfsctl_inode_alloc() */
548 ip
= zfsctl_inode_alloc(zfsvfs
, id
, fops
, ops
);
555 * Create the '.zfs' directory. This directory is cached as part of the VFS
556 * structure. This results in a hold on the zfsvfs_t. The code in zfs_umount()
557 * therefore checks against a vfs_count of 2 instead of 1. This reference
558 * is removed when the ctldir is destroyed in the unmount. All other entities
559 * under the '.zfs' directory are created dynamically as needed.
561 * Because the dynamically created '.zfs' directory entries assume the use
562 * of 64-bit inode numbers this support must be disabled on 32-bit systems.
565 zfsctl_create(zfsvfs_t
*zfsvfs
)
567 ASSERT(zfsvfs
->z_ctldir
== NULL
);
569 zfsvfs
->z_ctldir
= zfsctl_inode_alloc(zfsvfs
, ZFSCTL_INO_ROOT
,
570 &zpl_fops_root
, &zpl_ops_root
);
571 if (zfsvfs
->z_ctldir
== NULL
)
572 return (SET_ERROR(ENOENT
));
578 * Destroy the '.zfs' directory or remove a snapshot from zfs_snapshots_by_name.
579 * Only called when the filesystem is unmounted.
582 zfsctl_destroy(zfsvfs_t
*zfsvfs
)
584 if (zfsvfs
->z_issnap
) {
586 spa_t
*spa
= zfsvfs
->z_os
->os_spa
;
587 uint64_t objsetid
= dmu_objset_id(zfsvfs
->z_os
);
589 rw_enter(&zfs_snapshot_lock
, RW_WRITER
);
590 se
= zfsctl_snapshot_find_by_objsetid(spa
, objsetid
);
592 zfsctl_snapshot_remove(se
);
593 rw_exit(&zfs_snapshot_lock
);
595 zfsctl_snapshot_unmount_cancel(se
);
596 zfsctl_snapshot_rele(se
);
598 } else if (zfsvfs
->z_ctldir
) {
599 iput(zfsvfs
->z_ctldir
);
600 zfsvfs
->z_ctldir
= NULL
;
605 * Given a root znode, retrieve the associated .zfs directory.
606 * Add a hold to the vnode and return it.
609 zfsctl_root(znode_t
*zp
)
611 ASSERT(zfs_has_ctldir(zp
));
612 /* Must have an existing ref, so igrab() cannot return NULL */
613 VERIFY3P(igrab(ZTOZSB(zp
)->z_ctldir
), !=, NULL
);
614 return (ZTOZSB(zp
)->z_ctldir
);
618 * Generate a long fid to indicate a snapdir. We encode whether snapdir is
619 * already mounted in gen field. We do this because nfsd lookup will not
620 * trigger automount. Next time the nfsd does fh_to_dentry, we will notice
621 * this and do automount and return ESTALE to force nfsd revalidate and follow
625 zfsctl_snapdir_fid(struct inode
*ip
, fid_t
*fidp
)
627 zfid_short_t
*zfid
= (zfid_short_t
*)fidp
;
628 zfid_long_t
*zlfid
= (zfid_long_t
*)fidp
;
633 struct dentry
*dentry
;
635 if (fidp
->fid_len
< LONG_FID_LEN
) {
636 fidp
->fid_len
= LONG_FID_LEN
;
637 return (SET_ERROR(ENOSPC
));
641 objsetid
= ZFSCTL_INO_SNAPDIRS
- ip
->i_ino
;
642 zfid
->zf_len
= LONG_FID_LEN
;
644 dentry
= d_obtain_alias(igrab(ip
));
645 if (!IS_ERR(dentry
)) {
646 gen
= !!d_mountpoint(dentry
);
650 for (i
= 0; i
< sizeof (zfid
->zf_object
); i
++)
651 zfid
->zf_object
[i
] = (uint8_t)(object
>> (8 * i
));
653 for (i
= 0; i
< sizeof (zfid
->zf_gen
); i
++)
654 zfid
->zf_gen
[i
] = (uint8_t)(gen
>> (8 * i
));
656 for (i
= 0; i
< sizeof (zlfid
->zf_setid
); i
++)
657 zlfid
->zf_setid
[i
] = (uint8_t)(objsetid
>> (8 * i
));
659 for (i
= 0; i
< sizeof (zlfid
->zf_setgen
); i
++)
660 zlfid
->zf_setgen
[i
] = 0;
666 * Generate an appropriate fid for an entry in the .zfs directory.
669 zfsctl_fid(struct inode
*ip
, fid_t
*fidp
)
671 znode_t
*zp
= ITOZ(ip
);
672 zfsvfs_t
*zfsvfs
= ITOZSB(ip
);
673 uint64_t object
= zp
->z_id
;
678 if ((error
= zfs_enter(zfsvfs
, FTAG
)) != 0)
681 if (zfsctl_is_snapdir(ip
)) {
682 zfs_exit(zfsvfs
, FTAG
);
683 return (zfsctl_snapdir_fid(ip
, fidp
));
686 if (fidp
->fid_len
< SHORT_FID_LEN
) {
687 fidp
->fid_len
= SHORT_FID_LEN
;
688 zfs_exit(zfsvfs
, FTAG
);
689 return (SET_ERROR(ENOSPC
));
692 zfid
= (zfid_short_t
*)fidp
;
694 zfid
->zf_len
= SHORT_FID_LEN
;
696 for (i
= 0; i
< sizeof (zfid
->zf_object
); i
++)
697 zfid
->zf_object
[i
] = (uint8_t)(object
>> (8 * i
));
699 /* .zfs znodes always have a generation number of 0 */
700 for (i
= 0; i
< sizeof (zfid
->zf_gen
); i
++)
703 zfs_exit(zfsvfs
, FTAG
);
708 * Construct a full dataset name in full_name: "pool/dataset@snap_name"
711 zfsctl_snapshot_name(zfsvfs_t
*zfsvfs
, const char *snap_name
, int len
,
714 objset_t
*os
= zfsvfs
->z_os
;
716 if (zfs_component_namecheck(snap_name
, NULL
, NULL
) != 0)
717 return (SET_ERROR(EILSEQ
));
719 dmu_objset_name(os
, full_name
);
720 if ((strlen(full_name
) + 1 + strlen(snap_name
)) >= len
)
721 return (SET_ERROR(ENAMETOOLONG
));
723 (void) strcat(full_name
, "@");
724 (void) strcat(full_name
, snap_name
);
730 * Returns full path in full_path: "/pool/dataset/.zfs/snapshot/snap_name/"
733 zfsctl_snapshot_path_objset(zfsvfs_t
*zfsvfs
, uint64_t objsetid
,
734 int path_len
, char *full_path
)
736 objset_t
*os
= zfsvfs
->z_os
;
737 fstrans_cookie_t cookie
;
739 boolean_t case_conflict
;
740 uint64_t id
, pos
= 0;
743 if (zfsvfs
->z_vfs
->vfs_mntpoint
== NULL
)
744 return (SET_ERROR(ENOENT
));
746 cookie
= spl_fstrans_mark();
747 snapname
= kmem_alloc(ZFS_MAX_DATASET_NAME_LEN
, KM_SLEEP
);
750 dsl_pool_config_enter(dmu_objset_pool(os
), FTAG
);
751 error
= dmu_snapshot_list_next(zfsvfs
->z_os
,
752 ZFS_MAX_DATASET_NAME_LEN
, snapname
, &id
, &pos
,
754 dsl_pool_config_exit(dmu_objset_pool(os
), FTAG
);
762 snprintf(full_path
, path_len
, "%s/.zfs/snapshot/%s",
763 zfsvfs
->z_vfs
->vfs_mntpoint
, snapname
);
765 kmem_free(snapname
, ZFS_MAX_DATASET_NAME_LEN
);
766 spl_fstrans_unmark(cookie
);
772 * Special case the handling of "..".
775 zfsctl_root_lookup(struct inode
*dip
, const char *name
, struct inode
**ipp
,
776 int flags
, cred_t
*cr
, int *direntflags
, pathname_t
*realpnp
)
778 zfsvfs_t
*zfsvfs
= ITOZSB(dip
);
781 if ((error
= zfs_enter(zfsvfs
, FTAG
)) != 0)
784 if (strcmp(name
, "..") == 0) {
785 *ipp
= dip
->i_sb
->s_root
->d_inode
;
786 } else if (strcmp(name
, ZFS_SNAPDIR_NAME
) == 0) {
787 *ipp
= zfsctl_inode_lookup(zfsvfs
, ZFSCTL_INO_SNAPDIR
,
788 &zpl_fops_snapdir
, &zpl_ops_snapdir
);
789 } else if (strcmp(name
, ZFS_SHAREDIR_NAME
) == 0) {
790 *ipp
= zfsctl_inode_lookup(zfsvfs
, ZFSCTL_INO_SHARES
,
791 &zpl_fops_shares
, &zpl_ops_shares
);
797 error
= SET_ERROR(ENOENT
);
799 zfs_exit(zfsvfs
, FTAG
);
805 * Lookup entry point for the 'snapshot' directory. Try to open the
806 * snapshot if it exist, creating the pseudo filesystem inode as necessary.
809 zfsctl_snapdir_lookup(struct inode
*dip
, const char *name
, struct inode
**ipp
,
810 int flags
, cred_t
*cr
, int *direntflags
, pathname_t
*realpnp
)
812 zfsvfs_t
*zfsvfs
= ITOZSB(dip
);
816 if ((error
= zfs_enter(zfsvfs
, FTAG
)) != 0)
819 error
= dmu_snapshot_lookup(zfsvfs
->z_os
, name
, &id
);
821 zfs_exit(zfsvfs
, FTAG
);
825 *ipp
= zfsctl_inode_lookup(zfsvfs
, ZFSCTL_INO_SNAPDIRS
- id
,
826 &simple_dir_operations
, &simple_dir_inode_operations
);
828 error
= SET_ERROR(ENOENT
);
830 zfs_exit(zfsvfs
, FTAG
);
836 * Renaming a directory under '.zfs/snapshot' will automatically trigger
837 * a rename of the snapshot to the new given name. The rename is confined
838 * to the '.zfs/snapshot' directory snapshots cannot be moved elsewhere.
841 zfsctl_snapdir_rename(struct inode
*sdip
, const char *snm
,
842 struct inode
*tdip
, const char *tnm
, cred_t
*cr
, int flags
)
844 zfsvfs_t
*zfsvfs
= ITOZSB(sdip
);
845 char *to
, *from
, *real
, *fsname
;
848 if (!zfs_admin_snapshot
)
849 return (SET_ERROR(EACCES
));
851 if ((error
= zfs_enter(zfsvfs
, FTAG
)) != 0)
854 to
= kmem_alloc(ZFS_MAX_DATASET_NAME_LEN
, KM_SLEEP
);
855 from
= kmem_alloc(ZFS_MAX_DATASET_NAME_LEN
, KM_SLEEP
);
856 real
= kmem_alloc(ZFS_MAX_DATASET_NAME_LEN
, KM_SLEEP
);
857 fsname
= kmem_alloc(ZFS_MAX_DATASET_NAME_LEN
, KM_SLEEP
);
859 if (zfsvfs
->z_case
== ZFS_CASE_INSENSITIVE
) {
860 error
= dmu_snapshot_realname(zfsvfs
->z_os
, snm
, real
,
861 ZFS_MAX_DATASET_NAME_LEN
, NULL
);
864 } else if (error
!= ENOTSUP
) {
869 dmu_objset_name(zfsvfs
->z_os
, fsname
);
871 error
= zfsctl_snapshot_name(ITOZSB(sdip
), snm
,
872 ZFS_MAX_DATASET_NAME_LEN
, from
);
874 error
= zfsctl_snapshot_name(ITOZSB(tdip
), tnm
,
875 ZFS_MAX_DATASET_NAME_LEN
, to
);
877 error
= zfs_secpolicy_rename_perms(from
, to
, cr
);
882 * Cannot move snapshots out of the snapdir.
885 error
= SET_ERROR(EINVAL
);
890 * No-op when names are identical.
892 if (strcmp(snm
, tnm
) == 0) {
897 rw_enter(&zfs_snapshot_lock
, RW_WRITER
);
899 error
= dsl_dataset_rename_snapshot(fsname
, snm
, tnm
, B_FALSE
);
901 (void) zfsctl_snapshot_rename(snm
, tnm
);
903 rw_exit(&zfs_snapshot_lock
);
905 kmem_free(from
, ZFS_MAX_DATASET_NAME_LEN
);
906 kmem_free(to
, ZFS_MAX_DATASET_NAME_LEN
);
907 kmem_free(real
, ZFS_MAX_DATASET_NAME_LEN
);
908 kmem_free(fsname
, ZFS_MAX_DATASET_NAME_LEN
);
910 zfs_exit(zfsvfs
, FTAG
);
916 * Removing a directory under '.zfs/snapshot' will automatically trigger
917 * the removal of the snapshot with the given name.
920 zfsctl_snapdir_remove(struct inode
*dip
, const char *name
, cred_t
*cr
,
923 zfsvfs_t
*zfsvfs
= ITOZSB(dip
);
924 char *snapname
, *real
;
927 if (!zfs_admin_snapshot
)
928 return (SET_ERROR(EACCES
));
930 if ((error
= zfs_enter(zfsvfs
, FTAG
)) != 0)
933 snapname
= kmem_alloc(ZFS_MAX_DATASET_NAME_LEN
, KM_SLEEP
);
934 real
= kmem_alloc(ZFS_MAX_DATASET_NAME_LEN
, KM_SLEEP
);
936 if (zfsvfs
->z_case
== ZFS_CASE_INSENSITIVE
) {
937 error
= dmu_snapshot_realname(zfsvfs
->z_os
, name
, real
,
938 ZFS_MAX_DATASET_NAME_LEN
, NULL
);
941 } else if (error
!= ENOTSUP
) {
946 error
= zfsctl_snapshot_name(ITOZSB(dip
), name
,
947 ZFS_MAX_DATASET_NAME_LEN
, snapname
);
949 error
= zfs_secpolicy_destroy_perms(snapname
, cr
);
953 error
= zfsctl_snapshot_unmount(snapname
, MNT_FORCE
);
954 if ((error
== 0) || (error
== ENOENT
))
955 error
= dsl_destroy_snapshot(snapname
, B_FALSE
);
957 kmem_free(snapname
, ZFS_MAX_DATASET_NAME_LEN
);
958 kmem_free(real
, ZFS_MAX_DATASET_NAME_LEN
);
960 zfs_exit(zfsvfs
, FTAG
);
966 * Creating a directory under '.zfs/snapshot' will automatically trigger
967 * the creation of a new snapshot with the given name.
970 zfsctl_snapdir_mkdir(struct inode
*dip
, const char *dirname
, vattr_t
*vap
,
971 struct inode
**ipp
, cred_t
*cr
, int flags
)
973 zfsvfs_t
*zfsvfs
= ITOZSB(dip
);
977 if (!zfs_admin_snapshot
)
978 return (SET_ERROR(EACCES
));
980 dsname
= kmem_alloc(ZFS_MAX_DATASET_NAME_LEN
, KM_SLEEP
);
982 if (zfs_component_namecheck(dirname
, NULL
, NULL
) != 0) {
983 error
= SET_ERROR(EILSEQ
);
987 dmu_objset_name(zfsvfs
->z_os
, dsname
);
989 error
= zfs_secpolicy_snapshot_perms(dsname
, cr
);
994 error
= dmu_objset_snapshot_one(dsname
, dirname
);
998 error
= zfsctl_snapdir_lookup(dip
, dirname
, ipp
,
1002 kmem_free(dsname
, ZFS_MAX_DATASET_NAME_LEN
);
1008 * Flush everything out of the kernel's export table and such.
1009 * This is needed as once the snapshot is used over NFS, its
1010 * entries in svc_export and svc_expkey caches hold reference
1011 * to the snapshot mount point. There is no known way of flushing
1012 * only the entries related to the snapshot.
1015 exportfs_flush(void)
1017 char *argv
[] = { "/usr/sbin/exportfs", "-f", NULL
};
1018 char *envp
[] = { NULL
};
1020 (void) call_usermodehelper(argv
[0], argv
, envp
, UMH_WAIT_PROC
);
1024 * Attempt to unmount a snapshot by making a call to user space.
1025 * There is no assurance that this can or will succeed, is just a
1026 * best effort. In the case where it does fail, perhaps because
1027 * it's in use, the unmount will fail harmlessly.
1030 zfsctl_snapshot_unmount(const char *snapname
, int flags
)
1032 char *argv
[] = { "/usr/bin/env", "umount", "-t", "zfs", "-n", NULL
,
1034 char *envp
[] = { NULL
};
1035 zfs_snapentry_t
*se
;
1038 rw_enter(&zfs_snapshot_lock
, RW_READER
);
1039 if ((se
= zfsctl_snapshot_find_by_name(snapname
)) == NULL
) {
1040 rw_exit(&zfs_snapshot_lock
);
1041 return (SET_ERROR(ENOENT
));
1043 rw_exit(&zfs_snapshot_lock
);
1047 if (flags
& MNT_FORCE
)
1049 argv
[5] = se
->se_path
;
1050 dprintf("unmount; path=%s\n", se
->se_path
);
1051 error
= call_usermodehelper(argv
[0], argv
, envp
, UMH_WAIT_PROC
);
1052 zfsctl_snapshot_rele(se
);
1056 * The umount system utility will return 256 on error. We must
1057 * assume this error is because the file system is busy so it is
1058 * converted to the more sensible EBUSY.
1061 error
= SET_ERROR(EBUSY
);
1067 zfsctl_snapshot_mount(struct path
*path
, int flags
)
1069 struct dentry
*dentry
= path
->dentry
;
1070 struct inode
*ip
= dentry
->d_inode
;
1072 zfsvfs_t
*snap_zfsvfs
;
1073 zfs_snapentry_t
*se
;
1074 char *full_name
, *full_path
;
1075 char *argv
[] = { "/usr/bin/env", "mount", "-t", "zfs", "-n", NULL
, NULL
,
1077 char *envp
[] = { NULL
};
1082 return (SET_ERROR(EISDIR
));
1084 zfsvfs
= ITOZSB(ip
);
1085 if ((error
= zfs_enter(zfsvfs
, FTAG
)) != 0)
1088 full_name
= kmem_zalloc(ZFS_MAX_DATASET_NAME_LEN
, KM_SLEEP
);
1089 full_path
= kmem_zalloc(MAXPATHLEN
, KM_SLEEP
);
1091 error
= zfsctl_snapshot_name(zfsvfs
, dname(dentry
),
1092 ZFS_MAX_DATASET_NAME_LEN
, full_name
);
1097 * Construct a mount point path from sb of the ctldir inode and dirent
1098 * name, instead of from d_path(), so that chroot'd process doesn't fail
1101 snprintf(full_path
, MAXPATHLEN
, "%s/.zfs/snapshot/%s",
1102 zfsvfs
->z_vfs
->vfs_mntpoint
? zfsvfs
->z_vfs
->vfs_mntpoint
: "",
1106 * Multiple concurrent automounts of a snapshot are never allowed.
1107 * The snapshot may be manually mounted as many times as desired.
1109 if (zfsctl_snapshot_ismounted(full_name
)) {
1115 * Attempt to mount the snapshot from user space. Normally this
1116 * would be done using the vfs_kern_mount() function, however that
1117 * function is marked GPL-only and cannot be used. On error we
1118 * careful to log the real error to the console and return EISDIR
1119 * to safely abort the automount. This should be very rare.
1121 * If the user mode helper happens to return EBUSY, a concurrent
1122 * mount is already in progress in which case the error is ignored.
1123 * Take note that if the program was executed successfully the return
1124 * value from call_usermodehelper() will be (exitcode << 8 + signal).
1126 dprintf("mount; name=%s path=%s\n", full_name
, full_path
);
1127 argv
[5] = full_name
;
1128 argv
[6] = full_path
;
1129 error
= call_usermodehelper(argv
[0], argv
, envp
, UMH_WAIT_PROC
);
1131 if (!(error
& MOUNT_BUSY
<< 8)) {
1132 zfs_dbgmsg("Unable to automount %s error=%d",
1134 error
= SET_ERROR(EISDIR
);
1137 * EBUSY, this could mean a concurrent mount, or the
1138 * snapshot has already been mounted at completely
1139 * different place. We return 0 so VFS will retry. For
1140 * the latter case the VFS will retry several times
1141 * and return ELOOP, which is probably not a very good
1150 * Follow down in to the mounted snapshot and set MNT_SHRINKABLE
1151 * to identify this as an automounted filesystem.
1155 if (follow_down_one(&spath
)) {
1156 snap_zfsvfs
= ITOZSB(spath
.dentry
->d_inode
);
1157 snap_zfsvfs
->z_parent
= zfsvfs
;
1158 dentry
= spath
.dentry
;
1159 spath
.mnt
->mnt_flags
|= MNT_SHRINKABLE
;
1161 rw_enter(&zfs_snapshot_lock
, RW_WRITER
);
1162 se
= zfsctl_snapshot_alloc(full_name
, full_path
,
1163 snap_zfsvfs
->z_os
->os_spa
, dmu_objset_id(snap_zfsvfs
->z_os
),
1165 zfsctl_snapshot_add(se
);
1166 zfsctl_snapshot_unmount_delay_impl(se
, zfs_expire_snapshot
);
1167 rw_exit(&zfs_snapshot_lock
);
1171 kmem_free(full_name
, ZFS_MAX_DATASET_NAME_LEN
);
1172 kmem_free(full_path
, MAXPATHLEN
);
1174 zfs_exit(zfsvfs
, FTAG
);
1180 * Get the snapdir inode from fid
1183 zfsctl_snapdir_vget(struct super_block
*sb
, uint64_t objsetid
, int gen
,
1189 struct dentry
*dentry
;
1191 mnt
= kmem_alloc(MAXPATHLEN
, KM_SLEEP
);
1193 error
= zfsctl_snapshot_path_objset(sb
->s_fs_info
, objsetid
,
1198 /* Trigger automount */
1199 error
= -kern_path(mnt
, LOOKUP_FOLLOW
|LOOKUP_DIRECTORY
, &path
);
1205 * Get the snapdir inode. Note, we don't want to use the above
1206 * path because it contains the root of the snapshot rather
1209 *ipp
= ilookup(sb
, ZFSCTL_INO_SNAPDIRS
- objsetid
);
1211 error
= SET_ERROR(ENOENT
);
1215 /* check gen, see zfsctl_snapdir_fid */
1216 dentry
= d_obtain_alias(igrab(*ipp
));
1217 if (gen
!= (!IS_ERR(dentry
) && d_mountpoint(dentry
))) {
1220 error
= SET_ERROR(ENOENT
);
1222 if (!IS_ERR(dentry
))
1225 kmem_free(mnt
, MAXPATHLEN
);
1230 zfsctl_shares_lookup(struct inode
*dip
, char *name
, struct inode
**ipp
,
1231 int flags
, cred_t
*cr
, int *direntflags
, pathname_t
*realpnp
)
1233 zfsvfs_t
*zfsvfs
= ITOZSB(dip
);
1238 if ((error
= zfs_enter(zfsvfs
, FTAG
)) != 0)
1241 if (zfsvfs
->z_shares_dir
== 0) {
1242 zfs_exit(zfsvfs
, FTAG
);
1243 return (SET_ERROR(ENOTSUP
));
1246 if ((error
= zfs_zget(zfsvfs
, zfsvfs
->z_shares_dir
, &dzp
)) == 0) {
1247 error
= zfs_lookup(dzp
, name
, &zp
, 0, cr
, NULL
, NULL
);
1251 zfs_exit(zfsvfs
, FTAG
);
1257 * Initialize the various pieces we'll need to create and manipulate .zfs
1258 * directories. Currently this is unused but available.
1263 avl_create(&zfs_snapshots_by_name
, snapentry_compare_by_name
,
1264 sizeof (zfs_snapentry_t
), offsetof(zfs_snapentry_t
,
1266 avl_create(&zfs_snapshots_by_objsetid
, snapentry_compare_by_objsetid
,
1267 sizeof (zfs_snapentry_t
), offsetof(zfs_snapentry_t
,
1269 rw_init(&zfs_snapshot_lock
, NULL
, RW_DEFAULT
, NULL
);
1273 * Cleanup the various pieces we needed for .zfs directories. In particular
1274 * ensure the expiry timer is canceled safely.
1279 avl_destroy(&zfs_snapshots_by_name
);
1280 avl_destroy(&zfs_snapshots_by_objsetid
);
1281 rw_destroy(&zfs_snapshot_lock
);
1284 module_param(zfs_admin_snapshot
, int, 0644);
1285 MODULE_PARM_DESC(zfs_admin_snapshot
, "Enable mkdir/rmdir/mv in .zfs/snapshot");
1287 module_param(zfs_expire_snapshot
, int, 0644);
1288 MODULE_PARM_DESC(zfs_expire_snapshot
, "Seconds to expire .zfs/snapshot");