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