mirror of
https://git.proxmox.com/git/mirror_zfs.git
synced 2026-05-25 11:47:43 +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
+41
-48
@@ -192,6 +192,7 @@
|
||||
#include <sys/fm/util.h>
|
||||
#include <sys/dsl_crypt.h>
|
||||
#include <sys/rrwlock.h>
|
||||
#include <sys/zfs_file.h>
|
||||
|
||||
#include <sys/dmu_recv.h>
|
||||
#include <sys/dmu_send.h>
|
||||
@@ -4708,26 +4709,26 @@ zfs_ioc_recv_impl(char *tofs, char *tosnap, char *origin, nvlist_t *recvprops,
|
||||
dmu_recv_cookie_t drc;
|
||||
int error = 0;
|
||||
int props_error = 0;
|
||||
offset_t off;
|
||||
offset_t off, noff;
|
||||
nvlist_t *local_delayprops = NULL;
|
||||
nvlist_t *recv_delayprops = NULL;
|
||||
nvlist_t *origprops = NULL; /* existing properties */
|
||||
nvlist_t *origrecvd = NULL; /* existing received properties */
|
||||
boolean_t first_recvd_props = B_FALSE;
|
||||
boolean_t tofs_was_redacted;
|
||||
file_t *input_fp;
|
||||
zfs_file_t *input_fp;
|
||||
|
||||
*read_bytes = 0;
|
||||
*errflags = 0;
|
||||
*errors = fnvlist_alloc();
|
||||
off = 0;
|
||||
|
||||
input_fp = getf(input_fd);
|
||||
if (input_fp == NULL)
|
||||
return (SET_ERROR(EBADF));
|
||||
if ((error = zfs_file_get(input_fd, &input_fp)))
|
||||
return (error);
|
||||
|
||||
off = input_fp->f_offset;
|
||||
noff = off = zfs_file_off(input_fp);
|
||||
error = dmu_recv_begin(tofs, tosnap, begin_record, force,
|
||||
resumable, localprops, hidden_args, origin, &drc, input_fp->f_vnode,
|
||||
resumable, localprops, hidden_args, origin, &drc, input_fp,
|
||||
&off);
|
||||
if (error != 0)
|
||||
goto out;
|
||||
@@ -4901,10 +4902,7 @@ zfs_ioc_recv_impl(char *tofs, char *tosnap, char *origin, nvlist_t *recvprops,
|
||||
ASSERT(nvlist_merge(localprops, local_delayprops, 0) == 0);
|
||||
nvlist_free(local_delayprops);
|
||||
}
|
||||
|
||||
*read_bytes = off - input_fp->f_offset;
|
||||
if (VOP_SEEK(input_fp->f_vnode, input_fp->f_offset, &off, NULL) == 0)
|
||||
input_fp->f_offset = off;
|
||||
*read_bytes = off - noff;
|
||||
|
||||
#ifdef DEBUG
|
||||
if (zfs_ioc_recv_inject_err) {
|
||||
@@ -5006,7 +5004,7 @@ zfs_ioc_recv_impl(char *tofs, char *tosnap, char *origin, nvlist_t *recvprops,
|
||||
nvlist_free(inheritprops);
|
||||
}
|
||||
out:
|
||||
releasef(input_fd);
|
||||
zfs_file_put(input_fd);
|
||||
nvlist_free(origrecvd);
|
||||
nvlist_free(origprops);
|
||||
|
||||
@@ -5221,8 +5219,8 @@ zfs_ioc_recv_new(const char *fsname, nvlist_t *innvl, nvlist_t *outnvl)
|
||||
}
|
||||
|
||||
typedef struct dump_bytes_io {
|
||||
vnode_t *dbi_vp;
|
||||
void *dbi_buf;
|
||||
zfs_file_t *dbi_fp;
|
||||
caddr_t dbi_buf;
|
||||
int dbi_len;
|
||||
int dbi_err;
|
||||
} dump_bytes_io_t;
|
||||
@@ -5231,11 +5229,13 @@ static void
|
||||
dump_bytes_cb(void *arg)
|
||||
{
|
||||
dump_bytes_io_t *dbi = (dump_bytes_io_t *)arg;
|
||||
ssize_t resid; /* have to get resid to get detailed errno */
|
||||
zfs_file_t *fp;
|
||||
caddr_t buf;
|
||||
|
||||
dbi->dbi_err = vn_rdwr(UIO_WRITE, dbi->dbi_vp,
|
||||
(caddr_t)dbi->dbi_buf, dbi->dbi_len,
|
||||
0, UIO_SYSSPACE, FAPPEND, RLIM64_INFINITY, CRED(), &resid);
|
||||
fp = dbi->dbi_fp;
|
||||
buf = dbi->dbi_buf;
|
||||
|
||||
dbi->dbi_err = zfs_file_write(fp, buf, dbi->dbi_len, NULL);
|
||||
}
|
||||
|
||||
static int
|
||||
@@ -5243,7 +5243,7 @@ dump_bytes(objset_t *os, void *buf, int len, void *arg)
|
||||
{
|
||||
dump_bytes_io_t dbi;
|
||||
|
||||
dbi.dbi_vp = arg;
|
||||
dbi.dbi_fp = arg;
|
||||
dbi.dbi_buf = buf;
|
||||
dbi.dbi_len = len;
|
||||
|
||||
@@ -5346,22 +5346,21 @@ zfs_ioc_send(zfs_cmd_t *zc)
|
||||
dsl_dataset_rele(tosnap, FTAG);
|
||||
dsl_pool_rele(dp, FTAG);
|
||||
} else {
|
||||
file_t *fp = getf(zc->zc_cookie);
|
||||
if (fp == NULL)
|
||||
return (SET_ERROR(EBADF));
|
||||
|
||||
off = fp->f_offset;
|
||||
zfs_file_t *fp;
|
||||
dmu_send_outparams_t out = {0};
|
||||
|
||||
if ((error = zfs_file_get(zc->zc_cookie, &fp)))
|
||||
return (error);
|
||||
|
||||
off = zfs_file_off(fp);
|
||||
out.dso_outfunc = dump_bytes;
|
||||
out.dso_arg = fp->f_vnode;
|
||||
out.dso_arg = fp;
|
||||
out.dso_dryrun = B_FALSE;
|
||||
error = dmu_send_obj(zc->zc_name, zc->zc_sendobj,
|
||||
zc->zc_fromobj, embedok, large_block_ok, compressok, rawok,
|
||||
zc->zc_cookie, &off, &out);
|
||||
|
||||
if (VOP_SEEK(fp->f_vnode, fp->f_offset, &off, NULL) == 0)
|
||||
fp->f_offset = off;
|
||||
releasef(zc->zc_cookie);
|
||||
zfs_file_put(zc->zc_cookie);
|
||||
}
|
||||
return (error);
|
||||
}
|
||||
@@ -5924,21 +5923,17 @@ zfs_ioc_tmp_snapshot(zfs_cmd_t *zc)
|
||||
static int
|
||||
zfs_ioc_diff(zfs_cmd_t *zc)
|
||||
{
|
||||
file_t *fp;
|
||||
zfs_file_t *fp;
|
||||
offset_t off;
|
||||
int error;
|
||||
|
||||
fp = getf(zc->zc_cookie);
|
||||
if (fp == NULL)
|
||||
return (SET_ERROR(EBADF));
|
||||
if ((error = zfs_file_get(zc->zc_cookie, &fp)))
|
||||
return (error);
|
||||
|
||||
off = fp->f_offset;
|
||||
off = zfs_file_off(fp);
|
||||
error = dmu_diff(zc->zc_name, zc->zc_value, fp, &off);
|
||||
|
||||
error = dmu_diff(zc->zc_name, zc->zc_value, fp->f_vnode, &off);
|
||||
|
||||
if (VOP_SEEK(fp->f_vnode, fp->f_offset, &off, NULL) == 0)
|
||||
fp->f_offset = off;
|
||||
releasef(zc->zc_cookie);
|
||||
zfs_file_put(zc->zc_cookie);
|
||||
|
||||
return (error);
|
||||
}
|
||||
@@ -6278,7 +6273,7 @@ zfs_ioc_send_new(const char *snapname, nvlist_t *innvl, nvlist_t *outnvl)
|
||||
offset_t off;
|
||||
char *fromname = NULL;
|
||||
int fd;
|
||||
file_t *fp;
|
||||
zfs_file_t *fp;
|
||||
boolean_t largeblockok;
|
||||
boolean_t embedok;
|
||||
boolean_t compressok;
|
||||
@@ -6301,21 +6296,19 @@ zfs_ioc_send_new(const char *snapname, nvlist_t *innvl, nvlist_t *outnvl)
|
||||
|
||||
(void) nvlist_lookup_string(innvl, "redactbook", &redactbook);
|
||||
|
||||
if ((fp = getf(fd)) == NULL)
|
||||
return (SET_ERROR(EBADF));
|
||||
if ((error = zfs_file_get(fd, &fp)))
|
||||
return (error);
|
||||
|
||||
off = zfs_file_off(fp);
|
||||
|
||||
off = fp->f_offset;
|
||||
dmu_send_outparams_t out = {0};
|
||||
out.dso_outfunc = dump_bytes;
|
||||
out.dso_arg = fp->f_vnode;
|
||||
out.dso_arg = fp;
|
||||
out.dso_dryrun = B_FALSE;
|
||||
error = dmu_send(snapname, fromname, embedok, largeblockok, compressok,
|
||||
rawok, resumeobj, resumeoff, redactbook, fd, &off, &out);
|
||||
|
||||
if (VOP_SEEK(fp->f_vnode, fp->f_offset, &off, NULL) == 0)
|
||||
fp->f_offset = off;
|
||||
|
||||
releasef(fd);
|
||||
zfs_file_put(fd);
|
||||
return (error);
|
||||
}
|
||||
|
||||
@@ -7438,7 +7431,7 @@ zfs_kmod_init(void)
|
||||
if ((error = zvol_init()) != 0)
|
||||
return (error);
|
||||
|
||||
spa_init(FREAD | FWRITE);
|
||||
spa_init(SPA_MODE_READ | SPA_MODE_WRITE);
|
||||
zfs_init();
|
||||
|
||||
zfs_ioctl_init();
|
||||
|
||||
Reference in New Issue
Block a user