xref: /illumos-gate/usr/src/uts/common/fs/zfs/zvol.c (revision 510b6c0e09388dd3bd75e2d1afd0f1ef80a7f440)
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 
930 	zgd = (zgd_t *)kmem_alloc(sizeof (zgd_t), KM_SLEEP);
931 	zgd->zgd_zilog = zv->zv_zilog;
932 	zgd->zgd_bp = &lr->lr_blkptr;
933 
934 	/*
935 	 * Lock the range of the block to ensure that when the data is
936 	 * written out and its checksum is being calculated that no other
937 	 * thread can change the block.
938 	 */
939 	boff = P2ALIGN_TYPED(lr->lr_offset, zv->zv_volblocksize, uint64_t);
940 	rl = zfs_range_lock(&zv->zv_znode, boff, zv->zv_volblocksize,
941 	    RL_READER);
942 	zgd->zgd_rl = rl;
943 
944 	VERIFY(0 == dmu_buf_hold(os, ZVOL_OBJ, lr->lr_offset, zgd, &db));
945 	error = dmu_sync(zio, db, &lr->lr_blkptr,
946 	    lr->lr_common.lrc_txg, zvol_get_done, zgd);
947 	if (error == 0)
948 		zil_add_block(zv->zv_zilog, &lr->lr_blkptr);
949 	/*
950 	 * If we get EINPROGRESS, then we need to wait for a
951 	 * write IO initiated by dmu_sync() to complete before
952 	 * we can release this dbuf.  We will finish everything
953 	 * up in the zvol_get_done() callback.
954 	 */
955 	if (error == EINPROGRESS)
956 		return (0);
957 	dmu_buf_rele(db, zgd);
958 	zfs_range_unlock(rl);
959 	kmem_free(zgd, sizeof (zgd_t));
960 	return (error);
961 }
962 
963 /*
964  * zvol_log_write() handles synchronous writes using TX_WRITE ZIL transactions.
965  *
966  * We store data in the log buffers if it's small enough.
967  * Otherwise we will later flush the data out via dmu_sync().
968  */
969 ssize_t zvol_immediate_write_sz = 32768;
970 
971 static void
972 zvol_log_write(zvol_state_t *zv, dmu_tx_t *tx, offset_t off, ssize_t resid,
973     boolean_t sync)
974 {
975 	uint32_t blocksize = zv->zv_volblocksize;
976 	zilog_t *zilog = zv->zv_zilog;
977 	boolean_t slogging;
978 
979 	if (zil_disable)
980 		return;
981 
982 	if (zilog->zl_replay) {
983 		dsl_dataset_dirty(dmu_objset_ds(zilog->zl_os), tx);
984 		zilog->zl_replayed_seq[dmu_tx_get_txg(tx) & TXG_MASK] =
985 		    zilog->zl_replaying_seq;
986 		return;
987 	}
988 
989 	slogging = spa_has_slogs(zilog->zl_spa);
990 
991 	while (resid) {
992 		itx_t *itx;
993 		lr_write_t *lr;
994 		ssize_t len;
995 		itx_wr_state_t write_state;
996 
997 		/*
998 		 * Unlike zfs_log_write() we can be called with
999 		 * upto DMU_MAX_ACCESS/2 (5MB) writes.
1000 		 */
1001 		if (blocksize > zvol_immediate_write_sz && !slogging &&
1002 		    resid >= blocksize && off % blocksize == 0) {
1003 			write_state = WR_INDIRECT; /* uses dmu_sync */
1004 			len = blocksize;
1005 		} else if (sync) {
1006 			write_state = WR_COPIED;
1007 			len = MIN(ZIL_MAX_LOG_DATA, resid);
1008 		} else {
1009 			write_state = WR_NEED_COPY;
1010 			len = MIN(ZIL_MAX_LOG_DATA, resid);
1011 		}
1012 
1013 		itx = zil_itx_create(TX_WRITE, sizeof (*lr) +
1014 		    (write_state == WR_COPIED ? len : 0));
1015 		lr = (lr_write_t *)&itx->itx_lr;
1016 		if (write_state == WR_COPIED && dmu_read(zv->zv_objset,
1017 		    ZVOL_OBJ, off, len, lr + 1) != 0) {
1018 			kmem_free(itx, offsetof(itx_t, itx_lr) +
1019 			    itx->itx_lr.lrc_reclen);
1020 			itx = zil_itx_create(TX_WRITE, sizeof (*lr));
1021 			lr = (lr_write_t *)&itx->itx_lr;
1022 			write_state = WR_NEED_COPY;
1023 		}
1024 
1025 		itx->itx_wr_state = write_state;
1026 		if (write_state == WR_NEED_COPY)
1027 			itx->itx_sod += len;
1028 		lr->lr_foid = ZVOL_OBJ;
1029 		lr->lr_offset = off;
1030 		lr->lr_length = len;
1031 		lr->lr_blkoff = off - P2ALIGN_TYPED(off, blocksize, uint64_t);
1032 		BP_ZERO(&lr->lr_blkptr);
1033 
1034 		itx->itx_private = zv;
1035 		itx->itx_sync = sync;
1036 
1037 		(void) zil_itx_assign(zilog, itx, tx);
1038 
1039 		off += len;
1040 		resid -= len;
1041 	}
1042 }
1043 
1044 static int
1045 zvol_dumpio_vdev(vdev_t *vd, void *addr, uint64_t offset, uint64_t size,
1046     boolean_t doread, boolean_t isdump)
1047 {
1048 	vdev_disk_t *dvd;
1049 	int c;
1050 	int numerrors = 0;
1051 
1052 	for (c = 0; c < vd->vdev_children; c++) {
1053 		ASSERT(vd->vdev_ops == &vdev_mirror_ops);
1054 		int err = zvol_dumpio_vdev(vd->vdev_child[c],
1055 		    addr, offset, size, doread, isdump);
1056 		if (err != 0) {
1057 			numerrors++;
1058 		} else if (doread) {
1059 			break;
1060 		}
1061 	}
1062 
1063 	if (!vd->vdev_ops->vdev_op_leaf)
1064 		return (numerrors < vd->vdev_children ? 0 : EIO);
1065 
1066 	if (doread && !vdev_readable(vd))
1067 		return (EIO);
1068 	else if (!doread && !vdev_writeable(vd))
1069 		return (EIO);
1070 
1071 	dvd = vd->vdev_tsd;
1072 	ASSERT3P(dvd, !=, NULL);
1073 	offset += VDEV_LABEL_START_SIZE;
1074 
1075 	if (ddi_in_panic() || isdump) {
1076 		ASSERT(!doread);
1077 		if (doread)
1078 			return (EIO);
1079 		return (ldi_dump(dvd->vd_lh, addr, lbtodb(offset),
1080 		    lbtodb(size)));
1081 	} else {
1082 		return (vdev_disk_physio(dvd->vd_lh, addr, size, offset,
1083 		    doread ? B_READ : B_WRITE));
1084 	}
1085 }
1086 
1087 static int
1088 zvol_dumpio(zvol_state_t *zv, void *addr, uint64_t offset, uint64_t size,
1089     boolean_t doread, boolean_t isdump)
1090 {
1091 	vdev_t *vd;
1092 	int error;
1093 	zvol_extent_t *ze;
1094 	spa_t *spa = dmu_objset_spa(zv->zv_objset);
1095 
1096 	/* Must be sector aligned, and not stradle a block boundary. */
1097 	if (P2PHASE(offset, DEV_BSIZE) || P2PHASE(size, DEV_BSIZE) ||
1098 	    P2BOUNDARY(offset, size, zv->zv_volblocksize)) {
1099 		return (EINVAL);
1100 	}
1101 	ASSERT(size <= zv->zv_volblocksize);
1102 
1103 	/* Locate the extent this belongs to */
1104 	ze = list_head(&zv->zv_extents);
1105 	while (offset >= ze->ze_nblks * zv->zv_volblocksize) {
1106 		offset -= ze->ze_nblks * zv->zv_volblocksize;
1107 		ze = list_next(&zv->zv_extents, ze);
1108 	}
1109 	spa_config_enter(spa, SCL_STATE, FTAG, RW_READER);
1110 	vd = vdev_lookup_top(spa, DVA_GET_VDEV(&ze->ze_dva));
1111 	offset += DVA_GET_OFFSET(&ze->ze_dva);
1112 	error = zvol_dumpio_vdev(vd, addr, offset, size, doread, isdump);
1113 	spa_config_exit(spa, SCL_STATE, FTAG);
1114 	return (error);
1115 }
1116 
1117 int
1118 zvol_strategy(buf_t *bp)
1119 {
1120 	zvol_state_t *zv = ddi_get_soft_state(zvol_state, getminor(bp->b_edev));
1121 	uint64_t off, volsize;
1122 	size_t resid;
1123 	char *addr;
1124 	objset_t *os;
1125 	rl_t *rl;
1126 	int error = 0;
1127 	boolean_t doread = bp->b_flags & B_READ;
1128 	boolean_t is_dump = zv->zv_flags & ZVOL_DUMPIFIED;
1129 	boolean_t sync;
1130 
1131 	if (zv == NULL) {
1132 		bioerror(bp, ENXIO);
1133 		biodone(bp);
1134 		return (0);
1135 	}
1136 
1137 	if (getminor(bp->b_edev) == 0) {
1138 		bioerror(bp, EINVAL);
1139 		biodone(bp);
1140 		return (0);
1141 	}
1142 
1143 	if (!(bp->b_flags & B_READ) &&
1144 	    (zv->zv_flags & ZVOL_RDONLY ||
1145 	    zv->zv_mode & DS_MODE_READONLY)) {
1146 		bioerror(bp, EROFS);
1147 		biodone(bp);
1148 		return (0);
1149 	}
1150 
1151 	off = ldbtob(bp->b_blkno);
1152 	volsize = zv->zv_volsize;
1153 
1154 	os = zv->zv_objset;
1155 	ASSERT(os != NULL);
1156 
1157 	bp_mapin(bp);
1158 	addr = bp->b_un.b_addr;
1159 	resid = bp->b_bcount;
1160 
1161 	if (resid > 0 && (off < 0 || off >= volsize)) {
1162 		bioerror(bp, EIO);
1163 		biodone(bp);
1164 		return (0);
1165 	}
1166 
1167 	sync = !(bp->b_flags & B_ASYNC) && !doread && !is_dump &&
1168 	    !(zv->zv_flags & ZVOL_WCE) && !zil_disable;
1169 
1170 	/*
1171 	 * There must be no buffer changes when doing a dmu_sync() because
1172 	 * we can't change the data whilst calculating the checksum.
1173 	 */
1174 	rl = zfs_range_lock(&zv->zv_znode, off, resid,
1175 	    doread ? RL_READER : RL_WRITER);
1176 
1177 	while (resid != 0 && off < volsize) {
1178 		size_t size = MIN(resid, zvol_maxphys);
1179 		if (is_dump) {
1180 			size = MIN(size, P2END(off, zv->zv_volblocksize) - off);
1181 			error = zvol_dumpio(zv, addr, off, size,
1182 			    doread, B_FALSE);
1183 		} else if (doread) {
1184 			error = dmu_read(os, ZVOL_OBJ, off, size, addr);
1185 		} else {
1186 			dmu_tx_t *tx = dmu_tx_create(os);
1187 			dmu_tx_hold_write(tx, ZVOL_OBJ, off, size);
1188 			error = dmu_tx_assign(tx, TXG_WAIT);
1189 			if (error) {
1190 				dmu_tx_abort(tx);
1191 			} else {
1192 				dmu_write(os, ZVOL_OBJ, off, size, addr, tx);
1193 				zvol_log_write(zv, tx, off, size, sync);
1194 				dmu_tx_commit(tx);
1195 			}
1196 		}
1197 		if (error) {
1198 			/* convert checksum errors into IO errors */
1199 			if (error == ECKSUM)
1200 				error = EIO;
1201 			break;
1202 		}
1203 		off += size;
1204 		addr += size;
1205 		resid -= size;
1206 	}
1207 	zfs_range_unlock(rl);
1208 
1209 	if ((bp->b_resid = resid) == bp->b_bcount)
1210 		bioerror(bp, off > volsize ? EINVAL : error);
1211 
1212 	if (sync)
1213 		zil_commit(zv->zv_zilog, UINT64_MAX, ZVOL_OBJ);
1214 	biodone(bp);
1215 
1216 	return (0);
1217 }
1218 
1219 /*
1220  * Set the buffer count to the zvol maximum transfer.
1221  * Using our own routine instead of the default minphys()
1222  * means that for larger writes we write bigger buffers on X86
1223  * (128K instead of 56K) and flush the disk write cache less often
1224  * (every zvol_maxphys - currently 1MB) instead of minphys (currently
1225  * 56K on X86 and 128K on sparc).
1226  */
1227 void
1228 zvol_minphys(struct buf *bp)
1229 {
1230 	if (bp->b_bcount > zvol_maxphys)
1231 		bp->b_bcount = zvol_maxphys;
1232 }
1233 
1234 int
1235 zvol_dump(dev_t dev, caddr_t addr, daddr_t blkno, int nblocks)
1236 {
1237 	minor_t minor = getminor(dev);
1238 	zvol_state_t *zv;
1239 	int error = 0;
1240 	uint64_t size;
1241 	uint64_t boff;
1242 	uint64_t resid;
1243 
1244 	if (minor == 0)			/* This is the control device */
1245 		return (ENXIO);
1246 
1247 	zv = ddi_get_soft_state(zvol_state, minor);
1248 	if (zv == NULL)
1249 		return (ENXIO);
1250 
1251 	boff = ldbtob(blkno);
1252 	resid = ldbtob(nblocks);
1253 
1254 	VERIFY3U(boff + resid, <=, zv->zv_volsize);
1255 
1256 	while (resid) {
1257 		size = MIN(resid, P2END(boff, zv->zv_volblocksize) - boff);
1258 		error = zvol_dumpio(zv, addr, boff, size, B_FALSE, B_TRUE);
1259 		if (error)
1260 			break;
1261 		boff += size;
1262 		addr += size;
1263 		resid -= size;
1264 	}
1265 
1266 	return (error);
1267 }
1268 
1269 /*ARGSUSED*/
1270 int
1271 zvol_read(dev_t dev, uio_t *uio, cred_t *cr)
1272 {
1273 	minor_t minor = getminor(dev);
1274 	zvol_state_t *zv;
1275 	uint64_t volsize;
1276 	rl_t *rl;
1277 	int error = 0;
1278 
1279 	if (minor == 0)			/* This is the control device */
1280 		return (ENXIO);
1281 
1282 	zv = ddi_get_soft_state(zvol_state, minor);
1283 	if (zv == NULL)
1284 		return (ENXIO);
1285 
1286 	volsize = zv->zv_volsize;
1287 	if (uio->uio_resid > 0 &&
1288 	    (uio->uio_loffset < 0 || uio->uio_loffset >= volsize))
1289 		return (EIO);
1290 
1291 	if (zv->zv_flags & ZVOL_DUMPIFIED) {
1292 		error = physio(zvol_strategy, NULL, dev, B_READ,
1293 		    zvol_minphys, uio);
1294 		return (error);
1295 	}
1296 
1297 	rl = zfs_range_lock(&zv->zv_znode, uio->uio_loffset, uio->uio_resid,
1298 	    RL_READER);
1299 	while (uio->uio_resid > 0 && uio->uio_loffset < volsize) {
1300 		uint64_t bytes = MIN(uio->uio_resid, DMU_MAX_ACCESS >> 1);
1301 
1302 		/* don't read past the end */
1303 		if (bytes > volsize - uio->uio_loffset)
1304 			bytes = volsize - uio->uio_loffset;
1305 
1306 		error =  dmu_read_uio(zv->zv_objset, ZVOL_OBJ, uio, bytes);
1307 		if (error) {
1308 			/* convert checksum errors into IO errors */
1309 			if (error == ECKSUM)
1310 				error = EIO;
1311 			break;
1312 		}
1313 	}
1314 	zfs_range_unlock(rl);
1315 	return (error);
1316 }
1317 
1318 /*ARGSUSED*/
1319 int
1320 zvol_write(dev_t dev, uio_t *uio, cred_t *cr)
1321 {
1322 	minor_t minor = getminor(dev);
1323 	zvol_state_t *zv;
1324 	uint64_t volsize;
1325 	rl_t *rl;
1326 	int error = 0;
1327 	boolean_t sync;
1328 
1329 	if (minor == 0)			/* This is the control device */
1330 		return (ENXIO);
1331 
1332 	zv = ddi_get_soft_state(zvol_state, minor);
1333 	if (zv == NULL)
1334 		return (ENXIO);
1335 
1336 	volsize = zv->zv_volsize;
1337 	if (uio->uio_resid > 0 &&
1338 	    (uio->uio_loffset < 0 || uio->uio_loffset >= volsize))
1339 		return (EIO);
1340 
1341 	if (zv->zv_flags & ZVOL_DUMPIFIED) {
1342 		error = physio(zvol_strategy, NULL, dev, B_WRITE,
1343 		    zvol_minphys, uio);
1344 		return (error);
1345 	}
1346 
1347 	sync = !(zv->zv_flags & ZVOL_WCE) && !zil_disable;
1348 
1349 	rl = zfs_range_lock(&zv->zv_znode, uio->uio_loffset, uio->uio_resid,
1350 	    RL_WRITER);
1351 	while (uio->uio_resid > 0 && uio->uio_loffset < volsize) {
1352 		uint64_t bytes = MIN(uio->uio_resid, DMU_MAX_ACCESS >> 1);
1353 		uint64_t off = uio->uio_loffset;
1354 		dmu_tx_t *tx = dmu_tx_create(zv->zv_objset);
1355 
1356 		if (bytes > volsize - off)	/* don't write past the end */
1357 			bytes = volsize - off;
1358 
1359 		dmu_tx_hold_write(tx, ZVOL_OBJ, off, bytes);
1360 		error = dmu_tx_assign(tx, TXG_WAIT);
1361 		if (error) {
1362 			dmu_tx_abort(tx);
1363 			break;
1364 		}
1365 		error = dmu_write_uio(zv->zv_objset, ZVOL_OBJ, uio, bytes, tx);
1366 		if (error == 0)
1367 			zvol_log_write(zv, tx, off, bytes, sync);
1368 		dmu_tx_commit(tx);
1369 
1370 		if (error)
1371 			break;
1372 	}
1373 	zfs_range_unlock(rl);
1374 	if (sync)
1375 		zil_commit(zv->zv_zilog, UINT64_MAX, ZVOL_OBJ);
1376 	return (error);
1377 }
1378 
1379 int
1380 zvol_getefi(void *arg, int flag, uint64_t vs, uint8_t bs)
1381 {
1382 	struct uuid uuid = EFI_RESERVED;
1383 	efi_gpe_t gpe = { 0 };
1384 	uint32_t crc;
1385 	dk_efi_t efi;
1386 	int length;
1387 	char *ptr;
1388 
1389 	if (ddi_copyin(arg, &efi, sizeof (dk_efi_t), flag))
1390 		return (EFAULT);
1391 	ptr = (char *)(uintptr_t)efi.dki_data_64;
1392 	length = efi.dki_length;
1393 	/*
1394 	 * Some clients may attempt to request a PMBR for the
1395 	 * zvol.  Currently this interface will return EINVAL to
1396 	 * such requests.  These requests could be supported by
1397 	 * adding a check for lba == 0 and consing up an appropriate
1398 	 * PMBR.
1399 	 */
1400 	if (efi.dki_lba < 1 || efi.dki_lba > 2 || length <= 0)
1401 		return (EINVAL);
1402 
1403 	gpe.efi_gpe_StartingLBA = LE_64(34ULL);
1404 	gpe.efi_gpe_EndingLBA = LE_64((vs >> bs) - 1);
1405 	UUID_LE_CONVERT(gpe.efi_gpe_PartitionTypeGUID, uuid);
1406 
1407 	if (efi.dki_lba == 1) {
1408 		efi_gpt_t gpt = { 0 };
1409 
1410 		gpt.efi_gpt_Signature = LE_64(EFI_SIGNATURE);
1411 		gpt.efi_gpt_Revision = LE_32(EFI_VERSION_CURRENT);
1412 		gpt.efi_gpt_HeaderSize = LE_32(sizeof (gpt));
1413 		gpt.efi_gpt_MyLBA = LE_64(1ULL);
1414 		gpt.efi_gpt_FirstUsableLBA = LE_64(34ULL);
1415 		gpt.efi_gpt_LastUsableLBA = LE_64((vs >> bs) - 1);
1416 		gpt.efi_gpt_PartitionEntryLBA = LE_64(2ULL);
1417 		gpt.efi_gpt_NumberOfPartitionEntries = LE_32(1);
1418 		gpt.efi_gpt_SizeOfPartitionEntry =
1419 		    LE_32(sizeof (efi_gpe_t));
1420 		CRC32(crc, &gpe, sizeof (gpe), -1U, crc32_table);
1421 		gpt.efi_gpt_PartitionEntryArrayCRC32 = LE_32(~crc);
1422 		CRC32(crc, &gpt, sizeof (gpt), -1U, crc32_table);
1423 		gpt.efi_gpt_HeaderCRC32 = LE_32(~crc);
1424 		if (ddi_copyout(&gpt, ptr, MIN(sizeof (gpt), length),
1425 		    flag))
1426 			return (EFAULT);
1427 		ptr += sizeof (gpt);
1428 		length -= sizeof (gpt);
1429 	}
1430 	if (length > 0 && ddi_copyout(&gpe, ptr, MIN(sizeof (gpe),
1431 	    length), flag))
1432 		return (EFAULT);
1433 	return (0);
1434 }
1435 
1436 /*
1437  * Dirtbag ioctls to support mkfs(1M) for UFS filesystems.  See dkio(7I).
1438  */
1439 /*ARGSUSED*/
1440 int
1441 zvol_ioctl(dev_t dev, int cmd, intptr_t arg, int flag, cred_t *cr, int *rvalp)
1442 {
1443 	zvol_state_t *zv;
1444 	struct dk_cinfo dki;
1445 	struct dk_minfo dkm;
1446 	struct dk_callback *dkc;
1447 	int error = 0;
1448 	rl_t *rl;
1449 
1450 	mutex_enter(&zvol_state_lock);
1451 
1452 	zv = ddi_get_soft_state(zvol_state, getminor(dev));
1453 
1454 	if (zv == NULL) {
1455 		mutex_exit(&zvol_state_lock);
1456 		return (ENXIO);
1457 	}
1458 	ASSERT(zv->zv_total_opens > 0);
1459 
1460 	switch (cmd) {
1461 
1462 	case DKIOCINFO:
1463 		bzero(&dki, sizeof (dki));
1464 		(void) strcpy(dki.dki_cname, "zvol");
1465 		(void) strcpy(dki.dki_dname, "zvol");
1466 		dki.dki_ctype = DKC_UNKNOWN;
1467 		dki.dki_maxtransfer = 1 << (SPA_MAXBLOCKSHIFT - zv->zv_min_bs);
1468 		mutex_exit(&zvol_state_lock);
1469 		if (ddi_copyout(&dki, (void *)arg, sizeof (dki), flag))
1470 			error = EFAULT;
1471 		return (error);
1472 
1473 	case DKIOCGMEDIAINFO:
1474 		bzero(&dkm, sizeof (dkm));
1475 		dkm.dki_lbsize = 1U << zv->zv_min_bs;
1476 		dkm.dki_capacity = zv->zv_volsize >> zv->zv_min_bs;
1477 		dkm.dki_media_type = DK_UNKNOWN;
1478 		mutex_exit(&zvol_state_lock);
1479 		if (ddi_copyout(&dkm, (void *)arg, sizeof (dkm), flag))
1480 			error = EFAULT;
1481 		return (error);
1482 
1483 	case DKIOCGETEFI:
1484 		{
1485 			uint64_t vs = zv->zv_volsize;
1486 			uint8_t bs = zv->zv_min_bs;
1487 
1488 			mutex_exit(&zvol_state_lock);
1489 			error = zvol_getefi((void *)arg, flag, vs, bs);
1490 			return (error);
1491 		}
1492 
1493 	case DKIOCFLUSHWRITECACHE:
1494 		dkc = (struct dk_callback *)arg;
1495 		mutex_exit(&zvol_state_lock);
1496 		zil_commit(zv->zv_zilog, UINT64_MAX, ZVOL_OBJ);
1497 		if ((flag & FKIOCTL) && dkc != NULL && dkc->dkc_callback) {
1498 			(*dkc->dkc_callback)(dkc->dkc_cookie, error);
1499 			error = 0;
1500 		}
1501 		return (error);
1502 
1503 	case DKIOCGETWCE:
1504 		{
1505 			int wce = (zv->zv_flags & ZVOL_WCE) ? 1 : 0;
1506 			if (ddi_copyout(&wce, (void *)arg, sizeof (int),
1507 			    flag))
1508 				error = EFAULT;
1509 			break;
1510 		}
1511 	case DKIOCSETWCE:
1512 		{
1513 			int wce;
1514 			if (ddi_copyin((void *)arg, &wce, sizeof (int),
1515 			    flag)) {
1516 				error = EFAULT;
1517 				break;
1518 			}
1519 			if (wce) {
1520 				zv->zv_flags |= ZVOL_WCE;
1521 				mutex_exit(&zvol_state_lock);
1522 			} else {
1523 				zv->zv_flags &= ~ZVOL_WCE;
1524 				mutex_exit(&zvol_state_lock);
1525 				zil_commit(zv->zv_zilog, UINT64_MAX, ZVOL_OBJ);
1526 			}
1527 			return (0);
1528 		}
1529 
1530 	case DKIOCGGEOM:
1531 	case DKIOCGVTOC:
1532 		/*
1533 		 * commands using these (like prtvtoc) expect ENOTSUP
1534 		 * since we're emulating an EFI label
1535 		 */
1536 		error = ENOTSUP;
1537 		break;
1538 
1539 	case DKIOCDUMPINIT:
1540 		rl = zfs_range_lock(&zv->zv_znode, 0, zv->zv_volsize,
1541 		    RL_WRITER);
1542 		error = zvol_dumpify(zv);
1543 		zfs_range_unlock(rl);
1544 		break;
1545 
1546 	case DKIOCDUMPFINI:
1547 		if (!(zv->zv_flags & ZVOL_DUMPIFIED))
1548 			break;
1549 		rl = zfs_range_lock(&zv->zv_znode, 0, zv->zv_volsize,
1550 		    RL_WRITER);
1551 		error = zvol_dump_fini(zv);
1552 		zfs_range_unlock(rl);
1553 		break;
1554 
1555 	default:
1556 		error = ENOTTY;
1557 		break;
1558 
1559 	}
1560 	mutex_exit(&zvol_state_lock);
1561 	return (error);
1562 }
1563 
1564 int
1565 zvol_busy(void)
1566 {
1567 	return (zvol_minors != 0);
1568 }
1569 
1570 void
1571 zvol_init(void)
1572 {
1573 	VERIFY(ddi_soft_state_init(&zvol_state, sizeof (zvol_state_t), 1) == 0);
1574 	mutex_init(&zvol_state_lock, NULL, MUTEX_DEFAULT, NULL);
1575 }
1576 
1577 void
1578 zvol_fini(void)
1579 {
1580 	mutex_destroy(&zvol_state_lock);
1581 	ddi_soft_state_fini(&zvol_state);
1582 }
1583 
1584 static boolean_t
1585 zvol_is_swap(zvol_state_t *zv)
1586 {
1587 	vnode_t *vp;
1588 	boolean_t ret = B_FALSE;
1589 	char *devpath;
1590 	size_t devpathlen;
1591 	int error;
1592 
1593 	devpathlen = strlen(ZVOL_FULL_DEV_DIR) + strlen(zv->zv_name) + 1;
1594 	devpath = kmem_alloc(devpathlen, KM_SLEEP);
1595 	(void) sprintf(devpath, "%s%s", ZVOL_FULL_DEV_DIR, zv->zv_name);
1596 	error = lookupname(devpath, UIO_SYSSPACE, FOLLOW, NULLVPP, &vp);
1597 	kmem_free(devpath, devpathlen);
1598 
1599 	ret = !error && IS_SWAPVP(common_specvp(vp));
1600 
1601 	if (vp != NULL)
1602 		VN_RELE(vp);
1603 
1604 	return (ret);
1605 }
1606 
1607 static int
1608 zvol_dump_init(zvol_state_t *zv, boolean_t resize)
1609 {
1610 	dmu_tx_t *tx;
1611 	int error = 0;
1612 	objset_t *os = zv->zv_objset;
1613 	nvlist_t *nv = NULL;
1614 
1615 	ASSERT(MUTEX_HELD(&zvol_state_lock));
1616 
1617 	tx = dmu_tx_create(os);
1618 	dmu_tx_hold_zap(tx, ZVOL_ZAP_OBJ, TRUE, NULL);
1619 	error = dmu_tx_assign(tx, TXG_WAIT);
1620 	if (error) {
1621 		dmu_tx_abort(tx);
1622 		return (error);
1623 	}
1624 
1625 	/*
1626 	 * If we are resizing the dump device then we only need to
1627 	 * update the refreservation to match the newly updated
1628 	 * zvolsize. Otherwise, we save off the original state of the
1629 	 * zvol so that we can restore them if the zvol is ever undumpified.
1630 	 */
1631 	if (resize) {
1632 		error = zap_update(os, ZVOL_ZAP_OBJ,
1633 		    zfs_prop_to_name(ZFS_PROP_REFRESERVATION), 8, 1,
1634 		    &zv->zv_volsize, tx);
1635 	} else {
1636 		uint64_t checksum, compress, refresrv, vbs;
1637 
1638 		error = dsl_prop_get_integer(zv->zv_name,
1639 		    zfs_prop_to_name(ZFS_PROP_COMPRESSION), &compress, NULL);
1640 		error = error ? error : dsl_prop_get_integer(zv->zv_name,
1641 		    zfs_prop_to_name(ZFS_PROP_CHECKSUM), &checksum, NULL);
1642 		error = error ? error : dsl_prop_get_integer(zv->zv_name,
1643 		    zfs_prop_to_name(ZFS_PROP_REFRESERVATION), &refresrv, NULL);
1644 		error = error ? error : dsl_prop_get_integer(zv->zv_name,
1645 		    zfs_prop_to_name(ZFS_PROP_VOLBLOCKSIZE), &vbs, NULL);
1646 
1647 		error = error ? error : zap_update(os, ZVOL_ZAP_OBJ,
1648 		    zfs_prop_to_name(ZFS_PROP_COMPRESSION), 8, 1,
1649 		    &compress, tx);
1650 		error = error ? error : zap_update(os, ZVOL_ZAP_OBJ,
1651 		    zfs_prop_to_name(ZFS_PROP_CHECKSUM), 8, 1, &checksum, tx);
1652 		error = error ? error : zap_update(os, ZVOL_ZAP_OBJ,
1653 		    zfs_prop_to_name(ZFS_PROP_REFRESERVATION), 8, 1,
1654 		    &refresrv, tx);
1655 		error = error ? error : zap_update(os, ZVOL_ZAP_OBJ,
1656 		    zfs_prop_to_name(ZFS_PROP_VOLBLOCKSIZE), 8, 1,
1657 		    &vbs, tx);
1658 	}
1659 	dmu_tx_commit(tx);
1660 
1661 	/* Truncate the file */
1662 	if (!error)
1663 		error = dmu_free_long_range(zv->zv_objset,
1664 		    ZVOL_OBJ, 0, DMU_OBJECT_END);
1665 
1666 	if (error)
1667 		return (error);
1668 
1669 	/*
1670 	 * We only need update the zvol's property if we are initializing
1671 	 * the dump area for the first time.
1672 	 */
1673 	if (!resize) {
1674 		VERIFY(nvlist_alloc(&nv, NV_UNIQUE_NAME, KM_SLEEP) == 0);
1675 		VERIFY(nvlist_add_uint64(nv,
1676 		    zfs_prop_to_name(ZFS_PROP_REFRESERVATION), 0) == 0);
1677 		VERIFY(nvlist_add_uint64(nv,
1678 		    zfs_prop_to_name(ZFS_PROP_COMPRESSION),
1679 		    ZIO_COMPRESS_OFF) == 0);
1680 		VERIFY(nvlist_add_uint64(nv,
1681 		    zfs_prop_to_name(ZFS_PROP_CHECKSUM),
1682 		    ZIO_CHECKSUM_OFF) == 0);
1683 		VERIFY(nvlist_add_uint64(nv,
1684 		    zfs_prop_to_name(ZFS_PROP_VOLBLOCKSIZE),
1685 		    SPA_MAXBLOCKSIZE) == 0);
1686 
1687 		error = zfs_set_prop_nvlist(zv->zv_name, nv);
1688 		nvlist_free(nv);
1689 
1690 		if (error)
1691 			return (error);
1692 	}
1693 
1694 	/* Allocate the space for the dump */
1695 	error = zvol_prealloc(zv);
1696 	return (error);
1697 }
1698 
1699 static int
1700 zvol_dumpify(zvol_state_t *zv)
1701 {
1702 	int error = 0;
1703 	uint64_t dumpsize = 0;
1704 	dmu_tx_t *tx;
1705 	objset_t *os = zv->zv_objset;
1706 
1707 	if (zv->zv_flags & ZVOL_RDONLY || (zv->zv_mode & DS_MODE_READONLY))
1708 		return (EROFS);
1709 
1710 	/*
1711 	 * We do not support swap devices acting as dump devices.
1712 	 */
1713 	if (zvol_is_swap(zv))
1714 		return (ENOTSUP);
1715 
1716 	if (zap_lookup(zv->zv_objset, ZVOL_ZAP_OBJ, ZVOL_DUMPSIZE,
1717 	    8, 1, &dumpsize) != 0 || dumpsize != zv->zv_volsize) {
1718 		boolean_t resize = (dumpsize > 0) ? B_TRUE : B_FALSE;
1719 
1720 		if ((error = zvol_dump_init(zv, resize)) != 0) {
1721 			(void) zvol_dump_fini(zv);
1722 			return (error);
1723 		}
1724 	}
1725 
1726 	/*
1727 	 * Build up our lba mapping.
1728 	 */
1729 	error = zvol_get_lbas(zv);
1730 	if (error) {
1731 		(void) zvol_dump_fini(zv);
1732 		return (error);
1733 	}
1734 
1735 	tx = dmu_tx_create(os);
1736 	dmu_tx_hold_zap(tx, ZVOL_ZAP_OBJ, TRUE, NULL);
1737 	error = dmu_tx_assign(tx, TXG_WAIT);
1738 	if (error) {
1739 		dmu_tx_abort(tx);
1740 		(void) zvol_dump_fini(zv);
1741 		return (error);
1742 	}
1743 
1744 	zv->zv_flags |= ZVOL_DUMPIFIED;
1745 	error = zap_update(os, ZVOL_ZAP_OBJ, ZVOL_DUMPSIZE, 8, 1,
1746 	    &zv->zv_volsize, tx);
1747 	dmu_tx_commit(tx);
1748 
1749 	if (error) {
1750 		(void) zvol_dump_fini(zv);
1751 		return (error);
1752 	}
1753 
1754 	txg_wait_synced(dmu_objset_pool(os), 0);
1755 	return (0);
1756 }
1757 
1758 static int
1759 zvol_dump_fini(zvol_state_t *zv)
1760 {
1761 	dmu_tx_t *tx;
1762 	objset_t *os = zv->zv_objset;
1763 	nvlist_t *nv;
1764 	int error = 0;
1765 	uint64_t checksum, compress, refresrv, vbs;
1766 
1767 	/*
1768 	 * Attempt to restore the zvol back to its pre-dumpified state.
1769 	 * This is a best-effort attempt as it's possible that not all
1770 	 * of these properties were initialized during the dumpify process
1771 	 * (i.e. error during zvol_dump_init).
1772 	 */
1773 
1774 	tx = dmu_tx_create(os);
1775 	dmu_tx_hold_zap(tx, ZVOL_ZAP_OBJ, TRUE, NULL);
1776 	error = dmu_tx_assign(tx, TXG_WAIT);
1777 	if (error) {
1778 		dmu_tx_abort(tx);
1779 		return (error);
1780 	}
1781 	(void) zap_remove(os, ZVOL_ZAP_OBJ, ZVOL_DUMPSIZE, tx);
1782 	dmu_tx_commit(tx);
1783 
1784 	(void) zap_lookup(zv->zv_objset, ZVOL_ZAP_OBJ,
1785 	    zfs_prop_to_name(ZFS_PROP_CHECKSUM), 8, 1, &checksum);
1786 	(void) zap_lookup(zv->zv_objset, ZVOL_ZAP_OBJ,
1787 	    zfs_prop_to_name(ZFS_PROP_COMPRESSION), 8, 1, &compress);
1788 	(void) zap_lookup(zv->zv_objset, ZVOL_ZAP_OBJ,
1789 	    zfs_prop_to_name(ZFS_PROP_REFRESERVATION), 8, 1, &refresrv);
1790 	(void) zap_lookup(zv->zv_objset, ZVOL_ZAP_OBJ,
1791 	    zfs_prop_to_name(ZFS_PROP_VOLBLOCKSIZE), 8, 1, &vbs);
1792 
1793 	VERIFY(nvlist_alloc(&nv, NV_UNIQUE_NAME, KM_SLEEP) == 0);
1794 	(void) nvlist_add_uint64(nv,
1795 	    zfs_prop_to_name(ZFS_PROP_CHECKSUM), checksum);
1796 	(void) nvlist_add_uint64(nv,
1797 	    zfs_prop_to_name(ZFS_PROP_COMPRESSION), compress);
1798 	(void) nvlist_add_uint64(nv,
1799 	    zfs_prop_to_name(ZFS_PROP_REFRESERVATION), refresrv);
1800 	(void) nvlist_add_uint64(nv,
1801 	    zfs_prop_to_name(ZFS_PROP_VOLBLOCKSIZE), vbs);
1802 	(void) zfs_set_prop_nvlist(zv->zv_name, nv);
1803 	nvlist_free(nv);
1804 
1805 	zvol_free_extents(zv);
1806 	zv->zv_flags &= ~ZVOL_DUMPIFIED;
1807 	(void) dmu_free_long_range(os, ZVOL_OBJ, 0, DMU_OBJECT_END);
1808 
1809 	return (0);
1810 }
1811