2008-11-20 20:01:55 +00:00
|
|
|
/*
|
|
|
|
* CDDL HEADER START
|
|
|
|
*
|
|
|
|
* The contents of this file are subject to the terms of the
|
|
|
|
* Common Development and Distribution License (the "License").
|
|
|
|
* You may not use this file except in compliance with the License.
|
|
|
|
*
|
|
|
|
* You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
|
|
|
|
* or http://www.opensolaris.org/os/licensing.
|
|
|
|
* See the License for the specific language governing permissions
|
|
|
|
* and limitations under the License.
|
|
|
|
*
|
|
|
|
* When distributing Covered Code, include this CDDL HEADER in each
|
|
|
|
* file and include the License file at usr/src/OPENSOLARIS.LICENSE.
|
|
|
|
* If applicable, add the following below this CDDL HEADER, with the
|
|
|
|
* fields enclosed by brackets "[]" replaced with your own identifying
|
|
|
|
* information: Portions Copyright [yyyy] [name of copyright owner]
|
|
|
|
*
|
|
|
|
* CDDL HEADER END
|
|
|
|
*/
|
|
|
|
/*
|
2010-08-26 21:24:34 +00:00
|
|
|
* Copyright (c) 2005, 2010, Oracle and/or its affiliates. All rights reserved.
|
2013-09-04 12:00:57 +00:00
|
|
|
* Copyright (c) 2012 by Delphix. All rights reserved.
|
2008-11-20 20:01:55 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef _SYS_FS_ZFS_ZNODE_H
|
|
|
|
#define _SYS_FS_ZFS_ZNODE_H
|
|
|
|
|
|
|
|
#ifdef _KERNEL
|
|
|
|
#include <sys/isa_defs.h>
|
|
|
|
#include <sys/types32.h>
|
|
|
|
#include <sys/attr.h>
|
|
|
|
#include <sys/list.h>
|
|
|
|
#include <sys/dmu.h>
|
2010-05-28 20:45:14 +00:00
|
|
|
#include <sys/sa.h>
|
2008-11-20 20:01:55 +00:00
|
|
|
#include <sys/zfs_vfsops.h>
|
|
|
|
#include <sys/rrwlock.h>
|
2010-05-28 20:45:14 +00:00
|
|
|
#include <sys/zfs_sa.h>
|
2010-08-26 21:24:34 +00:00
|
|
|
#include <sys/zfs_stat.h>
|
2008-11-20 20:01:55 +00:00
|
|
|
#endif
|
|
|
|
#include <sys/zfs_acl.h>
|
|
|
|
#include <sys/zil.h>
|
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
extern "C" {
|
|
|
|
#endif
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Additional file level attributes, that are stored
|
|
|
|
* in the upper half of zp_flags
|
|
|
|
*/
|
2010-08-26 16:52:39 +00:00
|
|
|
#define ZFS_READONLY 0x0000000100000000ull
|
|
|
|
#define ZFS_HIDDEN 0x0000000200000000ull
|
|
|
|
#define ZFS_SYSTEM 0x0000000400000000ull
|
|
|
|
#define ZFS_ARCHIVE 0x0000000800000000ull
|
|
|
|
#define ZFS_IMMUTABLE 0x0000001000000000ull
|
|
|
|
#define ZFS_NOUNLINK 0x0000002000000000ull
|
|
|
|
#define ZFS_APPENDONLY 0x0000004000000000ull
|
|
|
|
#define ZFS_NODUMP 0x0000008000000000ull
|
|
|
|
#define ZFS_OPAQUE 0x0000010000000000ull
|
2011-03-01 20:24:09 +00:00
|
|
|
#define ZFS_AV_QUARANTINED 0x0000020000000000ull
|
|
|
|
#define ZFS_AV_MODIFIED 0x0000040000000000ull
|
2010-08-26 16:52:39 +00:00
|
|
|
#define ZFS_REPARSE 0x0000080000000000ull
|
|
|
|
#define ZFS_OFFLINE 0x0000100000000000ull
|
|
|
|
#define ZFS_SPARSE 0x0000200000000000ull
|
2008-11-20 20:01:55 +00:00
|
|
|
|
2010-05-28 20:45:14 +00:00
|
|
|
#define ZFS_ATTR_SET(zp, attr, value, pflags, tx) \
|
2008-11-20 20:01:55 +00:00
|
|
|
{ \
|
|
|
|
if (value) \
|
2010-05-28 20:45:14 +00:00
|
|
|
pflags |= attr; \
|
2008-11-20 20:01:55 +00:00
|
|
|
else \
|
2010-05-28 20:45:14 +00:00
|
|
|
pflags &= ~attr; \
|
2011-03-01 20:24:09 +00:00
|
|
|
VERIFY(0 == sa_update(zp->z_sa_hdl, SA_ZPL_FLAGS(ZTOZSB(zp)), \
|
2010-05-28 20:45:14 +00:00
|
|
|
&pflags, sizeof (pflags), tx)); \
|
2008-11-20 20:01:55 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Define special zfs pflags
|
|
|
|
*/
|
|
|
|
#define ZFS_XATTR 0x1 /* is an extended attribute */
|
|
|
|
#define ZFS_INHERIT_ACE 0x2 /* ace has inheritable ACEs */
|
2011-03-01 20:24:09 +00:00
|
|
|
#define ZFS_ACL_TRIVIAL 0x4 /* files ACL is trivial */
|
|
|
|
#define ZFS_ACL_OBJ_ACE 0x8 /* ACL has CMPLX Object ACE */
|
2008-11-20 20:01:55 +00:00
|
|
|
#define ZFS_ACL_PROTECTED 0x10 /* ACL protected */
|
|
|
|
#define ZFS_ACL_DEFAULTED 0x20 /* ACL should be defaulted */
|
|
|
|
#define ZFS_ACL_AUTO_INHERIT 0x40 /* ACL should be inherited */
|
|
|
|
#define ZFS_BONUS_SCANSTAMP 0x80 /* Scanstamp in bonus area */
|
2009-08-18 18:43:27 +00:00
|
|
|
#define ZFS_NO_EXECS_DENIED 0x100 /* exec was given to everyone */
|
2008-11-20 20:01:55 +00:00
|
|
|
|
2010-05-28 20:45:14 +00:00
|
|
|
#define SA_ZPL_ATIME(z) z->z_attr_table[ZPL_ATIME]
|
|
|
|
#define SA_ZPL_MTIME(z) z->z_attr_table[ZPL_MTIME]
|
|
|
|
#define SA_ZPL_CTIME(z) z->z_attr_table[ZPL_CTIME]
|
|
|
|
#define SA_ZPL_CRTIME(z) z->z_attr_table[ZPL_CRTIME]
|
|
|
|
#define SA_ZPL_GEN(z) z->z_attr_table[ZPL_GEN]
|
|
|
|
#define SA_ZPL_DACL_ACES(z) z->z_attr_table[ZPL_DACL_ACES]
|
|
|
|
#define SA_ZPL_XATTR(z) z->z_attr_table[ZPL_XATTR]
|
|
|
|
#define SA_ZPL_SYMLINK(z) z->z_attr_table[ZPL_SYMLINK]
|
|
|
|
#define SA_ZPL_RDEV(z) z->z_attr_table[ZPL_RDEV]
|
|
|
|
#define SA_ZPL_SCANSTAMP(z) z->z_attr_table[ZPL_SCANSTAMP]
|
|
|
|
#define SA_ZPL_UID(z) z->z_attr_table[ZPL_UID]
|
|
|
|
#define SA_ZPL_GID(z) z->z_attr_table[ZPL_GID]
|
|
|
|
#define SA_ZPL_PARENT(z) z->z_attr_table[ZPL_PARENT]
|
|
|
|
#define SA_ZPL_LINKS(z) z->z_attr_table[ZPL_LINKS]
|
|
|
|
#define SA_ZPL_MODE(z) z->z_attr_table[ZPL_MODE]
|
|
|
|
#define SA_ZPL_DACL_COUNT(z) z->z_attr_table[ZPL_DACL_COUNT]
|
|
|
|
#define SA_ZPL_FLAGS(z) z->z_attr_table[ZPL_FLAGS]
|
|
|
|
#define SA_ZPL_SIZE(z) z->z_attr_table[ZPL_SIZE]
|
|
|
|
#define SA_ZPL_ZNODE_ACL(z) z->z_attr_table[ZPL_ZNODE_ACL]
|
2011-10-24 23:55:20 +00:00
|
|
|
#define SA_ZPL_DXATTR(z) z->z_attr_table[ZPL_DXATTR]
|
2010-05-28 20:45:14 +00:00
|
|
|
#define SA_ZPL_PAD(z) z->z_attr_table[ZPL_PAD]
|
|
|
|
|
2008-11-20 20:01:55 +00:00
|
|
|
/*
|
|
|
|
* Is ID ephemeral?
|
|
|
|
*/
|
|
|
|
#define IS_EPHEMERAL(x) (x > MAXUID)
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Should we use FUIDs?
|
|
|
|
*/
|
2010-05-28 20:45:14 +00:00
|
|
|
#define USE_FUIDS(version, os) (version >= ZPL_VERSION_FUID && \
|
2008-11-20 20:01:55 +00:00
|
|
|
spa_version(dmu_objset_spa(os)) >= SPA_VERSION_FUID)
|
2010-05-28 20:45:14 +00:00
|
|
|
#define USE_SA(version, os) (version >= ZPL_VERSION_SA && \
|
|
|
|
spa_version(dmu_objset_spa(os)) >= SPA_VERSION_SA)
|
2008-11-20 20:01:55 +00:00
|
|
|
|
|
|
|
#define MASTER_NODE_OBJ 1
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Special attributes for master node.
|
2009-07-02 22:44:48 +00:00
|
|
|
* "userquota@" and "groupquota@" are also valid (from
|
|
|
|
* zfs_userquota_prop_prefixes[]).
|
2008-11-20 20:01:55 +00:00
|
|
|
*/
|
|
|
|
#define ZFS_FSID "FSID"
|
|
|
|
#define ZFS_UNLINKED_SET "DELETE_QUEUE"
|
|
|
|
#define ZFS_ROOT_OBJ "ROOT"
|
|
|
|
#define ZPL_VERSION_STR "VERSION"
|
|
|
|
#define ZFS_FUID_TABLES "FUID"
|
2009-07-02 22:44:48 +00:00
|
|
|
#define ZFS_SHARES_DIR "SHARES"
|
2010-05-28 20:45:14 +00:00
|
|
|
#define ZFS_SA_ATTRS "SA_ATTRS"
|
2008-11-20 20:01:55 +00:00
|
|
|
|
|
|
|
#define ZFS_MAX_BLOCKSIZE (SPA_MAXBLOCKSIZE)
|
|
|
|
|
|
|
|
/*
|
2013-06-11 17:12:34 +00:00
|
|
|
* Path component length
|
|
|
|
*
|
2008-11-20 20:01:55 +00:00
|
|
|
* The generic fs code uses MAXNAMELEN to represent
|
|
|
|
* what the largest component length is. Unfortunately,
|
|
|
|
* this length includes the terminating NULL. ZFS needs
|
|
|
|
* to tell the users via pathconf() and statvfs() what the
|
|
|
|
* true maximum length of a component is, excluding the NULL.
|
|
|
|
*/
|
|
|
|
#define ZFS_MAXNAMELEN (MAXNAMELEN - 1)
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Convert mode bits (zp_mode) to BSD-style DT_* values for storing in
|
2010-08-26 18:54:51 +00:00
|
|
|
* the directory entries. On Linux systems this value is already
|
|
|
|
* defined correctly as part of the /usr/include/dirent.h header file.
|
2008-11-20 20:01:55 +00:00
|
|
|
*/
|
2010-08-26 18:54:51 +00:00
|
|
|
#ifndef IFTODT
|
2008-11-20 20:01:55 +00:00
|
|
|
#define IFTODT(mode) (((mode) & S_IFMT) >> 12)
|
2010-08-26 18:54:51 +00:00
|
|
|
#endif
|
2008-11-20 20:01:55 +00:00
|
|
|
|
|
|
|
/*
|
|
|
|
* The directory entry has the type (currently unused on Solaris) in the
|
|
|
|
* top 4 bits, and the object number in the low 48 bits. The "middle"
|
|
|
|
* 12 bits are unused.
|
|
|
|
*/
|
|
|
|
#define ZFS_DIRENT_TYPE(de) BF64_GET(de, 60, 4)
|
|
|
|
#define ZFS_DIRENT_OBJ(de) BF64_GET(de, 0, 48)
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Directory entry locks control access to directory entries.
|
|
|
|
* They are used to protect creates, deletes, and renames.
|
|
|
|
* Each directory znode has a mutex and a list of locked names.
|
|
|
|
*/
|
|
|
|
#ifdef _KERNEL
|
|
|
|
typedef struct zfs_dirlock {
|
|
|
|
char *dl_name; /* directory entry being locked */
|
|
|
|
uint32_t dl_sharecnt; /* 0 if exclusive, > 0 if shared */
|
2010-05-28 20:45:14 +00:00
|
|
|
uint8_t dl_namelock; /* 1 if z_name_lock is NOT held */
|
2008-11-20 20:01:55 +00:00
|
|
|
uint16_t dl_namesize; /* set if dl_name was allocated */
|
|
|
|
kcondvar_t dl_cv; /* wait for entry to be unlocked */
|
|
|
|
struct znode *dl_dzp; /* directory znode */
|
|
|
|
struct zfs_dirlock *dl_next; /* next in z_dirlocks list */
|
|
|
|
} zfs_dirlock_t;
|
|
|
|
|
|
|
|
typedef struct znode {
|
|
|
|
uint64_t z_id; /* object ID for this znode */
|
|
|
|
kmutex_t z_lock; /* znode modification lock */
|
|
|
|
krwlock_t z_parent_lock; /* parent lock for directories */
|
|
|
|
krwlock_t z_name_lock; /* "master" lock for dirent locks */
|
|
|
|
zfs_dirlock_t *z_dirlocks; /* directory entry lock list */
|
|
|
|
kmutex_t z_range_lock; /* protects changes to z_range_avl */
|
|
|
|
avl_tree_t z_range_avl; /* avl tree of file range locks */
|
|
|
|
uint8_t z_unlinked; /* file has been unlinked */
|
|
|
|
uint8_t z_atime_dirty; /* atime needs to be synced */
|
|
|
|
uint8_t z_zn_prefetch; /* Prefetch znodes? */
|
2010-08-26 21:24:34 +00:00
|
|
|
uint8_t z_moved; /* Has this znode been moved? */
|
2008-11-20 20:01:55 +00:00
|
|
|
uint_t z_blksz; /* block size in bytes */
|
|
|
|
uint_t z_seq; /* modification sequence number */
|
|
|
|
uint64_t z_mapcnt; /* number of pages mapped to file */
|
2010-05-28 20:45:14 +00:00
|
|
|
uint64_t z_gen; /* generation (cached) */
|
|
|
|
uint64_t z_size; /* file size (cached) */
|
|
|
|
uint64_t z_atime[2]; /* atime (cached) */
|
|
|
|
uint64_t z_links; /* file links (cached) */
|
|
|
|
uint64_t z_pflags; /* pflags (cached) */
|
2010-08-26 21:24:34 +00:00
|
|
|
uint64_t z_uid; /* uid fuid (cached) */
|
|
|
|
uint64_t z_gid; /* gid fuid (cached) */
|
2008-11-20 20:01:55 +00:00
|
|
|
uint32_t z_sync_cnt; /* synchronous open count */
|
2014-01-07 22:16:46 +00:00
|
|
|
mode_t z_mode; /* mode (cached) */
|
2008-11-20 20:01:55 +00:00
|
|
|
kmutex_t z_acl_lock; /* acl data lock */
|
2009-08-18 18:43:27 +00:00
|
|
|
zfs_acl_t *z_acl_cached; /* cached acl */
|
2011-10-24 23:55:20 +00:00
|
|
|
krwlock_t z_xattr_lock; /* xattr data lock */
|
2013-11-01 19:26:11 +00:00
|
|
|
nvlist_t *z_xattr_cached; /* cached xattrs */
|
|
|
|
struct znode *z_xattr_parent; /* xattr parent znode */
|
2008-11-20 20:01:55 +00:00
|
|
|
list_node_t z_link_node; /* all znodes in fs link */
|
2010-05-28 20:45:14 +00:00
|
|
|
sa_handle_t *z_sa_hdl; /* handle to sa data */
|
|
|
|
boolean_t z_is_sa; /* are we native sa? */
|
2011-02-08 19:29:50 +00:00
|
|
|
boolean_t z_is_zvol; /* are we used by the zvol */
|
2011-02-03 18:34:05 +00:00
|
|
|
boolean_t z_is_mapped; /* are we mmap'ed */
|
2011-11-11 07:15:53 +00:00
|
|
|
boolean_t z_is_ctldir; /* are we .zfs entry */
|
2013-01-16 00:41:09 +00:00
|
|
|
boolean_t z_is_stale; /* are we stale due to rollback? */
|
2011-01-05 21:16:12 +00:00
|
|
|
struct inode z_inode; /* generic vfs inode */
|
2008-11-20 20:01:55 +00:00
|
|
|
} znode_t;
|
|
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Range locking rules
|
|
|
|
* --------------------
|
|
|
|
* 1. When truncating a file (zfs_create, zfs_setattr, zfs_space) the whole
|
|
|
|
* file range needs to be locked as RL_WRITER. Only then can the pages be
|
|
|
|
* freed etc and zp_size reset. zp_size must be set within range lock.
|
|
|
|
* 2. For writes and punching holes (zfs_write & zfs_space) just the range
|
|
|
|
* being written or freed needs to be locked as RL_WRITER.
|
|
|
|
* Multiple writes at the end of the file must coordinate zp_size updates
|
|
|
|
* to ensure data isn't lost. A compare and swap loop is currently used
|
|
|
|
* to ensure the file size is at least the offset last written.
|
|
|
|
* 3. For reads (zfs_read, zfs_get_data & zfs_putapage) just the range being
|
|
|
|
* read needs to be locked as RL_READER. A check against zp_size can then
|
|
|
|
* be made for reading beyond end of file.
|
|
|
|
*/
|
|
|
|
|
|
|
|
/*
|
2011-01-05 21:16:12 +00:00
|
|
|
* Convert between znode pointers and inode pointers
|
2008-11-20 20:01:55 +00:00
|
|
|
*/
|
2011-02-08 19:16:06 +00:00
|
|
|
#define ZTOI(znode) (&((znode)->z_inode))
|
|
|
|
#define ITOZ(inode) (container_of((inode), znode_t, z_inode))
|
2011-05-19 18:44:07 +00:00
|
|
|
#define ZTOZSB(znode) ((zfs_sb_t *)(ZTOI(znode)->i_sb->s_fs_info))
|
|
|
|
#define ITOZSB(inode) ((zfs_sb_t *)((inode)->i_sb->s_fs_info))
|
2008-11-20 20:01:55 +00:00
|
|
|
|
2011-02-08 19:16:06 +00:00
|
|
|
#define S_ISDEV(mode) (S_ISCHR(mode) || S_ISBLK(mode) || S_ISFIFO(mode))
|
2011-01-05 21:16:12 +00:00
|
|
|
|
2013-06-11 17:12:34 +00:00
|
|
|
/* Called on entry to each ZFS vnode and vfs operation */
|
2011-02-08 19:16:06 +00:00
|
|
|
#define ZFS_ENTER(zsb) \
|
2008-11-20 20:01:55 +00:00
|
|
|
{ \
|
2013-09-04 12:00:57 +00:00
|
|
|
rrw_enter_read(&(zsb)->z_teardown_lock, FTAG); \
|
2011-02-08 19:16:06 +00:00
|
|
|
if ((zsb)->z_unmounted) { \
|
|
|
|
ZFS_EXIT(zsb); \
|
2008-11-20 20:01:55 +00:00
|
|
|
return (EIO); \
|
|
|
|
} \
|
|
|
|
}
|
|
|
|
|
2013-06-11 17:12:34 +00:00
|
|
|
/* Must be called before exiting the vop */
|
2011-02-08 19:16:06 +00:00
|
|
|
#define ZFS_EXIT(zsb) \
|
|
|
|
{ \
|
|
|
|
rrw_exit(&(zsb)->z_teardown_lock, FTAG); \
|
|
|
|
tsd_exit(); \
|
|
|
|
}
|
2008-11-20 20:01:55 +00:00
|
|
|
|
2013-06-11 17:12:34 +00:00
|
|
|
/* Verifies the znode is valid */
|
2008-11-20 20:01:55 +00:00
|
|
|
#define ZFS_VERIFY_ZP(zp) \
|
2010-05-28 20:45:14 +00:00
|
|
|
if ((zp)->z_sa_hdl == NULL) { \
|
2011-02-08 19:16:06 +00:00
|
|
|
ZFS_EXIT(ZTOZSB(zp)); \
|
2008-11-20 20:01:55 +00:00
|
|
|
return (EIO); \
|
2011-02-08 19:16:06 +00:00
|
|
|
}
|
2008-11-20 20:01:55 +00:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Macros for dealing with dmu_buf_hold
|
|
|
|
*/
|
|
|
|
#define ZFS_OBJ_HASH(obj_num) ((obj_num) & (ZFS_OBJ_MTX_SZ - 1))
|
2011-02-08 19:16:06 +00:00
|
|
|
#define ZFS_OBJ_MUTEX(zsb, obj_num) \
|
|
|
|
(&(zsb)->z_hold_mtx[ZFS_OBJ_HASH(obj_num)])
|
|
|
|
#define ZFS_OBJ_HOLD_ENTER(zsb, obj_num) \
|
|
|
|
mutex_enter(ZFS_OBJ_MUTEX((zsb), (obj_num)))
|
|
|
|
#define ZFS_OBJ_HOLD_TRYENTER(zsb, obj_num) \
|
|
|
|
mutex_tryenter(ZFS_OBJ_MUTEX((zsb), (obj_num)))
|
|
|
|
#define ZFS_OBJ_HOLD_EXIT(zsb, obj_num) \
|
|
|
|
mutex_exit(ZFS_OBJ_MUTEX((zsb), (obj_num)))
|
2011-03-21 17:19:30 +00:00
|
|
|
#define ZFS_OBJ_HOLD_OWNED(zsb, obj_num) \
|
|
|
|
mutex_owned(ZFS_OBJ_MUTEX((zsb), (obj_num)))
|
2008-11-20 20:01:55 +00:00
|
|
|
|
2013-06-11 17:12:34 +00:00
|
|
|
/* Encode ZFS stored time values from a struct timespec */
|
2008-11-20 20:01:55 +00:00
|
|
|
#define ZFS_TIME_ENCODE(tp, stmp) \
|
|
|
|
{ \
|
2008-12-03 20:09:06 +00:00
|
|
|
(stmp)[0] = (uint64_t)(tp)->tv_sec; \
|
2008-11-20 20:01:55 +00:00
|
|
|
(stmp)[1] = (uint64_t)(tp)->tv_nsec; \
|
|
|
|
}
|
|
|
|
|
2013-06-11 17:12:34 +00:00
|
|
|
/* Decode ZFS stored time values to a struct timespec */
|
2008-11-20 20:01:55 +00:00
|
|
|
#define ZFS_TIME_DECODE(tp, stmp) \
|
|
|
|
{ \
|
|
|
|
(tp)->tv_sec = (time_t)(stmp)[0]; \
|
|
|
|
(tp)->tv_nsec = (long)(stmp)[1]; \
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Timestamp defines
|
|
|
|
*/
|
2011-02-08 19:16:06 +00:00
|
|
|
#define ACCESSED (ATTR_ATIME)
|
|
|
|
#define STATE_CHANGED (ATTR_CTIME)
|
|
|
|
#define CONTENT_MODIFIED (ATTR_MTIME | ATTR_CTIME)
|
2008-11-20 20:01:55 +00:00
|
|
|
|
2011-02-08 19:16:06 +00:00
|
|
|
#define ZFS_ACCESSTIME_STAMP(zsb, zp) \
|
2011-05-19 18:44:07 +00:00
|
|
|
if ((zsb)->z_atime && !(zfs_is_readonly(zsb))) \
|
2010-05-28 20:45:14 +00:00
|
|
|
zfs_tstamp_update_setup(zp, ACCESSED, NULL, NULL, B_FALSE);
|
2008-11-20 20:01:55 +00:00
|
|
|
|
2011-02-08 19:16:06 +00:00
|
|
|
extern int zfs_init_fs(zfs_sb_t *, znode_t **);
|
2008-11-20 20:01:55 +00:00
|
|
|
extern void zfs_set_dataprop(objset_t *);
|
|
|
|
extern void zfs_create_fs(objset_t *os, cred_t *cr, nvlist_t *,
|
|
|
|
dmu_tx_t *tx);
|
2010-05-28 20:45:14 +00:00
|
|
|
extern void zfs_tstamp_update_setup(znode_t *, uint_t, uint64_t [2],
|
|
|
|
uint64_t [2], boolean_t);
|
2008-11-20 20:01:55 +00:00
|
|
|
extern void zfs_grow_blocksize(znode_t *, uint64_t, dmu_tx_t *);
|
|
|
|
extern int zfs_freesp(znode_t *, uint64_t, uint64_t, int, boolean_t);
|
|
|
|
extern void zfs_znode_init(void);
|
|
|
|
extern void zfs_znode_fini(void);
|
2011-02-08 19:16:06 +00:00
|
|
|
extern int zfs_zget(zfs_sb_t *, uint64_t, znode_t **);
|
2008-11-20 20:01:55 +00:00
|
|
|
extern int zfs_rezget(znode_t *);
|
|
|
|
extern void zfs_zinactive(znode_t *);
|
|
|
|
extern void zfs_znode_delete(znode_t *, dmu_tx_t *);
|
2010-08-26 16:52:41 +00:00
|
|
|
extern void zfs_remove_op_tables(void);
|
|
|
|
extern int zfs_create_op_tables(void);
|
2011-03-15 19:03:42 +00:00
|
|
|
extern int zfs_sync(struct super_block *, int, cred_t *);
|
2008-11-20 20:01:55 +00:00
|
|
|
extern dev_t zfs_cmpldev(uint64_t);
|
|
|
|
extern int zfs_get_zplprop(objset_t *os, zfs_prop_t prop, uint64_t *value);
|
|
|
|
extern int zfs_get_stats(objset_t *os, nvlist_t *nv);
|
|
|
|
extern void zfs_znode_dmu_fini(znode_t *);
|
2011-02-08 19:16:06 +00:00
|
|
|
extern int zfs_inode_alloc(struct super_block *, struct inode **ip);
|
|
|
|
extern void zfs_inode_destroy(struct inode *);
|
2011-01-05 22:27:30 +00:00
|
|
|
extern void zfs_inode_update(znode_t *);
|
2014-07-15 20:29:57 +00:00
|
|
|
extern void zfs_mark_inode_dirty(struct inode *);
|
2008-11-20 20:01:55 +00:00
|
|
|
|
|
|
|
extern void zfs_log_create(zilog_t *zilog, dmu_tx_t *tx, uint64_t txtype,
|
|
|
|
znode_t *dzp, znode_t *zp, char *name, vsecattr_t *, zfs_fuid_info_t *,
|
|
|
|
vattr_t *vap);
|
|
|
|
extern int zfs_log_create_txtype(zil_create_t, vsecattr_t *vsecp,
|
|
|
|
vattr_t *vap);
|
|
|
|
extern void zfs_log_remove(zilog_t *zilog, dmu_tx_t *tx, uint64_t txtype,
|
2010-08-26 21:24:34 +00:00
|
|
|
znode_t *dzp, char *name, uint64_t foid);
|
|
|
|
#define ZFS_NO_OBJECT 0 /* no object id */
|
2008-11-20 20:01:55 +00:00
|
|
|
extern void zfs_log_link(zilog_t *zilog, dmu_tx_t *tx, uint64_t txtype,
|
|
|
|
znode_t *dzp, znode_t *zp, char *name);
|
|
|
|
extern void zfs_log_symlink(zilog_t *zilog, dmu_tx_t *tx, uint64_t txtype,
|
|
|
|
znode_t *dzp, znode_t *zp, char *name, char *link);
|
|
|
|
extern void zfs_log_rename(zilog_t *zilog, dmu_tx_t *tx, uint64_t txtype,
|
|
|
|
znode_t *sdzp, char *sname, znode_t *tdzp, char *dname, znode_t *szp);
|
|
|
|
extern void zfs_log_write(zilog_t *zilog, dmu_tx_t *tx, int txtype,
|
Only commit the ZIL once in zpl_writepages() (msync() case).
Currently, using msync() results in the following code path:
sys_msync -> zpl_fsync -> filemap_write_and_wait_range -> zpl_writepages -> write_cache_pages -> zpl_putpage
In such a code path, zil_commit() is called as part of zpl_putpage().
This means that for each page, the write is handed to the DMU, the ZIL
is committed, and only then do we move on to the next page. As one might
imagine, this results in atrocious performance where there is a large
number of pages to write: instead of committing a batch of N writes,
we do N commits containing one page each. In some extreme cases this
can result in msync() being ~700 times slower than it should be, as well
as very inefficient use of ZIL resources.
This patch fixes this issue by making sure that the requested writes
are batched and then committed only once. Unfortunately, the
implementation is somewhat non-trivial because there is no way to run
write_cache_pages in SYNC mode (so that we get all pages) without
making it wait on the writeback tag for each page.
The solution implemented here is composed of two parts:
- I added a new callback system to the ZIL, which allows the caller to
be notified when its ITX gets written to stable storage. One nice
thing is that the callback is called not only in zil_commit() but
in zil_sync() as well, which means that the caller doesn't have to
care whether the write ended up in the ZIL or the DMU: it will get
notified as soon as it's safe, period. This is an improvement over
dmu_tx_callback_register() that was used previously, which only
supports DMU writes. The rationale for this change is to allow
zpl_putpage() to be notified when a ZIL commit is completed without
having to block on zil_commit() itself.
- zpl_writepages() now calls write_cache_pages in non-SYNC mode, which
will prevent (1) write_cache_pages from blocking, and (2) zpl_putpage
from issuing ZIL commits. zpl_writepages() will issue the commit
itself instead of relying on zpl_putpage() to do it, thus nicely
batching the writes. Note, however, that we still have to call
write_cache_pages() again in SYNC mode because there is an edge case
documented in the implementation of write_cache_pages() whereas it
will not give us all dirty pages when running in non-SYNC mode. Thus
we need to run it at least once in SYNC mode to make sure we honor
persistency guarantees. This only happens when the pages are
modified at the same time msync() is running, which should be rare.
In most cases there won't be any additional pages and this second
call will do nothing.
Note that this change also fixes a bug related to #907 whereas calling
msync() on pages that were already handed over to the DMU in a previous
writepages() call would make msync() block until the next TXG sync
instead of returning as soon as the ZIL commit is complete. The new
callback system fixes that problem.
Signed-off-by: Richard Yao <ryao@gentoo.org>
Signed-off-by: Brian Behlendorf <behlendorf1@llnl.gov>
Closes #1849
Closes #907
2013-11-10 15:00:11 +00:00
|
|
|
znode_t *zp, offset_t off, ssize_t len, int ioflag,
|
|
|
|
zil_callback_t callback, void *callback_data);
|
2008-11-20 20:01:55 +00:00
|
|
|
extern void zfs_log_truncate(zilog_t *zilog, dmu_tx_t *tx, int txtype,
|
|
|
|
znode_t *zp, uint64_t off, uint64_t len);
|
|
|
|
extern void zfs_log_setattr(zilog_t *zilog, dmu_tx_t *tx, int txtype,
|
2011-03-01 20:24:09 +00:00
|
|
|
znode_t *zp, vattr_t *vap, uint_t mask_applied, zfs_fuid_info_t *fuidp);
|
2008-11-20 20:01:55 +00:00
|
|
|
extern void zfs_log_acl(zilog_t *zilog, dmu_tx_t *tx, znode_t *zp,
|
|
|
|
vsecattr_t *vsecp, zfs_fuid_info_t *fuidp);
|
2010-05-28 20:45:14 +00:00
|
|
|
extern void zfs_xvattr_set(znode_t *zp, xvattr_t *xvap, dmu_tx_t *tx);
|
2011-02-08 19:16:06 +00:00
|
|
|
extern void zfs_upgrade(zfs_sb_t *zsb, dmu_tx_t *tx);
|
|
|
|
extern int zfs_create_share_dir(zfs_sb_t *zsb, dmu_tx_t *tx);
|
2008-11-20 20:01:55 +00:00
|
|
|
|
2010-08-26 18:45:02 +00:00
|
|
|
#if defined(HAVE_UIO_RW)
|
2008-12-03 20:09:06 +00:00
|
|
|
extern caddr_t zfs_map_page(page_t *, enum seg_rw);
|
|
|
|
extern void zfs_unmap_page(page_t *, caddr_t);
|
2010-08-26 18:45:02 +00:00
|
|
|
#endif /* HAVE_UIO_RW */
|
2008-12-03 20:09:06 +00:00
|
|
|
|
2008-11-20 20:01:55 +00:00
|
|
|
extern zil_get_data_t zfs_get_data;
|
2013-02-15 04:37:43 +00:00
|
|
|
extern zil_replay_func_t zfs_replay_vector[TX_MAX_TYPE];
|
2008-11-20 20:01:55 +00:00
|
|
|
extern int zfsfstype;
|
|
|
|
|
|
|
|
#endif /* _KERNEL */
|
|
|
|
|
|
|
|
extern int zfs_obj_to_path(objset_t *osp, uint64_t obj, char *buf, int len);
|
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#endif /* _SYS_FS_ZFS_ZNODE_H */
|