blob: f18f1ee9d71f5d1d8a6dfe822db75255c28e2855 [file] [log] [blame]
Christoph Hellwig3dcf60b2019-04-30 14:42:43 -04001// SPDX-License-Identifier: GPL-2.0
Hannes Reinecke6a0cb1b2016-10-18 15:40:33 +09002/*
3 * Zoned block device handling
4 *
5 * Copyright (c) 2015, Hannes Reinecke
6 * Copyright (c) 2015, SUSE Linux GmbH
7 *
8 * Copyright (c) 2016, Damien Le Moal
9 * Copyright (c) 2016, Western Digital
10 */
11
12#include <linux/kernel.h>
13#include <linux/module.h>
14#include <linux/rbtree.h>
15#include <linux/blkdev.h>
Damien Le Moalbf505452018-10-12 19:08:50 +090016#include <linux/blk-mq.h>
Damien Le Moal26202922019-07-01 14:09:18 +090017#include <linux/mm.h>
18#include <linux/vmalloc.h>
Damien Le Moalbd976e52019-07-01 14:09:16 +090019#include <linux/sched/mm.h>
Hannes Reinecke6a0cb1b2016-10-18 15:40:33 +090020
Damien Le Moala2d6b3a2018-10-12 19:08:47 +090021#include "blk.h"
22
Chaitanya Kulkarni02694e82020-03-25 10:49:54 -070023#define ZONE_COND_NAME(name) [BLK_ZONE_COND_##name] = #name
24static 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),
31 ZONE_COND_NAME(FULL),
32 ZONE_COND_NAME(OFFLINE),
33};
34#undef ZONE_COND_NAME
35
36/**
37 * blk_zone_cond_str - Return string XXX in BLK_ZONE_COND_XXX.
38 * @zone_cond: BLK_ZONE_COND_XXX.
39 *
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".
43 */
44const char *blk_zone_cond_str(enum blk_zone_cond zone_cond)
45{
46 static const char *zone_cond_str = "UNKNOWN";
47
48 if (zone_cond < ARRAY_SIZE(zone_cond_name) && zone_cond_name[zone_cond])
49 zone_cond_str = zone_cond_name[zone_cond];
50
51 return zone_cond_str;
52}
53EXPORT_SYMBOL_GPL(blk_zone_cond_str);
54
Hannes Reinecke6a0cb1b2016-10-18 15:40:33 +090055static inline sector_t blk_zone_start(struct request_queue *q,
56 sector_t sector)
57{
Damien Le Moalf99e8642017-01-12 07:58:32 -070058 sector_t zone_mask = blk_queue_zone_sectors(q) - 1;
Hannes Reinecke6a0cb1b2016-10-18 15:40:33 +090059
60 return sector & ~zone_mask;
61}
62
63/*
Christoph Hellwig6cc77e92017-12-21 15:43:38 +090064 * Return true if a request is a write requests that needs zone write locking.
65 */
66bool blk_req_needs_zone_write_lock(struct request *rq)
67{
68 if (!rq->q->seq_zones_wlock)
69 return false;
70
71 if (blk_rq_is_passthrough(rq))
72 return false;
73
74 switch (req_op(rq)) {
75 case REQ_OP_WRITE_ZEROES:
76 case REQ_OP_WRITE_SAME:
77 case REQ_OP_WRITE:
78 return blk_rq_zone_is_seq(rq);
79 default:
80 return false;
81 }
82}
83EXPORT_SYMBOL_GPL(blk_req_needs_zone_write_lock);
84
85void __blk_req_zone_write_lock(struct request *rq)
86{
87 if (WARN_ON_ONCE(test_and_set_bit(blk_rq_zone_no(rq),
88 rq->q->seq_zones_wlock)))
89 return;
90
91 WARN_ON_ONCE(rq->rq_flags & RQF_ZONE_WRITE_LOCKED);
92 rq->rq_flags |= RQF_ZONE_WRITE_LOCKED;
93}
94EXPORT_SYMBOL_GPL(__blk_req_zone_write_lock);
95
96void __blk_req_zone_write_unlock(struct request *rq)
97{
98 rq->rq_flags &= ~RQF_ZONE_WRITE_LOCKED;
99 if (rq->q->seq_zones_wlock)
100 WARN_ON_ONCE(!test_and_clear_bit(blk_rq_zone_no(rq),
101 rq->q->seq_zones_wlock));
102}
103EXPORT_SYMBOL_GPL(__blk_req_zone_write_unlock);
104
Damien Le Moala91e1382018-10-12 19:08:43 +0900105/**
106 * blkdev_nr_zones - Get number of zones
Christoph Hellwig9b38bb42019-12-03 10:39:04 +0100107 * @disk: Target gendisk
Damien Le Moala91e1382018-10-12 19:08:43 +0900108 *
Christoph Hellwig9b38bb42019-12-03 10:39:04 +0100109 * Return the total number of zones of a zoned block device. For a block
110 * device without zone capabilities, the number of zones is always 0.
Damien Le Moala91e1382018-10-12 19:08:43 +0900111 */
Christoph Hellwig9b38bb42019-12-03 10:39:04 +0100112unsigned int blkdev_nr_zones(struct gendisk *disk)
Damien Le Moala91e1382018-10-12 19:08:43 +0900113{
Christoph Hellwig9b38bb42019-12-03 10:39:04 +0100114 sector_t zone_sectors = blk_queue_zone_sectors(disk->queue);
Damien Le Moala91e1382018-10-12 19:08:43 +0900115
Christoph Hellwig9b38bb42019-12-03 10:39:04 +0100116 if (!blk_queue_is_zoned(disk->queue))
Damien Le Moala91e1382018-10-12 19:08:43 +0900117 return 0;
Christoph Hellwig9b38bb42019-12-03 10:39:04 +0100118 return (get_capacity(disk) + zone_sectors - 1) >> ilog2(zone_sectors);
Damien Le Moala91e1382018-10-12 19:08:43 +0900119}
120EXPORT_SYMBOL_GPL(blkdev_nr_zones);
121
Hannes Reinecke6a0cb1b2016-10-18 15:40:33 +0900122/**
123 * blkdev_report_zones - Get zones information
124 * @bdev: Target block device
125 * @sector: Sector from which to report zones
Christoph Hellwigd4100352019-11-11 11:39:30 +0900126 * @nr_zones: Maximum number of zones to report
127 * @cb: Callback function called for each reported zone
128 * @data: Private data for the callback
Hannes Reinecke6a0cb1b2016-10-18 15:40:33 +0900129 *
130 * Description:
Christoph Hellwigd4100352019-11-11 11:39:30 +0900131 * Get zone information starting from the zone containing @sector for at most
132 * @nr_zones, and call @cb for each zone reported by the device.
133 * To report all zones in a device starting from @sector, the BLK_ALL_ZONES
134 * constant can be passed to @nr_zones.
135 * Returns the number of zones reported by the device, or a negative errno
136 * value in case of failure.
137 *
138 * Note: The caller must use memalloc_noXX_save/restore() calls to control
139 * memory allocations done within this function.
Hannes Reinecke6a0cb1b2016-10-18 15:40:33 +0900140 */
Christoph Hellwige76239a2018-10-12 19:08:49 +0900141int blkdev_report_zones(struct block_device *bdev, sector_t sector,
Christoph Hellwigd4100352019-11-11 11:39:30 +0900142 unsigned int nr_zones, report_zones_cb cb, void *data)
Hannes Reinecke6a0cb1b2016-10-18 15:40:33 +0900143{
Damien Le Moalceeb3732019-11-11 11:39:24 +0900144 struct gendisk *disk = bdev->bd_disk;
Damien Le Moal5eac3eb2019-11-11 11:39:25 +0900145 sector_t capacity = get_capacity(disk);
Hannes Reinecke6a0cb1b2016-10-18 15:40:33 +0900146
Christoph Hellwigd4100352019-11-11 11:39:30 +0900147 if (!blk_queue_is_zoned(bdev_get_queue(bdev)) ||
148 WARN_ON_ONCE(!disk->fops->report_zones))
Hannes Reinecke6a0cb1b2016-10-18 15:40:33 +0900149 return -EOPNOTSUPP;
150
Christoph Hellwigd4100352019-11-11 11:39:30 +0900151 if (!nr_zones || sector >= capacity)
Hannes Reinecke6a0cb1b2016-10-18 15:40:33 +0900152 return 0;
Hannes Reinecke6a0cb1b2016-10-18 15:40:33 +0900153
Christoph Hellwigd4100352019-11-11 11:39:30 +0900154 return disk->fops->report_zones(disk, sector, nr_zones, cb, data);
Hannes Reinecke6a0cb1b2016-10-18 15:40:33 +0900155}
156EXPORT_SYMBOL_GPL(blkdev_report_zones);
157
Chaitanya Kulkarni6e33dbf2019-08-01 10:26:36 -0700158static inline bool blkdev_allow_reset_all_zones(struct block_device *bdev,
Damien Le Moalc7a1d922019-10-27 23:05:43 +0900159 sector_t sector,
Chaitanya Kulkarni6e33dbf2019-08-01 10:26:36 -0700160 sector_t nr_sectors)
161{
162 if (!blk_queue_zone_resetall(bdev_get_queue(bdev)))
163 return false;
164
Chaitanya Kulkarni6e33dbf2019-08-01 10:26:36 -0700165 /*
Damien Le Moal5eac3eb2019-11-11 11:39:25 +0900166 * REQ_OP_ZONE_RESET_ALL can be executed only if the number of sectors
167 * of the applicable zone range is the entire disk.
Chaitanya Kulkarni6e33dbf2019-08-01 10:26:36 -0700168 */
Damien Le Moal5eac3eb2019-11-11 11:39:25 +0900169 return !sector && nr_sectors == get_capacity(bdev->bd_disk);
Chaitanya Kulkarni6e33dbf2019-08-01 10:26:36 -0700170}
171
Hannes Reinecke6a0cb1b2016-10-18 15:40:33 +0900172/**
Ajay Joshi6c1b1da2019-10-27 23:05:45 +0900173 * blkdev_zone_mgmt - Execute a zone management operation on a range of zones
Hannes Reinecke6a0cb1b2016-10-18 15:40:33 +0900174 * @bdev: Target block device
Ajay Joshi6c1b1da2019-10-27 23:05:45 +0900175 * @op: Operation to be performed on the zones
176 * @sector: Start sector of the first zone to operate on
177 * @nr_sectors: Number of sectors, should be at least the length of one zone and
178 * must be zone size aligned.
Hannes Reinecke6a0cb1b2016-10-18 15:40:33 +0900179 * @gfp_mask: Memory allocation flags (for bio_alloc)
180 *
181 * Description:
Ajay Joshi6c1b1da2019-10-27 23:05:45 +0900182 * Perform the specified operation on the range of zones specified by
Hannes Reinecke6a0cb1b2016-10-18 15:40:33 +0900183 * @sector..@sector+@nr_sectors. Specifying the entire disk sector range
184 * is valid, but the specified range should not contain conventional zones.
Ajay Joshi6c1b1da2019-10-27 23:05:45 +0900185 * The operation to execute on each zone can be a zone reset, open, close
186 * or finish request.
Hannes Reinecke6a0cb1b2016-10-18 15:40:33 +0900187 */
Ajay Joshi6c1b1da2019-10-27 23:05:45 +0900188int blkdev_zone_mgmt(struct block_device *bdev, enum req_opf op,
189 sector_t sector, sector_t nr_sectors,
190 gfp_t gfp_mask)
Hannes Reinecke6a0cb1b2016-10-18 15:40:33 +0900191{
192 struct request_queue *q = bdev_get_queue(bdev);
Ajay Joshi6c1b1da2019-10-27 23:05:45 +0900193 sector_t zone_sectors = blk_queue_zone_sectors(q);
Damien Le Moal5eac3eb2019-11-11 11:39:25 +0900194 sector_t capacity = get_capacity(bdev->bd_disk);
Hannes Reinecke6a0cb1b2016-10-18 15:40:33 +0900195 sector_t end_sector = sector + nr_sectors;
Damien Le Moala2d6b3a2018-10-12 19:08:47 +0900196 struct bio *bio = NULL;
Hannes Reinecke6a0cb1b2016-10-18 15:40:33 +0900197 int ret;
198
Hannes Reinecke6a0cb1b2016-10-18 15:40:33 +0900199 if (!blk_queue_is_zoned(q))
200 return -EOPNOTSUPP;
201
Damien Le Moala2d6b3a2018-10-12 19:08:47 +0900202 if (bdev_read_only(bdev))
203 return -EPERM;
204
Ajay Joshi6c1b1da2019-10-27 23:05:45 +0900205 if (!op_is_zone_mgmt(op))
206 return -EOPNOTSUPP;
207
Damien Le Moal5eac3eb2019-11-11 11:39:25 +0900208 if (!nr_sectors || end_sector > capacity)
Hannes Reinecke6a0cb1b2016-10-18 15:40:33 +0900209 /* Out of range */
210 return -EINVAL;
211
212 /* Check alignment (handle eventual smaller last zone) */
Hannes Reinecke6a0cb1b2016-10-18 15:40:33 +0900213 if (sector & (zone_sectors - 1))
214 return -EINVAL;
215
Damien Le Moal5eac3eb2019-11-11 11:39:25 +0900216 if ((nr_sectors & (zone_sectors - 1)) && end_sector != capacity)
Hannes Reinecke6a0cb1b2016-10-18 15:40:33 +0900217 return -EINVAL;
218
219 while (sector < end_sector) {
Damien Le Moala2d6b3a2018-10-12 19:08:47 +0900220 bio = blk_next_bio(bio, 0, gfp_mask);
Christoph Hellwig74d46992017-08-23 19:10:32 +0200221 bio_set_dev(bio, bdev);
Hannes Reinecke6a0cb1b2016-10-18 15:40:33 +0900222
Damien Le Moalc7a1d922019-10-27 23:05:43 +0900223 /*
224 * Special case for the zone reset operation that reset all
225 * zones, this is useful for applications like mkfs.
226 */
Ajay Joshi6c1b1da2019-10-27 23:05:45 +0900227 if (op == REQ_OP_ZONE_RESET &&
228 blkdev_allow_reset_all_zones(bdev, sector, nr_sectors)) {
Damien Le Moalc7a1d922019-10-27 23:05:43 +0900229 bio->bi_opf = REQ_OP_ZONE_RESET_ALL;
230 break;
231 }
232
Chaitanya Kulkarni8e42d232020-01-07 13:58:17 -0800233 bio->bi_opf = op | REQ_SYNC;
Damien Le Moalc7a1d922019-10-27 23:05:43 +0900234 bio->bi_iter.bi_sector = sector;
Hannes Reinecke6a0cb1b2016-10-18 15:40:33 +0900235 sector += zone_sectors;
236
237 /* This may take a while, so be nice to others */
238 cond_resched();
Hannes Reinecke6a0cb1b2016-10-18 15:40:33 +0900239 }
240
Damien Le Moala2d6b3a2018-10-12 19:08:47 +0900241 ret = submit_bio_wait(bio);
242 bio_put(bio);
243
Damien Le Moala2d6b3a2018-10-12 19:08:47 +0900244 return ret;
Hannes Reinecke6a0cb1b2016-10-18 15:40:33 +0900245}
Ajay Joshi6c1b1da2019-10-27 23:05:45 +0900246EXPORT_SYMBOL_GPL(blkdev_zone_mgmt);
Shaun Tancheff3ed05a92016-10-18 15:40:35 +0900247
Christoph Hellwigd4100352019-11-11 11:39:30 +0900248struct zone_report_args {
249 struct blk_zone __user *zones;
250};
251
252static int blkdev_copy_zone_to_user(struct blk_zone *zone, unsigned int idx,
253 void *data)
254{
255 struct zone_report_args *args = data;
256
257 if (copy_to_user(&args->zones[idx], zone, sizeof(struct blk_zone)))
258 return -EFAULT;
259 return 0;
260}
261
Bart Van Assche56c4bdd2018-03-08 15:28:50 -0800262/*
Shaun Tancheff3ed05a92016-10-18 15:40:35 +0900263 * BLKREPORTZONE ioctl processing.
264 * Called from blkdev_ioctl.
265 */
266int blkdev_report_zones_ioctl(struct block_device *bdev, fmode_t mode,
267 unsigned int cmd, unsigned long arg)
268{
269 void __user *argp = (void __user *)arg;
Christoph Hellwigd4100352019-11-11 11:39:30 +0900270 struct zone_report_args args;
Shaun Tancheff3ed05a92016-10-18 15:40:35 +0900271 struct request_queue *q;
272 struct blk_zone_report rep;
Shaun Tancheff3ed05a92016-10-18 15:40:35 +0900273 int ret;
274
275 if (!argp)
276 return -EINVAL;
277
278 q = bdev_get_queue(bdev);
279 if (!q)
280 return -ENXIO;
281
282 if (!blk_queue_is_zoned(q))
283 return -ENOTTY;
284
285 if (!capable(CAP_SYS_ADMIN))
286 return -EACCES;
287
288 if (copy_from_user(&rep, argp, sizeof(struct blk_zone_report)))
289 return -EFAULT;
290
291 if (!rep.nr_zones)
292 return -EINVAL;
293
Christoph Hellwigd4100352019-11-11 11:39:30 +0900294 args.zones = argp + sizeof(struct blk_zone_report);
295 ret = blkdev_report_zones(bdev, rep.sector, rep.nr_zones,
296 blkdev_copy_zone_to_user, &args);
297 if (ret < 0)
298 return ret;
Bart Van Assche327ea4a2018-05-22 08:27:22 -0700299
Christoph Hellwigd4100352019-11-11 11:39:30 +0900300 rep.nr_zones = ret;
301 if (copy_to_user(argp, &rep, sizeof(struct blk_zone_report)))
302 return -EFAULT;
303 return 0;
Shaun Tancheff3ed05a92016-10-18 15:40:35 +0900304}
305
Bart Van Assche56c4bdd2018-03-08 15:28:50 -0800306/*
Ajay Joshie876df12019-10-27 23:05:46 +0900307 * BLKRESETZONE, BLKOPENZONE, BLKCLOSEZONE and BLKFINISHZONE ioctl processing.
Shaun Tancheff3ed05a92016-10-18 15:40:35 +0900308 * Called from blkdev_ioctl.
309 */
Ajay Joshie876df12019-10-27 23:05:46 +0900310int blkdev_zone_mgmt_ioctl(struct block_device *bdev, fmode_t mode,
311 unsigned int cmd, unsigned long arg)
Shaun Tancheff3ed05a92016-10-18 15:40:35 +0900312{
313 void __user *argp = (void __user *)arg;
314 struct request_queue *q;
315 struct blk_zone_range zrange;
Ajay Joshie876df12019-10-27 23:05:46 +0900316 enum req_opf op;
Shaun Tancheff3ed05a92016-10-18 15:40:35 +0900317
318 if (!argp)
319 return -EINVAL;
320
321 q = bdev_get_queue(bdev);
322 if (!q)
323 return -ENXIO;
324
325 if (!blk_queue_is_zoned(q))
326 return -ENOTTY;
327
328 if (!capable(CAP_SYS_ADMIN))
329 return -EACCES;
330
331 if (!(mode & FMODE_WRITE))
332 return -EBADF;
333
334 if (copy_from_user(&zrange, argp, sizeof(struct blk_zone_range)))
335 return -EFAULT;
336
Ajay Joshie876df12019-10-27 23:05:46 +0900337 switch (cmd) {
338 case BLKRESETZONE:
339 op = REQ_OP_ZONE_RESET;
340 break;
341 case BLKOPENZONE:
342 op = REQ_OP_ZONE_OPEN;
343 break;
344 case BLKCLOSEZONE:
345 op = REQ_OP_ZONE_CLOSE;
346 break;
347 case BLKFINISHZONE:
348 op = REQ_OP_ZONE_FINISH;
349 break;
350 default:
351 return -ENOTTY;
352 }
353
354 return blkdev_zone_mgmt(bdev, op, zrange.sector, zrange.nr_sectors,
355 GFP_KERNEL);
Shaun Tancheff3ed05a92016-10-18 15:40:35 +0900356}
Damien Le Moalbf505452018-10-12 19:08:50 +0900357
358static inline unsigned long *blk_alloc_zone_bitmap(int node,
359 unsigned int nr_zones)
360{
361 return kcalloc_node(BITS_TO_LONGS(nr_zones), sizeof(unsigned long),
362 GFP_NOIO, node);
363}
364
Damien Le Moalbf505452018-10-12 19:08:50 +0900365void blk_queue_free_zone_bitmaps(struct request_queue *q)
366{
Christoph Hellwigf216fdd2019-12-03 10:39:05 +0100367 kfree(q->conv_zones_bitmap);
368 q->conv_zones_bitmap = NULL;
Damien Le Moalbf505452018-10-12 19:08:50 +0900369 kfree(q->seq_zones_wlock);
370 q->seq_zones_wlock = NULL;
371}
372
Christoph Hellwigd4100352019-11-11 11:39:30 +0900373struct blk_revalidate_zone_args {
374 struct gendisk *disk;
Christoph Hellwigf216fdd2019-12-03 10:39:05 +0100375 unsigned long *conv_zones_bitmap;
Christoph Hellwigd4100352019-11-11 11:39:30 +0900376 unsigned long *seq_zones_wlock;
Christoph Hellwige94f5812019-12-03 10:39:06 +0100377 unsigned int nr_zones;
Christoph Hellwig6c6b3542019-12-03 10:39:08 +0100378 sector_t zone_sectors;
Christoph Hellwigd4100352019-11-11 11:39:30 +0900379 sector_t sector;
380};
381
Damien Le Moald9dd7302019-11-11 11:39:22 +0900382/*
383 * Helper function to check the validity of zones of a zoned block device.
384 */
Christoph Hellwigd4100352019-11-11 11:39:30 +0900385static int blk_revalidate_zone_cb(struct blk_zone *zone, unsigned int idx,
386 void *data)
Damien Le Moald9dd7302019-11-11 11:39:22 +0900387{
Christoph Hellwigd4100352019-11-11 11:39:30 +0900388 struct blk_revalidate_zone_args *args = data;
389 struct gendisk *disk = args->disk;
Damien Le Moald9dd7302019-11-11 11:39:22 +0900390 struct request_queue *q = disk->queue;
Damien Le Moald9dd7302019-11-11 11:39:22 +0900391 sector_t capacity = get_capacity(disk);
392
393 /*
394 * All zones must have the same size, with the exception on an eventual
395 * smaller last zone.
396 */
Christoph Hellwig6c6b3542019-12-03 10:39:08 +0100397 if (zone->start == 0) {
398 if (zone->len == 0 || !is_power_of_2(zone->len)) {
399 pr_warn("%s: Invalid zoned device with non power of two zone size (%llu)\n",
400 disk->disk_name, zone->len);
401 return -ENODEV;
402 }
Damien Le Moald9dd7302019-11-11 11:39:22 +0900403
Christoph Hellwig6c6b3542019-12-03 10:39:08 +0100404 args->zone_sectors = zone->len;
405 args->nr_zones = (capacity + zone->len - 1) >> ilog2(zone->len);
406 } else if (zone->start + args->zone_sectors < capacity) {
407 if (zone->len != args->zone_sectors) {
408 pr_warn("%s: Invalid zoned device with non constant zone size\n",
409 disk->disk_name);
410 return -ENODEV;
411 }
412 } else {
413 if (zone->len > args->zone_sectors) {
414 pr_warn("%s: Invalid zoned device with larger last zone size\n",
415 disk->disk_name);
416 return -ENODEV;
417 }
Damien Le Moald9dd7302019-11-11 11:39:22 +0900418 }
419
420 /* Check for holes in the zone report */
Christoph Hellwigd4100352019-11-11 11:39:30 +0900421 if (zone->start != args->sector) {
Damien Le Moald9dd7302019-11-11 11:39:22 +0900422 pr_warn("%s: Zone gap at sectors %llu..%llu\n",
Christoph Hellwigd4100352019-11-11 11:39:30 +0900423 disk->disk_name, args->sector, zone->start);
424 return -ENODEV;
Damien Le Moald9dd7302019-11-11 11:39:22 +0900425 }
426
427 /* Check zone type */
428 switch (zone->type) {
429 case BLK_ZONE_TYPE_CONVENTIONAL:
Christoph Hellwige94f5812019-12-03 10:39:06 +0100430 if (!args->conv_zones_bitmap) {
431 args->conv_zones_bitmap =
432 blk_alloc_zone_bitmap(q->node, args->nr_zones);
433 if (!args->conv_zones_bitmap)
434 return -ENOMEM;
435 }
436 set_bit(idx, args->conv_zones_bitmap);
437 break;
Damien Le Moald9dd7302019-11-11 11:39:22 +0900438 case BLK_ZONE_TYPE_SEQWRITE_REQ:
439 case BLK_ZONE_TYPE_SEQWRITE_PREF:
Christoph Hellwige94f5812019-12-03 10:39:06 +0100440 if (!args->seq_zones_wlock) {
441 args->seq_zones_wlock =
442 blk_alloc_zone_bitmap(q->node, args->nr_zones);
443 if (!args->seq_zones_wlock)
444 return -ENOMEM;
445 }
Damien Le Moald9dd7302019-11-11 11:39:22 +0900446 break;
447 default:
448 pr_warn("%s: Invalid zone type 0x%x at sectors %llu\n",
449 disk->disk_name, (int)zone->type, zone->start);
Christoph Hellwigd4100352019-11-11 11:39:30 +0900450 return -ENODEV;
Damien Le Moald9dd7302019-11-11 11:39:22 +0900451 }
452
Christoph Hellwigd4100352019-11-11 11:39:30 +0900453 args->sector += zone->len;
454 return 0;
455}
456
Damien Le Moalbf505452018-10-12 19:08:50 +0900457/**
458 * blk_revalidate_disk_zones - (re)allocate and initialize zone bitmaps
459 * @disk: Target disk
460 *
461 * Helper function for low-level device drivers to (re) allocate and initialize
462 * a disk request queue zone bitmaps. This functions should normally be called
Christoph Hellwigae589542019-12-03 10:39:07 +0100463 * within the disk ->revalidate method for blk-mq based drivers. For BIO based
464 * drivers only q->nr_zones needs to be updated so that the sysfs exposed value
465 * is correct.
Damien Le Moalbf505452018-10-12 19:08:50 +0900466 */
467int blk_revalidate_disk_zones(struct gendisk *disk)
468{
469 struct request_queue *q = disk->queue;
Christoph Hellwige94f5812019-12-03 10:39:06 +0100470 struct blk_revalidate_zone_args args = {
471 .disk = disk,
Christoph Hellwige94f5812019-12-03 10:39:06 +0100472 };
Christoph Hellwig6c6b3542019-12-03 10:39:08 +0100473 unsigned int noio_flag;
474 int ret;
Damien Le Moalbf505452018-10-12 19:08:50 +0900475
Christoph Hellwigc98c3d092019-11-11 11:39:23 +0900476 if (WARN_ON_ONCE(!blk_queue_is_zoned(q)))
477 return -EIO;
Christoph Hellwigae589542019-12-03 10:39:07 +0100478 if (WARN_ON_ONCE(!queue_is_mq(q)))
479 return -EIO;
Damien Le Moalbf505452018-10-12 19:08:50 +0900480
Christoph Hellwige94f5812019-12-03 10:39:06 +0100481 /*
Christoph Hellwig6c6b3542019-12-03 10:39:08 +0100482 * Ensure that all memory allocations in this context are done as if
483 * GFP_NOIO was specified.
Christoph Hellwige94f5812019-12-03 10:39:06 +0100484 */
Christoph Hellwig6c6b3542019-12-03 10:39:08 +0100485 noio_flag = memalloc_noio_save();
486 ret = disk->fops->report_zones(disk, 0, UINT_MAX,
487 blk_revalidate_zone_cb, &args);
488 memalloc_noio_restore(noio_flag);
Damien Le Moalbd976e52019-07-01 14:09:16 +0900489
Damien Le Moalbf505452018-10-12 19:08:50 +0900490 /*
Christoph Hellwig6c6b3542019-12-03 10:39:08 +0100491 * Install the new bitmaps and update nr_zones only once the queue is
492 * stopped and all I/Os are completed (i.e. a scheduler is not
493 * referencing the bitmaps).
Damien Le Moalbf505452018-10-12 19:08:50 +0900494 */
495 blk_mq_freeze_queue(q);
Christoph Hellwigd4100352019-11-11 11:39:30 +0900496 if (ret >= 0) {
Christoph Hellwig6c6b3542019-12-03 10:39:08 +0100497 blk_queue_chunk_sectors(q, args.zone_sectors);
Christoph Hellwige94f5812019-12-03 10:39:06 +0100498 q->nr_zones = args.nr_zones;
Christoph Hellwigd4100352019-11-11 11:39:30 +0900499 swap(q->seq_zones_wlock, args.seq_zones_wlock);
Christoph Hellwigf216fdd2019-12-03 10:39:05 +0100500 swap(q->conv_zones_bitmap, args.conv_zones_bitmap);
Christoph Hellwigd4100352019-11-11 11:39:30 +0900501 ret = 0;
502 } else {
503 pr_warn("%s: failed to revalidate zones\n", disk->disk_name);
504 blk_queue_free_zone_bitmaps(q);
505 }
Damien Le Moalbf505452018-10-12 19:08:50 +0900506 blk_mq_unfreeze_queue(q);
507
Christoph Hellwigd4100352019-11-11 11:39:30 +0900508 kfree(args.seq_zones_wlock);
Christoph Hellwigf216fdd2019-12-03 10:39:05 +0100509 kfree(args.conv_zones_bitmap);
Damien Le Moalbf505452018-10-12 19:08:50 +0900510 return ret;
511}
512EXPORT_SYMBOL_GPL(blk_revalidate_disk_zones);