]> git.sesse.net Git - bcachefs-tools-debian/blob - linux/blkdev.c
b545e95da8772dc1e0c7d69e20e32144b90b6976
[bcachefs-tools-debian] / linux / blkdev.c
1
2 #include <alloca.h>
3 #include <errno.h>
4 #include <fcntl.h>
5 #include <sys/ioctl.h>
6 #include <sys/stat.h>
7 #include <sys/types.h>
8 #include <sys/uio.h>
9 #include <unistd.h>
10
11 #include <libaio.h>
12
13 #ifdef CONFIG_VALGRIND
14 #include <valgrind/memcheck.h>
15 #endif
16
17 #include <linux/bio.h>
18 #include <linux/blkdev.h>
19 #include <linux/completion.h>
20 #include <linux/fs.h>
21 #include <linux/kthread.h>
22
23 #include "tools-util.h"
24
25 struct fops {
26         void (*init)(void);
27         void (*cleanup)(void);
28         void (*read)(struct bio *bio, struct iovec * iov, unsigned i);
29         void (*write)(struct bio *bio, struct iovec * iov, unsigned i);
30 };
31
32 static struct fops *fops;
33 static io_context_t aio_ctx;
34 static atomic_t running_requests;
35
36 void generic_make_request(struct bio *bio)
37 {
38         struct iovec *iov;
39         struct bvec_iter iter;
40         struct bio_vec bv;
41         ssize_t ret;
42         unsigned i;
43
44         if (bio->bi_opf & REQ_PREFLUSH) {
45                 ret = fdatasync(bio->bi_bdev->bd_fd);
46                 if (ret) {
47                         fprintf(stderr, "fsync error: %m\n");
48                         bio->bi_status = BLK_STS_IOERR;
49                         bio_endio(bio);
50                         return;
51                 }
52         }
53
54         i = 0;
55         bio_for_each_segment(bv, bio, iter)
56                 i++;
57
58         iov = alloca(sizeof(*iov) * i);
59
60         i = 0;
61         bio_for_each_segment(bv, bio, iter) {
62                 void *start = page_address(bv.bv_page) + bv.bv_offset;
63                 size_t len = bv.bv_len;
64
65                 iov[i++] = (struct iovec) {
66                         .iov_base = start,
67                         .iov_len = len,
68                 };
69
70 #ifdef CONFIG_VALGRIND
71                 /* To be pedantic it should only be on IO completion. */
72                 if (bio_op(bio) == REQ_OP_READ)
73                         VALGRIND_MAKE_MEM_DEFINED(start, len);
74 #endif
75         }
76
77         switch (bio_op(bio)) {
78         case REQ_OP_READ:
79                 fops->read(bio, iov, i);
80                 break;
81         case REQ_OP_WRITE:
82                 fops->write(bio, iov, i);
83                 break;
84         case REQ_OP_FLUSH:
85                 ret = fsync(bio->bi_bdev->bd_fd);
86                 if (ret)
87                         die("fsync error: %m");
88                 bio_endio(bio);
89                 break;
90         default:
91                 BUG();
92         }
93 }
94
95 static void submit_bio_wait_endio(struct bio *bio)
96 {
97         complete(bio->bi_private);
98 }
99
100 int submit_bio_wait(struct bio *bio)
101 {
102         struct completion done;
103
104         init_completion(&done);
105         bio->bi_private = &done;
106         bio->bi_end_io = submit_bio_wait_endio;
107         bio->bi_opf |= REQ_SYNC;
108         submit_bio(bio);
109         wait_for_completion(&done);
110
111         return blk_status_to_errno(bio->bi_status);
112 }
113
114 int blkdev_issue_discard(struct block_device *bdev,
115                          sector_t sector, sector_t nr_sects,
116                          gfp_t gfp_mask, unsigned long flags)
117 {
118         return 0;
119 }
120
121 unsigned bdev_logical_block_size(struct block_device *bdev)
122 {
123         struct stat statbuf;
124         unsigned blksize;
125         int ret;
126
127         ret = fstat(bdev->bd_fd, &statbuf);
128         BUG_ON(ret);
129
130         if (!S_ISBLK(statbuf.st_mode))
131                 return statbuf.st_blksize >> 9;
132
133         ret = ioctl(bdev->bd_fd, BLKPBSZGET, &blksize);
134         BUG_ON(ret);
135
136         return blksize >> 9;
137 }
138
139 sector_t get_capacity(struct gendisk *disk)
140 {
141         struct block_device *bdev =
142                 container_of(disk, struct block_device, __bd_disk);
143         struct stat statbuf;
144         u64 bytes;
145         int ret;
146
147         ret = fstat(bdev->bd_fd, &statbuf);
148         BUG_ON(ret);
149
150         if (!S_ISBLK(statbuf.st_mode))
151                 return statbuf.st_size >> 9;
152
153         ret = ioctl(bdev->bd_fd, BLKGETSIZE64, &bytes);
154         BUG_ON(ret);
155
156         return bytes >> 9;
157 }
158
159 void blkdev_put(struct block_device *bdev, fmode_t mode)
160 {
161         fdatasync(bdev->bd_fd);
162         close(bdev->bd_sync_fd);
163         close(bdev->bd_fd);
164         free(bdev);
165 }
166
167 struct block_device *blkdev_get_by_path(const char *path, fmode_t mode,
168                                         void *holder)
169 {
170         struct block_device *bdev;
171         int fd, sync_fd, buffered_fd, flags = 0;
172
173         if ((mode & (FMODE_READ|FMODE_WRITE)) == (FMODE_READ|FMODE_WRITE))
174                 flags = O_RDWR;
175         else if (mode & FMODE_READ)
176                 flags = O_RDONLY;
177         else if (mode & FMODE_WRITE)
178                 flags = O_WRONLY;
179
180 #if 0
181         /* using O_EXCL doesn't work with opening twice for an O_SYNC fd: */
182         if (mode & FMODE_EXCL)
183                 flags |= O_EXCL;
184 #endif
185
186         fd = open(path, flags|O_DIRECT);
187         if (fd < 0)
188                 return ERR_PTR(-errno);
189
190         sync_fd = xopen(path, flags|O_DIRECT|O_SYNC);
191         buffered_fd = xopen(path, flags);
192
193         bdev = malloc(sizeof(*bdev));
194         memset(bdev, 0, sizeof(*bdev));
195
196         strncpy(bdev->name, path, sizeof(bdev->name));
197         bdev->name[sizeof(bdev->name) - 1] = '\0';
198
199         bdev->bd_dev            = xfstat(fd).st_rdev;
200         bdev->bd_fd             = fd;
201         bdev->bd_sync_fd        = sync_fd;
202         bdev->bd_buffered_fd    = buffered_fd;
203         bdev->bd_holder         = holder;
204         bdev->bd_disk           = &bdev->__bd_disk;
205         bdev->bd_disk->bdi      = &bdev->bd_disk->__bdi;
206         bdev->queue.backing_dev_info = bdev->bd_disk->bdi;
207
208         return bdev;
209 }
210
211 void bdput(struct block_device *bdev)
212 {
213         BUG();
214 }
215
216 int lookup_bdev(const char *path, dev_t *dev)
217 {
218         return -EINVAL;
219 }
220
221 static void io_fallback(void)
222 {
223         fops++;
224         if (fops->init == NULL)
225                 die("no fallback possible, something is very wrong");
226         fops->init();
227 }
228
229 static void sync_check(struct bio *bio, int ret)
230 {
231         if (ret != bio->bi_iter.bi_size) {
232                 die("IO error: %s\n", strerror(-ret));
233         }
234
235         if (bio->bi_opf & REQ_FUA) {
236                 ret = fdatasync(bio->bi_bdev->bd_fd);
237                 if (ret)
238                         die("fsync error: %s\n", strerror(-ret));
239         }
240         bio_endio(bio);
241 }
242
243 static void sync_init(void) {}
244
245 static void sync_cleanup(void)
246 {
247         /* not necessary? */
248         sync();
249 }
250
251 static void sync_read(struct bio *bio, struct iovec * iov, unsigned i)
252 {
253
254         int fd = bio->bi_opf & REQ_FUA
255                         ? bio->bi_bdev->bd_sync_fd
256                         : bio->bi_bdev->bd_fd;
257         ssize_t ret = preadv(fd, iov, i, bio->bi_iter.bi_sector << 9);
258         sync_check(bio, ret);
259 }
260
261 static void sync_write(struct bio *bio, struct iovec * iov, unsigned i)
262 {
263         int fd = bio->bi_opf & REQ_FUA
264                         ? bio->bi_bdev->bd_sync_fd
265                         : bio->bi_bdev->bd_fd;
266         ssize_t ret = pwritev(fd, iov, i, bio->bi_iter.bi_sector << 9);
267         sync_check(bio, ret);
268 }
269
270 static int aio_completion_thread(void *arg)
271 {
272         struct io_event events[8], *ev;
273         int ret;
274         bool stop = false;
275
276         while (!stop) {
277                 ret = io_getevents(aio_ctx, 1, ARRAY_SIZE(events),
278                                    events, NULL);
279
280                 if (ret < 0 && ret == -EINTR)
281                         continue;
282                 if (ret < 0)
283                         die("io_getevents() error: %s", strerror(-ret));
284
285                 for (ev = events; ev < events + ret; ev++) {
286                         struct bio *bio = (struct bio *) ev->data;
287
288                         /* This should only happen during blkdev_cleanup() */
289                         if (!bio) {
290                                 BUG_ON(atomic_read(&running_requests) != 0);
291                                 stop = true;
292                                 continue;
293                         }
294
295                         if (ev->res != bio->bi_iter.bi_size)
296                                 bio->bi_status = BLK_STS_IOERR;
297
298                         bio_endio(bio);
299                         atomic_dec(&running_requests);
300                 }
301         }
302
303         return 0;
304 }
305
306 static struct task_struct *aio_task = NULL;
307
308 static void aio_init(void)
309 {
310         struct task_struct *p;
311         long err = io_setup(256, &aio_ctx);
312         if (!err) {
313                 p = kthread_run(aio_completion_thread, NULL, "aio_completion");
314                 BUG_ON(IS_ERR(p));
315
316                 aio_task = p;
317
318         } else if (err == -ENOSYS) {
319                 io_fallback();
320         } else {
321                 die("io_setup() error: %s", strerror(err));
322         }
323 }
324
325 static void aio_cleanup(void)
326 {
327         struct task_struct *p = NULL;
328         swap(aio_task, p);
329         get_task_struct(p);
330
331         /* I mean, really?! IO_CMD_NOOP is even defined, but not implemented. */
332         int fds[2];
333         int ret = pipe(fds);
334         if (ret != 0)
335                 die("pipe err: %s", strerror(ret));
336
337         /* Wake up the completion thread with spurious work. */
338         int junk = 0;
339         struct iocb iocb = {
340                 .aio_lio_opcode = IO_CMD_PWRITE,
341                 .data = NULL, /* Signal to stop */
342                 .aio_fildes = fds[1],
343                 .u.c.buf = &junk,
344                 .u.c.nbytes = 1,
345         }, *iocbp = &iocb;
346         ret = io_submit(aio_ctx, 1, &iocbp);
347         if (ret != 1)
348                 die("io_submit cleanup err: %s", strerror(-ret));
349
350         ret = kthread_stop(p);
351         BUG_ON(ret);
352
353         put_task_struct(p);
354
355         close(fds[0]);
356         close(fds[1]);
357 }
358
359 static void aio_op(struct bio *bio, struct iovec *iov, unsigned i, int opcode)
360 {
361         ssize_t ret;
362         struct iocb iocb = {
363                 .data           = bio,
364                 .aio_fildes     = bio->bi_opf & REQ_FUA
365                         ? bio->bi_bdev->bd_sync_fd
366                         : bio->bi_bdev->bd_fd,
367                 .aio_lio_opcode = opcode,
368                 .u.c.buf        = iov,
369                 .u.c.nbytes     = i,
370                 .u.c.offset     = bio->bi_iter.bi_sector << 9,
371
372         }, *iocbp = &iocb;
373
374         atomic_inc(&running_requests);
375         ret = io_submit(aio_ctx, 1, &iocbp);
376         if (ret != 1)
377                 die("io_submit err: %s", strerror(-ret));
378 }
379
380 static void aio_read(struct bio *bio, struct iovec *iov, unsigned i)
381 {
382         aio_op(bio, iov, i, IO_CMD_PREADV);
383 }
384
385 static void aio_write(struct bio *bio, struct iovec * iov, unsigned i)
386 {
387         aio_op(bio, iov, i, IO_CMD_PWRITEV);
388 }
389
390
391 /* not implemented */
392 static void uring_init(void) {
393         io_fallback();
394 }
395
396 struct fops fops_list[] = {
397         {
398                 .init           = uring_init,
399         }, {
400                 .init           = aio_init,
401                 .cleanup        = aio_cleanup,
402                 .read           = aio_read,
403                 .write          = aio_write,
404         }, {
405                 .init           = sync_init,
406                 .cleanup        = sync_cleanup,
407                 .read           = sync_read,
408                 .write          = sync_write,
409         }, {
410                 /* NULL */
411         }
412 };
413
414 __attribute__((constructor(102)))
415 static void blkdev_init(void)
416 {
417         fops = fops_list;
418         fops->init();
419 }
420
421 __attribute__((destructor(102)))
422 static void blkdev_cleanup(void)
423 {
424         fops->cleanup();
425 }