]> git.proxmox.com Git - mirror_zfs.git/blob - module/zfs/zfs_znode.c
Illumos #3742
[mirror_zfs.git] / module / zfs / zfs_znode.c
1 /*
2 * CDDL HEADER START
3 *
4 * The contents of this file are subject to the terms of the
5 * Common Development and Distribution License (the "License").
6 * You may not use this file except in compliance with the License.
7 *
8 * You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
9 * or http://www.opensolaris.org/os/licensing.
10 * See the License for the specific language governing permissions
11 * and limitations under the License.
12 *
13 * When distributing Covered Code, include this CDDL HEADER in each
14 * file and include the License file at usr/src/OPENSOLARIS.LICENSE.
15 * If applicable, add the following below this CDDL HEADER, with the
16 * fields enclosed by brackets "[]" replaced with your own identifying
17 * information: Portions Copyright [yyyy] [name of copyright owner]
18 *
19 * CDDL HEADER END
20 */
21 /*
22 * Copyright (c) 2005, 2010, Oracle and/or its affiliates. All rights reserved.
23 * Copyright (c) 2013 by Delphix. All rights reserved.
24 */
25
26 /* Portions Copyright 2007 Jeremy Teo */
27
28 #ifdef _KERNEL
29 #include <sys/types.h>
30 #include <sys/param.h>
31 #include <sys/time.h>
32 #include <sys/systm.h>
33 #include <sys/sysmacros.h>
34 #include <sys/resource.h>
35 #include <sys/mntent.h>
36 #include <sys/mkdev.h>
37 #include <sys/u8_textprep.h>
38 #include <sys/dsl_dataset.h>
39 #include <sys/vfs.h>
40 #include <sys/vfs_opreg.h>
41 #include <sys/vnode.h>
42 #include <sys/file.h>
43 #include <sys/kmem.h>
44 #include <sys/errno.h>
45 #include <sys/unistd.h>
46 #include <sys/mode.h>
47 #include <sys/atomic.h>
48 #include <vm/pvn.h>
49 #include "fs/fs_subr.h"
50 #include <sys/zfs_dir.h>
51 #include <sys/zfs_acl.h>
52 #include <sys/zfs_ioctl.h>
53 #include <sys/zfs_rlock.h>
54 #include <sys/zfs_fuid.h>
55 #include <sys/zfs_vnops.h>
56 #include <sys/zfs_ctldir.h>
57 #include <sys/dnode.h>
58 #include <sys/fs/zfs.h>
59 #include <sys/kidmap.h>
60 #include <sys/zpl.h>
61 #endif /* _KERNEL */
62
63 #include <sys/dmu.h>
64 #include <sys/refcount.h>
65 #include <sys/stat.h>
66 #include <sys/zap.h>
67 #include <sys/zfs_znode.h>
68 #include <sys/sa.h>
69 #include <sys/zfs_sa.h>
70 #include <sys/zfs_stat.h>
71
72 #include "zfs_prop.h"
73 #include "zfs_comutil.h"
74
75 /*
76 * Define ZNODE_STATS to turn on statistic gathering. By default, it is only
77 * turned on when DEBUG is also defined.
78 */
79 #ifdef DEBUG
80 #define ZNODE_STATS
81 #endif /* DEBUG */
82
83 #ifdef ZNODE_STATS
84 #define ZNODE_STAT_ADD(stat) ((stat)++)
85 #else
86 #define ZNODE_STAT_ADD(stat) /* nothing */
87 #endif /* ZNODE_STATS */
88
89 /*
90 * Functions needed for userland (ie: libzpool) are not put under
91 * #ifdef_KERNEL; the rest of the functions have dependencies
92 * (such as VFS logic) that will not compile easily in userland.
93 */
94 #ifdef _KERNEL
95
96 static kmem_cache_t *znode_cache = NULL;
97
98 /*ARGSUSED*/
99 static int
100 zfs_znode_cache_constructor(void *buf, void *arg, int kmflags)
101 {
102 znode_t *zp = buf;
103
104 inode_init_once(ZTOI(zp));
105 list_link_init(&zp->z_link_node);
106
107 mutex_init(&zp->z_lock, NULL, MUTEX_DEFAULT, NULL);
108 rw_init(&zp->z_parent_lock, NULL, RW_DEFAULT, NULL);
109 rw_init(&zp->z_name_lock, NULL, RW_DEFAULT, NULL);
110 mutex_init(&zp->z_acl_lock, NULL, MUTEX_DEFAULT, NULL);
111 rw_init(&zp->z_xattr_lock, NULL, RW_DEFAULT, NULL);
112
113 mutex_init(&zp->z_range_lock, NULL, MUTEX_DEFAULT, NULL);
114 avl_create(&zp->z_range_avl, zfs_range_compare,
115 sizeof (rl_t), offsetof(rl_t, r_node));
116
117 zp->z_dirlocks = NULL;
118 zp->z_acl_cached = NULL;
119 zp->z_xattr_cached = NULL;
120 zp->z_xattr_parent = NULL;
121 zp->z_moved = 0;
122 return (0);
123 }
124
125 /*ARGSUSED*/
126 static void
127 zfs_znode_cache_destructor(void *buf, void *arg)
128 {
129 znode_t *zp = buf;
130
131 ASSERT(!list_link_active(&zp->z_link_node));
132 mutex_destroy(&zp->z_lock);
133 rw_destroy(&zp->z_parent_lock);
134 rw_destroy(&zp->z_name_lock);
135 mutex_destroy(&zp->z_acl_lock);
136 rw_destroy(&zp->z_xattr_lock);
137 avl_destroy(&zp->z_range_avl);
138 mutex_destroy(&zp->z_range_lock);
139
140 ASSERT(zp->z_dirlocks == NULL);
141 ASSERT(zp->z_acl_cached == NULL);
142 ASSERT(zp->z_xattr_cached == NULL);
143 ASSERT(zp->z_xattr_parent == NULL);
144 }
145
146 void
147 zfs_znode_init(void)
148 {
149 /*
150 * Initialize zcache
151 */
152 ASSERT(znode_cache == NULL);
153 znode_cache = kmem_cache_create("zfs_znode_cache",
154 sizeof (znode_t), 0, zfs_znode_cache_constructor,
155 zfs_znode_cache_destructor, NULL, NULL, NULL, KMC_KMEM);
156 }
157
158 void
159 zfs_znode_fini(void)
160 {
161 /*
162 * Cleanup zcache
163 */
164 if (znode_cache)
165 kmem_cache_destroy(znode_cache);
166 znode_cache = NULL;
167 }
168
169 int
170 zfs_create_share_dir(zfs_sb_t *zsb, dmu_tx_t *tx)
171 {
172 #ifdef HAVE_SMB_SHARE
173 zfs_acl_ids_t acl_ids;
174 vattr_t vattr;
175 znode_t *sharezp;
176 vnode_t *vp;
177 znode_t *zp;
178 int error;
179
180 vattr.va_mask = AT_MODE|AT_UID|AT_GID|AT_TYPE;
181 vattr.va_mode = S_IFDIR | 0555;
182 vattr.va_uid = crgetuid(kcred);
183 vattr.va_gid = crgetgid(kcred);
184
185 sharezp = kmem_cache_alloc(znode_cache, KM_PUSHPAGE);
186 sharezp->z_moved = 0;
187 sharezp->z_unlinked = 0;
188 sharezp->z_atime_dirty = 0;
189 sharezp->z_zfsvfs = zfsvfs;
190 sharezp->z_is_sa = zfsvfs->z_use_sa;
191
192 vp = ZTOV(sharezp);
193 vn_reinit(vp);
194 vp->v_type = VDIR;
195
196 VERIFY(0 == zfs_acl_ids_create(sharezp, IS_ROOT_NODE, &vattr,
197 kcred, NULL, &acl_ids));
198 zfs_mknode(sharezp, &vattr, tx, kcred, IS_ROOT_NODE, &zp, &acl_ids);
199 ASSERT3P(zp, ==, sharezp);
200 ASSERT(!vn_in_dnlc(ZTOV(sharezp))); /* not valid to move */
201 POINTER_INVALIDATE(&sharezp->z_zfsvfs);
202 error = zap_add(zfsvfs->z_os, MASTER_NODE_OBJ,
203 ZFS_SHARES_DIR, 8, 1, &sharezp->z_id, tx);
204 zfsvfs->z_shares_dir = sharezp->z_id;
205
206 zfs_acl_ids_free(&acl_ids);
207 // ZTOV(sharezp)->v_count = 0;
208 sa_handle_destroy(sharezp->z_sa_hdl);
209 kmem_cache_free(znode_cache, sharezp);
210
211 return (error);
212 #else
213 return (0);
214 #endif /* HAVE_SMB_SHARE */
215 }
216
217 static void
218 zfs_znode_sa_init(zfs_sb_t *zsb, znode_t *zp,
219 dmu_buf_t *db, dmu_object_type_t obj_type, sa_handle_t *sa_hdl)
220 {
221 ASSERT(MUTEX_HELD(ZFS_OBJ_MUTEX(zsb, zp->z_id)));
222
223 mutex_enter(&zp->z_lock);
224
225 ASSERT(zp->z_sa_hdl == NULL);
226 ASSERT(zp->z_acl_cached == NULL);
227 if (sa_hdl == NULL) {
228 VERIFY(0 == sa_handle_get_from_db(zsb->z_os, db, zp,
229 SA_HDL_SHARED, &zp->z_sa_hdl));
230 } else {
231 zp->z_sa_hdl = sa_hdl;
232 sa_set_userp(sa_hdl, zp);
233 }
234
235 zp->z_is_sa = (obj_type == DMU_OT_SA) ? B_TRUE : B_FALSE;
236
237 mutex_exit(&zp->z_lock);
238 }
239
240 void
241 zfs_znode_dmu_fini(znode_t *zp)
242 {
243 ASSERT(MUTEX_HELD(ZFS_OBJ_MUTEX(ZTOZSB(zp), zp->z_id)) ||
244 zp->z_unlinked ||
245 RW_WRITE_HELD(&ZTOZSB(zp)->z_teardown_inactive_lock));
246
247 sa_handle_destroy(zp->z_sa_hdl);
248 zp->z_sa_hdl = NULL;
249 }
250
251 /*
252 * Called by new_inode() to allocate a new inode.
253 */
254 int
255 zfs_inode_alloc(struct super_block *sb, struct inode **ip)
256 {
257 znode_t *zp;
258
259 zp = kmem_cache_alloc(znode_cache, KM_PUSHPAGE);
260 *ip = ZTOI(zp);
261
262 return (0);
263 }
264
265 /*
266 * Called in multiple places when an inode should be destroyed.
267 */
268 void
269 zfs_inode_destroy(struct inode *ip)
270 {
271 znode_t *zp = ITOZ(ip);
272 zfs_sb_t *zsb = ZTOZSB(zp);
273
274 if (zfsctl_is_node(ip))
275 zfsctl_inode_destroy(ip);
276
277 mutex_enter(&zsb->z_znodes_lock);
278 if (list_link_active(&zp->z_link_node)) {
279 list_remove(&zsb->z_all_znodes, zp);
280 zsb->z_nr_znodes--;
281 }
282 mutex_exit(&zsb->z_znodes_lock);
283
284 if (zp->z_acl_cached) {
285 zfs_acl_free(zp->z_acl_cached);
286 zp->z_acl_cached = NULL;
287 }
288
289 if (zp->z_xattr_cached) {
290 nvlist_free(zp->z_xattr_cached);
291 zp->z_xattr_cached = NULL;
292 }
293
294 if (zp->z_xattr_parent) {
295 iput(ZTOI(zp->z_xattr_parent));
296 zp->z_xattr_parent = NULL;
297 }
298
299 kmem_cache_free(znode_cache, zp);
300 }
301
302 static void
303 zfs_inode_set_ops(zfs_sb_t *zsb, struct inode *ip)
304 {
305 uint64_t rdev = 0;
306
307 switch (ip->i_mode & S_IFMT) {
308 case S_IFREG:
309 ip->i_op = &zpl_inode_operations;
310 ip->i_fop = &zpl_file_operations;
311 ip->i_mapping->a_ops = &zpl_address_space_operations;
312 break;
313
314 case S_IFDIR:
315 ip->i_op = &zpl_dir_inode_operations;
316 ip->i_fop = &zpl_dir_file_operations;
317 ITOZ(ip)->z_zn_prefetch = B_TRUE;
318 break;
319
320 case S_IFLNK:
321 ip->i_op = &zpl_symlink_inode_operations;
322 break;
323
324 /*
325 * rdev is only stored in a SA only for device files.
326 */
327 case S_IFCHR:
328 case S_IFBLK:
329 VERIFY(sa_lookup(ITOZ(ip)->z_sa_hdl, SA_ZPL_RDEV(zsb),
330 &rdev, sizeof (rdev)) == 0);
331 /*FALLTHROUGH*/
332 case S_IFIFO:
333 case S_IFSOCK:
334 init_special_inode(ip, ip->i_mode, rdev);
335 ip->i_op = &zpl_special_inode_operations;
336 break;
337
338 default:
339 printk("ZFS: Invalid mode: 0x%x\n", ip->i_mode);
340 VERIFY(0);
341 }
342 }
343
344 /*
345 * Construct a znode+inode and initialize.
346 *
347 * This does not do a call to dmu_set_user() that is
348 * up to the caller to do, in case you don't want to
349 * return the znode
350 */
351 static znode_t *
352 zfs_znode_alloc(zfs_sb_t *zsb, dmu_buf_t *db, int blksz,
353 dmu_object_type_t obj_type, uint64_t obj, sa_handle_t *hdl,
354 struct inode *dip)
355 {
356 znode_t *zp;
357 struct inode *ip;
358 uint64_t parent;
359 sa_bulk_attr_t bulk[9];
360 int count = 0;
361
362 ASSERT(zsb != NULL);
363
364 ip = new_inode(zsb->z_sb);
365 if (ip == NULL)
366 return (NULL);
367
368 zp = ITOZ(ip);
369 ASSERT(zp->z_dirlocks == NULL);
370 ASSERT3P(zp->z_acl_cached, ==, NULL);
371 ASSERT3P(zp->z_xattr_cached, ==, NULL);
372 ASSERT3P(zp->z_xattr_parent, ==, NULL);
373 zp->z_moved = 0;
374 zp->z_sa_hdl = NULL;
375 zp->z_unlinked = 0;
376 zp->z_atime_dirty = 0;
377 zp->z_mapcnt = 0;
378 zp->z_id = db->db_object;
379 zp->z_blksz = blksz;
380 zp->z_seq = 0x7A4653;
381 zp->z_sync_cnt = 0;
382 zp->z_is_zvol = B_FALSE;
383 zp->z_is_mapped = B_FALSE;
384 zp->z_is_ctldir = B_FALSE;
385 zp->z_is_stale = B_FALSE;
386
387 zfs_znode_sa_init(zsb, zp, db, obj_type, hdl);
388
389 SA_ADD_BULK_ATTR(bulk, count, SA_ZPL_MODE(zsb), NULL, &zp->z_mode, 8);
390 SA_ADD_BULK_ATTR(bulk, count, SA_ZPL_GEN(zsb), NULL, &zp->z_gen, 8);
391 SA_ADD_BULK_ATTR(bulk, count, SA_ZPL_SIZE(zsb), NULL, &zp->z_size, 8);
392 SA_ADD_BULK_ATTR(bulk, count, SA_ZPL_LINKS(zsb), NULL, &zp->z_links, 8);
393 SA_ADD_BULK_ATTR(bulk, count, SA_ZPL_FLAGS(zsb), NULL,
394 &zp->z_pflags, 8);
395 SA_ADD_BULK_ATTR(bulk, count, SA_ZPL_PARENT(zsb), NULL,
396 &parent, 8);
397 SA_ADD_BULK_ATTR(bulk, count, SA_ZPL_ATIME(zsb), NULL,
398 &zp->z_atime, 16);
399 SA_ADD_BULK_ATTR(bulk, count, SA_ZPL_UID(zsb), NULL, &zp->z_uid, 8);
400 SA_ADD_BULK_ATTR(bulk, count, SA_ZPL_GID(zsb), NULL, &zp->z_gid, 8);
401
402 if (sa_bulk_lookup(zp->z_sa_hdl, bulk, count) != 0 || zp->z_gen == 0) {
403 if (hdl == NULL)
404 sa_handle_destroy(zp->z_sa_hdl);
405
406 goto error;
407 }
408
409 /*
410 * xattr znodes hold a reference on their unique parent
411 */
412 if (dip && zp->z_pflags & ZFS_XATTR) {
413 igrab(dip);
414 zp->z_xattr_parent = ITOZ(dip);
415 }
416
417 ip->i_ino = obj;
418 zfs_inode_update(zp);
419 zfs_inode_set_ops(zsb, ip);
420
421 /*
422 * The only way insert_inode_locked() can fail is if the ip->i_ino
423 * number is already hashed for this super block. This can never
424 * happen because the inode numbers map 1:1 with the object numbers.
425 *
426 * The one exception is rolling back a mounted file system, but in
427 * this case all the active inode are unhashed during the rollback.
428 */
429 VERIFY3S(insert_inode_locked(ip), ==, 0);
430
431 mutex_enter(&zsb->z_znodes_lock);
432 list_insert_tail(&zsb->z_all_znodes, zp);
433 zsb->z_nr_znodes++;
434 membar_producer();
435 mutex_exit(&zsb->z_znodes_lock);
436
437 unlock_new_inode(ip);
438 return (zp);
439
440 error:
441 unlock_new_inode(ip);
442 iput(ip);
443 return NULL;
444 }
445
446 /*
447 * Update the embedded inode given the znode. We should work toward
448 * eliminating this function as soon as possible by removing values
449 * which are duplicated between the znode and inode. If the generic
450 * inode has the correct field it should be used, and the ZFS code
451 * updated to access the inode. This can be done incrementally.
452 */
453 void
454 zfs_inode_update(znode_t *zp)
455 {
456 zfs_sb_t *zsb;
457 struct inode *ip;
458 uint32_t blksize;
459 uint64_t atime[2], mtime[2], ctime[2];
460
461 ASSERT(zp != NULL);
462 zsb = ZTOZSB(zp);
463 ip = ZTOI(zp);
464
465 /* Skip .zfs control nodes which do not exist on disk. */
466 if (zfsctl_is_node(ip))
467 return;
468
469 sa_lookup(zp->z_sa_hdl, SA_ZPL_ATIME(zsb), &atime, 16);
470 sa_lookup(zp->z_sa_hdl, SA_ZPL_MTIME(zsb), &mtime, 16);
471 sa_lookup(zp->z_sa_hdl, SA_ZPL_CTIME(zsb), &ctime, 16);
472
473 spin_lock(&ip->i_lock);
474 ip->i_generation = zp->z_gen;
475 ip->i_uid = SUID_TO_KUID(zp->z_uid);
476 ip->i_gid = SGID_TO_KGID(zp->z_gid);
477 set_nlink(ip, zp->z_links);
478 ip->i_mode = zp->z_mode;
479 ip->i_blkbits = SPA_MINBLOCKSHIFT;
480 dmu_object_size_from_db(sa_get_db(zp->z_sa_hdl), &blksize,
481 (u_longlong_t *)&ip->i_blocks);
482
483 ZFS_TIME_DECODE(&ip->i_atime, atime);
484 ZFS_TIME_DECODE(&ip->i_mtime, mtime);
485 ZFS_TIME_DECODE(&ip->i_ctime, ctime);
486
487 i_size_write(ip, zp->z_size);
488 spin_unlock(&ip->i_lock);
489 }
490
491 static uint64_t empty_xattr;
492 static uint64_t pad[4];
493 static zfs_acl_phys_t acl_phys;
494 /*
495 * Create a new DMU object to hold a zfs znode.
496 *
497 * IN: dzp - parent directory for new znode
498 * vap - file attributes for new znode
499 * tx - dmu transaction id for zap operations
500 * cr - credentials of caller
501 * flag - flags:
502 * IS_ROOT_NODE - new object will be root
503 * IS_XATTR - new object is an attribute
504 * bonuslen - length of bonus buffer
505 * setaclp - File/Dir initial ACL
506 * fuidp - Tracks fuid allocation.
507 *
508 * OUT: zpp - allocated znode
509 *
510 */
511 void
512 zfs_mknode(znode_t *dzp, vattr_t *vap, dmu_tx_t *tx, cred_t *cr,
513 uint_t flag, znode_t **zpp, zfs_acl_ids_t *acl_ids)
514 {
515 uint64_t crtime[2], atime[2], mtime[2], ctime[2];
516 uint64_t mode, size, links, parent, pflags;
517 uint64_t dzp_pflags = 0;
518 uint64_t rdev = 0;
519 zfs_sb_t *zsb = ZTOZSB(dzp);
520 dmu_buf_t *db;
521 timestruc_t now;
522 uint64_t gen, obj;
523 int err;
524 int bonuslen;
525 sa_handle_t *sa_hdl;
526 dmu_object_type_t obj_type;
527 sa_bulk_attr_t *sa_attrs;
528 int cnt = 0;
529 zfs_acl_locator_cb_t locate = { 0 };
530
531 if (zsb->z_replay) {
532 obj = vap->va_nodeid;
533 now = vap->va_ctime; /* see zfs_replay_create() */
534 gen = vap->va_nblocks; /* ditto */
535 } else {
536 obj = 0;
537 gethrestime(&now);
538 gen = dmu_tx_get_txg(tx);
539 }
540
541 obj_type = zsb->z_use_sa ? DMU_OT_SA : DMU_OT_ZNODE;
542 bonuslen = (obj_type == DMU_OT_SA) ?
543 DN_MAX_BONUSLEN : ZFS_OLD_ZNODE_PHYS_SIZE;
544
545 /*
546 * Create a new DMU object.
547 */
548 /*
549 * There's currently no mechanism for pre-reading the blocks that will
550 * be needed to allocate a new object, so we accept the small chance
551 * that there will be an i/o error and we will fail one of the
552 * assertions below.
553 */
554 if (S_ISDIR(vap->va_mode)) {
555 if (zsb->z_replay) {
556 err = zap_create_claim_norm(zsb->z_os, obj,
557 zsb->z_norm, DMU_OT_DIRECTORY_CONTENTS,
558 obj_type, bonuslen, tx);
559 ASSERT0(err);
560 } else {
561 obj = zap_create_norm(zsb->z_os,
562 zsb->z_norm, DMU_OT_DIRECTORY_CONTENTS,
563 obj_type, bonuslen, tx);
564 }
565 } else {
566 if (zsb->z_replay) {
567 err = dmu_object_claim(zsb->z_os, obj,
568 DMU_OT_PLAIN_FILE_CONTENTS, 0,
569 obj_type, bonuslen, tx);
570 ASSERT0(err);
571 } else {
572 obj = dmu_object_alloc(zsb->z_os,
573 DMU_OT_PLAIN_FILE_CONTENTS, 0,
574 obj_type, bonuslen, tx);
575 }
576 }
577
578 ZFS_OBJ_HOLD_ENTER(zsb, obj);
579 VERIFY(0 == sa_buf_hold(zsb->z_os, obj, NULL, &db));
580
581 /*
582 * If this is the root, fix up the half-initialized parent pointer
583 * to reference the just-allocated physical data area.
584 */
585 if (flag & IS_ROOT_NODE) {
586 dzp->z_id = obj;
587 } else {
588 dzp_pflags = dzp->z_pflags;
589 }
590
591 /*
592 * If parent is an xattr, so am I.
593 */
594 if (dzp_pflags & ZFS_XATTR) {
595 flag |= IS_XATTR;
596 }
597
598 if (zsb->z_use_fuids)
599 pflags = ZFS_ARCHIVE | ZFS_AV_MODIFIED;
600 else
601 pflags = 0;
602
603 if (S_ISDIR(vap->va_mode)) {
604 size = 2; /* contents ("." and "..") */
605 links = (flag & (IS_ROOT_NODE | IS_XATTR)) ? 2 : 1;
606 } else {
607 size = links = 0;
608 }
609
610 if (S_ISBLK(vap->va_mode) || S_ISCHR(vap->va_mode))
611 rdev = vap->va_rdev;
612
613 parent = dzp->z_id;
614 mode = acl_ids->z_mode;
615 if (flag & IS_XATTR)
616 pflags |= ZFS_XATTR;
617
618 /*
619 * No execs denied will be deterimed when zfs_mode_compute() is called.
620 */
621 pflags |= acl_ids->z_aclp->z_hints &
622 (ZFS_ACL_TRIVIAL|ZFS_INHERIT_ACE|ZFS_ACL_AUTO_INHERIT|
623 ZFS_ACL_DEFAULTED|ZFS_ACL_PROTECTED);
624
625 ZFS_TIME_ENCODE(&now, crtime);
626 ZFS_TIME_ENCODE(&now, ctime);
627
628 if (vap->va_mask & ATTR_ATIME) {
629 ZFS_TIME_ENCODE(&vap->va_atime, atime);
630 } else {
631 ZFS_TIME_ENCODE(&now, atime);
632 }
633
634 if (vap->va_mask & ATTR_MTIME) {
635 ZFS_TIME_ENCODE(&vap->va_mtime, mtime);
636 } else {
637 ZFS_TIME_ENCODE(&now, mtime);
638 }
639
640 /* Now add in all of the "SA" attributes */
641 VERIFY(0 == sa_handle_get_from_db(zsb->z_os, db, NULL, SA_HDL_SHARED,
642 &sa_hdl));
643
644 /*
645 * Setup the array of attributes to be replaced/set on the new file
646 *
647 * order for DMU_OT_ZNODE is critical since it needs to be constructed
648 * in the old znode_phys_t format. Don't change this ordering
649 */
650 sa_attrs = kmem_alloc(sizeof(sa_bulk_attr_t) * ZPL_END, KM_PUSHPAGE);
651
652 if (obj_type == DMU_OT_ZNODE) {
653 SA_ADD_BULK_ATTR(sa_attrs, cnt, SA_ZPL_ATIME(zsb),
654 NULL, &atime, 16);
655 SA_ADD_BULK_ATTR(sa_attrs, cnt, SA_ZPL_MTIME(zsb),
656 NULL, &mtime, 16);
657 SA_ADD_BULK_ATTR(sa_attrs, cnt, SA_ZPL_CTIME(zsb),
658 NULL, &ctime, 16);
659 SA_ADD_BULK_ATTR(sa_attrs, cnt, SA_ZPL_CRTIME(zsb),
660 NULL, &crtime, 16);
661 SA_ADD_BULK_ATTR(sa_attrs, cnt, SA_ZPL_GEN(zsb),
662 NULL, &gen, 8);
663 SA_ADD_BULK_ATTR(sa_attrs, cnt, SA_ZPL_MODE(zsb),
664 NULL, &mode, 8);
665 SA_ADD_BULK_ATTR(sa_attrs, cnt, SA_ZPL_SIZE(zsb),
666 NULL, &size, 8);
667 SA_ADD_BULK_ATTR(sa_attrs, cnt, SA_ZPL_PARENT(zsb),
668 NULL, &parent, 8);
669 } else {
670 SA_ADD_BULK_ATTR(sa_attrs, cnt, SA_ZPL_MODE(zsb),
671 NULL, &mode, 8);
672 SA_ADD_BULK_ATTR(sa_attrs, cnt, SA_ZPL_SIZE(zsb),
673 NULL, &size, 8);
674 SA_ADD_BULK_ATTR(sa_attrs, cnt, SA_ZPL_GEN(zsb),
675 NULL, &gen, 8);
676 SA_ADD_BULK_ATTR(sa_attrs, cnt, SA_ZPL_UID(zsb),
677 NULL, &acl_ids->z_fuid, 8);
678 SA_ADD_BULK_ATTR(sa_attrs, cnt, SA_ZPL_GID(zsb),
679 NULL, &acl_ids->z_fgid, 8);
680 SA_ADD_BULK_ATTR(sa_attrs, cnt, SA_ZPL_PARENT(zsb),
681 NULL, &parent, 8);
682 SA_ADD_BULK_ATTR(sa_attrs, cnt, SA_ZPL_FLAGS(zsb),
683 NULL, &pflags, 8);
684 SA_ADD_BULK_ATTR(sa_attrs, cnt, SA_ZPL_ATIME(zsb),
685 NULL, &atime, 16);
686 SA_ADD_BULK_ATTR(sa_attrs, cnt, SA_ZPL_MTIME(zsb),
687 NULL, &mtime, 16);
688 SA_ADD_BULK_ATTR(sa_attrs, cnt, SA_ZPL_CTIME(zsb),
689 NULL, &ctime, 16);
690 SA_ADD_BULK_ATTR(sa_attrs, cnt, SA_ZPL_CRTIME(zsb),
691 NULL, &crtime, 16);
692 }
693
694 SA_ADD_BULK_ATTR(sa_attrs, cnt, SA_ZPL_LINKS(zsb), NULL, &links, 8);
695
696 if (obj_type == DMU_OT_ZNODE) {
697 SA_ADD_BULK_ATTR(sa_attrs, cnt, SA_ZPL_XATTR(zsb), NULL,
698 &empty_xattr, 8);
699 }
700 if (obj_type == DMU_OT_ZNODE ||
701 (S_ISBLK(vap->va_mode) || S_ISCHR(vap->va_mode))) {
702 SA_ADD_BULK_ATTR(sa_attrs, cnt, SA_ZPL_RDEV(zsb),
703 NULL, &rdev, 8);
704 }
705 if (obj_type == DMU_OT_ZNODE) {
706 SA_ADD_BULK_ATTR(sa_attrs, cnt, SA_ZPL_FLAGS(zsb),
707 NULL, &pflags, 8);
708 SA_ADD_BULK_ATTR(sa_attrs, cnt, SA_ZPL_UID(zsb), NULL,
709 &acl_ids->z_fuid, 8);
710 SA_ADD_BULK_ATTR(sa_attrs, cnt, SA_ZPL_GID(zsb), NULL,
711 &acl_ids->z_fgid, 8);
712 SA_ADD_BULK_ATTR(sa_attrs, cnt, SA_ZPL_PAD(zsb), NULL, pad,
713 sizeof (uint64_t) * 4);
714 SA_ADD_BULK_ATTR(sa_attrs, cnt, SA_ZPL_ZNODE_ACL(zsb), NULL,
715 &acl_phys, sizeof (zfs_acl_phys_t));
716 } else if (acl_ids->z_aclp->z_version >= ZFS_ACL_VERSION_FUID) {
717 SA_ADD_BULK_ATTR(sa_attrs, cnt, SA_ZPL_DACL_COUNT(zsb), NULL,
718 &acl_ids->z_aclp->z_acl_count, 8);
719 locate.cb_aclp = acl_ids->z_aclp;
720 SA_ADD_BULK_ATTR(sa_attrs, cnt, SA_ZPL_DACL_ACES(zsb),
721 zfs_acl_data_locator, &locate,
722 acl_ids->z_aclp->z_acl_bytes);
723 mode = zfs_mode_compute(mode, acl_ids->z_aclp, &pflags,
724 acl_ids->z_fuid, acl_ids->z_fgid);
725 }
726
727 VERIFY(sa_replace_all_by_template(sa_hdl, sa_attrs, cnt, tx) == 0);
728
729 if (!(flag & IS_ROOT_NODE)) {
730 *zpp = zfs_znode_alloc(zsb, db, 0, obj_type, obj, sa_hdl,
731 ZTOI(dzp));
732 VERIFY(*zpp != NULL);
733 VERIFY(dzp != NULL);
734 } else {
735 /*
736 * If we are creating the root node, the "parent" we
737 * passed in is the znode for the root.
738 */
739 *zpp = dzp;
740
741 (*zpp)->z_sa_hdl = sa_hdl;
742 }
743
744 (*zpp)->z_pflags = pflags;
745 (*zpp)->z_mode = mode;
746
747 if (obj_type == DMU_OT_ZNODE ||
748 acl_ids->z_aclp->z_version < ZFS_ACL_VERSION_FUID) {
749 err = zfs_aclset_common(*zpp, acl_ids->z_aclp, cr, tx);
750 ASSERT0(err);
751 }
752 kmem_free(sa_attrs, sizeof(sa_bulk_attr_t) * ZPL_END);
753 ZFS_OBJ_HOLD_EXIT(zsb, obj);
754 }
755
756 /*
757 * Update in-core attributes. It is assumed the caller will be doing an
758 * sa_bulk_update to push the changes out.
759 */
760 void
761 zfs_xvattr_set(znode_t *zp, xvattr_t *xvap, dmu_tx_t *tx)
762 {
763 xoptattr_t *xoap;
764
765 xoap = xva_getxoptattr(xvap);
766 ASSERT(xoap);
767
768 if (XVA_ISSET_REQ(xvap, XAT_CREATETIME)) {
769 uint64_t times[2];
770 ZFS_TIME_ENCODE(&xoap->xoa_createtime, times);
771 (void) sa_update(zp->z_sa_hdl, SA_ZPL_CRTIME(ZTOZSB(zp)),
772 &times, sizeof (times), tx);
773 XVA_SET_RTN(xvap, XAT_CREATETIME);
774 }
775 if (XVA_ISSET_REQ(xvap, XAT_READONLY)) {
776 ZFS_ATTR_SET(zp, ZFS_READONLY, xoap->xoa_readonly,
777 zp->z_pflags, tx);
778 XVA_SET_RTN(xvap, XAT_READONLY);
779 }
780 if (XVA_ISSET_REQ(xvap, XAT_HIDDEN)) {
781 ZFS_ATTR_SET(zp, ZFS_HIDDEN, xoap->xoa_hidden,
782 zp->z_pflags, tx);
783 XVA_SET_RTN(xvap, XAT_HIDDEN);
784 }
785 if (XVA_ISSET_REQ(xvap, XAT_SYSTEM)) {
786 ZFS_ATTR_SET(zp, ZFS_SYSTEM, xoap->xoa_system,
787 zp->z_pflags, tx);
788 XVA_SET_RTN(xvap, XAT_SYSTEM);
789 }
790 if (XVA_ISSET_REQ(xvap, XAT_ARCHIVE)) {
791 ZFS_ATTR_SET(zp, ZFS_ARCHIVE, xoap->xoa_archive,
792 zp->z_pflags, tx);
793 XVA_SET_RTN(xvap, XAT_ARCHIVE);
794 }
795 if (XVA_ISSET_REQ(xvap, XAT_IMMUTABLE)) {
796 ZFS_ATTR_SET(zp, ZFS_IMMUTABLE, xoap->xoa_immutable,
797 zp->z_pflags, tx);
798 XVA_SET_RTN(xvap, XAT_IMMUTABLE);
799 }
800 if (XVA_ISSET_REQ(xvap, XAT_NOUNLINK)) {
801 ZFS_ATTR_SET(zp, ZFS_NOUNLINK, xoap->xoa_nounlink,
802 zp->z_pflags, tx);
803 XVA_SET_RTN(xvap, XAT_NOUNLINK);
804 }
805 if (XVA_ISSET_REQ(xvap, XAT_APPENDONLY)) {
806 ZFS_ATTR_SET(zp, ZFS_APPENDONLY, xoap->xoa_appendonly,
807 zp->z_pflags, tx);
808 XVA_SET_RTN(xvap, XAT_APPENDONLY);
809 }
810 if (XVA_ISSET_REQ(xvap, XAT_NODUMP)) {
811 ZFS_ATTR_SET(zp, ZFS_NODUMP, xoap->xoa_nodump,
812 zp->z_pflags, tx);
813 XVA_SET_RTN(xvap, XAT_NODUMP);
814 }
815 if (XVA_ISSET_REQ(xvap, XAT_OPAQUE)) {
816 ZFS_ATTR_SET(zp, ZFS_OPAQUE, xoap->xoa_opaque,
817 zp->z_pflags, tx);
818 XVA_SET_RTN(xvap, XAT_OPAQUE);
819 }
820 if (XVA_ISSET_REQ(xvap, XAT_AV_QUARANTINED)) {
821 ZFS_ATTR_SET(zp, ZFS_AV_QUARANTINED,
822 xoap->xoa_av_quarantined, zp->z_pflags, tx);
823 XVA_SET_RTN(xvap, XAT_AV_QUARANTINED);
824 }
825 if (XVA_ISSET_REQ(xvap, XAT_AV_MODIFIED)) {
826 ZFS_ATTR_SET(zp, ZFS_AV_MODIFIED, xoap->xoa_av_modified,
827 zp->z_pflags, tx);
828 XVA_SET_RTN(xvap, XAT_AV_MODIFIED);
829 }
830 if (XVA_ISSET_REQ(xvap, XAT_AV_SCANSTAMP)) {
831 zfs_sa_set_scanstamp(zp, xvap, tx);
832 XVA_SET_RTN(xvap, XAT_AV_SCANSTAMP);
833 }
834 if (XVA_ISSET_REQ(xvap, XAT_REPARSE)) {
835 ZFS_ATTR_SET(zp, ZFS_REPARSE, xoap->xoa_reparse,
836 zp->z_pflags, tx);
837 XVA_SET_RTN(xvap, XAT_REPARSE);
838 }
839 if (XVA_ISSET_REQ(xvap, XAT_OFFLINE)) {
840 ZFS_ATTR_SET(zp, ZFS_OFFLINE, xoap->xoa_offline,
841 zp->z_pflags, tx);
842 XVA_SET_RTN(xvap, XAT_OFFLINE);
843 }
844 if (XVA_ISSET_REQ(xvap, XAT_SPARSE)) {
845 ZFS_ATTR_SET(zp, ZFS_SPARSE, xoap->xoa_sparse,
846 zp->z_pflags, tx);
847 XVA_SET_RTN(xvap, XAT_SPARSE);
848 }
849 }
850
851 int
852 zfs_zget(zfs_sb_t *zsb, uint64_t obj_num, znode_t **zpp)
853 {
854 dmu_object_info_t doi;
855 dmu_buf_t *db;
856 znode_t *zp;
857 int err;
858 sa_handle_t *hdl;
859 struct inode *ip;
860
861 *zpp = NULL;
862
863 again:
864 ip = ilookup(zsb->z_sb, obj_num);
865
866 ZFS_OBJ_HOLD_ENTER(zsb, obj_num);
867
868 err = sa_buf_hold(zsb->z_os, obj_num, NULL, &db);
869 if (err) {
870 ZFS_OBJ_HOLD_EXIT(zsb, obj_num);
871 iput(ip);
872 return (err);
873 }
874
875 dmu_object_info_from_db(db, &doi);
876 if (doi.doi_bonus_type != DMU_OT_SA &&
877 (doi.doi_bonus_type != DMU_OT_ZNODE ||
878 (doi.doi_bonus_type == DMU_OT_ZNODE &&
879 doi.doi_bonus_size < sizeof (znode_phys_t)))) {
880 sa_buf_rele(db, NULL);
881 ZFS_OBJ_HOLD_EXIT(zsb, obj_num);
882 iput(ip);
883 return (SET_ERROR(EINVAL));
884 }
885
886 hdl = dmu_buf_get_user(db);
887 if (hdl != NULL) {
888 if (ip == NULL) {
889 /*
890 * ilookup returned NULL, which means
891 * the znode is dying - but the SA handle isn't
892 * quite dead yet, we need to drop any locks
893 * we're holding, re-schedule the task and try again.
894 */
895 sa_buf_rele(db, NULL);
896 ZFS_OBJ_HOLD_EXIT(zsb, obj_num);
897
898 schedule();
899 goto again;
900 }
901
902 zp = sa_get_userdata(hdl);
903
904 /*
905 * Since "SA" does immediate eviction we
906 * should never find a sa handle that doesn't
907 * know about the znode.
908 */
909
910 ASSERT3P(zp, !=, NULL);
911
912 mutex_enter(&zp->z_lock);
913 ASSERT3U(zp->z_id, ==, obj_num);
914 if (zp->z_unlinked) {
915 err = SET_ERROR(ENOENT);
916 } else {
917 igrab(ZTOI(zp));
918 *zpp = zp;
919 err = 0;
920 }
921 sa_buf_rele(db, NULL);
922 mutex_exit(&zp->z_lock);
923 ZFS_OBJ_HOLD_EXIT(zsb, obj_num);
924 iput(ip);
925 return (err);
926 }
927
928 ASSERT3P(ip, ==, NULL);
929
930 /*
931 * Not found create new znode/vnode but only if file exists.
932 *
933 * There is a small window where zfs_vget() could
934 * find this object while a file create is still in
935 * progress. This is checked for in zfs_znode_alloc()
936 *
937 * if zfs_znode_alloc() fails it will drop the hold on the
938 * bonus buffer.
939 */
940 zp = zfs_znode_alloc(zsb, db, doi.doi_data_block_size,
941 doi.doi_bonus_type, obj_num, NULL, NULL);
942 if (zp == NULL) {
943 err = SET_ERROR(ENOENT);
944 } else {
945 *zpp = zp;
946 }
947 ZFS_OBJ_HOLD_EXIT(zsb, obj_num);
948 return (err);
949 }
950
951 int
952 zfs_rezget(znode_t *zp)
953 {
954 zfs_sb_t *zsb = ZTOZSB(zp);
955 dmu_object_info_t doi;
956 dmu_buf_t *db;
957 uint64_t obj_num = zp->z_id;
958 uint64_t mode;
959 sa_bulk_attr_t bulk[8];
960 int err;
961 int count = 0;
962 uint64_t gen;
963
964 ZFS_OBJ_HOLD_ENTER(zsb, obj_num);
965
966 mutex_enter(&zp->z_acl_lock);
967 if (zp->z_acl_cached) {
968 zfs_acl_free(zp->z_acl_cached);
969 zp->z_acl_cached = NULL;
970 }
971 mutex_exit(&zp->z_acl_lock);
972
973 rw_enter(&zp->z_xattr_lock, RW_WRITER);
974 if (zp->z_xattr_cached) {
975 nvlist_free(zp->z_xattr_cached);
976 zp->z_xattr_cached = NULL;
977 }
978
979 if (zp->z_xattr_parent) {
980 iput(ZTOI(zp->z_xattr_parent));
981 zp->z_xattr_parent = NULL;
982 }
983 rw_exit(&zp->z_xattr_lock);
984
985 ASSERT(zp->z_sa_hdl == NULL);
986 err = sa_buf_hold(zsb->z_os, obj_num, NULL, &db);
987 if (err) {
988 ZFS_OBJ_HOLD_EXIT(zsb, obj_num);
989 return (err);
990 }
991
992 dmu_object_info_from_db(db, &doi);
993 if (doi.doi_bonus_type != DMU_OT_SA &&
994 (doi.doi_bonus_type != DMU_OT_ZNODE ||
995 (doi.doi_bonus_type == DMU_OT_ZNODE &&
996 doi.doi_bonus_size < sizeof (znode_phys_t)))) {
997 sa_buf_rele(db, NULL);
998 ZFS_OBJ_HOLD_EXIT(zsb, obj_num);
999 return (SET_ERROR(EINVAL));
1000 }
1001
1002 zfs_znode_sa_init(zsb, zp, db, doi.doi_bonus_type, NULL);
1003
1004 /* reload cached values */
1005 SA_ADD_BULK_ATTR(bulk, count, SA_ZPL_GEN(zsb), NULL,
1006 &gen, sizeof (gen));
1007 SA_ADD_BULK_ATTR(bulk, count, SA_ZPL_SIZE(zsb), NULL,
1008 &zp->z_size, sizeof (zp->z_size));
1009 SA_ADD_BULK_ATTR(bulk, count, SA_ZPL_LINKS(zsb), NULL,
1010 &zp->z_links, sizeof (zp->z_links));
1011 SA_ADD_BULK_ATTR(bulk, count, SA_ZPL_FLAGS(zsb), NULL,
1012 &zp->z_pflags, sizeof (zp->z_pflags));
1013 SA_ADD_BULK_ATTR(bulk, count, SA_ZPL_ATIME(zsb), NULL,
1014 &zp->z_atime, sizeof (zp->z_atime));
1015 SA_ADD_BULK_ATTR(bulk, count, SA_ZPL_UID(zsb), NULL,
1016 &zp->z_uid, sizeof (zp->z_uid));
1017 SA_ADD_BULK_ATTR(bulk, count, SA_ZPL_GID(zsb), NULL,
1018 &zp->z_gid, sizeof (zp->z_gid));
1019 SA_ADD_BULK_ATTR(bulk, count, SA_ZPL_MODE(zsb), NULL,
1020 &mode, sizeof (mode));
1021
1022 if (sa_bulk_lookup(zp->z_sa_hdl, bulk, count)) {
1023 zfs_znode_dmu_fini(zp);
1024 ZFS_OBJ_HOLD_EXIT(zsb, obj_num);
1025 return (SET_ERROR(EIO));
1026 }
1027
1028 zp->z_mode = mode;
1029
1030 if (gen != zp->z_gen) {
1031 zfs_znode_dmu_fini(zp);
1032 ZFS_OBJ_HOLD_EXIT(zsb, obj_num);
1033 return (SET_ERROR(EIO));
1034 }
1035
1036 zp->z_unlinked = (zp->z_links == 0);
1037 zp->z_blksz = doi.doi_data_block_size;
1038 zfs_inode_update(zp);
1039
1040 ZFS_OBJ_HOLD_EXIT(zsb, obj_num);
1041
1042 return (0);
1043 }
1044
1045 void
1046 zfs_znode_delete(znode_t *zp, dmu_tx_t *tx)
1047 {
1048 zfs_sb_t *zsb = ZTOZSB(zp);
1049 objset_t *os = zsb->z_os;
1050 uint64_t obj = zp->z_id;
1051 uint64_t acl_obj = zfs_external_acl(zp);
1052
1053 ZFS_OBJ_HOLD_ENTER(zsb, obj);
1054 if (acl_obj) {
1055 VERIFY(!zp->z_is_sa);
1056 VERIFY(0 == dmu_object_free(os, acl_obj, tx));
1057 }
1058 VERIFY(0 == dmu_object_free(os, obj, tx));
1059 zfs_znode_dmu_fini(zp);
1060 ZFS_OBJ_HOLD_EXIT(zsb, obj);
1061 }
1062
1063 void
1064 zfs_zinactive(znode_t *zp)
1065 {
1066 zfs_sb_t *zsb = ZTOZSB(zp);
1067 uint64_t z_id = zp->z_id;
1068 boolean_t drop_mutex = 0;
1069
1070 ASSERT(zp->z_sa_hdl);
1071
1072 /*
1073 * Don't allow a zfs_zget() while were trying to release this znode.
1074 *
1075 * Linux allows direct memory reclaim which means that any KM_SLEEP
1076 * allocation may trigger inode eviction. This can lead to a deadlock
1077 * through the ->shrink_icache_memory()->evict()->zfs_inactive()->
1078 * zfs_zinactive() call path. To avoid this deadlock the process
1079 * must not reacquire the mutex when it is already holding it.
1080 */
1081 if (!ZFS_OBJ_HOLD_OWNED(zsb, z_id)) {
1082 ZFS_OBJ_HOLD_ENTER(zsb, z_id);
1083 drop_mutex = 1;
1084 }
1085
1086 mutex_enter(&zp->z_lock);
1087
1088 /*
1089 * If this was the last reference to a file with no links,
1090 * remove the file from the file system.
1091 */
1092 if (zp->z_unlinked) {
1093 mutex_exit(&zp->z_lock);
1094
1095 if (drop_mutex)
1096 ZFS_OBJ_HOLD_EXIT(zsb, z_id);
1097
1098 zfs_rmnode(zp);
1099 return;
1100 }
1101
1102 mutex_exit(&zp->z_lock);
1103 zfs_znode_dmu_fini(zp);
1104
1105 if (drop_mutex)
1106 ZFS_OBJ_HOLD_EXIT(zsb, z_id);
1107 }
1108
1109 void
1110 zfs_tstamp_update_setup(znode_t *zp, uint_t flag, uint64_t mtime[2],
1111 uint64_t ctime[2], boolean_t have_tx)
1112 {
1113 timestruc_t now;
1114
1115 gethrestime(&now);
1116
1117 if (have_tx) { /* will sa_bulk_update happen really soon? */
1118 zp->z_atime_dirty = 0;
1119 zp->z_seq++;
1120 } else {
1121 zp->z_atime_dirty = 1;
1122 }
1123
1124 if (flag & ATTR_ATIME) {
1125 ZFS_TIME_ENCODE(&now, zp->z_atime);
1126 }
1127
1128 if (flag & ATTR_MTIME) {
1129 ZFS_TIME_ENCODE(&now, mtime);
1130 if (ZTOZSB(zp)->z_use_fuids) {
1131 zp->z_pflags |= (ZFS_ARCHIVE |
1132 ZFS_AV_MODIFIED);
1133 }
1134 }
1135
1136 if (flag & ATTR_CTIME) {
1137 ZFS_TIME_ENCODE(&now, ctime);
1138 if (ZTOZSB(zp)->z_use_fuids)
1139 zp->z_pflags |= ZFS_ARCHIVE;
1140 }
1141 }
1142
1143 /*
1144 * Grow the block size for a file.
1145 *
1146 * IN: zp - znode of file to free data in.
1147 * size - requested block size
1148 * tx - open transaction.
1149 *
1150 * NOTE: this function assumes that the znode is write locked.
1151 */
1152 void
1153 zfs_grow_blocksize(znode_t *zp, uint64_t size, dmu_tx_t *tx)
1154 {
1155 int error;
1156 u_longlong_t dummy;
1157
1158 if (size <= zp->z_blksz)
1159 return;
1160 /*
1161 * If the file size is already greater than the current blocksize,
1162 * we will not grow. If there is more than one block in a file,
1163 * the blocksize cannot change.
1164 */
1165 if (zp->z_blksz && zp->z_size > zp->z_blksz)
1166 return;
1167
1168 error = dmu_object_set_blocksize(ZTOZSB(zp)->z_os, zp->z_id,
1169 size, 0, tx);
1170
1171 if (error == ENOTSUP)
1172 return;
1173 ASSERT0(error);
1174
1175 /* What blocksize did we actually get? */
1176 dmu_object_size_from_db(sa_get_db(zp->z_sa_hdl), &zp->z_blksz, &dummy);
1177 }
1178
1179 /*
1180 * Increase the file length
1181 *
1182 * IN: zp - znode of file to free data in.
1183 * end - new end-of-file
1184 *
1185 * RETURN: 0 on success, error code on failure
1186 */
1187 static int
1188 zfs_extend(znode_t *zp, uint64_t end)
1189 {
1190 zfs_sb_t *zsb = ZTOZSB(zp);
1191 dmu_tx_t *tx;
1192 rl_t *rl;
1193 uint64_t newblksz;
1194 int error;
1195
1196 /*
1197 * We will change zp_size, lock the whole file.
1198 */
1199 rl = zfs_range_lock(zp, 0, UINT64_MAX, RL_WRITER);
1200
1201 /*
1202 * Nothing to do if file already at desired length.
1203 */
1204 if (end <= zp->z_size) {
1205 zfs_range_unlock(rl);
1206 return (0);
1207 }
1208 top:
1209 tx = dmu_tx_create(zsb->z_os);
1210 dmu_tx_hold_sa(tx, zp->z_sa_hdl, B_FALSE);
1211 zfs_sa_upgrade_txholds(tx, zp);
1212 if (end > zp->z_blksz &&
1213 (!ISP2(zp->z_blksz) || zp->z_blksz < zsb->z_max_blksz)) {
1214 /*
1215 * We are growing the file past the current block size.
1216 */
1217 if (zp->z_blksz > ZTOZSB(zp)->z_max_blksz) {
1218 ASSERT(!ISP2(zp->z_blksz));
1219 newblksz = MIN(end, SPA_MAXBLOCKSIZE);
1220 } else {
1221 newblksz = MIN(end, ZTOZSB(zp)->z_max_blksz);
1222 }
1223 dmu_tx_hold_write(tx, zp->z_id, 0, newblksz);
1224 } else {
1225 newblksz = 0;
1226 }
1227
1228 error = dmu_tx_assign(tx, TXG_NOWAIT);
1229 if (error) {
1230 if (error == ERESTART) {
1231 dmu_tx_wait(tx);
1232 dmu_tx_abort(tx);
1233 goto top;
1234 }
1235 dmu_tx_abort(tx);
1236 zfs_range_unlock(rl);
1237 return (error);
1238 }
1239
1240 if (newblksz)
1241 zfs_grow_blocksize(zp, newblksz, tx);
1242
1243 zp->z_size = end;
1244
1245 VERIFY(0 == sa_update(zp->z_sa_hdl, SA_ZPL_SIZE(ZTOZSB(zp)),
1246 &zp->z_size, sizeof (zp->z_size), tx));
1247
1248 zfs_range_unlock(rl);
1249
1250 dmu_tx_commit(tx);
1251
1252 return (0);
1253 }
1254
1255 /*
1256 * Free space in a file.
1257 *
1258 * IN: zp - znode of file to free data in.
1259 * off - start of section to free.
1260 * len - length of section to free.
1261 *
1262 * RETURN: 0 on success, error code on failure
1263 */
1264 static int
1265 zfs_free_range(znode_t *zp, uint64_t off, uint64_t len)
1266 {
1267 zfs_sb_t *zsb = ZTOZSB(zp);
1268 rl_t *rl;
1269 int error;
1270
1271 /*
1272 * Lock the range being freed.
1273 */
1274 rl = zfs_range_lock(zp, off, len, RL_WRITER);
1275
1276 /*
1277 * Nothing to do if file already at desired length.
1278 */
1279 if (off >= zp->z_size) {
1280 zfs_range_unlock(rl);
1281 return (0);
1282 }
1283
1284 if (off + len > zp->z_size)
1285 len = zp->z_size - off;
1286
1287 error = dmu_free_long_range(zsb->z_os, zp->z_id, off, len);
1288
1289 zfs_range_unlock(rl);
1290
1291 return (error);
1292 }
1293
1294 /*
1295 * Truncate a file
1296 *
1297 * IN: zp - znode of file to free data in.
1298 * end - new end-of-file.
1299 *
1300 * RETURN: 0 on success, error code on failure
1301 */
1302 static int
1303 zfs_trunc(znode_t *zp, uint64_t end)
1304 {
1305 zfs_sb_t *zsb = ZTOZSB(zp);
1306 dmu_tx_t *tx;
1307 rl_t *rl;
1308 int error;
1309 sa_bulk_attr_t bulk[2];
1310 int count = 0;
1311
1312 /*
1313 * We will change zp_size, lock the whole file.
1314 */
1315 rl = zfs_range_lock(zp, 0, UINT64_MAX, RL_WRITER);
1316
1317 /*
1318 * Nothing to do if file already at desired length.
1319 */
1320 if (end >= zp->z_size) {
1321 zfs_range_unlock(rl);
1322 return (0);
1323 }
1324
1325 error = dmu_free_long_range(zsb->z_os, zp->z_id, end, -1);
1326 if (error) {
1327 zfs_range_unlock(rl);
1328 return (error);
1329 }
1330 top:
1331 tx = dmu_tx_create(zsb->z_os);
1332 dmu_tx_hold_sa(tx, zp->z_sa_hdl, B_FALSE);
1333 zfs_sa_upgrade_txholds(tx, zp);
1334 error = dmu_tx_assign(tx, TXG_NOWAIT);
1335 if (error) {
1336 if (error == ERESTART) {
1337 dmu_tx_wait(tx);
1338 dmu_tx_abort(tx);
1339 goto top;
1340 }
1341 dmu_tx_abort(tx);
1342 zfs_range_unlock(rl);
1343 return (error);
1344 }
1345
1346 zp->z_size = end;
1347 SA_ADD_BULK_ATTR(bulk, count, SA_ZPL_SIZE(zsb),
1348 NULL, &zp->z_size, sizeof (zp->z_size));
1349
1350 if (end == 0) {
1351 zp->z_pflags &= ~ZFS_SPARSE;
1352 SA_ADD_BULK_ATTR(bulk, count, SA_ZPL_FLAGS(zsb),
1353 NULL, &zp->z_pflags, 8);
1354 }
1355 VERIFY(sa_bulk_update(zp->z_sa_hdl, bulk, count, tx) == 0);
1356
1357 dmu_tx_commit(tx);
1358
1359 zfs_range_unlock(rl);
1360
1361 return (0);
1362 }
1363
1364 /*
1365 * Free space in a file
1366 *
1367 * IN: zp - znode of file to free data in.
1368 * off - start of range
1369 * len - end of range (0 => EOF)
1370 * flag - current file open mode flags.
1371 * log - TRUE if this action should be logged
1372 *
1373 * RETURN: 0 on success, error code on failure
1374 */
1375 int
1376 zfs_freesp(znode_t *zp, uint64_t off, uint64_t len, int flag, boolean_t log)
1377 {
1378 struct inode *ip = ZTOI(zp);
1379 dmu_tx_t *tx;
1380 zfs_sb_t *zsb = ZTOZSB(zp);
1381 zilog_t *zilog = zsb->z_log;
1382 uint64_t mode;
1383 uint64_t mtime[2], ctime[2];
1384 sa_bulk_attr_t bulk[3];
1385 int count = 0;
1386 int error;
1387
1388 if ((error = sa_lookup(zp->z_sa_hdl, SA_ZPL_MODE(zsb), &mode,
1389 sizeof (mode))) != 0)
1390 return (error);
1391
1392 if (off > zp->z_size) {
1393 error = zfs_extend(zp, off+len);
1394 if (error == 0 && log)
1395 goto log;
1396 else
1397 return (error);
1398 }
1399
1400 /*
1401 * Check for any locks in the region to be freed.
1402 */
1403 if (ip->i_flock && mandatory_lock(ip)) {
1404 uint64_t length = (len ? len : zp->z_size - off);
1405 if (!lock_may_write(ip, off, length))
1406 return (SET_ERROR(EAGAIN));
1407 }
1408
1409 if (len == 0) {
1410 error = zfs_trunc(zp, off);
1411 } else {
1412 if ((error = zfs_free_range(zp, off, len)) == 0 &&
1413 off + len > zp->z_size)
1414 error = zfs_extend(zp, off+len);
1415 }
1416 if (error || !log)
1417 return (error);
1418 log:
1419 tx = dmu_tx_create(zsb->z_os);
1420 dmu_tx_hold_sa(tx, zp->z_sa_hdl, B_FALSE);
1421 zfs_sa_upgrade_txholds(tx, zp);
1422 error = dmu_tx_assign(tx, TXG_NOWAIT);
1423 if (error) {
1424 if (error == ERESTART) {
1425 dmu_tx_wait(tx);
1426 dmu_tx_abort(tx);
1427 goto log;
1428 }
1429 dmu_tx_abort(tx);
1430 return (error);
1431 }
1432
1433 SA_ADD_BULK_ATTR(bulk, count, SA_ZPL_MTIME(zsb), NULL, mtime, 16);
1434 SA_ADD_BULK_ATTR(bulk, count, SA_ZPL_CTIME(zsb), NULL, ctime, 16);
1435 SA_ADD_BULK_ATTR(bulk, count, SA_ZPL_FLAGS(zsb),
1436 NULL, &zp->z_pflags, 8);
1437 zfs_tstamp_update_setup(zp, CONTENT_MODIFIED, mtime, ctime, B_TRUE);
1438 error = sa_bulk_update(zp->z_sa_hdl, bulk, count, tx);
1439 ASSERT(error == 0);
1440
1441 zfs_log_truncate(zilog, tx, TX_TRUNCATE, zp, off, len);
1442
1443 dmu_tx_commit(tx);
1444 zfs_inode_update(zp);
1445 return (0);
1446 }
1447
1448 void
1449 zfs_create_fs(objset_t *os, cred_t *cr, nvlist_t *zplprops, dmu_tx_t *tx)
1450 {
1451 struct super_block *sb;
1452 zfs_sb_t *zsb;
1453 uint64_t moid, obj, sa_obj, version;
1454 uint64_t sense = ZFS_CASE_SENSITIVE;
1455 uint64_t norm = 0;
1456 nvpair_t *elem;
1457 int error;
1458 int i;
1459 znode_t *rootzp = NULL;
1460 vattr_t vattr;
1461 znode_t *zp;
1462 zfs_acl_ids_t acl_ids;
1463
1464 /*
1465 * First attempt to create master node.
1466 */
1467 /*
1468 * In an empty objset, there are no blocks to read and thus
1469 * there can be no i/o errors (which we assert below).
1470 */
1471 moid = MASTER_NODE_OBJ;
1472 error = zap_create_claim(os, moid, DMU_OT_MASTER_NODE,
1473 DMU_OT_NONE, 0, tx);
1474 ASSERT(error == 0);
1475
1476 /*
1477 * Set starting attributes.
1478 */
1479 version = zfs_zpl_version_map(spa_version(dmu_objset_spa(os)));
1480 elem = NULL;
1481 while ((elem = nvlist_next_nvpair(zplprops, elem)) != NULL) {
1482 /* For the moment we expect all zpl props to be uint64_ts */
1483 uint64_t val;
1484 char *name;
1485
1486 ASSERT(nvpair_type(elem) == DATA_TYPE_UINT64);
1487 VERIFY(nvpair_value_uint64(elem, &val) == 0);
1488 name = nvpair_name(elem);
1489 if (strcmp(name, zfs_prop_to_name(ZFS_PROP_VERSION)) == 0) {
1490 if (val < version)
1491 version = val;
1492 } else {
1493 error = zap_update(os, moid, name, 8, 1, &val, tx);
1494 }
1495 ASSERT(error == 0);
1496 if (strcmp(name, zfs_prop_to_name(ZFS_PROP_NORMALIZE)) == 0)
1497 norm = val;
1498 else if (strcmp(name, zfs_prop_to_name(ZFS_PROP_CASE)) == 0)
1499 sense = val;
1500 }
1501 ASSERT(version != 0);
1502 error = zap_update(os, moid, ZPL_VERSION_STR, 8, 1, &version, tx);
1503
1504 /*
1505 * Create zap object used for SA attribute registration
1506 */
1507
1508 if (version >= ZPL_VERSION_SA) {
1509 sa_obj = zap_create(os, DMU_OT_SA_MASTER_NODE,
1510 DMU_OT_NONE, 0, tx);
1511 error = zap_add(os, moid, ZFS_SA_ATTRS, 8, 1, &sa_obj, tx);
1512 ASSERT(error == 0);
1513 } else {
1514 sa_obj = 0;
1515 }
1516 /*
1517 * Create a delete queue.
1518 */
1519 obj = zap_create(os, DMU_OT_UNLINKED_SET, DMU_OT_NONE, 0, tx);
1520
1521 error = zap_add(os, moid, ZFS_UNLINKED_SET, 8, 1, &obj, tx);
1522 ASSERT(error == 0);
1523
1524 /*
1525 * Create root znode. Create minimal znode/inode/zsb/sb
1526 * to allow zfs_mknode to work.
1527 */
1528 vattr.va_mask = ATTR_MODE|ATTR_UID|ATTR_GID;
1529 vattr.va_mode = S_IFDIR|0755;
1530 vattr.va_uid = crgetuid(cr);
1531 vattr.va_gid = crgetgid(cr);
1532
1533 rootzp = kmem_cache_alloc(znode_cache, KM_PUSHPAGE);
1534 rootzp->z_moved = 0;
1535 rootzp->z_unlinked = 0;
1536 rootzp->z_atime_dirty = 0;
1537 rootzp->z_is_sa = USE_SA(version, os);
1538
1539 zsb = kmem_zalloc(sizeof (zfs_sb_t), KM_PUSHPAGE | KM_NODEBUG);
1540 zsb->z_os = os;
1541 zsb->z_parent = zsb;
1542 zsb->z_version = version;
1543 zsb->z_use_fuids = USE_FUIDS(version, os);
1544 zsb->z_use_sa = USE_SA(version, os);
1545 zsb->z_norm = norm;
1546
1547 sb = kmem_zalloc(sizeof (struct super_block), KM_PUSHPAGE);
1548 sb->s_fs_info = zsb;
1549
1550 ZTOI(rootzp)->i_sb = sb;
1551
1552 error = sa_setup(os, sa_obj, zfs_attr_table, ZPL_END,
1553 &zsb->z_attr_table);
1554
1555 ASSERT(error == 0);
1556
1557 /*
1558 * Fold case on file systems that are always or sometimes case
1559 * insensitive.
1560 */
1561 if (sense == ZFS_CASE_INSENSITIVE || sense == ZFS_CASE_MIXED)
1562 zsb->z_norm |= U8_TEXTPREP_TOUPPER;
1563
1564 mutex_init(&zsb->z_znodes_lock, NULL, MUTEX_DEFAULT, NULL);
1565 list_create(&zsb->z_all_znodes, sizeof (znode_t),
1566 offsetof(znode_t, z_link_node));
1567
1568 for (i = 0; i != ZFS_OBJ_MTX_SZ; i++)
1569 mutex_init(&zsb->z_hold_mtx[i], NULL, MUTEX_DEFAULT, NULL);
1570
1571 VERIFY(0 == zfs_acl_ids_create(rootzp, IS_ROOT_NODE, &vattr,
1572 cr, NULL, &acl_ids));
1573 zfs_mknode(rootzp, &vattr, tx, cr, IS_ROOT_NODE, &zp, &acl_ids);
1574 ASSERT3P(zp, ==, rootzp);
1575 error = zap_add(os, moid, ZFS_ROOT_OBJ, 8, 1, &rootzp->z_id, tx);
1576 ASSERT(error == 0);
1577 zfs_acl_ids_free(&acl_ids);
1578
1579 atomic_set(&ZTOI(rootzp)->i_count, 0);
1580 sa_handle_destroy(rootzp->z_sa_hdl);
1581 kmem_cache_free(znode_cache, rootzp);
1582
1583 /*
1584 * Create shares directory
1585 */
1586 error = zfs_create_share_dir(zsb, tx);
1587 ASSERT(error == 0);
1588
1589 for (i = 0; i != ZFS_OBJ_MTX_SZ; i++)
1590 mutex_destroy(&zsb->z_hold_mtx[i]);
1591
1592 kmem_free(sb, sizeof (struct super_block));
1593 kmem_free(zsb, sizeof (zfs_sb_t));
1594 }
1595 #endif /* _KERNEL */
1596
1597 static int
1598 zfs_sa_setup(objset_t *osp, sa_attr_type_t **sa_table)
1599 {
1600 uint64_t sa_obj = 0;
1601 int error;
1602
1603 error = zap_lookup(osp, MASTER_NODE_OBJ, ZFS_SA_ATTRS, 8, 1, &sa_obj);
1604 if (error != 0 && error != ENOENT)
1605 return (error);
1606
1607 error = sa_setup(osp, sa_obj, zfs_attr_table, ZPL_END, sa_table);
1608 return (error);
1609 }
1610
1611 static int
1612 zfs_grab_sa_handle(objset_t *osp, uint64_t obj, sa_handle_t **hdlp,
1613 dmu_buf_t **db, void *tag)
1614 {
1615 dmu_object_info_t doi;
1616 int error;
1617
1618 if ((error = sa_buf_hold(osp, obj, tag, db)) != 0)
1619 return (error);
1620
1621 dmu_object_info_from_db(*db, &doi);
1622 if ((doi.doi_bonus_type != DMU_OT_SA &&
1623 doi.doi_bonus_type != DMU_OT_ZNODE) ||
1624 (doi.doi_bonus_type == DMU_OT_ZNODE &&
1625 doi.doi_bonus_size < sizeof (znode_phys_t))) {
1626 sa_buf_rele(*db, tag);
1627 return (SET_ERROR(ENOTSUP));
1628 }
1629
1630 error = sa_handle_get(osp, obj, NULL, SA_HDL_PRIVATE, hdlp);
1631 if (error != 0) {
1632 sa_buf_rele(*db, tag);
1633 return (error);
1634 }
1635
1636 return (0);
1637 }
1638
1639 void
1640 zfs_release_sa_handle(sa_handle_t *hdl, dmu_buf_t *db, void *tag)
1641 {
1642 sa_handle_destroy(hdl);
1643 sa_buf_rele(db, tag);
1644 }
1645
1646 /*
1647 * Given an object number, return its parent object number and whether
1648 * or not the object is an extended attribute directory.
1649 */
1650 static int
1651 zfs_obj_to_pobj(sa_handle_t *hdl, sa_attr_type_t *sa_table, uint64_t *pobjp,
1652 int *is_xattrdir)
1653 {
1654 uint64_t parent;
1655 uint64_t pflags;
1656 uint64_t mode;
1657 sa_bulk_attr_t bulk[3];
1658 int count = 0;
1659 int error;
1660
1661 SA_ADD_BULK_ATTR(bulk, count, sa_table[ZPL_PARENT], NULL,
1662 &parent, sizeof (parent));
1663 SA_ADD_BULK_ATTR(bulk, count, sa_table[ZPL_FLAGS], NULL,
1664 &pflags, sizeof (pflags));
1665 SA_ADD_BULK_ATTR(bulk, count, sa_table[ZPL_MODE], NULL,
1666 &mode, sizeof (mode));
1667
1668 if ((error = sa_bulk_lookup(hdl, bulk, count)) != 0)
1669 return (error);
1670
1671 *pobjp = parent;
1672 *is_xattrdir = ((pflags & ZFS_XATTR) != 0) && S_ISDIR(mode);
1673
1674 return (0);
1675 }
1676
1677 /*
1678 * Given an object number, return some zpl level statistics
1679 */
1680 static int
1681 zfs_obj_to_stats_impl(sa_handle_t *hdl, sa_attr_type_t *sa_table,
1682 zfs_stat_t *sb)
1683 {
1684 sa_bulk_attr_t bulk[4];
1685 int count = 0;
1686
1687 SA_ADD_BULK_ATTR(bulk, count, sa_table[ZPL_MODE], NULL,
1688 &sb->zs_mode, sizeof (sb->zs_mode));
1689 SA_ADD_BULK_ATTR(bulk, count, sa_table[ZPL_GEN], NULL,
1690 &sb->zs_gen, sizeof (sb->zs_gen));
1691 SA_ADD_BULK_ATTR(bulk, count, sa_table[ZPL_LINKS], NULL,
1692 &sb->zs_links, sizeof (sb->zs_links));
1693 SA_ADD_BULK_ATTR(bulk, count, sa_table[ZPL_CTIME], NULL,
1694 &sb->zs_ctime, sizeof (sb->zs_ctime));
1695
1696 return (sa_bulk_lookup(hdl, bulk, count));
1697 }
1698
1699 static int
1700 zfs_obj_to_path_impl(objset_t *osp, uint64_t obj, sa_handle_t *hdl,
1701 sa_attr_type_t *sa_table, char *buf, int len)
1702 {
1703 sa_handle_t *sa_hdl;
1704 sa_handle_t *prevhdl = NULL;
1705 dmu_buf_t *prevdb = NULL;
1706 dmu_buf_t *sa_db = NULL;
1707 char *path = buf + len - 1;
1708 int error;
1709
1710 *path = '\0';
1711 sa_hdl = hdl;
1712
1713 for (;;) {
1714 uint64_t pobj = 0;
1715 char component[MAXNAMELEN + 2];
1716 size_t complen;
1717 int is_xattrdir = 0;
1718
1719 if (prevdb)
1720 zfs_release_sa_handle(prevhdl, prevdb, FTAG);
1721
1722 if ((error = zfs_obj_to_pobj(sa_hdl, sa_table, &pobj,
1723 &is_xattrdir)) != 0)
1724 break;
1725
1726 if (pobj == obj) {
1727 if (path[0] != '/')
1728 *--path = '/';
1729 break;
1730 }
1731
1732 component[0] = '/';
1733 if (is_xattrdir) {
1734 (void) sprintf(component + 1, "<xattrdir>");
1735 } else {
1736 error = zap_value_search(osp, pobj, obj,
1737 ZFS_DIRENT_OBJ(-1ULL), component + 1);
1738 if (error != 0)
1739 break;
1740 }
1741
1742 complen = strlen(component);
1743 path -= complen;
1744 ASSERT(path >= buf);
1745 bcopy(component, path, complen);
1746 obj = pobj;
1747
1748 if (sa_hdl != hdl) {
1749 prevhdl = sa_hdl;
1750 prevdb = sa_db;
1751 }
1752 error = zfs_grab_sa_handle(osp, obj, &sa_hdl, &sa_db, FTAG);
1753 if (error != 0) {
1754 sa_hdl = prevhdl;
1755 sa_db = prevdb;
1756 break;
1757 }
1758 }
1759
1760 if (sa_hdl != NULL && sa_hdl != hdl) {
1761 ASSERT(sa_db != NULL);
1762 zfs_release_sa_handle(sa_hdl, sa_db, FTAG);
1763 }
1764
1765 if (error == 0)
1766 (void) memmove(buf, path, buf + len - path);
1767
1768 return (error);
1769 }
1770
1771 int
1772 zfs_obj_to_path(objset_t *osp, uint64_t obj, char *buf, int len)
1773 {
1774 sa_attr_type_t *sa_table;
1775 sa_handle_t *hdl;
1776 dmu_buf_t *db;
1777 int error;
1778
1779 error = zfs_sa_setup(osp, &sa_table);
1780 if (error != 0)
1781 return (error);
1782
1783 error = zfs_grab_sa_handle(osp, obj, &hdl, &db, FTAG);
1784 if (error != 0)
1785 return (error);
1786
1787 error = zfs_obj_to_path_impl(osp, obj, hdl, sa_table, buf, len);
1788
1789 zfs_release_sa_handle(hdl, db, FTAG);
1790 return (error);
1791 }
1792
1793 int
1794 zfs_obj_to_stats(objset_t *osp, uint64_t obj, zfs_stat_t *sb,
1795 char *buf, int len)
1796 {
1797 char *path = buf + len - 1;
1798 sa_attr_type_t *sa_table;
1799 sa_handle_t *hdl;
1800 dmu_buf_t *db;
1801 int error;
1802
1803 *path = '\0';
1804
1805 error = zfs_sa_setup(osp, &sa_table);
1806 if (error != 0)
1807 return (error);
1808
1809 error = zfs_grab_sa_handle(osp, obj, &hdl, &db, FTAG);
1810 if (error != 0)
1811 return (error);
1812
1813 error = zfs_obj_to_stats_impl(hdl, sa_table, sb);
1814 if (error != 0) {
1815 zfs_release_sa_handle(hdl, db, FTAG);
1816 return (error);
1817 }
1818
1819 error = zfs_obj_to_path_impl(osp, obj, hdl, sa_table, buf, len);
1820
1821 zfs_release_sa_handle(hdl, db, FTAG);
1822 return (error);
1823 }
1824
1825 #if defined(_KERNEL) && defined(HAVE_SPL)
1826 EXPORT_SYMBOL(zfs_create_fs);
1827 EXPORT_SYMBOL(zfs_obj_to_path);
1828 #endif