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.
|
2017-01-12 17:42:11 +00:00
|
|
|
* Copyright (c) 2015 by Delphix. All rights reserved.
|
2008-11-20 20:01:55 +00:00
|
|
|
*/
|
|
|
|
|
2010-08-26 18:45:02 +00:00
|
|
|
|
2008-11-20 20:01:55 +00:00
|
|
|
#include <sys/types.h>
|
|
|
|
#include <sys/param.h>
|
|
|
|
#include <sys/systm.h>
|
|
|
|
#include <sys/sysmacros.h>
|
|
|
|
#include <sys/cmn_err.h>
|
|
|
|
#include <sys/kmem.h>
|
|
|
|
#include <sys/thread.h>
|
|
|
|
#include <sys/file.h>
|
|
|
|
#include <sys/vfs.h>
|
|
|
|
#include <sys/zfs_znode.h>
|
|
|
|
#include <sys/zfs_dir.h>
|
|
|
|
#include <sys/zil.h>
|
|
|
|
#include <sys/zil_impl.h>
|
|
|
|
#include <sys/byteorder.h>
|
|
|
|
#include <sys/policy.h>
|
|
|
|
#include <sys/stat.h>
|
|
|
|
#include <sys/mode.h>
|
|
|
|
#include <sys/acl.h>
|
|
|
|
#include <sys/dmu.h>
|
|
|
|
#include <sys/spa.h>
|
|
|
|
#include <sys/zfs_fuid.h>
|
|
|
|
#include <sys/ddi.h>
|
2009-01-15 21:59:39 +00:00
|
|
|
#include <sys/dsl_dataset.h>
|
|
|
|
|
2008-11-20 20:01:55 +00:00
|
|
|
/*
|
2009-01-15 21:59:39 +00:00
|
|
|
* These zfs_log_* functions must be called within a dmu tx, in one
|
|
|
|
* of 2 contexts depending on zilog->z_replay:
|
|
|
|
*
|
|
|
|
* Non replay mode
|
|
|
|
* ---------------
|
|
|
|
* We need to record the transaction so that if it is committed to
|
|
|
|
* the Intent Log then it can be replayed. An intent log transaction
|
|
|
|
* structure (itx_t) is allocated and all the information necessary to
|
|
|
|
* possibly replay the transaction is saved in it. The itx is then assigned
|
|
|
|
* a sequence number and inserted in the in-memory list anchored in the zilog.
|
|
|
|
*
|
|
|
|
* Replay mode
|
|
|
|
* -----------
|
|
|
|
* We need to mark the intent log record as replayed in the log header.
|
|
|
|
* This is done in the same transaction as the replay so that they
|
|
|
|
* commit atomically.
|
2008-11-20 20:01:55 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
int
|
|
|
|
zfs_log_create_txtype(zil_create_t type, vsecattr_t *vsecp, vattr_t *vap)
|
|
|
|
{
|
2011-03-01 20:24:09 +00:00
|
|
|
int isxvattr = (vap->va_mask & ATTR_XVATTR);
|
2008-11-20 20:01:55 +00:00
|
|
|
switch (type) {
|
|
|
|
case Z_FILE:
|
|
|
|
if (vsecp == NULL && !isxvattr)
|
|
|
|
return (TX_CREATE);
|
|
|
|
if (vsecp && isxvattr)
|
|
|
|
return (TX_CREATE_ACL_ATTR);
|
|
|
|
if (vsecp)
|
|
|
|
return (TX_CREATE_ACL);
|
|
|
|
else
|
|
|
|
return (TX_CREATE_ATTR);
|
|
|
|
/*NOTREACHED*/
|
|
|
|
case Z_DIR:
|
|
|
|
if (vsecp == NULL && !isxvattr)
|
|
|
|
return (TX_MKDIR);
|
|
|
|
if (vsecp && isxvattr)
|
|
|
|
return (TX_MKDIR_ACL_ATTR);
|
|
|
|
if (vsecp)
|
|
|
|
return (TX_MKDIR_ACL);
|
|
|
|
else
|
|
|
|
return (TX_MKDIR_ATTR);
|
|
|
|
case Z_XATTRDIR:
|
|
|
|
return (TX_MKXATTR);
|
|
|
|
}
|
|
|
|
ASSERT(0);
|
|
|
|
return (TX_MAX_TYPE);
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* build up the log data necessary for logging xvattr_t
|
|
|
|
* First lr_attr_t is initialized. following the lr_attr_t
|
|
|
|
* is the mapsize and attribute bitmap copied from the xvattr_t.
|
|
|
|
* Following the bitmap and bitmapsize two 64 bit words are reserved
|
|
|
|
* for the create time which may be set. Following the create time
|
|
|
|
* records a single 64 bit integer which has the bits to set on
|
|
|
|
* replay for the xvattr.
|
|
|
|
*/
|
|
|
|
static void
|
|
|
|
zfs_log_xvattr(lr_attr_t *lrattr, xvattr_t *xvap)
|
|
|
|
{
|
|
|
|
uint32_t *bitmap;
|
|
|
|
uint64_t *attrs;
|
|
|
|
uint64_t *crtime;
|
|
|
|
xoptattr_t *xoap;
|
|
|
|
void *scanstamp;
|
|
|
|
int i;
|
|
|
|
|
|
|
|
xoap = xva_getxoptattr(xvap);
|
|
|
|
ASSERT(xoap);
|
|
|
|
|
|
|
|
lrattr->lr_attr_masksize = xvap->xva_mapsize;
|
|
|
|
bitmap = &lrattr->lr_attr_bitmap;
|
|
|
|
for (i = 0; i != xvap->xva_mapsize; i++, bitmap++) {
|
|
|
|
*bitmap = xvap->xva_reqattrmap[i];
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Now pack the attributes up in a single uint64_t */
|
|
|
|
attrs = (uint64_t *)bitmap;
|
|
|
|
crtime = attrs + 1;
|
|
|
|
scanstamp = (caddr_t)(crtime + 2);
|
|
|
|
*attrs = 0;
|
|
|
|
if (XVA_ISSET_REQ(xvap, XAT_READONLY))
|
|
|
|
*attrs |= (xoap->xoa_readonly == 0) ? 0 :
|
|
|
|
XAT0_READONLY;
|
|
|
|
if (XVA_ISSET_REQ(xvap, XAT_HIDDEN))
|
|
|
|
*attrs |= (xoap->xoa_hidden == 0) ? 0 :
|
|
|
|
XAT0_HIDDEN;
|
|
|
|
if (XVA_ISSET_REQ(xvap, XAT_SYSTEM))
|
|
|
|
*attrs |= (xoap->xoa_system == 0) ? 0 :
|
|
|
|
XAT0_SYSTEM;
|
|
|
|
if (XVA_ISSET_REQ(xvap, XAT_ARCHIVE))
|
|
|
|
*attrs |= (xoap->xoa_archive == 0) ? 0 :
|
|
|
|
XAT0_ARCHIVE;
|
|
|
|
if (XVA_ISSET_REQ(xvap, XAT_IMMUTABLE))
|
|
|
|
*attrs |= (xoap->xoa_immutable == 0) ? 0 :
|
|
|
|
XAT0_IMMUTABLE;
|
|
|
|
if (XVA_ISSET_REQ(xvap, XAT_NOUNLINK))
|
|
|
|
*attrs |= (xoap->xoa_nounlink == 0) ? 0 :
|
|
|
|
XAT0_NOUNLINK;
|
|
|
|
if (XVA_ISSET_REQ(xvap, XAT_APPENDONLY))
|
|
|
|
*attrs |= (xoap->xoa_appendonly == 0) ? 0 :
|
|
|
|
XAT0_APPENDONLY;
|
|
|
|
if (XVA_ISSET_REQ(xvap, XAT_OPAQUE))
|
|
|
|
*attrs |= (xoap->xoa_opaque == 0) ? 0 :
|
|
|
|
XAT0_APPENDONLY;
|
|
|
|
if (XVA_ISSET_REQ(xvap, XAT_NODUMP))
|
|
|
|
*attrs |= (xoap->xoa_nodump == 0) ? 0 :
|
|
|
|
XAT0_NODUMP;
|
|
|
|
if (XVA_ISSET_REQ(xvap, XAT_AV_QUARANTINED))
|
|
|
|
*attrs |= (xoap->xoa_av_quarantined == 0) ? 0 :
|
|
|
|
XAT0_AV_QUARANTINED;
|
|
|
|
if (XVA_ISSET_REQ(xvap, XAT_AV_MODIFIED))
|
|
|
|
*attrs |= (xoap->xoa_av_modified == 0) ? 0 :
|
|
|
|
XAT0_AV_MODIFIED;
|
|
|
|
if (XVA_ISSET_REQ(xvap, XAT_CREATETIME))
|
|
|
|
ZFS_TIME_ENCODE(&xoap->xoa_createtime, crtime);
|
|
|
|
if (XVA_ISSET_REQ(xvap, XAT_AV_SCANSTAMP))
|
|
|
|
bcopy(xoap->xoa_av_scanstamp, scanstamp, AV_SCANSTAMP_SZ);
|
2010-05-28 20:45:14 +00:00
|
|
|
if (XVA_ISSET_REQ(xvap, XAT_REPARSE))
|
|
|
|
*attrs |= (xoap->xoa_reparse == 0) ? 0 :
|
|
|
|
XAT0_REPARSE;
|
2010-08-26 21:24:34 +00:00
|
|
|
if (XVA_ISSET_REQ(xvap, XAT_OFFLINE))
|
|
|
|
*attrs |= (xoap->xoa_offline == 0) ? 0 :
|
|
|
|
XAT0_OFFLINE;
|
|
|
|
if (XVA_ISSET_REQ(xvap, XAT_SPARSE))
|
|
|
|
*attrs |= (xoap->xoa_sparse == 0) ? 0 :
|
|
|
|
XAT0_SPARSE;
|
2008-11-20 20:01:55 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static void *
|
|
|
|
zfs_log_fuid_ids(zfs_fuid_info_t *fuidp, void *start)
|
|
|
|
{
|
|
|
|
zfs_fuid_t *zfuid;
|
|
|
|
uint64_t *fuidloc = start;
|
|
|
|
|
|
|
|
/* First copy in the ACE FUIDs */
|
|
|
|
for (zfuid = list_head(&fuidp->z_fuids); zfuid;
|
|
|
|
zfuid = list_next(&fuidp->z_fuids, zfuid)) {
|
|
|
|
*fuidloc++ = zfuid->z_logfuid;
|
|
|
|
}
|
|
|
|
return (fuidloc);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static void *
|
|
|
|
zfs_log_fuid_domains(zfs_fuid_info_t *fuidp, void *start)
|
|
|
|
{
|
|
|
|
zfs_fuid_domain_t *zdomain;
|
|
|
|
|
|
|
|
/* now copy in the domain info, if any */
|
|
|
|
if (fuidp->z_domain_str_sz != 0) {
|
|
|
|
for (zdomain = list_head(&fuidp->z_domains); zdomain;
|
|
|
|
zdomain = list_next(&fuidp->z_domains, zdomain)) {
|
|
|
|
bcopy((void *)zdomain->z_domain, start,
|
|
|
|
strlen(zdomain->z_domain) + 1);
|
|
|
|
start = (caddr_t)start +
|
|
|
|
strlen(zdomain->z_domain) + 1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return (start);
|
|
|
|
}
|
|
|
|
|
2016-10-13 00:30:46 +00:00
|
|
|
/*
|
|
|
|
* If zp is an xattr node, check whether the xattr owner is unlinked.
|
|
|
|
* We don't want to log anything if the owner is unlinked.
|
|
|
|
*/
|
|
|
|
static int
|
|
|
|
zfs_xattr_owner_unlinked(znode_t *zp)
|
|
|
|
{
|
|
|
|
int unlinked = 0;
|
|
|
|
znode_t *dzp;
|
|
|
|
igrab(ZTOI(zp));
|
|
|
|
/*
|
|
|
|
* if zp is XATTR node, keep walking up via z_xattr_parent until we
|
|
|
|
* get the owner
|
|
|
|
*/
|
|
|
|
while (zp->z_pflags & ZFS_XATTR) {
|
|
|
|
ASSERT3U(zp->z_xattr_parent, !=, 0);
|
|
|
|
if (zfs_zget(ZTOZSB(zp), zp->z_xattr_parent, &dzp) != 0) {
|
|
|
|
unlinked = 1;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
iput(ZTOI(zp));
|
|
|
|
zp = dzp;
|
|
|
|
unlinked = zp->z_unlinked;
|
|
|
|
}
|
|
|
|
iput(ZTOI(zp));
|
|
|
|
return (unlinked);
|
|
|
|
}
|
|
|
|
|
2008-11-20 20:01:55 +00:00
|
|
|
/*
|
2013-06-11 17:12:34 +00:00
|
|
|
* Handles TX_CREATE, TX_CREATE_ATTR, TX_MKDIR, TX_MKDIR_ATTR and
|
|
|
|
* TK_MKXATTR transactions.
|
2008-11-20 20:01:55 +00:00
|
|
|
*
|
|
|
|
* TX_CREATE and TX_MKDIR are standard creates, but they may have FUID
|
|
|
|
* domain information appended prior to the name. In this case the
|
|
|
|
* uid/gid in the log record will be a log centric FUID.
|
|
|
|
*
|
|
|
|
* TX_CREATE_ACL_ATTR and TX_MKDIR_ACL_ATTR handle special creates that
|
|
|
|
* may contain attributes, ACL and optional fuid information.
|
|
|
|
*
|
|
|
|
* TX_CREATE_ACL and TX_MKDIR_ACL handle special creates that specify
|
|
|
|
* and ACL and normal users/groups in the ACEs.
|
|
|
|
*
|
|
|
|
* There may be an optional xvattr attribute information similar
|
|
|
|
* to zfs_log_setattr.
|
|
|
|
*
|
|
|
|
* Also, after the file name "domain" strings may be appended.
|
|
|
|
*/
|
|
|
|
void
|
|
|
|
zfs_log_create(zilog_t *zilog, dmu_tx_t *tx, uint64_t txtype,
|
|
|
|
znode_t *dzp, znode_t *zp, char *name, vsecattr_t *vsecp,
|
|
|
|
zfs_fuid_info_t *fuidp, vattr_t *vap)
|
|
|
|
{
|
|
|
|
itx_t *itx;
|
|
|
|
lr_create_t *lr;
|
|
|
|
lr_acl_create_t *lracl;
|
2011-03-01 20:24:09 +00:00
|
|
|
size_t aclsize = 0;
|
2008-11-20 20:01:55 +00:00
|
|
|
size_t xvatsize = 0;
|
|
|
|
size_t txsize;
|
2013-02-11 06:21:05 +00:00
|
|
|
xvattr_t *xvap = (xvattr_t *)vap;
|
2008-11-20 20:01:55 +00:00
|
|
|
void *end;
|
|
|
|
size_t lrsize;
|
|
|
|
size_t namesize = strlen(name) + 1;
|
|
|
|
size_t fuidsz = 0;
|
|
|
|
|
2016-10-13 00:30:46 +00:00
|
|
|
if (zil_replaying(zilog, tx) || zfs_xattr_owner_unlinked(dzp))
|
2008-11-20 20:01:55 +00:00
|
|
|
return;
|
|
|
|
|
|
|
|
/*
|
|
|
|
* If we have FUIDs present then add in space for
|
|
|
|
* domains and ACE fuid's if any.
|
|
|
|
*/
|
|
|
|
if (fuidp) {
|
|
|
|
fuidsz += fuidp->z_domain_str_sz;
|
|
|
|
fuidsz += fuidp->z_fuid_cnt * sizeof (uint64_t);
|
|
|
|
}
|
|
|
|
|
2011-03-01 20:24:09 +00:00
|
|
|
if (vap->va_mask & ATTR_XVATTR)
|
2008-11-20 20:01:55 +00:00
|
|
|
xvatsize = ZIL_XVAT_SIZE(xvap->xva_mapsize);
|
|
|
|
|
|
|
|
if ((int)txtype == TX_CREATE_ATTR || (int)txtype == TX_MKDIR_ATTR ||
|
|
|
|
(int)txtype == TX_CREATE || (int)txtype == TX_MKDIR ||
|
|
|
|
(int)txtype == TX_MKXATTR) {
|
|
|
|
txsize = sizeof (*lr) + namesize + fuidsz + xvatsize;
|
|
|
|
lrsize = sizeof (*lr);
|
|
|
|
} else {
|
|
|
|
txsize =
|
|
|
|
sizeof (lr_acl_create_t) + namesize + fuidsz +
|
|
|
|
ZIL_ACE_LENGTH(aclsize) + xvatsize;
|
|
|
|
lrsize = sizeof (lr_acl_create_t);
|
|
|
|
}
|
|
|
|
|
|
|
|
itx = zil_itx_create(txtype, txsize);
|
|
|
|
|
|
|
|
lr = (lr_create_t *)&itx->itx_lr;
|
|
|
|
lr->lr_doid = dzp->z_id;
|
|
|
|
lr->lr_foid = zp->z_id;
|
Implement large_dnode pool feature
Justification
-------------
This feature adds support for variable length dnodes. Our motivation is
to eliminate the overhead associated with using spill blocks. Spill
blocks are used to store system attribute data (i.e. file metadata) that
does not fit in the dnode's bonus buffer. By allowing a larger bonus
buffer area the use of a spill block can be avoided. Spill blocks
potentially incur an additional read I/O for every dnode in a dnode
block. As a worst case example, reading 32 dnodes from a 16k dnode block
and all of the spill blocks could issue 33 separate reads. Now suppose
those dnodes have size 1024 and therefore don't need spill blocks. Then
the worst case number of blocks read is reduced to from 33 to two--one
per dnode block. In practice spill blocks may tend to be co-located on
disk with the dnode blocks so the reduction in I/O would not be this
drastic. In a badly fragmented pool, however, the improvement could be
significant.
ZFS-on-Linux systems that make heavy use of extended attributes would
benefit from this feature. In particular, ZFS-on-Linux supports the
xattr=sa dataset property which allows file extended attribute data
to be stored in the dnode bonus buffer as an alternative to the
traditional directory-based format. Workloads such as SELinux and the
Lustre distributed filesystem often store enough xattr data to force
spill bocks when xattr=sa is in effect. Large dnodes may therefore
provide a performance benefit to such systems.
Other use cases that may benefit from this feature include files with
large ACLs and symbolic links with long target names. Furthermore,
this feature may be desirable on other platforms in case future
applications or features are developed that could make use of a
larger bonus buffer area.
Implementation
--------------
The size of a dnode may be a multiple of 512 bytes up to the size of
a dnode block (currently 16384 bytes). A dn_extra_slots field was
added to the current on-disk dnode_phys_t structure to describe the
size of the physical dnode on disk. The 8 bits for this field were
taken from the zero filled dn_pad2 field. The field represents how
many "extra" dnode_phys_t slots a dnode consumes in its dnode block.
This convention results in a value of 0 for 512 byte dnodes which
preserves on-disk format compatibility with older software.
Similarly, the in-memory dnode_t structure has a new dn_num_slots field
to represent the total number of dnode_phys_t slots consumed on disk.
Thus dn->dn_num_slots is 1 greater than the corresponding
dnp->dn_extra_slots. This difference in convention was adopted
because, unlike on-disk structures, backward compatibility is not a
concern for in-memory objects, so we used a more natural way to
represent size for a dnode_t.
The default size for newly created dnodes is determined by the value of
a new "dnodesize" dataset property. By default the property is set to
"legacy" which is compatible with older software. Setting the property
to "auto" will allow the filesystem to choose the most suitable dnode
size. Currently this just sets the default dnode size to 1k, but future
code improvements could dynamically choose a size based on observed
workload patterns. Dnodes of varying sizes can coexist within the same
dataset and even within the same dnode block. For example, to enable
automatically-sized dnodes, run
# zfs set dnodesize=auto tank/fish
The user can also specify literal values for the dnodesize property.
These are currently limited to powers of two from 1k to 16k. The
power-of-2 limitation is only for simplicity of the user interface.
Internally the implementation can handle any multiple of 512 up to 16k,
and consumers of the DMU API can specify any legal dnode value.
The size of a new dnode is determined at object allocation time and
stored as a new field in the znode in-memory structure. New DMU
interfaces are added to allow the consumer to specify the dnode size
that a newly allocated object should use. Existing interfaces are
unchanged to avoid having to update every call site and to preserve
compatibility with external consumers such as Lustre. The new
interfaces names are given below. The versions of these functions that
don't take a dnodesize parameter now just call the _dnsize() versions
with a dnodesize of 0, which means use the legacy dnode size.
New DMU interfaces:
dmu_object_alloc_dnsize()
dmu_object_claim_dnsize()
dmu_object_reclaim_dnsize()
New ZAP interfaces:
zap_create_dnsize()
zap_create_norm_dnsize()
zap_create_flags_dnsize()
zap_create_claim_norm_dnsize()
zap_create_link_dnsize()
The constant DN_MAX_BONUSLEN is renamed to DN_OLD_MAX_BONUSLEN. The
spa_maxdnodesize() function should be used to determine the maximum
bonus length for a pool.
These are a few noteworthy changes to key functions:
* The prototype for dnode_hold_impl() now takes a "slots" parameter.
When the DNODE_MUST_BE_FREE flag is set, this parameter is used to
ensure the hole at the specified object offset is large enough to
hold the dnode being created. The slots parameter is also used
to ensure a dnode does not span multiple dnode blocks. In both of
these cases, if a failure occurs, ENOSPC is returned. Keep in mind,
these failure cases are only possible when using DNODE_MUST_BE_FREE.
If the DNODE_MUST_BE_ALLOCATED flag is set, "slots" must be 0.
dnode_hold_impl() will check if the requested dnode is already
consumed as an extra dnode slot by an large dnode, in which case
it returns ENOENT.
* The function dmu_object_alloc() advances to the next dnode block
if dnode_hold_impl() returns an error for a requested object.
This is because the beginning of the next dnode block is the only
location it can safely assume to either be a hole or a valid
starting point for a dnode.
* dnode_next_offset_level() and other functions that iterate
through dnode blocks may no longer use a simple array indexing
scheme. These now use the current dnode's dn_num_slots field to
advance to the next dnode in the block. This is to ensure we
properly skip the current dnode's bonus area and don't interpret it
as a valid dnode.
zdb
---
The zdb command was updated to display a dnode's size under the
"dnsize" column when the object is dumped.
For ZIL create log records, zdb will now display the slot count for
the object.
ztest
-----
Ztest chooses a random dnodesize for every newly created object. The
random distribution is more heavily weighted toward small dnodes to
better simulate real-world datasets.
Unused bonus buffer space is filled with non-zero values computed from
the object number, dataset id, offset, and generation number. This
helps ensure that the dnode traversal code properly skips the interior
regions of large dnodes, and that these interior regions are not
overwritten by data belonging to other dnodes. A new test visits each
object in a dataset. It verifies that the actual dnode size matches what
was stored in the ztest block tag when it was created. It also verifies
that the unused bonus buffer space is filled with the expected data
patterns.
ZFS Test Suite
--------------
Added six new large dnode-specific tests, and integrated the dnodesize
property into existing tests for zfs allow and send/recv.
Send/Receive
------------
ZFS send streams for datasets containing large dnodes cannot be received
on pools that don't support the large_dnode feature. A send stream with
large dnodes sets a DMU_BACKUP_FEATURE_LARGE_DNODE flag which will be
unrecognized by an incompatible receiving pool so that the zfs receive
will fail gracefully.
While not implemented here, it may be possible to generate a
backward-compatible send stream from a dataset containing large
dnodes. The implementation may be tricky, however, because the send
object record for a large dnode would need to be resized to a 512
byte dnode, possibly kicking in a spill block in the process. This
means we would need to construct a new SA layout and possibly
register it in the SA layout object. The SA layout is normally just
sent as an ordinary object record. But if we are constructing new
layouts while generating the send stream we'd have to build the SA
layout object dynamically and send it at the end of the stream.
For sending and receiving between pools that do support large dnodes,
the drr_object send record type is extended with a new field to store
the dnode slot count. This field was repurposed from unused padding
in the structure.
ZIL Replay
----------
The dnode slot count is stored in the uppermost 8 bits of the lr_foid
field. The bits were unused as the object id is currently capped at
48 bits.
Resizing Dnodes
---------------
It should be possible to resize a dnode when it is dirtied if the
current dnodesize dataset property differs from the dnode's size, but
this functionality is not currently implemented. Clearly a dnode can
only grow if there are sufficient contiguous unused slots in the
dnode block, but it should always be possible to shrink a dnode.
Growing dnodes may be useful to reduce fragmentation in a pool with
many spill blocks in use. Shrinking dnodes may be useful to allow
sending a dataset to a pool that doesn't support the large_dnode
feature.
Feature Reference Counting
--------------------------
The reference count for the large_dnode pool feature tracks the
number of datasets that have ever contained a dnode of size larger
than 512 bytes. The first time a large dnode is created in a dataset
the dataset is converted to an extensible dataset. This is a one-way
operation and the only way to decrement the feature count is to
destroy the dataset, even if the dataset no longer contains any large
dnodes. The complexity of reference counting on a per-dnode basis was
too high, so we chose to track it on a per-dataset basis similarly to
the large_block feature.
Signed-off-by: Ned Bass <bass6@llnl.gov>
Signed-off-by: Brian Behlendorf <behlendorf1@llnl.gov>
Closes #3542
2016-03-17 01:25:34 +00:00
|
|
|
/* Store dnode slot count in 8 bits above object id. */
|
|
|
|
LR_FOID_SET_SLOTS(lr->lr_foid, zp->z_dnodesize >> DNODE_SHIFT);
|
2010-05-28 20:45:14 +00:00
|
|
|
lr->lr_mode = zp->z_mode;
|
2016-05-22 11:15:57 +00:00
|
|
|
if (!IS_EPHEMERAL(KUID_TO_SUID(ZTOI(zp)->i_uid))) {
|
|
|
|
lr->lr_uid = (uint64_t)KUID_TO_SUID(ZTOI(zp)->i_uid);
|
2008-11-20 20:01:55 +00:00
|
|
|
} else {
|
|
|
|
lr->lr_uid = fuidp->z_fuid_owner;
|
|
|
|
}
|
2016-05-22 11:15:57 +00:00
|
|
|
if (!IS_EPHEMERAL(KGID_TO_SGID(ZTOI(zp)->i_gid))) {
|
|
|
|
lr->lr_gid = (uint64_t)KGID_TO_SGID(ZTOI(zp)->i_gid);
|
2008-11-20 20:01:55 +00:00
|
|
|
} else {
|
|
|
|
lr->lr_gid = fuidp->z_fuid_group;
|
|
|
|
}
|
2011-02-08 19:33:08 +00:00
|
|
|
(void) sa_lookup(zp->z_sa_hdl, SA_ZPL_GEN(ZTOZSB(zp)), &lr->lr_gen,
|
2010-05-28 20:45:14 +00:00
|
|
|
sizeof (uint64_t));
|
2011-02-08 19:33:08 +00:00
|
|
|
(void) sa_lookup(zp->z_sa_hdl, SA_ZPL_CRTIME(ZTOZSB(zp)),
|
2010-05-28 20:45:14 +00:00
|
|
|
lr->lr_crtime, sizeof (uint64_t) * 2);
|
|
|
|
|
2011-02-08 19:33:08 +00:00
|
|
|
if (sa_lookup(zp->z_sa_hdl, SA_ZPL_RDEV(ZTOZSB(zp)), &lr->lr_rdev,
|
2010-05-28 20:45:14 +00:00
|
|
|
sizeof (lr->lr_rdev)) != 0)
|
|
|
|
lr->lr_rdev = 0;
|
2008-11-20 20:01:55 +00:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Fill in xvattr info if any
|
|
|
|
*/
|
2011-03-01 20:24:09 +00:00
|
|
|
if (vap->va_mask & ATTR_XVATTR) {
|
2008-11-20 20:01:55 +00:00
|
|
|
zfs_log_xvattr((lr_attr_t *)((caddr_t)lr + lrsize), xvap);
|
|
|
|
end = (caddr_t)lr + lrsize + xvatsize;
|
|
|
|
} else {
|
|
|
|
end = (caddr_t)lr + lrsize;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Now fill in any ACL info */
|
|
|
|
|
|
|
|
if (vsecp) {
|
|
|
|
lracl = (lr_acl_create_t *)&itx->itx_lr;
|
|
|
|
lracl->lr_aclcnt = vsecp->vsa_aclcnt;
|
|
|
|
lracl->lr_acl_bytes = aclsize;
|
|
|
|
lracl->lr_domcnt = fuidp ? fuidp->z_domain_cnt : 0;
|
|
|
|
lracl->lr_fuidcnt = fuidp ? fuidp->z_fuid_cnt : 0;
|
|
|
|
if (vsecp->vsa_aclflags & VSA_ACE_ACLFLAGS)
|
|
|
|
lracl->lr_acl_flags = (uint64_t)vsecp->vsa_aclflags;
|
|
|
|
else
|
|
|
|
lracl->lr_acl_flags = 0;
|
|
|
|
|
|
|
|
bcopy(vsecp->vsa_aclentp, end, aclsize);
|
|
|
|
end = (caddr_t)end + ZIL_ACE_LENGTH(aclsize);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* drop in FUID info */
|
|
|
|
if (fuidp) {
|
|
|
|
end = zfs_log_fuid_ids(fuidp, end);
|
|
|
|
end = zfs_log_fuid_domains(fuidp, end);
|
|
|
|
}
|
|
|
|
/*
|
|
|
|
* Now place file name in log record
|
|
|
|
*/
|
|
|
|
bcopy(name, end, namesize);
|
|
|
|
|
2010-08-26 21:24:34 +00:00
|
|
|
zil_itx_assign(zilog, itx, tx);
|
2008-11-20 20:01:55 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
2013-06-11 17:12:34 +00:00
|
|
|
* Handles both TX_REMOVE and TX_RMDIR transactions.
|
2008-11-20 20:01:55 +00:00
|
|
|
*/
|
|
|
|
void
|
|
|
|
zfs_log_remove(zilog_t *zilog, dmu_tx_t *tx, uint64_t txtype,
|
2017-01-12 17:42:11 +00:00
|
|
|
znode_t *dzp, char *name, uint64_t foid)
|
2008-11-20 20:01:55 +00:00
|
|
|
{
|
|
|
|
itx_t *itx;
|
|
|
|
lr_remove_t *lr;
|
|
|
|
size_t namesize = strlen(name) + 1;
|
|
|
|
|
2016-10-13 00:30:46 +00:00
|
|
|
if (zil_replaying(zilog, tx) || zfs_xattr_owner_unlinked(dzp))
|
2008-11-20 20:01:55 +00:00
|
|
|
return;
|
|
|
|
|
|
|
|
itx = zil_itx_create(txtype, sizeof (*lr) + namesize);
|
|
|
|
lr = (lr_remove_t *)&itx->itx_lr;
|
|
|
|
lr->lr_doid = dzp->z_id;
|
|
|
|
bcopy(name, (char *)(lr + 1), namesize);
|
|
|
|
|
2010-08-26 21:24:34 +00:00
|
|
|
itx->itx_oid = foid;
|
|
|
|
|
|
|
|
zil_itx_assign(zilog, itx, tx);
|
2008-11-20 20:01:55 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
2013-06-11 17:12:34 +00:00
|
|
|
* Handles TX_LINK transactions.
|
2008-11-20 20:01:55 +00:00
|
|
|
*/
|
|
|
|
void
|
|
|
|
zfs_log_link(zilog_t *zilog, dmu_tx_t *tx, uint64_t txtype,
|
2017-01-12 17:42:11 +00:00
|
|
|
znode_t *dzp, znode_t *zp, char *name)
|
2008-11-20 20:01:55 +00:00
|
|
|
{
|
|
|
|
itx_t *itx;
|
|
|
|
lr_link_t *lr;
|
|
|
|
size_t namesize = strlen(name) + 1;
|
|
|
|
|
2010-05-28 20:45:14 +00:00
|
|
|
if (zil_replaying(zilog, tx))
|
2008-11-20 20:01:55 +00:00
|
|
|
return;
|
|
|
|
|
|
|
|
itx = zil_itx_create(txtype, sizeof (*lr) + namesize);
|
|
|
|
lr = (lr_link_t *)&itx->itx_lr;
|
|
|
|
lr->lr_doid = dzp->z_id;
|
|
|
|
lr->lr_link_obj = zp->z_id;
|
|
|
|
bcopy(name, (char *)(lr + 1), namesize);
|
|
|
|
|
2010-08-26 21:24:34 +00:00
|
|
|
zil_itx_assign(zilog, itx, tx);
|
2008-11-20 20:01:55 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
2013-06-11 17:12:34 +00:00
|
|
|
* Handles TX_SYMLINK transactions.
|
2008-11-20 20:01:55 +00:00
|
|
|
*/
|
|
|
|
void
|
|
|
|
zfs_log_symlink(zilog_t *zilog, dmu_tx_t *tx, uint64_t txtype,
|
|
|
|
znode_t *dzp, znode_t *zp, char *name, char *link)
|
|
|
|
{
|
|
|
|
itx_t *itx;
|
|
|
|
lr_create_t *lr;
|
|
|
|
size_t namesize = strlen(name) + 1;
|
|
|
|
size_t linksize = strlen(link) + 1;
|
|
|
|
|
2010-05-28 20:45:14 +00:00
|
|
|
if (zil_replaying(zilog, tx))
|
2008-11-20 20:01:55 +00:00
|
|
|
return;
|
|
|
|
|
|
|
|
itx = zil_itx_create(txtype, sizeof (*lr) + namesize + linksize);
|
|
|
|
lr = (lr_create_t *)&itx->itx_lr;
|
|
|
|
lr->lr_doid = dzp->z_id;
|
|
|
|
lr->lr_foid = zp->z_id;
|
2016-05-22 11:15:57 +00:00
|
|
|
lr->lr_uid = KUID_TO_SUID(ZTOI(zp)->i_uid);
|
|
|
|
lr->lr_gid = KGID_TO_SGID(ZTOI(zp)->i_gid);
|
2010-05-28 20:45:14 +00:00
|
|
|
lr->lr_mode = zp->z_mode;
|
2011-02-08 19:16:06 +00:00
|
|
|
(void) sa_lookup(zp->z_sa_hdl, SA_ZPL_GEN(ZTOZSB(zp)), &lr->lr_gen,
|
2010-05-28 20:45:14 +00:00
|
|
|
sizeof (uint64_t));
|
2011-02-08 19:16:06 +00:00
|
|
|
(void) sa_lookup(zp->z_sa_hdl, SA_ZPL_CRTIME(ZTOZSB(zp)),
|
2010-05-28 20:45:14 +00:00
|
|
|
lr->lr_crtime, sizeof (uint64_t) * 2);
|
2008-11-20 20:01:55 +00:00
|
|
|
bcopy(name, (char *)(lr + 1), namesize);
|
|
|
|
bcopy(link, (char *)(lr + 1) + namesize, linksize);
|
|
|
|
|
2010-08-26 21:24:34 +00:00
|
|
|
zil_itx_assign(zilog, itx, tx);
|
2008-11-20 20:01:55 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
2013-06-11 17:12:34 +00:00
|
|
|
* Handles TX_RENAME transactions.
|
2008-11-20 20:01:55 +00:00
|
|
|
*/
|
|
|
|
void
|
|
|
|
zfs_log_rename(zilog_t *zilog, dmu_tx_t *tx, uint64_t txtype,
|
2017-01-12 17:42:11 +00:00
|
|
|
znode_t *sdzp, char *sname, znode_t *tdzp, char *dname, znode_t *szp)
|
2008-11-20 20:01:55 +00:00
|
|
|
{
|
|
|
|
itx_t *itx;
|
|
|
|
lr_rename_t *lr;
|
|
|
|
size_t snamesize = strlen(sname) + 1;
|
|
|
|
size_t dnamesize = strlen(dname) + 1;
|
|
|
|
|
2010-05-28 20:45:14 +00:00
|
|
|
if (zil_replaying(zilog, tx))
|
2008-11-20 20:01:55 +00:00
|
|
|
return;
|
|
|
|
|
|
|
|
itx = zil_itx_create(txtype, sizeof (*lr) + snamesize + dnamesize);
|
|
|
|
lr = (lr_rename_t *)&itx->itx_lr;
|
|
|
|
lr->lr_sdoid = sdzp->z_id;
|
|
|
|
lr->lr_tdoid = tdzp->z_id;
|
|
|
|
bcopy(sname, (char *)(lr + 1), snamesize);
|
|
|
|
bcopy(dname, (char *)(lr + 1) + snamesize, dnamesize);
|
2010-08-26 21:24:34 +00:00
|
|
|
itx->itx_oid = szp->z_id;
|
2008-11-20 20:01:55 +00:00
|
|
|
|
2010-08-26 21:24:34 +00:00
|
|
|
zil_itx_assign(zilog, itx, tx);
|
2008-11-20 20:01:55 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
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
|
|
|
* zfs_log_write() handles TX_WRITE transactions. The specified callback is
|
|
|
|
* called as soon as the write is on stable storage (be it via a DMU sync or a
|
|
|
|
* ZIL commit).
|
2008-11-20 20:01:55 +00:00
|
|
|
*/
|
2012-10-08 18:02:20 +00:00
|
|
|
long zfs_immediate_write_sz = 32768;
|
2008-11-20 20:01:55 +00:00
|
|
|
|
|
|
|
void
|
|
|
|
zfs_log_write(zilog_t *zilog, dmu_tx_t *tx, int txtype,
|
2017-01-12 17:42:11 +00:00
|
|
|
znode_t *zp, offset_t off, ssize_t resid, int ioflag,
|
|
|
|
zil_callback_t callback, void *callback_data)
|
2008-11-20 20:01:55 +00:00
|
|
|
{
|
|
|
|
itx_wr_state_t write_state;
|
|
|
|
boolean_t slogging;
|
2012-12-20 17:55:47 +00:00
|
|
|
uintptr_t fsync_cnt;
|
2010-05-28 20:45:14 +00:00
|
|
|
ssize_t immediate_write_sz;
|
2008-11-20 20:01:55 +00:00
|
|
|
|
2016-10-13 00:30:46 +00:00
|
|
|
if (zil_replaying(zilog, tx) || zp->z_unlinked ||
|
|
|
|
zfs_xattr_owner_unlinked(zp)) {
|
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
|
|
|
if (callback != NULL)
|
|
|
|
callback(callback_data);
|
2008-11-20 20:01:55 +00:00
|
|
|
return;
|
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
|
|
|
}
|
2008-11-20 20:01:55 +00:00
|
|
|
|
2010-05-28 20:45:14 +00:00
|
|
|
immediate_write_sz = (zilog->zl_logbias == ZFS_LOGBIAS_THROUGHPUT)
|
2012-10-08 18:02:20 +00:00
|
|
|
? 0 : (ssize_t)zfs_immediate_write_sz;
|
2009-01-15 21:59:39 +00:00
|
|
|
|
2010-05-28 20:45:14 +00:00
|
|
|
slogging = spa_has_slogs(zilog->zl_spa) &&
|
|
|
|
(zilog->zl_logbias == ZFS_LOGBIAS_LATENCY);
|
|
|
|
if (resid > immediate_write_sz && !slogging && resid <= zp->z_blksz)
|
2008-11-20 20:01:55 +00:00
|
|
|
write_state = WR_INDIRECT;
|
|
|
|
else if (ioflag & (FSYNC | FDSYNC))
|
|
|
|
write_state = WR_COPIED;
|
|
|
|
else
|
|
|
|
write_state = WR_NEED_COPY;
|
|
|
|
|
2012-12-20 17:55:47 +00:00
|
|
|
if ((fsync_cnt = (uintptr_t)tsd_get(zfs_fsyncer_key)) != 0) {
|
|
|
|
(void) tsd_set(zfs_fsyncer_key, (void *)(fsync_cnt - 1));
|
|
|
|
}
|
|
|
|
|
2008-11-20 20:01:55 +00:00
|
|
|
while (resid) {
|
|
|
|
itx_t *itx;
|
|
|
|
lr_write_t *lr;
|
|
|
|
ssize_t len;
|
|
|
|
|
|
|
|
/*
|
2008-12-03 20:09:06 +00:00
|
|
|
* If the write would overflow the largest block then split it.
|
2008-11-20 20:01:55 +00:00
|
|
|
*/
|
2008-12-03 20:09:06 +00:00
|
|
|
if (write_state != WR_INDIRECT && resid > ZIL_MAX_LOG_DATA)
|
2014-11-03 20:15:08 +00:00
|
|
|
len = SPA_OLD_MAXBLOCKSIZE >> 1;
|
2008-11-20 20:01:55 +00:00
|
|
|
else
|
|
|
|
len = resid;
|
|
|
|
|
|
|
|
itx = zil_itx_create(txtype, sizeof (*lr) +
|
|
|
|
(write_state == WR_COPIED ? len : 0));
|
|
|
|
lr = (lr_write_t *)&itx->itx_lr;
|
2011-02-08 19:16:06 +00:00
|
|
|
if (write_state == WR_COPIED && dmu_read(ZTOZSB(zp)->z_os,
|
2009-07-02 22:44:48 +00:00
|
|
|
zp->z_id, off, len, lr + 1, DMU_READ_NO_PREFETCH) != 0) {
|
2010-05-28 20:45:14 +00:00
|
|
|
zil_itx_destroy(itx);
|
2008-11-20 20:01:55 +00:00
|
|
|
itx = zil_itx_create(txtype, sizeof (*lr));
|
|
|
|
lr = (lr_write_t *)&itx->itx_lr;
|
|
|
|
write_state = WR_NEED_COPY;
|
|
|
|
}
|
|
|
|
|
|
|
|
itx->itx_wr_state = write_state;
|
|
|
|
if (write_state == WR_NEED_COPY)
|
|
|
|
itx->itx_sod += len;
|
|
|
|
lr->lr_foid = zp->z_id;
|
|
|
|
lr->lr_offset = off;
|
|
|
|
lr->lr_length = len;
|
|
|
|
lr->lr_blkoff = 0;
|
|
|
|
BP_ZERO(&lr->lr_blkptr);
|
|
|
|
|
2011-02-08 19:16:06 +00:00
|
|
|
itx->itx_private = ZTOZSB(zp);
|
2008-11-20 20:01:55 +00:00
|
|
|
|
2012-12-20 17:55:47 +00:00
|
|
|
if (!(ioflag & (FSYNC | FDSYNC)) && (zp->z_sync_cnt == 0) &&
|
|
|
|
(fsync_cnt == 0))
|
2008-11-20 20:01:55 +00:00
|
|
|
itx->itx_sync = B_FALSE;
|
|
|
|
|
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
|
|
|
itx->itx_callback = callback;
|
|
|
|
itx->itx_callback_data = callback_data;
|
2010-08-26 21:24:34 +00:00
|
|
|
zil_itx_assign(zilog, itx, tx);
|
2008-11-20 20:01:55 +00:00
|
|
|
|
|
|
|
off += len;
|
|
|
|
resid -= len;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
2013-06-11 17:12:34 +00:00
|
|
|
* Handles TX_TRUNCATE transactions.
|
2008-11-20 20:01:55 +00:00
|
|
|
*/
|
|
|
|
void
|
|
|
|
zfs_log_truncate(zilog_t *zilog, dmu_tx_t *tx, int txtype,
|
2017-01-12 17:42:11 +00:00
|
|
|
znode_t *zp, uint64_t off, uint64_t len)
|
2008-11-20 20:01:55 +00:00
|
|
|
{
|
|
|
|
itx_t *itx;
|
|
|
|
lr_truncate_t *lr;
|
|
|
|
|
2016-10-13 00:30:46 +00:00
|
|
|
if (zil_replaying(zilog, tx) || zp->z_unlinked ||
|
|
|
|
zfs_xattr_owner_unlinked(zp))
|
2008-11-20 20:01:55 +00:00
|
|
|
return;
|
|
|
|
|
|
|
|
itx = zil_itx_create(txtype, sizeof (*lr));
|
|
|
|
lr = (lr_truncate_t *)&itx->itx_lr;
|
|
|
|
lr->lr_foid = zp->z_id;
|
|
|
|
lr->lr_offset = off;
|
|
|
|
lr->lr_length = len;
|
|
|
|
|
|
|
|
itx->itx_sync = (zp->z_sync_cnt != 0);
|
2010-08-26 21:24:34 +00:00
|
|
|
zil_itx_assign(zilog, itx, tx);
|
2008-11-20 20:01:55 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
2013-06-11 17:12:34 +00:00
|
|
|
* Handles TX_SETATTR transactions.
|
2008-11-20 20:01:55 +00:00
|
|
|
*/
|
|
|
|
void
|
2011-03-01 20:24:09 +00:00
|
|
|
zfs_log_setattr(zilog_t *zilog, dmu_tx_t *tx, int txtype,
|
|
|
|
znode_t *zp, vattr_t *vap, uint_t mask_applied, zfs_fuid_info_t *fuidp)
|
2008-11-20 20:01:55 +00:00
|
|
|
{
|
|
|
|
itx_t *itx;
|
|
|
|
lr_setattr_t *lr;
|
|
|
|
xvattr_t *xvap = (xvattr_t *)vap;
|
|
|
|
size_t recsize = sizeof (lr_setattr_t);
|
|
|
|
void *start;
|
|
|
|
|
2010-05-28 20:45:14 +00:00
|
|
|
if (zil_replaying(zilog, tx) || zp->z_unlinked)
|
2008-11-20 20:01:55 +00:00
|
|
|
return;
|
|
|
|
|
|
|
|
/*
|
|
|
|
* If XVATTR set, then log record size needs to allow
|
|
|
|
* for lr_attr_t + xvattr mask, mapsize and create time
|
|
|
|
* plus actual attribute values
|
|
|
|
*/
|
2011-03-01 20:24:09 +00:00
|
|
|
if (vap->va_mask & ATTR_XVATTR)
|
2008-11-20 20:01:55 +00:00
|
|
|
recsize = sizeof (*lr) + ZIL_XVAT_SIZE(xvap->xva_mapsize);
|
|
|
|
|
|
|
|
if (fuidp)
|
|
|
|
recsize += fuidp->z_domain_str_sz;
|
|
|
|
|
|
|
|
itx = zil_itx_create(txtype, recsize);
|
|
|
|
lr = (lr_setattr_t *)&itx->itx_lr;
|
|
|
|
lr->lr_foid = zp->z_id;
|
|
|
|
lr->lr_mask = (uint64_t)mask_applied;
|
2011-03-01 20:24:09 +00:00
|
|
|
lr->lr_mode = (uint64_t)vap->va_mode;
|
|
|
|
if ((mask_applied & ATTR_UID) && IS_EPHEMERAL(vap->va_uid))
|
2008-11-20 20:01:55 +00:00
|
|
|
lr->lr_uid = fuidp->z_fuid_owner;
|
|
|
|
else
|
2011-03-01 20:24:09 +00:00
|
|
|
lr->lr_uid = (uint64_t)vap->va_uid;
|
2008-11-20 20:01:55 +00:00
|
|
|
|
2011-03-01 20:24:09 +00:00
|
|
|
if ((mask_applied & ATTR_GID) && IS_EPHEMERAL(vap->va_gid))
|
2008-11-20 20:01:55 +00:00
|
|
|
lr->lr_gid = fuidp->z_fuid_group;
|
|
|
|
else
|
2011-03-01 20:24:09 +00:00
|
|
|
lr->lr_gid = (uint64_t)vap->va_gid;
|
2008-11-20 20:01:55 +00:00
|
|
|
|
2011-03-01 20:24:09 +00:00
|
|
|
lr->lr_size = (uint64_t)vap->va_size;
|
|
|
|
ZFS_TIME_ENCODE(&vap->va_atime, lr->lr_atime);
|
|
|
|
ZFS_TIME_ENCODE(&vap->va_mtime, lr->lr_mtime);
|
2008-11-20 20:01:55 +00:00
|
|
|
start = (lr_setattr_t *)(lr + 1);
|
2011-03-01 20:24:09 +00:00
|
|
|
if (vap->va_mask & ATTR_XVATTR) {
|
2008-11-20 20:01:55 +00:00
|
|
|
zfs_log_xvattr((lr_attr_t *)start, xvap);
|
|
|
|
start = (caddr_t)start + ZIL_XVAT_SIZE(xvap->xva_mapsize);
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Now stick on domain information if any on end
|
|
|
|
*/
|
|
|
|
|
|
|
|
if (fuidp)
|
|
|
|
(void) zfs_log_fuid_domains(fuidp, start);
|
|
|
|
|
|
|
|
itx->itx_sync = (zp->z_sync_cnt != 0);
|
2010-08-26 21:24:34 +00:00
|
|
|
zil_itx_assign(zilog, itx, tx);
|
2008-11-20 20:01:55 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
2013-06-11 17:12:34 +00:00
|
|
|
* Handles TX_ACL transactions.
|
2008-11-20 20:01:55 +00:00
|
|
|
*/
|
|
|
|
void
|
|
|
|
zfs_log_acl(zilog_t *zilog, dmu_tx_t *tx, znode_t *zp,
|
|
|
|
vsecattr_t *vsecp, zfs_fuid_info_t *fuidp)
|
|
|
|
{
|
|
|
|
itx_t *itx;
|
|
|
|
lr_acl_v0_t *lrv0;
|
|
|
|
lr_acl_t *lr;
|
|
|
|
int txtype;
|
|
|
|
int lrsize;
|
|
|
|
size_t txsize;
|
|
|
|
size_t aclbytes = vsecp->vsa_aclentsz;
|
|
|
|
|
2010-05-28 20:45:14 +00:00
|
|
|
if (zil_replaying(zilog, tx) || zp->z_unlinked)
|
2008-12-03 20:09:06 +00:00
|
|
|
return;
|
|
|
|
|
2011-02-08 19:16:06 +00:00
|
|
|
txtype = (ZTOZSB(zp)->z_version < ZPL_VERSION_FUID) ?
|
2008-11-20 20:01:55 +00:00
|
|
|
TX_ACL_V0 : TX_ACL;
|
|
|
|
|
|
|
|
if (txtype == TX_ACL)
|
|
|
|
lrsize = sizeof (*lr);
|
|
|
|
else
|
|
|
|
lrsize = sizeof (*lrv0);
|
|
|
|
|
|
|
|
txsize = lrsize +
|
|
|
|
((txtype == TX_ACL) ? ZIL_ACE_LENGTH(aclbytes) : aclbytes) +
|
|
|
|
(fuidp ? fuidp->z_domain_str_sz : 0) +
|
2008-12-03 20:09:06 +00:00
|
|
|
sizeof (uint64_t) * (fuidp ? fuidp->z_fuid_cnt : 0);
|
2008-11-20 20:01:55 +00:00
|
|
|
|
|
|
|
itx = zil_itx_create(txtype, txsize);
|
|
|
|
|
|
|
|
lr = (lr_acl_t *)&itx->itx_lr;
|
|
|
|
lr->lr_foid = zp->z_id;
|
|
|
|
if (txtype == TX_ACL) {
|
|
|
|
lr->lr_acl_bytes = aclbytes;
|
|
|
|
lr->lr_domcnt = fuidp ? fuidp->z_domain_cnt : 0;
|
|
|
|
lr->lr_fuidcnt = fuidp ? fuidp->z_fuid_cnt : 0;
|
|
|
|
if (vsecp->vsa_mask & VSA_ACE_ACLFLAGS)
|
|
|
|
lr->lr_acl_flags = (uint64_t)vsecp->vsa_aclflags;
|
|
|
|
else
|
|
|
|
lr->lr_acl_flags = 0;
|
|
|
|
}
|
|
|
|
lr->lr_aclcnt = (uint64_t)vsecp->vsa_aclcnt;
|
|
|
|
|
|
|
|
if (txtype == TX_ACL_V0) {
|
|
|
|
lrv0 = (lr_acl_v0_t *)lr;
|
|
|
|
bcopy(vsecp->vsa_aclentp, (ace_t *)(lrv0 + 1), aclbytes);
|
|
|
|
} else {
|
|
|
|
void *start = (ace_t *)(lr + 1);
|
|
|
|
|
|
|
|
bcopy(vsecp->vsa_aclentp, start, aclbytes);
|
|
|
|
|
|
|
|
start = (caddr_t)start + ZIL_ACE_LENGTH(aclbytes);
|
|
|
|
|
|
|
|
if (fuidp) {
|
|
|
|
start = zfs_log_fuid_ids(fuidp, start);
|
|
|
|
(void) zfs_log_fuid_domains(fuidp, start);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
itx->itx_sync = (zp->z_sync_cnt != 0);
|
2010-08-26 21:24:34 +00:00
|
|
|
zil_itx_assign(zilog, itx, tx);
|
2008-11-20 20:01:55 +00:00
|
|
|
}
|
2012-10-08 18:02:20 +00:00
|
|
|
|
|
|
|
#if defined(_KERNEL) && defined(HAVE_SPL)
|
|
|
|
module_param(zfs_immediate_write_sz, long, 0644);
|
|
|
|
MODULE_PARM_DESC(zfs_immediate_write_sz, "Largest data block to write to zil");
|
|
|
|
#endif
|