HOWTO: Add missing documentation for job_max_open_zones
[fio.git] / zbd.c
CommitLineData
bfbdd35b
BVA
1/*
2 * Copyright (C) 2018 Western Digital Corporation or its affiliates.
3 *
4 * This file is released under the GPL.
5 */
6
7#include <errno.h>
8#include <string.h>
9#include <stdlib.h>
bfbdd35b 10#include <fcntl.h>
bfbdd35b
BVA
11#include <sys/stat.h>
12#include <unistd.h>
f5bff36e 13
cf42d79e 14#include "os/os.h"
bfbdd35b
BVA
15#include "file.h"
16#include "fio.h"
17#include "lib/pow2.h"
18#include "log.h"
f5bff36e 19#include "oslib/asprintf.h"
bfbdd35b
BVA
20#include "smalloc.h"
21#include "verify.h"
44ec32cb 22#include "pshared.h"
bfbdd35b
BVA
23#include "zbd.h"
24
b7694961
DLM
25/**
26 * zbd_get_zoned_model - Get a device zoned model
27 * @td: FIO thread data
28 * @f: FIO file for which to get model information
29 */
30int zbd_get_zoned_model(struct thread_data *td, struct fio_file *f,
31 enum zbd_zoned_model *model)
32{
33 int ret;
34
50cc48d5
NC
35 if (f->filetype == FIO_TYPE_PIPE) {
36 log_err("zonemode=zbd does not support pipes\n");
37 return -EINVAL;
38 }
39
9db0cde8
NC
40 /* If regular file, always emulate zones inside the file. */
41 if (f->filetype == FIO_TYPE_FILE) {
42 *model = ZBD_NONE;
43 return 0;
44 }
45
6c5b11d3
DLM
46 if (td->io_ops && td->io_ops->get_zoned_model)
47 ret = td->io_ops->get_zoned_model(td, f, model);
48 else
49 ret = blkzoned_get_zoned_model(td, f, model);
b7694961
DLM
50 if (ret < 0) {
51 td_verror(td, errno, "get zoned model failed");
52 log_err("%s: get zoned model failed (%d).\n",
53 f->file_name, errno);
54 }
55
56 return ret;
57}
58
59/**
60 * zbd_report_zones - Get zone information
61 * @td: FIO thread data.
62 * @f: FIO file for which to get zone information
63 * @offset: offset from which to report zones
64 * @zones: Array of struct zbd_zone
65 * @nr_zones: Size of @zones array
66 *
67 * Get zone information into @zones starting from the zone at offset @offset
68 * for the device specified by @f.
69 *
70 * Returns the number of zones reported upon success and a negative error code
71 * upon failure. If the zone report is empty, always assume an error (device
72 * problem) and return -EIO.
73 */
74int zbd_report_zones(struct thread_data *td, struct fio_file *f,
75 uint64_t offset, struct zbd_zone *zones,
76 unsigned int nr_zones)
77{
78 int ret;
79
6c5b11d3
DLM
80 if (td->io_ops && td->io_ops->report_zones)
81 ret = td->io_ops->report_zones(td, f, offset, zones, nr_zones);
82 else
83 ret = blkzoned_report_zones(td, f, offset, zones, nr_zones);
b7694961
DLM
84 if (ret < 0) {
85 td_verror(td, errno, "report zones failed");
86 log_err("%s: report zones from sector %llu failed (%d).\n",
87 f->file_name, (unsigned long long)offset >> 9, errno);
88 } else if (ret == 0) {
89 td_verror(td, errno, "Empty zone report");
90 log_err("%s: report zones from sector %llu is empty.\n",
91 f->file_name, (unsigned long long)offset >> 9);
92 ret = -EIO;
93 }
94
95 return ret;
96}
97
98/**
99 * zbd_reset_wp - reset the write pointer of a range of zones
100 * @td: FIO thread data.
101 * @f: FIO file for which to reset zones
102 * @offset: Starting offset of the first zone to reset
103 * @length: Length of the range of zones to reset
104 *
105 * Reset the write pointer of all zones in the range @offset...@offset+@length.
106 * Returns 0 upon success and a negative error code upon failure.
107 */
108int zbd_reset_wp(struct thread_data *td, struct fio_file *f,
109 uint64_t offset, uint64_t length)
110{
111 int ret;
112
6c5b11d3
DLM
113 if (td->io_ops && td->io_ops->reset_wp)
114 ret = td->io_ops->reset_wp(td, f, offset, length);
115 else
116 ret = blkzoned_reset_wp(td, f, offset, length);
b7694961
DLM
117 if (ret < 0) {
118 td_verror(td, errno, "resetting wp failed");
119 log_err("%s: resetting wp for %llu sectors at sector %llu failed (%d).\n",
120 f->file_name, (unsigned long long)length >> 9,
121 (unsigned long long)offset >> 9, errno);
122 }
123
124 return ret;
125}
126
d2f442bc
NC
127/**
128 * zbd_get_max_open_zones - Get the maximum number of open zones
129 * @td: FIO thread data
130 * @f: FIO file for which to get max open zones
131 * @max_open_zones: Upon success, result will be stored here.
132 *
133 * A @max_open_zones value set to zero means no limit.
134 *
135 * Returns 0 upon success and a negative error code upon failure.
136 */
137int zbd_get_max_open_zones(struct thread_data *td, struct fio_file *f,
138 unsigned int *max_open_zones)
139{
140 int ret;
141
142 if (td->io_ops && td->io_ops->get_max_open_zones)
143 ret = td->io_ops->get_max_open_zones(td, f, max_open_zones);
144 else
145 ret = blkzoned_get_max_open_zones(td, f, max_open_zones);
146 if (ret < 0) {
147 td_verror(td, errno, "get max open zones failed");
148 log_err("%s: get max open zones failed (%d).\n",
149 f->file_name, errno);
150 }
151
152 return ret;
153}
154
bfbdd35b
BVA
155/**
156 * zbd_zone_idx - convert an offset into a zone number
157 * @f: file pointer.
158 * @offset: offset in bytes. If this offset is in the first zone_size bytes
159 * past the disk size then the index of the sentinel is returned.
160 */
161static uint32_t zbd_zone_idx(const struct fio_file *f, uint64_t offset)
162{
163 uint32_t zone_idx;
164
cd775e06 165 if (f->zbd_info->zone_size_log2 > 0)
bfbdd35b
BVA
166 zone_idx = offset >> f->zbd_info->zone_size_log2;
167 else
ee3696bd 168 zone_idx = offset / f->zbd_info->zone_size;
bfbdd35b
BVA
169
170 return min(zone_idx, f->zbd_info->nr_zones);
171}
172
236d23a8
SK
173/**
174 * zbd_zone_end - Return zone end location
175 * @z: zone info pointer.
176 */
177static inline uint64_t zbd_zone_end(const struct fio_zone_info *z)
178{
179 return (z+1)->start;
180}
181
182/**
183 * zbd_zone_capacity_end - Return zone capacity limit end location
184 * @z: zone info pointer.
185 */
186static inline uint64_t zbd_zone_capacity_end(const struct fio_zone_info *z)
187{
188 return z->start + z->capacity;
189}
190
bfbdd35b
BVA
191/**
192 * zbd_zone_full - verify whether a minimum number of bytes remain in a zone
193 * @f: file pointer.
194 * @z: zone info pointer.
195 * @required: minimum number of bytes that must remain in a zone.
196 *
197 * The caller must hold z->mutex.
198 */
199static bool zbd_zone_full(const struct fio_file *f, struct fio_zone_info *z,
200 uint64_t required)
201{
202 assert((required & 511) == 0);
203
be7a6bae 204 return z->has_wp &&
236d23a8 205 z->wp + required > zbd_zone_capacity_end(z);
bfbdd35b
BVA
206}
207
11afb212
DF
208static void zone_lock(struct thread_data *td, const struct fio_file *f,
209 struct fio_zone_info *z)
1f57803b 210{
fae3b9a0
AD
211 struct zoned_block_device_info *zbd = f->zbd_info;
212 uint32_t nz = z - zbd->zone_info;
213
214 /* A thread should never lock zones outside its working area. */
215 assert(f->min_zone <= nz && nz < f->max_zone);
216
43bcbd5b
SK
217 assert(z->has_wp);
218
1f57803b
DLM
219 /*
220 * Lock the io_u target zone. The zone will be unlocked if io_u offset
221 * is changed or when io_u completes and zbd_put_io() executed.
222 * To avoid multiple jobs doing asynchronous I/Os from deadlocking each
223 * other waiting for zone locks when building an io_u batch, first
224 * only trylock the zone. If the zone is already locked by another job,
225 * process the currently queued I/Os so that I/O progress is made and
226 * zones unlocked.
227 */
228 if (pthread_mutex_trylock(&z->mutex) != 0) {
229 if (!td_ioengine_flagged(td, FIO_SYNCIO))
230 io_u_quiesce(td);
231 pthread_mutex_lock(&z->mutex);
232 }
233}
234
4d4c71e6
DF
235static inline void zone_unlock(struct fio_zone_info *z)
236{
237 int ret;
238
43bcbd5b 239 assert(z->has_wp);
4d4c71e6
DF
240 ret = pthread_mutex_unlock(&z->mutex);
241 assert(!ret);
242}
243
bfbdd35b
BVA
244static bool is_valid_offset(const struct fio_file *f, uint64_t offset)
245{
246 return (uint64_t)(offset - f->file_offset) < f->io_size;
247}
248
923f7c1e
DF
249static inline struct fio_zone_info *get_zone(const struct fio_file *f,
250 unsigned int zone_nr)
251{
252 return &f->zbd_info->zone_info[zone_nr];
253}
254
bfbdd35b
BVA
255/* Verify whether direct I/O is used for all host-managed zoned drives. */
256static bool zbd_using_direct_io(void)
257{
258 struct thread_data *td;
259 struct fio_file *f;
260 int i, j;
261
262 for_each_td(td, i) {
263 if (td->o.odirect || !(td->o.td_ddir & TD_DDIR_WRITE))
264 continue;
265 for_each_file(td, f, j) {
266 if (f->zbd_info &&
b7694961 267 f->zbd_info->model == ZBD_HOST_MANAGED)
bfbdd35b
BVA
268 return false;
269 }
270 }
271
272 return true;
273}
274
275/* Whether or not the I/O range for f includes one or more sequential zones */
276static bool zbd_is_seq_job(struct fio_file *f)
277{
278 uint32_t zone_idx, zone_idx_b, zone_idx_e;
279
280 assert(f->zbd_info);
281 if (f->io_size == 0)
282 return false;
283 zone_idx_b = zbd_zone_idx(f, f->file_offset);
284 zone_idx_e = zbd_zone_idx(f, f->file_offset + f->io_size - 1);
285 for (zone_idx = zone_idx_b; zone_idx <= zone_idx_e; zone_idx++)
be7a6bae 286 if (get_zone(f, zone_idx)->has_wp)
bfbdd35b
BVA
287 return true;
288
289 return false;
290}
291
292/*
293 * Verify whether offset and size parameters are aligned with zone boundaries.
294 */
295static bool zbd_verify_sizes(void)
296{
297 const struct fio_zone_info *z;
298 struct thread_data *td;
299 struct fio_file *f;
300 uint64_t new_offset, new_end;
301 uint32_t zone_idx;
302 int i, j;
303
304 for_each_td(td, i) {
305 for_each_file(td, f, j) {
306 if (!f->zbd_info)
307 continue;
308 if (f->file_offset >= f->real_file_size)
309 continue;
310 if (!zbd_is_seq_job(f))
311 continue;
4d37720a 312
fc52e449
DLM
313 if (!td->o.zone_size) {
314 td->o.zone_size = f->zbd_info->zone_size;
315 if (!td->o.zone_size) {
316 log_err("%s: invalid 0 zone size\n",
317 f->file_name);
318 return false;
319 }
971d6a22
DLM
320 } else if (td->o.zone_size != f->zbd_info->zone_size) {
321 log_err("%s: job parameter zonesize %llu does not match disk zone size %llu.\n",
322 f->file_name, (unsigned long long) td->o.zone_size,
323 (unsigned long long) f->zbd_info->zone_size);
324 return false;
fc52e449
DLM
325 }
326
4316f640 327 if (td->o.zone_skip % td->o.zone_size) {
4d37720a
DLM
328 log_err("%s: zoneskip %llu is not a multiple of the device zone size %llu.\n",
329 f->file_name, (unsigned long long) td->o.zone_skip,
330 (unsigned long long) td->o.zone_size);
331 return false;
332 }
333
bfbdd35b 334 zone_idx = zbd_zone_idx(f, f->file_offset);
923f7c1e 335 z = get_zone(f, zone_idx);
f09a7773
PL
336 if ((f->file_offset != z->start) &&
337 (td->o.td_ddir != TD_DDIR_READ)) {
236d23a8 338 new_offset = zbd_zone_end(z);
bfbdd35b
BVA
339 if (new_offset >= f->file_offset + f->io_size) {
340 log_info("%s: io_size must be at least one zone\n",
341 f->file_name);
342 return false;
343 }
a0c84dd4
JA
344 log_info("%s: rounded up offset from %llu to %llu\n",
345 f->file_name, (unsigned long long) f->file_offset,
346 (unsigned long long) new_offset);
bfbdd35b
BVA
347 f->io_size -= (new_offset - f->file_offset);
348 f->file_offset = new_offset;
349 }
350 zone_idx = zbd_zone_idx(f, f->file_offset + f->io_size);
923f7c1e 351 z = get_zone(f, zone_idx);
ee3696bd 352 new_end = z->start;
f09a7773
PL
353 if ((td->o.td_ddir != TD_DDIR_READ) &&
354 (f->file_offset + f->io_size != new_end)) {
bfbdd35b
BVA
355 if (new_end <= f->file_offset) {
356 log_info("%s: io_size must be at least one zone\n",
357 f->file_name);
358 return false;
359 }
a0c84dd4
JA
360 log_info("%s: rounded down io_size from %llu to %llu\n",
361 f->file_name, (unsigned long long) f->io_size,
362 (unsigned long long) new_end - f->file_offset);
bfbdd35b
BVA
363 f->io_size = new_end - f->file_offset;
364 }
365 }
366 }
367
368 return true;
369}
370
371static bool zbd_verify_bs(void)
372{
373 struct thread_data *td;
374 struct fio_file *f;
bfbdd35b
BVA
375 int i, j, k;
376
377 for_each_td(td, i) {
378 for_each_file(td, f, j) {
1ddd225e
AD
379 uint64_t zone_size;
380
bfbdd35b
BVA
381 if (!f->zbd_info)
382 continue;
383 zone_size = f->zbd_info->zone_size;
59f94d26 384 for (k = 0; k < FIO_ARRAY_SIZE(td->o.bs); k++) {
bfbdd35b 385 if (td->o.verify != VERIFY_NONE &&
ee3696bd 386 zone_size % td->o.bs[k] != 0) {
1ddd225e 387 log_info("%s: block size %llu is not a divisor of the zone size %llu\n",
bfbdd35b 388 f->file_name, td->o.bs[k],
1ddd225e 389 (unsigned long long)zone_size);
bfbdd35b
BVA
390 return false;
391 }
392 }
393 }
394 }
395 return true;
396}
397
bfbdd35b
BVA
398static int ilog2(uint64_t i)
399{
400 int log = -1;
401
402 while (i) {
403 i >>= 1;
404 log++;
405 }
406 return log;
407}
408
409/*
410 * Initialize f->zbd_info for devices that are not zoned block devices. This
411 * allows to execute a ZBD workload against a non-ZBD device.
412 */
413static int init_zone_info(struct thread_data *td, struct fio_file *f)
414{
415 uint32_t nr_zones;
416 struct fio_zone_info *p;
a4b7f12b 417 uint64_t zone_size = td->o.zone_size;
b8dd9750 418 uint64_t zone_capacity = td->o.zone_capacity;
bfbdd35b 419 struct zoned_block_device_info *zbd_info = NULL;
bfbdd35b
BVA
420 int i;
421
a4b7f12b 422 if (zone_size == 0) {
9db0cde8 423 log_err("%s: Specifying the zone size is mandatory for regular file/block device with --zonemode=zbd\n\n",
a4b7f12b
DLM
424 f->file_name);
425 return 1;
426 }
427
428 if (zone_size < 512) {
429 log_err("%s: zone size must be at least 512 bytes for --zonemode=zbd\n\n",
430 f->file_name);
431 return 1;
432 }
433
b8dd9750
HH
434 if (zone_capacity == 0)
435 zone_capacity = zone_size;
436
437 if (zone_capacity > zone_size) {
438 log_err("%s: job parameter zonecapacity %llu is larger than zone size %llu\n",
439 f->file_name, (unsigned long long) td->o.zone_capacity,
440 (unsigned long long) td->o.zone_size);
441 return 1;
442 }
443
9db0cde8
NC
444 if (f->real_file_size < zone_size) {
445 log_err("%s: file/device size %"PRIu64" is smaller than zone size %"PRIu64"\n",
446 f->file_name, f->real_file_size, zone_size);
447 return -EINVAL;
448 }
449
ee3696bd 450 nr_zones = (f->real_file_size + zone_size - 1) / zone_size;
bfbdd35b
BVA
451 zbd_info = scalloc(1, sizeof(*zbd_info) +
452 (nr_zones + 1) * sizeof(zbd_info->zone_info[0]));
453 if (!zbd_info)
454 return -ENOMEM;
455
44ec32cb 456 mutex_init_pshared(&zbd_info->mutex);
bfbdd35b
BVA
457 zbd_info->refcount = 1;
458 p = &zbd_info->zone_info[0];
459 for (i = 0; i < nr_zones; i++, p++) {
44ec32cb
SK
460 mutex_init_pshared_with_type(&p->mutex,
461 PTHREAD_MUTEX_RECURSIVE);
bfbdd35b 462 p->start = i * zone_size;
b14651a2 463 p->wp = p->start;
b7694961
DLM
464 p->type = ZBD_ZONE_TYPE_SWR;
465 p->cond = ZBD_ZONE_COND_EMPTY;
b8dd9750 466 p->capacity = zone_capacity;
be7a6bae 467 p->has_wp = 1;
bfbdd35b
BVA
468 }
469 /* a sentinel */
470 p->start = nr_zones * zone_size;
471
472 f->zbd_info = zbd_info;
473 f->zbd_info->zone_size = zone_size;
474 f->zbd_info->zone_size_log2 = is_power_of_2(zone_size) ?
ebc403fe 475 ilog2(zone_size) : 0;
bfbdd35b 476 f->zbd_info->nr_zones = nr_zones;
bfbdd35b
BVA
477 return 0;
478}
479
480/*
b7694961
DLM
481 * Maximum number of zones to report in one operation.
482 */
483#define ZBD_REPORT_MAX_ZONES 8192U
484
485/*
486 * Parse the device zone report and store it in f->zbd_info. Must be called
487 * only for devices that are zoned, namely those with a model != ZBD_NONE.
bfbdd35b
BVA
488 */
489static int parse_zone_info(struct thread_data *td, struct fio_file *f)
490{
b7694961
DLM
491 int nr_zones, nrz;
492 struct zbd_zone *zones, *z;
bfbdd35b 493 struct fio_zone_info *p;
b7694961 494 uint64_t zone_size, offset;
bfbdd35b 495 struct zoned_block_device_info *zbd_info = NULL;
d060babc 496 int i, j, ret = -ENOMEM;
bfbdd35b 497
b7694961
DLM
498 zones = calloc(ZBD_REPORT_MAX_ZONES, sizeof(struct zbd_zone));
499 if (!zones)
bfbdd35b
BVA
500 goto out;
501
b7694961
DLM
502 nrz = zbd_report_zones(td, f, 0, zones, ZBD_REPORT_MAX_ZONES);
503 if (nrz < 0) {
504 ret = nrz;
505 log_info("fio: report zones (offset 0) failed for %s (%d).\n",
506 f->file_name, -ret);
507 goto out;
bfbdd35b
BVA
508 }
509
b7694961 510 zone_size = zones[0].len;
ee3696bd 511 nr_zones = (f->real_file_size + zone_size - 1) / zone_size;
bfbdd35b
BVA
512
513 if (td->o.zone_size == 0) {
ee3696bd
DLM
514 td->o.zone_size = zone_size;
515 } else if (td->o.zone_size != zone_size) {
4580ff92
DLM
516 log_err("fio: %s job parameter zonesize %llu does not match disk zone size %llu.\n",
517 f->file_name, (unsigned long long) td->o.zone_size,
a0c84dd4 518 (unsigned long long) zone_size);
bfbdd35b 519 ret = -EINVAL;
b7694961 520 goto out;
bfbdd35b
BVA
521 }
522
a0c84dd4
JA
523 dprint(FD_ZBD, "Device %s has %d zones of size %llu KB\n", f->file_name,
524 nr_zones, (unsigned long long) zone_size / 1024);
bfbdd35b
BVA
525
526 zbd_info = scalloc(1, sizeof(*zbd_info) +
527 (nr_zones + 1) * sizeof(zbd_info->zone_info[0]));
bfbdd35b 528 if (!zbd_info)
b7694961 529 goto out;
44ec32cb 530 mutex_init_pshared(&zbd_info->mutex);
bfbdd35b
BVA
531 zbd_info->refcount = 1;
532 p = &zbd_info->zone_info[0];
b7694961
DLM
533 for (offset = 0, j = 0; j < nr_zones;) {
534 z = &zones[0];
535 for (i = 0; i < nrz; i++, j++, z++, p++) {
44ec32cb
SK
536 mutex_init_pshared_with_type(&p->mutex,
537 PTHREAD_MUTEX_RECURSIVE);
b7694961 538 p->start = z->start;
236d23a8 539 p->capacity = z->capacity;
bfbdd35b 540 switch (z->cond) {
b7694961
DLM
541 case ZBD_ZONE_COND_NOT_WP:
542 case ZBD_ZONE_COND_FULL:
236d23a8 543 p->wp = p->start + p->capacity;
bfbdd35b
BVA
544 break;
545 default:
546 assert(z->start <= z->wp);
b7694961
DLM
547 assert(z->wp <= z->start + zone_size);
548 p->wp = z->wp;
bfbdd35b
BVA
549 break;
550 }
be7a6bae
DF
551
552 switch (z->type) {
553 case ZBD_ZONE_TYPE_SWR:
554 p->has_wp = 1;
555 break;
556 default:
557 p->has_wp = 0;
558 }
bfbdd35b
BVA
559 p->type = z->type;
560 p->cond = z->cond;
be7a6bae 561
bfbdd35b
BVA
562 if (j > 0 && p->start != p[-1].start + zone_size) {
563 log_info("%s: invalid zone data\n",
564 f->file_name);
565 ret = -EINVAL;
b7694961 566 goto out;
bfbdd35b
BVA
567 }
568 }
569 z--;
b7694961 570 offset = z->start + z->len;
bfbdd35b
BVA
571 if (j >= nr_zones)
572 break;
6c3f1cc1
DF
573 nrz = zbd_report_zones(td, f, offset, zones,
574 min((uint32_t)(nr_zones - j),
575 ZBD_REPORT_MAX_ZONES));
b7694961
DLM
576 if (nrz < 0) {
577 ret = nrz;
578 log_info("fio: report zones (offset %llu) failed for %s (%d).\n",
579 (unsigned long long)offset,
580 f->file_name, -ret);
581 goto out;
bfbdd35b
BVA
582 }
583 }
b7694961 584
bfbdd35b 585 /* a sentinel */
b7694961 586 zbd_info->zone_info[nr_zones].start = offset;
bfbdd35b
BVA
587
588 f->zbd_info = zbd_info;
589 f->zbd_info->zone_size = zone_size;
590 f->zbd_info->zone_size_log2 = is_power_of_2(zone_size) ?
ebc403fe 591 ilog2(zone_size) : 0;
bfbdd35b
BVA
592 f->zbd_info->nr_zones = nr_zones;
593 zbd_info = NULL;
594 ret = 0;
595
bfbdd35b 596out:
b7694961
DLM
597 sfree(zbd_info);
598 free(zones);
bfbdd35b
BVA
599 return ret;
600}
601
d2f442bc
NC
602static int zbd_set_max_open_zones(struct thread_data *td, struct fio_file *f)
603{
604 struct zoned_block_device_info *zbd = f->zbd_info;
605 unsigned int max_open_zones;
606 int ret;
607
575686bb 608 if (zbd->model != ZBD_HOST_MANAGED || td->o.ignore_zone_limits) {
d2f442bc
NC
609 /* Only host-managed devices have a max open limit */
610 zbd->max_open_zones = td->o.max_open_zones;
611 goto out;
612 }
613
614 /* If host-managed, get the max open limit */
615 ret = zbd_get_max_open_zones(td, f, &max_open_zones);
616 if (ret)
617 return ret;
618
619 if (!max_open_zones) {
620 /* No device limit */
621 zbd->max_open_zones = td->o.max_open_zones;
622 } else if (!td->o.max_open_zones) {
623 /* No user limit. Set limit to device limit */
624 zbd->max_open_zones = max_open_zones;
625 } else if (td->o.max_open_zones <= max_open_zones) {
626 /* Both user limit and dev limit. User limit not too large */
627 zbd->max_open_zones = td->o.max_open_zones;
628 } else {
629 /* Both user limit and dev limit. User limit too large */
630 td_verror(td, EINVAL,
631 "Specified --max_open_zones is too large");
632 log_err("Specified --max_open_zones (%d) is larger than max (%u)\n",
633 td->o.max_open_zones, max_open_zones);
634 return -EINVAL;
635 }
636
637out:
638 /* Ensure that the limit is not larger than FIO's internal limit */
b346af90
NC
639 if (zbd->max_open_zones > ZBD_MAX_OPEN_ZONES) {
640 td_verror(td, EINVAL, "'max_open_zones' value is too large");
641 log_err("'max_open_zones' value is larger than %u\n", ZBD_MAX_OPEN_ZONES);
642 return -EINVAL;
643 }
644
d2f442bc
NC
645 dprint(FD_ZBD, "%s: using max open zones limit: %"PRIu32"\n",
646 f->file_name, zbd->max_open_zones);
647
648 return 0;
649}
650
bfbdd35b
BVA
651/*
652 * Allocate zone information and store it into f->zbd_info if zonemode=zbd.
653 *
654 * Returns 0 upon success and a negative error code upon failure.
655 */
379e5f09 656static int zbd_create_zone_info(struct thread_data *td, struct fio_file *f)
bfbdd35b 657{
b7694961
DLM
658 enum zbd_zoned_model zbd_model;
659 int ret;
bfbdd35b
BVA
660
661 assert(td->o.zone_mode == ZONE_MODE_ZBD);
662
b7694961
DLM
663 ret = zbd_get_zoned_model(td, f, &zbd_model);
664 if (ret)
665 return ret;
666
bfbdd35b 667 switch (zbd_model) {
b7694961
DLM
668 case ZBD_HOST_AWARE:
669 case ZBD_HOST_MANAGED:
bfbdd35b 670 ret = parse_zone_info(td, f);
d2f442bc
NC
671 if (ret)
672 return ret;
bfbdd35b 673 break;
b7694961 674 case ZBD_NONE:
bfbdd35b 675 ret = init_zone_info(td, f);
d2f442bc
NC
676 if (ret)
677 return ret;
bfbdd35b 678 break;
b7694961
DLM
679 default:
680 td_verror(td, EINVAL, "Unsupported zoned model");
681 log_err("Unsupported zoned model\n");
682 return -EINVAL;
bfbdd35b 683 }
b7694961 684
2c7dd23e 685 assert(f->zbd_info);
d2f442bc
NC
686 f->zbd_info->model = zbd_model;
687
688 ret = zbd_set_max_open_zones(td, f);
689 if (ret) {
690 zbd_free_zone_info(f);
691 return ret;
219c662d 692 }
d2f442bc
NC
693
694 return 0;
bfbdd35b
BVA
695}
696
697void zbd_free_zone_info(struct fio_file *f)
698{
699 uint32_t refcount;
700
3c1dc34c 701 assert(f->zbd_info);
bfbdd35b
BVA
702
703 pthread_mutex_lock(&f->zbd_info->mutex);
704 refcount = --f->zbd_info->refcount;
705 pthread_mutex_unlock(&f->zbd_info->mutex);
706
707 assert((int32_t)refcount >= 0);
708 if (refcount == 0)
709 sfree(f->zbd_info);
710 f->zbd_info = NULL;
711}
712
713/*
714 * Initialize f->zbd_info.
715 *
716 * Returns 0 upon success and a negative error code upon failure.
717 *
718 * Note: this function can only work correctly if it is called before the first
719 * fio fork() call.
720 */
721static int zbd_init_zone_info(struct thread_data *td, struct fio_file *file)
722{
723 struct thread_data *td2;
724 struct fio_file *f2;
725 int i, j, ret;
726
727 for_each_td(td2, i) {
728 for_each_file(td2, f2, j) {
729 if (td2 == td && f2 == file)
730 continue;
731 if (!f2->zbd_info ||
732 strcmp(f2->file_name, file->file_name) != 0)
733 continue;
734 file->zbd_info = f2->zbd_info;
735 file->zbd_info->refcount++;
736 return 0;
737 }
738 }
739
740 ret = zbd_create_zone_info(td, file);
741 if (ret < 0)
c5837eec 742 td_verror(td, -ret, "zbd_create_zone_info() failed");
bfbdd35b
BVA
743 return ret;
744}
745
954217b9
SK
746static bool zbd_open_zone(struct thread_data *td, const struct fio_file *f,
747 uint32_t zone_idx);
748static int zbd_reset_zone(struct thread_data *td, struct fio_file *f,
749 struct fio_zone_info *z);
750
8f39afa7 751int zbd_init_files(struct thread_data *td)
bfbdd35b
BVA
752{
753 struct fio_file *f;
754 int i;
755
756 for_each_file(td, f, i) {
a4b7f12b 757 if (zbd_init_zone_info(td, f))
bfbdd35b 758 return 1;
bfbdd35b 759 }
8f39afa7
AD
760 return 0;
761}
762
763void zbd_recalc_options_with_zone_granularity(struct thread_data *td)
764{
765 struct fio_file *f;
766 int i;
767
768 for_each_file(td, f, i) {
769 struct zoned_block_device_info *zbd = f->zbd_info;
770 // zonemode=strided doesn't get per-file zone size.
771 uint64_t zone_size = zbd ? zbd->zone_size : td->o.zone_size;
772
773 if (zone_size == 0)
774 continue;
775
776 if (td->o.size_nz > 0) {
777 td->o.size = td->o.size_nz * zone_size;
778 }
779 if (td->o.io_size_nz > 0) {
780 td->o.io_size = td->o.io_size_nz * zone_size;
781 }
782 if (td->o.start_offset_nz > 0) {
783 td->o.start_offset = td->o.start_offset_nz * zone_size;
784 }
785 if (td->o.offset_increment_nz > 0) {
786 td->o.offset_increment = td->o.offset_increment_nz * zone_size;
787 }
788 if (td->o.zone_skip_nz > 0) {
789 td->o.zone_skip = td->o.zone_skip_nz * zone_size;
790 }
791 }
792}
793
794int zbd_setup_files(struct thread_data *td)
795{
796 struct fio_file *f;
797 int i;
bfbdd35b
BVA
798
799 if (!zbd_using_direct_io()) {
800 log_err("Using direct I/O is mandatory for writing to ZBD drives\n\n");
801 return 1;
802 }
803
804 if (!zbd_verify_sizes())
805 return 1;
806
807 if (!zbd_verify_bs())
808 return 1;
809
219c662d
AD
810 for_each_file(td, f, i) {
811 struct zoned_block_device_info *zbd = f->zbd_info;
954217b9
SK
812 struct fio_zone_info *z;
813 int zi;
219c662d 814
5ddf46d0 815 assert(zbd);
219c662d 816
f952800a
SK
817 f->min_zone = zbd_zone_idx(f, f->file_offset);
818 f->max_zone = zbd_zone_idx(f, f->file_offset + f->io_size);
819
820 /*
821 * When all zones in the I/O range are conventional, io_size
822 * can be smaller than zone size, making min_zone the same
823 * as max_zone. This is why the assert below needs to be made
824 * conditional.
825 */
826 if (zbd_is_seq_job(f))
827 assert(f->min_zone < f->max_zone);
828
219c662d
AD
829 if (td->o.max_open_zones > 0 &&
830 zbd->max_open_zones != td->o.max_open_zones) {
831 log_err("Different 'max_open_zones' values\n");
832 return 1;
833 }
b346af90
NC
834
835 /*
836 * The per job max open zones limit cannot be used without a
837 * global max open zones limit. (As the tracking of open zones
838 * is disabled when there is no global max open zones limit.)
839 */
840 if (td->o.job_max_open_zones && !zbd->max_open_zones) {
841 log_err("'job_max_open_zones' cannot be used without a global open zones limit\n");
219c662d
AD
842 return 1;
843 }
954217b9 844
ea51055c
NC
845 /*
846 * zbd->max_open_zones is the global limit shared for all jobs
847 * that target the same zoned block device. Force sync the per
848 * thread global limit with the actual global limit. (The real
849 * per thread/job limit is stored in td->o.job_max_open_zones).
850 */
851 td->o.max_open_zones = zbd->max_open_zones;
852
954217b9
SK
853 for (zi = f->min_zone; zi < f->max_zone; zi++) {
854 z = &zbd->zone_info[zi];
855 if (z->cond != ZBD_ZONE_COND_IMP_OPEN &&
856 z->cond != ZBD_ZONE_COND_EXP_OPEN)
857 continue;
858 if (zbd_open_zone(td, f, zi))
859 continue;
860 /*
861 * If the number of open zones exceeds specified limits,
862 * reset all extra open zones.
863 */
864 if (zbd_reset_zone(td, f, z) < 0) {
865 log_err("Failed to reest zone %d\n", zi);
866 return 1;
867 }
868 }
219c662d
AD
869 }
870
bfbdd35b
BVA
871 return 0;
872}
873
122c3539
DF
874static inline unsigned int zbd_zone_nr(const struct fio_file *f,
875 struct fio_zone_info *zone)
ceb35a11 876{
122c3539 877 return zone - f->zbd_info->zone_info;
ceb35a11
DF
878}
879
bfbdd35b 880/**
ceb35a11 881 * zbd_reset_zone - reset the write pointer of a single zone
bfbdd35b 882 * @td: FIO thread data.
ceb35a11
DF
883 * @f: FIO file associated with the disk for which to reset a write pointer.
884 * @z: Zone to reset.
bfbdd35b
BVA
885 *
886 * Returns 0 upon success and a negative error code upon failure.
ceb35a11
DF
887 *
888 * The caller must hold z->mutex.
bfbdd35b 889 */
ceb35a11
DF
890static int zbd_reset_zone(struct thread_data *td, struct fio_file *f,
891 struct fio_zone_info *z)
bfbdd35b 892{
ceb35a11
DF
893 uint64_t offset = z->start;
894 uint64_t length = (z+1)->start - offset;
403ea795 895 uint64_t data_in_zone = z->wp - z->start;
bfbdd35b
BVA
896 int ret = 0;
897
403ea795 898 if (!data_in_zone)
071c9d29
SK
899 return 0;
900
ee3696bd 901 assert(is_valid_offset(f, offset + length - 1));
b7694961 902
ceb35a11 903 dprint(FD_ZBD, "%s: resetting wp of zone %u.\n", f->file_name,
122c3539 904 zbd_zone_nr(f, z));
bfbdd35b 905 switch (f->zbd_info->model) {
b7694961
DLM
906 case ZBD_HOST_AWARE:
907 case ZBD_HOST_MANAGED:
908 ret = zbd_reset_wp(td, f, offset, length);
909 if (ret < 0)
bfbdd35b 910 return ret;
bfbdd35b 911 break;
b7694961 912 default:
bfbdd35b
BVA
913 break;
914 }
915
ceb35a11 916 pthread_mutex_lock(&f->zbd_info->mutex);
403ea795
SK
917 f->zbd_info->sectors_with_data -= data_in_zone;
918 f->zbd_info->wp_sectors_with_data -= data_in_zone;
ceb35a11
DF
919 pthread_mutex_unlock(&f->zbd_info->mutex);
920 z->wp = z->start;
921 z->verify_block = 0;
bfbdd35b 922
ceb35a11 923 td->ts.nr_zone_resets++;
fd5d733f 924
bfbdd35b
BVA
925 return ret;
926}
927
25dc6606
AD
928/* The caller must hold f->zbd_info->mutex */
929static void zbd_close_zone(struct thread_data *td, const struct fio_file *f,
b2da58c4 930 unsigned int zone_idx)
25dc6606 931{
b2da58c4 932 uint32_t open_zone_idx = 0;
25dc6606 933
b2da58c4
SK
934 for (; open_zone_idx < f->zbd_info->num_open_zones; open_zone_idx++) {
935 if (f->zbd_info->open_zones[open_zone_idx] == zone_idx)
936 break;
937 }
9fc5c3fd 938 if (open_zone_idx == f->zbd_info->num_open_zones)
b2da58c4 939 return;
b2da58c4
SK
940
941 dprint(FD_ZBD, "%s: closing zone %d\n", f->file_name, zone_idx);
25dc6606
AD
942 memmove(f->zbd_info->open_zones + open_zone_idx,
943 f->zbd_info->open_zones + open_zone_idx + 1,
944 (ZBD_MAX_OPEN_ZONES - (open_zone_idx + 1)) *
945 sizeof(f->zbd_info->open_zones[0]));
946 f->zbd_info->num_open_zones--;
219c662d 947 td->num_open_zones--;
923f7c1e 948 get_zone(f, zone_idx)->open = 0;
25dc6606
AD
949}
950
bfbdd35b
BVA
951/*
952 * Reset a range of zones. Returns 0 upon success and 1 upon failure.
953 * @td: fio thread data.
954 * @f: fio file for which to reset zones
955 * @zb: first zone to reset.
956 * @ze: first zone not to reset.
bfbdd35b
BVA
957 */
958static int zbd_reset_zones(struct thread_data *td, struct fio_file *f,
959 struct fio_zone_info *const zb,
57f88219 960 struct fio_zone_info *const ze)
bfbdd35b 961{
4803b841 962 struct fio_zone_info *z;
ee3696bd 963 const uint32_t min_bs = td->o.min_bs[DDIR_WRITE];
bfbdd35b
BVA
964 int res = 0;
965
adc6adcb
DLM
966 assert(min_bs);
967
a0c84dd4 968 dprint(FD_ZBD, "%s: examining zones %u .. %u\n", f->file_name,
122c3539 969 zbd_zone_nr(f, zb), zbd_zone_nr(f, ze));
bfbdd35b 970 for (z = zb; z < ze; z++) {
122c3539 971 uint32_t nz = zbd_zone_nr(f, z);
25dc6606 972
be7a6bae 973 if (!z->has_wp)
1f57803b 974 continue;
fae3b9a0 975 zone_lock(td, f, z);
57f88219
SK
976 pthread_mutex_lock(&f->zbd_info->mutex);
977 zbd_close_zone(td, f, nz);
978 pthread_mutex_unlock(&f->zbd_info->mutex);
979 if (z->wp != z->start) {
1f57803b 980 dprint(FD_ZBD, "%s: resetting zone %u\n",
122c3539 981 f->file_name, zbd_zone_nr(f, z));
1f57803b
DLM
982 if (zbd_reset_zone(td, f, z) < 0)
983 res = 1;
bfbdd35b 984 }
4d4c71e6 985 zone_unlock(z);
4803b841 986 }
bfbdd35b
BVA
987
988 return res;
989}
990
a7c2b6fc
BVA
991/*
992 * Reset zbd_info.write_cnt, the counter that counts down towards the next
993 * zone reset.
994 */
1bb1bcad
AD
995static void _zbd_reset_write_cnt(const struct thread_data *td,
996 const struct fio_file *f)
a7c2b6fc
BVA
997{
998 assert(0 <= td->o.zrf.u.f && td->o.zrf.u.f <= 1);
999
a7c2b6fc
BVA
1000 f->zbd_info->write_cnt = td->o.zrf.u.f ?
1001 min(1.0 / td->o.zrf.u.f, 0.0 + UINT_MAX) : UINT_MAX;
1bb1bcad
AD
1002}
1003
1004static void zbd_reset_write_cnt(const struct thread_data *td,
1005 const struct fio_file *f)
1006{
1007 pthread_mutex_lock(&f->zbd_info->mutex);
1008 _zbd_reset_write_cnt(td, f);
a7c2b6fc
BVA
1009 pthread_mutex_unlock(&f->zbd_info->mutex);
1010}
1011
1012static bool zbd_dec_and_reset_write_cnt(const struct thread_data *td,
1013 const struct fio_file *f)
1014{
1015 uint32_t write_cnt = 0;
1016
1017 pthread_mutex_lock(&f->zbd_info->mutex);
1018 assert(f->zbd_info->write_cnt);
1019 if (f->zbd_info->write_cnt)
1020 write_cnt = --f->zbd_info->write_cnt;
1021 if (write_cnt == 0)
1bb1bcad 1022 _zbd_reset_write_cnt(td, f);
a7c2b6fc
BVA
1023 pthread_mutex_unlock(&f->zbd_info->mutex);
1024
1025 return write_cnt == 0;
1026}
1027
91d25131
BVA
1028enum swd_action {
1029 CHECK_SWD,
1030 SET_SWD,
1031};
1032
1033/* Calculate the number of sectors with data (swd) and perform action 'a' */
11afb212
DF
1034static uint64_t zbd_process_swd(struct thread_data *td,
1035 const struct fio_file *f, enum swd_action a)
615555bb 1036{
615555bb
BVA
1037 struct fio_zone_info *zb, *ze, *z;
1038 uint64_t swd = 0;
403ea795 1039 uint64_t wp_swd = 0;
615555bb 1040
923f7c1e
DF
1041 zb = get_zone(f, f->min_zone);
1042 ze = get_zone(f, f->max_zone);
615555bb 1043 for (z = zb; z < ze; z++) {
403ea795 1044 if (z->has_wp) {
11afb212 1045 zone_lock(td, f, z);
403ea795
SK
1046 wp_swd += z->wp - z->start;
1047 }
615555bb
BVA
1048 swd += z->wp - z->start;
1049 }
1050 pthread_mutex_lock(&f->zbd_info->mutex);
91d25131
BVA
1051 switch (a) {
1052 case CHECK_SWD:
1053 assert(f->zbd_info->sectors_with_data == swd);
403ea795 1054 assert(f->zbd_info->wp_sectors_with_data == wp_swd);
91d25131
BVA
1055 break;
1056 case SET_SWD:
1057 f->zbd_info->sectors_with_data = swd;
403ea795 1058 f->zbd_info->wp_sectors_with_data = wp_swd;
91d25131
BVA
1059 break;
1060 }
615555bb
BVA
1061 pthread_mutex_unlock(&f->zbd_info->mutex);
1062 for (z = zb; z < ze; z++)
403ea795
SK
1063 if (z->has_wp)
1064 zone_unlock(z);
91d25131
BVA
1065
1066 return swd;
1067}
1068
1069/*
1070 * The swd check is useful for debugging but takes too much time to leave
1071 * it enabled all the time. Hence it is disabled by default.
1072 */
1073static const bool enable_check_swd = false;
1074
403ea795 1075/* Check whether the values of zbd_info.*sectors_with_data are correct. */
11afb212 1076static void zbd_check_swd(struct thread_data *td, const struct fio_file *f)
91d25131
BVA
1077{
1078 if (!enable_check_swd)
1079 return;
1080
11afb212 1081 zbd_process_swd(td, f, CHECK_SWD);
615555bb
BVA
1082}
1083
bfbdd35b
BVA
1084void zbd_file_reset(struct thread_data *td, struct fio_file *f)
1085{
91d25131 1086 struct fio_zone_info *zb, *ze;
11afb212 1087 uint64_t swd;
bfbdd35b 1088
767d1372 1089 if (!f->zbd_info || !td_write(td))
bfbdd35b
BVA
1090 return;
1091
923f7c1e
DF
1092 zb = get_zone(f, f->min_zone);
1093 ze = get_zone(f, f->max_zone);
11afb212
DF
1094 swd = zbd_process_swd(td, f, SET_SWD);
1095 dprint(FD_ZBD, "%s(%s): swd = %" PRIu64 "\n", __func__, f->file_name,
1096 swd);
bfbdd35b
BVA
1097 /*
1098 * If data verification is enabled reset the affected zones before
1099 * writing any data to avoid that a zone reset has to be issued while
1100 * writing data, which causes data loss.
1101 */
57f88219
SK
1102 if (td->o.verify != VERIFY_NONE && td->runstate != TD_VERIFYING)
1103 zbd_reset_zones(td, f, zb, ze);
a7c2b6fc 1104 zbd_reset_write_cnt(td, f);
bfbdd35b
BVA
1105}
1106
59b07544
BVA
1107/* The caller must hold f->zbd_info->mutex. */
1108static bool is_zone_open(const struct thread_data *td, const struct fio_file *f,
1109 unsigned int zone_idx)
1110{
1111 struct zoned_block_device_info *zbdi = f->zbd_info;
1112 int i;
1113
b346af90
NC
1114 /* This function should never be called when zbdi->max_open_zones == 0 */
1115 assert(zbdi->max_open_zones);
219c662d
AD
1116 assert(td->o.job_max_open_zones == 0 || td->num_open_zones <= td->o.job_max_open_zones);
1117 assert(td->o.job_max_open_zones <= zbdi->max_open_zones);
1118 assert(zbdi->num_open_zones <= zbdi->max_open_zones);
59b07544
BVA
1119
1120 for (i = 0; i < zbdi->num_open_zones; i++)
1121 if (zbdi->open_zones[i] == zone_idx)
1122 return true;
1123
1124 return false;
1125}
1126
1127/*
1128 * Open a ZBD zone if it was not yet open. Returns true if either the zone was
1129 * already open or if opening a new zone is allowed. Returns false if the zone
1130 * was not yet open and opening a new zone would cause the zone limit to be
1131 * exceeded.
1132 */
954217b9 1133static bool zbd_open_zone(struct thread_data *td, const struct fio_file *f,
59b07544
BVA
1134 uint32_t zone_idx)
1135{
1136 const uint32_t min_bs = td->o.min_bs[DDIR_WRITE];
af94a8c3 1137 struct zoned_block_device_info *zbdi = f->zbd_info;
923f7c1e 1138 struct fio_zone_info *z = get_zone(f, zone_idx);
59b07544
BVA
1139 bool res = true;
1140
b7694961 1141 if (z->cond == ZBD_ZONE_COND_OFFLINE)
59b07544
BVA
1142 return false;
1143
1144 /*
1145 * Skip full zones with data verification enabled because resetting a
1146 * zone causes data loss and hence causes verification to fail.
1147 */
1148 if (td->o.verify != VERIFY_NONE && zbd_zone_full(f, z, min_bs))
1149 return false;
1150
b346af90
NC
1151 /*
1152 * zbdi->max_open_zones == 0 means that there is no limit on the maximum
1153 * number of open zones. In this case, do no track open zones in
1154 * zbdi->open_zones array.
1155 */
1156 if (!zbdi->max_open_zones)
1157 return true;
1158
af94a8c3 1159 pthread_mutex_lock(&zbdi->mutex);
b2da58c4
SK
1160 if (is_zone_open(td, f, zone_idx)) {
1161 /*
1162 * If the zone is already open and going to be full by writes
1163 * in-flight, handle it as a full zone instead of an open zone.
1164 */
1165 if (z->wp >= zbd_zone_capacity_end(z))
1166 res = false;
59b07544 1167 goto out;
b2da58c4 1168 }
59b07544 1169 res = false;
219c662d
AD
1170 /* Zero means no limit */
1171 if (td->o.job_max_open_zones > 0 &&
1172 td->num_open_zones >= td->o.job_max_open_zones)
1173 goto out;
af94a8c3 1174 if (zbdi->num_open_zones >= zbdi->max_open_zones)
59b07544
BVA
1175 goto out;
1176 dprint(FD_ZBD, "%s: opening zone %d\n", f->file_name, zone_idx);
af94a8c3 1177 zbdi->open_zones[zbdi->num_open_zones++] = zone_idx;
219c662d 1178 td->num_open_zones++;
59b07544
BVA
1179 z->open = 1;
1180 res = true;
1181
1182out:
af94a8c3 1183 pthread_mutex_unlock(&zbdi->mutex);
59b07544
BVA
1184 return res;
1185}
1186
6463db6c
AD
1187/* Anything goes as long as it is not a constant. */
1188static uint32_t pick_random_zone_idx(const struct fio_file *f,
1189 const struct io_u *io_u)
1190{
1191 return io_u->offset * f->zbd_info->num_open_zones / f->real_file_size;
1192}
1193
59b07544
BVA
1194/*
1195 * Modify the offset of an I/O unit that does not refer to an open zone such
1196 * that it refers to an open zone. Close an open zone and open a new zone if
21c0c884
SK
1197 * necessary. The open zone is searched across sequential zones.
1198 * This algorithm can only work correctly if all write pointers are
59b07544
BVA
1199 * a multiple of the fio block size. The caller must neither hold z->mutex
1200 * nor f->zbd_info->mutex. Returns with z->mutex held upon success.
1201 */
379e5f09
BVA
1202static struct fio_zone_info *zbd_convert_to_open_zone(struct thread_data *td,
1203 struct io_u *io_u)
59b07544
BVA
1204{
1205 const uint32_t min_bs = td->o.min_bs[io_u->ddir];
fae3b9a0 1206 struct fio_file *f = io_u->file;
af94a8c3 1207 struct zoned_block_device_info *zbdi = f->zbd_info;
59b07544
BVA
1208 struct fio_zone_info *z;
1209 unsigned int open_zone_idx = -1;
1210 uint32_t zone_idx, new_zone_idx;
1211 int i;
b2da58c4 1212 bool wait_zone_close;
59b07544
BVA
1213
1214 assert(is_valid_offset(f, io_u->offset));
1215
ea51055c 1216 if (zbdi->max_open_zones || td->o.job_max_open_zones) {
59b07544 1217 /*
af94a8c3 1218 * This statement accesses zbdi->open_zones[] on purpose
59b07544
BVA
1219 * without locking.
1220 */
af94a8c3 1221 zone_idx = zbdi->open_zones[pick_random_zone_idx(f, io_u)];
59b07544
BVA
1222 } else {
1223 zone_idx = zbd_zone_idx(f, io_u->offset);
1224 }
fae3b9a0
AD
1225 if (zone_idx < f->min_zone)
1226 zone_idx = f->min_zone;
1227 else if (zone_idx >= f->max_zone)
1228 zone_idx = f->max_zone - 1;
59b07544
BVA
1229 dprint(FD_ZBD, "%s(%s): starting from zone %d (offset %lld, buflen %lld)\n",
1230 __func__, f->file_name, zone_idx, io_u->offset, io_u->buflen);
1231
1232 /*
af94a8c3 1233 * Since z->mutex is the outer lock and zbdi->mutex the inner
59b07544 1234 * lock it can happen that the state of the zone with index zone_idx
af94a8c3 1235 * has changed after 'z' has been assigned and before zbdi->mutex
59b07544
BVA
1236 * has been obtained. Hence the loop.
1237 */
1238 for (;;) {
6463db6c
AD
1239 uint32_t tmp_idx;
1240
923f7c1e 1241 z = get_zone(f, zone_idx);
14351148
DF
1242 if (z->has_wp)
1243 zone_lock(td, f, z);
af94a8c3 1244 pthread_mutex_lock(&zbdi->mutex);
14351148
DF
1245 if (z->has_wp) {
1246 if (z->cond != ZBD_ZONE_COND_OFFLINE &&
ea51055c 1247 zbdi->max_open_zones == 0 && td->o.job_max_open_zones == 0)
14351148 1248 goto examine_zone;
af94a8c3 1249 if (zbdi->num_open_zones == 0) {
14351148
DF
1250 dprint(FD_ZBD, "%s(%s): no zones are open\n",
1251 __func__, f->file_name);
1252 goto open_other_zone;
1253 }
59b07544 1254 }
6463db6c
AD
1255
1256 /*
1257 * List of opened zones is per-device, shared across all threads.
1258 * Start with quasi-random candidate zone.
1259 * Ignore zones which don't belong to thread's offset/size area.
1260 */
1261 open_zone_idx = pick_random_zone_idx(f, io_u);
1a8d510a 1262 assert(!open_zone_idx ||
af94a8c3 1263 open_zone_idx < zbdi->num_open_zones);
6463db6c 1264 tmp_idx = open_zone_idx;
af94a8c3 1265 for (i = 0; i < zbdi->num_open_zones; i++) {
6463db6c
AD
1266 uint32_t tmpz;
1267
af94a8c3 1268 if (tmp_idx >= zbdi->num_open_zones)
6463db6c 1269 tmp_idx = 0;
af94a8c3 1270 tmpz = zbdi->open_zones[tmp_idx];
fae3b9a0 1271 if (f->min_zone <= tmpz && tmpz < f->max_zone) {
6463db6c
AD
1272 open_zone_idx = tmp_idx;
1273 goto found_candidate_zone;
1274 }
1275
1276 tmp_idx++;
1277 }
1278
1279 dprint(FD_ZBD, "%s(%s): no candidate zone\n",
1280 __func__, f->file_name);
af94a8c3 1281 pthread_mutex_unlock(&zbdi->mutex);
14351148
DF
1282 if (z->has_wp)
1283 zone_unlock(z);
6463db6c
AD
1284 return NULL;
1285
1286found_candidate_zone:
af94a8c3 1287 new_zone_idx = zbdi->open_zones[open_zone_idx];
59b07544
BVA
1288 if (new_zone_idx == zone_idx)
1289 break;
1290 zone_idx = new_zone_idx;
af94a8c3 1291 pthread_mutex_unlock(&zbdi->mutex);
14351148
DF
1292 if (z->has_wp)
1293 zone_unlock(z);
59b07544
BVA
1294 }
1295
af94a8c3 1296 /* Both z->mutex and zbdi->mutex are held. */
59b07544
BVA
1297
1298examine_zone:
236d23a8 1299 if (z->wp + min_bs <= zbd_zone_capacity_end(z)) {
af94a8c3 1300 pthread_mutex_unlock(&zbdi->mutex);
59b07544
BVA
1301 goto out;
1302 }
b2da58c4
SK
1303
1304open_other_zone:
1305 /* Check if number of open zones reaches one of limits. */
1306 wait_zone_close =
af94a8c3 1307 zbdi->num_open_zones == f->max_zone - f->min_zone ||
ea51055c
NC
1308 (zbdi->max_open_zones &&
1309 zbdi->num_open_zones == zbdi->max_open_zones) ||
b2da58c4
SK
1310 (td->o.job_max_open_zones &&
1311 td->num_open_zones == td->o.job_max_open_zones);
1312
af94a8c3 1313 pthread_mutex_unlock(&zbdi->mutex);
59b07544
BVA
1314
1315 /* Only z->mutex is held. */
1316
b2da58c4
SK
1317 /*
1318 * When number of open zones reaches to one of limits, wait for
1319 * zone close before opening a new zone.
1320 */
1321 if (wait_zone_close) {
1322 dprint(FD_ZBD, "%s(%s): quiesce to allow open zones to close\n",
1323 __func__, f->file_name);
1324 io_u_quiesce(td);
1325 }
1326
59b07544 1327 /* Zone 'z' is full, so try to open a new zone. */
af94a8c3 1328 for (i = f->io_size / zbdi->zone_size; i > 0; i--) {
59b07544 1329 zone_idx++;
21c0c884
SK
1330 if (z->has_wp)
1331 zone_unlock(z);
59b07544 1332 z++;
ee3696bd 1333 if (!is_valid_offset(f, z->start)) {
59b07544 1334 /* Wrap-around. */
fae3b9a0 1335 zone_idx = f->min_zone;
923f7c1e 1336 z = get_zone(f, zone_idx);
59b07544 1337 }
ee3696bd 1338 assert(is_valid_offset(f, z->start));
21c0c884
SK
1339 if (!z->has_wp)
1340 continue;
fae3b9a0 1341 zone_lock(td, f, z);
59b07544
BVA
1342 if (z->open)
1343 continue;
954217b9 1344 if (zbd_open_zone(td, f, zone_idx))
59b07544
BVA
1345 goto out;
1346 }
1347
1348 /* Only z->mutex is held. */
1349
1350 /* Check whether the write fits in any of the already opened zones. */
af94a8c3
NC
1351 pthread_mutex_lock(&zbdi->mutex);
1352 for (i = 0; i < zbdi->num_open_zones; i++) {
1353 zone_idx = zbdi->open_zones[i];
fae3b9a0
AD
1354 if (zone_idx < f->min_zone || zone_idx >= f->max_zone)
1355 continue;
af94a8c3 1356 pthread_mutex_unlock(&zbdi->mutex);
4d4c71e6 1357 zone_unlock(z);
59b07544 1358
923f7c1e 1359 z = get_zone(f, zone_idx);
59b07544 1360
fae3b9a0 1361 zone_lock(td, f, z);
236d23a8 1362 if (z->wp + min_bs <= zbd_zone_capacity_end(z))
59b07544 1363 goto out;
af94a8c3 1364 pthread_mutex_lock(&zbdi->mutex);
59b07544 1365 }
af94a8c3 1366 pthread_mutex_unlock(&zbdi->mutex);
4d4c71e6 1367 zone_unlock(z);
59b07544
BVA
1368 dprint(FD_ZBD, "%s(%s): did not open another zone\n", __func__,
1369 f->file_name);
1370 return NULL;
1371
1372out:
1373 dprint(FD_ZBD, "%s(%s): returning zone %d\n", __func__, f->file_name,
1374 zone_idx);
ee3696bd 1375 io_u->offset = z->start;
21c0c884 1376 assert(z->has_wp);
8a866de7 1377 assert(z->cond != ZBD_ZONE_COND_OFFLINE);
59b07544
BVA
1378 return z;
1379}
1380
bfbdd35b 1381/* The caller must hold z->mutex. */
59b07544
BVA
1382static struct fio_zone_info *zbd_replay_write_order(struct thread_data *td,
1383 struct io_u *io_u,
1384 struct fio_zone_info *z)
bfbdd35b
BVA
1385{
1386 const struct fio_file *f = io_u->file;
1387 const uint32_t min_bs = td->o.min_bs[DDIR_WRITE];
1388
122c3539 1389 if (!zbd_open_zone(td, f, zbd_zone_nr(f, z))) {
4d4c71e6 1390 zone_unlock(z);
59b07544
BVA
1391 z = zbd_convert_to_open_zone(td, io_u);
1392 assert(z);
1393 }
1394
0cac10b4 1395 if (z->verify_block * min_bs >= z->capacity) {
a0c84dd4 1396 log_err("%s: %d * %d >= %llu\n", f->file_name, z->verify_block,
236d23a8 1397 min_bs, (unsigned long long)z->capacity);
0cac10b4
DF
1398 /*
1399 * If the assertion below fails during a test run, adding
1400 * "--experimental_verify=1" to the command line may help.
1401 */
1402 assert(false);
1403 }
1404 io_u->offset = z->start + z->verify_block * min_bs;
1405 if (io_u->offset + io_u->buflen >= zbd_zone_capacity_end(z)) {
1e3d6e03
JA
1406 log_err("%s: %llu + %llu >= %llu\n", f->file_name, io_u->offset,
1407 io_u->buflen, (unsigned long long) zbd_zone_capacity_end(z));
0cac10b4
DF
1408 assert(false);
1409 }
1410 z->verify_block += io_u->buflen / min_bs;
1411
59b07544 1412 return z;
bfbdd35b
BVA
1413}
1414
1415/*
21c0c884
SK
1416 * Find another zone for which @io_u fits in the readable data in the zone.
1417 * Search in zones @zb + 1 .. @zl. For random workload, also search in zones
1418 * @zb - 1 .. @zf.
bfbdd35b 1419 *
21c0c884
SK
1420 * Either returns NULL or returns a zone pointer. When the zone has write
1421 * pointer, hold the mutex for the zone.
bfbdd35b
BVA
1422 */
1423static struct fio_zone_info *
1424zbd_find_zone(struct thread_data *td, struct io_u *io_u,
1425 struct fio_zone_info *zb, struct fio_zone_info *zl)
1426{
1427 const uint32_t min_bs = td->o.min_bs[io_u->ddir];
fae3b9a0 1428 struct fio_file *f = io_u->file;
bfbdd35b 1429 struct fio_zone_info *z1, *z2;
923f7c1e 1430 const struct fio_zone_info *const zf = get_zone(f, f->min_zone);
bfbdd35b
BVA
1431
1432 /*
1433 * Skip to the next non-empty zone in case of sequential I/O and to
1434 * the nearest non-empty zone in case of random I/O.
1435 */
1436 for (z1 = zb + 1, z2 = zb - 1; z1 < zl || z2 >= zf; z1++, z2--) {
b7694961 1437 if (z1 < zl && z1->cond != ZBD_ZONE_COND_OFFLINE) {
21c0c884
SK
1438 if (z1->has_wp)
1439 zone_lock(td, f, z1);
ee3696bd 1440 if (z1->start + min_bs <= z1->wp)
bfbdd35b 1441 return z1;
21c0c884
SK
1442 if (z1->has_wp)
1443 zone_unlock(z1);
bfbdd35b
BVA
1444 } else if (!td_random(td)) {
1445 break;
1446 }
1447 if (td_random(td) && z2 >= zf &&
b7694961 1448 z2->cond != ZBD_ZONE_COND_OFFLINE) {
21c0c884
SK
1449 if (z2->has_wp)
1450 zone_lock(td, f, z2);
ee3696bd 1451 if (z2->start + min_bs <= z2->wp)
bfbdd35b 1452 return z2;
21c0c884
SK
1453 if (z2->has_wp)
1454 zone_unlock(z2);
bfbdd35b
BVA
1455 }
1456 }
1457 dprint(FD_ZBD, "%s: adjusting random read offset failed\n",
1458 f->file_name);
1459 return NULL;
1460}
1461
b2da58c4
SK
1462/**
1463 * zbd_end_zone_io - update zone status at command completion
1464 * @io_u: I/O unit
1465 * @z: zone info pointer
1466 *
1467 * If the write command made the zone full, close it.
1468 *
1469 * The caller must hold z->mutex.
1470 */
1471static void zbd_end_zone_io(struct thread_data *td, const struct io_u *io_u,
1472 struct fio_zone_info *z)
1473{
1474 const struct fio_file *f = io_u->file;
1475
1476 if (io_u->ddir == DDIR_WRITE &&
1477 io_u->offset + io_u->buflen >= zbd_zone_capacity_end(z)) {
1478 pthread_mutex_lock(&f->zbd_info->mutex);
122c3539 1479 zbd_close_zone(td, f, zbd_zone_nr(f, z));
b2da58c4
SK
1480 pthread_mutex_unlock(&f->zbd_info->mutex);
1481 }
1482}
1483
bfbdd35b 1484/**
d9ed3e63 1485 * zbd_queue_io - update the write pointer of a sequential zone
bfbdd35b 1486 * @io_u: I/O unit
d9ed3e63
DLM
1487 * @success: Whether or not the I/O unit has been queued successfully
1488 * @q: queueing status (busy, completed or queued).
bfbdd35b 1489 *
d9ed3e63
DLM
1490 * For write and trim operations, update the write pointer of the I/O unit
1491 * target zone.
bfbdd35b 1492 */
b2da58c4
SK
1493static void zbd_queue_io(struct thread_data *td, struct io_u *io_u, int q,
1494 bool success)
bfbdd35b 1495{
d9ed3e63
DLM
1496 const struct fio_file *f = io_u->file;
1497 struct zoned_block_device_info *zbd_info = f->zbd_info;
bfbdd35b
BVA
1498 struct fio_zone_info *z;
1499 uint32_t zone_idx;
d9ed3e63 1500 uint64_t zone_end;
bfbdd35b 1501
5ddf46d0 1502 assert(zbd_info);
bfbdd35b 1503
d9ed3e63 1504 zone_idx = zbd_zone_idx(f, io_u->offset);
bfbdd35b 1505 assert(zone_idx < zbd_info->nr_zones);
923f7c1e 1506 z = get_zone(f, zone_idx);
d9ed3e63 1507
43bcbd5b 1508 assert(z->has_wp);
d9ed3e63 1509
bfbdd35b
BVA
1510 if (!success)
1511 goto unlock;
d9ed3e63
DLM
1512
1513 dprint(FD_ZBD,
1514 "%s: queued I/O (%lld, %llu) for zone %u\n",
1515 f->file_name, io_u->offset, io_u->buflen, zone_idx);
1516
bfbdd35b
BVA
1517 switch (io_u->ddir) {
1518 case DDIR_WRITE:
d9ed3e63 1519 zone_end = min((uint64_t)(io_u->offset + io_u->buflen),
236d23a8 1520 zbd_zone_capacity_end(z));
a7c2b6fc
BVA
1521 pthread_mutex_lock(&zbd_info->mutex);
1522 /*
1523 * z->wp > zone_end means that one or more I/O errors
1524 * have occurred.
1525 */
403ea795 1526 if (z->wp <= zone_end) {
a7c2b6fc 1527 zbd_info->sectors_with_data += zone_end - z->wp;
403ea795
SK
1528 zbd_info->wp_sectors_with_data += zone_end - z->wp;
1529 }
a7c2b6fc 1530 pthread_mutex_unlock(&zbd_info->mutex);
bfbdd35b
BVA
1531 z->wp = zone_end;
1532 break;
1533 case DDIR_TRIM:
1534 assert(z->wp == z->start);
1535 break;
1536 default:
1537 break;
1538 }
d9ed3e63 1539
b2da58c4
SK
1540 if (q == FIO_Q_COMPLETED && !io_u->error)
1541 zbd_end_zone_io(td, io_u, z);
1542
bfbdd35b 1543unlock:
d9ed3e63
DLM
1544 if (!success || q != FIO_Q_QUEUED) {
1545 /* BUSY or COMPLETED: unlock the zone */
4d4c71e6 1546 zone_unlock(z);
d9ed3e63
DLM
1547 io_u->zbd_put_io = NULL;
1548 }
1549}
1550
1551/**
1552 * zbd_put_io - Unlock an I/O unit target zone lock
1553 * @io_u: I/O unit
1554 */
b2da58c4 1555static void zbd_put_io(struct thread_data *td, const struct io_u *io_u)
d9ed3e63
DLM
1556{
1557 const struct fio_file *f = io_u->file;
1558 struct zoned_block_device_info *zbd_info = f->zbd_info;
1559 struct fio_zone_info *z;
1560 uint32_t zone_idx;
1561
5ddf46d0 1562 assert(zbd_info);
615555bb 1563
d9ed3e63
DLM
1564 zone_idx = zbd_zone_idx(f, io_u->offset);
1565 assert(zone_idx < zbd_info->nr_zones);
923f7c1e 1566 z = get_zone(f, zone_idx);
d9ed3e63 1567
43bcbd5b 1568 assert(z->has_wp);
d9ed3e63
DLM
1569
1570 dprint(FD_ZBD,
1571 "%s: terminate I/O (%lld, %llu) for zone %u\n",
1572 f->file_name, io_u->offset, io_u->buflen, zone_idx);
1573
b2da58c4
SK
1574 zbd_end_zone_io(td, io_u, z);
1575
4d4c71e6 1576 zone_unlock(z);
11afb212 1577 zbd_check_swd(td, f);
bfbdd35b
BVA
1578}
1579
9d87c646
DLM
1580/*
1581 * Windows and MacOS do not define this.
1582 */
1583#ifndef EREMOTEIO
1584#define EREMOTEIO 121 /* POSIX value */
1585#endif
1586
bfbdd35b
BVA
1587bool zbd_unaligned_write(int error_code)
1588{
1589 switch (error_code) {
1590 case EIO:
1591 case EREMOTEIO:
1592 return true;
1593 }
1594 return false;
1595}
1596
4d37720a
DLM
1597/**
1598 * setup_zbd_zone_mode - handle zoneskip as necessary for ZBD drives
1599 * @td: FIO thread data.
1600 * @io_u: FIO I/O unit.
1601 *
1602 * For sequential workloads, change the file offset to skip zoneskip bytes when
1603 * no more IO can be performed in the current zone.
1604 * - For read workloads, zoneskip is applied when the io has reached the end of
1605 * the zone or the zone write position (when td->o.read_beyond_wp is false).
1606 * - For write workloads, zoneskip is applied when the zone is full.
1607 * This applies only to read and write operations.
1608 */
1609void setup_zbd_zone_mode(struct thread_data *td, struct io_u *io_u)
1610{
1611 struct fio_file *f = io_u->file;
1612 enum fio_ddir ddir = io_u->ddir;
1613 struct fio_zone_info *z;
1614 uint32_t zone_idx;
1615
1616 assert(td->o.zone_mode == ZONE_MODE_ZBD);
1617 assert(td->o.zone_size);
5ddf46d0 1618 assert(f->zbd_info);
4d37720a 1619
236d23a8 1620 zone_idx = zbd_zone_idx(f, f->last_pos[ddir]);
923f7c1e 1621 z = get_zone(f, zone_idx);
236d23a8
SK
1622
1623 /*
1624 * When the zone capacity is smaller than the zone size and the I/O is
1625 * sequential write, skip to zone end if the latest position is at the
1626 * zone capacity limit.
1627 */
1628 if (z->capacity < f->zbd_info->zone_size && !td_random(td) &&
1629 ddir == DDIR_WRITE &&
1630 f->last_pos[ddir] >= zbd_zone_capacity_end(z)) {
1631 dprint(FD_ZBD,
1632 "%s: Jump from zone capacity limit to zone end:"
5090d1d0
JA
1633 " (%llu -> %llu) for zone %u (%llu)\n",
1634 f->file_name, (unsigned long long) f->last_pos[ddir],
122c3539 1635 (unsigned long long) zbd_zone_end(z), zone_idx,
5090d1d0 1636 (unsigned long long) z->capacity);
236d23a8
SK
1637 td->io_skip_bytes += zbd_zone_end(z) - f->last_pos[ddir];
1638 f->last_pos[ddir] = zbd_zone_end(z);
1639 }
1640
4d37720a
DLM
1641 /*
1642 * zone_skip is valid only for sequential workloads.
1643 */
1644 if (td_random(td) || !td->o.zone_skip)
1645 return;
1646
1647 /*
1648 * It is time to switch to a new zone if:
1649 * - zone_bytes == zone_size bytes have already been accessed
1650 * - The last position reached the end of the current zone.
1651 * - For reads with td->o.read_beyond_wp == false, the last position
1652 * reached the zone write pointer.
1653 */
4d37720a 1654 if (td->zone_bytes >= td->o.zone_size ||
236d23a8 1655 f->last_pos[ddir] >= zbd_zone_end(z) ||
4d37720a
DLM
1656 (ddir == DDIR_READ &&
1657 (!td->o.read_beyond_wp) && f->last_pos[ddir] >= z->wp)) {
1658 /*
1659 * Skip zones.
1660 */
1661 td->zone_bytes = 0;
1662 f->file_offset += td->o.zone_size + td->o.zone_skip;
1663
1664 /*
1665 * Wrap from the beginning, if we exceed the file size
1666 */
1667 if (f->file_offset >= f->real_file_size)
1668 f->file_offset = get_start_offset(td, f);
1669
1670 f->last_pos[ddir] = f->file_offset;
1671 td->io_skip_bytes += td->o.zone_skip;
1672 }
1673}
1674
c65057f9 1675/**
c7d5e152 1676 * zbd_adjust_ddir - Adjust an I/O direction for zonemode=zbd.
c65057f9
SK
1677 *
1678 * @td: FIO thread data.
1679 * @io_u: FIO I/O unit.
1680 * @ddir: I/O direction before adjustment.
1681 *
1682 * Return adjusted I/O direction.
1683 */
1684enum fio_ddir zbd_adjust_ddir(struct thread_data *td, struct io_u *io_u,
1685 enum fio_ddir ddir)
1686{
1687 /*
1688 * In case read direction is chosen for the first random I/O, fio with
1689 * zonemode=zbd stops because no data can be read from zoned block
1690 * devices with all empty zones. Overwrite the first I/O direction as
1691 * write to make sure data to read exists.
1692 */
5ddf46d0 1693 assert(io_u->file->zbd_info);
731461cc 1694 if (ddir != DDIR_READ || !td_rw(td))
c65057f9
SK
1695 return ddir;
1696
1697 if (io_u->file->zbd_info->sectors_with_data ||
1698 td->o.read_beyond_wp)
1699 return DDIR_READ;
1700
1701 return DDIR_WRITE;
1702}
1703
bfbdd35b
BVA
1704/**
1705 * zbd_adjust_block - adjust the offset and length as necessary for ZBD drives
1706 * @td: FIO thread data.
1707 * @io_u: FIO I/O unit.
1708 *
1709 * Locking strategy: returns with z->mutex locked if and only if z refers
1710 * to a sequential zone and if io_u_accept is returned. z is the zone that
1711 * corresponds to io_u->offset at the end of this function.
1712 */
1713enum io_u_action zbd_adjust_block(struct thread_data *td, struct io_u *io_u)
1714{
b7694961 1715 struct fio_file *f = io_u->file;
af94a8c3 1716 struct zoned_block_device_info *zbdi = f->zbd_info;
bfbdd35b 1717 uint32_t zone_idx_b;
de65f7b7 1718 struct fio_zone_info *zb, *zl, *orig_zb;
bfbdd35b
BVA
1719 uint32_t orig_len = io_u->buflen;
1720 uint32_t min_bs = td->o.min_bs[io_u->ddir];
1721 uint64_t new_len;
1722 int64_t range;
1723
af94a8c3 1724 assert(zbdi);
adc6adcb 1725 assert(min_bs);
bfbdd35b
BVA
1726 assert(is_valid_offset(f, io_u->offset));
1727 assert(io_u->buflen);
1728 zone_idx_b = zbd_zone_idx(f, io_u->offset);
923f7c1e 1729 zb = get_zone(f, zone_idx_b);
de65f7b7 1730 orig_zb = zb;
bfbdd35b 1731
2efcf74b
SK
1732 if (!zb->has_wp) {
1733 /* Accept non-write I/Os for conventional zones. */
1734 if (io_u->ddir != DDIR_WRITE)
1735 return io_u_accept;
1736 /*
1737 * Make sure that writes to conventional zones
1738 * don't cross over to any sequential zones.
1739 */
1740 if (!(zb + 1)->has_wp ||
1741 io_u->offset + io_u->buflen <= (zb + 1)->start)
1742 return io_u_accept;
1743
1744 if (io_u->offset + min_bs > (zb + 1)->start) {
1745 dprint(FD_IO,
1e3d6e03
JA
1746 "%s: off=%llu + min_bs=%u > next zone %llu\n",
1747 f->file_name, io_u->offset,
1748 min_bs, (unsigned long long) (zb + 1)->start);
2efcf74b
SK
1749 io_u->offset = zb->start + (zb + 1)->start - io_u->offset;
1750 new_len = min(io_u->buflen, (zb + 1)->start - io_u->offset);
1751 } else {
1752 new_len = (zb + 1)->start - io_u->offset;
1753 }
1754 io_u->buflen = new_len / min_bs * min_bs;
bfbdd35b 1755 return io_u_accept;
2efcf74b 1756 }
bfbdd35b
BVA
1757
1758 /*
1759 * Accept the I/O offset for reads if reading beyond the write pointer
1760 * is enabled.
1761 */
b7694961 1762 if (zb->cond != ZBD_ZONE_COND_OFFLINE &&
bfbdd35b
BVA
1763 io_u->ddir == DDIR_READ && td->o.read_beyond_wp)
1764 return io_u_accept;
1765
11afb212 1766 zbd_check_swd(td, f);
615555bb 1767
fae3b9a0 1768 zone_lock(td, f, zb);
6f0c6085 1769
bfbdd35b
BVA
1770 switch (io_u->ddir) {
1771 case DDIR_READ:
0ed7d55e
AR
1772 if (td->runstate == TD_VERIFYING && td_write(td)) {
1773 zb = zbd_replay_write_order(td, io_u, zb);
bfbdd35b
BVA
1774 goto accept;
1775 }
1776 /*
de65f7b7
DLM
1777 * Check that there is enough written data in the zone to do an
1778 * I/O of at least min_bs B. If there isn't, find a new zone for
1779 * the I/O.
bfbdd35b 1780 */
b7694961 1781 range = zb->cond != ZBD_ZONE_COND_OFFLINE ?
ee3696bd 1782 zb->wp - zb->start : 0;
de65f7b7 1783 if (range < min_bs ||
ee3696bd 1784 ((!td_random(td)) && (io_u->offset + min_bs > zb->wp))) {
4d4c71e6 1785 zone_unlock(zb);
923f7c1e 1786 zl = get_zone(f, f->max_zone);
bfbdd35b
BVA
1787 zb = zbd_find_zone(td, io_u, zb, zl);
1788 if (!zb) {
1789 dprint(FD_ZBD,
1790 "%s: zbd_find_zone(%lld, %llu) failed\n",
1791 f->file_name, io_u->offset,
1792 io_u->buflen);
1793 goto eof;
1794 }
de65f7b7
DLM
1795 /*
1796 * zbd_find_zone() returned a zone with a range of at
1797 * least min_bs.
1798 */
ee3696bd 1799 range = zb->wp - zb->start;
de65f7b7
DLM
1800 assert(range >= min_bs);
1801
1802 if (!td_random(td))
ee3696bd 1803 io_u->offset = zb->start;
bfbdd35b 1804 }
de65f7b7
DLM
1805 /*
1806 * Make sure the I/O is within the zone valid data range while
1807 * maximizing the I/O size and preserving randomness.
1808 */
1809 if (range <= io_u->buflen)
ee3696bd 1810 io_u->offset = zb->start;
de65f7b7 1811 else if (td_random(td))
ee3696bd
DLM
1812 io_u->offset = zb->start +
1813 ((io_u->offset - orig_zb->start) %
de65f7b7 1814 (range - io_u->buflen)) / min_bs * min_bs;
43bcbd5b
SK
1815 /*
1816 * When zbd_find_zone() returns a conventional zone,
1817 * we can simply accept the new i/o offset here.
1818 */
1819 if (!zb->has_wp)
1820 return io_u_accept;
de65f7b7
DLM
1821 /*
1822 * Make sure the I/O does not cross over the zone wp position.
1823 */
1824 new_len = min((unsigned long long)io_u->buflen,
ee3696bd 1825 (unsigned long long)(zb->wp - io_u->offset));
de65f7b7
DLM
1826 new_len = new_len / min_bs * min_bs;
1827 if (new_len < io_u->buflen) {
1828 io_u->buflen = new_len;
1829 dprint(FD_IO, "Changed length from %u into %llu\n",
1830 orig_len, io_u->buflen);
bfbdd35b 1831 }
ee3696bd
DLM
1832 assert(zb->start <= io_u->offset);
1833 assert(io_u->offset + io_u->buflen <= zb->wp);
bfbdd35b
BVA
1834 goto accept;
1835 case DDIR_WRITE:
af94a8c3 1836 if (io_u->buflen > zbdi->zone_size) {
1c74aadc
DF
1837 td_verror(td, EINVAL, "I/O buflen exceeds zone size");
1838 dprint(FD_IO,
1e3d6e03 1839 "%s: I/O buflen %llu exceeds zone size %llu\n",
1c74aadc 1840 f->file_name, io_u->buflen,
af94a8c3 1841 (unsigned long long) zbdi->zone_size);
bfbdd35b 1842 goto eof;
1c74aadc 1843 }
954217b9 1844 if (!zbd_open_zone(td, f, zone_idx_b)) {
4d4c71e6 1845 zone_unlock(zb);
59b07544 1846 zb = zbd_convert_to_open_zone(td, io_u);
1c74aadc
DF
1847 if (!zb) {
1848 dprint(FD_IO, "%s: can't convert to open zone",
1849 f->file_name);
59b07544 1850 goto eof;
1c74aadc 1851 }
122c3539 1852 zone_idx_b = zbd_zone_nr(f, zb);
59b07544 1853 }
a7c2b6fc
BVA
1854 /* Check whether the zone reset threshold has been exceeded */
1855 if (td->o.zrf.u.f) {
af94a8c3 1856 if (zbdi->wp_sectors_with_data >=
a7c2b6fc
BVA
1857 f->io_size * td->o.zrt.u.f &&
1858 zbd_dec_and_reset_write_cnt(td, f)) {
1859 zb->reset_zone = 1;
1860 }
1861 }
bfbdd35b
BVA
1862 /* Reset the zone pointer if necessary */
1863 if (zb->reset_zone || zbd_zone_full(f, zb, min_bs)) {
1864 assert(td->o.verify == VERIFY_NONE);
1865 /*
1866 * Since previous write requests may have been submitted
1867 * asynchronously and since we will submit the zone
1868 * reset synchronously, wait until previously submitted
1869 * write requests have completed before issuing a
1870 * zone reset.
1871 */
1872 io_u_quiesce(td);
1873 zb->reset_zone = 0;
1874 if (zbd_reset_zone(td, f, zb) < 0)
1875 goto eof;
236d23a8
SK
1876
1877 if (zb->capacity < min_bs) {
1c74aadc 1878 td_verror(td, EINVAL, "ZCAP is less min_bs");
236d23a8
SK
1879 log_err("zone capacity %llu smaller than minimum block size %d\n",
1880 (unsigned long long)zb->capacity,
1881 min_bs);
1882 goto eof;
1883 }
bfbdd35b
BVA
1884 }
1885 /* Make writes occur at the write pointer */
1886 assert(!zbd_zone_full(f, zb, min_bs));
ee3696bd 1887 io_u->offset = zb->wp;
bfbdd35b 1888 if (!is_valid_offset(f, io_u->offset)) {
1c74aadc
DF
1889 td_verror(td, EINVAL, "invalid WP value");
1890 dprint(FD_ZBD, "%s: dropped request with offset %llu\n",
1891 f->file_name, io_u->offset);
bfbdd35b
BVA
1892 goto eof;
1893 }
1894 /*
1895 * Make sure that the buflen is a multiple of the minimal
1896 * block size. Give up if shrinking would make the request too
1897 * small.
1898 */
1899 new_len = min((unsigned long long)io_u->buflen,
236d23a8 1900 zbd_zone_capacity_end(zb) - io_u->offset);
bfbdd35b
BVA
1901 new_len = new_len / min_bs * min_bs;
1902 if (new_len == io_u->buflen)
1903 goto accept;
1904 if (new_len >= min_bs) {
1905 io_u->buflen = new_len;
1906 dprint(FD_IO, "Changed length from %u into %llu\n",
1907 orig_len, io_u->buflen);
1908 goto accept;
1909 }
1c74aadc
DF
1910 td_verror(td, EIO, "zone remainder too small");
1911 log_err("zone remainder %lld smaller than min block size %d\n",
1912 (zbd_zone_capacity_end(zb) - io_u->offset), min_bs);
bfbdd35b
BVA
1913 goto eof;
1914 case DDIR_TRIM:
1915 /* fall-through */
1916 case DDIR_SYNC:
1917 case DDIR_DATASYNC:
1918 case DDIR_SYNC_FILE_RANGE:
1919 case DDIR_WAIT:
1920 case DDIR_LAST:
1921 case DDIR_INVAL:
1922 goto accept;
1923 }
1924
1925 assert(false);
1926
1927accept:
43bcbd5b 1928 assert(zb->has_wp);
b7694961 1929 assert(zb->cond != ZBD_ZONE_COND_OFFLINE);
d9ed3e63
DLM
1930 assert(!io_u->zbd_queue_io);
1931 assert(!io_u->zbd_put_io);
1932 io_u->zbd_queue_io = zbd_queue_io;
1933 io_u->zbd_put_io = zbd_put_io;
2ef3c1b0
DF
1934 /*
1935 * Since we return with the zone lock still held,
1936 * add an annotation to let Coverity know that it
1937 * is intentional.
1938 */
1939 /* coverity[missing_unlock] */
bfbdd35b
BVA
1940 return io_u_accept;
1941
1942eof:
43bcbd5b 1943 if (zb && zb->has_wp)
4d4c71e6 1944 zone_unlock(zb);
bfbdd35b
BVA
1945 return io_u_eof;
1946}
fd5d733f
BVA
1947
1948/* Return a string with ZBD statistics */
1949char *zbd_write_status(const struct thread_stat *ts)
1950{
1951 char *res;
1952
a0c84dd4 1953 if (asprintf(&res, "; %llu zone resets", (unsigned long long) ts->nr_zone_resets) < 0)
fd5d733f
BVA
1954 return NULL;
1955 return res;
1956}