Update ZFS from version 6 to 13 and bring some FreeBSD-specific changes.
This bring huge amount of changes, I'll enumerate only user-visible changes:
- Delegated Administration
Allows regular users to perform ZFS operations, like file system
creation, snapshot creation, etc.
- L2ARC
Level 2 cache for ZFS - allows to use additional disks for cache.
Huge performance improvements mostly for random read of mostly
static content.
- slog
Allow to use additional disks for ZFS Intent Log to speed up
operations like fsync(2).
- vfs.zfs.super_owner
Allows regular users to perform privileged operations on files stored
on ZFS file systems owned by him. Very careful with this one.
- chflags(2)
Not all the flags are supported. This still needs work.
- ZFSBoot
Support to boot off of ZFS pool. Not finished, AFAIK.
Submitted by: dfr
- Snapshot properties
- New failure modes
Before if write requested failed, system paniced. Now one
can select from one of three failure modes:
- panic - panic on write error
- wait - wait for disk to reappear
- continue - serve read requests if possible, block write requests
- Refquota, refreservation properties
Just quota and reservation properties, but don't count space consumed
by children file systems, clones and snapshots.
- Sparse volumes
ZVOLs that don't reserve space in the pool.
- External attributes
Compatible with extattr(2).
- NFSv4-ACLs
Not sure about the status, might not be complete yet.
Submitted by: trasz
- Creation-time properties
- Regression tests for zpool(8) command.
Obtained from: OpenSolaris
2008-11-17 20:49:29 +00:00
|
|
|
/*-
|
|
|
|
* Copyright (c) 2007 Doug Rabson
|
|
|
|
* All rights reserved.
|
|
|
|
*
|
|
|
|
* Redistribution and use in source and binary forms, with or without
|
|
|
|
* modification, are permitted provided that the following conditions
|
|
|
|
* are met:
|
|
|
|
* 1. Redistributions of source code must retain the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer.
|
|
|
|
* 2. Redistributions in binary form must reproduce the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer in the
|
|
|
|
* documentation and/or other materials provided with the distribution.
|
|
|
|
*
|
|
|
|
* THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
|
|
|
|
* ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
|
|
|
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
|
|
|
|
* ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
|
|
|
|
* FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
|
|
|
|
* DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
|
|
|
|
* OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
|
|
|
|
* HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
|
|
|
|
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
|
|
|
|
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
|
|
|
|
* SUCH DAMAGE.
|
|
|
|
*
|
|
|
|
* $FreeBSD$
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <sys/cdefs.h>
|
|
|
|
__FBSDID("$FreeBSD$");
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Stand-alone file reading package.
|
|
|
|
*/
|
|
|
|
|
2012-08-05 14:48:28 +00:00
|
|
|
#include <sys/disk.h>
|
Update ZFS from version 6 to 13 and bring some FreeBSD-specific changes.
This bring huge amount of changes, I'll enumerate only user-visible changes:
- Delegated Administration
Allows regular users to perform ZFS operations, like file system
creation, snapshot creation, etc.
- L2ARC
Level 2 cache for ZFS - allows to use additional disks for cache.
Huge performance improvements mostly for random read of mostly
static content.
- slog
Allow to use additional disks for ZFS Intent Log to speed up
operations like fsync(2).
- vfs.zfs.super_owner
Allows regular users to perform privileged operations on files stored
on ZFS file systems owned by him. Very careful with this one.
- chflags(2)
Not all the flags are supported. This still needs work.
- ZFSBoot
Support to boot off of ZFS pool. Not finished, AFAIK.
Submitted by: dfr
- Snapshot properties
- New failure modes
Before if write requested failed, system paniced. Now one
can select from one of three failure modes:
- panic - panic on write error
- wait - wait for disk to reappear
- continue - serve read requests if possible, block write requests
- Refquota, refreservation properties
Just quota and reservation properties, but don't count space consumed
by children file systems, clones and snapshots.
- Sparse volumes
ZVOLs that don't reserve space in the pool.
- External attributes
Compatible with extattr(2).
- NFSv4-ACLs
Not sure about the status, might not be complete yet.
Submitted by: trasz
- Creation-time properties
- Regression tests for zpool(8) command.
Obtained from: OpenSolaris
2008-11-17 20:49:29 +00:00
|
|
|
#include <sys/param.h>
|
|
|
|
#include <sys/time.h>
|
|
|
|
#include <sys/queue.h>
|
2012-08-05 14:48:28 +00:00
|
|
|
#include <part.h>
|
Update ZFS from version 6 to 13 and bring some FreeBSD-specific changes.
This bring huge amount of changes, I'll enumerate only user-visible changes:
- Delegated Administration
Allows regular users to perform ZFS operations, like file system
creation, snapshot creation, etc.
- L2ARC
Level 2 cache for ZFS - allows to use additional disks for cache.
Huge performance improvements mostly for random read of mostly
static content.
- slog
Allow to use additional disks for ZFS Intent Log to speed up
operations like fsync(2).
- vfs.zfs.super_owner
Allows regular users to perform privileged operations on files stored
on ZFS file systems owned by him. Very careful with this one.
- chflags(2)
Not all the flags are supported. This still needs work.
- ZFSBoot
Support to boot off of ZFS pool. Not finished, AFAIK.
Submitted by: dfr
- Snapshot properties
- New failure modes
Before if write requested failed, system paniced. Now one
can select from one of three failure modes:
- panic - panic on write error
- wait - wait for disk to reappear
- continue - serve read requests if possible, block write requests
- Refquota, refreservation properties
Just quota and reservation properties, but don't count space consumed
by children file systems, clones and snapshots.
- Sparse volumes
ZVOLs that don't reserve space in the pool.
- External attributes
Compatible with extattr(2).
- NFSv4-ACLs
Not sure about the status, might not be complete yet.
Submitted by: trasz
- Creation-time properties
- Regression tests for zpool(8) command.
Obtained from: OpenSolaris
2008-11-17 20:49:29 +00:00
|
|
|
#include <stddef.h>
|
|
|
|
#include <stdarg.h>
|
|
|
|
#include <string.h>
|
|
|
|
#include <stand.h>
|
|
|
|
#include <bootstrap.h>
|
|
|
|
|
2012-05-12 09:03:30 +00:00
|
|
|
#include "libzfs.h"
|
Update ZFS from version 6 to 13 and bring some FreeBSD-specific changes.
This bring huge amount of changes, I'll enumerate only user-visible changes:
- Delegated Administration
Allows regular users to perform ZFS operations, like file system
creation, snapshot creation, etc.
- L2ARC
Level 2 cache for ZFS - allows to use additional disks for cache.
Huge performance improvements mostly for random read of mostly
static content.
- slog
Allow to use additional disks for ZFS Intent Log to speed up
operations like fsync(2).
- vfs.zfs.super_owner
Allows regular users to perform privileged operations on files stored
on ZFS file systems owned by him. Very careful with this one.
- chflags(2)
Not all the flags are supported. This still needs work.
- ZFSBoot
Support to boot off of ZFS pool. Not finished, AFAIK.
Submitted by: dfr
- Snapshot properties
- New failure modes
Before if write requested failed, system paniced. Now one
can select from one of three failure modes:
- panic - panic on write error
- wait - wait for disk to reappear
- continue - serve read requests if possible, block write requests
- Refquota, refreservation properties
Just quota and reservation properties, but don't count space consumed
by children file systems, clones and snapshots.
- Sparse volumes
ZVOLs that don't reserve space in the pool.
- External attributes
Compatible with extattr(2).
- NFSv4-ACLs
Not sure about the status, might not be complete yet.
Submitted by: trasz
- Creation-time properties
- Regression tests for zpool(8) command.
Obtained from: OpenSolaris
2008-11-17 20:49:29 +00:00
|
|
|
|
2012-05-12 09:03:30 +00:00
|
|
|
#include "zfsimpl.c"
|
2010-09-17 22:51:45 +00:00
|
|
|
|
2015-12-31 20:00:53 +00:00
|
|
|
/* Define the range of indexes to be populated with ZFS Boot Environments */
|
|
|
|
#define ZFS_BE_FIRST 4
|
|
|
|
#define ZFS_BE_LAST 8
|
|
|
|
|
Update ZFS from version 6 to 13 and bring some FreeBSD-specific changes.
This bring huge amount of changes, I'll enumerate only user-visible changes:
- Delegated Administration
Allows regular users to perform ZFS operations, like file system
creation, snapshot creation, etc.
- L2ARC
Level 2 cache for ZFS - allows to use additional disks for cache.
Huge performance improvements mostly for random read of mostly
static content.
- slog
Allow to use additional disks for ZFS Intent Log to speed up
operations like fsync(2).
- vfs.zfs.super_owner
Allows regular users to perform privileged operations on files stored
on ZFS file systems owned by him. Very careful with this one.
- chflags(2)
Not all the flags are supported. This still needs work.
- ZFSBoot
Support to boot off of ZFS pool. Not finished, AFAIK.
Submitted by: dfr
- Snapshot properties
- New failure modes
Before if write requested failed, system paniced. Now one
can select from one of three failure modes:
- panic - panic on write error
- wait - wait for disk to reappear
- continue - serve read requests if possible, block write requests
- Refquota, refreservation properties
Just quota and reservation properties, but don't count space consumed
by children file systems, clones and snapshots.
- Sparse volumes
ZVOLs that don't reserve space in the pool.
- External attributes
Compatible with extattr(2).
- NFSv4-ACLs
Not sure about the status, might not be complete yet.
Submitted by: trasz
- Creation-time properties
- Regression tests for zpool(8) command.
Obtained from: OpenSolaris
2008-11-17 20:49:29 +00:00
|
|
|
static int zfs_open(const char *path, struct open_file *f);
|
|
|
|
static int zfs_write(struct open_file *f, void *buf, size_t size, size_t *resid);
|
|
|
|
static int zfs_close(struct open_file *f);
|
|
|
|
static int zfs_read(struct open_file *f, void *buf, size_t size, size_t *resid);
|
|
|
|
static off_t zfs_seek(struct open_file *f, off_t offset, int where);
|
|
|
|
static int zfs_stat(struct open_file *f, struct stat *sb);
|
|
|
|
static int zfs_readdir(struct open_file *f, struct dirent *d);
|
|
|
|
|
|
|
|
struct devsw zfs_dev;
|
|
|
|
|
|
|
|
struct fs_ops zfs_fsops = {
|
|
|
|
"zfs",
|
|
|
|
zfs_open,
|
|
|
|
zfs_close,
|
|
|
|
zfs_read,
|
|
|
|
zfs_write,
|
|
|
|
zfs_seek,
|
|
|
|
zfs_stat,
|
|
|
|
zfs_readdir
|
|
|
|
};
|
|
|
|
|
|
|
|
/*
|
|
|
|
* In-core open file.
|
|
|
|
*/
|
|
|
|
struct file {
|
|
|
|
off_t f_seekp; /* seek pointer */
|
|
|
|
dnode_phys_t f_dnode;
|
|
|
|
uint64_t f_zap_type; /* zap type for readdir */
|
|
|
|
uint64_t f_num_leafs; /* number of fzap leaf blocks */
|
|
|
|
zap_leaf_phys_t *f_zap_leaf; /* zap leaf buffer */
|
|
|
|
};
|
|
|
|
|
2015-12-31 20:00:53 +00:00
|
|
|
static int zfs_env_index;
|
|
|
|
static int zfs_env_count;
|
|
|
|
|
|
|
|
SLIST_HEAD(zfs_be_list, zfs_be_entry) zfs_be_head = SLIST_HEAD_INITIALIZER(zfs_be_head);
|
|
|
|
struct zfs_be_list *zfs_be_headp;
|
|
|
|
struct zfs_be_entry {
|
|
|
|
const char *name;
|
|
|
|
SLIST_ENTRY(zfs_be_entry) entries;
|
|
|
|
} *zfs_be, *zfs_be_tmp;
|
|
|
|
|
Update ZFS from version 6 to 13 and bring some FreeBSD-specific changes.
This bring huge amount of changes, I'll enumerate only user-visible changes:
- Delegated Administration
Allows regular users to perform ZFS operations, like file system
creation, snapshot creation, etc.
- L2ARC
Level 2 cache for ZFS - allows to use additional disks for cache.
Huge performance improvements mostly for random read of mostly
static content.
- slog
Allow to use additional disks for ZFS Intent Log to speed up
operations like fsync(2).
- vfs.zfs.super_owner
Allows regular users to perform privileged operations on files stored
on ZFS file systems owned by him. Very careful with this one.
- chflags(2)
Not all the flags are supported. This still needs work.
- ZFSBoot
Support to boot off of ZFS pool. Not finished, AFAIK.
Submitted by: dfr
- Snapshot properties
- New failure modes
Before if write requested failed, system paniced. Now one
can select from one of three failure modes:
- panic - panic on write error
- wait - wait for disk to reappear
- continue - serve read requests if possible, block write requests
- Refquota, refreservation properties
Just quota and reservation properties, but don't count space consumed
by children file systems, clones and snapshots.
- Sparse volumes
ZVOLs that don't reserve space in the pool.
- External attributes
Compatible with extattr(2).
- NFSv4-ACLs
Not sure about the status, might not be complete yet.
Submitted by: trasz
- Creation-time properties
- Regression tests for zpool(8) command.
Obtained from: OpenSolaris
2008-11-17 20:49:29 +00:00
|
|
|
/*
|
|
|
|
* Open a file.
|
|
|
|
*/
|
|
|
|
static int
|
|
|
|
zfs_open(const char *upath, struct open_file *f)
|
|
|
|
{
|
2012-05-12 09:03:30 +00:00
|
|
|
struct zfsmount *mount = (struct zfsmount *)f->f_devdata;
|
Update ZFS from version 6 to 13 and bring some FreeBSD-specific changes.
This bring huge amount of changes, I'll enumerate only user-visible changes:
- Delegated Administration
Allows regular users to perform ZFS operations, like file system
creation, snapshot creation, etc.
- L2ARC
Level 2 cache for ZFS - allows to use additional disks for cache.
Huge performance improvements mostly for random read of mostly
static content.
- slog
Allow to use additional disks for ZFS Intent Log to speed up
operations like fsync(2).
- vfs.zfs.super_owner
Allows regular users to perform privileged operations on files stored
on ZFS file systems owned by him. Very careful with this one.
- chflags(2)
Not all the flags are supported. This still needs work.
- ZFSBoot
Support to boot off of ZFS pool. Not finished, AFAIK.
Submitted by: dfr
- Snapshot properties
- New failure modes
Before if write requested failed, system paniced. Now one
can select from one of three failure modes:
- panic - panic on write error
- wait - wait for disk to reappear
- continue - serve read requests if possible, block write requests
- Refquota, refreservation properties
Just quota and reservation properties, but don't count space consumed
by children file systems, clones and snapshots.
- Sparse volumes
ZVOLs that don't reserve space in the pool.
- External attributes
Compatible with extattr(2).
- NFSv4-ACLs
Not sure about the status, might not be complete yet.
Submitted by: trasz
- Creation-time properties
- Regression tests for zpool(8) command.
Obtained from: OpenSolaris
2008-11-17 20:49:29 +00:00
|
|
|
struct file *fp;
|
|
|
|
int rc;
|
|
|
|
|
2012-05-13 10:54:43 +00:00
|
|
|
if (f->f_dev != &zfs_dev)
|
Update ZFS from version 6 to 13 and bring some FreeBSD-specific changes.
This bring huge amount of changes, I'll enumerate only user-visible changes:
- Delegated Administration
Allows regular users to perform ZFS operations, like file system
creation, snapshot creation, etc.
- L2ARC
Level 2 cache for ZFS - allows to use additional disks for cache.
Huge performance improvements mostly for random read of mostly
static content.
- slog
Allow to use additional disks for ZFS Intent Log to speed up
operations like fsync(2).
- vfs.zfs.super_owner
Allows regular users to perform privileged operations on files stored
on ZFS file systems owned by him. Very careful with this one.
- chflags(2)
Not all the flags are supported. This still needs work.
- ZFSBoot
Support to boot off of ZFS pool. Not finished, AFAIK.
Submitted by: dfr
- Snapshot properties
- New failure modes
Before if write requested failed, system paniced. Now one
can select from one of three failure modes:
- panic - panic on write error
- wait - wait for disk to reappear
- continue - serve read requests if possible, block write requests
- Refquota, refreservation properties
Just quota and reservation properties, but don't count space consumed
by children file systems, clones and snapshots.
- Sparse volumes
ZVOLs that don't reserve space in the pool.
- External attributes
Compatible with extattr(2).
- NFSv4-ACLs
Not sure about the status, might not be complete yet.
Submitted by: trasz
- Creation-time properties
- Regression tests for zpool(8) command.
Obtained from: OpenSolaris
2008-11-17 20:49:29 +00:00
|
|
|
return (EINVAL);
|
|
|
|
|
|
|
|
/* allocate file system specific data structure */
|
|
|
|
fp = malloc(sizeof(struct file));
|
|
|
|
bzero(fp, sizeof(struct file));
|
|
|
|
f->f_fsdata = (void *)fp;
|
|
|
|
|
2012-05-12 09:03:30 +00:00
|
|
|
rc = zfs_lookup(mount, upath, &fp->f_dnode);
|
Update ZFS from version 6 to 13 and bring some FreeBSD-specific changes.
This bring huge amount of changes, I'll enumerate only user-visible changes:
- Delegated Administration
Allows regular users to perform ZFS operations, like file system
creation, snapshot creation, etc.
- L2ARC
Level 2 cache for ZFS - allows to use additional disks for cache.
Huge performance improvements mostly for random read of mostly
static content.
- slog
Allow to use additional disks for ZFS Intent Log to speed up
operations like fsync(2).
- vfs.zfs.super_owner
Allows regular users to perform privileged operations on files stored
on ZFS file systems owned by him. Very careful with this one.
- chflags(2)
Not all the flags are supported. This still needs work.
- ZFSBoot
Support to boot off of ZFS pool. Not finished, AFAIK.
Submitted by: dfr
- Snapshot properties
- New failure modes
Before if write requested failed, system paniced. Now one
can select from one of three failure modes:
- panic - panic on write error
- wait - wait for disk to reappear
- continue - serve read requests if possible, block write requests
- Refquota, refreservation properties
Just quota and reservation properties, but don't count space consumed
by children file systems, clones and snapshots.
- Sparse volumes
ZVOLs that don't reserve space in the pool.
- External attributes
Compatible with extattr(2).
- NFSv4-ACLs
Not sure about the status, might not be complete yet.
Submitted by: trasz
- Creation-time properties
- Regression tests for zpool(8) command.
Obtained from: OpenSolaris
2008-11-17 20:49:29 +00:00
|
|
|
fp->f_seekp = 0;
|
|
|
|
if (rc) {
|
|
|
|
f->f_fsdata = NULL;
|
|
|
|
free(fp);
|
|
|
|
}
|
|
|
|
return (rc);
|
|
|
|
}
|
|
|
|
|
|
|
|
static int
|
|
|
|
zfs_close(struct open_file *f)
|
|
|
|
{
|
|
|
|
struct file *fp = (struct file *)f->f_fsdata;
|
|
|
|
|
|
|
|
dnode_cache_obj = 0;
|
|
|
|
f->f_fsdata = (void *)0;
|
|
|
|
if (fp == (struct file *)0)
|
|
|
|
return (0);
|
|
|
|
|
|
|
|
free(fp);
|
|
|
|
return (0);
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Copy a portion of a file into kernel memory.
|
|
|
|
* Cross block boundaries when necessary.
|
|
|
|
*/
|
|
|
|
static int
|
|
|
|
zfs_read(struct open_file *f, void *start, size_t size, size_t *resid /* out */)
|
|
|
|
{
|
2012-05-13 09:22:18 +00:00
|
|
|
const spa_t *spa = ((struct zfsmount *)f->f_devdata)->spa;
|
Update ZFS from version 6 to 13 and bring some FreeBSD-specific changes.
This bring huge amount of changes, I'll enumerate only user-visible changes:
- Delegated Administration
Allows regular users to perform ZFS operations, like file system
creation, snapshot creation, etc.
- L2ARC
Level 2 cache for ZFS - allows to use additional disks for cache.
Huge performance improvements mostly for random read of mostly
static content.
- slog
Allow to use additional disks for ZFS Intent Log to speed up
operations like fsync(2).
- vfs.zfs.super_owner
Allows regular users to perform privileged operations on files stored
on ZFS file systems owned by him. Very careful with this one.
- chflags(2)
Not all the flags are supported. This still needs work.
- ZFSBoot
Support to boot off of ZFS pool. Not finished, AFAIK.
Submitted by: dfr
- Snapshot properties
- New failure modes
Before if write requested failed, system paniced. Now one
can select from one of three failure modes:
- panic - panic on write error
- wait - wait for disk to reappear
- continue - serve read requests if possible, block write requests
- Refquota, refreservation properties
Just quota and reservation properties, but don't count space consumed
by children file systems, clones and snapshots.
- Sparse volumes
ZVOLs that don't reserve space in the pool.
- External attributes
Compatible with extattr(2).
- NFSv4-ACLs
Not sure about the status, might not be complete yet.
Submitted by: trasz
- Creation-time properties
- Regression tests for zpool(8) command.
Obtained from: OpenSolaris
2008-11-17 20:49:29 +00:00
|
|
|
struct file *fp = (struct file *)f->f_fsdata;
|
2011-02-27 19:41:40 +00:00
|
|
|
struct stat sb;
|
Update ZFS from version 6 to 13 and bring some FreeBSD-specific changes.
This bring huge amount of changes, I'll enumerate only user-visible changes:
- Delegated Administration
Allows regular users to perform ZFS operations, like file system
creation, snapshot creation, etc.
- L2ARC
Level 2 cache for ZFS - allows to use additional disks for cache.
Huge performance improvements mostly for random read of mostly
static content.
- slog
Allow to use additional disks for ZFS Intent Log to speed up
operations like fsync(2).
- vfs.zfs.super_owner
Allows regular users to perform privileged operations on files stored
on ZFS file systems owned by him. Very careful with this one.
- chflags(2)
Not all the flags are supported. This still needs work.
- ZFSBoot
Support to boot off of ZFS pool. Not finished, AFAIK.
Submitted by: dfr
- Snapshot properties
- New failure modes
Before if write requested failed, system paniced. Now one
can select from one of three failure modes:
- panic - panic on write error
- wait - wait for disk to reappear
- continue - serve read requests if possible, block write requests
- Refquota, refreservation properties
Just quota and reservation properties, but don't count space consumed
by children file systems, clones and snapshots.
- Sparse volumes
ZVOLs that don't reserve space in the pool.
- External attributes
Compatible with extattr(2).
- NFSv4-ACLs
Not sure about the status, might not be complete yet.
Submitted by: trasz
- Creation-time properties
- Regression tests for zpool(8) command.
Obtained from: OpenSolaris
2008-11-17 20:49:29 +00:00
|
|
|
size_t n;
|
|
|
|
int rc;
|
|
|
|
|
2011-02-27 19:41:40 +00:00
|
|
|
rc = zfs_stat(f, &sb);
|
|
|
|
if (rc)
|
|
|
|
return (rc);
|
Update ZFS from version 6 to 13 and bring some FreeBSD-specific changes.
This bring huge amount of changes, I'll enumerate only user-visible changes:
- Delegated Administration
Allows regular users to perform ZFS operations, like file system
creation, snapshot creation, etc.
- L2ARC
Level 2 cache for ZFS - allows to use additional disks for cache.
Huge performance improvements mostly for random read of mostly
static content.
- slog
Allow to use additional disks for ZFS Intent Log to speed up
operations like fsync(2).
- vfs.zfs.super_owner
Allows regular users to perform privileged operations on files stored
on ZFS file systems owned by him. Very careful with this one.
- chflags(2)
Not all the flags are supported. This still needs work.
- ZFSBoot
Support to boot off of ZFS pool. Not finished, AFAIK.
Submitted by: dfr
- Snapshot properties
- New failure modes
Before if write requested failed, system paniced. Now one
can select from one of three failure modes:
- panic - panic on write error
- wait - wait for disk to reappear
- continue - serve read requests if possible, block write requests
- Refquota, refreservation properties
Just quota and reservation properties, but don't count space consumed
by children file systems, clones and snapshots.
- Sparse volumes
ZVOLs that don't reserve space in the pool.
- External attributes
Compatible with extattr(2).
- NFSv4-ACLs
Not sure about the status, might not be complete yet.
Submitted by: trasz
- Creation-time properties
- Regression tests for zpool(8) command.
Obtained from: OpenSolaris
2008-11-17 20:49:29 +00:00
|
|
|
n = size;
|
2011-02-27 19:41:40 +00:00
|
|
|
if (fp->f_seekp + n > sb.st_size)
|
|
|
|
n = sb.st_size - fp->f_seekp;
|
2016-01-06 20:25:41 +00:00
|
|
|
|
Update ZFS from version 6 to 13 and bring some FreeBSD-specific changes.
This bring huge amount of changes, I'll enumerate only user-visible changes:
- Delegated Administration
Allows regular users to perform ZFS operations, like file system
creation, snapshot creation, etc.
- L2ARC
Level 2 cache for ZFS - allows to use additional disks for cache.
Huge performance improvements mostly for random read of mostly
static content.
- slog
Allow to use additional disks for ZFS Intent Log to speed up
operations like fsync(2).
- vfs.zfs.super_owner
Allows regular users to perform privileged operations on files stored
on ZFS file systems owned by him. Very careful with this one.
- chflags(2)
Not all the flags are supported. This still needs work.
- ZFSBoot
Support to boot off of ZFS pool. Not finished, AFAIK.
Submitted by: dfr
- Snapshot properties
- New failure modes
Before if write requested failed, system paniced. Now one
can select from one of three failure modes:
- panic - panic on write error
- wait - wait for disk to reappear
- continue - serve read requests if possible, block write requests
- Refquota, refreservation properties
Just quota and reservation properties, but don't count space consumed
by children file systems, clones and snapshots.
- Sparse volumes
ZVOLs that don't reserve space in the pool.
- External attributes
Compatible with extattr(2).
- NFSv4-ACLs
Not sure about the status, might not be complete yet.
Submitted by: trasz
- Creation-time properties
- Regression tests for zpool(8) command.
Obtained from: OpenSolaris
2008-11-17 20:49:29 +00:00
|
|
|
rc = dnode_read(spa, &fp->f_dnode, fp->f_seekp, start, n);
|
|
|
|
if (rc)
|
|
|
|
return (rc);
|
|
|
|
|
|
|
|
if (0) {
|
|
|
|
int i;
|
|
|
|
for (i = 0; i < n; i++)
|
|
|
|
putchar(((char*) start)[i]);
|
|
|
|
}
|
|
|
|
fp->f_seekp += n;
|
|
|
|
if (resid)
|
|
|
|
*resid = size - n;
|
|
|
|
|
|
|
|
return (0);
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Don't be silly - the bootstrap has no business writing anything.
|
|
|
|
*/
|
|
|
|
static int
|
|
|
|
zfs_write(struct open_file *f, void *start, size_t size, size_t *resid /* out */)
|
|
|
|
{
|
|
|
|
|
|
|
|
return (EROFS);
|
|
|
|
}
|
|
|
|
|
|
|
|
static off_t
|
|
|
|
zfs_seek(struct open_file *f, off_t offset, int where)
|
|
|
|
{
|
|
|
|
struct file *fp = (struct file *)f->f_fsdata;
|
|
|
|
|
|
|
|
switch (where) {
|
|
|
|
case SEEK_SET:
|
|
|
|
fp->f_seekp = offset;
|
|
|
|
break;
|
|
|
|
case SEEK_CUR:
|
|
|
|
fp->f_seekp += offset;
|
|
|
|
break;
|
|
|
|
case SEEK_END:
|
2011-02-27 19:41:40 +00:00
|
|
|
{
|
|
|
|
struct stat sb;
|
|
|
|
int error;
|
|
|
|
|
|
|
|
error = zfs_stat(f, &sb);
|
|
|
|
if (error != 0) {
|
|
|
|
errno = error;
|
|
|
|
return (-1);
|
|
|
|
}
|
|
|
|
fp->f_seekp = sb.st_size - offset;
|
Update ZFS from version 6 to 13 and bring some FreeBSD-specific changes.
This bring huge amount of changes, I'll enumerate only user-visible changes:
- Delegated Administration
Allows regular users to perform ZFS operations, like file system
creation, snapshot creation, etc.
- L2ARC
Level 2 cache for ZFS - allows to use additional disks for cache.
Huge performance improvements mostly for random read of mostly
static content.
- slog
Allow to use additional disks for ZFS Intent Log to speed up
operations like fsync(2).
- vfs.zfs.super_owner
Allows regular users to perform privileged operations on files stored
on ZFS file systems owned by him. Very careful with this one.
- chflags(2)
Not all the flags are supported. This still needs work.
- ZFSBoot
Support to boot off of ZFS pool. Not finished, AFAIK.
Submitted by: dfr
- Snapshot properties
- New failure modes
Before if write requested failed, system paniced. Now one
can select from one of three failure modes:
- panic - panic on write error
- wait - wait for disk to reappear
- continue - serve read requests if possible, block write requests
- Refquota, refreservation properties
Just quota and reservation properties, but don't count space consumed
by children file systems, clones and snapshots.
- Sparse volumes
ZVOLs that don't reserve space in the pool.
- External attributes
Compatible with extattr(2).
- NFSv4-ACLs
Not sure about the status, might not be complete yet.
Submitted by: trasz
- Creation-time properties
- Regression tests for zpool(8) command.
Obtained from: OpenSolaris
2008-11-17 20:49:29 +00:00
|
|
|
break;
|
2011-02-27 19:41:40 +00:00
|
|
|
}
|
Update ZFS from version 6 to 13 and bring some FreeBSD-specific changes.
This bring huge amount of changes, I'll enumerate only user-visible changes:
- Delegated Administration
Allows regular users to perform ZFS operations, like file system
creation, snapshot creation, etc.
- L2ARC
Level 2 cache for ZFS - allows to use additional disks for cache.
Huge performance improvements mostly for random read of mostly
static content.
- slog
Allow to use additional disks for ZFS Intent Log to speed up
operations like fsync(2).
- vfs.zfs.super_owner
Allows regular users to perform privileged operations on files stored
on ZFS file systems owned by him. Very careful with this one.
- chflags(2)
Not all the flags are supported. This still needs work.
- ZFSBoot
Support to boot off of ZFS pool. Not finished, AFAIK.
Submitted by: dfr
- Snapshot properties
- New failure modes
Before if write requested failed, system paniced. Now one
can select from one of three failure modes:
- panic - panic on write error
- wait - wait for disk to reappear
- continue - serve read requests if possible, block write requests
- Refquota, refreservation properties
Just quota and reservation properties, but don't count space consumed
by children file systems, clones and snapshots.
- Sparse volumes
ZVOLs that don't reserve space in the pool.
- External attributes
Compatible with extattr(2).
- NFSv4-ACLs
Not sure about the status, might not be complete yet.
Submitted by: trasz
- Creation-time properties
- Regression tests for zpool(8) command.
Obtained from: OpenSolaris
2008-11-17 20:49:29 +00:00
|
|
|
default:
|
|
|
|
errno = EINVAL;
|
|
|
|
return (-1);
|
|
|
|
}
|
|
|
|
return (fp->f_seekp);
|
|
|
|
}
|
|
|
|
|
|
|
|
static int
|
|
|
|
zfs_stat(struct open_file *f, struct stat *sb)
|
|
|
|
{
|
2012-05-13 09:22:18 +00:00
|
|
|
const spa_t *spa = ((struct zfsmount *)f->f_devdata)->spa;
|
Update ZFS from version 6 to 13 and bring some FreeBSD-specific changes.
This bring huge amount of changes, I'll enumerate only user-visible changes:
- Delegated Administration
Allows regular users to perform ZFS operations, like file system
creation, snapshot creation, etc.
- L2ARC
Level 2 cache for ZFS - allows to use additional disks for cache.
Huge performance improvements mostly for random read of mostly
static content.
- slog
Allow to use additional disks for ZFS Intent Log to speed up
operations like fsync(2).
- vfs.zfs.super_owner
Allows regular users to perform privileged operations on files stored
on ZFS file systems owned by him. Very careful with this one.
- chflags(2)
Not all the flags are supported. This still needs work.
- ZFSBoot
Support to boot off of ZFS pool. Not finished, AFAIK.
Submitted by: dfr
- Snapshot properties
- New failure modes
Before if write requested failed, system paniced. Now one
can select from one of three failure modes:
- panic - panic on write error
- wait - wait for disk to reappear
- continue - serve read requests if possible, block write requests
- Refquota, refreservation properties
Just quota and reservation properties, but don't count space consumed
by children file systems, clones and snapshots.
- Sparse volumes
ZVOLs that don't reserve space in the pool.
- External attributes
Compatible with extattr(2).
- NFSv4-ACLs
Not sure about the status, might not be complete yet.
Submitted by: trasz
- Creation-time properties
- Regression tests for zpool(8) command.
Obtained from: OpenSolaris
2008-11-17 20:49:29 +00:00
|
|
|
struct file *fp = (struct file *)f->f_fsdata;
|
|
|
|
|
2011-02-27 19:41:40 +00:00
|
|
|
return (zfs_dnode_stat(spa, &fp->f_dnode, sb));
|
Update ZFS from version 6 to 13 and bring some FreeBSD-specific changes.
This bring huge amount of changes, I'll enumerate only user-visible changes:
- Delegated Administration
Allows regular users to perform ZFS operations, like file system
creation, snapshot creation, etc.
- L2ARC
Level 2 cache for ZFS - allows to use additional disks for cache.
Huge performance improvements mostly for random read of mostly
static content.
- slog
Allow to use additional disks for ZFS Intent Log to speed up
operations like fsync(2).
- vfs.zfs.super_owner
Allows regular users to perform privileged operations on files stored
on ZFS file systems owned by him. Very careful with this one.
- chflags(2)
Not all the flags are supported. This still needs work.
- ZFSBoot
Support to boot off of ZFS pool. Not finished, AFAIK.
Submitted by: dfr
- Snapshot properties
- New failure modes
Before if write requested failed, system paniced. Now one
can select from one of three failure modes:
- panic - panic on write error
- wait - wait for disk to reappear
- continue - serve read requests if possible, block write requests
- Refquota, refreservation properties
Just quota and reservation properties, but don't count space consumed
by children file systems, clones and snapshots.
- Sparse volumes
ZVOLs that don't reserve space in the pool.
- External attributes
Compatible with extattr(2).
- NFSv4-ACLs
Not sure about the status, might not be complete yet.
Submitted by: trasz
- Creation-time properties
- Regression tests for zpool(8) command.
Obtained from: OpenSolaris
2008-11-17 20:49:29 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static int
|
|
|
|
zfs_readdir(struct open_file *f, struct dirent *d)
|
|
|
|
{
|
2012-05-13 09:22:18 +00:00
|
|
|
const spa_t *spa = ((struct zfsmount *)f->f_devdata)->spa;
|
Update ZFS from version 6 to 13 and bring some FreeBSD-specific changes.
This bring huge amount of changes, I'll enumerate only user-visible changes:
- Delegated Administration
Allows regular users to perform ZFS operations, like file system
creation, snapshot creation, etc.
- L2ARC
Level 2 cache for ZFS - allows to use additional disks for cache.
Huge performance improvements mostly for random read of mostly
static content.
- slog
Allow to use additional disks for ZFS Intent Log to speed up
operations like fsync(2).
- vfs.zfs.super_owner
Allows regular users to perform privileged operations on files stored
on ZFS file systems owned by him. Very careful with this one.
- chflags(2)
Not all the flags are supported. This still needs work.
- ZFSBoot
Support to boot off of ZFS pool. Not finished, AFAIK.
Submitted by: dfr
- Snapshot properties
- New failure modes
Before if write requested failed, system paniced. Now one
can select from one of three failure modes:
- panic - panic on write error
- wait - wait for disk to reappear
- continue - serve read requests if possible, block write requests
- Refquota, refreservation properties
Just quota and reservation properties, but don't count space consumed
by children file systems, clones and snapshots.
- Sparse volumes
ZVOLs that don't reserve space in the pool.
- External attributes
Compatible with extattr(2).
- NFSv4-ACLs
Not sure about the status, might not be complete yet.
Submitted by: trasz
- Creation-time properties
- Regression tests for zpool(8) command.
Obtained from: OpenSolaris
2008-11-17 20:49:29 +00:00
|
|
|
struct file *fp = (struct file *)f->f_fsdata;
|
|
|
|
mzap_ent_phys_t mze;
|
2011-02-27 19:41:40 +00:00
|
|
|
struct stat sb;
|
Update ZFS from version 6 to 13 and bring some FreeBSD-specific changes.
This bring huge amount of changes, I'll enumerate only user-visible changes:
- Delegated Administration
Allows regular users to perform ZFS operations, like file system
creation, snapshot creation, etc.
- L2ARC
Level 2 cache for ZFS - allows to use additional disks for cache.
Huge performance improvements mostly for random read of mostly
static content.
- slog
Allow to use additional disks for ZFS Intent Log to speed up
operations like fsync(2).
- vfs.zfs.super_owner
Allows regular users to perform privileged operations on files stored
on ZFS file systems owned by him. Very careful with this one.
- chflags(2)
Not all the flags are supported. This still needs work.
- ZFSBoot
Support to boot off of ZFS pool. Not finished, AFAIK.
Submitted by: dfr
- Snapshot properties
- New failure modes
Before if write requested failed, system paniced. Now one
can select from one of three failure modes:
- panic - panic on write error
- wait - wait for disk to reappear
- continue - serve read requests if possible, block write requests
- Refquota, refreservation properties
Just quota and reservation properties, but don't count space consumed
by children file systems, clones and snapshots.
- Sparse volumes
ZVOLs that don't reserve space in the pool.
- External attributes
Compatible with extattr(2).
- NFSv4-ACLs
Not sure about the status, might not be complete yet.
Submitted by: trasz
- Creation-time properties
- Regression tests for zpool(8) command.
Obtained from: OpenSolaris
2008-11-17 20:49:29 +00:00
|
|
|
size_t bsize = fp->f_dnode.dn_datablkszsec << SPA_MINBLOCKSHIFT;
|
|
|
|
int rc;
|
|
|
|
|
2011-02-27 19:41:40 +00:00
|
|
|
rc = zfs_stat(f, &sb);
|
|
|
|
if (rc)
|
|
|
|
return (rc);
|
|
|
|
if (!S_ISDIR(sb.st_mode))
|
Update ZFS from version 6 to 13 and bring some FreeBSD-specific changes.
This bring huge amount of changes, I'll enumerate only user-visible changes:
- Delegated Administration
Allows regular users to perform ZFS operations, like file system
creation, snapshot creation, etc.
- L2ARC
Level 2 cache for ZFS - allows to use additional disks for cache.
Huge performance improvements mostly for random read of mostly
static content.
- slog
Allow to use additional disks for ZFS Intent Log to speed up
operations like fsync(2).
- vfs.zfs.super_owner
Allows regular users to perform privileged operations on files stored
on ZFS file systems owned by him. Very careful with this one.
- chflags(2)
Not all the flags are supported. This still needs work.
- ZFSBoot
Support to boot off of ZFS pool. Not finished, AFAIK.
Submitted by: dfr
- Snapshot properties
- New failure modes
Before if write requested failed, system paniced. Now one
can select from one of three failure modes:
- panic - panic on write error
- wait - wait for disk to reappear
- continue - serve read requests if possible, block write requests
- Refquota, refreservation properties
Just quota and reservation properties, but don't count space consumed
by children file systems, clones and snapshots.
- Sparse volumes
ZVOLs that don't reserve space in the pool.
- External attributes
Compatible with extattr(2).
- NFSv4-ACLs
Not sure about the status, might not be complete yet.
Submitted by: trasz
- Creation-time properties
- Regression tests for zpool(8) command.
Obtained from: OpenSolaris
2008-11-17 20:49:29 +00:00
|
|
|
return (ENOTDIR);
|
|
|
|
|
|
|
|
/*
|
|
|
|
* If this is the first read, get the zap type.
|
|
|
|
*/
|
|
|
|
if (fp->f_seekp == 0) {
|
|
|
|
rc = dnode_read(spa, &fp->f_dnode,
|
|
|
|
0, &fp->f_zap_type, sizeof(fp->f_zap_type));
|
|
|
|
if (rc)
|
|
|
|
return (rc);
|
|
|
|
|
|
|
|
if (fp->f_zap_type == ZBT_MICRO) {
|
|
|
|
fp->f_seekp = offsetof(mzap_phys_t, mz_chunk);
|
|
|
|
} else {
|
|
|
|
rc = dnode_read(spa, &fp->f_dnode,
|
|
|
|
offsetof(zap_phys_t, zap_num_leafs),
|
|
|
|
&fp->f_num_leafs,
|
|
|
|
sizeof(fp->f_num_leafs));
|
|
|
|
if (rc)
|
|
|
|
return (rc);
|
|
|
|
|
|
|
|
fp->f_seekp = bsize;
|
|
|
|
fp->f_zap_leaf = (zap_leaf_phys_t *)malloc(bsize);
|
|
|
|
rc = dnode_read(spa, &fp->f_dnode,
|
|
|
|
fp->f_seekp,
|
|
|
|
fp->f_zap_leaf,
|
|
|
|
bsize);
|
|
|
|
if (rc)
|
|
|
|
return (rc);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (fp->f_zap_type == ZBT_MICRO) {
|
|
|
|
mzap_next:
|
|
|
|
if (fp->f_seekp >= bsize)
|
|
|
|
return (ENOENT);
|
|
|
|
|
|
|
|
rc = dnode_read(spa, &fp->f_dnode,
|
|
|
|
fp->f_seekp, &mze, sizeof(mze));
|
2010-05-31 09:06:03 +00:00
|
|
|
if (rc)
|
|
|
|
return (rc);
|
Update ZFS from version 6 to 13 and bring some FreeBSD-specific changes.
This bring huge amount of changes, I'll enumerate only user-visible changes:
- Delegated Administration
Allows regular users to perform ZFS operations, like file system
creation, snapshot creation, etc.
- L2ARC
Level 2 cache for ZFS - allows to use additional disks for cache.
Huge performance improvements mostly for random read of mostly
static content.
- slog
Allow to use additional disks for ZFS Intent Log to speed up
operations like fsync(2).
- vfs.zfs.super_owner
Allows regular users to perform privileged operations on files stored
on ZFS file systems owned by him. Very careful with this one.
- chflags(2)
Not all the flags are supported. This still needs work.
- ZFSBoot
Support to boot off of ZFS pool. Not finished, AFAIK.
Submitted by: dfr
- Snapshot properties
- New failure modes
Before if write requested failed, system paniced. Now one
can select from one of three failure modes:
- panic - panic on write error
- wait - wait for disk to reappear
- continue - serve read requests if possible, block write requests
- Refquota, refreservation properties
Just quota and reservation properties, but don't count space consumed
by children file systems, clones and snapshots.
- Sparse volumes
ZVOLs that don't reserve space in the pool.
- External attributes
Compatible with extattr(2).
- NFSv4-ACLs
Not sure about the status, might not be complete yet.
Submitted by: trasz
- Creation-time properties
- Regression tests for zpool(8) command.
Obtained from: OpenSolaris
2008-11-17 20:49:29 +00:00
|
|
|
fp->f_seekp += sizeof(mze);
|
|
|
|
|
|
|
|
if (!mze.mze_name[0])
|
|
|
|
goto mzap_next;
|
|
|
|
|
|
|
|
d->d_fileno = ZFS_DIRENT_OBJ(mze.mze_value);
|
|
|
|
d->d_type = ZFS_DIRENT_TYPE(mze.mze_value);
|
|
|
|
strcpy(d->d_name, mze.mze_name);
|
|
|
|
d->d_namlen = strlen(d->d_name);
|
|
|
|
return (0);
|
|
|
|
} else {
|
|
|
|
zap_leaf_t zl;
|
|
|
|
zap_leaf_chunk_t *zc, *nc;
|
|
|
|
int chunk;
|
|
|
|
size_t namelen;
|
|
|
|
char *p;
|
|
|
|
uint64_t value;
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Initialise this so we can use the ZAP size
|
|
|
|
* calculating macros.
|
|
|
|
*/
|
|
|
|
zl.l_bs = ilog2(bsize);
|
|
|
|
zl.l_phys = fp->f_zap_leaf;
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Figure out which chunk we are currently looking at
|
|
|
|
* and consider seeking to the next leaf. We use the
|
|
|
|
* low bits of f_seekp as a simple chunk index.
|
|
|
|
*/
|
|
|
|
fzap_next:
|
|
|
|
chunk = fp->f_seekp & (bsize - 1);
|
|
|
|
if (chunk == ZAP_LEAF_NUMCHUNKS(&zl)) {
|
2016-04-21 19:57:40 +00:00
|
|
|
fp->f_seekp = rounddown2(fp->f_seekp, bsize) + bsize;
|
Update ZFS from version 6 to 13 and bring some FreeBSD-specific changes.
This bring huge amount of changes, I'll enumerate only user-visible changes:
- Delegated Administration
Allows regular users to perform ZFS operations, like file system
creation, snapshot creation, etc.
- L2ARC
Level 2 cache for ZFS - allows to use additional disks for cache.
Huge performance improvements mostly for random read of mostly
static content.
- slog
Allow to use additional disks for ZFS Intent Log to speed up
operations like fsync(2).
- vfs.zfs.super_owner
Allows regular users to perform privileged operations on files stored
on ZFS file systems owned by him. Very careful with this one.
- chflags(2)
Not all the flags are supported. This still needs work.
- ZFSBoot
Support to boot off of ZFS pool. Not finished, AFAIK.
Submitted by: dfr
- Snapshot properties
- New failure modes
Before if write requested failed, system paniced. Now one
can select from one of three failure modes:
- panic - panic on write error
- wait - wait for disk to reappear
- continue - serve read requests if possible, block write requests
- Refquota, refreservation properties
Just quota and reservation properties, but don't count space consumed
by children file systems, clones and snapshots.
- Sparse volumes
ZVOLs that don't reserve space in the pool.
- External attributes
Compatible with extattr(2).
- NFSv4-ACLs
Not sure about the status, might not be complete yet.
Submitted by: trasz
- Creation-time properties
- Regression tests for zpool(8) command.
Obtained from: OpenSolaris
2008-11-17 20:49:29 +00:00
|
|
|
chunk = 0;
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Check for EOF and read the new leaf.
|
|
|
|
*/
|
|
|
|
if (fp->f_seekp >= bsize * fp->f_num_leafs)
|
|
|
|
return (ENOENT);
|
|
|
|
|
|
|
|
rc = dnode_read(spa, &fp->f_dnode,
|
|
|
|
fp->f_seekp,
|
|
|
|
fp->f_zap_leaf,
|
|
|
|
bsize);
|
|
|
|
if (rc)
|
|
|
|
return (rc);
|
|
|
|
}
|
|
|
|
|
|
|
|
zc = &ZAP_LEAF_CHUNK(&zl, chunk);
|
|
|
|
fp->f_seekp++;
|
|
|
|
if (zc->l_entry.le_type != ZAP_CHUNK_ENTRY)
|
|
|
|
goto fzap_next;
|
|
|
|
|
2012-09-11 07:11:32 +00:00
|
|
|
namelen = zc->l_entry.le_name_numints;
|
Update ZFS from version 6 to 13 and bring some FreeBSD-specific changes.
This bring huge amount of changes, I'll enumerate only user-visible changes:
- Delegated Administration
Allows regular users to perform ZFS operations, like file system
creation, snapshot creation, etc.
- L2ARC
Level 2 cache for ZFS - allows to use additional disks for cache.
Huge performance improvements mostly for random read of mostly
static content.
- slog
Allow to use additional disks for ZFS Intent Log to speed up
operations like fsync(2).
- vfs.zfs.super_owner
Allows regular users to perform privileged operations on files stored
on ZFS file systems owned by him. Very careful with this one.
- chflags(2)
Not all the flags are supported. This still needs work.
- ZFSBoot
Support to boot off of ZFS pool. Not finished, AFAIK.
Submitted by: dfr
- Snapshot properties
- New failure modes
Before if write requested failed, system paniced. Now one
can select from one of three failure modes:
- panic - panic on write error
- wait - wait for disk to reappear
- continue - serve read requests if possible, block write requests
- Refquota, refreservation properties
Just quota and reservation properties, but don't count space consumed
by children file systems, clones and snapshots.
- Sparse volumes
ZVOLs that don't reserve space in the pool.
- External attributes
Compatible with extattr(2).
- NFSv4-ACLs
Not sure about the status, might not be complete yet.
Submitted by: trasz
- Creation-time properties
- Regression tests for zpool(8) command.
Obtained from: OpenSolaris
2008-11-17 20:49:29 +00:00
|
|
|
if (namelen > sizeof(d->d_name))
|
|
|
|
namelen = sizeof(d->d_name);
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Paste the name back together.
|
|
|
|
*/
|
|
|
|
nc = &ZAP_LEAF_CHUNK(&zl, zc->l_entry.le_name_chunk);
|
|
|
|
p = d->d_name;
|
|
|
|
while (namelen > 0) {
|
|
|
|
int len;
|
|
|
|
len = namelen;
|
|
|
|
if (len > ZAP_LEAF_ARRAY_BYTES)
|
|
|
|
len = ZAP_LEAF_ARRAY_BYTES;
|
|
|
|
memcpy(p, nc->l_array.la_array, len);
|
|
|
|
p += len;
|
|
|
|
namelen -= len;
|
|
|
|
nc = &ZAP_LEAF_CHUNK(&zl, nc->l_array.la_next);
|
|
|
|
}
|
|
|
|
d->d_name[sizeof(d->d_name) - 1] = 0;
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Assume the first eight bytes of the value are
|
|
|
|
* a uint64_t.
|
|
|
|
*/
|
|
|
|
value = fzap_leaf_value(&zl, zc);
|
|
|
|
|
|
|
|
d->d_fileno = ZFS_DIRENT_OBJ(value);
|
|
|
|
d->d_type = ZFS_DIRENT_TYPE(value);
|
|
|
|
d->d_namlen = strlen(d->d_name);
|
|
|
|
|
|
|
|
return (0);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static int
|
|
|
|
vdev_read(vdev_t *vdev, void *priv, off_t offset, void *buf, size_t size)
|
|
|
|
{
|
|
|
|
int fd;
|
|
|
|
|
|
|
|
fd = (uintptr_t) priv;
|
|
|
|
lseek(fd, offset, SEEK_SET);
|
|
|
|
if (read(fd, buf, size) == size) {
|
|
|
|
return 0;
|
|
|
|
} else {
|
|
|
|
return (EIO);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-05-12 09:03:30 +00:00
|
|
|
static int
|
|
|
|
zfs_dev_init(void)
|
Update ZFS from version 6 to 13 and bring some FreeBSD-specific changes.
This bring huge amount of changes, I'll enumerate only user-visible changes:
- Delegated Administration
Allows regular users to perform ZFS operations, like file system
creation, snapshot creation, etc.
- L2ARC
Level 2 cache for ZFS - allows to use additional disks for cache.
Huge performance improvements mostly for random read of mostly
static content.
- slog
Allow to use additional disks for ZFS Intent Log to speed up
operations like fsync(2).
- vfs.zfs.super_owner
Allows regular users to perform privileged operations on files stored
on ZFS file systems owned by him. Very careful with this one.
- chflags(2)
Not all the flags are supported. This still needs work.
- ZFSBoot
Support to boot off of ZFS pool. Not finished, AFAIK.
Submitted by: dfr
- Snapshot properties
- New failure modes
Before if write requested failed, system paniced. Now one
can select from one of three failure modes:
- panic - panic on write error
- wait - wait for disk to reappear
- continue - serve read requests if possible, block write requests
- Refquota, refreservation properties
Just quota and reservation properties, but don't count space consumed
by children file systems, clones and snapshots.
- Sparse volumes
ZVOLs that don't reserve space in the pool.
- External attributes
Compatible with extattr(2).
- NFSv4-ACLs
Not sure about the status, might not be complete yet.
Submitted by: trasz
- Creation-time properties
- Regression tests for zpool(8) command.
Obtained from: OpenSolaris
2008-11-17 20:49:29 +00:00
|
|
|
{
|
2012-10-06 19:40:12 +00:00
|
|
|
spa_t *spa;
|
|
|
|
spa_t *next;
|
|
|
|
spa_t *prev;
|
|
|
|
|
2012-05-12 09:03:30 +00:00
|
|
|
zfs_init();
|
|
|
|
if (archsw.arch_zfs_probe == NULL)
|
|
|
|
return (ENXIO);
|
|
|
|
archsw.arch_zfs_probe();
|
2012-10-06 19:40:12 +00:00
|
|
|
|
|
|
|
prev = NULL;
|
|
|
|
spa = STAILQ_FIRST(&zfs_pools);
|
|
|
|
while (spa != NULL) {
|
|
|
|
next = STAILQ_NEXT(spa, spa_link);
|
|
|
|
if (zfs_spa_init(spa)) {
|
|
|
|
if (prev == NULL)
|
|
|
|
STAILQ_REMOVE_HEAD(&zfs_pools, spa_link);
|
|
|
|
else
|
|
|
|
STAILQ_REMOVE_AFTER(&zfs_pools, prev, spa_link);
|
|
|
|
} else
|
|
|
|
prev = spa;
|
|
|
|
spa = next;
|
|
|
|
}
|
2012-05-12 09:03:30 +00:00
|
|
|
return (0);
|
Update ZFS from version 6 to 13 and bring some FreeBSD-specific changes.
This bring huge amount of changes, I'll enumerate only user-visible changes:
- Delegated Administration
Allows regular users to perform ZFS operations, like file system
creation, snapshot creation, etc.
- L2ARC
Level 2 cache for ZFS - allows to use additional disks for cache.
Huge performance improvements mostly for random read of mostly
static content.
- slog
Allow to use additional disks for ZFS Intent Log to speed up
operations like fsync(2).
- vfs.zfs.super_owner
Allows regular users to perform privileged operations on files stored
on ZFS file systems owned by him. Very careful with this one.
- chflags(2)
Not all the flags are supported. This still needs work.
- ZFSBoot
Support to boot off of ZFS pool. Not finished, AFAIK.
Submitted by: dfr
- Snapshot properties
- New failure modes
Before if write requested failed, system paniced. Now one
can select from one of three failure modes:
- panic - panic on write error
- wait - wait for disk to reappear
- continue - serve read requests if possible, block write requests
- Refquota, refreservation properties
Just quota and reservation properties, but don't count space consumed
by children file systems, clones and snapshots.
- Sparse volumes
ZVOLs that don't reserve space in the pool.
- External attributes
Compatible with extattr(2).
- NFSv4-ACLs
Not sure about the status, might not be complete yet.
Submitted by: trasz
- Creation-time properties
- Regression tests for zpool(8) command.
Obtained from: OpenSolaris
2008-11-17 20:49:29 +00:00
|
|
|
}
|
|
|
|
|
2012-08-05 14:48:28 +00:00
|
|
|
struct zfs_probe_args {
|
|
|
|
int fd;
|
|
|
|
const char *devname;
|
|
|
|
uint64_t *pool_guid;
|
2016-01-11 15:35:29 +00:00
|
|
|
u_int secsz;
|
2012-08-05 14:48:28 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
static int
|
|
|
|
zfs_diskread(void *arg, void *buf, size_t blocks, off_t offset)
|
|
|
|
{
|
|
|
|
struct zfs_probe_args *ppa;
|
|
|
|
|
|
|
|
ppa = (struct zfs_probe_args *)arg;
|
|
|
|
return (vdev_read(NULL, (void *)(uintptr_t)ppa->fd,
|
|
|
|
offset * ppa->secsz, buf, blocks * ppa->secsz));
|
|
|
|
}
|
|
|
|
|
|
|
|
static int
|
|
|
|
zfs_probe(int fd, uint64_t *pool_guid)
|
Update ZFS from version 6 to 13 and bring some FreeBSD-specific changes.
This bring huge amount of changes, I'll enumerate only user-visible changes:
- Delegated Administration
Allows regular users to perform ZFS operations, like file system
creation, snapshot creation, etc.
- L2ARC
Level 2 cache for ZFS - allows to use additional disks for cache.
Huge performance improvements mostly for random read of mostly
static content.
- slog
Allow to use additional disks for ZFS Intent Log to speed up
operations like fsync(2).
- vfs.zfs.super_owner
Allows regular users to perform privileged operations on files stored
on ZFS file systems owned by him. Very careful with this one.
- chflags(2)
Not all the flags are supported. This still needs work.
- ZFSBoot
Support to boot off of ZFS pool. Not finished, AFAIK.
Submitted by: dfr
- Snapshot properties
- New failure modes
Before if write requested failed, system paniced. Now one
can select from one of three failure modes:
- panic - panic on write error
- wait - wait for disk to reappear
- continue - serve read requests if possible, block write requests
- Refquota, refreservation properties
Just quota and reservation properties, but don't count space consumed
by children file systems, clones and snapshots.
- Sparse volumes
ZVOLs that don't reserve space in the pool.
- External attributes
Compatible with extattr(2).
- NFSv4-ACLs
Not sure about the status, might not be complete yet.
Submitted by: trasz
- Creation-time properties
- Regression tests for zpool(8) command.
Obtained from: OpenSolaris
2008-11-17 20:49:29 +00:00
|
|
|
{
|
2012-05-12 09:03:30 +00:00
|
|
|
spa_t *spa;
|
|
|
|
int ret;
|
Update ZFS from version 6 to 13 and bring some FreeBSD-specific changes.
This bring huge amount of changes, I'll enumerate only user-visible changes:
- Delegated Administration
Allows regular users to perform ZFS operations, like file system
creation, snapshot creation, etc.
- L2ARC
Level 2 cache for ZFS - allows to use additional disks for cache.
Huge performance improvements mostly for random read of mostly
static content.
- slog
Allow to use additional disks for ZFS Intent Log to speed up
operations like fsync(2).
- vfs.zfs.super_owner
Allows regular users to perform privileged operations on files stored
on ZFS file systems owned by him. Very careful with this one.
- chflags(2)
Not all the flags are supported. This still needs work.
- ZFSBoot
Support to boot off of ZFS pool. Not finished, AFAIK.
Submitted by: dfr
- Snapshot properties
- New failure modes
Before if write requested failed, system paniced. Now one
can select from one of three failure modes:
- panic - panic on write error
- wait - wait for disk to reappear
- continue - serve read requests if possible, block write requests
- Refquota, refreservation properties
Just quota and reservation properties, but don't count space consumed
by children file systems, clones and snapshots.
- Sparse volumes
ZVOLs that don't reserve space in the pool.
- External attributes
Compatible with extattr(2).
- NFSv4-ACLs
Not sure about the status, might not be complete yet.
Submitted by: trasz
- Creation-time properties
- Regression tests for zpool(8) command.
Obtained from: OpenSolaris
2008-11-17 20:49:29 +00:00
|
|
|
|
2012-05-12 09:03:30 +00:00
|
|
|
ret = vdev_probe(vdev_read, (void *)(uintptr_t)fd, &spa);
|
2012-08-05 14:48:28 +00:00
|
|
|
if (ret == 0 && pool_guid != NULL)
|
2012-05-12 09:03:30 +00:00
|
|
|
*pool_guid = spa->spa_guid;
|
2012-08-05 14:48:28 +00:00
|
|
|
return (ret);
|
|
|
|
}
|
|
|
|
|
2016-05-18 05:59:05 +00:00
|
|
|
static int
|
2012-08-05 14:48:28 +00:00
|
|
|
zfs_probe_partition(void *arg, const char *partname,
|
|
|
|
const struct ptable_entry *part)
|
|
|
|
{
|
|
|
|
struct zfs_probe_args *ppa, pa;
|
|
|
|
struct ptable *table;
|
|
|
|
char devname[32];
|
|
|
|
int ret;
|
|
|
|
|
|
|
|
/* Probe only freebsd-zfs and freebsd partitions */
|
|
|
|
if (part->type != PART_FREEBSD &&
|
|
|
|
part->type != PART_FREEBSD_ZFS)
|
2016-06-16 07:45:57 +00:00
|
|
|
return (0);
|
2012-08-05 14:48:28 +00:00
|
|
|
|
|
|
|
ppa = (struct zfs_probe_args *)arg;
|
|
|
|
strncpy(devname, ppa->devname, strlen(ppa->devname) - 1);
|
2012-08-15 09:18:49 +00:00
|
|
|
devname[strlen(ppa->devname) - 1] = '\0';
|
2012-08-05 14:48:28 +00:00
|
|
|
sprintf(devname, "%s%s:", devname, partname);
|
|
|
|
pa.fd = open(devname, O_RDONLY);
|
|
|
|
if (pa.fd == -1)
|
2016-06-16 07:45:57 +00:00
|
|
|
return (0);
|
2012-08-05 14:48:28 +00:00
|
|
|
ret = zfs_probe(pa.fd, ppa->pool_guid);
|
|
|
|
if (ret == 0)
|
2016-06-16 07:45:57 +00:00
|
|
|
return (0);
|
2012-08-05 14:48:28 +00:00
|
|
|
/* Do we have BSD label here? */
|
|
|
|
if (part->type == PART_FREEBSD) {
|
|
|
|
pa.devname = devname;
|
|
|
|
pa.pool_guid = ppa->pool_guid;
|
|
|
|
pa.secsz = ppa->secsz;
|
|
|
|
table = ptable_open(&pa, part->end - part->start + 1,
|
|
|
|
ppa->secsz, zfs_diskread);
|
|
|
|
if (table != NULL) {
|
2016-06-16 07:45:57 +00:00
|
|
|
ptable_iterate(table, &pa, zfs_probe_partition);
|
2012-08-05 14:48:28 +00:00
|
|
|
ptable_close(table);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
close(pa.fd);
|
2016-06-16 07:45:57 +00:00
|
|
|
return (0);
|
2012-08-05 14:48:28 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
int
|
|
|
|
zfs_probe_dev(const char *devname, uint64_t *pool_guid)
|
|
|
|
{
|
|
|
|
struct ptable *table;
|
|
|
|
struct zfs_probe_args pa;
|
|
|
|
off_t mediasz;
|
|
|
|
int ret;
|
|
|
|
|
|
|
|
pa.fd = open(devname, O_RDONLY);
|
|
|
|
if (pa.fd == -1)
|
|
|
|
return (ENXIO);
|
|
|
|
/* Probe the whole disk */
|
|
|
|
ret = zfs_probe(pa.fd, pool_guid);
|
|
|
|
if (ret == 0)
|
|
|
|
return (0);
|
|
|
|
/* Probe each partition */
|
|
|
|
ret = ioctl(pa.fd, DIOCGMEDIASIZE, &mediasz);
|
|
|
|
if (ret == 0)
|
|
|
|
ret = ioctl(pa.fd, DIOCGSECTORSIZE, &pa.secsz);
|
|
|
|
if (ret == 0) {
|
|
|
|
pa.devname = devname;
|
|
|
|
pa.pool_guid = pool_guid;
|
|
|
|
table = ptable_open(&pa, mediasz / pa.secsz, pa.secsz,
|
|
|
|
zfs_diskread);
|
|
|
|
if (table != NULL) {
|
|
|
|
ptable_iterate(table, &pa, zfs_probe_partition);
|
|
|
|
ptable_close(table);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
close(pa.fd);
|
2016-01-06 20:25:41 +00:00
|
|
|
return (ret);
|
Update ZFS from version 6 to 13 and bring some FreeBSD-specific changes.
This bring huge amount of changes, I'll enumerate only user-visible changes:
- Delegated Administration
Allows regular users to perform ZFS operations, like file system
creation, snapshot creation, etc.
- L2ARC
Level 2 cache for ZFS - allows to use additional disks for cache.
Huge performance improvements mostly for random read of mostly
static content.
- slog
Allow to use additional disks for ZFS Intent Log to speed up
operations like fsync(2).
- vfs.zfs.super_owner
Allows regular users to perform privileged operations on files stored
on ZFS file systems owned by him. Very careful with this one.
- chflags(2)
Not all the flags are supported. This still needs work.
- ZFSBoot
Support to boot off of ZFS pool. Not finished, AFAIK.
Submitted by: dfr
- Snapshot properties
- New failure modes
Before if write requested failed, system paniced. Now one
can select from one of three failure modes:
- panic - panic on write error
- wait - wait for disk to reappear
- continue - serve read requests if possible, block write requests
- Refquota, refreservation properties
Just quota and reservation properties, but don't count space consumed
by children file systems, clones and snapshots.
- Sparse volumes
ZVOLs that don't reserve space in the pool.
- External attributes
Compatible with extattr(2).
- NFSv4-ACLs
Not sure about the status, might not be complete yet.
Submitted by: trasz
- Creation-time properties
- Regression tests for zpool(8) command.
Obtained from: OpenSolaris
2008-11-17 20:49:29 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Print information about ZFS pools
|
|
|
|
*/
|
|
|
|
static void
|
|
|
|
zfs_dev_print(int verbose)
|
|
|
|
{
|
|
|
|
spa_t *spa;
|
|
|
|
char line[80];
|
|
|
|
|
|
|
|
if (verbose) {
|
|
|
|
spa_all_status();
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
STAILQ_FOREACH(spa, &zfs_pools, spa_link) {
|
2012-05-12 09:03:30 +00:00
|
|
|
sprintf(line, " zfs:%s\n", spa->spa_name);
|
Update ZFS from version 6 to 13 and bring some FreeBSD-specific changes.
This bring huge amount of changes, I'll enumerate only user-visible changes:
- Delegated Administration
Allows regular users to perform ZFS operations, like file system
creation, snapshot creation, etc.
- L2ARC
Level 2 cache for ZFS - allows to use additional disks for cache.
Huge performance improvements mostly for random read of mostly
static content.
- slog
Allow to use additional disks for ZFS Intent Log to speed up
operations like fsync(2).
- vfs.zfs.super_owner
Allows regular users to perform privileged operations on files stored
on ZFS file systems owned by him. Very careful with this one.
- chflags(2)
Not all the flags are supported. This still needs work.
- ZFSBoot
Support to boot off of ZFS pool. Not finished, AFAIK.
Submitted by: dfr
- Snapshot properties
- New failure modes
Before if write requested failed, system paniced. Now one
can select from one of three failure modes:
- panic - panic on write error
- wait - wait for disk to reappear
- continue - serve read requests if possible, block write requests
- Refquota, refreservation properties
Just quota and reservation properties, but don't count space consumed
by children file systems, clones and snapshots.
- Sparse volumes
ZVOLs that don't reserve space in the pool.
- External attributes
Compatible with extattr(2).
- NFSv4-ACLs
Not sure about the status, might not be complete yet.
Submitted by: trasz
- Creation-time properties
- Regression tests for zpool(8) command.
Obtained from: OpenSolaris
2008-11-17 20:49:29 +00:00
|
|
|
pager_output(line);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Attempt to open the pool described by (dev) for use by (f).
|
|
|
|
*/
|
2012-05-12 09:03:30 +00:00
|
|
|
static int
|
2012-05-12 20:27:33 +00:00
|
|
|
zfs_dev_open(struct open_file *f, ...)
|
2012-05-12 09:03:30 +00:00
|
|
|
{
|
2012-05-12 20:27:33 +00:00
|
|
|
va_list args;
|
|
|
|
struct zfs_devdesc *dev;
|
2012-05-12 09:03:30 +00:00
|
|
|
struct zfsmount *mount;
|
2012-05-12 20:27:33 +00:00
|
|
|
spa_t *spa;
|
2012-05-12 09:03:30 +00:00
|
|
|
int rv;
|
|
|
|
|
2012-05-12 20:27:33 +00:00
|
|
|
va_start(args, f);
|
|
|
|
dev = va_arg(args, struct zfs_devdesc *);
|
|
|
|
va_end(args);
|
|
|
|
|
2012-10-06 19:25:40 +00:00
|
|
|
if (dev->pool_guid == 0)
|
|
|
|
spa = STAILQ_FIRST(&zfs_pools);
|
|
|
|
else
|
|
|
|
spa = spa_find_by_guid(dev->pool_guid);
|
2012-05-12 20:27:33 +00:00
|
|
|
if (!spa)
|
|
|
|
return (ENXIO);
|
2012-05-12 09:03:30 +00:00
|
|
|
mount = malloc(sizeof(*mount));
|
2012-05-12 20:27:33 +00:00
|
|
|
rv = zfs_mount(spa, dev->root_guid, mount);
|
2012-05-12 09:03:30 +00:00
|
|
|
if (rv != 0) {
|
|
|
|
free(mount);
|
|
|
|
return (rv);
|
|
|
|
}
|
|
|
|
if (mount->objset.os_type != DMU_OST_ZFS) {
|
2012-05-12 20:23:30 +00:00
|
|
|
printf("Unexpected object set type %ju\n",
|
|
|
|
(uintmax_t)mount->objset.os_type);
|
2012-05-12 09:03:30 +00:00
|
|
|
free(mount);
|
|
|
|
return (EIO);
|
|
|
|
}
|
|
|
|
f->f_devdata = mount;
|
2008-12-11 16:48:35 +00:00
|
|
|
free(dev);
|
Update ZFS from version 6 to 13 and bring some FreeBSD-specific changes.
This bring huge amount of changes, I'll enumerate only user-visible changes:
- Delegated Administration
Allows regular users to perform ZFS operations, like file system
creation, snapshot creation, etc.
- L2ARC
Level 2 cache for ZFS - allows to use additional disks for cache.
Huge performance improvements mostly for random read of mostly
static content.
- slog
Allow to use additional disks for ZFS Intent Log to speed up
operations like fsync(2).
- vfs.zfs.super_owner
Allows regular users to perform privileged operations on files stored
on ZFS file systems owned by him. Very careful with this one.
- chflags(2)
Not all the flags are supported. This still needs work.
- ZFSBoot
Support to boot off of ZFS pool. Not finished, AFAIK.
Submitted by: dfr
- Snapshot properties
- New failure modes
Before if write requested failed, system paniced. Now one
can select from one of three failure modes:
- panic - panic on write error
- wait - wait for disk to reappear
- continue - serve read requests if possible, block write requests
- Refquota, refreservation properties
Just quota and reservation properties, but don't count space consumed
by children file systems, clones and snapshots.
- Sparse volumes
ZVOLs that don't reserve space in the pool.
- External attributes
Compatible with extattr(2).
- NFSv4-ACLs
Not sure about the status, might not be complete yet.
Submitted by: trasz
- Creation-time properties
- Regression tests for zpool(8) command.
Obtained from: OpenSolaris
2008-11-17 20:49:29 +00:00
|
|
|
return (0);
|
|
|
|
}
|
|
|
|
|
2012-10-06 19:41:11 +00:00
|
|
|
static int
|
Update ZFS from version 6 to 13 and bring some FreeBSD-specific changes.
This bring huge amount of changes, I'll enumerate only user-visible changes:
- Delegated Administration
Allows regular users to perform ZFS operations, like file system
creation, snapshot creation, etc.
- L2ARC
Level 2 cache for ZFS - allows to use additional disks for cache.
Huge performance improvements mostly for random read of mostly
static content.
- slog
Allow to use additional disks for ZFS Intent Log to speed up
operations like fsync(2).
- vfs.zfs.super_owner
Allows regular users to perform privileged operations on files stored
on ZFS file systems owned by him. Very careful with this one.
- chflags(2)
Not all the flags are supported. This still needs work.
- ZFSBoot
Support to boot off of ZFS pool. Not finished, AFAIK.
Submitted by: dfr
- Snapshot properties
- New failure modes
Before if write requested failed, system paniced. Now one
can select from one of three failure modes:
- panic - panic on write error
- wait - wait for disk to reappear
- continue - serve read requests if possible, block write requests
- Refquota, refreservation properties
Just quota and reservation properties, but don't count space consumed
by children file systems, clones and snapshots.
- Sparse volumes
ZVOLs that don't reserve space in the pool.
- External attributes
Compatible with extattr(2).
- NFSv4-ACLs
Not sure about the status, might not be complete yet.
Submitted by: trasz
- Creation-time properties
- Regression tests for zpool(8) command.
Obtained from: OpenSolaris
2008-11-17 20:49:29 +00:00
|
|
|
zfs_dev_close(struct open_file *f)
|
|
|
|
{
|
|
|
|
|
2012-05-12 09:03:30 +00:00
|
|
|
free(f->f_devdata);
|
Update ZFS from version 6 to 13 and bring some FreeBSD-specific changes.
This bring huge amount of changes, I'll enumerate only user-visible changes:
- Delegated Administration
Allows regular users to perform ZFS operations, like file system
creation, snapshot creation, etc.
- L2ARC
Level 2 cache for ZFS - allows to use additional disks for cache.
Huge performance improvements mostly for random read of mostly
static content.
- slog
Allow to use additional disks for ZFS Intent Log to speed up
operations like fsync(2).
- vfs.zfs.super_owner
Allows regular users to perform privileged operations on files stored
on ZFS file systems owned by him. Very careful with this one.
- chflags(2)
Not all the flags are supported. This still needs work.
- ZFSBoot
Support to boot off of ZFS pool. Not finished, AFAIK.
Submitted by: dfr
- Snapshot properties
- New failure modes
Before if write requested failed, system paniced. Now one
can select from one of three failure modes:
- panic - panic on write error
- wait - wait for disk to reappear
- continue - serve read requests if possible, block write requests
- Refquota, refreservation properties
Just quota and reservation properties, but don't count space consumed
by children file systems, clones and snapshots.
- Sparse volumes
ZVOLs that don't reserve space in the pool.
- External attributes
Compatible with extattr(2).
- NFSv4-ACLs
Not sure about the status, might not be complete yet.
Submitted by: trasz
- Creation-time properties
- Regression tests for zpool(8) command.
Obtained from: OpenSolaris
2008-11-17 20:49:29 +00:00
|
|
|
f->f_devdata = NULL;
|
|
|
|
return (0);
|
|
|
|
}
|
|
|
|
|
2012-10-06 19:41:11 +00:00
|
|
|
static int
|
A new implementation of the loader block cache
The block cache implementation in loader has proven to be almost useless, and in worst case even slowing down the disk reads due to insufficient cache size and extra memory copy.
Also the current cache implementation does not cache reads from CDs, or work with zfs built on top of multiple disks.
Instead of an LRU, this code uses a simple hash (O(1) read from cache), and instead of a single global cache, a separate cache per block device.
The cache also implements limited read-ahead to increase performance.
To simplify read ahead management, the read ahead will not wrap over bcache end, so in worst case, single block physical read will be performed to fill the last block in bcache.
Booting from a virtual CD over IPMI:
0ms latency, before: 27 second, after: 7 seconds
60ms latency, before: over 12 minutes, after: under 5 minutes.
Submitted by: Toomas Soome <tsoome@me.com>
Reviewed by: delphij (previous version), emaste (previous version)
Relnotes: yes
Differential Revision: https://reviews.freebsd.org/D4713
2016-04-18 23:09:22 +00:00
|
|
|
zfs_dev_strategy(void *devdata, int rw, daddr_t dblk, size_t offset, size_t size, char *buf, size_t *rsize)
|
Update ZFS from version 6 to 13 and bring some FreeBSD-specific changes.
This bring huge amount of changes, I'll enumerate only user-visible changes:
- Delegated Administration
Allows regular users to perform ZFS operations, like file system
creation, snapshot creation, etc.
- L2ARC
Level 2 cache for ZFS - allows to use additional disks for cache.
Huge performance improvements mostly for random read of mostly
static content.
- slog
Allow to use additional disks for ZFS Intent Log to speed up
operations like fsync(2).
- vfs.zfs.super_owner
Allows regular users to perform privileged operations on files stored
on ZFS file systems owned by him. Very careful with this one.
- chflags(2)
Not all the flags are supported. This still needs work.
- ZFSBoot
Support to boot off of ZFS pool. Not finished, AFAIK.
Submitted by: dfr
- Snapshot properties
- New failure modes
Before if write requested failed, system paniced. Now one
can select from one of three failure modes:
- panic - panic on write error
- wait - wait for disk to reappear
- continue - serve read requests if possible, block write requests
- Refquota, refreservation properties
Just quota and reservation properties, but don't count space consumed
by children file systems, clones and snapshots.
- Sparse volumes
ZVOLs that don't reserve space in the pool.
- External attributes
Compatible with extattr(2).
- NFSv4-ACLs
Not sure about the status, might not be complete yet.
Submitted by: trasz
- Creation-time properties
- Regression tests for zpool(8) command.
Obtained from: OpenSolaris
2008-11-17 20:49:29 +00:00
|
|
|
{
|
|
|
|
|
|
|
|
return (ENOSYS);
|
|
|
|
}
|
|
|
|
|
|
|
|
struct devsw zfs_dev = {
|
2012-05-12 09:03:30 +00:00
|
|
|
.dv_name = "zfs",
|
|
|
|
.dv_type = DEVT_ZFS,
|
|
|
|
.dv_init = zfs_dev_init,
|
|
|
|
.dv_strategy = zfs_dev_strategy,
|
|
|
|
.dv_open = zfs_dev_open,
|
|
|
|
.dv_close = zfs_dev_close,
|
Update ZFS from version 6 to 13 and bring some FreeBSD-specific changes.
This bring huge amount of changes, I'll enumerate only user-visible changes:
- Delegated Administration
Allows regular users to perform ZFS operations, like file system
creation, snapshot creation, etc.
- L2ARC
Level 2 cache for ZFS - allows to use additional disks for cache.
Huge performance improvements mostly for random read of mostly
static content.
- slog
Allow to use additional disks for ZFS Intent Log to speed up
operations like fsync(2).
- vfs.zfs.super_owner
Allows regular users to perform privileged operations on files stored
on ZFS file systems owned by him. Very careful with this one.
- chflags(2)
Not all the flags are supported. This still needs work.
- ZFSBoot
Support to boot off of ZFS pool. Not finished, AFAIK.
Submitted by: dfr
- Snapshot properties
- New failure modes
Before if write requested failed, system paniced. Now one
can select from one of three failure modes:
- panic - panic on write error
- wait - wait for disk to reappear
- continue - serve read requests if possible, block write requests
- Refquota, refreservation properties
Just quota and reservation properties, but don't count space consumed
by children file systems, clones and snapshots.
- Sparse volumes
ZVOLs that don't reserve space in the pool.
- External attributes
Compatible with extattr(2).
- NFSv4-ACLs
Not sure about the status, might not be complete yet.
Submitted by: trasz
- Creation-time properties
- Regression tests for zpool(8) command.
Obtained from: OpenSolaris
2008-11-17 20:49:29 +00:00
|
|
|
.dv_ioctl = noioctl,
|
|
|
|
.dv_print = zfs_dev_print,
|
|
|
|
.dv_cleanup = NULL
|
|
|
|
};
|
2012-05-12 09:03:30 +00:00
|
|
|
|
|
|
|
int
|
|
|
|
zfs_parsedev(struct zfs_devdesc *dev, const char *devspec, const char **path)
|
|
|
|
{
|
|
|
|
static char rootname[ZFS_MAXNAMELEN];
|
|
|
|
static char poolname[ZFS_MAXNAMELEN];
|
|
|
|
spa_t *spa;
|
|
|
|
const char *end;
|
|
|
|
const char *np;
|
|
|
|
const char *sep;
|
|
|
|
int rv;
|
|
|
|
|
|
|
|
np = devspec;
|
|
|
|
if (*np != ':')
|
|
|
|
return (EINVAL);
|
|
|
|
np++;
|
|
|
|
end = strchr(np, ':');
|
|
|
|
if (end == NULL)
|
|
|
|
return (EINVAL);
|
|
|
|
sep = strchr(np, '/');
|
|
|
|
if (sep == NULL || sep >= end)
|
|
|
|
sep = end;
|
|
|
|
memcpy(poolname, np, sep - np);
|
|
|
|
poolname[sep - np] = '\0';
|
|
|
|
if (sep < end) {
|
|
|
|
sep++;
|
|
|
|
memcpy(rootname, sep, end - sep);
|
|
|
|
rootname[end - sep] = '\0';
|
|
|
|
}
|
|
|
|
else
|
|
|
|
rootname[0] = '\0';
|
|
|
|
|
|
|
|
spa = spa_find_by_name(poolname);
|
|
|
|
if (!spa)
|
|
|
|
return (ENXIO);
|
|
|
|
dev->pool_guid = spa->spa_guid;
|
2012-10-06 19:42:50 +00:00
|
|
|
rv = zfs_lookup_dataset(spa, rootname, &dev->root_guid);
|
|
|
|
if (rv != 0)
|
|
|
|
return (rv);
|
2012-05-12 09:03:30 +00:00
|
|
|
if (path != NULL)
|
|
|
|
*path = (*end == '\0') ? end : end + 1;
|
|
|
|
dev->d_dev = &zfs_dev;
|
|
|
|
dev->d_type = zfs_dev.dv_type;
|
|
|
|
return (0);
|
|
|
|
}
|
|
|
|
|
|
|
|
char *
|
|
|
|
zfs_fmtdev(void *vdev)
|
|
|
|
{
|
|
|
|
static char rootname[ZFS_MAXNAMELEN];
|
|
|
|
static char buf[2 * ZFS_MAXNAMELEN + 8];
|
|
|
|
struct zfs_devdesc *dev = (struct zfs_devdesc *)vdev;
|
|
|
|
spa_t *spa;
|
|
|
|
|
|
|
|
buf[0] = '\0';
|
|
|
|
if (dev->d_type != DEVT_ZFS)
|
|
|
|
return (buf);
|
|
|
|
|
2012-10-06 19:42:50 +00:00
|
|
|
if (dev->pool_guid == 0) {
|
2012-10-06 19:25:40 +00:00
|
|
|
spa = STAILQ_FIRST(&zfs_pools);
|
2012-10-06 19:42:50 +00:00
|
|
|
dev->pool_guid = spa->spa_guid;
|
|
|
|
} else
|
2012-10-06 19:25:40 +00:00
|
|
|
spa = spa_find_by_guid(dev->pool_guid);
|
2012-05-12 09:03:30 +00:00
|
|
|
if (spa == NULL) {
|
|
|
|
printf("ZFS: can't find pool by guid\n");
|
|
|
|
return (buf);
|
|
|
|
}
|
|
|
|
if (dev->root_guid == 0 && zfs_get_root(spa, &dev->root_guid)) {
|
|
|
|
printf("ZFS: can't find root filesystem\n");
|
|
|
|
return (buf);
|
|
|
|
}
|
|
|
|
if (zfs_rlookup(spa, dev->root_guid, rootname)) {
|
|
|
|
printf("ZFS: can't find filesystem by guid\n");
|
|
|
|
return (buf);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (rootname[0] == '\0')
|
|
|
|
sprintf(buf, "%s:%s:", dev->d_dev->dv_name, spa->spa_name);
|
|
|
|
else
|
|
|
|
sprintf(buf, "%s:%s/%s:", dev->d_dev->dv_name, spa->spa_name,
|
|
|
|
rootname);
|
|
|
|
return (buf);
|
|
|
|
}
|
2012-10-06 19:27:04 +00:00
|
|
|
|
|
|
|
int
|
|
|
|
zfs_list(const char *name)
|
|
|
|
{
|
|
|
|
static char poolname[ZFS_MAXNAMELEN];
|
|
|
|
uint64_t objid;
|
|
|
|
spa_t *spa;
|
|
|
|
const char *dsname;
|
|
|
|
int len;
|
|
|
|
int rv;
|
|
|
|
|
|
|
|
len = strlen(name);
|
|
|
|
dsname = strchr(name, '/');
|
|
|
|
if (dsname != NULL) {
|
|
|
|
len = dsname - name;
|
|
|
|
dsname++;
|
2012-10-06 19:42:50 +00:00
|
|
|
} else
|
|
|
|
dsname = "";
|
2012-10-06 19:27:04 +00:00
|
|
|
memcpy(poolname, name, len);
|
|
|
|
poolname[len] = '\0';
|
|
|
|
|
|
|
|
spa = spa_find_by_name(poolname);
|
|
|
|
if (!spa)
|
|
|
|
return (ENXIO);
|
2012-10-06 19:42:50 +00:00
|
|
|
rv = zfs_lookup_dataset(spa, dsname, &objid);
|
2012-10-06 19:27:04 +00:00
|
|
|
if (rv != 0)
|
|
|
|
return (rv);
|
2015-12-31 20:00:53 +00:00
|
|
|
|
|
|
|
return (zfs_list_dataset(spa, objid));
|
|
|
|
}
|
|
|
|
|
2016-01-15 05:45:10 +00:00
|
|
|
void
|
|
|
|
init_zfs_bootenv(char *currdev)
|
|
|
|
{
|
|
|
|
char *beroot;
|
|
|
|
|
|
|
|
if (strlen(currdev) == 0)
|
|
|
|
return;
|
|
|
|
if(strncmp(currdev, "zfs:", 4) != 0)
|
|
|
|
return;
|
|
|
|
/* Remove the trailing : */
|
|
|
|
currdev[strlen(currdev) - 1] = '\0';
|
|
|
|
setenv("zfs_be_active", currdev, 1);
|
|
|
|
setenv("zfs_be_currpage", "1", 1);
|
|
|
|
/* Forward past zfs: */
|
|
|
|
currdev = strchr(currdev, ':');
|
|
|
|
currdev++;
|
|
|
|
/* Remove the last element (current bootenv) */
|
|
|
|
beroot = strrchr(currdev, '/');
|
|
|
|
if (beroot != NULL)
|
|
|
|
beroot[0] = '\0';
|
|
|
|
beroot = currdev;
|
|
|
|
setenv("zfs_be_root", beroot, 1);
|
|
|
|
}
|
|
|
|
|
2015-12-31 20:00:53 +00:00
|
|
|
int
|
|
|
|
zfs_bootenv(const char *name)
|
|
|
|
{
|
2016-01-09 00:54:08 +00:00
|
|
|
static char poolname[ZFS_MAXNAMELEN], *dsname, *root;
|
2015-12-31 20:00:53 +00:00
|
|
|
char becount[4];
|
|
|
|
uint64_t objid;
|
|
|
|
spa_t *spa;
|
|
|
|
int len, rv, pages, perpage, currpage;
|
|
|
|
|
2016-01-09 00:54:08 +00:00
|
|
|
if (name == NULL)
|
|
|
|
return (EINVAL);
|
|
|
|
if ((root = getenv("zfs_be_root")) == NULL)
|
|
|
|
return (EINVAL);
|
|
|
|
|
|
|
|
if (strcmp(name, root) != 0) {
|
2015-12-31 20:00:53 +00:00
|
|
|
if (setenv("zfs_be_root", name, 1) != 0)
|
|
|
|
return (ENOMEM);
|
|
|
|
}
|
|
|
|
|
|
|
|
SLIST_INIT(&zfs_be_head);
|
|
|
|
zfs_env_count = 0;
|
|
|
|
len = strlen(name);
|
|
|
|
dsname = strchr(name, '/');
|
|
|
|
if (dsname != NULL) {
|
|
|
|
len = dsname - name;
|
|
|
|
dsname++;
|
|
|
|
} else
|
|
|
|
dsname = "";
|
|
|
|
memcpy(poolname, name, len);
|
|
|
|
poolname[len] = '\0';
|
|
|
|
|
|
|
|
spa = spa_find_by_name(poolname);
|
|
|
|
if (!spa)
|
|
|
|
return (ENXIO);
|
|
|
|
rv = zfs_lookup_dataset(spa, dsname, &objid);
|
|
|
|
if (rv != 0)
|
|
|
|
return (rv);
|
|
|
|
rv = zfs_callback_dataset(spa, objid, zfs_belist_add);
|
|
|
|
|
|
|
|
/* Calculate and store the number of pages of BEs */
|
|
|
|
perpage = (ZFS_BE_LAST - ZFS_BE_FIRST + 1);
|
|
|
|
pages = (zfs_env_count / perpage) + ((zfs_env_count % perpage) > 0 ? 1 : 0);
|
|
|
|
snprintf(becount, 4, "%d", pages);
|
|
|
|
if (setenv("zfs_be_pages", becount, 1) != 0)
|
|
|
|
return (ENOMEM);
|
|
|
|
|
|
|
|
/* Roll over the page counter if it has exceeded the maximum */
|
|
|
|
currpage = strtol(getenv("zfs_be_currpage"), NULL, 10);
|
|
|
|
if (currpage > pages) {
|
|
|
|
if (setenv("zfs_be_currpage", "1", 1) != 0)
|
|
|
|
return (ENOMEM);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Populate the menu environment variables */
|
|
|
|
zfs_set_env();
|
|
|
|
|
|
|
|
/* Clean up the SLIST of ZFS BEs */
|
|
|
|
while (!SLIST_EMPTY(&zfs_be_head)) {
|
|
|
|
zfs_be = SLIST_FIRST(&zfs_be_head);
|
|
|
|
SLIST_REMOVE_HEAD(&zfs_be_head, entries);
|
|
|
|
free(zfs_be);
|
|
|
|
}
|
|
|
|
|
2012-10-06 19:42:50 +00:00
|
|
|
return (rv);
|
2012-10-06 19:27:04 +00:00
|
|
|
}
|
2015-12-31 20:00:53 +00:00
|
|
|
|
|
|
|
int
|
2016-08-01 19:37:43 +00:00
|
|
|
zfs_belist_add(const char *name, uint64_t value __unused)
|
2015-12-31 20:00:53 +00:00
|
|
|
{
|
|
|
|
|
2016-01-15 05:45:10 +00:00
|
|
|
/* Skip special datasets that start with a $ character */
|
|
|
|
if (strncmp(name, "$", 1) == 0) {
|
|
|
|
return (0);
|
|
|
|
}
|
2015-12-31 20:00:53 +00:00
|
|
|
/* Add the boot environment to the head of the SLIST */
|
|
|
|
zfs_be = malloc(sizeof(struct zfs_be_entry));
|
2016-01-15 05:45:10 +00:00
|
|
|
if (zfs_be == NULL) {
|
|
|
|
return (ENOMEM);
|
|
|
|
}
|
2015-12-31 20:00:53 +00:00
|
|
|
zfs_be->name = name;
|
|
|
|
SLIST_INSERT_HEAD(&zfs_be_head, zfs_be, entries);
|
|
|
|
zfs_env_count++;
|
|
|
|
|
|
|
|
return (0);
|
|
|
|
}
|
|
|
|
|
|
|
|
int
|
|
|
|
zfs_set_env(void)
|
|
|
|
{
|
|
|
|
char envname[32], envval[256];
|
|
|
|
char *beroot, *pagenum;
|
|
|
|
int rv, page, ctr;
|
|
|
|
|
|
|
|
beroot = getenv("zfs_be_root");
|
|
|
|
if (beroot == NULL) {
|
|
|
|
return (1);
|
|
|
|
}
|
|
|
|
|
|
|
|
pagenum = getenv("zfs_be_currpage");
|
|
|
|
if (pagenum != NULL) {
|
|
|
|
page = strtol(pagenum, NULL, 10);
|
|
|
|
} else {
|
|
|
|
page = 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
ctr = 1;
|
|
|
|
rv = 0;
|
|
|
|
zfs_env_index = ZFS_BE_FIRST;
|
|
|
|
SLIST_FOREACH_SAFE(zfs_be, &zfs_be_head, entries, zfs_be_tmp) {
|
|
|
|
/* Skip to the requested page number */
|
|
|
|
if (ctr <= ((ZFS_BE_LAST - ZFS_BE_FIRST + 1) * (page - 1))) {
|
|
|
|
ctr++;
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
snprintf(envname, sizeof(envname), "bootenvmenu_caption[%d]", zfs_env_index);
|
|
|
|
snprintf(envval, sizeof(envval), "%s", zfs_be->name);
|
|
|
|
rv = setenv(envname, envval, 1);
|
|
|
|
if (rv != 0) {
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
snprintf(envname, sizeof(envname), "bootenvansi_caption[%d]", zfs_env_index);
|
|
|
|
rv = setenv(envname, envval, 1);
|
|
|
|
if (rv != 0){
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
snprintf(envname, sizeof(envname), "bootenvmenu_command[%d]", zfs_env_index);
|
|
|
|
rv = setenv(envname, "set_bootenv", 1);
|
|
|
|
if (rv != 0){
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
snprintf(envname, sizeof(envname), "bootenv_root[%d]", zfs_env_index);
|
|
|
|
snprintf(envval, sizeof(envval), "zfs:%s/%s", beroot, zfs_be->name);
|
|
|
|
rv = setenv(envname, envval, 1);
|
|
|
|
if (rv != 0){
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
zfs_env_index++;
|
|
|
|
if (zfs_env_index > ZFS_BE_LAST) {
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
for (; zfs_env_index <= ZFS_BE_LAST; zfs_env_index++) {
|
|
|
|
snprintf(envname, sizeof(envname), "bootenvmenu_caption[%d]", zfs_env_index);
|
|
|
|
(void)unsetenv(envname);
|
|
|
|
snprintf(envname, sizeof(envname), "bootenvansi_caption[%d]", zfs_env_index);
|
|
|
|
(void)unsetenv(envname);
|
|
|
|
snprintf(envname, sizeof(envname), "bootenvmenu_command[%d]", zfs_env_index);
|
|
|
|
(void)unsetenv(envname);
|
|
|
|
snprintf(envname, sizeof(envname), "bootenv_root[%d]", zfs_env_index);
|
|
|
|
(void)unsetenv(envname);
|
|
|
|
}
|
|
|
|
|
|
|
|
return (rv);
|
2016-05-18 05:59:05 +00:00
|
|
|
}
|