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