1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401
|
/*
* Copyright (C) 2020 Western Digital Corporation or its affiliates.
*
* This file is released under the GPL.
*/
#include <errno.h>
#include <string.h>
#include <stdlib.h>
#include <dirent.h>
#include <fcntl.h>
#include <sys/ioctl.h>
#include <sys/stat.h>
#include <unistd.h>
#include "file.h"
#include "fio.h"
#include "lib/pow2.h"
#include "log.h"
#include "oslib/asprintf.h"
#include "smalloc.h"
#include "verify.h"
#include "zbd_types.h"
#include <linux/blkzoned.h>
#ifndef BLKFINISHZONE
#define BLKFINISHZONE _IOW(0x12, 136, struct blk_zone_range)
#endif
/*
* If the uapi headers installed on the system lacks zone capacity support,
* use our local versions. If the installed headers are recent enough to
* support zone capacity, do not redefine any structs.
*/
#ifndef CONFIG_HAVE_REP_CAPACITY
#define BLK_ZONE_REP_CAPACITY (1 << 0)
struct blk_zone_v2 {
__u64 start; /* Zone start sector */
__u64 len; /* Zone length in number of sectors */
__u64 wp; /* Zone write pointer position */
__u8 type; /* Zone type */
__u8 cond; /* Zone condition */
__u8 non_seq; /* Non-sequential write resources active */
__u8 reset; /* Reset write pointer recommended */
__u8 resv[4];
__u64 capacity; /* Zone capacity in number of sectors */
__u8 reserved[24];
};
#define blk_zone blk_zone_v2
struct blk_zone_report_v2 {
__u64 sector;
__u32 nr_zones;
__u32 flags;
struct blk_zone zones[0];
};
#define blk_zone_report blk_zone_report_v2
#endif /* CONFIG_HAVE_REP_CAPACITY */
/*
* Read up to 255 characters from the first line of a file. Strip the trailing
* newline.
*/
static char *read_file(const char *path)
{
char line[256], *p = line;
FILE *f;
f = fopen(path, "rb");
if (!f)
return NULL;
if (!fgets(line, sizeof(line), f))
line[0] = '\0';
strsep(&p, "\n");
fclose(f);
return strdup(line);
}
/*
* Get the value of a sysfs attribute for a block device.
*
* Returns NULL on failure.
* Returns a pointer to a string on success.
* The caller is responsible for freeing the memory.
*/
static char *blkzoned_get_sysfs_attr(const char *file_name, const char *attr)
{
char *attr_path = NULL;
struct stat statbuf;
char *sys_devno_path = NULL;
char *part_attr_path = NULL;
char *part_str = NULL;
char sys_path[PATH_MAX];
ssize_t sz;
char *delim = NULL;
char *attr_str = NULL;
if (stat(file_name, &statbuf) < 0)
goto out;
if (asprintf(&sys_devno_path, "/sys/dev/block/%d:%d",
major(statbuf.st_rdev), minor(statbuf.st_rdev)) < 0)
goto out;
sz = readlink(sys_devno_path, sys_path, sizeof(sys_path) - 1);
if (sz < 0)
goto out;
sys_path[sz] = '\0';
/*
* If the device is a partition device, cut the device name in the
* canonical sysfs path to obtain the sysfs path of the holder device.
* e.g.: /sys/devices/.../sda/sda1 -> /sys/devices/.../sda
*/
if (asprintf(&part_attr_path, "/sys/dev/block/%s/partition",
sys_path) < 0)
goto out;
part_str = read_file(part_attr_path);
if (part_str && *part_str == '1') {
delim = strrchr(sys_path, '/');
if (!delim)
goto out;
*delim = '\0';
}
if (asprintf(&attr_path,
"/sys/dev/block/%s/%s", sys_path, attr) < 0)
goto out;
attr_str = read_file(attr_path);
out:
free(attr_path);
free(part_str);
free(part_attr_path);
free(sys_devno_path);
return attr_str;
}
int blkzoned_get_zoned_model(struct thread_data *td, struct fio_file *f,
enum zbd_zoned_model *model)
{
char *model_str = NULL;
if (f->filetype != FIO_TYPE_BLOCK)
return -EINVAL;
*model = ZBD_NONE;
model_str = blkzoned_get_sysfs_attr(f->file_name, "queue/zoned");
if (!model_str)
return 0;
dprint(FD_ZBD, "%s: zbd model string: %s\n", f->file_name, model_str);
if (strcmp(model_str, "host-aware") == 0)
*model = ZBD_HOST_AWARE;
else if (strcmp(model_str, "host-managed") == 0)
*model = ZBD_HOST_MANAGED;
free(model_str);
return 0;
}
int blkzoned_get_max_open_zones(struct thread_data *td, struct fio_file *f,
unsigned int *max_open_zones)
{
char *max_open_str;
if (f->filetype != FIO_TYPE_BLOCK)
return -EIO;
max_open_str = blkzoned_get_sysfs_attr(f->file_name, "queue/max_open_zones");
if (!max_open_str) {
*max_open_zones = 0;
return 0;
}
dprint(FD_ZBD, "%s: max open zones supported by device: %s\n",
f->file_name, max_open_str);
*max_open_zones = atoll(max_open_str);
free(max_open_str);
return 0;
}
int blkzoned_get_max_active_zones(struct thread_data *td, struct fio_file *f,
unsigned int *max_active_zones)
{
char *max_active_str;
if (f->filetype != FIO_TYPE_BLOCK)
return -EIO;
max_active_str = blkzoned_get_sysfs_attr(f->file_name, "queue/max_active_zones");
if (!max_active_str) {
*max_active_zones = 0;
return 0;
}
dprint(FD_ZBD, "%s: max active zones supported by device: %s\n",
f->file_name, max_active_str);
*max_active_zones = atoll(max_active_str);
free(max_active_str);
return 0;
}
static uint64_t zone_capacity(struct blk_zone_report *hdr,
struct blk_zone *blkz)
{
if (hdr->flags & BLK_ZONE_REP_CAPACITY)
return blkz->capacity << 9;
return blkz->len << 9;
}
int blkzoned_report_zones(struct thread_data *td, struct fio_file *f,
uint64_t offset, struct zbd_zone *zones,
unsigned int nr_zones)
{
struct blk_zone_report *hdr = NULL;
struct blk_zone *blkz;
struct zbd_zone *z;
unsigned int i;
int fd = -1, ret;
fd = open(f->file_name, O_RDONLY | O_LARGEFILE);
if (fd < 0)
return -errno;
hdr = calloc(1, sizeof(struct blk_zone_report) +
nr_zones * sizeof(struct blk_zone));
if (!hdr) {
ret = -ENOMEM;
goto out;
}
hdr->nr_zones = nr_zones;
hdr->sector = offset >> 9;
ret = ioctl(fd, BLKREPORTZONE, hdr);
if (ret) {
log_err("%s: BLKREPORTZONE ioctl failed, ret=%d, err=%d.\n",
f->file_name, ret, -errno);
ret = -errno;
goto out;
}
nr_zones = hdr->nr_zones;
blkz = (void *) hdr + sizeof(*hdr);
z = &zones[0];
for (i = 0; i < nr_zones; i++, z++, blkz++) {
z->start = blkz->start << 9;
z->wp = blkz->wp << 9;
z->len = blkz->len << 9;
z->capacity = zone_capacity(hdr, blkz);
switch (blkz->type) {
case BLK_ZONE_TYPE_CONVENTIONAL:
z->type = ZBD_ZONE_TYPE_CNV;
break;
case BLK_ZONE_TYPE_SEQWRITE_REQ:
z->type = ZBD_ZONE_TYPE_SWR;
break;
case BLK_ZONE_TYPE_SEQWRITE_PREF:
z->type = ZBD_ZONE_TYPE_SWP;
break;
default:
td_verror(td, errno, "invalid zone type");
log_err("%s: invalid type for zone at sector %llu.\n",
f->file_name, (unsigned long long)offset >> 9);
ret = -EIO;
goto out;
}
switch (blkz->cond) {
case BLK_ZONE_COND_NOT_WP:
z->cond = ZBD_ZONE_COND_NOT_WP;
break;
case BLK_ZONE_COND_EMPTY:
z->cond = ZBD_ZONE_COND_EMPTY;
break;
case BLK_ZONE_COND_IMP_OPEN:
z->cond = ZBD_ZONE_COND_IMP_OPEN;
break;
case BLK_ZONE_COND_EXP_OPEN:
z->cond = ZBD_ZONE_COND_EXP_OPEN;
break;
case BLK_ZONE_COND_CLOSED:
z->cond = ZBD_ZONE_COND_CLOSED;
break;
case BLK_ZONE_COND_FULL:
z->cond = ZBD_ZONE_COND_FULL;
break;
case BLK_ZONE_COND_READONLY:
case BLK_ZONE_COND_OFFLINE:
default:
/* Treat all these conditions as offline (don't use!) */
z->cond = ZBD_ZONE_COND_OFFLINE;
z->wp = z->start;
}
}
ret = nr_zones;
out:
free(hdr);
close(fd);
return ret;
}
int blkzoned_reset_wp(struct thread_data *td, struct fio_file *f,
uint64_t offset, uint64_t length)
{
struct blk_zone_range zr = {
.sector = offset >> 9,
.nr_sectors = length >> 9,
};
int fd, ret = 0;
/* If the file is not yet opened, open it for this function. */
fd = f->fd;
if (fd < 0) {
fd = open(f->file_name, O_RDWR | O_LARGEFILE);
if (fd < 0)
return -errno;
}
if (ioctl(fd, BLKRESETZONE, &zr) < 0)
ret = -errno;
if (f->fd < 0)
close(fd);
return ret;
}
int blkzoned_finish_zone(struct thread_data *td, struct fio_file *f,
uint64_t offset, uint64_t length)
{
struct blk_zone_range zr = {
.sector = offset >> 9,
.nr_sectors = length >> 9,
};
int fd, ret = 0;
/* If the file is not yet opened, open it for this function. */
fd = f->fd;
if (fd < 0) {
fd = open(f->file_name, O_RDWR | O_LARGEFILE);
if (fd < 0)
return -errno;
}
if (ioctl(fd, BLKFINISHZONE, &zr) < 0) {
ret = -errno;
/*
* Kernel versions older than 5.5 do not support BLKFINISHZONE
* and return the ENOTTY error code. These old kernels only
* support block devices that close zones automatically.
*/
if (ret == ENOTTY)
ret = 0;
}
if (f->fd < 0)
close(fd);
return ret;
}
int blkzoned_move_zone_wp(struct thread_data *td, struct fio_file *f,
struct zbd_zone *z, uint64_t length, const char *buf)
{
int fd, ret = 0;
/* If the file is not yet open, open it for this function */
fd = f->fd;
if (fd < 0) {
fd = open(f->file_name, O_WRONLY | O_DIRECT);
if (fd < 0)
return -errno;
}
/* If write data is not provided, fill zero to move the write pointer */
if (!buf) {
ret = fallocate(fd, FALLOC_FL_ZERO_RANGE, z->wp, length);
goto out;
}
if (pwrite(fd, buf, length, z->wp) < 0)
ret = -errno;
out:
if (f->fd < 0)
close(fd);
return ret;
}
|