mirror of
https://git.proxmox.com/git/mirror_zfs.git
synced 2026-05-22 10:37:35 +03:00
Add zfs_file_* interface, remove vnodes
Provide a common zfs_file_* interface which can be implemented on all platforms to perform normal file access from either the kernel module or the libzpool library. This allows all non-portable vnode_t usage in the common code to be replaced by the new portable zfs_file_t. The associated vnode and kobj compatibility functions, types, and macros have been removed from the SPL. Moving forward, vnodes should only be used in platform specific code when provided by the native operating system. Reviewed-by: Sean Eric Fagan <sef@ixsystems.com> Reviewed-by: Brian Behlendorf <behlendorf1@llnl.gov> Reviewed-by: Igor Kozhukhov <igor@dilos.org> Reviewed-by: Jorgen Lundman <lundman@lundman.net> Signed-off-by: Matt Macy <mmacy@FreeBSD.org> Closes #9556
This commit is contained in:
committed by
Brian Behlendorf
parent
67a6c3bc9f
commit
da92d5cbb3
@@ -26,6 +26,7 @@ $(MODULE)-objs += ../os/linux/zfs/zfs_acl.o
|
||||
$(MODULE)-objs += ../os/linux/zfs/zfs_ctldir.o
|
||||
$(MODULE)-objs += ../os/linux/zfs/zfs_debug.o
|
||||
$(MODULE)-objs += ../os/linux/zfs/zfs_dir.o
|
||||
$(MODULE)-objs += ../os/linux/zfs/zfs_file_os.o
|
||||
$(MODULE)-objs += ../os/linux/zfs/zfs_ioctl_os.o
|
||||
$(MODULE)-objs += ../os/linux/zfs/zfs_onexit_os.o
|
||||
$(MODULE)-objs += ../os/linux/zfs/zfs_sysfs.o
|
||||
|
||||
@@ -34,7 +34,7 @@ param_set_multihost_interval(const char *val, zfs_kernel_param_t *kp)
|
||||
if (ret < 0)
|
||||
return (ret);
|
||||
|
||||
if (spa_mode_global != 0)
|
||||
if (spa_mode_global != SPA_MODE_UNINIT)
|
||||
mmp_signal_all_threads();
|
||||
|
||||
return (ret);
|
||||
|
||||
@@ -324,7 +324,7 @@ secpolicy_setid_setsticky_clear(struct inode *ip, vattr_t *vap,
|
||||
* Check privileges for setting xvattr attributes
|
||||
*/
|
||||
int
|
||||
secpolicy_xvattr(xvattr_t *xvap, uid_t owner, cred_t *cr, vtype_t vtype)
|
||||
secpolicy_xvattr(xvattr_t *xvap, uid_t owner, cred_t *cr, mode_t type)
|
||||
{
|
||||
return (secpolicy_vnode_chown(cr, owner));
|
||||
}
|
||||
|
||||
@@ -52,7 +52,7 @@ param_set_deadman_ziotime(const char *val, zfs_kernel_param_t *kp)
|
||||
if (error < 0)
|
||||
return (SET_ERROR(error));
|
||||
|
||||
if (spa_mode_global != 0) {
|
||||
if (spa_mode_global != SPA_MODE_UNINIT) {
|
||||
mutex_enter(&spa_namespace_lock);
|
||||
while ((spa = spa_next(spa)) != NULL)
|
||||
spa->spa_deadman_ziotime =
|
||||
@@ -73,7 +73,7 @@ param_set_deadman_synctime(const char *val, zfs_kernel_param_t *kp)
|
||||
if (error < 0)
|
||||
return (SET_ERROR(error));
|
||||
|
||||
if (spa_mode_global != 0) {
|
||||
if (spa_mode_global != SPA_MODE_UNINIT) {
|
||||
mutex_enter(&spa_namespace_lock);
|
||||
while ((spa = spa_next(spa)) != NULL)
|
||||
spa->spa_deadman_synctime =
|
||||
|
||||
@@ -55,16 +55,14 @@ typedef struct dio_request {
|
||||
} dio_request_t;
|
||||
|
||||
static fmode_t
|
||||
vdev_bdev_mode(int smode)
|
||||
vdev_bdev_mode(spa_mode_t spa_mode)
|
||||
{
|
||||
fmode_t mode = 0;
|
||||
|
||||
ASSERT3S(smode & (FREAD | FWRITE), !=, 0);
|
||||
|
||||
if (smode & FREAD)
|
||||
if (spa_mode & SPA_MODE_READ)
|
||||
mode |= FMODE_READ;
|
||||
|
||||
if (smode & FWRITE)
|
||||
if (spa_mode & SPA_MODE_WRITE)
|
||||
mode |= FMODE_WRITE;
|
||||
|
||||
return (mode);
|
||||
@@ -849,9 +847,6 @@ vdev_disk_hold(vdev_t *vd)
|
||||
if (vd->vdev_tsd != NULL)
|
||||
return;
|
||||
|
||||
/* XXX: Implement me as a vnode lookup for the device */
|
||||
vd->vdev_name_vp = NULL;
|
||||
vd->vdev_devid_vp = NULL;
|
||||
}
|
||||
|
||||
static void
|
||||
@@ -874,7 +869,7 @@ param_set_vdev_scheduler(const char *val, zfs_kernel_param_t *kp)
|
||||
if ((p = strchr(val, '\n')) != NULL)
|
||||
*p = '\0';
|
||||
|
||||
if (spa_mode_global != 0) {
|
||||
if (spa_mode_global != SPA_MODE_UNINIT) {
|
||||
mutex_enter(&spa_namespace_lock);
|
||||
while ((spa = spa_next(spa)) != NULL) {
|
||||
if (spa_state(spa) != POOL_STATE_ACTIVE ||
|
||||
|
||||
@@ -35,6 +35,9 @@
|
||||
#include <sys/abd.h>
|
||||
#include <sys/fcntl.h>
|
||||
#include <sys/vnode.h>
|
||||
#include <sys/zfs_file.h>
|
||||
|
||||
#include <linux/falloc.h>
|
||||
|
||||
/*
|
||||
* Virtual device vector for files.
|
||||
@@ -54,13 +57,29 @@ vdev_file_rele(vdev_t *vd)
|
||||
ASSERT(vd->vdev_path != NULL);
|
||||
}
|
||||
|
||||
static mode_t
|
||||
vdev_file_open_mode(spa_mode_t spa_mode)
|
||||
{
|
||||
mode_t mode = 0;
|
||||
|
||||
if ((spa_mode & SPA_MODE_READ) && (spa_mode & SPA_MODE_WRITE)) {
|
||||
mode = O_RDWR;
|
||||
} else if (spa_mode & SPA_MODE_READ) {
|
||||
mode = O_RDONLY;
|
||||
} else if (spa_mode & SPA_MODE_WRITE) {
|
||||
mode = O_WRONLY;
|
||||
}
|
||||
|
||||
return (mode | O_LARGEFILE);
|
||||
}
|
||||
|
||||
static int
|
||||
vdev_file_open(vdev_t *vd, uint64_t *psize, uint64_t *max_psize,
|
||||
uint64_t *ashift)
|
||||
{
|
||||
vdev_file_t *vf;
|
||||
vnode_t *vp;
|
||||
vattr_t vattr;
|
||||
zfs_file_t *fp;
|
||||
zfs_file_attr_t zfa;
|
||||
int error;
|
||||
|
||||
/*
|
||||
@@ -108,38 +127,38 @@ vdev_file_open(vdev_t *vd, uint64_t *psize, uint64_t *max_psize,
|
||||
* to local zone users, so the underlying devices should be as well.
|
||||
*/
|
||||
ASSERT(vd->vdev_path != NULL && vd->vdev_path[0] == '/');
|
||||
error = vn_openat(vd->vdev_path + 1, UIO_SYSSPACE,
|
||||
spa_mode(vd->vdev_spa) | FOFFMAX, 0, &vp, 0, 0, rootdir, -1);
|
||||
|
||||
error = zfs_file_open(vd->vdev_path,
|
||||
vdev_file_open_mode(spa_mode(vd->vdev_spa)), 0, &fp);
|
||||
if (error) {
|
||||
vd->vdev_stat.vs_aux = VDEV_AUX_OPEN_FAILED;
|
||||
return (error);
|
||||
}
|
||||
|
||||
vf->vf_vnode = vp;
|
||||
vf->vf_file = fp;
|
||||
|
||||
#ifdef _KERNEL
|
||||
/*
|
||||
* Make sure it's a regular file.
|
||||
*/
|
||||
if (vp->v_type != VREG) {
|
||||
if (zfs_file_getattr(fp, &zfa)) {
|
||||
return (SET_ERROR(ENODEV));
|
||||
}
|
||||
if (!S_ISREG(zfa.zfa_mode)) {
|
||||
vd->vdev_stat.vs_aux = VDEV_AUX_OPEN_FAILED;
|
||||
return (SET_ERROR(ENODEV));
|
||||
}
|
||||
#endif
|
||||
|
||||
skip_open:
|
||||
/*
|
||||
* Determine the physical size of the file.
|
||||
*/
|
||||
vattr.va_mask = AT_SIZE;
|
||||
error = VOP_GETATTR(vf->vf_vnode, &vattr, 0, kcred, NULL);
|
||||
|
||||
error = zfs_file_getattr(vf->vf_file, &zfa);
|
||||
if (error) {
|
||||
vd->vdev_stat.vs_aux = VDEV_AUX_OPEN_FAILED;
|
||||
return (error);
|
||||
}
|
||||
|
||||
*max_psize = *psize = vattr.va_size;
|
||||
*max_psize = *psize = zfa.zfa_size;
|
||||
*ashift = SPA_MINBLOCKSHIFT;
|
||||
|
||||
return (0);
|
||||
@@ -153,10 +172,8 @@ vdev_file_close(vdev_t *vd)
|
||||
if (vd->vdev_reopening || vf == NULL)
|
||||
return;
|
||||
|
||||
if (vf->vf_vnode != NULL) {
|
||||
(void) VOP_PUTPAGE(vf->vf_vnode, 0, 0, B_INVAL, kcred, NULL);
|
||||
(void) VOP_CLOSE(vf->vf_vnode, spa_mode(vd->vdev_spa), 1, 0,
|
||||
kcred, NULL);
|
||||
if (vf->vf_file != NULL) {
|
||||
(void) zfs_file_close(vf->vf_file);
|
||||
}
|
||||
|
||||
vd->vdev_delayed_close = B_FALSE;
|
||||
@@ -172,21 +189,24 @@ vdev_file_io_strategy(void *arg)
|
||||
vdev_file_t *vf = vd->vdev_tsd;
|
||||
ssize_t resid;
|
||||
void *buf;
|
||||
loff_t off;
|
||||
ssize_t size;
|
||||
int err;
|
||||
|
||||
if (zio->io_type == ZIO_TYPE_READ)
|
||||
off = zio->io_offset;
|
||||
size = zio->io_size;
|
||||
resid = 0;
|
||||
|
||||
if (zio->io_type == ZIO_TYPE_READ) {
|
||||
buf = abd_borrow_buf(zio->io_abd, zio->io_size);
|
||||
else
|
||||
err = zfs_file_pread(vf->vf_file, buf, size, off, &resid);
|
||||
abd_return_buf_copy(zio->io_abd, buf, size);
|
||||
} else {
|
||||
buf = abd_borrow_buf_copy(zio->io_abd, zio->io_size);
|
||||
|
||||
zio->io_error = vn_rdwr(zio->io_type == ZIO_TYPE_READ ?
|
||||
UIO_READ : UIO_WRITE, vf->vf_vnode, buf, zio->io_size,
|
||||
zio->io_offset, UIO_SYSSPACE, 0, RLIM64_INFINITY, kcred, &resid);
|
||||
|
||||
if (zio->io_type == ZIO_TYPE_READ)
|
||||
abd_return_buf_copy(zio->io_abd, buf, zio->io_size);
|
||||
else
|
||||
abd_return_buf(zio->io_abd, buf, zio->io_size);
|
||||
|
||||
err = zfs_file_pwrite(vf->vf_file, buf, size, off, &resid);
|
||||
abd_return_buf(zio->io_abd, buf, size);
|
||||
}
|
||||
zio->io_error = err;
|
||||
if (resid != 0 && zio->io_error == 0)
|
||||
zio->io_error = SET_ERROR(ENOSPC);
|
||||
|
||||
@@ -199,7 +219,7 @@ vdev_file_io_fsync(void *arg)
|
||||
zio_t *zio = (zio_t *)arg;
|
||||
vdev_file_t *vf = zio->io_vd->vdev_tsd;
|
||||
|
||||
zio->io_error = VOP_FSYNC(vf->vf_vnode, FSYNC | FDSYNC, kcred, NULL);
|
||||
zio->io_error = zfs_file_fsync(vf->vf_file, O_SYNC | O_DSYNC);
|
||||
|
||||
zio_interrupt(zio);
|
||||
}
|
||||
@@ -238,8 +258,8 @@ vdev_file_io_start(zio_t *zio)
|
||||
return;
|
||||
}
|
||||
|
||||
zio->io_error = VOP_FSYNC(vf->vf_vnode, FSYNC | FDSYNC,
|
||||
kcred, NULL);
|
||||
zio->io_error = zfs_file_fsync(vf->vf_file,
|
||||
O_SYNC | O_DSYNC);
|
||||
break;
|
||||
default:
|
||||
zio->io_error = SET_ERROR(ENOTSUP);
|
||||
@@ -248,18 +268,12 @@ vdev_file_io_start(zio_t *zio)
|
||||
zio_execute(zio);
|
||||
return;
|
||||
} else if (zio->io_type == ZIO_TYPE_TRIM) {
|
||||
struct flock flck;
|
||||
int mode;
|
||||
|
||||
ASSERT3U(zio->io_size, !=, 0);
|
||||
bzero(&flck, sizeof (flck));
|
||||
flck.l_type = F_FREESP;
|
||||
flck.l_start = zio->io_offset;
|
||||
flck.l_len = zio->io_size;
|
||||
flck.l_whence = SEEK_SET;
|
||||
|
||||
zio->io_error = VOP_SPACE(vf->vf_vnode, F_FREESP, &flck,
|
||||
0, 0, kcred, NULL);
|
||||
|
||||
mode = FALLOC_FL_PUNCH_HOLE | FALLOC_FL_KEEP_SIZE;
|
||||
zio->io_error = zfs_file_fallocate(vf->vf_file,
|
||||
mode, zio->io_offset, zio->io_size);
|
||||
zio_execute(zio);
|
||||
return;
|
||||
}
|
||||
|
||||
@@ -37,7 +37,6 @@
|
||||
#include <sys/cmn_err.h>
|
||||
#include <sys/errno.h>
|
||||
#include <sys/fs/zfs.h>
|
||||
#include <sys/mode.h>
|
||||
#include <sys/policy.h>
|
||||
#include <sys/zfs_znode.h>
|
||||
#include <sys/zfs_fuid.h>
|
||||
|
||||
@@ -32,7 +32,6 @@
|
||||
#include <sys/vfs.h>
|
||||
#include <sys/vnode.h>
|
||||
#include <sys/file.h>
|
||||
#include <sys/mode.h>
|
||||
#include <sys/kmem.h>
|
||||
#include <sys/uio.h>
|
||||
#include <sys/pathname.h>
|
||||
|
||||
@@ -0,0 +1,427 @@
|
||||
/*
|
||||
* 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
|
||||
*/
|
||||
|
||||
#include <sys/zfs_context.h>
|
||||
#include <sys/zfs_file.h>
|
||||
#include <sys/stat.h>
|
||||
#include <sys/file.h>
|
||||
#include <linux/falloc.h>
|
||||
#include <linux/fs.h>
|
||||
#include <linux/uaccess.h>
|
||||
#ifdef HAVE_FDTABLE_HEADER
|
||||
#include <linux/fdtable.h>
|
||||
#endif
|
||||
|
||||
/*
|
||||
* Open file
|
||||
*
|
||||
* path - fully qualified path to file
|
||||
* flags - file attributes O_READ / O_WRITE / O_EXCL
|
||||
* fpp - pointer to return file pointer
|
||||
*
|
||||
* Returns 0 on success underlying error on failure.
|
||||
*/
|
||||
int
|
||||
zfs_file_open(const char *path, int flags, int mode, zfs_file_t **fpp)
|
||||
{
|
||||
struct file *filp;
|
||||
int saved_umask;
|
||||
|
||||
if (!(flags & O_CREAT) && (flags & O_WRONLY))
|
||||
flags |= O_EXCL;
|
||||
|
||||
if (flags & O_CREAT)
|
||||
saved_umask = xchg(¤t->fs->umask, 0);
|
||||
|
||||
filp = filp_open(path, flags, mode);
|
||||
|
||||
if (flags & O_CREAT)
|
||||
(void) xchg(¤t->fs->umask, saved_umask);
|
||||
|
||||
if (IS_ERR(filp))
|
||||
return (-PTR_ERR(filp));
|
||||
|
||||
*fpp = filp;
|
||||
return (0);
|
||||
}
|
||||
|
||||
void
|
||||
zfs_file_close(zfs_file_t *fp)
|
||||
{
|
||||
filp_close(fp, 0);
|
||||
}
|
||||
|
||||
static ssize_t
|
||||
zfs_file_write_impl(zfs_file_t *fp, const void *buf, size_t count, loff_t *off)
|
||||
{
|
||||
#if defined(HAVE_KERNEL_WRITE_PPOS)
|
||||
return (kernel_write(fp, buf, count, off));
|
||||
#else
|
||||
mm_segment_t saved_fs;
|
||||
ssize_t rc;
|
||||
|
||||
saved_fs = get_fs();
|
||||
set_fs(KERNEL_DS);
|
||||
|
||||
rc = vfs_write(fp, (__force const char __user __user *)buf, count, off);
|
||||
|
||||
set_fs(saved_fs);
|
||||
|
||||
return (rc);
|
||||
#endif
|
||||
}
|
||||
|
||||
/*
|
||||
* Stateful write - use os internal file pointer to determine where to
|
||||
* write and update on successful completion.
|
||||
*
|
||||
* fp - pointer to file (pipe, socket, etc) to write to
|
||||
* buf - buffer to write
|
||||
* count - # of bytes to write
|
||||
* resid - pointer to count of unwritten bytes (if short write)
|
||||
*
|
||||
* Returns 0 on success errno on failure.
|
||||
*/
|
||||
int
|
||||
zfs_file_write(zfs_file_t *fp, const void *buf, size_t count, ssize_t *resid)
|
||||
{
|
||||
loff_t off = fp->f_pos;
|
||||
ssize_t rc;
|
||||
|
||||
rc = zfs_file_write_impl(fp, buf, count, &off);
|
||||
if (rc < 0)
|
||||
return (-rc);
|
||||
|
||||
fp->f_pos = off;
|
||||
|
||||
if (resid) {
|
||||
*resid = count - rc;
|
||||
} else if (rc != count) {
|
||||
return (EIO);
|
||||
}
|
||||
|
||||
return (0);
|
||||
}
|
||||
|
||||
/*
|
||||
* Stateless write - os internal file pointer is not updated.
|
||||
*
|
||||
* fp - pointer to file (pipe, socket, etc) to write to
|
||||
* buf - buffer to write
|
||||
* count - # of bytes to write
|
||||
* off - file offset to write to (only valid for seekable types)
|
||||
* resid - pointer to count of unwritten bytes
|
||||
*
|
||||
* Returns 0 on success errno on failure.
|
||||
*/
|
||||
int
|
||||
zfs_file_pwrite(zfs_file_t *fp, const void *buf, size_t count, loff_t off,
|
||||
ssize_t *resid)
|
||||
{
|
||||
ssize_t rc;
|
||||
|
||||
rc = zfs_file_write_impl(fp, buf, count, &off);
|
||||
if (rc < 0)
|
||||
return (-rc);
|
||||
|
||||
if (resid) {
|
||||
*resid = count - rc;
|
||||
} else if (rc != count) {
|
||||
return (EIO);
|
||||
}
|
||||
|
||||
return (0);
|
||||
}
|
||||
|
||||
static ssize_t
|
||||
zfs_file_read_impl(zfs_file_t *fp, void *buf, size_t count, loff_t *off)
|
||||
{
|
||||
#if defined(HAVE_KERNEL_READ_PPOS)
|
||||
return (kernel_read(fp, buf, count, off));
|
||||
#else
|
||||
mm_segment_t saved_fs;
|
||||
ssize_t rc;
|
||||
|
||||
saved_fs = get_fs();
|
||||
set_fs(KERNEL_DS);
|
||||
|
||||
rc = vfs_read(fp, (void __user *)buf, count, off);
|
||||
set_fs(saved_fs);
|
||||
|
||||
return (rc);
|
||||
#endif
|
||||
}
|
||||
|
||||
/*
|
||||
* Stateful read - use os internal file pointer to determine where to
|
||||
* read and update on successful completion.
|
||||
*
|
||||
* fp - pointer to file (pipe, socket, etc) to read from
|
||||
* buf - buffer to write
|
||||
* count - # of bytes to read
|
||||
* resid - pointer to count of unread bytes (if short read)
|
||||
*
|
||||
* Returns 0 on success errno on failure.
|
||||
*/
|
||||
int
|
||||
zfs_file_read(zfs_file_t *fp, void *buf, size_t count, ssize_t *resid)
|
||||
{
|
||||
loff_t off = fp->f_pos;
|
||||
ssize_t rc;
|
||||
|
||||
rc = zfs_file_read_impl(fp, buf, count, &off);
|
||||
if (rc < 0)
|
||||
return (-rc);
|
||||
|
||||
fp->f_pos = off;
|
||||
|
||||
if (resid) {
|
||||
*resid = count - rc;
|
||||
} else if (rc != count) {
|
||||
return (EIO);
|
||||
}
|
||||
|
||||
return (0);
|
||||
}
|
||||
|
||||
/*
|
||||
* Stateless read - os internal file pointer is not updated.
|
||||
*
|
||||
* fp - pointer to file (pipe, socket, etc) to read from
|
||||
* buf - buffer to write
|
||||
* count - # of bytes to write
|
||||
* off - file offset to read from (only valid for seekable types)
|
||||
* resid - pointer to count of unwritten bytes (if short write)
|
||||
*
|
||||
* Returns 0 on success errno on failure.
|
||||
*/
|
||||
int
|
||||
zfs_file_pread(zfs_file_t *fp, void *buf, size_t count, loff_t off,
|
||||
ssize_t *resid)
|
||||
{
|
||||
ssize_t rc;
|
||||
|
||||
rc = zfs_file_read_impl(fp, buf, count, &off);
|
||||
if (rc < 0)
|
||||
return (-rc);
|
||||
|
||||
if (resid) {
|
||||
*resid = count - rc;
|
||||
} else if (rc != count) {
|
||||
return (EIO);
|
||||
}
|
||||
|
||||
return (0);
|
||||
}
|
||||
|
||||
/*
|
||||
* lseek - set / get file pointer
|
||||
*
|
||||
* fp - pointer to file (pipe, socket, etc) to read from
|
||||
* offp - value to seek to, returns current value plus passed offset
|
||||
* whence - see man pages for standard lseek whence values
|
||||
*
|
||||
* Returns 0 on success errno on failure (ESPIPE for non seekable types)
|
||||
*/
|
||||
int
|
||||
zfs_file_seek(zfs_file_t *fp, loff_t *offp, int whence)
|
||||
{
|
||||
loff_t rc;
|
||||
|
||||
if (*offp < 0 || *offp > MAXOFFSET_T)
|
||||
return (EINVAL);
|
||||
|
||||
rc = vfs_llseek(fp, *offp, whence);
|
||||
if (rc < 0)
|
||||
return (-rc);
|
||||
|
||||
*offp = rc;
|
||||
|
||||
return (0);
|
||||
}
|
||||
|
||||
/*
|
||||
* Get file attributes
|
||||
*
|
||||
* filp - file pointer
|
||||
* zfattr - pointer to file attr structure
|
||||
*
|
||||
* Currently only used for fetching size and file mode.
|
||||
*
|
||||
* Returns 0 on success or error code of underlying getattr call on failure.
|
||||
*/
|
||||
int
|
||||
zfs_file_getattr(zfs_file_t *filp, zfs_file_attr_t *zfattr)
|
||||
{
|
||||
struct kstat stat;
|
||||
int rc;
|
||||
|
||||
#if defined(HAVE_4ARGS_VFS_GETATTR)
|
||||
rc = vfs_getattr(&filp->f_path, &stat, STATX_BASIC_STATS,
|
||||
AT_STATX_SYNC_AS_STAT);
|
||||
#elif defined(HAVE_2ARGS_VFS_GETATTR)
|
||||
rc = vfs_getattr(&filp->f_path, &stat);
|
||||
#else
|
||||
rc = vfs_getattr(filp->f_path.mnt, filp->f_dentry, &stat);
|
||||
#endif
|
||||
if (rc)
|
||||
return (-rc);
|
||||
|
||||
zfattr->zfa_size = stat.size;
|
||||
zfattr->zfa_mode = stat.mode;
|
||||
|
||||
return (0);
|
||||
}
|
||||
|
||||
/*
|
||||
* Sync file to disk
|
||||
*
|
||||
* filp - file pointer
|
||||
* flags - O_SYNC and or O_DSYNC
|
||||
*
|
||||
* Returns 0 on success or error code of underlying sync call on failure.
|
||||
*/
|
||||
int
|
||||
zfs_file_fsync(zfs_file_t *filp, int flags)
|
||||
{
|
||||
int datasync = 0;
|
||||
int error;
|
||||
int fstrans;
|
||||
|
||||
if (flags & O_DSYNC)
|
||||
datasync = 1;
|
||||
|
||||
/*
|
||||
* May enter XFS which generates a warning when PF_FSTRANS is set.
|
||||
* To avoid this the flag is cleared over vfs_sync() and then reset.
|
||||
*/
|
||||
fstrans = __spl_pf_fstrans_check();
|
||||
if (fstrans)
|
||||
current->flags &= ~(__SPL_PF_FSTRANS);
|
||||
|
||||
error = -vfs_fsync(filp, datasync);
|
||||
|
||||
if (fstrans)
|
||||
current->flags |= __SPL_PF_FSTRANS;
|
||||
|
||||
return (error);
|
||||
}
|
||||
|
||||
/*
|
||||
* fallocate - allocate or free space on disk
|
||||
*
|
||||
* fp - file pointer
|
||||
* mode (non-standard options for hole punching etc)
|
||||
* offset - offset to start allocating or freeing from
|
||||
* len - length to free / allocate
|
||||
*
|
||||
* OPTIONAL
|
||||
*/
|
||||
int
|
||||
zfs_file_fallocate(zfs_file_t *fp, int mode, loff_t offset, loff_t len)
|
||||
{
|
||||
/*
|
||||
* May enter XFS which generates a warning when PF_FSTRANS is set.
|
||||
* To avoid this the flag is cleared over vfs_sync() and then reset.
|
||||
*/
|
||||
int fstrans = __spl_pf_fstrans_check();
|
||||
if (fstrans)
|
||||
current->flags &= ~(__SPL_PF_FSTRANS);
|
||||
|
||||
/*
|
||||
* When supported by the underlying file system preferentially
|
||||
* use the fallocate() callback to preallocate the space.
|
||||
*/
|
||||
int error = EOPNOTSUPP;
|
||||
if (fp->f_op->fallocate)
|
||||
error = fp->f_op->fallocate(fp, mode, offset, len);
|
||||
|
||||
if (fstrans)
|
||||
current->flags |= __SPL_PF_FSTRANS;
|
||||
|
||||
return (error);
|
||||
}
|
||||
|
||||
/*
|
||||
* Request current file pointer offset
|
||||
*
|
||||
* fp - pointer to file
|
||||
*
|
||||
* Returns current file offset.
|
||||
*/
|
||||
loff_t
|
||||
zfs_file_off(zfs_file_t *fp)
|
||||
{
|
||||
return (fp->f_pos);
|
||||
}
|
||||
|
||||
/*
|
||||
* unlink file
|
||||
*
|
||||
* path - fully qualified file path
|
||||
*
|
||||
* Returns 0 on success.
|
||||
*
|
||||
* OPTIONAL
|
||||
*/
|
||||
int
|
||||
zfs_file_unlink(const char *path)
|
||||
{
|
||||
return (EOPNOTSUPP);
|
||||
}
|
||||
|
||||
/*
|
||||
* Get reference to file pointer
|
||||
*
|
||||
* fd - input file descriptor
|
||||
* fpp - pointer to file pointer
|
||||
*
|
||||
* Returns 0 on success EBADF on failure.
|
||||
*/
|
||||
int
|
||||
zfs_file_get(int fd, zfs_file_t **fpp)
|
||||
{
|
||||
zfs_file_t *fp;
|
||||
|
||||
fp = fget(fd);
|
||||
if (fp == NULL)
|
||||
return (EBADF);
|
||||
|
||||
*fpp = fp;
|
||||
|
||||
return (0);
|
||||
}
|
||||
|
||||
/*
|
||||
* Drop reference to file pointer
|
||||
*
|
||||
* fd - input file descriptor
|
||||
*/
|
||||
void
|
||||
zfs_file_put(int fd)
|
||||
{
|
||||
struct file *fp;
|
||||
|
||||
if ((fp = fget(fd)) != NULL) {
|
||||
fput(fp);
|
||||
fput(fp);
|
||||
}
|
||||
}
|
||||
@@ -178,15 +178,15 @@ int
|
||||
zfsdev_getminor(int fd, minor_t *minorp)
|
||||
{
|
||||
zfsdev_state_t *zs, *fpd;
|
||||
file_t *fp;
|
||||
struct file *fp;
|
||||
int rc;
|
||||
|
||||
ASSERT(!MUTEX_HELD(&zfsdev_state_lock));
|
||||
fp = getf(fd);
|
||||
|
||||
if (fp == NULL)
|
||||
return (SET_ERROR(EBADF));
|
||||
if ((rc = zfs_file_get(fd, &fp)))
|
||||
return (rc);
|
||||
|
||||
fpd = fp->f_file->private_data;
|
||||
fpd = fp->private_data;
|
||||
if (fpd == NULL)
|
||||
return (SET_ERROR(EBADF));
|
||||
|
||||
|
||||
@@ -60,5 +60,5 @@ zfs_onexit_fd_hold(int fd, minor_t *minorp)
|
||||
void
|
||||
zfs_onexit_fd_rele(int fd)
|
||||
{
|
||||
releasef(fd);
|
||||
zfs_file_put(fd);
|
||||
}
|
||||
|
||||
@@ -59,7 +59,6 @@
|
||||
#include <sys/policy.h>
|
||||
#include <sys/sunddi.h>
|
||||
#include <sys/sid.h>
|
||||
#include <sys/mode.h>
|
||||
#include <sys/zfs_ctldir.h>
|
||||
#include <sys/zfs_fuid.h>
|
||||
#include <sys/zfs_sa.h>
|
||||
@@ -423,7 +422,7 @@ unsigned long zfs_delete_blocks = DMU_MAX_DELETEBLKCNT;
|
||||
* IN: ip - inode of file to be read from.
|
||||
* uio - structure supplying read location, range info,
|
||||
* and return buffer.
|
||||
* ioflag - FSYNC flags; used to provide FRSYNC semantics.
|
||||
* ioflag - O_SYNC flags; used to provide FRSYNC semantics.
|
||||
* O_DIRECT flag; used to bypass page cache.
|
||||
* cr - credentials of caller.
|
||||
*
|
||||
@@ -473,7 +472,7 @@ zfs_read(struct inode *ip, uio_t *uio, int ioflag, cred_t *cr)
|
||||
* Only do this for non-snapshots.
|
||||
*
|
||||
* Some platforms do not support FRSYNC and instead map it
|
||||
* to FSYNC, which results in unnecessary calls to zil_commit. We
|
||||
* to O_SYNC, which results in unnecessary calls to zil_commit. We
|
||||
* only honor FRSYNC requests on platforms which support it.
|
||||
*/
|
||||
frsync = !!(ioflag & FRSYNC);
|
||||
@@ -570,7 +569,7 @@ out:
|
||||
* IN: ip - inode of file to be written to.
|
||||
* uio - structure supplying write location, range info,
|
||||
* and data buffer.
|
||||
* ioflag - FAPPEND flag set if in append mode.
|
||||
* ioflag - O_APPEND flag set if in append mode.
|
||||
* O_DIRECT flag; used to bypass page cache.
|
||||
* cr - credentials of caller.
|
||||
*
|
||||
@@ -629,7 +628,7 @@ zfs_write(struct inode *ip, uio_t *uio, int ioflag, cred_t *cr)
|
||||
* If immutable or not appending then return EPERM
|
||||
*/
|
||||
if ((zp->z_pflags & (ZFS_IMMUTABLE | ZFS_READONLY)) ||
|
||||
((zp->z_pflags & ZFS_APPENDONLY) && !(ioflag & FAPPEND) &&
|
||||
((zp->z_pflags & ZFS_APPENDONLY) && !(ioflag & O_APPEND) &&
|
||||
(uio->uio_loffset < zp->z_size))) {
|
||||
ZFS_EXIT(zfsvfs);
|
||||
return (SET_ERROR(EPERM));
|
||||
@@ -638,7 +637,7 @@ zfs_write(struct inode *ip, uio_t *uio, int ioflag, cred_t *cr)
|
||||
/*
|
||||
* Validate file offset
|
||||
*/
|
||||
offset_t woff = ioflag & FAPPEND ? zp->z_size : uio->uio_loffset;
|
||||
offset_t woff = ioflag & O_APPEND ? zp->z_size : uio->uio_loffset;
|
||||
if (woff < 0) {
|
||||
ZFS_EXIT(zfsvfs);
|
||||
return (SET_ERROR(EINVAL));
|
||||
@@ -667,7 +666,7 @@ zfs_write(struct inode *ip, uio_t *uio, int ioflag, cred_t *cr)
|
||||
* If in append mode, set the io offset pointer to eof.
|
||||
*/
|
||||
zfs_locked_range_t *lr;
|
||||
if (ioflag & FAPPEND) {
|
||||
if (ioflag & O_APPEND) {
|
||||
/*
|
||||
* Obtain an appending range lock to guarantee file append
|
||||
* semantics. We reset the write offset once we have the lock.
|
||||
@@ -961,7 +960,7 @@ zfs_write(struct inode *ip, uio_t *uio, int ioflag, cred_t *cr)
|
||||
return (error);
|
||||
}
|
||||
|
||||
if (ioflag & (FSYNC | FDSYNC) ||
|
||||
if (ioflag & (O_SYNC | O_DSYNC) ||
|
||||
zfsvfs->z_os->os_sync == ZFS_SYNC_ALWAYS)
|
||||
zil_commit(zilog, zp->z_id);
|
||||
|
||||
@@ -1486,7 +1485,7 @@ top:
|
||||
zfs_acl_ids_free(&acl_ids);
|
||||
dmu_tx_commit(tx);
|
||||
} else {
|
||||
int aflags = (flag & FAPPEND) ? V_APPEND : 0;
|
||||
int aflags = (flag & O_APPEND) ? V_APPEND : 0;
|
||||
|
||||
if (have_acl)
|
||||
zfs_acl_ids_free(&acl_ids);
|
||||
@@ -2486,7 +2485,6 @@ zfs_getattr(struct inode *ip, vattr_t *vap, int flags, cred_t *cr)
|
||||
*/
|
||||
|
||||
mutex_enter(&zp->z_lock);
|
||||
vap->va_type = vn_mode_to_vtype(zp->z_mode);
|
||||
vap->va_mode = zp->z_mode;
|
||||
vap->va_fsid = ZTOI(zp)->i_sb->s_dev;
|
||||
vap->va_nodeid = zp->z_id;
|
||||
@@ -2497,7 +2495,6 @@ zfs_getattr(struct inode *ip, vattr_t *vap, int flags, cred_t *cr)
|
||||
vap->va_nlink = MIN(links, ZFS_LINK_MAX);
|
||||
vap->va_size = i_size_read(ip);
|
||||
vap->va_rdev = ip->i_rdev;
|
||||
vap->va_seq = ip->i_generation;
|
||||
|
||||
/*
|
||||
* Add in any requested optional attributes and the create time.
|
||||
|
||||
@@ -38,7 +38,6 @@
|
||||
#include <sys/file.h>
|
||||
#include <sys/kmem.h>
|
||||
#include <sys/errno.h>
|
||||
#include <sys/mode.h>
|
||||
#include <sys/atomic.h>
|
||||
#include <sys/zfs_dir.h>
|
||||
#include <sys/zfs_acl.h>
|
||||
|
||||
@@ -190,19 +190,19 @@ zfs_io_flags(struct kiocb *kiocb)
|
||||
|
||||
#if defined(IOCB_DSYNC)
|
||||
if (kiocb->ki_flags & IOCB_DSYNC)
|
||||
flags |= FDSYNC;
|
||||
flags |= O_DSYNC;
|
||||
#endif
|
||||
#if defined(IOCB_SYNC)
|
||||
if (kiocb->ki_flags & IOCB_SYNC)
|
||||
flags |= FSYNC;
|
||||
flags |= O_SYNC;
|
||||
#endif
|
||||
#if defined(IOCB_APPEND)
|
||||
if (kiocb->ki_flags & IOCB_APPEND)
|
||||
flags |= FAPPEND;
|
||||
flags |= O_APPEND;
|
||||
#endif
|
||||
#if defined(IOCB_DIRECT)
|
||||
if (kiocb->ki_flags & IOCB_DIRECT)
|
||||
flags |= FDIRECT;
|
||||
flags |= O_DIRECT;
|
||||
#endif
|
||||
return (flags);
|
||||
}
|
||||
@@ -728,16 +728,14 @@ zpl_writepage(struct page *pp, struct writeback_control *wbc)
|
||||
static long
|
||||
zpl_fallocate_common(struct inode *ip, int mode, loff_t offset, loff_t len)
|
||||
{
|
||||
int error = -EOPNOTSUPP;
|
||||
|
||||
#if defined(FALLOC_FL_PUNCH_HOLE) && defined(FALLOC_FL_KEEP_SIZE)
|
||||
cred_t *cr = CRED();
|
||||
flock64_t bf;
|
||||
loff_t olen;
|
||||
fstrans_cookie_t cookie;
|
||||
int error;
|
||||
|
||||
if (mode != (FALLOC_FL_KEEP_SIZE | FALLOC_FL_PUNCH_HOLE))
|
||||
return (error);
|
||||
return (-EOPNOTSUPP);
|
||||
|
||||
if (offset < 0 || len <= 0)
|
||||
return (-EINVAL);
|
||||
@@ -759,14 +757,12 @@ zpl_fallocate_common(struct inode *ip, int mode, loff_t offset, loff_t len)
|
||||
|
||||
crhold(cr);
|
||||
cookie = spl_fstrans_mark();
|
||||
error = -zfs_space(ip, F_FREESP, &bf, FWRITE, offset, cr);
|
||||
error = -zfs_space(ip, F_FREESP, &bf, O_RDWR, offset, cr);
|
||||
spl_fstrans_unmark(cookie);
|
||||
spl_inode_unlock(ip);
|
||||
|
||||
crfree(cr);
|
||||
#endif /* defined(FALLOC_FL_PUNCH_HOLE) && defined(FALLOC_FL_KEEP_SIZE) */
|
||||
|
||||
ASSERT3S(error, <=, 0);
|
||||
return (error);
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user