zpl: Fix "df -i" to have better free inodes value
[zfs.git] / module / zfs / zfs_vfsops.c
1 /*
2  * CDDL HEADER START
3  *
4  * The contents of this file are subject to the terms of the
5  * Common Development and Distribution License (the "License").
6  * You may not use this file except in compliance with the License.
7  *
8  * You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
9  * or http://www.opensolaris.org/os/licensing.
10  * See the License for the specific language governing permissions
11  * and limitations under the License.
12  *
13  * When distributing Covered Code, include this CDDL HEADER in each
14  * file and include the License file at usr/src/OPENSOLARIS.LICENSE.
15  * If applicable, add the following below this CDDL HEADER, with the
16  * fields enclosed by brackets "[]" replaced with your own identifying
17  * information: Portions Copyright [yyyy] [name of copyright owner]
18  *
19  * CDDL HEADER END
20  */
21 /*
22  * Copyright (c) 2005, 2010, Oracle and/or its affiliates. All rights reserved.
23  */
24
25 /* Portions Copyright 2010 Robert Milkowski */
26
27 #include <sys/types.h>
28 #include <sys/param.h>
29 #include <sys/systm.h>
30 #include <sys/sysmacros.h>
31 #include <sys/kmem.h>
32 #include <sys/pathname.h>
33 #include <sys/vnode.h>
34 #include <sys/vfs.h>
35 #include <sys/vfs_opreg.h>
36 #include <sys/mntent.h>
37 #include <sys/mount.h>
38 #include <sys/cmn_err.h>
39 #include "fs/fs_subr.h"
40 #include <sys/zfs_znode.h>
41 #include <sys/zfs_vnops.h>
42 #include <sys/zfs_dir.h>
43 #include <sys/zil.h>
44 #include <sys/fs/zfs.h>
45 #include <sys/dmu.h>
46 #include <sys/dsl_prop.h>
47 #include <sys/dsl_dataset.h>
48 #include <sys/dsl_deleg.h>
49 #include <sys/spa.h>
50 #include <sys/zap.h>
51 #include <sys/sa.h>
52 #include <sys/varargs.h>
53 #include <sys/policy.h>
54 #include <sys/atomic.h>
55 #include <sys/mkdev.h>
56 #include <sys/modctl.h>
57 #include <sys/refstr.h>
58 #include <sys/zfs_ioctl.h>
59 #include <sys/zfs_fuid.h>
60 #include <sys/bootconf.h>
61 #include <sys/sunddi.h>
62 #include <sys/dnlc.h>
63 #include <sys/dmu_objset.h>
64 #include <sys/spa_boot.h>
65 #include <sys/sa.h>
66 #include <sys/zpl.h>
67 #include "zfs_comutil.h"
68
69
70 /*ARGSUSED*/
71 int
72 zfs_sync(struct super_block *sb, int wait, cred_t *cr)
73 {
74         zfs_sb_t *zsb = sb->s_fs_info;
75
76         /*
77          * Data integrity is job one.  We don't want a compromised kernel
78          * writing to the storage pool, so we never sync during panic.
79          */
80         if (unlikely(oops_in_progress))
81                 return (0);
82
83         /*
84          * Semantically, the only requirement is that the sync be initiated.
85          * The DMU syncs out txgs frequently, so there's nothing to do.
86          */
87         if (!wait)
88                 return (0);
89
90         if (zsb != NULL) {
91                 /*
92                  * Sync a specific filesystem.
93                  */
94                 dsl_pool_t *dp;
95
96                 ZFS_ENTER(zsb);
97                 dp = dmu_objset_pool(zsb->z_os);
98
99                 /*
100                  * If the system is shutting down, then skip any
101                  * filesystems which may exist on a suspended pool.
102                  */
103                 if (spa_suspended(dp->dp_spa)) {
104                         ZFS_EXIT(zsb);
105                         return (0);
106                 }
107
108                 if (zsb->z_log != NULL)
109                         zil_commit(zsb->z_log, 0);
110
111                 ZFS_EXIT(zsb);
112         } else {
113                 /*
114                  * Sync all ZFS filesystems.  This is what happens when you
115                  * run sync(1M).  Unlike other filesystems, ZFS honors the
116                  * request by waiting for all pools to commit all dirty data.
117                  */
118                 spa_sync_allpools();
119         }
120
121         return (0);
122 }
123 EXPORT_SYMBOL(zfs_sync);
124
125 boolean_t
126 zfs_is_readonly(zfs_sb_t *zsb)
127 {
128         return (!!(zsb->z_sb->s_flags & MS_RDONLY));
129 }
130 EXPORT_SYMBOL(zfs_is_readonly);
131
132 static void
133 atime_changed_cb(void *arg, uint64_t newval)
134 {
135         ((zfs_sb_t *)arg)->z_atime = newval;
136 }
137
138 static void
139 xattr_changed_cb(void *arg, uint64_t newval)
140 {
141         zfs_sb_t *zsb = arg;
142
143         if (newval == TRUE)
144                 zsb->z_flags |= ZSB_XATTR;
145         else
146                 zsb->z_flags &= ~ZSB_XATTR;
147 }
148
149 static void
150 blksz_changed_cb(void *arg, uint64_t newval)
151 {
152         zfs_sb_t *zsb = arg;
153
154         if (newval < SPA_MINBLOCKSIZE ||
155             newval > SPA_MAXBLOCKSIZE || !ISP2(newval))
156                 newval = SPA_MAXBLOCKSIZE;
157
158         zsb->z_max_blksz = newval;
159 }
160
161 static void
162 readonly_changed_cb(void *arg, uint64_t newval)
163 {
164         zfs_sb_t *zsb = arg;
165         struct super_block *sb = zsb->z_sb;
166
167         if (sb == NULL)
168                 return;
169
170         if (newval)
171                 sb->s_flags |= MS_RDONLY;
172         else
173                 sb->s_flags &= ~MS_RDONLY;
174 }
175
176 static void
177 devices_changed_cb(void *arg, uint64_t newval)
178 {
179 }
180
181 static void
182 setuid_changed_cb(void *arg, uint64_t newval)
183 {
184 }
185
186 static void
187 exec_changed_cb(void *arg, uint64_t newval)
188 {
189 }
190
191 static void
192 nbmand_changed_cb(void *arg, uint64_t newval)
193 {
194         zfs_sb_t *zsb = arg;
195         struct super_block *sb = zsb->z_sb;
196
197         if (sb == NULL)
198                 return;
199
200         if (newval == TRUE)
201                 sb->s_flags |= MS_MANDLOCK;
202         else
203                 sb->s_flags &= ~MS_MANDLOCK;
204 }
205
206 static void
207 snapdir_changed_cb(void *arg, uint64_t newval)
208 {
209         ((zfs_sb_t *)arg)->z_show_ctldir = newval;
210 }
211
212 static void
213 vscan_changed_cb(void *arg, uint64_t newval)
214 {
215         ((zfs_sb_t *)arg)->z_vscan = newval;
216 }
217
218 static void
219 acl_inherit_changed_cb(void *arg, uint64_t newval)
220 {
221         ((zfs_sb_t *)arg)->z_acl_inherit = newval;
222 }
223
224 int
225 zfs_register_callbacks(zfs_sb_t *zsb)
226 {
227         struct dsl_dataset *ds = NULL;
228         objset_t *os = zsb->z_os;
229         int error = 0;
230
231         if (zfs_is_readonly(zsb) || !spa_writeable(dmu_objset_spa(os)))
232                 readonly_changed_cb(zsb, B_TRUE);
233
234         /*
235          * Register property callbacks.
236          *
237          * It would probably be fine to just check for i/o error from
238          * the first prop_register(), but I guess I like to go
239          * overboard...
240          */
241         ds = dmu_objset_ds(os);
242         error = dsl_prop_register(ds,
243             "atime", atime_changed_cb, zsb);
244         error = error ? error : dsl_prop_register(ds,
245             "xattr", xattr_changed_cb, zsb);
246         error = error ? error : dsl_prop_register(ds,
247             "recordsize", blksz_changed_cb, zsb);
248         error = error ? error : dsl_prop_register(ds,
249             "readonly", readonly_changed_cb, zsb);
250         error = error ? error : dsl_prop_register(ds,
251             "devices", devices_changed_cb, zsb);
252         error = error ? error : dsl_prop_register(ds,
253             "setuid", setuid_changed_cb, zsb);
254         error = error ? error : dsl_prop_register(ds,
255             "exec", exec_changed_cb, zsb);
256         error = error ? error : dsl_prop_register(ds,
257             "snapdir", snapdir_changed_cb, zsb);
258         error = error ? error : dsl_prop_register(ds,
259             "aclinherit", acl_inherit_changed_cb, zsb);
260         error = error ? error : dsl_prop_register(ds,
261             "vscan", vscan_changed_cb, zsb);
262         error = error ? error : dsl_prop_register(ds,
263             "nbmand", nbmand_changed_cb, zsb);
264         if (error)
265                 goto unregister;
266
267         return (0);
268
269 unregister:
270         /*
271          * We may attempt to unregister some callbacks that are not
272          * registered, but this is OK; it will simply return ENOMSG,
273          * which we will ignore.
274          */
275         (void) dsl_prop_unregister(ds, "atime", atime_changed_cb, zsb);
276         (void) dsl_prop_unregister(ds, "xattr", xattr_changed_cb, zsb);
277         (void) dsl_prop_unregister(ds, "recordsize", blksz_changed_cb, zsb);
278         (void) dsl_prop_unregister(ds, "readonly", readonly_changed_cb, zsb);
279         (void) dsl_prop_unregister(ds, "devices", devices_changed_cb, zsb);
280         (void) dsl_prop_unregister(ds, "setuid", setuid_changed_cb, zsb);
281         (void) dsl_prop_unregister(ds, "exec", exec_changed_cb, zsb);
282         (void) dsl_prop_unregister(ds, "snapdir", snapdir_changed_cb, zsb);
283         (void) dsl_prop_unregister(ds, "aclinherit", acl_inherit_changed_cb,
284             zsb);
285         (void) dsl_prop_unregister(ds, "vscan", vscan_changed_cb, zsb);
286         (void) dsl_prop_unregister(ds, "nbmand", nbmand_changed_cb, zsb);
287
288         return (error);
289 }
290 EXPORT_SYMBOL(zfs_register_callbacks);
291
292 static int
293 zfs_space_delta_cb(dmu_object_type_t bonustype, void *data,
294     uint64_t *userp, uint64_t *groupp)
295 {
296         znode_phys_t *znp = data;
297         int error = 0;
298
299         /*
300          * Is it a valid type of object to track?
301          */
302         if (bonustype != DMU_OT_ZNODE && bonustype != DMU_OT_SA)
303                 return (ENOENT);
304
305         /*
306          * If we have a NULL data pointer
307          * then assume the id's aren't changing and
308          * return EEXIST to the dmu to let it know to
309          * use the same ids
310          */
311         if (data == NULL)
312                 return (EEXIST);
313
314         if (bonustype == DMU_OT_ZNODE) {
315                 *userp = znp->zp_uid;
316                 *groupp = znp->zp_gid;
317         } else {
318                 int hdrsize;
319
320                 ASSERT(bonustype == DMU_OT_SA);
321                 hdrsize = sa_hdrsize(data);
322
323                 if (hdrsize != 0) {
324                         *userp = *((uint64_t *)((uintptr_t)data + hdrsize +
325                             SA_UID_OFFSET));
326                         *groupp = *((uint64_t *)((uintptr_t)data + hdrsize +
327                             SA_GID_OFFSET));
328                 } else {
329                         /*
330                          * This should only happen for newly created
331                          * files that haven't had the znode data filled
332                          * in yet.
333                          */
334                         *userp = 0;
335                         *groupp = 0;
336                 }
337         }
338         return (error);
339 }
340
341 static void
342 fuidstr_to_sid(zfs_sb_t *zsb, const char *fuidstr,
343     char *domainbuf, int buflen, uid_t *ridp)
344 {
345         uint64_t fuid;
346         const char *domain;
347
348         fuid = strtonum(fuidstr, NULL);
349
350         domain = zfs_fuid_find_by_idx(zsb, FUID_INDEX(fuid));
351         if (domain)
352                 (void) strlcpy(domainbuf, domain, buflen);
353         else
354                 domainbuf[0] = '\0';
355         *ridp = FUID_RID(fuid);
356 }
357
358 static uint64_t
359 zfs_userquota_prop_to_obj(zfs_sb_t *zsb, zfs_userquota_prop_t type)
360 {
361         switch (type) {
362         case ZFS_PROP_USERUSED:
363                 return (DMU_USERUSED_OBJECT);
364         case ZFS_PROP_GROUPUSED:
365                 return (DMU_GROUPUSED_OBJECT);
366         case ZFS_PROP_USERQUOTA:
367                 return (zsb->z_userquota_obj);
368         case ZFS_PROP_GROUPQUOTA:
369                 return (zsb->z_groupquota_obj);
370         default:
371                 return (ENOTSUP);
372         }
373         return (0);
374 }
375
376 int
377 zfs_userspace_many(zfs_sb_t *zsb, zfs_userquota_prop_t type,
378     uint64_t *cookiep, void *vbuf, uint64_t *bufsizep)
379 {
380         int error;
381         zap_cursor_t zc;
382         zap_attribute_t za;
383         zfs_useracct_t *buf = vbuf;
384         uint64_t obj;
385
386         if (!dmu_objset_userspace_present(zsb->z_os))
387                 return (ENOTSUP);
388
389         obj = zfs_userquota_prop_to_obj(zsb, type);
390         if (obj == 0) {
391                 *bufsizep = 0;
392                 return (0);
393         }
394
395         for (zap_cursor_init_serialized(&zc, zsb->z_os, obj, *cookiep);
396             (error = zap_cursor_retrieve(&zc, &za)) == 0;
397             zap_cursor_advance(&zc)) {
398                 if ((uintptr_t)buf - (uintptr_t)vbuf + sizeof (zfs_useracct_t) >
399                     *bufsizep)
400                         break;
401
402                 fuidstr_to_sid(zsb, za.za_name,
403                     buf->zu_domain, sizeof (buf->zu_domain), &buf->zu_rid);
404
405                 buf->zu_space = za.za_first_integer;
406                 buf++;
407         }
408         if (error == ENOENT)
409                 error = 0;
410
411         ASSERT3U((uintptr_t)buf - (uintptr_t)vbuf, <=, *bufsizep);
412         *bufsizep = (uintptr_t)buf - (uintptr_t)vbuf;
413         *cookiep = zap_cursor_serialize(&zc);
414         zap_cursor_fini(&zc);
415         return (error);
416 }
417 EXPORT_SYMBOL(zfs_userspace_many);
418
419 /*
420  * buf must be big enough (eg, 32 bytes)
421  */
422 static int
423 id_to_fuidstr(zfs_sb_t *zsb, const char *domain, uid_t rid,
424     char *buf, boolean_t addok)
425 {
426         uint64_t fuid;
427         int domainid = 0;
428
429         if (domain && domain[0]) {
430                 domainid = zfs_fuid_find_by_domain(zsb, domain, NULL, addok);
431                 if (domainid == -1)
432                         return (ENOENT);
433         }
434         fuid = FUID_ENCODE(domainid, rid);
435         (void) sprintf(buf, "%llx", (longlong_t)fuid);
436         return (0);
437 }
438
439 int
440 zfs_userspace_one(zfs_sb_t *zsb, zfs_userquota_prop_t type,
441     const char *domain, uint64_t rid, uint64_t *valp)
442 {
443         char buf[32];
444         int err;
445         uint64_t obj;
446
447         *valp = 0;
448
449         if (!dmu_objset_userspace_present(zsb->z_os))
450                 return (ENOTSUP);
451
452         obj = zfs_userquota_prop_to_obj(zsb, type);
453         if (obj == 0)
454                 return (0);
455
456         err = id_to_fuidstr(zsb, domain, rid, buf, B_FALSE);
457         if (err)
458                 return (err);
459
460         err = zap_lookup(zsb->z_os, obj, buf, 8, 1, valp);
461         if (err == ENOENT)
462                 err = 0;
463         return (err);
464 }
465 EXPORT_SYMBOL(zfs_userspace_one);
466
467 int
468 zfs_set_userquota(zfs_sb_t *zsb, zfs_userquota_prop_t type,
469     const char *domain, uint64_t rid, uint64_t quota)
470 {
471         char buf[32];
472         int err;
473         dmu_tx_t *tx;
474         uint64_t *objp;
475         boolean_t fuid_dirtied;
476
477         if (type != ZFS_PROP_USERQUOTA && type != ZFS_PROP_GROUPQUOTA)
478                 return (EINVAL);
479
480         if (zsb->z_version < ZPL_VERSION_USERSPACE)
481                 return (ENOTSUP);
482
483         objp = (type == ZFS_PROP_USERQUOTA) ? &zsb->z_userquota_obj :
484             &zsb->z_groupquota_obj;
485
486         err = id_to_fuidstr(zsb, domain, rid, buf, B_TRUE);
487         if (err)
488                 return (err);
489         fuid_dirtied = zsb->z_fuid_dirty;
490
491         tx = dmu_tx_create(zsb->z_os);
492         dmu_tx_hold_zap(tx, *objp ? *objp : DMU_NEW_OBJECT, B_TRUE, NULL);
493         if (*objp == 0) {
494                 dmu_tx_hold_zap(tx, MASTER_NODE_OBJ, B_TRUE,
495                     zfs_userquota_prop_prefixes[type]);
496         }
497         if (fuid_dirtied)
498                 zfs_fuid_txhold(zsb, tx);
499         err = dmu_tx_assign(tx, TXG_WAIT);
500         if (err) {
501                 dmu_tx_abort(tx);
502                 return (err);
503         }
504
505         mutex_enter(&zsb->z_lock);
506         if (*objp == 0) {
507                 *objp = zap_create(zsb->z_os, DMU_OT_USERGROUP_QUOTA,
508                     DMU_OT_NONE, 0, tx);
509                 VERIFY(0 == zap_add(zsb->z_os, MASTER_NODE_OBJ,
510                     zfs_userquota_prop_prefixes[type], 8, 1, objp, tx));
511         }
512         mutex_exit(&zsb->z_lock);
513
514         if (quota == 0) {
515                 err = zap_remove(zsb->z_os, *objp, buf, tx);
516                 if (err == ENOENT)
517                         err = 0;
518         } else {
519                 err = zap_update(zsb->z_os, *objp, buf, 8, 1, &quota, tx);
520         }
521         ASSERT(err == 0);
522         if (fuid_dirtied)
523                 zfs_fuid_sync(zsb, tx);
524         dmu_tx_commit(tx);
525         return (err);
526 }
527 EXPORT_SYMBOL(zfs_set_userquota);
528
529 boolean_t
530 zfs_fuid_overquota(zfs_sb_t *zsb, boolean_t isgroup, uint64_t fuid)
531 {
532         char buf[32];
533         uint64_t used, quota, usedobj, quotaobj;
534         int err;
535
536         usedobj = isgroup ? DMU_GROUPUSED_OBJECT : DMU_USERUSED_OBJECT;
537         quotaobj = isgroup ? zsb->z_groupquota_obj : zsb->z_userquota_obj;
538
539         if (quotaobj == 0 || zsb->z_replay)
540                 return (B_FALSE);
541
542         (void) sprintf(buf, "%llx", (longlong_t)fuid);
543         err = zap_lookup(zsb->z_os, quotaobj, buf, 8, 1, &quota);
544         if (err != 0)
545                 return (B_FALSE);
546
547         err = zap_lookup(zsb->z_os, usedobj, buf, 8, 1, &used);
548         if (err != 0)
549                 return (B_FALSE);
550         return (used >= quota);
551 }
552 EXPORT_SYMBOL(zfs_fuid_overquota);
553
554 boolean_t
555 zfs_owner_overquota(zfs_sb_t *zsb, znode_t *zp, boolean_t isgroup)
556 {
557         uint64_t fuid;
558         uint64_t quotaobj;
559
560         quotaobj = isgroup ? zsb->z_groupquota_obj : zsb->z_userquota_obj;
561
562         fuid = isgroup ? zp->z_gid : zp->z_uid;
563
564         if (quotaobj == 0 || zsb->z_replay)
565                 return (B_FALSE);
566
567         return (zfs_fuid_overquota(zsb, isgroup, fuid));
568 }
569 EXPORT_SYMBOL(zfs_owner_overquota);
570
571 int
572 zfs_sb_create(const char *osname, zfs_sb_t **zsbp)
573 {
574         objset_t *os;
575         zfs_sb_t *zsb;
576         uint64_t zval;
577         int i, error;
578         uint64_t sa_obj;
579
580         zsb = kmem_zalloc(sizeof (zfs_sb_t), KM_SLEEP);
581
582         /*
583          * We claim to always be readonly so we can open snapshots;
584          * other ZPL code will prevent us from writing to snapshots.
585          */
586         error = dmu_objset_own(osname, DMU_OST_ZFS, B_TRUE, zsb, &os);
587         if (error) {
588                 kmem_free(zsb, sizeof (zfs_sb_t));
589                 return (error);
590         }
591
592         /*
593          * Initialize the zfs-specific filesystem structure.
594          * Should probably make this a kmem cache, shuffle fields,
595          * and just bzero up to z_hold_mtx[].
596          */
597         zsb->z_sb = NULL;
598         zsb->z_parent = zsb;
599         zsb->z_max_blksz = SPA_MAXBLOCKSIZE;
600         zsb->z_show_ctldir = ZFS_SNAPDIR_VISIBLE;
601         zsb->z_os = os;
602
603         error = -bdi_init(&zsb->z_bdi);
604         if (error) {
605                 kmem_free(zsb, sizeof (zfs_sb_t));
606                 return (error);
607         }
608
609         error = zfs_get_zplprop(os, ZFS_PROP_VERSION, &zsb->z_version);
610         if (error) {
611                 goto out;
612         } else if (zsb->z_version >
613             zfs_zpl_version_map(spa_version(dmu_objset_spa(os)))) {
614                 (void) printk("Can't mount a version %lld file system "
615                     "on a version %lld pool\n. Pool must be upgraded to mount "
616                     "this file system.", (u_longlong_t)zsb->z_version,
617                     (u_longlong_t)spa_version(dmu_objset_spa(os)));
618                 error = ENOTSUP;
619                 goto out;
620         }
621         if ((error = zfs_get_zplprop(os, ZFS_PROP_NORMALIZE, &zval)) != 0)
622                 goto out;
623         zsb->z_norm = (int)zval;
624
625         if ((error = zfs_get_zplprop(os, ZFS_PROP_UTF8ONLY, &zval)) != 0)
626                 goto out;
627         zsb->z_utf8 = (zval != 0);
628
629         if ((error = zfs_get_zplprop(os, ZFS_PROP_CASE, &zval)) != 0)
630                 goto out;
631         zsb->z_case = (uint_t)zval;
632
633         /*
634          * Fold case on file systems that are always or sometimes case
635          * insensitive.
636          */
637         if (zsb->z_case == ZFS_CASE_INSENSITIVE ||
638             zsb->z_case == ZFS_CASE_MIXED)
639                 zsb->z_norm |= U8_TEXTPREP_TOUPPER;
640
641         zsb->z_use_fuids = USE_FUIDS(zsb->z_version, zsb->z_os);
642         zsb->z_use_sa = USE_SA(zsb->z_version, zsb->z_os);
643
644         if (zsb->z_use_sa) {
645                 /* should either have both of these objects or none */
646                 error = zap_lookup(os, MASTER_NODE_OBJ, ZFS_SA_ATTRS, 8, 1,
647                     &sa_obj);
648                 if (error)
649                         return (error);
650         } else {
651                 /*
652                  * Pre SA versions file systems should never touch
653                  * either the attribute registration or layout objects.
654                  */
655                 sa_obj = 0;
656         }
657
658         error = sa_setup(os, sa_obj, zfs_attr_table, ZPL_END,
659             &zsb->z_attr_table);
660         if (error)
661                 goto out;
662
663         if (zsb->z_version >= ZPL_VERSION_SA)
664                 sa_register_update_callback(os, zfs_sa_upgrade);
665
666         error = zap_lookup(os, MASTER_NODE_OBJ, ZFS_ROOT_OBJ, 8, 1,
667             &zsb->z_root);
668         if (error)
669                 goto out;
670         ASSERT(zsb->z_root != 0);
671
672         error = zap_lookup(os, MASTER_NODE_OBJ, ZFS_UNLINKED_SET, 8, 1,
673             &zsb->z_unlinkedobj);
674         if (error)
675                 goto out;
676
677         error = zap_lookup(os, MASTER_NODE_OBJ,
678             zfs_userquota_prop_prefixes[ZFS_PROP_USERQUOTA],
679             8, 1, &zsb->z_userquota_obj);
680         if (error && error != ENOENT)
681                 goto out;
682
683         error = zap_lookup(os, MASTER_NODE_OBJ,
684             zfs_userquota_prop_prefixes[ZFS_PROP_GROUPQUOTA],
685             8, 1, &zsb->z_groupquota_obj);
686         if (error && error != ENOENT)
687                 goto out;
688
689         error = zap_lookup(os, MASTER_NODE_OBJ, ZFS_FUID_TABLES, 8, 1,
690             &zsb->z_fuid_obj);
691         if (error && error != ENOENT)
692                 goto out;
693
694         error = zap_lookup(os, MASTER_NODE_OBJ, ZFS_SHARES_DIR, 8, 1,
695             &zsb->z_shares_dir);
696         if (error && error != ENOENT)
697                 goto out;
698
699         mutex_init(&zsb->z_znodes_lock, NULL, MUTEX_DEFAULT, NULL);
700         mutex_init(&zsb->z_lock, NULL, MUTEX_DEFAULT, NULL);
701         list_create(&zsb->z_all_znodes, sizeof (znode_t),
702             offsetof(znode_t, z_link_node));
703         rrw_init(&zsb->z_teardown_lock);
704         rw_init(&zsb->z_teardown_inactive_lock, NULL, RW_DEFAULT, NULL);
705         rw_init(&zsb->z_fuid_lock, NULL, RW_DEFAULT, NULL);
706         for (i = 0; i != ZFS_OBJ_MTX_SZ; i++)
707                 mutex_init(&zsb->z_hold_mtx[i], NULL, MUTEX_DEFAULT, NULL);
708
709         *zsbp = zsb;
710         return (0);
711
712 out:
713         dmu_objset_disown(os, zsb);
714         *zsbp = NULL;
715         kmem_free(zsb, sizeof (zfs_sb_t));
716         return (error);
717 }
718
719 static int
720 zfs_sb_setup(zfs_sb_t *zsb, boolean_t mounting)
721 {
722         int error;
723
724         error = zfs_register_callbacks(zsb);
725         if (error)
726                 return (error);
727
728         /*
729          * Set the objset user_ptr to track its zsb.
730          */
731         mutex_enter(&zsb->z_os->os_user_ptr_lock);
732         dmu_objset_set_user(zsb->z_os, zsb);
733         mutex_exit(&zsb->z_os->os_user_ptr_lock);
734
735         zsb->z_log = zil_open(zsb->z_os, zfs_get_data);
736
737         /*
738          * If we are not mounting (ie: online recv), then we don't
739          * have to worry about replaying the log as we blocked all
740          * operations out since we closed the ZIL.
741          */
742         if (mounting) {
743                 boolean_t readonly;
744
745                 /*
746                  * During replay we remove the read only flag to
747                  * allow replays to succeed.
748                  */
749                 readonly = zfs_is_readonly(zsb);
750                 if (readonly != 0)
751                         readonly_changed_cb(zsb, B_FALSE);
752                 else
753                         zfs_unlinked_drain(zsb);
754
755                 /*
756                  * Parse and replay the intent log.
757                  *
758                  * Because of ziltest, this must be done after
759                  * zfs_unlinked_drain().  (Further note: ziltest
760                  * doesn't use readonly mounts, where
761                  * zfs_unlinked_drain() isn't called.)  This is because
762                  * ziltest causes spa_sync() to think it's committed,
763                  * but actually it is not, so the intent log contains
764                  * many txg's worth of changes.
765                  *
766                  * In particular, if object N is in the unlinked set in
767                  * the last txg to actually sync, then it could be
768                  * actually freed in a later txg and then reallocated
769                  * in a yet later txg.  This would write a "create
770                  * object N" record to the intent log.  Normally, this
771                  * would be fine because the spa_sync() would have
772                  * written out the fact that object N is free, before
773                  * we could write the "create object N" intent log
774                  * record.
775                  *
776                  * But when we are in ziltest mode, we advance the "open
777                  * txg" without actually spa_sync()-ing the changes to
778                  * disk.  So we would see that object N is still
779                  * allocated and in the unlinked set, and there is an
780                  * intent log record saying to allocate it.
781                  */
782                 if (spa_writeable(dmu_objset_spa(zsb->z_os))) {
783                         if (zil_replay_disable) {
784                                 zil_destroy(zsb->z_log, B_FALSE);
785                         } else {
786                                 zsb->z_replay = B_TRUE;
787                                 zil_replay(zsb->z_os, zsb,
788                                     zfs_replay_vector);
789                                 zsb->z_replay = B_FALSE;
790                         }
791                 }
792
793                 /* restore readonly bit */
794                 if (readonly != 0)
795                         readonly_changed_cb(zsb, B_TRUE);
796         }
797
798         return (0);
799 }
800
801 void
802 zfs_sb_free(zfs_sb_t *zsb)
803 {
804         int i;
805
806         zfs_fuid_destroy(zsb);
807
808         bdi_destroy(&zsb->z_bdi);
809         mutex_destroy(&zsb->z_znodes_lock);
810         mutex_destroy(&zsb->z_lock);
811         list_destroy(&zsb->z_all_znodes);
812         rrw_destroy(&zsb->z_teardown_lock);
813         rw_destroy(&zsb->z_teardown_inactive_lock);
814         rw_destroy(&zsb->z_fuid_lock);
815         for (i = 0; i != ZFS_OBJ_MTX_SZ; i++)
816                 mutex_destroy(&zsb->z_hold_mtx[i]);
817         kmem_free(zsb, sizeof (zfs_sb_t));
818 }
819
820 static void
821 zfs_set_fuid_feature(zfs_sb_t *zsb)
822 {
823         zsb->z_use_fuids = USE_FUIDS(zsb->z_version, zsb->z_os);
824         zsb->z_use_sa = USE_SA(zsb->z_version, zsb->z_os);
825 }
826
827 void
828 zfs_unregister_callbacks(zfs_sb_t *zsb)
829 {
830         objset_t *os = zsb->z_os;
831         struct dsl_dataset *ds;
832
833         /*
834          * Unregister properties.
835          */
836         if (!dmu_objset_is_snapshot(os)) {
837                 ds = dmu_objset_ds(os);
838                 VERIFY(dsl_prop_unregister(ds, "atime", atime_changed_cb,
839                     zsb) == 0);
840
841                 VERIFY(dsl_prop_unregister(ds, "xattr", xattr_changed_cb,
842                     zsb) == 0);
843
844                 VERIFY(dsl_prop_unregister(ds, "recordsize", blksz_changed_cb,
845                     zsb) == 0);
846
847                 VERIFY(dsl_prop_unregister(ds, "readonly", readonly_changed_cb,
848                     zsb) == 0);
849
850                 VERIFY(dsl_prop_unregister(ds, "devices", devices_changed_cb,
851                     zsb) == 0);
852
853                 VERIFY(dsl_prop_unregister(ds, "setuid", setuid_changed_cb,
854                     zsb) == 0);
855
856                 VERIFY(dsl_prop_unregister(ds, "exec", exec_changed_cb,
857                     zsb) == 0);
858
859                 VERIFY(dsl_prop_unregister(ds, "snapdir", snapdir_changed_cb,
860                     zsb) == 0);
861
862                 VERIFY(dsl_prop_unregister(ds, "aclinherit",
863                     acl_inherit_changed_cb, zsb) == 0);
864
865                 VERIFY(dsl_prop_unregister(ds, "vscan",
866                     vscan_changed_cb, zsb) == 0);
867
868                 VERIFY(dsl_prop_unregister(ds, "nbmand",
869                     nbmand_changed_cb, zsb) == 0);
870         }
871 }
872 EXPORT_SYMBOL(zfs_unregister_callbacks);
873
874 #ifdef HAVE_MLSLABEL
875 /*
876  * zfs_check_global_label:
877  *      Check that the hex label string is appropriate for the dataset
878  *      being mounted into the global_zone proper.
879  *
880  *      Return an error if the hex label string is not default or
881  *      admin_low/admin_high.  For admin_low labels, the corresponding
882  *      dataset must be readonly.
883  */
884 int
885 zfs_check_global_label(const char *dsname, const char *hexsl)
886 {
887         if (strcasecmp(hexsl, ZFS_MLSLABEL_DEFAULT) == 0)
888                 return (0);
889         if (strcasecmp(hexsl, ADMIN_HIGH) == 0)
890                 return (0);
891         if (strcasecmp(hexsl, ADMIN_LOW) == 0) {
892                 /* must be readonly */
893                 uint64_t rdonly;
894
895                 if (dsl_prop_get_integer(dsname,
896                     zfs_prop_to_name(ZFS_PROP_READONLY), &rdonly, NULL))
897                         return (EACCES);
898                 return (rdonly ? 0 : EACCES);
899         }
900         return (EACCES);
901 }
902 #endif /* HAVE_MLSLABEL */
903
904 int
905 zfs_statvfs(struct dentry *dentry, struct kstatfs *statp)
906 {
907         zfs_sb_t *zsb = dentry->d_sb->s_fs_info;
908         uint64_t refdbytes, availbytes, usedobjs, availobjs;
909         uint32_t bshift;
910
911         ZFS_ENTER(zsb);
912
913         dmu_objset_space(zsb->z_os,
914             &refdbytes, &availbytes, &usedobjs, &availobjs);
915
916         /*
917          * The underlying storage pool actually uses multiple block
918          * size.  Under Solaris frsize (fragment size) is reported as
919          * the smallest block size we support, and bsize (block size)
920          * as the filesystem's maximum block size.  Unfortunately,
921          * under Linux the fragment size and block size are often used
922          * interchangeably.  Thus we are forced to report both of them
923          * as the filesystem's maximum block size.
924          */
925         statp->f_frsize = zsb->z_max_blksz;
926         statp->f_bsize = zsb->z_max_blksz;
927         bshift = fls(statp->f_bsize) - 1;
928
929         /*
930          * The following report "total" blocks of various kinds in
931          * the file system, but reported in terms of f_bsize - the
932          * "preferred" size.
933          */
934
935         statp->f_blocks = (refdbytes + availbytes) >> bshift;
936         statp->f_bfree = availbytes >> bshift;
937         statp->f_bavail = statp->f_bfree; /* no root reservation */
938
939         /*
940          * statvfs() should really be called statufs(), because it assumes
941          * static metadata.  ZFS doesn't preallocate files, so the best
942          * we can do is report the max that could possibly fit in f_files,
943          * and that minus the number actually used in f_ffree.
944          * For f_ffree, report the smaller of the number of object available
945          * and the number of blocks (each object will take at least a block).
946          */
947         statp->f_ffree = MIN(availobjs, availbytes >> DNODE_SHIFT);
948         statp->f_files = statp->f_ffree + usedobjs;
949         statp->f_fsid.val[0] = dentry->d_sb->s_dev;
950         statp->f_fsid.val[1] = 0;
951         statp->f_type = ZFS_SUPER_MAGIC;
952         statp->f_namelen = ZFS_MAXNAMELEN;
953
954         /*
955          * We have all of 40 characters to stuff a string here.
956          * Is there anything useful we could/should provide?
957          */
958         bzero(statp->f_spare, sizeof (statp->f_spare));
959
960         ZFS_EXIT(zsb);
961         return (0);
962 }
963 EXPORT_SYMBOL(zfs_statvfs);
964
965 int
966 zfs_root(zfs_sb_t *zsb, struct inode **ipp)
967 {
968         znode_t *rootzp;
969         int error;
970
971         ZFS_ENTER(zsb);
972
973         error = zfs_zget(zsb, zsb->z_root, &rootzp);
974         if (error == 0)
975                 *ipp = ZTOI(rootzp);
976
977         ZFS_EXIT(zsb);
978         return (error);
979 }
980 EXPORT_SYMBOL(zfs_root);
981
982 /*
983  * Teardown the zfs_sb_t::z_os.
984  *
985  * Note, if 'unmounting' if FALSE, we return with the 'z_teardown_lock'
986  * and 'z_teardown_inactive_lock' held.
987  */
988 int
989 zfsvfs_teardown(zfs_sb_t *zsb, boolean_t unmounting)
990 {
991         znode_t *zp;
992
993         rrw_enter(&zsb->z_teardown_lock, RW_WRITER, FTAG);
994
995         if (!unmounting) {
996                 /*
997                  * We purge the parent filesystem's super block as the
998                  * parent filesystem and all of its snapshots have their
999                  * inode's super block set to the parent's filesystem's
1000                  * super block.  Note,  'z_parent' is self referential
1001                  * for non-snapshots.
1002                  */
1003                 shrink_dcache_sb(zsb->z_parent->z_sb);
1004                 (void) spl_invalidate_inodes(zsb->z_parent->z_sb, 0);
1005         }
1006
1007         /*
1008          * Drain the iput_taskq to ensure all active references to the
1009          * zfs_sb_t have been handled only then can it be safely destroyed.
1010          */
1011         taskq_wait(dsl_pool_iput_taskq(dmu_objset_pool(zsb->z_os)));
1012
1013         /*
1014          * Close the zil. NB: Can't close the zil while zfs_inactive
1015          * threads are blocked as zil_close can call zfs_inactive.
1016          */
1017         if (zsb->z_log) {
1018                 zil_close(zsb->z_log);
1019                 zsb->z_log = NULL;
1020         }
1021
1022         rw_enter(&zsb->z_teardown_inactive_lock, RW_WRITER);
1023
1024         /*
1025          * If we are not unmounting (ie: online recv) and someone already
1026          * unmounted this file system while we were doing the switcheroo,
1027          * or a reopen of z_os failed then just bail out now.
1028          */
1029         if (!unmounting && (zsb->z_unmounted || zsb->z_os == NULL)) {
1030                 rw_exit(&zsb->z_teardown_inactive_lock);
1031                 rrw_exit(&zsb->z_teardown_lock, FTAG);
1032                 return (EIO);
1033         }
1034
1035         /*
1036          * At this point there are no vops active, and any new vops will
1037          * fail with EIO since we have z_teardown_lock for writer (only
1038          * relavent for forced unmount).
1039          *
1040          * Release all holds on dbufs.
1041          */
1042         mutex_enter(&zsb->z_znodes_lock);
1043         for (zp = list_head(&zsb->z_all_znodes); zp != NULL;
1044             zp = list_next(&zsb->z_all_znodes, zp))
1045                 if (zp->z_sa_hdl) {
1046                         ASSERT(atomic_read(&ZTOI(zp)->i_count) > 0);
1047                         zfs_znode_dmu_fini(zp);
1048                 }
1049         mutex_exit(&zsb->z_znodes_lock);
1050
1051         /*
1052          * If we are unmounting, set the unmounted flag and let new vops
1053          * unblock.  zfs_inactive will have the unmounted behavior, and all
1054          * other vops will fail with EIO.
1055          */
1056         if (unmounting) {
1057                 zsb->z_unmounted = B_TRUE;
1058                 rrw_exit(&zsb->z_teardown_lock, FTAG);
1059                 rw_exit(&zsb->z_teardown_inactive_lock);
1060         }
1061
1062         /*
1063          * z_os will be NULL if there was an error in attempting to reopen
1064          * zsb, so just return as the properties had already been
1065          *
1066          * unregistered and cached data had been evicted before.
1067          */
1068         if (zsb->z_os == NULL)
1069                 return (0);
1070
1071         /*
1072          * Unregister properties.
1073          */
1074         zfs_unregister_callbacks(zsb);
1075
1076         /*
1077          * Evict cached data
1078          */
1079         if (dmu_objset_is_dirty_anywhere(zsb->z_os))
1080                 if (!zfs_is_readonly(zsb))
1081                         txg_wait_synced(dmu_objset_pool(zsb->z_os), 0);
1082         (void) dmu_objset_evict_dbufs(zsb->z_os);
1083
1084         return (0);
1085 }
1086
1087 #ifdef HAVE_BDI
1088 static atomic_long_t bdi_seq = ATOMIC_LONG_INIT(0);
1089 #endif /* HAVE_BDI */
1090
1091 int
1092 zfs_domount(struct super_block *sb, void *data, int silent)
1093 {
1094         zpl_mount_data_t *zmd = data;
1095         const char *osname = zmd->z_osname;
1096         zfs_sb_t *zsb;
1097         struct inode *root_inode;
1098         uint64_t recordsize;
1099         int error;
1100
1101         error = zfs_sb_create(osname, &zsb);
1102         if (error)
1103                 return (error);
1104
1105         if ((error = dsl_prop_get_integer(osname, "recordsize",
1106             &recordsize, NULL)))
1107                 goto out;
1108
1109         zsb->z_sb = sb;
1110         sb->s_fs_info = zsb;
1111         sb->s_magic = ZFS_SUPER_MAGIC;
1112         sb->s_maxbytes = MAX_LFS_FILESIZE;
1113         sb->s_time_gran = 1;
1114         sb->s_blocksize = recordsize;
1115         sb->s_blocksize_bits = ilog2(recordsize);
1116         bdi_put_sb(sb, NULL);
1117
1118         /* Set callback operations for the file system. */
1119         sb->s_op = &zpl_super_operations;
1120         sb->s_xattr = zpl_xattr_handlers;
1121         sb->s_export_op = &zpl_export_operations;
1122
1123         /* Set features for file system. */
1124         zfs_set_fuid_feature(zsb);
1125
1126         if (dmu_objset_is_snapshot(zsb->z_os)) {
1127                 uint64_t pval;
1128
1129                 atime_changed_cb(zsb, B_FALSE);
1130                 readonly_changed_cb(zsb, B_TRUE);
1131                 if ((error = dsl_prop_get_integer(osname,"xattr",&pval,NULL)))
1132                         goto out;
1133                 xattr_changed_cb(zsb, pval);
1134                 zsb->z_issnap = B_TRUE;
1135                 zsb->z_os->os_sync = ZFS_SYNC_DISABLED;
1136
1137                 mutex_enter(&zsb->z_os->os_user_ptr_lock);
1138                 dmu_objset_set_user(zsb->z_os, zsb);
1139                 mutex_exit(&zsb->z_os->os_user_ptr_lock);
1140         } else {
1141                 /* Disable Linux read-ahead handled by lower layers */
1142                 zsb->z_bdi.ra_pages = 0;
1143
1144                 error = -bdi_register(&zsb->z_bdi, NULL, "zfs-%d",
1145                     atomic_long_inc_return(&bdi_seq));
1146                 if (error)
1147                         goto out;
1148
1149                 bdi_put_sb(sb, &zsb->z_bdi);
1150
1151                 error = zfs_sb_setup(zsb, B_TRUE);
1152 #ifdef HAVE_SNAPSHOT
1153                 (void) zfs_snap_create(zsb);
1154 #endif /* HAVE_SNAPSHOT */
1155         }
1156
1157         /* Allocate a root inode for the filesystem. */
1158         error = zfs_root(zsb, &root_inode);
1159         if (error) {
1160                 (void) zfs_umount(sb);
1161                 goto out;
1162         }
1163
1164         /* Allocate a root dentry for the filesystem */
1165         sb->s_root = d_alloc_root(root_inode);
1166         if (sb->s_root == NULL) {
1167                 (void) zfs_umount(sb);
1168                 error = ENOMEM;
1169                 goto out;
1170         }
1171 out:
1172         if (error) {
1173                 dmu_objset_disown(zsb->z_os, zsb);
1174                 zfs_sb_free(zsb);
1175         }
1176
1177         return (error);
1178 }
1179 EXPORT_SYMBOL(zfs_domount);
1180
1181 /*ARGSUSED*/
1182 int
1183 zfs_umount(struct super_block *sb)
1184 {
1185         zfs_sb_t *zsb = sb->s_fs_info;
1186         objset_t *os;
1187
1188         VERIFY(zfsvfs_teardown(zsb, B_TRUE) == 0);
1189         os = zsb->z_os;
1190
1191         if (bdi_get_sb(sb)) {
1192                 bdi_unregister(bdi_get_sb(sb));
1193                 bdi_put_sb(sb, NULL);
1194         }
1195
1196         /*
1197          * z_os will be NULL if there was an error in
1198          * attempting to reopen zsb.
1199          */
1200         if (os != NULL) {
1201                 /*
1202                  * Unset the objset user_ptr.
1203                  */
1204                 mutex_enter(&os->os_user_ptr_lock);
1205                 dmu_objset_set_user(os, NULL);
1206                 mutex_exit(&os->os_user_ptr_lock);
1207
1208                 /*
1209                  * Finally release the objset
1210                  */
1211                 dmu_objset_disown(os, zsb);
1212         }
1213
1214         zfs_sb_free(zsb);
1215         return (0);
1216 }
1217 EXPORT_SYMBOL(zfs_umount);
1218
1219 int
1220 zfs_remount(struct super_block *sb, int *flags, char *data)
1221 {
1222         /*
1223          * All namespace flags (MNT_*) and super block flags (MS_*) will
1224          * be handled by the Linux VFS.  Only handle custom options here.
1225          */
1226         return (0);
1227 }
1228 EXPORT_SYMBOL(zfs_remount);
1229
1230 int
1231 zfs_vget(struct super_block *sb, struct inode **ipp, fid_t *fidp)
1232 {
1233         zfs_sb_t        *zsb = sb->s_fs_info;
1234         znode_t         *zp;
1235         uint64_t        object = 0;
1236         uint64_t        fid_gen = 0;
1237         uint64_t        gen_mask;
1238         uint64_t        zp_gen;
1239         int             i, err;
1240
1241         *ipp = NULL;
1242
1243         ZFS_ENTER(zsb);
1244
1245         if (fidp->fid_len == LONG_FID_LEN) {
1246                 zfid_long_t     *zlfid = (zfid_long_t *)fidp;
1247                 uint64_t        objsetid = 0;
1248                 uint64_t        setgen = 0;
1249
1250                 for (i = 0; i < sizeof (zlfid->zf_setid); i++)
1251                         objsetid |= ((uint64_t)zlfid->zf_setid[i]) << (8 * i);
1252
1253                 for (i = 0; i < sizeof (zlfid->zf_setgen); i++)
1254                         setgen |= ((uint64_t)zlfid->zf_setgen[i]) << (8 * i);
1255
1256                 ZFS_EXIT(zsb);
1257
1258 #ifdef HAVE_SNAPSHOT
1259                 err = zfsctl_lookup_objset(vfsp, objsetid, &zsb);
1260                 if (err)
1261                         return (EINVAL);
1262 #endif /* HAVE_SNAPSHOT */
1263                 ZFS_ENTER(zsb);
1264         }
1265
1266         if (fidp->fid_len == SHORT_FID_LEN || fidp->fid_len == LONG_FID_LEN) {
1267                 zfid_short_t    *zfid = (zfid_short_t *)fidp;
1268
1269                 for (i = 0; i < sizeof (zfid->zf_object); i++)
1270                         object |= ((uint64_t)zfid->zf_object[i]) << (8 * i);
1271
1272                 for (i = 0; i < sizeof (zfid->zf_gen); i++)
1273                         fid_gen |= ((uint64_t)zfid->zf_gen[i]) << (8 * i);
1274         } else {
1275                 ZFS_EXIT(zsb);
1276                 return (EINVAL);
1277         }
1278
1279 #ifdef HAVE_SNAPSHOT
1280         /* A zero fid_gen means we are in the .zfs control directories */
1281         if (fid_gen == 0 &&
1282             (object == ZFSCTL_INO_ROOT || object == ZFSCTL_INO_SNAPDIR)) {
1283                 *ipp = zsb->z_ctldir;
1284                 ASSERT(*ipp != NULL);
1285                 if (object == ZFSCTL_INO_SNAPDIR) {
1286                         VERIFY(zfsctl_root_lookup(*ipp, "snapshot", ipp, NULL,
1287                             0, NULL, NULL, NULL, NULL, NULL) == 0);
1288                 } else {
1289                         igrab(*ipp);
1290                 }
1291                 ZFS_EXIT(zsb);
1292                 return (0);
1293         }
1294 #endif /* HAVE_SNAPSHOT */
1295
1296         gen_mask = -1ULL >> (64 - 8 * i);
1297
1298         dprintf("getting %llu [%u mask %llx]\n", object, fid_gen, gen_mask);
1299         if ((err = zfs_zget(zsb, object, &zp))) {
1300                 ZFS_EXIT(zsb);
1301                 return (err);
1302         }
1303         (void) sa_lookup(zp->z_sa_hdl, SA_ZPL_GEN(zsb), &zp_gen,
1304             sizeof (uint64_t));
1305         zp_gen = zp_gen & gen_mask;
1306         if (zp_gen == 0)
1307                 zp_gen = 1;
1308         if (zp->z_unlinked || zp_gen != fid_gen) {
1309                 dprintf("znode gen (%u) != fid gen (%u)\n", zp_gen, fid_gen);
1310                 iput(ZTOI(zp));
1311                 ZFS_EXIT(zsb);
1312                 return (EINVAL);
1313         }
1314
1315         *ipp = ZTOI(zp);
1316         if (*ipp)
1317                 zfs_inode_update(ITOZ(*ipp));
1318
1319         ZFS_EXIT(zsb);
1320         return (0);
1321 }
1322 EXPORT_SYMBOL(zfs_vget);
1323
1324 /*
1325  * Block out VOPs and close zfs_sb_t::z_os
1326  *
1327  * Note, if successful, then we return with the 'z_teardown_lock' and
1328  * 'z_teardown_inactive_lock' write held.
1329  */
1330 int
1331 zfs_suspend_fs(zfs_sb_t *zsb)
1332 {
1333         int error;
1334
1335         if ((error = zfsvfs_teardown(zsb, B_FALSE)) != 0)
1336                 return (error);
1337         dmu_objset_disown(zsb->z_os, zsb);
1338
1339         return (0);
1340 }
1341 EXPORT_SYMBOL(zfs_suspend_fs);
1342
1343 /*
1344  * Reopen zfs_sb_t::z_os and release VOPs.
1345  */
1346 int
1347 zfs_resume_fs(zfs_sb_t *zsb, const char *osname)
1348 {
1349         int err, err2;
1350
1351         ASSERT(RRW_WRITE_HELD(&zsb->z_teardown_lock));
1352         ASSERT(RW_WRITE_HELD(&zsb->z_teardown_inactive_lock));
1353
1354         err = dmu_objset_own(osname, DMU_OST_ZFS, B_FALSE, zsb, &zsb->z_os);
1355         if (err) {
1356                 zsb->z_os = NULL;
1357         } else {
1358                 znode_t *zp;
1359                 uint64_t sa_obj = 0;
1360
1361                 err2 = zap_lookup(zsb->z_os, MASTER_NODE_OBJ,
1362                     ZFS_SA_ATTRS, 8, 1, &sa_obj);
1363
1364                 if ((err || err2) && zsb->z_version >= ZPL_VERSION_SA)
1365                         goto bail;
1366
1367
1368                 if ((err = sa_setup(zsb->z_os, sa_obj,
1369                     zfs_attr_table,  ZPL_END, &zsb->z_attr_table)) != 0)
1370                         goto bail;
1371
1372                 VERIFY(zfs_sb_setup(zsb, B_FALSE) == 0);
1373
1374                 /*
1375                  * Attempt to re-establish all the active znodes with
1376                  * their dbufs.  If a zfs_rezget() fails, then we'll let
1377                  * any potential callers discover that via ZFS_ENTER_VERIFY_VP
1378                  * when they try to use their znode.
1379                  */
1380                 mutex_enter(&zsb->z_znodes_lock);
1381                 for (zp = list_head(&zsb->z_all_znodes); zp;
1382                     zp = list_next(&zsb->z_all_znodes, zp)) {
1383                         (void) zfs_rezget(zp);
1384                 }
1385                 mutex_exit(&zsb->z_znodes_lock);
1386
1387         }
1388
1389 bail:
1390         /* release the VOPs */
1391         rw_exit(&zsb->z_teardown_inactive_lock);
1392         rrw_exit(&zsb->z_teardown_lock, FTAG);
1393
1394         if (err) {
1395                 /*
1396                  * Since we couldn't reopen zfs_sb_t::z_os, force
1397                  * unmount this file system.
1398                  */
1399                 (void) zfs_umount(zsb->z_sb);
1400         }
1401         return (err);
1402 }
1403 EXPORT_SYMBOL(zfs_resume_fs);
1404
1405 int
1406 zfs_set_version(zfs_sb_t *zsb, uint64_t newvers)
1407 {
1408         int error;
1409         objset_t *os = zsb->z_os;
1410         dmu_tx_t *tx;
1411
1412         if (newvers < ZPL_VERSION_INITIAL || newvers > ZPL_VERSION)
1413                 return (EINVAL);
1414
1415         if (newvers < zsb->z_version)
1416                 return (EINVAL);
1417
1418         if (zfs_spa_version_map(newvers) >
1419             spa_version(dmu_objset_spa(zsb->z_os)))
1420                 return (ENOTSUP);
1421
1422         tx = dmu_tx_create(os);
1423         dmu_tx_hold_zap(tx, MASTER_NODE_OBJ, B_FALSE, ZPL_VERSION_STR);
1424         if (newvers >= ZPL_VERSION_SA && !zsb->z_use_sa) {
1425                 dmu_tx_hold_zap(tx, MASTER_NODE_OBJ, B_TRUE,
1426                     ZFS_SA_ATTRS);
1427                 dmu_tx_hold_zap(tx, DMU_NEW_OBJECT, FALSE, NULL);
1428         }
1429         error = dmu_tx_assign(tx, TXG_WAIT);
1430         if (error) {
1431                 dmu_tx_abort(tx);
1432                 return (error);
1433         }
1434
1435         error = zap_update(os, MASTER_NODE_OBJ, ZPL_VERSION_STR,
1436             8, 1, &newvers, tx);
1437
1438         if (error) {
1439                 dmu_tx_commit(tx);
1440                 return (error);
1441         }
1442
1443         if (newvers >= ZPL_VERSION_SA && !zsb->z_use_sa) {
1444                 uint64_t sa_obj;
1445
1446                 ASSERT3U(spa_version(dmu_objset_spa(zsb->z_os)), >=,
1447                     SPA_VERSION_SA);
1448                 sa_obj = zap_create(os, DMU_OT_SA_MASTER_NODE,
1449                     DMU_OT_NONE, 0, tx);
1450
1451                 error = zap_add(os, MASTER_NODE_OBJ,
1452                     ZFS_SA_ATTRS, 8, 1, &sa_obj, tx);
1453                 ASSERT3U(error, ==, 0);
1454
1455                 VERIFY(0 == sa_set_sa_object(os, sa_obj));
1456                 sa_register_update_callback(os, zfs_sa_upgrade);
1457         }
1458
1459         spa_history_log_internal(LOG_DS_UPGRADE,
1460             dmu_objset_spa(os), tx, "oldver=%llu newver=%llu dataset = %llu",
1461             zsb->z_version, newvers, dmu_objset_id(os));
1462
1463         dmu_tx_commit(tx);
1464
1465         zsb->z_version = newvers;
1466
1467         if (zsb->z_version >= ZPL_VERSION_FUID)
1468                 zfs_set_fuid_feature(zsb);
1469
1470         return (0);
1471 }
1472 EXPORT_SYMBOL(zfs_set_version);
1473
1474 /*
1475  * Read a property stored within the master node.
1476  */
1477 int
1478 zfs_get_zplprop(objset_t *os, zfs_prop_t prop, uint64_t *value)
1479 {
1480         const char *pname;
1481         int error = ENOENT;
1482
1483         /*
1484          * Look up the file system's value for the property.  For the
1485          * version property, we look up a slightly different string.
1486          */
1487         if (prop == ZFS_PROP_VERSION)
1488                 pname = ZPL_VERSION_STR;
1489         else
1490                 pname = zfs_prop_to_name(prop);
1491
1492         if (os != NULL)
1493                 error = zap_lookup(os, MASTER_NODE_OBJ, pname, 8, 1, value);
1494
1495         if (error == ENOENT) {
1496                 /* No value set, use the default value */
1497                 switch (prop) {
1498                 case ZFS_PROP_VERSION:
1499                         *value = ZPL_VERSION;
1500                         break;
1501                 case ZFS_PROP_NORMALIZE:
1502                 case ZFS_PROP_UTF8ONLY:
1503                         *value = 0;
1504                         break;
1505                 case ZFS_PROP_CASE:
1506                         *value = ZFS_CASE_SENSITIVE;
1507                         break;
1508                 default:
1509                         return (error);
1510                 }
1511                 error = 0;
1512         }
1513         return (error);
1514 }
1515
1516 void
1517 zfs_init(void)
1518 {
1519         zfs_znode_init();
1520         dmu_objset_register_type(DMU_OST_ZFS, zfs_space_delta_cb);
1521         register_filesystem(&zpl_fs_type);
1522 }
1523
1524 void
1525 zfs_fini(void)
1526 {
1527         unregister_filesystem(&zpl_fs_type);
1528         zfs_znode_fini();
1529 }