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.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <sys/cdefs.h>
|
|
|
|
__FBSDID("$FreeBSD$");
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Stand-alone ZFS file reader.
|
|
|
|
*/
|
|
|
|
|
2019-05-30 02:23:57 +00:00
|
|
|
#include <sys/endian.h>
|
2011-02-27 19:41:40 +00:00
|
|
|
#include <sys/stat.h>
|
2012-05-12 20:23:30 +00:00
|
|
|
#include <sys/stdint.h>
|
2019-08-08 18:08:13 +00:00
|
|
|
#include <sys/list.h>
|
2019-12-15 21:52:40 +00:00
|
|
|
#include <machine/_inttypes.h>
|
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
|
|
|
#include "zfsimpl.h"
|
|
|
|
#include "zfssubr.c"
|
|
|
|
|
2012-05-12 09:03:30 +00:00
|
|
|
|
|
|
|
struct zfsmount {
|
2012-05-13 09:22:18 +00:00
|
|
|
const spa_t *spa;
|
2012-05-12 09:03:30 +00:00
|
|
|
objset_phys_t objset;
|
|
|
|
uint64_t rootobj;
|
|
|
|
};
|
2017-12-03 04:55:33 +00:00
|
|
|
static struct zfsmount zfsmount __unused;
|
2012-05-12 09:03:30 +00:00
|
|
|
|
2019-08-08 18:08:13 +00:00
|
|
|
/*
|
|
|
|
* The indirect_child_t represents the vdev that we will read from, when we
|
|
|
|
* need to read all copies of the data (e.g. for scrub or reconstruction).
|
|
|
|
* For plain (non-mirror) top-level vdevs (i.e. is_vdev is not a mirror),
|
|
|
|
* ic_vdev is the same as is_vdev. However, for mirror top-level vdevs,
|
|
|
|
* ic_vdev is a child of the mirror.
|
|
|
|
*/
|
|
|
|
typedef struct indirect_child {
|
|
|
|
void *ic_data;
|
|
|
|
vdev_t *ic_vdev;
|
|
|
|
} indirect_child_t;
|
|
|
|
|
|
|
|
/*
|
|
|
|
* The indirect_split_t represents one mapped segment of an i/o to the
|
|
|
|
* indirect vdev. For non-split (contiguously-mapped) blocks, there will be
|
|
|
|
* only one indirect_split_t, with is_split_offset==0 and is_size==io_size.
|
|
|
|
* For split blocks, there will be several of these.
|
|
|
|
*/
|
|
|
|
typedef struct indirect_split {
|
|
|
|
list_node_t is_node; /* link on iv_splits */
|
|
|
|
|
|
|
|
/*
|
|
|
|
* is_split_offset is the offset into the i/o.
|
|
|
|
* This is the sum of the previous splits' is_size's.
|
|
|
|
*/
|
|
|
|
uint64_t is_split_offset;
|
|
|
|
|
|
|
|
vdev_t *is_vdev; /* top-level vdev */
|
|
|
|
uint64_t is_target_offset; /* offset on is_vdev */
|
|
|
|
uint64_t is_size;
|
|
|
|
int is_children; /* number of entries in is_child[] */
|
|
|
|
|
|
|
|
/*
|
|
|
|
* is_good_child is the child that we are currently using to
|
|
|
|
* attempt reconstruction.
|
|
|
|
*/
|
|
|
|
int is_good_child;
|
|
|
|
|
|
|
|
indirect_child_t is_child[1]; /* variable-length */
|
|
|
|
} indirect_split_t;
|
|
|
|
|
|
|
|
/*
|
|
|
|
* The indirect_vsd_t is associated with each i/o to the indirect vdev.
|
|
|
|
* It is the "Vdev-Specific Data" in the zio_t's io_vsd.
|
|
|
|
*/
|
|
|
|
typedef struct indirect_vsd {
|
|
|
|
boolean_t iv_split_block;
|
|
|
|
boolean_t iv_reconstruct;
|
|
|
|
|
|
|
|
list_t iv_splits; /* list of indirect_split_t's */
|
|
|
|
} indirect_vsd_t;
|
|
|
|
|
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
|
|
|
/*
|
|
|
|
* List of all vdevs, chained through v_alllink.
|
|
|
|
*/
|
|
|
|
static vdev_list_t zfs_vdevs;
|
|
|
|
|
2019-12-15 14:09:49 +00:00
|
|
|
/*
|
2012-06-11 11:35:22 +00:00
|
|
|
* List of ZFS features supported for read
|
|
|
|
*/
|
|
|
|
static const char *features_for_read[] = {
|
2014-01-01 00:45:28 +00:00
|
|
|
"org.illumos:lz4_compress",
|
|
|
|
"com.delphix:hole_birth",
|
|
|
|
"com.delphix:extensible_dataset",
|
2014-07-01 06:43:15 +00:00
|
|
|
"com.delphix:embedded_data",
|
2014-11-10 08:20:21 +00:00
|
|
|
"org.open-zfs:large_blocks",
|
Add SHA512, skein, large blocks support for loader zfs.
Updated sha512 from illumos.
Using skein from freebsd crypto tree.
Since loader itself is using 64MB memory for heap, updated zfsboot to
use same, and this also allows to support zfs large blocks.
Note, adding additional features does increate zfsboot code, therefore
this update does increase zfsboot code to 128k, also I have ported gptldr.S
update to zfsldr.S to support 64k+ code.
With this update, boot1.efi has almost reached the current limit of the size
set for it, so one of the future patches for boot1.efi will need to
increase the limit.
Currently known missing zfs features in boot loader are edonr and gzip support.
Reviewed by: delphij, imp
Approved by: imp (mentor)
Obtained from: sha256.c update and skein_zfs.c stub from illumos.
Differential Revision: https://reviews.freebsd.org/D7418
2016-08-18 00:37:07 +00:00
|
|
|
"org.illumos:sha512",
|
|
|
|
"org.illumos:skein",
|
2017-09-12 13:45:04 +00:00
|
|
|
"org.zfsonlinux:large_dnode",
|
2019-01-17 21:52:41 +00:00
|
|
|
"com.joyent:multi_vdev_crash_dump",
|
2019-06-19 21:10:13 +00:00
|
|
|
"com.delphix:spacemap_histogram",
|
|
|
|
"com.delphix:zpool_checkpoint",
|
|
|
|
"com.delphix:spacemap_v2",
|
|
|
|
"com.datto:encryption",
|
|
|
|
"org.zfsonlinux:allocation_classes",
|
|
|
|
"com.datto:resilver_defer",
|
2019-08-08 18:08:13 +00:00
|
|
|
"com.delphix:device_removal",
|
|
|
|
"com.delphix:obsolete_counts",
|
MFV r354382,r354385: 10601 10757 Pool allocation classes
illumos/illumos-gate@663207adb1669640c01c5ec6949ce78fd806efae
https://github.com/illumos/illumos-gate/commit/663207adb1669640c01c5ec6949ce78fd806efae
10601 Pool allocation classes
https://www.illumos.org/issues/10601
illumos port of ZoL Pool allocation classes. Includes at least these two
commits:
441709695 Pool allocation classes misplacing small file blocks
cc99f275a Pool allocation classes
10757 Add -gLp to zpool subcommands for alt vdev names
https://www.illumos.org/issues/10757
Port from ZoL of
d2f3e292d Add -gLp to zpool subcommands for alt vdev names
Note that a subsequent ZoL commit changed -p to -P
a77f29f93 Change full path subcommand flag from -p to -P
Portions contributed by: Jerry Jelinek <jerry.jelinek@joyent.com>
Portions contributed by: Håkan Johansson <f96hajo@chalmers.se>
Portions contributed by: Richard Yao <ryao@gentoo.org>
Portions contributed by: Chunwei Chen <david.chen@nutanix.com>
Portions contributed by: loli10K <ezomori.nozomu@gmail.com>
Author: Don Brady <don.brady@delphix.com>
11541 allocation_classes feature must be enabled to add log device
illumos/illumos-gate@c1064fd7ce62fe763a4475e9988ffea3b22137de
https://github.com/illumos/illumos-gate/commit/c1064fd7ce62fe763a4475e9988ffea3b22137de
https://www.illumos.org/issues/11541
After the allocation_classes feature was integrated, one can no longer add a
log device to a pool unless that feature is enabled. There is an explicit check
for this, but it is unnecessary in the case of log devices, so we should handle
this better instead of forcing the feature to be enabled.
Author: Jerry Jelinek <jerry.jelinek@joyent.com>
FreeBSD notes.
I faithfully added the new -g, -L, -P flags, but only -g does something:
vdev GUIDs are displayed instead of device names. -L, resolve symlinks,
and -P, display full disk paths, do nothing at the moment.
The use of special vdevs is backward compatible for read-only access, so
root pools should be bootable, but exercise caution.
MFC after: 4 weeks
2019-11-21 08:20:05 +00:00
|
|
|
"com.intel:allocation_classes",
|
2012-06-11 11:35:22 +00:00
|
|
|
NULL
|
|
|
|
};
|
|
|
|
|
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
|
|
|
/*
|
|
|
|
* List of all pools, chained through spa_link.
|
|
|
|
*/
|
|
|
|
static spa_list_t zfs_pools;
|
|
|
|
|
loader: zfs reader should check all labels
The current zfs reader is only checking first label from each device, however,
we do have 4 labels on device and we should check all 4 to be protected
against disk failures and incomplete label updates.
The difficulty is about the fact that 2 label copies are in front of the
pool data, and 2 are at the end, which means, we have to know the size of
the pool data area.
Since we have now the mechanism from common/disk.c to use the partition
information, it does help us in this task; however, there are still some
corner cases.
Namely, if the pool is created without partition, directly on the disk,
and firmware will give us the wrong size for the disk, we only can check
the first two label copies.
Reviewed by: allanjude
Differential Revision: https://reviews.freebsd.org/D10203
2017-04-06 18:17:29 +00:00
|
|
|
static const dnode_phys_t *dnode_cache_obj;
|
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 uint64_t dnode_cache_bn;
|
|
|
|
static char *dnode_cache_buf;
|
|
|
|
|
2012-05-13 09:22:18 +00:00
|
|
|
static int zio_read(const spa_t *spa, const blkptr_t *bp, void *buf);
|
2012-10-06 19:42:05 +00:00
|
|
|
static int zfs_get_root(const spa_t *spa, uint64_t *objid);
|
|
|
|
static int zfs_rlookup(const spa_t *spa, uint64_t objnum, char *result);
|
Add SHA512, skein, large blocks support for loader zfs.
Updated sha512 from illumos.
Using skein from freebsd crypto tree.
Since loader itself is using 64MB memory for heap, updated zfsboot to
use same, and this also allows to support zfs large blocks.
Note, adding additional features does increate zfsboot code, therefore
this update does increase zfsboot code to 128k, also I have ported gptldr.S
update to zfsldr.S to support 64k+ code.
With this update, boot1.efi has almost reached the current limit of the size
set for it, so one of the future patches for boot1.efi will need to
increase the limit.
Currently known missing zfs features in boot loader are edonr and gzip support.
Reviewed by: delphij, imp
Approved by: imp (mentor)
Obtained from: sha256.c update and skein_zfs.c stub from illumos.
Differential Revision: https://reviews.freebsd.org/D7418
2016-08-18 00:37:07 +00:00
|
|
|
static int zap_lookup(const spa_t *spa, const dnode_phys_t *dnode,
|
|
|
|
const char *name, uint64_t integer_size, uint64_t num_integers,
|
|
|
|
void *value);
|
2019-08-08 18:08:13 +00:00
|
|
|
static int objset_get_dnode(const spa_t *, const objset_phys_t *, uint64_t,
|
|
|
|
dnode_phys_t *);
|
|
|
|
static int dnode_read(const spa_t *, const dnode_phys_t *, off_t, void *,
|
|
|
|
size_t);
|
|
|
|
static int vdev_indirect_read(vdev_t *, const blkptr_t *, void *, off_t,
|
|
|
|
size_t);
|
|
|
|
static int vdev_mirror_read(vdev_t *, const blkptr_t *, void *, off_t, size_t);
|
|
|
|
vdev_indirect_mapping_t *vdev_indirect_mapping_open(spa_t *, objset_phys_t *,
|
|
|
|
uint64_t);
|
|
|
|
vdev_indirect_mapping_entry_phys_t *
|
|
|
|
vdev_indirect_mapping_duplicate_adjacent_entries(vdev_t *, uint64_t,
|
|
|
|
uint64_t, uint64_t *);
|
2009-10-23 18:44:53 +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
|
|
|
static void
|
|
|
|
zfs_init(void)
|
|
|
|
{
|
|
|
|
STAILQ_INIT(&zfs_vdevs);
|
|
|
|
STAILQ_INIT(&zfs_pools);
|
|
|
|
|
2009-05-16 10:48:20 +00:00
|
|
|
dnode_cache_buf = malloc(SPA_MAXBLOCKSIZE);
|
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_init_crc();
|
|
|
|
}
|
|
|
|
|
|
|
|
static int
|
2020-06-20 06:23:31 +00:00
|
|
|
nvlist_check_features_for_read(nvlist_t *nvl)
|
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
|
|
|
{
|
2020-06-20 06:23:31 +00:00
|
|
|
nvlist_t *features = NULL;
|
|
|
|
nvs_data_t *data;
|
|
|
|
nvp_header_t *nvp;
|
|
|
|
nv_string_t *nvp_name;
|
2012-06-11 11:35:22 +00:00
|
|
|
int rc;
|
|
|
|
|
2020-06-20 06:23:31 +00:00
|
|
|
rc = nvlist_find(nvl, ZPOOL_CONFIG_FEATURES_FOR_READ,
|
|
|
|
DATA_TYPE_NVLIST, NULL, &features, NULL);
|
|
|
|
if (rc != 0)
|
|
|
|
return (rc);
|
2012-06-11 11:35:22 +00:00
|
|
|
|
2020-06-20 06:23:31 +00:00
|
|
|
data = (nvs_data_t *)features->nv_data;
|
|
|
|
nvp = &data->nvl_pair; /* first pair in nvlist */
|
2012-06-11 11:35:22 +00:00
|
|
|
|
2020-06-20 06:23:31 +00:00
|
|
|
while (nvp->encoded_size != 0 && nvp->decoded_size != 0) {
|
2012-06-11 11:35:22 +00:00
|
|
|
int i, found;
|
|
|
|
|
2020-06-20 06:23:31 +00:00
|
|
|
nvp_name = (nv_string_t *)((uintptr_t)nvp + sizeof(*nvp));
|
2012-06-11 11:35:22 +00:00
|
|
|
found = 0;
|
|
|
|
|
|
|
|
for (i = 0; features_for_read[i] != NULL; i++) {
|
2020-06-20 06:23:31 +00:00
|
|
|
if (memcmp(nvp_name->nv_data, features_for_read[i],
|
|
|
|
nvp_name->nv_size) == 0) {
|
2012-06-11 11:35:22 +00:00
|
|
|
found = 1;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!found) {
|
2020-06-20 06:23:31 +00:00
|
|
|
printf("ZFS: unsupported feature: %.*s\n",
|
|
|
|
nvp_name->nv_size, nvp_name->nv_data);
|
2012-06-11 11:35:22 +00:00
|
|
|
rc = EIO;
|
|
|
|
}
|
2020-06-20 06:23:31 +00:00
|
|
|
nvp = (nvp_header_t *)((uint8_t *)nvp + nvp->encoded_size);
|
2012-06-11 11:35:22 +00:00
|
|
|
}
|
2020-06-20 06:23:31 +00:00
|
|
|
nvlist_destroy(features);
|
2012-06-11 11:35:22 +00:00
|
|
|
|
|
|
|
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
|
|
|
static int
|
2009-05-16 10:48:20 +00:00
|
|
|
vdev_read_phys(vdev_t *vdev, const blkptr_t *bp, void *buf,
|
|
|
|
off_t offset, size_t size)
|
|
|
|
{
|
|
|
|
size_t psize;
|
|
|
|
int rc;
|
|
|
|
|
2010-08-09 06:36:11 +00:00
|
|
|
if (!vdev->v_phys_read)
|
|
|
|
return (EIO);
|
|
|
|
|
2009-05-16 10:48:20 +00:00
|
|
|
if (bp) {
|
|
|
|
psize = BP_GET_PSIZE(bp);
|
|
|
|
} else {
|
|
|
|
psize = size;
|
|
|
|
}
|
|
|
|
|
|
|
|
rc = vdev->v_phys_read(vdev, vdev->v_read_priv, offset, buf, psize);
|
2019-12-15 21:52:40 +00:00
|
|
|
if (rc == 0) {
|
|
|
|
if (bp != NULL)
|
|
|
|
rc = zio_checksum_verify(vdev->v_spa, bp, buf);
|
|
|
|
}
|
2009-05-16 10:48:20 +00:00
|
|
|
|
2019-12-15 21:52:40 +00:00
|
|
|
return (rc);
|
2009-05-16 10:48:20 +00:00
|
|
|
}
|
|
|
|
|
2019-08-08 18:08:13 +00:00
|
|
|
typedef struct remap_segment {
|
|
|
|
vdev_t *rs_vd;
|
|
|
|
uint64_t rs_offset;
|
|
|
|
uint64_t rs_asize;
|
|
|
|
uint64_t rs_split_offset;
|
|
|
|
list_node_t rs_node;
|
|
|
|
} remap_segment_t;
|
|
|
|
|
|
|
|
static remap_segment_t *
|
|
|
|
rs_alloc(vdev_t *vd, uint64_t offset, uint64_t asize, uint64_t split_offset)
|
|
|
|
{
|
|
|
|
remap_segment_t *rs = malloc(sizeof (remap_segment_t));
|
|
|
|
|
|
|
|
if (rs != NULL) {
|
|
|
|
rs->rs_vd = vd;
|
|
|
|
rs->rs_offset = offset;
|
|
|
|
rs->rs_asize = asize;
|
|
|
|
rs->rs_split_offset = split_offset;
|
|
|
|
}
|
|
|
|
|
|
|
|
return (rs);
|
|
|
|
}
|
|
|
|
|
|
|
|
vdev_indirect_mapping_t *
|
|
|
|
vdev_indirect_mapping_open(spa_t *spa, objset_phys_t *os,
|
|
|
|
uint64_t mapping_object)
|
|
|
|
{
|
|
|
|
vdev_indirect_mapping_t *vim;
|
|
|
|
vdev_indirect_mapping_phys_t *vim_phys;
|
|
|
|
int rc;
|
|
|
|
|
|
|
|
vim = calloc(1, sizeof (*vim));
|
|
|
|
if (vim == NULL)
|
|
|
|
return (NULL);
|
|
|
|
|
|
|
|
vim->vim_dn = calloc(1, sizeof (*vim->vim_dn));
|
|
|
|
if (vim->vim_dn == NULL) {
|
|
|
|
free(vim);
|
|
|
|
return (NULL);
|
|
|
|
}
|
|
|
|
|
|
|
|
rc = objset_get_dnode(spa, os, mapping_object, vim->vim_dn);
|
|
|
|
if (rc != 0) {
|
|
|
|
free(vim->vim_dn);
|
|
|
|
free(vim);
|
|
|
|
return (NULL);
|
|
|
|
}
|
|
|
|
|
|
|
|
vim->vim_spa = spa;
|
|
|
|
vim->vim_phys = malloc(sizeof (*vim->vim_phys));
|
|
|
|
if (vim->vim_phys == NULL) {
|
|
|
|
free(vim->vim_dn);
|
|
|
|
free(vim);
|
|
|
|
return (NULL);
|
|
|
|
}
|
|
|
|
|
|
|
|
vim_phys = (vdev_indirect_mapping_phys_t *)DN_BONUS(vim->vim_dn);
|
|
|
|
*vim->vim_phys = *vim_phys;
|
|
|
|
|
|
|
|
vim->vim_objset = os;
|
|
|
|
vim->vim_object = mapping_object;
|
|
|
|
vim->vim_entries = NULL;
|
|
|
|
|
|
|
|
vim->vim_havecounts =
|
|
|
|
(vim->vim_dn->dn_bonuslen > VDEV_INDIRECT_MAPPING_SIZE_V0);
|
2019-12-15 21:52:40 +00:00
|
|
|
|
2019-08-08 18:08:13 +00:00
|
|
|
return (vim);
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Compare an offset with an indirect mapping entry; there are three
|
|
|
|
* possible scenarios:
|
|
|
|
*
|
|
|
|
* 1. The offset is "less than" the mapping entry; meaning the
|
|
|
|
* offset is less than the source offset of the mapping entry. In
|
|
|
|
* this case, there is no overlap between the offset and the
|
|
|
|
* mapping entry and -1 will be returned.
|
|
|
|
*
|
|
|
|
* 2. The offset is "greater than" the mapping entry; meaning the
|
|
|
|
* offset is greater than the mapping entry's source offset plus
|
|
|
|
* the entry's size. In this case, there is no overlap between
|
|
|
|
* the offset and the mapping entry and 1 will be returned.
|
|
|
|
*
|
|
|
|
* NOTE: If the offset is actually equal to the entry's offset
|
|
|
|
* plus size, this is considered to be "greater" than the entry,
|
|
|
|
* and this case applies (i.e. 1 will be returned). Thus, the
|
|
|
|
* entry's "range" can be considered to be inclusive at its
|
|
|
|
* start, but exclusive at its end: e.g. [src, src + size).
|
|
|
|
*
|
|
|
|
* 3. The last case to consider is if the offset actually falls
|
|
|
|
* within the mapping entry's range. If this is the case, the
|
|
|
|
* offset is considered to be "equal to" the mapping entry and
|
|
|
|
* 0 will be returned.
|
|
|
|
*
|
|
|
|
* NOTE: If the offset is equal to the entry's source offset,
|
|
|
|
* this case applies and 0 will be returned. If the offset is
|
|
|
|
* equal to the entry's source plus its size, this case does
|
|
|
|
* *not* apply (see "NOTE" above for scenario 2), and 1 will be
|
|
|
|
* returned.
|
|
|
|
*/
|
|
|
|
static int
|
|
|
|
dva_mapping_overlap_compare(const void *v_key, const void *v_array_elem)
|
|
|
|
{
|
|
|
|
const uint64_t *key = v_key;
|
|
|
|
const vdev_indirect_mapping_entry_phys_t *array_elem =
|
|
|
|
v_array_elem;
|
|
|
|
uint64_t src_offset = DVA_MAPPING_GET_SRC_OFFSET(array_elem);
|
|
|
|
|
|
|
|
if (*key < src_offset) {
|
|
|
|
return (-1);
|
|
|
|
} else if (*key < src_offset + DVA_GET_ASIZE(&array_elem->vimep_dst)) {
|
|
|
|
return (0);
|
|
|
|
} else {
|
|
|
|
return (1);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Return array entry.
|
|
|
|
*/
|
|
|
|
static vdev_indirect_mapping_entry_phys_t *
|
|
|
|
vdev_indirect_mapping_entry(vdev_indirect_mapping_t *vim, uint64_t index)
|
|
|
|
{
|
|
|
|
uint64_t size;
|
|
|
|
off_t offset = 0;
|
|
|
|
int rc;
|
|
|
|
|
|
|
|
if (vim->vim_phys->vimp_num_entries == 0)
|
|
|
|
return (NULL);
|
|
|
|
|
|
|
|
if (vim->vim_entries == NULL) {
|
|
|
|
uint64_t bsize;
|
|
|
|
|
|
|
|
bsize = vim->vim_dn->dn_datablkszsec << SPA_MINBLOCKSHIFT;
|
|
|
|
size = vim->vim_phys->vimp_num_entries *
|
|
|
|
sizeof (*vim->vim_entries);
|
|
|
|
if (size > bsize) {
|
|
|
|
size = bsize / sizeof (*vim->vim_entries);
|
|
|
|
size *= sizeof (*vim->vim_entries);
|
|
|
|
}
|
|
|
|
vim->vim_entries = malloc(size);
|
|
|
|
if (vim->vim_entries == NULL)
|
|
|
|
return (NULL);
|
|
|
|
vim->vim_num_entries = size / sizeof (*vim->vim_entries);
|
|
|
|
offset = index * sizeof (*vim->vim_entries);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* We have data in vim_entries */
|
|
|
|
if (offset == 0) {
|
|
|
|
if (index >= vim->vim_entry_offset &&
|
|
|
|
index <= vim->vim_entry_offset + vim->vim_num_entries) {
|
|
|
|
index -= vim->vim_entry_offset;
|
|
|
|
return (&vim->vim_entries[index]);
|
|
|
|
}
|
|
|
|
offset = index * sizeof (*vim->vim_entries);
|
|
|
|
}
|
|
|
|
|
|
|
|
vim->vim_entry_offset = index;
|
|
|
|
size = vim->vim_num_entries * sizeof (*vim->vim_entries);
|
|
|
|
rc = dnode_read(vim->vim_spa, vim->vim_dn, offset, vim->vim_entries,
|
|
|
|
size);
|
|
|
|
if (rc != 0) {
|
|
|
|
/* Read error, invalidate vim_entries. */
|
|
|
|
free(vim->vim_entries);
|
|
|
|
vim->vim_entries = NULL;
|
|
|
|
return (NULL);
|
|
|
|
}
|
|
|
|
index -= vim->vim_entry_offset;
|
|
|
|
return (&vim->vim_entries[index]);
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Returns the mapping entry for the given offset.
|
|
|
|
*
|
|
|
|
* It's possible that the given offset will not be in the mapping table
|
|
|
|
* (i.e. no mapping entries contain this offset), in which case, the
|
|
|
|
* return value value depends on the "next_if_missing" parameter.
|
|
|
|
*
|
|
|
|
* If the offset is not found in the table and "next_if_missing" is
|
|
|
|
* B_FALSE, then NULL will always be returned. The behavior is intended
|
|
|
|
* to allow consumers to get the entry corresponding to the offset
|
|
|
|
* parameter, iff the offset overlaps with an entry in the table.
|
|
|
|
*
|
|
|
|
* If the offset is not found in the table and "next_if_missing" is
|
|
|
|
* B_TRUE, then the entry nearest to the given offset will be returned,
|
|
|
|
* such that the entry's source offset is greater than the offset
|
|
|
|
* passed in (i.e. the "next" mapping entry in the table is returned, if
|
|
|
|
* the offset is missing from the table). If there are no entries whose
|
|
|
|
* source offset is greater than the passed in offset, NULL is returned.
|
|
|
|
*/
|
|
|
|
static vdev_indirect_mapping_entry_phys_t *
|
|
|
|
vdev_indirect_mapping_entry_for_offset(vdev_indirect_mapping_t *vim,
|
|
|
|
uint64_t offset)
|
|
|
|
{
|
|
|
|
ASSERT(vim->vim_phys->vimp_num_entries > 0);
|
|
|
|
|
|
|
|
vdev_indirect_mapping_entry_phys_t *entry;
|
|
|
|
|
|
|
|
uint64_t last = vim->vim_phys->vimp_num_entries - 1;
|
|
|
|
uint64_t base = 0;
|
|
|
|
|
|
|
|
/*
|
|
|
|
* We don't define these inside of the while loop because we use
|
|
|
|
* their value in the case that offset isn't in the mapping.
|
|
|
|
*/
|
|
|
|
uint64_t mid;
|
|
|
|
int result;
|
|
|
|
|
|
|
|
while (last >= base) {
|
|
|
|
mid = base + ((last - base) >> 1);
|
|
|
|
|
|
|
|
entry = vdev_indirect_mapping_entry(vim, mid);
|
|
|
|
if (entry == NULL)
|
|
|
|
break;
|
|
|
|
result = dva_mapping_overlap_compare(&offset, entry);
|
|
|
|
|
|
|
|
if (result == 0) {
|
|
|
|
break;
|
|
|
|
} else if (result < 0) {
|
|
|
|
last = mid - 1;
|
|
|
|
} else {
|
|
|
|
base = mid + 1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return (entry);
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Given an indirect vdev and an extent on that vdev, it duplicates the
|
|
|
|
* physical entries of the indirect mapping that correspond to the extent
|
|
|
|
* to a new array and returns a pointer to it. In addition, copied_entries
|
|
|
|
* is populated with the number of mapping entries that were duplicated.
|
|
|
|
*
|
|
|
|
* Finally, since we are doing an allocation, it is up to the caller to
|
|
|
|
* free the array allocated in this function.
|
|
|
|
*/
|
|
|
|
vdev_indirect_mapping_entry_phys_t *
|
|
|
|
vdev_indirect_mapping_duplicate_adjacent_entries(vdev_t *vd, uint64_t offset,
|
|
|
|
uint64_t asize, uint64_t *copied_entries)
|
|
|
|
{
|
|
|
|
vdev_indirect_mapping_entry_phys_t *duplicate_mappings = NULL;
|
|
|
|
vdev_indirect_mapping_t *vim = vd->v_mapping;
|
|
|
|
uint64_t entries = 0;
|
|
|
|
|
|
|
|
vdev_indirect_mapping_entry_phys_t *first_mapping =
|
|
|
|
vdev_indirect_mapping_entry_for_offset(vim, offset);
|
|
|
|
ASSERT3P(first_mapping, !=, NULL);
|
|
|
|
|
|
|
|
vdev_indirect_mapping_entry_phys_t *m = first_mapping;
|
|
|
|
while (asize > 0) {
|
|
|
|
uint64_t size = DVA_GET_ASIZE(&m->vimep_dst);
|
|
|
|
uint64_t inner_offset = offset - DVA_MAPPING_GET_SRC_OFFSET(m);
|
|
|
|
uint64_t inner_size = MIN(asize, size - inner_offset);
|
|
|
|
|
|
|
|
offset += inner_size;
|
|
|
|
asize -= inner_size;
|
|
|
|
entries++;
|
|
|
|
m++;
|
|
|
|
}
|
|
|
|
|
|
|
|
size_t copy_length = entries * sizeof (*first_mapping);
|
|
|
|
duplicate_mappings = malloc(copy_length);
|
|
|
|
if (duplicate_mappings != NULL)
|
|
|
|
bcopy(first_mapping, duplicate_mappings, copy_length);
|
|
|
|
else
|
|
|
|
entries = 0;
|
|
|
|
|
|
|
|
*copied_entries = entries;
|
|
|
|
|
|
|
|
return (duplicate_mappings);
|
|
|
|
}
|
|
|
|
|
|
|
|
static vdev_t *
|
|
|
|
vdev_lookup_top(spa_t *spa, uint64_t vdev)
|
|
|
|
{
|
|
|
|
vdev_t *rvd;
|
2019-12-15 21:52:40 +00:00
|
|
|
vdev_list_t *vlist;
|
2019-08-08 18:08:13 +00:00
|
|
|
|
2019-12-15 21:52:40 +00:00
|
|
|
vlist = &spa->spa_root_vdev->v_children;
|
|
|
|
STAILQ_FOREACH(rvd, vlist, v_childlink)
|
2019-08-08 18:08:13 +00:00
|
|
|
if (rvd->v_id == vdev)
|
|
|
|
break;
|
|
|
|
|
|
|
|
return (rvd);
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* This is a callback for vdev_indirect_remap() which allocates an
|
|
|
|
* indirect_split_t for each split segment and adds it to iv_splits.
|
|
|
|
*/
|
|
|
|
static void
|
|
|
|
vdev_indirect_gather_splits(uint64_t split_offset, vdev_t *vd, uint64_t offset,
|
|
|
|
uint64_t size, void *arg)
|
|
|
|
{
|
|
|
|
int n = 1;
|
|
|
|
zio_t *zio = arg;
|
|
|
|
indirect_vsd_t *iv = zio->io_vsd;
|
|
|
|
|
|
|
|
if (vd->v_read == vdev_indirect_read)
|
|
|
|
return;
|
|
|
|
|
|
|
|
if (vd->v_read == vdev_mirror_read)
|
|
|
|
n = vd->v_nchildren;
|
|
|
|
|
|
|
|
indirect_split_t *is =
|
|
|
|
malloc(offsetof(indirect_split_t, is_child[n]));
|
|
|
|
if (is == NULL) {
|
|
|
|
zio->io_error = ENOMEM;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
bzero(is, offsetof(indirect_split_t, is_child[n]));
|
|
|
|
|
|
|
|
is->is_children = n;
|
|
|
|
is->is_size = size;
|
|
|
|
is->is_split_offset = split_offset;
|
|
|
|
is->is_target_offset = offset;
|
|
|
|
is->is_vdev = vd;
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Note that we only consider multiple copies of the data for
|
|
|
|
* *mirror* vdevs. We don't for "replacing" or "spare" vdevs, even
|
|
|
|
* though they use the same ops as mirror, because there's only one
|
|
|
|
* "good" copy under the replacing/spare.
|
|
|
|
*/
|
|
|
|
if (vd->v_read == vdev_mirror_read) {
|
|
|
|
int i = 0;
|
|
|
|
vdev_t *kid;
|
|
|
|
|
|
|
|
STAILQ_FOREACH(kid, &vd->v_children, v_childlink) {
|
|
|
|
is->is_child[i++].ic_vdev = kid;
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
is->is_child[0].ic_vdev = vd;
|
|
|
|
}
|
|
|
|
|
|
|
|
list_insert_tail(&iv->iv_splits, is);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
vdev_indirect_remap(vdev_t *vd, uint64_t offset, uint64_t asize, void *arg)
|
|
|
|
{
|
|
|
|
list_t stack;
|
2019-12-15 21:52:40 +00:00
|
|
|
spa_t *spa = vd->v_spa;
|
2019-08-09 19:09:05 +00:00
|
|
|
zio_t *zio = arg;
|
2019-10-26 18:29:02 +00:00
|
|
|
remap_segment_t *rs;
|
2019-08-08 18:08:13 +00:00
|
|
|
|
|
|
|
list_create(&stack, sizeof (remap_segment_t),
|
|
|
|
offsetof(remap_segment_t, rs_node));
|
|
|
|
|
2019-10-26 18:29:02 +00:00
|
|
|
rs = rs_alloc(vd, offset, asize, 0);
|
|
|
|
if (rs == NULL) {
|
|
|
|
printf("vdev_indirect_remap: out of memory.\n");
|
|
|
|
zio->io_error = ENOMEM;
|
|
|
|
}
|
2019-12-15 14:09:49 +00:00
|
|
|
for (; rs != NULL; rs = list_remove_head(&stack)) {
|
2019-08-08 18:08:13 +00:00
|
|
|
vdev_t *v = rs->rs_vd;
|
|
|
|
uint64_t num_entries = 0;
|
|
|
|
/* vdev_indirect_mapping_t *vim = v->v_mapping; */
|
|
|
|
vdev_indirect_mapping_entry_phys_t *mapping =
|
|
|
|
vdev_indirect_mapping_duplicate_adjacent_entries(v,
|
|
|
|
rs->rs_offset, rs->rs_asize, &num_entries);
|
|
|
|
|
2019-10-26 18:29:02 +00:00
|
|
|
if (num_entries == 0)
|
|
|
|
zio->io_error = ENOMEM;
|
|
|
|
|
2019-08-08 18:08:13 +00:00
|
|
|
for (uint64_t i = 0; i < num_entries; i++) {
|
|
|
|
vdev_indirect_mapping_entry_phys_t *m = &mapping[i];
|
|
|
|
uint64_t size = DVA_GET_ASIZE(&m->vimep_dst);
|
|
|
|
uint64_t dst_offset = DVA_GET_OFFSET(&m->vimep_dst);
|
|
|
|
uint64_t dst_vdev = DVA_GET_VDEV(&m->vimep_dst);
|
|
|
|
uint64_t inner_offset = rs->rs_offset -
|
|
|
|
DVA_MAPPING_GET_SRC_OFFSET(m);
|
|
|
|
uint64_t inner_size =
|
|
|
|
MIN(rs->rs_asize, size - inner_offset);
|
|
|
|
vdev_t *dst_v = vdev_lookup_top(spa, dst_vdev);
|
|
|
|
|
|
|
|
if (dst_v->v_read == vdev_indirect_read) {
|
2019-10-26 18:29:02 +00:00
|
|
|
remap_segment_t *o;
|
|
|
|
|
|
|
|
o = rs_alloc(dst_v, dst_offset + inner_offset,
|
|
|
|
inner_size, rs->rs_split_offset);
|
|
|
|
if (o == NULL) {
|
|
|
|
printf("vdev_indirect_remap: "
|
|
|
|
"out of memory.\n");
|
|
|
|
zio->io_error = ENOMEM;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
list_insert_head(&stack, o);
|
2019-08-08 18:08:13 +00:00
|
|
|
}
|
|
|
|
vdev_indirect_gather_splits(rs->rs_split_offset, dst_v,
|
|
|
|
dst_offset + inner_offset,
|
|
|
|
inner_size, arg);
|
|
|
|
|
2019-08-09 19:09:05 +00:00
|
|
|
/*
|
|
|
|
* vdev_indirect_gather_splits can have memory
|
|
|
|
* allocation error, we can not recover from it.
|
|
|
|
*/
|
|
|
|
if (zio->io_error != 0)
|
|
|
|
break;
|
2019-08-08 18:08:13 +00:00
|
|
|
rs->rs_offset += inner_size;
|
|
|
|
rs->rs_asize -= inner_size;
|
|
|
|
rs->rs_split_offset += inner_size;
|
|
|
|
}
|
|
|
|
|
|
|
|
free(mapping);
|
|
|
|
free(rs);
|
2019-08-09 19:09:05 +00:00
|
|
|
if (zio->io_error != 0)
|
|
|
|
break;
|
2019-08-08 18:08:13 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
list_destroy(&stack);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
vdev_indirect_map_free(zio_t *zio)
|
|
|
|
{
|
|
|
|
indirect_vsd_t *iv = zio->io_vsd;
|
|
|
|
indirect_split_t *is;
|
|
|
|
|
|
|
|
while ((is = list_head(&iv->iv_splits)) != NULL) {
|
|
|
|
for (int c = 0; c < is->is_children; c++) {
|
|
|
|
indirect_child_t *ic = &is->is_child[c];
|
|
|
|
free(ic->ic_data);
|
|
|
|
}
|
|
|
|
list_remove(&iv->iv_splits, is);
|
|
|
|
free(is);
|
|
|
|
}
|
|
|
|
free(iv);
|
|
|
|
}
|
|
|
|
|
|
|
|
static int
|
|
|
|
vdev_indirect_read(vdev_t *vdev, const blkptr_t *bp, void *buf,
|
|
|
|
off_t offset, size_t bytes)
|
|
|
|
{
|
2019-12-15 21:52:40 +00:00
|
|
|
zio_t zio;
|
|
|
|
spa_t *spa = vdev->v_spa;
|
|
|
|
indirect_vsd_t *iv;
|
2019-08-08 18:08:13 +00:00
|
|
|
indirect_split_t *first;
|
|
|
|
int rc = EIO;
|
|
|
|
|
2019-12-15 21:52:40 +00:00
|
|
|
iv = calloc(1, sizeof(*iv));
|
2019-08-08 18:08:13 +00:00
|
|
|
if (iv == NULL)
|
|
|
|
return (ENOMEM);
|
|
|
|
|
|
|
|
list_create(&iv->iv_splits,
|
|
|
|
sizeof (indirect_split_t), offsetof(indirect_split_t, is_node));
|
|
|
|
|
2019-12-15 21:52:40 +00:00
|
|
|
bzero(&zio, sizeof(zio));
|
2019-08-08 18:08:13 +00:00
|
|
|
zio.io_spa = spa;
|
|
|
|
zio.io_bp = (blkptr_t *)bp;
|
|
|
|
zio.io_data = buf;
|
|
|
|
zio.io_size = bytes;
|
|
|
|
zio.io_offset = offset;
|
|
|
|
zio.io_vd = vdev;
|
|
|
|
zio.io_vsd = iv;
|
|
|
|
|
|
|
|
if (vdev->v_mapping == NULL) {
|
|
|
|
vdev_indirect_config_t *vic;
|
|
|
|
|
|
|
|
vic = &vdev->vdev_indirect_config;
|
|
|
|
vdev->v_mapping = vdev_indirect_mapping_open(spa,
|
|
|
|
&spa->spa_mos, vic->vic_mapping_object);
|
|
|
|
}
|
|
|
|
|
|
|
|
vdev_indirect_remap(vdev, offset, bytes, &zio);
|
2019-08-09 19:09:05 +00:00
|
|
|
if (zio.io_error != 0)
|
|
|
|
return (zio.io_error);
|
2019-08-08 18:08:13 +00:00
|
|
|
|
|
|
|
first = list_head(&iv->iv_splits);
|
|
|
|
if (first->is_size == zio.io_size) {
|
|
|
|
/*
|
|
|
|
* This is not a split block; we are pointing to the entire
|
|
|
|
* data, which will checksum the same as the original data.
|
|
|
|
* Pass the BP down so that the child i/o can verify the
|
|
|
|
* checksum, and try a different location if available
|
|
|
|
* (e.g. on a mirror).
|
|
|
|
*
|
|
|
|
* While this special case could be handled the same as the
|
|
|
|
* general (split block) case, doing it this way ensures
|
|
|
|
* that the vast majority of blocks on indirect vdevs
|
|
|
|
* (which are not split) are handled identically to blocks
|
|
|
|
* on non-indirect vdevs. This allows us to be less strict
|
|
|
|
* about performance in the general (but rare) case.
|
|
|
|
*/
|
|
|
|
rc = first->is_vdev->v_read(first->is_vdev, zio.io_bp,
|
|
|
|
zio.io_data, first->is_target_offset, bytes);
|
|
|
|
} else {
|
|
|
|
iv->iv_split_block = B_TRUE;
|
|
|
|
/*
|
|
|
|
* Read one copy of each split segment, from the
|
|
|
|
* top-level vdev. Since we don't know the
|
|
|
|
* checksum of each split individually, the child
|
|
|
|
* zio can't ensure that we get the right data.
|
|
|
|
* E.g. if it's a mirror, it will just read from a
|
|
|
|
* random (healthy) leaf vdev. We have to verify
|
|
|
|
* the checksum in vdev_indirect_io_done().
|
|
|
|
*/
|
|
|
|
for (indirect_split_t *is = list_head(&iv->iv_splits);
|
|
|
|
is != NULL; is = list_next(&iv->iv_splits, is)) {
|
|
|
|
char *ptr = zio.io_data;
|
|
|
|
|
|
|
|
rc = is->is_vdev->v_read(is->is_vdev, zio.io_bp,
|
|
|
|
ptr + is->is_split_offset, is->is_target_offset,
|
|
|
|
is->is_size);
|
|
|
|
}
|
|
|
|
if (zio_checksum_verify(spa, zio.io_bp, zio.io_data))
|
|
|
|
rc = ECKSUM;
|
|
|
|
else
|
|
|
|
rc = 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
vdev_indirect_map_free(&zio);
|
|
|
|
if (rc == 0)
|
|
|
|
rc = zio.io_error;
|
|
|
|
|
|
|
|
return (rc);
|
|
|
|
}
|
|
|
|
|
2009-05-16 10:48:20 +00:00
|
|
|
static int
|
|
|
|
vdev_disk_read(vdev_t *vdev, const blkptr_t *bp, void *buf,
|
|
|
|
off_t offset, size_t bytes)
|
|
|
|
{
|
|
|
|
|
|
|
|
return (vdev_read_phys(vdev, bp, buf,
|
2019-12-15 14:09:49 +00:00
|
|
|
offset + VDEV_LABEL_START_SIZE, bytes));
|
2009-05-16 10:48:20 +00:00
|
|
|
}
|
|
|
|
|
2020-06-26 21:21:35 +00:00
|
|
|
static int
|
|
|
|
vdev_missing_read(vdev_t *vdev __unused, const blkptr_t *bp __unused,
|
|
|
|
void *buf __unused, off_t offset __unused, size_t bytes __unused)
|
|
|
|
{
|
|
|
|
|
|
|
|
return (ENOTSUP);
|
|
|
|
}
|
2009-05-16 10:48:20 +00:00
|
|
|
|
|
|
|
static int
|
|
|
|
vdev_mirror_read(vdev_t *vdev, const blkptr_t *bp, void *buf,
|
|
|
|
off_t offset, size_t bytes)
|
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
|
|
|
{
|
|
|
|
vdev_t *kid;
|
|
|
|
int rc;
|
|
|
|
|
|
|
|
rc = EIO;
|
|
|
|
STAILQ_FOREACH(kid, &vdev->v_children, v_childlink) {
|
|
|
|
if (kid->v_state != VDEV_STATE_HEALTHY)
|
|
|
|
continue;
|
2009-05-16 10:48:20 +00:00
|
|
|
rc = kid->v_read(kid, bp, buf, offset, bytes);
|
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 (!rc)
|
|
|
|
return (0);
|
|
|
|
}
|
|
|
|
|
|
|
|
return (rc);
|
|
|
|
}
|
|
|
|
|
2010-09-09 21:18:00 +00:00
|
|
|
static int
|
|
|
|
vdev_replacing_read(vdev_t *vdev, const blkptr_t *bp, void *buf,
|
|
|
|
off_t offset, size_t bytes)
|
|
|
|
{
|
|
|
|
vdev_t *kid;
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Here we should have two kids:
|
|
|
|
* First one which is the one we are replacing and we can trust
|
|
|
|
* only this one to have valid data, but it might not be present.
|
|
|
|
* Second one is that one we are replacing with. It is most likely
|
|
|
|
* healthy, but we can't trust it has needed data, so we won't use it.
|
|
|
|
*/
|
|
|
|
kid = STAILQ_FIRST(&vdev->v_children);
|
|
|
|
if (kid == NULL)
|
|
|
|
return (EIO);
|
|
|
|
if (kid->v_state != VDEV_STATE_HEALTHY)
|
|
|
|
return (EIO);
|
|
|
|
return (kid->v_read(kid, bp, buf, offset, bytes));
|
|
|
|
}
|
|
|
|
|
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 vdev_t *
|
|
|
|
vdev_find(uint64_t guid)
|
|
|
|
{
|
|
|
|
vdev_t *vdev;
|
|
|
|
|
|
|
|
STAILQ_FOREACH(vdev, &zfs_vdevs, v_alllink)
|
|
|
|
if (vdev->v_guid == guid)
|
|
|
|
return (vdev);
|
|
|
|
|
|
|
|
return (0);
|
|
|
|
}
|
|
|
|
|
|
|
|
static vdev_t *
|
2017-03-28 20:39:24 +00:00
|
|
|
vdev_create(uint64_t guid, vdev_read_t *_read)
|
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
|
|
|
{
|
|
|
|
vdev_t *vdev;
|
2019-08-08 18:08:13 +00:00
|
|
|
vdev_indirect_config_t *vic;
|
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
|
|
|
|
2019-12-15 21:52:40 +00:00
|
|
|
vdev = calloc(1, sizeof(vdev_t));
|
|
|
|
if (vdev != NULL) {
|
|
|
|
STAILQ_INIT(&vdev->v_children);
|
|
|
|
vdev->v_guid = guid;
|
|
|
|
vdev->v_read = _read;
|
2019-08-08 18:08:13 +00:00
|
|
|
|
2019-12-15 21:52:40 +00:00
|
|
|
/*
|
2020-01-06 19:35:22 +00:00
|
|
|
* root vdev has no read function, we use this fact to
|
|
|
|
* skip setting up data we do not need for root vdev.
|
2019-12-15 21:52:40 +00:00
|
|
|
* We only point root vdev from spa.
|
|
|
|
*/
|
|
|
|
if (_read != NULL) {
|
|
|
|
vic = &vdev->vdev_indirect_config;
|
|
|
|
vic->vic_prev_indirect_vdev = UINT64_MAX;
|
|
|
|
STAILQ_INSERT_TAIL(&zfs_vdevs, vdev, v_alllink);
|
|
|
|
}
|
|
|
|
}
|
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 (vdev);
|
|
|
|
}
|
|
|
|
|
2019-12-15 21:52:40 +00:00
|
|
|
static void
|
2020-06-20 06:23:31 +00:00
|
|
|
vdev_set_initial_state(vdev_t *vdev, const nvlist_t *nvlist)
|
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
|
|
|
{
|
2010-09-09 21:18:00 +00:00
|
|
|
uint64_t is_offline, is_faulted, is_degraded, is_removed, isnt_present;
|
2019-11-03 13:25:47 +00:00
|
|
|
uint64_t is_log;
|
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
|
|
|
|
2019-12-15 21:52:40 +00:00
|
|
|
is_offline = is_removed = is_faulted = is_degraded = isnt_present = 0;
|
|
|
|
is_log = 0;
|
|
|
|
(void) nvlist_find(nvlist, ZPOOL_CONFIG_OFFLINE, DATA_TYPE_UINT64, NULL,
|
2020-06-17 10:41:01 +00:00
|
|
|
&is_offline, NULL);
|
2019-12-15 21:52:40 +00:00
|
|
|
(void) nvlist_find(nvlist, ZPOOL_CONFIG_REMOVED, DATA_TYPE_UINT64, NULL,
|
2020-06-17 10:41:01 +00:00
|
|
|
&is_removed, NULL);
|
2019-12-15 21:52:40 +00:00
|
|
|
(void) nvlist_find(nvlist, ZPOOL_CONFIG_FAULTED, DATA_TYPE_UINT64, NULL,
|
2020-06-17 10:41:01 +00:00
|
|
|
&is_faulted, NULL);
|
2019-12-15 21:52:40 +00:00
|
|
|
(void) nvlist_find(nvlist, ZPOOL_CONFIG_DEGRADED, DATA_TYPE_UINT64,
|
2020-06-17 10:41:01 +00:00
|
|
|
NULL, &is_degraded, NULL);
|
2019-12-15 21:52:40 +00:00
|
|
|
(void) nvlist_find(nvlist, ZPOOL_CONFIG_NOT_PRESENT, DATA_TYPE_UINT64,
|
2020-06-17 10:41:01 +00:00
|
|
|
NULL, &isnt_present, NULL);
|
2019-12-15 21:52:40 +00:00
|
|
|
(void) nvlist_find(nvlist, ZPOOL_CONFIG_IS_LOG, DATA_TYPE_UINT64, NULL,
|
2020-06-17 10:41:01 +00:00
|
|
|
&is_log, NULL);
|
2019-12-15 21:52:40 +00:00
|
|
|
|
|
|
|
if (is_offline != 0)
|
|
|
|
vdev->v_state = VDEV_STATE_OFFLINE;
|
|
|
|
else if (is_removed != 0)
|
|
|
|
vdev->v_state = VDEV_STATE_REMOVED;
|
|
|
|
else if (is_faulted != 0)
|
|
|
|
vdev->v_state = VDEV_STATE_FAULTED;
|
|
|
|
else if (is_degraded != 0)
|
|
|
|
vdev->v_state = VDEV_STATE_DEGRADED;
|
|
|
|
else if (isnt_present != 0)
|
|
|
|
vdev->v_state = VDEV_STATE_CANT_OPEN;
|
|
|
|
|
2020-01-06 19:35:22 +00:00
|
|
|
vdev->v_islog = is_log != 0;
|
2019-12-15 21:52:40 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static int
|
2020-06-20 06:23:31 +00:00
|
|
|
vdev_init(uint64_t guid, const nvlist_t *nvlist, vdev_t **vdevp)
|
2019-12-15 21:52:40 +00:00
|
|
|
{
|
|
|
|
uint64_t id, ashift, asize, nparity;
|
|
|
|
const char *path;
|
|
|
|
const char *type;
|
2020-06-17 10:41:01 +00:00
|
|
|
int len, pathlen;
|
|
|
|
char *name;
|
2019-12-15 21:52:40 +00:00
|
|
|
vdev_t *vdev;
|
|
|
|
|
2020-06-17 10:41:01 +00:00
|
|
|
if (nvlist_find(nvlist, ZPOOL_CONFIG_ID, DATA_TYPE_UINT64, NULL, &id,
|
|
|
|
NULL) ||
|
2020-06-20 06:23:31 +00:00
|
|
|
nvlist_find(nvlist, ZPOOL_CONFIG_TYPE, DATA_TYPE_STRING, NULL,
|
|
|
|
&type, &len)) {
|
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 (ENOENT);
|
|
|
|
}
|
|
|
|
|
2020-06-17 10:41:01 +00:00
|
|
|
if (memcmp(type, VDEV_TYPE_MIRROR, len) != 0 &&
|
|
|
|
memcmp(type, VDEV_TYPE_DISK, len) != 0 &&
|
2011-12-04 21:29:56 +00:00
|
|
|
#ifdef ZFS_TEST
|
2020-06-17 10:41:01 +00:00
|
|
|
memcmp(type, VDEV_TYPE_FILE, len) != 0 &&
|
2011-12-04 21:29:56 +00:00
|
|
|
#endif
|
2020-06-17 10:41:01 +00:00
|
|
|
memcmp(type, VDEV_TYPE_RAIDZ, len) != 0 &&
|
|
|
|
memcmp(type, VDEV_TYPE_INDIRECT, len) != 0 &&
|
2020-06-26 21:21:35 +00:00
|
|
|
memcmp(type, VDEV_TYPE_REPLACING, len) != 0 &&
|
|
|
|
memcmp(type, VDEV_TYPE_HOLE, len) != 0) {
|
2019-12-15 14:09:49 +00:00
|
|
|
printf("ZFS: can only boot from disk, mirror, raidz1, "
|
2020-06-26 21:21:35 +00:00
|
|
|
"raidz2 and raidz3 vdevs, got: %.*s\n", len, type);
|
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 (EIO);
|
|
|
|
}
|
|
|
|
|
2020-06-17 10:41:01 +00:00
|
|
|
if (memcmp(type, VDEV_TYPE_MIRROR, len) == 0)
|
2019-12-15 21:52:40 +00:00
|
|
|
vdev = vdev_create(guid, vdev_mirror_read);
|
2020-06-17 10:41:01 +00:00
|
|
|
else if (memcmp(type, VDEV_TYPE_RAIDZ, len) == 0)
|
2019-12-15 21:52:40 +00:00
|
|
|
vdev = vdev_create(guid, vdev_raidz_read);
|
2020-06-17 10:41:01 +00:00
|
|
|
else if (memcmp(type, VDEV_TYPE_REPLACING, len) == 0)
|
2019-12-15 21:52:40 +00:00
|
|
|
vdev = vdev_create(guid, vdev_replacing_read);
|
2020-06-17 10:41:01 +00:00
|
|
|
else if (memcmp(type, VDEV_TYPE_INDIRECT, len) == 0) {
|
2019-12-15 21:52:40 +00:00
|
|
|
vdev_indirect_config_t *vic;
|
2010-01-06 23:09:23 +00:00
|
|
|
|
2019-12-15 21:52:40 +00:00
|
|
|
vdev = vdev_create(guid, vdev_indirect_read);
|
|
|
|
if (vdev != NULL) {
|
2019-08-08 18:08:13 +00:00
|
|
|
vdev->v_state = VDEV_STATE_HEALTHY;
|
|
|
|
vic = &vdev->vdev_indirect_config;
|
|
|
|
|
|
|
|
nvlist_find(nvlist,
|
2019-12-15 21:52:40 +00:00
|
|
|
ZPOOL_CONFIG_INDIRECT_OBJECT,
|
|
|
|
DATA_TYPE_UINT64,
|
2020-06-17 10:41:01 +00:00
|
|
|
NULL, &vic->vic_mapping_object, NULL);
|
2019-08-08 18:08:13 +00:00
|
|
|
nvlist_find(nvlist,
|
2019-12-15 21:52:40 +00:00
|
|
|
ZPOOL_CONFIG_INDIRECT_BIRTHS,
|
|
|
|
DATA_TYPE_UINT64,
|
2020-06-17 10:41:01 +00:00
|
|
|
NULL, &vic->vic_births_object, NULL);
|
2019-08-08 18:08:13 +00:00
|
|
|
nvlist_find(nvlist,
|
2019-12-15 21:52:40 +00:00
|
|
|
ZPOOL_CONFIG_PREV_INDIRECT_VDEV,
|
|
|
|
DATA_TYPE_UINT64,
|
2020-06-17 10:41:01 +00:00
|
|
|
NULL, &vic->vic_prev_indirect_vdev, NULL);
|
loader: zfs reader should check all labels
The current zfs reader is only checking first label from each device, however,
we do have 4 labels on device and we should check all 4 to be protected
against disk failures and incomplete label updates.
The difficulty is about the fact that 2 label copies are in front of the
pool data, and 2 are at the end, which means, we have to know the size of
the pool data area.
Since we have now the mechanism from common/disk.c to use the partition
information, it does help us in this task; however, there are still some
corner cases.
Namely, if the pool is created without partition, directly on the disk,
and firmware will give us the wrong size for the disk, we only can check
the first two label copies.
Reviewed by: allanjude
Differential Revision: https://reviews.freebsd.org/D10203
2017-04-06 18:17:29 +00:00
|
|
|
}
|
2020-06-26 21:21:35 +00:00
|
|
|
} else if (memcmp(type, VDEV_TYPE_HOLE, len) == 0) {
|
|
|
|
vdev = vdev_create(guid, vdev_missing_read);
|
2019-12-15 21:52:40 +00:00
|
|
|
} else {
|
|
|
|
vdev = vdev_create(guid, vdev_disk_read);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (vdev == NULL)
|
|
|
|
return (ENOMEM);
|
|
|
|
|
|
|
|
vdev_set_initial_state(vdev, nvlist);
|
|
|
|
vdev->v_id = id;
|
|
|
|
if (nvlist_find(nvlist, ZPOOL_CONFIG_ASHIFT,
|
2020-06-17 10:41:01 +00:00
|
|
|
DATA_TYPE_UINT64, NULL, &ashift, NULL) == 0)
|
2019-12-15 21:52:40 +00:00
|
|
|
vdev->v_ashift = ashift;
|
|
|
|
|
|
|
|
if (nvlist_find(nvlist, ZPOOL_CONFIG_ASIZE,
|
2020-06-17 10:41:01 +00:00
|
|
|
DATA_TYPE_UINT64, NULL, &asize, NULL) == 0) {
|
2019-12-15 21:52:40 +00:00
|
|
|
vdev->v_psize = asize +
|
|
|
|
VDEV_LABEL_START_SIZE + VDEV_LABEL_END_SIZE;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (nvlist_find(nvlist, ZPOOL_CONFIG_NPARITY,
|
2020-06-17 10:41:01 +00:00
|
|
|
DATA_TYPE_UINT64, NULL, &nparity, NULL) == 0)
|
2019-12-15 21:52:40 +00:00
|
|
|
vdev->v_nparity = nparity;
|
|
|
|
|
|
|
|
if (nvlist_find(nvlist, ZPOOL_CONFIG_PATH,
|
2020-06-17 10:41:01 +00:00
|
|
|
DATA_TYPE_STRING, NULL, &path, &pathlen) == 0) {
|
|
|
|
char prefix[] = "/dev/";
|
2019-12-15 21:52:40 +00:00
|
|
|
|
2020-06-17 10:41:01 +00:00
|
|
|
len = strlen(prefix);
|
2020-06-17 10:56:58 +00:00
|
|
|
if (len < pathlen && memcmp(path, prefix, len) == 0) {
|
2020-06-17 10:41:01 +00:00
|
|
|
path += len;
|
|
|
|
pathlen -= len;
|
|
|
|
}
|
|
|
|
name = malloc(pathlen + 1);
|
|
|
|
bcopy(path, name, pathlen);
|
|
|
|
name[pathlen] = '\0';
|
|
|
|
vdev->v_name = name;
|
|
|
|
} else {
|
2019-12-15 21:52:40 +00:00
|
|
|
name = NULL;
|
2020-06-17 10:41:01 +00:00
|
|
|
if (memcmp(type, VDEV_TYPE_RAIDZ, len) == 0) {
|
2019-12-15 21:52:40 +00:00
|
|
|
if (vdev->v_nparity < 1 ||
|
|
|
|
vdev->v_nparity > 3) {
|
2020-01-06 19:35:22 +00:00
|
|
|
printf("ZFS: invalid raidz parity: %d\n",
|
|
|
|
vdev->v_nparity);
|
2019-12-15 21:52:40 +00:00
|
|
|
return (EIO);
|
2010-01-06 23:11:56 +00:00
|
|
|
}
|
2020-06-17 10:41:01 +00:00
|
|
|
(void) asprintf(&name, "%.*s%d-%" PRIu64, len, type,
|
2019-12-15 21:52:40 +00:00
|
|
|
vdev->v_nparity, id);
|
|
|
|
} else {
|
2020-06-17 10:41:01 +00:00
|
|
|
(void) asprintf(&name, "%.*s-%" PRIu64, len, type, id);
|
2009-05-16 10:48:20 +00:00
|
|
|
}
|
2019-12-15 21:52:40 +00:00
|
|
|
vdev->v_name = name;
|
2010-09-09 21:15:16 +00:00
|
|
|
}
|
2019-12-15 21:52:40 +00:00
|
|
|
*vdevp = vdev;
|
|
|
|
return (0);
|
|
|
|
}
|
2010-01-06 23:09:23 +00:00
|
|
|
|
2019-12-15 21:52:40 +00:00
|
|
|
/*
|
|
|
|
* Find slot for vdev. We return either NULL to signal to use
|
|
|
|
* STAILQ_INSERT_HEAD, or we return link element to be used with
|
|
|
|
* STAILQ_INSERT_AFTER.
|
|
|
|
*/
|
|
|
|
static vdev_t *
|
|
|
|
vdev_find_previous(vdev_t *top_vdev, vdev_t *vdev)
|
|
|
|
{
|
|
|
|
vdev_t *v, *previous;
|
|
|
|
|
|
|
|
if (STAILQ_EMPTY(&top_vdev->v_children))
|
|
|
|
return (NULL);
|
|
|
|
|
|
|
|
previous = NULL;
|
|
|
|
STAILQ_FOREACH(v, &top_vdev->v_children, v_childlink) {
|
|
|
|
if (v->v_id > vdev->v_id)
|
|
|
|
return (previous);
|
|
|
|
|
|
|
|
if (v->v_id == vdev->v_id)
|
|
|
|
return (v);
|
|
|
|
|
|
|
|
if (v->v_id < vdev->v_id)
|
|
|
|
previous = v;
|
2010-01-06 23:09:23 +00:00
|
|
|
}
|
2019-12-15 21:52:40 +00:00
|
|
|
return (previous);
|
|
|
|
}
|
|
|
|
|
|
|
|
static size_t
|
|
|
|
vdev_child_count(vdev_t *vdev)
|
|
|
|
{
|
|
|
|
vdev_t *v;
|
|
|
|
size_t count;
|
|
|
|
|
|
|
|
count = 0;
|
|
|
|
STAILQ_FOREACH(v, &vdev->v_children, v_childlink) {
|
|
|
|
count++;
|
|
|
|
}
|
|
|
|
return (count);
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Insert vdev into top_vdev children list. List is ordered by v_id.
|
|
|
|
*/
|
|
|
|
static void
|
|
|
|
vdev_insert(vdev_t *top_vdev, vdev_t *vdev)
|
|
|
|
{
|
|
|
|
vdev_t *previous;
|
|
|
|
size_t count;
|
2010-01-06 23:09:23 +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
|
|
|
/*
|
2019-12-15 21:52:40 +00:00
|
|
|
* The top level vdev can appear in random order, depending how
|
|
|
|
* the firmware is presenting the disk devices.
|
|
|
|
* However, we will insert vdev to create list ordered by v_id,
|
|
|
|
* so we can use either STAILQ_INSERT_HEAD or STAILQ_INSERT_AFTER
|
|
|
|
* as STAILQ does not have insert before.
|
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
|
|
|
*/
|
2019-12-15 21:52:40 +00:00
|
|
|
previous = vdev_find_previous(top_vdev, vdev);
|
|
|
|
|
|
|
|
if (previous == NULL) {
|
|
|
|
STAILQ_INSERT_HEAD(&top_vdev->v_children, vdev, v_childlink);
|
2020-01-06 19:35:22 +00:00
|
|
|
} else if (previous->v_id == vdev->v_id) {
|
|
|
|
/*
|
|
|
|
* This vdev was configured from label config,
|
|
|
|
* do not insert duplicate.
|
|
|
|
*/
|
2019-12-15 21:52:40 +00:00
|
|
|
return;
|
2020-01-06 19:35:22 +00:00
|
|
|
} else {
|
|
|
|
STAILQ_INSERT_AFTER(&top_vdev->v_children, previous, vdev,
|
|
|
|
v_childlink);
|
2019-12-15 21:52:40 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
count = vdev_child_count(top_vdev);
|
|
|
|
if (top_vdev->v_nchildren < count)
|
|
|
|
top_vdev->v_nchildren = count;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int
|
2020-06-20 06:23:31 +00:00
|
|
|
vdev_from_nvlist(spa_t *spa, uint64_t top_guid, const nvlist_t *nvlist)
|
2019-12-15 21:52:40 +00:00
|
|
|
{
|
|
|
|
vdev_t *top_vdev, *vdev;
|
2020-06-20 06:23:31 +00:00
|
|
|
nvlist_t *kids = NULL;
|
2019-12-15 21:52:40 +00:00
|
|
|
int rc, nkids;
|
|
|
|
|
|
|
|
/* Get top vdev. */
|
|
|
|
top_vdev = vdev_find(top_guid);
|
|
|
|
if (top_vdev == NULL) {
|
|
|
|
rc = vdev_init(top_guid, nvlist, &top_vdev);
|
|
|
|
if (rc != 0)
|
|
|
|
return (rc);
|
|
|
|
top_vdev->v_spa = spa;
|
|
|
|
top_vdev->v_top = top_vdev;
|
|
|
|
vdev_insert(spa->spa_root_vdev, top_vdev);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Add children if there are any. */
|
|
|
|
rc = nvlist_find(nvlist, ZPOOL_CONFIG_CHILDREN, DATA_TYPE_NVLIST_ARRAY,
|
2020-06-17 10:41:01 +00:00
|
|
|
&nkids, &kids, NULL);
|
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 (rc == 0) {
|
2019-12-15 21:52:40 +00:00
|
|
|
for (int i = 0; i < nkids; i++) {
|
|
|
|
uint64_t guid;
|
|
|
|
|
|
|
|
rc = nvlist_find(kids, ZPOOL_CONFIG_GUID,
|
2020-06-17 10:41:01 +00:00
|
|
|
DATA_TYPE_UINT64, NULL, &guid, NULL);
|
2020-06-20 06:23:31 +00:00
|
|
|
if (rc != 0) {
|
|
|
|
nvlist_destroy(kids);
|
2019-12-15 21:52:40 +00:00
|
|
|
return (rc);
|
2020-06-20 06:23:31 +00:00
|
|
|
}
|
2019-12-15 21:52:40 +00:00
|
|
|
rc = vdev_init(guid, kids, &vdev);
|
|
|
|
if (rc != 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
|
|
|
return (rc);
|
2019-12-15 21:52:40 +00:00
|
|
|
|
|
|
|
vdev->v_spa = spa;
|
|
|
|
vdev->v_top = top_vdev;
|
|
|
|
vdev_insert(top_vdev, vdev);
|
|
|
|
|
2020-06-20 06:23:31 +00:00
|
|
|
rc = nvlist_next(kids);
|
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
|
|
|
}
|
2009-05-16 10:48:20 +00:00
|
|
|
} else {
|
2020-01-06 19:35:22 +00:00
|
|
|
/*
|
|
|
|
* When there are no children, nvlist_find() does return
|
|
|
|
* error, reset it because leaf devices have no children.
|
|
|
|
*/
|
2019-12-15 21:52:40 +00:00
|
|
|
rc = 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
|
|
|
}
|
2020-06-20 06:23:31 +00:00
|
|
|
nvlist_destroy(kids);
|
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
|
|
|
|
2019-12-15 21:52:40 +00:00
|
|
|
return (rc);
|
|
|
|
}
|
|
|
|
|
|
|
|
static int
|
2020-06-20 06:23:31 +00:00
|
|
|
vdev_init_from_label(spa_t *spa, const nvlist_t *nvlist)
|
2019-12-15 21:52:40 +00:00
|
|
|
{
|
|
|
|
uint64_t pool_guid, top_guid;
|
2020-06-20 06:23:31 +00:00
|
|
|
nvlist_t *vdevs;
|
|
|
|
int rc;
|
2019-12-15 21:52:40 +00:00
|
|
|
|
|
|
|
if (nvlist_find(nvlist, ZPOOL_CONFIG_POOL_GUID, DATA_TYPE_UINT64,
|
2020-06-17 10:41:01 +00:00
|
|
|
NULL, &pool_guid, NULL) ||
|
2019-12-15 21:52:40 +00:00
|
|
|
nvlist_find(nvlist, ZPOOL_CONFIG_TOP_GUID, DATA_TYPE_UINT64,
|
2020-06-17 10:41:01 +00:00
|
|
|
NULL, &top_guid, NULL) ||
|
2019-12-15 21:52:40 +00:00
|
|
|
nvlist_find(nvlist, ZPOOL_CONFIG_VDEV_TREE, DATA_TYPE_NVLIST,
|
2020-06-17 10:41:01 +00:00
|
|
|
NULL, &vdevs, NULL)) {
|
2019-12-15 21:52:40 +00:00
|
|
|
printf("ZFS: can't find vdev details\n");
|
|
|
|
return (ENOENT);
|
|
|
|
}
|
|
|
|
|
2020-06-20 06:23:31 +00:00
|
|
|
rc = vdev_from_nvlist(spa, top_guid, vdevs);
|
|
|
|
nvlist_destroy(vdevs);
|
|
|
|
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
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
vdev_set_state(vdev_t *vdev)
|
|
|
|
{
|
|
|
|
vdev_t *kid;
|
|
|
|
int good_kids;
|
|
|
|
int bad_kids;
|
|
|
|
|
2019-12-15 21:52:40 +00:00
|
|
|
STAILQ_FOREACH(kid, &vdev->v_children, v_childlink) {
|
|
|
|
vdev_set_state(kid);
|
|
|
|
}
|
|
|
|
|
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
|
|
|
/*
|
2009-05-16 10:48:20 +00:00
|
|
|
* A mirror or raidz is healthy if all its kids are healthy. A
|
|
|
|
* mirror is degraded if any of its kids is healthy; a raidz
|
|
|
|
* is degraded if at most nparity kids are offline.
|
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 (STAILQ_FIRST(&vdev->v_children)) {
|
|
|
|
good_kids = 0;
|
|
|
|
bad_kids = 0;
|
|
|
|
STAILQ_FOREACH(kid, &vdev->v_children, v_childlink) {
|
|
|
|
if (kid->v_state == VDEV_STATE_HEALTHY)
|
|
|
|
good_kids++;
|
|
|
|
else
|
|
|
|
bad_kids++;
|
|
|
|
}
|
2009-05-16 10:48:20 +00:00
|
|
|
if (bad_kids == 0) {
|
|
|
|
vdev->v_state = VDEV_STATE_HEALTHY;
|
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
|
|
|
} else {
|
2009-05-16 10:48:20 +00:00
|
|
|
if (vdev->v_read == vdev_mirror_read) {
|
|
|
|
if (good_kids) {
|
|
|
|
vdev->v_state = VDEV_STATE_DEGRADED;
|
|
|
|
} else {
|
|
|
|
vdev->v_state = VDEV_STATE_OFFLINE;
|
|
|
|
}
|
|
|
|
} else if (vdev->v_read == vdev_raidz_read) {
|
|
|
|
if (bad_kids > vdev->v_nparity) {
|
|
|
|
vdev->v_state = VDEV_STATE_OFFLINE;
|
|
|
|
} else {
|
|
|
|
vdev->v_state = VDEV_STATE_DEGRADED;
|
|
|
|
}
|
|
|
|
}
|
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
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-12-15 21:52:40 +00:00
|
|
|
static int
|
2020-06-20 06:23:31 +00:00
|
|
|
vdev_update_from_nvlist(uint64_t top_guid, const nvlist_t *nvlist)
|
2019-12-15 21:52:40 +00:00
|
|
|
{
|
|
|
|
vdev_t *vdev;
|
2020-06-20 06:23:31 +00:00
|
|
|
nvlist_t *kids = NULL;
|
2019-12-15 21:52:40 +00:00
|
|
|
int rc, nkids;
|
|
|
|
|
|
|
|
/* Update top vdev. */
|
|
|
|
vdev = vdev_find(top_guid);
|
|
|
|
if (vdev != NULL)
|
|
|
|
vdev_set_initial_state(vdev, nvlist);
|
|
|
|
|
|
|
|
/* Update children if there are any. */
|
|
|
|
rc = nvlist_find(nvlist, ZPOOL_CONFIG_CHILDREN, DATA_TYPE_NVLIST_ARRAY,
|
2020-06-17 10:41:01 +00:00
|
|
|
&nkids, &kids, NULL);
|
2019-12-15 21:52:40 +00:00
|
|
|
if (rc == 0) {
|
|
|
|
for (int i = 0; i < nkids; i++) {
|
|
|
|
uint64_t guid;
|
|
|
|
|
|
|
|
rc = nvlist_find(kids, ZPOOL_CONFIG_GUID,
|
2020-06-17 10:41:01 +00:00
|
|
|
DATA_TYPE_UINT64, NULL, &guid, NULL);
|
2019-12-15 21:52:40 +00:00
|
|
|
if (rc != 0)
|
|
|
|
break;
|
|
|
|
|
|
|
|
vdev = vdev_find(guid);
|
|
|
|
if (vdev != NULL)
|
|
|
|
vdev_set_initial_state(vdev, kids);
|
|
|
|
|
2020-06-20 06:23:31 +00:00
|
|
|
rc = nvlist_next(kids);
|
2019-12-15 21:52:40 +00:00
|
|
|
}
|
|
|
|
} else {
|
|
|
|
rc = 0;
|
|
|
|
}
|
2020-06-20 06:23:31 +00:00
|
|
|
nvlist_destroy(kids);
|
2019-12-15 21:52:40 +00:00
|
|
|
|
|
|
|
return (rc);
|
|
|
|
}
|
|
|
|
|
|
|
|
static int
|
2020-06-20 06:23:31 +00:00
|
|
|
vdev_init_from_nvlist(spa_t *spa, const nvlist_t *nvlist)
|
2019-12-15 21:52:40 +00:00
|
|
|
{
|
|
|
|
uint64_t pool_guid, vdev_children;
|
2020-06-20 06:23:31 +00:00
|
|
|
nvlist_t *vdevs = NULL, *kids = NULL;
|
2019-12-15 21:52:40 +00:00
|
|
|
int rc, nkids;
|
|
|
|
|
|
|
|
if (nvlist_find(nvlist, ZPOOL_CONFIG_POOL_GUID, DATA_TYPE_UINT64,
|
2020-06-17 10:41:01 +00:00
|
|
|
NULL, &pool_guid, NULL) ||
|
2019-12-15 21:52:40 +00:00
|
|
|
nvlist_find(nvlist, ZPOOL_CONFIG_VDEV_CHILDREN, DATA_TYPE_UINT64,
|
2020-06-17 10:41:01 +00:00
|
|
|
NULL, &vdev_children, NULL) ||
|
2019-12-15 21:52:40 +00:00
|
|
|
nvlist_find(nvlist, ZPOOL_CONFIG_VDEV_TREE, DATA_TYPE_NVLIST,
|
2020-06-17 10:41:01 +00:00
|
|
|
NULL, &vdevs, NULL)) {
|
2019-12-15 21:52:40 +00:00
|
|
|
printf("ZFS: can't find vdev details\n");
|
|
|
|
return (ENOENT);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Wrong guid?! */
|
2020-06-20 06:23:31 +00:00
|
|
|
if (spa->spa_guid != pool_guid) {
|
|
|
|
nvlist_destroy(vdevs);
|
2020-01-06 19:35:22 +00:00
|
|
|
return (EINVAL);
|
2020-06-20 06:23:31 +00:00
|
|
|
}
|
2019-12-15 21:52:40 +00:00
|
|
|
|
|
|
|
spa->spa_root_vdev->v_nchildren = vdev_children;
|
|
|
|
|
|
|
|
rc = nvlist_find(vdevs, ZPOOL_CONFIG_CHILDREN, DATA_TYPE_NVLIST_ARRAY,
|
2020-06-17 10:41:01 +00:00
|
|
|
&nkids, &kids, NULL);
|
2020-06-20 06:23:31 +00:00
|
|
|
nvlist_destroy(vdevs);
|
2019-12-15 21:52:40 +00:00
|
|
|
|
|
|
|
/*
|
|
|
|
* MOS config has at least one child for root vdev.
|
|
|
|
*/
|
|
|
|
if (rc != 0)
|
2020-01-06 19:35:22 +00:00
|
|
|
return (rc);
|
2019-12-15 21:52:40 +00:00
|
|
|
|
|
|
|
for (int i = 0; i < nkids; i++) {
|
|
|
|
uint64_t guid;
|
|
|
|
vdev_t *vdev;
|
|
|
|
|
|
|
|
rc = nvlist_find(kids, ZPOOL_CONFIG_GUID, DATA_TYPE_UINT64,
|
2020-06-17 10:41:01 +00:00
|
|
|
NULL, &guid, NULL);
|
2019-12-15 21:52:40 +00:00
|
|
|
if (rc != 0)
|
|
|
|
break;
|
|
|
|
vdev = vdev_find(guid);
|
|
|
|
/*
|
|
|
|
* Top level vdev is missing, create it.
|
|
|
|
*/
|
|
|
|
if (vdev == NULL)
|
|
|
|
rc = vdev_from_nvlist(spa, guid, kids);
|
|
|
|
else
|
|
|
|
rc = vdev_update_from_nvlist(guid, kids);
|
|
|
|
if (rc != 0)
|
|
|
|
break;
|
2020-06-20 06:23:31 +00:00
|
|
|
nvlist_next(kids);
|
2019-12-15 21:52:40 +00:00
|
|
|
}
|
2020-06-20 06:23:31 +00:00
|
|
|
nvlist_destroy(kids);
|
2019-12-15 21:52:40 +00:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Re-evaluate top-level vdev state.
|
|
|
|
*/
|
|
|
|
vdev_set_state(spa->spa_root_vdev);
|
|
|
|
|
|
|
|
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
|
|
|
static spa_t *
|
|
|
|
spa_find_by_guid(uint64_t guid)
|
|
|
|
{
|
|
|
|
spa_t *spa;
|
|
|
|
|
|
|
|
STAILQ_FOREACH(spa, &zfs_pools, spa_link)
|
|
|
|
if (spa->spa_guid == guid)
|
|
|
|
return (spa);
|
|
|
|
|
2019-12-15 14:09:49 +00:00
|
|
|
return (NULL);
|
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 spa_t *
|
|
|
|
spa_find_by_name(const char *name)
|
|
|
|
{
|
|
|
|
spa_t *spa;
|
|
|
|
|
|
|
|
STAILQ_FOREACH(spa, &zfs_pools, spa_link)
|
2019-12-15 14:09:49 +00:00
|
|
|
if (strcmp(spa->spa_name, name) == 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
|
|
|
return (spa);
|
|
|
|
|
2019-12-15 14:09:49 +00:00
|
|
|
return (NULL);
|
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:47:24 +00:00
|
|
|
#ifdef BOOT2
|
|
|
|
static spa_t *
|
|
|
|
spa_get_primary(void)
|
|
|
|
{
|
|
|
|
|
|
|
|
return (STAILQ_FIRST(&zfs_pools));
|
|
|
|
}
|
|
|
|
|
|
|
|
static vdev_t *
|
|
|
|
spa_get_primary_vdev(const spa_t *spa)
|
|
|
|
{
|
|
|
|
vdev_t *vdev;
|
|
|
|
vdev_t *kid;
|
|
|
|
|
|
|
|
if (spa == NULL)
|
|
|
|
spa = spa_get_primary();
|
|
|
|
if (spa == NULL)
|
|
|
|
return (NULL);
|
2019-12-15 21:52:40 +00:00
|
|
|
vdev = spa->spa_root_vdev;
|
2012-10-06 19:47:24 +00:00
|
|
|
if (vdev == NULL)
|
|
|
|
return (NULL);
|
|
|
|
for (kid = STAILQ_FIRST(&vdev->v_children); kid != NULL;
|
2019-12-15 14:09:49 +00:00
|
|
|
kid = STAILQ_FIRST(&vdev->v_children))
|
2012-10-06 19:47:24 +00:00
|
|
|
vdev = kid;
|
|
|
|
return (vdev);
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
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 spa_t *
|
loader: zfs reader should check all labels
The current zfs reader is only checking first label from each device, however,
we do have 4 labels on device and we should check all 4 to be protected
against disk failures and incomplete label updates.
The difficulty is about the fact that 2 label copies are in front of the
pool data, and 2 are at the end, which means, we have to know the size of
the pool data area.
Since we have now the mechanism from common/disk.c to use the partition
information, it does help us in this task; however, there are still some
corner cases.
Namely, if the pool is created without partition, directly on the disk,
and firmware will give us the wrong size for the disk, we only can check
the first two label copies.
Reviewed by: allanjude
Differential Revision: https://reviews.freebsd.org/D10203
2017-04-06 18:17:29 +00:00
|
|
|
spa_create(uint64_t guid, const char *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
|
|
|
{
|
|
|
|
spa_t *spa;
|
|
|
|
|
2019-05-29 07:33:51 +00:00
|
|
|
if ((spa = calloc(1, sizeof(spa_t))) == NULL)
|
loader: zfs reader should check all labels
The current zfs reader is only checking first label from each device, however,
we do have 4 labels on device and we should check all 4 to be protected
against disk failures and incomplete label updates.
The difficulty is about the fact that 2 label copies are in front of the
pool data, and 2 are at the end, which means, we have to know the size of
the pool data area.
Since we have now the mechanism from common/disk.c to use the partition
information, it does help us in this task; however, there are still some
corner cases.
Namely, if the pool is created without partition, directly on the disk,
and firmware will give us the wrong size for the disk, we only can check
the first two label copies.
Reviewed by: allanjude
Differential Revision: https://reviews.freebsd.org/D10203
2017-04-06 18:17:29 +00:00
|
|
|
return (NULL);
|
|
|
|
if ((spa->spa_name = strdup(name)) == NULL) {
|
|
|
|
free(spa);
|
|
|
|
return (NULL);
|
|
|
|
}
|
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
|
|
|
spa->spa_guid = guid;
|
2019-12-15 21:52:40 +00:00
|
|
|
spa->spa_root_vdev = vdev_create(guid, NULL);
|
|
|
|
if (spa->spa_root_vdev == NULL) {
|
|
|
|
free(spa->spa_name);
|
|
|
|
free(spa);
|
|
|
|
return (NULL);
|
|
|
|
}
|
|
|
|
spa->spa_root_vdev->v_name = strdup("root");
|
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
|
|
|
STAILQ_INSERT_TAIL(&zfs_pools, spa, spa_link);
|
|
|
|
|
|
|
|
return (spa);
|
|
|
|
}
|
|
|
|
|
|
|
|
static const char *
|
|
|
|
state_name(vdev_state_t state)
|
|
|
|
{
|
2019-12-15 14:09:49 +00:00
|
|
|
static const char *names[] = {
|
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
|
|
|
"UNKNOWN",
|
|
|
|
"CLOSED",
|
|
|
|
"OFFLINE",
|
2010-01-06 23:09:23 +00:00
|
|
|
"REMOVED",
|
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
|
|
|
"CANT_OPEN",
|
2010-01-06 23:09:23 +00:00
|
|
|
"FAULTED",
|
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
|
|
|
"DEGRADED",
|
|
|
|
"ONLINE"
|
|
|
|
};
|
2019-12-15 14:09:49 +00:00
|
|
|
return (names[state]);
|
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
|
|
|
}
|
|
|
|
|
|
|
|
#ifdef BOOT2
|
|
|
|
|
|
|
|
#define pager_printf printf
|
|
|
|
|
|
|
|
#else
|
|
|
|
|
2016-11-08 06:50:18 +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
|
|
|
pager_printf(const char *fmt, ...)
|
|
|
|
{
|
|
|
|
char line[80];
|
|
|
|
va_list args;
|
|
|
|
|
|
|
|
va_start(args, fmt);
|
2019-12-15 21:52:40 +00:00
|
|
|
vsnprintf(line, sizeof(line), fmt, args);
|
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
|
|
|
va_end(args);
|
2016-11-08 06:50:18 +00:00
|
|
|
return (pager_output(line));
|
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
|
|
|
}
|
|
|
|
|
|
|
|
#endif
|
|
|
|
|
2019-12-15 14:09:49 +00:00
|
|
|
#define STATUS_FORMAT " %s %s\n"
|
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
|
|
|
|
2016-11-08 06:50:18 +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
|
|
|
print_state(int indent, const char *name, vdev_state_t state)
|
|
|
|
{
|
2017-08-01 05:16:14 +00:00
|
|
|
int i;
|
2019-12-15 21:52:40 +00:00
|
|
|
char buf[512];
|
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
|
|
|
|
|
|
|
buf[0] = 0;
|
|
|
|
for (i = 0; i < indent; i++)
|
|
|
|
strcat(buf, " ");
|
|
|
|
strcat(buf, name);
|
2016-11-08 06:50:18 +00:00
|
|
|
return (pager_printf(STATUS_FORMAT, buf, state_name(state)));
|
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
|
|
|
}
|
|
|
|
|
2016-11-08 06:50:18 +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
|
|
|
vdev_status(vdev_t *vdev, int indent)
|
|
|
|
{
|
|
|
|
vdev_t *kid;
|
2016-11-08 06:50:18 +00:00
|
|
|
int ret;
|
2019-11-03 13:25:47 +00:00
|
|
|
|
|
|
|
if (vdev->v_islog) {
|
2019-12-15 14:09:49 +00:00
|
|
|
(void) pager_output(" logs\n");
|
2019-11-03 13:25:47 +00:00
|
|
|
indent++;
|
|
|
|
}
|
|
|
|
|
2016-11-08 06:50:18 +00:00
|
|
|
ret = print_state(indent, vdev->v_name, vdev->v_state);
|
|
|
|
if (ret != 0)
|
|
|
|
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
|
|
|
|
|
|
|
STAILQ_FOREACH(kid, &vdev->v_children, v_childlink) {
|
2016-11-08 06:50:18 +00:00
|
|
|
ret = vdev_status(kid, indent + 1);
|
|
|
|
if (ret != 0)
|
|
|
|
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
|
|
|
}
|
2016-11-08 06:50:18 +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
|
|
|
}
|
|
|
|
|
2016-11-08 06:50:18 +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
|
|
|
spa_status(spa_t *spa)
|
|
|
|
{
|
2012-10-06 19:42:05 +00:00
|
|
|
static char bootfs[ZFS_MAXNAMELEN];
|
|
|
|
uint64_t rootid;
|
2019-12-15 21:52:40 +00:00
|
|
|
vdev_list_t *vlist;
|
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
|
|
|
vdev_t *vdev;
|
2016-11-08 06:50:18 +00:00
|
|
|
int good_kids, bad_kids, degraded_kids, 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
|
|
|
vdev_state_t state;
|
|
|
|
|
2016-11-08 06:50:18 +00:00
|
|
|
ret = pager_printf(" pool: %s\n", spa->spa_name);
|
|
|
|
if (ret != 0)
|
|
|
|
return (ret);
|
|
|
|
|
2012-10-06 19:42:05 +00:00
|
|
|
if (zfs_get_root(spa, &rootid) == 0 &&
|
|
|
|
zfs_rlookup(spa, rootid, bootfs) == 0) {
|
|
|
|
if (bootfs[0] == '\0')
|
2016-11-08 06:50:18 +00:00
|
|
|
ret = pager_printf("bootfs: %s\n", spa->spa_name);
|
2012-10-06 19:42:05 +00:00
|
|
|
else
|
2016-11-08 06:50:18 +00:00
|
|
|
ret = pager_printf("bootfs: %s/%s\n", spa->spa_name,
|
|
|
|
bootfs);
|
|
|
|
if (ret != 0)
|
|
|
|
return (ret);
|
2012-10-06 19:42:05 +00:00
|
|
|
}
|
2016-11-08 06:50:18 +00:00
|
|
|
ret = pager_printf("config:\n\n");
|
|
|
|
if (ret != 0)
|
|
|
|
return (ret);
|
|
|
|
ret = pager_printf(STATUS_FORMAT, "NAME", "STATE");
|
|
|
|
if (ret != 0)
|
|
|
|
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
|
|
|
|
|
|
|
good_kids = 0;
|
|
|
|
degraded_kids = 0;
|
|
|
|
bad_kids = 0;
|
2019-12-15 21:52:40 +00:00
|
|
|
vlist = &spa->spa_root_vdev->v_children;
|
|
|
|
STAILQ_FOREACH(vdev, vlist, v_childlink) {
|
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 (vdev->v_state == VDEV_STATE_HEALTHY)
|
|
|
|
good_kids++;
|
|
|
|
else if (vdev->v_state == VDEV_STATE_DEGRADED)
|
|
|
|
degraded_kids++;
|
|
|
|
else
|
|
|
|
bad_kids++;
|
|
|
|
}
|
|
|
|
|
|
|
|
state = VDEV_STATE_CLOSED;
|
|
|
|
if (good_kids > 0 && (degraded_kids + bad_kids) == 0)
|
|
|
|
state = VDEV_STATE_HEALTHY;
|
|
|
|
else if ((good_kids + degraded_kids) > 0)
|
|
|
|
state = VDEV_STATE_DEGRADED;
|
|
|
|
|
2016-11-08 06:50:18 +00:00
|
|
|
ret = print_state(0, spa->spa_name, state);
|
|
|
|
if (ret != 0)
|
|
|
|
return (ret);
|
2019-12-15 21:52:40 +00:00
|
|
|
|
|
|
|
STAILQ_FOREACH(vdev, vlist, v_childlink) {
|
2016-11-08 06:50:18 +00:00
|
|
|
ret = vdev_status(vdev, 1);
|
|
|
|
if (ret != 0)
|
|
|
|
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
|
|
|
}
|
2016-11-08 06:50:18 +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
|
|
|
}
|
|
|
|
|
2016-11-08 06:50:18 +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
|
|
|
spa_all_status(void)
|
|
|
|
{
|
|
|
|
spa_t *spa;
|
2016-11-08 06:50:18 +00:00
|
|
|
int first = 1, ret = 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
|
|
|
|
|
|
|
STAILQ_FOREACH(spa, &zfs_pools, spa_link) {
|
2016-11-08 06:50:18 +00:00
|
|
|
if (!first) {
|
|
|
|
ret = pager_printf("\n");
|
|
|
|
if (ret != 0)
|
|
|
|
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
|
|
|
first = 0;
|
2016-11-08 06:50:18 +00:00
|
|
|
ret = spa_status(spa);
|
|
|
|
if (ret != 0)
|
|
|
|
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
|
|
|
}
|
2016-11-08 06:50:18 +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
|
|
|
}
|
|
|
|
|
2017-12-02 00:07:37 +00:00
|
|
|
static uint64_t
|
loader: zfs reader should check all labels
The current zfs reader is only checking first label from each device, however,
we do have 4 labels on device and we should check all 4 to be protected
against disk failures and incomplete label updates.
The difficulty is about the fact that 2 label copies are in front of the
pool data, and 2 are at the end, which means, we have to know the size of
the pool data area.
Since we have now the mechanism from common/disk.c to use the partition
information, it does help us in this task; however, there are still some
corner cases.
Namely, if the pool is created without partition, directly on the disk,
and firmware will give us the wrong size for the disk, we only can check
the first two label copies.
Reviewed by: allanjude
Differential Revision: https://reviews.freebsd.org/D10203
2017-04-06 18:17:29 +00:00
|
|
|
vdev_label_offset(uint64_t psize, int l, uint64_t offset)
|
|
|
|
{
|
|
|
|
uint64_t label_offset;
|
|
|
|
|
|
|
|
if (l < VDEV_LABELS / 2)
|
|
|
|
label_offset = 0;
|
|
|
|
else
|
|
|
|
label_offset = psize - VDEV_LABELS * sizeof (vdev_label_t);
|
|
|
|
|
|
|
|
return (offset + l * sizeof (vdev_label_t) + label_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
|
|
|
static int
|
2019-11-03 21:19:52 +00:00
|
|
|
vdev_uberblock_compare(const uberblock_t *ub1, const uberblock_t *ub2)
|
|
|
|
{
|
|
|
|
unsigned int seq1 = 0;
|
|
|
|
unsigned int seq2 = 0;
|
|
|
|
int cmp = AVL_CMP(ub1->ub_txg, ub2->ub_txg);
|
|
|
|
|
|
|
|
if (cmp != 0)
|
|
|
|
return (cmp);
|
|
|
|
|
|
|
|
cmp = AVL_CMP(ub1->ub_timestamp, ub2->ub_timestamp);
|
|
|
|
if (cmp != 0)
|
|
|
|
return (cmp);
|
|
|
|
|
|
|
|
if (MMP_VALID(ub1) && MMP_SEQ_VALID(ub1))
|
|
|
|
seq1 = MMP_SEQ(ub1);
|
|
|
|
|
|
|
|
if (MMP_VALID(ub2) && MMP_SEQ_VALID(ub2))
|
|
|
|
seq2 = MMP_SEQ(ub2);
|
|
|
|
|
|
|
|
return (AVL_CMP(seq1, seq2));
|
|
|
|
}
|
|
|
|
|
|
|
|
static int
|
|
|
|
uberblock_verify(uberblock_t *ub)
|
|
|
|
{
|
|
|
|
if (ub->ub_magic == BSWAP_64((uint64_t)UBERBLOCK_MAGIC)) {
|
|
|
|
byteswap_uint64_array(ub, sizeof (uberblock_t));
|
|
|
|
}
|
|
|
|
|
|
|
|
if (ub->ub_magic != UBERBLOCK_MAGIC ||
|
|
|
|
!SPA_VERSION_IS_SUPPORTED(ub->ub_version))
|
|
|
|
return (EINVAL);
|
|
|
|
|
|
|
|
return (0);
|
|
|
|
}
|
|
|
|
|
|
|
|
static int
|
|
|
|
vdev_label_read(vdev_t *vd, int l, void *buf, uint64_t offset,
|
|
|
|
size_t size)
|
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
|
|
|
{
|
|
|
|
blkptr_t bp;
|
2019-11-03 21:19:52 +00:00
|
|
|
off_t off;
|
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
|
|
|
|
2019-11-03 21:19:52 +00:00
|
|
|
off = vdev_label_offset(vd->v_psize, l, 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
|
|
|
|
2019-11-03 21:19:52 +00:00
|
|
|
BP_ZERO(&bp);
|
|
|
|
BP_SET_LSIZE(&bp, size);
|
|
|
|
BP_SET_PSIZE(&bp, size);
|
|
|
|
BP_SET_CHECKSUM(&bp, ZIO_CHECKSUM_LABEL);
|
|
|
|
BP_SET_COMPRESS(&bp, ZIO_COMPRESS_OFF);
|
|
|
|
DVA_SET_OFFSET(BP_IDENTITY(&bp), off);
|
|
|
|
ZIO_SET_CHECKSUM(&bp.blk_cksum, off, 0, 0, 0);
|
2017-04-18 15:43:47 +00:00
|
|
|
|
2019-11-03 21:19:52 +00:00
|
|
|
return (vdev_read_phys(vd, &bp, buf, off, size));
|
|
|
|
}
|
2017-04-18 15:43:47 +00:00
|
|
|
|
2020-06-20 06:23:31 +00:00
|
|
|
static nvlist_t *
|
2019-11-03 21:19:52 +00:00
|
|
|
vdev_label_read_config(vdev_t *vd, uint64_t txg)
|
|
|
|
{
|
|
|
|
vdev_phys_t *label;
|
|
|
|
uint64_t best_txg = 0;
|
|
|
|
uint64_t label_txg = 0;
|
|
|
|
uint64_t asize;
|
2020-06-20 06:23:31 +00:00
|
|
|
nvlist_t *nvl = NULL, *tmp;
|
2019-11-03 21:19:52 +00:00
|
|
|
int error;
|
|
|
|
|
|
|
|
label = malloc(sizeof (vdev_phys_t));
|
|
|
|
if (label == NULL)
|
|
|
|
return (NULL);
|
loader: zfs reader should check all labels
The current zfs reader is only checking first label from each device, however,
we do have 4 labels on device and we should check all 4 to be protected
against disk failures and incomplete label updates.
The difficulty is about the fact that 2 label copies are in front of the
pool data, and 2 are at the end, which means, we have to know the size of
the pool data area.
Since we have now the mechanism from common/disk.c to use the partition
information, it does help us in this task; however, there are still some
corner cases.
Namely, if the pool is created without partition, directly on the disk,
and firmware will give us the wrong size for the disk, we only can check
the first two label copies.
Reviewed by: allanjude
Differential Revision: https://reviews.freebsd.org/D10203
2017-04-06 18:17:29 +00:00
|
|
|
|
2019-11-03 21:19:52 +00:00
|
|
|
for (int l = 0; l < VDEV_LABELS; l++) {
|
|
|
|
const unsigned char *nvlist;
|
loader: zfs reader should check all labels
The current zfs reader is only checking first label from each device, however,
we do have 4 labels on device and we should check all 4 to be protected
against disk failures and incomplete label updates.
The difficulty is about the fact that 2 label copies are in front of the
pool data, and 2 are at the end, which means, we have to know the size of
the pool data area.
Since we have now the mechanism from common/disk.c to use the partition
information, it does help us in this task; however, there are still some
corner cases.
Namely, if the pool is created without partition, directly on the disk,
and firmware will give us the wrong size for the disk, we only can check
the first two label copies.
Reviewed by: allanjude
Differential Revision: https://reviews.freebsd.org/D10203
2017-04-06 18:17:29 +00:00
|
|
|
|
2019-11-03 21:19:52 +00:00
|
|
|
if (vdev_label_read(vd, l, label,
|
|
|
|
offsetof(vdev_label_t, vl_vdev_phys),
|
|
|
|
sizeof (vdev_phys_t)))
|
loader: zfs reader should check all labels
The current zfs reader is only checking first label from each device, however,
we do have 4 labels on device and we should check all 4 to be protected
against disk failures and incomplete label updates.
The difficulty is about the fact that 2 label copies are in front of the
pool data, and 2 are at the end, which means, we have to know the size of
the pool data area.
Since we have now the mechanism from common/disk.c to use the partition
information, it does help us in this task; however, there are still some
corner cases.
Namely, if the pool is created without partition, directly on the disk,
and firmware will give us the wrong size for the disk, we only can check
the first two label copies.
Reviewed by: allanjude
Differential Revision: https://reviews.freebsd.org/D10203
2017-04-06 18:17:29 +00:00
|
|
|
continue;
|
|
|
|
|
2020-06-20 06:23:31 +00:00
|
|
|
nvlist = (const unsigned char *) label->vp_nvlist;
|
|
|
|
tmp = nvlist_import(nvlist + 4, nvlist[0], nvlist[1]);
|
|
|
|
if (tmp == NULL)
|
loader: zfs reader should check all labels
The current zfs reader is only checking first label from each device, however,
we do have 4 labels on device and we should check all 4 to be protected
against disk failures and incomplete label updates.
The difficulty is about the fact that 2 label copies are in front of the
pool data, and 2 are at the end, which means, we have to know the size of
the pool data area.
Since we have now the mechanism from common/disk.c to use the partition
information, it does help us in this task; however, there are still some
corner cases.
Namely, if the pool is created without partition, directly on the disk,
and firmware will give us the wrong size for the disk, we only can check
the first two label copies.
Reviewed by: allanjude
Differential Revision: https://reviews.freebsd.org/D10203
2017-04-06 18:17:29 +00:00
|
|
|
continue;
|
|
|
|
|
2020-06-20 06:23:31 +00:00
|
|
|
error = nvlist_find(tmp, ZPOOL_CONFIG_POOL_TXG,
|
2020-06-17 10:41:01 +00:00
|
|
|
DATA_TYPE_UINT64, NULL, &label_txg, NULL);
|
2019-11-05 18:07:30 +00:00
|
|
|
if (error != 0 || label_txg == 0) {
|
2020-06-20 06:23:31 +00:00
|
|
|
nvlist_destroy(nvl);
|
|
|
|
nvl = tmp;
|
2019-11-10 15:03:59 +00:00
|
|
|
goto done;
|
2019-11-05 18:07:30 +00:00
|
|
|
}
|
2019-11-03 11:09:06 +00:00
|
|
|
|
2019-11-03 21:19:52 +00:00
|
|
|
if (label_txg <= txg && label_txg > best_txg) {
|
|
|
|
best_txg = label_txg;
|
2020-06-20 06:23:31 +00:00
|
|
|
nvlist_destroy(nvl);
|
|
|
|
nvl = tmp;
|
|
|
|
tmp = NULL;
|
2019-11-03 11:09:06 +00:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Use asize from pool config. We need this
|
|
|
|
* because we can get bad value from BIOS.
|
|
|
|
*/
|
2020-06-20 06:23:31 +00:00
|
|
|
if (nvlist_find(nvl, ZPOOL_CONFIG_ASIZE,
|
2020-06-17 10:41:01 +00:00
|
|
|
DATA_TYPE_UINT64, NULL, &asize, NULL) == 0) {
|
2019-11-03 21:19:52 +00:00
|
|
|
vd->v_psize = asize +
|
2019-11-03 11:09:06 +00:00
|
|
|
VDEV_LABEL_START_SIZE + VDEV_LABEL_END_SIZE;
|
|
|
|
}
|
loader: zfs reader should check all labels
The current zfs reader is only checking first label from each device, however,
we do have 4 labels on device and we should check all 4 to be protected
against disk failures and incomplete label updates.
The difficulty is about the fact that 2 label copies are in front of the
pool data, and 2 are at the end, which means, we have to know the size of
the pool data area.
Since we have now the mechanism from common/disk.c to use the partition
information, it does help us in this task; however, there are still some
corner cases.
Namely, if the pool is created without partition, directly on the disk,
and firmware will give us the wrong size for the disk, we only can check
the first two label copies.
Reviewed by: allanjude
Differential Revision: https://reviews.freebsd.org/D10203
2017-04-06 18:17:29 +00:00
|
|
|
}
|
2020-06-20 06:23:31 +00:00
|
|
|
nvlist_destroy(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
|
|
|
}
|
|
|
|
|
2019-11-03 21:19:52 +00:00
|
|
|
if (best_txg == 0) {
|
2020-06-20 06:23:31 +00:00
|
|
|
nvlist_destroy(nvl);
|
2019-11-03 21:19:52 +00:00
|
|
|
nvl = NULL;
|
|
|
|
}
|
2019-11-10 15:03:59 +00:00
|
|
|
done:
|
|
|
|
free(label);
|
2019-11-03 21:19:52 +00:00
|
|
|
return (nvl);
|
|
|
|
}
|
loader: zfs reader should check all labels
The current zfs reader is only checking first label from each device, however,
we do have 4 labels on device and we should check all 4 to be protected
against disk failures and incomplete label updates.
The difficulty is about the fact that 2 label copies are in front of the
pool data, and 2 are at the end, which means, we have to know the size of
the pool data area.
Since we have now the mechanism from common/disk.c to use the partition
information, it does help us in this task; however, there are still some
corner cases.
Namely, if the pool is created without partition, directly on the disk,
and firmware will give us the wrong size for the disk, we only can check
the first two label copies.
Reviewed by: allanjude
Differential Revision: https://reviews.freebsd.org/D10203
2017-04-06 18:17:29 +00:00
|
|
|
|
2019-11-03 21:19:52 +00:00
|
|
|
static void
|
|
|
|
vdev_uberblock_load(vdev_t *vd, uberblock_t *ub)
|
|
|
|
{
|
|
|
|
uberblock_t *buf;
|
|
|
|
|
|
|
|
buf = malloc(VDEV_UBERBLOCK_SIZE(vd));
|
|
|
|
if (buf == NULL)
|
|
|
|
return;
|
|
|
|
|
|
|
|
for (int l = 0; l < VDEV_LABELS; l++) {
|
|
|
|
for (int n = 0; n < VDEV_UBERBLOCK_COUNT(vd); n++) {
|
|
|
|
if (vdev_label_read(vd, l, buf,
|
|
|
|
VDEV_UBERBLOCK_OFFSET(vd, n),
|
|
|
|
VDEV_UBERBLOCK_SIZE(vd)))
|
|
|
|
continue;
|
|
|
|
if (uberblock_verify(buf) != 0)
|
|
|
|
continue;
|
|
|
|
|
|
|
|
if (vdev_uberblock_compare(buf, ub) > 0)
|
|
|
|
*ub = *buf;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
free(buf);
|
|
|
|
}
|
|
|
|
|
|
|
|
static int
|
|
|
|
vdev_probe(vdev_phys_read_t *_read, void *read_priv, spa_t **spap)
|
|
|
|
{
|
2019-11-12 10:02:39 +00:00
|
|
|
vdev_t vtmp;
|
2019-11-03 21:19:52 +00:00
|
|
|
spa_t *spa;
|
2019-12-15 21:52:40 +00:00
|
|
|
vdev_t *vdev;
|
2020-06-20 06:23:31 +00:00
|
|
|
nvlist_t *nvl;
|
2019-11-03 21:19:52 +00:00
|
|
|
uint64_t val;
|
2019-12-15 21:52:40 +00:00
|
|
|
uint64_t guid, vdev_children;
|
2019-11-03 21:19:52 +00:00
|
|
|
uint64_t pool_txg, pool_guid;
|
|
|
|
const char *pool_name;
|
2020-06-17 10:41:01 +00:00
|
|
|
int rc, namelen;
|
2019-11-03 21:19:52 +00:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Load the vdev label and figure out which
|
|
|
|
* uberblock is most current.
|
|
|
|
*/
|
2019-11-12 10:02:39 +00:00
|
|
|
memset(&vtmp, 0, sizeof(vtmp));
|
2019-11-03 21:19:52 +00:00
|
|
|
vtmp.v_phys_read = _read;
|
|
|
|
vtmp.v_read_priv = read_priv;
|
|
|
|
vtmp.v_psize = P2ALIGN(ldi_get_size(read_priv),
|
|
|
|
(uint64_t)sizeof (vdev_label_t));
|
2017-04-18 15:43:47 +00:00
|
|
|
|
2019-11-03 21:19:52 +00:00
|
|
|
/* Test for minimum device size. */
|
|
|
|
if (vtmp.v_psize < SPA_MINDEVSIZE)
|
loader: zfs reader should check all labels
The current zfs reader is only checking first label from each device, however,
we do have 4 labels on device and we should check all 4 to be protected
against disk failures and incomplete label updates.
The difficulty is about the fact that 2 label copies are in front of the
pool data, and 2 are at the end, which means, we have to know the size of
the pool data area.
Since we have now the mechanism from common/disk.c to use the partition
information, it does help us in this task; however, there are still some
corner cases.
Namely, if the pool is created without partition, directly on the disk,
and firmware will give us the wrong size for the disk, we only can check
the first two label copies.
Reviewed by: allanjude
Differential Revision: https://reviews.freebsd.org/D10203
2017-04-06 18:17:29 +00:00
|
|
|
return (EIO);
|
|
|
|
|
2020-06-20 06:23:31 +00:00
|
|
|
nvl = vdev_label_read_config(&vtmp, UINT64_MAX);
|
|
|
|
if (nvl == NULL)
|
2019-11-03 21:19:52 +00:00
|
|
|
return (EIO);
|
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
|
|
|
|
2020-06-20 06:23:31 +00:00
|
|
|
if (nvlist_find(nvl, ZPOOL_CONFIG_VERSION, DATA_TYPE_UINT64,
|
2020-06-17 10:41:01 +00:00
|
|
|
NULL, &val, NULL) != 0) {
|
2020-06-20 06:23:31 +00:00
|
|
|
nvlist_destroy(nvl);
|
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 (EIO);
|
|
|
|
}
|
|
|
|
|
2012-06-11 11:35:22 +00:00
|
|
|
if (!SPA_VERSION_IS_SUPPORTED(val)) {
|
2008-11-19 16:59:19 +00:00
|
|
|
printf("ZFS: unsupported ZFS version %u (should be %u)\n",
|
2019-12-15 14:09:49 +00:00
|
|
|
(unsigned)val, (unsigned)SPA_VERSION);
|
2020-06-20 06:23:31 +00:00
|
|
|
nvlist_destroy(nvl);
|
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 (EIO);
|
|
|
|
}
|
|
|
|
|
2012-06-11 11:35:22 +00:00
|
|
|
/* Check ZFS features for read */
|
2020-06-20 06:23:31 +00:00
|
|
|
rc = nvlist_check_features_for_read(nvl);
|
|
|
|
if (rc != 0) {
|
|
|
|
nvlist_destroy(nvl);
|
2012-06-11 11:35:22 +00:00
|
|
|
return (EIO);
|
loader: zfs reader should check all labels
The current zfs reader is only checking first label from each device, however,
we do have 4 labels on device and we should check all 4 to be protected
against disk failures and incomplete label updates.
The difficulty is about the fact that 2 label copies are in front of the
pool data, and 2 are at the end, which means, we have to know the size of
the pool data area.
Since we have now the mechanism from common/disk.c to use the partition
information, it does help us in this task; however, there are still some
corner cases.
Namely, if the pool is created without partition, directly on the disk,
and firmware will give us the wrong size for the disk, we only can check
the first two label copies.
Reviewed by: allanjude
Differential Revision: https://reviews.freebsd.org/D10203
2017-04-06 18:17:29 +00:00
|
|
|
}
|
2012-06-11 11:35:22 +00:00
|
|
|
|
2020-06-20 06:23:31 +00:00
|
|
|
if (nvlist_find(nvl, ZPOOL_CONFIG_POOL_STATE, DATA_TYPE_UINT64,
|
2020-06-17 10:41:01 +00:00
|
|
|
NULL, &val, NULL) != 0) {
|
2020-06-20 06:23:31 +00:00
|
|
|
nvlist_destroy(nvl);
|
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 (EIO);
|
|
|
|
}
|
|
|
|
|
2011-02-27 19:41:40 +00:00
|
|
|
if (val == POOL_STATE_DESTROYED) {
|
|
|
|
/* We don't boot only from destroyed pools. */
|
2020-06-20 06:23:31 +00:00
|
|
|
nvlist_destroy(nvl);
|
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 (EIO);
|
|
|
|
}
|
|
|
|
|
2020-06-20 06:23:31 +00:00
|
|
|
if (nvlist_find(nvl, ZPOOL_CONFIG_POOL_TXG, DATA_TYPE_UINT64,
|
2020-06-17 10:41:01 +00:00
|
|
|
NULL, &pool_txg, NULL) != 0 ||
|
2020-06-20 06:23:31 +00:00
|
|
|
nvlist_find(nvl, ZPOOL_CONFIG_POOL_GUID, DATA_TYPE_UINT64,
|
2020-06-17 10:41:01 +00:00
|
|
|
NULL, &pool_guid, NULL) != 0 ||
|
2020-06-20 06:23:31 +00:00
|
|
|
nvlist_find(nvl, ZPOOL_CONFIG_POOL_NAME, DATA_TYPE_STRING,
|
2020-06-17 10:41:01 +00:00
|
|
|
NULL, &pool_name, &namelen) != 0) {
|
2009-05-16 10:48:20 +00:00
|
|
|
/*
|
|
|
|
* Cache and spare devices end up here - just ignore
|
|
|
|
* them.
|
|
|
|
*/
|
2020-06-20 06:23:31 +00:00
|
|
|
nvlist_destroy(nvl);
|
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 (EIO);
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Create the pool if this is the first time we've seen it.
|
|
|
|
*/
|
|
|
|
spa = spa_find_by_guid(pool_guid);
|
loader: zfs reader should check all labels
The current zfs reader is only checking first label from each device, however,
we do have 4 labels on device and we should check all 4 to be protected
against disk failures and incomplete label updates.
The difficulty is about the fact that 2 label copies are in front of the
pool data, and 2 are at the end, which means, we have to know the size of
the pool data area.
Since we have now the mechanism from common/disk.c to use the partition
information, it does help us in this task; however, there are still some
corner cases.
Namely, if the pool is created without partition, directly on the disk,
and firmware will give us the wrong size for the disk, we only can check
the first two label copies.
Reviewed by: allanjude
Differential Revision: https://reviews.freebsd.org/D10203
2017-04-06 18:17:29 +00:00
|
|
|
if (spa == NULL) {
|
2020-06-17 10:41:01 +00:00
|
|
|
char *name;
|
|
|
|
|
2020-06-20 06:23:31 +00:00
|
|
|
nvlist_find(nvl, ZPOOL_CONFIG_VDEV_CHILDREN,
|
2020-06-17 10:41:01 +00:00
|
|
|
DATA_TYPE_UINT64, NULL, &vdev_children, NULL);
|
|
|
|
name = malloc(namelen + 1);
|
|
|
|
if (name == NULL) {
|
2020-06-20 06:23:31 +00:00
|
|
|
nvlist_destroy(nvl);
|
2020-06-17 10:41:01 +00:00
|
|
|
return (ENOMEM);
|
|
|
|
}
|
|
|
|
bcopy(pool_name, name, namelen);
|
|
|
|
name[namelen] = '\0';
|
|
|
|
spa = spa_create(pool_guid, name);
|
|
|
|
free(name);
|
2019-11-03 21:19:52 +00:00
|
|
|
if (spa == NULL) {
|
2020-06-20 06:23:31 +00:00
|
|
|
nvlist_destroy(nvl);
|
loader: zfs reader should check all labels
The current zfs reader is only checking first label from each device, however,
we do have 4 labels on device and we should check all 4 to be protected
against disk failures and incomplete label updates.
The difficulty is about the fact that 2 label copies are in front of the
pool data, and 2 are at the end, which means, we have to know the size of
the pool data area.
Since we have now the mechanism from common/disk.c to use the partition
information, it does help us in this task; however, there are still some
corner cases.
Namely, if the pool is created without partition, directly on the disk,
and firmware will give us the wrong size for the disk, we only can check
the first two label copies.
Reviewed by: allanjude
Differential Revision: https://reviews.freebsd.org/D10203
2017-04-06 18:17:29 +00:00
|
|
|
return (ENOMEM);
|
2019-11-03 21:19:52 +00:00
|
|
|
}
|
2019-12-15 21:52:40 +00:00
|
|
|
spa->spa_root_vdev->v_nchildren = vdev_children;
|
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
|
|
|
}
|
2019-12-15 21:52:40 +00:00
|
|
|
if (pool_txg > spa->spa_txg)
|
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
|
|
|
spa->spa_txg = pool_txg;
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Get the vdev tree and create our in-core copy of it.
|
2010-01-06 23:09:23 +00:00
|
|
|
* If we already have a vdev with this guid, this must
|
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
|
|
|
* be some kind of alias (overlapping slices, dangerously dedicated
|
|
|
|
* disks etc).
|
|
|
|
*/
|
2020-06-20 06:23:31 +00:00
|
|
|
if (nvlist_find(nvl, ZPOOL_CONFIG_GUID, DATA_TYPE_UINT64,
|
2020-06-17 10:41:01 +00:00
|
|
|
NULL, &guid, NULL) != 0) {
|
2020-06-20 06:23:31 +00:00
|
|
|
nvlist_destroy(nvl);
|
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 (EIO);
|
|
|
|
}
|
|
|
|
vdev = vdev_find(guid);
|
2019-11-03 21:19:52 +00:00
|
|
|
/* Has this vdev already been inited? */
|
|
|
|
if (vdev && vdev->v_phys_read) {
|
2020-06-20 06:23:31 +00:00
|
|
|
nvlist_destroy(nvl);
|
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 (EIO);
|
2019-11-03 21:19:52 +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
|
|
|
|
2020-06-20 06:23:31 +00:00
|
|
|
rc = vdev_init_from_label(spa, nvl);
|
|
|
|
nvlist_destroy(nvl);
|
loader: zfs reader should check all labels
The current zfs reader is only checking first label from each device, however,
we do have 4 labels on device and we should check all 4 to be protected
against disk failures and incomplete label updates.
The difficulty is about the fact that 2 label copies are in front of the
pool data, and 2 are at the end, which means, we have to know the size of
the pool data area.
Since we have now the mechanism from common/disk.c to use the partition
information, it does help us in this task; however, there are still some
corner cases.
Namely, if the pool is created without partition, directly on the disk,
and firmware will give us the wrong size for the disk, we only can check
the first two label copies.
Reviewed by: allanjude
Differential Revision: https://reviews.freebsd.org/D10203
2017-04-06 18:17:29 +00:00
|
|
|
if (rc != 0)
|
2008-12-10 10:46:34 +00:00
|
|
|
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
|
|
|
|
|
|
|
/*
|
|
|
|
* We should already have created an incomplete vdev for this
|
|
|
|
* vdev. Find it and initialise it with our read proc.
|
|
|
|
*/
|
|
|
|
vdev = vdev_find(guid);
|
2019-12-15 21:52:40 +00:00
|
|
|
if (vdev != NULL) {
|
2017-03-28 20:39:24 +00:00
|
|
|
vdev->v_phys_read = _read;
|
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
|
|
|
vdev->v_read_priv = read_priv;
|
2019-11-03 11:09:06 +00:00
|
|
|
vdev->v_psize = vtmp.v_psize;
|
2019-12-15 21:52:40 +00:00
|
|
|
/*
|
|
|
|
* If no other state is set, mark vdev healthy.
|
|
|
|
*/
|
|
|
|
if (vdev->v_state == VDEV_STATE_UNKNOWN)
|
|
|
|
vdev->v_state = VDEV_STATE_HEALTHY;
|
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
|
|
|
} else {
|
|
|
|
printf("ZFS: inconsistent nvlist contents\n");
|
|
|
|
return (EIO);
|
|
|
|
}
|
|
|
|
|
2019-11-03 13:25:47 +00:00
|
|
|
if (vdev->v_islog)
|
|
|
|
spa->spa_with_log = vdev->v_islog;
|
|
|
|
|
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
|
|
|
/*
|
|
|
|
* Re-evaluate top-level vdev state.
|
|
|
|
*/
|
2019-12-15 21:52:40 +00:00
|
|
|
vdev_set_state(vdev->v_top);
|
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
|
|
|
|
|
|
|
/*
|
|
|
|
* Ok, we are happy with the pool so far. Lets find
|
|
|
|
* the best uberblock and then we can actually access
|
|
|
|
* the contents of the pool.
|
|
|
|
*/
|
2019-11-03 21:19:52 +00:00
|
|
|
vdev_uberblock_load(vdev, &spa->spa_uberblock);
|
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
|
|
|
|
loader: zfs reader should check all labels
The current zfs reader is only checking first label from each device, however,
we do have 4 labels on device and we should check all 4 to be protected
against disk failures and incomplete label updates.
The difficulty is about the fact that 2 label copies are in front of the
pool data, and 2 are at the end, which means, we have to know the size of
the pool data area.
Since we have now the mechanism from common/disk.c to use the partition
information, it does help us in this task; however, there are still some
corner cases.
Namely, if the pool is created without partition, directly on the disk,
and firmware will give us the wrong size for the disk, we only can check
the first two label copies.
Reviewed by: allanjude
Differential Revision: https://reviews.freebsd.org/D10203
2017-04-06 18:17:29 +00:00
|
|
|
if (spap != NULL)
|
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
|
|
|
*spap = spa;
|
|
|
|
return (0);
|
|
|
|
}
|
|
|
|
|
|
|
|
static int
|
|
|
|
ilog2(int n)
|
|
|
|
{
|
|
|
|
int v;
|
|
|
|
|
|
|
|
for (v = 0; v < 32; v++)
|
|
|
|
if (n == (1 << v))
|
2019-12-15 14:09:49 +00:00
|
|
|
return (v);
|
|
|
|
return (-1);
|
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
|
|
|
}
|
|
|
|
|
2009-10-23 18:44:53 +00:00
|
|
|
static int
|
2012-05-13 09:22:18 +00:00
|
|
|
zio_read_gang(const spa_t *spa, const blkptr_t *bp, void *buf)
|
2009-10-23 18:44:53 +00:00
|
|
|
{
|
2011-10-20 15:42:38 +00:00
|
|
|
blkptr_t gbh_bp;
|
2009-10-23 18:44:53 +00:00
|
|
|
zio_gbh_phys_t zio_gb;
|
2011-10-20 15:42:38 +00:00
|
|
|
char *pbuf;
|
2009-10-23 18:44:53 +00:00
|
|
|
int i;
|
|
|
|
|
2011-10-20 15:42:38 +00:00
|
|
|
/* Artificial BP for gang block header. */
|
|
|
|
gbh_bp = *bp;
|
|
|
|
BP_SET_PSIZE(&gbh_bp, SPA_GANGBLOCKSIZE);
|
|
|
|
BP_SET_LSIZE(&gbh_bp, SPA_GANGBLOCKSIZE);
|
|
|
|
BP_SET_CHECKSUM(&gbh_bp, ZIO_CHECKSUM_GANG_HEADER);
|
|
|
|
BP_SET_COMPRESS(&gbh_bp, ZIO_COMPRESS_OFF);
|
|
|
|
for (i = 0; i < SPA_DVAS_PER_BP; i++)
|
|
|
|
DVA_SET_GANG(&gbh_bp.blk_dva[i], 0);
|
|
|
|
|
|
|
|
/* Read gang header block using the artificial BP. */
|
|
|
|
if (zio_read(spa, &gbh_bp, &zio_gb))
|
2009-10-23 18:44:53 +00:00
|
|
|
return (EIO);
|
|
|
|
|
2011-10-20 15:42:38 +00:00
|
|
|
pbuf = buf;
|
2009-10-23 18:44:53 +00:00
|
|
|
for (i = 0; i < SPA_GBH_NBLKPTRS; i++) {
|
2010-05-28 07:34:20 +00:00
|
|
|
blkptr_t *gbp = &zio_gb.zg_blkptr[i];
|
|
|
|
|
|
|
|
if (BP_IS_HOLE(gbp))
|
|
|
|
continue;
|
2011-10-20 15:42:38 +00:00
|
|
|
if (zio_read(spa, gbp, pbuf))
|
2009-10-23 18:44:53 +00:00
|
|
|
return (EIO);
|
2011-10-20 15:42:38 +00:00
|
|
|
pbuf += BP_GET_PSIZE(gbp);
|
2009-10-23 18:44:53 +00:00
|
|
|
}
|
2011-10-20 15:42:38 +00:00
|
|
|
|
Add SHA512, skein, large blocks support for loader zfs.
Updated sha512 from illumos.
Using skein from freebsd crypto tree.
Since loader itself is using 64MB memory for heap, updated zfsboot to
use same, and this also allows to support zfs large blocks.
Note, adding additional features does increate zfsboot code, therefore
this update does increase zfsboot code to 128k, also I have ported gptldr.S
update to zfsldr.S to support 64k+ code.
With this update, boot1.efi has almost reached the current limit of the size
set for it, so one of the future patches for boot1.efi will need to
increase the limit.
Currently known missing zfs features in boot loader are edonr and gzip support.
Reviewed by: delphij, imp
Approved by: imp (mentor)
Obtained from: sha256.c update and skein_zfs.c stub from illumos.
Differential Revision: https://reviews.freebsd.org/D7418
2016-08-18 00:37:07 +00:00
|
|
|
if (zio_checksum_verify(spa, bp, buf))
|
2011-10-20 15:42:38 +00:00
|
|
|
return (EIO);
|
2009-10-23 18:44:53 +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
|
|
|
static int
|
2012-05-13 09:22:18 +00:00
|
|
|
zio_read(const spa_t *spa, const blkptr_t *bp, void *buf)
|
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
|
|
|
{
|
|
|
|
int cpfunc = BP_GET_COMPRESS(bp);
|
2011-02-27 19:41:40 +00:00
|
|
|
uint64_t align, size;
|
2009-05-16 10:48:20 +00:00
|
|
|
void *pbuf;
|
2011-02-27 19:41:40 +00:00
|
|
|
int i, error;
|
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
|
|
|
|
2014-07-01 06:43:15 +00:00
|
|
|
/*
|
|
|
|
* Process data embedded in block pointer
|
|
|
|
*/
|
|
|
|
if (BP_IS_EMBEDDED(bp)) {
|
|
|
|
ASSERT(BPE_GET_ETYPE(bp) == BP_EMBEDDED_TYPE_DATA);
|
|
|
|
|
|
|
|
size = BPE_GET_PSIZE(bp);
|
|
|
|
ASSERT(size <= BPE_PAYLOAD_SIZE);
|
|
|
|
|
|
|
|
if (cpfunc != ZIO_COMPRESS_OFF)
|
2020-02-26 18:12:12 +00:00
|
|
|
pbuf = malloc(size);
|
2014-07-01 06:43:15 +00:00
|
|
|
else
|
|
|
|
pbuf = buf;
|
|
|
|
|
2020-02-26 18:12:12 +00:00
|
|
|
if (pbuf == NULL)
|
|
|
|
return (ENOMEM);
|
|
|
|
|
2014-07-01 06:43:15 +00:00
|
|
|
decode_embedded_bp_compressed(bp, pbuf);
|
|
|
|
error = 0;
|
|
|
|
|
|
|
|
if (cpfunc != ZIO_COMPRESS_OFF) {
|
|
|
|
error = zio_decompress_data(cpfunc, pbuf,
|
|
|
|
size, buf, BP_GET_LSIZE(bp));
|
2020-02-26 18:12:12 +00:00
|
|
|
free(pbuf);
|
2014-07-01 06:43:15 +00:00
|
|
|
}
|
|
|
|
if (error != 0)
|
2019-12-15 14:09:49 +00:00
|
|
|
printf("ZFS: i/o error - unable to decompress "
|
|
|
|
"block pointer data, error %d\n", error);
|
2014-07-01 06:43:15 +00:00
|
|
|
return (error);
|
|
|
|
}
|
|
|
|
|
2011-02-27 19:41:40 +00:00
|
|
|
error = EIO;
|
2009-05-16 10:48:20 +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
|
|
|
for (i = 0; i < SPA_DVAS_PER_BP; i++) {
|
|
|
|
const dva_t *dva = &bp->blk_dva[i];
|
|
|
|
vdev_t *vdev;
|
2019-12-15 21:52:40 +00:00
|
|
|
vdev_list_t *vlist;
|
|
|
|
uint64_t vdevid;
|
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
|
|
|
off_t offset;
|
|
|
|
|
|
|
|
if (!dva->dva_word[0] && !dva->dva_word[1])
|
|
|
|
continue;
|
|
|
|
|
2011-10-20 15:42:38 +00:00
|
|
|
vdevid = DVA_GET_VDEV(dva);
|
|
|
|
offset = DVA_GET_OFFSET(dva);
|
2019-12-15 21:52:40 +00:00
|
|
|
vlist = &spa->spa_root_vdev->v_children;
|
|
|
|
STAILQ_FOREACH(vdev, vlist, v_childlink) {
|
2011-10-20 15:42:38 +00:00
|
|
|
if (vdev->v_id == vdevid)
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
if (!vdev || !vdev->v_read)
|
|
|
|
continue;
|
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
|
|
|
|
2011-10-20 15:42:38 +00:00
|
|
|
size = BP_GET_PSIZE(bp);
|
|
|
|
if (vdev->v_read == vdev_raidz_read) {
|
2019-12-15 21:52:40 +00:00
|
|
|
align = 1ULL << vdev->v_ashift;
|
2011-02-27 19:41:40 +00:00
|
|
|
if (P2PHASE(size, align) != 0)
|
|
|
|
size = P2ROUNDUP(size, align);
|
2011-10-20 15:42:38 +00:00
|
|
|
}
|
|
|
|
if (size != BP_GET_PSIZE(bp) || cpfunc != ZIO_COMPRESS_OFF)
|
2020-02-26 18:12:12 +00:00
|
|
|
pbuf = malloc(size);
|
2011-10-20 15:42:38 +00:00
|
|
|
else
|
|
|
|
pbuf = buf;
|
2011-02-27 19:41:40 +00:00
|
|
|
|
2020-02-26 18:12:12 +00:00
|
|
|
if (pbuf == NULL) {
|
|
|
|
error = ENOMEM;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
2011-10-20 15:42:38 +00:00
|
|
|
if (DVA_GET_GANG(dva))
|
|
|
|
error = zio_read_gang(spa, bp, pbuf);
|
|
|
|
else
|
2011-02-27 19:41:40 +00:00
|
|
|
error = vdev->v_read(vdev, bp, pbuf, offset, size);
|
2011-10-20 15:42:38 +00:00
|
|
|
if (error == 0) {
|
|
|
|
if (cpfunc != ZIO_COMPRESS_OFF)
|
|
|
|
error = zio_decompress_data(cpfunc, pbuf,
|
|
|
|
BP_GET_PSIZE(bp), buf, BP_GET_LSIZE(bp));
|
|
|
|
else if (size != BP_GET_PSIZE(bp))
|
|
|
|
bcopy(pbuf, buf, BP_GET_PSIZE(bp));
|
2020-06-20 06:23:31 +00:00
|
|
|
} else {
|
|
|
|
printf("zio_read error: %d\n", error);
|
2009-05-16 10:48:20 +00:00
|
|
|
}
|
2011-10-20 15:42:38 +00:00
|
|
|
if (buf != pbuf)
|
2020-02-26 18:12:12 +00:00
|
|
|
free(pbuf);
|
2011-10-20 15:42:38 +00:00
|
|
|
if (error == 0)
|
|
|
|
break;
|
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
|
|
|
}
|
2011-02-27 19:41:40 +00:00
|
|
|
if (error != 0)
|
|
|
|
printf("ZFS: i/o error - all block copies unavailable\n");
|
2020-02-26 18:12:12 +00:00
|
|
|
|
2011-02-27 19:41:40 +00:00
|
|
|
return (error);
|
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
|
2019-12-15 14:09:49 +00:00
|
|
|
dnode_read(const spa_t *spa, const dnode_phys_t *dnode, off_t offset,
|
|
|
|
void *buf, size_t buflen)
|
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
|
|
|
{
|
|
|
|
int ibshift = dnode->dn_indblkshift - SPA_BLKPTRSHIFT;
|
|
|
|
int bsize = dnode->dn_datablkszsec << SPA_MINBLOCKSHIFT;
|
|
|
|
int nlevels = dnode->dn_nlevels;
|
|
|
|
int i, rc;
|
|
|
|
|
2014-11-10 08:20:21 +00:00
|
|
|
if (bsize > SPA_MAXBLOCKSIZE) {
|
Add SHA512, skein, large blocks support for loader zfs.
Updated sha512 from illumos.
Using skein from freebsd crypto tree.
Since loader itself is using 64MB memory for heap, updated zfsboot to
use same, and this also allows to support zfs large blocks.
Note, adding additional features does increate zfsboot code, therefore
this update does increase zfsboot code to 128k, also I have ported gptldr.S
update to zfsldr.S to support 64k+ code.
With this update, boot1.efi has almost reached the current limit of the size
set for it, so one of the future patches for boot1.efi will need to
increase the limit.
Currently known missing zfs features in boot loader are edonr and gzip support.
Reviewed by: delphij, imp
Approved by: imp (mentor)
Obtained from: sha256.c update and skein_zfs.c stub from illumos.
Differential Revision: https://reviews.freebsd.org/D7418
2016-08-18 00:37:07 +00:00
|
|
|
printf("ZFS: I/O error - blocks larger than %llu are not "
|
|
|
|
"supported\n", SPA_MAXBLOCKSIZE);
|
2014-11-10 08:20:21 +00:00
|
|
|
return (EIO);
|
|
|
|
}
|
|
|
|
|
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
|
|
|
/*
|
2008-12-17 18:12:01 +00:00
|
|
|
* Note: bsize may not be a power of two here so we need to do an
|
|
|
|
* actual divide rather than a bitshift.
|
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
|
|
|
*/
|
|
|
|
while (buflen > 0) {
|
2008-12-17 18:12:01 +00:00
|
|
|
uint64_t bn = offset / bsize;
|
|
|
|
int boff = offset % 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
|
|
|
int ibn;
|
|
|
|
const blkptr_t *indbp;
|
|
|
|
blkptr_t bp;
|
|
|
|
|
|
|
|
if (bn > dnode->dn_maxblkid)
|
|
|
|
return (EIO);
|
|
|
|
|
|
|
|
if (dnode == dnode_cache_obj && bn == dnode_cache_bn)
|
|
|
|
goto cached;
|
|
|
|
|
|
|
|
indbp = dnode->dn_blkptr;
|
|
|
|
for (i = 0; i < nlevels; i++) {
|
|
|
|
/*
|
|
|
|
* Copy the bp from the indirect array so that
|
|
|
|
* we can re-use the scratch buffer for multi-level
|
|
|
|
* objects.
|
|
|
|
*/
|
|
|
|
ibn = bn >> ((nlevels - i - 1) * ibshift);
|
|
|
|
ibn &= ((1 << ibshift) - 1);
|
|
|
|
bp = indbp[ibn];
|
2015-06-05 17:02:21 +00:00
|
|
|
if (BP_IS_HOLE(&bp)) {
|
2015-06-05 15:32:04 +00:00
|
|
|
memset(dnode_cache_buf, 0, bsize);
|
|
|
|
break;
|
|
|
|
}
|
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 = zio_read(spa, &bp, dnode_cache_buf);
|
|
|
|
if (rc)
|
|
|
|
return (rc);
|
|
|
|
indbp = (const blkptr_t *) dnode_cache_buf;
|
|
|
|
}
|
|
|
|
dnode_cache_obj = dnode;
|
|
|
|
dnode_cache_bn = bn;
|
|
|
|
cached:
|
|
|
|
|
|
|
|
/*
|
|
|
|
* The buffer contains our data block. Copy what we
|
|
|
|
* need from it and loop.
|
2019-12-15 21:52: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
|
|
|
i = bsize - boff;
|
|
|
|
if (i > buflen) i = buflen;
|
|
|
|
memcpy(buf, &dnode_cache_buf[boff], i);
|
2019-12-15 21:52:40 +00:00
|
|
|
buf = ((char *)buf) + i;
|
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
|
|
|
offset += i;
|
|
|
|
buflen -= i;
|
|
|
|
}
|
|
|
|
|
|
|
|
return (0);
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
2020-02-05 13:08:24 +00:00
|
|
|
* Lookup a value in a microzap directory.
|
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
|
2020-02-04 07:37:55 +00:00
|
|
|
mzap_lookup(const mzap_phys_t *mz, size_t size, const char *name,
|
|
|
|
uint64_t *value)
|
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
|
|
|
{
|
|
|
|
const mzap_ent_phys_t *mze;
|
|
|
|
int chunks, i;
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Microzap objects use exactly one block. Read the whole
|
|
|
|
* thing.
|
|
|
|
*/
|
|
|
|
chunks = size / MZAP_ENT_LEN - 1;
|
|
|
|
for (i = 0; i < chunks; i++) {
|
|
|
|
mze = &mz->mz_chunk[i];
|
2019-12-15 14:09:49 +00:00
|
|
|
if (strcmp(mze->mze_name, name) == 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
|
|
|
*value = mze->mze_value;
|
|
|
|
return (0);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return (ENOENT);
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Compare a name with a zap leaf entry. Return non-zero if the name
|
|
|
|
* matches.
|
|
|
|
*/
|
|
|
|
static int
|
2019-12-15 14:09:49 +00:00
|
|
|
fzap_name_equal(const zap_leaf_t *zl, const zap_leaf_chunk_t *zc,
|
|
|
|
const char *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
|
|
|
{
|
|
|
|
size_t namelen;
|
|
|
|
const zap_leaf_chunk_t *nc;
|
|
|
|
const char *p;
|
|
|
|
|
2012-09-11 07:11:32 +00:00
|
|
|
namelen = zc->l_entry.le_name_numints;
|
2019-12-15 21:52: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
|
|
|
nc = &ZAP_LEAF_CHUNK(zl, zc->l_entry.le_name_chunk);
|
|
|
|
p = name;
|
|
|
|
while (namelen > 0) {
|
|
|
|
size_t len;
|
2019-12-15 14:09:49 +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
|
|
|
len = namelen;
|
|
|
|
if (len > ZAP_LEAF_ARRAY_BYTES)
|
|
|
|
len = ZAP_LEAF_ARRAY_BYTES;
|
|
|
|
if (memcmp(p, nc->l_array.la_array, len))
|
|
|
|
return (0);
|
|
|
|
p += len;
|
|
|
|
namelen -= len;
|
|
|
|
nc = &ZAP_LEAF_CHUNK(zl, nc->l_array.la_next);
|
|
|
|
}
|
|
|
|
|
2019-12-15 14:09:49 +00:00
|
|
|
return (1);
|
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
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Extract a uint64_t value from a zap leaf entry.
|
|
|
|
*/
|
|
|
|
static uint64_t
|
|
|
|
fzap_leaf_value(const zap_leaf_t *zl, const zap_leaf_chunk_t *zc)
|
|
|
|
{
|
|
|
|
const zap_leaf_chunk_t *vc;
|
|
|
|
int i;
|
|
|
|
uint64_t value;
|
|
|
|
const uint8_t *p;
|
|
|
|
|
|
|
|
vc = &ZAP_LEAF_CHUNK(zl, zc->l_entry.le_value_chunk);
|
|
|
|
for (i = 0, value = 0, p = vc->l_array.la_array; i < 8; i++) {
|
|
|
|
value = (value << 8) | p[i];
|
|
|
|
}
|
|
|
|
|
2019-12-15 14:09:49 +00:00
|
|
|
return (value);
|
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
|
|
|
}
|
|
|
|
|
Add SHA512, skein, large blocks support for loader zfs.
Updated sha512 from illumos.
Using skein from freebsd crypto tree.
Since loader itself is using 64MB memory for heap, updated zfsboot to
use same, and this also allows to support zfs large blocks.
Note, adding additional features does increate zfsboot code, therefore
this update does increase zfsboot code to 128k, also I have ported gptldr.S
update to zfsldr.S to support 64k+ code.
With this update, boot1.efi has almost reached the current limit of the size
set for it, so one of the future patches for boot1.efi will need to
increase the limit.
Currently known missing zfs features in boot loader are edonr and gzip support.
Reviewed by: delphij, imp
Approved by: imp (mentor)
Obtained from: sha256.c update and skein_zfs.c stub from illumos.
Differential Revision: https://reviews.freebsd.org/D7418
2016-08-18 00:37:07 +00:00
|
|
|
static void
|
|
|
|
stv(int len, void *addr, uint64_t value)
|
|
|
|
{
|
|
|
|
switch (len) {
|
|
|
|
case 1:
|
|
|
|
*(uint8_t *)addr = value;
|
|
|
|
return;
|
|
|
|
case 2:
|
|
|
|
*(uint16_t *)addr = value;
|
|
|
|
return;
|
|
|
|
case 4:
|
|
|
|
*(uint32_t *)addr = value;
|
|
|
|
return;
|
|
|
|
case 8:
|
|
|
|
*(uint64_t *)addr = value;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Extract a array from a zap leaf entry.
|
|
|
|
*/
|
|
|
|
static void
|
|
|
|
fzap_leaf_array(const zap_leaf_t *zl, const zap_leaf_chunk_t *zc,
|
|
|
|
uint64_t integer_size, uint64_t num_integers, void *buf)
|
|
|
|
{
|
|
|
|
uint64_t array_int_len = zc->l_entry.le_value_intlen;
|
|
|
|
uint64_t value = 0;
|
|
|
|
uint64_t *u64 = buf;
|
|
|
|
char *p = buf;
|
|
|
|
int len = MIN(zc->l_entry.le_value_numints, num_integers);
|
|
|
|
int chunk = zc->l_entry.le_value_chunk;
|
|
|
|
int byten = 0;
|
|
|
|
|
|
|
|
if (integer_size == 8 && len == 1) {
|
|
|
|
*u64 = fzap_leaf_value(zl, zc);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
while (len > 0) {
|
|
|
|
struct zap_leaf_array *la = &ZAP_LEAF_CHUNK(zl, chunk).l_array;
|
|
|
|
int i;
|
|
|
|
|
|
|
|
ASSERT3U(chunk, <, ZAP_LEAF_NUMCHUNKS(zl));
|
|
|
|
for (i = 0; i < ZAP_LEAF_ARRAY_BYTES && len > 0; i++) {
|
|
|
|
value = (value << 8) | la->la_array[i];
|
|
|
|
byten++;
|
|
|
|
if (byten == array_int_len) {
|
|
|
|
stv(integer_size, p, value);
|
|
|
|
byten = 0;
|
|
|
|
len--;
|
|
|
|
if (len == 0)
|
|
|
|
return;
|
|
|
|
p += integer_size;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
chunk = la->la_next;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-12-15 21:52:40 +00:00
|
|
|
static int
|
|
|
|
fzap_check_size(uint64_t integer_size, uint64_t num_integers)
|
|
|
|
{
|
|
|
|
|
|
|
|
switch (integer_size) {
|
|
|
|
case 1:
|
|
|
|
case 2:
|
|
|
|
case 4:
|
|
|
|
case 8:
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
return (EINVAL);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (integer_size * num_integers > ZAP_MAXVALUELEN)
|
|
|
|
return (E2BIG);
|
|
|
|
|
|
|
|
return (0);
|
|
|
|
}
|
|
|
|
|
2020-02-04 07:37:55 +00:00
|
|
|
static void
|
|
|
|
zap_leaf_free(zap_leaf_t *leaf)
|
|
|
|
{
|
|
|
|
free(leaf->l_phys);
|
|
|
|
free(leaf);
|
|
|
|
}
|
|
|
|
|
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
|
2020-02-04 07:37:55 +00:00
|
|
|
zap_get_leaf_byblk(fat_zap_t *zap, uint64_t blk, zap_leaf_t **lp)
|
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
|
|
|
{
|
2020-02-04 07:37:55 +00:00
|
|
|
int bs = FZAP_BLOCK_SHIFT(zap);
|
|
|
|
int err;
|
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
|
|
|
|
2020-02-04 07:37:55 +00:00
|
|
|
*lp = malloc(sizeof(**lp));
|
|
|
|
if (*lp == NULL)
|
|
|
|
return (ENOMEM);
|
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
|
|
|
|
2020-02-04 07:37:55 +00:00
|
|
|
(*lp)->l_bs = bs;
|
|
|
|
(*lp)->l_phys = malloc(1 << bs);
|
2019-12-15 21:52:40 +00:00
|
|
|
|
2020-02-04 07:37:55 +00:00
|
|
|
if ((*lp)->l_phys == NULL) {
|
|
|
|
free(*lp);
|
|
|
|
return (ENOMEM);
|
|
|
|
}
|
|
|
|
err = dnode_read(zap->zap_spa, zap->zap_dnode, blk << bs, (*lp)->l_phys,
|
|
|
|
1 << bs);
|
|
|
|
if (err != 0) {
|
|
|
|
zap_leaf_free(*lp);
|
|
|
|
}
|
|
|
|
return (err);
|
|
|
|
}
|
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
|
|
|
|
2020-02-04 07:37:55 +00:00
|
|
|
static int
|
|
|
|
zap_table_load(fat_zap_t *zap, zap_table_phys_t *tbl, uint64_t idx,
|
|
|
|
uint64_t *valp)
|
|
|
|
{
|
|
|
|
int bs = FZAP_BLOCK_SHIFT(zap);
|
|
|
|
uint64_t blk = idx >> (bs - 3);
|
|
|
|
uint64_t off = idx & ((1 << (bs - 3)) - 1);
|
|
|
|
uint64_t *buf;
|
|
|
|
int rc;
|
|
|
|
|
|
|
|
buf = malloc(1 << zap->zap_block_shift);
|
|
|
|
if (buf == NULL)
|
|
|
|
return (ENOMEM);
|
|
|
|
rc = dnode_read(zap->zap_spa, zap->zap_dnode, (tbl->zt_blk + blk) << bs,
|
|
|
|
buf, 1 << zap->zap_block_shift);
|
|
|
|
if (rc == 0)
|
|
|
|
*valp = buf[off];
|
|
|
|
free(buf);
|
|
|
|
return (rc);
|
|
|
|
}
|
|
|
|
|
|
|
|
static int
|
|
|
|
zap_idx_to_blk(fat_zap_t *zap, uint64_t idx, uint64_t *valp)
|
|
|
|
{
|
|
|
|
if (zap->zap_phys->zap_ptrtbl.zt_numblks == 0) {
|
|
|
|
*valp = ZAP_EMBEDDED_PTRTBL_ENT(zap, idx);
|
|
|
|
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
|
|
|
} else {
|
2020-02-04 07:37:55 +00:00
|
|
|
return (zap_table_load(zap, &zap->zap_phys->zap_ptrtbl,
|
|
|
|
idx, valp));
|
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
|
|
|
}
|
2020-02-04 07:37:55 +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
|
|
|
|
2020-02-04 07:37:55 +00:00
|
|
|
#define ZAP_HASH_IDX(hash, n) (((n) == 0) ? 0 : ((hash) >> (64 - (n))))
|
|
|
|
static int
|
|
|
|
zap_deref_leaf(fat_zap_t *zap, uint64_t h, zap_leaf_t **lp)
|
|
|
|
{
|
|
|
|
uint64_t idx, blk;
|
|
|
|
int err;
|
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
|
|
|
|
2020-02-04 07:37:55 +00:00
|
|
|
idx = ZAP_HASH_IDX(h, zap->zap_phys->zap_ptrtbl.zt_shift);
|
|
|
|
err = zap_idx_to_blk(zap, idx, &blk);
|
|
|
|
if (err != 0)
|
|
|
|
return (err);
|
|
|
|
return (zap_get_leaf_byblk(zap, blk, lp));
|
|
|
|
}
|
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
|
|
|
|
2020-02-04 07:37:55 +00:00
|
|
|
#define CHAIN_END 0xffff /* end of the chunk chain */
|
|
|
|
#define LEAF_HASH(l, h) \
|
|
|
|
((ZAP_LEAF_HASH_NUMENTRIES(l)-1) & \
|
|
|
|
((h) >> \
|
|
|
|
(64 - ZAP_LEAF_HASH_SHIFT(l) - (l)->l_phys->l_hdr.lh_prefix_len)))
|
|
|
|
#define LEAF_HASH_ENTPTR(l, h) (&(l)->l_phys->l_hash[LEAF_HASH(l, 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
|
|
|
|
2020-02-04 07:37:55 +00:00
|
|
|
static int
|
|
|
|
zap_leaf_lookup(zap_leaf_t *zl, uint64_t hash, const char *name,
|
|
|
|
uint64_t integer_size, uint64_t num_integers, void *value)
|
|
|
|
{
|
|
|
|
int rc;
|
|
|
|
uint16_t *chunkp;
|
|
|
|
struct zap_leaf_entry *le;
|
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
|
|
|
|
|
|
|
/*
|
|
|
|
* Make sure this chunk matches our hash.
|
|
|
|
*/
|
2020-02-04 07:37:55 +00:00
|
|
|
if (zl->l_phys->l_hdr.lh_prefix_len > 0 &&
|
|
|
|
zl->l_phys->l_hdr.lh_prefix !=
|
|
|
|
hash >> (64 - zl->l_phys->l_hdr.lh_prefix_len))
|
|
|
|
return (EIO);
|
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
|
|
|
|
2020-02-04 07:37:55 +00:00
|
|
|
rc = ENOENT;
|
|
|
|
for (chunkp = LEAF_HASH_ENTPTR(zl, hash);
|
|
|
|
*chunkp != CHAIN_END; chunkp = &le->le_next) {
|
|
|
|
zap_leaf_chunk_t *zc;
|
|
|
|
uint16_t chunk = *chunkp;
|
|
|
|
|
|
|
|
le = ZAP_LEAF_ENTRY(zl, chunk);
|
|
|
|
if (le->le_hash != hash)
|
|
|
|
continue;
|
|
|
|
zc = &ZAP_LEAF_CHUNK(zl, chunk);
|
|
|
|
if (fzap_name_equal(zl, zc, name)) {
|
|
|
|
if (zc->l_entry.le_value_intlen > integer_size) {
|
|
|
|
rc = EINVAL;
|
|
|
|
} else {
|
|
|
|
fzap_leaf_array(zl, zc, integer_size,
|
|
|
|
num_integers, value);
|
|
|
|
rc = 0;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
}
|
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
|
|
|
}
|
2020-02-04 07:37:55 +00:00
|
|
|
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
|
|
|
|
2020-02-04 07:37:55 +00:00
|
|
|
/*
|
|
|
|
* Lookup a value in a fatzap directory.
|
|
|
|
*/
|
|
|
|
static int
|
|
|
|
fzap_lookup(const spa_t *spa, const dnode_phys_t *dnode, zap_phys_t *zh,
|
|
|
|
const char *name, uint64_t integer_size, uint64_t num_integers,
|
|
|
|
void *value)
|
|
|
|
{
|
|
|
|
int bsize = dnode->dn_datablkszsec << SPA_MINBLOCKSHIFT;
|
|
|
|
fat_zap_t z;
|
|
|
|
zap_leaf_t *zl;
|
|
|
|
uint64_t hash;
|
|
|
|
int rc;
|
|
|
|
|
|
|
|
if (zh->zap_magic != ZAP_MAGIC)
|
|
|
|
return (EIO);
|
|
|
|
|
|
|
|
if ((rc = fzap_check_size(integer_size, num_integers)) != 0)
|
|
|
|
return (rc);
|
|
|
|
|
|
|
|
z.zap_block_shift = ilog2(bsize);
|
|
|
|
z.zap_phys = zh;
|
|
|
|
z.zap_spa = spa;
|
|
|
|
z.zap_dnode = dnode;
|
|
|
|
|
|
|
|
hash = zap_hash(zh->zap_salt, name);
|
|
|
|
rc = zap_deref_leaf(&z, hash, &zl);
|
|
|
|
if (rc != 0)
|
|
|
|
return (rc);
|
|
|
|
|
|
|
|
rc = zap_leaf_lookup(zl, hash, name, integer_size, num_integers, value);
|
|
|
|
|
|
|
|
zap_leaf_free(zl);
|
|
|
|
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
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Lookup a name in a zap object and return its value as a uint64_t.
|
|
|
|
*/
|
|
|
|
static int
|
Add SHA512, skein, large blocks support for loader zfs.
Updated sha512 from illumos.
Using skein from freebsd crypto tree.
Since loader itself is using 64MB memory for heap, updated zfsboot to
use same, and this also allows to support zfs large blocks.
Note, adding additional features does increate zfsboot code, therefore
this update does increase zfsboot code to 128k, also I have ported gptldr.S
update to zfsldr.S to support 64k+ code.
With this update, boot1.efi has almost reached the current limit of the size
set for it, so one of the future patches for boot1.efi will need to
increase the limit.
Currently known missing zfs features in boot loader are edonr and gzip support.
Reviewed by: delphij, imp
Approved by: imp (mentor)
Obtained from: sha256.c update and skein_zfs.c stub from illumos.
Differential Revision: https://reviews.freebsd.org/D7418
2016-08-18 00:37:07 +00:00
|
|
|
zap_lookup(const spa_t *spa, const dnode_phys_t *dnode, const char *name,
|
|
|
|
uint64_t integer_size, uint64_t num_integers, void *value)
|
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
|
|
|
{
|
|
|
|
int rc;
|
2020-02-04 07:37:55 +00:00
|
|
|
zap_phys_t *zap;
|
2011-02-27 19:41:40 +00:00
|
|
|
size_t size = dnode->dn_datablkszsec << SPA_MINBLOCKSHIFT;
|
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
|
|
|
|
2020-02-04 07:37:55 +00:00
|
|
|
zap = malloc(size);
|
|
|
|
if (zap == NULL)
|
|
|
|
return (ENOMEM);
|
|
|
|
|
|
|
|
rc = dnode_read(spa, dnode, 0, zap, size);
|
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 (rc)
|
2020-02-04 07:37:55 +00:00
|
|
|
goto done;
|
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
|
|
|
|
2020-02-04 07:37:55 +00:00
|
|
|
switch (zap->zap_block_type) {
|
|
|
|
case ZBT_MICRO:
|
|
|
|
rc = mzap_lookup((const mzap_phys_t *)zap, size, name, value);
|
|
|
|
break;
|
|
|
|
case ZBT_HEADER:
|
|
|
|
rc = fzap_lookup(spa, dnode, zap, name, integer_size,
|
|
|
|
num_integers, value);
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
printf("ZFS: invalid zap_type=%" PRIx64 "\n",
|
|
|
|
zap->zap_block_type);
|
|
|
|
rc = EIO;
|
Add SHA512, skein, large blocks support for loader zfs.
Updated sha512 from illumos.
Using skein from freebsd crypto tree.
Since loader itself is using 64MB memory for heap, updated zfsboot to
use same, and this also allows to support zfs large blocks.
Note, adding additional features does increate zfsboot code, therefore
this update does increase zfsboot code to 128k, also I have ported gptldr.S
update to zfsldr.S to support 64k+ code.
With this update, boot1.efi has almost reached the current limit of the size
set for it, so one of the future patches for boot1.efi will need to
increase the limit.
Currently known missing zfs features in boot loader are edonr and gzip support.
Reviewed by: delphij, imp
Approved by: imp (mentor)
Obtained from: sha256.c update and skein_zfs.c stub from illumos.
Differential Revision: https://reviews.freebsd.org/D7418
2016-08-18 00:37:07 +00:00
|
|
|
}
|
2020-02-04 07:37:55 +00:00
|
|
|
done:
|
|
|
|
free(zap);
|
|
|
|
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
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
2020-02-04 07:37:55 +00:00
|
|
|
* List a microzap directory.
|
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
|
2020-02-04 07:37:55 +00:00
|
|
|
mzap_list(const mzap_phys_t *mz, size_t size,
|
|
|
|
int (*callback)(const char *, uint64_t))
|
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
|
|
|
{
|
|
|
|
const mzap_ent_phys_t *mze;
|
2016-08-01 19:37:43 +00:00
|
|
|
int chunks, i, 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
|
|
|
|
|
|
|
/*
|
|
|
|
* Microzap objects use exactly one block. Read the whole
|
|
|
|
* thing.
|
|
|
|
*/
|
2020-02-04 07:37:55 +00:00
|
|
|
rc = 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
|
|
|
chunks = size / MZAP_ENT_LEN - 1;
|
|
|
|
for (i = 0; i < chunks; i++) {
|
|
|
|
mze = &mz->mz_chunk[i];
|
2016-08-01 19:37:43 +00:00
|
|
|
if (mze->mze_name[0]) {
|
|
|
|
rc = callback(mze->mze_name, mze->mze_value);
|
|
|
|
if (rc != 0)
|
2020-02-04 07:37:55 +00:00
|
|
|
break;
|
2016-08-01 19:37:43 +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
|
|
|
}
|
|
|
|
|
2020-02-04 07:37:55 +00:00
|
|
|
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
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
2020-02-04 07:37:55 +00:00
|
|
|
* List a fatzap directory.
|
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
|
2020-02-04 07:37:55 +00:00
|
|
|
fzap_list(const spa_t *spa, const dnode_phys_t *dnode, zap_phys_t *zh,
|
2019-12-15 14:09:49 +00:00
|
|
|
int (*callback)(const char *, uint64_t))
|
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
|
|
|
{
|
|
|
|
int bsize = dnode->dn_datablkszsec << SPA_MINBLOCKSHIFT;
|
|
|
|
fat_zap_t z;
|
2020-02-04 07:37:55 +00:00
|
|
|
uint64_t i;
|
|
|
|
int j, 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
|
|
|
|
2020-02-04 07:37:55 +00:00
|
|
|
if (zh->zap_magic != ZAP_MAGIC)
|
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 (EIO);
|
|
|
|
|
|
|
|
z.zap_block_shift = ilog2(bsize);
|
2020-02-04 07:37:55 +00:00
|
|
|
z.zap_phys = zh;
|
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
|
|
|
|
|
|
|
/*
|
|
|
|
* This assumes that the leaf blocks start at block 1. The
|
|
|
|
* documentation isn't exactly clear on this.
|
|
|
|
*/
|
|
|
|
zap_leaf_t zl;
|
|
|
|
zl.l_bs = z.zap_block_shift;
|
2020-02-04 07:37:55 +00:00
|
|
|
zl.l_phys = malloc(bsize);
|
|
|
|
if (zl.l_phys == NULL)
|
|
|
|
return (ENOMEM);
|
|
|
|
|
|
|
|
for (i = 0; i < zh->zap_num_leafs; i++) {
|
2019-12-15 21:52:40 +00:00
|
|
|
off_t off = ((off_t)(i + 1)) << zl.l_bs;
|
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
|
|
|
char name[256], *p;
|
|
|
|
uint64_t value;
|
|
|
|
|
2020-02-04 07:37:55 +00:00
|
|
|
if (dnode_read(spa, dnode, off, zl.l_phys, bsize)) {
|
|
|
|
free(zl.l_phys);
|
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 (EIO);
|
2020-02-04 07:37:55 +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
|
|
|
|
|
|
|
for (j = 0; j < ZAP_LEAF_NUMCHUNKS(&zl); j++) {
|
|
|
|
zap_leaf_chunk_t *zc, *nc;
|
|
|
|
int namelen;
|
|
|
|
|
|
|
|
zc = &ZAP_LEAF_CHUNK(&zl, j);
|
|
|
|
if (zc->l_entry.le_type != ZAP_CHUNK_ENTRY)
|
|
|
|
continue;
|
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(name))
|
|
|
|
namelen = sizeof(name);
|
2012-05-13 09:22:18 +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
|
|
|
/*
|
|
|
|
* Paste the name back together.
|
|
|
|
*/
|
|
|
|
nc = &ZAP_LEAF_CHUNK(&zl, zc->l_entry.le_name_chunk);
|
|
|
|
p = 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);
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Assume the first eight bytes of the value are
|
|
|
|
* a uint64_t.
|
|
|
|
*/
|
|
|
|
value = fzap_leaf_value(&zl, zc);
|
|
|
|
|
2019-12-15 14:09:49 +00:00
|
|
|
/* printf("%s 0x%jx\n", name, (uintmax_t)value); */
|
2016-08-01 19:37:43 +00:00
|
|
|
rc = callback((const char *)name, value);
|
2020-02-04 07:37:55 +00:00
|
|
|
if (rc != 0) {
|
|
|
|
free(zl.l_phys);
|
2016-08-01 19:37:43 +00:00
|
|
|
return (rc);
|
2020-02-04 07:37:55 +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
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-02-04 07:37:55 +00:00
|
|
|
free(zl.l_phys);
|
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);
|
|
|
|
}
|
|
|
|
|
2016-08-01 19:37:43 +00:00
|
|
|
static int zfs_printf(const char *name, uint64_t value __unused)
|
2015-12-31 20:00:53 +00:00
|
|
|
{
|
|
|
|
|
|
|
|
printf("%s\n", name);
|
|
|
|
|
|
|
|
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
|
|
|
/*
|
|
|
|
* List a zap directory.
|
|
|
|
*/
|
|
|
|
static int
|
2012-05-13 09:22:18 +00:00
|
|
|
zap_list(const spa_t *spa, const dnode_phys_t *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
|
|
|
{
|
2020-02-04 07:37:55 +00:00
|
|
|
zap_phys_t *zap;
|
2020-02-05 13:08:24 +00:00
|
|
|
size_t size = dnode->dn_datablkszsec << SPA_MINBLOCKSHIFT;
|
2020-02-04 07:37:55 +00:00
|
|
|
int 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
|
|
|
|
2020-02-04 07:37:55 +00:00
|
|
|
zap = malloc(size);
|
|
|
|
if (zap == NULL)
|
|
|
|
return (ENOMEM);
|
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
|
|
|
|
2020-02-04 07:37:55 +00:00
|
|
|
rc = dnode_read(spa, dnode, 0, zap, size);
|
|
|
|
if (rc == 0) {
|
|
|
|
if (zap->zap_block_type == ZBT_MICRO)
|
|
|
|
rc = mzap_list((const mzap_phys_t *)zap, size,
|
|
|
|
zfs_printf);
|
|
|
|
else
|
|
|
|
rc = fzap_list(spa, dnode, zap, zfs_printf);
|
|
|
|
}
|
|
|
|
free(zap);
|
|
|
|
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
|
|
|
}
|
|
|
|
|
|
|
|
static int
|
2019-12-15 14:09:49 +00:00
|
|
|
objset_get_dnode(const spa_t *spa, const objset_phys_t *os, uint64_t objnum,
|
|
|
|
dnode_phys_t *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
|
|
|
{
|
|
|
|
off_t offset;
|
|
|
|
|
|
|
|
offset = objnum * sizeof(dnode_phys_t);
|
|
|
|
return dnode_read(spa, &os->os_meta_dnode, offset,
|
|
|
|
dnode, sizeof(dnode_phys_t));
|
|
|
|
}
|
|
|
|
|
2020-02-04 07:37:55 +00:00
|
|
|
/*
|
|
|
|
* Lookup a name in a microzap directory.
|
|
|
|
*/
|
2012-05-12 09:03:30 +00:00
|
|
|
static int
|
2020-02-04 07:37:55 +00:00
|
|
|
mzap_rlookup(const mzap_phys_t *mz, size_t size, char *name, uint64_t value)
|
2012-05-12 09:03:30 +00:00
|
|
|
{
|
|
|
|
const mzap_ent_phys_t *mze;
|
|
|
|
int chunks, i;
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Microzap objects use exactly one block. Read the whole
|
|
|
|
* thing.
|
|
|
|
*/
|
|
|
|
chunks = size / MZAP_ENT_LEN - 1;
|
|
|
|
for (i = 0; i < chunks; i++) {
|
|
|
|
mze = &mz->mz_chunk[i];
|
|
|
|
if (value == mze->mze_value) {
|
|
|
|
strcpy(name, mze->mze_name);
|
|
|
|
return (0);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return (ENOENT);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
fzap_name_copy(const zap_leaf_t *zl, const zap_leaf_chunk_t *zc, char *name)
|
|
|
|
{
|
|
|
|
size_t namelen;
|
|
|
|
const zap_leaf_chunk_t *nc;
|
|
|
|
char *p;
|
|
|
|
|
2012-09-11 07:11:32 +00:00
|
|
|
namelen = zc->l_entry.le_name_numints;
|
2012-05-12 09:03:30 +00:00
|
|
|
|
|
|
|
nc = &ZAP_LEAF_CHUNK(zl, zc->l_entry.le_name_chunk);
|
|
|
|
p = name;
|
|
|
|
while (namelen > 0) {
|
|
|
|
size_t 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);
|
|
|
|
}
|
|
|
|
|
|
|
|
*p = '\0';
|
|
|
|
}
|
|
|
|
|
|
|
|
static int
|
2020-02-04 07:37:55 +00:00
|
|
|
fzap_rlookup(const spa_t *spa, const dnode_phys_t *dnode, zap_phys_t *zh,
|
|
|
|
char *name, uint64_t value)
|
2012-05-12 09:03:30 +00:00
|
|
|
{
|
|
|
|
int bsize = dnode->dn_datablkszsec << SPA_MINBLOCKSHIFT;
|
|
|
|
fat_zap_t z;
|
2020-02-04 07:37:55 +00:00
|
|
|
uint64_t i;
|
|
|
|
int j, rc;
|
2012-05-12 09:03:30 +00:00
|
|
|
|
2020-02-04 07:37:55 +00:00
|
|
|
if (zh->zap_magic != ZAP_MAGIC)
|
2012-05-12 09:03:30 +00:00
|
|
|
return (EIO);
|
|
|
|
|
|
|
|
z.zap_block_shift = ilog2(bsize);
|
2020-02-04 07:37:55 +00:00
|
|
|
z.zap_phys = zh;
|
2012-05-12 09:03:30 +00:00
|
|
|
|
|
|
|
/*
|
2012-09-11 07:12:48 +00:00
|
|
|
* This assumes that the leaf blocks start at block 1. The
|
|
|
|
* documentation isn't exactly clear on this.
|
2012-05-12 09:03:30 +00:00
|
|
|
*/
|
|
|
|
zap_leaf_t zl;
|
|
|
|
zl.l_bs = z.zap_block_shift;
|
2020-02-04 07:37:55 +00:00
|
|
|
zl.l_phys = malloc(bsize);
|
|
|
|
if (zl.l_phys == NULL)
|
|
|
|
return (ENOMEM);
|
2012-05-12 09:03:30 +00:00
|
|
|
|
2020-02-04 07:37:55 +00:00
|
|
|
for (i = 0; i < zh->zap_num_leafs; i++) {
|
|
|
|
off_t off = ((off_t)(i + 1)) << zl.l_bs;
|
2012-05-12 09:03:30 +00:00
|
|
|
|
2020-02-04 07:37:55 +00:00
|
|
|
rc = dnode_read(spa, dnode, off, zl.l_phys, bsize);
|
|
|
|
if (rc != 0)
|
|
|
|
goto done;
|
2012-05-12 09:03:30 +00:00
|
|
|
|
2012-09-11 07:12:48 +00:00
|
|
|
for (j = 0; j < ZAP_LEAF_NUMCHUNKS(&zl); j++) {
|
|
|
|
zap_leaf_chunk_t *zc;
|
2012-05-12 09:03:30 +00:00
|
|
|
|
2012-09-11 07:12:48 +00:00
|
|
|
zc = &ZAP_LEAF_CHUNK(&zl, j);
|
|
|
|
if (zc->l_entry.le_type != ZAP_CHUNK_ENTRY)
|
|
|
|
continue;
|
|
|
|
if (zc->l_entry.le_value_intlen != 8 ||
|
|
|
|
zc->l_entry.le_value_numints != 1)
|
|
|
|
continue;
|
2012-05-12 09:03:30 +00:00
|
|
|
|
2012-09-11 07:12:48 +00:00
|
|
|
if (fzap_leaf_value(&zl, zc) == value) {
|
|
|
|
fzap_name_copy(&zl, zc, name);
|
2020-02-04 07:37:55 +00:00
|
|
|
goto done;
|
2012-09-11 07:12:48 +00:00
|
|
|
}
|
2012-05-12 09:03:30 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-02-04 07:37:55 +00:00
|
|
|
rc = ENOENT;
|
|
|
|
done:
|
|
|
|
free(zl.l_phys);
|
|
|
|
return (rc);
|
2012-05-12 09:03:30 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static int
|
2019-12-15 14:09:49 +00:00
|
|
|
zap_rlookup(const spa_t *spa, const dnode_phys_t *dnode, char *name,
|
|
|
|
uint64_t value)
|
2012-05-12 09:03:30 +00:00
|
|
|
{
|
2020-02-04 07:37:55 +00:00
|
|
|
zap_phys_t *zap;
|
2020-02-05 13:08:24 +00:00
|
|
|
size_t size = dnode->dn_datablkszsec << SPA_MINBLOCKSHIFT;
|
2020-02-04 07:37:55 +00:00
|
|
|
int rc;
|
2012-05-12 09:03:30 +00:00
|
|
|
|
2020-02-04 07:37:55 +00:00
|
|
|
zap = malloc(size);
|
|
|
|
if (zap == NULL)
|
|
|
|
return (ENOMEM);
|
2012-05-12 09:03:30 +00:00
|
|
|
|
2020-02-04 07:37:55 +00:00
|
|
|
rc = dnode_read(spa, dnode, 0, zap, size);
|
|
|
|
if (rc == 0) {
|
|
|
|
if (zap->zap_block_type == ZBT_MICRO)
|
|
|
|
rc = mzap_rlookup((const mzap_phys_t *)zap, size,
|
|
|
|
name, value);
|
|
|
|
else
|
|
|
|
rc = fzap_rlookup(spa, dnode, zap, name, value);
|
|
|
|
}
|
|
|
|
free(zap);
|
|
|
|
return (rc);
|
2012-05-12 09:03:30 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static int
|
2012-05-13 09:22:18 +00:00
|
|
|
zfs_rlookup(const spa_t *spa, uint64_t objnum, char *result)
|
2012-05-12 09:03:30 +00:00
|
|
|
{
|
|
|
|
char name[256];
|
|
|
|
char component[256];
|
|
|
|
uint64_t dir_obj, parent_obj, child_dir_zapobj;
|
|
|
|
dnode_phys_t child_dir_zap, dataset, dir, parent;
|
|
|
|
dsl_dir_phys_t *dd;
|
|
|
|
dsl_dataset_phys_t *ds;
|
|
|
|
char *p;
|
|
|
|
int len;
|
|
|
|
|
|
|
|
p = &name[sizeof(name) - 1];
|
|
|
|
*p = '\0';
|
|
|
|
|
|
|
|
if (objset_get_dnode(spa, &spa->spa_mos, objnum, &dataset)) {
|
2012-05-12 20:23:30 +00:00
|
|
|
printf("ZFS: can't find dataset %ju\n", (uintmax_t)objnum);
|
2012-05-12 09:03:30 +00:00
|
|
|
return (EIO);
|
|
|
|
}
|
|
|
|
ds = (dsl_dataset_phys_t *)&dataset.dn_bonus;
|
|
|
|
dir_obj = ds->ds_dir_obj;
|
|
|
|
|
|
|
|
for (;;) {
|
|
|
|
if (objset_get_dnode(spa, &spa->spa_mos, dir_obj, &dir) != 0)
|
|
|
|
return (EIO);
|
|
|
|
dd = (dsl_dir_phys_t *)&dir.dn_bonus;
|
|
|
|
|
|
|
|
/* Actual loop condition. */
|
2019-12-15 14:09:49 +00:00
|
|
|
parent_obj = dd->dd_parent_obj;
|
2012-05-12 09:03:30 +00:00
|
|
|
if (parent_obj == 0)
|
|
|
|
break;
|
|
|
|
|
2019-12-15 14:09:49 +00:00
|
|
|
if (objset_get_dnode(spa, &spa->spa_mos, parent_obj,
|
|
|
|
&parent) != 0)
|
2012-05-12 09:03:30 +00:00
|
|
|
return (EIO);
|
|
|
|
dd = (dsl_dir_phys_t *)&parent.dn_bonus;
|
|
|
|
child_dir_zapobj = dd->dd_child_dir_zapobj;
|
2019-12-15 14:09:49 +00:00
|
|
|
if (objset_get_dnode(spa, &spa->spa_mos, child_dir_zapobj,
|
|
|
|
&child_dir_zap) != 0)
|
2012-05-12 09:03:30 +00:00
|
|
|
return (EIO);
|
|
|
|
if (zap_rlookup(spa, &child_dir_zap, component, dir_obj) != 0)
|
|
|
|
return (EIO);
|
|
|
|
|
|
|
|
len = strlen(component);
|
|
|
|
p -= len;
|
|
|
|
memcpy(p, component, len);
|
|
|
|
--p;
|
|
|
|
*p = '/';
|
|
|
|
|
|
|
|
/* Actual loop iteration. */
|
|
|
|
dir_obj = parent_obj;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (*p != '\0')
|
|
|
|
++p;
|
|
|
|
strcpy(result, p);
|
|
|
|
|
|
|
|
return (0);
|
|
|
|
}
|
|
|
|
|
|
|
|
static int
|
2012-05-13 09:22:18 +00:00
|
|
|
zfs_lookup_dataset(const spa_t *spa, const char *name, uint64_t *objnum)
|
2012-05-12 09:03:30 +00:00
|
|
|
{
|
|
|
|
char element[256];
|
|
|
|
uint64_t dir_obj, child_dir_zapobj;
|
|
|
|
dnode_phys_t child_dir_zap, dir;
|
|
|
|
dsl_dir_phys_t *dd;
|
|
|
|
const char *p, *q;
|
|
|
|
|
2019-12-15 14:09:49 +00:00
|
|
|
if (objset_get_dnode(spa, &spa->spa_mos,
|
|
|
|
DMU_POOL_DIRECTORY_OBJECT, &dir))
|
2012-05-12 09:03:30 +00:00
|
|
|
return (EIO);
|
Add SHA512, skein, large blocks support for loader zfs.
Updated sha512 from illumos.
Using skein from freebsd crypto tree.
Since loader itself is using 64MB memory for heap, updated zfsboot to
use same, and this also allows to support zfs large blocks.
Note, adding additional features does increate zfsboot code, therefore
this update does increase zfsboot code to 128k, also I have ported gptldr.S
update to zfsldr.S to support 64k+ code.
With this update, boot1.efi has almost reached the current limit of the size
set for it, so one of the future patches for boot1.efi will need to
increase the limit.
Currently known missing zfs features in boot loader are edonr and gzip support.
Reviewed by: delphij, imp
Approved by: imp (mentor)
Obtained from: sha256.c update and skein_zfs.c stub from illumos.
Differential Revision: https://reviews.freebsd.org/D7418
2016-08-18 00:37:07 +00:00
|
|
|
if (zap_lookup(spa, &dir, DMU_POOL_ROOT_DATASET, sizeof (dir_obj),
|
|
|
|
1, &dir_obj))
|
2012-05-12 09:03:30 +00:00
|
|
|
return (EIO);
|
|
|
|
|
|
|
|
p = name;
|
|
|
|
for (;;) {
|
|
|
|
if (objset_get_dnode(spa, &spa->spa_mos, dir_obj, &dir))
|
|
|
|
return (EIO);
|
|
|
|
dd = (dsl_dir_phys_t *)&dir.dn_bonus;
|
|
|
|
|
|
|
|
while (*p == '/')
|
|
|
|
p++;
|
|
|
|
/* Actual loop condition #1. */
|
|
|
|
if (*p == '\0')
|
|
|
|
break;
|
|
|
|
|
|
|
|
q = strchr(p, '/');
|
|
|
|
if (q) {
|
|
|
|
memcpy(element, p, q - p);
|
|
|
|
element[q - p] = '\0';
|
|
|
|
p = q + 1;
|
|
|
|
} else {
|
|
|
|
strcpy(element, p);
|
|
|
|
p += strlen(p);
|
|
|
|
}
|
|
|
|
|
|
|
|
child_dir_zapobj = dd->dd_child_dir_zapobj;
|
2019-12-15 14:09:49 +00:00
|
|
|
if (objset_get_dnode(spa, &spa->spa_mos, child_dir_zapobj,
|
|
|
|
&child_dir_zap) != 0)
|
2012-05-12 09:03:30 +00:00
|
|
|
return (EIO);
|
|
|
|
|
|
|
|
/* Actual loop condition #2. */
|
Add SHA512, skein, large blocks support for loader zfs.
Updated sha512 from illumos.
Using skein from freebsd crypto tree.
Since loader itself is using 64MB memory for heap, updated zfsboot to
use same, and this also allows to support zfs large blocks.
Note, adding additional features does increate zfsboot code, therefore
this update does increase zfsboot code to 128k, also I have ported gptldr.S
update to zfsldr.S to support 64k+ code.
With this update, boot1.efi has almost reached the current limit of the size
set for it, so one of the future patches for boot1.efi will need to
increase the limit.
Currently known missing zfs features in boot loader are edonr and gzip support.
Reviewed by: delphij, imp
Approved by: imp (mentor)
Obtained from: sha256.c update and skein_zfs.c stub from illumos.
Differential Revision: https://reviews.freebsd.org/D7418
2016-08-18 00:37:07 +00:00
|
|
|
if (zap_lookup(spa, &child_dir_zap, element, sizeof (dir_obj),
|
|
|
|
1, &dir_obj) != 0)
|
2012-05-12 09:03:30 +00:00
|
|
|
return (ENOENT);
|
|
|
|
}
|
|
|
|
|
|
|
|
*objnum = dd->dd_head_dataset_obj;
|
|
|
|
return (0);
|
|
|
|
}
|
|
|
|
|
2012-10-06 19:27:04 +00:00
|
|
|
#ifndef BOOT2
|
|
|
|
static int
|
|
|
|
zfs_list_dataset(const spa_t *spa, uint64_t objnum/*, int pos, char *entry*/)
|
|
|
|
{
|
|
|
|
uint64_t dir_obj, child_dir_zapobj;
|
|
|
|
dnode_phys_t child_dir_zap, dir, dataset;
|
|
|
|
dsl_dataset_phys_t *ds;
|
|
|
|
dsl_dir_phys_t *dd;
|
|
|
|
|
|
|
|
if (objset_get_dnode(spa, &spa->spa_mos, objnum, &dataset)) {
|
|
|
|
printf("ZFS: can't find dataset %ju\n", (uintmax_t)objnum);
|
|
|
|
return (EIO);
|
|
|
|
}
|
2019-12-15 14:09:49 +00:00
|
|
|
ds = (dsl_dataset_phys_t *)&dataset.dn_bonus;
|
2012-10-06 19:27:04 +00:00
|
|
|
dir_obj = ds->ds_dir_obj;
|
|
|
|
|
|
|
|
if (objset_get_dnode(spa, &spa->spa_mos, dir_obj, &dir)) {
|
|
|
|
printf("ZFS: can't find dirobj %ju\n", (uintmax_t)dir_obj);
|
|
|
|
return (EIO);
|
|
|
|
}
|
|
|
|
dd = (dsl_dir_phys_t *)&dir.dn_bonus;
|
|
|
|
|
|
|
|
child_dir_zapobj = dd->dd_child_dir_zapobj;
|
2019-12-15 14:09:49 +00:00
|
|
|
if (objset_get_dnode(spa, &spa->spa_mos, child_dir_zapobj,
|
|
|
|
&child_dir_zap) != 0) {
|
2012-10-06 19:27:04 +00:00
|
|
|
printf("ZFS: can't find child zap %ju\n", (uintmax_t)dir_obj);
|
|
|
|
return (EIO);
|
|
|
|
}
|
|
|
|
|
|
|
|
return (zap_list(spa, &child_dir_zap) != 0);
|
|
|
|
}
|
2015-12-31 20:00:53 +00:00
|
|
|
|
|
|
|
int
|
2019-12-15 14:09:49 +00:00
|
|
|
zfs_callback_dataset(const spa_t *spa, uint64_t objnum,
|
|
|
|
int (*callback)(const char *, uint64_t))
|
2015-12-31 20:00:53 +00:00
|
|
|
{
|
2020-02-04 07:37:55 +00:00
|
|
|
uint64_t dir_obj, child_dir_zapobj;
|
2015-12-31 20:00:53 +00:00
|
|
|
dnode_phys_t child_dir_zap, dir, dataset;
|
|
|
|
dsl_dataset_phys_t *ds;
|
|
|
|
dsl_dir_phys_t *dd;
|
2020-02-04 07:37:55 +00:00
|
|
|
zap_phys_t *zap;
|
|
|
|
size_t size;
|
2015-12-31 20:00:53 +00:00
|
|
|
int err;
|
|
|
|
|
|
|
|
err = objset_get_dnode(spa, &spa->spa_mos, objnum, &dataset);
|
|
|
|
if (err != 0) {
|
|
|
|
printf("ZFS: can't find dataset %ju\n", (uintmax_t)objnum);
|
|
|
|
return (err);
|
|
|
|
}
|
2019-12-15 14:09:49 +00:00
|
|
|
ds = (dsl_dataset_phys_t *)&dataset.dn_bonus;
|
2015-12-31 20:00:53 +00:00
|
|
|
dir_obj = ds->ds_dir_obj;
|
|
|
|
|
|
|
|
err = objset_get_dnode(spa, &spa->spa_mos, dir_obj, &dir);
|
|
|
|
if (err != 0) {
|
|
|
|
printf("ZFS: can't find dirobj %ju\n", (uintmax_t)dir_obj);
|
|
|
|
return (err);
|
|
|
|
}
|
|
|
|
dd = (dsl_dir_phys_t *)&dir.dn_bonus;
|
|
|
|
|
|
|
|
child_dir_zapobj = dd->dd_child_dir_zapobj;
|
2019-12-15 14:09:49 +00:00
|
|
|
err = objset_get_dnode(spa, &spa->spa_mos, child_dir_zapobj,
|
|
|
|
&child_dir_zap);
|
2015-12-31 20:00:53 +00:00
|
|
|
if (err != 0) {
|
|
|
|
printf("ZFS: can't find child zap %ju\n", (uintmax_t)dir_obj);
|
|
|
|
return (err);
|
|
|
|
}
|
|
|
|
|
2020-02-05 13:08:24 +00:00
|
|
|
size = child_dir_zap.dn_datablkszsec << SPA_MINBLOCKSHIFT;
|
2020-02-04 07:37:55 +00:00
|
|
|
zap = malloc(size);
|
|
|
|
if (zap != NULL) {
|
|
|
|
err = dnode_read(spa, &child_dir_zap, 0, zap, size);
|
|
|
|
if (err != 0)
|
|
|
|
goto done;
|
2015-12-31 20:00:53 +00:00
|
|
|
|
2020-02-04 07:37:55 +00:00
|
|
|
if (zap->zap_block_type == ZBT_MICRO)
|
|
|
|
err = mzap_list((const mzap_phys_t *)zap, size,
|
|
|
|
callback);
|
|
|
|
else
|
|
|
|
err = fzap_list(spa, &child_dir_zap, zap, callback);
|
2020-02-05 13:08:24 +00:00
|
|
|
} else {
|
|
|
|
err = ENOMEM;
|
2020-02-04 07:37:55 +00:00
|
|
|
}
|
|
|
|
done:
|
|
|
|
free(zap);
|
|
|
|
return (err);
|
2015-12-31 20:00:53 +00:00
|
|
|
}
|
2012-10-06 19:27:04 +00:00
|
|
|
#endif
|
|
|
|
|
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
|
|
|
/*
|
|
|
|
* Find the object set given the object number of its dataset object
|
|
|
|
* and return its details in *objset
|
|
|
|
*/
|
|
|
|
static int
|
2012-05-13 09:22:18 +00:00
|
|
|
zfs_mount_dataset(const spa_t *spa, uint64_t objnum, objset_phys_t *objset)
|
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
|
|
|
{
|
|
|
|
dnode_phys_t dataset;
|
|
|
|
dsl_dataset_phys_t *ds;
|
|
|
|
|
|
|
|
if (objset_get_dnode(spa, &spa->spa_mos, objnum, &dataset)) {
|
2012-05-12 20:23:30 +00:00
|
|
|
printf("ZFS: can't find dataset %ju\n", (uintmax_t)objnum);
|
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 (EIO);
|
|
|
|
}
|
|
|
|
|
2019-12-15 14:09:49 +00:00
|
|
|
ds = (dsl_dataset_phys_t *)&dataset.dn_bonus;
|
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 (zio_read(spa, &ds->ds_bp, objset)) {
|
2012-05-12 20:23:30 +00:00
|
|
|
printf("ZFS: can't read object set for dataset %ju\n",
|
|
|
|
(uintmax_t)objnum);
|
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 (EIO);
|
|
|
|
}
|
|
|
|
|
|
|
|
return (0);
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Find the object set pointed to by the BOOTFS property or the root
|
|
|
|
* dataset if there is none and return its details in *objset
|
|
|
|
*/
|
|
|
|
static int
|
2012-05-13 09:22:18 +00:00
|
|
|
zfs_get_root(const spa_t *spa, uint64_t *objid)
|
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
|
|
|
{
|
|
|
|
dnode_phys_t dir, propdir;
|
|
|
|
uint64_t props, bootfs, root;
|
|
|
|
|
2012-05-12 09:03:30 +00:00
|
|
|
*objid = 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
|
|
|
/*
|
|
|
|
* Start with the MOS directory object.
|
|
|
|
*/
|
2019-12-15 14:09:49 +00:00
|
|
|
if (objset_get_dnode(spa, &spa->spa_mos,
|
|
|
|
DMU_POOL_DIRECTORY_OBJECT, &dir)) {
|
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
|
|
|
printf("ZFS: can't read MOS object directory\n");
|
|
|
|
return (EIO);
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Lookup the pool_props and see if we can find a bootfs.
|
|
|
|
*/
|
2019-12-15 14:09:49 +00:00
|
|
|
if (zap_lookup(spa, &dir, DMU_POOL_PROPS,
|
|
|
|
sizeof(props), 1, &props) == 0 &&
|
|
|
|
objset_get_dnode(spa, &spa->spa_mos, props, &propdir) == 0 &&
|
|
|
|
zap_lookup(spa, &propdir, "bootfs",
|
2019-12-15 21:52:40 +00:00
|
|
|
sizeof(bootfs), 1, &bootfs) == 0 && bootfs != 0) {
|
2012-05-12 09:03:30 +00:00
|
|
|
*objid = bootfs;
|
|
|
|
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
|
|
|
/*
|
|
|
|
* Lookup the root dataset directory
|
|
|
|
*/
|
2019-12-15 14:09:49 +00:00
|
|
|
if (zap_lookup(spa, &dir, DMU_POOL_ROOT_DATASET,
|
|
|
|
sizeof(root), 1, &root) ||
|
|
|
|
objset_get_dnode(spa, &spa->spa_mos, root, &dir)) {
|
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
|
|
|
printf("ZFS: can't find root dsl_dir\n");
|
|
|
|
return (EIO);
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Use the information from the dataset directory's bonus buffer
|
|
|
|
* to find the dataset object and from that the object set itself.
|
|
|
|
*/
|
2019-12-15 14:09:49 +00:00
|
|
|
dsl_dir_phys_t *dd = (dsl_dir_phys_t *)&dir.dn_bonus;
|
2012-05-12 09:03:30 +00:00
|
|
|
*objid = dd->dd_head_dataset_obj;
|
|
|
|
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
|
|
|
}
|
|
|
|
|
|
|
|
static int
|
2012-05-13 09:22:18 +00:00
|
|
|
zfs_mount(const spa_t *spa, uint64_t rootobj, struct zfsmount *mount)
|
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
|
|
|
{
|
2011-02-27 19:41:40 +00:00
|
|
|
|
2012-05-12 09:03:30 +00:00
|
|
|
mount->spa = 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
|
|
|
/*
|
2012-05-12 09:03:30 +00:00
|
|
|
* Find the root object set if not explicitly provided
|
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
|
|
|
if (rootobj == 0 && zfs_get_root(spa, &rootobj)) {
|
|
|
|
printf("ZFS: can't find root filesystem\n");
|
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 (EIO);
|
|
|
|
}
|
|
|
|
|
2012-05-12 09:03:30 +00:00
|
|
|
if (zfs_mount_dataset(spa, rootobj, &mount->objset)) {
|
|
|
|
printf("ZFS: can't open root filesystem\n");
|
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 (EIO);
|
|
|
|
}
|
|
|
|
|
2012-05-12 09:03:30 +00:00
|
|
|
mount->rootobj = rootobj;
|
|
|
|
|
|
|
|
return (0);
|
|
|
|
}
|
|
|
|
|
2016-08-01 19:37:43 +00:00
|
|
|
/*
|
|
|
|
* callback function for feature name checks.
|
|
|
|
*/
|
|
|
|
static int
|
|
|
|
check_feature(const char *name, uint64_t value)
|
|
|
|
{
|
|
|
|
int i;
|
|
|
|
|
|
|
|
if (value == 0)
|
|
|
|
return (0);
|
|
|
|
if (name[0] == '\0')
|
|
|
|
return (0);
|
|
|
|
|
|
|
|
for (i = 0; features_for_read[i] != NULL; i++) {
|
|
|
|
if (strcmp(name, features_for_read[i]) == 0)
|
|
|
|
return (0);
|
|
|
|
}
|
|
|
|
printf("ZFS: unsupported feature: %s\n", name);
|
|
|
|
return (EIO);
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Checks whether the MOS features that are active are supported.
|
|
|
|
*/
|
|
|
|
static int
|
|
|
|
check_mos_features(const spa_t *spa)
|
|
|
|
{
|
|
|
|
dnode_phys_t dir;
|
2020-02-04 07:37:55 +00:00
|
|
|
zap_phys_t *zap;
|
|
|
|
uint64_t objnum;
|
2016-08-01 19:37:43 +00:00
|
|
|
size_t size;
|
|
|
|
int rc;
|
|
|
|
|
|
|
|
if ((rc = objset_get_dnode(spa, &spa->spa_mos, DMU_OT_OBJECT_DIRECTORY,
|
|
|
|
&dir)) != 0)
|
|
|
|
return (rc);
|
Add SHA512, skein, large blocks support for loader zfs.
Updated sha512 from illumos.
Using skein from freebsd crypto tree.
Since loader itself is using 64MB memory for heap, updated zfsboot to
use same, and this also allows to support zfs large blocks.
Note, adding additional features does increate zfsboot code, therefore
this update does increase zfsboot code to 128k, also I have ported gptldr.S
update to zfsldr.S to support 64k+ code.
With this update, boot1.efi has almost reached the current limit of the size
set for it, so one of the future patches for boot1.efi will need to
increase the limit.
Currently known missing zfs features in boot loader are edonr and gzip support.
Reviewed by: delphij, imp
Approved by: imp (mentor)
Obtained from: sha256.c update and skein_zfs.c stub from illumos.
Differential Revision: https://reviews.freebsd.org/D7418
2016-08-18 00:37:07 +00:00
|
|
|
if ((rc = zap_lookup(spa, &dir, DMU_POOL_FEATURES_FOR_READ,
|
2016-10-24 16:28:54 +00:00
|
|
|
sizeof (objnum), 1, &objnum)) != 0) {
|
|
|
|
/*
|
|
|
|
* It is older pool without features. As we have already
|
|
|
|
* tested the label, just return without raising the error.
|
|
|
|
*/
|
|
|
|
return (0);
|
|
|
|
}
|
2016-08-01 19:37:43 +00:00
|
|
|
|
|
|
|
if ((rc = objset_get_dnode(spa, &spa->spa_mos, objnum, &dir)) != 0)
|
|
|
|
return (rc);
|
|
|
|
|
|
|
|
if (dir.dn_type != DMU_OTN_ZAP_METADATA)
|
|
|
|
return (EIO);
|
|
|
|
|
2020-02-05 13:08:24 +00:00
|
|
|
size = dir.dn_datablkszsec << SPA_MINBLOCKSHIFT;
|
2020-02-04 07:37:55 +00:00
|
|
|
zap = malloc(size);
|
|
|
|
if (zap == NULL)
|
|
|
|
return (ENOMEM);
|
|
|
|
|
|
|
|
if (dnode_read(spa, &dir, 0, zap, size)) {
|
|
|
|
free(zap);
|
2016-08-01 19:37:43 +00:00
|
|
|
return (EIO);
|
2020-02-04 07:37:55 +00:00
|
|
|
}
|
2016-08-01 19:37:43 +00:00
|
|
|
|
2020-02-04 07:37:55 +00:00
|
|
|
if (zap->zap_block_type == ZBT_MICRO)
|
|
|
|
rc = mzap_list((const mzap_phys_t *)zap, size, check_feature);
|
2016-08-01 19:37:43 +00:00
|
|
|
else
|
2020-02-04 07:37:55 +00:00
|
|
|
rc = fzap_list(spa, &dir, zap, check_feature);
|
2016-08-01 19:37:43 +00:00
|
|
|
|
2020-02-04 07:37:55 +00:00
|
|
|
free(zap);
|
2016-08-01 19:37:43 +00:00
|
|
|
return (rc);
|
|
|
|
}
|
|
|
|
|
2012-05-12 09:03:30 +00:00
|
|
|
static int
|
2020-06-20 06:23:31 +00:00
|
|
|
load_nvlist(spa_t *spa, uint64_t obj, nvlist_t **value)
|
2012-05-12 09:03:30 +00:00
|
|
|
{
|
Add SHA512, skein, large blocks support for loader zfs.
Updated sha512 from illumos.
Using skein from freebsd crypto tree.
Since loader itself is using 64MB memory for heap, updated zfsboot to
use same, and this also allows to support zfs large blocks.
Note, adding additional features does increate zfsboot code, therefore
this update does increase zfsboot code to 128k, also I have ported gptldr.S
update to zfsldr.S to support 64k+ code.
With this update, boot1.efi has almost reached the current limit of the size
set for it, so one of the future patches for boot1.efi will need to
increase the limit.
Currently known missing zfs features in boot loader are edonr and gzip support.
Reviewed by: delphij, imp
Approved by: imp (mentor)
Obtained from: sha256.c update and skein_zfs.c stub from illumos.
Differential Revision: https://reviews.freebsd.org/D7418
2016-08-18 00:37:07 +00:00
|
|
|
dnode_phys_t dir;
|
2019-08-08 18:08:13 +00:00
|
|
|
size_t size;
|
2016-08-01 19:37:43 +00:00
|
|
|
int rc;
|
2019-08-08 18:08:13 +00:00
|
|
|
unsigned char *nv;
|
|
|
|
|
|
|
|
*value = NULL;
|
|
|
|
if ((rc = objset_get_dnode(spa, &spa->spa_mos, obj, &dir)) != 0)
|
|
|
|
return (rc);
|
|
|
|
if (dir.dn_type != DMU_OT_PACKED_NVLIST &&
|
|
|
|
dir.dn_bonustype != DMU_OT_PACKED_NVLIST_SIZE) {
|
|
|
|
return (EIO);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (dir.dn_bonuslen != sizeof (uint64_t))
|
|
|
|
return (EIO);
|
|
|
|
|
|
|
|
size = *(uint64_t *)DN_BONUS(&dir);
|
|
|
|
nv = malloc(size);
|
|
|
|
if (nv == NULL)
|
|
|
|
return (ENOMEM);
|
|
|
|
|
|
|
|
rc = dnode_read(spa, &dir, 0, nv, size);
|
|
|
|
if (rc != 0) {
|
|
|
|
free(nv);
|
|
|
|
nv = NULL;
|
|
|
|
return (rc);
|
|
|
|
}
|
2020-06-20 06:23:31 +00:00
|
|
|
*value = nvlist_import(nv + 4, nv[0], nv[1]);
|
|
|
|
free(nv);
|
2019-08-08 18:08:13 +00:00
|
|
|
return (rc);
|
|
|
|
}
|
|
|
|
|
|
|
|
static int
|
|
|
|
zfs_spa_init(spa_t *spa)
|
|
|
|
{
|
|
|
|
dnode_phys_t dir;
|
|
|
|
uint64_t config_object;
|
2020-06-20 06:23:31 +00:00
|
|
|
nvlist_t *nvlist;
|
2019-12-15 21:52:40 +00:00
|
|
|
int rc;
|
2012-05-12 09:03:30 +00:00
|
|
|
|
|
|
|
if (zio_read(spa, &spa->spa_uberblock.ub_rootbp, &spa->spa_mos)) {
|
|
|
|
printf("ZFS: can't read MOS of pool %s\n", spa->spa_name);
|
|
|
|
return (EIO);
|
|
|
|
}
|
2012-10-06 19:40:12 +00:00
|
|
|
if (spa->spa_mos.os_type != DMU_OST_META) {
|
|
|
|
printf("ZFS: corrupted MOS of pool %s\n", spa->spa_name);
|
|
|
|
return (EIO);
|
|
|
|
}
|
2016-08-01 19:37:43 +00:00
|
|
|
|
Add SHA512, skein, large blocks support for loader zfs.
Updated sha512 from illumos.
Using skein from freebsd crypto tree.
Since loader itself is using 64MB memory for heap, updated zfsboot to
use same, and this also allows to support zfs large blocks.
Note, adding additional features does increate zfsboot code, therefore
this update does increase zfsboot code to 128k, also I have ported gptldr.S
update to zfsldr.S to support 64k+ code.
With this update, boot1.efi has almost reached the current limit of the size
set for it, so one of the future patches for boot1.efi will need to
increase the limit.
Currently known missing zfs features in boot loader are edonr and gzip support.
Reviewed by: delphij, imp
Approved by: imp (mentor)
Obtained from: sha256.c update and skein_zfs.c stub from illumos.
Differential Revision: https://reviews.freebsd.org/D7418
2016-08-18 00:37:07 +00:00
|
|
|
if (objset_get_dnode(spa, &spa->spa_mos, DMU_POOL_DIRECTORY_OBJECT,
|
|
|
|
&dir)) {
|
|
|
|
printf("ZFS: failed to read pool %s directory object\n",
|
|
|
|
spa->spa_name);
|
|
|
|
return (EIO);
|
|
|
|
}
|
|
|
|
/* this is allowed to fail, older pools do not have salt */
|
|
|
|
rc = zap_lookup(spa, &dir, DMU_POOL_CHECKSUM_SALT, 1,
|
|
|
|
sizeof (spa->spa_cksum_salt.zcs_bytes),
|
|
|
|
spa->spa_cksum_salt.zcs_bytes);
|
|
|
|
|
2016-08-01 19:37:43 +00:00
|
|
|
rc = check_mos_features(spa);
|
|
|
|
if (rc != 0) {
|
|
|
|
printf("ZFS: pool %s is not supported\n", spa->spa_name);
|
2019-08-08 18:08:13 +00:00
|
|
|
return (rc);
|
|
|
|
}
|
|
|
|
|
|
|
|
rc = zap_lookup(spa, &dir, DMU_POOL_CONFIG,
|
|
|
|
sizeof (config_object), 1, &config_object);
|
|
|
|
if (rc != 0) {
|
|
|
|
printf("ZFS: can not read MOS %s\n", DMU_POOL_CONFIG);
|
|
|
|
return (EIO);
|
|
|
|
}
|
|
|
|
rc = load_nvlist(spa, config_object, &nvlist);
|
|
|
|
if (rc != 0)
|
|
|
|
return (rc);
|
2020-01-06 19:35:22 +00:00
|
|
|
/*
|
|
|
|
* Update vdevs from MOS config. Note, we do skip encoding bytes
|
|
|
|
* here. See also vdev_label_read_config().
|
|
|
|
*/
|
2020-06-20 06:23:31 +00:00
|
|
|
rc = vdev_init_from_nvlist(spa, nvlist);
|
|
|
|
nvlist_destroy(nvlist);
|
2016-08-01 19:37:43 +00:00
|
|
|
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
|
|
|
}
|
|
|
|
|
2011-02-27 19:41:40 +00:00
|
|
|
static int
|
2012-05-13 09:22:18 +00:00
|
|
|
zfs_dnode_stat(const spa_t *spa, dnode_phys_t *dn, struct stat *sb)
|
2011-02-27 19:41:40 +00:00
|
|
|
{
|
|
|
|
|
|
|
|
if (dn->dn_bonustype != DMU_OT_SA) {
|
|
|
|
znode_phys_t *zp = (znode_phys_t *)dn->dn_bonus;
|
|
|
|
|
|
|
|
sb->st_mode = zp->zp_mode;
|
|
|
|
sb->st_uid = zp->zp_uid;
|
|
|
|
sb->st_gid = zp->zp_gid;
|
|
|
|
sb->st_size = zp->zp_size;
|
|
|
|
} else {
|
|
|
|
sa_hdr_phys_t *sahdrp;
|
|
|
|
int hdrsize;
|
|
|
|
size_t size = 0;
|
|
|
|
void *buf = NULL;
|
|
|
|
|
|
|
|
if (dn->dn_bonuslen != 0)
|
|
|
|
sahdrp = (sa_hdr_phys_t *)DN_BONUS(dn);
|
|
|
|
else {
|
|
|
|
if ((dn->dn_flags & DNODE_FLAG_SPILL_BLKPTR) != 0) {
|
2017-09-12 13:45:04 +00:00
|
|
|
blkptr_t *bp = DN_SPILL_BLKPTR(dn);
|
2011-02-27 19:41:40 +00:00
|
|
|
int error;
|
|
|
|
|
|
|
|
size = BP_GET_LSIZE(bp);
|
2020-02-26 18:12:12 +00:00
|
|
|
buf = malloc(size);
|
|
|
|
if (buf == NULL)
|
|
|
|
error = ENOMEM;
|
|
|
|
else
|
|
|
|
error = zio_read(spa, bp, buf);
|
|
|
|
|
2011-02-27 19:41:40 +00:00
|
|
|
if (error != 0) {
|
2020-02-26 18:12:12 +00:00
|
|
|
free(buf);
|
2011-02-27 19:41:40 +00:00
|
|
|
return (error);
|
|
|
|
}
|
|
|
|
sahdrp = buf;
|
|
|
|
} else {
|
|
|
|
return (EIO);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
hdrsize = SA_HDR_SIZE(sahdrp);
|
|
|
|
sb->st_mode = *(uint64_t *)((char *)sahdrp + hdrsize +
|
|
|
|
SA_MODE_OFFSET);
|
|
|
|
sb->st_uid = *(uint64_t *)((char *)sahdrp + hdrsize +
|
|
|
|
SA_UID_OFFSET);
|
|
|
|
sb->st_gid = *(uint64_t *)((char *)sahdrp + hdrsize +
|
|
|
|
SA_GID_OFFSET);
|
|
|
|
sb->st_size = *(uint64_t *)((char *)sahdrp + hdrsize +
|
|
|
|
SA_SIZE_OFFSET);
|
2020-02-26 18:12:12 +00:00
|
|
|
free(buf);
|
2011-02-27 19:41:40 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return (0);
|
|
|
|
}
|
|
|
|
|
2017-02-22 22:00:50 +00:00
|
|
|
static int
|
|
|
|
zfs_dnode_readlink(const spa_t *spa, dnode_phys_t *dn, char *path, size_t psize)
|
|
|
|
{
|
|
|
|
int rc = 0;
|
|
|
|
|
|
|
|
if (dn->dn_bonustype == DMU_OT_SA) {
|
|
|
|
sa_hdr_phys_t *sahdrp = NULL;
|
|
|
|
size_t size = 0;
|
|
|
|
void *buf = NULL;
|
|
|
|
int hdrsize;
|
|
|
|
char *p;
|
|
|
|
|
2020-02-26 18:12:12 +00:00
|
|
|
if (dn->dn_bonuslen != 0) {
|
2017-02-22 22:00:50 +00:00
|
|
|
sahdrp = (sa_hdr_phys_t *)DN_BONUS(dn);
|
2020-02-26 18:12:12 +00:00
|
|
|
} else {
|
2017-02-22 22:00:50 +00:00
|
|
|
blkptr_t *bp;
|
|
|
|
|
|
|
|
if ((dn->dn_flags & DNODE_FLAG_SPILL_BLKPTR) == 0)
|
|
|
|
return (EIO);
|
2017-09-12 13:45:04 +00:00
|
|
|
bp = DN_SPILL_BLKPTR(dn);
|
2017-02-22 22:00:50 +00:00
|
|
|
|
|
|
|
size = BP_GET_LSIZE(bp);
|
2020-02-26 18:12:12 +00:00
|
|
|
buf = malloc(size);
|
|
|
|
if (buf == NULL)
|
|
|
|
rc = ENOMEM;
|
|
|
|
else
|
|
|
|
rc = zio_read(spa, bp, buf);
|
2017-02-22 22:00:50 +00:00
|
|
|
if (rc != 0) {
|
2020-02-26 18:12:12 +00:00
|
|
|
free(buf);
|
2017-02-22 22:00:50 +00:00
|
|
|
return (rc);
|
|
|
|
}
|
|
|
|
sahdrp = buf;
|
|
|
|
}
|
|
|
|
hdrsize = SA_HDR_SIZE(sahdrp);
|
|
|
|
p = (char *)((uintptr_t)sahdrp + hdrsize + SA_SYMLINK_OFFSET);
|
|
|
|
memcpy(path, p, psize);
|
2020-02-26 18:12:12 +00:00
|
|
|
free(buf);
|
2017-02-22 22:00:50 +00:00
|
|
|
return (0);
|
|
|
|
}
|
|
|
|
/*
|
|
|
|
* Second test is purely to silence bogus compiler
|
|
|
|
* warning about accessing past the end of dn_bonus.
|
|
|
|
*/
|
|
|
|
if (psize + sizeof(znode_phys_t) <= dn->dn_bonuslen &&
|
|
|
|
sizeof(znode_phys_t) <= sizeof(dn->dn_bonus)) {
|
|
|
|
memcpy(path, &dn->dn_bonus[sizeof(znode_phys_t)], psize);
|
|
|
|
} else {
|
|
|
|
rc = dnode_read(spa, dn, 0, path, psize);
|
|
|
|
}
|
|
|
|
return (rc);
|
|
|
|
}
|
|
|
|
|
|
|
|
struct obj_list {
|
|
|
|
uint64_t objnum;
|
|
|
|
STAILQ_ENTRY(obj_list) entry;
|
|
|
|
};
|
|
|
|
|
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
|
|
|
/*
|
|
|
|
* Lookup a file and return its dnode.
|
|
|
|
*/
|
|
|
|
static int
|
2012-05-12 09:03:30 +00:00
|
|
|
zfs_lookup(const struct zfsmount *mount, const char *upath, dnode_phys_t *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
|
|
|
{
|
|
|
|
int rc;
|
2017-02-22 22:00:50 +00:00
|
|
|
uint64_t objnum;
|
2012-05-13 09:22:18 +00:00
|
|
|
const spa_t *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
|
|
|
dnode_phys_t dn;
|
|
|
|
const char *p, *q;
|
|
|
|
char element[256];
|
|
|
|
char path[1024];
|
|
|
|
int symlinks_followed = 0;
|
2011-02-27 19:41:40 +00:00
|
|
|
struct stat sb;
|
2017-03-01 19:02:43 +00:00
|
|
|
struct obj_list *entry, *tentry;
|
2017-02-22 22:00:50 +00:00
|
|
|
STAILQ_HEAD(, obj_list) on_cache = STAILQ_HEAD_INITIALIZER(on_cache);
|
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 = mount->spa;
|
|
|
|
if (mount->objset.os_type != DMU_OST_ZFS) {
|
2012-05-12 20:23:30 +00:00
|
|
|
printf("ZFS: unexpected object set type %ju\n",
|
|
|
|
(uintmax_t)mount->objset.os_type);
|
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 (EIO);
|
|
|
|
}
|
|
|
|
|
2017-02-22 22:00:50 +00:00
|
|
|
if ((entry = malloc(sizeof(struct obj_list))) == NULL)
|
|
|
|
return (ENOMEM);
|
|
|
|
|
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
|
|
|
/*
|
|
|
|
* Get the root directory dnode.
|
|
|
|
*/
|
2012-05-12 09:03:30 +00:00
|
|
|
rc = objset_get_dnode(spa, &mount->objset, MASTER_NODE_OBJ, &dn);
|
2017-02-22 22:00:50 +00:00
|
|
|
if (rc) {
|
|
|
|
free(entry);
|
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 (rc);
|
2017-02-22 22:00:50 +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
|
|
|
|
2019-12-15 14:09:49 +00:00
|
|
|
rc = zap_lookup(spa, &dn, ZFS_ROOT_OBJ, sizeof(objnum), 1, &objnum);
|
2017-02-22 22:00:50 +00:00
|
|
|
if (rc) {
|
|
|
|
free(entry);
|
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 (rc);
|
2017-02-22 22:00:50 +00:00
|
|
|
}
|
|
|
|
entry->objnum = objnum;
|
|
|
|
STAILQ_INSERT_HEAD(&on_cache, entry, entry);
|
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
|
|
|
|
2017-02-22 22:00:50 +00:00
|
|
|
rc = objset_get_dnode(spa, &mount->objset, objnum, &dn);
|
|
|
|
if (rc != 0)
|
|
|
|
goto done;
|
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
|
|
|
|
|
|
|
p = upath;
|
|
|
|
while (p && *p) {
|
2017-02-22 22:00:50 +00:00
|
|
|
rc = objset_get_dnode(spa, &mount->objset, objnum, &dn);
|
|
|
|
if (rc != 0)
|
|
|
|
goto done;
|
|
|
|
|
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
|
|
|
while (*p == '/')
|
|
|
|
p++;
|
2017-02-22 22:00:50 +00:00
|
|
|
if (*p == '\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
|
|
|
break;
|
2017-02-22 22:00:50 +00:00
|
|
|
q = p;
|
|
|
|
while (*q != '\0' && *q != '/')
|
|
|
|
q++;
|
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
|
|
|
|
2017-02-22 22:00:50 +00:00
|
|
|
/* skip dot */
|
|
|
|
if (p + 1 == q && p[0] == '.') {
|
|
|
|
p++;
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
/* double dot */
|
|
|
|
if (p + 2 == q && p[0] == '.' && p[1] == '.') {
|
|
|
|
p += 2;
|
|
|
|
if (STAILQ_FIRST(&on_cache) ==
|
|
|
|
STAILQ_LAST(&on_cache, obj_list, entry)) {
|
|
|
|
rc = ENOENT;
|
|
|
|
goto done;
|
|
|
|
}
|
|
|
|
entry = STAILQ_FIRST(&on_cache);
|
|
|
|
STAILQ_REMOVE_HEAD(&on_cache, entry);
|
|
|
|
free(entry);
|
|
|
|
objnum = (STAILQ_FIRST(&on_cache))->objnum;
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
if (q - p + 1 > sizeof(element)) {
|
|
|
|
rc = ENAMETOOLONG;
|
|
|
|
goto done;
|
|
|
|
}
|
|
|
|
memcpy(element, p, q - p);
|
|
|
|
element[q - p] = 0;
|
|
|
|
p = q;
|
|
|
|
|
|
|
|
if ((rc = zfs_dnode_stat(spa, &dn, &sb)) != 0)
|
|
|
|
goto done;
|
|
|
|
if (!S_ISDIR(sb.st_mode)) {
|
|
|
|
rc = ENOTDIR;
|
|
|
|
goto done;
|
|
|
|
}
|
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
|
|
|
|
Add SHA512, skein, large blocks support for loader zfs.
Updated sha512 from illumos.
Using skein from freebsd crypto tree.
Since loader itself is using 64MB memory for heap, updated zfsboot to
use same, and this also allows to support zfs large blocks.
Note, adding additional features does increate zfsboot code, therefore
this update does increase zfsboot code to 128k, also I have ported gptldr.S
update to zfsldr.S to support 64k+ code.
With this update, boot1.efi has almost reached the current limit of the size
set for it, so one of the future patches for boot1.efi will need to
increase the limit.
Currently known missing zfs features in boot loader are edonr and gzip support.
Reviewed by: delphij, imp
Approved by: imp (mentor)
Obtained from: sha256.c update and skein_zfs.c stub from illumos.
Differential Revision: https://reviews.freebsd.org/D7418
2016-08-18 00:37:07 +00:00
|
|
|
rc = zap_lookup(spa, &dn, element, sizeof (objnum), 1, &objnum);
|
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 (rc)
|
2017-02-22 22:00:50 +00:00
|
|
|
goto done;
|
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
|
|
|
objnum = ZFS_DIRENT_OBJ(objnum);
|
|
|
|
|
2017-02-22 22:00:50 +00:00
|
|
|
if ((entry = malloc(sizeof(struct obj_list))) == NULL) {
|
|
|
|
rc = ENOMEM;
|
|
|
|
goto done;
|
|
|
|
}
|
|
|
|
entry->objnum = objnum;
|
|
|
|
STAILQ_INSERT_HEAD(&on_cache, entry, entry);
|
2012-05-12 09:03:30 +00:00
|
|
|
rc = objset_get_dnode(spa, &mount->objset, objnum, &dn);
|
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 (rc)
|
2017-02-22 22:00:50 +00:00
|
|
|
goto done;
|
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
|
|
|
|
|
|
|
/*
|
|
|
|
* Check for symlink.
|
|
|
|
*/
|
2011-02-27 19:41:40 +00:00
|
|
|
rc = zfs_dnode_stat(spa, &dn, &sb);
|
|
|
|
if (rc)
|
2017-02-22 22:00:50 +00:00
|
|
|
goto done;
|
2011-02-27 19:41:40 +00:00
|
|
|
if (S_ISLNK(sb.st_mode)) {
|
2017-02-22 22:00:50 +00:00
|
|
|
if (symlinks_followed > 10) {
|
|
|
|
rc = EMLINK;
|
|
|
|
goto done;
|
|
|
|
}
|
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
|
|
|
symlinks_followed++;
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Read the link value and copy the tail of our
|
|
|
|
* current path onto the end.
|
|
|
|
*/
|
2017-02-22 22:00:50 +00:00
|
|
|
if (sb.st_size + strlen(p) + 1 > sizeof(path)) {
|
|
|
|
rc = ENAMETOOLONG;
|
|
|
|
goto done;
|
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
|
|
|
}
|
2017-02-22 22:00:50 +00:00
|
|
|
strcpy(&path[sb.st_size], p);
|
|
|
|
|
|
|
|
rc = zfs_dnode_readlink(spa, &dn, path, sb.st_size);
|
|
|
|
if (rc != 0)
|
|
|
|
goto done;
|
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
|
|
|
|
|
|
|
/*
|
|
|
|
* Restart with the new path, starting either at
|
|
|
|
* the root or at the parent depending whether or
|
|
|
|
* not the link is relative.
|
|
|
|
*/
|
|
|
|
p = path;
|
2017-02-22 22:00:50 +00:00
|
|
|
if (*p == '/') {
|
|
|
|
while (STAILQ_FIRST(&on_cache) !=
|
|
|
|
STAILQ_LAST(&on_cache, obj_list, entry)) {
|
|
|
|
entry = STAILQ_FIRST(&on_cache);
|
|
|
|
STAILQ_REMOVE_HEAD(&on_cache, entry);
|
|
|
|
free(entry);
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
entry = STAILQ_FIRST(&on_cache);
|
|
|
|
STAILQ_REMOVE_HEAD(&on_cache, entry);
|
|
|
|
free(entry);
|
|
|
|
}
|
|
|
|
objnum = (STAILQ_FIRST(&on_cache))->objnum;
|
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
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
*dnode = dn;
|
2017-02-22 22:00:50 +00:00
|
|
|
done:
|
2017-03-01 19:02:43 +00:00
|
|
|
STAILQ_FOREACH_SAFE(entry, &on_cache, entry, tentry)
|
2017-02-22 22:00:50 +00:00
|
|
|
free(entry);
|
|
|
|
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
|
|
|
}
|