]> CyberLeo.Net >> Repos - FreeBSD/releng/9.0.git/blob - sys/cddl/contrib/opensolaris/uts/common/fs/zfs/zvol.c
Copy stable/9 to releng/9.0 as part of the FreeBSD 9.0-RELEASE release
[FreeBSD/releng/9.0.git] / sys / cddl / contrib / opensolaris / uts / common / fs / zfs / zvol.c
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 (c) 2005, 2010, Oracle and/or its affiliates. All rights reserved.
23  *
24  * Copyright (c) 2006-2010 Pawel Jakub Dawidek <pjd@FreeBSD.org>
25  * All rights reserved.
26  */
27
28 /* Portions Copyright 2010 Robert Milkowski */
29 /* Portions Copyright 2011 Martin Matuska <mm@FreeBSD.org> */
30
31 /*
32  * ZFS volume emulation driver.
33  *
34  * Makes a DMU object look like a volume of arbitrary size, up to 2^64 bytes.
35  * Volumes are accessed through the symbolic links named:
36  *
37  * /dev/zvol/dsk/<pool_name>/<dataset_name>
38  * /dev/zvol/rdsk/<pool_name>/<dataset_name>
39  *
40  * These links are created by the /dev filesystem (sdev_zvolops.c).
41  * Volumes are persistent through reboot.  No user command needs to be
42  * run before opening and using a device.
43  *
44  * FreeBSD notes.
45  * On FreeBSD ZVOLs are simply GEOM providers like any other storage device
46  * in the system.
47  */
48
49 #include <sys/types.h>
50 #include <sys/param.h>
51 #include <sys/kernel.h>
52 #include <sys/errno.h>
53 #include <sys/uio.h>
54 #include <sys/bio.h>
55 #include <sys/buf.h>
56 #include <sys/kmem.h>
57 #include <sys/conf.h>
58 #include <sys/cmn_err.h>
59 #include <sys/stat.h>
60 #include <sys/zap.h>
61 #include <sys/spa.h>
62 #include <sys/zio.h>
63 #include <sys/dmu_traverse.h>
64 #include <sys/dnode.h>
65 #include <sys/dsl_dataset.h>
66 #include <sys/dsl_prop.h>
67 #include <sys/dkio.h>
68 #include <sys/byteorder.h>
69 #include <sys/sunddi.h>
70 #include <sys/dirent.h>
71 #include <sys/policy.h>
72 #include <sys/fs/zfs.h>
73 #include <sys/zfs_ioctl.h>
74 #include <sys/zil.h>
75 #include <sys/refcount.h>
76 #include <sys/zfs_znode.h>
77 #include <sys/zfs_rlock.h>
78 #include <sys/vdev_impl.h>
79 #include <sys/zvol.h>
80 #include <sys/zil_impl.h>
81 #include <geom/geom.h>
82
83 #include "zfs_namecheck.h"
84
85 struct g_class zfs_zvol_class = {
86         .name = "ZFS::ZVOL",
87         .version = G_VERSION,
88 };
89
90 DECLARE_GEOM_CLASS(zfs_zvol_class, zfs_zvol);
91
92 void *zfsdev_state;
93 static char *zvol_tag = "zvol_tag";
94
95 #define ZVOL_DUMPSIZE           "dumpsize"
96
97 /*
98  * The spa_namespace_lock protects the zfsdev_state structure from being
99  * modified while it's being used, e.g. an open that comes in before a
100  * create finishes.  It also protects temporary opens of the dataset so that,
101  * e.g., an open doesn't get a spurious EBUSY.
102  */
103 static uint32_t zvol_minors;
104
105 typedef struct zvol_extent {
106         list_node_t     ze_node;
107         dva_t           ze_dva;         /* dva associated with this extent */
108         uint64_t        ze_nblks;       /* number of blocks in extent */
109 } zvol_extent_t;
110
111 /*
112  * The in-core state of each volume.
113  */
114 typedef struct zvol_state {
115         char            zv_name[MAXPATHLEN]; /* pool/dd name */
116         uint64_t        zv_volsize;     /* amount of space we advertise */
117         uint64_t        zv_volblocksize; /* volume block size */
118         struct g_provider *zv_provider; /* GEOM provider */
119         uint8_t         zv_min_bs;      /* minimum addressable block shift */
120         uint8_t         zv_flags;       /* readonly, dumpified, etc. */
121         objset_t        *zv_objset;     /* objset handle */
122         uint32_t        zv_total_opens; /* total open count */
123         zilog_t         *zv_zilog;      /* ZIL handle */
124         list_t          zv_extents;     /* List of extents for dump */
125         znode_t         zv_znode;       /* for range locking */
126         dmu_buf_t       *zv_dbuf;       /* bonus handle */
127         int             zv_state;
128         struct bio_queue_head zv_queue;
129         struct mtx      zv_queue_mtx;   /* zv_queue mutex */
130 } zvol_state_t;
131
132 /*
133  * zvol specific flags
134  */
135 #define ZVOL_RDONLY     0x1
136 #define ZVOL_DUMPIFIED  0x2
137 #define ZVOL_EXCL       0x4
138 #define ZVOL_WCE        0x8
139
140 /*
141  * zvol maximum transfer in one DMU tx.
142  */
143 int zvol_maxphys = DMU_MAX_ACCESS/2;
144
145 extern int zfs_set_prop_nvlist(const char *, zprop_source_t,
146     nvlist_t *, nvlist_t **);
147 static int zvol_remove_zv(zvol_state_t *);
148 static int zvol_get_data(void *arg, lr_write_t *lr, char *buf, zio_t *zio);
149 static int zvol_dumpify(zvol_state_t *zv);
150 static int zvol_dump_fini(zvol_state_t *zv);
151 static int zvol_dump_init(zvol_state_t *zv, boolean_t resize);
152
153 static zvol_state_t *zvol_geom_create(const char *name);
154 static void zvol_geom_run(zvol_state_t *zv);
155 static void zvol_geom_destroy(zvol_state_t *zv);
156 static int zvol_geom_access(struct g_provider *pp, int acr, int acw, int ace);
157 static void zvol_geom_start(struct bio *bp);
158 static void zvol_geom_worker(void *arg);
159
160 static void
161 zvol_size_changed(zvol_state_t *zv)
162 {
163 #ifdef sun
164         dev_t dev = makedevice(maj, min);
165
166         VERIFY(ddi_prop_update_int64(dev, zfs_dip,
167             "Size", volsize) == DDI_SUCCESS);
168         VERIFY(ddi_prop_update_int64(dev, zfs_dip,
169             "Nblocks", lbtodb(volsize)) == DDI_SUCCESS);
170
171         /* Notify specfs to invalidate the cached size */
172         spec_size_invalidate(dev, VBLK);
173         spec_size_invalidate(dev, VCHR);
174 #else   /* !sun */
175         struct g_provider *pp;
176
177         pp = zv->zv_provider;
178         if (pp == NULL)
179                 return;
180         if (zv->zv_volsize == pp->mediasize)
181                 return;
182         /*
183          * Changing provider size is not really supported by GEOM, but it
184          * should be safe when provider is closed.
185          */
186         if (zv->zv_total_opens > 0)
187                 return;
188         pp->mediasize = zv->zv_volsize;
189 #endif  /* !sun */
190 }
191
192 int
193 zvol_check_volsize(uint64_t volsize, uint64_t blocksize)
194 {
195         if (volsize == 0)
196                 return (EINVAL);
197
198         if (volsize % blocksize != 0)
199                 return (EINVAL);
200
201 #ifdef _ILP32
202         if (volsize - 1 > SPEC_MAXOFFSET_T)
203                 return (EOVERFLOW);
204 #endif
205         return (0);
206 }
207
208 int
209 zvol_check_volblocksize(uint64_t volblocksize)
210 {
211         if (volblocksize < SPA_MINBLOCKSIZE ||
212             volblocksize > SPA_MAXBLOCKSIZE ||
213             !ISP2(volblocksize))
214                 return (EDOM);
215
216         return (0);
217 }
218
219 int
220 zvol_get_stats(objset_t *os, nvlist_t *nv)
221 {
222         int error;
223         dmu_object_info_t doi;
224         uint64_t val;
225
226         error = zap_lookup(os, ZVOL_ZAP_OBJ, "size", 8, 1, &val);
227         if (error)
228                 return (error);
229
230         dsl_prop_nvlist_add_uint64(nv, ZFS_PROP_VOLSIZE, val);
231
232         error = dmu_object_info(os, ZVOL_OBJ, &doi);
233
234         if (error == 0) {
235                 dsl_prop_nvlist_add_uint64(nv, ZFS_PROP_VOLBLOCKSIZE,
236                     doi.doi_data_block_size);
237         }
238
239         return (error);
240 }
241
242 static zvol_state_t *
243 zvol_minor_lookup(const char *name)
244 {
245         struct g_provider *pp;
246         struct g_geom *gp;
247         zvol_state_t *zv = NULL;
248
249         ASSERT(MUTEX_HELD(&spa_namespace_lock));
250
251         g_topology_lock();
252         LIST_FOREACH(gp, &zfs_zvol_class.geom, geom) {
253                 pp = LIST_FIRST(&gp->provider);
254                 if (pp == NULL)
255                         continue;
256                 zv = pp->private;
257                 if (zv == NULL)
258                         continue;
259                 if (strcmp(zv->zv_name, name) == 0)
260                         break;
261         }
262         g_topology_unlock();
263
264         return (gp != NULL ? zv : NULL);
265 }
266
267 /* extent mapping arg */
268 struct maparg {
269         zvol_state_t    *ma_zv;
270         uint64_t        ma_blks;
271 };
272
273 /*ARGSUSED*/
274 static int
275 zvol_map_block(spa_t *spa, zilog_t *zilog, const blkptr_t *bp, arc_buf_t *pbuf,
276     const zbookmark_t *zb, const dnode_phys_t *dnp, void *arg)
277 {
278         struct maparg *ma = arg;
279         zvol_extent_t *ze;
280         int bs = ma->ma_zv->zv_volblocksize;
281
282         if (bp == NULL || zb->zb_object != ZVOL_OBJ || zb->zb_level != 0)
283                 return (0);
284
285         VERIFY3U(ma->ma_blks, ==, zb->zb_blkid);
286         ma->ma_blks++;
287
288         /* Abort immediately if we have encountered gang blocks */
289         if (BP_IS_GANG(bp))
290                 return (EFRAGS);
291
292         /*
293          * See if the block is at the end of the previous extent.
294          */
295         ze = list_tail(&ma->ma_zv->zv_extents);
296         if (ze &&
297             DVA_GET_VDEV(BP_IDENTITY(bp)) == DVA_GET_VDEV(&ze->ze_dva) &&
298             DVA_GET_OFFSET(BP_IDENTITY(bp)) ==
299             DVA_GET_OFFSET(&ze->ze_dva) + ze->ze_nblks * bs) {
300                 ze->ze_nblks++;
301                 return (0);
302         }
303
304         dprintf_bp(bp, "%s", "next blkptr:");
305
306         /* start a new extent */
307         ze = kmem_zalloc(sizeof (zvol_extent_t), KM_SLEEP);
308         ze->ze_dva = bp->blk_dva[0];    /* structure assignment */
309         ze->ze_nblks = 1;
310         list_insert_tail(&ma->ma_zv->zv_extents, ze);
311         return (0);
312 }
313
314 static void
315 zvol_free_extents(zvol_state_t *zv)
316 {
317         zvol_extent_t *ze;
318
319         while (ze = list_head(&zv->zv_extents)) {
320                 list_remove(&zv->zv_extents, ze);
321                 kmem_free(ze, sizeof (zvol_extent_t));
322         }
323 }
324
325 static int
326 zvol_get_lbas(zvol_state_t *zv)
327 {
328         objset_t *os = zv->zv_objset;
329         struct maparg   ma;
330         int             err;
331
332         ma.ma_zv = zv;
333         ma.ma_blks = 0;
334         zvol_free_extents(zv);
335
336         /* commit any in-flight changes before traversing the dataset */
337         txg_wait_synced(dmu_objset_pool(os), 0);
338         err = traverse_dataset(dmu_objset_ds(os), 0,
339             TRAVERSE_PRE | TRAVERSE_PREFETCH_METADATA, zvol_map_block, &ma);
340         if (err || ma.ma_blks != (zv->zv_volsize / zv->zv_volblocksize)) {
341                 zvol_free_extents(zv);
342                 return (err ? err : EIO);
343         }
344
345         return (0);
346 }
347
348 /* ARGSUSED */
349 void
350 zvol_create_cb(objset_t *os, void *arg, cred_t *cr, dmu_tx_t *tx)
351 {
352         zfs_creat_t *zct = arg;
353         nvlist_t *nvprops = zct->zct_props;
354         int error;
355         uint64_t volblocksize, volsize;
356
357         VERIFY(nvlist_lookup_uint64(nvprops,
358             zfs_prop_to_name(ZFS_PROP_VOLSIZE), &volsize) == 0);
359         if (nvlist_lookup_uint64(nvprops,
360             zfs_prop_to_name(ZFS_PROP_VOLBLOCKSIZE), &volblocksize) != 0)
361                 volblocksize = zfs_prop_default_numeric(ZFS_PROP_VOLBLOCKSIZE);
362
363         /*
364          * These properties must be removed from the list so the generic
365          * property setting step won't apply to them.
366          */
367         VERIFY(nvlist_remove_all(nvprops,
368             zfs_prop_to_name(ZFS_PROP_VOLSIZE)) == 0);
369         (void) nvlist_remove_all(nvprops,
370             zfs_prop_to_name(ZFS_PROP_VOLBLOCKSIZE));
371
372         error = dmu_object_claim(os, ZVOL_OBJ, DMU_OT_ZVOL, volblocksize,
373             DMU_OT_NONE, 0, tx);
374         ASSERT(error == 0);
375
376         error = zap_create_claim(os, ZVOL_ZAP_OBJ, DMU_OT_ZVOL_PROP,
377             DMU_OT_NONE, 0, tx);
378         ASSERT(error == 0);
379
380         error = zap_update(os, ZVOL_ZAP_OBJ, "size", 8, 1, &volsize, tx);
381         ASSERT(error == 0);
382 }
383
384 /*
385  * Replay a TX_WRITE ZIL transaction that didn't get committed
386  * after a system failure
387  */
388 static int
389 zvol_replay_write(zvol_state_t *zv, lr_write_t *lr, boolean_t byteswap)
390 {
391         objset_t *os = zv->zv_objset;
392         char *data = (char *)(lr + 1);  /* data follows lr_write_t */
393         uint64_t offset, length;
394         dmu_tx_t *tx;
395         int error;
396
397         if (byteswap)
398                 byteswap_uint64_array(lr, sizeof (*lr));
399
400         offset = lr->lr_offset;
401         length = lr->lr_length;
402
403         /* If it's a dmu_sync() block, write the whole block */
404         if (lr->lr_common.lrc_reclen == sizeof (lr_write_t)) {
405                 uint64_t blocksize = BP_GET_LSIZE(&lr->lr_blkptr);
406                 if (length < blocksize) {
407                         offset -= offset % blocksize;
408                         length = blocksize;
409                 }
410         }
411
412         tx = dmu_tx_create(os);
413         dmu_tx_hold_write(tx, ZVOL_OBJ, offset, length);
414         error = dmu_tx_assign(tx, TXG_WAIT);
415         if (error) {
416                 dmu_tx_abort(tx);
417         } else {
418                 dmu_write(os, ZVOL_OBJ, offset, length, data, tx);
419                 dmu_tx_commit(tx);
420         }
421
422         return (error);
423 }
424
425 /* ARGSUSED */
426 static int
427 zvol_replay_err(zvol_state_t *zv, lr_t *lr, boolean_t byteswap)
428 {
429         return (ENOTSUP);
430 }
431
432 /*
433  * Callback vectors for replaying records.
434  * Only TX_WRITE is needed for zvol.
435  */
436 zil_replay_func_t *zvol_replay_vector[TX_MAX_TYPE] = {
437         zvol_replay_err,        /* 0 no such transaction type */
438         zvol_replay_err,        /* TX_CREATE */
439         zvol_replay_err,        /* TX_MKDIR */
440         zvol_replay_err,        /* TX_MKXATTR */
441         zvol_replay_err,        /* TX_SYMLINK */
442         zvol_replay_err,        /* TX_REMOVE */
443         zvol_replay_err,        /* TX_RMDIR */
444         zvol_replay_err,        /* TX_LINK */
445         zvol_replay_err,        /* TX_RENAME */
446         zvol_replay_write,      /* TX_WRITE */
447         zvol_replay_err,        /* TX_TRUNCATE */
448         zvol_replay_err,        /* TX_SETATTR */
449         zvol_replay_err,        /* TX_ACL */
450         zvol_replay_err,        /* TX_CREATE_ACL */
451         zvol_replay_err,        /* TX_CREATE_ATTR */
452         zvol_replay_err,        /* TX_CREATE_ACL_ATTR */
453         zvol_replay_err,        /* TX_MKDIR_ACL */
454         zvol_replay_err,        /* TX_MKDIR_ATTR */
455         zvol_replay_err,        /* TX_MKDIR_ACL_ATTR */
456         zvol_replay_err,        /* TX_WRITE2 */
457 };
458
459 #ifdef sun
460 int
461 zvol_name2minor(const char *name, minor_t *minor)
462 {
463         zvol_state_t *zv;
464
465         mutex_enter(&spa_namespace_lock);
466         zv = zvol_minor_lookup(name);
467         if (minor && zv)
468                 *minor = zv->zv_minor;
469         mutex_exit(&spa_namespace_lock);
470         return (zv ? 0 : -1);
471 }
472 #endif  /* sun */
473
474 /*
475  * Create a minor node (plus a whole lot more) for the specified volume.
476  */
477 int
478 zvol_create_minor(const char *name)
479 {
480         zfs_soft_state_t *zs;
481         zvol_state_t *zv;
482         objset_t *os;
483         dmu_object_info_t doi;
484         int error;
485
486         ZFS_LOG(1, "Creating ZVOL %s...", name);
487
488         mutex_enter(&spa_namespace_lock);
489
490         if (zvol_minor_lookup(name) != NULL) {
491                 mutex_exit(&spa_namespace_lock);
492                 return (EEXIST);
493         }
494
495         /* lie and say we're read-only */
496         error = dmu_objset_own(name, DMU_OST_ZVOL, B_TRUE, FTAG, &os);
497
498         if (error) {
499                 mutex_exit(&spa_namespace_lock);
500                 return (error);
501         }
502
503 #ifdef sun
504         if ((minor = zfsdev_minor_alloc()) == 0) {
505                 dmu_objset_disown(os, FTAG);
506                 mutex_exit(&spa_namespace_lock);
507                 return (ENXIO);
508         }
509
510         if (ddi_soft_state_zalloc(zfsdev_state, minor) != DDI_SUCCESS) {
511                 dmu_objset_disown(os, FTAG);
512                 mutex_exit(&spa_namespace_lock);
513                 return (EAGAIN);
514         }
515         (void) ddi_prop_update_string(minor, zfs_dip, ZVOL_PROP_NAME,
516             (char *)name);
517
518         (void) snprintf(chrbuf, sizeof (chrbuf), "%u,raw", minor);
519
520         if (ddi_create_minor_node(zfs_dip, chrbuf, S_IFCHR,
521             minor, DDI_PSEUDO, 0) == DDI_FAILURE) {
522                 ddi_soft_state_free(zfsdev_state, minor);
523                 dmu_objset_disown(os, FTAG);
524                 mutex_exit(&spa_namespace_lock);
525                 return (EAGAIN);
526         }
527
528         (void) snprintf(blkbuf, sizeof (blkbuf), "%u", minor);
529
530         if (ddi_create_minor_node(zfs_dip, blkbuf, S_IFBLK,
531             minor, DDI_PSEUDO, 0) == DDI_FAILURE) {
532                 ddi_remove_minor_node(zfs_dip, chrbuf);
533                 ddi_soft_state_free(zfsdev_state, minor);
534                 dmu_objset_disown(os, FTAG);
535                 mutex_exit(&spa_namespace_lock);
536                 return (EAGAIN);
537         }
538
539         zs = ddi_get_soft_state(zfsdev_state, minor);
540         zs->zss_type = ZSST_ZVOL;
541         zv = zs->zss_data = kmem_zalloc(sizeof (zvol_state_t), KM_SLEEP);
542 #else   /* !sun */
543
544         DROP_GIANT();
545         g_topology_lock();
546         zv = zvol_geom_create(name);
547 #endif  /* !sun */
548
549         (void) strlcpy(zv->zv_name, name, MAXPATHLEN);
550         zv->zv_min_bs = DEV_BSHIFT;
551         zv->zv_objset = os;
552         if (dmu_objset_is_snapshot(os) || !spa_writeable(dmu_objset_spa(os)))
553                 zv->zv_flags |= ZVOL_RDONLY;
554         mutex_init(&zv->zv_znode.z_range_lock, NULL, MUTEX_DEFAULT, NULL);
555         avl_create(&zv->zv_znode.z_range_avl, zfs_range_compare,
556             sizeof (rl_t), offsetof(rl_t, r_node));
557         list_create(&zv->zv_extents, sizeof (zvol_extent_t),
558             offsetof(zvol_extent_t, ze_node));
559         /* get and cache the blocksize */
560         error = dmu_object_info(os, ZVOL_OBJ, &doi);
561         ASSERT(error == 0);
562         zv->zv_volblocksize = doi.doi_data_block_size;
563
564         if (spa_writeable(dmu_objset_spa(os))) {
565                 if (zil_replay_disable)
566                         zil_destroy(dmu_objset_zil(os), B_FALSE);
567                 else
568                         zil_replay(os, zv, zvol_replay_vector);
569         }
570         dmu_objset_disown(os, FTAG);
571         zv->zv_objset = NULL;
572
573         zvol_minors++;
574
575         mutex_exit(&spa_namespace_lock);
576
577         zvol_geom_run(zv);
578
579         g_topology_unlock();
580         PICKUP_GIANT();
581
582         ZFS_LOG(1, "ZVOL %s created.", name);
583
584         return (0);
585 }
586
587 /*
588  * Remove minor node for the specified volume.
589  */
590 static int
591 zvol_remove_zv(zvol_state_t *zv)
592 {
593 #ifdef sun
594         minor_t minor = zv->zv_minor;
595 #endif
596
597         ASSERT(MUTEX_HELD(&spa_namespace_lock));
598         if (zv->zv_total_opens != 0)
599                 return (EBUSY);
600
601         ZFS_LOG(1, "ZVOL %s destroyed.", zv->zv_name);
602
603 #ifdef sun
604         (void) snprintf(nmbuf, sizeof (nmbuf), "%u,raw", minor);
605         ddi_remove_minor_node(zfs_dip, nmbuf);
606 #endif  /* sun */
607
608         avl_destroy(&zv->zv_znode.z_range_avl);
609         mutex_destroy(&zv->zv_znode.z_range_lock);
610
611         zvol_geom_destroy(zv);
612
613         zvol_minors--;
614         return (0);
615 }
616
617 int
618 zvol_remove_minor(const char *name)
619 {
620         zvol_state_t *zv;
621         int rc;
622
623         mutex_enter(&spa_namespace_lock);
624         if ((zv = zvol_minor_lookup(name)) == NULL) {
625                 mutex_exit(&spa_namespace_lock);
626                 return (ENXIO);
627         }
628         g_topology_lock();
629         rc = zvol_remove_zv(zv);
630         g_topology_unlock();
631         mutex_exit(&spa_namespace_lock);
632         return (rc);
633 }
634
635 int
636 zvol_first_open(zvol_state_t *zv)
637 {
638         objset_t *os;
639         uint64_t volsize;
640         int error;
641         uint64_t readonly;
642
643         /* lie and say we're read-only */
644         error = dmu_objset_own(zv->zv_name, DMU_OST_ZVOL, B_TRUE,
645             zvol_tag, &os);
646         if (error)
647                 return (error);
648
649         error = zap_lookup(os, ZVOL_ZAP_OBJ, "size", 8, 1, &volsize);
650         if (error) {
651                 ASSERT(error == 0);
652                 dmu_objset_disown(os, zvol_tag);
653                 return (error);
654         }
655         zv->zv_objset = os;
656         error = dmu_bonus_hold(os, ZVOL_OBJ, zvol_tag, &zv->zv_dbuf);
657         if (error) {
658                 dmu_objset_disown(os, zvol_tag);
659                 return (error);
660         }
661         zv->zv_volsize = volsize;
662         zv->zv_zilog = zil_open(os, zvol_get_data);
663         zvol_size_changed(zv);
664
665         VERIFY(dsl_prop_get_integer(zv->zv_name, "readonly", &readonly,
666             NULL) == 0);
667         if (readonly || dmu_objset_is_snapshot(os) ||
668             !spa_writeable(dmu_objset_spa(os)))
669                 zv->zv_flags |= ZVOL_RDONLY;
670         else
671                 zv->zv_flags &= ~ZVOL_RDONLY;
672         return (error);
673 }
674
675 void
676 zvol_last_close(zvol_state_t *zv)
677 {
678         zil_close(zv->zv_zilog);
679         zv->zv_zilog = NULL;
680         dmu_buf_rele(zv->zv_dbuf, zvol_tag);
681         zv->zv_dbuf = NULL;
682         dmu_objset_disown(zv->zv_objset, zvol_tag);
683         zv->zv_objset = NULL;
684 }
685
686 #ifdef sun
687 int
688 zvol_prealloc(zvol_state_t *zv)
689 {
690         objset_t *os = zv->zv_objset;
691         dmu_tx_t *tx;
692         uint64_t refd, avail, usedobjs, availobjs;
693         uint64_t resid = zv->zv_volsize;
694         uint64_t off = 0;
695
696         /* Check the space usage before attempting to allocate the space */
697         dmu_objset_space(os, &refd, &avail, &usedobjs, &availobjs);
698         if (avail < zv->zv_volsize)
699                 return (ENOSPC);
700
701         /* Free old extents if they exist */
702         zvol_free_extents(zv);
703
704         while (resid != 0) {
705                 int error;
706                 uint64_t bytes = MIN(resid, SPA_MAXBLOCKSIZE);
707
708                 tx = dmu_tx_create(os);
709                 dmu_tx_hold_write(tx, ZVOL_OBJ, off, bytes);
710                 error = dmu_tx_assign(tx, TXG_WAIT);
711                 if (error) {
712                         dmu_tx_abort(tx);
713                         (void) dmu_free_long_range(os, ZVOL_OBJ, 0, off);
714                         return (error);
715                 }
716                 dmu_prealloc(os, ZVOL_OBJ, off, bytes, tx);
717                 dmu_tx_commit(tx);
718                 off += bytes;
719                 resid -= bytes;
720         }
721         txg_wait_synced(dmu_objset_pool(os), 0);
722
723         return (0);
724 }
725 #endif  /* sun */
726
727 int
728 zvol_update_volsize(objset_t *os, uint64_t volsize)
729 {
730         dmu_tx_t *tx;
731         int error;
732
733         ASSERT(MUTEX_HELD(&spa_namespace_lock));
734
735         tx = dmu_tx_create(os);
736         dmu_tx_hold_zap(tx, ZVOL_ZAP_OBJ, TRUE, NULL);
737         error = dmu_tx_assign(tx, TXG_WAIT);
738         if (error) {
739                 dmu_tx_abort(tx);
740                 return (error);
741         }
742
743         error = zap_update(os, ZVOL_ZAP_OBJ, "size", 8, 1,
744             &volsize, tx);
745         dmu_tx_commit(tx);
746
747         if (error == 0)
748                 error = dmu_free_long_range(os,
749                     ZVOL_OBJ, volsize, DMU_OBJECT_END);
750         return (error);
751 }
752
753 void
754 zvol_remove_minors(const char *name)
755 {
756         struct g_geom *gp, *gptmp;
757         struct g_provider *pp;
758         zvol_state_t *zv;
759         size_t namelen;
760
761         namelen = strlen(name);
762
763         DROP_GIANT();
764         mutex_enter(&spa_namespace_lock);
765         g_topology_lock();
766
767         LIST_FOREACH_SAFE(gp, &zfs_zvol_class.geom, geom, gptmp) {
768                 pp = LIST_FIRST(&gp->provider);
769                 if (pp == NULL)
770                         continue;
771                 zv = pp->private;
772                 if (zv == NULL)
773                         continue;
774                 if (strcmp(zv->zv_name, name) == 0 ||
775                     (strncmp(zv->zv_name, name, namelen) == 0 &&
776                      zv->zv_name[namelen] == '/')) {
777                         (void) zvol_remove_zv(zv);
778                 }
779         }
780
781         g_topology_unlock();
782         mutex_exit(&spa_namespace_lock);
783         PICKUP_GIANT();
784 }
785
786 int
787 zvol_set_volsize(const char *name, major_t maj, uint64_t volsize)
788 {
789         zvol_state_t *zv = NULL;
790         objset_t *os;
791         int error;
792         dmu_object_info_t doi;
793         uint64_t old_volsize = 0ULL;
794         uint64_t readonly;
795
796         mutex_enter(&spa_namespace_lock);
797         zv = zvol_minor_lookup(name);
798         if ((error = dmu_objset_hold(name, FTAG, &os)) != 0) {
799                 mutex_exit(&spa_namespace_lock);
800                 return (error);
801         }
802
803         if ((error = dmu_object_info(os, ZVOL_OBJ, &doi)) != 0 ||
804             (error = zvol_check_volsize(volsize,
805             doi.doi_data_block_size)) != 0)
806                 goto out;
807
808         VERIFY(dsl_prop_get_integer(name, "readonly", &readonly,
809             NULL) == 0);
810         if (readonly) {
811                 error = EROFS;
812                 goto out;
813         }
814
815         error = zvol_update_volsize(os, volsize);
816         /*
817          * Reinitialize the dump area to the new size. If we
818          * failed to resize the dump area then restore it back to
819          * its original size.
820          */
821         if (zv && error == 0) {
822 #ifdef ZVOL_DUMP
823                 if (zv->zv_flags & ZVOL_DUMPIFIED) {
824                         old_volsize = zv->zv_volsize;
825                         zv->zv_volsize = volsize;
826                         if ((error = zvol_dumpify(zv)) != 0 ||
827                             (error = dumpvp_resize()) != 0) {
828                                 (void) zvol_update_volsize(os, old_volsize);
829                                 zv->zv_volsize = old_volsize;
830                                 error = zvol_dumpify(zv);
831                         }
832                 }
833 #endif  /* ZVOL_DUMP */
834                 if (error == 0) {
835                         zv->zv_volsize = volsize;
836                         zvol_size_changed(zv);
837                 }
838         }
839
840 #ifdef sun
841         /*
842          * Generate a LUN expansion event.
843          */
844         if (zv && error == 0) {
845                 sysevent_id_t eid;
846                 nvlist_t *attr;
847                 char *physpath = kmem_zalloc(MAXPATHLEN, KM_SLEEP);
848
849                 (void) snprintf(physpath, MAXPATHLEN, "%s%u", ZVOL_PSEUDO_DEV,
850                     zv->zv_minor);
851
852                 VERIFY(nvlist_alloc(&attr, NV_UNIQUE_NAME, KM_SLEEP) == 0);
853                 VERIFY(nvlist_add_string(attr, DEV_PHYS_PATH, physpath) == 0);
854
855                 (void) ddi_log_sysevent(zfs_dip, SUNW_VENDOR, EC_DEV_STATUS,
856                     ESC_DEV_DLE, attr, &eid, DDI_SLEEP);
857
858                 nvlist_free(attr);
859                 kmem_free(physpath, MAXPATHLEN);
860         }
861 #endif  /* sun */
862
863 out:
864         dmu_objset_rele(os, FTAG);
865
866         mutex_exit(&spa_namespace_lock);
867
868         return (error);
869 }
870
871 /*ARGSUSED*/
872 static int
873 zvol_open(struct g_provider *pp, int flag, int count)
874 {
875         zvol_state_t *zv;
876         int err = 0;
877
878         mutex_enter(&spa_namespace_lock);
879
880         zv = pp->private;
881         if (zv == NULL) {
882                 mutex_exit(&spa_namespace_lock);
883                 return (ENXIO);
884         }
885
886         if (zv->zv_total_opens == 0)
887                 err = zvol_first_open(zv);
888         if (err) {
889                 mutex_exit(&spa_namespace_lock);
890                 return (err);
891         }
892         if ((flag & FWRITE) && (zv->zv_flags & ZVOL_RDONLY)) {
893                 err = EROFS;
894                 goto out;
895         }
896         if (zv->zv_flags & ZVOL_EXCL) {
897                 err = EBUSY;
898                 goto out;
899         }
900 #ifdef FEXCL
901         if (flag & FEXCL) {
902                 if (zv->zv_total_opens != 0) {
903                         err = EBUSY;
904                         goto out;
905                 }
906                 zv->zv_flags |= ZVOL_EXCL;
907         }
908 #endif
909
910         zv->zv_total_opens += count;
911         mutex_exit(&spa_namespace_lock);
912
913         return (err);
914 out:
915         if (zv->zv_total_opens == 0)
916                 zvol_last_close(zv);
917         mutex_exit(&spa_namespace_lock);
918         return (err);
919 }
920
921 /*ARGSUSED*/
922 static int
923 zvol_close(struct g_provider *pp, int flag, int count)
924 {
925         zvol_state_t *zv;
926         int error = 0;
927
928         mutex_enter(&spa_namespace_lock);
929
930         zv = pp->private;
931         if (zv == NULL) {
932                 mutex_exit(&spa_namespace_lock);
933                 return (ENXIO);
934         }
935
936         if (zv->zv_flags & ZVOL_EXCL) {
937                 ASSERT(zv->zv_total_opens == 1);
938                 zv->zv_flags &= ~ZVOL_EXCL;
939         }
940
941         /*
942          * If the open count is zero, this is a spurious close.
943          * That indicates a bug in the kernel / DDI framework.
944          */
945         ASSERT(zv->zv_total_opens != 0);
946
947         /*
948          * You may get multiple opens, but only one close.
949          */
950         zv->zv_total_opens -= count;
951
952         if (zv->zv_total_opens == 0)
953                 zvol_last_close(zv);
954
955         mutex_exit(&spa_namespace_lock);
956         return (error);
957 }
958
959 static void
960 zvol_get_done(zgd_t *zgd, int error)
961 {
962         if (zgd->zgd_db)
963                 dmu_buf_rele(zgd->zgd_db, zgd);
964
965         zfs_range_unlock(zgd->zgd_rl);
966
967         if (error == 0 && zgd->zgd_bp)
968                 zil_add_block(zgd->zgd_zilog, zgd->zgd_bp);
969
970         kmem_free(zgd, sizeof (zgd_t));
971 }
972
973 /*
974  * Get data to generate a TX_WRITE intent log record.
975  */
976 static int
977 zvol_get_data(void *arg, lr_write_t *lr, char *buf, zio_t *zio)
978 {
979         zvol_state_t *zv = arg;
980         objset_t *os = zv->zv_objset;
981         uint64_t object = ZVOL_OBJ;
982         uint64_t offset = lr->lr_offset;
983         uint64_t size = lr->lr_length;  /* length of user data */
984         blkptr_t *bp = &lr->lr_blkptr;
985         dmu_buf_t *db;
986         zgd_t *zgd;
987         int error;
988
989         ASSERT(zio != NULL);
990         ASSERT(size != 0);
991
992         zgd = kmem_zalloc(sizeof (zgd_t), KM_SLEEP);
993         zgd->zgd_zilog = zv->zv_zilog;
994         zgd->zgd_rl = zfs_range_lock(&zv->zv_znode, offset, size, RL_READER);
995
996         /*
997          * Write records come in two flavors: immediate and indirect.
998          * For small writes it's cheaper to store the data with the
999          * log record (immediate); for large writes it's cheaper to
1000          * sync the data and get a pointer to it (indirect) so that
1001          * we don't have to write the data twice.
1002          */
1003         if (buf != NULL) {      /* immediate write */
1004                 error = dmu_read(os, object, offset, size, buf,
1005                     DMU_READ_NO_PREFETCH);
1006         } else {
1007                 size = zv->zv_volblocksize;
1008                 offset = P2ALIGN(offset, size);
1009                 error = dmu_buf_hold(os, object, offset, zgd, &db,
1010                     DMU_READ_NO_PREFETCH);
1011                 if (error == 0) {
1012                         zgd->zgd_db = db;
1013                         zgd->zgd_bp = bp;
1014
1015                         ASSERT(db->db_offset == offset);
1016                         ASSERT(db->db_size == size);
1017
1018                         error = dmu_sync(zio, lr->lr_common.lrc_txg,
1019                             zvol_get_done, zgd);
1020
1021                         if (error == 0)
1022                                 return (0);
1023                 }
1024         }
1025
1026         zvol_get_done(zgd, error);
1027
1028         return (error);
1029 }
1030
1031 /*
1032  * zvol_log_write() handles synchronous writes using TX_WRITE ZIL transactions.
1033  *
1034  * We store data in the log buffers if it's small enough.
1035  * Otherwise we will later flush the data out via dmu_sync().
1036  */
1037 ssize_t zvol_immediate_write_sz = 32768;
1038
1039 static void
1040 zvol_log_write(zvol_state_t *zv, dmu_tx_t *tx, offset_t off, ssize_t resid,
1041     boolean_t sync)
1042 {
1043         uint32_t blocksize = zv->zv_volblocksize;
1044         zilog_t *zilog = zv->zv_zilog;
1045         boolean_t slogging;
1046         ssize_t immediate_write_sz;
1047
1048         if (zil_replaying(zilog, tx))
1049                 return;
1050
1051         immediate_write_sz = (zilog->zl_logbias == ZFS_LOGBIAS_THROUGHPUT)
1052             ? 0 : zvol_immediate_write_sz;
1053
1054         slogging = spa_has_slogs(zilog->zl_spa) &&
1055             (zilog->zl_logbias == ZFS_LOGBIAS_LATENCY);
1056
1057         while (resid) {
1058                 itx_t *itx;
1059                 lr_write_t *lr;
1060                 ssize_t len;
1061                 itx_wr_state_t write_state;
1062
1063                 /*
1064                  * Unlike zfs_log_write() we can be called with
1065                  * upto DMU_MAX_ACCESS/2 (5MB) writes.
1066                  */
1067                 if (blocksize > immediate_write_sz && !slogging &&
1068                     resid >= blocksize && off % blocksize == 0) {
1069                         write_state = WR_INDIRECT; /* uses dmu_sync */
1070                         len = blocksize;
1071                 } else if (sync) {
1072                         write_state = WR_COPIED;
1073                         len = MIN(ZIL_MAX_LOG_DATA, resid);
1074                 } else {
1075                         write_state = WR_NEED_COPY;
1076                         len = MIN(ZIL_MAX_LOG_DATA, resid);
1077                 }
1078
1079                 itx = zil_itx_create(TX_WRITE, sizeof (*lr) +
1080                     (write_state == WR_COPIED ? len : 0));
1081                 lr = (lr_write_t *)&itx->itx_lr;
1082                 if (write_state == WR_COPIED && dmu_read(zv->zv_objset,
1083                     ZVOL_OBJ, off, len, lr + 1, DMU_READ_NO_PREFETCH) != 0) {
1084                         zil_itx_destroy(itx);
1085                         itx = zil_itx_create(TX_WRITE, sizeof (*lr));
1086                         lr = (lr_write_t *)&itx->itx_lr;
1087                         write_state = WR_NEED_COPY;
1088                 }
1089
1090                 itx->itx_wr_state = write_state;
1091                 if (write_state == WR_NEED_COPY)
1092                         itx->itx_sod += len;
1093                 lr->lr_foid = ZVOL_OBJ;
1094                 lr->lr_offset = off;
1095                 lr->lr_length = len;
1096                 lr->lr_blkoff = 0;
1097                 BP_ZERO(&lr->lr_blkptr);
1098
1099                 itx->itx_private = zv;
1100                 itx->itx_sync = sync;
1101
1102                 zil_itx_assign(zilog, itx, tx);
1103
1104                 off += len;
1105                 resid -= len;
1106         }
1107 }
1108
1109 #ifdef sun
1110 static int
1111 zvol_dumpio_vdev(vdev_t *vd, void *addr, uint64_t offset, uint64_t size,
1112     boolean_t doread, boolean_t isdump)
1113 {
1114         vdev_disk_t *dvd;
1115         int c;
1116         int numerrors = 0;
1117
1118         for (c = 0; c < vd->vdev_children; c++) {
1119                 ASSERT(vd->vdev_ops == &vdev_mirror_ops ||
1120                     vd->vdev_ops == &vdev_replacing_ops ||
1121                     vd->vdev_ops == &vdev_spare_ops);
1122                 int err = zvol_dumpio_vdev(vd->vdev_child[c],
1123                     addr, offset, size, doread, isdump);
1124                 if (err != 0) {
1125                         numerrors++;
1126                 } else if (doread) {
1127                         break;
1128                 }
1129         }
1130
1131         if (!vd->vdev_ops->vdev_op_leaf)
1132                 return (numerrors < vd->vdev_children ? 0 : EIO);
1133
1134         if (doread && !vdev_readable(vd))
1135                 return (EIO);
1136         else if (!doread && !vdev_writeable(vd))
1137                 return (EIO);
1138
1139         dvd = vd->vdev_tsd;
1140         ASSERT3P(dvd, !=, NULL);
1141         offset += VDEV_LABEL_START_SIZE;
1142
1143         if (ddi_in_panic() || isdump) {
1144                 ASSERT(!doread);
1145                 if (doread)
1146                         return (EIO);
1147                 return (ldi_dump(dvd->vd_lh, addr, lbtodb(offset),
1148                     lbtodb(size)));
1149         } else {
1150                 return (vdev_disk_physio(dvd->vd_lh, addr, size, offset,
1151                     doread ? B_READ : B_WRITE));
1152         }
1153 }
1154
1155 static int
1156 zvol_dumpio(zvol_state_t *zv, void *addr, uint64_t offset, uint64_t size,
1157     boolean_t doread, boolean_t isdump)
1158 {
1159         vdev_t *vd;
1160         int error;
1161         zvol_extent_t *ze;
1162         spa_t *spa = dmu_objset_spa(zv->zv_objset);
1163
1164         /* Must be sector aligned, and not stradle a block boundary. */
1165         if (P2PHASE(offset, DEV_BSIZE) || P2PHASE(size, DEV_BSIZE) ||
1166             P2BOUNDARY(offset, size, zv->zv_volblocksize)) {
1167                 return (EINVAL);
1168         }
1169         ASSERT(size <= zv->zv_volblocksize);
1170
1171         /* Locate the extent this belongs to */
1172         ze = list_head(&zv->zv_extents);
1173         while (offset >= ze->ze_nblks * zv->zv_volblocksize) {
1174                 offset -= ze->ze_nblks * zv->zv_volblocksize;
1175                 ze = list_next(&zv->zv_extents, ze);
1176         }
1177
1178         if (!ddi_in_panic())
1179                 spa_config_enter(spa, SCL_STATE, FTAG, RW_READER);
1180
1181         vd = vdev_lookup_top(spa, DVA_GET_VDEV(&ze->ze_dva));
1182         offset += DVA_GET_OFFSET(&ze->ze_dva);
1183         error = zvol_dumpio_vdev(vd, addr, offset, size, doread, isdump);
1184
1185         if (!ddi_in_panic())
1186                 spa_config_exit(spa, SCL_STATE, FTAG);
1187
1188         return (error);
1189 }
1190 #endif  /* sun */
1191
1192 int
1193 zvol_strategy(struct bio *bp)
1194 {
1195         zvol_state_t *zv = bp->bio_to->private;
1196         uint64_t off, volsize;
1197         size_t resid;
1198         char *addr;
1199         objset_t *os;
1200         rl_t *rl;
1201         int error = 0;
1202         boolean_t doread = (bp->bio_cmd == BIO_READ);
1203         boolean_t sync;
1204
1205         if (zv == NULL) {
1206                 g_io_deliver(bp, ENXIO);
1207                 return (0);
1208         }
1209
1210         if (bp->bio_cmd != BIO_READ && (zv->zv_flags & ZVOL_RDONLY)) {
1211                 g_io_deliver(bp, EROFS);
1212                 return (0);
1213         }
1214
1215         off = bp->bio_offset;
1216         volsize = zv->zv_volsize;
1217
1218         os = zv->zv_objset;
1219         ASSERT(os != NULL);
1220
1221         addr = bp->bio_data;
1222         resid = bp->bio_length;
1223
1224         if (resid > 0 && (off < 0 || off >= volsize)) {
1225                 g_io_deliver(bp, EIO);
1226                 return (0);
1227         }
1228
1229         sync = !doread && zv->zv_objset->os_sync == ZFS_SYNC_ALWAYS;
1230
1231         /*
1232          * There must be no buffer changes when doing a dmu_sync() because
1233          * we can't change the data whilst calculating the checksum.
1234          */
1235         rl = zfs_range_lock(&zv->zv_znode, off, resid,
1236             doread ? RL_READER : RL_WRITER);
1237
1238         while (resid != 0 && off < volsize) {
1239                 size_t size = MIN(resid, zvol_maxphys);
1240                 if (doread) {
1241                         error = dmu_read(os, ZVOL_OBJ, off, size, addr,
1242                             DMU_READ_PREFETCH);
1243                 } else {
1244                         dmu_tx_t *tx = dmu_tx_create(os);
1245                         dmu_tx_hold_write(tx, ZVOL_OBJ, off, size);
1246                         error = dmu_tx_assign(tx, TXG_WAIT);
1247                         if (error) {
1248                                 dmu_tx_abort(tx);
1249                         } else {
1250                                 dmu_write(os, ZVOL_OBJ, off, size, addr, tx);
1251                                 zvol_log_write(zv, tx, off, size, sync);
1252                                 dmu_tx_commit(tx);
1253                         }
1254                 }
1255                 if (error) {
1256                         /* convert checksum errors into IO errors */
1257                         if (error == ECKSUM)
1258                                 error = EIO;
1259                         break;
1260                 }
1261                 off += size;
1262                 addr += size;
1263                 resid -= size;
1264         }
1265         zfs_range_unlock(rl);
1266
1267         bp->bio_completed = bp->bio_length - resid;
1268         if (bp->bio_completed < bp->bio_length)
1269                 bp->bio_error = (off > volsize ? EINVAL : error);
1270
1271         if (sync)
1272                 zil_commit(zv->zv_zilog, ZVOL_OBJ);
1273         g_io_deliver(bp, 0);
1274
1275         return (0);
1276 }
1277
1278 #ifdef sun
1279 /*
1280  * Set the buffer count to the zvol maximum transfer.
1281  * Using our own routine instead of the default minphys()
1282  * means that for larger writes we write bigger buffers on X86
1283  * (128K instead of 56K) and flush the disk write cache less often
1284  * (every zvol_maxphys - currently 1MB) instead of minphys (currently
1285  * 56K on X86 and 128K on sparc).
1286  */
1287 void
1288 zvol_minphys(struct buf *bp)
1289 {
1290         if (bp->b_bcount > zvol_maxphys)
1291                 bp->b_bcount = zvol_maxphys;
1292 }
1293
1294 int
1295 zvol_dump(dev_t dev, caddr_t addr, daddr_t blkno, int nblocks)
1296 {
1297         minor_t minor = getminor(dev);
1298         zvol_state_t *zv;
1299         int error = 0;
1300         uint64_t size;
1301         uint64_t boff;
1302         uint64_t resid;
1303
1304         zv = zfsdev_get_soft_state(minor, ZSST_ZVOL);
1305         if (zv == NULL)
1306                 return (ENXIO);
1307
1308         boff = ldbtob(blkno);
1309         resid = ldbtob(nblocks);
1310
1311         VERIFY3U(boff + resid, <=, zv->zv_volsize);
1312
1313         while (resid) {
1314                 size = MIN(resid, P2END(boff, zv->zv_volblocksize) - boff);
1315                 error = zvol_dumpio(zv, addr, boff, size, B_FALSE, B_TRUE);
1316                 if (error)
1317                         break;
1318                 boff += size;
1319                 addr += size;
1320                 resid -= size;
1321         }
1322
1323         return (error);
1324 }
1325
1326 /*ARGSUSED*/
1327 int
1328 zvol_read(dev_t dev, uio_t *uio, cred_t *cr)
1329 {
1330         minor_t minor = getminor(dev);
1331         zvol_state_t *zv;
1332         uint64_t volsize;
1333         rl_t *rl;
1334         int error = 0;
1335
1336         zv = zfsdev_get_soft_state(minor, ZSST_ZVOL);
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_READ,
1347                     zvol_minphys, uio);
1348                 return (error);
1349         }
1350
1351         rl = zfs_range_lock(&zv->zv_znode, uio->uio_loffset, uio->uio_resid,
1352             RL_READER);
1353         while (uio->uio_resid > 0 && uio->uio_loffset < volsize) {
1354                 uint64_t bytes = MIN(uio->uio_resid, DMU_MAX_ACCESS >> 1);
1355
1356                 /* don't read past the end */
1357                 if (bytes > volsize - uio->uio_loffset)
1358                         bytes = volsize - uio->uio_loffset;
1359
1360                 error =  dmu_read_uio(zv->zv_objset, ZVOL_OBJ, uio, bytes);
1361                 if (error) {
1362                         /* convert checksum errors into IO errors */
1363                         if (error == ECKSUM)
1364                                 error = EIO;
1365                         break;
1366                 }
1367         }
1368         zfs_range_unlock(rl);
1369         return (error);
1370 }
1371
1372 /*ARGSUSED*/
1373 int
1374 zvol_write(dev_t dev, uio_t *uio, cred_t *cr)
1375 {
1376         minor_t minor = getminor(dev);
1377         zvol_state_t *zv;
1378         uint64_t volsize;
1379         rl_t *rl;
1380         int error = 0;
1381         boolean_t sync;
1382
1383         zv = zfsdev_get_soft_state(minor, ZSST_ZVOL);
1384         if (zv == NULL)
1385                 return (ENXIO);
1386
1387         volsize = zv->zv_volsize;
1388         if (uio->uio_resid > 0 &&
1389             (uio->uio_loffset < 0 || uio->uio_loffset >= volsize))
1390                 return (EIO);
1391
1392         if (zv->zv_flags & ZVOL_DUMPIFIED) {
1393                 error = physio(zvol_strategy, NULL, dev, B_WRITE,
1394                     zvol_minphys, uio);
1395                 return (error);
1396         }
1397
1398         sync = !(zv->zv_flags & ZVOL_WCE) ||
1399             (zv->zv_objset->os_sync == ZFS_SYNC_ALWAYS);
1400
1401         rl = zfs_range_lock(&zv->zv_znode, uio->uio_loffset, uio->uio_resid,
1402             RL_WRITER);
1403         while (uio->uio_resid > 0 && uio->uio_loffset < volsize) {
1404                 uint64_t bytes = MIN(uio->uio_resid, DMU_MAX_ACCESS >> 1);
1405                 uint64_t off = uio->uio_loffset;
1406                 dmu_tx_t *tx = dmu_tx_create(zv->zv_objset);
1407
1408                 if (bytes > volsize - off)      /* don't write past the end */
1409                         bytes = volsize - off;
1410
1411                 dmu_tx_hold_write(tx, ZVOL_OBJ, off, bytes);
1412                 error = dmu_tx_assign(tx, TXG_WAIT);
1413                 if (error) {
1414                         dmu_tx_abort(tx);
1415                         break;
1416                 }
1417                 error = dmu_write_uio_dbuf(zv->zv_dbuf, uio, bytes, tx);
1418                 if (error == 0)
1419                         zvol_log_write(zv, tx, off, bytes, sync);
1420                 dmu_tx_commit(tx);
1421
1422                 if (error)
1423                         break;
1424         }
1425         zfs_range_unlock(rl);
1426         if (sync)
1427                 zil_commit(zv->zv_zilog, ZVOL_OBJ);
1428         return (error);
1429 }
1430
1431 int
1432 zvol_getefi(void *arg, int flag, uint64_t vs, uint8_t bs)
1433 {
1434         struct uuid uuid = EFI_RESERVED;
1435         efi_gpe_t gpe = { 0 };
1436         uint32_t crc;
1437         dk_efi_t efi;
1438         int length;
1439         char *ptr;
1440
1441         if (ddi_copyin(arg, &efi, sizeof (dk_efi_t), flag))
1442                 return (EFAULT);
1443         ptr = (char *)(uintptr_t)efi.dki_data_64;
1444         length = efi.dki_length;
1445         /*
1446          * Some clients may attempt to request a PMBR for the
1447          * zvol.  Currently this interface will return EINVAL to
1448          * such requests.  These requests could be supported by
1449          * adding a check for lba == 0 and consing up an appropriate
1450          * PMBR.
1451          */
1452         if (efi.dki_lba < 1 || efi.dki_lba > 2 || length <= 0)
1453                 return (EINVAL);
1454
1455         gpe.efi_gpe_StartingLBA = LE_64(34ULL);
1456         gpe.efi_gpe_EndingLBA = LE_64((vs >> bs) - 1);
1457         UUID_LE_CONVERT(gpe.efi_gpe_PartitionTypeGUID, uuid);
1458
1459         if (efi.dki_lba == 1) {
1460                 efi_gpt_t gpt = { 0 };
1461
1462                 gpt.efi_gpt_Signature = LE_64(EFI_SIGNATURE);
1463                 gpt.efi_gpt_Revision = LE_32(EFI_VERSION_CURRENT);
1464                 gpt.efi_gpt_HeaderSize = LE_32(sizeof (gpt));
1465                 gpt.efi_gpt_MyLBA = LE_64(1ULL);
1466                 gpt.efi_gpt_FirstUsableLBA = LE_64(34ULL);
1467                 gpt.efi_gpt_LastUsableLBA = LE_64((vs >> bs) - 1);
1468                 gpt.efi_gpt_PartitionEntryLBA = LE_64(2ULL);
1469                 gpt.efi_gpt_NumberOfPartitionEntries = LE_32(1);
1470                 gpt.efi_gpt_SizeOfPartitionEntry =
1471                     LE_32(sizeof (efi_gpe_t));
1472                 CRC32(crc, &gpe, sizeof (gpe), -1U, crc32_table);
1473                 gpt.efi_gpt_PartitionEntryArrayCRC32 = LE_32(~crc);
1474                 CRC32(crc, &gpt, sizeof (gpt), -1U, crc32_table);
1475                 gpt.efi_gpt_HeaderCRC32 = LE_32(~crc);
1476                 if (ddi_copyout(&gpt, ptr, MIN(sizeof (gpt), length),
1477                     flag))
1478                         return (EFAULT);
1479                 ptr += sizeof (gpt);
1480                 length -= sizeof (gpt);
1481         }
1482         if (length > 0 && ddi_copyout(&gpe, ptr, MIN(sizeof (gpe),
1483             length), flag))
1484                 return (EFAULT);
1485         return (0);
1486 }
1487
1488 /*
1489  * BEGIN entry points to allow external callers access to the volume.
1490  */
1491 /*
1492  * Return the volume parameters needed for access from an external caller.
1493  * These values are invariant as long as the volume is held open.
1494  */
1495 int
1496 zvol_get_volume_params(minor_t minor, uint64_t *blksize,
1497     uint64_t *max_xfer_len, void **minor_hdl, void **objset_hdl, void **zil_hdl,
1498     void **rl_hdl, void **bonus_hdl)
1499 {
1500         zvol_state_t *zv;
1501
1502         zv = zfsdev_get_soft_state(minor, ZSST_ZVOL);
1503         if (zv == NULL)
1504                 return (ENXIO);
1505         if (zv->zv_flags & ZVOL_DUMPIFIED)
1506                 return (ENXIO);
1507
1508         ASSERT(blksize && max_xfer_len && minor_hdl &&
1509             objset_hdl && zil_hdl && rl_hdl && bonus_hdl);
1510
1511         *blksize = zv->zv_volblocksize;
1512         *max_xfer_len = (uint64_t)zvol_maxphys;
1513         *minor_hdl = zv;
1514         *objset_hdl = zv->zv_objset;
1515         *zil_hdl = zv->zv_zilog;
1516         *rl_hdl = &zv->zv_znode;
1517         *bonus_hdl = zv->zv_dbuf;
1518         return (0);
1519 }
1520
1521 /*
1522  * Return the current volume size to an external caller.
1523  * The size can change while the volume is open.
1524  */
1525 uint64_t
1526 zvol_get_volume_size(void *minor_hdl)
1527 {
1528         zvol_state_t *zv = minor_hdl;
1529
1530         return (zv->zv_volsize);
1531 }
1532
1533 /*
1534  * Return the current WCE setting to an external caller.
1535  * The WCE setting can change while the volume is open.
1536  */
1537 int
1538 zvol_get_volume_wce(void *minor_hdl)
1539 {
1540         zvol_state_t *zv = minor_hdl;
1541
1542         return ((zv->zv_flags & ZVOL_WCE) ? 1 : 0);
1543 }
1544
1545 /*
1546  * Entry point for external callers to zvol_log_write
1547  */
1548 void
1549 zvol_log_write_minor(void *minor_hdl, dmu_tx_t *tx, offset_t off, ssize_t resid,
1550     boolean_t sync)
1551 {
1552         zvol_state_t *zv = minor_hdl;
1553
1554         zvol_log_write(zv, tx, off, resid, sync);
1555 }
1556 /*
1557  * END entry points to allow external callers access to the volume.
1558  */
1559
1560 /*
1561  * Dirtbag ioctls to support mkfs(1M) for UFS filesystems.  See dkio(7I).
1562  */
1563 /*ARGSUSED*/
1564 int
1565 zvol_ioctl(dev_t dev, int cmd, intptr_t arg, int flag, cred_t *cr, int *rvalp)
1566 {
1567         zvol_state_t *zv;
1568         struct dk_cinfo dki;
1569         struct dk_minfo dkm;
1570         struct dk_callback *dkc;
1571         int error = 0;
1572         rl_t *rl;
1573
1574         mutex_enter(&spa_namespace_lock);
1575
1576         zv = zfsdev_get_soft_state(getminor(dev), ZSST_ZVOL);
1577
1578         if (zv == NULL) {
1579                 mutex_exit(&spa_namespace_lock);
1580                 return (ENXIO);
1581         }
1582         ASSERT(zv->zv_total_opens > 0);
1583
1584         switch (cmd) {
1585
1586         case DKIOCINFO:
1587                 bzero(&dki, sizeof (dki));
1588                 (void) strcpy(dki.dki_cname, "zvol");
1589                 (void) strcpy(dki.dki_dname, "zvol");
1590                 dki.dki_ctype = DKC_UNKNOWN;
1591                 dki.dki_unit = getminor(dev);
1592                 dki.dki_maxtransfer = 1 << (SPA_MAXBLOCKSHIFT - zv->zv_min_bs);
1593                 mutex_exit(&spa_namespace_lock);
1594                 if (ddi_copyout(&dki, (void *)arg, sizeof (dki), flag))
1595                         error = EFAULT;
1596                 return (error);
1597
1598         case DKIOCGMEDIAINFO:
1599                 bzero(&dkm, sizeof (dkm));
1600                 dkm.dki_lbsize = 1U << zv->zv_min_bs;
1601                 dkm.dki_capacity = zv->zv_volsize >> zv->zv_min_bs;
1602                 dkm.dki_media_type = DK_UNKNOWN;
1603                 mutex_exit(&spa_namespace_lock);
1604                 if (ddi_copyout(&dkm, (void *)arg, sizeof (dkm), flag))
1605                         error = EFAULT;
1606                 return (error);
1607
1608         case DKIOCGETEFI:
1609                 {
1610                         uint64_t vs = zv->zv_volsize;
1611                         uint8_t bs = zv->zv_min_bs;
1612
1613                         mutex_exit(&spa_namespace_lock);
1614                         error = zvol_getefi((void *)arg, flag, vs, bs);
1615                         return (error);
1616                 }
1617
1618         case DKIOCFLUSHWRITECACHE:
1619                 dkc = (struct dk_callback *)arg;
1620                 mutex_exit(&spa_namespace_lock);
1621                 zil_commit(zv->zv_zilog, ZVOL_OBJ);
1622                 if ((flag & FKIOCTL) && dkc != NULL && dkc->dkc_callback) {
1623                         (*dkc->dkc_callback)(dkc->dkc_cookie, error);
1624                         error = 0;
1625                 }
1626                 return (error);
1627
1628         case DKIOCGETWCE:
1629                 {
1630                         int wce = (zv->zv_flags & ZVOL_WCE) ? 1 : 0;
1631                         if (ddi_copyout(&wce, (void *)arg, sizeof (int),
1632                             flag))
1633                                 error = EFAULT;
1634                         break;
1635                 }
1636         case DKIOCSETWCE:
1637                 {
1638                         int wce;
1639                         if (ddi_copyin((void *)arg, &wce, sizeof (int),
1640                             flag)) {
1641                                 error = EFAULT;
1642                                 break;
1643                         }
1644                         if (wce) {
1645                                 zv->zv_flags |= ZVOL_WCE;
1646                                 mutex_exit(&spa_namespace_lock);
1647                         } else {
1648                                 zv->zv_flags &= ~ZVOL_WCE;
1649                                 mutex_exit(&spa_namespace_lock);
1650                                 zil_commit(zv->zv_zilog, ZVOL_OBJ);
1651                         }
1652                         return (0);
1653                 }
1654
1655         case DKIOCGGEOM:
1656         case DKIOCGVTOC:
1657                 /*
1658                  * commands using these (like prtvtoc) expect ENOTSUP
1659                  * since we're emulating an EFI label
1660                  */
1661                 error = ENOTSUP;
1662                 break;
1663
1664         case DKIOCDUMPINIT:
1665                 rl = zfs_range_lock(&zv->zv_znode, 0, zv->zv_volsize,
1666                     RL_WRITER);
1667                 error = zvol_dumpify(zv);
1668                 zfs_range_unlock(rl);
1669                 break;
1670
1671         case DKIOCDUMPFINI:
1672                 if (!(zv->zv_flags & ZVOL_DUMPIFIED))
1673                         break;
1674                 rl = zfs_range_lock(&zv->zv_znode, 0, zv->zv_volsize,
1675                     RL_WRITER);
1676                 error = zvol_dump_fini(zv);
1677                 zfs_range_unlock(rl);
1678                 break;
1679
1680         default:
1681                 error = ENOTTY;
1682                 break;
1683
1684         }
1685         mutex_exit(&spa_namespace_lock);
1686         return (error);
1687 }
1688 #endif  /* sun */
1689
1690 int
1691 zvol_busy(void)
1692 {
1693         return (zvol_minors != 0);
1694 }
1695
1696 void
1697 zvol_init(void)
1698 {
1699         VERIFY(ddi_soft_state_init(&zfsdev_state, sizeof (zfs_soft_state_t),
1700             1) == 0);
1701         ZFS_LOG(1, "ZVOL Initialized.");
1702 }
1703
1704 void
1705 zvol_fini(void)
1706 {
1707         ddi_soft_state_fini(&zfsdev_state);
1708         ZFS_LOG(1, "ZVOL Deinitialized.");
1709 }
1710
1711 #ifdef sun
1712 static int
1713 zvol_dump_init(zvol_state_t *zv, boolean_t resize)
1714 {
1715         dmu_tx_t *tx;
1716         int error = 0;
1717         objset_t *os = zv->zv_objset;
1718         nvlist_t *nv = NULL;
1719         uint64_t version = spa_version(dmu_objset_spa(zv->zv_objset));
1720
1721         ASSERT(MUTEX_HELD(&spa_namespace_lock));
1722         error = dmu_free_long_range(zv->zv_objset, ZVOL_OBJ, 0,
1723             DMU_OBJECT_END);
1724         /* wait for dmu_free_long_range to actually free the blocks */
1725         txg_wait_synced(dmu_objset_pool(zv->zv_objset), 0);
1726
1727         tx = dmu_tx_create(os);
1728         dmu_tx_hold_zap(tx, ZVOL_ZAP_OBJ, TRUE, NULL);
1729         dmu_tx_hold_bonus(tx, ZVOL_OBJ);
1730         error = dmu_tx_assign(tx, TXG_WAIT);
1731         if (error) {
1732                 dmu_tx_abort(tx);
1733                 return (error);
1734         }
1735
1736         /*
1737          * If we are resizing the dump device then we only need to
1738          * update the refreservation to match the newly updated
1739          * zvolsize. Otherwise, we save off the original state of the
1740          * zvol so that we can restore them if the zvol is ever undumpified.
1741          */
1742         if (resize) {
1743                 error = zap_update(os, ZVOL_ZAP_OBJ,
1744                     zfs_prop_to_name(ZFS_PROP_REFRESERVATION), 8, 1,
1745                     &zv->zv_volsize, tx);
1746         } else {
1747                 uint64_t checksum, compress, refresrv, vbs, dedup;
1748
1749                 error = dsl_prop_get_integer(zv->zv_name,
1750                     zfs_prop_to_name(ZFS_PROP_COMPRESSION), &compress, NULL);
1751                 error = error ? error : dsl_prop_get_integer(zv->zv_name,
1752                     zfs_prop_to_name(ZFS_PROP_CHECKSUM), &checksum, NULL);
1753                 error = error ? error : dsl_prop_get_integer(zv->zv_name,
1754                     zfs_prop_to_name(ZFS_PROP_REFRESERVATION), &refresrv, NULL);
1755                 error = error ? error : dsl_prop_get_integer(zv->zv_name,
1756                     zfs_prop_to_name(ZFS_PROP_VOLBLOCKSIZE), &vbs, NULL);
1757                 if (version >= SPA_VERSION_DEDUP) {
1758                         error = error ? error :
1759                             dsl_prop_get_integer(zv->zv_name,
1760                             zfs_prop_to_name(ZFS_PROP_DEDUP), &dedup, NULL);
1761                 }
1762
1763                 error = error ? error : zap_update(os, ZVOL_ZAP_OBJ,
1764                     zfs_prop_to_name(ZFS_PROP_COMPRESSION), 8, 1,
1765                     &compress, tx);
1766                 error = error ? error : zap_update(os, ZVOL_ZAP_OBJ,
1767                     zfs_prop_to_name(ZFS_PROP_CHECKSUM), 8, 1, &checksum, tx);
1768                 error = error ? error : zap_update(os, ZVOL_ZAP_OBJ,
1769                     zfs_prop_to_name(ZFS_PROP_REFRESERVATION), 8, 1,
1770                     &refresrv, tx);
1771                 error = error ? error : zap_update(os, ZVOL_ZAP_OBJ,
1772                     zfs_prop_to_name(ZFS_PROP_VOLBLOCKSIZE), 8, 1,
1773                     &vbs, tx);
1774                 error = error ? error : dmu_object_set_blocksize(
1775                     os, ZVOL_OBJ, SPA_MAXBLOCKSIZE, 0, tx);
1776                 if (version >= SPA_VERSION_DEDUP) {
1777                         error = error ? error : zap_update(os, ZVOL_ZAP_OBJ,
1778                             zfs_prop_to_name(ZFS_PROP_DEDUP), 8, 1,
1779                             &dedup, tx);
1780                 }
1781                 if (error == 0)
1782                         zv->zv_volblocksize = SPA_MAXBLOCKSIZE;
1783         }
1784         dmu_tx_commit(tx);
1785
1786         /*
1787          * We only need update the zvol's property if we are initializing
1788          * the dump area for the first time.
1789          */
1790         if (!resize) {
1791                 VERIFY(nvlist_alloc(&nv, NV_UNIQUE_NAME, KM_SLEEP) == 0);
1792                 VERIFY(nvlist_add_uint64(nv,
1793                     zfs_prop_to_name(ZFS_PROP_REFRESERVATION), 0) == 0);
1794                 VERIFY(nvlist_add_uint64(nv,
1795                     zfs_prop_to_name(ZFS_PROP_COMPRESSION),
1796                     ZIO_COMPRESS_OFF) == 0);
1797                 VERIFY(nvlist_add_uint64(nv,
1798                     zfs_prop_to_name(ZFS_PROP_CHECKSUM),
1799                     ZIO_CHECKSUM_OFF) == 0);
1800                 if (version >= SPA_VERSION_DEDUP) {
1801                         VERIFY(nvlist_add_uint64(nv,
1802                             zfs_prop_to_name(ZFS_PROP_DEDUP),
1803                             ZIO_CHECKSUM_OFF) == 0);
1804                 }
1805
1806                 error = zfs_set_prop_nvlist(zv->zv_name, ZPROP_SRC_LOCAL,
1807                     nv, NULL);
1808                 nvlist_free(nv);
1809
1810                 if (error)
1811                         return (error);
1812         }
1813
1814         /* Allocate the space for the dump */
1815         error = zvol_prealloc(zv);
1816         return (error);
1817 }
1818
1819 static int
1820 zvol_dumpify(zvol_state_t *zv)
1821 {
1822         int error = 0;
1823         uint64_t dumpsize = 0;
1824         dmu_tx_t *tx;
1825         objset_t *os = zv->zv_objset;
1826
1827         if (zv->zv_flags & ZVOL_RDONLY)
1828                 return (EROFS);
1829
1830         if (zap_lookup(zv->zv_objset, ZVOL_ZAP_OBJ, ZVOL_DUMPSIZE,
1831             8, 1, &dumpsize) != 0 || dumpsize != zv->zv_volsize) {
1832                 boolean_t resize = (dumpsize > 0) ? B_TRUE : B_FALSE;
1833
1834                 if ((error = zvol_dump_init(zv, resize)) != 0) {
1835                         (void) zvol_dump_fini(zv);
1836                         return (error);
1837                 }
1838         }
1839
1840         /*
1841          * Build up our lba mapping.
1842          */
1843         error = zvol_get_lbas(zv);
1844         if (error) {
1845                 (void) zvol_dump_fini(zv);
1846                 return (error);
1847         }
1848
1849         tx = dmu_tx_create(os);
1850         dmu_tx_hold_zap(tx, ZVOL_ZAP_OBJ, TRUE, NULL);
1851         error = dmu_tx_assign(tx, TXG_WAIT);
1852         if (error) {
1853                 dmu_tx_abort(tx);
1854                 (void) zvol_dump_fini(zv);
1855                 return (error);
1856         }
1857
1858         zv->zv_flags |= ZVOL_DUMPIFIED;
1859         error = zap_update(os, ZVOL_ZAP_OBJ, ZVOL_DUMPSIZE, 8, 1,
1860             &zv->zv_volsize, tx);
1861         dmu_tx_commit(tx);
1862
1863         if (error) {
1864                 (void) zvol_dump_fini(zv);
1865                 return (error);
1866         }
1867
1868         txg_wait_synced(dmu_objset_pool(os), 0);
1869         return (0);
1870 }
1871
1872 static int
1873 zvol_dump_fini(zvol_state_t *zv)
1874 {
1875         dmu_tx_t *tx;
1876         objset_t *os = zv->zv_objset;
1877         nvlist_t *nv;
1878         int error = 0;
1879         uint64_t checksum, compress, refresrv, vbs, dedup;
1880         uint64_t version = spa_version(dmu_objset_spa(zv->zv_objset));
1881
1882         /*
1883          * Attempt to restore the zvol back to its pre-dumpified state.
1884          * This is a best-effort attempt as it's possible that not all
1885          * of these properties were initialized during the dumpify process
1886          * (i.e. error during zvol_dump_init).
1887          */
1888
1889         tx = dmu_tx_create(os);
1890         dmu_tx_hold_zap(tx, ZVOL_ZAP_OBJ, TRUE, NULL);
1891         error = dmu_tx_assign(tx, TXG_WAIT);
1892         if (error) {
1893                 dmu_tx_abort(tx);
1894                 return (error);
1895         }
1896         (void) zap_remove(os, ZVOL_ZAP_OBJ, ZVOL_DUMPSIZE, tx);
1897         dmu_tx_commit(tx);
1898
1899         (void) zap_lookup(zv->zv_objset, ZVOL_ZAP_OBJ,
1900             zfs_prop_to_name(ZFS_PROP_CHECKSUM), 8, 1, &checksum);
1901         (void) zap_lookup(zv->zv_objset, ZVOL_ZAP_OBJ,
1902             zfs_prop_to_name(ZFS_PROP_COMPRESSION), 8, 1, &compress);
1903         (void) zap_lookup(zv->zv_objset, ZVOL_ZAP_OBJ,
1904             zfs_prop_to_name(ZFS_PROP_REFRESERVATION), 8, 1, &refresrv);
1905         (void) zap_lookup(zv->zv_objset, ZVOL_ZAP_OBJ,
1906             zfs_prop_to_name(ZFS_PROP_VOLBLOCKSIZE), 8, 1, &vbs);
1907
1908         VERIFY(nvlist_alloc(&nv, NV_UNIQUE_NAME, KM_SLEEP) == 0);
1909         (void) nvlist_add_uint64(nv,
1910             zfs_prop_to_name(ZFS_PROP_CHECKSUM), checksum);
1911         (void) nvlist_add_uint64(nv,
1912             zfs_prop_to_name(ZFS_PROP_COMPRESSION), compress);
1913         (void) nvlist_add_uint64(nv,
1914             zfs_prop_to_name(ZFS_PROP_REFRESERVATION), refresrv);
1915         if (version >= SPA_VERSION_DEDUP &&
1916             zap_lookup(zv->zv_objset, ZVOL_ZAP_OBJ,
1917             zfs_prop_to_name(ZFS_PROP_DEDUP), 8, 1, &dedup) == 0) {
1918                 (void) nvlist_add_uint64(nv,
1919                     zfs_prop_to_name(ZFS_PROP_DEDUP), dedup);
1920         }
1921         (void) zfs_set_prop_nvlist(zv->zv_name, ZPROP_SRC_LOCAL,
1922             nv, NULL);
1923         nvlist_free(nv);
1924
1925         zvol_free_extents(zv);
1926         zv->zv_flags &= ~ZVOL_DUMPIFIED;
1927         (void) dmu_free_long_range(os, ZVOL_OBJ, 0, DMU_OBJECT_END);
1928         /* wait for dmu_free_long_range to actually free the blocks */
1929         txg_wait_synced(dmu_objset_pool(zv->zv_objset), 0);
1930         tx = dmu_tx_create(os);
1931         dmu_tx_hold_bonus(tx, ZVOL_OBJ);
1932         error = dmu_tx_assign(tx, TXG_WAIT);
1933         if (error) {
1934                 dmu_tx_abort(tx);
1935                 return (error);
1936         }
1937         if (dmu_object_set_blocksize(os, ZVOL_OBJ, vbs, 0, tx) == 0)
1938                 zv->zv_volblocksize = vbs;
1939         dmu_tx_commit(tx);
1940
1941         return (0);
1942 }
1943 #endif  /* sun */
1944
1945 static zvol_state_t *
1946 zvol_geom_create(const char *name)
1947 {
1948         struct g_provider *pp;
1949         struct g_geom *gp;
1950         zvol_state_t *zv;
1951
1952         gp = g_new_geomf(&zfs_zvol_class, "zfs::zvol::%s", name);
1953         gp->start = zvol_geom_start;
1954         gp->access = zvol_geom_access;
1955         pp = g_new_providerf(gp, "%s/%s", ZVOL_DRIVER, name);
1956         pp->sectorsize = DEV_BSIZE;
1957
1958         zv = kmem_zalloc(sizeof(*zv), KM_SLEEP);
1959         zv->zv_provider = pp;
1960         zv->zv_state = 0;
1961         bioq_init(&zv->zv_queue);
1962         mtx_init(&zv->zv_queue_mtx, "zvol", NULL, MTX_DEF);
1963
1964         pp->private = zv;
1965
1966         return (zv);
1967 }
1968
1969 static void
1970 zvol_geom_run(zvol_state_t *zv)
1971 {
1972         struct g_provider *pp;
1973
1974         pp = zv->zv_provider;
1975         g_error_provider(pp, 0);
1976
1977         kproc_kthread_add(zvol_geom_worker, zv, &zfsproc, NULL, 0, 0,
1978             "zfskern", "zvol %s", pp->name + sizeof(ZVOL_DRIVER));
1979 }
1980
1981 static void
1982 zvol_geom_destroy(zvol_state_t *zv)
1983 {
1984         struct g_provider *pp;
1985
1986         g_topology_assert();
1987
1988         mtx_lock(&zv->zv_queue_mtx);
1989         zv->zv_state = 1;
1990         wakeup_one(&zv->zv_queue);
1991         while (zv->zv_state != 2)
1992                 msleep(&zv->zv_state, &zv->zv_queue_mtx, 0, "zvol:w", 0);
1993         mtx_destroy(&zv->zv_queue_mtx);
1994
1995         pp = zv->zv_provider;
1996         zv->zv_provider = NULL;
1997         pp->private = NULL;
1998         g_wither_geom(pp->geom, ENXIO);
1999
2000         kmem_free(zv, sizeof(*zv));
2001 }
2002
2003 static int
2004 zvol_geom_access(struct g_provider *pp, int acr, int acw, int ace)
2005 {
2006         int count, error, flags;
2007
2008         g_topology_assert();
2009
2010         /*
2011          * To make it easier we expect either open or close, but not both
2012          * at the same time.
2013          */
2014         KASSERT((acr >= 0 && acw >= 0 && ace >= 0) ||
2015             (acr <= 0 && acw <= 0 && ace <= 0),
2016             ("Unsupported access request to %s (acr=%d, acw=%d, ace=%d).",
2017             pp->name, acr, acw, ace));
2018
2019         if (pp->private == NULL) {
2020                 if (acr <= 0 && acw <= 0 && ace <= 0)
2021                         return (0);
2022                 return (pp->error);
2023         }
2024
2025         /*
2026          * We don't pass FEXCL flag to zvol_open()/zvol_close() if ace != 0,
2027          * because GEOM already handles that and handles it a bit differently.
2028          * GEOM allows for multiple read/exclusive consumers and ZFS allows
2029          * only one exclusive consumer, no matter if it is reader or writer.
2030          * I like better the way GEOM works so I'll leave it for GEOM to
2031          * decide what to do.
2032          */
2033
2034         count = acr + acw + ace;
2035         if (count == 0)
2036                 return (0);
2037
2038         flags = 0;
2039         if (acr != 0 || ace != 0)
2040                 flags |= FREAD;
2041         if (acw != 0)
2042                 flags |= FWRITE;
2043
2044         g_topology_unlock();
2045         if (count > 0)
2046                 error = zvol_open(pp, flags, count);
2047         else
2048                 error = zvol_close(pp, flags, -count);
2049         g_topology_lock();
2050         return (error);
2051 }
2052
2053 static void
2054 zvol_geom_start(struct bio *bp)
2055 {
2056         zvol_state_t *zv;
2057         boolean_t first;
2058
2059         switch (bp->bio_cmd) {
2060         case BIO_READ:
2061         case BIO_WRITE:
2062         case BIO_FLUSH:
2063                 zv = bp->bio_to->private;
2064                 ASSERT(zv != NULL);
2065                 mtx_lock(&zv->zv_queue_mtx);
2066                 first = (bioq_first(&zv->zv_queue) == NULL);
2067                 bioq_insert_tail(&zv->zv_queue, bp);
2068                 mtx_unlock(&zv->zv_queue_mtx);
2069                 if (first)
2070                         wakeup_one(&zv->zv_queue);
2071                 break;
2072         case BIO_GETATTR:
2073         case BIO_DELETE:
2074         default:
2075                 g_io_deliver(bp, EOPNOTSUPP);
2076                 break;
2077         }
2078 }
2079
2080 static void
2081 zvol_geom_worker(void *arg)
2082 {
2083         zvol_state_t *zv;
2084         struct bio *bp;
2085
2086         thread_lock(curthread);
2087         sched_prio(curthread, PRIBIO);
2088         thread_unlock(curthread);
2089
2090         zv = arg;
2091         for (;;) {
2092                 mtx_lock(&zv->zv_queue_mtx);
2093                 bp = bioq_takefirst(&zv->zv_queue);
2094                 if (bp == NULL) {
2095                         if (zv->zv_state == 1) {
2096                                 zv->zv_state = 2;
2097                                 wakeup(&zv->zv_state);
2098                                 mtx_unlock(&zv->zv_queue_mtx);
2099                                 kthread_exit();
2100                         }
2101                         msleep(&zv->zv_queue, &zv->zv_queue_mtx, PRIBIO | PDROP,
2102                             "zvol:io", 0);
2103                         continue;
2104                 }
2105                 mtx_unlock(&zv->zv_queue_mtx);
2106                 switch (bp->bio_cmd) {
2107                 case BIO_FLUSH:
2108                         zil_commit(zv->zv_zilog, ZVOL_OBJ);
2109                         g_io_deliver(bp, 0);
2110                         break;
2111                 case BIO_READ:
2112                 case BIO_WRITE:
2113                         zvol_strategy(bp);
2114                         break;
2115                 }
2116         }
2117 }
2118
2119 extern boolean_t dataset_name_hidden(const char *name);
2120
2121 static int
2122 zvol_create_snapshots(objset_t *os, const char *name)
2123 {
2124         uint64_t cookie, obj;
2125         char *sname;
2126         int error, len;
2127
2128         cookie = obj = 0;
2129         sname = kmem_alloc(MAXPATHLEN, KM_SLEEP);
2130
2131         (void) dmu_objset_find(name, dmu_objset_prefetch, NULL,
2132             DS_FIND_SNAPSHOTS);
2133
2134         for (;;) {
2135                 len = snprintf(sname, MAXPATHLEN, "%s@", name);
2136                 if (len >= MAXPATHLEN) {
2137                         dmu_objset_rele(os, FTAG);
2138                         error = ENAMETOOLONG;
2139                         break;
2140                 }
2141
2142                 error = dmu_snapshot_list_next(os, MAXPATHLEN - len,
2143                     sname + len, &obj, &cookie, NULL);
2144                 if (error != 0) {
2145                         if (error == ENOENT)
2146                                 error = 0;
2147                         break;
2148                 }
2149
2150                 if ((error = zvol_create_minor(sname)) != 0) {
2151                         printf("ZFS WARNING: Unable to create ZVOL %s (error=%d).\n",
2152                             sname, error);
2153                         break;
2154                 }
2155         }
2156
2157         kmem_free(sname, MAXPATHLEN);
2158         return (error);
2159 }
2160
2161 int
2162 zvol_create_minors(const char *name)
2163 {
2164         uint64_t cookie;
2165         objset_t *os;
2166         char *osname, *p;
2167         int error, len;
2168
2169         if (dataset_name_hidden(name))
2170                 return (0);
2171
2172         if ((error = dmu_objset_hold(name, FTAG, &os)) != 0) {
2173                 printf("ZFS WARNING: Unable to put hold on %s (error=%d).\n",
2174                     name, error);
2175                 return (error);
2176         }
2177         if (dmu_objset_type(os) == DMU_OST_ZVOL) {
2178                 if ((error = zvol_create_minor(name)) == 0)
2179                         error = zvol_create_snapshots(os, name);
2180                 else {
2181                         printf("ZFS WARNING: Unable to create ZVOL %s (error=%d).\n",
2182                             name, error);
2183                 }
2184                 dmu_objset_rele(os, FTAG);
2185                 return (error);
2186         }
2187         if (dmu_objset_type(os) != DMU_OST_ZFS) {
2188                 dmu_objset_rele(os, FTAG);
2189                 return (0);
2190         }
2191
2192         osname = kmem_alloc(MAXPATHLEN, KM_SLEEP);
2193         if (snprintf(osname, MAXPATHLEN, "%s/", name) >= MAXPATHLEN) {
2194                 dmu_objset_rele(os, FTAG);
2195                 kmem_free(osname, MAXPATHLEN);
2196                 return (ENOENT);
2197         }
2198         p = osname + strlen(osname);
2199         len = MAXPATHLEN - (p - osname);
2200
2201         /* Prefetch the datasets. */
2202         cookie = 0;
2203         while (dmu_dir_list_next(os, len, p, NULL, &cookie) == 0) {
2204                 if (!dataset_name_hidden(osname))
2205                         (void) dmu_objset_prefetch(osname, NULL);
2206         }
2207
2208         cookie = 0;
2209         while (dmu_dir_list_next(os, MAXPATHLEN - (p - osname), p, NULL,
2210             &cookie) == 0) {
2211                 dmu_objset_rele(os, FTAG);
2212                 (void)zvol_create_minors(osname);
2213                 if ((error = dmu_objset_hold(name, FTAG, &os)) != 0) {
2214                         printf("ZFS WARNING: Unable to put hold on %s (error=%d).\n",
2215                             name, error);
2216                         return (error);
2217                 }
2218         }
2219
2220         dmu_objset_rele(os, FTAG);
2221         kmem_free(osname, MAXPATHLEN);
2222         return (0);
2223 }
2224
2225 static void
2226 zvol_rename_minor(struct g_geom *gp, const char *newname)
2227 {
2228         struct g_provider *pp;
2229         zvol_state_t *zv;
2230
2231         ASSERT(MUTEX_HELD(&spa_namespace_lock));
2232         g_topology_assert();
2233
2234         pp = LIST_FIRST(&gp->provider);
2235         ASSERT(pp != NULL);
2236         zv = pp->private;
2237         ASSERT(zv != NULL);
2238
2239         zv->zv_provider = NULL;
2240         g_wither_provider(pp, ENXIO);
2241
2242         pp = g_new_providerf(gp, "%s/%s", ZVOL_DRIVER, newname);
2243         pp->sectorsize = DEV_BSIZE;
2244         pp->mediasize = zv->zv_volsize;
2245         pp->private = zv;
2246         zv->zv_provider = pp;
2247         strlcpy(zv->zv_name, newname, sizeof(zv->zv_name));
2248         g_error_provider(pp, 0);
2249 }
2250
2251 void
2252 zvol_rename_minors(const char *oldname, const char *newname)
2253 {
2254         char name[MAXPATHLEN];
2255         struct g_provider *pp;
2256         struct g_geom *gp;
2257         size_t oldnamelen, newnamelen;
2258         zvol_state_t *zv;
2259         char *namebuf;
2260
2261         oldnamelen = strlen(oldname);
2262         newnamelen = strlen(newname);
2263
2264         DROP_GIANT();
2265         mutex_enter(&spa_namespace_lock);
2266         g_topology_lock();
2267
2268         LIST_FOREACH(gp, &zfs_zvol_class.geom, geom) {
2269                 pp = LIST_FIRST(&gp->provider);
2270                 if (pp == NULL)
2271                         continue;
2272                 zv = pp->private;
2273                 if (zv == NULL)
2274                         continue;
2275                 if (strcmp(zv->zv_name, oldname) == 0) {
2276                         zvol_rename_minor(gp, newname);
2277                 } else if (strncmp(zv->zv_name, oldname, oldnamelen) == 0 &&
2278                     (zv->zv_name[oldnamelen] == '/' ||
2279                      zv->zv_name[oldnamelen] == '@')) {
2280                         snprintf(name, sizeof(name), "%s%c%s", newname,
2281                             zv->zv_name[oldnamelen],
2282                             zv->zv_name + oldnamelen + 1);
2283                         zvol_rename_minor(gp, name);
2284                 }
2285         }
2286
2287         g_topology_unlock();
2288         mutex_exit(&spa_namespace_lock);
2289         PICKUP_GIANT();
2290 }