usr/src/uts/common/fs/zfs/zvol.c
author Eric Taylor <Eric.Taylor@Sun.COM>
Tue, 07 Apr 2009 13:03:48 -0600
changeset 9303 587ef5ac9176
parent 9277 3e67eb420d44
child 9401 afae664f76f6
permissions -rw-r--r--
6794730 need zvol support for DKIOCSETWCE and friends 6794737 DKIOCFLUSHWRITECACHE uses system-wide mutex
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
     1
/*
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
     2
 * CDDL HEADER START
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
     3
 *
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
     4
 * The contents of this file are subject to the terms of the
1544
938876158511 PSARC 2006/077 zpool clear
eschrock
parents: 1357
diff changeset
     5
 * Common Development and Distribution License (the "License").
938876158511 PSARC 2006/077 zpool clear
eschrock
parents: 1357
diff changeset
     6
 * You may not use this file except in compliance with the License.
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
     7
 *
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
     8
 * You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
     9
 * or http://www.opensolaris.org/os/licensing.
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
    10
 * See the License for the specific language governing permissions
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
    11
 * and limitations under the License.
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
    12
 *
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
    13
 * When distributing Covered Code, include this CDDL HEADER in each
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
    14
 * file and include the License file at usr/src/OPENSOLARIS.LICENSE.
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
    15
 * If applicable, add the following below this CDDL HEADER, with the
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
    16
 * fields enclosed by brackets "[]" replaced with your own identifying
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
    17
 * information: Portions Copyright [yyyy] [name of copyright owner]
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
    18
 *
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
    19
 * CDDL HEADER END
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
    20
 */
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
    21
/*
8524
a56dffa8fba9 6770534 zvols do not observe character device semantics
Eric Taylor <Eric.Taylor@Sun.COM>
parents: 8227
diff changeset
    22
 * Copyright 2009 Sun Microsystems, Inc.  All rights reserved.
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
    23
 * Use is subject to license terms.
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
    24
 */
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
    25
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
    26
/*
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
    27
 * ZFS volume emulation driver.
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
    28
 *
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
    29
 * Makes a DMU object look like a volume of arbitrary size, up to 2^64 bytes.
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
    30
 * Volumes are accessed through the symbolic links named:
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
    31
 *
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
    32
 * /dev/zvol/dsk/<pool_name>/<dataset_name>
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
    33
 * /dev/zvol/rdsk/<pool_name>/<dataset_name>
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
    34
 *
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
    35
 * These links are created by the ZFS-specific devfsadm link generator.
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
    36
 * Volumes are persistent through reboot.  No user command needs to be
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
    37
 * run before opening and using a device.
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
    38
 */
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
    39
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
    40
#include <sys/types.h>
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
    41
#include <sys/param.h>
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
    42
#include <sys/errno.h>
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
    43
#include <sys/uio.h>
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
    44
#include <sys/buf.h>
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
    45
#include <sys/modctl.h>
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
    46
#include <sys/open.h>
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
    47
#include <sys/kmem.h>
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
    48
#include <sys/conf.h>
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
    49
#include <sys/cmn_err.h>
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
    50
#include <sys/stat.h>
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
    51
#include <sys/zap.h>
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
    52
#include <sys/spa.h>
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
    53
#include <sys/zio.h>
6423
437422a29d3a PSARC 2006/370 ZFS Boot Support
gw25295
parents: 5688
diff changeset
    54
#include <sys/dmu_traverse.h>
437422a29d3a PSARC 2006/370 ZFS Boot Support
gw25295
parents: 5688
diff changeset
    55
#include <sys/dnode.h>
437422a29d3a PSARC 2006/370 ZFS Boot Support
gw25295
parents: 5688
diff changeset
    56
#include <sys/dsl_dataset.h>
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
    57
#include <sys/dsl_prop.h>
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
    58
#include <sys/dkio.h>
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
    59
#include <sys/efi_partition.h>
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
    60
#include <sys/byteorder.h>
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
    61
#include <sys/pathname.h>
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
    62
#include <sys/ddi.h>
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
    63
#include <sys/sunddi.h>
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
    64
#include <sys/crc32.h>
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
    65
#include <sys/dirent.h>
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
    66
#include <sys/policy.h>
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
    67
#include <sys/fs/zfs.h>
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
    68
#include <sys/zfs_ioctl.h>
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
    69
#include <sys/mkdev.h>
1141
ca4bb9237a10 6354547 sticky log buf size
perrin
parents: 1133
diff changeset
    70
#include <sys/zil.h>
2237
45affe88ed99 6416482 filebench oltp workload hangs in zfs
maybee
parents: 2113
diff changeset
    71
#include <sys/refcount.h>
3755
8708c35cb823 6525008 panic: dr->dt.dl.dr_override_state != DR_IN_DMU_SYNC, file: ../../common/fs/zfs/dbuf.c, line: 676
perrin
parents: 3638
diff changeset
    72
#include <sys/zfs_znode.h>
8708c35cb823 6525008 panic: dr->dt.dl.dr_override_state != DR_IN_DMU_SYNC, file: ../../common/fs/zfs/dbuf.c, line: 676
perrin
parents: 3638
diff changeset
    73
#include <sys/zfs_rlock.h>
6423
437422a29d3a PSARC 2006/370 ZFS Boot Support
gw25295
parents: 5688
diff changeset
    74
#include <sys/vdev_disk.h>
437422a29d3a PSARC 2006/370 ZFS Boot Support
gw25295
parents: 5688
diff changeset
    75
#include <sys/vdev_impl.h>
437422a29d3a PSARC 2006/370 ZFS Boot Support
gw25295
parents: 5688
diff changeset
    76
#include <sys/zvol.h>
437422a29d3a PSARC 2006/370 ZFS Boot Support
gw25295
parents: 5688
diff changeset
    77
#include <sys/dumphdr.h>
8227
f7d7be9b1f56 6765294 Refactor replay
Neil Perrin <Neil.Perrin@Sun.COM>
parents: 7903
diff changeset
    78
#include <sys/zil_impl.h>
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
    79
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
    80
#include "zfs_namecheck.h"
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
    81
6423
437422a29d3a PSARC 2006/370 ZFS Boot Support
gw25295
parents: 5688
diff changeset
    82
static void *zvol_state;
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
    83
6423
437422a29d3a PSARC 2006/370 ZFS Boot Support
gw25295
parents: 5688
diff changeset
    84
#define	ZVOL_DUMPSIZE		"dumpsize"
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
    85
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
    86
/*
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
    87
 * This lock protects the zvol_state structure from being modified
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
    88
 * while it's being used, e.g. an open that comes in before a create
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
    89
 * finishes.  It also protects temporary opens of the dataset so that,
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
    90
 * e.g., an open doesn't get a spurious EBUSY.
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
    91
 */
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
    92
static kmutex_t zvol_state_lock;
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
    93
static uint32_t zvol_minors;
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
    94
6423
437422a29d3a PSARC 2006/370 ZFS Boot Support
gw25295
parents: 5688
diff changeset
    95
typedef struct zvol_extent {
7837
001de5627df3 6333409 traversal code should be able to issue multiple reads in parallel
Matthew Ahrens <Matthew.Ahrens@Sun.COM>
parents: 7754
diff changeset
    96
	list_node_t	ze_node;
6423
437422a29d3a PSARC 2006/370 ZFS Boot Support
gw25295
parents: 5688
diff changeset
    97
	dva_t		ze_dva;		/* dva associated with this extent */
7837
001de5627df3 6333409 traversal code should be able to issue multiple reads in parallel
Matthew Ahrens <Matthew.Ahrens@Sun.COM>
parents: 7754
diff changeset
    98
	uint64_t	ze_nblks;	/* number of blocks in extent */
6423
437422a29d3a PSARC 2006/370 ZFS Boot Support
gw25295
parents: 5688
diff changeset
    99
} zvol_extent_t;
437422a29d3a PSARC 2006/370 ZFS Boot Support
gw25295
parents: 5688
diff changeset
   100
437422a29d3a PSARC 2006/370 ZFS Boot Support
gw25295
parents: 5688
diff changeset
   101
/*
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   102
 * The in-core state of each volume.
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   103
 */
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   104
typedef struct zvol_state {
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   105
	char		zv_name[MAXPATHLEN]; /* pool/dd name */
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   106
	uint64_t	zv_volsize;	/* amount of space we advertise */
3063
b252896b372b 6341569 zio_alloc_blk() vdev distribution performs badly
perrin
parents: 3016
diff changeset
   107
	uint64_t	zv_volblocksize; /* volume block size */
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   108
	minor_t		zv_minor;	/* minor number */
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   109
	uint8_t		zv_min_bs;	/* minimum addressable block shift */
9303
587ef5ac9176 6794730 need zvol support for DKIOCSETWCE and friends
Eric Taylor <Eric.Taylor@Sun.COM>
parents: 9277
diff changeset
   110
	uint8_t		zv_flags;	/* readonly, dumpified, etc. */
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   111
	objset_t	*zv_objset;	/* objset handle */
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   112
	uint32_t	zv_mode;	/* DS_MODE_* flags at open time */
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   113
	uint32_t	zv_open_count[OTYPCNT];	/* open counts */
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   114
	uint32_t	zv_total_opens;	/* total open count */
1141
ca4bb9237a10 6354547 sticky log buf size
perrin
parents: 1133
diff changeset
   115
	zilog_t		*zv_zilog;	/* ZIL handle */
7837
001de5627df3 6333409 traversal code should be able to issue multiple reads in parallel
Matthew Ahrens <Matthew.Ahrens@Sun.COM>
parents: 7754
diff changeset
   116
	list_t		zv_extents;	/* List of extents for dump */
3755
8708c35cb823 6525008 panic: dr->dt.dl.dr_override_state != DR_IN_DMU_SYNC, file: ../../common/fs/zfs/dbuf.c, line: 676
perrin
parents: 3638
diff changeset
   117
	znode_t		zv_znode;	/* for range locking */
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   118
} zvol_state_t;
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   119
3063
b252896b372b 6341569 zio_alloc_blk() vdev distribution performs badly
perrin
parents: 3016
diff changeset
   120
/*
6423
437422a29d3a PSARC 2006/370 ZFS Boot Support
gw25295
parents: 5688
diff changeset
   121
 * zvol specific flags
437422a29d3a PSARC 2006/370 ZFS Boot Support
gw25295
parents: 5688
diff changeset
   122
 */
437422a29d3a PSARC 2006/370 ZFS Boot Support
gw25295
parents: 5688
diff changeset
   123
#define	ZVOL_RDONLY	0x1
437422a29d3a PSARC 2006/370 ZFS Boot Support
gw25295
parents: 5688
diff changeset
   124
#define	ZVOL_DUMPIFIED	0x2
7405
22b4aeef8023 6612759 zvol DKIOCGETEFI should return GPT and GPE when possible
Eric Taylor <Eric.Taylor@Sun.COM>
parents: 7294
diff changeset
   125
#define	ZVOL_EXCL	0x4
9303
587ef5ac9176 6794730 need zvol support for DKIOCSETWCE and friends
Eric Taylor <Eric.Taylor@Sun.COM>
parents: 9277
diff changeset
   126
#define	ZVOL_WCE	0x8
6423
437422a29d3a PSARC 2006/370 ZFS Boot Support
gw25295
parents: 5688
diff changeset
   127
437422a29d3a PSARC 2006/370 ZFS Boot Support
gw25295
parents: 5688
diff changeset
   128
/*
3063
b252896b372b 6341569 zio_alloc_blk() vdev distribution performs badly
perrin
parents: 3016
diff changeset
   129
 * zvol maximum transfer in one DMU tx.
b252896b372b 6341569 zio_alloc_blk() vdev distribution performs badly
perrin
parents: 3016
diff changeset
   130
 */
b252896b372b 6341569 zio_alloc_blk() vdev distribution performs badly
perrin
parents: 3016
diff changeset
   131
int zvol_maxphys = DMU_MAX_ACCESS/2;
b252896b372b 6341569 zio_alloc_blk() vdev distribution performs badly
perrin
parents: 3016
diff changeset
   132
6423
437422a29d3a PSARC 2006/370 ZFS Boot Support
gw25295
parents: 5688
diff changeset
   133
extern int zfs_set_prop_nvlist(const char *, nvlist_t *);
3638
6b28ebc717aa 6496357 spec_fsync() is useless on devices that do write caching
billm
parents: 3461
diff changeset
   134
static int zvol_get_data(void *arg, lr_write_t *lr, char *buf, zio_t *zio);
6423
437422a29d3a PSARC 2006/370 ZFS Boot Support
gw25295
parents: 5688
diff changeset
   135
static int zvol_dumpify(zvol_state_t *zv);
437422a29d3a PSARC 2006/370 ZFS Boot Support
gw25295
parents: 5688
diff changeset
   136
static int zvol_dump_fini(zvol_state_t *zv);
437422a29d3a PSARC 2006/370 ZFS Boot Support
gw25295
parents: 5688
diff changeset
   137
static int zvol_dump_init(zvol_state_t *zv, boolean_t resize);
3063
b252896b372b 6341569 zio_alloc_blk() vdev distribution performs badly
perrin
parents: 3016
diff changeset
   138
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   139
static void
4787
602d3f97842c 6393351 unique_* could be improved
ahrens
parents: 4543
diff changeset
   140
zvol_size_changed(zvol_state_t *zv, major_t maj)
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   141
{
4787
602d3f97842c 6393351 unique_* could be improved
ahrens
parents: 4543
diff changeset
   142
	dev_t dev = makedevice(maj, zv->zv_minor);
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   143
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   144
	VERIFY(ddi_prop_update_int64(dev, zfs_dip,
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   145
	    "Size", zv->zv_volsize) == DDI_SUCCESS);
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   146
	VERIFY(ddi_prop_update_int64(dev, zfs_dip,
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   147
	    "Nblocks", lbtodb(zv->zv_volsize)) == DDI_SUCCESS);
6423
437422a29d3a PSARC 2006/370 ZFS Boot Support
gw25295
parents: 5688
diff changeset
   148
437422a29d3a PSARC 2006/370 ZFS Boot Support
gw25295
parents: 5688
diff changeset
   149
	/* Notify specfs to invalidate the cached size */
437422a29d3a PSARC 2006/370 ZFS Boot Support
gw25295
parents: 5688
diff changeset
   150
	spec_size_invalidate(dev, VBLK);
437422a29d3a PSARC 2006/370 ZFS Boot Support
gw25295
parents: 5688
diff changeset
   151
	spec_size_invalidate(dev, VCHR);
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   152
}
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   153
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   154
int
2676
5cee47eddab6 PSARC 2006/486 ZFS canmount property
eschrock
parents: 2638
diff changeset
   155
zvol_check_volsize(uint64_t volsize, uint64_t blocksize)
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   156
{
2676
5cee47eddab6 PSARC 2006/486 ZFS canmount property
eschrock
parents: 2638
diff changeset
   157
	if (volsize == 0)
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   158
		return (EINVAL);
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   159
2676
5cee47eddab6 PSARC 2006/486 ZFS canmount property
eschrock
parents: 2638
diff changeset
   160
	if (volsize % blocksize != 0)
1133
335d069294d1 6357470 vdev_raidz.c has unused RAIDZ_SINGLE define, code
eschrock
parents: 849
diff changeset
   161
		return (EINVAL);
335d069294d1 6357470 vdev_raidz.c has unused RAIDZ_SINGLE define, code
eschrock
parents: 849
diff changeset
   162
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   163
#ifdef _ILP32
2676
5cee47eddab6 PSARC 2006/486 ZFS canmount property
eschrock
parents: 2638
diff changeset
   164
	if (volsize - 1 > SPEC_MAXOFFSET_T)
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   165
		return (EOVERFLOW);
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   166
#endif
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   167
	return (0);
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   168
}
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   169
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   170
int
2676
5cee47eddab6 PSARC 2006/486 ZFS canmount property
eschrock
parents: 2638
diff changeset
   171
zvol_check_volblocksize(uint64_t volblocksize)
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   172
{
2676
5cee47eddab6 PSARC 2006/486 ZFS canmount property
eschrock
parents: 2638
diff changeset
   173
	if (volblocksize < SPA_MINBLOCKSIZE ||
5cee47eddab6 PSARC 2006/486 ZFS canmount property
eschrock
parents: 2638
diff changeset
   174
	    volblocksize > SPA_MAXBLOCKSIZE ||
5cee47eddab6 PSARC 2006/486 ZFS canmount property
eschrock
parents: 2638
diff changeset
   175
	    !ISP2(volblocksize))
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   176
		return (EDOM);
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   177
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   178
	return (0);
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   179
}
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   180
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   181
static void
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   182
zvol_readonly_changed_cb(void *arg, uint64_t newval)
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   183
{
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   184
	zvol_state_t *zv = arg;
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   185
6423
437422a29d3a PSARC 2006/370 ZFS Boot Support
gw25295
parents: 5688
diff changeset
   186
	if (newval)
437422a29d3a PSARC 2006/370 ZFS Boot Support
gw25295
parents: 5688
diff changeset
   187
		zv->zv_flags |= ZVOL_RDONLY;
437422a29d3a PSARC 2006/370 ZFS Boot Support
gw25295
parents: 5688
diff changeset
   188
	else
437422a29d3a PSARC 2006/370 ZFS Boot Support
gw25295
parents: 5688
diff changeset
   189
		zv->zv_flags &= ~ZVOL_RDONLY;
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   190
}
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   191
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   192
int
2885
c0259887ebbc 6460059 zfs destroy <snapshot> leaves behind kruft
ahrens
parents: 2676
diff changeset
   193
zvol_get_stats(objset_t *os, nvlist_t *nv)
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   194
{
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   195
	int error;
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   196
	dmu_object_info_t doi;
2885
c0259887ebbc 6460059 zfs destroy <snapshot> leaves behind kruft
ahrens
parents: 2676
diff changeset
   197
	uint64_t val;
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   198
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   199
2885
c0259887ebbc 6460059 zfs destroy <snapshot> leaves behind kruft
ahrens
parents: 2676
diff changeset
   200
	error = zap_lookup(os, ZVOL_ZAP_OBJ, "size", 8, 1, &val);
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   201
	if (error)
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   202
		return (error);
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   203
2885
c0259887ebbc 6460059 zfs destroy <snapshot> leaves behind kruft
ahrens
parents: 2676
diff changeset
   204
	dsl_prop_nvlist_add_uint64(nv, ZFS_PROP_VOLSIZE, val);
c0259887ebbc 6460059 zfs destroy <snapshot> leaves behind kruft
ahrens
parents: 2676
diff changeset
   205
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   206
	error = dmu_object_info(os, ZVOL_OBJ, &doi);
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   207
2885
c0259887ebbc 6460059 zfs destroy <snapshot> leaves behind kruft
ahrens
parents: 2676
diff changeset
   208
	if (error == 0) {
c0259887ebbc 6460059 zfs destroy <snapshot> leaves behind kruft
ahrens
parents: 2676
diff changeset
   209
		dsl_prop_nvlist_add_uint64(nv, ZFS_PROP_VOLBLOCKSIZE,
c0259887ebbc 6460059 zfs destroy <snapshot> leaves behind kruft
ahrens
parents: 2676
diff changeset
   210
		    doi.doi_data_block_size);
c0259887ebbc 6460059 zfs destroy <snapshot> leaves behind kruft
ahrens
parents: 2676
diff changeset
   211
	}
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   212
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   213
	return (error);
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   214
}
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   215
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   216
/*
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   217
 * Find a free minor number.
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   218
 */
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   219
static minor_t
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   220
zvol_minor_alloc(void)
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   221
{
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   222
	minor_t minor;
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   223
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   224
	ASSERT(MUTEX_HELD(&zvol_state_lock));
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   225
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   226
	for (minor = 1; minor <= ZVOL_MAX_MINOR; minor++)
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   227
		if (ddi_get_soft_state(zvol_state, minor) == NULL)
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   228
			return (minor);
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   229
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   230
	return (0);
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   231
}
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   232
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   233
static zvol_state_t *
2676
5cee47eddab6 PSARC 2006/486 ZFS canmount property
eschrock
parents: 2638
diff changeset
   234
zvol_minor_lookup(const char *name)
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   235
{
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   236
	minor_t minor;
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   237
	zvol_state_t *zv;
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   238
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   239
	ASSERT(MUTEX_HELD(&zvol_state_lock));
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   240
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   241
	for (minor = 1; minor <= ZVOL_MAX_MINOR; minor++) {
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   242
		zv = ddi_get_soft_state(zvol_state, minor);
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   243
		if (zv == NULL)
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   244
			continue;
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   245
		if (strcmp(zv->zv_name, name) == 0)
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   246
			break;
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   247
	}
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   248
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   249
	return (zv);
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   250
}
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   251
6423
437422a29d3a PSARC 2006/370 ZFS Boot Support
gw25295
parents: 5688
diff changeset
   252
/* extent mapping arg */
437422a29d3a PSARC 2006/370 ZFS Boot Support
gw25295
parents: 5688
diff changeset
   253
struct maparg {
7837
001de5627df3 6333409 traversal code should be able to issue multiple reads in parallel
Matthew Ahrens <Matthew.Ahrens@Sun.COM>
parents: 7754
diff changeset
   254
	zvol_state_t	*ma_zv;
001de5627df3 6333409 traversal code should be able to issue multiple reads in parallel
Matthew Ahrens <Matthew.Ahrens@Sun.COM>
parents: 7754
diff changeset
   255
	uint64_t	ma_blks;
6423
437422a29d3a PSARC 2006/370 ZFS Boot Support
gw25295
parents: 5688
diff changeset
   256
};
437422a29d3a PSARC 2006/370 ZFS Boot Support
gw25295
parents: 5688
diff changeset
   257
437422a29d3a PSARC 2006/370 ZFS Boot Support
gw25295
parents: 5688
diff changeset
   258
/*ARGSUSED*/
437422a29d3a PSARC 2006/370 ZFS Boot Support
gw25295
parents: 5688
diff changeset
   259
static int
7837
001de5627df3 6333409 traversal code should be able to issue multiple reads in parallel
Matthew Ahrens <Matthew.Ahrens@Sun.COM>
parents: 7754
diff changeset
   260
zvol_map_block(spa_t *spa, blkptr_t *bp, const zbookmark_t *zb,
001de5627df3 6333409 traversal code should be able to issue multiple reads in parallel
Matthew Ahrens <Matthew.Ahrens@Sun.COM>
parents: 7754
diff changeset
   261
    const dnode_phys_t *dnp, void *arg)
6423
437422a29d3a PSARC 2006/370 ZFS Boot Support
gw25295
parents: 5688
diff changeset
   262
{
7837
001de5627df3 6333409 traversal code should be able to issue multiple reads in parallel
Matthew Ahrens <Matthew.Ahrens@Sun.COM>
parents: 7754
diff changeset
   263
	struct maparg *ma = arg;
001de5627df3 6333409 traversal code should be able to issue multiple reads in parallel
Matthew Ahrens <Matthew.Ahrens@Sun.COM>
parents: 7754
diff changeset
   264
	zvol_extent_t *ze;
001de5627df3 6333409 traversal code should be able to issue multiple reads in parallel
Matthew Ahrens <Matthew.Ahrens@Sun.COM>
parents: 7754
diff changeset
   265
	int bs = ma->ma_zv->zv_volblocksize;
6423
437422a29d3a PSARC 2006/370 ZFS Boot Support
gw25295
parents: 5688
diff changeset
   266
7837
001de5627df3 6333409 traversal code should be able to issue multiple reads in parallel
Matthew Ahrens <Matthew.Ahrens@Sun.COM>
parents: 7754
diff changeset
   267
	if (bp == NULL || zb->zb_object != ZVOL_OBJ || zb->zb_level != 0)
6423
437422a29d3a PSARC 2006/370 ZFS Boot Support
gw25295
parents: 5688
diff changeset
   268
		return (0);
437422a29d3a PSARC 2006/370 ZFS Boot Support
gw25295
parents: 5688
diff changeset
   269
7837
001de5627df3 6333409 traversal code should be able to issue multiple reads in parallel
Matthew Ahrens <Matthew.Ahrens@Sun.COM>
parents: 7754
diff changeset
   270
	VERIFY3U(ma->ma_blks, ==, zb->zb_blkid);
001de5627df3 6333409 traversal code should be able to issue multiple reads in parallel
Matthew Ahrens <Matthew.Ahrens@Sun.COM>
parents: 7754
diff changeset
   271
	ma->ma_blks++;
001de5627df3 6333409 traversal code should be able to issue multiple reads in parallel
Matthew Ahrens <Matthew.Ahrens@Sun.COM>
parents: 7754
diff changeset
   272
6423
437422a29d3a PSARC 2006/370 ZFS Boot Support
gw25295
parents: 5688
diff changeset
   273
	/* Abort immediately if we have encountered gang blocks */
7837
001de5627df3 6333409 traversal code should be able to issue multiple reads in parallel
Matthew Ahrens <Matthew.Ahrens@Sun.COM>
parents: 7754
diff changeset
   274
	if (BP_IS_GANG(bp))
001de5627df3 6333409 traversal code should be able to issue multiple reads in parallel
Matthew Ahrens <Matthew.Ahrens@Sun.COM>
parents: 7754
diff changeset
   275
		return (EFRAGS);
6423
437422a29d3a PSARC 2006/370 ZFS Boot Support
gw25295
parents: 5688
diff changeset
   276
7837
001de5627df3 6333409 traversal code should be able to issue multiple reads in parallel
Matthew Ahrens <Matthew.Ahrens@Sun.COM>
parents: 7754
diff changeset
   277
	/*
001de5627df3 6333409 traversal code should be able to issue multiple reads in parallel
Matthew Ahrens <Matthew.Ahrens@Sun.COM>
parents: 7754
diff changeset
   278
	 * See if the block is at the end of the previous extent.
001de5627df3 6333409 traversal code should be able to issue multiple reads in parallel
Matthew Ahrens <Matthew.Ahrens@Sun.COM>
parents: 7754
diff changeset
   279
	 */
001de5627df3 6333409 traversal code should be able to issue multiple reads in parallel
Matthew Ahrens <Matthew.Ahrens@Sun.COM>
parents: 7754
diff changeset
   280
	ze = list_tail(&ma->ma_zv->zv_extents);
001de5627df3 6333409 traversal code should be able to issue multiple reads in parallel
Matthew Ahrens <Matthew.Ahrens@Sun.COM>
parents: 7754
diff changeset
   281
	if (ze &&
001de5627df3 6333409 traversal code should be able to issue multiple reads in parallel
Matthew Ahrens <Matthew.Ahrens@Sun.COM>
parents: 7754
diff changeset
   282
	    DVA_GET_VDEV(BP_IDENTITY(bp)) == DVA_GET_VDEV(&ze->ze_dva) &&
001de5627df3 6333409 traversal code should be able to issue multiple reads in parallel
Matthew Ahrens <Matthew.Ahrens@Sun.COM>
parents: 7754
diff changeset
   283
	    DVA_GET_OFFSET(BP_IDENTITY(bp)) ==
001de5627df3 6333409 traversal code should be able to issue multiple reads in parallel
Matthew Ahrens <Matthew.Ahrens@Sun.COM>
parents: 7754
diff changeset
   284
	    DVA_GET_OFFSET(&ze->ze_dva) + ze->ze_nblks * bs) {
001de5627df3 6333409 traversal code should be able to issue multiple reads in parallel
Matthew Ahrens <Matthew.Ahrens@Sun.COM>
parents: 7754
diff changeset
   285
		ze->ze_nblks++;
6423
437422a29d3a PSARC 2006/370 ZFS Boot Support
gw25295
parents: 5688
diff changeset
   286
		return (0);
437422a29d3a PSARC 2006/370 ZFS Boot Support
gw25295
parents: 5688
diff changeset
   287
	}
437422a29d3a PSARC 2006/370 ZFS Boot Support
gw25295
parents: 5688
diff changeset
   288
7837
001de5627df3 6333409 traversal code should be able to issue multiple reads in parallel
Matthew Ahrens <Matthew.Ahrens@Sun.COM>
parents: 7754
diff changeset
   289
	dprintf_bp(bp, "%s", "next blkptr:");
001de5627df3 6333409 traversal code should be able to issue multiple reads in parallel
Matthew Ahrens <Matthew.Ahrens@Sun.COM>
parents: 7754
diff changeset
   290
001de5627df3 6333409 traversal code should be able to issue multiple reads in parallel
Matthew Ahrens <Matthew.Ahrens@Sun.COM>
parents: 7754
diff changeset
   291
	/* start a new extent */
001de5627df3 6333409 traversal code should be able to issue multiple reads in parallel
Matthew Ahrens <Matthew.Ahrens@Sun.COM>
parents: 7754
diff changeset
   292
	ze = kmem_zalloc(sizeof (zvol_extent_t), KM_SLEEP);
001de5627df3 6333409 traversal code should be able to issue multiple reads in parallel
Matthew Ahrens <Matthew.Ahrens@Sun.COM>
parents: 7754
diff changeset
   293
	ze->ze_dva = bp->blk_dva[0];	/* structure assignment */
001de5627df3 6333409 traversal code should be able to issue multiple reads in parallel
Matthew Ahrens <Matthew.Ahrens@Sun.COM>
parents: 7754
diff changeset
   294
	ze->ze_nblks = 1;
001de5627df3 6333409 traversal code should be able to issue multiple reads in parallel
Matthew Ahrens <Matthew.Ahrens@Sun.COM>
parents: 7754
diff changeset
   295
	list_insert_tail(&ma->ma_zv->zv_extents, ze);
001de5627df3 6333409 traversal code should be able to issue multiple reads in parallel
Matthew Ahrens <Matthew.Ahrens@Sun.COM>
parents: 7754
diff changeset
   296
	return (0);
001de5627df3 6333409 traversal code should be able to issue multiple reads in parallel
Matthew Ahrens <Matthew.Ahrens@Sun.COM>
parents: 7754
diff changeset
   297
}
001de5627df3 6333409 traversal code should be able to issue multiple reads in parallel
Matthew Ahrens <Matthew.Ahrens@Sun.COM>
parents: 7754
diff changeset
   298
001de5627df3 6333409 traversal code should be able to issue multiple reads in parallel
Matthew Ahrens <Matthew.Ahrens@Sun.COM>
parents: 7754
diff changeset
   299
static void
001de5627df3 6333409 traversal code should be able to issue multiple reads in parallel
Matthew Ahrens <Matthew.Ahrens@Sun.COM>
parents: 7754
diff changeset
   300
zvol_free_extents(zvol_state_t *zv)
001de5627df3 6333409 traversal code should be able to issue multiple reads in parallel
Matthew Ahrens <Matthew.Ahrens@Sun.COM>
parents: 7754
diff changeset
   301
{
001de5627df3 6333409 traversal code should be able to issue multiple reads in parallel
Matthew Ahrens <Matthew.Ahrens@Sun.COM>
parents: 7754
diff changeset
   302
	zvol_extent_t *ze;
001de5627df3 6333409 traversal code should be able to issue multiple reads in parallel
Matthew Ahrens <Matthew.Ahrens@Sun.COM>
parents: 7754
diff changeset
   303
001de5627df3 6333409 traversal code should be able to issue multiple reads in parallel
Matthew Ahrens <Matthew.Ahrens@Sun.COM>
parents: 7754
diff changeset
   304
	while (ze = list_head(&zv->zv_extents)) {
001de5627df3 6333409 traversal code should be able to issue multiple reads in parallel
Matthew Ahrens <Matthew.Ahrens@Sun.COM>
parents: 7754
diff changeset
   305
		list_remove(&zv->zv_extents, ze);
001de5627df3 6333409 traversal code should be able to issue multiple reads in parallel
Matthew Ahrens <Matthew.Ahrens@Sun.COM>
parents: 7754
diff changeset
   306
		kmem_free(ze, sizeof (zvol_extent_t));
001de5627df3 6333409 traversal code should be able to issue multiple reads in parallel
Matthew Ahrens <Matthew.Ahrens@Sun.COM>
parents: 7754
diff changeset
   307
	}
001de5627df3 6333409 traversal code should be able to issue multiple reads in parallel
Matthew Ahrens <Matthew.Ahrens@Sun.COM>
parents: 7754
diff changeset
   308
}
001de5627df3 6333409 traversal code should be able to issue multiple reads in parallel
Matthew Ahrens <Matthew.Ahrens@Sun.COM>
parents: 7754
diff changeset
   309
001de5627df3 6333409 traversal code should be able to issue multiple reads in parallel
Matthew Ahrens <Matthew.Ahrens@Sun.COM>
parents: 7754
diff changeset
   310
static int
001de5627df3 6333409 traversal code should be able to issue multiple reads in parallel
Matthew Ahrens <Matthew.Ahrens@Sun.COM>
parents: 7754
diff changeset
   311
zvol_get_lbas(zvol_state_t *zv)
001de5627df3 6333409 traversal code should be able to issue multiple reads in parallel
Matthew Ahrens <Matthew.Ahrens@Sun.COM>
parents: 7754
diff changeset
   312
{
001de5627df3 6333409 traversal code should be able to issue multiple reads in parallel
Matthew Ahrens <Matthew.Ahrens@Sun.COM>
parents: 7754
diff changeset
   313
	struct maparg	ma;
001de5627df3 6333409 traversal code should be able to issue multiple reads in parallel
Matthew Ahrens <Matthew.Ahrens@Sun.COM>
parents: 7754
diff changeset
   314
	int		err;
001de5627df3 6333409 traversal code should be able to issue multiple reads in parallel
Matthew Ahrens <Matthew.Ahrens@Sun.COM>
parents: 7754
diff changeset
   315
001de5627df3 6333409 traversal code should be able to issue multiple reads in parallel
Matthew Ahrens <Matthew.Ahrens@Sun.COM>
parents: 7754
diff changeset
   316
	ma.ma_zv = zv;
001de5627df3 6333409 traversal code should be able to issue multiple reads in parallel
Matthew Ahrens <Matthew.Ahrens@Sun.COM>
parents: 7754
diff changeset
   317
	ma.ma_blks = 0;
001de5627df3 6333409 traversal code should be able to issue multiple reads in parallel
Matthew Ahrens <Matthew.Ahrens@Sun.COM>
parents: 7754
diff changeset
   318
	zvol_free_extents(zv);
001de5627df3 6333409 traversal code should be able to issue multiple reads in parallel
Matthew Ahrens <Matthew.Ahrens@Sun.COM>
parents: 7754
diff changeset
   319
001de5627df3 6333409 traversal code should be able to issue multiple reads in parallel
Matthew Ahrens <Matthew.Ahrens@Sun.COM>
parents: 7754
diff changeset
   320
	err = traverse_dataset(dmu_objset_ds(zv->zv_objset), 0,
001de5627df3 6333409 traversal code should be able to issue multiple reads in parallel
Matthew Ahrens <Matthew.Ahrens@Sun.COM>
parents: 7754
diff changeset
   321
	    TRAVERSE_PRE | TRAVERSE_PREFETCH_METADATA, zvol_map_block, &ma);
001de5627df3 6333409 traversal code should be able to issue multiple reads in parallel
Matthew Ahrens <Matthew.Ahrens@Sun.COM>
parents: 7754
diff changeset
   322
	if (err || ma.ma_blks != (zv->zv_volsize / zv->zv_volblocksize)) {
001de5627df3 6333409 traversal code should be able to issue multiple reads in parallel
Matthew Ahrens <Matthew.Ahrens@Sun.COM>
parents: 7754
diff changeset
   323
		zvol_free_extents(zv);
001de5627df3 6333409 traversal code should be able to issue multiple reads in parallel
Matthew Ahrens <Matthew.Ahrens@Sun.COM>
parents: 7754
diff changeset
   324
		return (err ? err : EIO);
6423
437422a29d3a PSARC 2006/370 ZFS Boot Support
gw25295
parents: 5688
diff changeset
   325
	}
437422a29d3a PSARC 2006/370 ZFS Boot Support
gw25295
parents: 5688
diff changeset
   326
437422a29d3a PSARC 2006/370 ZFS Boot Support
gw25295
parents: 5688
diff changeset
   327
	return (0);
437422a29d3a PSARC 2006/370 ZFS Boot Support
gw25295
parents: 5688
diff changeset
   328
}
437422a29d3a PSARC 2006/370 ZFS Boot Support
gw25295
parents: 5688
diff changeset
   329
4543
12bb2876a62e PSARC/2006/465 ZFS Delegated Administration
marks
parents: 4391
diff changeset
   330
/* ARGSUSED */
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   331
void
4543
12bb2876a62e PSARC/2006/465 ZFS Delegated Administration
marks
parents: 4391
diff changeset
   332
zvol_create_cb(objset_t *os, void *arg, cred_t *cr, dmu_tx_t *tx)
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   333
{
5331
3047ad28a67b PSARC/2007/218 caller_context_t in all VOPs
amw
parents: 4935
diff changeset
   334
	zfs_creat_t *zct = arg;
3047ad28a67b PSARC/2007/218 caller_context_t in all VOPs
amw
parents: 4935
diff changeset
   335
	nvlist_t *nvprops = zct->zct_props;
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   336
	int error;
2676
5cee47eddab6 PSARC 2006/486 ZFS canmount property
eschrock
parents: 2638
diff changeset
   337
	uint64_t volblocksize, volsize;
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   338
4543
12bb2876a62e PSARC/2006/465 ZFS Delegated Administration
marks
parents: 4391
diff changeset
   339
	VERIFY(nvlist_lookup_uint64(nvprops,
2676
5cee47eddab6 PSARC 2006/486 ZFS canmount property
eschrock
parents: 2638
diff changeset
   340
	    zfs_prop_to_name(ZFS_PROP_VOLSIZE), &volsize) == 0);
4543
12bb2876a62e PSARC/2006/465 ZFS Delegated Administration
marks
parents: 4391
diff changeset
   341
	if (nvlist_lookup_uint64(nvprops,
2676
5cee47eddab6 PSARC 2006/486 ZFS canmount property
eschrock
parents: 2638
diff changeset
   342
	    zfs_prop_to_name(ZFS_PROP_VOLBLOCKSIZE), &volblocksize) != 0)
5cee47eddab6 PSARC 2006/486 ZFS canmount property
eschrock
parents: 2638
diff changeset
   343
		volblocksize = zfs_prop_default_numeric(ZFS_PROP_VOLBLOCKSIZE);
5cee47eddab6 PSARC 2006/486 ZFS canmount property
eschrock
parents: 2638
diff changeset
   344
5cee47eddab6 PSARC 2006/486 ZFS canmount property
eschrock
parents: 2638
diff changeset
   345
	/*
6423
437422a29d3a PSARC 2006/370 ZFS Boot Support
gw25295
parents: 5688
diff changeset
   346
	 * These properties must be removed from the list so the generic
2676
5cee47eddab6 PSARC 2006/486 ZFS canmount property
eschrock
parents: 2638
diff changeset
   347
	 * property setting step won't apply to them.
5cee47eddab6 PSARC 2006/486 ZFS canmount property
eschrock
parents: 2638
diff changeset
   348
	 */
4543
12bb2876a62e PSARC/2006/465 ZFS Delegated Administration
marks
parents: 4391
diff changeset
   349
	VERIFY(nvlist_remove_all(nvprops,
2676
5cee47eddab6 PSARC 2006/486 ZFS canmount property
eschrock
parents: 2638
diff changeset
   350
	    zfs_prop_to_name(ZFS_PROP_VOLSIZE)) == 0);
4543
12bb2876a62e PSARC/2006/465 ZFS Delegated Administration
marks
parents: 4391
diff changeset
   351
	(void) nvlist_remove_all(nvprops,
2676
5cee47eddab6 PSARC 2006/486 ZFS canmount property
eschrock
parents: 2638
diff changeset
   352
	    zfs_prop_to_name(ZFS_PROP_VOLBLOCKSIZE));
5cee47eddab6 PSARC 2006/486 ZFS canmount property
eschrock
parents: 2638
diff changeset
   353
5cee47eddab6 PSARC 2006/486 ZFS canmount property
eschrock
parents: 2638
diff changeset
   354
	error = dmu_object_claim(os, ZVOL_OBJ, DMU_OT_ZVOL, volblocksize,
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   355
	    DMU_OT_NONE, 0, tx);
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   356
	ASSERT(error == 0);
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   357
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   358
	error = zap_create_claim(os, ZVOL_ZAP_OBJ, DMU_OT_ZVOL_PROP,
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   359
	    DMU_OT_NONE, 0, tx);
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   360
	ASSERT(error == 0);
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   361
2676
5cee47eddab6 PSARC 2006/486 ZFS canmount property
eschrock
parents: 2638
diff changeset
   362
	error = zap_update(os, ZVOL_ZAP_OBJ, "size", 8, 1, &volsize, tx);
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   363
	ASSERT(error == 0);
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   364
}
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   365
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   366
/*
1141
ca4bb9237a10 6354547 sticky log buf size
perrin
parents: 1133
diff changeset
   367
 * Replay a TX_WRITE ZIL transaction that didn't get committed
ca4bb9237a10 6354547 sticky log buf size
perrin
parents: 1133
diff changeset
   368
 * after a system failure
ca4bb9237a10 6354547 sticky log buf size
perrin
parents: 1133
diff changeset
   369
 */
ca4bb9237a10 6354547 sticky log buf size
perrin
parents: 1133
diff changeset
   370
static int
ca4bb9237a10 6354547 sticky log buf size
perrin
parents: 1133
diff changeset
   371
zvol_replay_write(zvol_state_t *zv, lr_write_t *lr, boolean_t byteswap)
ca4bb9237a10 6354547 sticky log buf size
perrin
parents: 1133
diff changeset
   372
{
ca4bb9237a10 6354547 sticky log buf size
perrin
parents: 1133
diff changeset
   373
	objset_t *os = zv->zv_objset;
ca4bb9237a10 6354547 sticky log buf size
perrin
parents: 1133
diff changeset
   374
	char *data = (char *)(lr + 1);	/* data follows lr_write_t */
ca4bb9237a10 6354547 sticky log buf size
perrin
parents: 1133
diff changeset
   375
	uint64_t off = lr->lr_offset;
ca4bb9237a10 6354547 sticky log buf size
perrin
parents: 1133
diff changeset
   376
	uint64_t len = lr->lr_length;
ca4bb9237a10 6354547 sticky log buf size
perrin
parents: 1133
diff changeset
   377
	dmu_tx_t *tx;
ca4bb9237a10 6354547 sticky log buf size
perrin
parents: 1133
diff changeset
   378
	int error;
ca4bb9237a10 6354547 sticky log buf size
perrin
parents: 1133
diff changeset
   379
ca4bb9237a10 6354547 sticky log buf size
perrin
parents: 1133
diff changeset
   380
	if (byteswap)
ca4bb9237a10 6354547 sticky log buf size
perrin
parents: 1133
diff changeset
   381
		byteswap_uint64_array(lr, sizeof (*lr));
ca4bb9237a10 6354547 sticky log buf size
perrin
parents: 1133
diff changeset
   382
ca4bb9237a10 6354547 sticky log buf size
perrin
parents: 1133
diff changeset
   383
	tx = dmu_tx_create(os);
ca4bb9237a10 6354547 sticky log buf size
perrin
parents: 1133
diff changeset
   384
	dmu_tx_hold_write(tx, ZVOL_OBJ, off, len);
8227
f7d7be9b1f56 6765294 Refactor replay
Neil Perrin <Neil.Perrin@Sun.COM>
parents: 7903
diff changeset
   385
	error = dmu_tx_assign(tx, TXG_WAIT);
1141
ca4bb9237a10 6354547 sticky log buf size
perrin
parents: 1133
diff changeset
   386
	if (error) {
ca4bb9237a10 6354547 sticky log buf size
perrin
parents: 1133
diff changeset
   387
		dmu_tx_abort(tx);
ca4bb9237a10 6354547 sticky log buf size
perrin
parents: 1133
diff changeset
   388
	} else {
ca4bb9237a10 6354547 sticky log buf size
perrin
parents: 1133
diff changeset
   389
		dmu_write(os, ZVOL_OBJ, off, len, data, tx);
ca4bb9237a10 6354547 sticky log buf size
perrin
parents: 1133
diff changeset
   390
		dmu_tx_commit(tx);
ca4bb9237a10 6354547 sticky log buf size
perrin
parents: 1133
diff changeset
   391
	}
ca4bb9237a10 6354547 sticky log buf size
perrin
parents: 1133
diff changeset
   392
ca4bb9237a10 6354547 sticky log buf size
perrin
parents: 1133
diff changeset
   393
	return (error);
ca4bb9237a10 6354547 sticky log buf size
perrin
parents: 1133
diff changeset
   394
}
ca4bb9237a10 6354547 sticky log buf size
perrin
parents: 1133
diff changeset
   395
ca4bb9237a10 6354547 sticky log buf size
perrin
parents: 1133
diff changeset
   396
/* ARGSUSED */
ca4bb9237a10 6354547 sticky log buf size
perrin
parents: 1133
diff changeset
   397
static int
ca4bb9237a10 6354547 sticky log buf size
perrin
parents: 1133
diff changeset
   398
zvol_replay_err(zvol_state_t *zv, lr_t *lr, boolean_t byteswap)
ca4bb9237a10 6354547 sticky log buf size
perrin
parents: 1133
diff changeset
   399
{
ca4bb9237a10 6354547 sticky log buf size
perrin
parents: 1133
diff changeset
   400
	return (ENOTSUP);
ca4bb9237a10 6354547 sticky log buf size
perrin
parents: 1133
diff changeset
   401
}
ca4bb9237a10 6354547 sticky log buf size
perrin
parents: 1133
diff changeset
   402
ca4bb9237a10 6354547 sticky log buf size
perrin
parents: 1133
diff changeset
   403
/*
ca4bb9237a10 6354547 sticky log buf size
perrin
parents: 1133
diff changeset
   404
 * Callback vectors for replaying records.
ca4bb9237a10 6354547 sticky log buf size
perrin
parents: 1133
diff changeset
   405
 * Only TX_WRITE is needed for zvol.
ca4bb9237a10 6354547 sticky log buf size
perrin
parents: 1133
diff changeset
   406
 */
ca4bb9237a10 6354547 sticky log buf size
perrin
parents: 1133
diff changeset
   407
zil_replay_func_t *zvol_replay_vector[TX_MAX_TYPE] = {
ca4bb9237a10 6354547 sticky log buf size
perrin
parents: 1133
diff changeset
   408
	zvol_replay_err,	/* 0 no such transaction type */
ca4bb9237a10 6354547 sticky log buf size
perrin
parents: 1133
diff changeset
   409
	zvol_replay_err,	/* TX_CREATE */
ca4bb9237a10 6354547 sticky log buf size
perrin
parents: 1133
diff changeset
   410
	zvol_replay_err,	/* TX_MKDIR */
ca4bb9237a10 6354547 sticky log buf size
perrin
parents: 1133
diff changeset
   411
	zvol_replay_err,	/* TX_MKXATTR */
ca4bb9237a10 6354547 sticky log buf size
perrin
parents: 1133
diff changeset
   412
	zvol_replay_err,	/* TX_SYMLINK */
ca4bb9237a10 6354547 sticky log buf size
perrin
parents: 1133
diff changeset
   413
	zvol_replay_err,	/* TX_REMOVE */
ca4bb9237a10 6354547 sticky log buf size
perrin
parents: 1133
diff changeset
   414
	zvol_replay_err,	/* TX_RMDIR */
ca4bb9237a10 6354547 sticky log buf size
perrin
parents: 1133
diff changeset
   415
	zvol_replay_err,	/* TX_LINK */
ca4bb9237a10 6354547 sticky log buf size
perrin
parents: 1133
diff changeset
   416
	zvol_replay_err,	/* TX_RENAME */
ca4bb9237a10 6354547 sticky log buf size
perrin
parents: 1133
diff changeset
   417
	zvol_replay_write,	/* TX_WRITE */
ca4bb9237a10 6354547 sticky log buf size
perrin
parents: 1133
diff changeset
   418
	zvol_replay_err,	/* TX_TRUNCATE */
ca4bb9237a10 6354547 sticky log buf size
perrin
parents: 1133
diff changeset
   419
	zvol_replay_err,	/* TX_SETATTR */
ca4bb9237a10 6354547 sticky log buf size
perrin
parents: 1133
diff changeset
   420
	zvol_replay_err,	/* TX_ACL */
ca4bb9237a10 6354547 sticky log buf size
perrin
parents: 1133
diff changeset
   421
};
ca4bb9237a10 6354547 sticky log buf size
perrin
parents: 1133
diff changeset
   422
ca4bb9237a10 6354547 sticky log buf size
perrin
parents: 1133
diff changeset
   423
/*
6423
437422a29d3a PSARC 2006/370 ZFS Boot Support
gw25295
parents: 5688
diff changeset
   424
 * Create a minor node (plus a whole lot more) for the specified volume.
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   425
 */
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   426
int
4787
602d3f97842c 6393351 unique_* could be improved
ahrens
parents: 4543
diff changeset
   427
zvol_create_minor(const char *name, major_t maj)
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   428
{
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   429
	zvol_state_t *zv;
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   430
	objset_t *os;
3063
b252896b372b 6341569 zio_alloc_blk() vdev distribution performs badly
perrin
parents: 3016
diff changeset
   431
	dmu_object_info_t doi;
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   432
	uint64_t volsize;
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   433
	minor_t minor = 0;
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   434
	struct pathname linkpath;
6689
47572a2f5e73 6610506 Eliminate or improve retry logic from callers of dmu_objset_open()
maybee
parents: 6423
diff changeset
   435
	int ds_mode = DS_MODE_OWNER;
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   436
	vnode_t *vp = NULL;
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   437
	char *devpath;
6423
437422a29d3a PSARC 2006/370 ZFS Boot Support
gw25295
parents: 5688
diff changeset
   438
	size_t devpathlen = strlen(ZVOL_FULL_DEV_DIR) + strlen(name) + 1;
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   439
	char chrbuf[30], blkbuf[30];
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   440
	int error;
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   441
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   442
	mutex_enter(&zvol_state_lock);
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   443
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   444
	if ((zv = zvol_minor_lookup(name)) != NULL) {
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   445
		mutex_exit(&zvol_state_lock);
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   446
		return (EEXIST);
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   447
	}
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   448
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   449
	if (strchr(name, '@') != 0)
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   450
		ds_mode |= DS_MODE_READONLY;
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   451
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   452
	error = dmu_objset_open(name, DMU_OST_ZVOL, ds_mode, &os);
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   453
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   454
	if (error) {
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   455
		mutex_exit(&zvol_state_lock);
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   456
		return (error);
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   457
	}
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   458
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   459
	error = zap_lookup(os, ZVOL_ZAP_OBJ, "size", 8, 1, &volsize);
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   460
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   461
	if (error) {
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   462
		dmu_objset_close(os);
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   463
		mutex_exit(&zvol_state_lock);
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   464
		return (error);
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   465
	}
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   466
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   467
	/*
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   468
	 * If there's an existing /dev/zvol symlink, try to use the
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   469
	 * same minor number we used last time.
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   470
	 */
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   471
	devpath = kmem_alloc(devpathlen, KM_SLEEP);
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   472
6423
437422a29d3a PSARC 2006/370 ZFS Boot Support
gw25295
parents: 5688
diff changeset
   473
	(void) sprintf(devpath, "%s%s", ZVOL_FULL_DEV_DIR, name);
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   474
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   475
	error = lookupname(devpath, UIO_SYSSPACE, NO_FOLLOW, NULL, &vp);
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   476
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   477
	kmem_free(devpath, devpathlen);
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   478
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   479
	if (error == 0 && vp->v_type != VLNK)
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   480
		error = EINVAL;
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   481
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   482
	if (error == 0) {
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   483
		pn_alloc(&linkpath);
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   484
		error = pn_getsymlink(vp, &linkpath, kcred);
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   485
		if (error == 0) {
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   486
			char *ms = strstr(linkpath.pn_path, ZVOL_PSEUDO_DEV);
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   487
			if (ms != NULL) {
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   488
				ms += strlen(ZVOL_PSEUDO_DEV);
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   489
				minor = stoi(&ms);
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   490
			}
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   491
		}
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   492
		pn_free(&linkpath);
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   493
	}
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   494
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   495
	if (vp != NULL)
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   496
		VN_RELE(vp);
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   497
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   498
	/*
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   499
	 * If we found a minor but it's already in use, we must pick a new one.
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   500
	 */
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   501
	if (minor != 0 && ddi_get_soft_state(zvol_state, minor) != NULL)
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   502
		minor = 0;
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   503
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   504
	if (minor == 0)
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   505
		minor = zvol_minor_alloc();
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   506
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   507
	if (minor == 0) {
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   508
		dmu_objset_close(os);
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   509
		mutex_exit(&zvol_state_lock);
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   510
		return (ENXIO);
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   511
	}
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   512
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   513
	if (ddi_soft_state_zalloc(zvol_state, minor) != DDI_SUCCESS) {
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   514
		dmu_objset_close(os);
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   515
		mutex_exit(&zvol_state_lock);
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   516
		return (EAGAIN);
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   517
	}
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   518
2676
5cee47eddab6 PSARC 2006/486 ZFS canmount property
eschrock
parents: 2638
diff changeset
   519
	(void) ddi_prop_update_string(minor, zfs_dip, ZVOL_PROP_NAME,
5cee47eddab6 PSARC 2006/486 ZFS canmount property
eschrock
parents: 2638
diff changeset
   520
	    (char *)name);
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   521
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   522
	(void) sprintf(chrbuf, "%uc,raw", minor);
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   523
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   524
	if (ddi_create_minor_node(zfs_dip, chrbuf, S_IFCHR,
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   525
	    minor, DDI_PSEUDO, 0) == DDI_FAILURE) {
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   526
		ddi_soft_state_free(zvol_state, minor);
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   527
		dmu_objset_close(os);
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   528
		mutex_exit(&zvol_state_lock);
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   529
		return (EAGAIN);
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   530
	}
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   531
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   532
	(void) sprintf(blkbuf, "%uc", minor);
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   533
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   534
	if (ddi_create_minor_node(zfs_dip, blkbuf, S_IFBLK,
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   535
	    minor, DDI_PSEUDO, 0) == DDI_FAILURE) {
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   536
		ddi_remove_minor_node(zfs_dip, chrbuf);
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   537
		ddi_soft_state_free(zvol_state, minor);
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   538
		dmu_objset_close(os);
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   539
		mutex_exit(&zvol_state_lock);
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   540
		return (EAGAIN);
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   541
	}
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   542
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   543
	zv = ddi_get_soft_state(zvol_state, minor);
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   544
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   545
	(void) strcpy(zv->zv_name, name);
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   546
	zv->zv_min_bs = DEV_BSHIFT;
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   547
	zv->zv_minor = minor;
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   548
	zv->zv_volsize = volsize;
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   549
	zv->zv_objset = os;
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   550
	zv->zv_mode = ds_mode;
3063
b252896b372b 6341569 zio_alloc_blk() vdev distribution performs badly
perrin
parents: 3016
diff changeset
   551
	zv->zv_zilog = zil_open(os, zvol_get_data);
3755
8708c35cb823 6525008 panic: dr->dt.dl.dr_override_state != DR_IN_DMU_SYNC, file: ../../common/fs/zfs/dbuf.c, line: 676
perrin
parents: 3638
diff changeset
   552
	mutex_init(&zv->zv_znode.z_range_lock, NULL, MUTEX_DEFAULT, NULL);
8708c35cb823 6525008 panic: dr->dt.dl.dr_override_state != DR_IN_DMU_SYNC, file: ../../common/fs/zfs/dbuf.c, line: 676
perrin
parents: 3638
diff changeset
   553
	avl_create(&zv->zv_znode.z_range_avl, zfs_range_compare,
8708c35cb823 6525008 panic: dr->dt.dl.dr_override_state != DR_IN_DMU_SYNC, file: ../../common/fs/zfs/dbuf.c, line: 676
perrin
parents: 3638
diff changeset
   554
	    sizeof (rl_t), offsetof(rl_t, r_node));
7837
001de5627df3 6333409 traversal code should be able to issue multiple reads in parallel
Matthew Ahrens <Matthew.Ahrens@Sun.COM>
parents: 7754
diff changeset
   555
	list_create(&zv->zv_extents, sizeof (zvol_extent_t),
001de5627df3 6333409 traversal code should be able to issue multiple reads in parallel
Matthew Ahrens <Matthew.Ahrens@Sun.COM>
parents: 7754
diff changeset
   556
	    offsetof(zvol_extent_t, ze_node));
3063
b252896b372b 6341569 zio_alloc_blk() vdev distribution performs badly
perrin
parents: 3016
diff changeset
   557
	/* get and cache the blocksize */
b252896b372b 6341569 zio_alloc_blk() vdev distribution performs badly
perrin
parents: 3016
diff changeset
   558
	error = dmu_object_info(os, ZVOL_OBJ, &doi);
b252896b372b 6341569 zio_alloc_blk() vdev distribution performs badly
perrin
parents: 3016
diff changeset
   559
	ASSERT(error == 0);
b252896b372b 6341569 zio_alloc_blk() vdev distribution performs badly
perrin
parents: 3016
diff changeset
   560
	zv->zv_volblocksize = doi.doi_data_block_size;
1141
ca4bb9237a10 6354547 sticky log buf size
perrin
parents: 1133
diff changeset
   561
8227
f7d7be9b1f56 6765294 Refactor replay
Neil Perrin <Neil.Perrin@Sun.COM>
parents: 7903
diff changeset
   562
	zil_replay(os, zv, zvol_replay_vector);
4787
602d3f97842c 6393351 unique_* could be improved
ahrens
parents: 4543
diff changeset
   563
	zvol_size_changed(zv, maj);
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   564
1544
938876158511 PSARC 2006/077 zpool clear
eschrock
parents: 1357
diff changeset
   565
	/* XXX this should handle the possible i/o error */
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   566
	VERIFY(dsl_prop_register(dmu_objset_ds(zv->zv_objset),
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   567
	    "readonly", zvol_readonly_changed_cb, zv) == 0);
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   568
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   569
	zvol_minors++;
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   570
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   571
	mutex_exit(&zvol_state_lock);
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   572
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   573
	return (0);
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   574
}
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   575
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   576
/*
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   577
 * Remove minor node for the specified volume.
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   578
 */
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   579
int
2676
5cee47eddab6 PSARC 2006/486 ZFS canmount property
eschrock
parents: 2638
diff changeset
   580
zvol_remove_minor(const char *name)
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   581
{
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   582
	zvol_state_t *zv;
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   583
	char namebuf[30];
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   584
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   585
	mutex_enter(&zvol_state_lock);
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   586
2676
5cee47eddab6 PSARC 2006/486 ZFS canmount property
eschrock
parents: 2638
diff changeset
   587
	if ((zv = zvol_minor_lookup(name)) == NULL) {
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   588
		mutex_exit(&zvol_state_lock);
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   589
		return (ENXIO);
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   590
	}
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   591
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   592
	if (zv->zv_total_opens != 0) {
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   593
		mutex_exit(&zvol_state_lock);
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   594
		return (EBUSY);
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   595
	}
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   596
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   597
	(void) sprintf(namebuf, "%uc,raw", zv->zv_minor);
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   598
	ddi_remove_minor_node(zfs_dip, namebuf);
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   599
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   600
	(void) sprintf(namebuf, "%uc", zv->zv_minor);
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   601
	ddi_remove_minor_node(zfs_dip, namebuf);
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   602
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   603
	VERIFY(dsl_prop_unregister(dmu_objset_ds(zv->zv_objset),
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   604
	    "readonly", zvol_readonly_changed_cb, zv) == 0);
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   605
1141
ca4bb9237a10 6354547 sticky log buf size
perrin
parents: 1133
diff changeset
   606
	zil_close(zv->zv_zilog);
ca4bb9237a10 6354547 sticky log buf size
perrin
parents: 1133
diff changeset
   607
	zv->zv_zilog = NULL;
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   608
	dmu_objset_close(zv->zv_objset);
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   609
	zv->zv_objset = NULL;
3755
8708c35cb823 6525008 panic: dr->dt.dl.dr_override_state != DR_IN_DMU_SYNC, file: ../../common/fs/zfs/dbuf.c, line: 676
perrin
parents: 3638
diff changeset
   610
	avl_destroy(&zv->zv_znode.z_range_avl);
8708c35cb823 6525008 panic: dr->dt.dl.dr_override_state != DR_IN_DMU_SYNC, file: ../../common/fs/zfs/dbuf.c, line: 676
perrin
parents: 3638
diff changeset
   611
	mutex_destroy(&zv->zv_znode.z_range_lock);
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   612
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   613
	ddi_soft_state_free(zvol_state, zv->zv_minor);
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   614
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   615
	zvol_minors--;
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   616
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   617
	mutex_exit(&zvol_state_lock);
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   618
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   619
	return (0);
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   620
}
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   621
6423
437422a29d3a PSARC 2006/370 ZFS Boot Support
gw25295
parents: 5688
diff changeset
   622
int
437422a29d3a PSARC 2006/370 ZFS Boot Support
gw25295
parents: 5688
diff changeset
   623
zvol_prealloc(zvol_state_t *zv)
437422a29d3a PSARC 2006/370 ZFS Boot Support
gw25295
parents: 5688
diff changeset
   624
{
437422a29d3a PSARC 2006/370 ZFS Boot Support
gw25295
parents: 5688
diff changeset
   625
	objset_t *os = zv->zv_objset;
437422a29d3a PSARC 2006/370 ZFS Boot Support
gw25295
parents: 5688
diff changeset
   626
	dmu_tx_t *tx;
437422a29d3a PSARC 2006/370 ZFS Boot Support
gw25295
parents: 5688
diff changeset
   627
	uint64_t refd, avail, usedobjs, availobjs;
437422a29d3a PSARC 2006/370 ZFS Boot Support
gw25295
parents: 5688
diff changeset
   628
	uint64_t resid = zv->zv_volsize;
437422a29d3a PSARC 2006/370 ZFS Boot Support
gw25295
parents: 5688
diff changeset
   629
	uint64_t off = 0;
437422a29d3a PSARC 2006/370 ZFS Boot Support
gw25295
parents: 5688
diff changeset
   630
437422a29d3a PSARC 2006/370 ZFS Boot Support
gw25295
parents: 5688
diff changeset
   631
	/* Check the space usage before attempting to allocate the space */
437422a29d3a PSARC 2006/370 ZFS Boot Support
gw25295
parents: 5688
diff changeset
   632
	dmu_objset_space(os, &refd, &avail, &usedobjs, &availobjs);
437422a29d3a PSARC 2006/370 ZFS Boot Support
gw25295
parents: 5688
diff changeset
   633
	if (avail < zv->zv_volsize)
437422a29d3a PSARC 2006/370 ZFS Boot Support
gw25295
parents: 5688
diff changeset
   634
		return (ENOSPC);
437422a29d3a PSARC 2006/370 ZFS Boot Support
gw25295
parents: 5688
diff changeset
   635
437422a29d3a PSARC 2006/370 ZFS Boot Support
gw25295
parents: 5688
diff changeset
   636
	/* Free old extents if they exist */
437422a29d3a PSARC 2006/370 ZFS Boot Support
gw25295
parents: 5688
diff changeset
   637
	zvol_free_extents(zv);
437422a29d3a PSARC 2006/370 ZFS Boot Support
gw25295
parents: 5688
diff changeset
   638
437422a29d3a PSARC 2006/370 ZFS Boot Support
gw25295
parents: 5688
diff changeset
   639
	while (resid != 0) {
437422a29d3a PSARC 2006/370 ZFS Boot Support
gw25295
parents: 5688
diff changeset
   640
		int error;
437422a29d3a PSARC 2006/370 ZFS Boot Support
gw25295
parents: 5688
diff changeset
   641
		uint64_t bytes = MIN(resid, SPA_MAXBLOCKSIZE);
437422a29d3a PSARC 2006/370 ZFS Boot Support
gw25295
parents: 5688
diff changeset
   642
437422a29d3a PSARC 2006/370 ZFS Boot Support
gw25295
parents: 5688
diff changeset
   643
		tx = dmu_tx_create(os);
437422a29d3a PSARC 2006/370 ZFS Boot Support
gw25295
parents: 5688
diff changeset
   644
		dmu_tx_hold_write(tx, ZVOL_OBJ, off, bytes);
437422a29d3a PSARC 2006/370 ZFS Boot Support
gw25295
parents: 5688
diff changeset
   645
		error = dmu_tx_assign(tx, TXG_WAIT);
437422a29d3a PSARC 2006/370 ZFS Boot Support
gw25295
parents: 5688
diff changeset
   646
		if (error) {
437422a29d3a PSARC 2006/370 ZFS Boot Support
gw25295
parents: 5688
diff changeset
   647
			dmu_tx_abort(tx);
6992
20c04e18c58c 6573681 deleting a very large file can be slow
maybee
parents: 6730
diff changeset
   648
			(void) dmu_free_long_range(os, ZVOL_OBJ, 0, off);
6423
437422a29d3a PSARC 2006/370 ZFS Boot Support
gw25295
parents: 5688
diff changeset
   649
			return (error);
437422a29d3a PSARC 2006/370 ZFS Boot Support
gw25295
parents: 5688
diff changeset
   650
		}
7872
40a9434212f6 6646775 Speed up the dumpifying process for zvols
Tim Haley <Tim.Haley@Sun.COM>
parents: 7837
diff changeset
   651
		dmu_prealloc(os, ZVOL_OBJ, off, bytes, tx);
6423
437422a29d3a PSARC 2006/370 ZFS Boot Support
gw25295
parents: 5688
diff changeset
   652
		dmu_tx_commit(tx);
437422a29d3a PSARC 2006/370 ZFS Boot Support
gw25295
parents: 5688
diff changeset
   653
		off += bytes;
437422a29d3a PSARC 2006/370 ZFS Boot Support
gw25295
parents: 5688
diff changeset
   654
		resid -= bytes;
437422a29d3a PSARC 2006/370 ZFS Boot Support
gw25295
parents: 5688
diff changeset
   655
	}
437422a29d3a PSARC 2006/370 ZFS Boot Support
gw25295
parents: 5688
diff changeset
   656
	txg_wait_synced(dmu_objset_pool(os), 0);
437422a29d3a PSARC 2006/370 ZFS Boot Support
gw25295
parents: 5688
diff changeset
   657
437422a29d3a PSARC 2006/370 ZFS Boot Support
gw25295
parents: 5688
diff changeset
   658
	return (0);
437422a29d3a PSARC 2006/370 ZFS Boot Support
gw25295
parents: 5688
diff changeset
   659
}
437422a29d3a PSARC 2006/370 ZFS Boot Support
gw25295
parents: 5688
diff changeset
   660
437422a29d3a PSARC 2006/370 ZFS Boot Support
gw25295
parents: 5688
diff changeset
   661
int
437422a29d3a PSARC 2006/370 ZFS Boot Support
gw25295
parents: 5688
diff changeset
   662
zvol_update_volsize(zvol_state_t *zv, major_t maj, uint64_t volsize)
437422a29d3a PSARC 2006/370 ZFS Boot Support
gw25295
parents: 5688
diff changeset
   663
{
437422a29d3a PSARC 2006/370 ZFS Boot Support
gw25295
parents: 5688
diff changeset
   664
	dmu_tx_t *tx;
437422a29d3a PSARC 2006/370 ZFS Boot Support
gw25295
parents: 5688
diff changeset
   665
	int error;
437422a29d3a PSARC 2006/370 ZFS Boot Support
gw25295
parents: 5688
diff changeset
   666
437422a29d3a PSARC 2006/370 ZFS Boot Support
gw25295
parents: 5688
diff changeset
   667
	ASSERT(MUTEX_HELD(&zvol_state_lock));
437422a29d3a PSARC 2006/370 ZFS Boot Support
gw25295
parents: 5688
diff changeset
   668
437422a29d3a PSARC 2006/370 ZFS Boot Support
gw25295
parents: 5688
diff changeset
   669
	tx = dmu_tx_create(zv->zv_objset);
437422a29d3a PSARC 2006/370 ZFS Boot Support
gw25295
parents: 5688
diff changeset
   670
	dmu_tx_hold_zap(tx, ZVOL_ZAP_OBJ, TRUE, NULL);
437422a29d3a PSARC 2006/370 ZFS Boot Support
gw25295
parents: 5688
diff changeset
   671
	error = dmu_tx_assign(tx, TXG_WAIT);
437422a29d3a PSARC 2006/370 ZFS Boot Support
gw25295
parents: 5688
diff changeset
   672
	if (error) {
437422a29d3a PSARC 2006/370 ZFS Boot Support
gw25295
parents: 5688
diff changeset
   673
		dmu_tx_abort(tx);
437422a29d3a PSARC 2006/370 ZFS Boot Support
gw25295
parents: 5688
diff changeset
   674
		return (error);
437422a29d3a PSARC 2006/370 ZFS Boot Support
gw25295
parents: 5688
diff changeset
   675
	}
437422a29d3a PSARC 2006/370 ZFS Boot Support
gw25295
parents: 5688
diff changeset
   676
437422a29d3a PSARC 2006/370 ZFS Boot Support
gw25295
parents: 5688
diff changeset
   677
	error = zap_update(zv->zv_objset, ZVOL_ZAP_OBJ, "size", 8, 1,
437422a29d3a PSARC 2006/370 ZFS Boot Support
gw25295
parents: 5688
diff changeset
   678
	    &volsize, tx);
437422a29d3a PSARC 2006/370 ZFS Boot Support
gw25295
parents: 5688
diff changeset
   679
	dmu_tx_commit(tx);
437422a29d3a PSARC 2006/370 ZFS Boot Support
gw25295
parents: 5688
diff changeset
   680
437422a29d3a PSARC 2006/370 ZFS Boot Support
gw25295
parents: 5688
diff changeset
   681
	if (error == 0)
6992
20c04e18c58c 6573681 deleting a very large file can be slow
maybee
parents: 6730
diff changeset
   682
		error = dmu_free_long_range(zv->zv_objset,
20c04e18c58c 6573681 deleting a very large file can be slow
maybee
parents: 6730
diff changeset
   683
		    ZVOL_OBJ, volsize, DMU_OBJECT_END);
6423
437422a29d3a PSARC 2006/370 ZFS Boot Support
gw25295
parents: 5688
diff changeset
   684
7265
cc18862247da PSARC/2008/483 ZFS clone -o
ahrens
parents: 7080
diff changeset
   685
	/*
cc18862247da PSARC/2008/483 ZFS clone -o
ahrens
parents: 7080
diff changeset
   686
	 * If we are using a faked-up state (zv_minor == 0) then don't
cc18862247da PSARC/2008/483 ZFS clone -o
ahrens
parents: 7080
diff changeset
   687
	 * try to update the in-core zvol state.
cc18862247da PSARC/2008/483 ZFS clone -o
ahrens
parents: 7080
diff changeset
   688
	 */
cc18862247da PSARC/2008/483 ZFS clone -o
ahrens
parents: 7080
diff changeset
   689
	if (error == 0 && zv->zv_minor) {
6423
437422a29d3a PSARC 2006/370 ZFS Boot Support
gw25295
parents: 5688
diff changeset
   690
		zv->zv_volsize = volsize;
437422a29d3a PSARC 2006/370 ZFS Boot Support
gw25295
parents: 5688
diff changeset
   691
		zvol_size_changed(zv, maj);
437422a29d3a PSARC 2006/370 ZFS Boot Support
gw25295
parents: 5688
diff changeset
   692
	}
437422a29d3a PSARC 2006/370 ZFS Boot Support
gw25295
parents: 5688
diff changeset
   693
	return (error);
437422a29d3a PSARC 2006/370 ZFS Boot Support
gw25295
parents: 5688
diff changeset
   694
}
437422a29d3a PSARC 2006/370 ZFS Boot Support
gw25295
parents: 5688
diff changeset
   695
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   696
int
4787
602d3f97842c 6393351 unique_* could be improved
ahrens
parents: 4543
diff changeset
   697
zvol_set_volsize(const char *name, major_t maj, uint64_t volsize)
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   698
{
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   699
	zvol_state_t *zv;
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   700
	int error;
1133
335d069294d1 6357470 vdev_raidz.c has unused RAIDZ_SINGLE define, code
eschrock
parents: 849
diff changeset
   701
	dmu_object_info_t doi;
6423
437422a29d3a PSARC 2006/370 ZFS Boot Support
gw25295
parents: 5688
diff changeset
   702
	uint64_t old_volsize = 0ULL;
7265
cc18862247da PSARC/2008/483 ZFS clone -o
ahrens
parents: 7080
diff changeset
   703
	zvol_state_t state = { 0 };
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   704
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   705
	mutex_enter(&zvol_state_lock);
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   706
2676
5cee47eddab6 PSARC 2006/486 ZFS canmount property
eschrock
parents: 2638
diff changeset
   707
	if ((zv = zvol_minor_lookup(name)) == NULL) {
7265
cc18862247da PSARC/2008/483 ZFS clone -o
ahrens
parents: 7080
diff changeset
   708
		/*
cc18862247da PSARC/2008/483 ZFS clone -o
ahrens
parents: 7080
diff changeset
   709
		 * If we are doing a "zfs clone -o volsize=", then the
cc18862247da PSARC/2008/483 ZFS clone -o
ahrens
parents: 7080
diff changeset
   710
		 * minor node won't exist yet.
cc18862247da PSARC/2008/483 ZFS clone -o
ahrens
parents: 7080
diff changeset
   711
		 */
cc18862247da PSARC/2008/483 ZFS clone -o
ahrens
parents: 7080
diff changeset
   712
		error = dmu_objset_open(name, DMU_OST_ZVOL, DS_MODE_OWNER,
cc18862247da PSARC/2008/483 ZFS clone -o
ahrens
parents: 7080
diff changeset
   713
		    &state.zv_objset);
cc18862247da PSARC/2008/483 ZFS clone -o
ahrens
parents: 7080
diff changeset
   714
		if (error != 0)
cc18862247da PSARC/2008/483 ZFS clone -o
ahrens
parents: 7080
diff changeset
   715
			goto out;
cc18862247da PSARC/2008/483 ZFS clone -o
ahrens
parents: 7080
diff changeset
   716
		zv = &state;
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   717
	}
6423
437422a29d3a PSARC 2006/370 ZFS Boot Support
gw25295
parents: 5688
diff changeset
   718
	old_volsize = zv->zv_volsize;
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   719
1133
335d069294d1 6357470 vdev_raidz.c has unused RAIDZ_SINGLE define, code
eschrock
parents: 849
diff changeset
   720
	if ((error = dmu_object_info(zv->zv_objset, ZVOL_OBJ, &doi)) != 0 ||
2676
5cee47eddab6 PSARC 2006/486 ZFS canmount property
eschrock
parents: 2638
diff changeset
   721
	    (error = zvol_check_volsize(volsize,
7265
cc18862247da PSARC/2008/483 ZFS clone -o
ahrens
parents: 7080
diff changeset
   722
	    doi.doi_data_block_size)) != 0)
cc18862247da PSARC/2008/483 ZFS clone -o
ahrens
parents: 7080
diff changeset
   723
		goto out;
1133
335d069294d1 6357470 vdev_raidz.c has unused RAIDZ_SINGLE define, code
eschrock
parents: 849
diff changeset
   724
6423
437422a29d3a PSARC 2006/370 ZFS Boot Support
gw25295
parents: 5688
diff changeset
   725
	if (zv->zv_flags & ZVOL_RDONLY || (zv->zv_mode & DS_MODE_READONLY)) {
7265
cc18862247da PSARC/2008/483 ZFS clone -o
ahrens
parents: 7080
diff changeset
   726
		error = EROFS;
cc18862247da PSARC/2008/483 ZFS clone -o
ahrens
parents: 7080
diff changeset
   727
		goto out;
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   728
	}
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   729
6423
437422a29d3a PSARC 2006/370 ZFS Boot Support
gw25295
parents: 5688
diff changeset
   730
	error = zvol_update_volsize(zv, maj, volsize);
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   731
6423
437422a29d3a PSARC 2006/370 ZFS Boot Support
gw25295
parents: 5688
diff changeset
   732
	/*
437422a29d3a PSARC 2006/370 ZFS Boot Support
gw25295
parents: 5688
diff changeset
   733
	 * Reinitialize the dump area to the new size. If we
437422a29d3a PSARC 2006/370 ZFS Boot Support
gw25295
parents: 5688
diff changeset
   734
	 * failed to resize the dump area then restore the it back to
437422a29d3a PSARC 2006/370 ZFS Boot Support
gw25295
parents: 5688
diff changeset
   735
	 * it's original size.
437422a29d3a PSARC 2006/370 ZFS Boot Support
gw25295
parents: 5688
diff changeset
   736
	 */
437422a29d3a PSARC 2006/370 ZFS Boot Support
gw25295
parents: 5688
diff changeset
   737
	if (error == 0 && zv->zv_flags & ZVOL_DUMPIFIED) {
437422a29d3a PSARC 2006/370 ZFS Boot Support
gw25295
parents: 5688
diff changeset
   738
		if ((error = zvol_dumpify(zv)) != 0 ||
437422a29d3a PSARC 2006/370 ZFS Boot Support
gw25295
parents: 5688
diff changeset
   739
		    (error = dumpvp_resize()) != 0) {
437422a29d3a PSARC 2006/370 ZFS Boot Support
gw25295
parents: 5688
diff changeset
   740
			(void) zvol_update_volsize(zv, maj, old_volsize);
437422a29d3a PSARC 2006/370 ZFS Boot Support
gw25295
parents: 5688
diff changeset
   741
			error = zvol_dumpify(zv);
437422a29d3a PSARC 2006/370 ZFS Boot Support
gw25295
parents: 5688
diff changeset
   742
		}
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   743
	}
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   744
7265
cc18862247da PSARC/2008/483 ZFS clone -o
ahrens
parents: 7080
diff changeset
   745
out:
cc18862247da PSARC/2008/483 ZFS clone -o
ahrens
parents: 7080
diff changeset
   746
	if (state.zv_objset)
cc18862247da PSARC/2008/483 ZFS clone -o
ahrens
parents: 7080
diff changeset
   747
		dmu_objset_close(state.zv_objset);
cc18862247da PSARC/2008/483 ZFS clone -o
ahrens
parents: 7080
diff changeset
   748
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   749
	mutex_exit(&zvol_state_lock);
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   750
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   751
	return (error);
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   752
}
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   753
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   754
int
2676
5cee47eddab6 PSARC 2006/486 ZFS canmount property
eschrock
parents: 2638
diff changeset
   755
zvol_set_volblocksize(const char *name, uint64_t volblocksize)
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   756
{
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   757
	zvol_state_t *zv;
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   758
	dmu_tx_t *tx;
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   759
	int error;
7837
001de5627df3 6333409 traversal code should be able to issue multiple reads in parallel
Matthew Ahrens <Matthew.Ahrens@Sun.COM>
parents: 7754
diff changeset
   760
	boolean_t needlock;
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   761
7837
001de5627df3 6333409 traversal code should be able to issue multiple reads in parallel
Matthew Ahrens <Matthew.Ahrens@Sun.COM>
parents: 7754
diff changeset
   762
	/*
001de5627df3 6333409 traversal code should be able to issue multiple reads in parallel
Matthew Ahrens <Matthew.Ahrens@Sun.COM>
parents: 7754
diff changeset
   763
	 * The lock may already be held if we are being called from
001de5627df3 6333409 traversal code should be able to issue multiple reads in parallel
Matthew Ahrens <Matthew.Ahrens@Sun.COM>
parents: 7754
diff changeset
   764
	 * zvol_dump_init().
001de5627df3 6333409 traversal code should be able to issue multiple reads in parallel
Matthew Ahrens <Matthew.Ahrens@Sun.COM>
parents: 7754
diff changeset
   765
	 */
001de5627df3 6333409 traversal code should be able to issue multiple reads in parallel
Matthew Ahrens <Matthew.Ahrens@Sun.COM>
parents: 7754
diff changeset
   766
	needlock = !MUTEX_HELD(&zvol_state_lock);
001de5627df3 6333409 traversal code should be able to issue multiple reads in parallel
Matthew Ahrens <Matthew.Ahrens@Sun.COM>
parents: 7754
diff changeset
   767
	if (needlock)
001de5627df3 6333409 traversal code should be able to issue multiple reads in parallel
Matthew Ahrens <Matthew.Ahrens@Sun.COM>
parents: 7754
diff changeset
   768
		mutex_enter(&zvol_state_lock);
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   769
2676
5cee47eddab6 PSARC 2006/486 ZFS canmount property
eschrock
parents: 2638
diff changeset
   770
	if ((zv = zvol_minor_lookup(name)) == NULL) {
7837
001de5627df3 6333409 traversal code should be able to issue multiple reads in parallel
Matthew Ahrens <Matthew.Ahrens@Sun.COM>
parents: 7754
diff changeset
   771
		if (needlock)
001de5627df3 6333409 traversal code should be able to issue multiple reads in parallel
Matthew Ahrens <Matthew.Ahrens@Sun.COM>
parents: 7754
diff changeset
   772
			mutex_exit(&zvol_state_lock);
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   773
		return (ENXIO);
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   774
	}
6423
437422a29d3a PSARC 2006/370 ZFS Boot Support
gw25295
parents: 5688
diff changeset
   775
	if (zv->zv_flags & ZVOL_RDONLY || (zv->zv_mode & DS_MODE_READONLY)) {
7837
001de5627df3 6333409 traversal code should be able to issue multiple reads in parallel
Matthew Ahrens <Matthew.Ahrens@Sun.COM>
parents: 7754
diff changeset
   776
		if (needlock)
001de5627df3 6333409 traversal code should be able to issue multiple reads in parallel
Matthew Ahrens <Matthew.Ahrens@Sun.COM>
parents: 7754
diff changeset
   777
			mutex_exit(&zvol_state_lock);
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   778
		return (EROFS);
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   779
	}
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   780
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   781
	tx = dmu_tx_create(zv->zv_objset);
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   782
	dmu_tx_hold_bonus(tx, ZVOL_OBJ);
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   783
	error = dmu_tx_assign(tx, TXG_WAIT);
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   784
	if (error) {
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   785
		dmu_tx_abort(tx);
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   786
	} else {
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   787
		error = dmu_object_set_blocksize(zv->zv_objset, ZVOL_OBJ,
2676
5cee47eddab6 PSARC 2006/486 ZFS canmount property
eschrock
parents: 2638
diff changeset
   788
		    volblocksize, 0, tx);
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   789
		if (error == ENOTSUP)
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   790
			error = EBUSY;
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   791
		dmu_tx_commit(tx);
7837
001de5627df3 6333409 traversal code should be able to issue multiple reads in parallel
Matthew Ahrens <Matthew.Ahrens@Sun.COM>
parents: 7754
diff changeset
   792
		if (error == 0)
001de5627df3 6333409 traversal code should be able to issue multiple reads in parallel
Matthew Ahrens <Matthew.Ahrens@Sun.COM>
parents: 7754
diff changeset
   793
			zv->zv_volblocksize = volblocksize;
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   794
	}
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   795
7837
001de5627df3 6333409 traversal code should be able to issue multiple reads in parallel
Matthew Ahrens <Matthew.Ahrens@Sun.COM>
parents: 7754
diff changeset
   796
	if (needlock)
001de5627df3 6333409 traversal code should be able to issue multiple reads in parallel
Matthew Ahrens <Matthew.Ahrens@Sun.COM>
parents: 7754
diff changeset
   797
		mutex_exit(&zvol_state_lock);
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   798
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   799
	return (error);
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   800
}
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   801
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   802
/*ARGSUSED*/
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   803
int
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   804
zvol_open(dev_t *devp, int flag, int otyp, cred_t *cr)
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   805
{
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   806
	minor_t minor = getminor(*devp);
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   807
	zvol_state_t *zv;
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   808
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   809
	if (minor == 0)			/* This is the control device */
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   810
		return (0);
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   811
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   812
	mutex_enter(&zvol_state_lock);
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   813
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   814
	zv = ddi_get_soft_state(zvol_state, minor);
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   815
	if (zv == NULL) {
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   816
		mutex_exit(&zvol_state_lock);
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   817
		return (ENXIO);
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   818
	}
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   819
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   820
	ASSERT(zv->zv_objset != NULL);
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   821
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   822
	if ((flag & FWRITE) &&
6423
437422a29d3a PSARC 2006/370 ZFS Boot Support
gw25295
parents: 5688
diff changeset
   823
	    (zv->zv_flags & ZVOL_RDONLY || (zv->zv_mode & DS_MODE_READONLY))) {
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   824
		mutex_exit(&zvol_state_lock);
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   825
		return (EROFS);
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   826
	}
7405
22b4aeef8023 6612759 zvol DKIOCGETEFI should return GPT and GPE when possible
Eric Taylor <Eric.Taylor@Sun.COM>
parents: 7294
diff changeset
   827
	if (zv->zv_flags & ZVOL_EXCL) {
22b4aeef8023 6612759 zvol DKIOCGETEFI should return GPT and GPE when possible
Eric Taylor <Eric.Taylor@Sun.COM>
parents: 7294
diff changeset
   828
		mutex_exit(&zvol_state_lock);
22b4aeef8023 6612759 zvol DKIOCGETEFI should return GPT and GPE when possible
Eric Taylor <Eric.Taylor@Sun.COM>
parents: 7294
diff changeset
   829
		return (EBUSY);
22b4aeef8023 6612759 zvol DKIOCGETEFI should return GPT and GPE when possible
Eric Taylor <Eric.Taylor@Sun.COM>
parents: 7294
diff changeset
   830
	}
22b4aeef8023 6612759 zvol DKIOCGETEFI should return GPT and GPE when possible
Eric Taylor <Eric.Taylor@Sun.COM>
parents: 7294
diff changeset
   831
	if (flag & FEXCL) {
22b4aeef8023 6612759 zvol DKIOCGETEFI should return GPT and GPE when possible
Eric Taylor <Eric.Taylor@Sun.COM>
parents: 7294
diff changeset
   832
		if (zv->zv_total_opens != 0) {
22b4aeef8023 6612759 zvol DKIOCGETEFI should return GPT and GPE when possible
Eric Taylor <Eric.Taylor@Sun.COM>
parents: 7294
diff changeset
   833
			mutex_exit(&zvol_state_lock);
22b4aeef8023 6612759 zvol DKIOCGETEFI should return GPT and GPE when possible
Eric Taylor <Eric.Taylor@Sun.COM>
parents: 7294
diff changeset
   834
			return (EBUSY);
22b4aeef8023 6612759 zvol DKIOCGETEFI should return GPT and GPE when possible
Eric Taylor <Eric.Taylor@Sun.COM>
parents: 7294
diff changeset
   835
		}
22b4aeef8023 6612759 zvol DKIOCGETEFI should return GPT and GPE when possible
Eric Taylor <Eric.Taylor@Sun.COM>
parents: 7294
diff changeset
   836
		zv->zv_flags |= ZVOL_EXCL;
22b4aeef8023 6612759 zvol DKIOCGETEFI should return GPT and GPE when possible
Eric Taylor <Eric.Taylor@Sun.COM>
parents: 7294
diff changeset
   837
	}
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   838
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   839
	if (zv->zv_open_count[otyp] == 0 || otyp == OTYP_LYR) {
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   840
		zv->zv_open_count[otyp]++;
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   841
		zv->zv_total_opens++;
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   842
	}
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   843
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   844
	mutex_exit(&zvol_state_lock);
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   845
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   846
	return (0);
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   847
}
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   848
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   849
/*ARGSUSED*/
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   850
int
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   851
zvol_close(dev_t dev, int flag, int otyp, cred_t *cr)
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   852
{
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   853
	minor_t minor = getminor(dev);
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   854
	zvol_state_t *zv;
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   855
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   856
	if (minor == 0)		/* This is the control device */
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   857
		return (0);
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   858
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   859
	mutex_enter(&zvol_state_lock);
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   860
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   861
	zv = ddi_get_soft_state(zvol_state, minor);
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   862
	if (zv == NULL) {
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   863
		mutex_exit(&zvol_state_lock);
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   864
		return (ENXIO);
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   865
	}
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   866
7405
22b4aeef8023 6612759 zvol DKIOCGETEFI should return GPT and GPE when possible
Eric Taylor <Eric.Taylor@Sun.COM>
parents: 7294
diff changeset
   867
	if (zv->zv_flags & ZVOL_EXCL) {
22b4aeef8023 6612759 zvol DKIOCGETEFI should return GPT and GPE when possible
Eric Taylor <Eric.Taylor@Sun.COM>
parents: 7294
diff changeset
   868
		ASSERT(zv->zv_total_opens == 1);
22b4aeef8023 6612759 zvol DKIOCGETEFI should return GPT and GPE when possible
Eric Taylor <Eric.Taylor@Sun.COM>
parents: 7294
diff changeset
   869
		zv->zv_flags &= ~ZVOL_EXCL;
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   870
	}
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   871
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   872
	/*
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   873
	 * If the open count is zero, this is a spurious close.
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   874
	 * That indicates a bug in the kernel / DDI framework.
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   875
	 */
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   876
	ASSERT(zv->zv_open_count[otyp] != 0);
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   877
	ASSERT(zv->zv_total_opens != 0);
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   878
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   879
	/*
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   880
	 * You may get multiple opens, but only one close.
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   881
	 */
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   882
	zv->zv_open_count[otyp]--;
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   883
	zv->zv_total_opens--;
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   884
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   885
	mutex_exit(&zvol_state_lock);
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   886
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   887
	return (0);
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   888
}
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
   889
3638
6b28ebc717aa 6496357 spec_fsync() is useless on devices that do write caching
billm
parents: 3461
diff changeset
   890
static void
3063
b252896b372b 6341569 zio_alloc_blk() vdev distribution performs badly
perrin
parents: 3016
diff changeset
   891
zvol_get_done(dmu_buf_t *db, void *vzgd)
b252896b372b 6341569 zio_alloc_blk() vdev distribution performs badly
perrin
parents: 3016
diff changeset
   892
{
b252896b372b 6341569 zio_alloc_blk() vdev distribution performs badly
perrin
parents: 3016
diff changeset
   893
	zgd_t *zgd = (zgd_t *)vzgd;
3755
8708c35cb823 6525008 panic: dr->dt.dl.dr_override_state != DR_IN_DMU_SYNC, file: ../../common/fs/zfs/dbuf.c, line: 676
perrin
parents: 3638
diff changeset
   894
	rl_t *rl = zgd->zgd_rl;
3063
b252896b372b 6341569 zio_alloc_blk() vdev distribution performs badly
perrin
parents: 3016
diff changeset
   895
b252896b372b 6341569 zio_alloc_blk() vdev distribution performs badly
perrin
parents: 3016
diff changeset
   896
	dmu_buf_rele(db, vzgd);
3755
8708c35cb823 6525008 panic: dr->dt.dl.dr_override_state != DR_IN_DMU_SYNC, file: ../../common/fs/zfs/dbuf.c, line: 676
perrin
parents: 3638
diff changeset
   897
	zfs_range_unlock(rl);
5688
c0b02c8fd2c0 6640580 spa_get_random() is insanely slow in userland
bonwick
parents: 5331
diff changeset
   898
	zil_add_block(zgd->zgd_zilog, zgd->zgd_bp);
3063
b252896b372b 6341569 zio_alloc_blk() vdev distribution performs badly
perrin
parents: 3016
diff changeset
   899
	kmem_free(zgd, sizeof (zgd_t));
b252896b372b 6341569 zio_alloc_blk() vdev distribution performs badly
perrin
parents: 3016
diff changeset
   900
}
b252896b372b 6341569 zio_alloc_blk() vdev distribution performs badly
perrin
parents: 3016
diff changeset
   901
b252896b372b 6341569 zio_alloc_blk() vdev distribution performs badly
perrin
parents: 3016
diff changeset
   902
/*
b252896b372b 6341569 zio_alloc_blk() vdev distribution performs badly
perrin
parents: 3016
diff changeset
   903
 * Get data to generate a TX_WRITE intent log record.
b252896b372b 6341569 zio_alloc_blk() vdev distribution performs badly
perrin
parents: 3016
diff changeset
   904
 */
3638
6b28ebc717aa 6496357 spec_fsync() is useless on devices that do write caching
billm
parents: 3461
diff changeset
   905
static int
3063
b252896b372b 6341569 zio_alloc_blk() vdev distribution performs badly
perrin
parents: 3016
diff changeset
   906
zvol_get_data(void *arg, lr_write_t *lr, char *buf, zio_t *zio)
b252896b372b 6341569 zio_alloc_blk() vdev distribution performs badly
perrin
parents: 3016
diff changeset
   907
{
b252896b372b 6341569 zio_alloc_blk() vdev distribution performs badly
perrin
parents: 3016
diff changeset
   908
	zvol_state_t *zv = arg;
b252896b372b 6341569 zio_alloc_blk() vdev distribution performs badly
perrin
parents: 3016
diff changeset
   909
	objset_t *os = zv->zv_objset;
b252896b372b 6341569 zio_alloc_blk() vdev distribution performs badly
perrin
parents: 3016
diff changeset
   910
	dmu_buf_t *db;
3755
8708c35cb823 6525008 panic: dr->dt.dl.dr_override_state != DR_IN_DMU_SYNC, file: ../../common/fs/zfs/dbuf.c, line: 676
perrin
parents: 3638
diff changeset
   911
	rl_t *rl;
3063
b252896b372b 6341569 zio_alloc_blk() vdev distribution performs badly
perrin
parents: 3016
diff changeset
   912
	zgd_t *zgd;
3755
8708c35cb823 6525008 panic: dr->dt.dl.dr_override_state != DR_IN_DMU_SYNC, file: ../../common/fs/zfs/dbuf.c, line: 676
perrin
parents: 3638
diff changeset
   913
	uint64_t boff; 			/* block starting offset */
8708c35cb823 6525008 panic: dr->dt.dl.dr_override_state != DR_IN_DMU_SYNC, file: ../../common/fs/zfs/dbuf.c, line: 676
perrin
parents: 3638
diff changeset
   914
	int dlen = lr->lr_length;	/* length of user data */
3063
b252896b372b 6341569 zio_alloc_blk() vdev distribution performs badly
perrin
parents: 3016
diff changeset
   915
	int error;
b252896b372b 6341569 zio_alloc_blk() vdev distribution performs badly
perrin
parents: 3016
diff changeset
   916
b252896b372b 6341569 zio_alloc_blk() vdev distribution performs badly
perrin
parents: 3016
diff changeset
   917
	ASSERT(zio);
3755
8708c35cb823 6525008 panic: dr->dt.dl.dr_override_state != DR_IN_DMU_SYNC, file: ../../common/fs/zfs/dbuf.c, line: 676
perrin
parents: 3638
diff changeset
   918
	ASSERT(dlen != 0);
3638
6b28ebc717aa 6496357 spec_fsync() is useless on devices that do write caching
billm
parents: 3461
diff changeset
   919
3755
8708c35cb823 6525008 panic: dr->dt.dl.dr_override_state != DR_IN_DMU_SYNC, file: ../../common/fs/zfs/dbuf.c, line: 676
perrin
parents: 3638
diff changeset
   920
	/*
8708c35cb823 6525008 panic: dr->dt.dl.dr_override_state != DR_IN_DMU_SYNC, file: ../../common/fs/zfs/dbuf.c, line: 676
perrin
parents: 3638
diff changeset
   921
	 * Write records come in two flavors: immediate and indirect.
8708c35cb823 6525008 panic: dr->dt.dl.dr_override_state != DR_IN_DMU_SYNC, file: ../../common/fs/zfs/dbuf.c, line: 676
perrin
parents: 3638
diff changeset
   922
	 * For small writes it's cheaper to store the data with the
8708c35cb823 6525008 panic: dr->dt.dl.dr_override_state != DR_IN_DMU_SYNC, file: ../../common/fs/zfs/dbuf.c, line: 676
perrin
parents: 3638
diff changeset
   923
	 * log record (immediate); for large writes it's cheaper to
8708c35cb823 6525008 panic: dr->dt.dl.dr_override_state != DR_IN_DMU_SYNC, file: ../../common/fs/zfs/dbuf.c, line: 676
perrin
parents: 3638
diff changeset
   924
	 * sync the data and get a pointer to it (indirect) so that
8708c35cb823 6525008 panic: dr->dt.dl.dr_override_state != DR_IN_DMU_SYNC, file: ../../common/fs/zfs/dbuf.c, line: 676
perrin
parents: 3638
diff changeset
   925
	 * we don't have to write the data twice.
8708c35cb823 6525008 panic: dr->dt.dl.dr_override_state != DR_IN_DMU_SYNC, file: ../../common/fs/zfs/dbuf.c, line: 676
perrin
parents: 3638
diff changeset
   926
	 */
8708c35cb823 6525008 panic: dr->dt.dl.dr_override_state != DR_IN_DMU_SYNC, file: ../../common/fs/zfs/dbuf.c, line: 676
perrin
parents: 3638
diff changeset
   927
	if (buf != NULL) /* immediate write */
8708c35cb823 6525008 panic: dr->dt.dl.dr_override_state != DR_IN_DMU_SYNC, file: ../../common/fs/zfs/dbuf.c, line: 676
perrin
parents: 3638
diff changeset
   928
		return (dmu_read(os, ZVOL_OBJ, lr->lr_offset, dlen, buf));
3063
b252896b372b 6341569 zio_alloc_blk() vdev distribution performs badly
perrin
parents: 3016
diff changeset
   929
b252896b372b 6341569 zio_alloc_blk() vdev distribution performs badly
perrin
parents: 3016
diff changeset
   930
	zgd = (zgd_t *)kmem_alloc(sizeof (zgd_t), KM_SLEEP);
b252896b372b 6341569 zio_alloc_blk() vdev distribution performs badly
perrin
parents: 3016
diff changeset
   931
	zgd->zgd_zilog = zv->zv_zilog;
b252896b372b 6341569 zio_alloc_blk() vdev distribution performs badly
perrin
parents: 3016
diff changeset
   932
	zgd->zgd_bp = &lr->lr_blkptr;
b252896b372b 6341569 zio_alloc_blk() vdev distribution performs badly
perrin
parents: 3016
diff changeset
   933
3755
8708c35cb823 6525008 panic: dr->dt.dl.dr_override_state != DR_IN_DMU_SYNC, file: ../../common/fs/zfs/dbuf.c, line: 676
perrin
parents: 3638
diff changeset
   934
	/*
8708c35cb823 6525008 panic: dr->dt.dl.dr_override_state != DR_IN_DMU_SYNC, file: ../../common/fs/zfs/dbuf.c, line: 676
perrin
parents: 3638
diff changeset
   935
	 * Lock the range of the block to ensure that when the data is
6423
437422a29d3a PSARC 2006/370 ZFS Boot Support
gw25295
parents: 5688
diff changeset
   936
	 * written out and its checksum is being calculated that no other
3755
8708c35cb823 6525008 panic: dr->dt.dl.dr_override_state != DR_IN_DMU_SYNC, file: ../../common/fs/zfs/dbuf.c, line: 676
perrin
parents: 3638
diff changeset
   937
	 * thread can change the block.
8708c35cb823 6525008 panic: dr->dt.dl.dr_override_state != DR_IN_DMU_SYNC, file: ../../common/fs/zfs/dbuf.c, line: 676
perrin
parents: 3638
diff changeset
   938
	 */
8708c35cb823 6525008 panic: dr->dt.dl.dr_override_state != DR_IN_DMU_SYNC, file: ../../common/fs/zfs/dbuf.c, line: 676
perrin
parents: 3638
diff changeset
   939
	boff = P2ALIGN_TYPED(lr->lr_offset, zv->zv_volblocksize, uint64_t);
8708c35cb823 6525008 panic: dr->dt.dl.dr_override_state != DR_IN_DMU_SYNC, file: ../../common/fs/zfs/dbuf.c, line: 676
perrin
parents: 3638
diff changeset
   940
	rl = zfs_range_lock(&zv->zv_znode, boff, zv->zv_volblocksize,
8708c35cb823 6525008 panic: dr->dt.dl.dr_override_state != DR_IN_DMU_SYNC, file: ../../common/fs/zfs/dbuf.c, line: 676
perrin
parents: 3638
diff changeset
   941
	    RL_READER);
8708c35cb823 6525008 panic: dr->dt.dl.dr_override_state != DR_IN_DMU_SYNC, file: ../../common/fs/zfs/dbuf.c, line: 676
perrin
parents: 3638
diff changeset
   942
	zgd->zgd_rl = rl;
8708c35cb823 6525008 panic: dr->dt.dl.dr_override_state != DR_IN_DMU_SYNC, file: ../../common/fs/zfs/dbuf.c, line: 676
perrin
parents: 3638
diff changeset
   943
3063
b252896b372b 6341569 zio_alloc_blk() vdev distribution performs badly
perrin
parents: 3016
diff changeset
   944
	VERIFY(0 == dmu_buf_hold(os, ZVOL_OBJ, lr->lr_offset, zgd, &db));
b252896b372b 6341569 zio_alloc_blk() vdev distribution performs badly
perrin
parents: 3016
diff changeset
   945
	error = dmu_sync(zio, db, &lr->lr_blkptr,
b252896b372b 6341569 zio_alloc_blk() vdev distribution performs badly
perrin
parents: 3016
diff changeset
   946
	    lr->lr_common.lrc_txg, zvol_get_done, zgd);
3638
6b28ebc717aa 6496357 spec_fsync() is useless on devices that do write caching
billm
parents: 3461
diff changeset
   947
	if (error == 0)
5688
c0b02c8fd2c0 6640580 spa_get_random() is insanely slow in userland
bonwick
parents: 5331
diff changeset
   948
		zil_add_block(zv->zv_zilog, &lr->lr_blkptr);
3063
b252896b372b 6341569 zio_alloc_blk() vdev distribution performs badly
perrin
parents: 3016
diff changeset
   949
	/*
b252896b372b 6341569 zio_alloc_blk() vdev distribution performs badly
perrin
parents: 3016
diff changeset
   950
	 * If we get EINPROGRESS, then we need to wait for a
b252896b372b 6341569 zio_alloc_blk() vdev distribution performs badly
perrin
parents: 3016
diff changeset
   951
	 * write IO initiated by dmu_sync() to complete before
b252896b372b 6341569 zio_alloc_blk() vdev distribution performs badly
perrin
parents: 3016
diff changeset
   952
	 * we can release this dbuf.  We will finish everything
b252896b372b 6341569 zio_alloc_blk() vdev distribution performs badly
perrin
parents: 3016
diff changeset
   953
	 * up in the zvol_get_done() callback.
b252896b372b 6341569 zio_alloc_blk() vdev distribution performs badly
perrin
parents: 3016
diff changeset
   954
	 */
b252896b372b 6341569 zio_alloc_blk() vdev distribution performs badly
perrin
parents: 3016
diff changeset
   955
	if (error == EINPROGRESS)
b252896b372b 6341569 zio_alloc_blk() vdev distribution performs badly
perrin
parents: 3016
diff changeset
   956
		return (0);
b252896b372b 6341569 zio_alloc_blk() vdev distribution performs badly
perrin
parents: 3016
diff changeset
   957
	dmu_buf_rele(db, zgd);
3755
8708c35cb823 6525008 panic: dr->dt.dl.dr_override_state != DR_IN_DMU_SYNC, file: ../../common/fs/zfs/dbuf.c, line: 676
perrin
parents: 3638
diff changeset
   958
	zfs_range_unlock(rl);
3063
b252896b372b 6341569 zio_alloc_blk() vdev distribution performs badly
perrin
parents: 3016
diff changeset
   959
	kmem_free(zgd, sizeof (zgd_t));
b252896b372b 6341569 zio_alloc_blk() vdev distribution performs badly
perrin
parents: 3016
diff changeset
   960
	return (error);
b252896b372b 6341569 zio_alloc_blk() vdev distribution performs badly
perrin
parents: 3016
diff changeset
   961
}
b252896b372b 6341569 zio_alloc_blk() vdev distribution performs badly
perrin
parents: 3016
diff changeset
   962
1861
7929434f26fb 6413125 zvol_strategy() race can lead to on-disk corruption.
perrin
parents: 1669
diff changeset
   963
/*
7929434f26fb 6413125 zvol_strategy() race can lead to on-disk corruption.
perrin
parents: 1669
diff changeset
   964
 * zvol_log_write() handles synchronous writes using TX_WRITE ZIL transactions.
1141
ca4bb9237a10 6354547 sticky log buf size
perrin
parents: 1133
diff changeset
   965
 *
ca4bb9237a10 6354547 sticky log buf size
perrin
parents: 1133
diff changeset
   966
 * We store data in the log buffers if it's small enough.
3063
b252896b372b 6341569 zio_alloc_blk() vdev distribution performs badly
perrin
parents: 3016
diff changeset
   967
 * Otherwise we will later flush the data out via dmu_sync().
1141
ca4bb9237a10 6354547 sticky log buf size
perrin
parents: 1133
diff changeset
   968
 */
3063
b252896b372b 6341569 zio_alloc_blk() vdev distribution performs badly
perrin
parents: 3016
diff changeset
   969
ssize_t zvol_immediate_write_sz = 32768;
1141
ca4bb9237a10 6354547 sticky log buf size
perrin
parents: 1133
diff changeset
   970
3638
6b28ebc717aa 6496357 spec_fsync() is useless on devices that do write caching
billm
parents: 3461
diff changeset
   971
static void
6b28ebc717aa 6496357 spec_fsync() is useless on devices that do write caching
billm
parents: 3461
diff changeset
   972
zvol_log_write(zvol_state_t *zv, dmu_tx_t *tx, offset_t off, ssize_t len)
1141
ca4bb9237a10 6354547 sticky log buf size
perrin
parents: 1133
diff changeset
   973
{
3638
6b28ebc717aa 6496357 spec_fsync() is useless on devices that do write caching
billm
parents: 3461
diff changeset
   974
	uint32_t blocksize = zv->zv_volblocksize;
8227
f7d7be9b1f56 6765294 Refactor replay
Neil Perrin <Neil.Perrin@Sun.COM>
parents: 7903
diff changeset
   975
	zilog_t *zilog = zv->zv_zilog;
1141
ca4bb9237a10 6354547 sticky log buf size
perrin
parents: 1133
diff changeset
   976
	lr_write_t *lr;
1861
7929434f26fb 6413125 zvol_strategy() race can lead to on-disk corruption.
perrin
parents: 1669
diff changeset
   977
8227
f7d7be9b1f56 6765294 Refactor replay
Neil Perrin <Neil.Perrin@Sun.COM>
parents: 7903
diff changeset
   978
	if (zilog->zl_replay) {
f7d7be9b1f56 6765294 Refactor replay
Neil Perrin <Neil.Perrin@Sun.COM>
parents: 7903
diff changeset
   979
		dsl_dataset_dirty(dmu_objset_ds(zilog->zl_os), tx);
f7d7be9b1f56 6765294 Refactor replay
Neil Perrin <Neil.Perrin@Sun.COM>
parents: 7903
diff changeset
   980
		zilog->zl_replayed_seq[dmu_tx_get_txg(tx) & TXG_MASK] =
f7d7be9b1f56 6765294 Refactor replay
Neil Perrin <Neil.Perrin@Sun.COM>
parents: 7903
diff changeset
   981
		    zilog->zl_replaying_seq;
f7d7be9b1f56 6765294 Refactor replay
Neil Perrin <Neil.Perrin@Sun.COM>
parents: 7903
diff changeset
   982
		return;
f7d7be9b1f56 6765294 Refactor replay
Neil Perrin <Neil.Perrin@Sun.COM>
parents: 7903
diff changeset
   983
	}
f7d7be9b1f56 6765294 Refactor replay
Neil Perrin <Neil.Perrin@Sun.COM>
parents: 7903
diff changeset
   984
1861
7929434f26fb 6413125 zvol_strategy() race can lead to on-disk corruption.
perrin
parents: 1669
diff changeset
   985
	while (len) {
3638
6b28ebc717aa 6496357 spec_fsync() is useless on devices that do write caching
billm
parents: 3461
diff changeset
   986
		ssize_t nbytes = MIN(len, blocksize - P2PHASE(off, blocksize));
6b28ebc717aa 6496357 spec_fsync() is useless on devices that do write caching
billm
parents: 3461
diff changeset
   987
		itx_t *itx = zil_itx_create(TX_WRITE, sizeof (*lr));
6b28ebc717aa 6496357 spec_fsync() is useless on devices that do write caching
billm
parents: 3461
diff changeset
   988
6b28ebc717aa 6496357 spec_fsync() is useless on devices that do write caching
billm
parents: 3461
diff changeset
   989
		itx->itx_wr_state =
6b28ebc717aa 6496357 spec_fsync() is useless on devices that do write caching
billm
parents: 3461
diff changeset
   990
		    len > zvol_immediate_write_sz ?  WR_INDIRECT : WR_NEED_COPY;
6b28ebc717aa 6496357 spec_fsync() is useless on devices that do write caching
billm
parents: 3461
diff changeset
   991
		itx->itx_private = zv;
6b28ebc717aa 6496357 spec_fsync() is useless on devices that do write caching
billm
parents: 3461
diff changeset
   992
		lr = (lr_write_t *)&itx->itx_lr;
6b28ebc717aa 6496357 spec_fsync() is useless on devices that do write caching
billm
parents: 3461
diff changeset
   993
		lr->lr_foid = ZVOL_OBJ;
6b28ebc717aa 6496357 spec_fsync() is useless on devices that do write caching
billm
parents: 3461
diff changeset
   994
		lr->lr_offset = off;
6b28ebc717aa 6496357 spec_fsync() is useless on devices that do write caching
billm
parents: 3461
diff changeset
   995
		lr->lr_length = nbytes;
6b28ebc717aa 6496357 spec_fsync() is useless on devices that do write caching
billm
parents: 3461
diff changeset
   996
		lr->lr_blkoff = off - P2ALIGN_TYPED(off, blocksize, uint64_t);
6b28ebc717aa 6496357 spec_fsync() is useless on devices that do write caching
billm
parents: 3461
diff changeset
   997
		BP_ZERO(&lr->lr_blkptr);
6b28ebc717aa 6496357 spec_fsync() is useless on devices that do write caching
billm
parents: 3461
diff changeset
   998
8227
f7d7be9b1f56 6765294 Refactor replay
Neil Perrin <Neil.Perrin@Sun.COM>
parents: 7903
diff changeset
   999
		(void) zil_itx_assign(zilog, itx, tx);
1861
7929434f26fb 6413125 zvol_strategy() race can lead to on-disk corruption.
perrin
parents: 1669
diff changeset
  1000
		len -= nbytes;
7929434f26fb 6413125 zvol_strategy() race can lead to on-disk corruption.
perrin
parents: 1669
diff changeset
  1001
		off += nbytes;
1141
ca4bb9237a10 6354547 sticky log buf size
perrin
parents: 1133
diff changeset
  1002
	}
ca4bb9237a10 6354547 sticky log buf size
perrin
parents: 1133
diff changeset
  1003
}
ca4bb9237a10 6354547 sticky log buf size
perrin
parents: 1133
diff changeset
  1004
7837
001de5627df3 6333409 traversal code should be able to issue multiple reads in parallel
Matthew Ahrens <Matthew.Ahrens@Sun.COM>
parents: 7754
diff changeset
  1005
static int
001de5627df3 6333409 traversal code should be able to issue multiple reads in parallel
Matthew Ahrens <Matthew.Ahrens@Sun.COM>
parents: 7754
diff changeset
  1006
zvol_dumpio_vdev(vdev_t *vd, void *addr, uint64_t offset, uint64_t size,
001de5627df3 6333409 traversal code should be able to issue multiple reads in parallel
Matthew Ahrens <Matthew.Ahrens@Sun.COM>
parents: 7754
diff changeset
  1007
    boolean_t doread, boolean_t isdump)
6423
437422a29d3a PSARC 2006/370 ZFS Boot Support
gw25295
parents: 5688
diff changeset
  1008
{
437422a29d3a PSARC 2006/370 ZFS Boot Support
gw25295
parents: 5688
diff changeset
  1009
	vdev_disk_t *dvd;
437422a29d3a PSARC 2006/370 ZFS Boot Support
gw25295
parents: 5688
diff changeset
  1010
	int c;
437422a29d3a PSARC 2006/370 ZFS Boot Support
gw25295
parents: 5688
diff changeset
  1011
	int numerrors = 0;
437422a29d3a PSARC 2006/370 ZFS Boot Support
gw25295
parents: 5688
diff changeset
  1012
437422a29d3a PSARC 2006/370 ZFS Boot Support
gw25295
parents: 5688
diff changeset
  1013
	for (c = 0; c < vd->vdev_children; c++) {
7837
001de5627df3 6333409 traversal code should be able to issue multiple reads in parallel
Matthew Ahrens <Matthew.Ahrens@Sun.COM>
parents: 7754
diff changeset
  1014
		ASSERT(vd->vdev_ops == &vdev_mirror_ops);
001de5627df3 6333409 traversal code should be able to issue multiple reads in parallel
Matthew Ahrens <Matthew.Ahrens@Sun.COM>
parents: 7754
diff changeset
  1015
		int err = zvol_dumpio_vdev(vd->vdev_child[c],
001de5627df3 6333409 traversal code should be able to issue multiple reads in parallel
Matthew Ahrens <Matthew.Ahrens@Sun.COM>
parents: 7754
diff changeset
  1016
		    addr, offset, size, doread, isdump);
001de5627df3 6333409 traversal code should be able to issue multiple reads in parallel
Matthew Ahrens <Matthew.Ahrens@Sun.COM>
parents: 7754
diff changeset
  1017
		if (err != 0) {
6423
437422a29d3a PSARC 2006/370 ZFS Boot Support
gw25295
parents: 5688
diff changeset
  1018
			numerrors++;
7837
001de5627df3 6333409 traversal code should be able to issue multiple reads in parallel
Matthew Ahrens <Matthew.Ahrens@Sun.COM>
parents: 7754
diff changeset
  1019
		} else if (doread) {
6423
437422a29d3a PSARC 2006/370 ZFS Boot Support
gw25295
parents: 5688
diff changeset
  1020
			break;
437422a29d3a PSARC 2006/370 ZFS Boot Support
gw25295
parents: 5688
diff changeset
  1021
		}
437422a29d3a PSARC 2006/370 ZFS Boot Support
gw25295
parents: 5688
diff changeset
  1022
	}
437422a29d3a PSARC 2006/370 ZFS Boot Support
gw25295
parents: 5688
diff changeset
  1023
437422a29d3a PSARC 2006/370 ZFS Boot Support
gw25295
parents: 5688
diff changeset
  1024
	if (!vd->vdev_ops->vdev_op_leaf)
437422a29d3a PSARC 2006/370 ZFS Boot Support
gw25295
parents: 5688
diff changeset
  1025
		return (numerrors < vd->vdev_children ? 0 : EIO);
437422a29d3a PSARC 2006/370 ZFS Boot Support
gw25295
parents: 5688
diff changeset
  1026
7903
4c8fa38f91ec 6760985 assertion failure with dump device on pool with non-writeable vdev
Eric Taylor <Eric.Taylor@Sun.COM>
parents: 7872
diff changeset
  1027
	if (doread && !vdev_readable(vd))
4c8fa38f91ec 6760985 assertion failure with dump device on pool with non-writeable vdev
Eric Taylor <Eric.Taylor@Sun.COM>
parents: 7872
diff changeset
  1028
		return (EIO);
4c8fa38f91ec 6760985 assertion failure with dump device on pool with non-writeable vdev
Eric Taylor <Eric.Taylor@Sun.COM>
parents: 7872
diff changeset
  1029
	else if (!doread && !vdev_writeable(vd))
6423
437422a29d3a PSARC 2006/370 ZFS Boot Support
gw25295
parents: 5688
diff changeset
  1030
		return (EIO);
437422a29d3a PSARC 2006/370 ZFS Boot Support
gw25295
parents: 5688
diff changeset
  1031
437422a29d3a PSARC 2006/370 ZFS Boot Support
gw25295
parents: 5688
diff changeset
  1032
	dvd = vd->vdev_tsd;
437422a29d3a PSARC 2006/370 ZFS Boot Support
gw25295
parents: 5688
diff changeset
  1033
	ASSERT3P(dvd, !=, NULL);
437422a29d3a PSARC 2006/370 ZFS Boot Support
gw25295
parents: 5688
diff changeset
  1034
	offset += VDEV_LABEL_START_SIZE;
437422a29d3a PSARC 2006/370 ZFS Boot Support
gw25295
parents: 5688
diff changeset
  1035
437422a29d3a PSARC 2006/370 ZFS Boot Support
gw25295
parents: 5688
diff changeset
  1036
	if (ddi_in_panic() || isdump) {
7837
001de5627df3 6333409 traversal code should be able to issue multiple reads in parallel
Matthew Ahrens <Matthew.Ahrens@Sun.COM>
parents: 7754
diff changeset
  1037
		ASSERT(!doread);
001de5627df3 6333409 traversal code should be able to issue multiple reads in parallel
Matthew Ahrens <Matthew.Ahrens@Sun.COM>
parents: 7754
diff changeset
  1038
		if (doread)
6423
437422a29d3a PSARC 2006/370 ZFS Boot Support
gw25295
parents: 5688
diff changeset
  1039
			return (EIO);
437422a29d3a PSARC 2006/370 ZFS Boot Support
gw25295
parents: 5688
diff changeset
  1040
		return (ldi_dump(dvd->vd_lh, addr, lbtodb(offset),
437422a29d3a PSARC 2006/370 ZFS Boot Support
gw25295
parents: 5688
diff changeset
  1041
		    lbtodb(size)));
437422a29d3a PSARC 2006/370 ZFS Boot Support
gw25295
parents: 5688
diff changeset
  1042
	} else {
437422a29d3a PSARC 2006/370 ZFS Boot Support
gw25295
parents: 5688
diff changeset
  1043
		return (vdev_disk_physio(dvd->vd_lh, addr, size, offset,
7837
001de5627df3 6333409 traversal code should be able to issue multiple reads in parallel
Matthew Ahrens <Matthew.Ahrens@Sun.COM>
parents: 7754
diff changeset
  1044
		    doread ? B_READ : B_WRITE));
6423
437422a29d3a PSARC 2006/370 ZFS Boot Support
gw25295
parents: 5688
diff changeset
  1045
	}
437422a29d3a PSARC 2006/370 ZFS Boot Support
gw25295
parents: 5688
diff changeset
  1046
}
437422a29d3a PSARC 2006/370 ZFS Boot Support
gw25295
parents: 5688
diff changeset
  1047
7837
001de5627df3 6333409 traversal code should be able to issue multiple reads in parallel
Matthew Ahrens <Matthew.Ahrens@Sun.COM>
parents: 7754
diff changeset
  1048
static int
001de5627df3 6333409 traversal code should be able to issue multiple reads in parallel
Matthew Ahrens <Matthew.Ahrens@Sun.COM>
parents: 7754
diff changeset
  1049
zvol_dumpio(zvol_state_t *zv, void *addr, uint64_t offset, uint64_t size,
001de5627df3 6333409 traversal code should be able to issue multiple reads in parallel
Matthew Ahrens <Matthew.Ahrens@Sun.COM>
parents: 7754
diff changeset
  1050
    boolean_t doread, boolean_t isdump)
6423
437422a29d3a PSARC 2006/370 ZFS Boot Support
gw25295
parents: 5688
diff changeset
  1051
{
437422a29d3a PSARC 2006/370 ZFS Boot Support
gw25295
parents: 5688
diff changeset
  1052
	vdev_t *vd;
437422a29d3a PSARC 2006/370 ZFS Boot Support
gw25295
parents: 5688
diff changeset
  1053
	int error;
7837
001de5627df3 6333409 traversal code should be able to issue multiple reads in parallel
Matthew Ahrens <Matthew.Ahrens@Sun.COM>
parents: 7754
diff changeset
  1054
	zvol_extent_t *ze;
6423
437422a29d3a PSARC 2006/370 ZFS Boot Support
gw25295
parents: 5688
diff changeset
  1055
	spa_t *spa = dmu_objset_spa(zv->zv_objset);
437422a29d3a PSARC 2006/370 ZFS Boot Support
gw25295
parents: 5688
diff changeset
  1056
7837
001de5627df3 6333409 traversal code should be able to issue multiple reads in parallel
Matthew Ahrens <Matthew.Ahrens@Sun.COM>
parents: 7754
diff changeset
  1057
	/* Must be sector aligned, and not stradle a block boundary. */
001de5627df3 6333409 traversal code should be able to issue multiple reads in parallel
Matthew Ahrens <Matthew.Ahrens@Sun.COM>
parents: 7754
diff changeset
  1058
	if (P2PHASE(offset, DEV_BSIZE) || P2PHASE(size, DEV_BSIZE) ||
001de5627df3 6333409 traversal code should be able to issue multiple reads in parallel
Matthew Ahrens <Matthew.Ahrens@Sun.COM>
parents: 7754
diff changeset
  1059
	    P2BOUNDARY(offset, size, zv->zv_volblocksize)) {
001de5627df3 6333409 traversal code should be able to issue multiple reads in parallel
Matthew Ahrens <Matthew.Ahrens@Sun.COM>
parents: 7754
diff changeset
  1060
		return (EINVAL);
001de5627df3 6333409 traversal code should be able to issue multiple reads in parallel
Matthew Ahrens <Matthew.Ahrens@Sun.COM>
parents: 7754
diff changeset
  1061
	}
6423
437422a29d3a PSARC 2006/370 ZFS Boot Support
gw25295
parents: 5688
diff changeset
  1062
	ASSERT(size <= zv->zv_volblocksize);
437422a29d3a PSARC 2006/370 ZFS Boot Support
gw25295
parents: 5688
diff changeset
  1063
7837
001de5627df3 6333409 traversal code should be able to issue multiple reads in parallel
Matthew Ahrens <Matthew.Ahrens@Sun.COM>
parents: 7754
diff changeset
  1064
	/* Locate the extent this belongs to */
001de5627df3 6333409 traversal code should be able to issue multiple reads in parallel
Matthew Ahrens <Matthew.Ahrens@Sun.COM>
parents: 7754
diff changeset
  1065
	ze = list_head(&zv->zv_extents);
001de5627df3 6333409 traversal code should be able to issue multiple reads in parallel
Matthew Ahrens <Matthew.Ahrens@Sun.COM>
parents: 7754
diff changeset
  1066
	while (offset >= ze->ze_nblks * zv->zv_volblocksize) {
001de5627df3 6333409 traversal code should be able to issue multiple reads in parallel
Matthew Ahrens <Matthew.Ahrens@Sun.COM>
parents: 7754
diff changeset
  1067
		offset -= ze->ze_nblks * zv->zv_volblocksize;
001de5627df3 6333409 traversal code should be able to issue multiple reads in parallel
Matthew Ahrens <Matthew.Ahrens@Sun.COM>
parents: 7754
diff changeset
  1068
		ze = list_next(&zv->zv_extents, ze);
001de5627df3 6333409 traversal code should be able to issue multiple reads in parallel
Matthew Ahrens <Matthew.Ahrens@Sun.COM>
parents: 7754
diff changeset
  1069
	}
7754
b80e4842ad54 6754011 SPA 3.0: lock breakup, i/o pipeline refactoring, device failure handling
Jeff Bonwick <Jeff.Bonwick@Sun.COM>
parents: 7638
diff changeset
  1070
	spa_config_enter(spa, SCL_STATE, FTAG, RW_READER);
7837
001de5627df3 6333409 traversal code should be able to issue multiple reads in parallel
Matthew Ahrens <Matthew.Ahrens@Sun.COM>
parents: 7754
diff changeset
  1071
	vd = vdev_lookup_top(spa, DVA_GET_VDEV(&ze->ze_dva));
001de5627df3 6333409 traversal code should be able to issue multiple reads in parallel
Matthew Ahrens <Matthew.Ahrens@Sun.COM>
parents: 7754
diff changeset
  1072
	offset += DVA_GET_OFFSET(&ze->ze_dva);
001de5627df3 6333409 traversal code should be able to issue multiple reads in parallel
Matthew Ahrens <Matthew.Ahrens@Sun.COM>
parents: 7754
diff changeset
  1073
	error = zvol_dumpio_vdev(vd, addr, offset, size, doread, isdump);
7754
b80e4842ad54 6754011 SPA 3.0: lock breakup, i/o pipeline refactoring, device failure handling
Jeff Bonwick <Jeff.Bonwick@Sun.COM>
parents: 7638
diff changeset
  1074
	spa_config_exit(spa, SCL_STATE, FTAG);
6423
437422a29d3a PSARC 2006/370 ZFS Boot Support
gw25295
parents: 5688
diff changeset
  1075
	return (error);
437422a29d3a PSARC 2006/370 ZFS Boot Support
gw25295
parents: 5688
diff changeset
  1076
}
437422a29d3a PSARC 2006/370 ZFS Boot Support
gw25295
parents: 5688
diff changeset
  1077
437422a29d3a PSARC 2006/370 ZFS Boot Support
gw25295
parents: 5688
diff changeset
  1078
int
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  1079
zvol_strategy(buf_t *bp)
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  1080
{
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  1081
	zvol_state_t *zv = ddi_get_soft_state(zvol_state, getminor(bp->b_edev));
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  1082
	uint64_t off, volsize;
7837
001de5627df3 6333409 traversal code should be able to issue multiple reads in parallel
Matthew Ahrens <Matthew.Ahrens@Sun.COM>
parents: 7754
diff changeset
  1083
	size_t resid;
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  1084
	char *addr;
1141
ca4bb9237a10 6354547 sticky log buf size
perrin
parents: 1133
diff changeset
  1085
	objset_t *os;
3755
8708c35cb823 6525008 panic: dr->dt.dl.dr_override_state != DR_IN_DMU_SYNC, file: ../../common/fs/zfs/dbuf.c, line: 676
perrin
parents: 3638
diff changeset
  1086
	rl_t *rl;
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  1087
	int error = 0;
7837
001de5627df3 6333409 traversal code should be able to issue multiple reads in parallel
Matthew Ahrens <Matthew.Ahrens@Sun.COM>
parents: 7754
diff changeset
  1088
	boolean_t doread = bp->b_flags & B_READ;
001de5627df3 6333409 traversal code should be able to issue multiple reads in parallel
Matthew Ahrens <Matthew.Ahrens@Sun.COM>
parents: 7754
diff changeset
  1089
	boolean_t is_dump = zv->zv_flags & ZVOL_DUMPIFIED;
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  1090
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  1091
	if (zv == NULL) {
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  1092
		bioerror(bp, ENXIO);
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  1093
		biodone(bp);
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  1094
		return (0);
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  1095
	}
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  1096
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  1097
	if (getminor(bp->b_edev) == 0) {
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  1098
		bioerror(bp, EINVAL);
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  1099
		biodone(bp);
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  1100
		return (0);
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  1101
	}
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  1102
6423
437422a29d3a PSARC 2006/370 ZFS Boot Support
gw25295
parents: 5688
diff changeset
  1103
	if (!(bp->b_flags & B_READ) &&
437422a29d3a PSARC 2006/370 ZFS Boot Support
gw25295
parents: 5688
diff changeset
  1104
	    (zv->zv_flags & ZVOL_RDONLY ||
437422a29d3a PSARC 2006/370 ZFS Boot Support
gw25295
parents: 5688
diff changeset
  1105
	    zv->zv_mode & DS_MODE_READONLY)) {
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  1106
		bioerror(bp, EROFS);
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  1107
		biodone(bp);
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  1108
		return (0);
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  1109
	}
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  1110
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  1111
	off = ldbtob(bp->b_blkno);
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  1112
	volsize = zv->zv_volsize;
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  1113
1141
ca4bb9237a10 6354547 sticky log buf size
perrin
parents: 1133
diff changeset
  1114
	os = zv->zv_objset;
ca4bb9237a10 6354547 sticky log buf size
perrin
parents: 1133
diff changeset
  1115
	ASSERT(os != NULL);
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  1116
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  1117
	bp_mapin(bp);
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  1118
	addr = bp->b_un.b_addr;
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  1119
	resid = bp->b_bcount;
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  1120
7837
001de5627df3 6333409 traversal code should be able to issue multiple reads in parallel
Matthew Ahrens <Matthew.Ahrens@Sun.COM>
parents: 7754
diff changeset
  1121
	if (resid > 0 && (off < 0 || off >= volsize)) {
001de5627df3 6333409 traversal code should be able to issue multiple reads in parallel
Matthew Ahrens <Matthew.Ahrens@Sun.COM>
parents: 7754
diff changeset
  1122
		bioerror(bp, EIO);
001de5627df3 6333409 traversal code should be able to issue multiple reads in parallel
Matthew Ahrens <Matthew.Ahrens@Sun.COM>
parents: 7754
diff changeset
  1123
		biodone(bp);
001de5627df3 6333409 traversal code should be able to issue multiple reads in parallel
Matthew Ahrens <Matthew.Ahrens@Sun.COM>
parents: 7754
diff changeset
  1124
		return (0);
001de5627df3 6333409 traversal code should be able to issue multiple reads in parallel
Matthew Ahrens <Matthew.Ahrens@Sun.COM>
parents: 7754
diff changeset
  1125
	}
7013
540c400de3b4 6596419 zvol character (raw) devices allow read/write past the end of the device
gw25295
parents: 6992
diff changeset
  1126
1861
7929434f26fb 6413125 zvol_strategy() race can lead to on-disk corruption.
perrin
parents: 1669
diff changeset
  1127
	/*
7929434f26fb 6413125 zvol_strategy() race can lead to on-disk corruption.
perrin
parents: 1669
diff changeset
  1128
	 * There must be no buffer changes when doing a dmu_sync() because
7929434f26fb 6413125 zvol_strategy() race can lead to on-disk corruption.
perrin
parents: 1669
diff changeset
  1129
	 * we can't change the data whilst calculating the checksum.
7929434f26fb 6413125 zvol_strategy() race can lead to on-disk corruption.
perrin
parents: 1669
diff changeset
  1130
	 */
3755
8708c35cb823 6525008 panic: dr->dt.dl.dr_override_state != DR_IN_DMU_SYNC, file: ../../common/fs/zfs/dbuf.c, line: 676
perrin
parents: 3638
diff changeset
  1131
	rl = zfs_range_lock(&zv->zv_znode, off, resid,
7837
001de5627df3 6333409 traversal code should be able to issue multiple reads in parallel
Matthew Ahrens <Matthew.Ahrens@Sun.COM>
parents: 7754
diff changeset
  1132
	    doread ? RL_READER : RL_WRITER);
6423
437422a29d3a PSARC 2006/370 ZFS Boot Support
gw25295
parents: 5688
diff changeset
  1133
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  1134
	while (resid != 0 && off < volsize) {
7837
001de5627df3 6333409 traversal code should be able to issue multiple reads in parallel
Matthew Ahrens <Matthew.Ahrens@Sun.COM>
parents: 7754
diff changeset
  1135
		size_t size = MIN(resid, zvol_maxphys);
6423
437422a29d3a PSARC 2006/370 ZFS Boot Support
gw25295
parents: 5688
diff changeset
  1136
		if (is_dump) {
437422a29d3a PSARC 2006/370 ZFS Boot Support
gw25295
parents: 5688
diff changeset
  1137
			size = MIN(size, P2END(off, zv->zv_volblocksize) - off);
7837
001de5627df3 6333409 traversal code should be able to issue multiple reads in parallel
Matthew Ahrens <Matthew.Ahrens@Sun.COM>
parents: 7754
diff changeset
  1138
			error = zvol_dumpio(zv, addr, off, size,
001de5627df3 6333409 traversal code should be able to issue multiple reads in parallel
Matthew Ahrens <Matthew.Ahrens@Sun.COM>
parents: 7754
diff changeset
  1139
			    doread, B_FALSE);
001de5627df3 6333409 traversal code should be able to issue multiple reads in parallel
Matthew Ahrens <Matthew.Ahrens@Sun.COM>
parents: 7754
diff changeset
  1140
		} else if (doread) {
1861
7929434f26fb 6413125 zvol_strategy() race can lead to on-disk corruption.
perrin
parents: 1669
diff changeset
  1141
			error = dmu_read(os, ZVOL_OBJ, off, size, addr);
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  1142
		} else {
1141
ca4bb9237a10 6354547 sticky log buf size
perrin
parents: 1133
diff changeset
  1143
			dmu_tx_t *tx = dmu_tx_create(os);
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  1144
			dmu_tx_hold_write(tx, ZVOL_OBJ, off, size);
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  1145
			error = dmu_tx_assign(tx, TXG_WAIT);
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  1146
			if (error) {
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  1147
				dmu_tx_abort(tx);
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  1148
			} else {
1141
ca4bb9237a10 6354547 sticky log buf size
perrin
parents: 1133
diff changeset
  1149
				dmu_write(os, ZVOL_OBJ, off, size, addr, tx);
3638
6b28ebc717aa 6496357 spec_fsync() is useless on devices that do write caching
billm
parents: 3461
diff changeset
  1150
				zvol_log_write(zv, tx, off, size);
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  1151
				dmu_tx_commit(tx);
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  1152
			}
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  1153
		}
7294
c9c31ef4c960 PSARC 2008/486 Intent log replay failure handling
perrin
parents: 7265
diff changeset
  1154
		if (error) {
c9c31ef4c960 PSARC 2008/486 Intent log replay failure handling
perrin
parents: 7265
diff changeset
  1155
			/* convert checksum errors into IO errors */
c9c31ef4c960 PSARC 2008/486 Intent log replay failure handling
perrin
parents: 7265
diff changeset
  1156
			if (error == ECKSUM)
c9c31ef4c960 PSARC 2008/486 Intent log replay failure handling
perrin
parents: 7265
diff changeset
  1157
				error = EIO;
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  1158
			break;
7294
c9c31ef4c960 PSARC 2008/486 Intent log replay failure handling
perrin
parents: 7265
diff changeset
  1159
		}
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  1160
		off += size;
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  1161
		addr += size;
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  1162
		resid -= size;
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  1163
	}
3755
8708c35cb823 6525008 panic: dr->dt.dl.dr_override_state != DR_IN_DMU_SYNC, file: ../../common/fs/zfs/dbuf.c, line: 676
perrin
parents: 3638
diff changeset
  1164
	zfs_range_unlock(rl);
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  1165
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  1166
	if ((bp->b_resid = resid) == bp->b_bcount)
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  1167
		bioerror(bp, off > volsize ? EINVAL : error);
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  1168
9303
587ef5ac9176 6794730 need zvol support for DKIOCSETWCE and friends
Eric Taylor <Eric.Taylor@Sun.COM>
parents: 9277
diff changeset
  1169
	if (!(bp->b_flags & B_ASYNC) && !doread && !zil_disable &&
587ef5ac9176 6794730 need zvol support for DKIOCSETWCE and friends
Eric Taylor <Eric.Taylor@Sun.COM>
parents: 9277
diff changeset
  1170
	    !is_dump && !(zv->zv_flags & ZVOL_WCE))
3638
6b28ebc717aa 6496357 spec_fsync() is useless on devices that do write caching
billm
parents: 3461
diff changeset
  1171
		zil_commit(zv->zv_zilog, UINT64_MAX, ZVOL_OBJ);
6b28ebc717aa 6496357 spec_fsync() is useless on devices that do write caching
billm
parents: 3461
diff changeset
  1172
	biodone(bp);
1141
ca4bb9237a10 6354547 sticky log buf size
perrin
parents: 1133
diff changeset
  1173
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  1174
	return (0);
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  1175
}
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  1176
3063
b252896b372b 6341569 zio_alloc_blk() vdev distribution performs badly
perrin
parents: 3016
diff changeset
  1177
/*
b252896b372b 6341569 zio_alloc_blk() vdev distribution performs badly
perrin
parents: 3016
diff changeset
  1178
 * Set the buffer count to the zvol maximum transfer.
b252896b372b 6341569 zio_alloc_blk() vdev distribution performs badly
perrin
parents: 3016
diff changeset
  1179
 * Using our own routine instead of the default minphys()
b252896b372b 6341569 zio_alloc_blk() vdev distribution performs badly
perrin
parents: 3016
diff changeset
  1180
 * means that for larger writes we write bigger buffers on X86
b252896b372b 6341569 zio_alloc_blk() vdev distribution performs badly
perrin
parents: 3016
diff changeset
  1181
 * (128K instead of 56K) and flush the disk write cache less often
b252896b372b 6341569 zio_alloc_blk() vdev distribution performs badly
perrin
parents: 3016
diff changeset
  1182
 * (every zvol_maxphys - currently 1MB) instead of minphys (currently
b252896b372b 6341569 zio_alloc_blk() vdev distribution performs badly
perrin
parents: 3016
diff changeset
  1183
 * 56K on X86 and 128K on sparc).
b252896b372b 6341569 zio_alloc_blk() vdev distribution performs badly
perrin
parents: 3016
diff changeset
  1184
 */
b252896b372b 6341569 zio_alloc_blk() vdev distribution performs badly
perrin
parents: 3016
diff changeset
  1185
void
b252896b372b 6341569 zio_alloc_blk() vdev distribution performs badly
perrin
parents: 3016
diff changeset
  1186
zvol_minphys(struct buf *bp)
b252896b372b 6341569 zio_alloc_blk() vdev distribution performs badly
perrin
parents: 3016
diff changeset
  1187
{
b252896b372b 6341569 zio_alloc_blk() vdev distribution performs badly
perrin
parents: 3016
diff changeset
  1188
	if (bp->b_bcount > zvol_maxphys)
b252896b372b 6341569 zio_alloc_blk() vdev distribution performs badly
perrin
parents: 3016
diff changeset
  1189
		bp->b_bcount = zvol_maxphys;
b252896b372b 6341569 zio_alloc_blk() vdev distribution performs badly
perrin
parents: 3016
diff changeset
  1190
}
b252896b372b 6341569 zio_alloc_blk() vdev distribution performs badly
perrin
parents: 3016
diff changeset
  1191
6423
437422a29d3a PSARC 2006/370 ZFS Boot Support
gw25295
parents: 5688
diff changeset
  1192
int
437422a29d3a PSARC 2006/370 ZFS Boot Support
gw25295
parents: 5688
diff changeset
  1193
zvol_dump(dev_t dev, caddr_t addr, daddr_t blkno, int nblocks)
437422a29d3a PSARC 2006/370 ZFS Boot Support
gw25295
parents: 5688
diff changeset
  1194
{
437422a29d3a PSARC 2006/370 ZFS Boot Support
gw25295
parents: 5688
diff changeset
  1195
	minor_t minor = getminor(dev);
437422a29d3a PSARC 2006/370 ZFS Boot Support
gw25295
parents: 5688
diff changeset
  1196
	zvol_state_t *zv;
437422a29d3a PSARC 2006/370 ZFS Boot Support
gw25295
parents: 5688
diff changeset
  1197
	int error = 0;
437422a29d3a PSARC 2006/370 ZFS Boot Support
gw25295
parents: 5688
diff changeset
  1198
	uint64_t size;
437422a29d3a PSARC 2006/370 ZFS Boot Support
gw25295
parents: 5688
diff changeset
  1199
	uint64_t boff;
437422a29d3a PSARC 2006/370 ZFS Boot Support
gw25295
parents: 5688
diff changeset
  1200
	uint64_t resid;
437422a29d3a PSARC 2006/370 ZFS Boot Support
gw25295
parents: 5688
diff changeset
  1201
437422a29d3a PSARC 2006/370 ZFS Boot Support
gw25295
parents: 5688
diff changeset
  1202
	if (minor == 0)			/* This is the control device */
437422a29d3a PSARC 2006/370 ZFS Boot Support
gw25295
parents: 5688
diff changeset
  1203
		return (ENXIO);
437422a29d3a PSARC 2006/370 ZFS Boot Support
gw25295
parents: 5688
diff changeset
  1204
437422a29d3a PSARC 2006/370 ZFS Boot Support
gw25295
parents: 5688
diff changeset
  1205
	zv = ddi_get_soft_state(zvol_state, minor);
437422a29d3a PSARC 2006/370 ZFS Boot Support
gw25295
parents: 5688
diff changeset
  1206
	if (zv == NULL)
437422a29d3a PSARC 2006/370 ZFS Boot Support
gw25295
parents: 5688
diff changeset
  1207
		return (ENXIO);
437422a29d3a PSARC 2006/370 ZFS Boot Support
gw25295
parents: 5688
diff changeset
  1208
437422a29d3a PSARC 2006/370 ZFS Boot Support
gw25295
parents: 5688
diff changeset
  1209
	boff = ldbtob(blkno);
437422a29d3a PSARC 2006/370 ZFS Boot Support
gw25295
parents: 5688
diff changeset
  1210
	resid = ldbtob(nblocks);
7837
001de5627df3 6333409 traversal code should be able to issue multiple reads in parallel
Matthew Ahrens <Matthew.Ahrens@Sun.COM>
parents: 7754
diff changeset
  1211
001de5627df3 6333409 traversal code should be able to issue multiple reads in parallel
Matthew Ahrens <Matthew.Ahrens@Sun.COM>
parents: 7754
diff changeset
  1212
	VERIFY3U(boff + resid, <=, zv->zv_volsize);
001de5627df3 6333409 traversal code should be able to issue multiple reads in parallel
Matthew Ahrens <Matthew.Ahrens@Sun.COM>
parents: 7754
diff changeset
  1213
6423
437422a29d3a PSARC 2006/370 ZFS Boot Support
gw25295
parents: 5688
diff changeset
  1214
	while (resid) {
437422a29d3a PSARC 2006/370 ZFS Boot Support
gw25295
parents: 5688
diff changeset
  1215
		size = MIN(resid, P2END(boff, zv->zv_volblocksize) - boff);
7837
001de5627df3 6333409 traversal code should be able to issue multiple reads in parallel
Matthew Ahrens <Matthew.Ahrens@Sun.COM>
parents: 7754
diff changeset
  1216
		error = zvol_dumpio(zv, addr, boff, size, B_FALSE, B_TRUE);
6423
437422a29d3a PSARC 2006/370 ZFS Boot Support
gw25295
parents: 5688
diff changeset
  1217
		if (error)
437422a29d3a PSARC 2006/370 ZFS Boot Support
gw25295
parents: 5688
diff changeset
  1218
			break;
437422a29d3a PSARC 2006/370 ZFS Boot Support
gw25295
parents: 5688
diff changeset
  1219
		boff += size;
437422a29d3a PSARC 2006/370 ZFS Boot Support
gw25295
parents: 5688
diff changeset
  1220
		addr += size;
437422a29d3a PSARC 2006/370 ZFS Boot Support
gw25295
parents: 5688
diff changeset
  1221
		resid -= size;
437422a29d3a PSARC 2006/370 ZFS Boot Support
gw25295
parents: 5688
diff changeset
  1222
	}
437422a29d3a PSARC 2006/370 ZFS Boot Support
gw25295
parents: 5688
diff changeset
  1223
437422a29d3a PSARC 2006/370 ZFS Boot Support
gw25295
parents: 5688
diff changeset
  1224
	return (error);
437422a29d3a PSARC 2006/370 ZFS Boot Support
gw25295
parents: 5688
diff changeset
  1225
}
437422a29d3a PSARC 2006/370 ZFS Boot Support
gw25295
parents: 5688
diff changeset
  1226
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  1227
/*ARGSUSED*/
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  1228
int
3638
6b28ebc717aa 6496357 spec_fsync() is useless on devices that do write caching
billm
parents: 3461
diff changeset
  1229
zvol_read(dev_t dev, uio_t *uio, cred_t *cr)
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  1230
{
4107
5b13dedb1ea7 6549112 writes to /dev/zfs panic system
gw25295
parents: 3897
diff changeset
  1231
	minor_t minor = getminor(dev);
5b13dedb1ea7 6549112 writes to /dev/zfs panic system
gw25295
parents: 3897
diff changeset
  1232
	zvol_state_t *zv;
7013
540c400de3b4 6596419 zvol character (raw) devices allow read/write past the end of the device
gw25295
parents: 6992
diff changeset
  1233
	uint64_t volsize;
3755
8708c35cb823 6525008 panic: dr->dt.dl.dr_override_state != DR_IN_DMU_SYNC, file: ../../common/fs/zfs/dbuf.c, line: 676
perrin
parents: 3638
diff changeset
  1234
	rl_t *rl;
3638
6b28ebc717aa 6496357 spec_fsync() is useless on devices that do write caching
billm
parents: 3461
diff changeset
  1235
	int error = 0;
6b28ebc717aa 6496357 spec_fsync() is useless on devices that do write caching
billm
parents: 3461
diff changeset
  1236
4107
5b13dedb1ea7 6549112 writes to /dev/zfs panic system
gw25295
parents: 3897
diff changeset
  1237
	if (minor == 0)			/* This is the control device */
5b13dedb1ea7 6549112 writes to /dev/zfs panic system
gw25295
parents: 3897
diff changeset
  1238
		return (ENXIO);
5b13dedb1ea7 6549112 writes to /dev/zfs panic system
gw25295
parents: 3897
diff changeset
  1239
5b13dedb1ea7 6549112 writes to /dev/zfs panic system
gw25295
parents: 3897
diff changeset
  1240
	zv = ddi_get_soft_state(zvol_state, minor);
5b13dedb1ea7 6549112 writes to /dev/zfs panic system
gw25295
parents: 3897
diff changeset
  1241
	if (zv == NULL)
5b13dedb1ea7 6549112 writes to /dev/zfs panic system
gw25295
parents: 3897
diff changeset
  1242
		return (ENXIO);
5b13dedb1ea7 6549112 writes to /dev/zfs panic system
gw25295
parents: 3897
diff changeset
  1243
7013
540c400de3b4 6596419 zvol character (raw) devices allow read/write past the end of the device
gw25295
parents: 6992
diff changeset
  1244
	volsize = zv->zv_volsize;
540c400de3b4 6596419 zvol character (raw) devices allow read/write past the end of the device
gw25295
parents: 6992
diff changeset
  1245
	if (uio->uio_resid > 0 &&
540c400de3b4 6596419 zvol character (raw) devices allow read/write past the end of the device
gw25295
parents: 6992
diff changeset
  1246
	    (uio->uio_loffset < 0 || uio->uio_loffset >= volsize))
540c400de3b4 6596419 zvol character (raw) devices allow read/write past the end of the device
gw25295
parents: 6992
diff changeset
  1247
		return (EIO);
540c400de3b4 6596419 zvol character (raw) devices allow read/write past the end of the device
gw25295
parents: 6992
diff changeset
  1248
7837
001de5627df3 6333409 traversal code should be able to issue multiple reads in parallel
Matthew Ahrens <Matthew.Ahrens@Sun.COM>
parents: 7754
diff changeset
  1249
	if (zv->zv_flags & ZVOL_DUMPIFIED) {
001de5627df3 6333409 traversal code should be able to issue multiple reads in parallel
Matthew Ahrens <Matthew.Ahrens@Sun.COM>
parents: 7754
diff changeset
  1250
		error = physio(zvol_strategy, NULL, dev, B_READ,
001de5627df3 6333409 traversal code should be able to issue multiple reads in parallel
Matthew Ahrens <Matthew.Ahrens@Sun.COM>
parents: 7754
diff changeset
  1251
		    zvol_minphys, uio);
001de5627df3 6333409 traversal code should be able to issue multiple reads in parallel
Matthew Ahrens <Matthew.Ahrens@Sun.COM>
parents: 7754
diff changeset
  1252
		return (error);
001de5627df3 6333409 traversal code should be able to issue multiple reads in parallel
Matthew Ahrens <Matthew.Ahrens@Sun.COM>
parents: 7754
diff changeset
  1253
	}
001de5627df3 6333409 traversal code should be able to issue multiple reads in parallel
Matthew Ahrens <Matthew.Ahrens@Sun.COM>
parents: 7754
diff changeset
  1254
3755
8708c35cb823 6525008 panic: dr->dt.dl.dr_override_state != DR_IN_DMU_SYNC, file: ../../common/fs/zfs/dbuf.c, line: 676
perrin
parents: 3638
diff changeset
  1255
	rl = zfs_range_lock(&zv->zv_znode, uio->uio_loffset, uio->uio_resid,
8708c35cb823 6525008 panic: dr->dt.dl.dr_override_state != DR_IN_DMU_SYNC, file: ../../common/fs/zfs/dbuf.c, line: 676
perrin
parents: 3638
diff changeset
  1256
	    RL_READER);
7013
540c400de3b4 6596419 zvol character (raw) devices allow read/write past the end of the device
gw25295
parents: 6992
diff changeset
  1257
	while (uio->uio_resid > 0 && uio->uio_loffset < volsize) {
3638
6b28ebc717aa 6496357 spec_fsync() is useless on devices that do write caching
billm
parents: 3461
diff changeset
  1258
		uint64_t bytes = MIN(uio->uio_resid, DMU_MAX_ACCESS >> 1);
6b28ebc717aa 6496357 spec_fsync() is useless on devices that do write caching
billm
parents: 3461
diff changeset
  1259
7013
540c400de3b4 6596419 zvol character (raw) devices allow read/write past the end of the device
gw25295
parents: 6992
diff changeset
  1260
		/* don't read past the end */
540c400de3b4 6596419 zvol character (raw) devices allow read/write past the end of the device
gw25295
parents: 6992
diff changeset
  1261
		if (bytes > volsize - uio->uio_loffset)
540c400de3b4 6596419 zvol character (raw) devices allow read/write past the end of the device
gw25295
parents: 6992
diff changeset
  1262
			bytes = volsize - uio->uio_loffset;
540c400de3b4 6596419 zvol character (raw) devices allow read/write past the end of the device
gw25295
parents: 6992
diff changeset
  1263
3638
6b28ebc717aa 6496357 spec_fsync() is useless on devices that do write caching
billm
parents: 3461
diff changeset
  1264
		error =  dmu_read_uio(zv->zv_objset, ZVOL_OBJ, uio, bytes);
7294
c9c31ef4c960 PSARC 2008/486 Intent log replay failure handling
perrin
parents: 7265
diff changeset
  1265
		if (error) {
c9c31ef4c960 PSARC 2008/486 Intent log replay failure handling
perrin
parents: 7265
diff changeset
  1266
			/* convert checksum errors into IO errors */
c9c31ef4c960 PSARC 2008/486 Intent log replay failure handling
perrin
parents: 7265
diff changeset
  1267
			if (error == ECKSUM)
c9c31ef4c960 PSARC 2008/486 Intent log replay failure handling
perrin
parents: 7265
diff changeset
  1268
				error = EIO;
3638
6b28ebc717aa 6496357 spec_fsync() is useless on devices that do write caching
billm
parents: 3461
diff changeset
  1269
			break;
7294
c9c31ef4c960 PSARC 2008/486 Intent log replay failure handling
perrin
parents: 7265
diff changeset
  1270
		}
3638
6b28ebc717aa 6496357 spec_fsync() is useless on devices that do write caching
billm
parents: 3461
diff changeset
  1271
	}
3755
8708c35cb823 6525008 panic: dr->dt.dl.dr_override_state != DR_IN_DMU_SYNC, file: ../../common/fs/zfs/dbuf.c, line: 676
perrin
parents: 3638
diff changeset
  1272
	zfs_range_unlock(rl);
3638
6b28ebc717aa 6496357 spec_fsync() is useless on devices that do write caching
billm
parents: 3461
diff changeset
  1273
	return (error);
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  1274
}
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  1275
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  1276
/*ARGSUSED*/
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  1277
int
3638
6b28ebc717aa 6496357 spec_fsync() is useless on devices that do write caching
billm
parents: 3461
diff changeset
  1278
zvol_write(dev_t dev, uio_t *uio, cred_t *cr)
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  1279
{
4107
5b13dedb1ea7 6549112 writes to /dev/zfs panic system
gw25295
parents: 3897
diff changeset
  1280
	minor_t minor = getminor(dev);
5b13dedb1ea7 6549112 writes to /dev/zfs panic system
gw25295
parents: 3897
diff changeset
  1281
	zvol_state_t *zv;
7013
540c400de3b4 6596419 zvol character (raw) devices allow read/write past the end of the device
gw25295
parents: 6992
diff changeset
  1282
	uint64_t volsize;
3755
8708c35cb823 6525008 panic: dr->dt.dl.dr_override_state != DR_IN_DMU_SYNC, file: ../../common/fs/zfs/dbuf.c, line: 676
perrin
parents: 3638
diff changeset
  1283
	rl_t *rl;
3638
6b28ebc717aa 6496357 spec_fsync() is useless on devices that do write caching
billm
parents: 3461
diff changeset
  1284
	int error = 0;
6b28ebc717aa 6496357 spec_fsync() is useless on devices that do write caching
billm
parents: 3461
diff changeset
  1285
4107
5b13dedb1ea7 6549112 writes to /dev/zfs panic system
gw25295
parents: 3897
diff changeset
  1286
	if (minor == 0)			/* This is the control device */
5b13dedb1ea7 6549112 writes to /dev/zfs panic system
gw25295
parents: 3897
diff changeset
  1287
		return (ENXIO);
5b13dedb1ea7 6549112 writes to /dev/zfs panic system
gw25295
parents: 3897
diff changeset
  1288
5b13dedb1ea7 6549112 writes to /dev/zfs panic system
gw25295
parents: 3897
diff changeset
  1289
	zv = ddi_get_soft_state(zvol_state, minor);
5b13dedb1ea7 6549112 writes to /dev/zfs panic system
gw25295
parents: 3897
diff changeset
  1290
	if (zv == NULL)
5b13dedb1ea7 6549112 writes to /dev/zfs panic system
gw25295
parents: 3897
diff changeset
  1291
		return (ENXIO);
5b13dedb1ea7 6549112 writes to /dev/zfs panic system
gw25295
parents: 3897
diff changeset
  1292
7013
540c400de3b4 6596419 zvol character (raw) devices allow read/write past the end of the device
gw25295
parents: 6992
diff changeset
  1293
	volsize = zv->zv_volsize;
540c400de3b4 6596419 zvol character (raw) devices allow read/write past the end of the device
gw25295
parents: 6992
diff changeset
  1294
	if (uio->uio_resid > 0 &&
540c400de3b4 6596419 zvol character (raw) devices allow read/write past the end of the device
gw25295
parents: 6992
diff changeset
  1295
	    (uio->uio_loffset < 0 || uio->uio_loffset >= volsize))
540c400de3b4 6596419 zvol character (raw) devices allow read/write past the end of the device
gw25295
parents: 6992
diff changeset
  1296
		return (EIO);
540c400de3b4 6596419 zvol character (raw) devices allow read/write past the end of the device
gw25295
parents: 6992
diff changeset
  1297
6423
437422a29d3a PSARC 2006/370 ZFS Boot Support
gw25295
parents: 5688
diff changeset
  1298
	if (zv->zv_flags & ZVOL_DUMPIFIED) {
437422a29d3a PSARC 2006/370 ZFS Boot Support
gw25295
parents: 5688
diff changeset
  1299
		error = physio(zvol_strategy, NULL, dev, B_WRITE,
437422a29d3a PSARC 2006/370 ZFS Boot Support
gw25295
parents: 5688
diff changeset
  1300
		    zvol_minphys, uio);
437422a29d3a PSARC 2006/370 ZFS Boot Support
gw25295
parents: 5688
diff changeset
  1301
		return (error);
437422a29d3a PSARC 2006/370 ZFS Boot Support
gw25295
parents: 5688
diff changeset
  1302
	}
437422a29d3a PSARC 2006/370 ZFS Boot Support
gw25295
parents: 5688
diff changeset
  1303
3755
8708c35cb823 6525008 panic: dr->dt.dl.dr_override_state != DR_IN_DMU_SYNC, file: ../../common/fs/zfs/dbuf.c, line: 676
perrin
parents: 3638
diff changeset
  1304
	rl = zfs_range_lock(&zv->zv_znode, uio->uio_loffset, uio->uio_resid,
8708c35cb823 6525008 panic: dr->dt.dl.dr_override_state != DR_IN_DMU_SYNC, file: ../../common/fs/zfs/dbuf.c, line: 676
perrin
parents: 3638
diff changeset
  1305
	    RL_WRITER);
7013
540c400de3b4 6596419 zvol character (raw) devices allow read/write past the end of the device
gw25295
parents: 6992
diff changeset
  1306
	while (uio->uio_resid > 0 && uio->uio_loffset < volsize) {
3638
6b28ebc717aa 6496357 spec_fsync() is useless on devices that do write caching
billm
parents: 3461
diff changeset
  1307
		uint64_t bytes = MIN(uio->uio_resid, DMU_MAX_ACCESS >> 1);
6b28ebc717aa 6496357 spec_fsync() is useless on devices that do write caching
billm
parents: 3461
diff changeset
  1308
		uint64_t off = uio->uio_loffset;
7013
540c400de3b4 6596419 zvol character (raw) devices allow read/write past the end of the device
gw25295
parents: 6992
diff changeset
  1309
		dmu_tx_t *tx = dmu_tx_create(zv->zv_objset);
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  1310
7013
540c400de3b4 6596419 zvol character (raw) devices allow read/write past the end of the device
gw25295
parents: 6992
diff changeset
  1311
		if (bytes > volsize - off)	/* don't write past the end */
540c400de3b4 6596419 zvol character (raw) devices allow read/write past the end of the device
gw25295
parents: 6992
diff changeset
  1312
			bytes = volsize - off;
540c400de3b4 6596419 zvol character (raw) devices allow read/write past the end of the device
gw25295
parents: 6992
diff changeset
  1313
3638
6b28ebc717aa 6496357 spec_fsync() is useless on devices that do write caching
billm
parents: 3461
diff changeset
  1314
		dmu_tx_hold_write(tx, ZVOL_OBJ, off, bytes);
6b28ebc717aa 6496357 spec_fsync() is useless on devices that do write caching
billm
parents: 3461
diff changeset
  1315
		error = dmu_tx_assign(tx, TXG_WAIT);
6b28ebc717aa 6496357 spec_fsync() is useless on devices that do write caching
billm
parents: 3461
diff changeset
  1316
		if (error) {
6b28ebc717aa 6496357 spec_fsync() is useless on devices that do write caching
billm
parents: 3461
diff changeset
  1317
			dmu_tx_abort(tx);
6b28ebc717aa 6496357 spec_fsync() is useless on devices that do write caching
billm
parents: 3461
diff changeset
  1318
			break;
6b28ebc717aa 6496357 spec_fsync() is useless on devices that do write caching
billm
parents: 3461
diff changeset
  1319
		}
6b28ebc717aa 6496357 spec_fsync() is useless on devices that do write caching
billm
parents: 3461
diff changeset
  1320
		error = dmu_write_uio(zv->zv_objset, ZVOL_OBJ, uio, bytes, tx);
6b28ebc717aa 6496357 spec_fsync() is useless on devices that do write caching
billm
parents: 3461
diff changeset
  1321
		if (error == 0)
6b28ebc717aa 6496357 spec_fsync() is useless on devices that do write caching
billm
parents: 3461
diff changeset
  1322
			zvol_log_write(zv, tx, off, bytes);
6b28ebc717aa 6496357 spec_fsync() is useless on devices that do write caching
billm
parents: 3461
diff changeset
  1323
		dmu_tx_commit(tx);
6b28ebc717aa 6496357 spec_fsync() is useless on devices that do write caching
billm
parents: 3461
diff changeset
  1324
6b28ebc717aa 6496357 spec_fsync() is useless on devices that do write caching
billm
parents: 3461
diff changeset
  1325
		if (error)
6b28ebc717aa 6496357 spec_fsync() is useless on devices that do write caching
billm
parents: 3461
diff changeset
  1326
			break;
6b28ebc717aa 6496357 spec_fsync() is useless on devices that do write caching
billm
parents: 3461
diff changeset
  1327
	}
3755
8708c35cb823 6525008 panic: dr->dt.dl.dr_override_state != DR_IN_DMU_SYNC, file: ../../common/fs/zfs/dbuf.c, line: 676
perrin
parents: 3638
diff changeset
  1328
	zfs_range_unlock(rl);
9303
587ef5ac9176 6794730 need zvol support for DKIOCSETWCE and friends
Eric Taylor <Eric.Taylor@Sun.COM>
parents: 9277
diff changeset
  1329
	if (!zil_disable && !(zv->zv_flags & ZVOL_WCE))
8524
a56dffa8fba9 6770534 zvols do not observe character device semantics
Eric Taylor <Eric.Taylor@Sun.COM>
parents: 8227
diff changeset
  1330
		zil_commit(zv->zv_zilog, UINT64_MAX, ZVOL_OBJ);
3638
6b28ebc717aa 6496357 spec_fsync() is useless on devices that do write caching
billm
parents: 3461
diff changeset
  1331
	return (error);
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  1332
}
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  1333
7405
22b4aeef8023 6612759 zvol DKIOCGETEFI should return GPT and GPE when possible
Eric Taylor <Eric.Taylor@Sun.COM>
parents: 7294
diff changeset
  1334
int
22b4aeef8023 6612759 zvol DKIOCGETEFI should return GPT and GPE when possible
Eric Taylor <Eric.Taylor@Sun.COM>
parents: 7294
diff changeset
  1335
zvol_getefi(void *arg, int flag, uint64_t vs, uint8_t bs)
22b4aeef8023 6612759 zvol DKIOCGETEFI should return GPT and GPE when possible
Eric Taylor <Eric.Taylor@Sun.COM>
parents: 7294
diff changeset
  1336
{
22b4aeef8023 6612759 zvol DKIOCGETEFI should return GPT and GPE when possible
Eric Taylor <Eric.Taylor@Sun.COM>
parents: 7294
diff changeset
  1337
	struct uuid uuid = EFI_RESERVED;
22b4aeef8023 6612759 zvol DKIOCGETEFI should return GPT and GPE when possible
Eric Taylor <Eric.Taylor@Sun.COM>
parents: 7294
diff changeset
  1338
	efi_gpe_t gpe = { 0 };
22b4aeef8023 6612759 zvol DKIOCGETEFI should return GPT and GPE when possible
Eric Taylor <Eric.Taylor@Sun.COM>
parents: 7294
diff changeset
  1339
	uint32_t crc;
22b4aeef8023 6612759 zvol DKIOCGETEFI should return GPT and GPE when possible
Eric Taylor <Eric.Taylor@Sun.COM>
parents: 7294
diff changeset
  1340
	dk_efi_t efi;
22b4aeef8023 6612759 zvol DKIOCGETEFI should return GPT and GPE when possible
Eric Taylor <Eric.Taylor@Sun.COM>
parents: 7294
diff changeset
  1341
	int length;
22b4aeef8023 6612759 zvol DKIOCGETEFI should return GPT and GPE when possible
Eric Taylor <Eric.Taylor@Sun.COM>
parents: 7294
diff changeset
  1342
	char *ptr;
22b4aeef8023 6612759 zvol DKIOCGETEFI should return GPT and GPE when possible
Eric Taylor <Eric.Taylor@Sun.COM>
parents: 7294
diff changeset
  1343
22b4aeef8023 6612759 zvol DKIOCGETEFI should return GPT and GPE when possible
Eric Taylor <Eric.Taylor@Sun.COM>
parents: 7294
diff changeset
  1344
	if (ddi_copyin(arg, &efi, sizeof (dk_efi_t), flag))
22b4aeef8023 6612759 zvol DKIOCGETEFI should return GPT and GPE when possible
Eric Taylor <Eric.Taylor@Sun.COM>
parents: 7294
diff changeset
  1345
		return (EFAULT);
22b4aeef8023 6612759 zvol DKIOCGETEFI should return GPT and GPE when possible
Eric Taylor <Eric.Taylor@Sun.COM>
parents: 7294
diff changeset
  1346
	ptr = (char *)(uintptr_t)efi.dki_data_64;
22b4aeef8023 6612759 zvol DKIOCGETEFI should return GPT and GPE when possible
Eric Taylor <Eric.Taylor@Sun.COM>
parents: 7294
diff changeset
  1347
	length = efi.dki_length;
22b4aeef8023 6612759 zvol DKIOCGETEFI should return GPT and GPE when possible
Eric Taylor <Eric.Taylor@Sun.COM>
parents: 7294
diff changeset
  1348
	/*
22b4aeef8023 6612759 zvol DKIOCGETEFI should return GPT and GPE when possible
Eric Taylor <Eric.Taylor@Sun.COM>
parents: 7294
diff changeset
  1349
	 * Some clients may attempt to request a PMBR for the
22b4aeef8023 6612759 zvol DKIOCGETEFI should return GPT and GPE when possible
Eric Taylor <Eric.Taylor@Sun.COM>
parents: 7294
diff changeset
  1350
	 * zvol.  Currently this interface will return EINVAL to
22b4aeef8023 6612759 zvol DKIOCGETEFI should return GPT and GPE when possible
Eric Taylor <Eric.Taylor@Sun.COM>
parents: 7294
diff changeset
  1351
	 * such requests.  These requests could be supported by
22b4aeef8023 6612759 zvol DKIOCGETEFI should return GPT and GPE when possible
Eric Taylor <Eric.Taylor@Sun.COM>
parents: 7294
diff changeset
  1352
	 * adding a check for lba == 0 and consing up an appropriate
22b4aeef8023 6612759 zvol DKIOCGETEFI should return GPT and GPE when possible
Eric Taylor <Eric.Taylor@Sun.COM>
parents: 7294
diff changeset
  1353
	 * PMBR.
22b4aeef8023 6612759 zvol DKIOCGETEFI should return GPT and GPE when possible
Eric Taylor <Eric.Taylor@Sun.COM>
parents: 7294
diff changeset
  1354
	 */
22b4aeef8023 6612759 zvol DKIOCGETEFI should return GPT and GPE when possible
Eric Taylor <Eric.Taylor@Sun.COM>
parents: 7294
diff changeset
  1355
	if (efi.dki_lba < 1 || efi.dki_lba > 2 || length <= 0)
22b4aeef8023 6612759 zvol DKIOCGETEFI should return GPT and GPE when possible
Eric Taylor <Eric.Taylor@Sun.COM>
parents: 7294
diff changeset
  1356
		return (EINVAL);
22b4aeef8023 6612759 zvol DKIOCGETEFI should return GPT and GPE when possible
Eric Taylor <Eric.Taylor@Sun.COM>
parents: 7294
diff changeset
  1357
22b4aeef8023 6612759 zvol DKIOCGETEFI should return GPT and GPE when possible
Eric Taylor <Eric.Taylor@Sun.COM>
parents: 7294
diff changeset
  1358
	gpe.efi_gpe_StartingLBA = LE_64(34ULL);
22b4aeef8023 6612759 zvol DKIOCGETEFI should return GPT and GPE when possible
Eric Taylor <Eric.Taylor@Sun.COM>
parents: 7294
diff changeset
  1359
	gpe.efi_gpe_EndingLBA = LE_64((vs >> bs) - 1);
22b4aeef8023 6612759 zvol DKIOCGETEFI should return GPT and GPE when possible
Eric Taylor <Eric.Taylor@Sun.COM>
parents: 7294
diff changeset
  1360
	UUID_LE_CONVERT(gpe.efi_gpe_PartitionTypeGUID, uuid);
22b4aeef8023 6612759 zvol DKIOCGETEFI should return GPT and GPE when possible
Eric Taylor <Eric.Taylor@Sun.COM>
parents: 7294
diff changeset
  1361
22b4aeef8023 6612759 zvol DKIOCGETEFI should return GPT and GPE when possible
Eric Taylor <Eric.Taylor@Sun.COM>
parents: 7294
diff changeset
  1362
	if (efi.dki_lba == 1) {
22b4aeef8023 6612759 zvol DKIOCGETEFI should return GPT and GPE when possible
Eric Taylor <Eric.Taylor@Sun.COM>
parents: 7294
diff changeset
  1363
		efi_gpt_t gpt = { 0 };
22b4aeef8023 6612759 zvol DKIOCGETEFI should return GPT and GPE when possible
Eric Taylor <Eric.Taylor@Sun.COM>
parents: 7294
diff changeset
  1364
22b4aeef8023 6612759 zvol DKIOCGETEFI should return GPT and GPE when possible
Eric Taylor <Eric.Taylor@Sun.COM>
parents: 7294
diff changeset
  1365
		gpt.efi_gpt_Signature = LE_64(EFI_SIGNATURE);
22b4aeef8023 6612759 zvol DKIOCGETEFI should return GPT and GPE when possible
Eric Taylor <Eric.Taylor@Sun.COM>
parents: 7294
diff changeset
  1366
		gpt.efi_gpt_Revision = LE_32(EFI_VERSION_CURRENT);
22b4aeef8023 6612759 zvol DKIOCGETEFI should return GPT and GPE when possible
Eric Taylor <Eric.Taylor@Sun.COM>
parents: 7294
diff changeset
  1367
		gpt.efi_gpt_HeaderSize = LE_32(sizeof (gpt));
22b4aeef8023 6612759 zvol DKIOCGETEFI should return GPT and GPE when possible
Eric Taylor <Eric.Taylor@Sun.COM>
parents: 7294
diff changeset
  1368
		gpt.efi_gpt_MyLBA = LE_64(1ULL);
22b4aeef8023 6612759 zvol DKIOCGETEFI should return GPT and GPE when possible
Eric Taylor <Eric.Taylor@Sun.COM>
parents: 7294
diff changeset
  1369
		gpt.efi_gpt_FirstUsableLBA = LE_64(34ULL);
22b4aeef8023 6612759 zvol DKIOCGETEFI should return GPT and GPE when possible
Eric Taylor <Eric.Taylor@Sun.COM>
parents: 7294
diff changeset
  1370
		gpt.efi_gpt_LastUsableLBA = LE_64((vs >> bs) - 1);
22b4aeef8023 6612759 zvol DKIOCGETEFI should return GPT and GPE when possible
Eric Taylor <Eric.Taylor@Sun.COM>
parents: 7294
diff changeset
  1371
		gpt.efi_gpt_PartitionEntryLBA = LE_64(2ULL);
22b4aeef8023 6612759 zvol DKIOCGETEFI should return GPT and GPE when possible
Eric Taylor <Eric.Taylor@Sun.COM>
parents: 7294
diff changeset
  1372
		gpt.efi_gpt_NumberOfPartitionEntries = LE_32(1);
22b4aeef8023 6612759 zvol DKIOCGETEFI should return GPT and GPE when possible
Eric Taylor <Eric.Taylor@Sun.COM>
parents: 7294
diff changeset
  1373
		gpt.efi_gpt_SizeOfPartitionEntry =
22b4aeef8023 6612759 zvol DKIOCGETEFI should return GPT and GPE when possible
Eric Taylor <Eric.Taylor@Sun.COM>
parents: 7294
diff changeset
  1374
		    LE_32(sizeof (efi_gpe_t));
22b4aeef8023 6612759 zvol DKIOCGETEFI should return GPT and GPE when possible
Eric Taylor <Eric.Taylor@Sun.COM>
parents: 7294
diff changeset
  1375
		CRC32(crc, &gpe, sizeof (gpe), -1U, crc32_table);
22b4aeef8023 6612759 zvol DKIOCGETEFI should return GPT and GPE when possible
Eric Taylor <Eric.Taylor@Sun.COM>
parents: 7294
diff changeset
  1376
		gpt.efi_gpt_PartitionEntryArrayCRC32 = LE_32(~crc);
22b4aeef8023 6612759 zvol DKIOCGETEFI should return GPT and GPE when possible
Eric Taylor <Eric.Taylor@Sun.COM>
parents: 7294
diff changeset
  1377
		CRC32(crc, &gpt, sizeof (gpt), -1U, crc32_table);
22b4aeef8023 6612759 zvol DKIOCGETEFI should return GPT and GPE when possible
Eric Taylor <Eric.Taylor@Sun.COM>
parents: 7294
diff changeset
  1378
		gpt.efi_gpt_HeaderCRC32 = LE_32(~crc);
22b4aeef8023 6612759 zvol DKIOCGETEFI should return GPT and GPE when possible
Eric Taylor <Eric.Taylor@Sun.COM>
parents: 7294
diff changeset
  1379
		if (ddi_copyout(&gpt, ptr, MIN(sizeof (gpt), length),
22b4aeef8023 6612759 zvol DKIOCGETEFI should return GPT and GPE when possible
Eric Taylor <Eric.Taylor@Sun.COM>
parents: 7294
diff changeset
  1380
		    flag))
22b4aeef8023 6612759 zvol DKIOCGETEFI should return GPT and GPE when possible
Eric Taylor <Eric.Taylor@Sun.COM>
parents: 7294
diff changeset
  1381
			return (EFAULT);
22b4aeef8023 6612759 zvol DKIOCGETEFI should return GPT and GPE when possible
Eric Taylor <Eric.Taylor@Sun.COM>
parents: 7294
diff changeset
  1382
		ptr += sizeof (gpt);
22b4aeef8023 6612759 zvol DKIOCGETEFI should return GPT and GPE when possible
Eric Taylor <Eric.Taylor@Sun.COM>
parents: 7294
diff changeset
  1383
		length -= sizeof (gpt);
22b4aeef8023 6612759 zvol DKIOCGETEFI should return GPT and GPE when possible
Eric Taylor <Eric.Taylor@Sun.COM>
parents: 7294
diff changeset
  1384
	}
22b4aeef8023 6612759 zvol DKIOCGETEFI should return GPT and GPE when possible
Eric Taylor <Eric.Taylor@Sun.COM>
parents: 7294
diff changeset
  1385
	if (length > 0 && ddi_copyout(&gpe, ptr, MIN(sizeof (gpe),
22b4aeef8023 6612759 zvol DKIOCGETEFI should return GPT and GPE when possible
Eric Taylor <Eric.Taylor@Sun.COM>
parents: 7294
diff changeset
  1386
	    length), flag))
22b4aeef8023 6612759 zvol DKIOCGETEFI should return GPT and GPE when possible
Eric Taylor <Eric.Taylor@Sun.COM>
parents: 7294
diff changeset
  1387
		return (EFAULT);
22b4aeef8023 6612759 zvol DKIOCGETEFI should return GPT and GPE when possible
Eric Taylor <Eric.Taylor@Sun.COM>
parents: 7294
diff changeset
  1388
	return (0);
22b4aeef8023 6612759 zvol DKIOCGETEFI should return GPT and GPE when possible
Eric Taylor <Eric.Taylor@Sun.COM>
parents: 7294
diff changeset
  1389
}
22b4aeef8023 6612759 zvol DKIOCGETEFI should return GPT and GPE when possible
Eric Taylor <Eric.Taylor@Sun.COM>
parents: 7294
diff changeset
  1390
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  1391
/*
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  1392
 * Dirtbag ioctls to support mkfs(1M) for UFS filesystems.  See dkio(7I).
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  1393
 */
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  1394
/*ARGSUSED*/
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  1395
int
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  1396
zvol_ioctl(dev_t dev, int cmd, intptr_t arg, int flag, cred_t *cr, int *rvalp)
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  1397
{
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  1398
	zvol_state_t *zv;
3897
278bade789ba 6437750 panic: db->db_buf==0||arc_referenced(db->db_buf), file: dbuf.c,line:1539
maybee
parents: 3755
diff changeset
  1399
	struct dk_cinfo dki;
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  1400
	struct dk_minfo dkm;
3897
278bade789ba 6437750 panic: db->db_buf==0||arc_referenced(db->db_buf), file: dbuf.c,line:1539
maybee
parents: 3755
diff changeset
  1401
	struct dk_callback *dkc;
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  1402
	int error = 0;
6423
437422a29d3a PSARC 2006/370 ZFS Boot Support
gw25295
parents: 5688
diff changeset
  1403
	rl_t *rl;
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  1404
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  1405
	mutex_enter(&zvol_state_lock);
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  1406
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  1407
	zv = ddi_get_soft_state(zvol_state, getminor(dev));
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  1408
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  1409
	if (zv == NULL) {
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  1410
		mutex_exit(&zvol_state_lock);
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  1411
		return (ENXIO);
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  1412
	}
9303
587ef5ac9176 6794730 need zvol support for DKIOCSETWCE and friends
Eric Taylor <Eric.Taylor@Sun.COM>
parents: 9277
diff changeset
  1413
	ASSERT(zv->zv_total_opens > 0);
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  1414
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  1415
	switch (cmd) {
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  1416
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  1417
	case DKIOCINFO:
3897
278bade789ba 6437750 panic: db->db_buf==0||arc_referenced(db->db_buf), file: dbuf.c,line:1539
maybee
parents: 3755
diff changeset
  1418
		bzero(&dki, sizeof (dki));
278bade789ba 6437750 panic: db->db_buf==0||arc_referenced(db->db_buf), file: dbuf.c,line:1539
maybee
parents: 3755
diff changeset
  1419
		(void) strcpy(dki.dki_cname, "zvol");
278bade789ba 6437750 panic: db->db_buf==0||arc_referenced(db->db_buf), file: dbuf.c,line:1539
maybee
parents: 3755
diff changeset
  1420
		(void) strcpy(dki.dki_dname, "zvol");
278bade789ba 6437750 panic: db->db_buf==0||arc_referenced(db->db_buf), file: dbuf.c,line:1539
maybee
parents: 3755
diff changeset
  1421
		dki.dki_ctype = DKC_UNKNOWN;
278bade789ba 6437750 panic: db->db_buf==0||arc_referenced(db->db_buf), file: dbuf.c,line:1539
maybee
parents: 3755
diff changeset
  1422
		dki.dki_maxtransfer = 1 << (SPA_MAXBLOCKSHIFT - zv->zv_min_bs);
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  1423
		mutex_exit(&zvol_state_lock);
3897
278bade789ba 6437750 panic: db->db_buf==0||arc_referenced(db->db_buf), file: dbuf.c,line:1539
maybee
parents: 3755
diff changeset
  1424
		if (ddi_copyout(&dki, (void *)arg, sizeof (dki), flag))
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  1425
			error = EFAULT;
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  1426
		return (error);
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  1427
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  1428
	case DKIOCGMEDIAINFO:
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  1429
		bzero(&dkm, sizeof (dkm));
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  1430
		dkm.dki_lbsize = 1U << zv->zv_min_bs;
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  1431
		dkm.dki_capacity = zv->zv_volsize >> zv->zv_min_bs;
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  1432
		dkm.dki_media_type = DK_UNKNOWN;
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  1433
		mutex_exit(&zvol_state_lock);
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  1434
		if (ddi_copyout(&dkm, (void *)arg, sizeof (dkm), flag))
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  1435
			error = EFAULT;
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  1436
		return (error);
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  1437
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  1438
	case DKIOCGETEFI:
7405
22b4aeef8023 6612759 zvol DKIOCGETEFI should return GPT and GPE when possible
Eric Taylor <Eric.Taylor@Sun.COM>
parents: 7294
diff changeset
  1439
		{
22b4aeef8023 6612759 zvol DKIOCGETEFI should return GPT and GPE when possible
Eric Taylor <Eric.Taylor@Sun.COM>
parents: 7294
diff changeset
  1440
			uint64_t vs = zv->zv_volsize;
22b4aeef8023 6612759 zvol DKIOCGETEFI should return GPT and GPE when possible
Eric Taylor <Eric.Taylor@Sun.COM>
parents: 7294
diff changeset
  1441
			uint8_t bs = zv->zv_min_bs;
3016
e46176752558 6480048 newfs failed to create new ufs in zvol.
maybee
parents: 2885
diff changeset
  1442
e46176752558 6480048 newfs failed to create new ufs in zvol.
maybee
parents: 2885
diff changeset
  1443
			mutex_exit(&zvol_state_lock);
7405
22b4aeef8023 6612759 zvol DKIOCGETEFI should return GPT and GPE when possible
Eric Taylor <Eric.Taylor@Sun.COM>
parents: 7294
diff changeset
  1444
			error = zvol_getefi((void *)arg, flag, vs, bs);
22b4aeef8023 6612759 zvol DKIOCGETEFI should return GPT and GPE when possible
Eric Taylor <Eric.Taylor@Sun.COM>
parents: 7294
diff changeset
  1445
			return (error);
3016
e46176752558 6480048 newfs failed to create new ufs in zvol.
maybee
parents: 2885
diff changeset
  1446
		}
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  1447
3638
6b28ebc717aa 6496357 spec_fsync() is useless on devices that do write caching
billm
parents: 3461
diff changeset
  1448
	case DKIOCFLUSHWRITECACHE:
3897
278bade789ba 6437750 panic: db->db_buf==0||arc_referenced(db->db_buf), file: dbuf.c,line:1539
maybee
parents: 3755
diff changeset
  1449
		dkc = (struct dk_callback *)arg;
9303
587ef5ac9176 6794730 need zvol support for DKIOCSETWCE and friends
Eric Taylor <Eric.Taylor@Sun.COM>
parents: 9277
diff changeset
  1450
		mutex_exit(&zvol_state_lock);
3638
6b28ebc717aa 6496357 spec_fsync() is useless on devices that do write caching
billm
parents: 3461
diff changeset
  1451
		zil_commit(zv->zv_zilog, UINT64_MAX, ZVOL_OBJ);
3897
278bade789ba 6437750 panic: db->db_buf==0||arc_referenced(db->db_buf), file: dbuf.c,line:1539
maybee
parents: 3755
diff changeset
  1452
		if ((flag & FKIOCTL) && dkc != NULL && dkc->dkc_callback) {
278bade789ba 6437750 panic: db->db_buf==0||arc_referenced(db->db_buf), file: dbuf.c,line:1539
maybee
parents: 3755
diff changeset
  1453
			(*dkc->dkc_callback)(dkc->dkc_cookie, error);
278bade789ba 6437750 panic: db->db_buf==0||arc_referenced(db->db_buf), file: dbuf.c,line:1539
maybee
parents: 3755
diff changeset
  1454
			error = 0;
278bade789ba 6437750 panic: db->db_buf==0||arc_referenced(db->db_buf), file: dbuf.c,line:1539
maybee
parents: 3755
diff changeset
  1455
		}
9303
587ef5ac9176 6794730 need zvol support for DKIOCSETWCE and friends
Eric Taylor <Eric.Taylor@Sun.COM>
parents: 9277
diff changeset
  1456
		return (error);
587ef5ac9176 6794730 need zvol support for DKIOCSETWCE and friends
Eric Taylor <Eric.Taylor@Sun.COM>
parents: 9277
diff changeset
  1457
587ef5ac9176 6794730 need zvol support for DKIOCSETWCE and friends
Eric Taylor <Eric.Taylor@Sun.COM>
parents: 9277
diff changeset
  1458
	case DKIOCGETWCE:
587ef5ac9176 6794730 need zvol support for DKIOCSETWCE and friends
Eric Taylor <Eric.Taylor@Sun.COM>
parents: 9277
diff changeset
  1459
		{
587ef5ac9176 6794730 need zvol support for DKIOCSETWCE and friends
Eric Taylor <Eric.Taylor@Sun.COM>
parents: 9277
diff changeset
  1460
			int wce = (zv->zv_flags & ZVOL_WCE) ? 1 : 0;
587ef5ac9176 6794730 need zvol support for DKIOCSETWCE and friends
Eric Taylor <Eric.Taylor@Sun.COM>
parents: 9277
diff changeset
  1461
			if (ddi_copyout(&wce, (void *)arg, sizeof (int),
587ef5ac9176 6794730 need zvol support for DKIOCSETWCE and friends
Eric Taylor <Eric.Taylor@Sun.COM>
parents: 9277
diff changeset
  1462
			    flag))
587ef5ac9176 6794730 need zvol support for DKIOCSETWCE and friends
Eric Taylor <Eric.Taylor@Sun.COM>
parents: 9277
diff changeset
  1463
				error = EFAULT;
587ef5ac9176 6794730 need zvol support for DKIOCSETWCE and friends
Eric Taylor <Eric.Taylor@Sun.COM>
parents: 9277
diff changeset
  1464
			break;
587ef5ac9176 6794730 need zvol support for DKIOCSETWCE and friends
Eric Taylor <Eric.Taylor@Sun.COM>
parents: 9277
diff changeset
  1465
		}
587ef5ac9176 6794730 need zvol support for DKIOCSETWCE and friends
Eric Taylor <Eric.Taylor@Sun.COM>
parents: 9277
diff changeset
  1466
	case DKIOCSETWCE:
587ef5ac9176 6794730 need zvol support for DKIOCSETWCE and friends
Eric Taylor <Eric.Taylor@Sun.COM>
parents: 9277
diff changeset
  1467
		{
587ef5ac9176 6794730 need zvol support for DKIOCSETWCE and friends
Eric Taylor <Eric.Taylor@Sun.COM>
parents: 9277
diff changeset
  1468
			int wce;
587ef5ac9176 6794730 need zvol support for DKIOCSETWCE and friends
Eric Taylor <Eric.Taylor@Sun.COM>
parents: 9277
diff changeset
  1469
			if (ddi_copyin((void *)arg, &wce, sizeof (int),
587ef5ac9176 6794730 need zvol support for DKIOCSETWCE and friends
Eric Taylor <Eric.Taylor@Sun.COM>
parents: 9277
diff changeset
  1470
			    flag)) {
587ef5ac9176 6794730 need zvol support for DKIOCSETWCE and friends
Eric Taylor <Eric.Taylor@Sun.COM>
parents: 9277
diff changeset
  1471
				error = EFAULT;
587ef5ac9176 6794730 need zvol support for DKIOCSETWCE and friends
Eric Taylor <Eric.Taylor@Sun.COM>
parents: 9277
diff changeset
  1472
				break;
587ef5ac9176 6794730 need zvol support for DKIOCSETWCE and friends
Eric Taylor <Eric.Taylor@Sun.COM>
parents: 9277
diff changeset
  1473
			}
587ef5ac9176 6794730 need zvol support for DKIOCSETWCE and friends
Eric Taylor <Eric.Taylor@Sun.COM>
parents: 9277
diff changeset
  1474
			if (wce) {
587ef5ac9176 6794730 need zvol support for DKIOCSETWCE and friends
Eric Taylor <Eric.Taylor@Sun.COM>
parents: 9277
diff changeset
  1475
				zv->zv_flags |= ZVOL_WCE;
587ef5ac9176 6794730 need zvol support for DKIOCSETWCE and friends
Eric Taylor <Eric.Taylor@Sun.COM>
parents: 9277
diff changeset
  1476
				mutex_exit(&zvol_state_lock);
587ef5ac9176 6794730 need zvol support for DKIOCSETWCE and friends
Eric Taylor <Eric.Taylor@Sun.COM>
parents: 9277
diff changeset
  1477
			} else {
587ef5ac9176 6794730 need zvol support for DKIOCSETWCE and friends
Eric Taylor <Eric.Taylor@Sun.COM>
parents: 9277
diff changeset
  1478
				zv->zv_flags &= ~ZVOL_WCE;
587ef5ac9176 6794730 need zvol support for DKIOCSETWCE and friends
Eric Taylor <Eric.Taylor@Sun.COM>
parents: 9277
diff changeset
  1479
				mutex_exit(&zvol_state_lock);
587ef5ac9176 6794730 need zvol support for DKIOCSETWCE and friends
Eric Taylor <Eric.Taylor@Sun.COM>
parents: 9277
diff changeset
  1480
				zil_commit(zv->zv_zilog, UINT64_MAX, ZVOL_OBJ);
587ef5ac9176 6794730 need zvol support for DKIOCSETWCE and friends
Eric Taylor <Eric.Taylor@Sun.COM>
parents: 9277
diff changeset
  1481
			}
587ef5ac9176 6794730 need zvol support for DKIOCSETWCE and friends
Eric Taylor <Eric.Taylor@Sun.COM>
parents: 9277
diff changeset
  1482
			return (0);
587ef5ac9176 6794730 need zvol support for DKIOCSETWCE and friends
Eric Taylor <Eric.Taylor@Sun.COM>
parents: 9277
diff changeset
  1483
		}
3638
6b28ebc717aa 6496357 spec_fsync() is useless on devices that do write caching
billm
parents: 3461
diff changeset
  1484
3245
0c86ad4b2673 6493634 zvol should return ENOTSUP on DKIOCGVTOC ioctl
maybee
parents: 3080
diff changeset
  1485
	case DKIOCGGEOM:
0c86ad4b2673 6493634 zvol should return ENOTSUP on DKIOCGVTOC ioctl
maybee
parents: 3080
diff changeset
  1486
	case DKIOCGVTOC:
6423
437422a29d3a PSARC 2006/370 ZFS Boot Support
gw25295
parents: 5688
diff changeset
  1487
		/*
437422a29d3a PSARC 2006/370 ZFS Boot Support
gw25295
parents: 5688
diff changeset
  1488
		 * commands using these (like prtvtoc) expect ENOTSUP
437422a29d3a PSARC 2006/370 ZFS Boot Support
gw25295
parents: 5688
diff changeset
  1489
		 * since we're emulating an EFI label
437422a29d3a PSARC 2006/370 ZFS Boot Support
gw25295
parents: 5688
diff changeset
  1490
		 */
3245
0c86ad4b2673 6493634 zvol should return ENOTSUP on DKIOCGVTOC ioctl
maybee
parents: 3080
diff changeset
  1491
		error = ENOTSUP;
0c86ad4b2673 6493634 zvol should return ENOTSUP on DKIOCGVTOC ioctl
maybee
parents: 3080
diff changeset
  1492
		break;
0c86ad4b2673 6493634 zvol should return ENOTSUP on DKIOCGVTOC ioctl
maybee
parents: 3080
diff changeset
  1493
6423
437422a29d3a PSARC 2006/370 ZFS Boot Support
gw25295
parents: 5688
diff changeset
  1494
	case DKIOCDUMPINIT:
437422a29d3a PSARC 2006/370 ZFS Boot Support
gw25295
parents: 5688
diff changeset
  1495
		rl = zfs_range_lock(&zv->zv_znode, 0, zv->zv_volsize,
437422a29d3a PSARC 2006/370 ZFS Boot Support
gw25295
parents: 5688
diff changeset
  1496
		    RL_WRITER);
437422a29d3a PSARC 2006/370 ZFS Boot Support
gw25295
parents: 5688
diff changeset
  1497
		error = zvol_dumpify(zv);
437422a29d3a PSARC 2006/370 ZFS Boot Support
gw25295
parents: 5688
diff changeset
  1498
		zfs_range_unlock(rl);
437422a29d3a PSARC 2006/370 ZFS Boot Support
gw25295
parents: 5688
diff changeset
  1499
		break;
437422a29d3a PSARC 2006/370 ZFS Boot Support
gw25295
parents: 5688
diff changeset
  1500
437422a29d3a PSARC 2006/370 ZFS Boot Support
gw25295
parents: 5688
diff changeset
  1501
	case DKIOCDUMPFINI:
9277
3e67eb420d44 6817316 data corruption: failed zvol dumpify erases tmpfs data
Eric Taylor <Eric.Taylor@Sun.COM>
parents: 8524
diff changeset
  1502
		if (!(zv->zv_flags & ZVOL_DUMPIFIED))
3e67eb420d44 6817316 data corruption: failed zvol dumpify erases tmpfs data
Eric Taylor <Eric.Taylor@Sun.COM>
parents: 8524
diff changeset
  1503
			break;
6423
437422a29d3a PSARC 2006/370 ZFS Boot Support
gw25295
parents: 5688
diff changeset
  1504
		rl = zfs_range_lock(&zv->zv_znode, 0, zv->zv_volsize,
437422a29d3a PSARC 2006/370 ZFS Boot Support
gw25295
parents: 5688
diff changeset
  1505
		    RL_WRITER);
437422a29d3a PSARC 2006/370 ZFS Boot Support
gw25295
parents: 5688
diff changeset
  1506
		error = zvol_dump_fini(zv);
437422a29d3a PSARC 2006/370 ZFS Boot Support
gw25295
parents: 5688
diff changeset
  1507
		zfs_range_unlock(rl);
437422a29d3a PSARC 2006/370 ZFS Boot Support
gw25295
parents: 5688
diff changeset
  1508
		break;
437422a29d3a PSARC 2006/370 ZFS Boot Support
gw25295
parents: 5688
diff changeset
  1509
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  1510
	default:
3016
e46176752558 6480048 newfs failed to create new ufs in zvol.
maybee
parents: 2885
diff changeset
  1511
		error = ENOTTY;
789
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  1512
		break;
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  1513
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  1514
	}
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  1515
	mutex_exit(&zvol_state_lock);
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  1516
	return (error);
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  1517
}
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  1518
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  1519
int
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  1520
zvol_busy(void)
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  1521
{
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  1522
	return (zvol_minors != 0);
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  1523
}
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  1524
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  1525
void
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  1526
zvol_init(void)
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  1527
{
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  1528
	VERIFY(ddi_soft_state_init(&zvol_state, sizeof (zvol_state_t), 1) == 0);
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  1529
	mutex_init(&zvol_state_lock, NULL, MUTEX_DEFAULT, NULL);
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  1530
}
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  1531
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  1532
void
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  1533
zvol_fini(void)
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  1534
{
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  1535
	mutex_destroy(&zvol_state_lock);
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  1536
	ddi_soft_state_fini(&zvol_state);
b348f31ed315 PSARC 2002/240 ZFS
ahrens
parents:
diff changeset
  1537
}
6423
437422a29d3a PSARC 2006/370 ZFS Boot Support
gw25295
parents: 5688
diff changeset
  1538
437422a29d3a PSARC 2006/370 ZFS Boot Support
gw25295
parents: 5688
diff changeset
  1539
static boolean_t
437422a29d3a PSARC 2006/370 ZFS Boot Support
gw25295
parents: 5688
diff changeset
  1540
zvol_is_swap(zvol_state_t *zv)
437422a29d3a PSARC 2006/370 ZFS Boot Support
gw25295
parents: 5688
diff changeset
  1541
{
437422a29d3a PSARC 2006/370 ZFS Boot Support
gw25295
parents: 5688
diff changeset
  1542
	vnode_t *vp;
437422a29d3a PSARC 2006/370 ZFS Boot Support
gw25295
parents: 5688
diff changeset
  1543
	boolean_t ret = B_FALSE;
437422a29d3a PSARC 2006/370 ZFS Boot Support
gw25295
parents: 5688
diff changeset
  1544
	char *devpath;
437422a29d3a PSARC 2006/370 ZFS Boot Support
gw25295
parents: 5688
diff changeset
  1545
	size_t devpathlen;
437422a29d3a PSARC 2006/370 ZFS Boot Support
gw25295
parents: 5688
diff changeset
  1546
	int error;
437422a29d3a PSARC 2006/370 ZFS Boot Support
gw25295
parents: 5688
diff changeset
  1547
437422a29d3a PSARC 2006/370 ZFS Boot Support
gw25295
parents: 5688
diff changeset
  1548
	devpathlen = strlen(ZVOL_FULL_DEV_DIR) + strlen(zv->zv_name) + 1;
437422a29d3a PSARC 2006/370 ZFS Boot Support
gw25295
parents: 5688
diff changeset
  1549
	devpath = kmem_alloc(devpathlen, KM_SLEEP);
437422a29d3a PSARC 2006/370 ZFS Boot Support
gw25295
parents: 5688
diff changeset
  1550
	(void) sprintf(devpath, "%s%s", ZVOL_FULL_DEV_DIR, zv->zv_name);
437422a29d3a PSARC 2006/370 ZFS Boot Support
gw25295
parents: 5688
diff changeset
  1551
	error = lookupname(devpath, UIO_SYSSPACE, FOLLOW, NULLVPP, &vp);
437422a29d3a PSARC 2006/370 ZFS Boot Support
gw25295
parents: 5688
diff changeset
  1552
	kmem_free(devpath, devpathlen);
437422a29d3a PSARC 2006/370 ZFS Boot Support
gw25295
parents: 5688
diff changeset
  1553
437422a29d3a PSARC 2006/370 ZFS Boot Support
gw25295
parents: 5688
diff changeset
  1554
	ret = !error && IS_SWAPVP(common_specvp(vp));
437422a29d3a PSARC 2006/370 ZFS Boot Support
gw25295
parents: 5688
diff changeset
  1555
437422a29d3a PSARC 2006/370 ZFS Boot Support
gw25295
parents: 5688
diff changeset
  1556
	if (vp != NULL)
437422a29d3a PSARC 2006/370 ZFS Boot Support
gw25295
parents: 5688
diff changeset
  1557
		VN_RELE(vp);
437422a29d3a PSARC 2006/370 ZFS Boot Support
gw25295
parents: 5688
diff changeset
  1558
437422a29d3a PSARC 2006/370 ZFS Boot Support
gw25295
parents: 5688
diff changeset
  1559
	return (ret);
437422a29d3a PSARC 2006/370 ZFS Boot Support
gw25295
parents: 5688
diff changeset
  1560
}
437422a29d3a PSARC 2006/370 ZFS Boot Support
gw25295
parents: 5688
diff changeset
  1561
437422a29d3a PSARC 2006/370 ZFS Boot Support
gw25295
parents: 5688
diff changeset
  1562
static int
437422a29d3a PSARC 2006/370 ZFS Boot Support
gw25295
parents: 5688
diff changeset
  1563
zvol_dump_init(zvol_state_t *zv, boolean_t resize)
437422a29d3a PSARC 2006/370 ZFS Boot Support
gw25295
parents: 5688
diff changeset
  1564
{
437422a29d3a PSARC 2006/370 ZFS Boot Support
gw25295
parents: 5688
diff changeset
  1565
	dmu_tx_t *tx;
437422a29d3a PSARC 2006/370 ZFS Boot Support
gw25295
parents: 5688
diff changeset
  1566
	int error = 0;
437422a29d3a PSARC 2006/370 ZFS Boot Support
gw25295
parents: 5688
diff changeset
  1567
	objset_t *os = zv->zv_objset;
437422a29d3a PSARC 2006/370 ZFS Boot Support
gw25295
parents: 5688
diff changeset
  1568
	nvlist_t *nv = NULL;
437422a29d3a PSARC 2006/370 ZFS Boot Support
gw25295
parents: 5688
diff changeset
  1569
437422a29d3a PSARC 2006/370 ZFS Boot Support
gw25295
parents: 5688
diff changeset
  1570
	ASSERT(MUTEX_HELD(&zvol_state_lock));
437422a29d3a PSARC 2006/370 ZFS Boot Support
gw25295
parents: 5688
diff changeset
  1571
437422a29d3a PSARC 2006/370 ZFS Boot Support
gw25295
parents: 5688
diff changeset
  1572
	tx = dmu_tx_create(os);
437422a29d3a PSARC 2006/370 ZFS Boot Support
gw25295
parents: 5688
diff changeset
  1573
	dmu_tx_hold_zap(tx, ZVOL_ZAP_OBJ, TRUE, NULL);
437422a29d3a PSARC 2006/370 ZFS Boot Support
gw25295
parents: 5688
diff changeset
  1574
	error = dmu_tx_assign(tx, TXG_WAIT);
437422a29d3a PSARC 2006/370 ZFS Boot Support
gw25295
parents: 5688
diff changeset
  1575
	if (error) {
437422a29d3a PSARC 2006/370 ZFS Boot Support
gw25295
parents: 5688
diff changeset
  1576
		dmu_tx_abort(tx);
437422a29d3a PSARC 2006/370 ZFS Boot Support
gw25295
parents: 5688
diff changeset
  1577
		return (error);
437422a29d3a PSARC 2006/370 ZFS Boot Support
gw25295
parents: 5688
diff changeset
  1578
	}
437422a29d3a PSARC 2006/370 ZFS Boot Support
gw25295
parents: 5688
diff changeset
  1579
437422a29d3a PSARC 2006/370 ZFS Boot Support
gw25295
parents: 5688
diff changeset
  1580
	/*
437422a29d3a PSARC 2006/370 ZFS Boot Support
gw25295
parents: 5688
diff changeset
  1581
	 * If we are resizing the dump device then we only need to
437422a29d3a PSARC 2006/370 ZFS Boot Support
gw25295
parents: 5688
diff changeset
  1582
	 * update the refreservation to match the newly updated
437422a29d3a PSARC 2006/370 ZFS Boot Support
gw25295
parents: 5688
diff changeset
  1583
	 * zvolsize. Otherwise, we save off the original state of the
437422a29d3a PSARC 2006/370 ZFS Boot Support
gw25295
parents: 5688
diff changeset
  1584
	 * zvol so that we can restore them if the zvol is ever undumpified.
437422a29d3a PSARC 2006/370 ZFS Boot Support
gw25295
parents: 5688
diff changeset
  1585
	 */
437422a29d3a PSARC 2006/370 ZFS Boot Support
gw25295
parents: 5688
diff changeset
  1586
	if (resize) {
437422a29d3a PSARC 2006/370 ZFS Boot Support
gw25295
parents: 5688
diff changeset
  1587
		error = zap_update(os, ZVOL_ZAP_OBJ,
437422a29d3a PSARC 2006/370 ZFS Boot Support
gw25295
parents: 5688
diff changeset
  1588
		    zfs_prop_to_name(ZFS_PROP_REFRESERVATION), 8, 1,
437422a29d3a PSARC 2006/370 ZFS Boot Support
gw25295
parents: 5688
diff changeset
  1589
		    &zv->zv_volsize, tx);
437422a29d3a PSARC 2006/370 ZFS Boot Support
gw25295
parents: 5688
diff changeset
  1590
	} else {
7837
001de5627df3 6333409 traversal code should be able to issue multiple reads in parallel
Matthew Ahrens <Matthew.Ahrens@Sun.COM>
parents: 7754
diff changeset
  1591
		uint64_t checksum, compress, refresrv, vbs;
001de5627df3 6333409 traversal code should be able to issue multiple reads in parallel
Matthew Ahrens <Matthew.Ahrens@Sun.COM>
parents: 7754
diff changeset
  1592
6423
437422a29d3a PSARC 2006/370 ZFS Boot Support
gw25295
parents: 5688
diff changeset
  1593
		error = dsl_prop_get_integer(zv->zv_name,
437422a29d3a PSARC 2006/370 ZFS Boot Support
gw25295
parents: 5688
diff changeset
  1594
		    zfs_prop_to_name(ZFS_PROP_COMPRESSION), &compress, NULL);
437422a29d3a PSARC 2006/370 ZFS Boot Support
gw25295
parents: 5688
diff changeset
  1595
		error = error ? error : dsl_prop_get_integer(zv->zv_name,
437422a29d3a PSARC 2006/370 ZFS Boot Support
gw25295
parents: 5688
diff changeset
  1596
		    zfs_prop_to_name(ZFS_PROP_CHECKSUM), &checksum, NULL);
437422a29d3a PSARC 2006/370 ZFS Boot Support
gw25295
parents: 5688
diff changeset
  1597
		error = error ? error : dsl_prop_get_integer(zv->zv_name,
437422a29d3a PSARC 2006/370 ZFS Boot Support
gw25295
parents: 5688
diff changeset
  1598
		    zfs_prop_to_name(ZFS_PROP_REFRESERVATION), &refresrv, NULL);
7837
001de5627df3 6333409 traversal code should be able to issue multiple reads in parallel
Matthew Ahrens <Matthew.Ahrens@Sun.COM>
parents: 7754
diff changeset
  1599
		error = error ? error : dsl_prop_get_integer(zv->zv_name,
001de5627df3 6333409 traversal code should be able to issue multiple reads in parallel
Matthew Ahrens <Matthew.Ahrens@Sun.COM>
parents: 7754
diff changeset
  1600
		    zfs_prop_to_name(ZFS_PROP_VOLBLOCKSIZE), &vbs, NULL);
6423
437422a29d3a PSARC 2006/370 ZFS Boot Support
gw25295
parents: 5688
diff changeset
  1601
437422a29d3a PSARC 2006/370 ZFS Boot Support
gw25295
parents: 5688
diff changeset
  1602
		error = error ? error : zap_update(os, ZVOL_ZAP_OBJ,
437422a29d3a PSARC 2006/370 ZFS Boot Support
gw25295
parents: 5688
diff changeset
  1603
		    zfs_prop_to_name(ZFS_PROP_COMPRESSION), 8, 1,
437422a29d3a PSARC 2006/370 ZFS Boot Support
gw25295
parents: 5688
diff changeset
  1604
		    &compress, tx);
437422a29d3a PSARC 2006/370 ZFS Boot Support
gw25295
parents: 5688
diff changeset
  1605
		error = error ? error : zap_update(os, ZVOL_ZAP_OBJ,
437422a29d3a PSARC 2006/370 ZFS Boot Support
gw25295
parents: 5688
diff changeset
  1606
		    zfs_prop_to_name(ZFS_PROP_CHECKSUM), 8, 1, &checksum, tx);
437422a29d3a PSARC 2006/370 ZFS Boot Support
gw25295
parents: 5688
diff changeset
  1607
		error = error ? error : zap_update(os, ZVOL_ZAP_OBJ,
437422a29d3a PSARC 2006/370 ZFS Boot Support
gw25295
parents: 5688
diff changeset
  1608
		    zfs_prop_to_name(ZFS_PROP_REFRESERVATION), 8, 1,
437422a29d3a PSARC 2006/370 ZFS Boot Support
gw25295
parents: 5688
diff changeset
  1609
		    &refresrv, tx);
7837
001de5627df3 6333409 traversal code should be able to issue multiple reads in parallel
Matthew Ahrens <Matthew.Ahrens@Sun.COM>
parents: 7754
diff changeset
  1610
		error = error ? error : zap_update(os, ZVOL_ZAP_OBJ,
001de5627df3 6333409 traversal code should be able to issue multiple reads in parallel
Matthew Ahrens <Matthew.Ahrens@Sun.COM>
parents: 7754
diff changeset
  1611
		    zfs_prop_to_name(ZFS_PROP_VOLBLOCKSIZE), 8, 1,
001de5627df3 6333409 traversal code should be able to issue multiple reads in parallel
Matthew Ahrens <Matthew.Ahrens@Sun.COM>
parents: 7754
diff changeset
  1612
		    &vbs, tx);
6423
437422a29d3a PSARC 2006/370 ZFS Boot Support
gw25295
parents: 5688
diff changeset
  1613
	}
437422a29d3a PSARC 2006/370 ZFS Boot Support
gw25295
parents: 5688
diff changeset
  1614
	dmu_tx_commit(tx);
437422a29d3a PSARC 2006/370 ZFS Boot Support
gw25295
parents: 5688
diff changeset
  1615
437422a29d3a PSARC 2006/370 ZFS Boot Support
gw25295
parents: 5688
diff changeset
  1616
	/* Truncate the file */
437422a29d3a PSARC 2006/370 ZFS Boot Support
gw25295
parents: 5688
diff changeset
  1617
	if (!error)
6992
20c04e18c58c 6573681 deleting a very large file can be slow
maybee
parents: 6730
diff changeset
  1618
		error = dmu_free_long_range(zv->zv_objset,
20c04e18c58c 6573681 deleting a very large file can be slow
maybee
parents: 6730
diff changeset
  1619
		    ZVOL_OBJ, 0, DMU_OBJECT_END);
6423
437422a29d3a PSARC 2006/370 ZFS Boot Support
gw25295
parents: 5688
diff changeset
  1620
437422a29d3a PSARC 2006/370 ZFS Boot Support
gw25295
parents: 5688
diff changeset
  1621
	if (error)
437422a29d3a PSARC 2006/370 ZFS Boot Support
gw25295
parents: 5688
diff changeset
  1622
		return (error);
437422a29d3a PSARC 2006/370 ZFS Boot Support
gw25295
parents: 5688
diff changeset
  1623
437422a29d3a PSARC 2006/370 ZFS Boot Support
gw25295
parents: 5688
diff changeset
  1624
	/*
437422a29d3a PSARC 2006/370 ZFS Boot Support
gw25295
parents: 5688
diff changeset
  1625
	 * We only need update the zvol's property if we are initializing
437422a29d3a PSARC 2006/370 ZFS Boot Support
gw25295
parents: 5688
diff changeset
  1626
	 * the dump area for the first time.
437422a29d3a PSARC 2006/370 ZFS Boot Support
gw25295
parents: 5688
diff changeset
  1627
	 */
437422a29d3a PSARC 2006/370 ZFS Boot Support
gw25295
parents: 5688
diff changeset
  1628
	if (!resize) {
437422a29d3a PSARC 2006/370 ZFS Boot Support
gw25295
parents: 5688
diff changeset
  1629
		VERIFY(nvlist_alloc(&nv, NV_UNIQUE_NAME, KM_SLEEP) == 0);
437422a29d3a PSARC 2006/370 ZFS Boot Support
gw25295
parents: 5688
diff changeset
  1630
		VERIFY(nvlist_add_uint64(nv,
437422a29d3a PSARC 2006/370 ZFS Boot Support
gw25295
parents: 5688
diff changeset
  1631
		    zfs_prop_to_name(ZFS_PROP_REFRESERVATION), 0) == 0);
437422a29d3a PSARC 2006/370 ZFS Boot Support
gw25295
parents: 5688
diff changeset
  1632
		VERIFY(nvlist_add_uint64(nv,
437422a29d3a PSARC 2006/370 ZFS Boot Support
gw25295
parents: 5688
diff changeset
  1633
		    zfs_prop_to_name(ZFS_PROP_COMPRESSION),
437422a29d3a PSARC 2006/370 ZFS Boot Support
gw25295
parents: 5688
diff changeset
  1634
		    ZIO_COMPRESS_OFF) == 0);
437422a29d3a PSARC 2006/370 ZFS Boot Support
gw25295
parents: 5688
diff changeset
  1635
		VERIFY(nvlist_add_uint64(nv,
437422a29d3a PSARC 2006/370 ZFS Boot Support
gw25295
parents: 5688
diff changeset
  1636
		    zfs_prop_to_name(ZFS_PROP_CHECKSUM),
437422a29d3a PSARC 2006/370 ZFS Boot Support
gw25295
parents: 5688
diff changeset
  1637
		    ZIO_CHECKSUM_OFF) == 0);
7837
001de5627df3 6333409 traversal code should be able to issue multiple reads in parallel
Matthew Ahrens <Matthew.Ahrens@Sun.COM>
parents: 7754
diff changeset
  1638
		VERIFY(nvlist_add_uint64(nv,
001de5627df3 6333409 traversal code should be able to issue multiple reads in parallel
Matthew Ahrens <Matthew.Ahrens@Sun.COM>
parents: 7754
diff changeset
  1639
		    zfs_prop_to_name(ZFS_PROP_VOLBLOCKSIZE),
001de5627df3 6333409 traversal code should be able to issue multiple reads in parallel
Matthew Ahrens <Matthew.Ahrens@Sun.COM>
parents: 7754
diff changeset
  1640
		    SPA_MAXBLOCKSIZE) == 0);
6423
437422a29d3a PSARC 2006/370 ZFS Boot Support
gw25295
parents: 5688
diff changeset
  1641
437422a29d3a PSARC 2006/370 ZFS Boot Support
gw25295
parents: 5688
diff changeset
  1642
		error = zfs_set_prop_nvlist(zv->zv_name, nv);
437422a29d3a PSARC 2006/370 ZFS Boot Support
gw25295
parents: 5688
diff changeset
  1643
		nvlist_free(nv);
437422a29d3a PSARC 2006/370 ZFS Boot Support
gw25295
parents: 5688
diff changeset
  1644
437422a29d3a PSARC 2006/370 ZFS Boot Support
gw25295
parents: 5688
diff changeset
  1645
		if (error)
437422a29d3a PSARC 2006/370 ZFS Boot Support
gw25295
parents: 5688
diff changeset
  1646
			return (error);
437422a29d3a PSARC 2006/370 ZFS Boot Support
gw25295
parents: 5688
diff changeset
  1647
	}
437422a29d3a PSARC 2006/370 ZFS Boot Support
gw25295
parents: 5688
diff changeset
  1648
437422a29d3a PSARC 2006/370 ZFS Boot Support
gw25295
parents: 5688
diff changeset
  1649
	/* Allocate the space for the dump */
437422a29d3a PSARC 2006/370 ZFS Boot Support
gw25295
parents: 5688
diff changeset
  1650
	error = zvol_prealloc(zv);
437422a29d3a PSARC 2006/370 ZFS Boot Support
gw25295
parents: 5688
diff changeset
  1651
	return (error);
437422a29d3a PSARC 2006/370 ZFS Boot Support
gw25295
parents: 5688
diff changeset
  1652
}
437422a29d3a PSARC 2006/370 ZFS Boot Support
gw25295
parents: 5688
diff changeset
  1653
437422a29d3a PSARC 2006/370 ZFS Boot Support
gw25295
parents: 5688
diff changeset
  1654
static int
437422a29d3a PSARC 2006/370 ZFS Boot Support
gw25295
parents: 5688
diff changeset
  1655
zvol_dumpify(zvol_state_t *zv)
437422a29d3a PSARC 2006/370 ZFS Boot Support
gw25295
parents: 5688
diff changeset
  1656
{
437422a29d3a PSARC 2006/370 ZFS Boot Support
gw25295
parents: 5688
diff changeset
  1657
	int error = 0;
437422a29d3a PSARC 2006/370 ZFS Boot Support
gw25295
parents: 5688
diff changeset
  1658
	uint64_t dumpsize = 0;
437422a29d3a PSARC 2006/370 ZFS Boot Support
gw25295
parents: 5688
diff changeset
  1659
	dmu_tx_t *tx;
437422a29d3a PSARC 2006/370 ZFS Boot Support
gw25295
parents: 5688
diff changeset
  1660
	objset_t *os = zv->zv_objset;
437422a29d3a PSARC 2006/370 ZFS Boot Support
gw25295
parents: 5688
diff changeset
  1661
437422a29d3a PSARC 2006/370 ZFS Boot Support
gw25295
parents: 5688
diff changeset
  1662
	if (zv->zv_flags & ZVOL_RDONLY || (zv->zv_mode & DS_MODE_READONLY))
437422a29d3a PSARC 2006/370 ZFS Boot Support
gw25295
parents: 5688
diff changeset
  1663
		return (EROFS);
437422a29d3a PSARC 2006/370 ZFS Boot Support
gw25295
parents: 5688
diff changeset
  1664
437422a29d3a PSARC 2006/370 ZFS Boot Support
gw25295
parents: 5688
diff changeset
  1665
	/*
437422a29d3a PSARC 2006/370 ZFS Boot Support
gw25295
parents: 5688
diff changeset
  1666
	 * We do not support swap devices acting as dump devices.
437422a29d3a PSARC 2006/370 ZFS Boot Support
gw25295
parents: 5688
diff changeset
  1667
	 */
437422a29d3a PSARC 2006/370 ZFS Boot Support
gw25295
parents: 5688
diff changeset
  1668
	if (zvol_is_swap(zv))
437422a29d3a PSARC 2006/370 ZFS Boot Support
gw25295
parents: 5688
diff changeset
  1669
		return (ENOTSUP);
437422a29d3a PSARC 2006/370 ZFS Boot Support
gw25295
parents: 5688
diff changeset
  1670
437422a29d3a PSARC 2006/370 ZFS Boot Support
gw25295
parents: 5688
diff changeset
  1671
	if (zap_lookup(zv->zv_objset, ZVOL_ZAP_OBJ, ZVOL_DUMPSIZE,
437422a29d3a PSARC 2006/370 ZFS Boot Support
gw25295
parents: 5688
diff changeset
  1672
	    8, 1, &dumpsize) != 0 || dumpsize != zv->zv_volsize) {
437422a29d3a PSARC 2006/370 ZFS Boot Support
gw25295
parents: 5688
diff changeset
  1673
		boolean_t resize = (dumpsize > 0) ? B_TRUE : B_FALSE;
437422a29d3a PSARC 2006/370 ZFS Boot Support
gw25295
parents: 5688
diff changeset
  1674
437422a29d3a PSARC 2006/370 ZFS Boot Support
gw25295
parents: 5688
diff changeset
  1675
		if ((error = zvol_dump_init(zv, resize)) != 0) {
437422a29d3a PSARC 2006/370 ZFS Boot Support
gw25295
parents: 5688
diff changeset
  1676
			(void) zvol_dump_fini(zv);
437422a29d3a PSARC 2006/370 ZFS Boot Support
gw25295
parents: 5688
diff changeset
  1677
			return (error);
437422a29d3a PSARC 2006/370 ZFS Boot Support
gw25295
parents: 5688
diff changeset
  1678
		}
437422a29d3a PSARC 2006/370 ZFS Boot Support
gw25295
parents: 5688
diff changeset
  1679
	}
437422a29d3a PSARC 2006/370 ZFS Boot Support
gw25295
parents: 5688
diff changeset
  1680
437422a29d3a PSARC 2006/370 ZFS Boot Support
gw25295
parents: 5688
diff changeset
  1681
	/*
437422a29d3a PSARC 2006/370 ZFS Boot Support
gw25295
parents: 5688
diff changeset
  1682
	 * Build up our lba mapping.
437422a29d3a PSARC 2006/370 ZFS Boot Support
gw25295
parents: 5688
diff changeset
  1683
	 */
437422a29d3a PSARC 2006/370 ZFS Boot Support
gw25295
parents: 5688
diff changeset
  1684
	error = zvol_get_lbas(zv);
437422a29d3a PSARC 2006/370 ZFS Boot Support
gw25295
parents: 5688
diff changeset
  1685
	if (error) {
437422a29d3a PSARC 2006/370 ZFS Boot Support
gw25295
parents: 5688
diff changeset
  1686
		(void) zvol_dump_fini(zv);
437422a29d3a PSARC 2006/370 ZFS Boot Support
gw25295
parents: 5688
diff changeset
  1687
		return (error);
437422a29d3a PSARC 2006/370 ZFS Boot Support
gw25295
parents: 5688
diff changeset
  1688
	}
437422a29d3a PSARC 2006/370 ZFS Boot Support
gw25295
parents: 5688
diff changeset
  1689
437422a29d3a PSARC 2006/370 ZFS Boot Support
gw25295
parents: 5688
diff changeset
  1690
	tx = dmu_tx_create(os);
437422a29d3a PSARC 2006/370 ZFS Boot Support
gw25295
parents: 5688
diff changeset
  1691
	dmu_tx_hold_zap(tx, ZVOL_ZAP_OBJ, TRUE, NULL);
437422a29d3a PSARC 2006/370 ZFS Boot Support
gw25295
parents: 5688
diff changeset
  1692
	error = dmu_tx_assign(tx, TXG_WAIT);
437422a29d3a PSARC 2006/370 ZFS Boot Support
gw25295
parents: 5688
diff changeset
  1693
	if (error) {
437422a29d3a PSARC 2006/370 ZFS Boot Support
gw25295
parents: 5688
diff changeset
  1694
		dmu_tx_abort(tx);
437422a29d3a PSARC 2006/370 ZFS Boot Support
gw25295
parents: 5688
diff changeset
  1695
		(void) zvol_dump_fini(zv);
437422a29d3a PSARC 2006/370 ZFS Boot Support
gw25295
parents: 5688
diff changeset
  1696
		return (error);
437422a29d3a PSARC 2006/370 ZFS Boot Support
gw25295
parents: 5688
diff changeset
  1697
	}
437422a29d3a PSARC 2006/370 ZFS Boot Support
gw25295
parents: 5688
diff changeset
  1698
437422a29d3a PSARC 2006/370 ZFS Boot Support
gw25295
parents: 5688
diff changeset
  1699
	zv->zv_flags |= ZVOL_DUMPIFIED;
437422a29d3a PSARC 2006/370 ZFS Boot Support
gw25295
parents: 5688
diff changeset
  1700
	error = zap_update(os, ZVOL_ZAP_OBJ, ZVOL_DUMPSIZE, 8, 1,
437422a29d3a PSARC 2006/370 ZFS Boot Support
gw25295
parents: 5688
diff changeset
  1701
	    &zv->zv_volsize, tx);
437422a29d3a PSARC 2006/370 ZFS Boot Support
gw25295
parents: 5688
diff changeset
  1702
	dmu_tx_commit(tx);
437422a29d3a PSARC 2006/370 ZFS Boot Support
gw25295
parents: 5688
diff changeset
  1703
437422a29d3a PSARC 2006/370 ZFS Boot Support
gw25295
parents: 5688
diff changeset
  1704
	if (error) {
437422a29d3a PSARC 2006/370 ZFS Boot Support
gw25295
parents: 5688
diff changeset
  1705
		(void) zvol_dump_fini(zv);
437422a29d3a PSARC 2006/370 ZFS Boot Support
gw25295
parents: 5688
diff changeset
  1706
		return (error);
437422a29d3a PSARC 2006/370 ZFS Boot Support
gw25295
parents: 5688
diff changeset
  1707
	}
437422a29d3a PSARC 2006/370 ZFS Boot Support
gw25295
parents: 5688
diff changeset
  1708
437422a29d3a PSARC 2006/370 ZFS Boot Support
gw25295
parents: 5688
diff changeset
  1709
	txg_wait_synced(dmu_objset_pool(os), 0);
437422a29d3a PSARC 2006/370 ZFS Boot Support
gw25295
parents: 5688
diff changeset
  1710
	return (0);
437422a29d3a PSARC 2006/370 ZFS Boot Support
gw25295
parents: 5688
diff changeset
  1711
}
437422a29d3a PSARC 2006/370 ZFS Boot Support
gw25295
parents: 5688
diff changeset
  1712
437422a29d3a PSARC 2006/370 ZFS Boot Support
gw25295
parents: 5688
diff changeset
  1713
static int
437422a29d3a PSARC 2006/370 ZFS Boot Support
gw25295
parents: 5688
diff changeset
  1714
zvol_dump_fini(zvol_state_t *zv)
437422a29d3a PSARC 2006/370 ZFS Boot Support
gw25295
parents: 5688
diff changeset
  1715
{
437422a29d3a PSARC 2006/370 ZFS Boot Support
gw25295
parents: 5688
diff changeset
  1716
	dmu_tx_t *tx;
437422a29d3a PSARC 2006/370 ZFS Boot Support
gw25295
parents: 5688
diff changeset
  1717
	objset_t *os = zv->zv_objset;
437422a29d3a PSARC 2006/370 ZFS Boot Support
gw25295
parents: 5688
diff changeset
  1718
	nvlist_t *nv;
437422a29d3a PSARC 2006/370 ZFS Boot Support
gw25295
parents: 5688
diff changeset
  1719
	int error = 0;
7837
001de5627df3 6333409 traversal code should be able to issue multiple reads in parallel
Matthew Ahrens <Matthew.Ahrens@Sun.COM>
parents: 7754
diff changeset
  1720
	uint64_t checksum, compress, refresrv, vbs;
6423
437422a29d3a PSARC 2006/370 ZFS Boot Support
gw25295
parents: 5688
diff changeset
  1721
7080
13a30a37ddc0 6724533 assertion failed: file: ../../common/fs/zfs/dmu_tx.c, line: 983
maybee
parents: 7013
diff changeset
  1722
	/*
13a30a37ddc0 6724533 assertion failed: file: ../../common/fs/zfs/dmu_tx.c, line: 983
maybee
parents: 7013
diff changeset
  1723
	 * Attempt to restore the zvol back to its pre-dumpified state.
13a30a37ddc0 6724533 assertion failed: file: ../../common/fs/zfs/dmu_tx.c, line: 983
maybee
parents: 7013
diff changeset
  1724
	 * This is a best-effort attempt as it's possible that not all
13a30a37ddc0 6724533 assertion failed: file: ../../common/fs/zfs/dmu_tx.c, line: 983
maybee
parents: 7013
diff changeset
  1725
	 * of these properties were initialized during the dumpify process
13a30a37ddc0 6724533 assertion failed: file: ../../common/fs/zfs/dmu_tx.c, line: 983
maybee
parents: 7013
diff changeset
  1726
	 * (i.e. error during zvol_dump_init).
13a30a37ddc0 6724533 assertion failed: file: ../../common/fs/zfs/dmu_tx.c, line: 983
maybee
parents: 7013
diff changeset
  1727
	 */
13a30a37ddc0 6724533 assertion failed: file: ../../common/fs/zfs/dmu_tx.c, line: 983
maybee
parents: 7013
diff changeset
  1728
6423
437422a29d3a PSARC 2006/370 ZFS Boot Support
gw25295
parents: 5688
diff changeset
  1729
	tx = dmu_tx_create(os);
437422a29d3a PSARC 2006/370 ZFS Boot Support
gw25295
parents: 5688
diff changeset
  1730
	dmu_tx_hold_zap(tx, ZVOL_ZAP_OBJ, TRUE, NULL);
437422a29d3a PSARC 2006/370 ZFS Boot Support
gw25295
parents: 5688
diff changeset
  1731
	error = dmu_tx_assign(tx, TXG_WAIT);
437422a29d3a PSARC 2006/370 ZFS Boot Support
gw25295
parents: 5688
diff changeset
  1732
	if (error) {
437422a29d3a PSARC 2006/370 ZFS Boot Support
gw25295
parents: 5688
diff changeset
  1733
		dmu_tx_abort(tx);
437422a29d3a PSARC 2006/370 ZFS Boot Support
gw25295
parents: 5688
diff changeset
  1734
		return (error);
437422a29d3a PSARC 2006/370 ZFS Boot Support
gw25295
parents: 5688
diff changeset
  1735
	}
7080
13a30a37ddc0 6724533 assertion failed: file: ../../common/fs/zfs/dmu_tx.c, line: 983
maybee
parents: 7013
diff changeset
  1736
	(void) zap_remove(os, ZVOL_ZAP_OBJ, ZVOL_DUMPSIZE, tx);
13a30a37ddc0 6724533 assertion failed: file: ../../common/fs/zfs/dmu_tx.c, line: 983
maybee
parents: 7013
diff changeset
  1737
	dmu_tx_commit(tx);
6423
437422a29d3a PSARC 2006/370 ZFS Boot Support
gw25295
parents: 5688
diff changeset
  1738
437422a29d3a PSARC 2006/370 ZFS Boot Support
gw25295
parents: 5688
diff changeset
  1739
	(void) zap_lookup(zv->zv_objset, ZVOL_ZAP_OBJ,
437422a29d3a PSARC 2006/370 ZFS Boot Support
gw25295
parents: 5688
diff changeset
  1740
	    zfs_prop_to_name(ZFS_PROP_CHECKSUM), 8, 1, &checksum);
437422a29d3a PSARC 2006/370 ZFS Boot Support
gw25295
parents: 5688
diff changeset
  1741
	(void) zap_lookup(zv->zv_objset, ZVOL_ZAP_OBJ,
437422a29d3a PSARC 2006/370 ZFS Boot Support
gw25295
parents: 5688
diff changeset
  1742
	    zfs_prop_to_name(ZFS_PROP_COMPRESSION), 8, 1, &compress);
437422a29d3a PSARC 2006/370 ZFS Boot Support
gw25295
parents: 5688
diff changeset
  1743
	(void) zap_lookup(zv->zv_objset, ZVOL_ZAP_OBJ,
437422a29d3a PSARC 2006/370 ZFS Boot Support
gw25295
parents: 5688
diff changeset
  1744
	    zfs_prop_to_name(ZFS_PROP_REFRESERVATION), 8, 1, &refresrv);
7837
001de5627df3 6333409 traversal code should be able to issue multiple reads in parallel
Matthew Ahrens <Matthew.Ahrens@Sun.COM>
parents: 7754
diff changeset
  1745
	(void) zap_lookup(zv->zv_objset, ZVOL_ZAP_OBJ,
001de5627df3 6333409 traversal code should be able to issue multiple reads in parallel
Matthew Ahrens <Matthew.Ahrens@Sun.COM>
parents: 7754
diff changeset
  1746
	    zfs_prop_to_name(ZFS_PROP_VOLBLOCKSIZE), 8, 1, &vbs);
6423
437422a29d3a PSARC 2006/370 ZFS Boot Support
gw25295
parents: 5688
diff changeset
  1747
437422a29d3a PSARC 2006/370 ZFS Boot Support
gw25295
parents: 5688
diff changeset
  1748
	VERIFY(nvlist_alloc(&nv, NV_UNIQUE_NAME, KM_SLEEP) == 0);
437422a29d3a PSARC 2006/370 ZFS Boot Support
gw25295
parents: 5688
diff changeset
  1749
	(void) nvlist_add_uint64(nv,
437422a29d3a PSARC 2006/370 ZFS Boot Support
gw25295
parents: 5688
diff changeset
  1750
	    zfs_prop_to_name(ZFS_PROP_CHECKSUM), checksum);
437422a29d3a PSARC 2006/370 ZFS Boot Support
gw25295
parents: 5688
diff changeset
  1751
	(void) nvlist_add_uint64(nv,
437422a29d3a PSARC 2006/370 ZFS Boot Support
gw25295
parents: 5688
diff changeset
  1752
	    zfs_prop_to_name(ZFS_PROP_COMPRESSION), compress);
437422a29d3a PSARC 2006/370 ZFS Boot Support
gw25295
parents: 5688
diff changeset
  1753
	(void) nvlist_add_uint64(nv,
437422a29d3a PSARC 2006/370 ZFS Boot Support
gw25295
parents: 5688
diff changeset
  1754
	    zfs_prop_to_name(ZFS_PROP_REFRESERVATION), refresrv);
7837
001de5627df3 6333409 traversal code should be able to issue multiple reads in parallel
Matthew Ahrens <Matthew.Ahrens@Sun.COM>
parents: 7754
diff changeset
  1755
	(void) nvlist_add_uint64(nv,
001de5627df3 6333409 traversal code should be able to issue multiple reads in parallel
Matthew Ahrens <Matthew.Ahrens@Sun.COM>
parents: 7754
diff changeset
  1756
	    zfs_prop_to_name(ZFS_PROP_VOLBLOCKSIZE), vbs);
6423
437422a29d3a PSARC 2006/370 ZFS Boot Support
gw25295
parents: 5688
diff changeset
  1757
	(void) zfs_set_prop_nvlist(zv->zv_name, nv);
437422a29d3a PSARC 2006/370 ZFS Boot Support
gw25295
parents: 5688
diff changeset
  1758
	nvlist_free(nv);
437422a29d3a PSARC 2006/370 ZFS Boot Support
gw25295
parents: 5688
diff changeset
  1759
7080
13a30a37ddc0 6724533 assertion failed: file: ../../common/fs/zfs/dmu_tx.c, line: 983
maybee
parents: 7013
diff changeset
  1760
	zvol_free_extents(zv);
13a30a37ddc0 6724533 assertion failed: file: ../../common/fs/zfs/dmu_tx.c, line: 983
maybee
parents: 7013
diff changeset
  1761
	zv->zv_flags &= ~ZVOL_DUMPIFIED;
13a30a37ddc0 6724533 assertion failed: file: ../../common/fs/zfs/dmu_tx.c, line: 983
maybee
parents: 7013
diff changeset
  1762
	(void) dmu_free_long_range(os, ZVOL_OBJ, 0, DMU_OBJECT_END);
13a30a37ddc0 6724533 assertion failed: file: ../../common/fs/zfs/dmu_tx.c, line: 983
maybee
parents: 7013
diff changeset
  1763
6423
437422a29d3a PSARC 2006/370 ZFS Boot Support
gw25295
parents: 5688
diff changeset
  1764
	return (0);
437422a29d3a PSARC 2006/370 ZFS Boot Support
gw25295
parents: 5688
diff changeset
  1765
}