blob: 0f2cfc81fce393903376df3d71a551352e138c76 [file] [log] [blame]
Hannes Reinecke89d94752016-10-18 15:40:34 +09001/*
2 * SCSI Zoned Block commands
3 *
4 * Copyright (C) 2014-2015 SUSE Linux GmbH
5 * Written by: Hannes Reinecke <hare@suse.de>
6 * Modified by: Damien Le Moal <damien.lemoal@hgst.com>
7 * Modified by: Shaun Tancheff <shaun.tancheff@seagate.com>
8 *
9 * This program is free software; you can redistribute it and/or
10 * modify it under the terms of the GNU General Public License version
11 * 2 as published by the Free Software Foundation.
12 *
13 * This program is distributed in the hope that it will be useful, but
14 * WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
16 * General Public License for more details.
17 *
18 * You should have received a copy of the GNU General Public License
19 * along with this program; see the file COPYING. If not, write to
20 * the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139,
21 * USA.
22 *
23 */
24
25#include <linux/blkdev.h>
26
27#include <asm/unaligned.h>
28
29#include <scsi/scsi.h>
30#include <scsi/scsi_cmnd.h>
Hannes Reinecke89d94752016-10-18 15:40:34 +090031
32#include "sd.h"
Hannes Reinecke89d94752016-10-18 15:40:34 +090033
34/**
Damien Le Moale98f42b2017-10-11 05:54:22 +090035 * sd_zbc_parse_report - Convert a zone descriptor to a struct blk_zone,
36 * @sdkp: The disk the report originated from
37 * @buf: Address of the report zone descriptor
38 * @zone: the destination zone structure
39 *
40 * All LBA sized values are converted to 512B sectors unit.
Hannes Reinecke89d94752016-10-18 15:40:34 +090041 */
Damien Le Moale98f42b2017-10-11 05:54:22 +090042static void sd_zbc_parse_report(struct scsi_disk *sdkp, u8 *buf,
Hannes Reinecke89d94752016-10-18 15:40:34 +090043 struct blk_zone *zone)
44{
45 struct scsi_device *sdp = sdkp->device;
46
47 memset(zone, 0, sizeof(struct blk_zone));
48
49 zone->type = buf[0] & 0x0f;
50 zone->cond = (buf[1] >> 4) & 0xf;
51 if (buf[1] & 0x01)
52 zone->reset = 1;
53 if (buf[1] & 0x02)
54 zone->non_seq = 1;
55
56 zone->len = logical_to_sectors(sdp, get_unaligned_be64(&buf[8]));
57 zone->start = logical_to_sectors(sdp, get_unaligned_be64(&buf[16]));
58 zone->wp = logical_to_sectors(sdp, get_unaligned_be64(&buf[24]));
59 if (zone->type != ZBC_ZONE_TYPE_CONV &&
60 zone->cond == ZBC_ZONE_COND_FULL)
61 zone->wp = zone->start + zone->len;
62}
63
64/**
Christoph Hellwige76239a2018-10-12 19:08:49 +090065 * sd_zbc_do_report_zones - Issue a REPORT ZONES scsi command.
Damien Le Moale98f42b2017-10-11 05:54:22 +090066 * @sdkp: The target disk
67 * @buf: Buffer to use for the reply
68 * @buflen: the buffer size
69 * @lba: Start LBA of the report
Damien Le Moald2e428e2018-10-12 19:08:41 +090070 * @partial: Do partial report
Damien Le Moale98f42b2017-10-11 05:54:22 +090071 *
72 * For internal use during device validation.
Damien Le Moald2e428e2018-10-12 19:08:41 +090073 * Using partial=true can significantly speed up execution of a report zones
74 * command because the disk does not have to count all possible report matching
75 * zones and will only report the count of zones fitting in the command reply
76 * buffer.
Hannes Reinecke89d94752016-10-18 15:40:34 +090077 */
Christoph Hellwige76239a2018-10-12 19:08:49 +090078static int sd_zbc_do_report_zones(struct scsi_disk *sdkp, unsigned char *buf,
79 unsigned int buflen, sector_t lba,
80 bool partial)
Hannes Reinecke89d94752016-10-18 15:40:34 +090081{
82 struct scsi_device *sdp = sdkp->device;
83 const int timeout = sdp->request_queue->rq_timeout;
84 struct scsi_sense_hdr sshdr;
85 unsigned char cmd[16];
86 unsigned int rep_len;
87 int result;
88
89 memset(cmd, 0, 16);
90 cmd[0] = ZBC_IN;
91 cmd[1] = ZI_REPORT_ZONES;
92 put_unaligned_be64(lba, &cmd[2]);
93 put_unaligned_be32(buflen, &cmd[10]);
Damien Le Moald2e428e2018-10-12 19:08:41 +090094 if (partial)
95 cmd[14] = ZBC_REPORT_ZONE_PARTIAL;
Hannes Reinecke89d94752016-10-18 15:40:34 +090096 memset(buf, 0, buflen);
97
98 result = scsi_execute_req(sdp, cmd, DMA_FROM_DEVICE,
99 buf, buflen, &sshdr,
100 timeout, SD_MAX_RETRIES, NULL);
101 if (result) {
102 sd_printk(KERN_ERR, sdkp,
103 "REPORT ZONES lba %llu failed with %d/%d\n",
104 (unsigned long long)lba,
105 host_byte(result), driver_byte(result));
106 return -EIO;
107 }
108
109 rep_len = get_unaligned_be32(&buf[0]);
110 if (rep_len < 64) {
111 sd_printk(KERN_ERR, sdkp,
112 "REPORT ZONES report invalid length %u\n",
113 rep_len);
114 return -EIO;
115 }
116
117 return 0;
118}
119
Damien Le Moale98f42b2017-10-11 05:54:22 +0900120/**
Christoph Hellwige76239a2018-10-12 19:08:49 +0900121 * sd_zbc_report_zones - Disk report zones operation.
122 * @disk: The target disk
123 * @sector: Start 512B sector of the report
124 * @zones: Array of zone descriptors
125 * @nr_zones: Number of descriptors in the array
126 * @gfp_mask: Memory allocation mask
Damien Le Moale98f42b2017-10-11 05:54:22 +0900127 *
Christoph Hellwige76239a2018-10-12 19:08:49 +0900128 * Execute a report zones command on the target disk.
Damien Le Moale98f42b2017-10-11 05:54:22 +0900129 */
Christoph Hellwige76239a2018-10-12 19:08:49 +0900130int sd_zbc_report_zones(struct gendisk *disk, sector_t sector,
131 struct blk_zone *zones, unsigned int *nr_zones,
132 gfp_t gfp_mask)
Hannes Reinecke89d94752016-10-18 15:40:34 +0900133{
Christoph Hellwige76239a2018-10-12 19:08:49 +0900134 struct scsi_disk *sdkp = scsi_disk(disk);
135 unsigned int i, buflen, nrz = *nr_zones;
136 unsigned char *buf;
137 size_t offset = 0;
138 int ret = 0;
Hannes Reinecke89d94752016-10-18 15:40:34 +0900139
140 if (!sd_is_zoned(sdkp))
141 /* Not a zoned device */
Christoph Hellwige76239a2018-10-12 19:08:49 +0900142 return -EOPNOTSUPP;
Hannes Reinecke89d94752016-10-18 15:40:34 +0900143
Christoph Hellwige76239a2018-10-12 19:08:49 +0900144 /*
145 * Get a reply buffer for the number of requested zones plus a header.
146 * For ATA, buffers must be aligned to 512B.
147 */
148 buflen = roundup((nrz + 1) * 64, 512);
149 buf = kmalloc(buflen, gfp_mask);
150 if (!buf)
151 return -ENOMEM;
Hannes Reinecke89d94752016-10-18 15:40:34 +0900152
Christoph Hellwige76239a2018-10-12 19:08:49 +0900153 ret = sd_zbc_do_report_zones(sdkp, buf, buflen,
154 sectors_to_logical(sdkp->device, sector), true);
155 if (ret)
156 goto out_free_buf;
Hannes Reinecke89d94752016-10-18 15:40:34 +0900157
Christoph Hellwige76239a2018-10-12 19:08:49 +0900158 nrz = min(nrz, get_unaligned_be32(&buf[0]) / 64);
159 for (i = 0; i < nrz; i++) {
160 offset += 64;
161 sd_zbc_parse_report(sdkp, buf + offset, zones);
162 zones++;
Hannes Reinecke89d94752016-10-18 15:40:34 +0900163 }
Christoph Hellwige76239a2018-10-12 19:08:49 +0900164
165 *nr_zones = nrz;
166
167out_free_buf:
168 kfree(buf);
169
170 return ret;
Hannes Reinecke89d94752016-10-18 15:40:34 +0900171}
172
Damien Le Moale98f42b2017-10-11 05:54:22 +0900173/**
174 * sd_zbc_zone_sectors - Get the device zone size in number of 512B sectors.
175 * @sdkp: The target disk
176 */
Hannes Reinecke89d94752016-10-18 15:40:34 +0900177static inline sector_t sd_zbc_zone_sectors(struct scsi_disk *sdkp)
178{
179 return logical_to_sectors(sdkp->device, sdkp->zone_blocks);
180}
181
Damien Le Moale98f42b2017-10-11 05:54:22 +0900182/**
Damien Le Moale98f42b2017-10-11 05:54:22 +0900183 * sd_zbc_setup_reset_cmnd - Prepare a RESET WRITE POINTER scsi command.
184 * @cmd: the command to setup
185 *
186 * Called from sd_init_command() for a REQ_OP_ZONE_RESET request.
187 */
Hannes Reinecke89d94752016-10-18 15:40:34 +0900188int sd_zbc_setup_reset_cmnd(struct scsi_cmnd *cmd)
189{
190 struct request *rq = cmd->request;
191 struct scsi_disk *sdkp = scsi_disk(rq->rq_disk);
192 sector_t sector = blk_rq_pos(rq);
193 sector_t block = sectors_to_logical(sdkp->device, sector);
Hannes Reinecke89d94752016-10-18 15:40:34 +0900194
195 if (!sd_is_zoned(sdkp))
196 /* Not a zoned device */
197 return BLKPREP_KILL;
198
199 if (sdkp->device->changed)
200 return BLKPREP_KILL;
201
202 if (sector & (sd_zbc_zone_sectors(sdkp) - 1))
203 /* Unaligned request */
204 return BLKPREP_KILL;
205
Hannes Reinecke89d94752016-10-18 15:40:34 +0900206 cmd->cmd_len = 16;
207 memset(cmd->cmnd, 0, cmd->cmd_len);
208 cmd->cmnd[0] = ZBC_OUT;
209 cmd->cmnd[1] = ZO_RESET_WRITE_POINTER;
210 put_unaligned_be64(block, &cmd->cmnd[2]);
211
212 rq->timeout = SD_TIMEOUT;
213 cmd->sc_data_direction = DMA_NONE;
214 cmd->transfersize = 0;
215 cmd->allowed = 0;
216
217 return BLKPREP_OK;
218}
219
Damien Le Moale98f42b2017-10-11 05:54:22 +0900220/**
Damien Le Moale98f42b2017-10-11 05:54:22 +0900221 * sd_zbc_complete - ZBC command post processing.
222 * @cmd: Completed command
223 * @good_bytes: Command reply bytes
224 * @sshdr: command sense header
225 *
226 * Called from sd_done(). Process report zones reply and handle reset zone
227 * and write commands errors.
228 */
229void sd_zbc_complete(struct scsi_cmnd *cmd, unsigned int good_bytes,
Hannes Reinecke89d94752016-10-18 15:40:34 +0900230 struct scsi_sense_hdr *sshdr)
231{
232 int result = cmd->result;
233 struct request *rq = cmd->request;
234
235 switch (req_op(rq)) {
Damien Le Moal868ed5a2017-04-24 16:51:15 +0900236 case REQ_OP_ZONE_RESET:
237
238 if (result &&
239 sshdr->sense_key == ILLEGAL_REQUEST &&
240 sshdr->asc == 0x24)
241 /*
242 * INVALID FIELD IN CDB error: reset of a conventional
243 * zone was attempted. Nothing to worry about, so be
244 * quiet about the error.
245 */
246 rq->rq_flags |= RQF_QUIET;
247 break;
248
Hannes Reinecke89d94752016-10-18 15:40:34 +0900249 case REQ_OP_WRITE:
Christoph Hellwig02d26102017-04-05 19:21:02 +0200250 case REQ_OP_WRITE_ZEROES:
Hannes Reinecke89d94752016-10-18 15:40:34 +0900251 case REQ_OP_WRITE_SAME:
Hannes Reinecke89d94752016-10-18 15:40:34 +0900252 break;
Hannes Reinecke89d94752016-10-18 15:40:34 +0900253 }
254}
255
256/**
Damien Le Moal7f9d35d2018-10-12 19:08:40 +0900257 * sd_zbc_check_zoned_characteristics - Check zoned block device characteristics
Damien Le Moale98f42b2017-10-11 05:54:22 +0900258 * @sdkp: Target disk
259 * @buf: Buffer where to store the VPD page data
260 *
Damien Le Moal7f9d35d2018-10-12 19:08:40 +0900261 * Read VPD page B6, get information and check that reads are unconstrained.
Hannes Reinecke89d94752016-10-18 15:40:34 +0900262 */
Damien Le Moal7f9d35d2018-10-12 19:08:40 +0900263static int sd_zbc_check_zoned_characteristics(struct scsi_disk *sdkp,
264 unsigned char *buf)
Hannes Reinecke89d94752016-10-18 15:40:34 +0900265{
266
267 if (scsi_get_vpd_page(sdkp->device, 0xb6, buf, 64)) {
268 sd_printk(KERN_NOTICE, sdkp,
Damien Le Moal7f9d35d2018-10-12 19:08:40 +0900269 "Read zoned characteristics VPD page failed\n");
Hannes Reinecke89d94752016-10-18 15:40:34 +0900270 return -ENODEV;
271 }
272
273 if (sdkp->device->type != TYPE_ZBC) {
274 /* Host-aware */
275 sdkp->urswrz = 1;
Damien Le Moal4a109032017-10-11 05:54:25 +0900276 sdkp->zones_optimal_open = get_unaligned_be32(&buf[8]);
277 sdkp->zones_optimal_nonseq = get_unaligned_be32(&buf[12]);
Hannes Reinecke89d94752016-10-18 15:40:34 +0900278 sdkp->zones_max_open = 0;
279 } else {
280 /* Host-managed */
281 sdkp->urswrz = buf[4] & 1;
282 sdkp->zones_optimal_open = 0;
283 sdkp->zones_optimal_nonseq = 0;
Damien Le Moal4a109032017-10-11 05:54:25 +0900284 sdkp->zones_max_open = get_unaligned_be32(&buf[16]);
Hannes Reinecke89d94752016-10-18 15:40:34 +0900285 }
286
Damien Le Moal7f9d35d2018-10-12 19:08:40 +0900287 /*
288 * Check for unconstrained reads: host-managed devices with
289 * constrained reads (drives failing read after write pointer)
290 * are not supported.
291 */
292 if (!sdkp->urswrz) {
293 if (sdkp->first_scan)
294 sd_printk(KERN_NOTICE, sdkp,
295 "constrained reads devices are not supported\n");
296 return -ENODEV;
297 }
298
Hannes Reinecke89d94752016-10-18 15:40:34 +0900299 return 0;
300}
301
Damien Le Moale8c77ec2017-10-11 05:54:24 +0900302#define SD_ZBC_BUF_SIZE 131072U
Hannes Reinecke89d94752016-10-18 15:40:34 +0900303
Damien Le Moale98f42b2017-10-11 05:54:22 +0900304/**
Damien Le Moald2e428e2018-10-12 19:08:41 +0900305 * sd_zbc_check_zones - Check the device capacity and zone sizes
Damien Le Moale98f42b2017-10-11 05:54:22 +0900306 * @sdkp: Target disk
307 *
Damien Le Moald2e428e2018-10-12 19:08:41 +0900308 * Check that the device capacity as reported by READ CAPACITY matches the
309 * max_lba value (plus one)of the report zones command reply. Also check that
310 * all zones of the device have an equal size, only allowing the last zone of
311 * the disk to have a smaller size (runt zone). The zone size must also be a
312 * power of two.
Bart Van Asscheccce20f2018-04-16 18:04:41 -0700313 *
Damien Le Moalf13cff62018-07-03 15:23:58 +0900314 * Returns the zone size in number of blocks upon success or an error code
315 * upon failure.
Damien Le Moale98f42b2017-10-11 05:54:22 +0900316 */
Damien Le Moal5f832a32018-10-12 19:08:42 +0900317static int sd_zbc_check_zones(struct scsi_disk *sdkp, u32 *zblocks)
Hannes Reinecke89d94752016-10-18 15:40:34 +0900318{
Damien Le Moal4b433922018-03-02 07:19:28 +0900319 u64 zone_blocks = 0;
Damien Le Moald2e428e2018-10-12 19:08:41 +0900320 sector_t max_lba, block = 0;
Hannes Reinecke89d94752016-10-18 15:40:34 +0900321 unsigned char *buf;
322 unsigned char *rec;
323 unsigned int buf_len;
324 unsigned int list_length;
Damien Le Moal5f832a32018-10-12 19:08:42 +0900325 int ret;
Hannes Reinecke89d94752016-10-18 15:40:34 +0900326 u8 same;
327
Hannes Reinecke89d94752016-10-18 15:40:34 +0900328 /* Get a buffer */
329 buf = kmalloc(SD_ZBC_BUF_SIZE, GFP_KERNEL);
330 if (!buf)
331 return -ENOMEM;
332
Damien Le Moald2e428e2018-10-12 19:08:41 +0900333 /* Do a report zone to get max_lba and the same field */
Christoph Hellwige76239a2018-10-12 19:08:49 +0900334 ret = sd_zbc_do_report_zones(sdkp, buf, SD_ZBC_BUF_SIZE, 0, false);
Damien Le Moal4b433922018-03-02 07:19:28 +0900335 if (ret)
336 goto out_free;
Hannes Reinecke89d94752016-10-18 15:40:34 +0900337
Damien Le Moald2e428e2018-10-12 19:08:41 +0900338 if (sdkp->rc_basis == 0) {
339 /* The max_lba field is the capacity of this device */
340 max_lba = get_unaligned_be64(&buf[8]);
341 if (sdkp->capacity != max_lba + 1) {
342 if (sdkp->first_scan)
343 sd_printk(KERN_WARNING, sdkp,
344 "Changing capacity from %llu to max LBA+1 %llu\n",
345 (unsigned long long)sdkp->capacity,
346 (unsigned long long)max_lba + 1);
347 sdkp->capacity = max_lba + 1;
348 }
349 }
350
351 /*
352 * Check same field: for any value other than 0, we know that all zones
353 * have the same size.
354 */
Hannes Reinecke89d94752016-10-18 15:40:34 +0900355 same = buf[4] & 0x0f;
356 if (same > 0) {
357 rec = &buf[64];
358 zone_blocks = get_unaligned_be64(&rec[8]);
359 goto out;
360 }
361
362 /*
363 * Check the size of all zones: all zones must be of
364 * equal size, except the last zone which can be smaller
365 * than other zones.
366 */
367 do {
368
369 /* Parse REPORT ZONES header */
370 list_length = get_unaligned_be32(&buf[0]) + 64;
371 rec = buf + 64;
Damien Le Moale8c77ec2017-10-11 05:54:24 +0900372 buf_len = min(list_length, SD_ZBC_BUF_SIZE);
Hannes Reinecke89d94752016-10-18 15:40:34 +0900373
374 /* Parse zone descriptors */
375 while (rec < buf + buf_len) {
Bart Van Asscheccce20f2018-04-16 18:04:41 -0700376 u64 this_zone_blocks = get_unaligned_be64(&rec[8]);
377
378 if (zone_blocks == 0) {
379 zone_blocks = this_zone_blocks;
380 } else if (this_zone_blocks != zone_blocks &&
381 (block + this_zone_blocks < sdkp->capacity
382 || this_zone_blocks > zone_blocks)) {
Damien Le Moal3aadbe22018-05-31 17:42:40 +0900383 zone_blocks = 0;
Hannes Reinecke89d94752016-10-18 15:40:34 +0900384 goto out;
385 }
Bart Van Asscheccce20f2018-04-16 18:04:41 -0700386 block += this_zone_blocks;
Hannes Reinecke89d94752016-10-18 15:40:34 +0900387 rec += 64;
388 }
389
390 if (block < sdkp->capacity) {
Christoph Hellwige76239a2018-10-12 19:08:49 +0900391 ret = sd_zbc_do_report_zones(sdkp, buf, SD_ZBC_BUF_SIZE,
392 block, true);
Hannes Reinecke89d94752016-10-18 15:40:34 +0900393 if (ret)
Damien Le Moal4b433922018-03-02 07:19:28 +0900394 goto out_free;
Hannes Reinecke89d94752016-10-18 15:40:34 +0900395 }
396
397 } while (block < sdkp->capacity);
398
Hannes Reinecke89d94752016-10-18 15:40:34 +0900399out:
Hannes Reinecke89d94752016-10-18 15:40:34 +0900400 if (!zone_blocks) {
401 if (sdkp->first_scan)
402 sd_printk(KERN_NOTICE, sdkp,
403 "Devices with non constant zone "
404 "size are not supported\n");
Damien Le Moal4b433922018-03-02 07:19:28 +0900405 ret = -ENODEV;
406 } else if (!is_power_of_2(zone_blocks)) {
Hannes Reinecke89d94752016-10-18 15:40:34 +0900407 if (sdkp->first_scan)
408 sd_printk(KERN_NOTICE, sdkp,
409 "Devices with non power of 2 zone "
410 "size are not supported\n");
Damien Le Moal4b433922018-03-02 07:19:28 +0900411 ret = -ENODEV;
412 } else if (logical_to_sectors(sdkp->device, zone_blocks) > UINT_MAX) {
Hannes Reinecke89d94752016-10-18 15:40:34 +0900413 if (sdkp->first_scan)
414 sd_printk(KERN_NOTICE, sdkp,
415 "Zone size too large\n");
Damien Le Moal5f832a32018-10-12 19:08:42 +0900416 ret = -EFBIG;
Damien Le Moal4b433922018-03-02 07:19:28 +0900417 } else {
Damien Le Moal5f832a32018-10-12 19:08:42 +0900418 *zblocks = zone_blocks;
419 ret = 0;
Hannes Reinecke89d94752016-10-18 15:40:34 +0900420 }
421
Damien Le Moal4b433922018-03-02 07:19:28 +0900422out_free:
423 kfree(buf);
Hannes Reinecke89d94752016-10-18 15:40:34 +0900424
Damien Le Moal4b433922018-03-02 07:19:28 +0900425 return ret;
Hannes Reinecke89d94752016-10-18 15:40:34 +0900426}
427
Damien Le Moal23349ca2017-12-21 15:43:43 +0900428/**
429 * sd_zbc_alloc_zone_bitmap - Allocate a zone bitmap (one bit per zone).
Bart Van Asscheccce20f2018-04-16 18:04:41 -0700430 * @nr_zones: Number of zones to allocate space for.
431 * @numa_node: NUMA node to allocate the memory from.
Damien Le Moal23349ca2017-12-21 15:43:43 +0900432 */
Bart Van Asscheccce20f2018-04-16 18:04:41 -0700433static inline unsigned long *
434sd_zbc_alloc_zone_bitmap(u32 nr_zones, int numa_node)
Damien Le Moal23349ca2017-12-21 15:43:43 +0900435{
Kees Cook590b5b72018-06-12 14:04:20 -0700436 return kcalloc_node(BITS_TO_LONGS(nr_zones), sizeof(unsigned long),
Bart Van Asscheccce20f2018-04-16 18:04:41 -0700437 GFP_KERNEL, numa_node);
Damien Le Moal23349ca2017-12-21 15:43:43 +0900438}
439
440/**
441 * sd_zbc_get_seq_zones - Parse report zones reply to identify sequential zones
442 * @sdkp: disk used
443 * @buf: report reply buffer
Bart Van Asschee0b14a42018-03-01 15:07:19 -0800444 * @buflen: length of @buf
Bart Van Asscheccce20f2018-04-16 18:04:41 -0700445 * @zone_shift: logarithm base 2 of the number of blocks in a zone
Bart Van Asschee0b14a42018-03-01 15:07:19 -0800446 * @seq_zones_bitmap: bitmap of sequential zones to set
Damien Le Moal23349ca2017-12-21 15:43:43 +0900447 *
448 * Parse reported zone descriptors in @buf to identify sequential zones and
449 * set the reported zone bit in @seq_zones_bitmap accordingly.
450 * Since read-only and offline zones cannot be written, do not
451 * mark them as sequential in the bitmap.
452 * Return the LBA after the last zone reported.
453 */
454static sector_t sd_zbc_get_seq_zones(struct scsi_disk *sdkp, unsigned char *buf,
Bart Van Asscheccce20f2018-04-16 18:04:41 -0700455 unsigned int buflen, u32 zone_shift,
Damien Le Moal23349ca2017-12-21 15:43:43 +0900456 unsigned long *seq_zones_bitmap)
457{
458 sector_t lba, next_lba = sdkp->capacity;
459 unsigned int buf_len, list_length;
460 unsigned char *rec;
461 u8 type, cond;
462
463 list_length = get_unaligned_be32(&buf[0]) + 64;
464 buf_len = min(list_length, buflen);
465 rec = buf + 64;
466
467 while (rec < buf + buf_len) {
468 type = rec[0] & 0x0f;
469 cond = (rec[1] >> 4) & 0xf;
470 lba = get_unaligned_be64(&rec[16]);
471 if (type != ZBC_ZONE_TYPE_CONV &&
472 cond != ZBC_ZONE_COND_READONLY &&
473 cond != ZBC_ZONE_COND_OFFLINE)
Bart Van Asscheccce20f2018-04-16 18:04:41 -0700474 set_bit(lba >> zone_shift, seq_zones_bitmap);
Damien Le Moal23349ca2017-12-21 15:43:43 +0900475 next_lba = lba + get_unaligned_be64(&rec[8]);
476 rec += 64;
477 }
478
479 return next_lba;
480}
481
482/**
Bart Van Asscheccce20f2018-04-16 18:04:41 -0700483 * sd_zbc_setup_seq_zones_bitmap - Initialize a seq zone bitmap.
Damien Le Moal23349ca2017-12-21 15:43:43 +0900484 * @sdkp: target disk
Bart Van Asscheccce20f2018-04-16 18:04:41 -0700485 * @zone_shift: logarithm base 2 of the number of blocks in a zone
486 * @nr_zones: number of zones to set up a seq zone bitmap for
Damien Le Moal23349ca2017-12-21 15:43:43 +0900487 *
488 * Allocate a zone bitmap and initialize it by identifying sequential zones.
489 */
Bart Van Asscheccce20f2018-04-16 18:04:41 -0700490static unsigned long *
491sd_zbc_setup_seq_zones_bitmap(struct scsi_disk *sdkp, u32 zone_shift,
492 u32 nr_zones)
Damien Le Moal23349ca2017-12-21 15:43:43 +0900493{
494 struct request_queue *q = sdkp->disk->queue;
495 unsigned long *seq_zones_bitmap;
496 sector_t lba = 0;
497 unsigned char *buf;
498 int ret = -ENOMEM;
499
Bart Van Asscheccce20f2018-04-16 18:04:41 -0700500 seq_zones_bitmap = sd_zbc_alloc_zone_bitmap(nr_zones, q->node);
Damien Le Moal23349ca2017-12-21 15:43:43 +0900501 if (!seq_zones_bitmap)
Bart Van Asscheccce20f2018-04-16 18:04:41 -0700502 return ERR_PTR(-ENOMEM);
Damien Le Moal23349ca2017-12-21 15:43:43 +0900503
504 buf = kmalloc(SD_ZBC_BUF_SIZE, GFP_KERNEL);
505 if (!buf)
506 goto out;
507
508 while (lba < sdkp->capacity) {
Christoph Hellwige76239a2018-10-12 19:08:49 +0900509 ret = sd_zbc_do_report_zones(sdkp, buf, SD_ZBC_BUF_SIZE, lba,
510 true);
Damien Le Moal23349ca2017-12-21 15:43:43 +0900511 if (ret)
512 goto out;
513 lba = sd_zbc_get_seq_zones(sdkp, buf, SD_ZBC_BUF_SIZE,
Bart Van Asscheccce20f2018-04-16 18:04:41 -0700514 zone_shift, seq_zones_bitmap);
Damien Le Moal23349ca2017-12-21 15:43:43 +0900515 }
516
517 if (lba != sdkp->capacity) {
518 /* Something went wrong */
519 ret = -EIO;
520 }
521
522out:
523 kfree(buf);
524 if (ret) {
525 kfree(seq_zones_bitmap);
Bart Van Asscheccce20f2018-04-16 18:04:41 -0700526 return ERR_PTR(ret);
Damien Le Moal23349ca2017-12-21 15:43:43 +0900527 }
Bart Van Asscheccce20f2018-04-16 18:04:41 -0700528 return seq_zones_bitmap;
Damien Le Moal23349ca2017-12-21 15:43:43 +0900529}
530
531static void sd_zbc_cleanup(struct scsi_disk *sdkp)
532{
533 struct request_queue *q = sdkp->disk->queue;
534
535 kfree(q->seq_zones_bitmap);
536 q->seq_zones_bitmap = NULL;
537
538 kfree(q->seq_zones_wlock);
539 q->seq_zones_wlock = NULL;
540
541 q->nr_zones = 0;
542}
543
Bart Van Asscheccce20f2018-04-16 18:04:41 -0700544static int sd_zbc_setup(struct scsi_disk *sdkp, u32 zone_blocks)
Hannes Reinecke89d94752016-10-18 15:40:34 +0900545{
Damien Le Moal23349ca2017-12-21 15:43:43 +0900546 struct request_queue *q = sdkp->disk->queue;
Bart Van Asscheccce20f2018-04-16 18:04:41 -0700547 u32 zone_shift = ilog2(zone_blocks);
548 u32 nr_zones;
Damien Le Moal23349ca2017-12-21 15:43:43 +0900549 int ret;
Hannes Reinecke89d94752016-10-18 15:40:34 +0900550
551 /* chunk_sectors indicates the zone size */
Bart Van Asscheccce20f2018-04-16 18:04:41 -0700552 blk_queue_chunk_sectors(q,
553 logical_to_sectors(sdkp->device, zone_blocks));
554 nr_zones = round_up(sdkp->capacity, zone_blocks) >> zone_shift;
Hannes Reinecke89d94752016-10-18 15:40:34 +0900555
Damien Le Moal23349ca2017-12-21 15:43:43 +0900556 /*
557 * Initialize the device request queue information if the number
558 * of zones changed.
559 */
Bart Van Asscheccce20f2018-04-16 18:04:41 -0700560 if (nr_zones != sdkp->nr_zones || nr_zones != q->nr_zones) {
561 unsigned long *seq_zones_wlock = NULL, *seq_zones_bitmap = NULL;
562 size_t zone_bitmap_size;
Damien Le Moal23349ca2017-12-21 15:43:43 +0900563
Bart Van Asscheccce20f2018-04-16 18:04:41 -0700564 if (nr_zones) {
565 seq_zones_wlock = sd_zbc_alloc_zone_bitmap(nr_zones,
566 q->node);
567 if (!seq_zones_wlock) {
Damien Le Moal23349ca2017-12-21 15:43:43 +0900568 ret = -ENOMEM;
569 goto err;
570 }
571
Bart Van Asscheccce20f2018-04-16 18:04:41 -0700572 seq_zones_bitmap = sd_zbc_setup_seq_zones_bitmap(sdkp,
573 zone_shift, nr_zones);
574 if (IS_ERR(seq_zones_bitmap)) {
575 ret = PTR_ERR(seq_zones_bitmap);
576 kfree(seq_zones_wlock);
Damien Le Moal23349ca2017-12-21 15:43:43 +0900577 goto err;
578 }
579 }
Bart Van Asscheccce20f2018-04-16 18:04:41 -0700580 zone_bitmap_size = BITS_TO_LONGS(nr_zones) *
581 sizeof(unsigned long);
582 blk_mq_freeze_queue(q);
583 if (q->nr_zones != nr_zones) {
584 /* READ16/WRITE16 is mandatory for ZBC disks */
585 sdkp->device->use_16_for_rw = 1;
586 sdkp->device->use_10_for_rw = 0;
Damien Le Moal23349ca2017-12-21 15:43:43 +0900587
Bart Van Asscheccce20f2018-04-16 18:04:41 -0700588 sdkp->zone_blocks = zone_blocks;
589 sdkp->zone_shift = zone_shift;
590 sdkp->nr_zones = nr_zones;
591 q->nr_zones = nr_zones;
592 swap(q->seq_zones_wlock, seq_zones_wlock);
593 swap(q->seq_zones_bitmap, seq_zones_bitmap);
594 } else if (memcmp(q->seq_zones_bitmap, seq_zones_bitmap,
595 zone_bitmap_size) != 0) {
596 memcpy(q->seq_zones_bitmap, seq_zones_bitmap,
597 zone_bitmap_size);
598 }
599 blk_mq_unfreeze_queue(q);
600 kfree(seq_zones_wlock);
601 kfree(seq_zones_bitmap);
Hannes Reinecke89d94752016-10-18 15:40:34 +0900602 }
603
604 return 0;
Damien Le Moal23349ca2017-12-21 15:43:43 +0900605
606err:
607 sd_zbc_cleanup(sdkp);
608 return ret;
Hannes Reinecke89d94752016-10-18 15:40:34 +0900609}
610
Damien Le Moale98f42b2017-10-11 05:54:22 +0900611int sd_zbc_read_zones(struct scsi_disk *sdkp, unsigned char *buf)
Hannes Reinecke89d94752016-10-18 15:40:34 +0900612{
Damien Le Moal5f832a32018-10-12 19:08:42 +0900613 u32 zone_blocks;
Bart Van Asschef7053242017-04-24 16:51:14 +0900614 int ret;
Hannes Reinecke89d94752016-10-18 15:40:34 +0900615
616 if (!sd_is_zoned(sdkp))
617 /*
618 * Device managed or normal SCSI disk,
619 * no special handling required
620 */
621 return 0;
622
Damien Le Moal7f9d35d2018-10-12 19:08:40 +0900623 /* Check zoned block device characteristics (unconstrained reads) */
624 ret = sd_zbc_check_zoned_characteristics(sdkp, buf);
Hannes Reinecke89d94752016-10-18 15:40:34 +0900625 if (ret)
626 goto err;
627
Hannes Reinecke89d94752016-10-18 15:40:34 +0900628 /*
629 * Check zone size: only devices with a constant zone size (except
630 * an eventual last runt zone) that is a power of 2 are supported.
631 */
Damien Le Moal5f832a32018-10-12 19:08:42 +0900632 ret = sd_zbc_check_zones(sdkp, &zone_blocks);
633 if (ret != 0)
Hannes Reinecke89d94752016-10-18 15:40:34 +0900634 goto err;
635
636 /* The drive satisfies the kernel restrictions: set it up */
Bart Van Asscheccce20f2018-04-16 18:04:41 -0700637 ret = sd_zbc_setup(sdkp, zone_blocks);
Hannes Reinecke89d94752016-10-18 15:40:34 +0900638 if (ret)
639 goto err;
640
Hannes Reinecke89d94752016-10-18 15:40:34 +0900641 return 0;
642
643err:
644 sdkp->capacity = 0;
Damien Le Moal23349ca2017-12-21 15:43:43 +0900645 sd_zbc_cleanup(sdkp);
Hannes Reinecke89d94752016-10-18 15:40:34 +0900646
647 return ret;
648}
649
650void sd_zbc_remove(struct scsi_disk *sdkp)
651{
Damien Le Moal23349ca2017-12-21 15:43:43 +0900652 sd_zbc_cleanup(sdkp);
Hannes Reinecke89d94752016-10-18 15:40:34 +0900653}
654
655void sd_zbc_print_zones(struct scsi_disk *sdkp)
656{
657 if (!sd_is_zoned(sdkp) || !sdkp->capacity)
658 return;
659
660 if (sdkp->capacity & (sdkp->zone_blocks - 1))
661 sd_printk(KERN_NOTICE, sdkp,
662 "%u zones of %u logical blocks + 1 runt zone\n",
663 sdkp->nr_zones - 1,
664 sdkp->zone_blocks);
665 else
666 sd_printk(KERN_NOTICE, sdkp,
667 "%u zones of %u logical blocks\n",
668 sdkp->nr_zones,
669 sdkp->zone_blocks);
670}