oslib/linux-blkzoned: move sysfs reading into its own function
[fio.git] / oslib / linux-blkzoned.c
1 /*
2  * Copyright (C) 2020 Western Digital Corporation or its affiliates.
3  *
4  * This file is released under the GPL.
5  */
6 #include <errno.h>
7 #include <string.h>
8 #include <stdlib.h>
9 #include <dirent.h>
10 #include <fcntl.h>
11 #include <sys/ioctl.h>
12 #include <sys/stat.h>
13 #include <unistd.h>
14
15 #include "file.h"
16 #include "fio.h"
17 #include "lib/pow2.h"
18 #include "log.h"
19 #include "oslib/asprintf.h"
20 #include "smalloc.h"
21 #include "verify.h"
22 #include "zbd_types.h"
23
24 #include <linux/blkzoned.h>
25
26 /*
27  * If the uapi headers installed on the system lacks zone capacity support,
28  * use our local versions. If the installed headers are recent enough to
29  * support zone capacity, do not redefine any structs.
30  */
31 #ifndef CONFIG_HAVE_REP_CAPACITY
32 #define BLK_ZONE_REP_CAPACITY   (1 << 0)
33
34 struct blk_zone_v2 {
35         __u64   start;          /* Zone start sector */
36         __u64   len;            /* Zone length in number of sectors */
37         __u64   wp;             /* Zone write pointer position */
38         __u8    type;           /* Zone type */
39         __u8    cond;           /* Zone condition */
40         __u8    non_seq;        /* Non-sequential write resources active */
41         __u8    reset;          /* Reset write pointer recommended */
42         __u8    resv[4];
43         __u64   capacity;       /* Zone capacity in number of sectors */
44         __u8    reserved[24];
45 };
46 #define blk_zone blk_zone_v2
47
48 struct blk_zone_report_v2 {
49         __u64   sector;
50         __u32   nr_zones;
51         __u32   flags;
52 struct blk_zone zones[0];
53 };
54 #define blk_zone_report blk_zone_report_v2
55 #endif /* CONFIG_HAVE_REP_CAPACITY */
56
57 /*
58  * Read up to 255 characters from the first line of a file. Strip the trailing
59  * newline.
60  */
61 static char *read_file(const char *path)
62 {
63         char line[256], *p = line;
64         FILE *f;
65
66         f = fopen(path, "rb");
67         if (!f)
68                 return NULL;
69         if (!fgets(line, sizeof(line), f))
70                 line[0] = '\0';
71         strsep(&p, "\n");
72         fclose(f);
73
74         return strdup(line);
75 }
76
77 /*
78  * Get the value of a sysfs attribute for a block device.
79  *
80  * Returns NULL on failure.
81  * Returns a pointer to a string on success.
82  * The caller is responsible for freeing the memory.
83  */
84 static char *blkzoned_get_sysfs_attr(const char *file_name, const char *attr)
85 {
86         char *attr_path = NULL;
87         struct stat statbuf;
88         char *sys_devno_path = NULL;
89         char *part_attr_path = NULL;
90         char *part_str = NULL;
91         char sys_path[PATH_MAX];
92         ssize_t sz;
93         char *delim = NULL;
94         char *attr_str = NULL;
95
96         if (stat(file_name, &statbuf) < 0)
97                 goto out;
98
99         if (asprintf(&sys_devno_path, "/sys/dev/block/%d:%d",
100                      major(statbuf.st_rdev), minor(statbuf.st_rdev)) < 0)
101                 goto out;
102
103         sz = readlink(sys_devno_path, sys_path, sizeof(sys_path) - 1);
104         if (sz < 0)
105                 goto out;
106         sys_path[sz] = '\0';
107
108         /*
109          * If the device is a partition device, cut the device name in the
110          * canonical sysfs path to obtain the sysfs path of the holder device.
111          *   e.g.:  /sys/devices/.../sda/sda1 -> /sys/devices/.../sda
112          */
113         if (asprintf(&part_attr_path, "/sys/dev/block/%s/partition",
114                      sys_path) < 0)
115                 goto out;
116         part_str = read_file(part_attr_path);
117         if (part_str && *part_str == '1') {
118                 delim = strrchr(sys_path, '/');
119                 if (!delim)
120                         goto out;
121                 *delim = '\0';
122         }
123
124         if (asprintf(&attr_path,
125                      "/sys/dev/block/%s/%s", sys_path, attr) < 0)
126                 goto out;
127
128         attr_str = read_file(attr_path);
129 out:
130         free(attr_path);
131         free(part_str);
132         free(part_attr_path);
133         free(sys_devno_path);
134
135         return attr_str;
136 }
137
138 int blkzoned_get_zoned_model(struct thread_data *td, struct fio_file *f,
139                              enum zbd_zoned_model *model)
140 {
141         char *model_str = NULL;
142
143         if (f->filetype != FIO_TYPE_BLOCK) {
144                 *model = ZBD_IGNORE;
145                 return 0;
146         }
147
148         *model = ZBD_NONE;
149
150         model_str = blkzoned_get_sysfs_attr(f->file_name, "queue/zoned");
151         if (!model_str)
152                 return 0;
153
154         dprint(FD_ZBD, "%s: zbd model string: %s\n", f->file_name, model_str);
155         if (strcmp(model_str, "host-aware") == 0)
156                 *model = ZBD_HOST_AWARE;
157         else if (strcmp(model_str, "host-managed") == 0)
158                 *model = ZBD_HOST_MANAGED;
159
160         free(model_str);
161
162         return 0;
163 }
164
165 static uint64_t zone_capacity(struct blk_zone_report *hdr,
166                               struct blk_zone *blkz)
167 {
168         if (hdr->flags & BLK_ZONE_REP_CAPACITY)
169                 return blkz->capacity << 9;
170         return blkz->len << 9;
171 }
172
173 int blkzoned_report_zones(struct thread_data *td, struct fio_file *f,
174                           uint64_t offset, struct zbd_zone *zones,
175                           unsigned int nr_zones)
176 {
177         struct blk_zone_report *hdr = NULL;
178         struct blk_zone *blkz;
179         struct zbd_zone *z;
180         unsigned int i;
181         int fd = -1, ret;
182
183         fd = open(f->file_name, O_RDONLY | O_LARGEFILE);
184         if (fd < 0)
185                 return -errno;
186
187         hdr = calloc(1, sizeof(struct blk_zone_report) +
188                         nr_zones * sizeof(struct blk_zone));
189         if (!hdr) {
190                 ret = -ENOMEM;
191                 goto out;
192         }
193
194         hdr->nr_zones = nr_zones;
195         hdr->sector = offset >> 9;
196         ret = ioctl(fd, BLKREPORTZONE, hdr);
197         if (ret) {
198                 ret = -errno;
199                 goto out;
200         }
201
202         nr_zones = hdr->nr_zones;
203         blkz = (void *) hdr + sizeof(*hdr);
204         z = &zones[0];
205         for (i = 0; i < nr_zones; i++, z++, blkz++) {
206                 z->start = blkz->start << 9;
207                 z->wp = blkz->wp << 9;
208                 z->len = blkz->len << 9;
209                 z->capacity = zone_capacity(hdr, blkz);
210
211                 switch (blkz->type) {
212                 case BLK_ZONE_TYPE_CONVENTIONAL:
213                         z->type = ZBD_ZONE_TYPE_CNV;
214                         break;
215                 case BLK_ZONE_TYPE_SEQWRITE_REQ:
216                         z->type = ZBD_ZONE_TYPE_SWR;
217                         break;
218                 case BLK_ZONE_TYPE_SEQWRITE_PREF:
219                         z->type = ZBD_ZONE_TYPE_SWP;
220                         break;
221                 default:
222                         td_verror(td, errno, "invalid zone type");
223                         log_err("%s: invalid type for zone at sector %llu.\n",
224                                 f->file_name, (unsigned long long)offset >> 9);
225                         ret = -EIO;
226                         goto out;
227                 }
228
229                 switch (blkz->cond) {
230                 case BLK_ZONE_COND_NOT_WP:
231                         z->cond = ZBD_ZONE_COND_NOT_WP;
232                         break;
233                 case BLK_ZONE_COND_EMPTY:
234                         z->cond = ZBD_ZONE_COND_EMPTY;
235                         break;
236                 case BLK_ZONE_COND_IMP_OPEN:
237                         z->cond = ZBD_ZONE_COND_IMP_OPEN;
238                         break;
239                 case BLK_ZONE_COND_EXP_OPEN:
240                         z->cond = ZBD_ZONE_COND_EXP_OPEN;
241                         break;
242                 case BLK_ZONE_COND_CLOSED:
243                         z->cond = ZBD_ZONE_COND_CLOSED;
244                         break;
245                 case BLK_ZONE_COND_FULL:
246                         z->cond = ZBD_ZONE_COND_FULL;
247                         break;
248                 case BLK_ZONE_COND_READONLY:
249                 case BLK_ZONE_COND_OFFLINE:
250                 default:
251                         /* Treat all these conditions as offline (don't use!) */
252                         z->cond = ZBD_ZONE_COND_OFFLINE;
253                         z->wp = z->start;
254                 }
255         }
256
257         ret = nr_zones;
258 out:
259         free(hdr);
260         close(fd);
261
262         return ret;
263 }
264
265 int blkzoned_reset_wp(struct thread_data *td, struct fio_file *f,
266                       uint64_t offset, uint64_t length)
267 {
268         struct blk_zone_range zr = {
269                 .sector         = offset >> 9,
270                 .nr_sectors     = length >> 9,
271         };
272         int fd, ret = 0;
273
274         /* If the file is not yet opened, open it for this function. */
275         fd = f->fd;
276         if (fd < 0) {
277                 fd = open(f->file_name, O_RDWR | O_LARGEFILE);
278                 if (fd < 0)
279                         return -errno;
280         }
281
282         if (ioctl(fd, BLKRESETZONE, &zr) < 0)
283                 ret = -errno;
284
285         if (f->fd < 0)
286                 close(fd);
287
288         return ret;
289 }