blob: 38cd840d88387fe37d08b2260a698ffa0a72881d [file] [log] [blame]
Christoph Hellwig3dcf60bc2019-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 +090055/*
Christoph Hellwig6cc77e92017-12-21 15:43:38 +090056 * Return true if a request is a write requests that needs zone write locking.
57 */
58bool blk_req_needs_zone_write_lock(struct request *rq)
59{
60 if (!rq->q->seq_zones_wlock)
61 return false;
62
63 if (blk_rq_is_passthrough(rq))
64 return false;
65
66 switch (req_op(rq)) {
67 case REQ_OP_WRITE_ZEROES:
Christoph Hellwig6cc77e92017-12-21 15:43:38 +090068 case REQ_OP_WRITE:
69 return blk_rq_zone_is_seq(rq);
70 default:
71 return false;
72 }
73}
74EXPORT_SYMBOL_GPL(blk_req_needs_zone_write_lock);
75
Johannes Thumshirn1392d372020-05-12 17:55:48 +090076bool blk_req_zone_write_trylock(struct request *rq)
77{
78 unsigned int zno = blk_rq_zone_no(rq);
79
80 if (test_and_set_bit(zno, rq->q->seq_zones_wlock))
81 return false;
82
83 WARN_ON_ONCE(rq->rq_flags & RQF_ZONE_WRITE_LOCKED);
84 rq->rq_flags |= RQF_ZONE_WRITE_LOCKED;
85
86 return true;
87}
88EXPORT_SYMBOL_GPL(blk_req_zone_write_trylock);
89
Christoph Hellwig6cc77e92017-12-21 15:43:38 +090090void __blk_req_zone_write_lock(struct request *rq)
91{
92 if (WARN_ON_ONCE(test_and_set_bit(blk_rq_zone_no(rq),
93 rq->q->seq_zones_wlock)))
94 return;
95
96 WARN_ON_ONCE(rq->rq_flags & RQF_ZONE_WRITE_LOCKED);
97 rq->rq_flags |= RQF_ZONE_WRITE_LOCKED;
98}
99EXPORT_SYMBOL_GPL(__blk_req_zone_write_lock);
100
101void __blk_req_zone_write_unlock(struct request *rq)
102{
103 rq->rq_flags &= ~RQF_ZONE_WRITE_LOCKED;
104 if (rq->q->seq_zones_wlock)
105 WARN_ON_ONCE(!test_and_clear_bit(blk_rq_zone_no(rq),
106 rq->q->seq_zones_wlock));
107}
108EXPORT_SYMBOL_GPL(__blk_req_zone_write_unlock);
109
Damien Le Moala91e1382018-10-12 19:08:43 +0900110/**
111 * blkdev_nr_zones - Get number of zones
Christoph Hellwig9b38bb42019-12-03 10:39:04 +0100112 * @disk: Target gendisk
Damien Le Moala91e1382018-10-12 19:08:43 +0900113 *
Christoph Hellwig9b38bb42019-12-03 10:39:04 +0100114 * Return the total number of zones of a zoned block device. For a block
115 * device without zone capabilities, the number of zones is always 0.
Damien Le Moala91e1382018-10-12 19:08:43 +0900116 */
Christoph Hellwig9b38bb42019-12-03 10:39:04 +0100117unsigned int blkdev_nr_zones(struct gendisk *disk)
Damien Le Moala91e1382018-10-12 19:08:43 +0900118{
Christoph Hellwig9b38bb42019-12-03 10:39:04 +0100119 sector_t zone_sectors = blk_queue_zone_sectors(disk->queue);
Damien Le Moala91e1382018-10-12 19:08:43 +0900120
Christoph Hellwig9b38bb42019-12-03 10:39:04 +0100121 if (!blk_queue_is_zoned(disk->queue))
Damien Le Moala91e1382018-10-12 19:08:43 +0900122 return 0;
Christoph Hellwig9b38bb42019-12-03 10:39:04 +0100123 return (get_capacity(disk) + zone_sectors - 1) >> ilog2(zone_sectors);
Damien Le Moala91e1382018-10-12 19:08:43 +0900124}
125EXPORT_SYMBOL_GPL(blkdev_nr_zones);
126
Hannes Reinecke6a0cb1b2016-10-18 15:40:33 +0900127/**
128 * blkdev_report_zones - Get zones information
129 * @bdev: Target block device
130 * @sector: Sector from which to report zones
Christoph Hellwigd4100352019-11-11 11:39:30 +0900131 * @nr_zones: Maximum number of zones to report
132 * @cb: Callback function called for each reported zone
133 * @data: Private data for the callback
Hannes Reinecke6a0cb1b2016-10-18 15:40:33 +0900134 *
135 * Description:
Christoph Hellwigd4100352019-11-11 11:39:30 +0900136 * Get zone information starting from the zone containing @sector for at most
137 * @nr_zones, and call @cb for each zone reported by the device.
138 * To report all zones in a device starting from @sector, the BLK_ALL_ZONES
139 * constant can be passed to @nr_zones.
140 * Returns the number of zones reported by the device, or a negative errno
141 * value in case of failure.
142 *
143 * Note: The caller must use memalloc_noXX_save/restore() calls to control
144 * memory allocations done within this function.
Hannes Reinecke6a0cb1b2016-10-18 15:40:33 +0900145 */
Christoph Hellwige76239a2018-10-12 19:08:49 +0900146int blkdev_report_zones(struct block_device *bdev, sector_t sector,
Christoph Hellwigd4100352019-11-11 11:39:30 +0900147 unsigned int nr_zones, report_zones_cb cb, void *data)
Hannes Reinecke6a0cb1b2016-10-18 15:40:33 +0900148{
Damien Le Moalceeb3732019-11-11 11:39:24 +0900149 struct gendisk *disk = bdev->bd_disk;
Damien Le Moal5eac3eb2019-11-11 11:39:25 +0900150 sector_t capacity = get_capacity(disk);
Hannes Reinecke6a0cb1b2016-10-18 15:40:33 +0900151
Christoph Hellwigd4100352019-11-11 11:39:30 +0900152 if (!blk_queue_is_zoned(bdev_get_queue(bdev)) ||
153 WARN_ON_ONCE(!disk->fops->report_zones))
Hannes Reinecke6a0cb1b2016-10-18 15:40:33 +0900154 return -EOPNOTSUPP;
155
Christoph Hellwigd4100352019-11-11 11:39:30 +0900156 if (!nr_zones || sector >= capacity)
Hannes Reinecke6a0cb1b2016-10-18 15:40:33 +0900157 return 0;
Hannes Reinecke6a0cb1b2016-10-18 15:40:33 +0900158
Christoph Hellwigd4100352019-11-11 11:39:30 +0900159 return disk->fops->report_zones(disk, sector, nr_zones, cb, data);
Hannes Reinecke6a0cb1b2016-10-18 15:40:33 +0900160}
161EXPORT_SYMBOL_GPL(blkdev_report_zones);
162
Damien Le Moal1ee533e2021-05-26 06:24:51 +0900163static inline unsigned long *blk_alloc_zone_bitmap(int node,
164 unsigned int nr_zones)
Chaitanya Kulkarni6e33dbf2019-08-01 10:26:36 -0700165{
Damien Le Moal1ee533e2021-05-26 06:24:51 +0900166 return kcalloc_node(BITS_TO_LONGS(nr_zones), sizeof(unsigned long),
167 GFP_NOIO, node);
168}
Chaitanya Kulkarni6e33dbf2019-08-01 10:26:36 -0700169
Damien Le Moal1ee533e2021-05-26 06:24:51 +0900170static int blk_zone_need_reset_cb(struct blk_zone *zone, unsigned int idx,
171 void *data)
172{
Chaitanya Kulkarni6e33dbf2019-08-01 10:26:36 -0700173 /*
Damien Le Moal1ee533e2021-05-26 06:24:51 +0900174 * For an all-zones reset, ignore conventional, empty, read-only
175 * and offline zones.
Chaitanya Kulkarni6e33dbf2019-08-01 10:26:36 -0700176 */
Damien Le Moal1ee533e2021-05-26 06:24:51 +0900177 switch (zone->cond) {
178 case BLK_ZONE_COND_NOT_WP:
179 case BLK_ZONE_COND_EMPTY:
180 case BLK_ZONE_COND_READONLY:
181 case BLK_ZONE_COND_OFFLINE:
182 return 0;
183 default:
184 set_bit(idx, (unsigned long *)data);
185 return 0;
186 }
187}
188
189static int blkdev_zone_reset_all_emulated(struct block_device *bdev,
190 gfp_t gfp_mask)
191{
192 struct request_queue *q = bdev_get_queue(bdev);
193 sector_t capacity = get_capacity(bdev->bd_disk);
194 sector_t zone_sectors = blk_queue_zone_sectors(q);
195 unsigned long *need_reset;
196 struct bio *bio = NULL;
197 sector_t sector = 0;
198 int ret;
199
200 need_reset = blk_alloc_zone_bitmap(q->node, q->nr_zones);
201 if (!need_reset)
202 return -ENOMEM;
203
204 ret = bdev->bd_disk->fops->report_zones(bdev->bd_disk, 0,
205 q->nr_zones, blk_zone_need_reset_cb,
206 need_reset);
207 if (ret < 0)
208 goto out_free_need_reset;
209
210 ret = 0;
211 while (sector < capacity) {
212 if (!test_bit(blk_queue_zone_no(q, sector), need_reset)) {
213 sector += zone_sectors;
214 continue;
215 }
216
Chaitanya Kulkarni0a3140e2022-01-24 10:11:02 +0100217 bio = blk_next_bio(bio, bdev, 0, REQ_OP_ZONE_RESET | REQ_SYNC,
218 gfp_mask);
Damien Le Moal1ee533e2021-05-26 06:24:51 +0900219 bio->bi_iter.bi_sector = sector;
220 sector += zone_sectors;
221
222 /* This may take a while, so be nice to others */
223 cond_resched();
224 }
225
226 if (bio) {
227 ret = submit_bio_wait(bio);
228 bio_put(bio);
229 }
230
231out_free_need_reset:
232 kfree(need_reset);
233 return ret;
234}
235
236static int blkdev_zone_reset_all(struct block_device *bdev, gfp_t gfp_mask)
237{
238 struct bio bio;
239
Christoph Hellwig49add492022-01-24 10:11:06 +0100240 bio_init(&bio, bdev, NULL, 0, REQ_OP_ZONE_RESET_ALL | REQ_SYNC);
Damien Le Moal1ee533e2021-05-26 06:24:51 +0900241 return submit_bio_wait(&bio);
Chaitanya Kulkarni6e33dbf2019-08-01 10:26:36 -0700242}
243
Hannes Reinecke6a0cb1b2016-10-18 15:40:33 +0900244/**
Ajay Joshi6c1b1da2019-10-27 23:05:45 +0900245 * blkdev_zone_mgmt - Execute a zone management operation on a range of zones
Hannes Reinecke6a0cb1b2016-10-18 15:40:33 +0900246 * @bdev: Target block device
Ajay Joshi6c1b1da2019-10-27 23:05:45 +0900247 * @op: Operation to be performed on the zones
248 * @sector: Start sector of the first zone to operate on
249 * @nr_sectors: Number of sectors, should be at least the length of one zone and
250 * must be zone size aligned.
Hannes Reinecke6a0cb1b2016-10-18 15:40:33 +0900251 * @gfp_mask: Memory allocation flags (for bio_alloc)
252 *
253 * Description:
Ajay Joshi6c1b1da2019-10-27 23:05:45 +0900254 * Perform the specified operation on the range of zones specified by
Hannes Reinecke6a0cb1b2016-10-18 15:40:33 +0900255 * @sector..@sector+@nr_sectors. Specifying the entire disk sector range
256 * is valid, but the specified range should not contain conventional zones.
Ajay Joshi6c1b1da2019-10-27 23:05:45 +0900257 * The operation to execute on each zone can be a zone reset, open, close
258 * or finish request.
Hannes Reinecke6a0cb1b2016-10-18 15:40:33 +0900259 */
Ajay Joshi6c1b1da2019-10-27 23:05:45 +0900260int blkdev_zone_mgmt(struct block_device *bdev, enum req_opf op,
261 sector_t sector, sector_t nr_sectors,
262 gfp_t gfp_mask)
Hannes Reinecke6a0cb1b2016-10-18 15:40:33 +0900263{
264 struct request_queue *q = bdev_get_queue(bdev);
Ajay Joshi6c1b1da2019-10-27 23:05:45 +0900265 sector_t zone_sectors = blk_queue_zone_sectors(q);
Damien Le Moal5eac3eb2019-11-11 11:39:25 +0900266 sector_t capacity = get_capacity(bdev->bd_disk);
Hannes Reinecke6a0cb1b2016-10-18 15:40:33 +0900267 sector_t end_sector = sector + nr_sectors;
Damien Le Moala2d6b3a2018-10-12 19:08:47 +0900268 struct bio *bio = NULL;
Damien Le Moal1ee533e2021-05-26 06:24:51 +0900269 int ret = 0;
Hannes Reinecke6a0cb1b2016-10-18 15:40:33 +0900270
Hannes Reinecke6a0cb1b2016-10-18 15:40:33 +0900271 if (!blk_queue_is_zoned(q))
272 return -EOPNOTSUPP;
273
Damien Le Moala2d6b3a2018-10-12 19:08:47 +0900274 if (bdev_read_only(bdev))
275 return -EPERM;
276
Ajay Joshi6c1b1da2019-10-27 23:05:45 +0900277 if (!op_is_zone_mgmt(op))
278 return -EOPNOTSUPP;
279
Alexey Dobriyan11bde982020-02-12 20:40:27 +0300280 if (end_sector <= sector || end_sector > capacity)
Hannes Reinecke6a0cb1b2016-10-18 15:40:33 +0900281 /* Out of range */
282 return -EINVAL;
283
284 /* Check alignment (handle eventual smaller last zone) */
Hannes Reinecke6a0cb1b2016-10-18 15:40:33 +0900285 if (sector & (zone_sectors - 1))
286 return -EINVAL;
287
Damien Le Moal5eac3eb2019-11-11 11:39:25 +0900288 if ((nr_sectors & (zone_sectors - 1)) && end_sector != capacity)
Hannes Reinecke6a0cb1b2016-10-18 15:40:33 +0900289 return -EINVAL;
290
Damien Le Moal1ee533e2021-05-26 06:24:51 +0900291 /*
292 * In the case of a zone reset operation over all zones,
293 * REQ_OP_ZONE_RESET_ALL can be used with devices supporting this
294 * command. For other devices, we emulate this command behavior by
295 * identifying the zones needing a reset.
296 */
297 if (op == REQ_OP_ZONE_RESET && sector == 0 && nr_sectors == capacity) {
298 if (!blk_queue_zone_resetall(q))
299 return blkdev_zone_reset_all_emulated(bdev, gfp_mask);
300 return blkdev_zone_reset_all(bdev, gfp_mask);
301 }
302
Hannes Reinecke6a0cb1b2016-10-18 15:40:33 +0900303 while (sector < end_sector) {
Chaitanya Kulkarni0a3140e2022-01-24 10:11:02 +0100304 bio = blk_next_bio(bio, bdev, 0, op | REQ_SYNC, gfp_mask);
Damien Le Moalc7a1d922019-10-27 23:05:43 +0900305 bio->bi_iter.bi_sector = sector;
Hannes Reinecke6a0cb1b2016-10-18 15:40:33 +0900306 sector += zone_sectors;
307
308 /* This may take a while, so be nice to others */
309 cond_resched();
Hannes Reinecke6a0cb1b2016-10-18 15:40:33 +0900310 }
311
Damien Le Moala2d6b3a2018-10-12 19:08:47 +0900312 ret = submit_bio_wait(bio);
313 bio_put(bio);
314
Damien Le Moala2d6b3a2018-10-12 19:08:47 +0900315 return ret;
Hannes Reinecke6a0cb1b2016-10-18 15:40:33 +0900316}
Ajay Joshi6c1b1da2019-10-27 23:05:45 +0900317EXPORT_SYMBOL_GPL(blkdev_zone_mgmt);
Shaun Tancheff3ed05a92016-10-18 15:40:35 +0900318
Christoph Hellwigd4100352019-11-11 11:39:30 +0900319struct zone_report_args {
320 struct blk_zone __user *zones;
321};
322
323static int blkdev_copy_zone_to_user(struct blk_zone *zone, unsigned int idx,
324 void *data)
325{
326 struct zone_report_args *args = data;
327
328 if (copy_to_user(&args->zones[idx], zone, sizeof(struct blk_zone)))
329 return -EFAULT;
330 return 0;
331}
332
Bart Van Assche56c4bdd2018-03-08 15:28:50 -0800333/*
Shaun Tancheff3ed05a92016-10-18 15:40:35 +0900334 * BLKREPORTZONE ioctl processing.
335 * Called from blkdev_ioctl.
336 */
337int blkdev_report_zones_ioctl(struct block_device *bdev, fmode_t mode,
338 unsigned int cmd, unsigned long arg)
339{
340 void __user *argp = (void __user *)arg;
Christoph Hellwigd4100352019-11-11 11:39:30 +0900341 struct zone_report_args args;
Shaun Tancheff3ed05a92016-10-18 15:40:35 +0900342 struct request_queue *q;
343 struct blk_zone_report rep;
Shaun Tancheff3ed05a92016-10-18 15:40:35 +0900344 int ret;
345
346 if (!argp)
347 return -EINVAL;
348
349 q = bdev_get_queue(bdev);
350 if (!q)
351 return -ENXIO;
352
353 if (!blk_queue_is_zoned(q))
354 return -ENOTTY;
355
Shaun Tancheff3ed05a92016-10-18 15:40:35 +0900356 if (copy_from_user(&rep, argp, sizeof(struct blk_zone_report)))
357 return -EFAULT;
358
359 if (!rep.nr_zones)
360 return -EINVAL;
361
Christoph Hellwigd4100352019-11-11 11:39:30 +0900362 args.zones = argp + sizeof(struct blk_zone_report);
363 ret = blkdev_report_zones(bdev, rep.sector, rep.nr_zones,
364 blkdev_copy_zone_to_user, &args);
365 if (ret < 0)
366 return ret;
Bart Van Assche327ea4a2018-05-22 08:27:22 -0700367
Christoph Hellwigd4100352019-11-11 11:39:30 +0900368 rep.nr_zones = ret;
Matias Bjørling82394db2020-06-29 12:06:37 -0700369 rep.flags = BLK_ZONE_REP_CAPACITY;
Christoph Hellwigd4100352019-11-11 11:39:30 +0900370 if (copy_to_user(argp, &rep, sizeof(struct blk_zone_report)))
371 return -EFAULT;
372 return 0;
Shaun Tancheff3ed05a92016-10-18 15:40:35 +0900373}
374
Shin'ichiro Kawasakie5113502021-03-11 16:25:46 +0900375static int blkdev_truncate_zone_range(struct block_device *bdev, fmode_t mode,
376 const struct blk_zone_range *zrange)
377{
378 loff_t start, end;
379
380 if (zrange->sector + zrange->nr_sectors <= zrange->sector ||
381 zrange->sector + zrange->nr_sectors > get_capacity(bdev->bd_disk))
382 /* Out of range */
383 return -EINVAL;
384
385 start = zrange->sector << SECTOR_SHIFT;
386 end = ((zrange->sector + zrange->nr_sectors) << SECTOR_SHIFT) - 1;
387
388 return truncate_bdev_range(bdev, mode, start, end);
389}
390
Bart Van Assche56c4bdd2018-03-08 15:28:50 -0800391/*
Ajay Joshie876df12019-10-27 23:05:46 +0900392 * BLKRESETZONE, BLKOPENZONE, BLKCLOSEZONE and BLKFINISHZONE ioctl processing.
Shaun Tancheff3ed05a92016-10-18 15:40:35 +0900393 * Called from blkdev_ioctl.
394 */
Ajay Joshie876df12019-10-27 23:05:46 +0900395int blkdev_zone_mgmt_ioctl(struct block_device *bdev, fmode_t mode,
396 unsigned int cmd, unsigned long arg)
Shaun Tancheff3ed05a92016-10-18 15:40:35 +0900397{
398 void __user *argp = (void __user *)arg;
399 struct request_queue *q;
400 struct blk_zone_range zrange;
Ajay Joshie876df12019-10-27 23:05:46 +0900401 enum req_opf op;
Shin'ichiro Kawasakie5113502021-03-11 16:25:46 +0900402 int ret;
Shaun Tancheff3ed05a92016-10-18 15:40:35 +0900403
404 if (!argp)
405 return -EINVAL;
406
407 q = bdev_get_queue(bdev);
408 if (!q)
409 return -ENXIO;
410
411 if (!blk_queue_is_zoned(q))
412 return -ENOTTY;
413
Shaun Tancheff3ed05a92016-10-18 15:40:35 +0900414 if (!(mode & FMODE_WRITE))
415 return -EBADF;
416
417 if (copy_from_user(&zrange, argp, sizeof(struct blk_zone_range)))
418 return -EFAULT;
419
Ajay Joshie876df12019-10-27 23:05:46 +0900420 switch (cmd) {
421 case BLKRESETZONE:
422 op = REQ_OP_ZONE_RESET;
Shin'ichiro Kawasakie5113502021-03-11 16:25:46 +0900423
424 /* Invalidate the page cache, including dirty pages. */
Shin'ichiro Kawasaki86399ea2021-11-11 17:52:38 +0900425 filemap_invalidate_lock(bdev->bd_inode->i_mapping);
Shin'ichiro Kawasakie5113502021-03-11 16:25:46 +0900426 ret = blkdev_truncate_zone_range(bdev, mode, &zrange);
427 if (ret)
Shin'ichiro Kawasaki86399ea2021-11-11 17:52:38 +0900428 goto fail;
Ajay Joshie876df12019-10-27 23:05:46 +0900429 break;
430 case BLKOPENZONE:
431 op = REQ_OP_ZONE_OPEN;
432 break;
433 case BLKCLOSEZONE:
434 op = REQ_OP_ZONE_CLOSE;
435 break;
436 case BLKFINISHZONE:
437 op = REQ_OP_ZONE_FINISH;
438 break;
439 default:
440 return -ENOTTY;
441 }
442
Shin'ichiro Kawasakie5113502021-03-11 16:25:46 +0900443 ret = blkdev_zone_mgmt(bdev, op, zrange.sector, zrange.nr_sectors,
444 GFP_KERNEL);
445
Shin'ichiro Kawasaki86399ea2021-11-11 17:52:38 +0900446fail:
447 if (cmd == BLKRESETZONE)
448 filemap_invalidate_unlock(bdev->bd_inode->i_mapping);
Shin'ichiro Kawasakie5113502021-03-11 16:25:46 +0900449
450 return ret;
Shaun Tancheff3ed05a92016-10-18 15:40:35 +0900451}
Damien Le Moalbf505452018-10-12 19:08:50 +0900452
Damien Le Moalbf505452018-10-12 19:08:50 +0900453void blk_queue_free_zone_bitmaps(struct request_queue *q)
454{
Christoph Hellwigf216fdd2019-12-03 10:39:05 +0100455 kfree(q->conv_zones_bitmap);
456 q->conv_zones_bitmap = NULL;
Damien Le Moalbf505452018-10-12 19:08:50 +0900457 kfree(q->seq_zones_wlock);
458 q->seq_zones_wlock = NULL;
459}
460
Christoph Hellwigd4100352019-11-11 11:39:30 +0900461struct blk_revalidate_zone_args {
462 struct gendisk *disk;
Christoph Hellwigf216fdd2019-12-03 10:39:05 +0100463 unsigned long *conv_zones_bitmap;
Christoph Hellwigd4100352019-11-11 11:39:30 +0900464 unsigned long *seq_zones_wlock;
Christoph Hellwige94f5812019-12-03 10:39:06 +0100465 unsigned int nr_zones;
Christoph Hellwig6c6b3542019-12-03 10:39:08 +0100466 sector_t zone_sectors;
Christoph Hellwigd4100352019-11-11 11:39:30 +0900467 sector_t sector;
468};
469
Damien Le Moald9dd7302019-11-11 11:39:22 +0900470/*
471 * Helper function to check the validity of zones of a zoned block device.
472 */
Christoph Hellwigd4100352019-11-11 11:39:30 +0900473static int blk_revalidate_zone_cb(struct blk_zone *zone, unsigned int idx,
474 void *data)
Damien Le Moald9dd7302019-11-11 11:39:22 +0900475{
Christoph Hellwigd4100352019-11-11 11:39:30 +0900476 struct blk_revalidate_zone_args *args = data;
477 struct gendisk *disk = args->disk;
Damien Le Moald9dd7302019-11-11 11:39:22 +0900478 struct request_queue *q = disk->queue;
Damien Le Moald9dd7302019-11-11 11:39:22 +0900479 sector_t capacity = get_capacity(disk);
480
481 /*
482 * All zones must have the same size, with the exception on an eventual
483 * smaller last zone.
484 */
Christoph Hellwig6c6b3542019-12-03 10:39:08 +0100485 if (zone->start == 0) {
486 if (zone->len == 0 || !is_power_of_2(zone->len)) {
487 pr_warn("%s: Invalid zoned device with non power of two zone size (%llu)\n",
488 disk->disk_name, zone->len);
489 return -ENODEV;
490 }
Damien Le Moald9dd7302019-11-11 11:39:22 +0900491
Christoph Hellwig6c6b3542019-12-03 10:39:08 +0100492 args->zone_sectors = zone->len;
493 args->nr_zones = (capacity + zone->len - 1) >> ilog2(zone->len);
494 } else if (zone->start + args->zone_sectors < capacity) {
495 if (zone->len != args->zone_sectors) {
496 pr_warn("%s: Invalid zoned device with non constant zone size\n",
497 disk->disk_name);
498 return -ENODEV;
499 }
500 } else {
501 if (zone->len > args->zone_sectors) {
502 pr_warn("%s: Invalid zoned device with larger last zone size\n",
503 disk->disk_name);
504 return -ENODEV;
505 }
Damien Le Moald9dd7302019-11-11 11:39:22 +0900506 }
507
508 /* Check for holes in the zone report */
Christoph Hellwigd4100352019-11-11 11:39:30 +0900509 if (zone->start != args->sector) {
Damien Le Moald9dd7302019-11-11 11:39:22 +0900510 pr_warn("%s: Zone gap at sectors %llu..%llu\n",
Christoph Hellwigd4100352019-11-11 11:39:30 +0900511 disk->disk_name, args->sector, zone->start);
512 return -ENODEV;
Damien Le Moald9dd7302019-11-11 11:39:22 +0900513 }
514
515 /* Check zone type */
516 switch (zone->type) {
517 case BLK_ZONE_TYPE_CONVENTIONAL:
Christoph Hellwige94f5812019-12-03 10:39:06 +0100518 if (!args->conv_zones_bitmap) {
519 args->conv_zones_bitmap =
520 blk_alloc_zone_bitmap(q->node, args->nr_zones);
521 if (!args->conv_zones_bitmap)
522 return -ENOMEM;
523 }
524 set_bit(idx, args->conv_zones_bitmap);
525 break;
Damien Le Moald9dd7302019-11-11 11:39:22 +0900526 case BLK_ZONE_TYPE_SEQWRITE_REQ:
527 case BLK_ZONE_TYPE_SEQWRITE_PREF:
Christoph Hellwige94f5812019-12-03 10:39:06 +0100528 if (!args->seq_zones_wlock) {
529 args->seq_zones_wlock =
530 blk_alloc_zone_bitmap(q->node, args->nr_zones);
531 if (!args->seq_zones_wlock)
532 return -ENOMEM;
533 }
Damien Le Moald9dd7302019-11-11 11:39:22 +0900534 break;
535 default:
536 pr_warn("%s: Invalid zone type 0x%x at sectors %llu\n",
537 disk->disk_name, (int)zone->type, zone->start);
Christoph Hellwigd4100352019-11-11 11:39:30 +0900538 return -ENODEV;
Damien Le Moald9dd7302019-11-11 11:39:22 +0900539 }
540
Christoph Hellwigd4100352019-11-11 11:39:30 +0900541 args->sector += zone->len;
542 return 0;
543}
544
Damien Le Moalbf505452018-10-12 19:08:50 +0900545/**
546 * blk_revalidate_disk_zones - (re)allocate and initialize zone bitmaps
547 * @disk: Target disk
Damien Le Moale7326712020-05-12 17:55:49 +0900548 * @update_driver_data: Callback to update driver data on the frozen disk
Damien Le Moalbf505452018-10-12 19:08:50 +0900549 *
550 * Helper function for low-level device drivers to (re) allocate and initialize
551 * a disk request queue zone bitmaps. This functions should normally be called
Christoph Hellwigae589542019-12-03 10:39:07 +0100552 * within the disk ->revalidate method for blk-mq based drivers. For BIO based
553 * drivers only q->nr_zones needs to be updated so that the sysfs exposed value
554 * is correct.
Damien Le Moale7326712020-05-12 17:55:49 +0900555 * If the @update_driver_data callback function is not NULL, the callback is
556 * executed with the device request queue frozen after all zones have been
557 * checked.
Damien Le Moalbf505452018-10-12 19:08:50 +0900558 */
Damien Le Moale7326712020-05-12 17:55:49 +0900559int blk_revalidate_disk_zones(struct gendisk *disk,
560 void (*update_driver_data)(struct gendisk *disk))
Damien Le Moalbf505452018-10-12 19:08:50 +0900561{
562 struct request_queue *q = disk->queue;
Christoph Hellwige94f5812019-12-03 10:39:06 +0100563 struct blk_revalidate_zone_args args = {
564 .disk = disk,
Christoph Hellwige94f5812019-12-03 10:39:06 +0100565 };
Christoph Hellwig6c6b3542019-12-03 10:39:08 +0100566 unsigned int noio_flag;
567 int ret;
Damien Le Moalbf505452018-10-12 19:08:50 +0900568
Christoph Hellwigc98c3d092019-11-11 11:39:23 +0900569 if (WARN_ON_ONCE(!blk_queue_is_zoned(q)))
570 return -EIO;
Christoph Hellwigae589542019-12-03 10:39:07 +0100571 if (WARN_ON_ONCE(!queue_is_mq(q)))
572 return -EIO;
Damien Le Moalbf505452018-10-12 19:08:50 +0900573
Johannes Thumshirn1a1206d2020-07-30 20:25:17 +0900574 if (!get_capacity(disk))
575 return -EIO;
576
Christoph Hellwige94f5812019-12-03 10:39:06 +0100577 /*
Christoph Hellwig6c6b3542019-12-03 10:39:08 +0100578 * Ensure that all memory allocations in this context are done as if
579 * GFP_NOIO was specified.
Christoph Hellwige94f5812019-12-03 10:39:06 +0100580 */
Christoph Hellwig6c6b3542019-12-03 10:39:08 +0100581 noio_flag = memalloc_noio_save();
582 ret = disk->fops->report_zones(disk, 0, UINT_MAX,
583 blk_revalidate_zone_cb, &args);
Damien Le Moal2afdeb22020-11-11 16:36:06 +0900584 if (!ret) {
585 pr_warn("%s: No zones reported\n", disk->disk_name);
586 ret = -ENODEV;
587 }
Christoph Hellwig6c6b3542019-12-03 10:39:08 +0100588 memalloc_noio_restore(noio_flag);
Damien Le Moalbd976e52019-07-01 14:09:16 +0900589
Damien Le Moalbf505452018-10-12 19:08:50 +0900590 /*
Damien Le Moal2afdeb22020-11-11 16:36:06 +0900591 * If zones where reported, make sure that the entire disk capacity
592 * has been checked.
593 */
594 if (ret > 0 && args.sector != get_capacity(disk)) {
595 pr_warn("%s: Missing zones from sector %llu\n",
596 disk->disk_name, args.sector);
597 ret = -ENODEV;
598 }
599
600 /*
Christoph Hellwig6c6b3542019-12-03 10:39:08 +0100601 * Install the new bitmaps and update nr_zones only once the queue is
602 * stopped and all I/Os are completed (i.e. a scheduler is not
603 * referencing the bitmaps).
Damien Le Moalbf505452018-10-12 19:08:50 +0900604 */
605 blk_mq_freeze_queue(q);
Damien Le Moal2afdeb22020-11-11 16:36:06 +0900606 if (ret > 0) {
Christoph Hellwig6c6b3542019-12-03 10:39:08 +0100607 blk_queue_chunk_sectors(q, args.zone_sectors);
Christoph Hellwige94f5812019-12-03 10:39:06 +0100608 q->nr_zones = args.nr_zones;
Christoph Hellwigd4100352019-11-11 11:39:30 +0900609 swap(q->seq_zones_wlock, args.seq_zones_wlock);
Christoph Hellwigf216fdd2019-12-03 10:39:05 +0100610 swap(q->conv_zones_bitmap, args.conv_zones_bitmap);
Damien Le Moale7326712020-05-12 17:55:49 +0900611 if (update_driver_data)
612 update_driver_data(disk);
Christoph Hellwigd4100352019-11-11 11:39:30 +0900613 ret = 0;
614 } else {
615 pr_warn("%s: failed to revalidate zones\n", disk->disk_name);
616 blk_queue_free_zone_bitmaps(q);
617 }
Damien Le Moalbf505452018-10-12 19:08:50 +0900618 blk_mq_unfreeze_queue(q);
619
Christoph Hellwigd4100352019-11-11 11:39:30 +0900620 kfree(args.seq_zones_wlock);
Christoph Hellwigf216fdd2019-12-03 10:39:05 +0100621 kfree(args.conv_zones_bitmap);
Damien Le Moalbf505452018-10-12 19:08:50 +0900622 return ret;
623}
624EXPORT_SYMBOL_GPL(blk_revalidate_disk_zones);
Damien Le Moal508aebb2021-01-28 13:47:32 +0900625
626void blk_queue_clear_zone_settings(struct request_queue *q)
627{
628 blk_mq_freeze_queue(q);
629
630 blk_queue_free_zone_bitmaps(q);
631 blk_queue_flag_clear(QUEUE_FLAG_ZONE_RESETALL, q);
632 q->required_elevator_features &= ~ELEVATOR_F_ZBD_SEQ_WRITE;
633 q->nr_zones = 0;
634 q->max_open_zones = 0;
635 q->max_active_zones = 0;
636 q->limits.chunk_sectors = 0;
637 q->limits.zone_write_granularity = 0;
638 q->limits.max_zone_append_sectors = 0;
639
640 blk_mq_unfreeze_queue(q);
641}