]> git.proxmox.com Git - mirror_zfs.git/blame - module/zfs/zvol.c
Reserve DMU_BACKUP_FEATURE for ZSTD
[mirror_zfs.git] / module / zfs / zvol.c
CommitLineData
60101509
BB
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) 2008-2010 Lawrence Livermore National Security, LLC.
23 * Produced at Lawrence Livermore National Laboratory (cf, DISCLAIMER).
24 * Rewritten for Linux by Brian Behlendorf <behlendorf1@llnl.gov>.
25 * LLNL-CODE-403049.
26 *
27 * ZFS volume emulation driver.
28 *
29 * Makes a DMU object look like a volume of arbitrary size, up to 2^64 bytes.
30 * Volumes are accessed through the symbolic links named:
31 *
32 * /dev/<pool_name>/<dataset_name>
33 *
34 * Volumes are persistent through reboot and module load. No user command
35 * needs to be run before opening and using a device.
460a0213
DM
36 *
37 * Copyright 2014 Nexenta Systems, Inc. All rights reserved.
5428dc51 38 * Copyright (c) 2016 Actifio, Inc. All rights reserved.
02dc43bc 39 * Copyright (c) 2012, 2017 by Delphix. All rights reserved.
60101509
BB
40 */
41
5559ba09
BP
42/*
43 * Note on locking of zvol state structures.
44 *
45 * These structures are used to maintain internal state used to emulate block
46 * devices on top of zvols. In particular, management of device minor number
47 * operations - create, remove, rename, and set_snapdev - involves access to
48 * these structures. The zvol_state_lock is primarily used to protect the
49 * zvol_state_list. The zv->zv_state_lock is used to protect the contents
50 * of the zvol_state_t structures, as well as to make sure that when the
51 * time comes to remove the structure from the list, it is not in use, and
52 * therefore, it can be taken off zvol_state_list and freed.
53 *
58404a73
BP
54 * The zv_suspend_lock was introduced to allow for suspending I/O to a zvol,
55 * e.g. for the duration of receive and rollback operations. This lock can be
56 * held for significant periods of time. Given that it is undesirable to hold
57 * mutexes for long periods of time, the following lock ordering applies:
58 * - take zvol_state_lock if necessary, to protect zvol_state_list
59 * - take zv_suspend_lock if necessary, by the code path in question
60 * - take zv_state_lock to protect zvol_state_t
61 *
62 * The minor operations are issued to spa->spa_zvol_taskq queues, that are
5559ba09
BP
63 * single-threaded (to preserve order of minor operations), and are executed
64 * through the zvol_task_cb that dispatches the specific operations. Therefore,
65 * these operations are serialized per pool. Consequently, we can be certain
66 * that for a given zvol, there is only one operation at a time in progress.
67 * That is why one can be sure that first, zvol_state_t for a given zvol is
68 * allocated and placed on zvol_state_list, and then other minor operations
69 * for this zvol are going to proceed in the order of issue.
70 *
71 * It is also worth keeping in mind that once add_disk() is called, the zvol is
72 * announced to the world, and zvol_open()/zvol_release() can be called at any
73 * time. Incidentally, add_disk() itself calls zvol_open()->zvol_first_open()
74 * and zvol_release()->zvol_last_close() directly as well.
75 */
76
03c6040b 77#include <sys/dbuf.h>
60101509
BB
78#include <sys/dmu_traverse.h>
79#include <sys/dsl_dataset.h>
80#include <sys/dsl_prop.h>
a0bd735a 81#include <sys/dsl_dir.h>
60101509 82#include <sys/zap.h>
4cb7b9c5 83#include <sys/zfeature.h>
60101509 84#include <sys/zil_impl.h>
460a0213 85#include <sys/dmu_tx.h>
60101509
BB
86#include <sys/zio.h>
87#include <sys/zfs_rlock.h>
88#include <sys/zfs_znode.h>
a0bd735a 89#include <sys/spa_impl.h>
60101509 90#include <sys/zvol.h>
61e90960 91#include <linux/blkdev_compat.h>
60101509 92
74497b7a 93unsigned int zvol_inhibit_dev = 0;
60101509 94unsigned int zvol_major = ZVOL_MAJOR;
692e55b8 95unsigned int zvol_threads = 32;
8fa5250f 96unsigned int zvol_request_sync = 0;
9965059a 97unsigned int zvol_prefetch_bytes = (128 * 1024);
7c0e5708 98unsigned long zvol_max_discard_blocks = 16384;
cf8738d8 99unsigned int zvol_volmode = ZFS_VOLMODE_GEOM;
60101509 100
692e55b8 101static taskq_t *zvol_taskq;
60101509
BB
102static kmutex_t zvol_state_lock;
103static list_t zvol_state_list;
60101509 104
d45e010d
CC
105#define ZVOL_HT_SIZE 1024
106static struct hlist_head *zvol_htable;
107#define ZVOL_HT_HEAD(hash) (&zvol_htable[(hash) & (ZVOL_HT_SIZE-1)])
4a5d7f82
MA
108
109static struct ida zvol_ida;
d45e010d 110
60101509
BB
111/*
112 * The in-core state of each volume.
113 */
040dab99 114struct zvol_state {
4c0d8e50 115 char zv_name[MAXNAMELEN]; /* name */
ce37ebd2
BB
116 uint64_t zv_volsize; /* advertised space */
117 uint64_t zv_volblocksize; /* volume block size */
60101509
BB
118 objset_t *zv_objset; /* objset handle */
119 uint32_t zv_flags; /* ZVOL_* flags */
120 uint32_t zv_open_count; /* open counts */
121 uint32_t zv_changed; /* disk changed */
122 zilog_t *zv_zilog; /* ZIL handle */
d88895a0 123 zfs_rlock_t zv_range_lock; /* range lock */
5228cf01 124 dnode_t *zv_dn; /* dnode hold */
60101509
BB
125 dev_t zv_dev; /* device id */
126 struct gendisk *zv_disk; /* generic disk */
127 struct request_queue *zv_queue; /* request queue */
60101509 128 list_node_t zv_next; /* next zvol_state_t linkage */
d45e010d
CC
129 uint64_t zv_hash; /* name hash */
130 struct hlist_node zv_hlink; /* hash link */
5559ba09 131 kmutex_t zv_state_lock; /* protects zvol_state_t */
040dab99
CC
132 atomic_t zv_suspend_ref; /* refcount for suspend */
133 krwlock_t zv_suspend_lock; /* suspend lock */
134};
60101509 135
a0bd735a
BP
136typedef enum {
137 ZVOL_ASYNC_CREATE_MINORS,
138 ZVOL_ASYNC_REMOVE_MINORS,
139 ZVOL_ASYNC_RENAME_MINORS,
140 ZVOL_ASYNC_SET_SNAPDEV,
cf8738d8 141 ZVOL_ASYNC_SET_VOLMODE,
a0bd735a
BP
142 ZVOL_ASYNC_MAX
143} zvol_async_op_t;
144
145typedef struct {
146 zvol_async_op_t op;
147 char pool[MAXNAMELEN];
148 char name1[MAXNAMELEN];
149 char name2[MAXNAMELEN];
150 zprop_source_t source;
cf8738d8 151 uint64_t value;
a0bd735a
BP
152} zvol_task_t;
153
60101509
BB
154#define ZVOL_RDONLY 0x1
155
d45e010d
CC
156static uint64_t
157zvol_name_hash(const char *name)
60101509 158{
d45e010d
CC
159 int i;
160 uint64_t crc = -1ULL;
161 uint8_t *p = (uint8_t *)name;
162 ASSERT(zfs_crc64_table[128] == ZFS_CRC64_POLY);
163 for (i = 0; i < MAXNAMELEN - 1 && *p; i++, p++) {
164 crc = (crc >> 8) ^ zfs_crc64_table[(crc ^ (*p)) & 0xFF];
60101509 165 }
d45e010d 166 return (crc);
60101509
BB
167}
168
169/*
58404a73
BP
170 * Find a zvol_state_t given the full major+minor dev_t. If found,
171 * return with zv_state_lock taken, otherwise, return (NULL) without
172 * taking zv_state_lock.
60101509
BB
173 */
174static zvol_state_t *
175zvol_find_by_dev(dev_t dev)
176{
177 zvol_state_t *zv;
178
58404a73 179 mutex_enter(&zvol_state_lock);
60101509 180 for (zv = list_head(&zvol_state_list); zv != NULL;
ce37ebd2 181 zv = list_next(&zvol_state_list, zv)) {
58404a73
BP
182 mutex_enter(&zv->zv_state_lock);
183 if (zv->zv_dev == dev) {
184 mutex_exit(&zvol_state_lock);
ce37ebd2 185 return (zv);
58404a73
BP
186 }
187 mutex_exit(&zv->zv_state_lock);
60101509 188 }
58404a73 189 mutex_exit(&zvol_state_lock);
60101509 190
ce37ebd2 191 return (NULL);
60101509
BB
192}
193
194/*
d45e010d 195 * Find a zvol_state_t given the name and hash generated by zvol_name_hash.
58404a73
BP
196 * If found, return with zv_suspend_lock and zv_state_lock taken, otherwise,
197 * return (NULL) without the taking locks. The zv_suspend_lock is always taken
198 * before zv_state_lock. The mode argument indicates the mode (including none)
199 * for zv_suspend_lock to be taken.
60101509
BB
200 */
201static zvol_state_t *
58404a73 202zvol_find_by_name_hash(const char *name, uint64_t hash, int mode)
60101509
BB
203{
204 zvol_state_t *zv;
94183a9d 205 struct hlist_node *p = NULL;
60101509 206
58404a73 207 mutex_enter(&zvol_state_lock);
d45e010d
CC
208 hlist_for_each(p, ZVOL_HT_HEAD(hash)) {
209 zv = hlist_entry(p, zvol_state_t, zv_hlink);
58404a73 210 mutex_enter(&zv->zv_state_lock);
d45e010d 211 if (zv->zv_hash == hash &&
58404a73
BP
212 strncmp(zv->zv_name, name, MAXNAMELEN) == 0) {
213 /*
214 * this is the right zvol, take the locks in the
215 * right order
216 */
217 if (mode != RW_NONE &&
218 !rw_tryenter(&zv->zv_suspend_lock, mode)) {
219 mutex_exit(&zv->zv_state_lock);
220 rw_enter(&zv->zv_suspend_lock, mode);
221 mutex_enter(&zv->zv_state_lock);
222 /*
223 * zvol cannot be renamed as we continue
224 * to hold zvol_state_lock
225 */
226 ASSERT(zv->zv_hash == hash &&
227 strncmp(zv->zv_name, name, MAXNAMELEN)
228 == 0);
229 }
230 mutex_exit(&zvol_state_lock);
ce37ebd2 231 return (zv);
58404a73
BP
232 }
233 mutex_exit(&zv->zv_state_lock);
60101509 234 }
58404a73
BP
235 mutex_exit(&zvol_state_lock);
236
ce37ebd2 237 return (NULL);
60101509
BB
238}
239
d45e010d 240/*
58404a73
BP
241 * Find a zvol_state_t given the name.
242 * If found, return with zv_suspend_lock and zv_state_lock taken, otherwise,
243 * return (NULL) without the taking locks. The zv_suspend_lock is always taken
244 * before zv_state_lock. The mode argument indicates the mode (including none)
245 * for zv_suspend_lock to be taken.
d45e010d
CC
246 */
247static zvol_state_t *
58404a73 248zvol_find_by_name(const char *name, int mode)
d45e010d 249{
58404a73 250 return (zvol_find_by_name_hash(name, zvol_name_hash(name), mode));
d45e010d
CC
251}
252
6c285672
JL
253
254/*
255 * Given a path, return TRUE if path is a ZVOL.
256 */
257boolean_t
258zvol_is_zvol(const char *device)
259{
260 struct block_device *bdev;
261 unsigned int major;
262
e02aaf17 263 bdev = vdev_lookup_bdev(device);
6c285672
JL
264 if (IS_ERR(bdev))
265 return (B_FALSE);
266
267 major = MAJOR(bdev->bd_dev);
268 bdput(bdev);
269
270 if (major == zvol_major)
ce37ebd2 271 return (B_TRUE);
6c285672
JL
272
273 return (B_FALSE);
274}
275
60101509
BB
276/*
277 * ZFS_IOC_CREATE callback handles dmu zvol and zap object creation.
278 */
279void
280zvol_create_cb(objset_t *os, void *arg, cred_t *cr, dmu_tx_t *tx)
281{
282 zfs_creat_t *zct = arg;
283 nvlist_t *nvprops = zct->zct_props;
284 int error;
285 uint64_t volblocksize, volsize;
286
287 VERIFY(nvlist_lookup_uint64(nvprops,
288 zfs_prop_to_name(ZFS_PROP_VOLSIZE), &volsize) == 0);
289 if (nvlist_lookup_uint64(nvprops,
290 zfs_prop_to_name(ZFS_PROP_VOLBLOCKSIZE), &volblocksize) != 0)
291 volblocksize = zfs_prop_default_numeric(ZFS_PROP_VOLBLOCKSIZE);
292
293 /*
294 * These properties must be removed from the list so the generic
295 * property setting step won't apply to them.
296 */
297 VERIFY(nvlist_remove_all(nvprops,
298 zfs_prop_to_name(ZFS_PROP_VOLSIZE)) == 0);
299 (void) nvlist_remove_all(nvprops,
300 zfs_prop_to_name(ZFS_PROP_VOLBLOCKSIZE));
301
302 error = dmu_object_claim(os, ZVOL_OBJ, DMU_OT_ZVOL, volblocksize,
303 DMU_OT_NONE, 0, tx);
304 ASSERT(error == 0);
305
306 error = zap_create_claim(os, ZVOL_ZAP_OBJ, DMU_OT_ZVOL_PROP,
307 DMU_OT_NONE, 0, tx);
308 ASSERT(error == 0);
309
310 error = zap_update(os, ZVOL_ZAP_OBJ, "size", 8, 1, &volsize, tx);
311 ASSERT(error == 0);
312}
313
314/*
315 * ZFS_IOC_OBJSET_STATS entry point.
316 */
317int
318zvol_get_stats(objset_t *os, nvlist_t *nv)
319{
320 int error;
321 dmu_object_info_t *doi;
322 uint64_t val;
323
324 error = zap_lookup(os, ZVOL_ZAP_OBJ, "size", 8, 1, &val);
325 if (error)
ce37ebd2 326 return (SET_ERROR(error));
60101509
BB
327
328 dsl_prop_nvlist_add_uint64(nv, ZFS_PROP_VOLSIZE, val);
ce37ebd2 329 doi = kmem_alloc(sizeof (dmu_object_info_t), KM_SLEEP);
60101509
BB
330 error = dmu_object_info(os, ZVOL_OBJ, doi);
331
332 if (error == 0) {
333 dsl_prop_nvlist_add_uint64(nv, ZFS_PROP_VOLBLOCKSIZE,
334 doi->doi_data_block_size);
335 }
336
ce37ebd2 337 kmem_free(doi, sizeof (dmu_object_info_t));
60101509 338
ce37ebd2 339 return (SET_ERROR(error));
60101509
BB
340}
341
35d3e322
BB
342static void
343zvol_size_changed(zvol_state_t *zv, uint64_t volsize)
344{
345 struct block_device *bdev;
346
58404a73
BP
347 ASSERT(MUTEX_HELD(&zv->zv_state_lock));
348
35d3e322
BB
349 bdev = bdget_disk(zv->zv_disk, 0);
350 if (bdev == NULL)
351 return;
58404a73 352
35d3e322
BB
353 set_capacity(zv->zv_disk, volsize >> 9);
354 zv->zv_volsize = volsize;
355 check_disk_size_change(zv->zv_disk, bdev);
35d3e322
BB
356
357 bdput(bdev);
358}
359
60101509
BB
360/*
361 * Sanity check volume size.
362 */
363int
364zvol_check_volsize(uint64_t volsize, uint64_t blocksize)
365{
366 if (volsize == 0)
2e528b49 367 return (SET_ERROR(EINVAL));
60101509
BB
368
369 if (volsize % blocksize != 0)
2e528b49 370 return (SET_ERROR(EINVAL));
60101509
BB
371
372#ifdef _ILP32
82ec9d41 373 if (volsize - 1 > SPEC_MAXOFFSET_T)
2e528b49 374 return (SET_ERROR(EOVERFLOW));
60101509
BB
375#endif
376 return (0);
377}
378
379/*
380 * Ensure the zap is flushed then inform the VFS of the capacity change.
381 */
382static int
35d3e322 383zvol_update_volsize(uint64_t volsize, objset_t *os)
60101509 384{
60101509
BB
385 dmu_tx_t *tx;
386 int error;
513168ab 387 uint64_t txg;
60101509 388
df554c14 389 tx = dmu_tx_create(os);
60101509 390 dmu_tx_hold_zap(tx, ZVOL_ZAP_OBJ, TRUE, NULL);
19d55079 391 dmu_tx_mark_netfree(tx);
60101509
BB
392 error = dmu_tx_assign(tx, TXG_WAIT);
393 if (error) {
394 dmu_tx_abort(tx);
ce37ebd2 395 return (SET_ERROR(error));
60101509 396 }
513168ab 397 txg = dmu_tx_get_txg(tx);
60101509 398
df554c14 399 error = zap_update(os, ZVOL_ZAP_OBJ, "size", 8, 1,
60101509
BB
400 &volsize, tx);
401 dmu_tx_commit(tx);
402
513168ab 403 txg_wait_synced(dmu_objset_pool(os), txg);
404
35d3e322
BB
405 if (error == 0)
406 error = dmu_free_long_range(os,
407 ZVOL_OBJ, volsize, DMU_OBJECT_END);
60101509 408
35d3e322
BB
409 return (error);
410}
60101509 411
35d3e322
BB
412static int
413zvol_update_live_volsize(zvol_state_t *zv, uint64_t volsize)
414{
415 zvol_size_changed(zv, volsize);
60101509 416
35d3e322
BB
417 /*
418 * We should post a event here describing the expansion. However,
419 * the zfs_ereport_post() interface doesn't nicely support posting
420 * events for zvols, it assumes events relate to vdevs or zios.
421 */
60101509
BB
422
423 return (0);
424}
425
426/*
427 * Set ZFS_PROP_VOLSIZE set entry point.
428 */
429int
430zvol_set_volsize(const char *name, uint64_t volsize)
431{
35d3e322 432 zvol_state_t *zv = NULL;
60101509 433 objset_t *os = NULL;
60101509 434 int error;
35d3e322
BB
435 dmu_object_info_t *doi;
436 uint64_t readonly;
437 boolean_t owned = B_FALSE;
60101509 438
13fe0198
MA
439 error = dsl_prop_get_integer(name,
440 zfs_prop_to_name(ZFS_PROP_READONLY), &readonly, NULL);
441 if (error != 0)
ce37ebd2 442 return (SET_ERROR(error));
13fe0198 443 if (readonly)
2e528b49 444 return (SET_ERROR(EROFS));
13fe0198 445
58404a73
BP
446 zv = zvol_find_by_name(name, RW_READER);
447
448 ASSERT(zv == NULL || (MUTEX_HELD(&zv->zv_state_lock) &&
449 RW_READ_HELD(&zv->zv_suspend_lock)));
35d3e322
BB
450
451 if (zv == NULL || zv->zv_objset == NULL) {
58404a73
BP
452 if (zv != NULL)
453 rw_exit(&zv->zv_suspend_lock);
b5256303 454 if ((error = dmu_objset_own(name, DMU_OST_ZVOL, B_FALSE, B_TRUE,
35d3e322 455 FTAG, &os)) != 0) {
5559ba09
BP
456 if (zv != NULL)
457 mutex_exit(&zv->zv_state_lock);
35d3e322
BB
458 return (SET_ERROR(error));
459 }
460 owned = B_TRUE;
461 if (zv != NULL)
462 zv->zv_objset = os;
463 } else {
464 os = zv->zv_objset;
60101509
BB
465 }
466
ce37ebd2 467 doi = kmem_alloc(sizeof (dmu_object_info_t), KM_SLEEP);
60101509 468
ce37ebd2
BB
469 if ((error = dmu_object_info(os, ZVOL_OBJ, doi)) ||
470 (error = zvol_check_volsize(volsize, doi->doi_data_block_size)))
35d3e322 471 goto out;
60101509 472
35d3e322 473 error = zvol_update_volsize(volsize, os);
60101509 474
35d3e322
BB
475 if (error == 0 && zv != NULL)
476 error = zvol_update_live_volsize(zv, volsize);
477out:
3f7d0418 478 kmem_free(doi, sizeof (dmu_object_info_t));
479
35d3e322 480 if (owned) {
b5256303 481 dmu_objset_disown(os, B_TRUE, FTAG);
35d3e322
BB
482 if (zv != NULL)
483 zv->zv_objset = NULL;
040dab99
CC
484 } else {
485 rw_exit(&zv->zv_suspend_lock);
35d3e322 486 }
5559ba09
BP
487
488 if (zv != NULL)
489 mutex_exit(&zv->zv_state_lock);
58404a73 490
5559ba09 491 return (SET_ERROR(error));
60101509
BB
492}
493
494/*
495 * Sanity check volume block size.
496 */
497int
4cb7b9c5 498zvol_check_volblocksize(const char *name, uint64_t volblocksize)
60101509 499{
4cb7b9c5
BB
500 /* Record sizes above 128k need the feature to be enabled */
501 if (volblocksize > SPA_OLD_MAXBLOCKSIZE) {
502 spa_t *spa;
503 int error;
504
505 if ((error = spa_open(name, &spa, FTAG)) != 0)
506 return (error);
507
508 if (!spa_feature_is_enabled(spa, SPA_FEATURE_LARGE_BLOCKS)) {
509 spa_close(spa, FTAG);
510 return (SET_ERROR(ENOTSUP));
511 }
512
513 /*
514 * We don't allow setting the property above 1MB,
515 * unless the tunable has been changed.
516 */
517 if (volblocksize > zfs_max_recordsize)
518 return (SET_ERROR(EDOM));
519
520 spa_close(spa, FTAG);
521 }
522
60101509
BB
523 if (volblocksize < SPA_MINBLOCKSIZE ||
524 volblocksize > SPA_MAXBLOCKSIZE ||
525 !ISP2(volblocksize))
2e528b49 526 return (SET_ERROR(EDOM));
60101509
BB
527
528 return (0);
529}
530
531/*
532 * Set ZFS_PROP_VOLBLOCKSIZE set entry point.
533 */
534int
535zvol_set_volblocksize(const char *name, uint64_t volblocksize)
536{
537 zvol_state_t *zv;
538 dmu_tx_t *tx;
539 int error;
540
58404a73 541 zv = zvol_find_by_name(name, RW_READER);
60101509 542
58404a73 543 if (zv == NULL)
5559ba09 544 return (SET_ERROR(ENXIO));
58404a73
BP
545
546 ASSERT(MUTEX_HELD(&zv->zv_state_lock) &&
547 RW_READ_HELD(&zv->zv_suspend_lock));
60101509 548
ba6a2402 549 if (zv->zv_flags & ZVOL_RDONLY) {
5559ba09 550 mutex_exit(&zv->zv_state_lock);
58404a73 551 rw_exit(&zv->zv_suspend_lock);
5559ba09 552 return (SET_ERROR(EROFS));
60101509
BB
553 }
554
555 tx = dmu_tx_create(zv->zv_objset);
556 dmu_tx_hold_bonus(tx, ZVOL_OBJ);
557 error = dmu_tx_assign(tx, TXG_WAIT);
558 if (error) {
559 dmu_tx_abort(tx);
560 } else {
561 error = dmu_object_set_blocksize(zv->zv_objset, ZVOL_OBJ,
562 volblocksize, 0, tx);
563 if (error == ENOTSUP)
2e528b49 564 error = SET_ERROR(EBUSY);
60101509
BB
565 dmu_tx_commit(tx);
566 if (error == 0)
567 zv->zv_volblocksize = volblocksize;
568 }
5559ba09
BP
569
570 mutex_exit(&zv->zv_state_lock);
58404a73 571 rw_exit(&zv->zv_suspend_lock);
60101509 572
ce37ebd2 573 return (SET_ERROR(error));
60101509
BB
574}
575
460a0213
DM
576/*
577 * Replay a TX_TRUNCATE ZIL transaction if asked. TX_TRUNCATE is how we
578 * implement DKIOCFREE/free-long-range.
579 */
580static int
867959b5 581zvol_replay_truncate(void *arg1, void *arg2, boolean_t byteswap)
460a0213 582{
867959b5
BB
583 zvol_state_t *zv = arg1;
584 lr_truncate_t *lr = arg2;
460a0213
DM
585 uint64_t offset, length;
586
587 if (byteswap)
588 byteswap_uint64_array(lr, sizeof (*lr));
589
590 offset = lr->lr_offset;
591 length = lr->lr_length;
592
593 return (dmu_free_long_range(zv->zv_objset, ZVOL_OBJ, offset, length));
594}
595
60101509
BB
596/*
597 * Replay a TX_WRITE ZIL transaction that didn't get committed
598 * after a system failure
599 */
600static int
867959b5 601zvol_replay_write(void *arg1, void *arg2, boolean_t byteswap)
60101509 602{
867959b5
BB
603 zvol_state_t *zv = arg1;
604 lr_write_t *lr = arg2;
60101509 605 objset_t *os = zv->zv_objset;
5c214ae3
BB
606 char *data = (char *)(lr + 1); /* data follows lr_write_t */
607 uint64_t offset, length;
60101509
BB
608 dmu_tx_t *tx;
609 int error;
610
611 if (byteswap)
612 byteswap_uint64_array(lr, sizeof (*lr));
613
5c214ae3
BB
614 offset = lr->lr_offset;
615 length = lr->lr_length;
616
617 /* If it's a dmu_sync() block, write the whole block */
618 if (lr->lr_common.lrc_reclen == sizeof (lr_write_t)) {
619 uint64_t blocksize = BP_GET_LSIZE(&lr->lr_blkptr);
620 if (length < blocksize) {
621 offset -= offset % blocksize;
622 length = blocksize;
623 }
624 }
625
60101509 626 tx = dmu_tx_create(os);
5c214ae3 627 dmu_tx_hold_write(tx, ZVOL_OBJ, offset, length);
60101509
BB
628 error = dmu_tx_assign(tx, TXG_WAIT);
629 if (error) {
630 dmu_tx_abort(tx);
631 } else {
5c214ae3 632 dmu_write(os, ZVOL_OBJ, offset, length, data, tx);
60101509
BB
633 dmu_tx_commit(tx);
634 }
635
5c214ae3 636 return (error);
60101509
BB
637}
638
639static int
867959b5 640zvol_replay_err(void *arg1, void *arg2, boolean_t byteswap)
60101509 641{
2e528b49 642 return (SET_ERROR(ENOTSUP));
60101509
BB
643}
644
645/*
646 * Callback vectors for replaying records.
460a0213 647 * Only TX_WRITE and TX_TRUNCATE are needed for zvol.
60101509 648 */
867959b5
BB
649zil_replay_func_t *zvol_replay_vector[TX_MAX_TYPE] = {
650 zvol_replay_err, /* no such transaction type */
651 zvol_replay_err, /* TX_CREATE */
652 zvol_replay_err, /* TX_MKDIR */
653 zvol_replay_err, /* TX_MKXATTR */
654 zvol_replay_err, /* TX_SYMLINK */
655 zvol_replay_err, /* TX_REMOVE */
656 zvol_replay_err, /* TX_RMDIR */
657 zvol_replay_err, /* TX_LINK */
658 zvol_replay_err, /* TX_RENAME */
659 zvol_replay_write, /* TX_WRITE */
660 zvol_replay_truncate, /* TX_TRUNCATE */
661 zvol_replay_err, /* TX_SETATTR */
662 zvol_replay_err, /* TX_ACL */
663 zvol_replay_err, /* TX_CREATE_ATTR */
664 zvol_replay_err, /* TX_CREATE_ACL_ATTR */
665 zvol_replay_err, /* TX_MKDIR_ACL */
666 zvol_replay_err, /* TX_MKDIR_ATTR */
667 zvol_replay_err, /* TX_MKDIR_ACL_ATTR */
668 zvol_replay_err, /* TX_WRITE2 */
60101509
BB
669};
670
671/*
672 * zvol_log_write() handles synchronous writes using TX_WRITE ZIL transactions.
673 *
674 * We store data in the log buffers if it's small enough.
675 * Otherwise we will later flush the data out via dmu_sync().
676 */
677ssize_t zvol_immediate_write_sz = 32768;
678
679static void
ce37ebd2
BB
680zvol_log_write(zvol_state_t *zv, dmu_tx_t *tx, uint64_t offset,
681 uint64_t size, int sync)
60101509
BB
682{
683 uint32_t blocksize = zv->zv_volblocksize;
684 zilog_t *zilog = zv->zv_zilog;
1b7c1e5c 685 itx_wr_state_t write_state;
60101509
BB
686
687 if (zil_replaying(zilog, tx))
688 return;
689
1b7c1e5c
GDN
690 if (zilog->zl_logbias == ZFS_LOGBIAS_THROUGHPUT)
691 write_state = WR_INDIRECT;
692 else if (!spa_has_slogs(zilog->zl_spa) &&
693 size >= blocksize && blocksize > zvol_immediate_write_sz)
694 write_state = WR_INDIRECT;
695 else if (sync)
696 write_state = WR_COPIED;
697 else
698 write_state = WR_NEED_COPY;
60101509
BB
699
700 while (size) {
701 itx_t *itx;
702 lr_write_t *lr;
1b7c1e5c
GDN
703 itx_wr_state_t wr_state = write_state;
704 ssize_t len = size;
60101509 705
1b7c1e5c
GDN
706 if (wr_state == WR_COPIED && size > ZIL_MAX_COPIED_DATA)
707 wr_state = WR_NEED_COPY;
708 else if (wr_state == WR_INDIRECT)
709 len = MIN(blocksize - P2PHASE(offset, blocksize), size);
60101509
BB
710
711 itx = zil_itx_create(TX_WRITE, sizeof (*lr) +
1b7c1e5c 712 (wr_state == WR_COPIED ? len : 0));
60101509 713 lr = (lr_write_t *)&itx->itx_lr;
5228cf01
RY
714 if (wr_state == WR_COPIED && dmu_read_by_dnode(zv->zv_dn,
715 offset, len, lr+1, DMU_READ_NO_PREFETCH) != 0) {
60101509
BB
716 zil_itx_destroy(itx);
717 itx = zil_itx_create(TX_WRITE, sizeof (*lr));
718 lr = (lr_write_t *)&itx->itx_lr;
1b7c1e5c 719 wr_state = WR_NEED_COPY;
60101509
BB
720 }
721
1b7c1e5c 722 itx->itx_wr_state = wr_state;
60101509
BB
723 lr->lr_foid = ZVOL_OBJ;
724 lr->lr_offset = offset;
725 lr->lr_length = len;
726 lr->lr_blkoff = 0;
727 BP_ZERO(&lr->lr_blkptr);
728
729 itx->itx_private = zv;
730 itx->itx_sync = sync;
731
732 (void) zil_itx_assign(zilog, itx, tx);
733
734 offset += len;
735 size -= len;
736 }
737}
738
692e55b8
CC
739typedef struct zv_request {
740 zvol_state_t *zv;
741 struct bio *bio;
742 rl_t *rl;
743} zv_request_t;
744
745static void
746uio_from_bio(uio_t *uio, struct bio *bio)
60101509 747{
692e55b8
CC
748 uio->uio_bvec = &bio->bi_io_vec[BIO_BI_IDX(bio)];
749 uio->uio_skip = BIO_BI_SKIP(bio);
750 uio->uio_resid = BIO_BI_SIZE(bio);
751 uio->uio_iovcnt = bio->bi_vcnt - BIO_BI_IDX(bio);
752 uio->uio_loffset = BIO_BI_SECTOR(bio) << 9;
753 uio->uio_limit = MAXOFFSET_T;
754 uio->uio_segflg = UIO_BVEC;
755}
756
757static void
758zvol_write(void *arg)
759{
760 zv_request_t *zvr = arg;
761 struct bio *bio = zvr->bio;
762 uio_t uio;
763 zvol_state_t *zv = zvr->zv;
a765a34a 764 uint64_t volsize = zv->zv_volsize;
692e55b8 765 boolean_t sync;
a765a34a 766 int error = 0;
692e55b8
CC
767 unsigned long start_jif;
768
769 uio_from_bio(&uio, bio);
60101509 770
5428dc51
BP
771 ASSERT(zv && zv->zv_open_count > 0);
772
692e55b8 773 start_jif = jiffies;
787acae0
GDN
774 blk_generic_start_io_acct(zv->zv_queue, WRITE, bio_sectors(bio),
775 &zv->zv_disk->part0);
b18019d2 776
692e55b8
CC
777 sync = bio_is_fua(bio) || zv->zv_objset->os_sync == ZFS_SYNC_ALWAYS;
778
779 while (uio.uio_resid > 0 && uio.uio_loffset < volsize) {
780 uint64_t bytes = MIN(uio.uio_resid, DMU_MAX_ACCESS >> 1);
781 uint64_t off = uio.uio_loffset;
a765a34a 782 dmu_tx_t *tx = dmu_tx_create(zv->zv_objset);
b18019d2 783
a765a34a
RY
784 if (bytes > volsize - off) /* don't write past the end */
785 bytes = volsize - off;
2727b9d3 786
a765a34a 787 dmu_tx_hold_write(tx, ZVOL_OBJ, off, bytes);
60101509 788
a765a34a
RY
789 /* This will only fail for ENOSPC */
790 error = dmu_tx_assign(tx, TXG_WAIT);
791 if (error) {
792 dmu_tx_abort(tx);
793 break;
794 }
5228cf01 795 error = dmu_write_uio_dnode(zv->zv_dn, &uio, bytes, tx);
a765a34a
RY
796 if (error == 0)
797 zvol_log_write(zv, tx, off, bytes, sync);
798 dmu_tx_commit(tx);
60101509 799
a765a34a
RY
800 if (error)
801 break;
60101509 802 }
692e55b8 803 zfs_range_unlock(zvr->rl);
a765a34a 804 if (sync)
60101509 805 zil_commit(zv->zv_zilog, ZVOL_OBJ);
692e55b8
CC
806
807 rw_exit(&zv->zv_suspend_lock);
787acae0
GDN
808 blk_generic_end_io_acct(zv->zv_queue, WRITE, &zv->zv_disk->part0,
809 start_jif);
692e55b8
CC
810 BIO_END_IO(bio, -error);
811 kmem_free(zvr, sizeof (zv_request_t));
60101509
BB
812}
813
460a0213
DM
814/*
815 * Log a DKIOCFREE/free-long-range to the ZIL with TX_TRUNCATE.
816 */
817static void
818zvol_log_truncate(zvol_state_t *zv, dmu_tx_t *tx, uint64_t off, uint64_t len,
819 boolean_t sync)
820{
821 itx_t *itx;
822 lr_truncate_t *lr;
823 zilog_t *zilog = zv->zv_zilog;
824
825 if (zil_replaying(zilog, tx))
826 return;
827
828 itx = zil_itx_create(TX_TRUNCATE, sizeof (*lr));
829 lr = (lr_truncate_t *)&itx->itx_lr;
830 lr->lr_foid = ZVOL_OBJ;
831 lr->lr_offset = off;
832 lr->lr_length = len;
833
834 itx->itx_sync = sync;
835 zil_itx_assign(zilog, itx, tx);
836}
837
692e55b8
CC
838static void
839zvol_discard(void *arg)
30930fba 840{
692e55b8
CC
841 zv_request_t *zvr = arg;
842 struct bio *bio = zvr->bio;
843 zvol_state_t *zv = zvr->zv;
37f9dac5
RY
844 uint64_t start = BIO_BI_SECTOR(bio) << 9;
845 uint64_t size = BIO_BI_SIZE(bio);
846 uint64_t end = start + size;
f763c3d1 847 boolean_t sync;
692e55b8 848 int error = 0;
460a0213 849 dmu_tx_t *tx;
692e55b8 850 unsigned long start_jif;
30930fba 851
5428dc51
BP
852 ASSERT(zv && zv->zv_open_count > 0);
853
692e55b8 854 start_jif = jiffies;
787acae0
GDN
855 blk_generic_start_io_acct(zv->zv_queue, WRITE, bio_sectors(bio),
856 &zv->zv_disk->part0);
692e55b8 857
f763c3d1 858 sync = bio_is_fua(bio) || zv->zv_objset->os_sync == ZFS_SYNC_ALWAYS;
859
692e55b8
CC
860 if (end > zv->zv_volsize) {
861 error = SET_ERROR(EIO);
f763c3d1 862 goto unlock;
692e55b8 863 }
30930fba 864
089fa91b 865 /*
cf41432c
BB
866 * Align the request to volume block boundaries when a secure erase is
867 * not required. This will prevent dnode_free_range() from zeroing out
868 * the unaligned parts which is slow (read-modify-write) and useless
869 * since we are not freeing any space by doing so.
089fa91b 870 */
cf41432c 871 if (!bio_is_secure_erase(bio)) {
fa565676
RY
872 start = P2ROUNDUP(start, zv->zv_volblocksize);
873 end = P2ALIGN(end, zv->zv_volblocksize);
f52ebcb3 874 size = end - start;
fa565676 875 }
089fa91b 876
37f9dac5 877 if (start >= end)
f763c3d1 878 goto unlock;
30930fba 879
460a0213
DM
880 tx = dmu_tx_create(zv->zv_objset);
881 dmu_tx_mark_netfree(tx);
882 error = dmu_tx_assign(tx, TXG_WAIT);
883 if (error != 0) {
884 dmu_tx_abort(tx);
885 } else {
886 zvol_log_truncate(zv, tx, start, size, B_TRUE);
887 dmu_tx_commit(tx);
888 error = dmu_free_long_range(zv->zv_objset,
889 ZVOL_OBJ, start, size);
890 }
f763c3d1 891unlock:
692e55b8 892 zfs_range_unlock(zvr->rl);
f763c3d1 893 if (error == 0 && sync)
894 zil_commit(zv->zv_zilog, ZVOL_OBJ);
895
692e55b8 896 rw_exit(&zv->zv_suspend_lock);
787acae0
GDN
897 blk_generic_end_io_acct(zv->zv_queue, WRITE, &zv->zv_disk->part0,
898 start_jif);
692e55b8
CC
899 BIO_END_IO(bio, -error);
900 kmem_free(zvr, sizeof (zv_request_t));
30930fba 901}
30930fba 902
692e55b8
CC
903static void
904zvol_read(void *arg)
60101509 905{
692e55b8
CC
906 zv_request_t *zvr = arg;
907 struct bio *bio = zvr->bio;
908 uio_t uio;
909 zvol_state_t *zv = zvr->zv;
a765a34a 910 uint64_t volsize = zv->zv_volsize;
a765a34a 911 int error = 0;
692e55b8
CC
912 unsigned long start_jif;
913
914 uio_from_bio(&uio, bio);
b18019d2 915
5428dc51
BP
916 ASSERT(zv && zv->zv_open_count > 0);
917
692e55b8 918 start_jif = jiffies;
787acae0
GDN
919 blk_generic_start_io_acct(zv->zv_queue, READ, bio_sectors(bio),
920 &zv->zv_disk->part0);
692e55b8
CC
921
922 while (uio.uio_resid > 0 && uio.uio_loffset < volsize) {
923 uint64_t bytes = MIN(uio.uio_resid, DMU_MAX_ACCESS >> 1);
60101509 924
a765a34a 925 /* don't read past the end */
692e55b8
CC
926 if (bytes > volsize - uio.uio_loffset)
927 bytes = volsize - uio.uio_loffset;
60101509 928
5228cf01 929 error = dmu_read_uio_dnode(zv->zv_dn, &uio, bytes);
a765a34a
RY
930 if (error) {
931 /* convert checksum errors into IO errors */
932 if (error == ECKSUM)
933 error = SET_ERROR(EIO);
934 break;
935 }
936 }
692e55b8
CC
937 zfs_range_unlock(zvr->rl);
938
939 rw_exit(&zv->zv_suspend_lock);
787acae0
GDN
940 blk_generic_end_io_acct(zv->zv_queue, READ, &zv->zv_disk->part0,
941 start_jif);
692e55b8
CC
942 BIO_END_IO(bio, -error);
943 kmem_free(zvr, sizeof (zv_request_t));
60101509
BB
944}
945
37f9dac5
RY
946static MAKE_REQUEST_FN_RET
947zvol_request(struct request_queue *q, struct bio *bio)
60101509
BB
948{
949 zvol_state_t *zv = q->queuedata;
37f9dac5 950 fstrans_cookie_t cookie = spl_fstrans_mark();
692e55b8
CC
951 uint64_t offset = BIO_BI_SECTOR(bio) << 9;
952 uint64_t size = BIO_BI_SIZE(bio);
8198d18c 953 int rw = bio_data_dir(bio);
692e55b8 954 zv_request_t *zvr;
a765a34a 955
692e55b8 956 if (bio_has_data(bio) && offset + size > zv->zv_volsize) {
37f9dac5 957 printk(KERN_INFO
a765a34a 958 "%s: bad access: offset=%llu, size=%lu\n",
37f9dac5 959 zv->zv_disk->disk_name,
692e55b8
CC
960 (long long unsigned)offset,
961 (long unsigned)size);
37f9dac5 962
692e55b8
CC
963 BIO_END_IO(bio, -SET_ERROR(EIO));
964 goto out;
965 }
8198d18c
RY
966
967 if (rw == WRITE) {
f763c3d1 968 boolean_t need_sync = B_FALSE;
969
37f9dac5 970 if (unlikely(zv->zv_flags & ZVOL_RDONLY)) {
692e55b8
CC
971 BIO_END_IO(bio, -SET_ERROR(EROFS));
972 goto out;
60101509
BB
973 }
974
692e55b8
CC
975 /*
976 * To be released in the I/O function. See the comment on
977 * zfs_range_lock below.
978 */
979 rw_enter(&zv->zv_suspend_lock, RW_READER);
980
981 /* bio marked as FLUSH need to flush before write */
982 if (bio_is_flush(bio))
983 zil_commit(zv->zv_zilog, ZVOL_OBJ);
984
985 /* Some requests are just for flush and nothing else. */
986 if (size == 0) {
987 rw_exit(&zv->zv_suspend_lock);
988 BIO_END_IO(bio, 0);
989 goto out;
37f9dac5 990 }
60101509 991
692e55b8
CC
992 zvr = kmem_alloc(sizeof (zv_request_t), KM_SLEEP);
993 zvr->zv = zv;
994 zvr->bio = bio;
995
a765a34a 996 /*
692e55b8
CC
997 * To be released in the I/O function. Since the I/O functions
998 * are asynchronous, we take it here synchronously to make
999 * sure overlapped I/Os are properly ordered.
a765a34a 1000 */
692e55b8
CC
1001 zvr->rl = zfs_range_lock(&zv->zv_range_lock, offset, size,
1002 RL_WRITER);
f763c3d1 1003 /*
1004 * Sync writes and discards execute zil_commit() which may need
1005 * to take a RL_READER lock on the whole block being modified
1006 * via its zillog->zl_get_data(): to avoid circular dependency
1007 * issues with taskq threads execute these requests
1008 * synchronously here in zvol_request().
1009 */
1010 need_sync = bio_is_fua(bio) ||
1011 zv->zv_objset->os_sync == ZFS_SYNC_ALWAYS;
692e55b8 1012 if (bio_is_discard(bio) || bio_is_secure_erase(bio)) {
f763c3d1 1013 if (zvol_request_sync || need_sync ||
1014 taskq_dispatch(zvol_taskq, zvol_discard, zvr,
1015 TQ_SLEEP) == TASKQID_INVALID)
692e55b8
CC
1016 zvol_discard(zvr);
1017 } else {
f763c3d1 1018 if (zvol_request_sync || need_sync ||
1019 taskq_dispatch(zvol_taskq, zvol_write, zvr,
1020 TQ_SLEEP) == TASKQID_INVALID)
692e55b8 1021 zvol_write(zvr);
a765a34a 1022 }
692e55b8
CC
1023 } else {
1024 zvr = kmem_alloc(sizeof (zv_request_t), KM_SLEEP);
1025 zvr->zv = zv;
1026 zvr->bio = bio;
a765a34a 1027
692e55b8 1028 rw_enter(&zv->zv_suspend_lock, RW_READER);
30930fba 1029
692e55b8
CC
1030 zvr->rl = zfs_range_lock(&zv->zv_range_lock, offset, size,
1031 RL_READER);
1032 if (zvol_request_sync || taskq_dispatch(zvol_taskq,
1033 zvol_read, zvr, TQ_SLEEP) == TASKQID_INVALID)
1034 zvol_read(zvr);
1035 }
1036
1037out:
37f9dac5
RY
1038 spl_fstrans_unmark(cookie);
1039#ifdef HAVE_MAKE_REQUEST_FN_RET_INT
1040 return (0);
1a093716
CC
1041#elif defined(HAVE_MAKE_REQUEST_FN_RET_QC)
1042 return (BLK_QC_T_NONE);
37f9dac5 1043#endif
60101509
BB
1044}
1045
1046static void
1047zvol_get_done(zgd_t *zgd, int error)
1048{
1049 if (zgd->zgd_db)
1050 dmu_buf_rele(zgd->zgd_db, zgd);
1051
1052 zfs_range_unlock(zgd->zgd_rl);
1053
1054 if (error == 0 && zgd->zgd_bp)
1ce23dca 1055 zil_lwb_add_block(zgd->zgd_lwb, zgd->zgd_bp);
60101509
BB
1056
1057 kmem_free(zgd, sizeof (zgd_t));
1058}
1059
1060/*
1061 * Get data to generate a TX_WRITE intent log record.
1062 */
1063static int
1ce23dca 1064zvol_get_data(void *arg, lr_write_t *lr, char *buf, struct lwb *lwb, zio_t *zio)
60101509
BB
1065{
1066 zvol_state_t *zv = arg;
60101509
BB
1067 uint64_t offset = lr->lr_offset;
1068 uint64_t size = lr->lr_length;
1069 dmu_buf_t *db;
1070 zgd_t *zgd;
1071 int error;
1072
1ce23dca
PS
1073 ASSERT3P(lwb, !=, NULL);
1074 ASSERT3P(zio, !=, NULL);
1075 ASSERT3U(size, !=, 0);
60101509 1076
79c76d5b 1077 zgd = (zgd_t *)kmem_zalloc(sizeof (zgd_t), KM_SLEEP);
1ce23dca 1078 zgd->zgd_lwb = lwb;
60101509
BB
1079
1080 /*
1081 * Write records come in two flavors: immediate and indirect.
1082 * For small writes it's cheaper to store the data with the
1083 * log record (immediate); for large writes it's cheaper to
1084 * sync the data and get a pointer to it (indirect) so that
1085 * we don't have to write the data twice.
1086 */
1087 if (buf != NULL) { /* immediate write */
f763c3d1 1088 zgd->zgd_rl = zfs_range_lock(&zv->zv_range_lock, offset, size,
1089 RL_READER);
5228cf01 1090 error = dmu_read_by_dnode(zv->zv_dn, offset, size, buf,
60101509 1091 DMU_READ_NO_PREFETCH);
f763c3d1 1092 } else { /* indirect write */
1093 /*
1094 * Have to lock the whole block to ensure when it's written out
1095 * and its checksum is being calculated that no one can change
1096 * the data. Contrarily to zfs_get_data we need not re-check
1097 * blocksize after we get the lock because it cannot be changed.
1098 */
60101509
BB
1099 size = zv->zv_volblocksize;
1100 offset = P2ALIGN_TYPED(offset, size, uint64_t);
f763c3d1 1101 zgd->zgd_rl = zfs_range_lock(&zv->zv_range_lock, offset, size,
1102 RL_READER);
5228cf01 1103 error = dmu_buf_hold_by_dnode(zv->zv_dn, offset, zgd, &db,
60101509
BB
1104 DMU_READ_NO_PREFETCH);
1105 if (error == 0) {
02dc43bc 1106 blkptr_t *bp = &lr->lr_blkptr;
03c6040b 1107
60101509 1108 zgd->zgd_db = db;
02dc43bc 1109 zgd->zgd_bp = bp;
60101509
BB
1110
1111 ASSERT(db != NULL);
1112 ASSERT(db->db_offset == offset);
1113 ASSERT(db->db_size == size);
1114
1115 error = dmu_sync(zio, lr->lr_common.lrc_txg,
1116 zvol_get_done, zgd);
1117
1118 if (error == 0)
1119 return (0);
1120 }
1121 }
1122
1123 zvol_get_done(zgd, error);
1124
ce37ebd2 1125 return (SET_ERROR(error));
60101509
BB
1126}
1127
1128/*
d45e010d 1129 * The zvol_state_t's are inserted into zvol_state_list and zvol_htable.
60101509
BB
1130 */
1131static void
d45e010d 1132zvol_insert(zvol_state_t *zv)
60101509 1133{
60101509 1134 ASSERT(MUTEX_HELD(&zvol_state_lock));
d45e010d
CC
1135 ASSERT3U(MINOR(zv->zv_dev) & ZVOL_MINOR_MASK, ==, 0);
1136 list_insert_head(&zvol_state_list, zv);
1137 hlist_add_head(&zv->zv_hlink, ZVOL_HT_HEAD(zv->zv_hash));
60101509
BB
1138}
1139
1140/*
1141 * Simply remove the zvol from to list of zvols.
1142 */
1143static void
d45e010d 1144zvol_remove(zvol_state_t *zv)
60101509
BB
1145{
1146 ASSERT(MUTEX_HELD(&zvol_state_lock));
d45e010d
CC
1147 list_remove(&zvol_state_list, zv);
1148 hlist_del(&zv->zv_hlink);
60101509
BB
1149}
1150
040dab99
CC
1151/*
1152 * Setup zv after we just own the zv->objset
1153 */
60101509 1154static int
040dab99 1155zvol_setup_zv(zvol_state_t *zv)
60101509 1156{
60101509
BB
1157 uint64_t volsize;
1158 int error;
1159 uint64_t ro;
040dab99 1160 objset_t *os = zv->zv_objset;
1ee159f4 1161
58404a73
BP
1162 ASSERT(MUTEX_HELD(&zv->zv_state_lock) &&
1163 RW_LOCK_HELD(&zv->zv_suspend_lock));
1164
1ee159f4
BP
1165 error = dsl_prop_get_integer(zv->zv_name, "readonly", &ro, NULL);
1166 if (error)
040dab99 1167 return (SET_ERROR(error));
60101509
BB
1168
1169 error = zap_lookup(os, ZVOL_ZAP_OBJ, "size", 8, 1, &volsize);
1ee159f4 1170 if (error)
040dab99 1171 return (SET_ERROR(error));
60101509 1172
5228cf01 1173 error = dnode_hold(os, ZVOL_OBJ, FTAG, &zv->zv_dn);
1ee159f4 1174 if (error)
040dab99 1175 return (SET_ERROR(error));
60101509
BB
1176
1177 set_capacity(zv->zv_disk, volsize >> 9);
1178 zv->zv_volsize = volsize;
1179 zv->zv_zilog = zil_open(os, zvol_get_data);
1180
a4430fce
GW
1181 if (ro || dmu_objset_is_snapshot(os) ||
1182 !spa_writeable(dmu_objset_spa(os))) {
babf3f9b
MM
1183 set_disk_ro(zv->zv_disk, 1);
1184 zv->zv_flags |= ZVOL_RDONLY;
60101509 1185 } else {
babf3f9b
MM
1186 set_disk_ro(zv->zv_disk, 0);
1187 zv->zv_flags &= ~ZVOL_RDONLY;
60101509 1188 }
040dab99 1189 return (0);
60101509
BB
1190}
1191
040dab99
CC
1192/*
1193 * Shutdown every zv_objset related stuff except zv_objset itself.
1194 * The is the reverse of zvol_setup_zv.
1195 */
60101509 1196static void
040dab99 1197zvol_shutdown_zv(zvol_state_t *zv)
60101509 1198{
58404a73
BP
1199 ASSERT(MUTEX_HELD(&zv->zv_state_lock) &&
1200 RW_LOCK_HELD(&zv->zv_suspend_lock));
1201
60101509
BB
1202 zil_close(zv->zv_zilog);
1203 zv->zv_zilog = NULL;
04434775 1204
5228cf01
RY
1205 dnode_rele(zv->zv_dn, FTAG);
1206 zv->zv_dn = NULL;
04434775
MA
1207
1208 /*
1209 * Evict cached data
1210 */
1211 if (dsl_dataset_is_dirty(dmu_objset_ds(zv->zv_objset)) &&
1212 !(zv->zv_flags & ZVOL_RDONLY))
1213 txg_wait_synced(dmu_objset_pool(zv->zv_objset), 0);
1214 (void) dmu_objset_evict_dbufs(zv->zv_objset);
040dab99
CC
1215}
1216
1217/*
1218 * return the proper tag for rollback and recv
1219 */
1220void *
1221zvol_tag(zvol_state_t *zv)
1222{
1223 ASSERT(RW_WRITE_HELD(&zv->zv_suspend_lock));
1224 return (zv->zv_open_count > 0 ? zv : NULL);
1225}
1226
1227/*
1228 * Suspend the zvol for recv and rollback.
1229 */
1230zvol_state_t *
1231zvol_suspend(const char *name)
1232{
1233 zvol_state_t *zv;
1234
58404a73
BP
1235 zv = zvol_find_by_name(name, RW_WRITER);
1236
1237 if (zv == NULL)
5559ba09 1238 return (NULL);
04434775 1239
040dab99 1240 /* block all I/O, release in zvol_resume. */
58404a73
BP
1241 ASSERT(MUTEX_HELD(&zv->zv_state_lock) &&
1242 RW_WRITE_HELD(&zv->zv_suspend_lock));
040dab99
CC
1243
1244 atomic_inc(&zv->zv_suspend_ref);
1245
1246 if (zv->zv_open_count > 0)
1247 zvol_shutdown_zv(zv);
5559ba09 1248
58404a73
BP
1249 /*
1250 * do not hold zv_state_lock across suspend/resume to
1251 * avoid locking up zvol lookups
1252 */
5559ba09 1253 mutex_exit(&zv->zv_state_lock);
58404a73
BP
1254
1255 /* zv_suspend_lock is released in zvol_resume() */
040dab99
CC
1256 return (zv);
1257}
1258
1259int
1260zvol_resume(zvol_state_t *zv)
1261{
1262 int error = 0;
1263
1264 ASSERT(RW_WRITE_HELD(&zv->zv_suspend_lock));
2d82116e 1265
58404a73
BP
1266 mutex_enter(&zv->zv_state_lock);
1267
040dab99
CC
1268 if (zv->zv_open_count > 0) {
1269 VERIFY0(dmu_objset_hold(zv->zv_name, zv, &zv->zv_objset));
1270 VERIFY3P(zv->zv_objset->os_dsl_dataset->ds_owner, ==, zv);
1271 VERIFY(dsl_dataset_long_held(zv->zv_objset->os_dsl_dataset));
1272 dmu_objset_rele(zv->zv_objset, zv);
1273
1274 error = zvol_setup_zv(zv);
1275 }
58404a73
BP
1276
1277 mutex_exit(&zv->zv_state_lock);
1278
040dab99
CC
1279 rw_exit(&zv->zv_suspend_lock);
1280 /*
1281 * We need this because we don't hold zvol_state_lock while releasing
1282 * zv_suspend_lock. zvol_remove_minors_impl thus cannot check
1283 * zv_suspend_lock to determine it is safe to free because rwlock is
1284 * not inherent atomic.
1285 */
1286 atomic_dec(&zv->zv_suspend_ref);
1287
1288 return (SET_ERROR(error));
1289}
1290
1291static int
163a8c28 1292zvol_first_open(zvol_state_t *zv, boolean_t readonly)
040dab99
CC
1293{
1294 objset_t *os;
07783588 1295 int error, locked = 0;
163a8c28 1296 boolean_t ro;
07783588 1297
58404a73
BP
1298 ASSERT(RW_READ_HELD(&zv->zv_suspend_lock));
1299 ASSERT(MUTEX_HELD(&zv->zv_state_lock));
1300
07783588
BP
1301 /*
1302 * In all other cases the spa_namespace_lock is taken before the
1303 * bdev->bd_mutex lock. But in this case the Linux __blkdev_get()
1304 * function calls fops->open() with the bdev->bd_mutex lock held.
1305 * This deadlock can be easily observed with zvols used as vdevs.
1306 *
1307 * To avoid a potential lock inversion deadlock we preemptively
1308 * try to take the spa_namespace_lock(). Normally it will not
1309 * be contended and this is safe because spa_open_common() handles
1310 * the case where the caller already holds the spa_namespace_lock.
1311 *
1312 * When it is contended we risk a lock inversion if we were to
1313 * block waiting for the lock. Luckily, the __blkdev_get()
1314 * function allows us to return -ERESTARTSYS which will result in
1315 * bdev->bd_mutex being dropped, reacquired, and fops->open() being
1316 * called again. This process can be repeated safely until both
1317 * locks are acquired.
1318 */
1319 if (!mutex_owned(&spa_namespace_lock)) {
1320 locked = mutex_tryenter(&spa_namespace_lock);
1321 if (!locked)
1322 return (-SET_ERROR(ERESTARTSYS));
1323 }
040dab99 1324
163a8c28
TC
1325 ro = (readonly || (strchr(zv->zv_name, '@') != NULL));
1326 error = dmu_objset_own(zv->zv_name, DMU_OST_ZVOL, ro, B_TRUE, zv, &os);
040dab99 1327 if (error)
07783588 1328 goto out_mutex;
040dab99
CC
1329
1330 zv->zv_objset = os;
1331
1332 error = zvol_setup_zv(zv);
1333
1334 if (error) {
b5256303 1335 dmu_objset_disown(os, 1, zv);
040dab99
CC
1336 zv->zv_objset = NULL;
1337 }
1338
07783588
BP
1339out_mutex:
1340 if (locked)
1341 mutex_exit(&spa_namespace_lock);
040dab99
CC
1342 return (SET_ERROR(-error));
1343}
1344
1345static void
1346zvol_last_close(zvol_state_t *zv)
1347{
58404a73
BP
1348 ASSERT(RW_READ_HELD(&zv->zv_suspend_lock));
1349 ASSERT(MUTEX_HELD(&zv->zv_state_lock));
1350
040dab99
CC
1351 zvol_shutdown_zv(zv);
1352
b5256303 1353 dmu_objset_disown(zv->zv_objset, 1, zv);
60101509
BB
1354 zv->zv_objset = NULL;
1355}
1356
1357static int
1358zvol_open(struct block_device *bdev, fmode_t flag)
1359{
5428dc51 1360 zvol_state_t *zv;
58404a73 1361 int error = 0;
5146d802 1362 boolean_t drop_suspend = B_TRUE;
60101509 1363
5146d802 1364 ASSERT(!MUTEX_HELD(&zvol_state_lock));
60101509 1365
5559ba09 1366 mutex_enter(&zvol_state_lock);
5428dc51 1367 /*
58404a73
BP
1368 * Obtain a copy of private_data under the zvol_state_lock to make
1369 * sure that either the result of zvol free code path setting
5428dc51
BP
1370 * bdev->bd_disk->private_data to NULL is observed, or zvol_free()
1371 * is not called on this zv because of the positive zv_open_count.
1372 */
1373 zv = bdev->bd_disk->private_data;
1374 if (zv == NULL) {
5559ba09
BP
1375 mutex_exit(&zvol_state_lock);
1376 return (SET_ERROR(-ENXIO));
5428dc51 1377 }
58404a73 1378
5559ba09 1379 mutex_enter(&zv->zv_state_lock);
58404a73
BP
1380 /*
1381 * make sure zvol is not suspended during first open
5146d802
BP
1382 * (hold zv_suspend_lock) and respect proper lock acquisition
1383 * ordering - zv_suspend_lock before zv_state_lock
58404a73 1384 */
60101509 1385 if (zv->zv_open_count == 0) {
5146d802
BP
1386 if (!rw_tryenter(&zv->zv_suspend_lock, RW_READER)) {
1387 mutex_exit(&zv->zv_state_lock);
1388 rw_enter(&zv->zv_suspend_lock, RW_READER);
1389 mutex_enter(&zv->zv_state_lock);
1390 /* check to see if zv_suspend_lock is needed */
1391 if (zv->zv_open_count != 0) {
1392 rw_exit(&zv->zv_suspend_lock);
1393 drop_suspend = B_FALSE;
1394 }
1395 }
58404a73 1396 } else {
5146d802 1397 drop_suspend = B_FALSE;
58404a73 1398 }
58404a73 1399 mutex_exit(&zvol_state_lock);
040dab99 1400
5146d802
BP
1401 ASSERT(MUTEX_HELD(&zv->zv_state_lock));
1402 ASSERT(zv->zv_open_count != 0 || RW_READ_HELD(&zv->zv_suspend_lock));
1403
58404a73 1404 if (zv->zv_open_count == 0) {
163a8c28 1405 error = zvol_first_open(zv, !(flag & FMODE_WRITE));
60101509
BB
1406 if (error)
1407 goto out_mutex;
1408 }
1409
163a8c28 1410 if ((flag & FMODE_WRITE) && (zv->zv_flags & ZVOL_RDONLY)) {
60101509
BB
1411 error = -EROFS;
1412 goto out_open_count;
1413 }
1414
1415 zv->zv_open_count++;
1416
5428dc51
BP
1417 check_disk_change(bdev);
1418
60101509
BB
1419out_open_count:
1420 if (zv->zv_open_count == 0)
1421 zvol_last_close(zv);
60101509 1422out_mutex:
58404a73 1423 mutex_exit(&zv->zv_state_lock);
040dab99
CC
1424 if (drop_suspend)
1425 rw_exit(&zv->zv_suspend_lock);
94b25662
AB
1426 if (error == -ERESTARTSYS)
1427 schedule();
60101509 1428
ce37ebd2 1429 return (SET_ERROR(error));
60101509
BB
1430}
1431
a1d9543a
CD
1432#ifdef HAVE_BLOCK_DEVICE_OPERATIONS_RELEASE_VOID
1433static void
1434#else
60101509 1435static int
a1d9543a 1436#endif
60101509
BB
1437zvol_release(struct gendisk *disk, fmode_t mode)
1438{
5559ba09 1439 zvol_state_t *zv;
5146d802 1440 boolean_t drop_suspend = B_TRUE;
60101509 1441
5146d802 1442 ASSERT(!MUTEX_HELD(&zvol_state_lock));
5428dc51 1443
5559ba09
BP
1444 mutex_enter(&zvol_state_lock);
1445 zv = disk->private_data;
58404a73 1446
5559ba09 1447 mutex_enter(&zv->zv_state_lock);
5146d802 1448 ASSERT(zv->zv_open_count > 0);
58404a73
BP
1449 /*
1450 * make sure zvol is not suspended during last close
5146d802
BP
1451 * (hold zv_suspend_lock) and respect proper lock acquisition
1452 * ordering - zv_suspend_lock before zv_state_lock
58404a73 1453 */
5146d802
BP
1454 if (zv->zv_open_count == 1) {
1455 if (!rw_tryenter(&zv->zv_suspend_lock, RW_READER)) {
1456 mutex_exit(&zv->zv_state_lock);
1457 rw_enter(&zv->zv_suspend_lock, RW_READER);
1458 mutex_enter(&zv->zv_state_lock);
1459 /* check to see if zv_suspend_lock is needed */
1460 if (zv->zv_open_count != 1) {
1461 rw_exit(&zv->zv_suspend_lock);
1462 drop_suspend = B_FALSE;
1463 }
1464 }
1465 } else {
1466 drop_suspend = B_FALSE;
1467 }
1468 mutex_exit(&zvol_state_lock);
1469
1470 ASSERT(MUTEX_HELD(&zv->zv_state_lock));
1471 ASSERT(zv->zv_open_count != 1 || RW_READ_HELD(&zv->zv_suspend_lock));
040dab99 1472
5428dc51 1473 zv->zv_open_count--;
58404a73 1474 if (zv->zv_open_count == 0)
5428dc51 1475 zvol_last_close(zv);
60101509 1476
5559ba09 1477 mutex_exit(&zv->zv_state_lock);
60101509 1478
58404a73
BP
1479 if (drop_suspend)
1480 rw_exit(&zv->zv_suspend_lock);
1481
a1d9543a 1482#ifndef HAVE_BLOCK_DEVICE_OPERATIONS_RELEASE_VOID
60101509 1483 return (0);
a1d9543a 1484#endif
60101509
BB
1485}
1486
1487static int
1488zvol_ioctl(struct block_device *bdev, fmode_t mode,
ce37ebd2 1489 unsigned int cmd, unsigned long arg)
60101509
BB
1490{
1491 zvol_state_t *zv = bdev->bd_disk->private_data;
1492 int error = 0;
1493
5428dc51 1494 ASSERT(zv && zv->zv_open_count > 0);
60101509
BB
1495
1496 switch (cmd) {
1497 case BLKFLSBUF:
ef1bdf36
BB
1498 fsync_bdev(bdev);
1499 invalidate_bdev(bdev);
1500 rw_enter(&zv->zv_suspend_lock, RW_READER);
1501
1502 if (dsl_dataset_is_dirty(dmu_objset_ds(zv->zv_objset)) &&
1503 !(zv->zv_flags & ZVOL_RDONLY))
1504 txg_wait_synced(dmu_objset_pool(zv->zv_objset), 0);
1505
1506 rw_exit(&zv->zv_suspend_lock);
60101509 1507 break;
ef1bdf36 1508
4c0d8e50 1509 case BLKZNAME:
5559ba09 1510 mutex_enter(&zv->zv_state_lock);
4c0d8e50 1511 error = copy_to_user((void *)arg, zv->zv_name, MAXNAMELEN);
5559ba09 1512 mutex_exit(&zv->zv_state_lock);
4c0d8e50 1513 break;
60101509
BB
1514
1515 default:
1516 error = -ENOTTY;
1517 break;
60101509
BB
1518 }
1519
ce37ebd2 1520 return (SET_ERROR(error));
60101509
BB
1521}
1522
1523#ifdef CONFIG_COMPAT
1524static int
1525zvol_compat_ioctl(struct block_device *bdev, fmode_t mode,
ce37ebd2 1526 unsigned cmd, unsigned long arg)
60101509 1527{
ce37ebd2 1528 return (zvol_ioctl(bdev, mode, cmd, arg));
60101509
BB
1529}
1530#else
ce37ebd2 1531#define zvol_compat_ioctl NULL
60101509
BB
1532#endif
1533
1534static int zvol_media_changed(struct gendisk *disk)
1535{
1536 zvol_state_t *zv = disk->private_data;
1537
5428dc51
BP
1538 ASSERT(zv && zv->zv_open_count > 0);
1539
ce37ebd2 1540 return (zv->zv_changed);
60101509
BB
1541}
1542
1543static int zvol_revalidate_disk(struct gendisk *disk)
1544{
1545 zvol_state_t *zv = disk->private_data;
1546
5428dc51
BP
1547 ASSERT(zv && zv->zv_open_count > 0);
1548
60101509
BB
1549 zv->zv_changed = 0;
1550 set_capacity(zv->zv_disk, zv->zv_volsize >> 9);
1551
ce37ebd2 1552 return (0);
60101509
BB
1553}
1554
1555/*
1556 * Provide a simple virtual geometry for legacy compatibility. For devices
1557 * smaller than 1 MiB a small head and sector count is used to allow very
1558 * tiny devices. For devices over 1 Mib a standard head and sector count
1559 * is used to keep the cylinders count reasonable.
1560 */
1561static int
1562zvol_getgeo(struct block_device *bdev, struct hd_geometry *geo)
1563{
1564 zvol_state_t *zv = bdev->bd_disk->private_data;
5428dc51
BP
1565 sector_t sectors;
1566
1567 ASSERT(zv && zv->zv_open_count > 0);
1568
1569 sectors = get_capacity(zv->zv_disk);
60101509
BB
1570
1571 if (sectors > 2048) {
1572 geo->heads = 16;
1573 geo->sectors = 63;
1574 } else {
1575 geo->heads = 2;
1576 geo->sectors = 4;
1577 }
1578
1579 geo->start = 0;
1580 geo->cylinders = sectors / (geo->heads * geo->sectors);
1581
ce37ebd2 1582 return (0);
60101509
BB
1583}
1584
1585static struct kobject *
1586zvol_probe(dev_t dev, int *part, void *arg)
1587{
1588 zvol_state_t *zv;
1589 struct kobject *kobj;
1590
60101509 1591 zv = zvol_find_by_dev(dev);
dd3e1e30 1592 kobj = zv ? get_disk_and_module(zv->zv_disk) : NULL;
58404a73
BP
1593 ASSERT(zv == NULL || MUTEX_HELD(&zv->zv_state_lock));
1594 if (zv)
1595 mutex_exit(&zv->zv_state_lock);
60101509 1596
ce37ebd2 1597 return (kobj);
60101509
BB
1598}
1599
1600#ifdef HAVE_BDEV_BLOCK_DEVICE_OPERATIONS
1601static struct block_device_operations zvol_ops = {
ce37ebd2
BB
1602 .open = zvol_open,
1603 .release = zvol_release,
1604 .ioctl = zvol_ioctl,
1605 .compat_ioctl = zvol_compat_ioctl,
1606 .media_changed = zvol_media_changed,
1607 .revalidate_disk = zvol_revalidate_disk,
1608 .getgeo = zvol_getgeo,
1609 .owner = THIS_MODULE,
60101509
BB
1610};
1611
1612#else /* HAVE_BDEV_BLOCK_DEVICE_OPERATIONS */
1613
1614static int
1615zvol_open_by_inode(struct inode *inode, struct file *file)
1616{
ce37ebd2 1617 return (zvol_open(inode->i_bdev, file->f_mode));
60101509
BB
1618}
1619
1620static int
1621zvol_release_by_inode(struct inode *inode, struct file *file)
1622{
ce37ebd2 1623 return (zvol_release(inode->i_bdev->bd_disk, file->f_mode));
60101509
BB
1624}
1625
1626static int
1627zvol_ioctl_by_inode(struct inode *inode, struct file *file,
ce37ebd2 1628 unsigned int cmd, unsigned long arg)
60101509 1629{
b1c58213 1630 if (file == NULL || inode == NULL)
ce37ebd2
BB
1631 return (SET_ERROR(-EINVAL));
1632
1633 return (zvol_ioctl(inode->i_bdev, file->f_mode, cmd, arg));
60101509
BB
1634}
1635
ce37ebd2 1636#ifdef CONFIG_COMPAT
60101509
BB
1637static long
1638zvol_compat_ioctl_by_inode(struct file *file,
ce37ebd2 1639 unsigned int cmd, unsigned long arg)
60101509 1640{
b1c58213 1641 if (file == NULL)
ce37ebd2
BB
1642 return (SET_ERROR(-EINVAL));
1643
1644 return (zvol_compat_ioctl(file->f_dentry->d_inode->i_bdev,
1645 file->f_mode, cmd, arg));
60101509 1646}
ce37ebd2
BB
1647#else
1648#define zvol_compat_ioctl_by_inode NULL
1649#endif
60101509
BB
1650
1651static struct block_device_operations zvol_ops = {
ce37ebd2
BB
1652 .open = zvol_open_by_inode,
1653 .release = zvol_release_by_inode,
1654 .ioctl = zvol_ioctl_by_inode,
1655 .compat_ioctl = zvol_compat_ioctl_by_inode,
1656 .media_changed = zvol_media_changed,
1657 .revalidate_disk = zvol_revalidate_disk,
1658 .getgeo = zvol_getgeo,
1659 .owner = THIS_MODULE,
60101509
BB
1660};
1661#endif /* HAVE_BDEV_BLOCK_DEVICE_OPERATIONS */
1662
1663/*
1664 * Allocate memory for a new zvol_state_t and setup the required
1665 * request queue and generic disk structures for the block device.
1666 */
1667static zvol_state_t *
1668zvol_alloc(dev_t dev, const char *name)
1669{
1670 zvol_state_t *zv;
cf8738d8 1671 uint64_t volmode;
1672
1673 if (dsl_prop_get_integer(name, "volmode", &volmode, NULL) != 0)
1674 return (NULL);
1675
1676 if (volmode == ZFS_VOLMODE_DEFAULT)
1677 volmode = zvol_volmode;
60101509 1678
c7a7601c 1679 if (volmode == ZFS_VOLMODE_NONE)
1680 return (NULL);
1681
79c76d5b 1682 zv = kmem_zalloc(sizeof (zvol_state_t), KM_SLEEP);
60101509 1683
2a3871d4
RY
1684 list_link_init(&zv->zv_next);
1685
5559ba09
BP
1686 mutex_init(&zv->zv_state_lock, NULL, MUTEX_DEFAULT, NULL);
1687
37f9dac5 1688 zv->zv_queue = blk_alloc_queue(GFP_ATOMIC);
60101509
BB
1689 if (zv->zv_queue == NULL)
1690 goto out_kmem;
1691
37f9dac5 1692 blk_queue_make_request(zv->zv_queue, zvol_request);
cf41432c 1693 blk_queue_set_write_cache(zv->zv_queue, B_TRUE, B_TRUE);
b18019d2 1694
bc17f104
RY
1695 /* Limit read-ahead to a single page to prevent over-prefetching. */
1696 blk_queue_set_read_ahead(zv->zv_queue, 1);
1697
5731140e 1698 /* Disable write merging in favor of the ZIO pipeline. */
10f88c5c 1699 blk_queue_flag_set(QUEUE_FLAG_NOMERGES, zv->zv_queue);
5731140e 1700
60101509
BB
1701 zv->zv_disk = alloc_disk(ZVOL_MINORS);
1702 if (zv->zv_disk == NULL)
1703 goto out_queue;
1704
1705 zv->zv_queue->queuedata = zv;
1706 zv->zv_dev = dev;
1707 zv->zv_open_count = 0;
4c0d8e50 1708 strlcpy(zv->zv_name, name, MAXNAMELEN);
60101509 1709
d88895a0 1710 zfs_rlock_init(&zv->zv_range_lock);
040dab99 1711 rw_init(&zv->zv_suspend_lock, NULL, RW_DEFAULT, NULL);
3c4988c8 1712
60101509 1713 zv->zv_disk->major = zvol_major;
cf8738d8 1714 if (volmode == ZFS_VOLMODE_DEV) {
1715 /*
1716 * ZFS_VOLMODE_DEV disable partitioning on ZVOL devices: set
1717 * gendisk->minors = 1 as noted in include/linux/genhd.h.
1718 * Also disable extended partition numbers (GENHD_FL_EXT_DEVT)
1719 * and suppresses partition scanning (GENHD_FL_NO_PART_SCAN)
1720 * setting gendisk->flags accordingly.
1721 */
1722 zv->zv_disk->minors = 1;
1723#if defined(GENHD_FL_EXT_DEVT)
1724 zv->zv_disk->flags &= ~GENHD_FL_EXT_DEVT;
1725#endif
1726#if defined(GENHD_FL_NO_PART_SCAN)
1727 zv->zv_disk->flags |= GENHD_FL_NO_PART_SCAN;
1728#endif
1729 }
60101509
BB
1730 zv->zv_disk->first_minor = (dev & MINORMASK);
1731 zv->zv_disk->fops = &zvol_ops;
1732 zv->zv_disk->private_data = zv;
1733 zv->zv_disk->queue = zv->zv_queue;
4c0d8e50
FN
1734 snprintf(zv->zv_disk->disk_name, DISK_NAME_LEN, "%s%d",
1735 ZVOL_DEV_NAME, (dev & MINORMASK));
60101509 1736
ce37ebd2 1737 return (zv);
60101509
BB
1738
1739out_queue:
1740 blk_cleanup_queue(zv->zv_queue);
1741out_kmem:
1742 kmem_free(zv, sizeof (zvol_state_t));
0a6bef26 1743
ce37ebd2 1744 return (NULL);
60101509
BB
1745}
1746
1747/*
5559ba09
BP
1748 * Cleanup then free a zvol_state_t which was created by zvol_alloc().
1749 * At this time, the structure is not opened by anyone, is taken off
1750 * the zvol_state_list, and has its private data set to NULL.
1751 * The zvol_state_lock is dropped.
60101509
BB
1752 */
1753static void
5559ba09 1754zvol_free(void *arg)
60101509 1755{
899662e3 1756 zvol_state_t *zv = arg;
5559ba09
BP
1757
1758 ASSERT(!MUTEX_HELD(&zvol_state_lock));
58404a73
BP
1759 ASSERT(!RW_LOCK_HELD(&zv->zv_suspend_lock));
1760 ASSERT(!MUTEX_HELD(&zv->zv_state_lock));
5428dc51 1761 ASSERT(zv->zv_open_count == 0);
5559ba09 1762 ASSERT(zv->zv_disk->private_data == NULL);
5428dc51 1763
040dab99 1764 rw_destroy(&zv->zv_suspend_lock);
d88895a0 1765 zfs_rlock_destroy(&zv->zv_range_lock);
60101509
BB
1766
1767 del_gendisk(zv->zv_disk);
1768 blk_cleanup_queue(zv->zv_queue);
1769 put_disk(zv->zv_disk);
1770
d45e010d 1771 ida_simple_remove(&zvol_ida, MINOR(zv->zv_dev) >> ZVOL_MINOR_BITS);
60101509 1772
5559ba09
BP
1773 mutex_destroy(&zv->zv_state_lock);
1774
1775 kmem_free(zv, sizeof (zvol_state_t));
899662e3
CC
1776}
1777
a0bd735a
BP
1778/*
1779 * Create a block device minor node and setup the linkage between it
1780 * and the specified volume. Once this function returns the block
1781 * device is live and ready for use.
1782 */
60101509 1783static int
a0bd735a 1784zvol_create_minor_impl(const char *name)
60101509
BB
1785{
1786 zvol_state_t *zv;
1787 objset_t *os;
1788 dmu_object_info_t *doi;
1789 uint64_t volsize;
9965059a 1790 uint64_t len;
60101509
BB
1791 unsigned minor = 0;
1792 int error = 0;
d45e010d
CC
1793 int idx;
1794 uint64_t hash = zvol_name_hash(name);
1795
cf8738d8 1796 if (zvol_inhibit_dev)
1797 return (0);
1798
d45e010d
CC
1799 idx = ida_simple_get(&zvol_ida, 0, 0, kmem_flags_convert(KM_SLEEP));
1800 if (idx < 0)
1801 return (SET_ERROR(-idx));
1802 minor = idx << ZVOL_MINOR_BITS;
60101509 1803
58404a73 1804 zv = zvol_find_by_name_hash(name, hash, RW_NONE);
60101509 1805 if (zv) {
58404a73
BP
1806 ASSERT(MUTEX_HELD(&zv->zv_state_lock));
1807 mutex_exit(&zv->zv_state_lock);
2d82116e 1808 ida_simple_remove(&zvol_ida, idx);
5559ba09 1809 return (SET_ERROR(EEXIST));
60101509
BB
1810 }
1811
79c76d5b 1812 doi = kmem_alloc(sizeof (dmu_object_info_t), KM_SLEEP);
60101509 1813
b5256303 1814 error = dmu_objset_own(name, DMU_OST_ZVOL, B_TRUE, B_TRUE, FTAG, &os);
60101509
BB
1815 if (error)
1816 goto out_doi;
1817
1818 error = dmu_object_info(os, ZVOL_OBJ, doi);
1819 if (error)
1820 goto out_dmu_objset_disown;
1821
1822 error = zap_lookup(os, ZVOL_ZAP_OBJ, "size", 8, 1, &volsize);
1823 if (error)
1824 goto out_dmu_objset_disown;
1825
60101509
BB
1826 zv = zvol_alloc(MKDEV(zvol_major, minor), name);
1827 if (zv == NULL) {
2e528b49 1828 error = SET_ERROR(EAGAIN);
60101509
BB
1829 goto out_dmu_objset_disown;
1830 }
d45e010d 1831 zv->zv_hash = hash;
60101509
BB
1832
1833 if (dmu_objset_is_snapshot(os))
1834 zv->zv_flags |= ZVOL_RDONLY;
1835
1836 zv->zv_volblocksize = doi->doi_data_block_size;
1837 zv->zv_volsize = volsize;
1838 zv->zv_objset = os;
1839
1840 set_capacity(zv->zv_disk, zv->zv_volsize >> 9);
1841
c495fe2c 1842 blk_queue_max_hw_sectors(zv->zv_queue, (DMU_MAX_ACCESS / 4) >> 9);
34037afe
ED
1843 blk_queue_max_segments(zv->zv_queue, UINT16_MAX);
1844 blk_queue_max_segment_size(zv->zv_queue, UINT_MAX);
1845 blk_queue_physical_block_size(zv->zv_queue, zv->zv_volblocksize);
1846 blk_queue_io_opt(zv->zv_queue, zv->zv_volblocksize);
7c0e5708
ED
1847 blk_queue_max_discard_sectors(zv->zv_queue,
1848 (zvol_max_discard_blocks * zv->zv_volblocksize) >> 9);
ee5fd0bb 1849 blk_queue_discard_granularity(zv->zv_queue, zv->zv_volblocksize);
10f88c5c 1850 blk_queue_flag_set(QUEUE_FLAG_DISCARD, zv->zv_queue);
37f9dac5 1851#ifdef QUEUE_FLAG_NONROT
10f88c5c 1852 blk_queue_flag_set(QUEUE_FLAG_NONROT, zv->zv_queue);
34037afe 1853#endif
c6a3a222 1854#ifdef QUEUE_FLAG_ADD_RANDOM
10f88c5c 1855 blk_queue_flag_clear(QUEUE_FLAG_ADD_RANDOM, zv->zv_queue);
c6a3a222 1856#endif
34037afe 1857
a4430fce
GW
1858 if (spa_writeable(dmu_objset_spa(os))) {
1859 if (zil_replay_disable)
1860 zil_destroy(dmu_objset_zil(os), B_FALSE);
1861 else
1862 zil_replay(os, zv, zvol_replay_vector);
1863 }
60101509 1864
9965059a
BB
1865 /*
1866 * When udev detects the addition of the device it will immediately
1867 * invoke blkid(8) to determine the type of content on the device.
1868 * Prefetching the blocks commonly scanned by blkid(8) will speed
1869 * up this process.
1870 */
1871 len = MIN(MAX(zvol_prefetch_bytes, 0), SPA_MAXBLOCKSIZE);
1872 if (len > 0) {
fcff0f35
PD
1873 dmu_prefetch(os, ZVOL_OBJ, 0, 0, len, ZIO_PRIORITY_SYNC_READ);
1874 dmu_prefetch(os, ZVOL_OBJ, 0, volsize - len, len,
02730c33 1875 ZIO_PRIORITY_SYNC_READ);
9965059a
BB
1876 }
1877
f74a147c 1878 zv->zv_objset = NULL;
60101509 1879out_dmu_objset_disown:
b5256303 1880 dmu_objset_disown(os, B_TRUE, FTAG);
60101509 1881out_doi:
ce37ebd2 1882 kmem_free(doi, sizeof (dmu_object_info_t));
60101509
BB
1883
1884 if (error == 0) {
5559ba09 1885 mutex_enter(&zvol_state_lock);
60101509 1886 zvol_insert(zv);
5428dc51 1887 mutex_exit(&zvol_state_lock);
60101509 1888 add_disk(zv->zv_disk);
a0bd735a 1889 } else {
d45e010d 1890 ida_simple_remove(&zvol_ida, idx);
60101509
BB
1891 }
1892
ce37ebd2 1893 return (SET_ERROR(error));
60101509
BB
1894}
1895
ba6a2402
BB
1896/*
1897 * Rename a block device minor mode for the specified volume.
1898 */
1899static void
a0bd735a 1900zvol_rename_minor(zvol_state_t *zv, const char *newname)
ba6a2402
BB
1901{
1902 int readonly = get_disk_ro(zv->zv_disk);
1903
1904 ASSERT(MUTEX_HELD(&zvol_state_lock));
58404a73 1905 ASSERT(MUTEX_HELD(&zv->zv_state_lock));
ba6a2402
BB
1906
1907 strlcpy(zv->zv_name, newname, sizeof (zv->zv_name));
040dab99
CC
1908
1909 /* move to new hashtable entry */
1910 zv->zv_hash = zvol_name_hash(zv->zv_name);
1911 hlist_del(&zv->zv_hlink);
1912 hlist_add_head(&zv->zv_hlink, ZVOL_HT_HEAD(zv->zv_hash));
ba6a2402
BB
1913
1914 /*
1915 * The block device's read-only state is briefly changed causing
1916 * a KOBJ_CHANGE uevent to be issued. This ensures udev detects
1917 * the name change and fixes the symlinks. This does not change
1918 * ZVOL_RDONLY in zv->zv_flags so the actual read-only state never
1919 * changes. This would normally be done using kobject_uevent() but
1920 * that is a GPL-only symbol which is why we need this workaround.
1921 */
1922 set_disk_ro(zv->zv_disk, !readonly);
1923 set_disk_ro(zv->zv_disk, readonly);
1924}
1925
7ac557ce
CC
1926typedef struct minors_job {
1927 list_t *list;
1928 list_node_t link;
1929 /* input */
1930 char *name;
1931 /* output */
1932 int error;
1933} minors_job_t;
1934
1935/*
1936 * Prefetch zvol dnodes for the minors_job
1937 */
1938static void
1939zvol_prefetch_minors_impl(void *arg)
1940{
1941 minors_job_t *job = arg;
1942 char *dsname = job->name;
1943 objset_t *os = NULL;
1944
b5256303
TC
1945 job->error = dmu_objset_own(dsname, DMU_OST_ZVOL, B_TRUE, B_TRUE,
1946 FTAG, &os);
7ac557ce
CC
1947 if (job->error == 0) {
1948 dmu_prefetch(os, ZVOL_OBJ, 0, 0, 0, ZIO_PRIORITY_SYNC_READ);
b5256303 1949 dmu_objset_disown(os, B_TRUE, FTAG);
7ac557ce
CC
1950 }
1951}
a0bd735a
BP
1952
1953/*
1954 * Mask errors to continue dmu_objset_find() traversal
1955 */
1956static int
1957zvol_create_snap_minor_cb(const char *dsname, void *arg)
1958{
7ac557ce
CC
1959 minors_job_t *j = arg;
1960 list_t *minors_list = j->list;
1961 const char *name = j->name;
a0bd735a 1962
1ee159f4
BP
1963 ASSERT0(MUTEX_HELD(&spa_namespace_lock));
1964
a0bd735a
BP
1965 /* skip the designated dataset */
1966 if (name && strcmp(dsname, name) == 0)
1967 return (0);
1968
1969 /* at this point, the dsname should name a snapshot */
1970 if (strchr(dsname, '@') == 0) {
1971 dprintf("zvol_create_snap_minor_cb(): "
02730c33 1972 "%s is not a shapshot name\n", dsname);
a0bd735a 1973 } else {
7ac557ce
CC
1974 minors_job_t *job;
1975 char *n = strdup(dsname);
1976 if (n == NULL)
1977 return (0);
1978
1979 job = kmem_alloc(sizeof (minors_job_t), KM_SLEEP);
1980 job->name = n;
1981 job->list = minors_list;
1982 job->error = 0;
1983 list_insert_tail(minors_list, job);
1984 /* don't care if dispatch fails, because job->error is 0 */
1985 taskq_dispatch(system_taskq, zvol_prefetch_minors_impl, job,
1986 TQ_SLEEP);
a0bd735a
BP
1987 }
1988
1989 return (0);
1990}
1991
1992/*
1993 * Mask errors to continue dmu_objset_find() traversal
1994 */
60101509 1995static int
13fe0198 1996zvol_create_minors_cb(const char *dsname, void *arg)
60101509 1997{
a0bd735a
BP
1998 uint64_t snapdev;
1999 int error;
7ac557ce 2000 list_t *minors_list = arg;
a0bd735a 2001
1ee159f4
BP
2002 ASSERT0(MUTEX_HELD(&spa_namespace_lock));
2003
a0bd735a
BP
2004 error = dsl_prop_get_integer(dsname, "snapdev", &snapdev, NULL);
2005 if (error)
2006 return (0);
2007
2008 /*
2009 * Given the name and the 'snapdev' property, create device minor nodes
2010 * with the linkages to zvols/snapshots as needed.
2011 * If the name represents a zvol, create a minor node for the zvol, then
2012 * check if its snapshots are 'visible', and if so, iterate over the
2013 * snapshots and create device minor nodes for those.
2014 */
2015 if (strchr(dsname, '@') == 0) {
7ac557ce
CC
2016 minors_job_t *job;
2017 char *n = strdup(dsname);
2018 if (n == NULL)
2019 return (0);
2020
2021 job = kmem_alloc(sizeof (minors_job_t), KM_SLEEP);
2022 job->name = n;
2023 job->list = minors_list;
2024 job->error = 0;
2025 list_insert_tail(minors_list, job);
2026 /* don't care if dispatch fails, because job->error is 0 */
2027 taskq_dispatch(system_taskq, zvol_prefetch_minors_impl, job,
2028 TQ_SLEEP);
2029
2030 if (snapdev == ZFS_SNAPDEV_VISIBLE) {
a0bd735a
BP
2031 /*
2032 * traverse snapshots only, do not traverse children,
2033 * and skip the 'dsname'
2034 */
2035 error = dmu_objset_find((char *)dsname,
7ac557ce 2036 zvol_create_snap_minor_cb, (void *)job,
a0bd735a 2037 DS_FIND_SNAPSHOTS);
a0bd735a
BP
2038 }
2039 } else {
2040 dprintf("zvol_create_minors_cb(): %s is not a zvol name\n",
02730c33 2041 dsname);
a0bd735a 2042 }
60101509 2043
d5674448 2044 return (0);
60101509
BB
2045}
2046
2047/*
a0bd735a
BP
2048 * Create minors for the specified dataset, including children and snapshots.
2049 * Pay attention to the 'snapdev' property and iterate over the snapshots
2050 * only if they are 'visible'. This approach allows one to assure that the
2051 * snapshot metadata is read from disk only if it is needed.
2052 *
2053 * The name can represent a dataset to be recursively scanned for zvols and
2054 * their snapshots, or a single zvol snapshot. If the name represents a
2055 * dataset, the scan is performed in two nested stages:
2056 * - scan the dataset for zvols, and
2057 * - for each zvol, create a minor node, then check if the zvol's snapshots
2058 * are 'visible', and only then iterate over the snapshots if needed
2059 *
4e33ba4c 2060 * If the name represents a snapshot, a check is performed if the snapshot is
a0bd735a
BP
2061 * 'visible' (which also verifies that the parent is a zvol), and if so,
2062 * a minor node for that snapshot is created.
60101509 2063 */
a0bd735a
BP
2064static int
2065zvol_create_minors_impl(const char *name)
60101509 2066{
60101509 2067 int error = 0;
5428dc51 2068 fstrans_cookie_t cookie;
a0bd735a 2069 char *atp, *parent;
7ac557ce
CC
2070 list_t minors_list;
2071 minors_job_t *job;
60101509 2072
5428dc51
BP
2073 if (zvol_inhibit_dev)
2074 return (0);
2075
7ac557ce
CC
2076 /*
2077 * This is the list for prefetch jobs. Whenever we found a match
2078 * during dmu_objset_find, we insert a minors_job to the list and do
2079 * taskq_dispatch to parallel prefetch zvol dnodes. Note we don't need
2080 * any lock because all list operation is done on the current thread.
2081 *
2082 * We will use this list to do zvol_create_minor_impl after prefetch
2083 * so we don't have to traverse using dmu_objset_find again.
2084 */
2085 list_create(&minors_list, sizeof (minors_job_t),
2086 offsetof(minors_job_t, link));
2087
a0bd735a
BP
2088 parent = kmem_alloc(MAXPATHLEN, KM_SLEEP);
2089 (void) strlcpy(parent, name, MAXPATHLEN);
2090
2091 if ((atp = strrchr(parent, '@')) != NULL) {
2092 uint64_t snapdev;
2093
2094 *atp = '\0';
2095 error = dsl_prop_get_integer(parent, "snapdev",
2096 &snapdev, NULL);
2097
2098 if (error == 0 && snapdev == ZFS_SNAPDEV_VISIBLE)
2099 error = zvol_create_minor_impl(name);
2100 } else {
2101 cookie = spl_fstrans_mark();
2102 error = dmu_objset_find(parent, zvol_create_minors_cb,
7ac557ce 2103 &minors_list, DS_FIND_CHILDREN);
a0bd735a
BP
2104 spl_fstrans_unmark(cookie);
2105 }
2106
2107 kmem_free(parent, MAXPATHLEN);
7ac557ce
CC
2108 taskq_wait_outstanding(system_taskq, 0);
2109
2110 /*
2111 * Prefetch is completed, we can do zvol_create_minor_impl
2112 * sequentially.
2113 */
2114 while ((job = list_head(&minors_list)) != NULL) {
2115 list_remove(&minors_list, job);
2116 if (!job->error)
2117 zvol_create_minor_impl(job->name);
2118 strfree(job->name);
2119 kmem_free(job, sizeof (minors_job_t));
2120 }
2121
2122 list_destroy(&minors_list);
ba6a2402
BB
2123
2124 return (SET_ERROR(error));
2125}
2126
2127/*
2128 * Remove minors for specified dataset including children and snapshots.
2129 */
a0bd735a
BP
2130static void
2131zvol_remove_minors_impl(const char *name)
ba6a2402
BB
2132{
2133 zvol_state_t *zv, *zv_next;
2134 int namelen = ((name) ? strlen(name) : 0);
899662e3 2135 taskqid_t t, tid = TASKQID_INVALID;
5559ba09 2136 list_t free_list;
ba6a2402 2137
74497b7a 2138 if (zvol_inhibit_dev)
ba6a2402 2139 return;
74497b7a 2140
5559ba09
BP
2141 list_create(&free_list, sizeof (zvol_state_t),
2142 offsetof(zvol_state_t, zv_next));
2143
60101509 2144 mutex_enter(&zvol_state_lock);
ba6a2402
BB
2145
2146 for (zv = list_head(&zvol_state_list); zv != NULL; zv = zv_next) {
2147 zv_next = list_next(&zvol_state_list, zv);
2148
58404a73 2149 mutex_enter(&zv->zv_state_lock);
ba6a2402
BB
2150 if (name == NULL || strcmp(zv->zv_name, name) == 0 ||
2151 (strncmp(zv->zv_name, name, namelen) == 0 &&
5428dc51
BP
2152 (zv->zv_name[namelen] == '/' ||
2153 zv->zv_name[namelen] == '@'))) {
5559ba09 2154 /*
58404a73 2155 * By holding zv_state_lock here, we guarantee that no
5559ba09
BP
2156 * one is currently using this zv
2157 */
97f8d796 2158
2159 /* If in use, leave alone */
2160 if (zv->zv_open_count > 0 ||
2161 atomic_read(&zv->zv_suspend_ref)) {
2162 mutex_exit(&zv->zv_state_lock);
2163 continue;
2164 }
2165
ba6a2402 2166 zvol_remove(zv);
899662e3 2167
58404a73
BP
2168 /*
2169 * clear this while holding zvol_state_lock so
2170 * zvol_open won't open it
2171 */
899662e3
CC
2172 zv->zv_disk->private_data = NULL;
2173
97f8d796 2174 /* Drop zv_state_lock before zvol_free() */
2175 mutex_exit(&zv->zv_state_lock);
2176
899662e3 2177 /* try parallel zv_free, if failed do it in place */
5559ba09 2178 t = taskq_dispatch(system_taskq, zvol_free, zv,
899662e3
CC
2179 TQ_SLEEP);
2180 if (t == TASKQID_INVALID)
5559ba09 2181 list_insert_head(&free_list, zv);
899662e3
CC
2182 else
2183 tid = t;
58404a73
BP
2184 } else {
2185 mutex_exit(&zv->zv_state_lock);
60101509 2186 }
60101509 2187 }
ba6a2402 2188 mutex_exit(&zvol_state_lock);
5559ba09
BP
2189
2190 /*
2191 * Drop zvol_state_lock before calling zvol_free()
2192 */
2193 while ((zv = list_head(&free_list)) != NULL) {
2194 list_remove(&free_list, zv);
2195 zvol_free(zv);
2196 }
2197
899662e3
CC
2198 if (tid != TASKQID_INVALID)
2199 taskq_wait_outstanding(system_taskq, tid);
60101509
BB
2200}
2201
cf8738d8 2202/* Remove minor for this specific volume only */
a0bd735a
BP
2203static void
2204zvol_remove_minor_impl(const char *name)
2205{
92aceb2a 2206 zvol_state_t *zv = NULL, *zv_next;
a0bd735a
BP
2207
2208 if (zvol_inhibit_dev)
2209 return;
2210
a0bd735a
BP
2211 mutex_enter(&zvol_state_lock);
2212
2213 for (zv = list_head(&zvol_state_list); zv != NULL; zv = zv_next) {
2214 zv_next = list_next(&zvol_state_list, zv);
2215
58404a73 2216 mutex_enter(&zv->zv_state_lock);
a0bd735a 2217 if (strcmp(zv->zv_name, name) == 0) {
5559ba09 2218 /*
58404a73 2219 * By holding zv_state_lock here, we guarantee that no
5559ba09
BP
2220 * one is currently using this zv
2221 */
97f8d796 2222
2223 /* If in use, leave alone */
2224 if (zv->zv_open_count > 0 ||
2225 atomic_read(&zv->zv_suspend_ref)) {
2226 mutex_exit(&zv->zv_state_lock);
2227 continue;
2228 }
a0bd735a 2229 zvol_remove(zv);
97f8d796 2230
5559ba09
BP
2231 /* clear this so zvol_open won't open it */
2232 zv->zv_disk->private_data = NULL;
97f8d796 2233
2234 mutex_exit(&zv->zv_state_lock);
a0bd735a 2235 break;
58404a73
BP
2236 } else {
2237 mutex_exit(&zv->zv_state_lock);
a0bd735a
BP
2238 }
2239 }
2240
92aceb2a 2241 /* Drop zvol_state_lock before calling zvol_free() */
a0bd735a 2242 mutex_exit(&zvol_state_lock);
5559ba09 2243
92aceb2a 2244 if (zv != NULL)
2245 zvol_free(zv);
a0bd735a
BP
2246}
2247
60101509 2248/*
ba6a2402 2249 * Rename minors for specified dataset including children and snapshots.
60101509 2250 */
a0bd735a
BP
2251static void
2252zvol_rename_minors_impl(const char *oldname, const char *newname)
60101509
BB
2253{
2254 zvol_state_t *zv, *zv_next;
ba6a2402 2255 int oldnamelen, newnamelen;
60101509 2256
74497b7a
DH
2257 if (zvol_inhibit_dev)
2258 return;
2259
ba6a2402
BB
2260 oldnamelen = strlen(oldname);
2261 newnamelen = strlen(newname);
60101509
BB
2262
2263 mutex_enter(&zvol_state_lock);
ba6a2402 2264
60101509
BB
2265 for (zv = list_head(&zvol_state_list); zv != NULL; zv = zv_next) {
2266 zv_next = list_next(&zvol_state_list, zv);
2267
58404a73
BP
2268 mutex_enter(&zv->zv_state_lock);
2269
5428dc51 2270 /* If in use, leave alone */
58404a73
BP
2271 if (zv->zv_open_count > 0) {
2272 mutex_exit(&zv->zv_state_lock);
5428dc51 2273 continue;
58404a73 2274 }
5428dc51 2275
ba6a2402 2276 if (strcmp(zv->zv_name, oldname) == 0) {
a0bd735a 2277 zvol_rename_minor(zv, newname);
ba6a2402
BB
2278 } else if (strncmp(zv->zv_name, oldname, oldnamelen) == 0 &&
2279 (zv->zv_name[oldnamelen] == '/' ||
2280 zv->zv_name[oldnamelen] == '@')) {
682ce104 2281 char *name = kmem_asprintf("%s%c%s", newname,
ba6a2402
BB
2282 zv->zv_name[oldnamelen],
2283 zv->zv_name + oldnamelen + 1);
a0bd735a 2284 zvol_rename_minor(zv, name);
682ce104 2285 kmem_free(name, strlen(name + 1));
60101509 2286 }
58404a73
BP
2287
2288 mutex_exit(&zv->zv_state_lock);
60101509 2289 }
ba6a2402 2290
60101509 2291 mutex_exit(&zvol_state_lock);
60101509
BB
2292}
2293
a0bd735a
BP
2294typedef struct zvol_snapdev_cb_arg {
2295 uint64_t snapdev;
2296} zvol_snapdev_cb_arg_t;
2297
0b4d1b58 2298static int
4ea3f864
GM
2299zvol_set_snapdev_cb(const char *dsname, void *param)
2300{
a0bd735a 2301 zvol_snapdev_cb_arg_t *arg = param;
0b4d1b58
ED
2302
2303 if (strchr(dsname, '@') == NULL)
ba6a2402 2304 return (0);
0b4d1b58 2305
a0bd735a 2306 switch (arg->snapdev) {
0b4d1b58 2307 case ZFS_SNAPDEV_VISIBLE:
a0bd735a 2308 (void) zvol_create_minor_impl(dsname);
0b4d1b58
ED
2309 break;
2310 case ZFS_SNAPDEV_HIDDEN:
a0bd735a 2311 (void) zvol_remove_minor_impl(dsname);
0b4d1b58
ED
2312 break;
2313 }
ba6a2402
BB
2314
2315 return (0);
0b4d1b58
ED
2316}
2317
a0bd735a
BP
2318static void
2319zvol_set_snapdev_impl(char *name, uint64_t snapdev)
2320{
2321 zvol_snapdev_cb_arg_t arg = {snapdev};
2322 fstrans_cookie_t cookie = spl_fstrans_mark();
2323 /*
2324 * The zvol_set_snapdev_sync() sets snapdev appropriately
2325 * in the dataset hierarchy. Here, we only scan snapshots.
2326 */
2327 dmu_objset_find(name, zvol_set_snapdev_cb, &arg, DS_FIND_SNAPSHOTS);
2328 spl_fstrans_unmark(cookie);
2329}
2330
cf8738d8 2331typedef struct zvol_volmode_cb_arg {
2332 uint64_t volmode;
2333} zvol_volmode_cb_arg_t;
2334
2335static void
2336zvol_set_volmode_impl(char *name, uint64_t volmode)
2337{
2338 fstrans_cookie_t cookie = spl_fstrans_mark();
2339
2340 if (strchr(name, '@') != NULL)
2341 return;
2342
2343 /*
2344 * It's unfortunate we need to remove minors before we create new ones:
2345 * this is necessary because our backing gendisk (zvol_state->zv_disk)
2346 * coule be different when we set, for instance, volmode from "geom"
2347 * to "dev" (or vice versa).
2348 * A possible optimization is to modify our consumers so we don't get
2349 * called when "volmode" does not change.
2350 */
2351 switch (volmode) {
2352 case ZFS_VOLMODE_NONE:
2353 (void) zvol_remove_minor_impl(name);
2354 break;
2355 case ZFS_VOLMODE_GEOM:
2356 case ZFS_VOLMODE_DEV:
2357 (void) zvol_remove_minor_impl(name);
2358 (void) zvol_create_minor_impl(name);
2359 break;
2360 case ZFS_VOLMODE_DEFAULT:
2361 (void) zvol_remove_minor_impl(name);
2362 if (zvol_volmode == ZFS_VOLMODE_NONE)
2363 break;
2364 else /* if zvol_volmode is invalid defaults to "geom" */
2365 (void) zvol_create_minor_impl(name);
2366 break;
2367 }
2368
2369 spl_fstrans_unmark(cookie);
2370}
2371
a0bd735a
BP
2372static zvol_task_t *
2373zvol_task_alloc(zvol_async_op_t op, const char *name1, const char *name2,
cf8738d8 2374 uint64_t value)
a0bd735a
BP
2375{
2376 zvol_task_t *task;
2377 char *delim;
2378
2379 /* Never allow tasks on hidden names. */
2380 if (name1[0] == '$')
2381 return (NULL);
2382
2383 task = kmem_zalloc(sizeof (zvol_task_t), KM_SLEEP);
2384 task->op = op;
cf8738d8 2385 task->value = value;
a0bd735a
BP
2386 delim = strchr(name1, '/');
2387 strlcpy(task->pool, name1, delim ? (delim - name1 + 1) : MAXNAMELEN);
2388
2389 strlcpy(task->name1, name1, MAXNAMELEN);
2390 if (name2 != NULL)
2391 strlcpy(task->name2, name2, MAXNAMELEN);
2392
2393 return (task);
2394}
2395
2396static void
2397zvol_task_free(zvol_task_t *task)
2398{
2399 kmem_free(task, sizeof (zvol_task_t));
2400}
2401
2402/*
2403 * The worker thread function performed asynchronously.
2404 */
2405static void
2406zvol_task_cb(void *param)
2407{
2408 zvol_task_t *task = (zvol_task_t *)param;
2409
2410 switch (task->op) {
2411 case ZVOL_ASYNC_CREATE_MINORS:
2412 (void) zvol_create_minors_impl(task->name1);
2413 break;
2414 case ZVOL_ASYNC_REMOVE_MINORS:
2415 zvol_remove_minors_impl(task->name1);
2416 break;
2417 case ZVOL_ASYNC_RENAME_MINORS:
2418 zvol_rename_minors_impl(task->name1, task->name2);
2419 break;
2420 case ZVOL_ASYNC_SET_SNAPDEV:
cf8738d8 2421 zvol_set_snapdev_impl(task->name1, task->value);
2422 break;
2423 case ZVOL_ASYNC_SET_VOLMODE:
2424 zvol_set_volmode_impl(task->name1, task->value);
a0bd735a
BP
2425 break;
2426 default:
2427 VERIFY(0);
2428 break;
2429 }
2430
2431 zvol_task_free(task);
2432}
2433
cf8738d8 2434typedef struct zvol_set_prop_int_arg {
a0bd735a
BP
2435 const char *zsda_name;
2436 uint64_t zsda_value;
2437 zprop_source_t zsda_source;
2438 dmu_tx_t *zsda_tx;
cf8738d8 2439} zvol_set_prop_int_arg_t;
a0bd735a
BP
2440
2441/*
2442 * Sanity check the dataset for safe use by the sync task. No additional
2443 * conditions are imposed.
2444 */
2445static int
2446zvol_set_snapdev_check(void *arg, dmu_tx_t *tx)
2447{
cf8738d8 2448 zvol_set_prop_int_arg_t *zsda = arg;
a0bd735a
BP
2449 dsl_pool_t *dp = dmu_tx_pool(tx);
2450 dsl_dir_t *dd;
2451 int error;
2452
2453 error = dsl_dir_hold(dp, zsda->zsda_name, FTAG, &dd, NULL);
2454 if (error != 0)
2455 return (error);
2456
2457 dsl_dir_rele(dd, FTAG);
2458
2459 return (error);
2460}
2461
92aceb2a 2462/* ARGSUSED */
a0bd735a
BP
2463static int
2464zvol_set_snapdev_sync_cb(dsl_pool_t *dp, dsl_dataset_t *ds, void *arg)
2465{
a0bd735a
BP
2466 char dsname[MAXNAMELEN];
2467 zvol_task_t *task;
92aceb2a 2468 uint64_t snapdev;
a0bd735a
BP
2469
2470 dsl_dataset_name(ds, dsname);
92aceb2a 2471 if (dsl_prop_get_int_ds(ds, "snapdev", &snapdev) != 0)
2472 return (0);
2473 task = zvol_task_alloc(ZVOL_ASYNC_SET_SNAPDEV, dsname, NULL, snapdev);
a0bd735a
BP
2474 if (task == NULL)
2475 return (0);
2476
2477 (void) taskq_dispatch(dp->dp_spa->spa_zvol_taskq, zvol_task_cb,
02730c33 2478 task, TQ_SLEEP);
a0bd735a
BP
2479 return (0);
2480}
2481
2482/*
92aceb2a 2483 * Traverse all child datasets and apply snapdev appropriately.
2484 * We call dsl_prop_set_sync_impl() here to set the value only on the toplevel
2485 * dataset and read the effective "snapdev" on every child in the callback
2486 * function: this is because the value is not guaranteed to be the same in the
2487 * whole dataset hierarchy.
a0bd735a
BP
2488 */
2489static void
2490zvol_set_snapdev_sync(void *arg, dmu_tx_t *tx)
2491{
cf8738d8 2492 zvol_set_prop_int_arg_t *zsda = arg;
a0bd735a
BP
2493 dsl_pool_t *dp = dmu_tx_pool(tx);
2494 dsl_dir_t *dd;
92aceb2a 2495 dsl_dataset_t *ds;
2496 int error;
a0bd735a
BP
2497
2498 VERIFY0(dsl_dir_hold(dp, zsda->zsda_name, FTAG, &dd, NULL));
2499 zsda->zsda_tx = tx;
2500
92aceb2a 2501 error = dsl_dataset_hold(dp, zsda->zsda_name, FTAG, &ds);
2502 if (error == 0) {
2503 dsl_prop_set_sync_impl(ds, zfs_prop_to_name(ZFS_PROP_SNAPDEV),
2504 zsda->zsda_source, sizeof (zsda->zsda_value), 1,
2505 &zsda->zsda_value, zsda->zsda_tx);
2506 dsl_dataset_rele(ds, FTAG);
2507 }
a0bd735a
BP
2508 dmu_objset_find_dp(dp, dd->dd_object, zvol_set_snapdev_sync_cb,
2509 zsda, DS_FIND_CHILDREN);
2510
2511 dsl_dir_rele(dd, FTAG);
2512}
2513
0b4d1b58 2514int
a0bd735a
BP
2515zvol_set_snapdev(const char *ddname, zprop_source_t source, uint64_t snapdev)
2516{
cf8738d8 2517 zvol_set_prop_int_arg_t zsda;
5428dc51 2518
a0bd735a
BP
2519 zsda.zsda_name = ddname;
2520 zsda.zsda_source = source;
2521 zsda.zsda_value = snapdev;
5428dc51 2522
a0bd735a
BP
2523 return (dsl_sync_task(ddname, zvol_set_snapdev_check,
2524 zvol_set_snapdev_sync, &zsda, 0, ZFS_SPACE_CHECK_NONE));
2525}
2526
cf8738d8 2527/*
2528 * Sanity check the dataset for safe use by the sync task. No additional
2529 * conditions are imposed.
2530 */
2531static int
2532zvol_set_volmode_check(void *arg, dmu_tx_t *tx)
2533{
2534 zvol_set_prop_int_arg_t *zsda = arg;
2535 dsl_pool_t *dp = dmu_tx_pool(tx);
2536 dsl_dir_t *dd;
2537 int error;
2538
2539 error = dsl_dir_hold(dp, zsda->zsda_name, FTAG, &dd, NULL);
2540 if (error != 0)
2541 return (error);
2542
2543 dsl_dir_rele(dd, FTAG);
2544
2545 return (error);
2546}
2547
2548/* ARGSUSED */
2549static int
2550zvol_set_volmode_sync_cb(dsl_pool_t *dp, dsl_dataset_t *ds, void *arg)
2551{
2552 char dsname[MAXNAMELEN];
2553 zvol_task_t *task;
2554 uint64_t volmode;
2555
2556 dsl_dataset_name(ds, dsname);
2557 if (dsl_prop_get_int_ds(ds, "volmode", &volmode) != 0)
2558 return (0);
2559 task = zvol_task_alloc(ZVOL_ASYNC_SET_VOLMODE, dsname, NULL, volmode);
2560 if (task == NULL)
2561 return (0);
2562
2563 (void) taskq_dispatch(dp->dp_spa->spa_zvol_taskq, zvol_task_cb,
2564 task, TQ_SLEEP);
2565 return (0);
2566}
2567
2568/*
2569 * Traverse all child datasets and apply volmode appropriately.
2570 * We call dsl_prop_set_sync_impl() here to set the value only on the toplevel
2571 * dataset and read the effective "volmode" on every child in the callback
2572 * function: this is because the value is not guaranteed to be the same in the
2573 * whole dataset hierarchy.
2574 */
2575static void
2576zvol_set_volmode_sync(void *arg, dmu_tx_t *tx)
2577{
2578 zvol_set_prop_int_arg_t *zsda = arg;
2579 dsl_pool_t *dp = dmu_tx_pool(tx);
2580 dsl_dir_t *dd;
2581 dsl_dataset_t *ds;
2582 int error;
2583
2584 VERIFY0(dsl_dir_hold(dp, zsda->zsda_name, FTAG, &dd, NULL));
2585 zsda->zsda_tx = tx;
2586
2587 error = dsl_dataset_hold(dp, zsda->zsda_name, FTAG, &ds);
2588 if (error == 0) {
2589 dsl_prop_set_sync_impl(ds, zfs_prop_to_name(ZFS_PROP_VOLMODE),
2590 zsda->zsda_source, sizeof (zsda->zsda_value), 1,
2591 &zsda->zsda_value, zsda->zsda_tx);
2592 dsl_dataset_rele(ds, FTAG);
2593 }
2594
2595 dmu_objset_find_dp(dp, dd->dd_object, zvol_set_volmode_sync_cb,
2596 zsda, DS_FIND_CHILDREN);
2597
2598 dsl_dir_rele(dd, FTAG);
2599}
2600
2601int
2602zvol_set_volmode(const char *ddname, zprop_source_t source, uint64_t volmode)
2603{
2604 zvol_set_prop_int_arg_t zsda;
2605
2606 zsda.zsda_name = ddname;
2607 zsda.zsda_source = source;
2608 zsda.zsda_value = volmode;
2609
2610 return (dsl_sync_task(ddname, zvol_set_volmode_check,
2611 zvol_set_volmode_sync, &zsda, 0, ZFS_SPACE_CHECK_NONE));
2612}
2613
a0bd735a
BP
2614void
2615zvol_create_minors(spa_t *spa, const char *name, boolean_t async)
2616{
2617 zvol_task_t *task;
2618 taskqid_t id;
2619
2620 task = zvol_task_alloc(ZVOL_ASYNC_CREATE_MINORS, name, NULL, ~0ULL);
2621 if (task == NULL)
2622 return;
2623
2624 id = taskq_dispatch(spa->spa_zvol_taskq, zvol_task_cb, task, TQ_SLEEP);
48d3eb40 2625 if ((async == B_FALSE) && (id != TASKQID_INVALID))
a0bd735a
BP
2626 taskq_wait_id(spa->spa_zvol_taskq, id);
2627}
2628
2629void
2630zvol_remove_minors(spa_t *spa, const char *name, boolean_t async)
2631{
2632 zvol_task_t *task;
2633 taskqid_t id;
2634
2635 task = zvol_task_alloc(ZVOL_ASYNC_REMOVE_MINORS, name, NULL, ~0ULL);
2636 if (task == NULL)
2637 return;
5428dc51 2638
a0bd735a 2639 id = taskq_dispatch(spa->spa_zvol_taskq, zvol_task_cb, task, TQ_SLEEP);
48d3eb40 2640 if ((async == B_FALSE) && (id != TASKQID_INVALID))
a0bd735a
BP
2641 taskq_wait_id(spa->spa_zvol_taskq, id);
2642}
2643
2644void
2645zvol_rename_minors(spa_t *spa, const char *name1, const char *name2,
2646 boolean_t async)
2647{
2648 zvol_task_t *task;
2649 taskqid_t id;
2650
2651 task = zvol_task_alloc(ZVOL_ASYNC_RENAME_MINORS, name1, name2, ~0ULL);
2652 if (task == NULL)
2653 return;
2654
2655 id = taskq_dispatch(spa->spa_zvol_taskq, zvol_task_cb, task, TQ_SLEEP);
48d3eb40 2656 if ((async == B_FALSE) && (id != TASKQID_INVALID))
a0bd735a 2657 taskq_wait_id(spa->spa_zvol_taskq, id);
0b4d1b58
ED
2658}
2659
60101509
BB
2660int
2661zvol_init(void)
2662{
692e55b8 2663 int threads = MIN(MAX(zvol_threads, 1), 1024);
d45e010d 2664 int i, error;
60101509 2665
2a3871d4 2666 list_create(&zvol_state_list, sizeof (zvol_state_t),
ce37ebd2 2667 offsetof(zvol_state_t, zv_next));
2a3871d4 2668 mutex_init(&zvol_state_lock, NULL, MUTEX_DEFAULT, NULL);
4a5d7f82 2669 ida_init(&zvol_ida);
2a3871d4 2670
692e55b8
CC
2671 zvol_taskq = taskq_create(ZVOL_DRIVER, threads, maxclsyspri,
2672 threads * 2, INT_MAX, TASKQ_PREPOPULATE | TASKQ_DYNAMIC);
2673 if (zvol_taskq == NULL) {
2674 printk(KERN_INFO "ZFS: taskq_create() failed\n");
2675 error = -ENOMEM;
2676 goto out;
2677 }
2678
d45e010d
CC
2679 zvol_htable = kmem_alloc(ZVOL_HT_SIZE * sizeof (struct hlist_head),
2680 KM_SLEEP);
2681 if (!zvol_htable) {
692e55b8
CC
2682 error = -ENOMEM;
2683 goto out_taskq;
d45e010d
CC
2684 }
2685 for (i = 0; i < ZVOL_HT_SIZE; i++)
2686 INIT_HLIST_HEAD(&zvol_htable[i]);
2687
60101509
BB
2688 error = register_blkdev(zvol_major, ZVOL_DRIVER);
2689 if (error) {
2690 printk(KERN_INFO "ZFS: register_blkdev() failed %d\n", error);
d45e010d 2691 goto out_free;
60101509
BB
2692 }
2693
2694 blk_register_region(MKDEV(zvol_major, 0), 1UL << MINORBITS,
ce37ebd2 2695 THIS_MODULE, zvol_probe, NULL, NULL);
60101509 2696
60101509 2697 return (0);
2a3871d4 2698
d45e010d
CC
2699out_free:
2700 kmem_free(zvol_htable, ZVOL_HT_SIZE * sizeof (struct hlist_head));
692e55b8
CC
2701out_taskq:
2702 taskq_destroy(zvol_taskq);
37f9dac5 2703out:
8f7933fe 2704 ida_destroy(&zvol_ida);
2a3871d4
RY
2705 mutex_destroy(&zvol_state_lock);
2706 list_destroy(&zvol_state_list);
2707
ce37ebd2 2708 return (SET_ERROR(error));
60101509
BB
2709}
2710
2711void
2712zvol_fini(void)
2713{
a0bd735a
BP
2714 zvol_remove_minors_impl(NULL);
2715
60101509
BB
2716 blk_unregister_region(MKDEV(zvol_major, 0), 1UL << MINORBITS);
2717 unregister_blkdev(zvol_major, ZVOL_DRIVER);
d45e010d 2718 kmem_free(zvol_htable, ZVOL_HT_SIZE * sizeof (struct hlist_head));
a0bd735a 2719
692e55b8 2720 taskq_destroy(zvol_taskq);
60101509 2721 list_destroy(&zvol_state_list);
a0bd735a 2722 mutex_destroy(&zvol_state_lock);
f2d8bdc6
CC
2723
2724 ida_destroy(&zvol_ida);
60101509
BB
2725}
2726
02730c33 2727/* BEGIN CSTYLED */
74497b7a
DH
2728module_param(zvol_inhibit_dev, uint, 0644);
2729MODULE_PARM_DESC(zvol_inhibit_dev, "Do not create zvol device nodes");
2730
30a9524e 2731module_param(zvol_major, uint, 0444);
60101509
BB
2732MODULE_PARM_DESC(zvol_major, "Major number for zvol device");
2733
692e55b8
CC
2734module_param(zvol_threads, uint, 0444);
2735MODULE_PARM_DESC(zvol_threads, "Max number of threads to handle I/O requests");
2736
2737module_param(zvol_request_sync, uint, 0644);
2738MODULE_PARM_DESC(zvol_request_sync, "Synchronously handle bio requests");
2739
7c0e5708 2740module_param(zvol_max_discard_blocks, ulong, 0444);
ce37ebd2 2741MODULE_PARM_DESC(zvol_max_discard_blocks, "Max number of blocks to discard");
9965059a
BB
2742
2743module_param(zvol_prefetch_bytes, uint, 0644);
2744MODULE_PARM_DESC(zvol_prefetch_bytes, "Prefetch N bytes at zvol start+end");
cf8738d8 2745
2746module_param(zvol_volmode, uint, 0644);
2747MODULE_PARM_DESC(zvol_volmode, "Default volmode property value");
02730c33 2748/* END CSTYLED */