]> CyberLeo.Net >> Repos - FreeBSD/stable/8.git/blob - sys/cddl/contrib/opensolaris/uts/common/fs/zfs/zvol.c
MFC r241297: zvol: set mediasize in geom provider right upon its creation
[FreeBSD/stable/8.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         uint64_t volsize;
485         int error;
486
487         ZFS_LOG(1, "Creating ZVOL %s...", name);
488
489         mutex_enter(&spa_namespace_lock);
490
491         if (zvol_minor_lookup(name) != NULL) {
492                 mutex_exit(&spa_namespace_lock);
493                 return (EEXIST);
494         }
495
496         /* lie and say we're read-only */
497         error = dmu_objset_own(name, DMU_OST_ZVOL, B_TRUE, FTAG, &os);
498
499         if (error) {
500                 mutex_exit(&spa_namespace_lock);
501                 return (error);
502         }
503
504 #ifdef sun
505         if ((minor = zfsdev_minor_alloc()) == 0) {
506                 dmu_objset_disown(os, FTAG);
507                 mutex_exit(&spa_namespace_lock);
508                 return (ENXIO);
509         }
510
511         if (ddi_soft_state_zalloc(zfsdev_state, minor) != DDI_SUCCESS) {
512                 dmu_objset_disown(os, FTAG);
513                 mutex_exit(&spa_namespace_lock);
514                 return (EAGAIN);
515         }
516         (void) ddi_prop_update_string(minor, zfs_dip, ZVOL_PROP_NAME,
517             (char *)name);
518
519         (void) snprintf(chrbuf, sizeof (chrbuf), "%u,raw", minor);
520
521         if (ddi_create_minor_node(zfs_dip, chrbuf, S_IFCHR,
522             minor, DDI_PSEUDO, 0) == DDI_FAILURE) {
523                 ddi_soft_state_free(zfsdev_state, minor);
524                 dmu_objset_disown(os, FTAG);
525                 mutex_exit(&spa_namespace_lock);
526                 return (EAGAIN);
527         }
528
529         (void) snprintf(blkbuf, sizeof (blkbuf), "%u", minor);
530
531         if (ddi_create_minor_node(zfs_dip, blkbuf, S_IFBLK,
532             minor, DDI_PSEUDO, 0) == DDI_FAILURE) {
533                 ddi_remove_minor_node(zfs_dip, chrbuf);
534                 ddi_soft_state_free(zfsdev_state, minor);
535                 dmu_objset_disown(os, FTAG);
536                 mutex_exit(&spa_namespace_lock);
537                 return (EAGAIN);
538         }
539
540         zs = ddi_get_soft_state(zfsdev_state, minor);
541         zs->zss_type = ZSST_ZVOL;
542         zv = zs->zss_data = kmem_zalloc(sizeof (zvol_state_t), KM_SLEEP);
543 #else   /* !sun */
544
545         error = zap_lookup(os, ZVOL_ZAP_OBJ, "size", 8, 1, &volsize);
546         if (error) {
547                 ASSERT(error == 0);
548                 dmu_objset_disown(os, zvol_tag);
549                 mutex_exit(&spa_namespace_lock);
550                 return (error);
551         }
552
553         DROP_GIANT();
554         g_topology_lock();
555         zv = zvol_geom_create(name);
556         zv->zv_volsize = volsize;
557         zv->zv_provider->mediasize = zv->zv_volsize;
558
559 #endif  /* !sun */
560
561         (void) strlcpy(zv->zv_name, name, MAXPATHLEN);
562         zv->zv_min_bs = DEV_BSHIFT;
563         zv->zv_objset = os;
564         if (dmu_objset_is_snapshot(os) || !spa_writeable(dmu_objset_spa(os)))
565                 zv->zv_flags |= ZVOL_RDONLY;
566         mutex_init(&zv->zv_znode.z_range_lock, NULL, MUTEX_DEFAULT, NULL);
567         avl_create(&zv->zv_znode.z_range_avl, zfs_range_compare,
568             sizeof (rl_t), offsetof(rl_t, r_node));
569         list_create(&zv->zv_extents, sizeof (zvol_extent_t),
570             offsetof(zvol_extent_t, ze_node));
571         /* get and cache the blocksize */
572         error = dmu_object_info(os, ZVOL_OBJ, &doi);
573         ASSERT(error == 0);
574         zv->zv_volblocksize = doi.doi_data_block_size;
575
576         if (spa_writeable(dmu_objset_spa(os))) {
577                 if (zil_replay_disable)
578                         zil_destroy(dmu_objset_zil(os), B_FALSE);
579                 else
580                         zil_replay(os, zv, zvol_replay_vector);
581         }
582         dmu_objset_disown(os, FTAG);
583         zv->zv_objset = NULL;
584
585         zvol_minors++;
586
587         mutex_exit(&spa_namespace_lock);
588
589         zvol_geom_run(zv);
590
591         g_topology_unlock();
592         PICKUP_GIANT();
593
594         ZFS_LOG(1, "ZVOL %s created.", name);
595
596         return (0);
597 }
598
599 /*
600  * Remove minor node for the specified volume.
601  */
602 static int
603 zvol_remove_zv(zvol_state_t *zv)
604 {
605 #ifdef sun
606         minor_t minor = zv->zv_minor;
607 #endif
608
609         ASSERT(MUTEX_HELD(&spa_namespace_lock));
610         if (zv->zv_total_opens != 0)
611                 return (EBUSY);
612
613         ZFS_LOG(1, "ZVOL %s destroyed.", zv->zv_name);
614
615 #ifdef sun
616         (void) snprintf(nmbuf, sizeof (nmbuf), "%u,raw", minor);
617         ddi_remove_minor_node(zfs_dip, nmbuf);
618 #endif  /* sun */
619
620         avl_destroy(&zv->zv_znode.z_range_avl);
621         mutex_destroy(&zv->zv_znode.z_range_lock);
622
623         zvol_geom_destroy(zv);
624
625         zvol_minors--;
626         return (0);
627 }
628
629 int
630 zvol_remove_minor(const char *name)
631 {
632         zvol_state_t *zv;
633         int rc;
634
635         mutex_enter(&spa_namespace_lock);
636         if ((zv = zvol_minor_lookup(name)) == NULL) {
637                 mutex_exit(&spa_namespace_lock);
638                 return (ENXIO);
639         }
640         g_topology_lock();
641         rc = zvol_remove_zv(zv);
642         g_topology_unlock();
643         mutex_exit(&spa_namespace_lock);
644         return (rc);
645 }
646
647 int
648 zvol_first_open(zvol_state_t *zv)
649 {
650         objset_t *os;
651         uint64_t volsize;
652         int error;
653         uint64_t readonly;
654
655         /* lie and say we're read-only */
656         error = dmu_objset_own(zv->zv_name, DMU_OST_ZVOL, B_TRUE,
657             zvol_tag, &os);
658         if (error)
659                 return (error);
660
661         error = zap_lookup(os, ZVOL_ZAP_OBJ, "size", 8, 1, &volsize);
662         if (error) {
663                 ASSERT(error == 0);
664                 dmu_objset_disown(os, zvol_tag);
665                 return (error);
666         }
667         zv->zv_objset = os;
668         error = dmu_bonus_hold(os, ZVOL_OBJ, zvol_tag, &zv->zv_dbuf);
669         if (error) {
670                 dmu_objset_disown(os, zvol_tag);
671                 return (error);
672         }
673         zv->zv_volsize = volsize;
674         zv->zv_zilog = zil_open(os, zvol_get_data);
675         zvol_size_changed(zv);
676
677         VERIFY(dsl_prop_get_integer(zv->zv_name, "readonly", &readonly,
678             NULL) == 0);
679         if (readonly || dmu_objset_is_snapshot(os) ||
680             !spa_writeable(dmu_objset_spa(os)))
681                 zv->zv_flags |= ZVOL_RDONLY;
682         else
683                 zv->zv_flags &= ~ZVOL_RDONLY;
684         return (error);
685 }
686
687 void
688 zvol_last_close(zvol_state_t *zv)
689 {
690         zil_close(zv->zv_zilog);
691         zv->zv_zilog = NULL;
692         dmu_buf_rele(zv->zv_dbuf, zvol_tag);
693         zv->zv_dbuf = NULL;
694         dmu_objset_disown(zv->zv_objset, zvol_tag);
695         zv->zv_objset = NULL;
696 }
697
698 #ifdef sun
699 int
700 zvol_prealloc(zvol_state_t *zv)
701 {
702         objset_t *os = zv->zv_objset;
703         dmu_tx_t *tx;
704         uint64_t refd, avail, usedobjs, availobjs;
705         uint64_t resid = zv->zv_volsize;
706         uint64_t off = 0;
707
708         /* Check the space usage before attempting to allocate the space */
709         dmu_objset_space(os, &refd, &avail, &usedobjs, &availobjs);
710         if (avail < zv->zv_volsize)
711                 return (ENOSPC);
712
713         /* Free old extents if they exist */
714         zvol_free_extents(zv);
715
716         while (resid != 0) {
717                 int error;
718                 uint64_t bytes = MIN(resid, SPA_MAXBLOCKSIZE);
719
720                 tx = dmu_tx_create(os);
721                 dmu_tx_hold_write(tx, ZVOL_OBJ, off, bytes);
722                 error = dmu_tx_assign(tx, TXG_WAIT);
723                 if (error) {
724                         dmu_tx_abort(tx);
725                         (void) dmu_free_long_range(os, ZVOL_OBJ, 0, off);
726                         return (error);
727                 }
728                 dmu_prealloc(os, ZVOL_OBJ, off, bytes, tx);
729                 dmu_tx_commit(tx);
730                 off += bytes;
731                 resid -= bytes;
732         }
733         txg_wait_synced(dmu_objset_pool(os), 0);
734
735         return (0);
736 }
737 #endif  /* sun */
738
739 int
740 zvol_update_volsize(objset_t *os, uint64_t volsize)
741 {
742         dmu_tx_t *tx;
743         int error;
744
745         ASSERT(MUTEX_HELD(&spa_namespace_lock));
746
747         tx = dmu_tx_create(os);
748         dmu_tx_hold_zap(tx, ZVOL_ZAP_OBJ, TRUE, NULL);
749         error = dmu_tx_assign(tx, TXG_WAIT);
750         if (error) {
751                 dmu_tx_abort(tx);
752                 return (error);
753         }
754
755         error = zap_update(os, ZVOL_ZAP_OBJ, "size", 8, 1,
756             &volsize, tx);
757         dmu_tx_commit(tx);
758
759         if (error == 0)
760                 error = dmu_free_long_range(os,
761                     ZVOL_OBJ, volsize, DMU_OBJECT_END);
762         return (error);
763 }
764
765 void
766 zvol_remove_minors(const char *name)
767 {
768         struct g_geom *gp, *gptmp;
769         struct g_provider *pp;
770         zvol_state_t *zv;
771         size_t namelen;
772
773         namelen = strlen(name);
774
775         DROP_GIANT();
776         mutex_enter(&spa_namespace_lock);
777         g_topology_lock();
778
779         LIST_FOREACH_SAFE(gp, &zfs_zvol_class.geom, geom, gptmp) {
780                 pp = LIST_FIRST(&gp->provider);
781                 if (pp == NULL)
782                         continue;
783                 zv = pp->private;
784                 if (zv == NULL)
785                         continue;
786                 if (strcmp(zv->zv_name, name) == 0 ||
787                     (strncmp(zv->zv_name, name, namelen) == 0 &&
788                      zv->zv_name[namelen] == '/')) {
789                         (void) zvol_remove_zv(zv);
790                 }
791         }
792
793         g_topology_unlock();
794         mutex_exit(&spa_namespace_lock);
795         PICKUP_GIANT();
796 }
797
798 int
799 zvol_set_volsize(const char *name, major_t maj, uint64_t volsize)
800 {
801         zvol_state_t *zv = NULL;
802         objset_t *os;
803         int error;
804         dmu_object_info_t doi;
805         uint64_t old_volsize = 0ULL;
806         uint64_t readonly;
807
808         mutex_enter(&spa_namespace_lock);
809         zv = zvol_minor_lookup(name);
810         if ((error = dmu_objset_hold(name, FTAG, &os)) != 0) {
811                 mutex_exit(&spa_namespace_lock);
812                 return (error);
813         }
814
815         if ((error = dmu_object_info(os, ZVOL_OBJ, &doi)) != 0 ||
816             (error = zvol_check_volsize(volsize,
817             doi.doi_data_block_size)) != 0)
818                 goto out;
819
820         VERIFY(dsl_prop_get_integer(name, "readonly", &readonly,
821             NULL) == 0);
822         if (readonly) {
823                 error = EROFS;
824                 goto out;
825         }
826
827         error = zvol_update_volsize(os, volsize);
828         /*
829          * Reinitialize the dump area to the new size. If we
830          * failed to resize the dump area then restore it back to
831          * its original size.
832          */
833         if (zv && error == 0) {
834 #ifdef ZVOL_DUMP
835                 if (zv->zv_flags & ZVOL_DUMPIFIED) {
836                         old_volsize = zv->zv_volsize;
837                         zv->zv_volsize = volsize;
838                         if ((error = zvol_dumpify(zv)) != 0 ||
839                             (error = dumpvp_resize()) != 0) {
840                                 (void) zvol_update_volsize(os, old_volsize);
841                                 zv->zv_volsize = old_volsize;
842                                 error = zvol_dumpify(zv);
843                         }
844                 }
845 #endif  /* ZVOL_DUMP */
846                 if (error == 0) {
847                         zv->zv_volsize = volsize;
848                         zvol_size_changed(zv);
849                 }
850         }
851
852 #ifdef sun
853         /*
854          * Generate a LUN expansion event.
855          */
856         if (zv && error == 0) {
857                 sysevent_id_t eid;
858                 nvlist_t *attr;
859                 char *physpath = kmem_zalloc(MAXPATHLEN, KM_SLEEP);
860
861                 (void) snprintf(physpath, MAXPATHLEN, "%s%u", ZVOL_PSEUDO_DEV,
862                     zv->zv_minor);
863
864                 VERIFY(nvlist_alloc(&attr, NV_UNIQUE_NAME, KM_SLEEP) == 0);
865                 VERIFY(nvlist_add_string(attr, DEV_PHYS_PATH, physpath) == 0);
866
867                 (void) ddi_log_sysevent(zfs_dip, SUNW_VENDOR, EC_DEV_STATUS,
868                     ESC_DEV_DLE, attr, &eid, DDI_SLEEP);
869
870                 nvlist_free(attr);
871                 kmem_free(physpath, MAXPATHLEN);
872         }
873 #endif  /* sun */
874
875 out:
876         dmu_objset_rele(os, FTAG);
877
878         mutex_exit(&spa_namespace_lock);
879
880         return (error);
881 }
882
883 /*ARGSUSED*/
884 static int
885 zvol_open(struct g_provider *pp, int flag, int count)
886 {
887         zvol_state_t *zv;
888         int err = 0;
889         boolean_t locked = B_FALSE;
890
891         /*
892          * Protect against recursively entering spa_namespace_lock
893          * when spa_open() is used for a pool on a (local) ZVOL(s).
894          * This is needed since we replaced upstream zfsdev_state_lock
895          * with spa_namespace_lock in the ZVOL code.
896          * We are using the same trick as spa_open().
897          * Note that calls in zvol_first_open which need to resolve
898          * pool name to a spa object will enter spa_open()
899          * recursively, but that function already has all the
900          * necessary protection.
901          */
902         if (!MUTEX_HELD(&spa_namespace_lock)) {
903                 mutex_enter(&spa_namespace_lock);
904                 locked = B_TRUE;
905         }
906
907         zv = pp->private;
908         if (zv == NULL) {
909                 if (locked)
910                         mutex_exit(&spa_namespace_lock);
911                 return (ENXIO);
912         }
913
914         if (zv->zv_total_opens == 0)
915                 err = zvol_first_open(zv);
916         if (err) {
917                 if (locked)
918                         mutex_exit(&spa_namespace_lock);
919                 return (err);
920         }
921         if ((flag & FWRITE) && (zv->zv_flags & ZVOL_RDONLY)) {
922                 err = EROFS;
923                 goto out;
924         }
925         if (zv->zv_flags & ZVOL_EXCL) {
926                 err = EBUSY;
927                 goto out;
928         }
929 #ifdef FEXCL
930         if (flag & FEXCL) {
931                 if (zv->zv_total_opens != 0) {
932                         err = EBUSY;
933                         goto out;
934                 }
935                 zv->zv_flags |= ZVOL_EXCL;
936         }
937 #endif
938
939         zv->zv_total_opens += count;
940         if (locked)
941                 mutex_exit(&spa_namespace_lock);
942
943         return (err);
944 out:
945         if (zv->zv_total_opens == 0)
946                 zvol_last_close(zv);
947         if (locked)
948                 mutex_exit(&spa_namespace_lock);
949         return (err);
950 }
951
952 /*ARGSUSED*/
953 static int
954 zvol_close(struct g_provider *pp, int flag, int count)
955 {
956         zvol_state_t *zv;
957         int error = 0;
958         boolean_t locked = B_FALSE;
959
960         /* See comment in zvol_open(). */
961         if (!MUTEX_HELD(&spa_namespace_lock)) {
962                 mutex_enter(&spa_namespace_lock);
963                 locked = B_TRUE;
964         }
965
966         zv = pp->private;
967         if (zv == NULL) {
968                 if (locked)
969                         mutex_exit(&spa_namespace_lock);
970                 return (ENXIO);
971         }
972
973         if (zv->zv_flags & ZVOL_EXCL) {
974                 ASSERT(zv->zv_total_opens == 1);
975                 zv->zv_flags &= ~ZVOL_EXCL;
976         }
977
978         /*
979          * If the open count is zero, this is a spurious close.
980          * That indicates a bug in the kernel / DDI framework.
981          */
982         ASSERT(zv->zv_total_opens != 0);
983
984         /*
985          * You may get multiple opens, but only one close.
986          */
987         zv->zv_total_opens -= count;
988
989         if (zv->zv_total_opens == 0)
990                 zvol_last_close(zv);
991
992         if (locked)
993                 mutex_exit(&spa_namespace_lock);
994         return (error);
995 }
996
997 static void
998 zvol_get_done(zgd_t *zgd, int error)
999 {
1000         if (zgd->zgd_db)
1001                 dmu_buf_rele(zgd->zgd_db, zgd);
1002
1003         zfs_range_unlock(zgd->zgd_rl);
1004
1005         if (error == 0 && zgd->zgd_bp)
1006                 zil_add_block(zgd->zgd_zilog, zgd->zgd_bp);
1007
1008         kmem_free(zgd, sizeof (zgd_t));
1009 }
1010
1011 /*
1012  * Get data to generate a TX_WRITE intent log record.
1013  */
1014 static int
1015 zvol_get_data(void *arg, lr_write_t *lr, char *buf, zio_t *zio)
1016 {
1017         zvol_state_t *zv = arg;
1018         objset_t *os = zv->zv_objset;
1019         uint64_t object = ZVOL_OBJ;
1020         uint64_t offset = lr->lr_offset;
1021         uint64_t size = lr->lr_length;  /* length of user data */
1022         blkptr_t *bp = &lr->lr_blkptr;
1023         dmu_buf_t *db;
1024         zgd_t *zgd;
1025         int error;
1026
1027         ASSERT(zio != NULL);
1028         ASSERT(size != 0);
1029
1030         zgd = kmem_zalloc(sizeof (zgd_t), KM_SLEEP);
1031         zgd->zgd_zilog = zv->zv_zilog;
1032         zgd->zgd_rl = zfs_range_lock(&zv->zv_znode, offset, size, RL_READER);
1033
1034         /*
1035          * Write records come in two flavors: immediate and indirect.
1036          * For small writes it's cheaper to store the data with the
1037          * log record (immediate); for large writes it's cheaper to
1038          * sync the data and get a pointer to it (indirect) so that
1039          * we don't have to write the data twice.
1040          */
1041         if (buf != NULL) {      /* immediate write */
1042                 error = dmu_read(os, object, offset, size, buf,
1043                     DMU_READ_NO_PREFETCH);
1044         } else {
1045                 size = zv->zv_volblocksize;
1046                 offset = P2ALIGN(offset, size);
1047                 error = dmu_buf_hold(os, object, offset, zgd, &db,
1048                     DMU_READ_NO_PREFETCH);
1049                 if (error == 0) {
1050                         zgd->zgd_db = db;
1051                         zgd->zgd_bp = bp;
1052
1053                         ASSERT(db->db_offset == offset);
1054                         ASSERT(db->db_size == size);
1055
1056                         error = dmu_sync(zio, lr->lr_common.lrc_txg,
1057                             zvol_get_done, zgd);
1058
1059                         if (error == 0)
1060                                 return (0);
1061                 }
1062         }
1063
1064         zvol_get_done(zgd, error);
1065
1066         return (error);
1067 }
1068
1069 /*
1070  * zvol_log_write() handles synchronous writes using TX_WRITE ZIL transactions.
1071  *
1072  * We store data in the log buffers if it's small enough.
1073  * Otherwise we will later flush the data out via dmu_sync().
1074  */
1075 ssize_t zvol_immediate_write_sz = 32768;
1076
1077 static void
1078 zvol_log_write(zvol_state_t *zv, dmu_tx_t *tx, offset_t off, ssize_t resid,
1079     boolean_t sync)
1080 {
1081         uint32_t blocksize = zv->zv_volblocksize;
1082         zilog_t *zilog = zv->zv_zilog;
1083         boolean_t slogging;
1084         ssize_t immediate_write_sz;
1085
1086         if (zil_replaying(zilog, tx))
1087                 return;
1088
1089         immediate_write_sz = (zilog->zl_logbias == ZFS_LOGBIAS_THROUGHPUT)
1090             ? 0 : zvol_immediate_write_sz;
1091
1092         slogging = spa_has_slogs(zilog->zl_spa) &&
1093             (zilog->zl_logbias == ZFS_LOGBIAS_LATENCY);
1094
1095         while (resid) {
1096                 itx_t *itx;
1097                 lr_write_t *lr;
1098                 ssize_t len;
1099                 itx_wr_state_t write_state;
1100
1101                 /*
1102                  * Unlike zfs_log_write() we can be called with
1103                  * upto DMU_MAX_ACCESS/2 (5MB) writes.
1104                  */
1105                 if (blocksize > immediate_write_sz && !slogging &&
1106                     resid >= blocksize && off % blocksize == 0) {
1107                         write_state = WR_INDIRECT; /* uses dmu_sync */
1108                         len = blocksize;
1109                 } else if (sync) {
1110                         write_state = WR_COPIED;
1111                         len = MIN(ZIL_MAX_LOG_DATA, resid);
1112                 } else {
1113                         write_state = WR_NEED_COPY;
1114                         len = MIN(ZIL_MAX_LOG_DATA, resid);
1115                 }
1116
1117                 itx = zil_itx_create(TX_WRITE, sizeof (*lr) +
1118                     (write_state == WR_COPIED ? len : 0));
1119                 lr = (lr_write_t *)&itx->itx_lr;
1120                 if (write_state == WR_COPIED && dmu_read(zv->zv_objset,
1121                     ZVOL_OBJ, off, len, lr + 1, DMU_READ_NO_PREFETCH) != 0) {
1122                         zil_itx_destroy(itx);
1123                         itx = zil_itx_create(TX_WRITE, sizeof (*lr));
1124                         lr = (lr_write_t *)&itx->itx_lr;
1125                         write_state = WR_NEED_COPY;
1126                 }
1127
1128                 itx->itx_wr_state = write_state;
1129                 if (write_state == WR_NEED_COPY)
1130                         itx->itx_sod += len;
1131                 lr->lr_foid = ZVOL_OBJ;
1132                 lr->lr_offset = off;
1133                 lr->lr_length = len;
1134                 lr->lr_blkoff = 0;
1135                 BP_ZERO(&lr->lr_blkptr);
1136
1137                 itx->itx_private = zv;
1138                 itx->itx_sync = sync;
1139
1140                 zil_itx_assign(zilog, itx, tx);
1141
1142                 off += len;
1143                 resid -= len;
1144         }
1145 }
1146
1147 #ifdef sun
1148 static int
1149 zvol_dumpio_vdev(vdev_t *vd, void *addr, uint64_t offset, uint64_t size,
1150     boolean_t doread, boolean_t isdump)
1151 {
1152         vdev_disk_t *dvd;
1153         int c;
1154         int numerrors = 0;
1155
1156         for (c = 0; c < vd->vdev_children; c++) {
1157                 ASSERT(vd->vdev_ops == &vdev_mirror_ops ||
1158                     vd->vdev_ops == &vdev_replacing_ops ||
1159                     vd->vdev_ops == &vdev_spare_ops);
1160                 int err = zvol_dumpio_vdev(vd->vdev_child[c],
1161                     addr, offset, size, doread, isdump);
1162                 if (err != 0) {
1163                         numerrors++;
1164                 } else if (doread) {
1165                         break;
1166                 }
1167         }
1168
1169         if (!vd->vdev_ops->vdev_op_leaf)
1170                 return (numerrors < vd->vdev_children ? 0 : EIO);
1171
1172         if (doread && !vdev_readable(vd))
1173                 return (EIO);
1174         else if (!doread && !vdev_writeable(vd))
1175                 return (EIO);
1176
1177         dvd = vd->vdev_tsd;
1178         ASSERT3P(dvd, !=, NULL);
1179         offset += VDEV_LABEL_START_SIZE;
1180
1181         if (ddi_in_panic() || isdump) {
1182                 ASSERT(!doread);
1183                 if (doread)
1184                         return (EIO);
1185                 return (ldi_dump(dvd->vd_lh, addr, lbtodb(offset),
1186                     lbtodb(size)));
1187         } else {
1188                 return (vdev_disk_physio(dvd->vd_lh, addr, size, offset,
1189                     doread ? B_READ : B_WRITE));
1190         }
1191 }
1192
1193 static int
1194 zvol_dumpio(zvol_state_t *zv, void *addr, uint64_t offset, uint64_t size,
1195     boolean_t doread, boolean_t isdump)
1196 {
1197         vdev_t *vd;
1198         int error;
1199         zvol_extent_t *ze;
1200         spa_t *spa = dmu_objset_spa(zv->zv_objset);
1201
1202         /* Must be sector aligned, and not stradle a block boundary. */
1203         if (P2PHASE(offset, DEV_BSIZE) || P2PHASE(size, DEV_BSIZE) ||
1204             P2BOUNDARY(offset, size, zv->zv_volblocksize)) {
1205                 return (EINVAL);
1206         }
1207         ASSERT(size <= zv->zv_volblocksize);
1208
1209         /* Locate the extent this belongs to */
1210         ze = list_head(&zv->zv_extents);
1211         while (offset >= ze->ze_nblks * zv->zv_volblocksize) {
1212                 offset -= ze->ze_nblks * zv->zv_volblocksize;
1213                 ze = list_next(&zv->zv_extents, ze);
1214         }
1215
1216         if (!ddi_in_panic())
1217                 spa_config_enter(spa, SCL_STATE, FTAG, RW_READER);
1218
1219         vd = vdev_lookup_top(spa, DVA_GET_VDEV(&ze->ze_dva));
1220         offset += DVA_GET_OFFSET(&ze->ze_dva);
1221         error = zvol_dumpio_vdev(vd, addr, offset, size, doread, isdump);
1222
1223         if (!ddi_in_panic())
1224                 spa_config_exit(spa, SCL_STATE, FTAG);
1225
1226         return (error);
1227 }
1228 #endif  /* sun */
1229
1230 int
1231 zvol_strategy(struct bio *bp)
1232 {
1233         zvol_state_t *zv = bp->bio_to->private;
1234         uint64_t off, volsize;
1235         size_t resid;
1236         char *addr;
1237         objset_t *os;
1238         rl_t *rl;
1239         int error = 0;
1240         boolean_t doread = (bp->bio_cmd == BIO_READ);
1241         boolean_t sync;
1242
1243         if (zv == NULL) {
1244                 g_io_deliver(bp, ENXIO);
1245                 return (0);
1246         }
1247
1248         if (bp->bio_cmd != BIO_READ && (zv->zv_flags & ZVOL_RDONLY)) {
1249                 g_io_deliver(bp, EROFS);
1250                 return (0);
1251         }
1252
1253         off = bp->bio_offset;
1254         volsize = zv->zv_volsize;
1255
1256         os = zv->zv_objset;
1257         ASSERT(os != NULL);
1258
1259         addr = bp->bio_data;
1260         resid = bp->bio_length;
1261
1262         if (resid > 0 && (off < 0 || off >= volsize)) {
1263                 g_io_deliver(bp, EIO);
1264                 return (0);
1265         }
1266
1267         sync = !doread && zv->zv_objset->os_sync == ZFS_SYNC_ALWAYS;
1268
1269         /*
1270          * There must be no buffer changes when doing a dmu_sync() because
1271          * we can't change the data whilst calculating the checksum.
1272          */
1273         rl = zfs_range_lock(&zv->zv_znode, off, resid,
1274             doread ? RL_READER : RL_WRITER);
1275
1276         while (resid != 0 && off < volsize) {
1277                 size_t size = MIN(resid, zvol_maxphys);
1278                 if (doread) {
1279                         error = dmu_read(os, ZVOL_OBJ, off, size, addr,
1280                             DMU_READ_PREFETCH);
1281                 } else {
1282                         dmu_tx_t *tx = dmu_tx_create(os);
1283                         dmu_tx_hold_write(tx, ZVOL_OBJ, off, size);
1284                         error = dmu_tx_assign(tx, TXG_WAIT);
1285                         if (error) {
1286                                 dmu_tx_abort(tx);
1287                         } else {
1288                                 dmu_write(os, ZVOL_OBJ, off, size, addr, tx);
1289                                 zvol_log_write(zv, tx, off, size, sync);
1290                                 dmu_tx_commit(tx);
1291                         }
1292                 }
1293                 if (error) {
1294                         /* convert checksum errors into IO errors */
1295                         if (error == ECKSUM)
1296                                 error = EIO;
1297                         break;
1298                 }
1299                 off += size;
1300                 addr += size;
1301                 resid -= size;
1302         }
1303         zfs_range_unlock(rl);
1304
1305         bp->bio_completed = bp->bio_length - resid;
1306         if (bp->bio_completed < bp->bio_length)
1307                 bp->bio_error = (off > volsize ? EINVAL : error);
1308
1309         if (sync)
1310                 zil_commit(zv->zv_zilog, ZVOL_OBJ);
1311         g_io_deliver(bp, 0);
1312
1313         return (0);
1314 }
1315
1316 #ifdef sun
1317 /*
1318  * Set the buffer count to the zvol maximum transfer.
1319  * Using our own routine instead of the default minphys()
1320  * means that for larger writes we write bigger buffers on X86
1321  * (128K instead of 56K) and flush the disk write cache less often
1322  * (every zvol_maxphys - currently 1MB) instead of minphys (currently
1323  * 56K on X86 and 128K on sparc).
1324  */
1325 void
1326 zvol_minphys(struct buf *bp)
1327 {
1328         if (bp->b_bcount > zvol_maxphys)
1329                 bp->b_bcount = zvol_maxphys;
1330 }
1331
1332 int
1333 zvol_dump(dev_t dev, caddr_t addr, daddr_t blkno, int nblocks)
1334 {
1335         minor_t minor = getminor(dev);
1336         zvol_state_t *zv;
1337         int error = 0;
1338         uint64_t size;
1339         uint64_t boff;
1340         uint64_t resid;
1341
1342         zv = zfsdev_get_soft_state(minor, ZSST_ZVOL);
1343         if (zv == NULL)
1344                 return (ENXIO);
1345
1346         boff = ldbtob(blkno);
1347         resid = ldbtob(nblocks);
1348
1349         VERIFY3U(boff + resid, <=, zv->zv_volsize);
1350
1351         while (resid) {
1352                 size = MIN(resid, P2END(boff, zv->zv_volblocksize) - boff);
1353                 error = zvol_dumpio(zv, addr, boff, size, B_FALSE, B_TRUE);
1354                 if (error)
1355                         break;
1356                 boff += size;
1357                 addr += size;
1358                 resid -= size;
1359         }
1360
1361         return (error);
1362 }
1363
1364 /*ARGSUSED*/
1365 int
1366 zvol_read(dev_t dev, uio_t *uio, cred_t *cr)
1367 {
1368         minor_t minor = getminor(dev);
1369         zvol_state_t *zv;
1370         uint64_t volsize;
1371         rl_t *rl;
1372         int error = 0;
1373
1374         zv = zfsdev_get_soft_state(minor, ZSST_ZVOL);
1375         if (zv == NULL)
1376                 return (ENXIO);
1377
1378         volsize = zv->zv_volsize;
1379         if (uio->uio_resid > 0 &&
1380             (uio->uio_loffset < 0 || uio->uio_loffset >= volsize))
1381                 return (EIO);
1382
1383         if (zv->zv_flags & ZVOL_DUMPIFIED) {
1384                 error = physio(zvol_strategy, NULL, dev, B_READ,
1385                     zvol_minphys, uio);
1386                 return (error);
1387         }
1388
1389         rl = zfs_range_lock(&zv->zv_znode, uio->uio_loffset, uio->uio_resid,
1390             RL_READER);
1391         while (uio->uio_resid > 0 && uio->uio_loffset < volsize) {
1392                 uint64_t bytes = MIN(uio->uio_resid, DMU_MAX_ACCESS >> 1);
1393
1394                 /* don't read past the end */
1395                 if (bytes > volsize - uio->uio_loffset)
1396                         bytes = volsize - uio->uio_loffset;
1397
1398                 error =  dmu_read_uio(zv->zv_objset, ZVOL_OBJ, uio, bytes);
1399                 if (error) {
1400                         /* convert checksum errors into IO errors */
1401                         if (error == ECKSUM)
1402                                 error = EIO;
1403                         break;
1404                 }
1405         }
1406         zfs_range_unlock(rl);
1407         return (error);
1408 }
1409
1410 /*ARGSUSED*/
1411 int
1412 zvol_write(dev_t dev, uio_t *uio, cred_t *cr)
1413 {
1414         minor_t minor = getminor(dev);
1415         zvol_state_t *zv;
1416         uint64_t volsize;
1417         rl_t *rl;
1418         int error = 0;
1419         boolean_t sync;
1420
1421         zv = zfsdev_get_soft_state(minor, ZSST_ZVOL);
1422         if (zv == NULL)
1423                 return (ENXIO);
1424
1425         volsize = zv->zv_volsize;
1426         if (uio->uio_resid > 0 &&
1427             (uio->uio_loffset < 0 || uio->uio_loffset >= volsize))
1428                 return (EIO);
1429
1430         if (zv->zv_flags & ZVOL_DUMPIFIED) {
1431                 error = physio(zvol_strategy, NULL, dev, B_WRITE,
1432                     zvol_minphys, uio);
1433                 return (error);
1434         }
1435
1436         sync = !(zv->zv_flags & ZVOL_WCE) ||
1437             (zv->zv_objset->os_sync == ZFS_SYNC_ALWAYS);
1438
1439         rl = zfs_range_lock(&zv->zv_znode, uio->uio_loffset, uio->uio_resid,
1440             RL_WRITER);
1441         while (uio->uio_resid > 0 && uio->uio_loffset < volsize) {
1442                 uint64_t bytes = MIN(uio->uio_resid, DMU_MAX_ACCESS >> 1);
1443                 uint64_t off = uio->uio_loffset;
1444                 dmu_tx_t *tx = dmu_tx_create(zv->zv_objset);
1445
1446                 if (bytes > volsize - off)      /* don't write past the end */
1447                         bytes = volsize - off;
1448
1449                 dmu_tx_hold_write(tx, ZVOL_OBJ, off, bytes);
1450                 error = dmu_tx_assign(tx, TXG_WAIT);
1451                 if (error) {
1452                         dmu_tx_abort(tx);
1453                         break;
1454                 }
1455                 error = dmu_write_uio_dbuf(zv->zv_dbuf, uio, bytes, tx);
1456                 if (error == 0)
1457                         zvol_log_write(zv, tx, off, bytes, sync);
1458                 dmu_tx_commit(tx);
1459
1460                 if (error)
1461                         break;
1462         }
1463         zfs_range_unlock(rl);
1464         if (sync)
1465                 zil_commit(zv->zv_zilog, ZVOL_OBJ);
1466         return (error);
1467 }
1468
1469 int
1470 zvol_getefi(void *arg, int flag, uint64_t vs, uint8_t bs)
1471 {
1472         struct uuid uuid = EFI_RESERVED;
1473         efi_gpe_t gpe = { 0 };
1474         uint32_t crc;
1475         dk_efi_t efi;
1476         int length;
1477         char *ptr;
1478
1479         if (ddi_copyin(arg, &efi, sizeof (dk_efi_t), flag))
1480                 return (EFAULT);
1481         ptr = (char *)(uintptr_t)efi.dki_data_64;
1482         length = efi.dki_length;
1483         /*
1484          * Some clients may attempt to request a PMBR for the
1485          * zvol.  Currently this interface will return EINVAL to
1486          * such requests.  These requests could be supported by
1487          * adding a check for lba == 0 and consing up an appropriate
1488          * PMBR.
1489          */
1490         if (efi.dki_lba < 1 || efi.dki_lba > 2 || length <= 0)
1491                 return (EINVAL);
1492
1493         gpe.efi_gpe_StartingLBA = LE_64(34ULL);
1494         gpe.efi_gpe_EndingLBA = LE_64((vs >> bs) - 1);
1495         UUID_LE_CONVERT(gpe.efi_gpe_PartitionTypeGUID, uuid);
1496
1497         if (efi.dki_lba == 1) {
1498                 efi_gpt_t gpt = { 0 };
1499
1500                 gpt.efi_gpt_Signature = LE_64(EFI_SIGNATURE);
1501                 gpt.efi_gpt_Revision = LE_32(EFI_VERSION_CURRENT);
1502                 gpt.efi_gpt_HeaderSize = LE_32(sizeof (gpt));
1503                 gpt.efi_gpt_MyLBA = LE_64(1ULL);
1504                 gpt.efi_gpt_FirstUsableLBA = LE_64(34ULL);
1505                 gpt.efi_gpt_LastUsableLBA = LE_64((vs >> bs) - 1);
1506                 gpt.efi_gpt_PartitionEntryLBA = LE_64(2ULL);
1507                 gpt.efi_gpt_NumberOfPartitionEntries = LE_32(1);
1508                 gpt.efi_gpt_SizeOfPartitionEntry =
1509                     LE_32(sizeof (efi_gpe_t));
1510                 CRC32(crc, &gpe, sizeof (gpe), -1U, crc32_table);
1511                 gpt.efi_gpt_PartitionEntryArrayCRC32 = LE_32(~crc);
1512                 CRC32(crc, &gpt, sizeof (gpt), -1U, crc32_table);
1513                 gpt.efi_gpt_HeaderCRC32 = LE_32(~crc);
1514                 if (ddi_copyout(&gpt, ptr, MIN(sizeof (gpt), length),
1515                     flag))
1516                         return (EFAULT);
1517                 ptr += sizeof (gpt);
1518                 length -= sizeof (gpt);
1519         }
1520         if (length > 0 && ddi_copyout(&gpe, ptr, MIN(sizeof (gpe),
1521             length), flag))
1522                 return (EFAULT);
1523         return (0);
1524 }
1525
1526 /*
1527  * BEGIN entry points to allow external callers access to the volume.
1528  */
1529 /*
1530  * Return the volume parameters needed for access from an external caller.
1531  * These values are invariant as long as the volume is held open.
1532  */
1533 int
1534 zvol_get_volume_params(minor_t minor, uint64_t *blksize,
1535     uint64_t *max_xfer_len, void **minor_hdl, void **objset_hdl, void **zil_hdl,
1536     void **rl_hdl, void **bonus_hdl)
1537 {
1538         zvol_state_t *zv;
1539
1540         zv = zfsdev_get_soft_state(minor, ZSST_ZVOL);
1541         if (zv == NULL)
1542                 return (ENXIO);
1543         if (zv->zv_flags & ZVOL_DUMPIFIED)
1544                 return (ENXIO);
1545
1546         ASSERT(blksize && max_xfer_len && minor_hdl &&
1547             objset_hdl && zil_hdl && rl_hdl && bonus_hdl);
1548
1549         *blksize = zv->zv_volblocksize;
1550         *max_xfer_len = (uint64_t)zvol_maxphys;
1551         *minor_hdl = zv;
1552         *objset_hdl = zv->zv_objset;
1553         *zil_hdl = zv->zv_zilog;
1554         *rl_hdl = &zv->zv_znode;
1555         *bonus_hdl = zv->zv_dbuf;
1556         return (0);
1557 }
1558
1559 /*
1560  * Return the current volume size to an external caller.
1561  * The size can change while the volume is open.
1562  */
1563 uint64_t
1564 zvol_get_volume_size(void *minor_hdl)
1565 {
1566         zvol_state_t *zv = minor_hdl;
1567
1568         return (zv->zv_volsize);
1569 }
1570
1571 /*
1572  * Return the current WCE setting to an external caller.
1573  * The WCE setting can change while the volume is open.
1574  */
1575 int
1576 zvol_get_volume_wce(void *minor_hdl)
1577 {
1578         zvol_state_t *zv = minor_hdl;
1579
1580         return ((zv->zv_flags & ZVOL_WCE) ? 1 : 0);
1581 }
1582
1583 /*
1584  * Entry point for external callers to zvol_log_write
1585  */
1586 void
1587 zvol_log_write_minor(void *minor_hdl, dmu_tx_t *tx, offset_t off, ssize_t resid,
1588     boolean_t sync)
1589 {
1590         zvol_state_t *zv = minor_hdl;
1591
1592         zvol_log_write(zv, tx, off, resid, sync);
1593 }
1594 /*
1595  * END entry points to allow external callers access to the volume.
1596  */
1597
1598 /*
1599  * Dirtbag ioctls to support mkfs(1M) for UFS filesystems.  See dkio(7I).
1600  */
1601 /*ARGSUSED*/
1602 int
1603 zvol_ioctl(dev_t dev, int cmd, intptr_t arg, int flag, cred_t *cr, int *rvalp)
1604 {
1605         zvol_state_t *zv;
1606         struct dk_cinfo dki;
1607         struct dk_minfo dkm;
1608         struct dk_callback *dkc;
1609         int error = 0;
1610         rl_t *rl;
1611
1612         mutex_enter(&spa_namespace_lock);
1613
1614         zv = zfsdev_get_soft_state(getminor(dev), ZSST_ZVOL);
1615
1616         if (zv == NULL) {
1617                 mutex_exit(&spa_namespace_lock);
1618                 return (ENXIO);
1619         }
1620         ASSERT(zv->zv_total_opens > 0);
1621
1622         switch (cmd) {
1623
1624         case DKIOCINFO:
1625                 bzero(&dki, sizeof (dki));
1626                 (void) strcpy(dki.dki_cname, "zvol");
1627                 (void) strcpy(dki.dki_dname, "zvol");
1628                 dki.dki_ctype = DKC_UNKNOWN;
1629                 dki.dki_unit = getminor(dev);
1630                 dki.dki_maxtransfer = 1 << (SPA_MAXBLOCKSHIFT - zv->zv_min_bs);
1631                 mutex_exit(&spa_namespace_lock);
1632                 if (ddi_copyout(&dki, (void *)arg, sizeof (dki), flag))
1633                         error = EFAULT;
1634                 return (error);
1635
1636         case DKIOCGMEDIAINFO:
1637                 bzero(&dkm, sizeof (dkm));
1638                 dkm.dki_lbsize = 1U << zv->zv_min_bs;
1639                 dkm.dki_capacity = zv->zv_volsize >> zv->zv_min_bs;
1640                 dkm.dki_media_type = DK_UNKNOWN;
1641                 mutex_exit(&spa_namespace_lock);
1642                 if (ddi_copyout(&dkm, (void *)arg, sizeof (dkm), flag))
1643                         error = EFAULT;
1644                 return (error);
1645
1646         case DKIOCGETEFI:
1647                 {
1648                         uint64_t vs = zv->zv_volsize;
1649                         uint8_t bs = zv->zv_min_bs;
1650
1651                         mutex_exit(&spa_namespace_lock);
1652                         error = zvol_getefi((void *)arg, flag, vs, bs);
1653                         return (error);
1654                 }
1655
1656         case DKIOCFLUSHWRITECACHE:
1657                 dkc = (struct dk_callback *)arg;
1658                 mutex_exit(&spa_namespace_lock);
1659                 zil_commit(zv->zv_zilog, ZVOL_OBJ);
1660                 if ((flag & FKIOCTL) && dkc != NULL && dkc->dkc_callback) {
1661                         (*dkc->dkc_callback)(dkc->dkc_cookie, error);
1662                         error = 0;
1663                 }
1664                 return (error);
1665
1666         case DKIOCGETWCE:
1667                 {
1668                         int wce = (zv->zv_flags & ZVOL_WCE) ? 1 : 0;
1669                         if (ddi_copyout(&wce, (void *)arg, sizeof (int),
1670                             flag))
1671                                 error = EFAULT;
1672                         break;
1673                 }
1674         case DKIOCSETWCE:
1675                 {
1676                         int wce;
1677                         if (ddi_copyin((void *)arg, &wce, sizeof (int),
1678                             flag)) {
1679                                 error = EFAULT;
1680                                 break;
1681                         }
1682                         if (wce) {
1683                                 zv->zv_flags |= ZVOL_WCE;
1684                                 mutex_exit(&spa_namespace_lock);
1685                         } else {
1686                                 zv->zv_flags &= ~ZVOL_WCE;
1687                                 mutex_exit(&spa_namespace_lock);
1688                                 zil_commit(zv->zv_zilog, ZVOL_OBJ);
1689                         }
1690                         return (0);
1691                 }
1692
1693         case DKIOCGGEOM:
1694         case DKIOCGVTOC:
1695                 /*
1696                  * commands using these (like prtvtoc) expect ENOTSUP
1697                  * since we're emulating an EFI label
1698                  */
1699                 error = ENOTSUP;
1700                 break;
1701
1702         case DKIOCDUMPINIT:
1703                 rl = zfs_range_lock(&zv->zv_znode, 0, zv->zv_volsize,
1704                     RL_WRITER);
1705                 error = zvol_dumpify(zv);
1706                 zfs_range_unlock(rl);
1707                 break;
1708
1709         case DKIOCDUMPFINI:
1710                 if (!(zv->zv_flags & ZVOL_DUMPIFIED))
1711                         break;
1712                 rl = zfs_range_lock(&zv->zv_znode, 0, zv->zv_volsize,
1713                     RL_WRITER);
1714                 error = zvol_dump_fini(zv);
1715                 zfs_range_unlock(rl);
1716                 break;
1717
1718         default:
1719                 error = ENOTTY;
1720                 break;
1721
1722         }
1723         mutex_exit(&spa_namespace_lock);
1724         return (error);
1725 }
1726 #endif  /* sun */
1727
1728 int
1729 zvol_busy(void)
1730 {
1731         return (zvol_minors != 0);
1732 }
1733
1734 void
1735 zvol_init(void)
1736 {
1737         VERIFY(ddi_soft_state_init(&zfsdev_state, sizeof (zfs_soft_state_t),
1738             1) == 0);
1739         ZFS_LOG(1, "ZVOL Initialized.");
1740 }
1741
1742 void
1743 zvol_fini(void)
1744 {
1745         ddi_soft_state_fini(&zfsdev_state);
1746         ZFS_LOG(1, "ZVOL Deinitialized.");
1747 }
1748
1749 #ifdef sun
1750 static int
1751 zvol_dump_init(zvol_state_t *zv, boolean_t resize)
1752 {
1753         dmu_tx_t *tx;
1754         int error = 0;
1755         objset_t *os = zv->zv_objset;
1756         nvlist_t *nv = NULL;
1757         uint64_t version = spa_version(dmu_objset_spa(zv->zv_objset));
1758
1759         ASSERT(MUTEX_HELD(&spa_namespace_lock));
1760         error = dmu_free_long_range(zv->zv_objset, ZVOL_OBJ, 0,
1761             DMU_OBJECT_END);
1762         /* wait for dmu_free_long_range to actually free the blocks */
1763         txg_wait_synced(dmu_objset_pool(zv->zv_objset), 0);
1764
1765         tx = dmu_tx_create(os);
1766         dmu_tx_hold_zap(tx, ZVOL_ZAP_OBJ, TRUE, NULL);
1767         dmu_tx_hold_bonus(tx, ZVOL_OBJ);
1768         error = dmu_tx_assign(tx, TXG_WAIT);
1769         if (error) {
1770                 dmu_tx_abort(tx);
1771                 return (error);
1772         }
1773
1774         /*
1775          * If we are resizing the dump device then we only need to
1776          * update the refreservation to match the newly updated
1777          * zvolsize. Otherwise, we save off the original state of the
1778          * zvol so that we can restore them if the zvol is ever undumpified.
1779          */
1780         if (resize) {
1781                 error = zap_update(os, ZVOL_ZAP_OBJ,
1782                     zfs_prop_to_name(ZFS_PROP_REFRESERVATION), 8, 1,
1783                     &zv->zv_volsize, tx);
1784         } else {
1785                 uint64_t checksum, compress, refresrv, vbs, dedup;
1786
1787                 error = dsl_prop_get_integer(zv->zv_name,
1788                     zfs_prop_to_name(ZFS_PROP_COMPRESSION), &compress, NULL);
1789                 error = error ? error : dsl_prop_get_integer(zv->zv_name,
1790                     zfs_prop_to_name(ZFS_PROP_CHECKSUM), &checksum, NULL);
1791                 error = error ? error : dsl_prop_get_integer(zv->zv_name,
1792                     zfs_prop_to_name(ZFS_PROP_REFRESERVATION), &refresrv, NULL);
1793                 error = error ? error : dsl_prop_get_integer(zv->zv_name,
1794                     zfs_prop_to_name(ZFS_PROP_VOLBLOCKSIZE), &vbs, NULL);
1795                 if (version >= SPA_VERSION_DEDUP) {
1796                         error = error ? error :
1797                             dsl_prop_get_integer(zv->zv_name,
1798                             zfs_prop_to_name(ZFS_PROP_DEDUP), &dedup, NULL);
1799                 }
1800
1801                 error = error ? error : zap_update(os, ZVOL_ZAP_OBJ,
1802                     zfs_prop_to_name(ZFS_PROP_COMPRESSION), 8, 1,
1803                     &compress, tx);
1804                 error = error ? error : zap_update(os, ZVOL_ZAP_OBJ,
1805                     zfs_prop_to_name(ZFS_PROP_CHECKSUM), 8, 1, &checksum, tx);
1806                 error = error ? error : zap_update(os, ZVOL_ZAP_OBJ,
1807                     zfs_prop_to_name(ZFS_PROP_REFRESERVATION), 8, 1,
1808                     &refresrv, tx);
1809                 error = error ? error : zap_update(os, ZVOL_ZAP_OBJ,
1810                     zfs_prop_to_name(ZFS_PROP_VOLBLOCKSIZE), 8, 1,
1811                     &vbs, tx);
1812                 error = error ? error : dmu_object_set_blocksize(
1813                     os, ZVOL_OBJ, SPA_MAXBLOCKSIZE, 0, tx);
1814                 if (version >= SPA_VERSION_DEDUP) {
1815                         error = error ? error : zap_update(os, ZVOL_ZAP_OBJ,
1816                             zfs_prop_to_name(ZFS_PROP_DEDUP), 8, 1,
1817                             &dedup, tx);
1818                 }
1819                 if (error == 0)
1820                         zv->zv_volblocksize = SPA_MAXBLOCKSIZE;
1821         }
1822         dmu_tx_commit(tx);
1823
1824         /*
1825          * We only need update the zvol's property if we are initializing
1826          * the dump area for the first time.
1827          */
1828         if (!resize) {
1829                 VERIFY(nvlist_alloc(&nv, NV_UNIQUE_NAME, KM_SLEEP) == 0);
1830                 VERIFY(nvlist_add_uint64(nv,
1831                     zfs_prop_to_name(ZFS_PROP_REFRESERVATION), 0) == 0);
1832                 VERIFY(nvlist_add_uint64(nv,
1833                     zfs_prop_to_name(ZFS_PROP_COMPRESSION),
1834                     ZIO_COMPRESS_OFF) == 0);
1835                 VERIFY(nvlist_add_uint64(nv,
1836                     zfs_prop_to_name(ZFS_PROP_CHECKSUM),
1837                     ZIO_CHECKSUM_OFF) == 0);
1838                 if (version >= SPA_VERSION_DEDUP) {
1839                         VERIFY(nvlist_add_uint64(nv,
1840                             zfs_prop_to_name(ZFS_PROP_DEDUP),
1841                             ZIO_CHECKSUM_OFF) == 0);
1842                 }
1843
1844                 error = zfs_set_prop_nvlist(zv->zv_name, ZPROP_SRC_LOCAL,
1845                     nv, NULL);
1846                 nvlist_free(nv);
1847
1848                 if (error)
1849                         return (error);
1850         }
1851
1852         /* Allocate the space for the dump */
1853         error = zvol_prealloc(zv);
1854         return (error);
1855 }
1856
1857 static int
1858 zvol_dumpify(zvol_state_t *zv)
1859 {
1860         int error = 0;
1861         uint64_t dumpsize = 0;
1862         dmu_tx_t *tx;
1863         objset_t *os = zv->zv_objset;
1864
1865         if (zv->zv_flags & ZVOL_RDONLY)
1866                 return (EROFS);
1867
1868         if (zap_lookup(zv->zv_objset, ZVOL_ZAP_OBJ, ZVOL_DUMPSIZE,
1869             8, 1, &dumpsize) != 0 || dumpsize != zv->zv_volsize) {
1870                 boolean_t resize = (dumpsize > 0) ? B_TRUE : B_FALSE;
1871
1872                 if ((error = zvol_dump_init(zv, resize)) != 0) {
1873                         (void) zvol_dump_fini(zv);
1874                         return (error);
1875                 }
1876         }
1877
1878         /*
1879          * Build up our lba mapping.
1880          */
1881         error = zvol_get_lbas(zv);
1882         if (error) {
1883                 (void) zvol_dump_fini(zv);
1884                 return (error);
1885         }
1886
1887         tx = dmu_tx_create(os);
1888         dmu_tx_hold_zap(tx, ZVOL_ZAP_OBJ, TRUE, NULL);
1889         error = dmu_tx_assign(tx, TXG_WAIT);
1890         if (error) {
1891                 dmu_tx_abort(tx);
1892                 (void) zvol_dump_fini(zv);
1893                 return (error);
1894         }
1895
1896         zv->zv_flags |= ZVOL_DUMPIFIED;
1897         error = zap_update(os, ZVOL_ZAP_OBJ, ZVOL_DUMPSIZE, 8, 1,
1898             &zv->zv_volsize, tx);
1899         dmu_tx_commit(tx);
1900
1901         if (error) {
1902                 (void) zvol_dump_fini(zv);
1903                 return (error);
1904         }
1905
1906         txg_wait_synced(dmu_objset_pool(os), 0);
1907         return (0);
1908 }
1909
1910 static int
1911 zvol_dump_fini(zvol_state_t *zv)
1912 {
1913         dmu_tx_t *tx;
1914         objset_t *os = zv->zv_objset;
1915         nvlist_t *nv;
1916         int error = 0;
1917         uint64_t checksum, compress, refresrv, vbs, dedup;
1918         uint64_t version = spa_version(dmu_objset_spa(zv->zv_objset));
1919
1920         /*
1921          * Attempt to restore the zvol back to its pre-dumpified state.
1922          * This is a best-effort attempt as it's possible that not all
1923          * of these properties were initialized during the dumpify process
1924          * (i.e. error during zvol_dump_init).
1925          */
1926
1927         tx = dmu_tx_create(os);
1928         dmu_tx_hold_zap(tx, ZVOL_ZAP_OBJ, TRUE, NULL);
1929         error = dmu_tx_assign(tx, TXG_WAIT);
1930         if (error) {
1931                 dmu_tx_abort(tx);
1932                 return (error);
1933         }
1934         (void) zap_remove(os, ZVOL_ZAP_OBJ, ZVOL_DUMPSIZE, tx);
1935         dmu_tx_commit(tx);
1936
1937         (void) zap_lookup(zv->zv_objset, ZVOL_ZAP_OBJ,
1938             zfs_prop_to_name(ZFS_PROP_CHECKSUM), 8, 1, &checksum);
1939         (void) zap_lookup(zv->zv_objset, ZVOL_ZAP_OBJ,
1940             zfs_prop_to_name(ZFS_PROP_COMPRESSION), 8, 1, &compress);
1941         (void) zap_lookup(zv->zv_objset, ZVOL_ZAP_OBJ,
1942             zfs_prop_to_name(ZFS_PROP_REFRESERVATION), 8, 1, &refresrv);
1943         (void) zap_lookup(zv->zv_objset, ZVOL_ZAP_OBJ,
1944             zfs_prop_to_name(ZFS_PROP_VOLBLOCKSIZE), 8, 1, &vbs);
1945
1946         VERIFY(nvlist_alloc(&nv, NV_UNIQUE_NAME, KM_SLEEP) == 0);
1947         (void) nvlist_add_uint64(nv,
1948             zfs_prop_to_name(ZFS_PROP_CHECKSUM), checksum);
1949         (void) nvlist_add_uint64(nv,
1950             zfs_prop_to_name(ZFS_PROP_COMPRESSION), compress);
1951         (void) nvlist_add_uint64(nv,
1952             zfs_prop_to_name(ZFS_PROP_REFRESERVATION), refresrv);
1953         if (version >= SPA_VERSION_DEDUP &&
1954             zap_lookup(zv->zv_objset, ZVOL_ZAP_OBJ,
1955             zfs_prop_to_name(ZFS_PROP_DEDUP), 8, 1, &dedup) == 0) {
1956                 (void) nvlist_add_uint64(nv,
1957                     zfs_prop_to_name(ZFS_PROP_DEDUP), dedup);
1958         }
1959         (void) zfs_set_prop_nvlist(zv->zv_name, ZPROP_SRC_LOCAL,
1960             nv, NULL);
1961         nvlist_free(nv);
1962
1963         zvol_free_extents(zv);
1964         zv->zv_flags &= ~ZVOL_DUMPIFIED;
1965         (void) dmu_free_long_range(os, ZVOL_OBJ, 0, DMU_OBJECT_END);
1966         /* wait for dmu_free_long_range to actually free the blocks */
1967         txg_wait_synced(dmu_objset_pool(zv->zv_objset), 0);
1968         tx = dmu_tx_create(os);
1969         dmu_tx_hold_bonus(tx, ZVOL_OBJ);
1970         error = dmu_tx_assign(tx, TXG_WAIT);
1971         if (error) {
1972                 dmu_tx_abort(tx);
1973                 return (error);
1974         }
1975         if (dmu_object_set_blocksize(os, ZVOL_OBJ, vbs, 0, tx) == 0)
1976                 zv->zv_volblocksize = vbs;
1977         dmu_tx_commit(tx);
1978
1979         return (0);
1980 }
1981 #endif  /* sun */
1982
1983 static zvol_state_t *
1984 zvol_geom_create(const char *name)
1985 {
1986         struct g_provider *pp;
1987         struct g_geom *gp;
1988         zvol_state_t *zv;
1989
1990         gp = g_new_geomf(&zfs_zvol_class, "zfs::zvol::%s", name);
1991         gp->start = zvol_geom_start;
1992         gp->access = zvol_geom_access;
1993         pp = g_new_providerf(gp, "%s/%s", ZVOL_DRIVER, name);
1994         pp->sectorsize = DEV_BSIZE;
1995
1996         zv = kmem_zalloc(sizeof(*zv), KM_SLEEP);
1997         zv->zv_provider = pp;
1998         zv->zv_state = 0;
1999         bioq_init(&zv->zv_queue);
2000         mtx_init(&zv->zv_queue_mtx, "zvol", NULL, MTX_DEF);
2001
2002         pp->private = zv;
2003
2004         return (zv);
2005 }
2006
2007 static void
2008 zvol_geom_run(zvol_state_t *zv)
2009 {
2010         struct g_provider *pp;
2011
2012         pp = zv->zv_provider;
2013         g_error_provider(pp, 0);
2014
2015         kproc_kthread_add(zvol_geom_worker, zv, &zfsproc, NULL, 0, 0,
2016             "zfskern", "zvol %s", pp->name + sizeof(ZVOL_DRIVER));
2017 }
2018
2019 static void
2020 zvol_geom_destroy(zvol_state_t *zv)
2021 {
2022         struct g_provider *pp;
2023
2024         g_topology_assert();
2025
2026         mtx_lock(&zv->zv_queue_mtx);
2027         zv->zv_state = 1;
2028         wakeup_one(&zv->zv_queue);
2029         while (zv->zv_state != 2)
2030                 msleep(&zv->zv_state, &zv->zv_queue_mtx, 0, "zvol:w", 0);
2031         mtx_destroy(&zv->zv_queue_mtx);
2032
2033         pp = zv->zv_provider;
2034         zv->zv_provider = NULL;
2035         pp->private = NULL;
2036         g_wither_geom(pp->geom, ENXIO);
2037
2038         kmem_free(zv, sizeof(*zv));
2039 }
2040
2041 static int
2042 zvol_geom_access(struct g_provider *pp, int acr, int acw, int ace)
2043 {
2044         int count, error, flags;
2045
2046         g_topology_assert();
2047
2048         /*
2049          * To make it easier we expect either open or close, but not both
2050          * at the same time.
2051          */
2052         KASSERT((acr >= 0 && acw >= 0 && ace >= 0) ||
2053             (acr <= 0 && acw <= 0 && ace <= 0),
2054             ("Unsupported access request to %s (acr=%d, acw=%d, ace=%d).",
2055             pp->name, acr, acw, ace));
2056
2057         if (pp->private == NULL) {
2058                 if (acr <= 0 && acw <= 0 && ace <= 0)
2059                         return (0);
2060                 return (pp->error);
2061         }
2062
2063         /*
2064          * We don't pass FEXCL flag to zvol_open()/zvol_close() if ace != 0,
2065          * because GEOM already handles that and handles it a bit differently.
2066          * GEOM allows for multiple read/exclusive consumers and ZFS allows
2067          * only one exclusive consumer, no matter if it is reader or writer.
2068          * I like better the way GEOM works so I'll leave it for GEOM to
2069          * decide what to do.
2070          */
2071
2072         count = acr + acw + ace;
2073         if (count == 0)
2074                 return (0);
2075
2076         flags = 0;
2077         if (acr != 0 || ace != 0)
2078                 flags |= FREAD;
2079         if (acw != 0)
2080                 flags |= FWRITE;
2081
2082         g_topology_unlock();
2083         if (count > 0)
2084                 error = zvol_open(pp, flags, count);
2085         else
2086                 error = zvol_close(pp, flags, -count);
2087         g_topology_lock();
2088         return (error);
2089 }
2090
2091 static void
2092 zvol_geom_start(struct bio *bp)
2093 {
2094         zvol_state_t *zv;
2095         boolean_t first;
2096
2097         switch (bp->bio_cmd) {
2098         case BIO_READ:
2099         case BIO_WRITE:
2100         case BIO_FLUSH:
2101                 zv = bp->bio_to->private;
2102                 ASSERT(zv != NULL);
2103                 mtx_lock(&zv->zv_queue_mtx);
2104                 first = (bioq_first(&zv->zv_queue) == NULL);
2105                 bioq_insert_tail(&zv->zv_queue, bp);
2106                 mtx_unlock(&zv->zv_queue_mtx);
2107                 if (first)
2108                         wakeup_one(&zv->zv_queue);
2109                 break;
2110         case BIO_GETATTR:
2111         case BIO_DELETE:
2112         default:
2113                 g_io_deliver(bp, EOPNOTSUPP);
2114                 break;
2115         }
2116 }
2117
2118 static void
2119 zvol_geom_worker(void *arg)
2120 {
2121         zvol_state_t *zv;
2122         struct bio *bp;
2123
2124         thread_lock(curthread);
2125         sched_prio(curthread, PRIBIO);
2126         thread_unlock(curthread);
2127
2128         zv = arg;
2129         for (;;) {
2130                 mtx_lock(&zv->zv_queue_mtx);
2131                 bp = bioq_takefirst(&zv->zv_queue);
2132                 if (bp == NULL) {
2133                         if (zv->zv_state == 1) {
2134                                 zv->zv_state = 2;
2135                                 wakeup(&zv->zv_state);
2136                                 mtx_unlock(&zv->zv_queue_mtx);
2137                                 kthread_exit();
2138                         }
2139                         msleep(&zv->zv_queue, &zv->zv_queue_mtx, PRIBIO | PDROP,
2140                             "zvol:io", 0);
2141                         continue;
2142                 }
2143                 mtx_unlock(&zv->zv_queue_mtx);
2144                 switch (bp->bio_cmd) {
2145                 case BIO_FLUSH:
2146                         zil_commit(zv->zv_zilog, ZVOL_OBJ);
2147                         g_io_deliver(bp, 0);
2148                         break;
2149                 case BIO_READ:
2150                 case BIO_WRITE:
2151                         zvol_strategy(bp);
2152                         break;
2153                 }
2154         }
2155 }
2156
2157 extern boolean_t dataset_name_hidden(const char *name);
2158
2159 static int
2160 zvol_create_snapshots(objset_t *os, const char *name)
2161 {
2162         uint64_t cookie, obj;
2163         char *sname;
2164         int error, len;
2165
2166         cookie = obj = 0;
2167         sname = kmem_alloc(MAXPATHLEN, KM_SLEEP);
2168
2169         (void) dmu_objset_find(name, dmu_objset_prefetch, NULL,
2170             DS_FIND_SNAPSHOTS);
2171
2172         for (;;) {
2173                 len = snprintf(sname, MAXPATHLEN, "%s@", name);
2174                 if (len >= MAXPATHLEN) {
2175                         dmu_objset_rele(os, FTAG);
2176                         error = ENAMETOOLONG;
2177                         break;
2178                 }
2179
2180                 error = dmu_snapshot_list_next(os, MAXPATHLEN - len,
2181                     sname + len, &obj, &cookie, NULL);
2182                 if (error != 0) {
2183                         if (error == ENOENT)
2184                                 error = 0;
2185                         break;
2186                 }
2187
2188                 if ((error = zvol_create_minor(sname)) != 0) {
2189                         printf("ZFS WARNING: Unable to create ZVOL %s (error=%d).\n",
2190                             sname, error);
2191                         break;
2192                 }
2193         }
2194
2195         kmem_free(sname, MAXPATHLEN);
2196         return (error);
2197 }
2198
2199 int
2200 zvol_create_minors(const char *name)
2201 {
2202         uint64_t cookie;
2203         objset_t *os;
2204         char *osname, *p;
2205         int error, len;
2206
2207         if (dataset_name_hidden(name))
2208                 return (0);
2209
2210         if ((error = dmu_objset_hold(name, FTAG, &os)) != 0) {
2211                 printf("ZFS WARNING: Unable to put hold on %s (error=%d).\n",
2212                     name, error);
2213                 return (error);
2214         }
2215         if (dmu_objset_type(os) == DMU_OST_ZVOL) {
2216                 if ((error = zvol_create_minor(name)) == 0)
2217                         error = zvol_create_snapshots(os, name);
2218                 else {
2219                         printf("ZFS WARNING: Unable to create ZVOL %s (error=%d).\n",
2220                             name, error);
2221                 }
2222                 dmu_objset_rele(os, FTAG);
2223                 return (error);
2224         }
2225         if (dmu_objset_type(os) != DMU_OST_ZFS) {
2226                 dmu_objset_rele(os, FTAG);
2227                 return (0);
2228         }
2229
2230         osname = kmem_alloc(MAXPATHLEN, KM_SLEEP);
2231         if (snprintf(osname, MAXPATHLEN, "%s/", name) >= MAXPATHLEN) {
2232                 dmu_objset_rele(os, FTAG);
2233                 kmem_free(osname, MAXPATHLEN);
2234                 return (ENOENT);
2235         }
2236         p = osname + strlen(osname);
2237         len = MAXPATHLEN - (p - osname);
2238
2239         /* Prefetch the datasets. */
2240         cookie = 0;
2241         while (dmu_dir_list_next(os, len, p, NULL, &cookie) == 0) {
2242                 if (!dataset_name_hidden(osname))
2243                         (void) dmu_objset_prefetch(osname, NULL);
2244         }
2245
2246         cookie = 0;
2247         while (dmu_dir_list_next(os, MAXPATHLEN - (p - osname), p, NULL,
2248             &cookie) == 0) {
2249                 dmu_objset_rele(os, FTAG);
2250                 (void)zvol_create_minors(osname);
2251                 if ((error = dmu_objset_hold(name, FTAG, &os)) != 0) {
2252                         printf("ZFS WARNING: Unable to put hold on %s (error=%d).\n",
2253                             name, error);
2254                         return (error);
2255                 }
2256         }
2257
2258         dmu_objset_rele(os, FTAG);
2259         kmem_free(osname, MAXPATHLEN);
2260         return (0);
2261 }
2262
2263 static void
2264 zvol_rename_minor(struct g_geom *gp, const char *newname)
2265 {
2266         struct g_provider *pp;
2267         zvol_state_t *zv;
2268
2269         ASSERT(MUTEX_HELD(&spa_namespace_lock));
2270         g_topology_assert();
2271
2272         pp = LIST_FIRST(&gp->provider);
2273         ASSERT(pp != NULL);
2274         zv = pp->private;
2275         ASSERT(zv != NULL);
2276
2277         zv->zv_provider = NULL;
2278         g_wither_provider(pp, ENXIO);
2279
2280         pp = g_new_providerf(gp, "%s/%s", ZVOL_DRIVER, newname);
2281         pp->sectorsize = DEV_BSIZE;
2282         pp->mediasize = zv->zv_volsize;
2283         pp->private = zv;
2284         zv->zv_provider = pp;
2285         strlcpy(zv->zv_name, newname, sizeof(zv->zv_name));
2286         g_error_provider(pp, 0);
2287 }
2288
2289 void
2290 zvol_rename_minors(const char *oldname, const char *newname)
2291 {
2292         char name[MAXPATHLEN];
2293         struct g_provider *pp;
2294         struct g_geom *gp;
2295         size_t oldnamelen, newnamelen;
2296         zvol_state_t *zv;
2297         char *namebuf;
2298
2299         oldnamelen = strlen(oldname);
2300         newnamelen = strlen(newname);
2301
2302         DROP_GIANT();
2303         mutex_enter(&spa_namespace_lock);
2304         g_topology_lock();
2305
2306         LIST_FOREACH(gp, &zfs_zvol_class.geom, geom) {
2307                 pp = LIST_FIRST(&gp->provider);
2308                 if (pp == NULL)
2309                         continue;
2310                 zv = pp->private;
2311                 if (zv == NULL)
2312                         continue;
2313                 if (strcmp(zv->zv_name, oldname) == 0) {
2314                         zvol_rename_minor(gp, newname);
2315                 } else if (strncmp(zv->zv_name, oldname, oldnamelen) == 0 &&
2316                     (zv->zv_name[oldnamelen] == '/' ||
2317                      zv->zv_name[oldnamelen] == '@')) {
2318                         snprintf(name, sizeof(name), "%s%c%s", newname,
2319                             zv->zv_name[oldnamelen],
2320                             zv->zv_name + oldnamelen + 1);
2321                         zvol_rename_minor(gp, name);
2322                 }
2323         }
2324
2325         g_topology_unlock();
2326         mutex_exit(&spa_namespace_lock);
2327         PICKUP_GIANT();
2328 }