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