blob: c0276b42d9fb7c5c1f6140b38a2864afc955d69a [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
Johannes Thumshirn1392d372020-05-12 17:55:48 +090085bool blk_req_zone_write_trylock(struct request *rq)
86{
87 unsigned int zno = blk_rq_zone_no(rq);
88
89 if (test_and_set_bit(zno, rq->q->seq_zones_wlock))
90 return false;
91
92 WARN_ON_ONCE(rq->rq_flags & RQF_ZONE_WRITE_LOCKED);
93 rq->rq_flags |= RQF_ZONE_WRITE_LOCKED;
94
95 return true;
96}
97EXPORT_SYMBOL_GPL(blk_req_zone_write_trylock);
98
Christoph Hellwig6cc77e92017-12-21 15:43:38 +090099void __blk_req_zone_write_lock(struct request *rq)
100{
101 if (WARN_ON_ONCE(test_and_set_bit(blk_rq_zone_no(rq),
102 rq->q->seq_zones_wlock)))
103 return;
104
105 WARN_ON_ONCE(rq->rq_flags & RQF_ZONE_WRITE_LOCKED);
106 rq->rq_flags |= RQF_ZONE_WRITE_LOCKED;
107}
108EXPORT_SYMBOL_GPL(__blk_req_zone_write_lock);
109
110void __blk_req_zone_write_unlock(struct request *rq)
111{
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));
116}
117EXPORT_SYMBOL_GPL(__blk_req_zone_write_unlock);
118
Damien Le Moala91e1382018-10-12 19:08:43 +0900119/**
120 * blkdev_nr_zones - Get number of zones
Christoph Hellwig9b38bb42019-12-03 10:39:04 +0100121 * @disk: Target gendisk
Damien Le Moala91e1382018-10-12 19:08:43 +0900122 *
Christoph Hellwig9b38bb42019-12-03 10:39:04 +0100123 * 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.
Damien Le Moala91e1382018-10-12 19:08:43 +0900125 */
Christoph Hellwig9b38bb42019-12-03 10:39:04 +0100126unsigned int blkdev_nr_zones(struct gendisk *disk)
Damien Le Moala91e1382018-10-12 19:08:43 +0900127{
Christoph Hellwig9b38bb42019-12-03 10:39:04 +0100128 sector_t zone_sectors = blk_queue_zone_sectors(disk->queue);
Damien Le Moala91e1382018-10-12 19:08:43 +0900129
Christoph Hellwig9b38bb42019-12-03 10:39:04 +0100130 if (!blk_queue_is_zoned(disk->queue))
Damien Le Moala91e1382018-10-12 19:08:43 +0900131 return 0;
Christoph Hellwig9b38bb42019-12-03 10:39:04 +0100132 return (get_capacity(disk) + zone_sectors - 1) >> ilog2(zone_sectors);
Damien Le Moala91e1382018-10-12 19:08:43 +0900133}
134EXPORT_SYMBOL_GPL(blkdev_nr_zones);
135
Hannes Reinecke6a0cb1b2016-10-18 15:40:33 +0900136/**
137 * blkdev_report_zones - Get zones information
138 * @bdev: Target block device
139 * @sector: Sector from which to report zones
Christoph Hellwigd4100352019-11-11 11:39:30 +0900140 * @nr_zones: Maximum number of zones to report
141 * @cb: Callback function called for each reported zone
142 * @data: Private data for the callback
Hannes Reinecke6a0cb1b2016-10-18 15:40:33 +0900143 *
144 * Description:
Christoph Hellwigd4100352019-11-11 11:39:30 +0900145 * 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.
151 *
152 * Note: The caller must use memalloc_noXX_save/restore() calls to control
153 * memory allocations done within this function.
Hannes Reinecke6a0cb1b2016-10-18 15:40:33 +0900154 */
Christoph Hellwige76239a2018-10-12 19:08:49 +0900155int blkdev_report_zones(struct block_device *bdev, sector_t sector,
Christoph Hellwigd4100352019-11-11 11:39:30 +0900156 unsigned int nr_zones, report_zones_cb cb, void *data)
Hannes Reinecke6a0cb1b2016-10-18 15:40:33 +0900157{
Damien Le Moalceeb3732019-11-11 11:39:24 +0900158 struct gendisk *disk = bdev->bd_disk;
Damien Le Moal5eac3eb2019-11-11 11:39:25 +0900159 sector_t capacity = get_capacity(disk);
Hannes Reinecke6a0cb1b2016-10-18 15:40:33 +0900160
Christoph Hellwigd4100352019-11-11 11:39:30 +0900161 if (!blk_queue_is_zoned(bdev_get_queue(bdev)) ||
162 WARN_ON_ONCE(!disk->fops->report_zones))
Hannes Reinecke6a0cb1b2016-10-18 15:40:33 +0900163 return -EOPNOTSUPP;
164
Christoph Hellwigd4100352019-11-11 11:39:30 +0900165 if (!nr_zones || sector >= capacity)
Hannes Reinecke6a0cb1b2016-10-18 15:40:33 +0900166 return 0;
Hannes Reinecke6a0cb1b2016-10-18 15:40:33 +0900167
Christoph Hellwigd4100352019-11-11 11:39:30 +0900168 return disk->fops->report_zones(disk, sector, nr_zones, cb, data);
Hannes Reinecke6a0cb1b2016-10-18 15:40:33 +0900169}
170EXPORT_SYMBOL_GPL(blkdev_report_zones);
171
Chaitanya Kulkarni6e33dbf2019-08-01 10:26:36 -0700172static inline bool blkdev_allow_reset_all_zones(struct block_device *bdev,
Damien Le Moalc7a1d922019-10-27 23:05:43 +0900173 sector_t sector,
Chaitanya Kulkarni6e33dbf2019-08-01 10:26:36 -0700174 sector_t nr_sectors)
175{
176 if (!blk_queue_zone_resetall(bdev_get_queue(bdev)))
177 return false;
178
Chaitanya Kulkarni6e33dbf2019-08-01 10:26:36 -0700179 /*
Damien Le Moal5eac3eb2019-11-11 11:39:25 +0900180 * REQ_OP_ZONE_RESET_ALL can be executed only if the number of sectors
181 * of the applicable zone range is the entire disk.
Chaitanya Kulkarni6e33dbf2019-08-01 10:26:36 -0700182 */
Damien Le Moal5eac3eb2019-11-11 11:39:25 +0900183 return !sector && nr_sectors == get_capacity(bdev->bd_disk);
Chaitanya Kulkarni6e33dbf2019-08-01 10:26:36 -0700184}
185
Hannes Reinecke6a0cb1b2016-10-18 15:40:33 +0900186/**
Ajay Joshi6c1b1da2019-10-27 23:05:45 +0900187 * blkdev_zone_mgmt - Execute a zone management operation on a range of zones
Hannes Reinecke6a0cb1b2016-10-18 15:40:33 +0900188 * @bdev: Target block device
Ajay Joshi6c1b1da2019-10-27 23:05:45 +0900189 * @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.
Hannes Reinecke6a0cb1b2016-10-18 15:40:33 +0900193 * @gfp_mask: Memory allocation flags (for bio_alloc)
194 *
195 * Description:
Ajay Joshi6c1b1da2019-10-27 23:05:45 +0900196 * Perform the specified operation on the range of zones specified by
Hannes Reinecke6a0cb1b2016-10-18 15:40:33 +0900197 * @sector..@sector+@nr_sectors. Specifying the entire disk sector range
198 * is valid, but the specified range should not contain conventional zones.
Ajay Joshi6c1b1da2019-10-27 23:05:45 +0900199 * The operation to execute on each zone can be a zone reset, open, close
200 * or finish request.
Hannes Reinecke6a0cb1b2016-10-18 15:40:33 +0900201 */
Ajay Joshi6c1b1da2019-10-27 23:05:45 +0900202int blkdev_zone_mgmt(struct block_device *bdev, enum req_opf op,
203 sector_t sector, sector_t nr_sectors,
204 gfp_t gfp_mask)
Hannes Reinecke6a0cb1b2016-10-18 15:40:33 +0900205{
206 struct request_queue *q = bdev_get_queue(bdev);
Ajay Joshi6c1b1da2019-10-27 23:05:45 +0900207 sector_t zone_sectors = blk_queue_zone_sectors(q);
Damien Le Moal5eac3eb2019-11-11 11:39:25 +0900208 sector_t capacity = get_capacity(bdev->bd_disk);
Hannes Reinecke6a0cb1b2016-10-18 15:40:33 +0900209 sector_t end_sector = sector + nr_sectors;
Damien Le Moala2d6b3a2018-10-12 19:08:47 +0900210 struct bio *bio = NULL;
Hannes Reinecke6a0cb1b2016-10-18 15:40:33 +0900211 int ret;
212
Hannes Reinecke6a0cb1b2016-10-18 15:40:33 +0900213 if (!blk_queue_is_zoned(q))
214 return -EOPNOTSUPP;
215
Damien Le Moala2d6b3a2018-10-12 19:08:47 +0900216 if (bdev_read_only(bdev))
217 return -EPERM;
218
Ajay Joshi6c1b1da2019-10-27 23:05:45 +0900219 if (!op_is_zone_mgmt(op))
220 return -EOPNOTSUPP;
221
Alexey Dobriyan11bde982020-02-12 20:40:27 +0300222 if (end_sector <= sector || end_sector > capacity)
Hannes Reinecke6a0cb1b2016-10-18 15:40:33 +0900223 /* Out of range */
224 return -EINVAL;
225
226 /* Check alignment (handle eventual smaller last zone) */
Hannes Reinecke6a0cb1b2016-10-18 15:40:33 +0900227 if (sector & (zone_sectors - 1))
228 return -EINVAL;
229
Damien Le Moal5eac3eb2019-11-11 11:39:25 +0900230 if ((nr_sectors & (zone_sectors - 1)) && end_sector != capacity)
Hannes Reinecke6a0cb1b2016-10-18 15:40:33 +0900231 return -EINVAL;
232
233 while (sector < end_sector) {
Damien Le Moala2d6b3a2018-10-12 19:08:47 +0900234 bio = blk_next_bio(bio, 0, gfp_mask);
Christoph Hellwig74d46992017-08-23 19:10:32 +0200235 bio_set_dev(bio, bdev);
Hannes Reinecke6a0cb1b2016-10-18 15:40:33 +0900236
Damien Le Moalc7a1d922019-10-27 23:05:43 +0900237 /*
238 * Special case for the zone reset operation that reset all
239 * zones, this is useful for applications like mkfs.
240 */
Ajay Joshi6c1b1da2019-10-27 23:05:45 +0900241 if (op == REQ_OP_ZONE_RESET &&
242 blkdev_allow_reset_all_zones(bdev, sector, nr_sectors)) {
Damien Le Moalfaa44c62021-03-10 18:09:19 +0900243 bio->bi_opf = REQ_OP_ZONE_RESET_ALL | REQ_SYNC;
Damien Le Moalc7a1d922019-10-27 23:05:43 +0900244 break;
245 }
246
Chaitanya Kulkarni8e42d232020-01-07 13:58:17 -0800247 bio->bi_opf = op | REQ_SYNC;
Damien Le Moalc7a1d922019-10-27 23:05:43 +0900248 bio->bi_iter.bi_sector = sector;
Hannes Reinecke6a0cb1b2016-10-18 15:40:33 +0900249 sector += zone_sectors;
250
251 /* This may take a while, so be nice to others */
252 cond_resched();
Hannes Reinecke6a0cb1b2016-10-18 15:40:33 +0900253 }
254
Damien Le Moala2d6b3a2018-10-12 19:08:47 +0900255 ret = submit_bio_wait(bio);
256 bio_put(bio);
257
Damien Le Moala2d6b3a2018-10-12 19:08:47 +0900258 return ret;
Hannes Reinecke6a0cb1b2016-10-18 15:40:33 +0900259}
Ajay Joshi6c1b1da2019-10-27 23:05:45 +0900260EXPORT_SYMBOL_GPL(blkdev_zone_mgmt);
Shaun Tancheff3ed05a92016-10-18 15:40:35 +0900261
Christoph Hellwigd4100352019-11-11 11:39:30 +0900262struct zone_report_args {
263 struct blk_zone __user *zones;
264};
265
266static int blkdev_copy_zone_to_user(struct blk_zone *zone, unsigned int idx,
267 void *data)
268{
269 struct zone_report_args *args = data;
270
271 if (copy_to_user(&args->zones[idx], zone, sizeof(struct blk_zone)))
272 return -EFAULT;
273 return 0;
274}
275
Bart Van Assche56c4bdd2018-03-08 15:28:50 -0800276/*
Shaun Tancheff3ed05a92016-10-18 15:40:35 +0900277 * BLKREPORTZONE ioctl processing.
278 * Called from blkdev_ioctl.
279 */
280int blkdev_report_zones_ioctl(struct block_device *bdev, fmode_t mode,
281 unsigned int cmd, unsigned long arg)
282{
283 void __user *argp = (void __user *)arg;
Christoph Hellwigd4100352019-11-11 11:39:30 +0900284 struct zone_report_args args;
Shaun Tancheff3ed05a92016-10-18 15:40:35 +0900285 struct request_queue *q;
286 struct blk_zone_report rep;
Shaun Tancheff3ed05a92016-10-18 15:40:35 +0900287 int ret;
288
289 if (!argp)
290 return -EINVAL;
291
292 q = bdev_get_queue(bdev);
293 if (!q)
294 return -ENXIO;
295
296 if (!blk_queue_is_zoned(q))
297 return -ENOTTY;
298
299 if (!capable(CAP_SYS_ADMIN))
300 return -EACCES;
301
302 if (copy_from_user(&rep, argp, sizeof(struct blk_zone_report)))
303 return -EFAULT;
304
305 if (!rep.nr_zones)
306 return -EINVAL;
307
Christoph Hellwigd4100352019-11-11 11:39:30 +0900308 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);
311 if (ret < 0)
312 return ret;
Bart Van Assche327ea4a2018-05-22 08:27:22 -0700313
Christoph Hellwigd4100352019-11-11 11:39:30 +0900314 rep.nr_zones = ret;
Matias Bjørling82394db2020-06-29 12:06:37 -0700315 rep.flags = BLK_ZONE_REP_CAPACITY;
Christoph Hellwigd4100352019-11-11 11:39:30 +0900316 if (copy_to_user(argp, &rep, sizeof(struct blk_zone_report)))
317 return -EFAULT;
318 return 0;
Shaun Tancheff3ed05a92016-10-18 15:40:35 +0900319}
320
Shin'ichiro Kawasakie5113502021-03-11 16:25:46 +0900321static int blkdev_truncate_zone_range(struct block_device *bdev, fmode_t mode,
322 const struct blk_zone_range *zrange)
323{
324 loff_t start, end;
325
326 if (zrange->sector + zrange->nr_sectors <= zrange->sector ||
327 zrange->sector + zrange->nr_sectors > get_capacity(bdev->bd_disk))
328 /* Out of range */
329 return -EINVAL;
330
331 start = zrange->sector << SECTOR_SHIFT;
332 end = ((zrange->sector + zrange->nr_sectors) << SECTOR_SHIFT) - 1;
333
334 return truncate_bdev_range(bdev, mode, start, end);
335}
336
Bart Van Assche56c4bdd2018-03-08 15:28:50 -0800337/*
Ajay Joshie876df12019-10-27 23:05:46 +0900338 * BLKRESETZONE, BLKOPENZONE, BLKCLOSEZONE and BLKFINISHZONE ioctl processing.
Shaun Tancheff3ed05a92016-10-18 15:40:35 +0900339 * Called from blkdev_ioctl.
340 */
Ajay Joshie876df12019-10-27 23:05:46 +0900341int blkdev_zone_mgmt_ioctl(struct block_device *bdev, fmode_t mode,
342 unsigned int cmd, unsigned long arg)
Shaun Tancheff3ed05a92016-10-18 15:40:35 +0900343{
344 void __user *argp = (void __user *)arg;
345 struct request_queue *q;
346 struct blk_zone_range zrange;
Ajay Joshie876df12019-10-27 23:05:46 +0900347 enum req_opf op;
Shin'ichiro Kawasakie5113502021-03-11 16:25:46 +0900348 int ret;
Shaun Tancheff3ed05a92016-10-18 15:40:35 +0900349
350 if (!argp)
351 return -EINVAL;
352
353 q = bdev_get_queue(bdev);
354 if (!q)
355 return -ENXIO;
356
357 if (!blk_queue_is_zoned(q))
358 return -ENOTTY;
359
360 if (!capable(CAP_SYS_ADMIN))
361 return -EACCES;
362
363 if (!(mode & FMODE_WRITE))
364 return -EBADF;
365
366 if (copy_from_user(&zrange, argp, sizeof(struct blk_zone_range)))
367 return -EFAULT;
368
Ajay Joshie876df12019-10-27 23:05:46 +0900369 switch (cmd) {
370 case BLKRESETZONE:
371 op = REQ_OP_ZONE_RESET;
Shin'ichiro Kawasakie5113502021-03-11 16:25:46 +0900372
373 /* Invalidate the page cache, including dirty pages. */
374 ret = blkdev_truncate_zone_range(bdev, mode, &zrange);
375 if (ret)
376 return ret;
Ajay Joshie876df12019-10-27 23:05:46 +0900377 break;
378 case BLKOPENZONE:
379 op = REQ_OP_ZONE_OPEN;
380 break;
381 case BLKCLOSEZONE:
382 op = REQ_OP_ZONE_CLOSE;
383 break;
384 case BLKFINISHZONE:
385 op = REQ_OP_ZONE_FINISH;
386 break;
387 default:
388 return -ENOTTY;
389 }
390
Shin'ichiro Kawasakie5113502021-03-11 16:25:46 +0900391 ret = blkdev_zone_mgmt(bdev, op, zrange.sector, zrange.nr_sectors,
392 GFP_KERNEL);
393
394 /*
395 * Invalidate the page cache again for zone reset: writes can only be
396 * direct for zoned devices so concurrent writes would not add any page
397 * to the page cache after/during reset. The page cache may be filled
398 * again due to concurrent reads though and dropping the pages for
399 * these is fine.
400 */
401 if (!ret && cmd == BLKRESETZONE)
402 ret = blkdev_truncate_zone_range(bdev, mode, &zrange);
403
404 return ret;
Shaun Tancheff3ed05a92016-10-18 15:40:35 +0900405}
Damien Le Moalbf505452018-10-12 19:08:50 +0900406
407static inline unsigned long *blk_alloc_zone_bitmap(int node,
408 unsigned int nr_zones)
409{
410 return kcalloc_node(BITS_TO_LONGS(nr_zones), sizeof(unsigned long),
411 GFP_NOIO, node);
412}
413
Damien Le Moalbf505452018-10-12 19:08:50 +0900414void blk_queue_free_zone_bitmaps(struct request_queue *q)
415{
Christoph Hellwigf216fdd2019-12-03 10:39:05 +0100416 kfree(q->conv_zones_bitmap);
417 q->conv_zones_bitmap = NULL;
Damien Le Moalbf505452018-10-12 19:08:50 +0900418 kfree(q->seq_zones_wlock);
419 q->seq_zones_wlock = NULL;
420}
421
Christoph Hellwigd4100352019-11-11 11:39:30 +0900422struct blk_revalidate_zone_args {
423 struct gendisk *disk;
Christoph Hellwigf216fdd2019-12-03 10:39:05 +0100424 unsigned long *conv_zones_bitmap;
Christoph Hellwigd4100352019-11-11 11:39:30 +0900425 unsigned long *seq_zones_wlock;
Christoph Hellwige94f5812019-12-03 10:39:06 +0100426 unsigned int nr_zones;
Christoph Hellwig6c6b3542019-12-03 10:39:08 +0100427 sector_t zone_sectors;
Christoph Hellwigd4100352019-11-11 11:39:30 +0900428 sector_t sector;
429};
430
Damien Le Moald9dd7302019-11-11 11:39:22 +0900431/*
432 * Helper function to check the validity of zones of a zoned block device.
433 */
Christoph Hellwigd4100352019-11-11 11:39:30 +0900434static int blk_revalidate_zone_cb(struct blk_zone *zone, unsigned int idx,
435 void *data)
Damien Le Moald9dd7302019-11-11 11:39:22 +0900436{
Christoph Hellwigd4100352019-11-11 11:39:30 +0900437 struct blk_revalidate_zone_args *args = data;
438 struct gendisk *disk = args->disk;
Damien Le Moald9dd7302019-11-11 11:39:22 +0900439 struct request_queue *q = disk->queue;
Damien Le Moald9dd7302019-11-11 11:39:22 +0900440 sector_t capacity = get_capacity(disk);
441
442 /*
443 * All zones must have the same size, with the exception on an eventual
444 * smaller last zone.
445 */
Christoph Hellwig6c6b3542019-12-03 10:39:08 +0100446 if (zone->start == 0) {
447 if (zone->len == 0 || !is_power_of_2(zone->len)) {
448 pr_warn("%s: Invalid zoned device with non power of two zone size (%llu)\n",
449 disk->disk_name, zone->len);
450 return -ENODEV;
451 }
Damien Le Moald9dd7302019-11-11 11:39:22 +0900452
Christoph Hellwig6c6b3542019-12-03 10:39:08 +0100453 args->zone_sectors = zone->len;
454 args->nr_zones = (capacity + zone->len - 1) >> ilog2(zone->len);
455 } else if (zone->start + args->zone_sectors < capacity) {
456 if (zone->len != args->zone_sectors) {
457 pr_warn("%s: Invalid zoned device with non constant zone size\n",
458 disk->disk_name);
459 return -ENODEV;
460 }
461 } else {
462 if (zone->len > args->zone_sectors) {
463 pr_warn("%s: Invalid zoned device with larger last zone size\n",
464 disk->disk_name);
465 return -ENODEV;
466 }
Damien Le Moald9dd7302019-11-11 11:39:22 +0900467 }
468
469 /* Check for holes in the zone report */
Christoph Hellwigd4100352019-11-11 11:39:30 +0900470 if (zone->start != args->sector) {
Damien Le Moald9dd7302019-11-11 11:39:22 +0900471 pr_warn("%s: Zone gap at sectors %llu..%llu\n",
Christoph Hellwigd4100352019-11-11 11:39:30 +0900472 disk->disk_name, args->sector, zone->start);
473 return -ENODEV;
Damien Le Moald9dd7302019-11-11 11:39:22 +0900474 }
475
476 /* Check zone type */
477 switch (zone->type) {
478 case BLK_ZONE_TYPE_CONVENTIONAL:
Christoph Hellwige94f5812019-12-03 10:39:06 +0100479 if (!args->conv_zones_bitmap) {
480 args->conv_zones_bitmap =
481 blk_alloc_zone_bitmap(q->node, args->nr_zones);
482 if (!args->conv_zones_bitmap)
483 return -ENOMEM;
484 }
485 set_bit(idx, args->conv_zones_bitmap);
486 break;
Damien Le Moald9dd7302019-11-11 11:39:22 +0900487 case BLK_ZONE_TYPE_SEQWRITE_REQ:
488 case BLK_ZONE_TYPE_SEQWRITE_PREF:
Christoph Hellwige94f5812019-12-03 10:39:06 +0100489 if (!args->seq_zones_wlock) {
490 args->seq_zones_wlock =
491 blk_alloc_zone_bitmap(q->node, args->nr_zones);
492 if (!args->seq_zones_wlock)
493 return -ENOMEM;
494 }
Damien Le Moald9dd7302019-11-11 11:39:22 +0900495 break;
496 default:
497 pr_warn("%s: Invalid zone type 0x%x at sectors %llu\n",
498 disk->disk_name, (int)zone->type, zone->start);
Christoph Hellwigd4100352019-11-11 11:39:30 +0900499 return -ENODEV;
Damien Le Moald9dd7302019-11-11 11:39:22 +0900500 }
501
Christoph Hellwigd4100352019-11-11 11:39:30 +0900502 args->sector += zone->len;
503 return 0;
504}
505
Damien Le Moalbf505452018-10-12 19:08:50 +0900506/**
507 * blk_revalidate_disk_zones - (re)allocate and initialize zone bitmaps
508 * @disk: Target disk
Damien Le Moale7326712020-05-12 17:55:49 +0900509 * @update_driver_data: Callback to update driver data on the frozen disk
Damien Le Moalbf505452018-10-12 19:08:50 +0900510 *
511 * Helper function for low-level device drivers to (re) allocate and initialize
512 * a disk request queue zone bitmaps. This functions should normally be called
Christoph Hellwigae589542019-12-03 10:39:07 +0100513 * within the disk ->revalidate method for blk-mq based drivers. For BIO based
514 * drivers only q->nr_zones needs to be updated so that the sysfs exposed value
515 * is correct.
Damien Le Moale7326712020-05-12 17:55:49 +0900516 * If the @update_driver_data callback function is not NULL, the callback is
517 * executed with the device request queue frozen after all zones have been
518 * checked.
Damien Le Moalbf505452018-10-12 19:08:50 +0900519 */
Damien Le Moale7326712020-05-12 17:55:49 +0900520int blk_revalidate_disk_zones(struct gendisk *disk,
521 void (*update_driver_data)(struct gendisk *disk))
Damien Le Moalbf505452018-10-12 19:08:50 +0900522{
523 struct request_queue *q = disk->queue;
Christoph Hellwige94f5812019-12-03 10:39:06 +0100524 struct blk_revalidate_zone_args args = {
525 .disk = disk,
Christoph Hellwige94f5812019-12-03 10:39:06 +0100526 };
Christoph Hellwig6c6b3542019-12-03 10:39:08 +0100527 unsigned int noio_flag;
528 int ret;
Damien Le Moalbf505452018-10-12 19:08:50 +0900529
Christoph Hellwigc98c3d092019-11-11 11:39:23 +0900530 if (WARN_ON_ONCE(!blk_queue_is_zoned(q)))
531 return -EIO;
Christoph Hellwigae589542019-12-03 10:39:07 +0100532 if (WARN_ON_ONCE(!queue_is_mq(q)))
533 return -EIO;
Damien Le Moalbf505452018-10-12 19:08:50 +0900534
Johannes Thumshirn1a1206d2020-07-30 20:25:17 +0900535 if (!get_capacity(disk))
536 return -EIO;
537
Christoph Hellwige94f5812019-12-03 10:39:06 +0100538 /*
Christoph Hellwig6c6b3542019-12-03 10:39:08 +0100539 * Ensure that all memory allocations in this context are done as if
540 * GFP_NOIO was specified.
Christoph Hellwige94f5812019-12-03 10:39:06 +0100541 */
Christoph Hellwig6c6b3542019-12-03 10:39:08 +0100542 noio_flag = memalloc_noio_save();
543 ret = disk->fops->report_zones(disk, 0, UINT_MAX,
544 blk_revalidate_zone_cb, &args);
Damien Le Moal2afdeb22020-11-11 16:36:06 +0900545 if (!ret) {
546 pr_warn("%s: No zones reported\n", disk->disk_name);
547 ret = -ENODEV;
548 }
Christoph Hellwig6c6b3542019-12-03 10:39:08 +0100549 memalloc_noio_restore(noio_flag);
Damien Le Moalbd976e52019-07-01 14:09:16 +0900550
Damien Le Moalbf505452018-10-12 19:08:50 +0900551 /*
Damien Le Moal2afdeb22020-11-11 16:36:06 +0900552 * If zones where reported, make sure that the entire disk capacity
553 * has been checked.
554 */
555 if (ret > 0 && args.sector != get_capacity(disk)) {
556 pr_warn("%s: Missing zones from sector %llu\n",
557 disk->disk_name, args.sector);
558 ret = -ENODEV;
559 }
560
561 /*
Christoph Hellwig6c6b3542019-12-03 10:39:08 +0100562 * Install the new bitmaps and update nr_zones only once the queue is
563 * stopped and all I/Os are completed (i.e. a scheduler is not
564 * referencing the bitmaps).
Damien Le Moalbf505452018-10-12 19:08:50 +0900565 */
566 blk_mq_freeze_queue(q);
Damien Le Moal2afdeb22020-11-11 16:36:06 +0900567 if (ret > 0) {
Christoph Hellwig6c6b3542019-12-03 10:39:08 +0100568 blk_queue_chunk_sectors(q, args.zone_sectors);
Christoph Hellwige94f5812019-12-03 10:39:06 +0100569 q->nr_zones = args.nr_zones;
Christoph Hellwigd4100352019-11-11 11:39:30 +0900570 swap(q->seq_zones_wlock, args.seq_zones_wlock);
Christoph Hellwigf216fdd2019-12-03 10:39:05 +0100571 swap(q->conv_zones_bitmap, args.conv_zones_bitmap);
Damien Le Moale7326712020-05-12 17:55:49 +0900572 if (update_driver_data)
573 update_driver_data(disk);
Christoph Hellwigd4100352019-11-11 11:39:30 +0900574 ret = 0;
575 } else {
576 pr_warn("%s: failed to revalidate zones\n", disk->disk_name);
577 blk_queue_free_zone_bitmaps(q);
578 }
Damien Le Moalbf505452018-10-12 19:08:50 +0900579 blk_mq_unfreeze_queue(q);
580
Christoph Hellwigd4100352019-11-11 11:39:30 +0900581 kfree(args.seq_zones_wlock);
Christoph Hellwigf216fdd2019-12-03 10:39:05 +0100582 kfree(args.conv_zones_bitmap);
Damien Le Moalbf505452018-10-12 19:08:50 +0900583 return ret;
584}
585EXPORT_SYMBOL_GPL(blk_revalidate_disk_zones);
Damien Le Moal508aebb2021-01-28 13:47:32 +0900586
587void blk_queue_clear_zone_settings(struct request_queue *q)
588{
589 blk_mq_freeze_queue(q);
590
591 blk_queue_free_zone_bitmaps(q);
592 blk_queue_flag_clear(QUEUE_FLAG_ZONE_RESETALL, q);
593 q->required_elevator_features &= ~ELEVATOR_F_ZBD_SEQ_WRITE;
594 q->nr_zones = 0;
595 q->max_open_zones = 0;
596 q->max_active_zones = 0;
597 q->limits.chunk_sectors = 0;
598 q->limits.zone_write_granularity = 0;
599 q->limits.max_zone_append_sectors = 0;
600
601 blk_mq_unfreeze_queue(q);
602}