]> git.proxmox.com Git - mirror_zfs.git/blame - module/zfs/zvol.c
OpenZFS 8607 - variable set but not used
[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;
d45e010d 205 struct hlist_node *p;
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)
1055 zil_add_block(zgd->zgd_zilog, zgd->zgd_bp);
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
1064zvol_get_data(void *arg, lr_write_t *lr, char *buf, zio_t *zio)
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
1073 ASSERT(zio != NULL);
1074 ASSERT(size != 0);
1075
79c76d5b 1076 zgd = (zgd_t *)kmem_zalloc(sizeof (zgd_t), KM_SLEEP);
60101509 1077 zgd->zgd_zilog = zv->zv_zilog;
60101509
BB
1078
1079 /*
1080 * Write records come in two flavors: immediate and indirect.
1081 * For small writes it's cheaper to store the data with the
1082 * log record (immediate); for large writes it's cheaper to
1083 * sync the data and get a pointer to it (indirect) so that
1084 * we don't have to write the data twice.
1085 */
1086 if (buf != NULL) { /* immediate write */
f763c3d1 1087 zgd->zgd_rl = zfs_range_lock(&zv->zv_range_lock, offset, size,
1088 RL_READER);
5228cf01 1089 error = dmu_read_by_dnode(zv->zv_dn, offset, size, buf,
60101509 1090 DMU_READ_NO_PREFETCH);
f763c3d1 1091 } else { /* indirect write */
1092 /*
1093 * Have to lock the whole block to ensure when it's written out
1094 * and its checksum is being calculated that no one can change
1095 * the data. Contrarily to zfs_get_data we need not re-check
1096 * blocksize after we get the lock because it cannot be changed.
1097 */
60101509
BB
1098 size = zv->zv_volblocksize;
1099 offset = P2ALIGN_TYPED(offset, size, uint64_t);
f763c3d1 1100 zgd->zgd_rl = zfs_range_lock(&zv->zv_range_lock, offset, size,
1101 RL_READER);
5228cf01 1102 error = dmu_buf_hold_by_dnode(zv->zv_dn, offset, zgd, &db,
60101509
BB
1103 DMU_READ_NO_PREFETCH);
1104 if (error == 0) {
02dc43bc 1105 blkptr_t *bp = &lr->lr_blkptr;
03c6040b 1106
60101509 1107 zgd->zgd_db = db;
02dc43bc 1108 zgd->zgd_bp = bp;
60101509
BB
1109
1110 ASSERT(db != NULL);
1111 ASSERT(db->db_offset == offset);
1112 ASSERT(db->db_size == size);
1113
1114 error = dmu_sync(zio, lr->lr_common.lrc_txg,
1115 zvol_get_done, zgd);
1116
1117 if (error == 0)
1118 return (0);
1119 }
1120 }
1121
1122 zvol_get_done(zgd, error);
1123
ce37ebd2 1124 return (SET_ERROR(error));
60101509
BB
1125}
1126
1127/*
d45e010d 1128 * The zvol_state_t's are inserted into zvol_state_list and zvol_htable.
60101509
BB
1129 */
1130static void
d45e010d 1131zvol_insert(zvol_state_t *zv)
60101509 1132{
60101509 1133 ASSERT(MUTEX_HELD(&zvol_state_lock));
d45e010d
CC
1134 ASSERT3U(MINOR(zv->zv_dev) & ZVOL_MINOR_MASK, ==, 0);
1135 list_insert_head(&zvol_state_list, zv);
1136 hlist_add_head(&zv->zv_hlink, ZVOL_HT_HEAD(zv->zv_hash));
60101509
BB
1137}
1138
1139/*
1140 * Simply remove the zvol from to list of zvols.
1141 */
1142static void
d45e010d 1143zvol_remove(zvol_state_t *zv)
60101509
BB
1144{
1145 ASSERT(MUTEX_HELD(&zvol_state_lock));
d45e010d
CC
1146 list_remove(&zvol_state_list, zv);
1147 hlist_del(&zv->zv_hlink);
60101509
BB
1148}
1149
040dab99
CC
1150/*
1151 * Setup zv after we just own the zv->objset
1152 */
60101509 1153static int
040dab99 1154zvol_setup_zv(zvol_state_t *zv)
60101509 1155{
60101509
BB
1156 uint64_t volsize;
1157 int error;
1158 uint64_t ro;
040dab99 1159 objset_t *os = zv->zv_objset;
1ee159f4 1160
58404a73
BP
1161 ASSERT(MUTEX_HELD(&zv->zv_state_lock) &&
1162 RW_LOCK_HELD(&zv->zv_suspend_lock));
1163
1ee159f4
BP
1164 error = dsl_prop_get_integer(zv->zv_name, "readonly", &ro, NULL);
1165 if (error)
040dab99 1166 return (SET_ERROR(error));
60101509
BB
1167
1168 error = zap_lookup(os, ZVOL_ZAP_OBJ, "size", 8, 1, &volsize);
1ee159f4 1169 if (error)
040dab99 1170 return (SET_ERROR(error));
60101509 1171
5228cf01 1172 error = dnode_hold(os, ZVOL_OBJ, FTAG, &zv->zv_dn);
1ee159f4 1173 if (error)
040dab99 1174 return (SET_ERROR(error));
60101509
BB
1175
1176 set_capacity(zv->zv_disk, volsize >> 9);
1177 zv->zv_volsize = volsize;
1178 zv->zv_zilog = zil_open(os, zvol_get_data);
1179
a4430fce
GW
1180 if (ro || dmu_objset_is_snapshot(os) ||
1181 !spa_writeable(dmu_objset_spa(os))) {
babf3f9b
MM
1182 set_disk_ro(zv->zv_disk, 1);
1183 zv->zv_flags |= ZVOL_RDONLY;
60101509 1184 } else {
babf3f9b
MM
1185 set_disk_ro(zv->zv_disk, 0);
1186 zv->zv_flags &= ~ZVOL_RDONLY;
60101509 1187 }
040dab99 1188 return (0);
60101509
BB
1189}
1190
040dab99
CC
1191/*
1192 * Shutdown every zv_objset related stuff except zv_objset itself.
1193 * The is the reverse of zvol_setup_zv.
1194 */
60101509 1195static void
040dab99 1196zvol_shutdown_zv(zvol_state_t *zv)
60101509 1197{
58404a73
BP
1198 ASSERT(MUTEX_HELD(&zv->zv_state_lock) &&
1199 RW_LOCK_HELD(&zv->zv_suspend_lock));
1200
60101509
BB
1201 zil_close(zv->zv_zilog);
1202 zv->zv_zilog = NULL;
04434775 1203
5228cf01
RY
1204 dnode_rele(zv->zv_dn, FTAG);
1205 zv->zv_dn = NULL;
04434775
MA
1206
1207 /*
1208 * Evict cached data
1209 */
1210 if (dsl_dataset_is_dirty(dmu_objset_ds(zv->zv_objset)) &&
1211 !(zv->zv_flags & ZVOL_RDONLY))
1212 txg_wait_synced(dmu_objset_pool(zv->zv_objset), 0);
1213 (void) dmu_objset_evict_dbufs(zv->zv_objset);
040dab99
CC
1214}
1215
1216/*
1217 * return the proper tag for rollback and recv
1218 */
1219void *
1220zvol_tag(zvol_state_t *zv)
1221{
1222 ASSERT(RW_WRITE_HELD(&zv->zv_suspend_lock));
1223 return (zv->zv_open_count > 0 ? zv : NULL);
1224}
1225
1226/*
1227 * Suspend the zvol for recv and rollback.
1228 */
1229zvol_state_t *
1230zvol_suspend(const char *name)
1231{
1232 zvol_state_t *zv;
1233
58404a73
BP
1234 zv = zvol_find_by_name(name, RW_WRITER);
1235
1236 if (zv == NULL)
5559ba09 1237 return (NULL);
04434775 1238
040dab99 1239 /* block all I/O, release in zvol_resume. */
58404a73
BP
1240 ASSERT(MUTEX_HELD(&zv->zv_state_lock) &&
1241 RW_WRITE_HELD(&zv->zv_suspend_lock));
040dab99
CC
1242
1243 atomic_inc(&zv->zv_suspend_ref);
1244
1245 if (zv->zv_open_count > 0)
1246 zvol_shutdown_zv(zv);
5559ba09 1247
58404a73
BP
1248 /*
1249 * do not hold zv_state_lock across suspend/resume to
1250 * avoid locking up zvol lookups
1251 */
5559ba09 1252 mutex_exit(&zv->zv_state_lock);
58404a73
BP
1253
1254 /* zv_suspend_lock is released in zvol_resume() */
040dab99
CC
1255 return (zv);
1256}
1257
1258int
1259zvol_resume(zvol_state_t *zv)
1260{
1261 int error = 0;
1262
1263 ASSERT(RW_WRITE_HELD(&zv->zv_suspend_lock));
2d82116e 1264
58404a73
BP
1265 mutex_enter(&zv->zv_state_lock);
1266
040dab99
CC
1267 if (zv->zv_open_count > 0) {
1268 VERIFY0(dmu_objset_hold(zv->zv_name, zv, &zv->zv_objset));
1269 VERIFY3P(zv->zv_objset->os_dsl_dataset->ds_owner, ==, zv);
1270 VERIFY(dsl_dataset_long_held(zv->zv_objset->os_dsl_dataset));
1271 dmu_objset_rele(zv->zv_objset, zv);
1272
1273 error = zvol_setup_zv(zv);
1274 }
58404a73
BP
1275
1276 mutex_exit(&zv->zv_state_lock);
1277
040dab99
CC
1278 rw_exit(&zv->zv_suspend_lock);
1279 /*
1280 * We need this because we don't hold zvol_state_lock while releasing
1281 * zv_suspend_lock. zvol_remove_minors_impl thus cannot check
1282 * zv_suspend_lock to determine it is safe to free because rwlock is
1283 * not inherent atomic.
1284 */
1285 atomic_dec(&zv->zv_suspend_ref);
1286
1287 return (SET_ERROR(error));
1288}
1289
1290static int
1291zvol_first_open(zvol_state_t *zv)
1292{
1293 objset_t *os;
07783588
BP
1294 int error, locked = 0;
1295
58404a73
BP
1296 ASSERT(RW_READ_HELD(&zv->zv_suspend_lock));
1297 ASSERT(MUTEX_HELD(&zv->zv_state_lock));
1298
07783588
BP
1299 /*
1300 * In all other cases the spa_namespace_lock is taken before the
1301 * bdev->bd_mutex lock. But in this case the Linux __blkdev_get()
1302 * function calls fops->open() with the bdev->bd_mutex lock held.
1303 * This deadlock can be easily observed with zvols used as vdevs.
1304 *
1305 * To avoid a potential lock inversion deadlock we preemptively
1306 * try to take the spa_namespace_lock(). Normally it will not
1307 * be contended and this is safe because spa_open_common() handles
1308 * the case where the caller already holds the spa_namespace_lock.
1309 *
1310 * When it is contended we risk a lock inversion if we were to
1311 * block waiting for the lock. Luckily, the __blkdev_get()
1312 * function allows us to return -ERESTARTSYS which will result in
1313 * bdev->bd_mutex being dropped, reacquired, and fops->open() being
1314 * called again. This process can be repeated safely until both
1315 * locks are acquired.
1316 */
1317 if (!mutex_owned(&spa_namespace_lock)) {
1318 locked = mutex_tryenter(&spa_namespace_lock);
1319 if (!locked)
1320 return (-SET_ERROR(ERESTARTSYS));
1321 }
040dab99
CC
1322
1323 /* lie and say we're read-only */
b5256303 1324 error = dmu_objset_own(zv->zv_name, DMU_OST_ZVOL, 1, 1, zv, &os);
040dab99 1325 if (error)
07783588 1326 goto out_mutex;
040dab99
CC
1327
1328 zv->zv_objset = os;
1329
1330 error = zvol_setup_zv(zv);
1331
1332 if (error) {
b5256303 1333 dmu_objset_disown(os, 1, zv);
040dab99
CC
1334 zv->zv_objset = NULL;
1335 }
1336
07783588
BP
1337out_mutex:
1338 if (locked)
1339 mutex_exit(&spa_namespace_lock);
040dab99
CC
1340 return (SET_ERROR(-error));
1341}
1342
1343static void
1344zvol_last_close(zvol_state_t *zv)
1345{
58404a73
BP
1346 ASSERT(RW_READ_HELD(&zv->zv_suspend_lock));
1347 ASSERT(MUTEX_HELD(&zv->zv_state_lock));
1348
040dab99
CC
1349 zvol_shutdown_zv(zv);
1350
b5256303 1351 dmu_objset_disown(zv->zv_objset, 1, zv);
60101509
BB
1352 zv->zv_objset = NULL;
1353}
1354
1355static int
1356zvol_open(struct block_device *bdev, fmode_t flag)
1357{
5428dc51 1358 zvol_state_t *zv;
58404a73 1359 int error = 0;
5146d802 1360 boolean_t drop_suspend = B_TRUE;
60101509 1361
5146d802 1362 ASSERT(!MUTEX_HELD(&zvol_state_lock));
60101509 1363
5559ba09 1364 mutex_enter(&zvol_state_lock);
5428dc51 1365 /*
58404a73
BP
1366 * Obtain a copy of private_data under the zvol_state_lock to make
1367 * sure that either the result of zvol free code path setting
5428dc51
BP
1368 * bdev->bd_disk->private_data to NULL is observed, or zvol_free()
1369 * is not called on this zv because of the positive zv_open_count.
1370 */
1371 zv = bdev->bd_disk->private_data;
1372 if (zv == NULL) {
5559ba09
BP
1373 mutex_exit(&zvol_state_lock);
1374 return (SET_ERROR(-ENXIO));
5428dc51 1375 }
58404a73 1376
5559ba09 1377 mutex_enter(&zv->zv_state_lock);
58404a73
BP
1378 /*
1379 * make sure zvol is not suspended during first open
5146d802
BP
1380 * (hold zv_suspend_lock) and respect proper lock acquisition
1381 * ordering - zv_suspend_lock before zv_state_lock
58404a73 1382 */
60101509 1383 if (zv->zv_open_count == 0) {
5146d802
BP
1384 if (!rw_tryenter(&zv->zv_suspend_lock, RW_READER)) {
1385 mutex_exit(&zv->zv_state_lock);
1386 rw_enter(&zv->zv_suspend_lock, RW_READER);
1387 mutex_enter(&zv->zv_state_lock);
1388 /* check to see if zv_suspend_lock is needed */
1389 if (zv->zv_open_count != 0) {
1390 rw_exit(&zv->zv_suspend_lock);
1391 drop_suspend = B_FALSE;
1392 }
1393 }
58404a73 1394 } else {
5146d802 1395 drop_suspend = B_FALSE;
58404a73 1396 }
58404a73 1397 mutex_exit(&zvol_state_lock);
040dab99 1398
5146d802
BP
1399 ASSERT(MUTEX_HELD(&zv->zv_state_lock));
1400 ASSERT(zv->zv_open_count != 0 || RW_READ_HELD(&zv->zv_suspend_lock));
1401
58404a73 1402 if (zv->zv_open_count == 0) {
60101509
BB
1403 error = zvol_first_open(zv);
1404 if (error)
1405 goto out_mutex;
1406 }
1407
ba6a2402 1408 if ((flag & FMODE_WRITE) && (zv->zv_flags & ZVOL_RDONLY)) {
60101509
BB
1409 error = -EROFS;
1410 goto out_open_count;
1411 }
1412
1413 zv->zv_open_count++;
1414
5428dc51
BP
1415 check_disk_change(bdev);
1416
60101509
BB
1417out_open_count:
1418 if (zv->zv_open_count == 0)
1419 zvol_last_close(zv);
60101509 1420out_mutex:
58404a73 1421 mutex_exit(&zv->zv_state_lock);
040dab99
CC
1422 if (drop_suspend)
1423 rw_exit(&zv->zv_suspend_lock);
94b25662
AB
1424 if (error == -ERESTARTSYS)
1425 schedule();
60101509 1426
ce37ebd2 1427 return (SET_ERROR(error));
60101509
BB
1428}
1429
a1d9543a
CD
1430#ifdef HAVE_BLOCK_DEVICE_OPERATIONS_RELEASE_VOID
1431static void
1432#else
60101509 1433static int
a1d9543a 1434#endif
60101509
BB
1435zvol_release(struct gendisk *disk, fmode_t mode)
1436{
5559ba09 1437 zvol_state_t *zv;
5146d802 1438 boolean_t drop_suspend = B_TRUE;
60101509 1439
5146d802 1440 ASSERT(!MUTEX_HELD(&zvol_state_lock));
5428dc51 1441
5559ba09
BP
1442 mutex_enter(&zvol_state_lock);
1443 zv = disk->private_data;
58404a73 1444
5559ba09 1445 mutex_enter(&zv->zv_state_lock);
5146d802 1446 ASSERT(zv->zv_open_count > 0);
58404a73
BP
1447 /*
1448 * make sure zvol is not suspended during last close
5146d802
BP
1449 * (hold zv_suspend_lock) and respect proper lock acquisition
1450 * ordering - zv_suspend_lock before zv_state_lock
58404a73 1451 */
5146d802
BP
1452 if (zv->zv_open_count == 1) {
1453 if (!rw_tryenter(&zv->zv_suspend_lock, RW_READER)) {
1454 mutex_exit(&zv->zv_state_lock);
1455 rw_enter(&zv->zv_suspend_lock, RW_READER);
1456 mutex_enter(&zv->zv_state_lock);
1457 /* check to see if zv_suspend_lock is needed */
1458 if (zv->zv_open_count != 1) {
1459 rw_exit(&zv->zv_suspend_lock);
1460 drop_suspend = B_FALSE;
1461 }
1462 }
1463 } else {
1464 drop_suspend = B_FALSE;
1465 }
1466 mutex_exit(&zvol_state_lock);
1467
1468 ASSERT(MUTEX_HELD(&zv->zv_state_lock));
1469 ASSERT(zv->zv_open_count != 1 || RW_READ_HELD(&zv->zv_suspend_lock));
040dab99 1470
5428dc51 1471 zv->zv_open_count--;
58404a73 1472 if (zv->zv_open_count == 0)
5428dc51 1473 zvol_last_close(zv);
60101509 1474
5559ba09 1475 mutex_exit(&zv->zv_state_lock);
60101509 1476
58404a73
BP
1477 if (drop_suspend)
1478 rw_exit(&zv->zv_suspend_lock);
1479
a1d9543a 1480#ifndef HAVE_BLOCK_DEVICE_OPERATIONS_RELEASE_VOID
60101509 1481 return (0);
a1d9543a 1482#endif
60101509
BB
1483}
1484
1485static int
1486zvol_ioctl(struct block_device *bdev, fmode_t mode,
ce37ebd2 1487 unsigned int cmd, unsigned long arg)
60101509
BB
1488{
1489 zvol_state_t *zv = bdev->bd_disk->private_data;
1490 int error = 0;
1491
5428dc51 1492 ASSERT(zv && zv->zv_open_count > 0);
60101509
BB
1493
1494 switch (cmd) {
1495 case BLKFLSBUF:
ef1bdf36
BB
1496 fsync_bdev(bdev);
1497 invalidate_bdev(bdev);
1498 rw_enter(&zv->zv_suspend_lock, RW_READER);
1499
1500 if (dsl_dataset_is_dirty(dmu_objset_ds(zv->zv_objset)) &&
1501 !(zv->zv_flags & ZVOL_RDONLY))
1502 txg_wait_synced(dmu_objset_pool(zv->zv_objset), 0);
1503
1504 rw_exit(&zv->zv_suspend_lock);
60101509 1505 break;
ef1bdf36 1506
4c0d8e50 1507 case BLKZNAME:
5559ba09 1508 mutex_enter(&zv->zv_state_lock);
4c0d8e50 1509 error = copy_to_user((void *)arg, zv->zv_name, MAXNAMELEN);
5559ba09 1510 mutex_exit(&zv->zv_state_lock);
4c0d8e50 1511 break;
60101509
BB
1512
1513 default:
1514 error = -ENOTTY;
1515 break;
60101509
BB
1516 }
1517
ce37ebd2 1518 return (SET_ERROR(error));
60101509
BB
1519}
1520
1521#ifdef CONFIG_COMPAT
1522static int
1523zvol_compat_ioctl(struct block_device *bdev, fmode_t mode,
ce37ebd2 1524 unsigned cmd, unsigned long arg)
60101509 1525{
ce37ebd2 1526 return (zvol_ioctl(bdev, mode, cmd, arg));
60101509
BB
1527}
1528#else
ce37ebd2 1529#define zvol_compat_ioctl NULL
60101509
BB
1530#endif
1531
1532static int zvol_media_changed(struct gendisk *disk)
1533{
1534 zvol_state_t *zv = disk->private_data;
1535
5428dc51
BP
1536 ASSERT(zv && zv->zv_open_count > 0);
1537
ce37ebd2 1538 return (zv->zv_changed);
60101509
BB
1539}
1540
1541static int zvol_revalidate_disk(struct gendisk *disk)
1542{
1543 zvol_state_t *zv = disk->private_data;
1544
5428dc51
BP
1545 ASSERT(zv && zv->zv_open_count > 0);
1546
60101509
BB
1547 zv->zv_changed = 0;
1548 set_capacity(zv->zv_disk, zv->zv_volsize >> 9);
1549
ce37ebd2 1550 return (0);
60101509
BB
1551}
1552
1553/*
1554 * Provide a simple virtual geometry for legacy compatibility. For devices
1555 * smaller than 1 MiB a small head and sector count is used to allow very
1556 * tiny devices. For devices over 1 Mib a standard head and sector count
1557 * is used to keep the cylinders count reasonable.
1558 */
1559static int
1560zvol_getgeo(struct block_device *bdev, struct hd_geometry *geo)
1561{
1562 zvol_state_t *zv = bdev->bd_disk->private_data;
5428dc51
BP
1563 sector_t sectors;
1564
1565 ASSERT(zv && zv->zv_open_count > 0);
1566
1567 sectors = get_capacity(zv->zv_disk);
60101509
BB
1568
1569 if (sectors > 2048) {
1570 geo->heads = 16;
1571 geo->sectors = 63;
1572 } else {
1573 geo->heads = 2;
1574 geo->sectors = 4;
1575 }
1576
1577 geo->start = 0;
1578 geo->cylinders = sectors / (geo->heads * geo->sectors);
1579
ce37ebd2 1580 return (0);
60101509
BB
1581}
1582
1583static struct kobject *
1584zvol_probe(dev_t dev, int *part, void *arg)
1585{
1586 zvol_state_t *zv;
1587 struct kobject *kobj;
1588
60101509 1589 zv = zvol_find_by_dev(dev);
23a61ccc 1590 kobj = zv ? get_disk(zv->zv_disk) : NULL;
58404a73
BP
1591 ASSERT(zv == NULL || MUTEX_HELD(&zv->zv_state_lock));
1592 if (zv)
1593 mutex_exit(&zv->zv_state_lock);
60101509 1594
ce37ebd2 1595 return (kobj);
60101509
BB
1596}
1597
1598#ifdef HAVE_BDEV_BLOCK_DEVICE_OPERATIONS
1599static struct block_device_operations zvol_ops = {
ce37ebd2
BB
1600 .open = zvol_open,
1601 .release = zvol_release,
1602 .ioctl = zvol_ioctl,
1603 .compat_ioctl = zvol_compat_ioctl,
1604 .media_changed = zvol_media_changed,
1605 .revalidate_disk = zvol_revalidate_disk,
1606 .getgeo = zvol_getgeo,
1607 .owner = THIS_MODULE,
60101509
BB
1608};
1609
1610#else /* HAVE_BDEV_BLOCK_DEVICE_OPERATIONS */
1611
1612static int
1613zvol_open_by_inode(struct inode *inode, struct file *file)
1614{
ce37ebd2 1615 return (zvol_open(inode->i_bdev, file->f_mode));
60101509
BB
1616}
1617
1618static int
1619zvol_release_by_inode(struct inode *inode, struct file *file)
1620{
ce37ebd2 1621 return (zvol_release(inode->i_bdev->bd_disk, file->f_mode));
60101509
BB
1622}
1623
1624static int
1625zvol_ioctl_by_inode(struct inode *inode, struct file *file,
ce37ebd2 1626 unsigned int cmd, unsigned long arg)
60101509 1627{
b1c58213 1628 if (file == NULL || inode == NULL)
ce37ebd2
BB
1629 return (SET_ERROR(-EINVAL));
1630
1631 return (zvol_ioctl(inode->i_bdev, file->f_mode, cmd, arg));
60101509
BB
1632}
1633
ce37ebd2 1634#ifdef CONFIG_COMPAT
60101509
BB
1635static long
1636zvol_compat_ioctl_by_inode(struct file *file,
ce37ebd2 1637 unsigned int cmd, unsigned long arg)
60101509 1638{
b1c58213 1639 if (file == NULL)
ce37ebd2
BB
1640 return (SET_ERROR(-EINVAL));
1641
1642 return (zvol_compat_ioctl(file->f_dentry->d_inode->i_bdev,
1643 file->f_mode, cmd, arg));
60101509 1644}
ce37ebd2
BB
1645#else
1646#define zvol_compat_ioctl_by_inode NULL
1647#endif
60101509
BB
1648
1649static struct block_device_operations zvol_ops = {
ce37ebd2
BB
1650 .open = zvol_open_by_inode,
1651 .release = zvol_release_by_inode,
1652 .ioctl = zvol_ioctl_by_inode,
1653 .compat_ioctl = zvol_compat_ioctl_by_inode,
1654 .media_changed = zvol_media_changed,
1655 .revalidate_disk = zvol_revalidate_disk,
1656 .getgeo = zvol_getgeo,
1657 .owner = THIS_MODULE,
60101509
BB
1658};
1659#endif /* HAVE_BDEV_BLOCK_DEVICE_OPERATIONS */
1660
1661/*
1662 * Allocate memory for a new zvol_state_t and setup the required
1663 * request queue and generic disk structures for the block device.
1664 */
1665static zvol_state_t *
1666zvol_alloc(dev_t dev, const char *name)
1667{
1668 zvol_state_t *zv;
cf8738d8 1669 uint64_t volmode;
1670
1671 if (dsl_prop_get_integer(name, "volmode", &volmode, NULL) != 0)
1672 return (NULL);
1673
1674 if (volmode == ZFS_VOLMODE_DEFAULT)
1675 volmode = zvol_volmode;
60101509 1676
c7a7601c 1677 if (volmode == ZFS_VOLMODE_NONE)
1678 return (NULL);
1679
79c76d5b 1680 zv = kmem_zalloc(sizeof (zvol_state_t), KM_SLEEP);
60101509 1681
2a3871d4
RY
1682 list_link_init(&zv->zv_next);
1683
5559ba09
BP
1684 mutex_init(&zv->zv_state_lock, NULL, MUTEX_DEFAULT, NULL);
1685
37f9dac5 1686 zv->zv_queue = blk_alloc_queue(GFP_ATOMIC);
60101509
BB
1687 if (zv->zv_queue == NULL)
1688 goto out_kmem;
1689
37f9dac5 1690 blk_queue_make_request(zv->zv_queue, zvol_request);
cf41432c 1691 blk_queue_set_write_cache(zv->zv_queue, B_TRUE, B_TRUE);
b18019d2 1692
bc17f104
RY
1693 /* Limit read-ahead to a single page to prevent over-prefetching. */
1694 blk_queue_set_read_ahead(zv->zv_queue, 1);
1695
5731140e 1696 /* Disable write merging in favor of the ZIO pipeline. */
ef4be34a 1697 queue_flag_set_unlocked(QUEUE_FLAG_NOMERGES, zv->zv_queue);
5731140e 1698
60101509
BB
1699 zv->zv_disk = alloc_disk(ZVOL_MINORS);
1700 if (zv->zv_disk == NULL)
1701 goto out_queue;
1702
1703 zv->zv_queue->queuedata = zv;
1704 zv->zv_dev = dev;
1705 zv->zv_open_count = 0;
4c0d8e50 1706 strlcpy(zv->zv_name, name, MAXNAMELEN);
60101509 1707
d88895a0 1708 zfs_rlock_init(&zv->zv_range_lock);
040dab99 1709 rw_init(&zv->zv_suspend_lock, NULL, RW_DEFAULT, NULL);
3c4988c8 1710
60101509 1711 zv->zv_disk->major = zvol_major;
cf8738d8 1712 if (volmode == ZFS_VOLMODE_DEV) {
1713 /*
1714 * ZFS_VOLMODE_DEV disable partitioning on ZVOL devices: set
1715 * gendisk->minors = 1 as noted in include/linux/genhd.h.
1716 * Also disable extended partition numbers (GENHD_FL_EXT_DEVT)
1717 * and suppresses partition scanning (GENHD_FL_NO_PART_SCAN)
1718 * setting gendisk->flags accordingly.
1719 */
1720 zv->zv_disk->minors = 1;
1721#if defined(GENHD_FL_EXT_DEVT)
1722 zv->zv_disk->flags &= ~GENHD_FL_EXT_DEVT;
1723#endif
1724#if defined(GENHD_FL_NO_PART_SCAN)
1725 zv->zv_disk->flags |= GENHD_FL_NO_PART_SCAN;
1726#endif
1727 }
60101509
BB
1728 zv->zv_disk->first_minor = (dev & MINORMASK);
1729 zv->zv_disk->fops = &zvol_ops;
1730 zv->zv_disk->private_data = zv;
1731 zv->zv_disk->queue = zv->zv_queue;
4c0d8e50
FN
1732 snprintf(zv->zv_disk->disk_name, DISK_NAME_LEN, "%s%d",
1733 ZVOL_DEV_NAME, (dev & MINORMASK));
60101509 1734
ce37ebd2 1735 return (zv);
60101509
BB
1736
1737out_queue:
1738 blk_cleanup_queue(zv->zv_queue);
1739out_kmem:
1740 kmem_free(zv, sizeof (zvol_state_t));
0a6bef26 1741
ce37ebd2 1742 return (NULL);
60101509
BB
1743}
1744
1745/*
5559ba09
BP
1746 * Cleanup then free a zvol_state_t which was created by zvol_alloc().
1747 * At this time, the structure is not opened by anyone, is taken off
1748 * the zvol_state_list, and has its private data set to NULL.
1749 * The zvol_state_lock is dropped.
60101509
BB
1750 */
1751static void
5559ba09 1752zvol_free(void *arg)
60101509 1753{
899662e3 1754 zvol_state_t *zv = arg;
5559ba09
BP
1755
1756 ASSERT(!MUTEX_HELD(&zvol_state_lock));
58404a73
BP
1757 ASSERT(!RW_LOCK_HELD(&zv->zv_suspend_lock));
1758 ASSERT(!MUTEX_HELD(&zv->zv_state_lock));
5428dc51 1759 ASSERT(zv->zv_open_count == 0);
5559ba09 1760 ASSERT(zv->zv_disk->private_data == NULL);
5428dc51 1761
040dab99 1762 rw_destroy(&zv->zv_suspend_lock);
d88895a0 1763 zfs_rlock_destroy(&zv->zv_range_lock);
60101509
BB
1764
1765 del_gendisk(zv->zv_disk);
1766 blk_cleanup_queue(zv->zv_queue);
1767 put_disk(zv->zv_disk);
1768
d45e010d 1769 ida_simple_remove(&zvol_ida, MINOR(zv->zv_dev) >> ZVOL_MINOR_BITS);
60101509 1770
5559ba09
BP
1771 mutex_destroy(&zv->zv_state_lock);
1772
1773 kmem_free(zv, sizeof (zvol_state_t));
899662e3
CC
1774}
1775
a0bd735a
BP
1776/*
1777 * Create a block device minor node and setup the linkage between it
1778 * and the specified volume. Once this function returns the block
1779 * device is live and ready for use.
1780 */
60101509 1781static int
a0bd735a 1782zvol_create_minor_impl(const char *name)
60101509
BB
1783{
1784 zvol_state_t *zv;
1785 objset_t *os;
1786 dmu_object_info_t *doi;
1787 uint64_t volsize;
9965059a 1788 uint64_t len;
60101509
BB
1789 unsigned minor = 0;
1790 int error = 0;
d45e010d
CC
1791 int idx;
1792 uint64_t hash = zvol_name_hash(name);
1793
cf8738d8 1794 if (zvol_inhibit_dev)
1795 return (0);
1796
d45e010d
CC
1797 idx = ida_simple_get(&zvol_ida, 0, 0, kmem_flags_convert(KM_SLEEP));
1798 if (idx < 0)
1799 return (SET_ERROR(-idx));
1800 minor = idx << ZVOL_MINOR_BITS;
60101509 1801
58404a73 1802 zv = zvol_find_by_name_hash(name, hash, RW_NONE);
60101509 1803 if (zv) {
58404a73
BP
1804 ASSERT(MUTEX_HELD(&zv->zv_state_lock));
1805 mutex_exit(&zv->zv_state_lock);
2d82116e 1806 ida_simple_remove(&zvol_ida, idx);
5559ba09 1807 return (SET_ERROR(EEXIST));
60101509
BB
1808 }
1809
79c76d5b 1810 doi = kmem_alloc(sizeof (dmu_object_info_t), KM_SLEEP);
60101509 1811
b5256303 1812 error = dmu_objset_own(name, DMU_OST_ZVOL, B_TRUE, B_TRUE, FTAG, &os);
60101509
BB
1813 if (error)
1814 goto out_doi;
1815
1816 error = dmu_object_info(os, ZVOL_OBJ, doi);
1817 if (error)
1818 goto out_dmu_objset_disown;
1819
1820 error = zap_lookup(os, ZVOL_ZAP_OBJ, "size", 8, 1, &volsize);
1821 if (error)
1822 goto out_dmu_objset_disown;
1823
60101509
BB
1824 zv = zvol_alloc(MKDEV(zvol_major, minor), name);
1825 if (zv == NULL) {
2e528b49 1826 error = SET_ERROR(EAGAIN);
60101509
BB
1827 goto out_dmu_objset_disown;
1828 }
d45e010d 1829 zv->zv_hash = hash;
60101509
BB
1830
1831 if (dmu_objset_is_snapshot(os))
1832 zv->zv_flags |= ZVOL_RDONLY;
1833
1834 zv->zv_volblocksize = doi->doi_data_block_size;
1835 zv->zv_volsize = volsize;
1836 zv->zv_objset = os;
1837
1838 set_capacity(zv->zv_disk, zv->zv_volsize >> 9);
1839
c495fe2c 1840 blk_queue_max_hw_sectors(zv->zv_queue, (DMU_MAX_ACCESS / 4) >> 9);
34037afe
ED
1841 blk_queue_max_segments(zv->zv_queue, UINT16_MAX);
1842 blk_queue_max_segment_size(zv->zv_queue, UINT_MAX);
1843 blk_queue_physical_block_size(zv->zv_queue, zv->zv_volblocksize);
1844 blk_queue_io_opt(zv->zv_queue, zv->zv_volblocksize);
7c0e5708
ED
1845 blk_queue_max_discard_sectors(zv->zv_queue,
1846 (zvol_max_discard_blocks * zv->zv_volblocksize) >> 9);
ee5fd0bb 1847 blk_queue_discard_granularity(zv->zv_queue, zv->zv_volblocksize);
30930fba 1848 queue_flag_set_unlocked(QUEUE_FLAG_DISCARD, zv->zv_queue);
37f9dac5 1849#ifdef QUEUE_FLAG_NONROT
34037afe
ED
1850 queue_flag_set_unlocked(QUEUE_FLAG_NONROT, zv->zv_queue);
1851#endif
c6a3a222
RY
1852#ifdef QUEUE_FLAG_ADD_RANDOM
1853 queue_flag_clear_unlocked(QUEUE_FLAG_ADD_RANDOM, zv->zv_queue);
1854#endif
34037afe 1855
a4430fce
GW
1856 if (spa_writeable(dmu_objset_spa(os))) {
1857 if (zil_replay_disable)
1858 zil_destroy(dmu_objset_zil(os), B_FALSE);
1859 else
1860 zil_replay(os, zv, zvol_replay_vector);
1861 }
60101509 1862
9965059a
BB
1863 /*
1864 * When udev detects the addition of the device it will immediately
1865 * invoke blkid(8) to determine the type of content on the device.
1866 * Prefetching the blocks commonly scanned by blkid(8) will speed
1867 * up this process.
1868 */
1869 len = MIN(MAX(zvol_prefetch_bytes, 0), SPA_MAXBLOCKSIZE);
1870 if (len > 0) {
fcff0f35
PD
1871 dmu_prefetch(os, ZVOL_OBJ, 0, 0, len, ZIO_PRIORITY_SYNC_READ);
1872 dmu_prefetch(os, ZVOL_OBJ, 0, volsize - len, len,
02730c33 1873 ZIO_PRIORITY_SYNC_READ);
9965059a
BB
1874 }
1875
f74a147c 1876 zv->zv_objset = NULL;
60101509 1877out_dmu_objset_disown:
b5256303 1878 dmu_objset_disown(os, B_TRUE, FTAG);
60101509 1879out_doi:
ce37ebd2 1880 kmem_free(doi, sizeof (dmu_object_info_t));
60101509
BB
1881
1882 if (error == 0) {
5559ba09 1883 mutex_enter(&zvol_state_lock);
60101509 1884 zvol_insert(zv);
5428dc51 1885 mutex_exit(&zvol_state_lock);
60101509 1886 add_disk(zv->zv_disk);
a0bd735a 1887 } else {
d45e010d 1888 ida_simple_remove(&zvol_ida, idx);
60101509
BB
1889 }
1890
ce37ebd2 1891 return (SET_ERROR(error));
60101509
BB
1892}
1893
ba6a2402
BB
1894/*
1895 * Rename a block device minor mode for the specified volume.
1896 */
1897static void
a0bd735a 1898zvol_rename_minor(zvol_state_t *zv, const char *newname)
ba6a2402
BB
1899{
1900 int readonly = get_disk_ro(zv->zv_disk);
1901
1902 ASSERT(MUTEX_HELD(&zvol_state_lock));
58404a73 1903 ASSERT(MUTEX_HELD(&zv->zv_state_lock));
ba6a2402
BB
1904
1905 strlcpy(zv->zv_name, newname, sizeof (zv->zv_name));
040dab99
CC
1906
1907 /* move to new hashtable entry */
1908 zv->zv_hash = zvol_name_hash(zv->zv_name);
1909 hlist_del(&zv->zv_hlink);
1910 hlist_add_head(&zv->zv_hlink, ZVOL_HT_HEAD(zv->zv_hash));
ba6a2402
BB
1911
1912 /*
1913 * The block device's read-only state is briefly changed causing
1914 * a KOBJ_CHANGE uevent to be issued. This ensures udev detects
1915 * the name change and fixes the symlinks. This does not change
1916 * ZVOL_RDONLY in zv->zv_flags so the actual read-only state never
1917 * changes. This would normally be done using kobject_uevent() but
1918 * that is a GPL-only symbol which is why we need this workaround.
1919 */
1920 set_disk_ro(zv->zv_disk, !readonly);
1921 set_disk_ro(zv->zv_disk, readonly);
1922}
1923
7ac557ce
CC
1924typedef struct minors_job {
1925 list_t *list;
1926 list_node_t link;
1927 /* input */
1928 char *name;
1929 /* output */
1930 int error;
1931} minors_job_t;
1932
1933/*
1934 * Prefetch zvol dnodes for the minors_job
1935 */
1936static void
1937zvol_prefetch_minors_impl(void *arg)
1938{
1939 minors_job_t *job = arg;
1940 char *dsname = job->name;
1941 objset_t *os = NULL;
1942
b5256303
TC
1943 job->error = dmu_objset_own(dsname, DMU_OST_ZVOL, B_TRUE, B_TRUE,
1944 FTAG, &os);
7ac557ce
CC
1945 if (job->error == 0) {
1946 dmu_prefetch(os, ZVOL_OBJ, 0, 0, 0, ZIO_PRIORITY_SYNC_READ);
b5256303 1947 dmu_objset_disown(os, B_TRUE, FTAG);
7ac557ce
CC
1948 }
1949}
a0bd735a
BP
1950
1951/*
1952 * Mask errors to continue dmu_objset_find() traversal
1953 */
1954static int
1955zvol_create_snap_minor_cb(const char *dsname, void *arg)
1956{
7ac557ce
CC
1957 minors_job_t *j = arg;
1958 list_t *minors_list = j->list;
1959 const char *name = j->name;
a0bd735a 1960
1ee159f4
BP
1961 ASSERT0(MUTEX_HELD(&spa_namespace_lock));
1962
a0bd735a
BP
1963 /* skip the designated dataset */
1964 if (name && strcmp(dsname, name) == 0)
1965 return (0);
1966
1967 /* at this point, the dsname should name a snapshot */
1968 if (strchr(dsname, '@') == 0) {
1969 dprintf("zvol_create_snap_minor_cb(): "
02730c33 1970 "%s is not a shapshot name\n", dsname);
a0bd735a 1971 } else {
7ac557ce
CC
1972 minors_job_t *job;
1973 char *n = strdup(dsname);
1974 if (n == NULL)
1975 return (0);
1976
1977 job = kmem_alloc(sizeof (minors_job_t), KM_SLEEP);
1978 job->name = n;
1979 job->list = minors_list;
1980 job->error = 0;
1981 list_insert_tail(minors_list, job);
1982 /* don't care if dispatch fails, because job->error is 0 */
1983 taskq_dispatch(system_taskq, zvol_prefetch_minors_impl, job,
1984 TQ_SLEEP);
a0bd735a
BP
1985 }
1986
1987 return (0);
1988}
1989
1990/*
1991 * Mask errors to continue dmu_objset_find() traversal
1992 */
60101509 1993static int
13fe0198 1994zvol_create_minors_cb(const char *dsname, void *arg)
60101509 1995{
a0bd735a
BP
1996 uint64_t snapdev;
1997 int error;
7ac557ce 1998 list_t *minors_list = arg;
a0bd735a 1999
1ee159f4
BP
2000 ASSERT0(MUTEX_HELD(&spa_namespace_lock));
2001
a0bd735a
BP
2002 error = dsl_prop_get_integer(dsname, "snapdev", &snapdev, NULL);
2003 if (error)
2004 return (0);
2005
2006 /*
2007 * Given the name and the 'snapdev' property, create device minor nodes
2008 * with the linkages to zvols/snapshots as needed.
2009 * If the name represents a zvol, create a minor node for the zvol, then
2010 * check if its snapshots are 'visible', and if so, iterate over the
2011 * snapshots and create device minor nodes for those.
2012 */
2013 if (strchr(dsname, '@') == 0) {
7ac557ce
CC
2014 minors_job_t *job;
2015 char *n = strdup(dsname);
2016 if (n == NULL)
2017 return (0);
2018
2019 job = kmem_alloc(sizeof (minors_job_t), KM_SLEEP);
2020 job->name = n;
2021 job->list = minors_list;
2022 job->error = 0;
2023 list_insert_tail(minors_list, job);
2024 /* don't care if dispatch fails, because job->error is 0 */
2025 taskq_dispatch(system_taskq, zvol_prefetch_minors_impl, job,
2026 TQ_SLEEP);
2027
2028 if (snapdev == ZFS_SNAPDEV_VISIBLE) {
a0bd735a
BP
2029 /*
2030 * traverse snapshots only, do not traverse children,
2031 * and skip the 'dsname'
2032 */
2033 error = dmu_objset_find((char *)dsname,
7ac557ce 2034 zvol_create_snap_minor_cb, (void *)job,
a0bd735a 2035 DS_FIND_SNAPSHOTS);
a0bd735a
BP
2036 }
2037 } else {
2038 dprintf("zvol_create_minors_cb(): %s is not a zvol name\n",
02730c33 2039 dsname);
a0bd735a 2040 }
60101509 2041
d5674448 2042 return (0);
60101509
BB
2043}
2044
2045/*
a0bd735a
BP
2046 * Create minors for the specified dataset, including children and snapshots.
2047 * Pay attention to the 'snapdev' property and iterate over the snapshots
2048 * only if they are 'visible'. This approach allows one to assure that the
2049 * snapshot metadata is read from disk only if it is needed.
2050 *
2051 * The name can represent a dataset to be recursively scanned for zvols and
2052 * their snapshots, or a single zvol snapshot. If the name represents a
2053 * dataset, the scan is performed in two nested stages:
2054 * - scan the dataset for zvols, and
2055 * - for each zvol, create a minor node, then check if the zvol's snapshots
2056 * are 'visible', and only then iterate over the snapshots if needed
2057 *
4e33ba4c 2058 * If the name represents a snapshot, a check is performed if the snapshot is
a0bd735a
BP
2059 * 'visible' (which also verifies that the parent is a zvol), and if so,
2060 * a minor node for that snapshot is created.
60101509 2061 */
a0bd735a
BP
2062static int
2063zvol_create_minors_impl(const char *name)
60101509 2064{
60101509 2065 int error = 0;
5428dc51 2066 fstrans_cookie_t cookie;
a0bd735a 2067 char *atp, *parent;
7ac557ce
CC
2068 list_t minors_list;
2069 minors_job_t *job;
60101509 2070
5428dc51
BP
2071 if (zvol_inhibit_dev)
2072 return (0);
2073
7ac557ce
CC
2074 /*
2075 * This is the list for prefetch jobs. Whenever we found a match
2076 * during dmu_objset_find, we insert a minors_job to the list and do
2077 * taskq_dispatch to parallel prefetch zvol dnodes. Note we don't need
2078 * any lock because all list operation is done on the current thread.
2079 *
2080 * We will use this list to do zvol_create_minor_impl after prefetch
2081 * so we don't have to traverse using dmu_objset_find again.
2082 */
2083 list_create(&minors_list, sizeof (minors_job_t),
2084 offsetof(minors_job_t, link));
2085
a0bd735a
BP
2086 parent = kmem_alloc(MAXPATHLEN, KM_SLEEP);
2087 (void) strlcpy(parent, name, MAXPATHLEN);
2088
2089 if ((atp = strrchr(parent, '@')) != NULL) {
2090 uint64_t snapdev;
2091
2092 *atp = '\0';
2093 error = dsl_prop_get_integer(parent, "snapdev",
2094 &snapdev, NULL);
2095
2096 if (error == 0 && snapdev == ZFS_SNAPDEV_VISIBLE)
2097 error = zvol_create_minor_impl(name);
2098 } else {
2099 cookie = spl_fstrans_mark();
2100 error = dmu_objset_find(parent, zvol_create_minors_cb,
7ac557ce 2101 &minors_list, DS_FIND_CHILDREN);
a0bd735a
BP
2102 spl_fstrans_unmark(cookie);
2103 }
2104
2105 kmem_free(parent, MAXPATHLEN);
7ac557ce
CC
2106 taskq_wait_outstanding(system_taskq, 0);
2107
2108 /*
2109 * Prefetch is completed, we can do zvol_create_minor_impl
2110 * sequentially.
2111 */
2112 while ((job = list_head(&minors_list)) != NULL) {
2113 list_remove(&minors_list, job);
2114 if (!job->error)
2115 zvol_create_minor_impl(job->name);
2116 strfree(job->name);
2117 kmem_free(job, sizeof (minors_job_t));
2118 }
2119
2120 list_destroy(&minors_list);
ba6a2402
BB
2121
2122 return (SET_ERROR(error));
2123}
2124
2125/*
2126 * Remove minors for specified dataset including children and snapshots.
2127 */
a0bd735a
BP
2128static void
2129zvol_remove_minors_impl(const char *name)
ba6a2402
BB
2130{
2131 zvol_state_t *zv, *zv_next;
2132 int namelen = ((name) ? strlen(name) : 0);
899662e3 2133 taskqid_t t, tid = TASKQID_INVALID;
5559ba09 2134 list_t free_list;
ba6a2402 2135
74497b7a 2136 if (zvol_inhibit_dev)
ba6a2402 2137 return;
74497b7a 2138
5559ba09
BP
2139 list_create(&free_list, sizeof (zvol_state_t),
2140 offsetof(zvol_state_t, zv_next));
2141
60101509 2142 mutex_enter(&zvol_state_lock);
ba6a2402
BB
2143
2144 for (zv = list_head(&zvol_state_list); zv != NULL; zv = zv_next) {
2145 zv_next = list_next(&zvol_state_list, zv);
2146
58404a73 2147 mutex_enter(&zv->zv_state_lock);
ba6a2402
BB
2148 if (name == NULL || strcmp(zv->zv_name, name) == 0 ||
2149 (strncmp(zv->zv_name, name, namelen) == 0 &&
5428dc51
BP
2150 (zv->zv_name[namelen] == '/' ||
2151 zv->zv_name[namelen] == '@'))) {
5559ba09 2152 /*
58404a73 2153 * By holding zv_state_lock here, we guarantee that no
5559ba09
BP
2154 * one is currently using this zv
2155 */
97f8d796 2156
2157 /* If in use, leave alone */
2158 if (zv->zv_open_count > 0 ||
2159 atomic_read(&zv->zv_suspend_ref)) {
2160 mutex_exit(&zv->zv_state_lock);
2161 continue;
2162 }
2163
ba6a2402 2164 zvol_remove(zv);
899662e3 2165
58404a73
BP
2166 /*
2167 * clear this while holding zvol_state_lock so
2168 * zvol_open won't open it
2169 */
899662e3
CC
2170 zv->zv_disk->private_data = NULL;
2171
97f8d796 2172 /* Drop zv_state_lock before zvol_free() */
2173 mutex_exit(&zv->zv_state_lock);
2174
899662e3 2175 /* try parallel zv_free, if failed do it in place */
5559ba09 2176 t = taskq_dispatch(system_taskq, zvol_free, zv,
899662e3
CC
2177 TQ_SLEEP);
2178 if (t == TASKQID_INVALID)
5559ba09 2179 list_insert_head(&free_list, zv);
899662e3
CC
2180 else
2181 tid = t;
58404a73
BP
2182 } else {
2183 mutex_exit(&zv->zv_state_lock);
60101509 2184 }
60101509 2185 }
ba6a2402 2186 mutex_exit(&zvol_state_lock);
5559ba09
BP
2187
2188 /*
2189 * Drop zvol_state_lock before calling zvol_free()
2190 */
2191 while ((zv = list_head(&free_list)) != NULL) {
2192 list_remove(&free_list, zv);
2193 zvol_free(zv);
2194 }
2195
899662e3
CC
2196 if (tid != TASKQID_INVALID)
2197 taskq_wait_outstanding(system_taskq, tid);
60101509
BB
2198}
2199
cf8738d8 2200/* Remove minor for this specific volume only */
a0bd735a
BP
2201static void
2202zvol_remove_minor_impl(const char *name)
2203{
92aceb2a 2204 zvol_state_t *zv = NULL, *zv_next;
a0bd735a
BP
2205
2206 if (zvol_inhibit_dev)
2207 return;
2208
a0bd735a
BP
2209 mutex_enter(&zvol_state_lock);
2210
2211 for (zv = list_head(&zvol_state_list); zv != NULL; zv = zv_next) {
2212 zv_next = list_next(&zvol_state_list, zv);
2213
58404a73 2214 mutex_enter(&zv->zv_state_lock);
a0bd735a 2215 if (strcmp(zv->zv_name, name) == 0) {
5559ba09 2216 /*
58404a73 2217 * By holding zv_state_lock here, we guarantee that no
5559ba09
BP
2218 * one is currently using this zv
2219 */
97f8d796 2220
2221 /* If in use, leave alone */
2222 if (zv->zv_open_count > 0 ||
2223 atomic_read(&zv->zv_suspend_ref)) {
2224 mutex_exit(&zv->zv_state_lock);
2225 continue;
2226 }
a0bd735a 2227 zvol_remove(zv);
97f8d796 2228
5559ba09
BP
2229 /* clear this so zvol_open won't open it */
2230 zv->zv_disk->private_data = NULL;
97f8d796 2231
2232 mutex_exit(&zv->zv_state_lock);
a0bd735a 2233 break;
58404a73
BP
2234 } else {
2235 mutex_exit(&zv->zv_state_lock);
a0bd735a
BP
2236 }
2237 }
2238
92aceb2a 2239 /* Drop zvol_state_lock before calling zvol_free() */
a0bd735a 2240 mutex_exit(&zvol_state_lock);
5559ba09 2241
92aceb2a 2242 if (zv != NULL)
2243 zvol_free(zv);
a0bd735a
BP
2244}
2245
60101509 2246/*
ba6a2402 2247 * Rename minors for specified dataset including children and snapshots.
60101509 2248 */
a0bd735a
BP
2249static void
2250zvol_rename_minors_impl(const char *oldname, const char *newname)
60101509
BB
2251{
2252 zvol_state_t *zv, *zv_next;
ba6a2402 2253 int oldnamelen, newnamelen;
60101509 2254
74497b7a
DH
2255 if (zvol_inhibit_dev)
2256 return;
2257
ba6a2402
BB
2258 oldnamelen = strlen(oldname);
2259 newnamelen = strlen(newname);
60101509
BB
2260
2261 mutex_enter(&zvol_state_lock);
ba6a2402 2262
60101509
BB
2263 for (zv = list_head(&zvol_state_list); zv != NULL; zv = zv_next) {
2264 zv_next = list_next(&zvol_state_list, zv);
2265
58404a73
BP
2266 mutex_enter(&zv->zv_state_lock);
2267
5428dc51 2268 /* If in use, leave alone */
58404a73
BP
2269 if (zv->zv_open_count > 0) {
2270 mutex_exit(&zv->zv_state_lock);
5428dc51 2271 continue;
58404a73 2272 }
5428dc51 2273
ba6a2402 2274 if (strcmp(zv->zv_name, oldname) == 0) {
a0bd735a 2275 zvol_rename_minor(zv, newname);
ba6a2402
BB
2276 } else if (strncmp(zv->zv_name, oldname, oldnamelen) == 0 &&
2277 (zv->zv_name[oldnamelen] == '/' ||
2278 zv->zv_name[oldnamelen] == '@')) {
682ce104 2279 char *name = kmem_asprintf("%s%c%s", newname,
ba6a2402
BB
2280 zv->zv_name[oldnamelen],
2281 zv->zv_name + oldnamelen + 1);
a0bd735a 2282 zvol_rename_minor(zv, name);
682ce104 2283 kmem_free(name, strlen(name + 1));
60101509 2284 }
58404a73
BP
2285
2286 mutex_exit(&zv->zv_state_lock);
60101509 2287 }
ba6a2402 2288
60101509 2289 mutex_exit(&zvol_state_lock);
60101509
BB
2290}
2291
a0bd735a
BP
2292typedef struct zvol_snapdev_cb_arg {
2293 uint64_t snapdev;
2294} zvol_snapdev_cb_arg_t;
2295
0b4d1b58 2296static int
4ea3f864
GM
2297zvol_set_snapdev_cb(const char *dsname, void *param)
2298{
a0bd735a 2299 zvol_snapdev_cb_arg_t *arg = param;
0b4d1b58
ED
2300
2301 if (strchr(dsname, '@') == NULL)
ba6a2402 2302 return (0);
0b4d1b58 2303
a0bd735a 2304 switch (arg->snapdev) {
0b4d1b58 2305 case ZFS_SNAPDEV_VISIBLE:
a0bd735a 2306 (void) zvol_create_minor_impl(dsname);
0b4d1b58
ED
2307 break;
2308 case ZFS_SNAPDEV_HIDDEN:
a0bd735a 2309 (void) zvol_remove_minor_impl(dsname);
0b4d1b58
ED
2310 break;
2311 }
ba6a2402
BB
2312
2313 return (0);
0b4d1b58
ED
2314}
2315
a0bd735a
BP
2316static void
2317zvol_set_snapdev_impl(char *name, uint64_t snapdev)
2318{
2319 zvol_snapdev_cb_arg_t arg = {snapdev};
2320 fstrans_cookie_t cookie = spl_fstrans_mark();
2321 /*
2322 * The zvol_set_snapdev_sync() sets snapdev appropriately
2323 * in the dataset hierarchy. Here, we only scan snapshots.
2324 */
2325 dmu_objset_find(name, zvol_set_snapdev_cb, &arg, DS_FIND_SNAPSHOTS);
2326 spl_fstrans_unmark(cookie);
2327}
2328
cf8738d8 2329typedef struct zvol_volmode_cb_arg {
2330 uint64_t volmode;
2331} zvol_volmode_cb_arg_t;
2332
2333static void
2334zvol_set_volmode_impl(char *name, uint64_t volmode)
2335{
2336 fstrans_cookie_t cookie = spl_fstrans_mark();
2337
2338 if (strchr(name, '@') != NULL)
2339 return;
2340
2341 /*
2342 * It's unfortunate we need to remove minors before we create new ones:
2343 * this is necessary because our backing gendisk (zvol_state->zv_disk)
2344 * coule be different when we set, for instance, volmode from "geom"
2345 * to "dev" (or vice versa).
2346 * A possible optimization is to modify our consumers so we don't get
2347 * called when "volmode" does not change.
2348 */
2349 switch (volmode) {
2350 case ZFS_VOLMODE_NONE:
2351 (void) zvol_remove_minor_impl(name);
2352 break;
2353 case ZFS_VOLMODE_GEOM:
2354 case ZFS_VOLMODE_DEV:
2355 (void) zvol_remove_minor_impl(name);
2356 (void) zvol_create_minor_impl(name);
2357 break;
2358 case ZFS_VOLMODE_DEFAULT:
2359 (void) zvol_remove_minor_impl(name);
2360 if (zvol_volmode == ZFS_VOLMODE_NONE)
2361 break;
2362 else /* if zvol_volmode is invalid defaults to "geom" */
2363 (void) zvol_create_minor_impl(name);
2364 break;
2365 }
2366
2367 spl_fstrans_unmark(cookie);
2368}
2369
a0bd735a
BP
2370static zvol_task_t *
2371zvol_task_alloc(zvol_async_op_t op, const char *name1, const char *name2,
cf8738d8 2372 uint64_t value)
a0bd735a
BP
2373{
2374 zvol_task_t *task;
2375 char *delim;
2376
2377 /* Never allow tasks on hidden names. */
2378 if (name1[0] == '$')
2379 return (NULL);
2380
2381 task = kmem_zalloc(sizeof (zvol_task_t), KM_SLEEP);
2382 task->op = op;
cf8738d8 2383 task->value = value;
a0bd735a
BP
2384 delim = strchr(name1, '/');
2385 strlcpy(task->pool, name1, delim ? (delim - name1 + 1) : MAXNAMELEN);
2386
2387 strlcpy(task->name1, name1, MAXNAMELEN);
2388 if (name2 != NULL)
2389 strlcpy(task->name2, name2, MAXNAMELEN);
2390
2391 return (task);
2392}
2393
2394static void
2395zvol_task_free(zvol_task_t *task)
2396{
2397 kmem_free(task, sizeof (zvol_task_t));
2398}
2399
2400/*
2401 * The worker thread function performed asynchronously.
2402 */
2403static void
2404zvol_task_cb(void *param)
2405{
2406 zvol_task_t *task = (zvol_task_t *)param;
2407
2408 switch (task->op) {
2409 case ZVOL_ASYNC_CREATE_MINORS:
2410 (void) zvol_create_minors_impl(task->name1);
2411 break;
2412 case ZVOL_ASYNC_REMOVE_MINORS:
2413 zvol_remove_minors_impl(task->name1);
2414 break;
2415 case ZVOL_ASYNC_RENAME_MINORS:
2416 zvol_rename_minors_impl(task->name1, task->name2);
2417 break;
2418 case ZVOL_ASYNC_SET_SNAPDEV:
cf8738d8 2419 zvol_set_snapdev_impl(task->name1, task->value);
2420 break;
2421 case ZVOL_ASYNC_SET_VOLMODE:
2422 zvol_set_volmode_impl(task->name1, task->value);
a0bd735a
BP
2423 break;
2424 default:
2425 VERIFY(0);
2426 break;
2427 }
2428
2429 zvol_task_free(task);
2430}
2431
cf8738d8 2432typedef struct zvol_set_prop_int_arg {
a0bd735a
BP
2433 const char *zsda_name;
2434 uint64_t zsda_value;
2435 zprop_source_t zsda_source;
2436 dmu_tx_t *zsda_tx;
cf8738d8 2437} zvol_set_prop_int_arg_t;
a0bd735a
BP
2438
2439/*
2440 * Sanity check the dataset for safe use by the sync task. No additional
2441 * conditions are imposed.
2442 */
2443static int
2444zvol_set_snapdev_check(void *arg, dmu_tx_t *tx)
2445{
cf8738d8 2446 zvol_set_prop_int_arg_t *zsda = arg;
a0bd735a
BP
2447 dsl_pool_t *dp = dmu_tx_pool(tx);
2448 dsl_dir_t *dd;
2449 int error;
2450
2451 error = dsl_dir_hold(dp, zsda->zsda_name, FTAG, &dd, NULL);
2452 if (error != 0)
2453 return (error);
2454
2455 dsl_dir_rele(dd, FTAG);
2456
2457 return (error);
2458}
2459
92aceb2a 2460/* ARGSUSED */
a0bd735a
BP
2461static int
2462zvol_set_snapdev_sync_cb(dsl_pool_t *dp, dsl_dataset_t *ds, void *arg)
2463{
a0bd735a
BP
2464 char dsname[MAXNAMELEN];
2465 zvol_task_t *task;
92aceb2a 2466 uint64_t snapdev;
a0bd735a
BP
2467
2468 dsl_dataset_name(ds, dsname);
92aceb2a 2469 if (dsl_prop_get_int_ds(ds, "snapdev", &snapdev) != 0)
2470 return (0);
2471 task = zvol_task_alloc(ZVOL_ASYNC_SET_SNAPDEV, dsname, NULL, snapdev);
a0bd735a
BP
2472 if (task == NULL)
2473 return (0);
2474
2475 (void) taskq_dispatch(dp->dp_spa->spa_zvol_taskq, zvol_task_cb,
02730c33 2476 task, TQ_SLEEP);
a0bd735a
BP
2477 return (0);
2478}
2479
2480/*
92aceb2a 2481 * Traverse all child datasets and apply snapdev appropriately.
2482 * We call dsl_prop_set_sync_impl() here to set the value only on the toplevel
2483 * dataset and read the effective "snapdev" on every child in the callback
2484 * function: this is because the value is not guaranteed to be the same in the
2485 * whole dataset hierarchy.
a0bd735a
BP
2486 */
2487static void
2488zvol_set_snapdev_sync(void *arg, dmu_tx_t *tx)
2489{
cf8738d8 2490 zvol_set_prop_int_arg_t *zsda = arg;
a0bd735a
BP
2491 dsl_pool_t *dp = dmu_tx_pool(tx);
2492 dsl_dir_t *dd;
92aceb2a 2493 dsl_dataset_t *ds;
2494 int error;
a0bd735a
BP
2495
2496 VERIFY0(dsl_dir_hold(dp, zsda->zsda_name, FTAG, &dd, NULL));
2497 zsda->zsda_tx = tx;
2498
92aceb2a 2499 error = dsl_dataset_hold(dp, zsda->zsda_name, FTAG, &ds);
2500 if (error == 0) {
2501 dsl_prop_set_sync_impl(ds, zfs_prop_to_name(ZFS_PROP_SNAPDEV),
2502 zsda->zsda_source, sizeof (zsda->zsda_value), 1,
2503 &zsda->zsda_value, zsda->zsda_tx);
2504 dsl_dataset_rele(ds, FTAG);
2505 }
a0bd735a
BP
2506 dmu_objset_find_dp(dp, dd->dd_object, zvol_set_snapdev_sync_cb,
2507 zsda, DS_FIND_CHILDREN);
2508
2509 dsl_dir_rele(dd, FTAG);
2510}
2511
0b4d1b58 2512int
a0bd735a
BP
2513zvol_set_snapdev(const char *ddname, zprop_source_t source, uint64_t snapdev)
2514{
cf8738d8 2515 zvol_set_prop_int_arg_t zsda;
5428dc51 2516
a0bd735a
BP
2517 zsda.zsda_name = ddname;
2518 zsda.zsda_source = source;
2519 zsda.zsda_value = snapdev;
5428dc51 2520
a0bd735a
BP
2521 return (dsl_sync_task(ddname, zvol_set_snapdev_check,
2522 zvol_set_snapdev_sync, &zsda, 0, ZFS_SPACE_CHECK_NONE));
2523}
2524
cf8738d8 2525/*
2526 * Sanity check the dataset for safe use by the sync task. No additional
2527 * conditions are imposed.
2528 */
2529static int
2530zvol_set_volmode_check(void *arg, dmu_tx_t *tx)
2531{
2532 zvol_set_prop_int_arg_t *zsda = arg;
2533 dsl_pool_t *dp = dmu_tx_pool(tx);
2534 dsl_dir_t *dd;
2535 int error;
2536
2537 error = dsl_dir_hold(dp, zsda->zsda_name, FTAG, &dd, NULL);
2538 if (error != 0)
2539 return (error);
2540
2541 dsl_dir_rele(dd, FTAG);
2542
2543 return (error);
2544}
2545
2546/* ARGSUSED */
2547static int
2548zvol_set_volmode_sync_cb(dsl_pool_t *dp, dsl_dataset_t *ds, void *arg)
2549{
2550 char dsname[MAXNAMELEN];
2551 zvol_task_t *task;
2552 uint64_t volmode;
2553
2554 dsl_dataset_name(ds, dsname);
2555 if (dsl_prop_get_int_ds(ds, "volmode", &volmode) != 0)
2556 return (0);
2557 task = zvol_task_alloc(ZVOL_ASYNC_SET_VOLMODE, dsname, NULL, volmode);
2558 if (task == NULL)
2559 return (0);
2560
2561 (void) taskq_dispatch(dp->dp_spa->spa_zvol_taskq, zvol_task_cb,
2562 task, TQ_SLEEP);
2563 return (0);
2564}
2565
2566/*
2567 * Traverse all child datasets and apply volmode appropriately.
2568 * We call dsl_prop_set_sync_impl() here to set the value only on the toplevel
2569 * dataset and read the effective "volmode" on every child in the callback
2570 * function: this is because the value is not guaranteed to be the same in the
2571 * whole dataset hierarchy.
2572 */
2573static void
2574zvol_set_volmode_sync(void *arg, dmu_tx_t *tx)
2575{
2576 zvol_set_prop_int_arg_t *zsda = arg;
2577 dsl_pool_t *dp = dmu_tx_pool(tx);
2578 dsl_dir_t *dd;
2579 dsl_dataset_t *ds;
2580 int error;
2581
2582 VERIFY0(dsl_dir_hold(dp, zsda->zsda_name, FTAG, &dd, NULL));
2583 zsda->zsda_tx = tx;
2584
2585 error = dsl_dataset_hold(dp, zsda->zsda_name, FTAG, &ds);
2586 if (error == 0) {
2587 dsl_prop_set_sync_impl(ds, zfs_prop_to_name(ZFS_PROP_VOLMODE),
2588 zsda->zsda_source, sizeof (zsda->zsda_value), 1,
2589 &zsda->zsda_value, zsda->zsda_tx);
2590 dsl_dataset_rele(ds, FTAG);
2591 }
2592
2593 dmu_objset_find_dp(dp, dd->dd_object, zvol_set_volmode_sync_cb,
2594 zsda, DS_FIND_CHILDREN);
2595
2596 dsl_dir_rele(dd, FTAG);
2597}
2598
2599int
2600zvol_set_volmode(const char *ddname, zprop_source_t source, uint64_t volmode)
2601{
2602 zvol_set_prop_int_arg_t zsda;
2603
2604 zsda.zsda_name = ddname;
2605 zsda.zsda_source = source;
2606 zsda.zsda_value = volmode;
2607
2608 return (dsl_sync_task(ddname, zvol_set_volmode_check,
2609 zvol_set_volmode_sync, &zsda, 0, ZFS_SPACE_CHECK_NONE));
2610}
2611
a0bd735a
BP
2612void
2613zvol_create_minors(spa_t *spa, const char *name, boolean_t async)
2614{
2615 zvol_task_t *task;
2616 taskqid_t id;
2617
2618 task = zvol_task_alloc(ZVOL_ASYNC_CREATE_MINORS, name, NULL, ~0ULL);
2619 if (task == NULL)
2620 return;
2621
2622 id = taskq_dispatch(spa->spa_zvol_taskq, zvol_task_cb, task, TQ_SLEEP);
48d3eb40 2623 if ((async == B_FALSE) && (id != TASKQID_INVALID))
a0bd735a
BP
2624 taskq_wait_id(spa->spa_zvol_taskq, id);
2625}
2626
2627void
2628zvol_remove_minors(spa_t *spa, const char *name, boolean_t async)
2629{
2630 zvol_task_t *task;
2631 taskqid_t id;
2632
2633 task = zvol_task_alloc(ZVOL_ASYNC_REMOVE_MINORS, name, NULL, ~0ULL);
2634 if (task == NULL)
2635 return;
5428dc51 2636
a0bd735a 2637 id = taskq_dispatch(spa->spa_zvol_taskq, zvol_task_cb, task, TQ_SLEEP);
48d3eb40 2638 if ((async == B_FALSE) && (id != TASKQID_INVALID))
a0bd735a
BP
2639 taskq_wait_id(spa->spa_zvol_taskq, id);
2640}
2641
2642void
2643zvol_rename_minors(spa_t *spa, const char *name1, const char *name2,
2644 boolean_t async)
2645{
2646 zvol_task_t *task;
2647 taskqid_t id;
2648
2649 task = zvol_task_alloc(ZVOL_ASYNC_RENAME_MINORS, name1, name2, ~0ULL);
2650 if (task == NULL)
2651 return;
2652
2653 id = taskq_dispatch(spa->spa_zvol_taskq, zvol_task_cb, task, TQ_SLEEP);
48d3eb40 2654 if ((async == B_FALSE) && (id != TASKQID_INVALID))
a0bd735a 2655 taskq_wait_id(spa->spa_zvol_taskq, id);
0b4d1b58
ED
2656}
2657
60101509
BB
2658int
2659zvol_init(void)
2660{
692e55b8 2661 int threads = MIN(MAX(zvol_threads, 1), 1024);
d45e010d 2662 int i, error;
60101509 2663
2a3871d4 2664 list_create(&zvol_state_list, sizeof (zvol_state_t),
ce37ebd2 2665 offsetof(zvol_state_t, zv_next));
2a3871d4 2666 mutex_init(&zvol_state_lock, NULL, MUTEX_DEFAULT, NULL);
4a5d7f82 2667 ida_init(&zvol_ida);
2a3871d4 2668
692e55b8
CC
2669 zvol_taskq = taskq_create(ZVOL_DRIVER, threads, maxclsyspri,
2670 threads * 2, INT_MAX, TASKQ_PREPOPULATE | TASKQ_DYNAMIC);
2671 if (zvol_taskq == NULL) {
2672 printk(KERN_INFO "ZFS: taskq_create() failed\n");
2673 error = -ENOMEM;
2674 goto out;
2675 }
2676
d45e010d
CC
2677 zvol_htable = kmem_alloc(ZVOL_HT_SIZE * sizeof (struct hlist_head),
2678 KM_SLEEP);
2679 if (!zvol_htable) {
692e55b8
CC
2680 error = -ENOMEM;
2681 goto out_taskq;
d45e010d
CC
2682 }
2683 for (i = 0; i < ZVOL_HT_SIZE; i++)
2684 INIT_HLIST_HEAD(&zvol_htable[i]);
2685
60101509
BB
2686 error = register_blkdev(zvol_major, ZVOL_DRIVER);
2687 if (error) {
2688 printk(KERN_INFO "ZFS: register_blkdev() failed %d\n", error);
d45e010d 2689 goto out_free;
60101509
BB
2690 }
2691
2692 blk_register_region(MKDEV(zvol_major, 0), 1UL << MINORBITS,
ce37ebd2 2693 THIS_MODULE, zvol_probe, NULL, NULL);
60101509 2694
60101509 2695 return (0);
2a3871d4 2696
d45e010d
CC
2697out_free:
2698 kmem_free(zvol_htable, ZVOL_HT_SIZE * sizeof (struct hlist_head));
692e55b8
CC
2699out_taskq:
2700 taskq_destroy(zvol_taskq);
37f9dac5 2701out:
8f7933fe 2702 ida_destroy(&zvol_ida);
2a3871d4
RY
2703 mutex_destroy(&zvol_state_lock);
2704 list_destroy(&zvol_state_list);
2705
ce37ebd2 2706 return (SET_ERROR(error));
60101509
BB
2707}
2708
2709void
2710zvol_fini(void)
2711{
a0bd735a
BP
2712 zvol_remove_minors_impl(NULL);
2713
60101509
BB
2714 blk_unregister_region(MKDEV(zvol_major, 0), 1UL << MINORBITS);
2715 unregister_blkdev(zvol_major, ZVOL_DRIVER);
d45e010d 2716 kmem_free(zvol_htable, ZVOL_HT_SIZE * sizeof (struct hlist_head));
a0bd735a 2717
692e55b8 2718 taskq_destroy(zvol_taskq);
60101509 2719 list_destroy(&zvol_state_list);
a0bd735a 2720 mutex_destroy(&zvol_state_lock);
f2d8bdc6
CC
2721
2722 ida_destroy(&zvol_ida);
60101509
BB
2723}
2724
02730c33 2725/* BEGIN CSTYLED */
74497b7a
DH
2726module_param(zvol_inhibit_dev, uint, 0644);
2727MODULE_PARM_DESC(zvol_inhibit_dev, "Do not create zvol device nodes");
2728
30a9524e 2729module_param(zvol_major, uint, 0444);
60101509
BB
2730MODULE_PARM_DESC(zvol_major, "Major number for zvol device");
2731
692e55b8
CC
2732module_param(zvol_threads, uint, 0444);
2733MODULE_PARM_DESC(zvol_threads, "Max number of threads to handle I/O requests");
2734
2735module_param(zvol_request_sync, uint, 0644);
2736MODULE_PARM_DESC(zvol_request_sync, "Synchronously handle bio requests");
2737
7c0e5708 2738module_param(zvol_max_discard_blocks, ulong, 0444);
ce37ebd2 2739MODULE_PARM_DESC(zvol_max_discard_blocks, "Max number of blocks to discard");
9965059a
BB
2740
2741module_param(zvol_prefetch_bytes, uint, 0644);
2742MODULE_PARM_DESC(zvol_prefetch_bytes, "Prefetch N bytes at zvol start+end");
cf8738d8 2743
2744module_param(zvol_volmode, uint, 0644);
2745MODULE_PARM_DESC(zvol_volmode, "Default volmode property value");
02730c33 2746/* END CSTYLED */