]> git.sesse.net Git - bcachefs-tools-debian/blob - cmd_fusemount.c
Add packaging workflow
[bcachefs-tools-debian] / cmd_fusemount.c
1 #ifdef BCACHEFS_FUSE
2
3 #include <errno.h>
4 #include <float.h>
5 #include <getopt.h>
6 #include <stdio.h>
7 #include <sys/statvfs.h>
8
9 #include <fuse_lowlevel.h>
10
11 #include "cmds.h"
12 #include "libbcachefs.h"
13 #include "tools-util.h"
14
15 #include "libbcachefs/bcachefs.h"
16 #include "libbcachefs/alloc_foreground.h"
17 #include "libbcachefs/btree_iter.h"
18 #include "libbcachefs/buckets.h"
19 #include "libbcachefs/dirent.h"
20 #include "libbcachefs/errcode.h"
21 #include "libbcachefs/error.h"
22 #include "libbcachefs/fs-common.h"
23 #include "libbcachefs/inode.h"
24 #include "libbcachefs/io.h"
25 #include "libbcachefs/opts.h"
26 #include "libbcachefs/super.h"
27
28 /* mode_to_type(): */
29 #include "libbcachefs/fs.h"
30
31 #include <linux/dcache.h>
32
33 /* XXX cut and pasted from fsck.c */
34 #define QSTR(n) { { { .len = strlen(n) } }, .name = n }
35
36 static inline u64 map_root_ino(u64 ino)
37 {
38         return ino == 1 ? 4096 : ino;
39 }
40
41 static inline u64 unmap_root_ino(u64 ino)
42 {
43         return ino == 4096 ? 1 : ino;
44 }
45
46 static struct stat inode_to_stat(struct bch_fs *c,
47                                  struct bch_inode_unpacked *bi)
48 {
49         return (struct stat) {
50                 .st_ino         = unmap_root_ino(bi->bi_inum),
51                 .st_size        = bi->bi_size,
52                 .st_mode        = bi->bi_mode,
53                 .st_uid         = bi->bi_uid,
54                 .st_gid         = bi->bi_gid,
55                 .st_nlink       = bch2_inode_nlink_get(bi),
56                 .st_rdev        = bi->bi_dev,
57                 .st_blksize     = block_bytes(c),
58                 .st_blocks      = bi->bi_sectors,
59                 .st_atim        = bch2_time_to_timespec(c, bi->bi_atime),
60                 .st_mtim        = bch2_time_to_timespec(c, bi->bi_mtime),
61                 .st_ctim        = bch2_time_to_timespec(c, bi->bi_ctime),
62         };
63 }
64
65 static struct fuse_entry_param inode_to_entry(struct bch_fs *c,
66                                               struct bch_inode_unpacked *bi)
67 {
68         return (struct fuse_entry_param) {
69                 .ino            = unmap_root_ino(bi->bi_inum),
70                 .generation     = bi->bi_generation,
71                 .attr           = inode_to_stat(c, bi),
72                 .attr_timeout   = DBL_MAX,
73                 .entry_timeout  = DBL_MAX,
74         };
75 }
76
77 static void bcachefs_fuse_init(void *arg, struct fuse_conn_info *conn)
78 {
79         if (conn->capable & FUSE_CAP_WRITEBACK_CACHE) {
80                 fuse_log(FUSE_LOG_DEBUG, "fuse_init: activating writeback\n");
81                 conn->want |= FUSE_CAP_WRITEBACK_CACHE;
82         } else
83                 fuse_log(FUSE_LOG_DEBUG, "fuse_init: writeback not capable\n");
84
85         //conn->want |= FUSE_CAP_POSIX_ACL;
86 }
87
88 static void bcachefs_fuse_destroy(void *arg)
89 {
90         struct bch_fs *c = arg;
91
92         bch2_fs_stop(c);
93 }
94
95 static void bcachefs_fuse_lookup(fuse_req_t req, fuse_ino_t dir,
96                                  const char *name)
97 {
98         struct bch_fs *c = fuse_req_userdata(req);
99         struct bch_inode_unpacked bi;
100         struct qstr qstr = QSTR(name);
101         u64 inum;
102         int ret;
103
104         fuse_log(FUSE_LOG_DEBUG, "fuse_lookup(dir=%llu name=%s)\n",
105                  dir, name);
106
107         dir = map_root_ino(dir);
108
109         ret = bch2_inode_find_by_inum(c, dir, &bi);
110         if (ret) {
111                 fuse_reply_err(req, -ret);
112                 return;
113         }
114
115         struct bch_hash_info hash_info = bch2_hash_info_init(c, &bi);
116
117         inum = bch2_dirent_lookup(c, dir, &hash_info, &qstr);
118         if (!inum) {
119                 struct fuse_entry_param e = {
120                         .attr_timeout   = DBL_MAX,
121                         .entry_timeout  = DBL_MAX,
122                 };
123                 fuse_reply_entry(req, &e);
124                 return;
125         }
126
127         ret = bch2_inode_find_by_inum(c, inum, &bi);
128         if (ret)
129                 goto err;
130
131         fuse_log(FUSE_LOG_DEBUG, "fuse_lookup ret(inum=%llu)\n",
132                  bi.bi_inum);
133
134         struct fuse_entry_param e = inode_to_entry(c, &bi);
135         fuse_reply_entry(req, &e);
136         return;
137 err:
138         fuse_log(FUSE_LOG_DEBUG, "fuse_lookup error %i\n", ret);
139         fuse_reply_err(req, -ret);
140 }
141
142 static void bcachefs_fuse_getattr(fuse_req_t req, fuse_ino_t inum,
143                                   struct fuse_file_info *fi)
144 {
145         struct bch_fs *c = fuse_req_userdata(req);
146         struct bch_inode_unpacked bi;
147         struct stat attr;
148         int ret;
149
150         fuse_log(FUSE_LOG_DEBUG, "fuse_getattr(inum=%llu)\n",
151                  inum);
152
153         inum = map_root_ino(inum);
154
155         ret = bch2_inode_find_by_inum(c, inum, &bi);
156         if (ret) {
157                 fuse_log(FUSE_LOG_DEBUG, "fuse_getattr error %i\n", ret);
158                 fuse_reply_err(req, -ret);
159                 return;
160         }
161
162         fuse_log(FUSE_LOG_DEBUG, "fuse_getattr success\n");
163
164         attr = inode_to_stat(c, &bi);
165         fuse_reply_attr(req, &attr, DBL_MAX);
166 }
167
168 static void bcachefs_fuse_setattr(fuse_req_t req, fuse_ino_t inum,
169                                   struct stat *attr, int to_set,
170                                   struct fuse_file_info *fi)
171 {
172         struct bch_fs *c = fuse_req_userdata(req);
173         struct bch_inode_unpacked inode_u;
174         struct btree_trans trans;
175         struct btree_iter iter;
176         u64 now;
177         int ret;
178
179         fuse_log(FUSE_LOG_DEBUG, "bcachefs_fuse_setattr(%llu, %x)\n",
180                  inum, to_set);
181
182         inum = map_root_ino(inum);
183
184         bch2_trans_init(&trans, c, 0, 0);
185 retry:
186         bch2_trans_begin(&trans);
187         now = bch2_current_time(c);
188
189         ret = bch2_inode_peek(&trans, &iter, &inode_u, inum, BTREE_ITER_INTENT);
190         if (ret)
191                 goto err;
192
193         if (to_set & FUSE_SET_ATTR_MODE)
194                 inode_u.bi_mode = attr->st_mode;
195         if (to_set & FUSE_SET_ATTR_UID)
196                 inode_u.bi_uid  = attr->st_uid;
197         if (to_set & FUSE_SET_ATTR_GID)
198                 inode_u.bi_gid  = attr->st_gid;
199         if (to_set & FUSE_SET_ATTR_SIZE)
200                 inode_u.bi_size = attr->st_size;
201         if (to_set & FUSE_SET_ATTR_ATIME)
202                 inode_u.bi_atime = timespec_to_bch2_time(c, attr->st_atim);
203         if (to_set & FUSE_SET_ATTR_MTIME)
204                 inode_u.bi_mtime = timespec_to_bch2_time(c, attr->st_mtim);
205         if (to_set & FUSE_SET_ATTR_ATIME_NOW)
206                 inode_u.bi_atime = now;
207         if (to_set & FUSE_SET_ATTR_MTIME_NOW)
208                 inode_u.bi_mtime = now;
209         /* TODO: CTIME? */
210
211         ret   = bch2_inode_write(&trans, &iter, &inode_u) ?:
212                 bch2_trans_commit(&trans, NULL, NULL,
213                                   BTREE_INSERT_NOFAIL);
214 err:
215         bch2_trans_iter_exit(&trans, &iter);
216         if (ret == -EINTR)
217                 goto retry;
218
219         bch2_trans_exit(&trans);
220
221         if (!ret) {
222                 *attr = inode_to_stat(c, &inode_u);
223                 fuse_reply_attr(req, attr, DBL_MAX);
224         } else {
225                 fuse_reply_err(req, -ret);
226         }
227 }
228
229 static int do_create(struct bch_fs *c, u64 dir,
230                      const char *name, mode_t mode, dev_t rdev,
231                      struct bch_inode_unpacked *new_inode)
232 {
233         struct qstr qstr = QSTR(name);
234         struct bch_inode_unpacked dir_u;
235
236         dir = map_root_ino(dir);
237
238         bch2_inode_init_early(c, new_inode);
239
240         return bch2_trans_do(c, NULL, NULL, 0,
241                         bch2_create_trans(&trans,
242                                 dir, &dir_u,
243                                 new_inode, &qstr,
244                                 0, 0, mode, rdev, NULL, NULL));
245 }
246
247 static void bcachefs_fuse_mknod(fuse_req_t req, fuse_ino_t dir,
248                                 const char *name, mode_t mode,
249                                 dev_t rdev)
250 {
251         struct bch_fs *c = fuse_req_userdata(req);
252         struct bch_inode_unpacked new_inode;
253         int ret;
254
255         fuse_log(FUSE_LOG_DEBUG, "bcachefs_fuse_mknod(%llu, %s, %x, %x)\n",
256                  dir, name, mode, rdev);
257         ret = do_create(c, dir, name, mode, rdev, &new_inode);
258         if (ret)
259                 goto err;
260
261         struct fuse_entry_param e = inode_to_entry(c, &new_inode);
262         fuse_reply_entry(req, &e);
263         return;
264 err:
265         fuse_reply_err(req, -ret);
266 }
267
268 static void bcachefs_fuse_mkdir(fuse_req_t req, fuse_ino_t dir,
269                                 const char *name, mode_t mode)
270 {
271         fuse_log(FUSE_LOG_DEBUG, "bcachefs_fuse_mkdir(%llu, %s, %x)\n",
272                  dir, name, mode);
273
274         BUG_ON(mode & S_IFMT);
275
276         mode |= S_IFDIR;
277         bcachefs_fuse_mknod(req, dir, name, mode, 0);
278 }
279
280 static void bcachefs_fuse_unlink(fuse_req_t req, fuse_ino_t dir,
281                                  const char *name)
282 {
283         struct bch_fs *c = fuse_req_userdata(req);
284         struct bch_inode_unpacked dir_u, inode_u;
285         struct qstr qstr = QSTR(name);
286         int ret;
287
288         fuse_log(FUSE_LOG_DEBUG, "bcachefs_fuse_unlink(%llu, %s)\n", dir, name);
289
290         dir = map_root_ino(dir);
291
292         ret = bch2_trans_do(c, NULL, NULL, BTREE_INSERT_NOFAIL,
293                             bch2_unlink_trans(&trans, dir, &dir_u,
294                                               &inode_u, &qstr));
295
296         fuse_reply_err(req, -ret);
297 }
298
299 static void bcachefs_fuse_rmdir(fuse_req_t req, fuse_ino_t dir,
300                                 const char *name)
301 {
302         fuse_log(FUSE_LOG_DEBUG, "bcachefs_fuse_rmdir(%llu, %s)\n", dir, name);
303
304         dir = map_root_ino(dir);
305
306         bcachefs_fuse_unlink(req, dir, name);
307 }
308
309 static void bcachefs_fuse_rename(fuse_req_t req,
310                                  fuse_ino_t src_dir, const char *srcname,
311                                  fuse_ino_t dst_dir, const char *dstname,
312                                  unsigned flags)
313 {
314         struct bch_fs *c = fuse_req_userdata(req);
315         struct bch_inode_unpacked dst_dir_u, src_dir_u;
316         struct bch_inode_unpacked src_inode_u, dst_inode_u;
317         struct qstr dst_name = QSTR(srcname);
318         struct qstr src_name = QSTR(dstname);
319         int ret;
320
321         fuse_log(FUSE_LOG_DEBUG,
322                  "bcachefs_fuse_rename(%llu, %s, %llu, %s, %x)\n",
323                  src_dir, srcname, dst_dir, dstname, flags);
324
325         src_dir = map_root_ino(src_dir);
326         dst_dir = map_root_ino(dst_dir);
327
328         /* XXX handle overwrites */
329         ret = bch2_trans_do(c, NULL, NULL, 0,
330                 bch2_rename_trans(&trans,
331                                   src_dir, &src_dir_u,
332                                   dst_dir, &dst_dir_u,
333                                   &src_inode_u, &dst_inode_u,
334                                   &src_name, &dst_name,
335                                   BCH_RENAME));
336
337         fuse_reply_err(req, -ret);
338 }
339
340 static void bcachefs_fuse_link(fuse_req_t req, fuse_ino_t inum,
341                                fuse_ino_t newparent, const char *newname)
342 {
343         struct bch_fs *c = fuse_req_userdata(req);
344         struct bch_inode_unpacked dir_u, inode_u;
345         struct qstr qstr = QSTR(newname);
346         int ret;
347
348         fuse_log(FUSE_LOG_DEBUG, "bcachefs_fuse_link(%llu, %llu, %s)\n",
349                  inum, newparent, newname);
350
351         newparent = map_root_ino(newparent);
352
353         ret = bch2_trans_do(c, NULL, NULL, 0,
354                             bch2_link_trans(&trans, newparent,
355                                             inum, &dir_u, &inode_u, &qstr));
356
357         if (!ret) {
358                 struct fuse_entry_param e = inode_to_entry(c, &inode_u);
359                 fuse_reply_entry(req, &e);
360         } else {
361                 fuse_reply_err(req, -ret);
362         }
363 }
364
365 static void bcachefs_fuse_open(fuse_req_t req, fuse_ino_t inum,
366                                struct fuse_file_info *fi)
367 {
368         fi->direct_io           = false;
369         fi->keep_cache          = true;
370         fi->cache_readdir       = true;
371
372         fuse_reply_open(req, fi);
373 }
374
375 static void userbio_init(struct bio *bio, struct bio_vec *bv,
376                          void *buf, size_t size)
377 {
378         bio_init(bio, bv, 1);
379         bio->bi_iter.bi_size    = size;
380         bv->bv_page             = buf;
381         bv->bv_len              = size;
382         bv->bv_offset           = 0;
383 }
384
385 static int get_inode_io_opts(struct bch_fs *c, u64 inum,
386                              struct bch_io_opts *opts)
387 {
388         struct bch_inode_unpacked inode;
389         if (bch2_inode_find_by_inum(c, inum, &inode))
390                 return -EINVAL;
391
392         *opts = bch2_opts_to_inode_opts(c->opts);
393         bch2_io_opts_apply(opts, bch2_inode_opts_get(&inode));
394         return 0;
395 }
396
397 static void bcachefs_fuse_read_endio(struct bio *bio)
398 {
399         closure_put(bio->bi_private);
400 }
401
402 struct fuse_align_io {
403         off_t           start;
404         size_t          pad_start;
405         off_t           end;
406         size_t          pad_end;
407         size_t          size;
408 };
409
410 /* Handle unaligned start and end */
411 /* TODO: align to block_bytes, sector size, or page size? */
412 static struct fuse_align_io align_io(const struct bch_fs *c, size_t size,
413                                      off_t offset)
414 {
415         struct fuse_align_io align;
416
417         BUG_ON(offset < 0);
418
419         align.start = round_down(offset, block_bytes(c));
420         align.pad_start = offset - align.start;
421
422         off_t end = offset + size;
423         align.end = round_up(end, block_bytes(c));
424         align.pad_end = align.end - end;
425
426         align.size = align.end - align.start;
427
428         return align;
429 }
430
431 /*
432  * Given an aligned number of bytes transferred, figure out how many unaligned
433  * bytes were transferred.
434  */
435 static size_t align_fix_up_bytes(const struct fuse_align_io *align,
436                                  size_t align_bytes)
437 {
438         size_t bytes = 0;
439
440         if (align_bytes > align->pad_start) {
441                 bytes = align_bytes - align->pad_start;
442                 bytes = bytes > align->pad_end ? bytes - align->pad_end : 0;
443         }
444
445         return bytes;
446 }
447
448 /*
449  * Read aligned data.
450  */
451 static int read_aligned(struct bch_fs *c, fuse_ino_t inum, size_t aligned_size,
452                         off_t aligned_offset, void *buf)
453 {
454         BUG_ON(aligned_size & (block_bytes(c) - 1));
455         BUG_ON(aligned_offset & (block_bytes(c) - 1));
456
457         struct bch_io_opts io_opts;
458         if (get_inode_io_opts(c, inum, &io_opts))
459                 return -ENOENT;
460
461         struct bch_read_bio rbio;
462         struct bio_vec bv;
463         userbio_init(&rbio.bio, &bv, buf, aligned_size);
464         bio_set_op_attrs(&rbio.bio, REQ_OP_READ, REQ_SYNC);
465         rbio.bio.bi_iter.bi_sector      = aligned_offset >> 9;
466
467         struct closure cl;
468         closure_init_stack(&cl);
469
470         closure_get(&cl);
471         rbio.bio.bi_end_io              = bcachefs_fuse_read_endio;
472         rbio.bio.bi_private             = &cl;
473
474         bch2_read(c, rbio_init(&rbio.bio, io_opts), inum);
475
476         closure_sync(&cl);
477
478         return -blk_status_to_errno(rbio.bio.bi_status);
479 }
480
481 static void bcachefs_fuse_read(fuse_req_t req, fuse_ino_t inum,
482                                size_t size, off_t offset,
483                                struct fuse_file_info *fi)
484 {
485         struct bch_fs *c = fuse_req_userdata(req);
486
487         fuse_log(FUSE_LOG_DEBUG, "bcachefs_fuse_read(%llu, %zd, %lld)\n",
488                  inum, size, offset);
489
490         /* Check inode size. */
491         struct bch_inode_unpacked bi;
492         int ret = bch2_inode_find_by_inum(c, inum, &bi);
493         if (ret) {
494                 fuse_reply_err(req, -ret);
495                 return;
496         }
497
498         off_t end = min_t(u64, bi.bi_size, offset + size);
499         if (end <= offset) {
500                 fuse_reply_buf(req, NULL, 0);
501                 return;
502         }
503         size = end - offset;
504
505         struct fuse_align_io align = align_io(c, size, offset);
506
507         void *buf = aligned_alloc(PAGE_SIZE, align.size);
508         if (!buf) {
509                 fuse_reply_err(req, ENOMEM);
510                 return;
511         }
512
513         ret = read_aligned(c, inum, align.size, align.start, buf);
514
515         if (likely(!ret))
516                 fuse_reply_buf(req, buf + align.pad_start, size);
517         else
518                 fuse_reply_err(req, -ret);
519
520         free(buf);
521 }
522
523 static int inode_update_times(struct bch_fs *c, fuse_ino_t inum)
524 {
525         struct btree_trans trans;
526         struct btree_iter iter;
527         struct bch_inode_unpacked inode_u;
528         int ret = 0;
529         u64 now;
530
531         bch2_trans_init(&trans, c, 0, 0);
532 retry:
533         bch2_trans_begin(&trans);
534         now = bch2_current_time(c);
535
536         ret = bch2_inode_peek(&trans, &iter, &inode_u, inum, BTREE_ITER_INTENT);
537         if (ret)
538                 goto err;
539
540         inode_u.bi_mtime = now;
541         inode_u.bi_ctime = now;
542
543         ret = bch2_inode_write(&trans, &iter, &inode_u);
544         if (ret)
545                 goto err;
546
547         ret = bch2_trans_commit(&trans, NULL, NULL,
548                                 BTREE_INSERT_NOFAIL);
549
550 err:
551         bch2_trans_iter_exit(&trans, &iter);
552         if (ret == -EINTR)
553                 goto retry;
554
555         bch2_trans_exit(&trans);
556         return ret;
557 }
558
559 static int write_aligned(struct bch_fs *c, fuse_ino_t inum,
560                          struct bch_io_opts io_opts, void *buf,
561                          size_t aligned_size, off_t aligned_offset,
562                          off_t new_i_size, size_t *written_out)
563 {
564         struct bch_write_op     op = { 0 };
565         struct bio_vec          bv;
566         struct closure          cl;
567
568         BUG_ON(aligned_size & (block_bytes(c) - 1));
569         BUG_ON(aligned_offset & (block_bytes(c) - 1));
570
571         *written_out = 0;
572
573         closure_init_stack(&cl);
574
575         bch2_write_op_init(&op, c, io_opts); /* XXX reads from op?! */
576         op.write_point  = writepoint_hashed(0);
577         op.nr_replicas  = io_opts.data_replicas;
578         op.target       = io_opts.foreground_target;
579         op.pos          = POS(inum, aligned_offset >> 9);
580         op.new_i_size   = new_i_size;
581
582         userbio_init(&op.wbio.bio, &bv, buf, aligned_size);
583         bio_set_op_attrs(&op.wbio.bio, REQ_OP_WRITE, REQ_SYNC);
584
585         if (bch2_disk_reservation_get(c, &op.res, aligned_size >> 9,
586                                       op.nr_replicas, 0)) {
587                 /* XXX: use check_range_allocated like dio write path */
588                 return -ENOSPC;
589         }
590
591         closure_call(&op.cl, bch2_write, NULL, &cl);
592         closure_sync(&cl);
593
594         if (!op.error)
595                 *written_out = op.written << 9;
596
597         return op.error;
598 }
599
600 static void bcachefs_fuse_write(fuse_req_t req, fuse_ino_t inum,
601                                 const char *buf, size_t size,
602                                 off_t offset,
603                                 struct fuse_file_info *fi)
604 {
605         struct bch_fs *c        = fuse_req_userdata(req);
606         struct bch_io_opts      io_opts;
607         size_t                  aligned_written;
608         int                     ret = 0;
609
610         fuse_log(FUSE_LOG_DEBUG, "bcachefs_fuse_write(%llu, %zd, %lld)\n",
611                  inum, size, offset);
612
613         struct fuse_align_io align = align_io(c, size, offset);
614         void *aligned_buf = aligned_alloc(PAGE_SIZE, align.size);
615         BUG_ON(!aligned_buf);
616
617         if (get_inode_io_opts(c, inum, &io_opts)) {
618                 ret = -ENOENT;
619                 goto err;
620         }
621
622         /* Realign the data and read in start and end, if needed */
623
624         /* Read partial start data. */
625         if (align.pad_start) {
626                 memset(aligned_buf, 0, block_bytes(c));
627
628                 ret = read_aligned(c, inum, block_bytes(c), align.start,
629                                    aligned_buf);
630                 if (ret)
631                         goto err;
632         }
633
634         /*
635          * Read partial end data. If the whole write fits in one block, the
636          * start data and the end data are the same so this isn't needed.
637          */
638         if (align.pad_end &&
639             !(align.pad_start && align.size == block_bytes(c))) {
640                 off_t partial_end_start = align.end - block_bytes(c);
641                 size_t buf_offset = align.size - block_bytes(c);
642
643                 memset(aligned_buf + buf_offset, 0, block_bytes(c));
644
645                 ret = read_aligned(c, inum, block_bytes(c), partial_end_start,
646                                    aligned_buf + buf_offset);
647                 if (ret)
648                         goto err;
649         }
650
651         /* Overlay what we want to write. */
652         memcpy(aligned_buf + align.pad_start, buf, size);
653
654         /* Actually write. */
655         ret = write_aligned(c, inum, io_opts, aligned_buf,
656                             align.size, align.start,
657                             offset + size, &aligned_written);
658
659         /* Figure out how many unaligned bytes were written. */
660         size_t written = align_fix_up_bytes(&align, aligned_written);
661         BUG_ON(written > size);
662
663         fuse_log(FUSE_LOG_DEBUG, "bcachefs_fuse_write: wrote %zd bytes\n",
664                  written);
665
666         if (written > 0)
667                 ret = 0;
668
669         /*
670          * Update inode times.
671          * TODO: Integrate with bch2_extent_update()
672          */
673         if (!ret)
674                 ret = inode_update_times(c, inum);
675
676         if (!ret) {
677                 BUG_ON(written == 0);
678                 fuse_reply_write(req, written);
679                 free(aligned_buf);
680                 return;
681         }
682
683 err:
684         fuse_reply_err(req, -ret);
685         free(aligned_buf);
686 }
687
688 static void bcachefs_fuse_symlink(fuse_req_t req, const char *link,
689                                   fuse_ino_t dir, const char *name)
690 {
691         struct bch_fs *c = fuse_req_userdata(req);
692         struct bch_inode_unpacked new_inode;
693         size_t link_len = strlen(link);
694         int ret;
695
696         fuse_log(FUSE_LOG_DEBUG, "bcachefs_fuse_symlink(%s, %llu, %s)\n",
697                  link, dir, name);
698
699         dir = map_root_ino(dir);
700
701         ret = do_create(c, dir, name, S_IFLNK|S_IRWXUGO, 0, &new_inode);
702         if (ret)
703                 goto err;
704
705         struct bch_io_opts io_opts;
706         ret = get_inode_io_opts(c, new_inode.bi_inum, &io_opts);
707         if (ret)
708                 goto err;
709
710         struct fuse_align_io align = align_io(c, link_len + 1, 0);
711
712         void *aligned_buf = aligned_alloc(PAGE_SIZE, align.size);
713         BUG_ON(!aligned_buf);
714
715         memset(aligned_buf, 0, align.size);
716         memcpy(aligned_buf, link, link_len); /* already terminated */
717
718         size_t aligned_written;
719         ret = write_aligned(c, new_inode.bi_inum, io_opts, aligned_buf,
720                             align.size, align.start, link_len + 1,
721                             &aligned_written);
722         free(aligned_buf);
723
724         if (ret)
725                 goto err;
726
727         size_t written = align_fix_up_bytes(&align, aligned_written);
728         BUG_ON(written != link_len + 1); // TODO: handle short
729
730         ret = inode_update_times(c, new_inode.bi_inum);
731         if (ret)
732                 goto err;
733
734         new_inode.bi_size = written;
735
736         struct fuse_entry_param e = inode_to_entry(c, &new_inode);
737         fuse_reply_entry(req, &e);
738         return;
739
740 err:
741         fuse_reply_err(req, -ret);
742 }
743
744 static void bcachefs_fuse_readlink(fuse_req_t req, fuse_ino_t inum)
745 {
746         struct bch_fs *c = fuse_req_userdata(req);
747         char *buf = NULL;
748
749         fuse_log(FUSE_LOG_DEBUG, "bcachefs_fuse_readlink(%llu)\n", inum);
750
751         struct bch_inode_unpacked bi;
752         int ret = bch2_inode_find_by_inum(c, inum, &bi);
753         if (ret)
754                 goto err;
755
756         struct fuse_align_io align = align_io(c, bi.bi_size, 0);
757
758         ret = -ENOMEM;
759         buf = aligned_alloc(PAGE_SIZE, align.size);
760         if (!buf)
761                 goto err;
762
763         ret = read_aligned(c, inum, align.size, align.start, buf);
764         if (ret)
765                 goto err;
766
767         BUG_ON(buf[align.size - 1] != 0);
768
769         fuse_reply_readlink(req, buf);
770
771 err:
772         if (ret)
773                 fuse_reply_err(req, -ret);
774
775         free(buf);
776 }
777
778 #if 0
779 /*
780  * FUSE flush is essentially the close() call, however it is not guaranteed
781  * that one flush happens per open/create.
782  *
783  * It doesn't have to do anything, and is mostly relevant for NFS-style
784  * filesystems where close has some relationship to caching.
785  */
786 static void bcachefs_fuse_flush(fuse_req_t req, fuse_ino_t inum,
787                                 struct fuse_file_info *fi)
788 {
789         struct bch_fs *c = fuse_req_userdata(req);
790 }
791
792 static void bcachefs_fuse_release(fuse_req_t req, fuse_ino_t inum,
793                                   struct fuse_file_info *fi)
794 {
795         struct bch_fs *c = fuse_req_userdata(req);
796 }
797
798 static void bcachefs_fuse_fsync(fuse_req_t req, fuse_ino_t inum, int datasync,
799                                 struct fuse_file_info *fi)
800 {
801         struct bch_fs *c = fuse_req_userdata(req);
802 }
803
804 static void bcachefs_fuse_opendir(fuse_req_t req, fuse_ino_t inum,
805                                   struct fuse_file_info *fi)
806 {
807         struct bch_fs *c = fuse_req_userdata(req);
808 }
809 #endif
810
811 struct fuse_dir_context {
812         struct dir_context      ctx;
813         fuse_req_t              req;
814         char                    *buf;
815         size_t                  bufsize;
816 };
817
818 struct fuse_dirent {
819         uint64_t        ino;
820         uint64_t        off;
821         uint32_t        namelen;
822         uint32_t        type;
823         char name[];
824 };
825
826 #define FUSE_NAME_OFFSET offsetof(struct fuse_dirent, name)
827 #define FUSE_DIRENT_ALIGN(x) \
828         (((x) + sizeof(uint64_t) - 1) & ~(sizeof(uint64_t) - 1))
829
830 static size_t fuse_add_direntry2(char *buf, size_t bufsize,
831                                  const char *name, int namelen,
832                                  const struct stat *stbuf, off_t off)
833 {
834         size_t entlen           = FUSE_NAME_OFFSET + namelen;
835         size_t entlen_padded    = FUSE_DIRENT_ALIGN(entlen);
836         struct fuse_dirent *dirent = (struct fuse_dirent *) buf;
837
838         if ((buf == NULL) || (entlen_padded > bufsize))
839                 return entlen_padded;
840
841         dirent->ino = stbuf->st_ino;
842         dirent->off = off;
843         dirent->namelen = namelen;
844         dirent->type = (stbuf->st_mode & S_IFMT) >> 12;
845         memcpy(dirent->name, name, namelen);
846         memset(dirent->name + namelen, 0, entlen_padded - entlen);
847
848         return entlen_padded;
849 }
850
851 static int fuse_filldir(struct dir_context *_ctx,
852                         const char *name, int namelen,
853                         loff_t pos, u64 ino, unsigned type)
854 {
855         struct fuse_dir_context *ctx =
856                 container_of(_ctx, struct fuse_dir_context, ctx);
857
858         struct stat statbuf = {
859                 .st_ino         = unmap_root_ino(ino),
860                 .st_mode        = type << 12,
861         };
862
863         fuse_log(FUSE_LOG_DEBUG, "fuse_filldir(name=%s inum=%llu pos=%llu)\n",
864                  name, statbuf.st_ino, pos);
865
866         size_t len = fuse_add_direntry2(ctx->buf,
867                                         ctx->bufsize,
868                                         name,
869                                         namelen,
870                                         &statbuf,
871                                         pos + 1);
872
873         if (len > ctx->bufsize)
874                 return -1;
875
876         ctx->buf        += len;
877         ctx->bufsize    -= len;
878
879         return 0;
880 }
881
882 static bool handle_dots(struct fuse_dir_context *ctx, fuse_ino_t dir)
883 {
884         if (ctx->ctx.pos == 0) {
885                 if (fuse_filldir(&ctx->ctx, ".", 1, ctx->ctx.pos,
886                                  dir, DT_DIR) < 0)
887                         return false;
888                 ctx->ctx.pos = 1;
889         }
890
891         if (ctx->ctx.pos == 1) {
892                 if (fuse_filldir(&ctx->ctx, "..", 2, ctx->ctx.pos,
893                                  /*TODO: parent*/ 1, DT_DIR) < 0)
894                         return false;
895                 ctx->ctx.pos = 2;
896         }
897
898         return true;
899 }
900
901 static void bcachefs_fuse_readdir(fuse_req_t req, fuse_ino_t dir,
902                                   size_t size, off_t off,
903                                   struct fuse_file_info *fi)
904 {
905         struct bch_fs *c = fuse_req_userdata(req);
906         struct bch_inode_unpacked bi;
907         char *buf = calloc(size, 1);
908         struct fuse_dir_context ctx = {
909                 .ctx.actor      = fuse_filldir,
910                 .ctx.pos        = off,
911                 .req            = req,
912                 .buf            = buf,
913                 .bufsize        = size,
914         };
915         int ret = 0;
916
917         fuse_log(FUSE_LOG_DEBUG, "bcachefs_fuse_readdir(dir=%llu, size=%zu, "
918                  "off=%lld)\n", dir, size, off);
919
920         dir = map_root_ino(dir);
921
922         ret = bch2_inode_find_by_inum(c, dir, &bi);
923         if (ret)
924                 goto reply;
925
926         if (!S_ISDIR(bi.bi_mode)) {
927                 ret = -ENOTDIR;
928                 goto reply;
929         }
930
931         if (!handle_dots(&ctx, dir))
932                 goto reply;
933
934         ret = bch2_readdir(c, dir, &ctx.ctx);
935 reply:
936         if (!ret) {
937                 fuse_log(FUSE_LOG_DEBUG, "bcachefs_fuse_readdir reply %zd\n",
938                                         ctx.buf - buf);
939                 fuse_reply_buf(req, buf, ctx.buf - buf);
940         } else {
941                 fuse_reply_err(req, -ret);
942         }
943
944         free(buf);
945 }
946
947 #if 0
948 static void bcachefs_fuse_readdirplus(fuse_req_t req, fuse_ino_t dir,
949                                       size_t size, off_t off,
950                                       struct fuse_file_info *fi)
951 {
952
953 }
954
955 static void bcachefs_fuse_releasedir(fuse_req_t req, fuse_ino_t inum,
956                                      struct fuse_file_info *fi)
957 {
958         struct bch_fs *c = fuse_req_userdata(req);
959 }
960
961 static void bcachefs_fuse_fsyncdir(fuse_req_t req, fuse_ino_t inum, int datasync,
962                                    struct fuse_file_info *fi)
963 {
964         struct bch_fs *c = fuse_req_userdata(req);
965 }
966 #endif
967
968 static void bcachefs_fuse_statfs(fuse_req_t req, fuse_ino_t inum)
969 {
970         struct bch_fs *c = fuse_req_userdata(req);
971         struct bch_fs_usage_short usage = bch2_fs_usage_read_short(c);
972         unsigned shift = c->block_bits;
973         struct statvfs statbuf = {
974                 .f_bsize        = block_bytes(c),
975                 .f_frsize       = block_bytes(c),
976                 .f_blocks       = usage.capacity >> shift,
977                 .f_bfree        = (usage.capacity - usage.used) >> shift,
978                 //.f_bavail     = statbuf.f_bfree,
979                 .f_files        = usage.nr_inodes,
980                 .f_ffree        = U64_MAX,
981                 .f_namemax      = BCH_NAME_MAX,
982         };
983
984         fuse_reply_statfs(req, &statbuf);
985 }
986
987 #if 0
988 static void bcachefs_fuse_setxattr(fuse_req_t req, fuse_ino_t inum,
989                                    const char *name, const char *value,
990                                    size_t size, int flags)
991 {
992         struct bch_fs *c = fuse_req_userdata(req);
993 }
994
995 static void bcachefs_fuse_getxattr(fuse_req_t req, fuse_ino_t inum,
996                                    const char *name, size_t size)
997 {
998         struct bch_fs *c = fuse_req_userdata(req);
999
1000         fuse_reply_xattr(req, );
1001 }
1002
1003 static void bcachefs_fuse_listxattr(fuse_req_t req, fuse_ino_t inum, size_t size)
1004 {
1005         struct bch_fs *c = fuse_req_userdata(req);
1006 }
1007
1008 static void bcachefs_fuse_removexattr(fuse_req_t req, fuse_ino_t inum,
1009                                       const char *name)
1010 {
1011         struct bch_fs *c = fuse_req_userdata(req);
1012 }
1013 #endif
1014
1015 static void bcachefs_fuse_create(fuse_req_t req, fuse_ino_t dir,
1016                                  const char *name, mode_t mode,
1017                                  struct fuse_file_info *fi)
1018 {
1019         struct bch_fs *c = fuse_req_userdata(req);
1020         struct bch_inode_unpacked new_inode;
1021         int ret;
1022
1023         fuse_log(FUSE_LOG_DEBUG, "bcachefs_fuse_create(%llu, %s, %x)\n",
1024                  dir, name, mode);
1025
1026         ret = do_create(c, dir, name, mode, 0, &new_inode);
1027         if (ret)
1028                 goto err;
1029
1030         struct fuse_entry_param e = inode_to_entry(c, &new_inode);
1031         fuse_reply_create(req, &e, fi);
1032         return;
1033 err:
1034         fuse_reply_err(req, -ret);
1035
1036 }
1037
1038 #if 0
1039 static void bcachefs_fuse_write_buf(fuse_req_t req, fuse_ino_t inum,
1040                                     struct fuse_bufvec *bufv, off_t off,
1041                                     struct fuse_file_info *fi)
1042 {
1043         struct bch_fs *c = fuse_req_userdata(req);
1044 }
1045
1046 static void bcachefs_fuse_fallocate(fuse_req_t req, fuse_ino_t inum, int mode,
1047                                     off_t offset, off_t length,
1048                                     struct fuse_file_info *fi)
1049 {
1050         struct bch_fs *c = fuse_req_userdata(req);
1051 }
1052 #endif
1053
1054 static const struct fuse_lowlevel_ops bcachefs_fuse_ops = {
1055         .init           = bcachefs_fuse_init,
1056         .destroy        = bcachefs_fuse_destroy,
1057         .lookup         = bcachefs_fuse_lookup,
1058         .getattr        = bcachefs_fuse_getattr,
1059         .setattr        = bcachefs_fuse_setattr,
1060         .readlink       = bcachefs_fuse_readlink,
1061         .mknod          = bcachefs_fuse_mknod,
1062         .mkdir          = bcachefs_fuse_mkdir,
1063         .unlink         = bcachefs_fuse_unlink,
1064         .rmdir          = bcachefs_fuse_rmdir,
1065         .symlink        = bcachefs_fuse_symlink,
1066         .rename         = bcachefs_fuse_rename,
1067         .link           = bcachefs_fuse_link,
1068         .open           = bcachefs_fuse_open,
1069         .read           = bcachefs_fuse_read,
1070         .write          = bcachefs_fuse_write,
1071         //.flush        = bcachefs_fuse_flush,
1072         //.release      = bcachefs_fuse_release,
1073         //.fsync        = bcachefs_fuse_fsync,
1074         //.opendir      = bcachefs_fuse_opendir,
1075         .readdir        = bcachefs_fuse_readdir,
1076         //.readdirplus  = bcachefs_fuse_readdirplus,
1077         //.releasedir   = bcachefs_fuse_releasedir,
1078         //.fsyncdir     = bcachefs_fuse_fsyncdir,
1079         .statfs         = bcachefs_fuse_statfs,
1080         //.setxattr     = bcachefs_fuse_setxattr,
1081         //.getxattr     = bcachefs_fuse_getxattr,
1082         //.listxattr    = bcachefs_fuse_listxattr,
1083         //.removexattr  = bcachefs_fuse_removexattr,
1084         .create         = bcachefs_fuse_create,
1085
1086         /* posix locks: */
1087 #if 0
1088         .getlk          = bcachefs_fuse_getlk,
1089         .setlk          = bcachefs_fuse_setlk,
1090 #endif
1091         //.write_buf    = bcachefs_fuse_write_buf,
1092         //.fallocate    = bcachefs_fuse_fallocate,
1093
1094 };
1095
1096 /*
1097  * Setup and command parsing.
1098  */
1099
1100 struct bf_context {
1101         char            *devices_str;
1102         char            **devices;
1103         int             nr_devices;
1104 };
1105
1106 static void bf_context_free(struct bf_context *ctx)
1107 {
1108         int i;
1109
1110         free(ctx->devices_str);
1111         for (i = 0; i < ctx->nr_devices; ++i)
1112                 free(ctx->devices[i]);
1113         free(ctx->devices);
1114 }
1115
1116 static struct fuse_opt bf_opts[] = {
1117         FUSE_OPT_END
1118 };
1119
1120 /*
1121  * Fuse option parsing helper -- returning 0 means we consumed the argument, 1
1122  * means we did not.
1123  */
1124 static int bf_opt_proc(void *data, const char *arg, int key,
1125     struct fuse_args *outargs)
1126 {
1127         struct bf_context *ctx = data;
1128
1129         switch (key) {
1130         case FUSE_OPT_KEY_NONOPT:
1131                 /* Just extract the first non-option string. */
1132                 if (!ctx->devices_str) {
1133                         ctx->devices_str = strdup(arg);
1134                         return 0;
1135                 }
1136                 return 1;
1137         }
1138
1139         return 1;
1140 }
1141
1142 /*
1143  * dev1:dev2 -> [ dev1, dev2 ]
1144  * dev       -> [ dev ]
1145  */
1146 static void tokenize_devices(struct bf_context *ctx)
1147 {
1148         char *devices_str = strdup(ctx->devices_str);
1149         char *devices_tmp = devices_str;
1150         char **devices = NULL;
1151         int nr = 0;
1152         char *dev = NULL;
1153
1154         while ((dev = strsep(&devices_tmp, ":"))) {
1155                 if (strlen(dev) > 0) {
1156                         devices = realloc(devices, (nr + 1) * sizeof *devices);
1157                         devices[nr] = strdup(dev);
1158                         nr++;
1159                 }
1160         }
1161
1162         if (!devices) {
1163                 devices = malloc(sizeof *devices);
1164                 devices[0] = strdup(ctx->devices_str);
1165                 nr = 1;
1166         }
1167
1168         ctx->devices = devices;
1169         ctx->nr_devices = nr;
1170
1171         free(devices_str);
1172 }
1173
1174 static void usage(char *argv[])
1175 {
1176         printf("Usage: %s fusemount [options] <dev>[:dev2:...] <mountpoint>\n",
1177                argv[0]);
1178         printf("\n");
1179 }
1180
1181 int cmd_fusemount(int argc, char *argv[])
1182 {
1183         struct fuse_args args = FUSE_ARGS_INIT(argc, argv);
1184         struct bch_opts bch_opts = bch2_opts_empty();
1185         struct bf_context ctx = { 0 };
1186         struct bch_fs *c = NULL;
1187         int ret = 0, i;
1188
1189         /* Parse arguments. */
1190         if (fuse_opt_parse(&args, &ctx, bf_opts, bf_opt_proc) < 0)
1191                 die("fuse_opt_parse err: %m");
1192
1193         struct fuse_cmdline_opts fuse_opts;
1194         if (fuse_parse_cmdline(&args, &fuse_opts) < 0)
1195                 die("fuse_parse_cmdline err: %m");
1196
1197         if (fuse_opts.show_help) {
1198                 usage(argv);
1199                 fuse_cmdline_help();
1200                 fuse_lowlevel_help();
1201                 ret = 0;
1202                 goto out;
1203         }
1204         if (fuse_opts.show_version) {
1205                 /* TODO: Show bcachefs version. */
1206                 printf("FUSE library version %s\n", fuse_pkgversion());
1207                 fuse_lowlevel_version();
1208                 ret = 0;
1209                 goto out;
1210         }
1211         if (!fuse_opts.mountpoint) {
1212                 usage(argv);
1213                 printf("Please supply a mountpoint.\n");
1214                 ret = 1;
1215                 goto out;
1216         }
1217         if (!ctx.devices_str) {
1218                 usage(argv);
1219                 printf("Please specify a device or device1:device2:...\n");
1220                 ret = 1;
1221                 goto out;
1222         }
1223         tokenize_devices(&ctx);
1224
1225         /* Open bch */
1226         printf("Opening bcachefs filesystem on:\n");
1227         for (i = 0; i < ctx.nr_devices; ++i)
1228                 printf("\t%s\n", ctx.devices[i]);
1229
1230         c = bch2_fs_open(ctx.devices, ctx.nr_devices, bch_opts);
1231         if (IS_ERR(c))
1232                 die("error opening %s: %s", ctx.devices_str,
1233                     bch2_err_str(PTR_ERR(c)));
1234
1235         /* Fuse */
1236         struct fuse_session *se =
1237                 fuse_session_new(&args, &bcachefs_fuse_ops,
1238                                  sizeof(bcachefs_fuse_ops), c);
1239         if (!se)
1240                 die("fuse_lowlevel_new err: %m");
1241
1242         if (fuse_set_signal_handlers(se) < 0)
1243                 die("fuse_set_signal_handlers err: %m");
1244
1245         if (fuse_session_mount(se, fuse_opts.mountpoint))
1246                 die("fuse_mount err: %m");
1247
1248         /* This print statement is a trigger for tests. */
1249         printf("Fuse mount initialized.\n");
1250
1251         fuse_daemonize(fuse_opts.foreground);
1252
1253         ret = fuse_session_loop(se);
1254
1255         /* Cleanup */
1256         fuse_session_unmount(se);
1257         fuse_remove_signal_handlers(se);
1258         fuse_session_destroy(se);
1259
1260 out:
1261         free(fuse_opts.mountpoint);
1262         fuse_opt_free_args(&args);
1263         bf_context_free(&ctx);
1264
1265         return ret ? 1 : 0;
1266 }
1267
1268 #endif /* BCACHEFS_FUSE */