]> git.proxmox.com Git - mirror_zfs.git/blame - module/os/linux/zfs/zfs_znode.c
Linux 6.6 compat: use inode_get/set_ctime*(...)
[mirror_zfs.git] / module / os / linux / zfs / zfs_znode.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
1d3ba0bf 9 * or https://opensource.org/licenses/CDDL-1.0.
34dc7c2f
BB
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.
5d43cc9a 23 * Copyright (c) 2012, 2018 by Delphix. All rights reserved.
34dc7c2f
BB
24 */
25
26/* Portions Copyright 2007 Jeremy Teo */
27
34dc7c2f
BB
28#ifdef _KERNEL
29#include <sys/types.h>
30#include <sys/param.h>
31#include <sys/time.h>
34dc7c2f 32#include <sys/sysmacros.h>
34dc7c2f 33#include <sys/mntent.h>
34dc7c2f
BB
34#include <sys/u8_textprep.h>
35#include <sys/dsl_dataset.h>
36#include <sys/vfs.h>
34dc7c2f
BB
37#include <sys/vnode.h>
38#include <sys/file.h>
39#include <sys/kmem.h>
40#include <sys/errno.h>
34dc7c2f 41#include <sys/atomic.h>
34dc7c2f
BB
42#include <sys/zfs_dir.h>
43#include <sys/zfs_acl.h>
44#include <sys/zfs_ioctl.h>
45#include <sys/zfs_rlock.h>
46#include <sys/zfs_fuid.h>
3558fd73 47#include <sys/zfs_vnops.h>
ebe7e575 48#include <sys/zfs_ctldir.h>
428870ff 49#include <sys/dnode.h>
34dc7c2f 50#include <sys/fs/zfs.h>
3558fd73 51#include <sys/zpl.h>
34dc7c2f
BB
52#endif /* _KERNEL */
53
54#include <sys/dmu.h>
f1512ee6 55#include <sys/dmu_objset.h>
50c957f7 56#include <sys/dmu_tx.h>
27d96d22 57#include <sys/zfs_refcount.h>
34dc7c2f
BB
58#include <sys/stat.h>
59#include <sys/zap.h>
60#include <sys/zfs_znode.h>
428870ff
BB
61#include <sys/sa.h>
62#include <sys/zfs_sa.h>
572e2857 63#include <sys/zfs_stat.h>
34dc7c2f
BB
64
65#include "zfs_prop.h"
428870ff 66#include "zfs_comutil.h"
34dc7c2f
BB
67
68/*
69 * Functions needed for userland (ie: libzpool) are not put under
70 * #ifdef_KERNEL; the rest of the functions have dependencies
71 * (such as VFS logic) that will not compile easily in userland.
72 */
73#ifdef _KERNEL
9babb374 74
b128c09f 75static kmem_cache_t *znode_cache = NULL;
c96c36fa 76static kmem_cache_t *znode_hold_cache = NULL;
0720116d 77unsigned int zfs_object_mutex_size = ZFS_OBJ_MTX_SZ;
34dc7c2f 78
dcec0a12
AP
79/*
80 * This is used by the test suite so that it can delay znodes from being
81 * freed in order to inspect the unlinked set.
82 */
18168da7 83static int zfs_unlink_suspend_progress = 0;
dcec0a12 84
5d43cc9a
MA
85/*
86 * This callback is invoked when acquiring a RL_WRITER or RL_APPEND lock on
87 * z_rangelock. It will modify the offset and length of the lock to reflect
88 * znode-specific information, and convert RL_APPEND to RL_WRITER. This is
89 * called with the rangelock_t's rl_lock held, which avoids races.
90 */
91static void
bd4dde8e 92zfs_rangelock_cb(zfs_locked_range_t *new, void *arg)
5d43cc9a
MA
93{
94 znode_t *zp = arg;
95
96 /*
97 * If in append mode, convert to writer and lock starting at the
98 * current end of file.
99 */
100 if (new->lr_type == RL_APPEND) {
101 new->lr_offset = zp->z_size;
102 new->lr_type = RL_WRITER;
103 }
104
105 /*
106 * If we need to grow the block size then lock the whole file range.
107 */
108 uint64_t end_size = MAX(zp->z_size, new->lr_offset + new->lr_length);
109 if (end_size > zp->z_blksz && (!ISP2(zp->z_blksz) ||
110 zp->z_blksz < ZTOZSB(zp)->z_max_blksz)) {
111 new->lr_offset = 0;
112 new->lr_length = UINT64_MAX;
113 }
114}
115
34dc7c2f 116static int
b128c09f 117zfs_znode_cache_constructor(void *buf, void *arg, int kmflags)
34dc7c2f 118{
ef70eff1 119 (void) arg, (void) kmflags;
34dc7c2f
BB
120 znode_t *zp = buf;
121
3558fd73 122 inode_init_once(ZTOI(zp));
b128c09f
BB
123 list_link_init(&zp->z_link_node);
124
34dc7c2f 125 mutex_init(&zp->z_lock, NULL, MUTEX_DEFAULT, NULL);
34dc7c2f 126 rw_init(&zp->z_parent_lock, NULL, RW_DEFAULT, NULL);
448d7aaa 127 rw_init(&zp->z_name_lock, NULL, RW_NOLOCKDEP, NULL);
34dc7c2f 128 mutex_init(&zp->z_acl_lock, NULL, MUTEX_DEFAULT, NULL);
82a37189 129 rw_init(&zp->z_xattr_lock, NULL, RW_DEFAULT, NULL);
34dc7c2f 130
2cc479d0 131 zfs_rangelock_init(&zp->z_rangelock, zfs_rangelock_cb, zp);
34dc7c2f 132
b128c09f 133 zp->z_dirlocks = NULL;
45d1cae3 134 zp->z_acl_cached = NULL;
82a37189 135 zp->z_xattr_cached = NULL;
98701490 136 zp->z_xattr_parent = 0;
411f4a01
SN
137 zp->z_sync_writes_cnt = 0;
138 zp->z_async_writes_cnt = 0;
139
34dc7c2f
BB
140 return (0);
141}
142
34dc7c2f 143static void
b128c09f 144zfs_znode_cache_destructor(void *buf, void *arg)
34dc7c2f 145{
ef70eff1 146 (void) arg;
34dc7c2f
BB
147 znode_t *zp = buf;
148
b128c09f 149 ASSERT(!list_link_active(&zp->z_link_node));
34dc7c2f 150 mutex_destroy(&zp->z_lock);
34dc7c2f
BB
151 rw_destroy(&zp->z_parent_lock);
152 rw_destroy(&zp->z_name_lock);
153 mutex_destroy(&zp->z_acl_lock);
82a37189 154 rw_destroy(&zp->z_xattr_lock);
2cc479d0 155 zfs_rangelock_fini(&zp->z_rangelock);
34dc7c2f 156
c903a756
RM
157 ASSERT3P(zp->z_dirlocks, ==, NULL);
158 ASSERT3P(zp->z_acl_cached, ==, NULL);
159 ASSERT3P(zp->z_xattr_cached, ==, NULL);
411f4a01
SN
160
161 ASSERT0(atomic_load_32(&zp->z_sync_writes_cnt));
162 ASSERT0(atomic_load_32(&zp->z_async_writes_cnt));
b128c09f
BB
163}
164
c96c36fa
BB
165static int
166zfs_znode_hold_cache_constructor(void *buf, void *arg, int kmflags)
167{
ef70eff1 168 (void) arg, (void) kmflags;
c96c36fa
BB
169 znode_hold_t *zh = buf;
170
171 mutex_init(&zh->zh_lock, NULL, MUTEX_DEFAULT, NULL);
5f45e3f6 172 zh->zh_refcount = 0;
c96c36fa
BB
173
174 return (0);
175}
176
177static void
178zfs_znode_hold_cache_destructor(void *buf, void *arg)
179{
ef70eff1 180 (void) arg;
c96c36fa
BB
181 znode_hold_t *zh = buf;
182
183 mutex_destroy(&zh->zh_lock);
c96c36fa
BB
184}
185
34dc7c2f
BB
186void
187zfs_znode_init(void)
188{
189 /*
5074bfe8
TC
190 * Initialize zcache. The KMC_SLAB hint is used in order that it be
191 * backed by kmalloc() when on the Linux slab in order that any
192 * wait_on_bit() operations on the related inode operate properly.
34dc7c2f
BB
193 */
194 ASSERT(znode_cache == NULL);
195 znode_cache = kmem_cache_create("zfs_znode_cache",
196 sizeof (znode_t), 0, zfs_znode_cache_constructor,
5074bfe8 197 zfs_znode_cache_destructor, NULL, NULL, NULL, KMC_SLAB);
c96c36fa
BB
198
199 ASSERT(znode_hold_cache == NULL);
200 znode_hold_cache = kmem_cache_create("zfs_znode_hold_cache",
201 sizeof (znode_hold_t), 0, zfs_znode_hold_cache_constructor,
202 zfs_znode_hold_cache_destructor, NULL, NULL, NULL, 0);
34dc7c2f
BB
203}
204
205void
206zfs_znode_fini(void)
207{
34dc7c2f
BB
208 /*
209 * Cleanup zcache
210 */
211 if (znode_cache)
212 kmem_cache_destroy(znode_cache);
213 znode_cache = NULL;
c96c36fa
BB
214
215 if (znode_hold_cache)
216 kmem_cache_destroy(znode_hold_cache);
217 znode_hold_cache = NULL;
218}
219
220/*
221 * The zfs_znode_hold_enter() / zfs_znode_hold_exit() functions are used to
222 * serialize access to a znode and its SA buffer while the object is being
223 * created or destroyed. This kind of locking would normally reside in the
224 * znode itself but in this case that's impossible because the znode and SA
225 * buffer may not yet exist. Therefore the locking is handled externally
bf169e9f 226 * with an array of mutexes and AVLs trees which contain per-object locks.
c96c36fa
BB
227 *
228 * In zfs_znode_hold_enter() a per-object lock is created as needed, inserted
229 * in to the correct AVL tree and finally the per-object lock is held. In
230 * zfs_znode_hold_exit() the process is reversed. The per-object lock is
231 * released, removed from the AVL tree and destroyed if there are no waiters.
232 *
233 * This scheme has two important properties:
234 *
235 * 1) No memory allocations are performed while holding one of the z_hold_locks.
236 * This ensures evict(), which can be called from direct memory reclaim, will
237 * never block waiting on a z_hold_locks which just happens to have hashed
238 * to the same index.
239 *
240 * 2) All locks used to serialize access to an object are per-object and never
241 * shared. This minimizes lock contention without creating a large number
242 * of dedicated locks.
243 *
244 * On the downside it does require znode_lock_t structures to be frequently
245 * allocated and freed. However, because these are backed by a kmem cache
246 * and very short lived this cost is minimal.
247 */
248int
249zfs_znode_hold_compare(const void *a, const void *b)
250{
ee36c709
GN
251 const znode_hold_t *zh_a = (const znode_hold_t *)a;
252 const znode_hold_t *zh_b = (const znode_hold_t *)b;
253
ca577779 254 return (TREE_CMP(zh_a->zh_obj, zh_b->zh_obj));
c96c36fa
BB
255}
256
65c7cc49 257static boolean_t __maybe_unused
0037b49e 258zfs_znode_held(zfsvfs_t *zfsvfs, uint64_t obj)
c96c36fa
BB
259{
260 znode_hold_t *zh, search;
0037b49e 261 int i = ZFS_OBJ_HASH(zfsvfs, obj);
37c56346 262 boolean_t held;
c96c36fa
BB
263
264 search.zh_obj = obj;
265
0037b49e
BB
266 mutex_enter(&zfsvfs->z_hold_locks[i]);
267 zh = avl_find(&zfsvfs->z_hold_trees[i], &search, NULL);
37c56346 268 held = (zh && MUTEX_HELD(&zh->zh_lock)) ? B_TRUE : B_FALSE;
0037b49e 269 mutex_exit(&zfsvfs->z_hold_locks[i]);
c96c36fa 270
37c56346 271 return (held);
c96c36fa
BB
272}
273
c6dab6dd 274znode_hold_t *
0037b49e 275zfs_znode_hold_enter(zfsvfs_t *zfsvfs, uint64_t obj)
c96c36fa
BB
276{
277 znode_hold_t *zh, *zh_new, search;
0037b49e 278 int i = ZFS_OBJ_HASH(zfsvfs, obj);
c96c36fa
BB
279 boolean_t found = B_FALSE;
280
281 zh_new = kmem_cache_alloc(znode_hold_cache, KM_SLEEP);
c96c36fa
BB
282 search.zh_obj = obj;
283
0037b49e
BB
284 mutex_enter(&zfsvfs->z_hold_locks[i]);
285 zh = avl_find(&zfsvfs->z_hold_trees[i], &search, NULL);
c96c36fa
BB
286 if (likely(zh == NULL)) {
287 zh = zh_new;
5f45e3f6 288 zh->zh_obj = obj;
0037b49e 289 avl_add(&zfsvfs->z_hold_trees[i], zh);
c96c36fa
BB
290 } else {
291 ASSERT3U(zh->zh_obj, ==, obj);
292 found = B_TRUE;
293 }
5f45e3f6
AM
294 zh->zh_refcount++;
295 ASSERT3S(zh->zh_refcount, >, 0);
0037b49e 296 mutex_exit(&zfsvfs->z_hold_locks[i]);
c96c36fa
BB
297
298 if (found == B_TRUE)
299 kmem_cache_free(znode_hold_cache, zh_new);
300
301 ASSERT(MUTEX_NOT_HELD(&zh->zh_lock));
c96c36fa
BB
302 mutex_enter(&zh->zh_lock);
303
304 return (zh);
305}
306
c6dab6dd 307void
0037b49e 308zfs_znode_hold_exit(zfsvfs_t *zfsvfs, znode_hold_t *zh)
c96c36fa 309{
0037b49e 310 int i = ZFS_OBJ_HASH(zfsvfs, zh->zh_obj);
c96c36fa
BB
311 boolean_t remove = B_FALSE;
312
0037b49e 313 ASSERT(zfs_znode_held(zfsvfs, zh->zh_obj));
c96c36fa
BB
314 mutex_exit(&zh->zh_lock);
315
0037b49e 316 mutex_enter(&zfsvfs->z_hold_locks[i]);
5f45e3f6
AM
317 ASSERT3S(zh->zh_refcount, >, 0);
318 if (--zh->zh_refcount == 0) {
0037b49e 319 avl_remove(&zfsvfs->z_hold_trees[i], zh);
c96c36fa
BB
320 remove = B_TRUE;
321 }
0037b49e 322 mutex_exit(&zfsvfs->z_hold_locks[i]);
c96c36fa
BB
323
324 if (remove == B_TRUE)
325 kmem_cache_free(znode_hold_cache, zh);
34dc7c2f
BB
326}
327
13a9a6f5
MM
328dev_t
329zfs_cmpldev(uint64_t dev)
330{
331 return (dev);
332}
333
34dc7c2f 334static void
0037b49e 335zfs_znode_sa_init(zfsvfs_t *zfsvfs, znode_t *zp,
428870ff 336 dmu_buf_t *db, dmu_object_type_t obj_type, sa_handle_t *sa_hdl)
34dc7c2f 337{
0037b49e 338 ASSERT(zfs_znode_held(zfsvfs, zp->z_id));
34dc7c2f
BB
339
340 mutex_enter(&zp->z_lock);
341
428870ff
BB
342 ASSERT(zp->z_sa_hdl == NULL);
343 ASSERT(zp->z_acl_cached == NULL);
344 if (sa_hdl == NULL) {
0037b49e 345 VERIFY(0 == sa_handle_get_from_db(zfsvfs->z_os, db, zp,
428870ff
BB
346 SA_HDL_SHARED, &zp->z_sa_hdl));
347 } else {
348 zp->z_sa_hdl = sa_hdl;
349 sa_set_userp(sa_hdl, zp);
350 }
34dc7c2f 351
428870ff 352 zp->z_is_sa = (obj_type == DMU_OT_SA) ? B_TRUE : B_FALSE;
34dc7c2f 353
34dc7c2f 354 mutex_exit(&zp->z_lock);
34dc7c2f
BB
355}
356
357void
358zfs_znode_dmu_fini(znode_t *zp)
359{
c6dab6dd 360 ASSERT(zfs_znode_held(ZTOZSB(zp), zp->z_id) ||
3558fd73 361 RW_WRITE_HELD(&ZTOZSB(zp)->z_teardown_inactive_lock));
428870ff
BB
362
363 sa_handle_destroy(zp->z_sa_hdl);
364 zp->z_sa_hdl = NULL;
34dc7c2f
BB
365}
366
367/*
3558fd73
BB
368 * Called by new_inode() to allocate a new inode.
369 */
370int
371zfs_inode_alloc(struct super_block *sb, struct inode **ip)
372{
373 znode_t *zp;
374
79c76d5b 375 zp = kmem_cache_alloc(znode_cache, KM_SLEEP);
3558fd73
BB
376 *ip = ZTOI(zp);
377
378 return (0);
379}
380
381/*
382 * Called in multiple places when an inode should be destroyed.
383 */
384void
385zfs_inode_destroy(struct inode *ip)
386{
387 znode_t *zp = ITOZ(ip);
0037b49e 388 zfsvfs_t *zfsvfs = ZTOZSB(zp);
3558fd73 389
0037b49e 390 mutex_enter(&zfsvfs->z_znodes_lock);
7b3e34ba 391 if (list_link_active(&zp->z_link_node)) {
0037b49e 392 list_remove(&zfsvfs->z_all_znodes, zp);
7b3e34ba 393 }
0037b49e 394 mutex_exit(&zfsvfs->z_znodes_lock);
3558fd73
BB
395
396 if (zp->z_acl_cached) {
397 zfs_acl_free(zp->z_acl_cached);
398 zp->z_acl_cached = NULL;
399 }
400
82a37189
BB
401 if (zp->z_xattr_cached) {
402 nvlist_free(zp->z_xattr_cached);
403 zp->z_xattr_cached = NULL;
404 }
405
3558fd73
BB
406 kmem_cache_free(znode_cache, zp);
407}
408
409static void
0037b49e 410zfs_inode_set_ops(zfsvfs_t *zfsvfs, struct inode *ip)
3558fd73 411{
aa6d8c10 412 uint64_t rdev = 0;
3558fd73
BB
413
414 switch (ip->i_mode & S_IFMT) {
415 case S_IFREG:
416 ip->i_op = &zpl_inode_operations;
6b0a4be5
RN
417#ifdef HAVE_VFS_FILE_OPERATIONS_EXTEND
418 ip->i_fop = &zpl_file_operations.kabi_fops;
419#else
3558fd73 420 ip->i_fop = &zpl_file_operations;
6b0a4be5 421#endif
3558fd73
BB
422 ip->i_mapping->a_ops = &zpl_address_space_operations;
423 break;
424
425 case S_IFDIR:
dbf6108b
AS
426#ifdef HAVE_RENAME2_OPERATIONS_WRAPPER
427 ip->i_flags |= S_IOPS_WRAPPER;
428 ip->i_op = &zpl_dir_inode_operations.ops;
429#else
3558fd73 430 ip->i_op = &zpl_dir_inode_operations;
dbf6108b 431#endif
3558fd73
BB
432 ip->i_fop = &zpl_dir_file_operations;
433 ITOZ(ip)->z_zn_prefetch = B_TRUE;
434 break;
435
436 case S_IFLNK:
437 ip->i_op = &zpl_symlink_inode_operations;
438 break;
439
aa6d8c10
NB
440 /*
441 * rdev is only stored in a SA only for device files.
442 */
3558fd73
BB
443 case S_IFCHR:
444 case S_IFBLK:
0037b49e 445 (void) sa_lookup(ITOZ(ip)->z_sa_hdl, SA_ZPL_RDEV(zfsvfs), &rdev,
53b1d979 446 sizeof (rdev));
9a70e97f 447 zfs_fallthrough;
aa6d8c10
NB
448 case S_IFIFO:
449 case S_IFSOCK:
3558fd73
BB
450 init_special_inode(ip, ip->i_mode, rdev);
451 ip->i_op = &zpl_special_inode_operations;
452 break;
453
454 default:
53b1d979
BB
455 zfs_panic_recover("inode %llu has invalid mode: 0x%x\n",
456 (u_longlong_t)ip->i_ino, ip->i_mode);
457
458 /* Assume the inode is a file and attempt to continue */
459 ip->i_mode = S_IFREG | 0644;
460 ip->i_op = &zpl_inode_operations;
6b0a4be5
RN
461#ifdef HAVE_VFS_FILE_OPERATIONS_EXTEND
462 ip->i_fop = &zpl_file_operations.kabi_fops;
463#else
53b1d979 464 ip->i_fop = &zpl_file_operations;
6b0a4be5 465#endif
53b1d979
BB
466 ip->i_mapping->a_ops = &zpl_address_space_operations;
467 break;
3558fd73
BB
468 }
469}
470
65c7cc49 471static void
7bb1325f
CC
472zfs_set_inode_flags(znode_t *zp, struct inode *ip)
473{
474 /*
475 * Linux and Solaris have different sets of file attributes, so we
476 * restrict this conversion to the intersection of the two.
477 */
a5248129
CC
478#ifdef HAVE_INODE_SET_FLAGS
479 unsigned int flags = 0;
480 if (zp->z_pflags & ZFS_IMMUTABLE)
481 flags |= S_IMMUTABLE;
482 if (zp->z_pflags & ZFS_APPENDONLY)
483 flags |= S_APPEND;
7bb1325f 484
a5248129
CC
485 inode_set_flags(ip, flags, S_IMMUTABLE|S_APPEND);
486#else
7bb1325f
CC
487 if (zp->z_pflags & ZFS_IMMUTABLE)
488 ip->i_flags |= S_IMMUTABLE;
489 else
490 ip->i_flags &= ~S_IMMUTABLE;
491
492 if (zp->z_pflags & ZFS_APPENDONLY)
493 ip->i_flags |= S_APPEND;
494 else
495 ip->i_flags &= ~S_APPEND;
a5248129 496#endif
7bb1325f
CC
497}
498
704cd075 499/*
fc273894 500 * Update the embedded inode given the znode.
704cd075 501 */
9f5f0019 502void
fc273894 503zfs_znode_update_vfs(znode_t *zp)
704cd075 504{
704cd075
CC
505 struct inode *ip;
506 uint32_t blksize;
507 u_longlong_t i_blocks;
704cd075
CC
508
509 ASSERT(zp != NULL);
704cd075
CC
510 ip = ZTOI(zp);
511
512 /* Skip .zfs control nodes which do not exist on disk. */
513 if (zfsctl_is_node(ip))
514 return;
515
704cd075
CC
516 dmu_object_size_from_db(sa_get_db(zp->z_sa_hdl), &blksize, &i_blocks);
517
518 spin_lock(&ip->i_lock);
e53d678d 519 ip->i_mode = zp->z_mode;
704cd075 520 ip->i_blocks = i_blocks;
704cd075
CC
521 i_size_write(ip, zp->z_size);
522 spin_unlock(&ip->i_lock);
523}
524
704cd075 525
3558fd73
BB
526/*
527 * Construct a znode+inode and initialize.
34dc7c2f
BB
528 *
529 * This does not do a call to dmu_set_user() that is
530 * up to the caller to do, in case you don't want to
531 * return the znode
532 */
533static znode_t *
0037b49e 534zfs_znode_alloc(zfsvfs_t *zfsvfs, dmu_buf_t *db, int blksz,
1a688994 535 dmu_object_type_t obj_type, sa_handle_t *hdl)
34dc7c2f
BB
536{
537 znode_t *zp;
3558fd73 538 struct inode *ip;
7f89ae6b 539 uint64_t mode;
428870ff 540 uint64_t parent;
278f2236 541 uint64_t tmp_gen;
dfbc8630 542 uint64_t links;
2c6abf15 543 uint64_t z_uid, z_gid;
abbf0bd4 544 uint64_t atime[2], mtime[2], ctime[2], btime[2];
b37f2934 545 inode_timespec_t tmp_ctime;
9c5167d1 546 uint64_t projid = ZFS_DEFAULT_PROJID;
abbf0bd4 547 sa_bulk_attr_t bulk[12];
428870ff 548 int count = 0;
34dc7c2f 549
0037b49e 550 ASSERT(zfsvfs != NULL);
34dc7c2f 551
0037b49e 552 ip = new_inode(zfsvfs->z_sb);
3558fd73
BB
553 if (ip == NULL)
554 return (NULL);
7304b6e5 555
3558fd73 556 zp = ITOZ(ip);
34dc7c2f 557 ASSERT(zp->z_dirlocks == NULL);
ebe7e575
BB
558 ASSERT3P(zp->z_acl_cached, ==, NULL);
559 ASSERT3P(zp->z_xattr_cached, ==, NULL);
a43570c5
TK
560 zp->z_unlinked = B_FALSE;
561 zp->z_atime_dirty = B_FALSE;
3fc92adc 562#if !defined(HAVE_FILEMAP_RANGE_HAS_PAGE)
a43570c5 563 zp->z_is_mapped = B_FALSE;
3fc92adc 564#endif
a43570c5 565 zp->z_is_ctldir = B_FALSE;
e7a2fa70 566 zp->z_suspended = B_FALSE;
428870ff 567 zp->z_sa_hdl = NULL;
34dc7c2f 568 zp->z_mapcnt = 0;
34dc7c2f
BB
569 zp->z_id = db->db_object;
570 zp->z_blksz = blksz;
571 zp->z_seq = 0x7A4653;
572 zp->z_sync_cnt = 0;
411f4a01
SN
573 zp->z_sync_writes_cnt = 0;
574 zp->z_async_writes_cnt = 0;
34dc7c2f 575
0037b49e 576 zfs_znode_sa_init(zfsvfs, zp, db, obj_type, hdl);
3558fd73 577
0037b49e
BB
578 SA_ADD_BULK_ATTR(bulk, count, SA_ZPL_MODE(zfsvfs), NULL, &mode, 8);
579 SA_ADD_BULK_ATTR(bulk, count, SA_ZPL_GEN(zfsvfs), NULL, &tmp_gen, 8);
580 SA_ADD_BULK_ATTR(bulk, count, SA_ZPL_SIZE(zfsvfs), NULL,
581 &zp->z_size, 8);
582 SA_ADD_BULK_ATTR(bulk, count, SA_ZPL_LINKS(zfsvfs), NULL, &links, 8);
583 SA_ADD_BULK_ATTR(bulk, count, SA_ZPL_FLAGS(zfsvfs), NULL,
428870ff 584 &zp->z_pflags, 8);
0037b49e 585 SA_ADD_BULK_ATTR(bulk, count, SA_ZPL_PARENT(zfsvfs), NULL,
7304b6e5 586 &parent, 8);
0037b49e
BB
587 SA_ADD_BULK_ATTR(bulk, count, SA_ZPL_UID(zfsvfs), NULL, &z_uid, 8);
588 SA_ADD_BULK_ATTR(bulk, count, SA_ZPL_GID(zfsvfs), NULL, &z_gid, 8);
589 SA_ADD_BULK_ATTR(bulk, count, SA_ZPL_ATIME(zfsvfs), NULL, &atime, 16);
590 SA_ADD_BULK_ATTR(bulk, count, SA_ZPL_MTIME(zfsvfs), NULL, &mtime, 16);
591 SA_ADD_BULK_ATTR(bulk, count, SA_ZPL_CTIME(zfsvfs), NULL, &ctime, 16);
abbf0bd4 592 SA_ADD_BULK_ATTR(bulk, count, SA_ZPL_CRTIME(zfsvfs), NULL, &btime, 16);
428870ff 593
9c5167d1
NF
594 if (sa_bulk_lookup(zp->z_sa_hdl, bulk, count) != 0 || tmp_gen == 0 ||
595 (dmu_objset_projectquota_enabled(zfsvfs->z_os) &&
596 (zp->z_pflags & ZFS_PROJID) &&
597 sa_lookup(zp->z_sa_hdl, SA_ZPL_PROJID(zfsvfs), &projid, 8) != 0)) {
428870ff
BB
598 if (hdl == NULL)
599 sa_handle_destroy(zp->z_sa_hdl);
07d63f0c 600 zp->z_sa_hdl = NULL;
3558fd73 601 goto error;
34dc7c2f 602 }
7304b6e5 603
9c5167d1 604 zp->z_projid = projid;
12fa7f34 605 zp->z_mode = ip->i_mode = mode;
278f2236 606 ip->i_generation = (uint32_t)tmp_gen;
ba2fe6af 607 ip->i_blkbits = SPA_MINBLOCKSHIFT;
dfbc8630 608 set_nlink(ip, (uint32_t)links);
2c6abf15
NB
609 zfs_uid_write(ip, z_uid);
610 zfs_gid_write(ip, z_gid);
7bb1325f 611 zfs_set_inode_flags(zp, ip);
7f89ae6b 612
98701490
CC
613 /* Cache the xattr parent id */
614 if (zp->z_pflags & ZFS_XATTR)
615 zp->z_xattr_parent = parent;
616
9f5f0019
NB
617 ZFS_TIME_DECODE(&ip->i_atime, atime);
618 ZFS_TIME_DECODE(&ip->i_mtime, mtime);
b37f2934
CK
619 ZFS_TIME_DECODE(&tmp_ctime, ctime);
620 zpl_inode_set_ctime_to_ts(ip, tmp_ctime);
abbf0bd4 621 ZFS_TIME_DECODE(&zp->z_btime, btime);
9f5f0019 622
1a688994 623 ip->i_ino = zp->z_id;
fc273894 624 zfs_znode_update_vfs(zp);
0037b49e 625 zfs_inode_set_ops(zfsvfs, ip);
3558fd73 626
7b3e34ba
BB
627 /*
628 * The only way insert_inode_locked() can fail is if the ip->i_ino
629 * number is already hashed for this super block. This can never
630 * happen because the inode numbers map 1:1 with the object numbers.
631 *
afa7b348
PZ
632 * Exceptions include rolling back a mounted file system, either
633 * from the zfs rollback or zfs recv command.
634 *
635 * Active inodes are unhashed during the rollback, but since zrele
636 * can happen asynchronously, we can't guarantee they've been
637 * unhashed. This can cause hash collisions in unlinked drain
638 * processing so do not hash unlinked znodes.
7b3e34ba 639 */
afa7b348
PZ
640 if (links > 0)
641 VERIFY3S(insert_inode_locked(ip), ==, 0);
c85b224f 642
0037b49e
BB
643 mutex_enter(&zfsvfs->z_znodes_lock);
644 list_insert_tail(&zfsvfs->z_all_znodes, zp);
0037b49e 645 mutex_exit(&zfsvfs->z_znodes_lock);
b128c09f 646
afa7b348
PZ
647 if (links > 0)
648 unlock_new_inode(ip);
34dc7c2f 649 return (zp);
3558fd73
BB
650
651error:
3558fd73 652 iput(ip);
d1d7e268 653 return (NULL);
34dc7c2f
BB
654}
655
1e8db771
BB
656/*
657 * Safely mark an inode dirty. Inodes which are part of a read-only
658 * file system or snapshot may not be dirtied.
659 */
660void
661zfs_mark_inode_dirty(struct inode *ip)
662{
0037b49e 663 zfsvfs_t *zfsvfs = ITOZSB(ip);
1e8db771 664
0037b49e 665 if (zfs_is_readonly(zfsvfs) || dmu_objset_is_snapshot(zfsvfs->z_os))
1e8db771
BB
666 return;
667
668 mark_inode_dirty(ip);
669}
670
428870ff
BB
671static uint64_t empty_xattr;
672static uint64_t pad[4];
673static zfs_acl_phys_t acl_phys;
34dc7c2f
BB
674/*
675 * Create a new DMU object to hold a zfs znode.
676 *
677 * IN: dzp - parent directory for new znode
678 * vap - file attributes for new znode
679 * tx - dmu transaction id for zap operations
680 * cr - credentials of caller
681 * flag - flags:
682 * IS_ROOT_NODE - new object will be root
841a7a98 683 * IS_TMPFILE - new object is of O_TMPFILE
34dc7c2f 684 * IS_XATTR - new object is an attribute
841a7a98 685 * acl_ids - ACL related attributes
34dc7c2f 686 *
841a7a98 687 * OUT: zpp - allocated znode (set to dzp if IS_ROOT_NODE)
34dc7c2f
BB
688 *
689 */
690void
691zfs_mknode(znode_t *dzp, vattr_t *vap, dmu_tx_t *tx, cred_t *cr,
428870ff 692 uint_t flag, znode_t **zpp, zfs_acl_ids_t *acl_ids)
34dc7c2f 693{
428870ff
BB
694 uint64_t crtime[2], atime[2], mtime[2], ctime[2];
695 uint64_t mode, size, links, parent, pflags;
9c5167d1 696 uint64_t projid = ZFS_DEFAULT_PROJID;
428870ff 697 uint64_t rdev = 0;
0037b49e 698 zfsvfs_t *zfsvfs = ZTOZSB(dzp);
428870ff 699 dmu_buf_t *db;
6413c95f 700 inode_timespec_t now;
34dc7c2f 701 uint64_t gen, obj;
428870ff 702 int bonuslen;
50c957f7 703 int dnodesize;
428870ff
BB
704 sa_handle_t *sa_hdl;
705 dmu_object_type_t obj_type;
f30484af 706 sa_bulk_attr_t *sa_attrs;
428870ff
BB
707 int cnt = 0;
708 zfs_acl_locator_cb_t locate = { 0 };
c96c36fa 709 znode_hold_t *zh;
34dc7c2f 710
0037b49e 711 if (zfsvfs->z_replay) {
34dc7c2f 712 obj = vap->va_nodeid;
34dc7c2f
BB
713 now = vap->va_ctime; /* see zfs_replay_create() */
714 gen = vap->va_nblocks; /* ditto */
50c957f7 715 dnodesize = vap->va_fsid; /* ditto */
34dc7c2f
BB
716 } else {
717 obj = 0;
718 gethrestime(&now);
719 gen = dmu_tx_get_txg(tx);
0037b49e 720 dnodesize = dmu_objset_dnodesize(zfsvfs->z_os);
34dc7c2f
BB
721 }
722
50c957f7
NB
723 if (dnodesize == 0)
724 dnodesize = DNODE_MIN_SIZE;
725
0037b49e 726 obj_type = zfsvfs->z_use_sa ? DMU_OT_SA : DMU_OT_ZNODE;
50c957f7 727
428870ff 728 bonuslen = (obj_type == DMU_OT_SA) ?
50c957f7 729 DN_BONUS_SIZE(dnodesize) : ZFS_OLD_ZNODE_PHYS_SIZE;
428870ff 730
34dc7c2f
BB
731 /*
732 * Create a new DMU object.
733 */
734 /*
735 * There's currently no mechanism for pre-reading the blocks that will
572e2857 736 * be needed to allocate a new object, so we accept the small chance
34dc7c2f
BB
737 * that there will be an i/o error and we will fail one of the
738 * assertions below.
739 */
3558fd73 740 if (S_ISDIR(vap->va_mode)) {
0037b49e
BB
741 if (zfsvfs->z_replay) {
742 VERIFY0(zap_create_claim_norm_dnsize(zfsvfs->z_os, obj,
743 zfsvfs->z_norm, DMU_OT_DIRECTORY_CONTENTS,
50c957f7 744 obj_type, bonuslen, dnodesize, tx));
34dc7c2f 745 } else {
0037b49e
BB
746 obj = zap_create_norm_dnsize(zfsvfs->z_os,
747 zfsvfs->z_norm, DMU_OT_DIRECTORY_CONTENTS,
50c957f7 748 obj_type, bonuslen, dnodesize, tx);
34dc7c2f
BB
749 }
750 } else {
0037b49e
BB
751 if (zfsvfs->z_replay) {
752 VERIFY0(dmu_object_claim_dnsize(zfsvfs->z_os, obj,
34dc7c2f 753 DMU_OT_PLAIN_FILE_CONTENTS, 0,
50c957f7 754 obj_type, bonuslen, dnodesize, tx));
34dc7c2f 755 } else {
0037b49e 756 obj = dmu_object_alloc_dnsize(zfsvfs->z_os,
34dc7c2f 757 DMU_OT_PLAIN_FILE_CONTENTS, 0,
50c957f7 758 obj_type, bonuslen, dnodesize, tx);
34dc7c2f
BB
759 }
760 }
34dc7c2f 761
0037b49e 762 zh = zfs_znode_hold_enter(zfsvfs, obj);
9631681b 763 VERIFY0(sa_buf_hold(zfsvfs->z_os, obj, NULL, &db));
34dc7c2f
BB
764
765 /*
766 * If this is the root, fix up the half-initialized parent pointer
767 * to reference the just-allocated physical data area.
768 */
769 if (flag & IS_ROOT_NODE) {
34dc7c2f
BB
770 dzp->z_id = obj;
771 }
772
773 /*
774 * If parent is an xattr, so am I.
775 */
9c5167d1 776 if (dzp->z_pflags & ZFS_XATTR) {
34dc7c2f 777 flag |= IS_XATTR;
34dc7c2f
BB
778 }
779
0037b49e 780 if (zfsvfs->z_use_fuids)
428870ff
BB
781 pflags = ZFS_ARCHIVE | ZFS_AV_MODIFIED;
782 else
783 pflags = 0;
34dc7c2f 784
3558fd73 785 if (S_ISDIR(vap->va_mode)) {
428870ff 786 size = 2; /* contents ("." and "..") */
dfbc8630 787 links = 2;
428870ff 788 } else {
dfbc8630 789 size = 0;
ace1eae8 790 links = (flag & IS_TMPFILE) ? 0 : 1;
34dc7c2f
BB
791 }
792
aa6d8c10 793 if (S_ISBLK(vap->va_mode) || S_ISCHR(vap->va_mode))
dc1d7665 794 rdev = vap->va_rdev;
428870ff
BB
795
796 parent = dzp->z_id;
797 mode = acl_ids->z_mode;
34dc7c2f 798 if (flag & IS_XATTR)
428870ff 799 pflags |= ZFS_XATTR;
34dc7c2f 800
9c5167d1
NF
801 if (S_ISREG(vap->va_mode) || S_ISDIR(vap->va_mode)) {
802 /*
803 * With ZFS_PROJID flag, we can easily know whether there is
804 * project ID stored on disk or not. See zfs_space_delta_cb().
805 */
806 if (obj_type != DMU_OT_ZNODE &&
807 dmu_objset_projectquota_enabled(zfsvfs->z_os))
808 pflags |= ZFS_PROJID;
809
810 /*
811 * Inherit project ID from parent if required.
812 */
813 projid = zfs_inherit_projid(dzp);
814 if (dzp->z_pflags & ZFS_PROJINHERIT)
815 pflags |= ZFS_PROJINHERIT;
816 }
817
428870ff 818 /*
e1cfd73f 819 * No execs denied will be determined when zfs_mode_compute() is called.
428870ff
BB
820 */
821 pflags |= acl_ids->z_aclp->z_hints &
822 (ZFS_ACL_TRIVIAL|ZFS_INHERIT_ACE|ZFS_ACL_AUTO_INHERIT|
823 ZFS_ACL_DEFAULTED|ZFS_ACL_PROTECTED);
34dc7c2f 824
428870ff
BB
825 ZFS_TIME_ENCODE(&now, crtime);
826 ZFS_TIME_ENCODE(&now, ctime);
34dc7c2f 827
3558fd73 828 if (vap->va_mask & ATTR_ATIME) {
428870ff 829 ZFS_TIME_ENCODE(&vap->va_atime, atime);
34dc7c2f 830 } else {
428870ff 831 ZFS_TIME_ENCODE(&now, atime);
34dc7c2f
BB
832 }
833
3558fd73 834 if (vap->va_mask & ATTR_MTIME) {
428870ff
BB
835 ZFS_TIME_ENCODE(&vap->va_mtime, mtime);
836 } else {
837 ZFS_TIME_ENCODE(&now, mtime);
838 }
839
840 /* Now add in all of the "SA" attributes */
0037b49e 841 VERIFY(0 == sa_handle_get_from_db(zfsvfs->z_os, db, NULL, SA_HDL_SHARED,
428870ff
BB
842 &sa_hdl));
843
844 /*
845 * Setup the array of attributes to be replaced/set on the new file
846 *
847 * order for DMU_OT_ZNODE is critical since it needs to be constructed
848 * in the old znode_phys_t format. Don't change this ordering
849 */
79c76d5b 850 sa_attrs = kmem_alloc(sizeof (sa_bulk_attr_t) * ZPL_END, KM_SLEEP);
428870ff
BB
851
852 if (obj_type == DMU_OT_ZNODE) {
0037b49e 853 SA_ADD_BULK_ATTR(sa_attrs, cnt, SA_ZPL_ATIME(zfsvfs),
428870ff 854 NULL, &atime, 16);
0037b49e 855 SA_ADD_BULK_ATTR(sa_attrs, cnt, SA_ZPL_MTIME(zfsvfs),
428870ff 856 NULL, &mtime, 16);
0037b49e 857 SA_ADD_BULK_ATTR(sa_attrs, cnt, SA_ZPL_CTIME(zfsvfs),
428870ff 858 NULL, &ctime, 16);
0037b49e 859 SA_ADD_BULK_ATTR(sa_attrs, cnt, SA_ZPL_CRTIME(zfsvfs),
428870ff 860 NULL, &crtime, 16);
0037b49e 861 SA_ADD_BULK_ATTR(sa_attrs, cnt, SA_ZPL_GEN(zfsvfs),
428870ff 862 NULL, &gen, 8);
0037b49e 863 SA_ADD_BULK_ATTR(sa_attrs, cnt, SA_ZPL_MODE(zfsvfs),
428870ff 864 NULL, &mode, 8);
0037b49e 865 SA_ADD_BULK_ATTR(sa_attrs, cnt, SA_ZPL_SIZE(zfsvfs),
428870ff 866 NULL, &size, 8);
0037b49e 867 SA_ADD_BULK_ATTR(sa_attrs, cnt, SA_ZPL_PARENT(zfsvfs),
428870ff 868 NULL, &parent, 8);
34dc7c2f 869 } else {
0037b49e 870 SA_ADD_BULK_ATTR(sa_attrs, cnt, SA_ZPL_MODE(zfsvfs),
428870ff 871 NULL, &mode, 8);
0037b49e 872 SA_ADD_BULK_ATTR(sa_attrs, cnt, SA_ZPL_SIZE(zfsvfs),
428870ff 873 NULL, &size, 8);
0037b49e 874 SA_ADD_BULK_ATTR(sa_attrs, cnt, SA_ZPL_GEN(zfsvfs),
428870ff 875 NULL, &gen, 8);
0037b49e 876 SA_ADD_BULK_ATTR(sa_attrs, cnt, SA_ZPL_UID(zfsvfs),
3558fd73 877 NULL, &acl_ids->z_fuid, 8);
0037b49e 878 SA_ADD_BULK_ATTR(sa_attrs, cnt, SA_ZPL_GID(zfsvfs),
3558fd73 879 NULL, &acl_ids->z_fgid, 8);
0037b49e 880 SA_ADD_BULK_ATTR(sa_attrs, cnt, SA_ZPL_PARENT(zfsvfs),
428870ff 881 NULL, &parent, 8);
0037b49e 882 SA_ADD_BULK_ATTR(sa_attrs, cnt, SA_ZPL_FLAGS(zfsvfs),
428870ff 883 NULL, &pflags, 8);
0037b49e 884 SA_ADD_BULK_ATTR(sa_attrs, cnt, SA_ZPL_ATIME(zfsvfs),
428870ff 885 NULL, &atime, 16);
0037b49e 886 SA_ADD_BULK_ATTR(sa_attrs, cnt, SA_ZPL_MTIME(zfsvfs),
428870ff 887 NULL, &mtime, 16);
0037b49e 888 SA_ADD_BULK_ATTR(sa_attrs, cnt, SA_ZPL_CTIME(zfsvfs),
428870ff 889 NULL, &ctime, 16);
0037b49e 890 SA_ADD_BULK_ATTR(sa_attrs, cnt, SA_ZPL_CRTIME(zfsvfs),
428870ff
BB
891 NULL, &crtime, 16);
892 }
893
0037b49e 894 SA_ADD_BULK_ATTR(sa_attrs, cnt, SA_ZPL_LINKS(zfsvfs), NULL, &links, 8);
428870ff
BB
895
896 if (obj_type == DMU_OT_ZNODE) {
0037b49e 897 SA_ADD_BULK_ATTR(sa_attrs, cnt, SA_ZPL_XATTR(zfsvfs), NULL,
428870ff 898 &empty_xattr, 8);
9c5167d1
NF
899 } else if (dmu_objset_projectquota_enabled(zfsvfs->z_os) &&
900 pflags & ZFS_PROJID) {
901 SA_ADD_BULK_ATTR(sa_attrs, cnt, SA_ZPL_PROJID(zfsvfs),
902 NULL, &projid, 8);
34dc7c2f 903 }
428870ff 904 if (obj_type == DMU_OT_ZNODE ||
aa6d8c10 905 (S_ISBLK(vap->va_mode) || S_ISCHR(vap->va_mode))) {
0037b49e 906 SA_ADD_BULK_ATTR(sa_attrs, cnt, SA_ZPL_RDEV(zfsvfs),
428870ff 907 NULL, &rdev, 8);
428870ff
BB
908 }
909 if (obj_type == DMU_OT_ZNODE) {
0037b49e 910 SA_ADD_BULK_ATTR(sa_attrs, cnt, SA_ZPL_FLAGS(zfsvfs),
428870ff 911 NULL, &pflags, 8);
0037b49e 912 SA_ADD_BULK_ATTR(sa_attrs, cnt, SA_ZPL_UID(zfsvfs), NULL,
428870ff 913 &acl_ids->z_fuid, 8);
0037b49e 914 SA_ADD_BULK_ATTR(sa_attrs, cnt, SA_ZPL_GID(zfsvfs), NULL,
428870ff 915 &acl_ids->z_fgid, 8);
0037b49e 916 SA_ADD_BULK_ATTR(sa_attrs, cnt, SA_ZPL_PAD(zfsvfs), NULL, pad,
428870ff 917 sizeof (uint64_t) * 4);
0037b49e 918 SA_ADD_BULK_ATTR(sa_attrs, cnt, SA_ZPL_ZNODE_ACL(zfsvfs), NULL,
428870ff
BB
919 &acl_phys, sizeof (zfs_acl_phys_t));
920 } else if (acl_ids->z_aclp->z_version >= ZFS_ACL_VERSION_FUID) {
0037b49e 921 SA_ADD_BULK_ATTR(sa_attrs, cnt, SA_ZPL_DACL_COUNT(zfsvfs), NULL,
428870ff
BB
922 &acl_ids->z_aclp->z_acl_count, 8);
923 locate.cb_aclp = acl_ids->z_aclp;
0037b49e 924 SA_ADD_BULK_ATTR(sa_attrs, cnt, SA_ZPL_DACL_ACES(zfsvfs),
428870ff
BB
925 zfs_acl_data_locator, &locate,
926 acl_ids->z_aclp->z_acl_bytes);
927 mode = zfs_mode_compute(mode, acl_ids->z_aclp, &pflags,
928 acl_ids->z_fuid, acl_ids->z_fgid);
929 }
930
931 VERIFY(sa_replace_all_by_template(sa_hdl, sa_attrs, cnt, tx) == 0);
34dc7c2f 932
34dc7c2f 933 if (!(flag & IS_ROOT_NODE)) {
8d703987
BB
934 /*
935 * The call to zfs_znode_alloc() may fail if memory is low
936 * via the call path: alloc_inode() -> inode_init_always() ->
937 * security_inode_alloc() -> inode_alloc_security(). Since
938 * the existing code is written such that zfs_mknode() can
939 * not fail retry until sufficient memory has been reclaimed.
940 */
941 do {
1a688994 942 *zpp = zfs_znode_alloc(zfsvfs, db, 0, obj_type, sa_hdl);
8d703987
BB
943 } while (*zpp == NULL);
944
7b3e34ba
BB
945 VERIFY(*zpp != NULL);
946 VERIFY(dzp != NULL);
34dc7c2f
BB
947 } else {
948 /*
949 * If we are creating the root node, the "parent" we
950 * passed in is the znode for the root.
951 */
952 *zpp = dzp;
428870ff
BB
953
954 (*zpp)->z_sa_hdl = sa_hdl;
34dc7c2f 955 }
428870ff
BB
956
957 (*zpp)->z_pflags = pflags;
12fa7f34 958 (*zpp)->z_mode = ZTOI(*zpp)->i_mode = mode;
50c957f7 959 (*zpp)->z_dnodesize = dnodesize;
9c5167d1 960 (*zpp)->z_projid = projid;
428870ff 961
428870ff
BB
962 if (obj_type == DMU_OT_ZNODE ||
963 acl_ids->z_aclp->z_version < ZFS_ACL_VERSION_FUID) {
b0bc7a84 964 VERIFY0(zfs_aclset_common(*zpp, acl_ids->z_aclp, cr, tx));
428870ff 965 }
d1d7e268 966 kmem_free(sa_attrs, sizeof (sa_bulk_attr_t) * ZPL_END);
0037b49e 967 zfs_znode_hold_exit(zfsvfs, zh);
34dc7c2f
BB
968}
969
5484965a 970/*
d3cc8b15
WA
971 * Update in-core attributes. It is assumed the caller will be doing an
972 * sa_bulk_update to push the changes out.
5484965a
BB
973 */
974void
975zfs_xvattr_set(znode_t *zp, xvattr_t *xvap, dmu_tx_t *tx)
976{
977 xoptattr_t *xoap;
7bb1325f 978 boolean_t update_inode = B_FALSE;
5484965a
BB
979
980 xoap = xva_getxoptattr(xvap);
981 ASSERT(xoap);
982
983 if (XVA_ISSET_REQ(xvap, XAT_CREATETIME)) {
984 uint64_t times[2];
985 ZFS_TIME_ENCODE(&xoap->xoa_createtime, times);
986 (void) sa_update(zp->z_sa_hdl, SA_ZPL_CRTIME(ZTOZSB(zp)),
987 &times, sizeof (times), tx);
988 XVA_SET_RTN(xvap, XAT_CREATETIME);
989 }
990 if (XVA_ISSET_REQ(xvap, XAT_READONLY)) {
991 ZFS_ATTR_SET(zp, ZFS_READONLY, xoap->xoa_readonly,
992 zp->z_pflags, tx);
993 XVA_SET_RTN(xvap, XAT_READONLY);
994 }
995 if (XVA_ISSET_REQ(xvap, XAT_HIDDEN)) {
996 ZFS_ATTR_SET(zp, ZFS_HIDDEN, xoap->xoa_hidden,
997 zp->z_pflags, tx);
998 XVA_SET_RTN(xvap, XAT_HIDDEN);
999 }
1000 if (XVA_ISSET_REQ(xvap, XAT_SYSTEM)) {
1001 ZFS_ATTR_SET(zp, ZFS_SYSTEM, xoap->xoa_system,
1002 zp->z_pflags, tx);
1003 XVA_SET_RTN(xvap, XAT_SYSTEM);
1004 }
1005 if (XVA_ISSET_REQ(xvap, XAT_ARCHIVE)) {
1006 ZFS_ATTR_SET(zp, ZFS_ARCHIVE, xoap->xoa_archive,
1007 zp->z_pflags, tx);
1008 XVA_SET_RTN(xvap, XAT_ARCHIVE);
1009 }
1010 if (XVA_ISSET_REQ(xvap, XAT_IMMUTABLE)) {
1011 ZFS_ATTR_SET(zp, ZFS_IMMUTABLE, xoap->xoa_immutable,
1012 zp->z_pflags, tx);
1013 XVA_SET_RTN(xvap, XAT_IMMUTABLE);
64c688d7 1014
7bb1325f 1015 update_inode = B_TRUE;
5484965a
BB
1016 }
1017 if (XVA_ISSET_REQ(xvap, XAT_NOUNLINK)) {
1018 ZFS_ATTR_SET(zp, ZFS_NOUNLINK, xoap->xoa_nounlink,
1019 zp->z_pflags, tx);
1020 XVA_SET_RTN(xvap, XAT_NOUNLINK);
1021 }
1022 if (XVA_ISSET_REQ(xvap, XAT_APPENDONLY)) {
1023 ZFS_ATTR_SET(zp, ZFS_APPENDONLY, xoap->xoa_appendonly,
1024 zp->z_pflags, tx);
1025 XVA_SET_RTN(xvap, XAT_APPENDONLY);
64c688d7 1026
7bb1325f 1027 update_inode = B_TRUE;
5484965a
BB
1028 }
1029 if (XVA_ISSET_REQ(xvap, XAT_NODUMP)) {
1030 ZFS_ATTR_SET(zp, ZFS_NODUMP, xoap->xoa_nodump,
1031 zp->z_pflags, tx);
1032 XVA_SET_RTN(xvap, XAT_NODUMP);
1033 }
1034 if (XVA_ISSET_REQ(xvap, XAT_OPAQUE)) {
1035 ZFS_ATTR_SET(zp, ZFS_OPAQUE, xoap->xoa_opaque,
1036 zp->z_pflags, tx);
1037 XVA_SET_RTN(xvap, XAT_OPAQUE);
1038 }
1039 if (XVA_ISSET_REQ(xvap, XAT_AV_QUARANTINED)) {
1040 ZFS_ATTR_SET(zp, ZFS_AV_QUARANTINED,
1041 xoap->xoa_av_quarantined, zp->z_pflags, tx);
1042 XVA_SET_RTN(xvap, XAT_AV_QUARANTINED);
1043 }
1044 if (XVA_ISSET_REQ(xvap, XAT_AV_MODIFIED)) {
1045 ZFS_ATTR_SET(zp, ZFS_AV_MODIFIED, xoap->xoa_av_modified,
1046 zp->z_pflags, tx);
1047 XVA_SET_RTN(xvap, XAT_AV_MODIFIED);
1048 }
1049 if (XVA_ISSET_REQ(xvap, XAT_AV_SCANSTAMP)) {
1050 zfs_sa_set_scanstamp(zp, xvap, tx);
1051 XVA_SET_RTN(xvap, XAT_AV_SCANSTAMP);
1052 }
1053 if (XVA_ISSET_REQ(xvap, XAT_REPARSE)) {
1054 ZFS_ATTR_SET(zp, ZFS_REPARSE, xoap->xoa_reparse,
1055 zp->z_pflags, tx);
1056 XVA_SET_RTN(xvap, XAT_REPARSE);
1057 }
1058 if (XVA_ISSET_REQ(xvap, XAT_OFFLINE)) {
1059 ZFS_ATTR_SET(zp, ZFS_OFFLINE, xoap->xoa_offline,
1060 zp->z_pflags, tx);
1061 XVA_SET_RTN(xvap, XAT_OFFLINE);
1062 }
1063 if (XVA_ISSET_REQ(xvap, XAT_SPARSE)) {
1064 ZFS_ATTR_SET(zp, ZFS_SPARSE, xoap->xoa_sparse,
1065 zp->z_pflags, tx);
1066 XVA_SET_RTN(xvap, XAT_SPARSE);
1067 }
9c5167d1
NF
1068 if (XVA_ISSET_REQ(xvap, XAT_PROJINHERIT)) {
1069 ZFS_ATTR_SET(zp, ZFS_PROJINHERIT, xoap->xoa_projinherit,
1070 zp->z_pflags, tx);
1071 XVA_SET_RTN(xvap, XAT_PROJINHERIT);
1072 }
7bb1325f
CC
1073
1074 if (update_inode)
1075 zfs_set_inode_flags(zp, ZTOI(zp));
5484965a
BB
1076}
1077
34dc7c2f 1078int
0037b49e 1079zfs_zget(zfsvfs_t *zfsvfs, uint64_t obj_num, znode_t **zpp)
34dc7c2f
BB
1080{
1081 dmu_object_info_t doi;
1082 dmu_buf_t *db;
1083 znode_t *zp;
c96c36fa 1084 znode_hold_t *zh;
34dc7c2f 1085 int err;
428870ff 1086 sa_handle_t *hdl;
34dc7c2f
BB
1087
1088 *zpp = NULL;
1089
6f9548c4 1090again:
0037b49e 1091 zh = zfs_znode_hold_enter(zfsvfs, obj_num);
34dc7c2f 1092
0037b49e 1093 err = sa_buf_hold(zfsvfs->z_os, obj_num, NULL, &db);
34dc7c2f 1094 if (err) {
0037b49e 1095 zfs_znode_hold_exit(zfsvfs, zh);
34dc7c2f
BB
1096 return (err);
1097 }
1098
1099 dmu_object_info_from_db(db, &doi);
428870ff
BB
1100 if (doi.doi_bonus_type != DMU_OT_SA &&
1101 (doi.doi_bonus_type != DMU_OT_ZNODE ||
1102 (doi.doi_bonus_type == DMU_OT_ZNODE &&
1103 doi.doi_bonus_size < sizeof (znode_phys_t)))) {
1104 sa_buf_rele(db, NULL);
0037b49e 1105 zfs_znode_hold_exit(zfsvfs, zh);
2e528b49 1106 return (SET_ERROR(EINVAL));
34dc7c2f
BB
1107 }
1108
428870ff
BB
1109 hdl = dmu_buf_get_user(db);
1110 if (hdl != NULL) {
36df2843 1111 zp = sa_get_userdata(hdl);
34dc7c2f 1112
8ac67298 1113
34dc7c2f 1114 /*
428870ff
BB
1115 * Since "SA" does immediate eviction we
1116 * should never find a sa handle that doesn't
1117 * know about the znode.
34dc7c2f 1118 */
428870ff
BB
1119
1120 ASSERT3P(zp, !=, NULL);
1121
1122 mutex_enter(&zp->z_lock);
34dc7c2f 1123 ASSERT3U(zp->z_id, ==, obj_num);
98701490 1124 /*
41e1aa2a 1125 * If zp->z_unlinked is set, the znode is already marked
0c468138
MFO
1126 * for deletion and should not be discovered. Check this
1127 * after checking igrab() due to fsetxattr() & O_TMPFILE.
41e1aa2a 1128 *
98701490
CC
1129 * If igrab() returns NULL the VFS has independently
1130 * determined the inode should be evicted and has
1131 * called iput_final() to start the eviction process.
1132 * The SA handle is still valid but because the VFS
1133 * requires that the eviction succeed we must drop
1134 * our locks and references to allow the eviction to
1135 * complete. The zfs_zget() may then be retried.
1136 *
1137 * This unlikely case could be optimized by registering
1138 * a sops->drop_inode() callback. The callback would
1139 * need to detect the active SA hold thereby informing
1140 * the VFS that this inode should not be evicted.
1141 */
0c468138
MFO
1142 if (igrab(ZTOI(zp)) == NULL) {
1143 if (zp->z_unlinked)
1144 err = SET_ERROR(ENOENT);
1145 else
1146 err = SET_ERROR(EAGAIN);
41e1aa2a
HAS
1147 } else {
1148 *zpp = zp;
1149 err = 0;
34dc7c2f 1150 }
41e1aa2a 1151
34dc7c2f 1152 mutex_exit(&zp->z_lock);
f3ad9cd6 1153 sa_buf_rele(db, NULL);
0037b49e 1154 zfs_znode_hold_exit(zfsvfs, zh);
41e1aa2a
HAS
1155
1156 if (err == EAGAIN) {
1157 /* inode might need this to finish evict */
1158 cond_resched();
1159 goto again;
1160 }
34dc7c2f
BB
1161 return (err);
1162 }
1163
1164 /*
3558fd73 1165 * Not found create new znode/vnode but only if file exists.
428870ff
BB
1166 *
1167 * There is a small window where zfs_vget() could
1168 * find this object while a file create is still in
1169 * progress. This is checked for in zfs_znode_alloc()
1170 *
1171 * if zfs_znode_alloc() fails it will drop the hold on the
1172 * bonus buffer.
34dc7c2f 1173 */
0037b49e 1174 zp = zfs_znode_alloc(zfsvfs, db, doi.doi_data_block_size,
1a688994 1175 doi.doi_bonus_type, NULL);
428870ff 1176 if (zp == NULL) {
2e528b49 1177 err = SET_ERROR(ENOENT);
428870ff
BB
1178 } else {
1179 *zpp = zp;
1180 }
0037b49e 1181 zfs_znode_hold_exit(zfsvfs, zh);
428870ff 1182 return (err);
34dc7c2f
BB
1183}
1184
1185int
1186zfs_rezget(znode_t *zp)
1187{
0037b49e 1188 zfsvfs_t *zfsvfs = ZTOZSB(zp);
34dc7c2f
BB
1189 dmu_object_info_t doi;
1190 dmu_buf_t *db;
1191 uint64_t obj_num = zp->z_id;
428870ff 1192 uint64_t mode;
dfbc8630 1193 uint64_t links;
abbf0bd4 1194 sa_bulk_attr_t bulk[11];
34dc7c2f 1195 int err;
428870ff
BB
1196 int count = 0;
1197 uint64_t gen;
2c6abf15 1198 uint64_t z_uid, z_gid;
abbf0bd4 1199 uint64_t atime[2], mtime[2], ctime[2], btime[2];
b37f2934 1200 inode_timespec_t tmp_ctime;
9c5167d1 1201 uint64_t projid = ZFS_DEFAULT_PROJID;
c96c36fa 1202 znode_hold_t *zh;
34dc7c2f 1203
cbecb4fb
CC
1204 /*
1205 * skip ctldir, otherwise they will always get invalidated. This will
1206 * cause funny behaviour for the mounted snapdirs. Especially for
1207 * Linux >= 3.18, d_invalidate will detach the mountpoint and prevent
1208 * anyone automount it again as long as someone is still using the
1209 * detached mount.
1210 */
1211 if (zp->z_is_ctldir)
1212 return (0);
1213
0037b49e 1214 zh = zfs_znode_hold_enter(zfsvfs, obj_num);
34dc7c2f 1215
428870ff
BB
1216 mutex_enter(&zp->z_acl_lock);
1217 if (zp->z_acl_cached) {
1218 zfs_acl_free(zp->z_acl_cached);
1219 zp->z_acl_cached = NULL;
1220 }
428870ff 1221 mutex_exit(&zp->z_acl_lock);
7b3e34ba 1222
228b461b 1223 rw_enter(&zp->z_xattr_lock, RW_WRITER);
7b3e34ba
BB
1224 if (zp->z_xattr_cached) {
1225 nvlist_free(zp->z_xattr_cached);
1226 zp->z_xattr_cached = NULL;
1227 }
7b3e34ba
BB
1228 rw_exit(&zp->z_xattr_lock);
1229
428870ff 1230 ASSERT(zp->z_sa_hdl == NULL);
0037b49e 1231 err = sa_buf_hold(zfsvfs->z_os, obj_num, NULL, &db);
34dc7c2f 1232 if (err) {
0037b49e 1233 zfs_znode_hold_exit(zfsvfs, zh);
34dc7c2f
BB
1234 return (err);
1235 }
1236
1237 dmu_object_info_from_db(db, &doi);
428870ff
BB
1238 if (doi.doi_bonus_type != DMU_OT_SA &&
1239 (doi.doi_bonus_type != DMU_OT_ZNODE ||
1240 (doi.doi_bonus_type == DMU_OT_ZNODE &&
1241 doi.doi_bonus_size < sizeof (znode_phys_t)))) {
1242 sa_buf_rele(db, NULL);
0037b49e 1243 zfs_znode_hold_exit(zfsvfs, zh);
2e528b49 1244 return (SET_ERROR(EINVAL));
34dc7c2f
BB
1245 }
1246
0037b49e 1247 zfs_znode_sa_init(zfsvfs, zp, db, doi.doi_bonus_type, NULL);
428870ff
BB
1248
1249 /* reload cached values */
0037b49e 1250 SA_ADD_BULK_ATTR(bulk, count, SA_ZPL_GEN(zfsvfs), NULL,
428870ff 1251 &gen, sizeof (gen));
0037b49e 1252 SA_ADD_BULK_ATTR(bulk, count, SA_ZPL_SIZE(zfsvfs), NULL,
428870ff 1253 &zp->z_size, sizeof (zp->z_size));
0037b49e 1254 SA_ADD_BULK_ATTR(bulk, count, SA_ZPL_LINKS(zfsvfs), NULL,
dfbc8630 1255 &links, sizeof (links));
0037b49e 1256 SA_ADD_BULK_ATTR(bulk, count, SA_ZPL_FLAGS(zfsvfs), NULL,
428870ff 1257 &zp->z_pflags, sizeof (zp->z_pflags));
0037b49e 1258 SA_ADD_BULK_ATTR(bulk, count, SA_ZPL_UID(zfsvfs), NULL,
2c6abf15 1259 &z_uid, sizeof (z_uid));
0037b49e 1260 SA_ADD_BULK_ATTR(bulk, count, SA_ZPL_GID(zfsvfs), NULL,
2c6abf15 1261 &z_gid, sizeof (z_gid));
0037b49e 1262 SA_ADD_BULK_ATTR(bulk, count, SA_ZPL_MODE(zfsvfs), NULL,
428870ff 1263 &mode, sizeof (mode));
0037b49e 1264 SA_ADD_BULK_ATTR(bulk, count, SA_ZPL_ATIME(zfsvfs), NULL,
9f5f0019 1265 &atime, 16);
0037b49e 1266 SA_ADD_BULK_ATTR(bulk, count, SA_ZPL_MTIME(zfsvfs), NULL,
9f5f0019 1267 &mtime, 16);
0037b49e 1268 SA_ADD_BULK_ATTR(bulk, count, SA_ZPL_CTIME(zfsvfs), NULL,
9f5f0019 1269 &ctime, 16);
abbf0bd4 1270 SA_ADD_BULK_ATTR(bulk, count, SA_ZPL_CRTIME(zfsvfs), NULL, &btime, 16);
428870ff 1271
428870ff
BB
1272 if (sa_bulk_lookup(zp->z_sa_hdl, bulk, count)) {
1273 zfs_znode_dmu_fini(zp);
0037b49e 1274 zfs_znode_hold_exit(zfsvfs, zh);
2e528b49 1275 return (SET_ERROR(EIO));
428870ff
BB
1276 }
1277
9c5167d1
NF
1278 if (dmu_objset_projectquota_enabled(zfsvfs->z_os)) {
1279 err = sa_lookup(zp->z_sa_hdl, SA_ZPL_PROJID(zfsvfs),
1280 &projid, 8);
1281 if (err != 0 && err != ENOENT) {
1282 zfs_znode_dmu_fini(zp);
1283 zfs_znode_hold_exit(zfsvfs, zh);
1284 return (SET_ERROR(err));
1285 }
1286 }
1287
1288 zp->z_projid = projid;
12fa7f34 1289 zp->z_mode = ZTOI(zp)->i_mode = mode;
2c6abf15
NB
1290 zfs_uid_write(ZTOI(zp), z_uid);
1291 zfs_gid_write(ZTOI(zp), z_gid);
572e2857 1292
9f5f0019
NB
1293 ZFS_TIME_DECODE(&ZTOI(zp)->i_atime, atime);
1294 ZFS_TIME_DECODE(&ZTOI(zp)->i_mtime, mtime);
b37f2934
CK
1295 ZFS_TIME_DECODE(&tmp_ctime, ctime);
1296 zpl_inode_set_ctime_to_ts(ZTOI(zp), tmp_ctime);
abbf0bd4 1297 ZFS_TIME_DECODE(&zp->z_btime, btime);
9f5f0019 1298
3ce85b5e 1299 if ((uint32_t)gen != ZTOI(zp)->i_generation) {
428870ff 1300 zfs_znode_dmu_fini(zp);
0037b49e 1301 zfs_znode_hold_exit(zfsvfs, zh);
2e528b49 1302 return (SET_ERROR(EIO));
34dc7c2f
BB
1303 }
1304
dfbc8630 1305 set_nlink(ZTOI(zp), (uint32_t)links);
7bb1325f 1306 zfs_set_inode_flags(zp, ZTOI(zp));
dfbc8630 1307
34dc7c2f 1308 zp->z_blksz = doi.doi_data_block_size;
a43570c5 1309 zp->z_atime_dirty = B_FALSE;
fc273894 1310 zfs_znode_update_vfs(zp);
34dc7c2f 1311
6a218566
AG
1312 /*
1313 * If the file has zero links, then it has been unlinked on the send
1314 * side and it must be in the received unlinked set.
1315 * We call zfs_znode_dmu_fini() now to prevent any accesses to the
e1cfd73f 1316 * stale data and to prevent automatic removal of the file in
6a218566
AG
1317 * zfs_zinactive(). The file will be removed either when it is removed
1318 * on the send side and the next incremental stream is received or
1319 * when the unlinked set gets processed.
1320 */
1321 zp->z_unlinked = (ZTOI(zp)->i_nlink == 0);
1322 if (zp->z_unlinked)
1323 zfs_znode_dmu_fini(zp);
1324
0037b49e 1325 zfs_znode_hold_exit(zfsvfs, zh);
34dc7c2f
BB
1326
1327 return (0);
1328}
1329
1330void
1331zfs_znode_delete(znode_t *zp, dmu_tx_t *tx)
1332{
0037b49e
BB
1333 zfsvfs_t *zfsvfs = ZTOZSB(zp);
1334 objset_t *os = zfsvfs->z_os;
34dc7c2f 1335 uint64_t obj = zp->z_id;
572e2857 1336 uint64_t acl_obj = zfs_external_acl(zp);
c96c36fa 1337 znode_hold_t *zh;
34dc7c2f 1338
0037b49e 1339 zh = zfs_znode_hold_enter(zfsvfs, obj);
572e2857
BB
1340 if (acl_obj) {
1341 VERIFY(!zp->z_is_sa);
b128c09f 1342 VERIFY(0 == dmu_object_free(os, acl_obj, tx));
572e2857 1343 }
b128c09f 1344 VERIFY(0 == dmu_object_free(os, obj, tx));
34dc7c2f 1345 zfs_znode_dmu_fini(zp);
0037b49e 1346 zfs_znode_hold_exit(zfsvfs, zh);
34dc7c2f
BB
1347}
1348
1349void
1350zfs_zinactive(znode_t *zp)
1351{
0037b49e 1352 zfsvfs_t *zfsvfs = ZTOZSB(zp);
34dc7c2f 1353 uint64_t z_id = zp->z_id;
c96c36fa 1354 znode_hold_t *zh;
34dc7c2f 1355
428870ff 1356 ASSERT(zp->z_sa_hdl);
34dc7c2f
BB
1357
1358 /*
d6bd8eaa 1359 * Don't allow a zfs_zget() while were trying to release this znode.
34dc7c2f 1360 */
0037b49e 1361 zh = zfs_znode_hold_enter(zfsvfs, z_id);
d6bd8eaa 1362
34dc7c2f 1363 mutex_enter(&zp->z_lock);
34dc7c2f
BB
1364
1365 /*
6a218566
AG
1366 * If this was the last reference to a file with no links, remove
1367 * the file from the file system unless the file system is mounted
1368 * read-only. That can happen, for example, if the file system was
1369 * originally read-write, the file was opened, then unlinked and
1370 * the file system was made read-only before the file was finally
1371 * closed. The file will remain in the unlinked set.
34dc7c2f
BB
1372 */
1373 if (zp->z_unlinked) {
6a218566 1374 ASSERT(!zfsvfs->z_issnap);
dcec0a12 1375 if (!zfs_is_readonly(zfsvfs) && !zfs_unlink_suspend_progress) {
6a218566
AG
1376 mutex_exit(&zp->z_lock);
1377 zfs_znode_hold_exit(zfsvfs, zh);
1378 zfs_rmnode(zp);
1379 return;
1380 }
34dc7c2f 1381 }
428870ff 1382
34dc7c2f
BB
1383 mutex_exit(&zp->z_lock);
1384 zfs_znode_dmu_fini(zp);
d6bd8eaa 1385
0037b49e 1386 zfs_znode_hold_exit(zfsvfs, zh);
34dc7c2f
BB
1387}
1388
9c53e516
TK
1389#if defined(HAVE_INODE_TIMESPEC64_TIMES)
1390#define zfs_compare_timespec timespec64_compare
1391#else
1392#define zfs_compare_timespec timespec_compare
1393#endif
1394
1395/*
1396 * Determine whether the znode's atime must be updated. The logic mostly
1397 * duplicates the Linux kernel's relatime_need_update() functionality.
1398 * This function is only called if the underlying filesystem actually has
1399 * atime updates enabled.
1400 */
1401boolean_t
1402zfs_relatime_need_update(const struct inode *ip)
6d111134 1403{
b37f2934 1404 inode_timespec_t now, tmp_ctime;
9c53e516
TK
1405
1406 gethrestime(&now);
1407 /*
1408 * In relatime mode, only update the atime if the previous atime
1409 * is earlier than either the ctime or mtime or if at least a day
1410 * has passed since the last update of atime.
1411 */
1412 if (zfs_compare_timespec(&ip->i_mtime, &ip->i_atime) >= 0)
1413 return (B_TRUE);
1414
b37f2934
CK
1415 tmp_ctime = zpl_inode_get_ctime(ip);
1416 if (zfs_compare_timespec(&tmp_ctime, &ip->i_atime) >= 0)
9c53e516 1417 return (B_TRUE);
6d111134 1418
9c53e516
TK
1419 if ((hrtime_t)now.tv_sec - (hrtime_t)ip->i_atime.tv_sec >= 24*60*60)
1420 return (B_TRUE);
6d111134 1421
9c53e516 1422 return (B_FALSE);
6d111134
TC
1423}
1424
6d111134
TC
1425/*
1426 * Prepare to update znode time stamps.
1427 *
1428 * IN: zp - znode requiring timestamp update
0df9673f 1429 * flag - ATTR_MTIME, ATTR_CTIME flags
6d111134 1430 *
0df9673f 1431 * OUT: zp - z_seq
6d111134
TC
1432 * mtime - new mtime
1433 * ctime - new ctime
1434 *
0df9673f
CC
1435 * Note: We don't update atime here, because we rely on Linux VFS to do
1436 * atime updating.
6d111134 1437 */
34dc7c2f 1438void
428870ff 1439zfs_tstamp_update_setup(znode_t *zp, uint_t flag, uint64_t mtime[2],
0df9673f 1440 uint64_t ctime[2])
34dc7c2f 1441{
b37f2934 1442 inode_timespec_t now, tmp_ctime;
34dc7c2f 1443
34dc7c2f
BB
1444 gethrestime(&now);
1445
0df9673f 1446 zp->z_seq++;
34dc7c2f 1447
3558fd73 1448 if (flag & ATTR_MTIME) {
428870ff 1449 ZFS_TIME_ENCODE(&now, mtime);
9f5f0019 1450 ZFS_TIME_DECODE(&(ZTOI(zp)->i_mtime), mtime);
3558fd73 1451 if (ZTOZSB(zp)->z_use_fuids) {
428870ff
BB
1452 zp->z_pflags |= (ZFS_ARCHIVE |
1453 ZFS_AV_MODIFIED);
1454 }
34dc7c2f
BB
1455 }
1456
3558fd73 1457 if (flag & ATTR_CTIME) {
428870ff 1458 ZFS_TIME_ENCODE(&now, ctime);
b37f2934
CK
1459 ZFS_TIME_DECODE(&tmp_ctime, ctime);
1460 zpl_inode_set_ctime_to_ts(ZTOI(zp), tmp_ctime);
3558fd73 1461 if (ZTOZSB(zp)->z_use_fuids)
428870ff 1462 zp->z_pflags |= ZFS_ARCHIVE;
34dc7c2f
BB
1463 }
1464}
1465
34dc7c2f
BB
1466/*
1467 * Grow the block size for a file.
1468 *
1469 * IN: zp - znode of file to free data in.
1470 * size - requested block size
1471 * tx - open transaction.
1472 *
1473 * NOTE: this function assumes that the znode is write locked.
1474 */
1475void
1476zfs_grow_blocksize(znode_t *zp, uint64_t size, dmu_tx_t *tx)
1477{
1478 int error;
1479 u_longlong_t dummy;
1480
1481 if (size <= zp->z_blksz)
1482 return;
1483 /*
1484 * If the file size is already greater than the current blocksize,
1485 * we will not grow. If there is more than one block in a file,
1486 * the blocksize cannot change.
1487 */
428870ff 1488 if (zp->z_blksz && zp->z_size > zp->z_blksz)
34dc7c2f
BB
1489 return;
1490
3558fd73 1491 error = dmu_object_set_blocksize(ZTOZSB(zp)->z_os, zp->z_id,
34dc7c2f 1492 size, 0, tx);
428870ff 1493
34dc7c2f
BB
1494 if (error == ENOTSUP)
1495 return;
c99c9001 1496 ASSERT0(error);
34dc7c2f
BB
1497
1498 /* What blocksize did we actually get? */
428870ff 1499 dmu_object_size_from_db(sa_get_db(zp->z_sa_hdl), &zp->z_blksz, &dummy);
34dc7c2f
BB
1500}
1501
34dc7c2f 1502/*
b128c09f 1503 * Increase the file length
34dc7c2f
BB
1504 *
1505 * IN: zp - znode of file to free data in.
b128c09f 1506 * end - new end-of-file
34dc7c2f 1507 *
19d55079 1508 * RETURN: 0 on success, error code on failure
34dc7c2f 1509 */
b128c09f
BB
1510static int
1511zfs_extend(znode_t *zp, uint64_t end)
34dc7c2f 1512{
0037b49e 1513 zfsvfs_t *zfsvfs = ZTOZSB(zp);
b128c09f 1514 dmu_tx_t *tx;
bd4dde8e 1515 zfs_locked_range_t *lr;
b128c09f 1516 uint64_t newblksz;
34dc7c2f
BB
1517 int error;
1518
34dc7c2f 1519 /*
b128c09f 1520 * We will change zp_size, lock the whole file.
34dc7c2f 1521 */
2cc479d0 1522 lr = zfs_rangelock_enter(&zp->z_rangelock, 0, UINT64_MAX, RL_WRITER);
34dc7c2f
BB
1523
1524 /*
1525 * Nothing to do if file already at desired length.
1526 */
428870ff 1527 if (end <= zp->z_size) {
2cc479d0 1528 zfs_rangelock_exit(lr);
34dc7c2f
BB
1529 return (0);
1530 }
0037b49e 1531 tx = dmu_tx_create(zfsvfs->z_os);
428870ff
BB
1532 dmu_tx_hold_sa(tx, zp->z_sa_hdl, B_FALSE);
1533 zfs_sa_upgrade_txholds(tx, zp);
b128c09f 1534 if (end > zp->z_blksz &&
0037b49e 1535 (!ISP2(zp->z_blksz) || zp->z_blksz < zfsvfs->z_max_blksz)) {
34dc7c2f
BB
1536 /*
1537 * We are growing the file past the current block size.
1538 */
3558fd73 1539 if (zp->z_blksz > ZTOZSB(zp)->z_max_blksz) {
f1512ee6
MA
1540 /*
1541 * File's blocksize is already larger than the
1542 * "recordsize" property. Only let it grow to
1543 * the next power of 2.
1544 */
34dc7c2f 1545 ASSERT(!ISP2(zp->z_blksz));
f1512ee6 1546 newblksz = MIN(end, 1 << highbit64(zp->z_blksz));
34dc7c2f 1547 } else {
3558fd73 1548 newblksz = MIN(end, ZTOZSB(zp)->z_max_blksz);
34dc7c2f 1549 }
b128c09f
BB
1550 dmu_tx_hold_write(tx, zp->z_id, 0, newblksz);
1551 } else {
1552 newblksz = 0;
34dc7c2f
BB
1553 }
1554
384f8a09 1555 error = dmu_tx_assign(tx, TXG_WAIT);
34dc7c2f 1556 if (error) {
34dc7c2f 1557 dmu_tx_abort(tx);
2cc479d0 1558 zfs_rangelock_exit(lr);
34dc7c2f
BB
1559 return (error);
1560 }
1561
b128c09f
BB
1562 if (newblksz)
1563 zfs_grow_blocksize(zp, newblksz, tx);
34dc7c2f 1564
428870ff
BB
1565 zp->z_size = end;
1566
3558fd73 1567 VERIFY(0 == sa_update(zp->z_sa_hdl, SA_ZPL_SIZE(ZTOZSB(zp)),
428870ff 1568 &zp->z_size, sizeof (zp->z_size), tx));
34dc7c2f 1569
2cc479d0 1570 zfs_rangelock_exit(lr);
34dc7c2f 1571
b128c09f 1572 dmu_tx_commit(tx);
34dc7c2f 1573
b128c09f
BB
1574 return (0);
1575}
1576
223df016
TC
1577/*
1578 * zfs_zero_partial_page - Modeled after update_pages() but
1579 * with different arguments and semantics for use by zfs_freesp().
1580 *
1581 * Zeroes a piece of a single page cache entry for zp at offset
1582 * start and length len.
1583 *
1584 * Caller must acquire a range lock on the file for the region
1585 * being zeroed in order that the ARC and page cache stay in sync.
1586 */
1587static void
1588zfs_zero_partial_page(znode_t *zp, uint64_t start, uint64_t len)
1589{
1590 struct address_space *mp = ZTOI(zp)->i_mapping;
1591 struct page *pp;
1592 int64_t off;
1593 void *pb;
1594
8b1899d3 1595 ASSERT((start & PAGE_MASK) == ((start + len - 1) & PAGE_MASK));
223df016 1596
8b1899d3
BB
1597 off = start & (PAGE_SIZE - 1);
1598 start &= PAGE_MASK;
223df016 1599
8b1899d3 1600 pp = find_lock_page(mp, start >> PAGE_SHIFT);
223df016
TC
1601 if (pp) {
1602 if (mapping_writably_mapped(mp))
1603 flush_dcache_page(pp);
1604
1605 pb = kmap(pp);
861166b0 1606 memset(pb + off, 0, len);
223df016
TC
1607 kunmap(pp);
1608
1609 if (mapping_writably_mapped(mp))
1610 flush_dcache_page(pp);
1611
1612 mark_page_accessed(pp);
1613 SetPageUptodate(pp);
1614 ClearPageError(pp);
1615 unlock_page(pp);
8b1899d3 1616 put_page(pp);
223df016
TC
1617 }
1618}
1619
b128c09f
BB
1620/*
1621 * Free space in a file.
1622 *
1623 * IN: zp - znode of file to free data in.
1624 * off - start of section to free.
1625 * len - length of section to free.
1626 *
19d55079 1627 * RETURN: 0 on success, error code on failure
b128c09f
BB
1628 */
1629static int
1630zfs_free_range(znode_t *zp, uint64_t off, uint64_t len)
1631{
0037b49e 1632 zfsvfs_t *zfsvfs = ZTOZSB(zp);
bd4dde8e 1633 zfs_locked_range_t *lr;
b128c09f
BB
1634 int error;
1635
1636 /*
1637 * Lock the range being freed.
1638 */
2cc479d0 1639 lr = zfs_rangelock_enter(&zp->z_rangelock, off, len, RL_WRITER);
b128c09f
BB
1640
1641 /*
1642 * Nothing to do if file already at desired length.
1643 */
428870ff 1644 if (off >= zp->z_size) {
2cc479d0 1645 zfs_rangelock_exit(lr);
b128c09f 1646 return (0);
34dc7c2f
BB
1647 }
1648
428870ff
BB
1649 if (off + len > zp->z_size)
1650 len = zp->z_size - off;
b128c09f 1651
0037b49e 1652 error = dmu_free_long_range(zfsvfs->z_os, zp->z_id, off, len);
b128c09f 1653
223df016
TC
1654 /*
1655 * Zero partial page cache entries. This must be done under a
1656 * range lock in order to keep the ARC and page cache in sync.
1657 */
3fc92adc 1658 if (zn_has_cached_data(zp, off, off + len - 1)) {
223df016
TC
1659 loff_t first_page, last_page, page_len;
1660 loff_t first_page_offset, last_page_offset;
1661
1662 /* first possible full page in hole */
8b1899d3 1663 first_page = (off + PAGE_SIZE - 1) >> PAGE_SHIFT;
223df016 1664 /* last page of hole */
8b1899d3 1665 last_page = (off + len) >> PAGE_SHIFT;
223df016
TC
1666
1667 /* offset of first_page */
8b1899d3 1668 first_page_offset = first_page << PAGE_SHIFT;
223df016 1669 /* offset of last_page */
8b1899d3 1670 last_page_offset = last_page << PAGE_SHIFT;
223df016 1671
cb08f063
TC
1672 /* truncate whole pages */
1673 if (last_page_offset > first_page_offset) {
1674 truncate_inode_pages_range(ZTOI(zp)->i_mapping,
1675 first_page_offset, last_page_offset - 1);
1676 }
1677
1678 /* truncate sub-page ranges */
223df016
TC
1679 if (first_page > last_page) {
1680 /* entire punched area within a single page */
1681 zfs_zero_partial_page(zp, off, len);
1682 } else {
1683 /* beginning of punched area at the end of a page */
1684 page_len = first_page_offset - off;
1685 if (page_len > 0)
1686 zfs_zero_partial_page(zp, off, page_len);
1687
1688 /* end of punched area at the beginning of a page */
1689 page_len = off + len - last_page_offset;
1690 if (page_len > 0)
1691 zfs_zero_partial_page(zp, last_page_offset,
1692 page_len);
1693 }
1694 }
2cc479d0 1695 zfs_rangelock_exit(lr);
34dc7c2f 1696
b128c09f
BB
1697 return (error);
1698}
1699
1700/*
1701 * Truncate a file
1702 *
1703 * IN: zp - znode of file to free data in.
1704 * end - new end-of-file.
1705 *
19d55079 1706 * RETURN: 0 on success, error code on failure
b128c09f
BB
1707 */
1708static int
1709zfs_trunc(znode_t *zp, uint64_t end)
1710{
0037b49e 1711 zfsvfs_t *zfsvfs = ZTOZSB(zp);
b128c09f 1712 dmu_tx_t *tx;
bd4dde8e 1713 zfs_locked_range_t *lr;
b128c09f 1714 int error;
572e2857
BB
1715 sa_bulk_attr_t bulk[2];
1716 int count = 0;
b128c09f
BB
1717
1718 /*
1719 * We will change zp_size, lock the whole file.
1720 */
2cc479d0 1721 lr = zfs_rangelock_enter(&zp->z_rangelock, 0, UINT64_MAX, RL_WRITER);
b128c09f
BB
1722
1723 /*
1724 * Nothing to do if file already at desired length.
1725 */
428870ff 1726 if (end >= zp->z_size) {
2cc479d0 1727 zfs_rangelock_exit(lr);
b128c09f
BB
1728 return (0);
1729 }
1730
18a2485f
FS
1731 error = dmu_free_long_range(zfsvfs->z_os, zp->z_id, end,
1732 DMU_OBJECT_END);
b128c09f 1733 if (error) {
2cc479d0 1734 zfs_rangelock_exit(lr);
b128c09f
BB
1735 return (error);
1736 }
0037b49e 1737 tx = dmu_tx_create(zfsvfs->z_os);
428870ff
BB
1738 dmu_tx_hold_sa(tx, zp->z_sa_hdl, B_FALSE);
1739 zfs_sa_upgrade_txholds(tx, zp);
19d55079 1740 dmu_tx_mark_netfree(tx);
7a8f0e80 1741 error = dmu_tx_assign(tx, TXG_WAIT);
b128c09f 1742 if (error) {
b128c09f 1743 dmu_tx_abort(tx);
2cc479d0 1744 zfs_rangelock_exit(lr);
b128c09f
BB
1745 return (error);
1746 }
b128c09f 1747
428870ff 1748 zp->z_size = end;
0037b49e 1749 SA_ADD_BULK_ATTR(bulk, count, SA_ZPL_SIZE(zfsvfs),
572e2857 1750 NULL, &zp->z_size, sizeof (zp->z_size));
428870ff 1751
572e2857
BB
1752 if (end == 0) {
1753 zp->z_pflags &= ~ZFS_SPARSE;
0037b49e 1754 SA_ADD_BULK_ATTR(bulk, count, SA_ZPL_FLAGS(zfsvfs),
572e2857
BB
1755 NULL, &zp->z_pflags, 8);
1756 }
1757 VERIFY(sa_bulk_update(zp->z_sa_hdl, bulk, count, tx) == 0);
b128c09f 1758
34dc7c2f 1759 dmu_tx_commit(tx);
2cc479d0 1760 zfs_rangelock_exit(lr);
34dc7c2f
BB
1761
1762 return (0);
1763}
1764
b128c09f
BB
1765/*
1766 * Free space in a file
1767 *
1768 * IN: zp - znode of file to free data in.
1769 * off - start of range
1770 * len - end of range (0 => EOF)
1771 * flag - current file open mode flags.
1772 * log - TRUE if this action should be logged
1773 *
19d55079 1774 * RETURN: 0 on success, error code on failure
b128c09f
BB
1775 */
1776int
1777zfs_freesp(znode_t *zp, uint64_t off, uint64_t len, int flag, boolean_t log)
1778{
b128c09f 1779 dmu_tx_t *tx;
0037b49e
BB
1780 zfsvfs_t *zfsvfs = ZTOZSB(zp);
1781 zilog_t *zilog = zfsvfs->z_log;
428870ff
BB
1782 uint64_t mode;
1783 uint64_t mtime[2], ctime[2];
1784 sa_bulk_attr_t bulk[3];
1785 int count = 0;
b128c09f
BB
1786 int error;
1787
0037b49e 1788 if ((error = sa_lookup(zp->z_sa_hdl, SA_ZPL_MODE(zfsvfs), &mode,
428870ff
BB
1789 sizeof (mode))) != 0)
1790 return (error);
1791
1792 if (off > zp->z_size) {
b128c09f
BB
1793 error = zfs_extend(zp, off+len);
1794 if (error == 0 && log)
1795 goto log;
223df016 1796 goto out;
b128c09f
BB
1797 }
1798
b128c09f
BB
1799 if (len == 0) {
1800 error = zfs_trunc(zp, off);
1801 } else {
1802 if ((error = zfs_free_range(zp, off, len)) == 0 &&
428870ff 1803 off + len > zp->z_size)
b128c09f
BB
1804 error = zfs_extend(zp, off+len);
1805 }
1806 if (error || !log)
223df016 1807 goto out;
b128c09f 1808log:
0037b49e 1809 tx = dmu_tx_create(zfsvfs->z_os);
428870ff
BB
1810 dmu_tx_hold_sa(tx, zp->z_sa_hdl, B_FALSE);
1811 zfs_sa_upgrade_txholds(tx, zp);
384f8a09 1812 error = dmu_tx_assign(tx, TXG_WAIT);
b128c09f 1813 if (error) {
b128c09f 1814 dmu_tx_abort(tx);
223df016 1815 goto out;
b128c09f
BB
1816 }
1817
0037b49e
BB
1818 SA_ADD_BULK_ATTR(bulk, count, SA_ZPL_MTIME(zfsvfs), NULL, mtime, 16);
1819 SA_ADD_BULK_ATTR(bulk, count, SA_ZPL_CTIME(zfsvfs), NULL, ctime, 16);
1820 SA_ADD_BULK_ATTR(bulk, count, SA_ZPL_FLAGS(zfsvfs),
428870ff 1821 NULL, &zp->z_pflags, 8);
0df9673f 1822 zfs_tstamp_update_setup(zp, CONTENT_MODIFIED, mtime, ctime);
428870ff
BB
1823 error = sa_bulk_update(zp->z_sa_hdl, bulk, count, tx);
1824 ASSERT(error == 0);
1825
b128c09f
BB
1826 zfs_log_truncate(zilog, tx, TX_TRUNCATE, zp, off, len);
1827
1828 dmu_tx_commit(tx);
223df016 1829
fc273894 1830 zfs_znode_update_vfs(zp);
223df016
TC
1831 error = 0;
1832
1833out:
1834 /*
1835 * Truncate the page cache - for file truncate operations, use
1836 * the purpose-built API for truncations. For punching operations,
cb08f063 1837 * the truncation is handled under a range lock in zfs_free_range.
223df016
TC
1838 */
1839 if (len == 0)
1840 truncate_setsize(ZTOI(zp), off);
223df016 1841 return (error);
b128c09f
BB
1842}
1843
34dc7c2f
BB
1844void
1845zfs_create_fs(objset_t *os, cred_t *cr, nvlist_t *zplprops, dmu_tx_t *tx)
1846{
22872ff5 1847 struct super_block *sb;
0037b49e 1848 zfsvfs_t *zfsvfs;
428870ff 1849 uint64_t moid, obj, sa_obj, version;
22872ff5 1850 uint64_t sense = ZFS_CASE_SENSITIVE;
34dc7c2f
BB
1851 uint64_t norm = 0;
1852 nvpair_t *elem;
c96c36fa 1853 int size;
34dc7c2f 1854 int error;
22872ff5
BB
1855 int i;
1856 znode_t *rootzp = NULL;
1857 vattr_t vattr;
1858 znode_t *zp;
1859 zfs_acl_ids_t acl_ids;
34dc7c2f
BB
1860
1861 /*
1862 * First attempt to create master node.
1863 */
1864 /*
1865 * In an empty objset, there are no blocks to read and thus
1866 * there can be no i/o errors (which we assert below).
1867 */
1868 moid = MASTER_NODE_OBJ;
1869 error = zap_create_claim(os, moid, DMU_OT_MASTER_NODE,
1870 DMU_OT_NONE, 0, tx);
1871 ASSERT(error == 0);
1872
1873 /*
1874 * Set starting attributes.
1875 */
428870ff 1876 version = zfs_zpl_version_map(spa_version(dmu_objset_spa(os)));
34dc7c2f
BB
1877 elem = NULL;
1878 while ((elem = nvlist_next_nvpair(zplprops, elem)) != NULL) {
1879 /* For the moment we expect all zpl props to be uint64_ts */
1880 uint64_t val;
d1807f16 1881 const char *name;
34dc7c2f
BB
1882
1883 ASSERT(nvpair_type(elem) == DATA_TYPE_UINT64);
1884 VERIFY(nvpair_value_uint64(elem, &val) == 0);
1885 name = nvpair_name(elem);
1886 if (strcmp(name, zfs_prop_to_name(ZFS_PROP_VERSION)) == 0) {
9babb374
BB
1887 if (val < version)
1888 version = val;
34dc7c2f
BB
1889 } else {
1890 error = zap_update(os, moid, name, 8, 1, &val, tx);
1891 }
1892 ASSERT(error == 0);
1893 if (strcmp(name, zfs_prop_to_name(ZFS_PROP_NORMALIZE)) == 0)
1894 norm = val;
22872ff5
BB
1895 else if (strcmp(name, zfs_prop_to_name(ZFS_PROP_CASE)) == 0)
1896 sense = val;
34dc7c2f
BB
1897 }
1898 ASSERT(version != 0);
9babb374 1899 error = zap_update(os, moid, ZPL_VERSION_STR, 8, 1, &version, tx);
2e7f664f 1900 ASSERT(error == 0);
34dc7c2f 1901
428870ff
BB
1902 /*
1903 * Create zap object used for SA attribute registration
1904 */
1905
1906 if (version >= ZPL_VERSION_SA) {
1907 sa_obj = zap_create(os, DMU_OT_SA_MASTER_NODE,
1908 DMU_OT_NONE, 0, tx);
1909 error = zap_add(os, moid, ZFS_SA_ATTRS, 8, 1, &sa_obj, tx);
1910 ASSERT(error == 0);
1911 } else {
1912 sa_obj = 0;
1913 }
34dc7c2f
BB
1914 /*
1915 * Create a delete queue.
1916 */
9babb374 1917 obj = zap_create(os, DMU_OT_UNLINKED_SET, DMU_OT_NONE, 0, tx);
34dc7c2f 1918
9babb374 1919 error = zap_add(os, moid, ZFS_UNLINKED_SET, 8, 1, &obj, tx);
34dc7c2f
BB
1920 ASSERT(error == 0);
1921
9babb374 1922 /*
0037b49e 1923 * Create root znode. Create minimal znode/inode/zfsvfs/sb
22872ff5 1924 * to allow zfs_mknode to work.
9babb374 1925 */
22872ff5
BB
1926 vattr.va_mask = ATTR_MODE|ATTR_UID|ATTR_GID;
1927 vattr.va_mode = S_IFDIR|0755;
1928 vattr.va_uid = crgetuid(cr);
1929 vattr.va_gid = crgetgid(cr);
1930
79c76d5b 1931 rootzp = kmem_cache_alloc(znode_cache, KM_SLEEP);
a43570c5
TK
1932 rootzp->z_unlinked = B_FALSE;
1933 rootzp->z_atime_dirty = B_FALSE;
22872ff5 1934 rootzp->z_is_sa = USE_SA(version, os);
9c5167d1 1935 rootzp->z_pflags = 0;
22872ff5 1936
0037b49e
BB
1937 zfsvfs = kmem_zalloc(sizeof (zfsvfs_t), KM_SLEEP);
1938 zfsvfs->z_os = os;
1939 zfsvfs->z_parent = zfsvfs;
1940 zfsvfs->z_version = version;
1941 zfsvfs->z_use_fuids = USE_FUIDS(version, os);
1942 zfsvfs->z_use_sa = USE_SA(version, os);
1943 zfsvfs->z_norm = norm;
22872ff5 1944
79c76d5b 1945 sb = kmem_zalloc(sizeof (struct super_block), KM_SLEEP);
0037b49e 1946 sb->s_fs_info = zfsvfs;
22872ff5
BB
1947
1948 ZTOI(rootzp)->i_sb = sb;
1949
1950 error = sa_setup(os, sa_obj, zfs_attr_table, ZPL_END,
0037b49e 1951 &zfsvfs->z_attr_table);
9babb374 1952
22872ff5 1953 ASSERT(error == 0);
9babb374 1954
60101509 1955 /*
22872ff5
BB
1956 * Fold case on file systems that are always or sometimes case
1957 * insensitive.
60101509 1958 */
22872ff5 1959 if (sense == ZFS_CASE_INSENSITIVE || sense == ZFS_CASE_MIXED)
0037b49e 1960 zfsvfs->z_norm |= U8_TEXTPREP_TOUPPER;
60101509 1961
0037b49e
BB
1962 mutex_init(&zfsvfs->z_znodes_lock, NULL, MUTEX_DEFAULT, NULL);
1963 list_create(&zfsvfs->z_all_znodes, sizeof (znode_t),
22872ff5 1964 offsetof(znode_t, z_link_node));
60101509 1965
c96c36fa 1966 size = MIN(1 << (highbit64(zfs_object_mutex_size)-1), ZFS_OBJ_MTX_MAX);
0037b49e
BB
1967 zfsvfs->z_hold_size = size;
1968 zfsvfs->z_hold_trees = vmem_zalloc(sizeof (avl_tree_t) * size,
1969 KM_SLEEP);
1970 zfsvfs->z_hold_locks = vmem_zalloc(sizeof (kmutex_t) * size, KM_SLEEP);
c96c36fa 1971 for (i = 0; i != size; i++) {
0037b49e 1972 avl_create(&zfsvfs->z_hold_trees[i], zfs_znode_hold_compare,
c96c36fa 1973 sizeof (znode_hold_t), offsetof(znode_hold_t, zh_node));
0037b49e 1974 mutex_init(&zfsvfs->z_hold_locks[i], NULL, MUTEX_DEFAULT, NULL);
c96c36fa 1975 }
60101509 1976
22872ff5 1977 VERIFY(0 == zfs_acl_ids_create(rootzp, IS_ROOT_NODE, &vattr,
d4dc53da 1978 cr, NULL, &acl_ids, zfs_init_idmap));
22872ff5
BB
1979 zfs_mknode(rootzp, &vattr, tx, cr, IS_ROOT_NODE, &zp, &acl_ids);
1980 ASSERT3P(zp, ==, rootzp);
1981 error = zap_add(os, moid, ZFS_ROOT_OBJ, 8, 1, &rootzp->z_id, tx);
1982 ASSERT(error == 0);
1983 zfs_acl_ids_free(&acl_ids);
60101509 1984
22872ff5
BB
1985 atomic_set(&ZTOI(rootzp)->i_count, 0);
1986 sa_handle_destroy(rootzp->z_sa_hdl);
22872ff5
BB
1987 kmem_cache_free(znode_cache, rootzp);
1988
c96c36fa 1989 for (i = 0; i != size; i++) {
0037b49e
BB
1990 avl_destroy(&zfsvfs->z_hold_trees[i]);
1991 mutex_destroy(&zfsvfs->z_hold_locks[i]);
c96c36fa 1992 }
2708f716 1993
c17486b2
GN
1994 mutex_destroy(&zfsvfs->z_znodes_lock);
1995
0037b49e
BB
1996 vmem_free(zfsvfs->z_hold_trees, sizeof (avl_tree_t) * size);
1997 vmem_free(zfsvfs->z_hold_locks, sizeof (kmutex_t) * size);
2708f716 1998 kmem_free(sb, sizeof (struct super_block));
0037b49e 1999 kmem_free(zfsvfs, sizeof (zfsvfs_t));
34dc7c2f 2000}
34dc7c2f 2001#endif /* _KERNEL */
428870ff 2002
34dc7c2f 2003static int
572e2857
BB
2004zfs_sa_setup(objset_t *osp, sa_attr_type_t **sa_table)
2005{
2006 uint64_t sa_obj = 0;
2007 int error;
2008
2009 error = zap_lookup(osp, MASTER_NODE_OBJ, ZFS_SA_ATTRS, 8, 1, &sa_obj);
2010 if (error != 0 && error != ENOENT)
2011 return (error);
2012
2013 error = sa_setup(osp, sa_obj, zfs_attr_table, ZPL_END, sa_table);
2014 return (error);
2015}
2016
2017static int
2018zfs_grab_sa_handle(objset_t *osp, uint64_t obj, sa_handle_t **hdlp,
dd66857d 2019 dmu_buf_t **db, const void *tag)
34dc7c2f 2020{
34dc7c2f 2021 dmu_object_info_t doi;
34dc7c2f 2022 int error;
428870ff 2023
7b8518cb 2024 if ((error = sa_buf_hold(osp, obj, tag, db)) != 0)
34dc7c2f
BB
2025 return (error);
2026
572e2857 2027 dmu_object_info_from_db(*db, &doi);
428870ff
BB
2028 if ((doi.doi_bonus_type != DMU_OT_SA &&
2029 doi.doi_bonus_type != DMU_OT_ZNODE) ||
d6320ddb
BB
2030 (doi.doi_bonus_type == DMU_OT_ZNODE &&
2031 doi.doi_bonus_size < sizeof (znode_phys_t))) {
7b8518cb 2032 sa_buf_rele(*db, tag);
2e528b49 2033 return (SET_ERROR(ENOTSUP));
34dc7c2f
BB
2034 }
2035
572e2857
BB
2036 error = sa_handle_get(osp, obj, NULL, SA_HDL_PRIVATE, hdlp);
2037 if (error != 0) {
7b8518cb 2038 sa_buf_rele(*db, tag);
428870ff
BB
2039 return (error);
2040 }
2041
572e2857
BB
2042 return (0);
2043}
2044
65c7cc49 2045static void
dd66857d 2046zfs_release_sa_handle(sa_handle_t *hdl, dmu_buf_t *db, const void *tag)
572e2857
BB
2047{
2048 sa_handle_destroy(hdl);
7b8518cb 2049 sa_buf_rele(db, tag);
572e2857
BB
2050}
2051
2052/*
2053 * Given an object number, return its parent object number and whether
2054 * or not the object is an extended attribute directory.
2055 */
2056static int
b23ad7f3
JJ
2057zfs_obj_to_pobj(objset_t *osp, sa_handle_t *hdl, sa_attr_type_t *sa_table,
2058 uint64_t *pobjp, int *is_xattrdir)
572e2857
BB
2059{
2060 uint64_t parent;
2061 uint64_t pflags;
2062 uint64_t mode;
b23ad7f3 2063 uint64_t parent_mode;
572e2857 2064 sa_bulk_attr_t bulk[3];
b23ad7f3
JJ
2065 sa_handle_t *sa_hdl;
2066 dmu_buf_t *sa_db;
572e2857
BB
2067 int count = 0;
2068 int error;
2069
2070 SA_ADD_BULK_ATTR(bulk, count, sa_table[ZPL_PARENT], NULL,
2071 &parent, sizeof (parent));
428870ff 2072 SA_ADD_BULK_ATTR(bulk, count, sa_table[ZPL_FLAGS], NULL,
572e2857 2073 &pflags, sizeof (pflags));
428870ff 2074 SA_ADD_BULK_ATTR(bulk, count, sa_table[ZPL_MODE], NULL,
572e2857 2075 &mode, sizeof (mode));
428870ff 2076
572e2857 2077 if ((error = sa_bulk_lookup(hdl, bulk, count)) != 0)
428870ff 2078 return (error);
572e2857 2079
b23ad7f3
JJ
2080 /*
2081 * When a link is removed its parent pointer is not changed and will
2082 * be invalid. There are two cases where a link is removed but the
2083 * file stays around, when it goes to the delete queue and when there
2084 * are additional links.
2085 */
2086 error = zfs_grab_sa_handle(osp, parent, &sa_hdl, &sa_db, FTAG);
2087 if (error != 0)
2088 return (error);
2089
2090 error = sa_lookup(sa_hdl, ZPL_MODE, &parent_mode, sizeof (parent_mode));
2091 zfs_release_sa_handle(sa_hdl, sa_db, FTAG);
2092 if (error != 0)
2093 return (error);
2094
428870ff 2095 *is_xattrdir = ((pflags & ZFS_XATTR) != 0) && S_ISDIR(mode);
34dc7c2f 2096
b23ad7f3
JJ
2097 /*
2098 * Extended attributes can be applied to files, directories, etc.
2099 * Otherwise the parent must be a directory.
2100 */
2101 if (!*is_xattrdir && !S_ISDIR(parent_mode))
ecb2b7dc 2102 return (SET_ERROR(EINVAL));
b23ad7f3
JJ
2103
2104 *pobjp = parent;
2105
34dc7c2f
BB
2106 return (0);
2107}
2108
572e2857
BB
2109/*
2110 * Given an object number, return some zpl level statistics
2111 */
2112static int
2113zfs_obj_to_stats_impl(sa_handle_t *hdl, sa_attr_type_t *sa_table,
2114 zfs_stat_t *sb)
34dc7c2f 2115{
572e2857
BB
2116 sa_bulk_attr_t bulk[4];
2117 int count = 0;
2118
2119 SA_ADD_BULK_ATTR(bulk, count, sa_table[ZPL_MODE], NULL,
2120 &sb->zs_mode, sizeof (sb->zs_mode));
2121 SA_ADD_BULK_ATTR(bulk, count, sa_table[ZPL_GEN], NULL,
2122 &sb->zs_gen, sizeof (sb->zs_gen));
2123 SA_ADD_BULK_ATTR(bulk, count, sa_table[ZPL_LINKS], NULL,
2124 &sb->zs_links, sizeof (sb->zs_links));
2125 SA_ADD_BULK_ATTR(bulk, count, sa_table[ZPL_CTIME], NULL,
2126 &sb->zs_ctime, sizeof (sb->zs_ctime));
2127
2128 return (sa_bulk_lookup(hdl, bulk, count));
2129}
2130
2131static int
2132zfs_obj_to_path_impl(objset_t *osp, uint64_t obj, sa_handle_t *hdl,
2133 sa_attr_type_t *sa_table, char *buf, int len)
2134{
2135 sa_handle_t *sa_hdl;
2136 sa_handle_t *prevhdl = NULL;
2137 dmu_buf_t *prevdb = NULL;
2138 dmu_buf_t *sa_db = NULL;
34dc7c2f
BB
2139 char *path = buf + len - 1;
2140 int error;
2141
2142 *path = '\0';
572e2857 2143 sa_hdl = hdl;
428870ff 2144
64c1dcef
PD
2145 uint64_t deleteq_obj;
2146 VERIFY0(zap_lookup(osp, MASTER_NODE_OBJ,
2147 ZFS_UNLINKED_SET, sizeof (uint64_t), 1, &deleteq_obj));
2148 error = zap_lookup_int(osp, deleteq_obj, obj);
2149 if (error == 0) {
2150 return (ESTALE);
2151 } else if (error != ENOENT) {
2152 return (error);
2153 }
64c1dcef 2154
34dc7c2f 2155 for (;;) {
17897ce2 2156 uint64_t pobj = 0;
34dc7c2f
BB
2157 char component[MAXNAMELEN + 2];
2158 size_t complen;
17897ce2 2159 int is_xattrdir = 0;
34dc7c2f 2160
4f22619a
KT
2161 if (prevdb) {
2162 ASSERT(prevhdl != NULL);
7b8518cb 2163 zfs_release_sa_handle(prevhdl, prevdb, FTAG);
4f22619a 2164 }
572e2857 2165
b23ad7f3 2166 if ((error = zfs_obj_to_pobj(osp, sa_hdl, sa_table, &pobj,
572e2857 2167 &is_xattrdir)) != 0)
34dc7c2f
BB
2168 break;
2169
2170 if (pobj == obj) {
2171 if (path[0] != '/')
2172 *--path = '/';
2173 break;
2174 }
2175
2176 component[0] = '/';
2177 if (is_xattrdir) {
861166b0 2178 strcpy(component + 1, "<xattrdir>");
34dc7c2f
BB
2179 } else {
2180 error = zap_value_search(osp, pobj, obj,
2181 ZFS_DIRENT_OBJ(-1ULL), component + 1);
2182 if (error != 0)
2183 break;
2184 }
2185
2186 complen = strlen(component);
2187 path -= complen;
2188 ASSERT(path >= buf);
861166b0 2189 memcpy(path, component, complen);
34dc7c2f 2190 obj = pobj;
572e2857
BB
2191
2192 if (sa_hdl != hdl) {
2193 prevhdl = sa_hdl;
2194 prevdb = sa_db;
2195 }
7b8518cb 2196 error = zfs_grab_sa_handle(osp, obj, &sa_hdl, &sa_db, FTAG);
572e2857
BB
2197 if (error != 0) {
2198 sa_hdl = prevhdl;
2199 sa_db = prevdb;
2200 break;
2201 }
2202 }
2203
2204 if (sa_hdl != NULL && sa_hdl != hdl) {
2205 ASSERT(sa_db != NULL);
7b8518cb 2206 zfs_release_sa_handle(sa_hdl, sa_db, FTAG);
34dc7c2f
BB
2207 }
2208
2209 if (error == 0)
2210 (void) memmove(buf, path, buf + len - path);
428870ff 2211
34dc7c2f
BB
2212 return (error);
2213}
572e2857
BB
2214
2215int
2216zfs_obj_to_path(objset_t *osp, uint64_t obj, char *buf, int len)
2217{
2218 sa_attr_type_t *sa_table;
2219 sa_handle_t *hdl;
2220 dmu_buf_t *db;
2221 int error;
2222
2223 error = zfs_sa_setup(osp, &sa_table);
2224 if (error != 0)
2225 return (error);
2226
7b8518cb 2227 error = zfs_grab_sa_handle(osp, obj, &hdl, &db, FTAG);
572e2857
BB
2228 if (error != 0)
2229 return (error);
2230
2231 error = zfs_obj_to_path_impl(osp, obj, hdl, sa_table, buf, len);
2232
7b8518cb 2233 zfs_release_sa_handle(hdl, db, FTAG);
572e2857
BB
2234 return (error);
2235}
2236
2237int
2238zfs_obj_to_stats(objset_t *osp, uint64_t obj, zfs_stat_t *sb,
2239 char *buf, int len)
2240{
2241 char *path = buf + len - 1;
2242 sa_attr_type_t *sa_table;
2243 sa_handle_t *hdl;
2244 dmu_buf_t *db;
2245 int error;
2246
2247 *path = '\0';
2248
2249 error = zfs_sa_setup(osp, &sa_table);
2250 if (error != 0)
2251 return (error);
2252
7b8518cb 2253 error = zfs_grab_sa_handle(osp, obj, &hdl, &db, FTAG);
572e2857
BB
2254 if (error != 0)
2255 return (error);
2256
2257 error = zfs_obj_to_stats_impl(hdl, sa_table, sb);
2258 if (error != 0) {
7b8518cb 2259 zfs_release_sa_handle(hdl, db, FTAG);
572e2857
BB
2260 return (error);
2261 }
2262
2263 error = zfs_obj_to_path_impl(osp, obj, hdl, sa_table, buf, len);
2264
7b8518cb 2265 zfs_release_sa_handle(hdl, db, FTAG);
572e2857
BB
2266 return (error);
2267}
c28b2279 2268
2b9f8ba6
RN
2269/*
2270 * Read a property stored within the master node.
2271 */
2272int
2273zfs_get_zplprop(objset_t *os, zfs_prop_t prop, uint64_t *value)
2274{
2275 uint64_t *cached_copy = NULL;
2276
2277 /*
2278 * Figure out where in the objset_t the cached copy would live, if it
2279 * is available for the requested property.
2280 */
2281 if (os != NULL) {
2282 switch (prop) {
2283 case ZFS_PROP_VERSION:
2284 cached_copy = &os->os_version;
2285 break;
2286 case ZFS_PROP_NORMALIZE:
2287 cached_copy = &os->os_normalization;
2288 break;
2289 case ZFS_PROP_UTF8ONLY:
2290 cached_copy = &os->os_utf8only;
2291 break;
2292 case ZFS_PROP_CASE:
2293 cached_copy = &os->os_casesensitivity;
2294 break;
2295 default:
2296 break;
2297 }
2298 }
2299 if (cached_copy != NULL && *cached_copy != OBJSET_PROP_UNINITIALIZED) {
2300 *value = *cached_copy;
2301 return (0);
2302 }
2303
2304 /*
2305 * If the property wasn't cached, look up the file system's value for
2306 * the property. For the version property, we look up a slightly
2307 * different string.
2308 */
2309 const char *pname;
2310 int error = ENOENT;
2311 if (prop == ZFS_PROP_VERSION)
2312 pname = ZPL_VERSION_STR;
2313 else
2314 pname = zfs_prop_to_name(prop);
2315
2316 if (os != NULL) {
2317 ASSERT3U(os->os_phys->os_type, ==, DMU_OST_ZFS);
2318 error = zap_lookup(os, MASTER_NODE_OBJ, pname, 8, 1, value);
2319 }
2320
2321 if (error == ENOENT) {
2322 /* No value set, use the default value */
2323 switch (prop) {
2324 case ZFS_PROP_VERSION:
2325 *value = ZPL_VERSION;
2326 break;
2327 case ZFS_PROP_NORMALIZE:
2328 case ZFS_PROP_UTF8ONLY:
2329 *value = 0;
2330 break;
2331 case ZFS_PROP_CASE:
2332 *value = ZFS_CASE_SENSITIVE;
2333 break;
2334 case ZFS_PROP_ACLTYPE:
2335 *value = ZFS_ACLTYPE_OFF;
2336 break;
2337 default:
2338 return (error);
2339 }
2340 error = 0;
2341 }
2342
2343 /*
2344 * If one of the methods for getting the property value above worked,
2345 * copy it into the objset_t's cache.
2346 */
2347 if (error == 0 && cached_copy != NULL) {
2348 *cached_copy = *value;
2349 }
2350
2351 return (error);
2352}
2353
93ce2b4c 2354#if defined(_KERNEL)
c28b2279
BB
2355EXPORT_SYMBOL(zfs_create_fs);
2356EXPORT_SYMBOL(zfs_obj_to_path);
0720116d 2357
02730c33 2358/* CSTYLED */
0720116d
BB
2359module_param(zfs_object_mutex_size, uint, 0644);
2360MODULE_PARM_DESC(zfs_object_mutex_size, "Size of znode hold array");
dcec0a12
AP
2361module_param(zfs_unlink_suspend_progress, int, 0644);
2362MODULE_PARM_DESC(zfs_unlink_suspend_progress, "Set to prevent async unlinks "
2363"(debug - leaks space into the unlinked set)");
c28b2279 2364#endif