]> git.proxmox.com Git - mirror_zfs.git/blob - module/zfs/zfs_ctldir.c
Illumos #2882, #2883, #2900
[mirror_zfs.git] / module / 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 *
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).
26 * LLNL-CODE-403049.
27 * Rewritten for Linux by:
28 * Rohan Puri <rohan.puri15@gmail.com>
29 * Brian Behlendorf <behlendorf1@llnl.gov>
30 */
31
32 /*
33 * ZFS control directory (a.k.a. ".zfs")
34 *
35 * This directory provides a common location for all ZFS meta-objects.
36 * Currently, this is only the 'snapshot' and 'shares' directory, but this may
37 * expand in the future. The elements are built dynamically, as the hierarchy
38 * does not actually exist on disk.
39 *
40 * For 'snapshot', we don't want to have all snapshots always mounted, because
41 * this would take up a huge amount of space in /etc/mnttab. We have three
42 * types of objects:
43 *
44 * ctldir ------> snapshotdir -------> snapshot
45 * |
46 * |
47 * V
48 * mounted fs
49 *
50 * The 'snapshot' node contains just enough information to lookup '..' and act
51 * as a mountpoint for the snapshot. Whenever we lookup a specific snapshot, we
52 * perform an automount of the underlying filesystem and return the
53 * corresponding inode.
54 *
55 * All mounts are handled automatically by an user mode helper which invokes
56 * the mount mount procedure. Unmounts are handled by allowing the mount
57 * point to expire so the kernel may automatically unmount it.
58 *
59 * The '.zfs', '.zfs/snapshot', and all directories created under
60 * '.zfs/snapshot' (ie: '.zfs/snapshot/<snapname>') all share the same
61 * share the same zfs_sb_t as the head filesystem (what '.zfs' lives under).
62 *
63 * File systems mounted on top of the '.zfs/snapshot/<snapname>' paths
64 * (ie: snapshots) are complete ZFS filesystems and have their own unique
65 * zfs_sb_t. However, the fsid reported by these mounts will be the same
66 * as that used by the parent zfs_sb_t to make NFS happy.
67 */
68
69 #include <sys/types.h>
70 #include <sys/param.h>
71 #include <sys/time.h>
72 #include <sys/systm.h>
73 #include <sys/sysmacros.h>
74 #include <sys/pathname.h>
75 #include <sys/vfs.h>
76 #include <sys/vfs_opreg.h>
77 #include <sys/zfs_ctldir.h>
78 #include <sys/zfs_ioctl.h>
79 #include <sys/zfs_vfsops.h>
80 #include <sys/zfs_vnops.h>
81 #include <sys/stat.h>
82 #include <sys/dmu.h>
83 #include <sys/dsl_deleg.h>
84 #include <sys/mount.h>
85 #include <sys/zpl.h>
86 #include "zfs_namecheck.h"
87
88 /*
89 * Control Directory Tunables (.zfs)
90 */
91 int zfs_expire_snapshot = ZFSCTL_EXPIRE_SNAPSHOT;
92
93 /*
94 * Dedicated task queue for unmounting snapshots.
95 */
96 static taskq_t *zfs_expire_taskq;
97
98 static zfs_snapentry_t *
99 zfsctl_sep_alloc(void)
100 {
101 return kmem_zalloc(sizeof (zfs_snapentry_t), KM_SLEEP);
102 }
103
104 void
105 zfsctl_sep_free(zfs_snapentry_t *sep)
106 {
107 kmem_free(sep->se_name, MAXNAMELEN);
108 kmem_free(sep->se_path, PATH_MAX);
109 kmem_free(sep, sizeof (zfs_snapentry_t));
110 }
111
112 /*
113 * Attempt to expire an automounted snapshot, unmounts are attempted every
114 * 'zfs_expire_snapshot' seconds until they succeed. The work request is
115 * responsible for rescheduling itself and freeing the zfs_expire_snapshot_t.
116 */
117 static void
118 zfsctl_expire_snapshot(void *data)
119 {
120 zfs_snapentry_t *sep = (zfs_snapentry_t *)data;
121 zfs_sb_t *zsb = ITOZSB(sep->se_inode);
122 int error;
123
124 error = zfsctl_unmount_snapshot(zsb, sep->se_name, MNT_EXPIRE);
125 if (error == EBUSY)
126 sep->se_taskqid = taskq_dispatch_delay(zfs_expire_taskq,
127 zfsctl_expire_snapshot, sep, TQ_SLEEP,
128 ddi_get_lbolt() + zfs_expire_snapshot * HZ);
129 }
130
131 int
132 snapentry_compare(const void *a, const void *b)
133 {
134 const zfs_snapentry_t *sa = a;
135 const zfs_snapentry_t *sb = b;
136 int ret = strcmp(sa->se_name, sb->se_name);
137
138 if (ret < 0)
139 return (-1);
140 else if (ret > 0)
141 return (1);
142 else
143 return (0);
144 }
145
146 boolean_t
147 zfsctl_is_node(struct inode *ip)
148 {
149 return (ITOZ(ip)->z_is_ctldir);
150 }
151
152 boolean_t
153 zfsctl_is_snapdir(struct inode *ip)
154 {
155 return (zfsctl_is_node(ip) && (ip->i_ino <= ZFSCTL_INO_SNAPDIRS));
156 }
157
158 /*
159 * Allocate a new inode with the passed id and ops.
160 */
161 static struct inode *
162 zfsctl_inode_alloc(zfs_sb_t *zsb, uint64_t id,
163 const struct file_operations *fops, const struct inode_operations *ops)
164 {
165 struct timespec now = current_fs_time(zsb->z_sb);
166 struct inode *ip;
167 znode_t *zp;
168
169 ip = new_inode(zsb->z_sb);
170 if (ip == NULL)
171 return (NULL);
172
173 zp = ITOZ(ip);
174 ASSERT3P(zp->z_dirlocks, ==, NULL);
175 ASSERT3P(zp->z_acl_cached, ==, NULL);
176 ASSERT3P(zp->z_xattr_cached, ==, NULL);
177 zp->z_id = id;
178 zp->z_unlinked = 0;
179 zp->z_atime_dirty = 0;
180 zp->z_zn_prefetch = 0;
181 zp->z_moved = 0;
182 zp->z_sa_hdl = NULL;
183 zp->z_blksz = 0;
184 zp->z_seq = 0;
185 zp->z_mapcnt = 0;
186 zp->z_gen = 0;
187 zp->z_size = 0;
188 zp->z_atime[0] = 0;
189 zp->z_atime[1] = 0;
190 zp->z_links = 0;
191 zp->z_pflags = 0;
192 zp->z_uid = 0;
193 zp->z_gid = 0;
194 zp->z_mode = 0;
195 zp->z_sync_cnt = 0;
196 zp->z_is_zvol = B_FALSE;
197 zp->z_is_mapped = B_FALSE;
198 zp->z_is_ctldir = B_TRUE;
199 zp->z_is_sa = B_FALSE;
200 zp->z_is_stale = B_FALSE;
201 ip->i_ino = id;
202 ip->i_mode = (S_IFDIR | S_IRUGO | S_IXUGO);
203 ip->i_uid = SUID_TO_KUID(0);
204 ip->i_gid = SGID_TO_KGID(0);
205 ip->i_blkbits = SPA_MINBLOCKSHIFT;
206 ip->i_atime = now;
207 ip->i_mtime = now;
208 ip->i_ctime = now;
209 ip->i_fop = fops;
210 ip->i_op = ops;
211
212 if (insert_inode_locked(ip)) {
213 unlock_new_inode(ip);
214 iput(ip);
215 return (NULL);
216 }
217
218 mutex_enter(&zsb->z_znodes_lock);
219 list_insert_tail(&zsb->z_all_znodes, zp);
220 zsb->z_nr_znodes++;
221 membar_producer();
222 mutex_exit(&zsb->z_znodes_lock);
223
224 unlock_new_inode(ip);
225
226 return (ip);
227 }
228
229 /*
230 * Lookup the inode with given id, it will be allocated if needed.
231 */
232 static struct inode *
233 zfsctl_inode_lookup(zfs_sb_t *zsb, uint64_t id,
234 const struct file_operations *fops, const struct inode_operations *ops)
235 {
236 struct inode *ip = NULL;
237
238 while (ip == NULL) {
239 ip = ilookup(zsb->z_sb, (unsigned long)id);
240 if (ip)
241 break;
242
243 /* May fail due to concurrent zfsctl_inode_alloc() */
244 ip = zfsctl_inode_alloc(zsb, id, fops, ops);
245 }
246
247 return (ip);
248 }
249
250 /*
251 * Free zfsctl inode specific structures, currently there are none.
252 */
253 void
254 zfsctl_inode_destroy(struct inode *ip)
255 {
256 return;
257 }
258
259 /*
260 * An inode is being evicted from the cache.
261 */
262 void
263 zfsctl_inode_inactive(struct inode *ip)
264 {
265 if (zfsctl_is_snapdir(ip))
266 zfsctl_snapdir_inactive(ip);
267 }
268
269 /*
270 * Create the '.zfs' directory. This directory is cached as part of the VFS
271 * structure. This results in a hold on the zfs_sb_t. The code in zfs_umount()
272 * therefore checks against a vfs_count of 2 instead of 1. This reference
273 * is removed when the ctldir is destroyed in the unmount. All other entities
274 * under the '.zfs' directory are created dynamically as needed.
275 *
276 * Because the dynamically created '.zfs' directory entries assume the use
277 * of 64-bit inode numbers this support must be disabled on 32-bit systems.
278 */
279 int
280 zfsctl_create(zfs_sb_t *zsb)
281 {
282 #if defined(CONFIG_64BIT)
283 ASSERT(zsb->z_ctldir == NULL);
284
285 zsb->z_ctldir = zfsctl_inode_alloc(zsb, ZFSCTL_INO_ROOT,
286 &zpl_fops_root, &zpl_ops_root);
287 if (zsb->z_ctldir == NULL)
288 return (ENOENT);
289
290 return (0);
291 #else
292 return (EOPNOTSUPP);
293 #endif /* CONFIG_64BIT */
294 }
295
296 /*
297 * Destroy the '.zfs' directory. Only called when the filesystem is unmounted.
298 */
299 void
300 zfsctl_destroy(zfs_sb_t *zsb)
301 {
302 iput(zsb->z_ctldir);
303 zsb->z_ctldir = NULL;
304 }
305
306 /*
307 * Given a root znode, retrieve the associated .zfs directory.
308 * Add a hold to the vnode and return it.
309 */
310 struct inode *
311 zfsctl_root(znode_t *zp)
312 {
313 ASSERT(zfs_has_ctldir(zp));
314 igrab(ZTOZSB(zp)->z_ctldir);
315 return (ZTOZSB(zp)->z_ctldir);
316 }
317
318 /*ARGSUSED*/
319 int
320 zfsctl_fid(struct inode *ip, fid_t *fidp)
321 {
322 znode_t *zp = ITOZ(ip);
323 zfs_sb_t *zsb = ITOZSB(ip);
324 uint64_t object = zp->z_id;
325 zfid_short_t *zfid;
326 int i;
327
328 ZFS_ENTER(zsb);
329
330 if (fidp->fid_len < SHORT_FID_LEN) {
331 fidp->fid_len = SHORT_FID_LEN;
332 ZFS_EXIT(zsb);
333 return (ENOSPC);
334 }
335
336 zfid = (zfid_short_t *)fidp;
337
338 zfid->zf_len = SHORT_FID_LEN;
339
340 for (i = 0; i < sizeof (zfid->zf_object); i++)
341 zfid->zf_object[i] = (uint8_t)(object >> (8 * i));
342
343 /* .zfs znodes always have a generation number of 0 */
344 for (i = 0; i < sizeof (zfid->zf_gen); i++)
345 zfid->zf_gen[i] = 0;
346
347 ZFS_EXIT(zsb);
348 return (0);
349 }
350
351 static int
352 zfsctl_snapshot_zname(struct inode *ip, const char *name, int len, char *zname)
353 {
354 objset_t *os = ITOZSB(ip)->z_os;
355
356 if (snapshot_namecheck(name, NULL, NULL) != 0)
357 return (EILSEQ);
358
359 dmu_objset_name(os, zname);
360 if ((strlen(zname) + 1 + strlen(name)) >= len)
361 return (ENAMETOOLONG);
362
363 (void) strcat(zname, "@");
364 (void) strcat(zname, name);
365
366 return (0);
367 }
368
369 static int
370 zfsctl_snapshot_zpath(struct path *path, int len, char *zpath)
371 {
372 char *path_buffer, *path_ptr;
373 int path_len, error = 0;
374
375 path_buffer = kmem_alloc(len, KM_SLEEP);
376
377 path_ptr = d_path(path, path_buffer, len);
378 if (IS_ERR(path_ptr)) {
379 error = -PTR_ERR(path_ptr);
380 goto out;
381 }
382
383 path_len = path_buffer + len - 1 - path_ptr;
384 if (path_len > len) {
385 error = EFAULT;
386 goto out;
387 }
388
389 memcpy(zpath, path_ptr, path_len);
390 zpath[path_len] = '\0';
391 out:
392 kmem_free(path_buffer, len);
393
394 return (error);
395 }
396
397 /*
398 * Special case the handling of "..".
399 */
400 /* ARGSUSED */
401 int
402 zfsctl_root_lookup(struct inode *dip, char *name, struct inode **ipp,
403 int flags, cred_t *cr, int *direntflags, pathname_t *realpnp)
404 {
405 zfs_sb_t *zsb = ITOZSB(dip);
406 int error = 0;
407
408 ZFS_ENTER(zsb);
409
410 if (strcmp(name, "..") == 0) {
411 *ipp = dip->i_sb->s_root->d_inode;
412 } else if (strcmp(name, ZFS_SNAPDIR_NAME) == 0) {
413 *ipp = zfsctl_inode_lookup(zsb, ZFSCTL_INO_SNAPDIR,
414 &zpl_fops_snapdir, &zpl_ops_snapdir);
415 } else if (strcmp(name, ZFS_SHAREDIR_NAME) == 0) {
416 *ipp = zfsctl_inode_lookup(zsb, ZFSCTL_INO_SHARES,
417 &zpl_fops_shares, &zpl_ops_shares);
418 } else {
419 *ipp = NULL;
420 }
421
422 if (*ipp == NULL)
423 error = ENOENT;
424
425 ZFS_EXIT(zsb);
426
427 return (error);
428 }
429
430 /*
431 * Lookup entry point for the 'snapshot' directory. Try to open the
432 * snapshot if it exist, creating the pseudo filesystem inode as necessary.
433 * Perform a mount of the associated dataset on top of the inode.
434 */
435 /* ARGSUSED */
436 int
437 zfsctl_snapdir_lookup(struct inode *dip, char *name, struct inode **ipp,
438 int flags, cred_t *cr, int *direntflags, pathname_t *realpnp)
439 {
440 zfs_sb_t *zsb = ITOZSB(dip);
441 uint64_t id;
442 int error;
443
444 ZFS_ENTER(zsb);
445
446 error = dmu_snapshot_lookup(zsb->z_os, name, &id);
447 if (error) {
448 ZFS_EXIT(zsb);
449 return (error);
450 }
451
452 *ipp = zfsctl_inode_lookup(zsb, ZFSCTL_INO_SNAPDIRS - id,
453 &simple_dir_operations, &simple_dir_inode_operations);
454 if (*ipp) {
455 #ifdef HAVE_AUTOMOUNT
456 (*ipp)->i_flags |= S_AUTOMOUNT;
457 #endif /* HAVE_AUTOMOUNT */
458 } else {
459 error = ENOENT;
460 }
461
462 ZFS_EXIT(zsb);
463
464 return (error);
465 }
466
467 static void
468 zfsctl_rename_snap(zfs_sb_t *zsb, zfs_snapentry_t *sep, const char *name)
469 {
470 avl_index_t where;
471
472 ASSERT(MUTEX_HELD(&zsb->z_ctldir_lock));
473 ASSERT(sep != NULL);
474
475 /*
476 * Change the name in the AVL tree.
477 */
478 avl_remove(&zsb->z_ctldir_snaps, sep);
479 (void) strcpy(sep->se_name, name);
480 VERIFY(avl_find(&zsb->z_ctldir_snaps, sep, &where) == NULL);
481 avl_insert(&zsb->z_ctldir_snaps, sep, where);
482 }
483
484 /*
485 * Renaming a directory under '.zfs/snapshot' will automatically trigger
486 * a rename of the snapshot to the new given name. The rename is confined
487 * to the '.zfs/snapshot' directory snapshots cannot be moved elsewhere.
488 */
489 /*ARGSUSED*/
490 int
491 zfsctl_snapdir_rename(struct inode *sdip, char *sname,
492 struct inode *tdip, char *tname, cred_t *cr, int flags)
493 {
494 zfs_sb_t *zsb = ITOZSB(sdip);
495 zfs_snapentry_t search, *sep;
496 avl_index_t where;
497 char *to, *from, *real;
498 int error;
499
500 ZFS_ENTER(zsb);
501
502 to = kmem_alloc(MAXNAMELEN, KM_SLEEP);
503 from = kmem_alloc(MAXNAMELEN, KM_SLEEP);
504 real = kmem_alloc(MAXNAMELEN, KM_SLEEP);
505
506 if (zsb->z_case == ZFS_CASE_INSENSITIVE) {
507 error = dmu_snapshot_realname(zsb->z_os, sname, real,
508 MAXNAMELEN, NULL);
509 if (error == 0) {
510 sname = real;
511 } else if (error != ENOTSUP) {
512 goto out;
513 }
514 }
515
516 error = zfsctl_snapshot_zname(sdip, sname, MAXNAMELEN, from);
517 if (!error)
518 error = zfsctl_snapshot_zname(tdip, tname, MAXNAMELEN, to);
519 if (!error)
520 error = zfs_secpolicy_rename_perms(from, to, cr);
521 if (error)
522 goto out;
523
524 /*
525 * Cannot move snapshots out of the snapdir.
526 */
527 if (sdip != tdip) {
528 error = EINVAL;
529 goto out;
530 }
531
532 /*
533 * No-op when names are identical.
534 */
535 if (strcmp(sname, tname) == 0) {
536 error = 0;
537 goto out;
538 }
539
540 mutex_enter(&zsb->z_ctldir_lock);
541
542 error = dmu_objset_rename(from, to, B_FALSE);
543 if (error)
544 goto out_unlock;
545
546 search.se_name = (char *)sname;
547 sep = avl_find(&zsb->z_ctldir_snaps, &search, &where);
548 if (sep)
549 zfsctl_rename_snap(zsb, sep, tname);
550
551 out_unlock:
552 mutex_exit(&zsb->z_ctldir_lock);
553 out:
554 kmem_free(from, MAXNAMELEN);
555 kmem_free(to, MAXNAMELEN);
556 kmem_free(real, MAXNAMELEN);
557
558 ZFS_EXIT(zsb);
559
560 return (error);
561 }
562
563 /*
564 * Removing a directory under '.zfs/snapshot' will automatically trigger
565 * the removal of the snapshot with the given name.
566 */
567 /* ARGSUSED */
568 int
569 zfsctl_snapdir_remove(struct inode *dip, char *name, cred_t *cr, int flags)
570 {
571 zfs_sb_t *zsb = ITOZSB(dip);
572 char *snapname, *real;
573 int error;
574
575 ZFS_ENTER(zsb);
576
577 snapname = kmem_alloc(MAXNAMELEN, KM_SLEEP);
578 real = kmem_alloc(MAXNAMELEN, KM_SLEEP);
579
580 if (zsb->z_case == ZFS_CASE_INSENSITIVE) {
581 error = dmu_snapshot_realname(zsb->z_os, name, real,
582 MAXNAMELEN, NULL);
583 if (error == 0) {
584 name = real;
585 } else if (error != ENOTSUP) {
586 goto out;
587 }
588 }
589
590 error = zfsctl_snapshot_zname(dip, name, MAXNAMELEN, snapname);
591 if (!error)
592 error = zfs_secpolicy_destroy_perms(snapname, cr);
593 if (error)
594 goto out;
595
596 error = zfsctl_unmount_snapshot(zsb, name, MNT_FORCE);
597 if ((error == 0) || (error == ENOENT))
598 error = dmu_objset_destroy(snapname, B_FALSE);
599 out:
600 kmem_free(snapname, MAXNAMELEN);
601 kmem_free(real, MAXNAMELEN);
602
603 ZFS_EXIT(zsb);
604
605 return (error);
606 }
607
608 /*
609 * Creating a directory under '.zfs/snapshot' will automatically trigger
610 * the creation of a new snapshot with the given name.
611 */
612 /* ARGSUSED */
613 int
614 zfsctl_snapdir_mkdir(struct inode *dip, char *dirname, vattr_t *vap,
615 struct inode **ipp, cred_t *cr, int flags)
616 {
617 zfs_sb_t *zsb = ITOZSB(dip);
618 char *dsname;
619 int error;
620
621 dsname = kmem_alloc(MAXNAMELEN, KM_SLEEP);
622
623 if (snapshot_namecheck(dirname, NULL, NULL) != 0) {
624 error = EILSEQ;
625 goto out;
626 }
627
628 dmu_objset_name(zsb->z_os, dsname);
629
630 error = zfs_secpolicy_snapshot_perms(dsname, cr);
631 if (error)
632 goto out;
633
634 if (error == 0) {
635 error = dmu_objset_snapshot_one(dsname, dirname);
636 if (error)
637 goto out;
638
639 error = zfsctl_snapdir_lookup(dip, dirname, ipp,
640 0, cr, NULL, NULL);
641 }
642 out:
643 kmem_free(dsname, MAXNAMELEN);
644
645 return (error);
646 }
647
648 /*
649 * When a .zfs/snapshot/<snapshot> inode is evicted they must be removed
650 * from the snapshot list. This will normally happen as part of the auto
651 * unmount, however in the case of a manual snapshot unmount this will be
652 * the only notification we receive.
653 */
654 void
655 zfsctl_snapdir_inactive(struct inode *ip)
656 {
657 zfs_sb_t *zsb = ITOZSB(ip);
658 zfs_snapentry_t *sep, *next;
659
660 mutex_enter(&zsb->z_ctldir_lock);
661
662 sep = avl_first(&zsb->z_ctldir_snaps);
663 while (sep != NULL) {
664 next = AVL_NEXT(&zsb->z_ctldir_snaps, sep);
665
666 if (sep->se_inode == ip) {
667 avl_remove(&zsb->z_ctldir_snaps, sep);
668 taskq_cancel_id(zfs_expire_taskq, sep->se_taskqid);
669 zfsctl_sep_free(sep);
670 break;
671 }
672 sep = next;
673 }
674
675 mutex_exit(&zsb->z_ctldir_lock);
676 }
677
678 /*
679 * Attempt to unmount a snapshot by making a call to user space.
680 * There is no assurance that this can or will succeed, is just a
681 * best effort. In the case where it does fail, perhaps because
682 * it's in use, the unmount will fail harmlessly.
683 */
684 #define SET_UNMOUNT_CMD \
685 "exec 0</dev/null " \
686 " 1>/dev/null " \
687 " 2>/dev/null; " \
688 "umount -t zfs -n %s'%s'"
689
690 static int
691 __zfsctl_unmount_snapshot(zfs_snapentry_t *sep, int flags)
692 {
693 char *argv[] = { "/bin/sh", "-c", NULL, NULL };
694 char *envp[] = { NULL };
695 int error;
696
697 argv[2] = kmem_asprintf(SET_UNMOUNT_CMD,
698 flags & MNT_FORCE ? "-f " : "", sep->se_path);
699 error = call_usermodehelper(argv[0], argv, envp, UMH_WAIT_PROC);
700 strfree(argv[2]);
701
702 /*
703 * The umount system utility will return 256 on error. We must
704 * assume this error is because the file system is busy so it is
705 * converted to the more sensible EBUSY.
706 */
707 if (error)
708 error = EBUSY;
709
710 /*
711 * This was the result of a manual unmount, cancel the delayed work
712 * to prevent zfsctl_expire_snapshot() from attempting a unmount.
713 */
714 if ((error == 0) && !(flags & MNT_EXPIRE))
715 taskq_cancel_id(zfs_expire_taskq, sep->se_taskqid);
716
717
718 return (error);
719 }
720
721 int
722 zfsctl_unmount_snapshot(zfs_sb_t *zsb, char *name, int flags)
723 {
724 zfs_snapentry_t search;
725 zfs_snapentry_t *sep;
726 int error = 0;
727
728 mutex_enter(&zsb->z_ctldir_lock);
729
730 search.se_name = name;
731 sep = avl_find(&zsb->z_ctldir_snaps, &search, NULL);
732 if (sep) {
733 avl_remove(&zsb->z_ctldir_snaps, sep);
734 mutex_exit(&zsb->z_ctldir_lock);
735
736 error = __zfsctl_unmount_snapshot(sep, flags);
737
738 mutex_enter(&zsb->z_ctldir_lock);
739 if (error == EBUSY)
740 avl_add(&zsb->z_ctldir_snaps, sep);
741 else
742 zfsctl_sep_free(sep);
743 } else {
744 error = ENOENT;
745 }
746
747 mutex_exit(&zsb->z_ctldir_lock);
748 ASSERT3S(error, >=, 0);
749
750 return (error);
751 }
752
753 /*
754 * Traverse all mounted snapshots and attempt to unmount them. This
755 * is best effort, on failure EEXIST is returned and count will be set
756 * to the number of file snapshots which could not be unmounted.
757 */
758 int
759 zfsctl_unmount_snapshots(zfs_sb_t *zsb, int flags, int *count)
760 {
761 zfs_snapentry_t *sep, *next;
762 int error = 0;
763
764 *count = 0;
765
766 ASSERT(zsb->z_ctldir != NULL);
767 mutex_enter(&zsb->z_ctldir_lock);
768
769 sep = avl_first(&zsb->z_ctldir_snaps);
770 while (sep != NULL) {
771 next = AVL_NEXT(&zsb->z_ctldir_snaps, sep);
772 avl_remove(&zsb->z_ctldir_snaps, sep);
773 mutex_exit(&zsb->z_ctldir_lock);
774
775 error = __zfsctl_unmount_snapshot(sep, flags);
776
777 mutex_enter(&zsb->z_ctldir_lock);
778 if (error == EBUSY) {
779 avl_add(&zsb->z_ctldir_snaps, sep);
780 (*count)++;
781 } else {
782 zfsctl_sep_free(sep);
783 }
784
785 sep = next;
786 }
787
788 mutex_exit(&zsb->z_ctldir_lock);
789
790 return ((*count > 0) ? EEXIST : 0);
791 }
792
793 #define SET_MOUNT_CMD \
794 "exec 0</dev/null " \
795 " 1>/dev/null " \
796 " 2>/dev/null; " \
797 "mount -t zfs -n '%s' '%s'"
798
799 int
800 zfsctl_mount_snapshot(struct path *path, int flags)
801 {
802 struct dentry *dentry = path->dentry;
803 struct inode *ip = dentry->d_inode;
804 zfs_sb_t *zsb = ITOZSB(ip);
805 char *full_name, *full_path;
806 zfs_snapentry_t *sep;
807 zfs_snapentry_t search;
808 char *argv[] = { "/bin/sh", "-c", NULL, NULL };
809 char *envp[] = { NULL };
810 int error;
811
812 ZFS_ENTER(zsb);
813
814 full_name = kmem_zalloc(MAXNAMELEN, KM_SLEEP);
815 full_path = kmem_zalloc(PATH_MAX, KM_SLEEP);
816
817 error = zfsctl_snapshot_zname(ip, dname(dentry), MAXNAMELEN, full_name);
818 if (error)
819 goto error;
820
821 error = zfsctl_snapshot_zpath(path, PATH_MAX, full_path);
822 if (error)
823 goto error;
824
825 /*
826 * Attempt to mount the snapshot from user space. Normally this
827 * would be done using the vfs_kern_mount() function, however that
828 * function is marked GPL-only and cannot be used. On error we
829 * careful to log the real error to the console and return EISDIR
830 * to safely abort the automount. This should be very rare.
831 */
832 argv[2] = kmem_asprintf(SET_MOUNT_CMD, full_name, full_path);
833 error = call_usermodehelper(argv[0], argv, envp, UMH_WAIT_PROC);
834 strfree(argv[2]);
835 if (error) {
836 printk("ZFS: Unable to automount %s at %s: %d\n",
837 full_name, full_path, error);
838 error = EISDIR;
839 goto error;
840 }
841
842 mutex_enter(&zsb->z_ctldir_lock);
843
844 /*
845 * Ensure a previous entry does not exist, if it does safely remove
846 * it any cancel the outstanding expiration. This can occur when a
847 * snapshot is manually unmounted and then an automount is triggered.
848 */
849 search.se_name = full_name;
850 sep = avl_find(&zsb->z_ctldir_snaps, &search, NULL);
851 if (sep) {
852 avl_remove(&zsb->z_ctldir_snaps, sep);
853 taskq_cancel_id(zfs_expire_taskq, sep->se_taskqid);
854 zfsctl_sep_free(sep);
855 }
856
857 sep = zfsctl_sep_alloc();
858 sep->se_name = full_name;
859 sep->se_path = full_path;
860 sep->se_inode = ip;
861 avl_add(&zsb->z_ctldir_snaps, sep);
862
863 sep->se_taskqid = taskq_dispatch_delay(zfs_expire_taskq,
864 zfsctl_expire_snapshot, sep, TQ_SLEEP,
865 ddi_get_lbolt() + zfs_expire_snapshot * HZ);
866
867 mutex_exit(&zsb->z_ctldir_lock);
868 error:
869 if (error) {
870 kmem_free(full_name, MAXNAMELEN);
871 kmem_free(full_path, PATH_MAX);
872 }
873
874 ZFS_EXIT(zsb);
875
876 return (error);
877 }
878
879 /*
880 * Check if this super block has a matching objset id.
881 */
882 static int
883 zfsctl_test_super(struct super_block *sb, void *objsetidp)
884 {
885 zfs_sb_t *zsb = sb->s_fs_info;
886 uint64_t objsetid = *(uint64_t *)objsetidp;
887
888 return (dmu_objset_id(zsb->z_os) == objsetid);
889 }
890
891 /*
892 * Prevent a new super block from being allocated if an existing one
893 * could not be located. We only want to preform a lookup operation.
894 */
895 static int
896 zfsctl_set_super(struct super_block *sb, void *objsetidp)
897 {
898 return (-EEXIST);
899 }
900
901 int
902 zfsctl_lookup_objset(struct super_block *sb, uint64_t objsetid, zfs_sb_t **zsbp)
903 {
904 zfs_sb_t *zsb = sb->s_fs_info;
905 struct super_block *sbp;
906 zfs_snapentry_t *sep;
907 uint64_t id;
908 int error;
909
910 ASSERT(zsb->z_ctldir != NULL);
911
912 mutex_enter(&zsb->z_ctldir_lock);
913
914 /*
915 * Verify that the snapshot is mounted.
916 */
917 sep = avl_first(&zsb->z_ctldir_snaps);
918 while (sep != NULL) {
919 error = dmu_snapshot_lookup(zsb->z_os, sep->se_name, &id);
920 if (error)
921 goto out;
922
923 if (id == objsetid)
924 break;
925
926 sep = AVL_NEXT(&zsb->z_ctldir_snaps, sep);
927 }
928
929 if (sep != NULL) {
930 /*
931 * Lookup the mounted root rather than the covered mount
932 * point. This may fail if the snapshot has just been
933 * unmounted by an unrelated user space process. This
934 * race cannot occur to an expired mount point because
935 * we hold the zsb->z_ctldir_lock to prevent the race.
936 */
937 sbp = zpl_sget(&zpl_fs_type, zfsctl_test_super,
938 zfsctl_set_super, 0, &id);
939 if (IS_ERR(sbp)) {
940 error = -PTR_ERR(sbp);
941 } else {
942 *zsbp = sbp->s_fs_info;
943 deactivate_super(sbp);
944 }
945 } else {
946 error = EINVAL;
947 }
948 out:
949 mutex_exit(&zsb->z_ctldir_lock);
950 ASSERT3S(error, >=, 0);
951
952 return (error);
953 }
954
955 /* ARGSUSED */
956 int
957 zfsctl_shares_lookup(struct inode *dip, char *name, struct inode **ipp,
958 int flags, cred_t *cr, int *direntflags, pathname_t *realpnp)
959 {
960 zfs_sb_t *zsb = ITOZSB(dip);
961 struct inode *ip;
962 znode_t *dzp;
963 int error;
964
965 ZFS_ENTER(zsb);
966
967 if (zsb->z_shares_dir == 0) {
968 ZFS_EXIT(zsb);
969 return (ENOTSUP);
970 }
971
972 error = zfs_zget(zsb, zsb->z_shares_dir, &dzp);
973 if (error) {
974 ZFS_EXIT(zsb);
975 return (error);
976 }
977
978 error = zfs_lookup(ZTOI(dzp), name, &ip, 0, cr, NULL, NULL);
979
980 iput(ZTOI(dzp));
981 ZFS_EXIT(zsb);
982
983 return (error);
984 }
985
986
987 /*
988 * Initialize the various pieces we'll need to create and manipulate .zfs
989 * directories. Currently this is unused but available.
990 */
991 void
992 zfsctl_init(void)
993 {
994 zfs_expire_taskq = taskq_create("z_unmount", 1, maxclsyspri,
995 1, 8, TASKQ_PREPOPULATE);
996 }
997
998 /*
999 * Cleanup the various pieces we needed for .zfs directories. In particular
1000 * ensure the expiry timer is canceled safely.
1001 */
1002 void
1003 zfsctl_fini(void)
1004 {
1005 taskq_destroy(zfs_expire_taskq);
1006 }
1007
1008 module_param(zfs_expire_snapshot, int, 0644);
1009 MODULE_PARM_DESC(zfs_expire_snapshot, "Seconds to expire .zfs/snapshot");