1 // SPDX-License-Identifier: GPL-2.0
3 * Zoned block device handling
5 * Copyright (c) 2015, Hannes Reinecke
6 * Copyright (c) 2015, SUSE Linux GmbH
8 * Copyright (c) 2016, Damien Le Moal
9 * Copyright (c) 2016, Western Digital
12 #include <linux/kernel.h>
13 #include <linux/module.h>
14 #include <linux/rbtree.h>
15 #include <linux/blkdev.h>
16 #include <linux/blk-mq.h>
18 #include <linux/vmalloc.h>
19 #include <linux/sched/mm.h>
23 #define ZONE_COND_NAME(name) [BLK_ZONE_COND_##name] = #name
24 static const char *const zone_cond_name[] = {
25 ZONE_COND_NAME(NOT_WP),
26 ZONE_COND_NAME(EMPTY),
27 ZONE_COND_NAME(IMP_OPEN),
28 ZONE_COND_NAME(EXP_OPEN),
29 ZONE_COND_NAME(CLOSED),
30 ZONE_COND_NAME(READONLY),
32 ZONE_COND_NAME(OFFLINE),
37 * blk_zone_cond_str - Return string XXX in BLK_ZONE_COND_XXX.
38 * @zone_cond: BLK_ZONE_COND_XXX.
40 * Description: Centralize block layer function to convert BLK_ZONE_COND_XXX
41 * into string format. Useful in the debugging and tracing zone conditions. For
42 * invalid BLK_ZONE_COND_XXX it returns string "UNKNOWN".
44 const char *blk_zone_cond_str(enum blk_zone_cond zone_cond)
46 static const char *zone_cond_str = "UNKNOWN";
48 if (zone_cond < ARRAY_SIZE(zone_cond_name) && zone_cond_name[zone_cond])
49 zone_cond_str = zone_cond_name[zone_cond];
53 EXPORT_SYMBOL_GPL(blk_zone_cond_str);
55 static inline sector_t blk_zone_start(struct request_queue *q,
58 sector_t zone_mask = blk_queue_zone_sectors(q) - 1;
60 return sector & ~zone_mask;
64 * Return true if a request is a write requests that needs zone write locking.
66 bool blk_req_needs_zone_write_lock(struct request *rq)
68 if (!rq->q->seq_zones_wlock)
71 if (blk_rq_is_passthrough(rq))
75 case REQ_OP_WRITE_ZEROES:
76 case REQ_OP_WRITE_SAME:
78 return blk_rq_zone_is_seq(rq);
83 EXPORT_SYMBOL_GPL(blk_req_needs_zone_write_lock);
85 bool blk_req_zone_write_trylock(struct request *rq)
87 unsigned int zno = blk_rq_zone_no(rq);
89 if (test_and_set_bit(zno, rq->q->seq_zones_wlock))
92 WARN_ON_ONCE(rq->rq_flags & RQF_ZONE_WRITE_LOCKED);
93 rq->rq_flags |= RQF_ZONE_WRITE_LOCKED;
97 EXPORT_SYMBOL_GPL(blk_req_zone_write_trylock);
99 void __blk_req_zone_write_lock(struct request *rq)
101 if (WARN_ON_ONCE(test_and_set_bit(blk_rq_zone_no(rq),
102 rq->q->seq_zones_wlock)))
105 WARN_ON_ONCE(rq->rq_flags & RQF_ZONE_WRITE_LOCKED);
106 rq->rq_flags |= RQF_ZONE_WRITE_LOCKED;
108 EXPORT_SYMBOL_GPL(__blk_req_zone_write_lock);
110 void __blk_req_zone_write_unlock(struct request *rq)
112 rq->rq_flags &= ~RQF_ZONE_WRITE_LOCKED;
113 if (rq->q->seq_zones_wlock)
114 WARN_ON_ONCE(!test_and_clear_bit(blk_rq_zone_no(rq),
115 rq->q->seq_zones_wlock));
117 EXPORT_SYMBOL_GPL(__blk_req_zone_write_unlock);
120 * blkdev_nr_zones - Get number of zones
121 * @disk: Target gendisk
123 * Return the total number of zones of a zoned block device. For a block
124 * device without zone capabilities, the number of zones is always 0.
126 unsigned int blkdev_nr_zones(struct gendisk *disk)
128 sector_t zone_sectors = blk_queue_zone_sectors(disk->queue);
130 if (!blk_queue_is_zoned(disk->queue))
132 return (get_capacity(disk) + zone_sectors - 1) >> ilog2(zone_sectors);
134 EXPORT_SYMBOL_GPL(blkdev_nr_zones);
137 * blkdev_report_zones - Get zones information
138 * @bdev: Target block device
139 * @sector: Sector from which to report zones
140 * @nr_zones: Maximum number of zones to report
141 * @cb: Callback function called for each reported zone
142 * @data: Private data for the callback
145 * Get zone information starting from the zone containing @sector for at most
146 * @nr_zones, and call @cb for each zone reported by the device.
147 * To report all zones in a device starting from @sector, the BLK_ALL_ZONES
148 * constant can be passed to @nr_zones.
149 * Returns the number of zones reported by the device, or a negative errno
150 * value in case of failure.
152 * Note: The caller must use memalloc_noXX_save/restore() calls to control
153 * memory allocations done within this function.
155 int blkdev_report_zones(struct block_device *bdev, sector_t sector,
156 unsigned int nr_zones, report_zones_cb cb, void *data)
158 struct gendisk *disk = bdev->bd_disk;
159 sector_t capacity = get_capacity(disk);
161 if (!blk_queue_is_zoned(bdev_get_queue(bdev)) ||
162 WARN_ON_ONCE(!disk->fops->report_zones))
165 if (!nr_zones || sector >= capacity)
168 return disk->fops->report_zones(disk, sector, nr_zones, cb, data);
170 EXPORT_SYMBOL_GPL(blkdev_report_zones);
172 static inline bool blkdev_allow_reset_all_zones(struct block_device *bdev,
176 if (!blk_queue_zone_resetall(bdev_get_queue(bdev)))
180 * REQ_OP_ZONE_RESET_ALL can be executed only if the number of sectors
181 * of the applicable zone range is the entire disk.
183 return !sector && nr_sectors == get_capacity(bdev->bd_disk);
187 * blkdev_zone_mgmt - Execute a zone management operation on a range of zones
188 * @bdev: Target block device
189 * @op: Operation to be performed on the zones
190 * @sector: Start sector of the first zone to operate on
191 * @nr_sectors: Number of sectors, should be at least the length of one zone and
192 * must be zone size aligned.
193 * @gfp_mask: Memory allocation flags (for bio_alloc)
196 * Perform the specified operation on the range of zones specified by
197 * @sector..@sector+@nr_sectors. Specifying the entire disk sector range
198 * is valid, but the specified range should not contain conventional zones.
199 * The operation to execute on each zone can be a zone reset, open, close
202 int blkdev_zone_mgmt(struct block_device *bdev, enum req_opf op,
203 sector_t sector, sector_t nr_sectors,
206 struct request_queue *q = bdev_get_queue(bdev);
207 sector_t zone_sectors = blk_queue_zone_sectors(q);
208 sector_t capacity = get_capacity(bdev->bd_disk);
209 sector_t end_sector = sector + nr_sectors;
210 struct bio *bio = NULL;
213 if (!blk_queue_is_zoned(q))
216 if (bdev_read_only(bdev))
219 if (!op_is_zone_mgmt(op))
222 if (end_sector <= sector || end_sector > capacity)
226 /* Check alignment (handle eventual smaller last zone) */
227 if (sector & (zone_sectors - 1))
230 if ((nr_sectors & (zone_sectors - 1)) && end_sector != capacity)
233 while (sector < end_sector) {
234 bio = blk_next_bio(bio, 0, gfp_mask);
235 bio_set_dev(bio, bdev);
238 * Special case for the zone reset operation that reset all
239 * zones, this is useful for applications like mkfs.
241 if (op == REQ_OP_ZONE_RESET &&
242 blkdev_allow_reset_all_zones(bdev, sector, nr_sectors)) {
243 bio->bi_opf = REQ_OP_ZONE_RESET_ALL;
247 bio->bi_opf = op | REQ_SYNC;
248 bio->bi_iter.bi_sector = sector;
249 sector += zone_sectors;
251 /* This may take a while, so be nice to others */
255 ret = submit_bio_wait(bio);
260 EXPORT_SYMBOL_GPL(blkdev_zone_mgmt);
262 struct zone_report_args {
263 struct blk_zone __user *zones;
266 static int blkdev_copy_zone_to_user(struct blk_zone *zone, unsigned int idx,
269 struct zone_report_args *args = data;
271 if (copy_to_user(&args->zones[idx], zone, sizeof(struct blk_zone)))
277 * BLKREPORTZONE ioctl processing.
278 * Called from blkdev_ioctl.
280 int blkdev_report_zones_ioctl(struct block_device *bdev, fmode_t mode,
281 unsigned int cmd, unsigned long arg)
283 void __user *argp = (void __user *)arg;
284 struct zone_report_args args;
285 struct request_queue *q;
286 struct blk_zone_report rep;
292 q = bdev_get_queue(bdev);
296 if (!blk_queue_is_zoned(q))
299 if (!capable(CAP_SYS_ADMIN))
302 if (copy_from_user(&rep, argp, sizeof(struct blk_zone_report)))
308 args.zones = argp + sizeof(struct blk_zone_report);
309 ret = blkdev_report_zones(bdev, rep.sector, rep.nr_zones,
310 blkdev_copy_zone_to_user, &args);
315 rep.flags = BLK_ZONE_REP_CAPACITY;
316 if (copy_to_user(argp, &rep, sizeof(struct blk_zone_report)))
322 * BLKRESETZONE, BLKOPENZONE, BLKCLOSEZONE and BLKFINISHZONE ioctl processing.
323 * Called from blkdev_ioctl.
325 int blkdev_zone_mgmt_ioctl(struct block_device *bdev, fmode_t mode,
326 unsigned int cmd, unsigned long arg)
328 void __user *argp = (void __user *)arg;
329 struct request_queue *q;
330 struct blk_zone_range zrange;
336 q = bdev_get_queue(bdev);
340 if (!blk_queue_is_zoned(q))
343 if (!capable(CAP_SYS_ADMIN))
346 if (!(mode & FMODE_WRITE))
349 if (copy_from_user(&zrange, argp, sizeof(struct blk_zone_range)))
354 op = REQ_OP_ZONE_RESET;
357 op = REQ_OP_ZONE_OPEN;
360 op = REQ_OP_ZONE_CLOSE;
363 op = REQ_OP_ZONE_FINISH;
369 return blkdev_zone_mgmt(bdev, op, zrange.sector, zrange.nr_sectors,
373 static inline unsigned long *blk_alloc_zone_bitmap(int node,
374 unsigned int nr_zones)
376 return kcalloc_node(BITS_TO_LONGS(nr_zones), sizeof(unsigned long),
380 void blk_queue_free_zone_bitmaps(struct request_queue *q)
382 kfree(q->conv_zones_bitmap);
383 q->conv_zones_bitmap = NULL;
384 kfree(q->seq_zones_wlock);
385 q->seq_zones_wlock = NULL;
388 struct blk_revalidate_zone_args {
389 struct gendisk *disk;
390 unsigned long *conv_zones_bitmap;
391 unsigned long *seq_zones_wlock;
392 unsigned int nr_zones;
393 sector_t zone_sectors;
398 * Helper function to check the validity of zones of a zoned block device.
400 static int blk_revalidate_zone_cb(struct blk_zone *zone, unsigned int idx,
403 struct blk_revalidate_zone_args *args = data;
404 struct gendisk *disk = args->disk;
405 struct request_queue *q = disk->queue;
406 sector_t capacity = get_capacity(disk);
409 * All zones must have the same size, with the exception on an eventual
412 if (zone->start == 0) {
413 if (zone->len == 0 || !is_power_of_2(zone->len)) {
414 pr_warn("%s: Invalid zoned device with non power of two zone size (%llu)\n",
415 disk->disk_name, zone->len);
419 args->zone_sectors = zone->len;
420 args->nr_zones = (capacity + zone->len - 1) >> ilog2(zone->len);
421 } else if (zone->start + args->zone_sectors < capacity) {
422 if (zone->len != args->zone_sectors) {
423 pr_warn("%s: Invalid zoned device with non constant zone size\n",
428 if (zone->len > args->zone_sectors) {
429 pr_warn("%s: Invalid zoned device with larger last zone size\n",
435 /* Check for holes in the zone report */
436 if (zone->start != args->sector) {
437 pr_warn("%s: Zone gap at sectors %llu..%llu\n",
438 disk->disk_name, args->sector, zone->start);
442 /* Check zone type */
443 switch (zone->type) {
444 case BLK_ZONE_TYPE_CONVENTIONAL:
445 if (!args->conv_zones_bitmap) {
446 args->conv_zones_bitmap =
447 blk_alloc_zone_bitmap(q->node, args->nr_zones);
448 if (!args->conv_zones_bitmap)
451 set_bit(idx, args->conv_zones_bitmap);
453 case BLK_ZONE_TYPE_SEQWRITE_REQ:
454 case BLK_ZONE_TYPE_SEQWRITE_PREF:
455 if (!args->seq_zones_wlock) {
456 args->seq_zones_wlock =
457 blk_alloc_zone_bitmap(q->node, args->nr_zones);
458 if (!args->seq_zones_wlock)
463 pr_warn("%s: Invalid zone type 0x%x at sectors %llu\n",
464 disk->disk_name, (int)zone->type, zone->start);
468 args->sector += zone->len;
473 * blk_revalidate_disk_zones - (re)allocate and initialize zone bitmaps
475 * @update_driver_data: Callback to update driver data on the frozen disk
477 * Helper function for low-level device drivers to (re) allocate and initialize
478 * a disk request queue zone bitmaps. This functions should normally be called
479 * within the disk ->revalidate method for blk-mq based drivers. For BIO based
480 * drivers only q->nr_zones needs to be updated so that the sysfs exposed value
482 * If the @update_driver_data callback function is not NULL, the callback is
483 * executed with the device request queue frozen after all zones have been
486 int blk_revalidate_disk_zones(struct gendisk *disk,
487 void (*update_driver_data)(struct gendisk *disk))
489 struct request_queue *q = disk->queue;
490 struct blk_revalidate_zone_args args = {
493 unsigned int noio_flag;
496 if (WARN_ON_ONCE(!blk_queue_is_zoned(q)))
498 if (WARN_ON_ONCE(!queue_is_mq(q)))
501 if (!get_capacity(disk))
505 * Ensure that all memory allocations in this context are done as if
506 * GFP_NOIO was specified.
508 noio_flag = memalloc_noio_save();
509 ret = disk->fops->report_zones(disk, 0, UINT_MAX,
510 blk_revalidate_zone_cb, &args);
512 pr_warn("%s: No zones reported\n", disk->disk_name);
515 memalloc_noio_restore(noio_flag);
518 * If zones where reported, make sure that the entire disk capacity
521 if (ret > 0 && args.sector != get_capacity(disk)) {
522 pr_warn("%s: Missing zones from sector %llu\n",
523 disk->disk_name, args.sector);
528 * Install the new bitmaps and update nr_zones only once the queue is
529 * stopped and all I/Os are completed (i.e. a scheduler is not
530 * referencing the bitmaps).
532 blk_mq_freeze_queue(q);
534 blk_queue_chunk_sectors(q, args.zone_sectors);
535 q->nr_zones = args.nr_zones;
536 swap(q->seq_zones_wlock, args.seq_zones_wlock);
537 swap(q->conv_zones_bitmap, args.conv_zones_bitmap);
538 if (update_driver_data)
539 update_driver_data(disk);
542 pr_warn("%s: failed to revalidate zones\n", disk->disk_name);
543 blk_queue_free_zone_bitmaps(q);
545 blk_mq_unfreeze_queue(q);
547 kfree(args.seq_zones_wlock);
548 kfree(args.conv_zones_bitmap);
551 EXPORT_SYMBOL_GPL(blk_revalidate_disk_zones);
553 void blk_queue_clear_zone_settings(struct request_queue *q)
555 blk_mq_freeze_queue(q);
557 blk_queue_free_zone_bitmaps(q);
558 blk_queue_flag_clear(QUEUE_FLAG_ZONE_RESETALL, q);
559 q->required_elevator_features &= ~ELEVATOR_F_ZBD_SEQ_WRITE;
561 q->max_open_zones = 0;
562 q->max_active_zones = 0;
563 q->limits.chunk_sectors = 0;
564 q->limits.zone_write_granularity = 0;
565 q->limits.max_zone_append_sectors = 0;
567 blk_mq_unfreeze_queue(q);