]> git.sesse.net Git - bcachefs-tools-debian/blob - libbcachefs/fs.c
Update bcachefs sources to 259ff91605 bcachefs: Don't keep around btree_paths unneces...
[bcachefs-tools-debian] / libbcachefs / fs.c
1 // SPDX-License-Identifier: GPL-2.0
2 #ifndef NO_BCACHEFS_FS
3
4 #include "bcachefs.h"
5 #include "acl.h"
6 #include "bkey_buf.h"
7 #include "btree_update.h"
8 #include "buckets.h"
9 #include "chardev.h"
10 #include "dirent.h"
11 #include "extents.h"
12 #include "fs.h"
13 #include "fs-common.h"
14 #include "fs-io.h"
15 #include "fs-ioctl.h"
16 #include "fsck.h"
17 #include "inode.h"
18 #include "io.h"
19 #include "journal.h"
20 #include "keylist.h"
21 #include "quota.h"
22 #include "super.h"
23 #include "xattr.h"
24
25 #include <linux/aio.h>
26 #include <linux/backing-dev.h>
27 #include <linux/exportfs.h>
28 #include <linux/fiemap.h>
29 #include <linux/module.h>
30 #include <linux/pagemap.h>
31 #include <linux/posix_acl.h>
32 #include <linux/random.h>
33 #include <linux/statfs.h>
34 #include <linux/string.h>
35 #include <linux/xattr.h>
36
37 static struct kmem_cache *bch2_inode_cache;
38
39 static void bch2_vfs_inode_init(struct btree_trans *, subvol_inum,
40                                 struct bch_inode_info *,
41                                 struct bch_inode_unpacked *,
42                                 struct bch_subvolume *);
43
44 static void __pagecache_lock_put(struct pagecache_lock *lock, long i)
45 {
46         BUG_ON(atomic_long_read(&lock->v) == 0);
47
48         if (atomic_long_sub_return_release(i, &lock->v) == 0)
49                 wake_up_all(&lock->wait);
50 }
51
52 static bool __pagecache_lock_tryget(struct pagecache_lock *lock, long i)
53 {
54         long v = atomic_long_read(&lock->v), old;
55
56         do {
57                 old = v;
58
59                 if (i > 0 ? v < 0 : v > 0)
60                         return false;
61         } while ((v = atomic_long_cmpxchg_acquire(&lock->v,
62                                         old, old + i)) != old);
63         return true;
64 }
65
66 static void __pagecache_lock_get(struct pagecache_lock *lock, long i)
67 {
68         wait_event(lock->wait, __pagecache_lock_tryget(lock, i));
69 }
70
71 void bch2_pagecache_add_put(struct pagecache_lock *lock)
72 {
73         __pagecache_lock_put(lock, 1);
74 }
75
76 bool bch2_pagecache_add_tryget(struct pagecache_lock *lock)
77 {
78         return __pagecache_lock_tryget(lock, 1);
79 }
80
81 void bch2_pagecache_add_get(struct pagecache_lock *lock)
82 {
83         __pagecache_lock_get(lock, 1);
84 }
85
86 void bch2_pagecache_block_put(struct pagecache_lock *lock)
87 {
88         __pagecache_lock_put(lock, -1);
89 }
90
91 void bch2_pagecache_block_get(struct pagecache_lock *lock)
92 {
93         __pagecache_lock_get(lock, -1);
94 }
95
96 void bch2_inode_update_after_write(struct btree_trans *trans,
97                                    struct bch_inode_info *inode,
98                                    struct bch_inode_unpacked *bi,
99                                    unsigned fields)
100 {
101         struct bch_fs *c = trans->c;
102
103         BUG_ON(bi->bi_inum != inode->v.i_ino);
104
105         bch2_assert_pos_locked(trans, BTREE_ID_inodes,
106                                POS(0, bi->bi_inum),
107                                c->opts.inodes_use_key_cache);
108
109         set_nlink(&inode->v, bch2_inode_nlink_get(bi));
110         i_uid_write(&inode->v, bi->bi_uid);
111         i_gid_write(&inode->v, bi->bi_gid);
112         inode->v.i_mode = bi->bi_mode;
113
114         if (fields & ATTR_ATIME)
115                 inode->v.i_atime = bch2_time_to_timespec(c, bi->bi_atime);
116         if (fields & ATTR_MTIME)
117                 inode->v.i_mtime = bch2_time_to_timespec(c, bi->bi_mtime);
118         if (fields & ATTR_CTIME)
119                 inode->v.i_ctime = bch2_time_to_timespec(c, bi->bi_ctime);
120
121         inode->ei_inode         = *bi;
122
123         bch2_inode_flags_to_vfs(inode);
124 }
125
126 int __must_check bch2_write_inode(struct bch_fs *c,
127                                   struct bch_inode_info *inode,
128                                   inode_set_fn set,
129                                   void *p, unsigned fields)
130 {
131         struct btree_trans trans;
132         struct btree_iter iter = { NULL };
133         struct bch_inode_unpacked inode_u;
134         int ret;
135
136         bch2_trans_init(&trans, c, 0, 512);
137 retry:
138         bch2_trans_begin(&trans);
139
140         ret   = bch2_inode_peek(&trans, &iter, &inode_u, inode_inum(inode),
141                                 BTREE_ITER_INTENT) ?:
142                 (set ? set(inode, &inode_u, p) : 0) ?:
143                 bch2_inode_write(&trans, &iter, &inode_u) ?:
144                 bch2_trans_commit(&trans, NULL, NULL, BTREE_INSERT_NOFAIL);
145
146         /*
147          * the btree node lock protects inode->ei_inode, not ei_update_lock;
148          * this is important for inode updates via bchfs_write_index_update
149          */
150         if (!ret)
151                 bch2_inode_update_after_write(&trans, inode, &inode_u, fields);
152
153         bch2_trans_iter_exit(&trans, &iter);
154
155         if (ret == -EINTR)
156                 goto retry;
157
158         bch2_trans_exit(&trans);
159         return ret < 0 ? ret : 0;
160 }
161
162 int bch2_fs_quota_transfer(struct bch_fs *c,
163                            struct bch_inode_info *inode,
164                            struct bch_qid new_qid,
165                            unsigned qtypes,
166                            enum quota_acct_mode mode)
167 {
168         unsigned i;
169         int ret;
170
171         qtypes &= enabled_qtypes(c);
172
173         for (i = 0; i < QTYP_NR; i++)
174                 if (new_qid.q[i] == inode->ei_qid.q[i])
175                         qtypes &= ~(1U << i);
176
177         if (!qtypes)
178                 return 0;
179
180         mutex_lock(&inode->ei_quota_lock);
181
182         ret = bch2_quota_transfer(c, qtypes, new_qid,
183                                   inode->ei_qid,
184                                   inode->v.i_blocks +
185                                   inode->ei_quota_reserved,
186                                   mode);
187         if (!ret)
188                 for (i = 0; i < QTYP_NR; i++)
189                         if (qtypes & (1 << i))
190                                 inode->ei_qid.q[i] = new_qid.q[i];
191
192         mutex_unlock(&inode->ei_quota_lock);
193
194         return ret;
195 }
196
197 static int bch2_iget5_test(struct inode *vinode, void *p)
198 {
199         struct bch_inode_info *inode = to_bch_ei(vinode);
200         subvol_inum *inum = p;
201
202         return inode->ei_subvol == inum->subvol &&
203                 inode->ei_inode.bi_inum == inum->inum;
204 }
205
206 static int bch2_iget5_set(struct inode *vinode, void *p)
207 {
208         struct bch_inode_info *inode = to_bch_ei(vinode);
209         subvol_inum *inum = p;
210
211         inode->v.i_ino          = inum->inum;
212         inode->ei_subvol        = inum->subvol;
213         inode->ei_inode.bi_inum = inum->inum;
214         return 0;
215 }
216
217 static unsigned bch2_inode_hash(subvol_inum inum)
218 {
219         return jhash_3words(inum.subvol, inum.inum >> 32, inum.inum, JHASH_INITVAL);
220 }
221
222 struct inode *bch2_vfs_inode_get(struct bch_fs *c, subvol_inum inum)
223 {
224         struct bch_inode_unpacked inode_u;
225         struct bch_inode_info *inode;
226         struct btree_trans trans;
227         struct bch_subvolume subvol;
228         int ret;
229
230         inode = to_bch_ei(iget5_locked(c->vfs_sb,
231                                        bch2_inode_hash(inum),
232                                        bch2_iget5_test,
233                                        bch2_iget5_set,
234                                        &inum));
235         if (unlikely(!inode))
236                 return ERR_PTR(-ENOMEM);
237         if (!(inode->v.i_state & I_NEW))
238                 return &inode->v;
239
240         bch2_trans_init(&trans, c, 8, 0);
241         ret = lockrestart_do(&trans,
242                 bch2_subvolume_get(&trans, inum.subvol, true, 0, &subvol) ?:
243                 bch2_inode_find_by_inum_trans(&trans, inum, &inode_u));
244
245         if (!ret)
246                 bch2_vfs_inode_init(&trans, inum, inode, &inode_u, &subvol);
247         bch2_trans_exit(&trans);
248
249         if (ret) {
250                 iget_failed(&inode->v);
251                 return ERR_PTR(ret);
252         }
253
254         unlock_new_inode(&inode->v);
255
256         return &inode->v;
257 }
258
259 struct bch_inode_info *
260 __bch2_create(struct user_namespace *mnt_userns,
261               struct bch_inode_info *dir, struct dentry *dentry,
262               umode_t mode, dev_t rdev, subvol_inum snapshot_src,
263               unsigned flags)
264 {
265         struct bch_fs *c = dir->v.i_sb->s_fs_info;
266         struct btree_trans trans;
267         struct bch_inode_unpacked dir_u;
268         struct bch_inode_info *inode, *old;
269         struct bch_inode_unpacked inode_u;
270         struct posix_acl *default_acl = NULL, *acl = NULL;
271         subvol_inum inum;
272         struct bch_subvolume subvol;
273         u64 journal_seq = 0;
274         int ret;
275
276         /*
277          * preallocate acls + vfs inode before btree transaction, so that
278          * nothing can fail after the transaction succeeds:
279          */
280 #ifdef CONFIG_BCACHEFS_POSIX_ACL
281         ret = posix_acl_create(&dir->v, &mode, &default_acl, &acl);
282         if (ret)
283                 return ERR_PTR(ret);
284 #endif
285         inode = to_bch_ei(new_inode(c->vfs_sb));
286         if (unlikely(!inode)) {
287                 inode = ERR_PTR(-ENOMEM);
288                 goto err;
289         }
290
291         bch2_inode_init_early(c, &inode_u);
292
293         if (!(flags & BCH_CREATE_TMPFILE))
294                 mutex_lock(&dir->ei_update_lock);
295
296         bch2_trans_init(&trans, c, 8,
297                         2048 + (!(flags & BCH_CREATE_TMPFILE)
298                                 ? dentry->d_name.len : 0));
299 retry:
300         bch2_trans_begin(&trans);
301
302         ret   = bch2_create_trans(&trans,
303                                   inode_inum(dir), &dir_u, &inode_u,
304                                   !(flags & BCH_CREATE_TMPFILE)
305                                   ? &dentry->d_name : NULL,
306                                   from_kuid(mnt_userns, current_fsuid()),
307                                   from_kgid(mnt_userns, current_fsgid()),
308                                   mode, rdev,
309                                   default_acl, acl, snapshot_src, flags) ?:
310                 bch2_quota_acct(c, bch_qid(&inode_u), Q_INO, 1,
311                                 KEY_TYPE_QUOTA_PREALLOC);
312         if (unlikely(ret))
313                 goto err_before_quota;
314
315         inum.subvol = inode_u.bi_subvol ?: dir->ei_subvol;
316         inum.inum = inode_u.bi_inum;
317
318         ret   = bch2_subvolume_get(&trans, inum.subvol, true,
319                                    BTREE_ITER_WITH_UPDATES, &subvol) ?:
320                 bch2_trans_commit(&trans, NULL, &journal_seq, 0);
321         if (unlikely(ret)) {
322                 bch2_quota_acct(c, bch_qid(&inode_u), Q_INO, -1,
323                                 KEY_TYPE_QUOTA_WARN);
324 err_before_quota:
325                 if (ret == -EINTR)
326                         goto retry;
327                 goto err_trans;
328         }
329
330         if (!(flags & BCH_CREATE_TMPFILE)) {
331                 bch2_inode_update_after_write(&trans, dir, &dir_u,
332                                               ATTR_MTIME|ATTR_CTIME);
333                 mutex_unlock(&dir->ei_update_lock);
334         }
335
336         bch2_iget5_set(&inode->v, &inum);
337         bch2_vfs_inode_init(&trans, inum, inode, &inode_u, &subvol);
338
339         set_cached_acl(&inode->v, ACL_TYPE_ACCESS, acl);
340         set_cached_acl(&inode->v, ACL_TYPE_DEFAULT, default_acl);
341
342         /*
343          * we must insert the new inode into the inode cache before calling
344          * bch2_trans_exit() and dropping locks, else we could race with another
345          * thread pulling the inode in and modifying it:
346          */
347
348         inode->v.i_state |= I_CREATING;
349
350         old = to_bch_ei(inode_insert5(&inode->v,
351                                       bch2_inode_hash(inum),
352                                       bch2_iget5_test,
353                                       bch2_iget5_set,
354                                       &inum));
355         BUG_ON(!old);
356
357         if (unlikely(old != inode)) {
358                 /*
359                  * We raced, another process pulled the new inode into cache
360                  * before us:
361                  */
362                 make_bad_inode(&inode->v);
363                 iput(&inode->v);
364
365                 inode = old;
366         } else {
367                 /*
368                  * we really don't want insert_inode_locked2() to be setting
369                  * I_NEW...
370                  */
371                 unlock_new_inode(&inode->v);
372         }
373
374         bch2_trans_exit(&trans);
375 err:
376         posix_acl_release(default_acl);
377         posix_acl_release(acl);
378         return inode;
379 err_trans:
380         if (!(flags & BCH_CREATE_TMPFILE))
381                 mutex_unlock(&dir->ei_update_lock);
382
383         bch2_trans_exit(&trans);
384         make_bad_inode(&inode->v);
385         iput(&inode->v);
386         inode = ERR_PTR(ret);
387         goto err;
388 }
389
390 /* methods */
391
392 static struct dentry *bch2_lookup(struct inode *vdir, struct dentry *dentry,
393                                   unsigned int flags)
394 {
395         struct bch_fs *c = vdir->i_sb->s_fs_info;
396         struct bch_inode_info *dir = to_bch_ei(vdir);
397         struct bch_hash_info hash = bch2_hash_info_init(c, &dir->ei_inode);
398         struct inode *vinode = NULL;
399         subvol_inum inum = { .subvol = 1 };
400         int ret;
401
402         ret = bch2_dirent_lookup(c, inode_inum(dir), &hash,
403                                  &dentry->d_name, &inum);
404
405         if (!ret)
406                 vinode = bch2_vfs_inode_get(c, inum);
407
408         return d_splice_alias(vinode, dentry);
409 }
410
411 static int bch2_mknod(struct user_namespace *mnt_userns,
412                       struct inode *vdir, struct dentry *dentry,
413                       umode_t mode, dev_t rdev)
414 {
415         struct bch_inode_info *inode =
416                 __bch2_create(mnt_userns, to_bch_ei(vdir), dentry, mode, rdev,
417                               (subvol_inum) { 0 }, 0);
418
419         if (IS_ERR(inode))
420                 return PTR_ERR(inode);
421
422         d_instantiate(dentry, &inode->v);
423         return 0;
424 }
425
426 static int bch2_create(struct user_namespace *mnt_userns,
427                        struct inode *vdir, struct dentry *dentry,
428                        umode_t mode, bool excl)
429 {
430         return bch2_mknod(mnt_userns, vdir, dentry, mode|S_IFREG, 0);
431 }
432
433 static int __bch2_link(struct bch_fs *c,
434                        struct bch_inode_info *inode,
435                        struct bch_inode_info *dir,
436                        struct dentry *dentry)
437 {
438         struct btree_trans trans;
439         struct bch_inode_unpacked dir_u, inode_u;
440         int ret;
441
442         mutex_lock(&inode->ei_update_lock);
443         bch2_trans_init(&trans, c, 4, 1024);
444
445         ret = __bch2_trans_do(&trans, NULL, NULL, 0,
446                         bch2_link_trans(&trans,
447                                         inode_inum(dir),   &dir_u,
448                                         inode_inum(inode), &inode_u,
449                                         &dentry->d_name));
450
451         if (likely(!ret)) {
452                 bch2_inode_update_after_write(&trans, dir, &dir_u,
453                                               ATTR_MTIME|ATTR_CTIME);
454                 bch2_inode_update_after_write(&trans, inode, &inode_u, ATTR_CTIME);
455         }
456
457         bch2_trans_exit(&trans);
458         mutex_unlock(&inode->ei_update_lock);
459         return ret;
460 }
461
462 static int bch2_link(struct dentry *old_dentry, struct inode *vdir,
463                      struct dentry *dentry)
464 {
465         struct bch_fs *c = vdir->i_sb->s_fs_info;
466         struct bch_inode_info *dir = to_bch_ei(vdir);
467         struct bch_inode_info *inode = to_bch_ei(old_dentry->d_inode);
468         int ret;
469
470         lockdep_assert_held(&inode->v.i_rwsem);
471
472         ret = __bch2_link(c, inode, dir, dentry);
473         if (unlikely(ret))
474                 return ret;
475
476         ihold(&inode->v);
477         d_instantiate(dentry, &inode->v);
478         return 0;
479 }
480
481 int __bch2_unlink(struct inode *vdir, struct dentry *dentry,
482                   bool deleting_snapshot)
483 {
484         struct bch_fs *c = vdir->i_sb->s_fs_info;
485         struct bch_inode_info *dir = to_bch_ei(vdir);
486         struct bch_inode_info *inode = to_bch_ei(dentry->d_inode);
487         struct bch_inode_unpacked dir_u, inode_u;
488         struct btree_trans trans;
489         int ret;
490
491         bch2_lock_inodes(INODE_UPDATE_LOCK, dir, inode);
492         bch2_trans_init(&trans, c, 4, 1024);
493
494         ret = __bch2_trans_do(&trans, NULL, NULL,
495                               BTREE_INSERT_NOFAIL,
496                         bch2_unlink_trans(&trans,
497                                           inode_inum(dir), &dir_u,
498                                           &inode_u, &dentry->d_name,
499                                           deleting_snapshot));
500
501         if (likely(!ret)) {
502                 bch2_inode_update_after_write(&trans, dir, &dir_u,
503                                               ATTR_MTIME|ATTR_CTIME);
504                 bch2_inode_update_after_write(&trans, inode, &inode_u,
505                                               ATTR_MTIME);
506         }
507
508         bch2_trans_exit(&trans);
509         bch2_unlock_inodes(INODE_UPDATE_LOCK, dir, inode);
510
511         return ret;
512 }
513
514 static int bch2_unlink(struct inode *vdir, struct dentry *dentry)
515 {
516         return __bch2_unlink(vdir, dentry, false);
517 }
518
519 static int bch2_symlink(struct user_namespace *mnt_userns,
520                         struct inode *vdir, struct dentry *dentry,
521                         const char *symname)
522 {
523         struct bch_fs *c = vdir->i_sb->s_fs_info;
524         struct bch_inode_info *dir = to_bch_ei(vdir), *inode;
525         int ret;
526
527         inode = __bch2_create(mnt_userns, dir, dentry, S_IFLNK|S_IRWXUGO, 0,
528                               (subvol_inum) { 0 }, BCH_CREATE_TMPFILE);
529         if (unlikely(IS_ERR(inode)))
530                 return PTR_ERR(inode);
531
532         inode_lock(&inode->v);
533         ret = page_symlink(&inode->v, symname, strlen(symname) + 1);
534         inode_unlock(&inode->v);
535
536         if (unlikely(ret))
537                 goto err;
538
539         ret = filemap_write_and_wait_range(inode->v.i_mapping, 0, LLONG_MAX);
540         if (unlikely(ret))
541                 goto err;
542
543         ret = __bch2_link(c, inode, dir, dentry);
544         if (unlikely(ret))
545                 goto err;
546
547         d_instantiate(dentry, &inode->v);
548         return 0;
549 err:
550         iput(&inode->v);
551         return ret;
552 }
553
554 static int bch2_mkdir(struct user_namespace *mnt_userns,
555                       struct inode *vdir, struct dentry *dentry, umode_t mode)
556 {
557         return bch2_mknod(mnt_userns, vdir, dentry, mode|S_IFDIR, 0);
558 }
559
560 static int bch2_rename2(struct user_namespace *mnt_userns,
561                         struct inode *src_vdir, struct dentry *src_dentry,
562                         struct inode *dst_vdir, struct dentry *dst_dentry,
563                         unsigned flags)
564 {
565         struct bch_fs *c = src_vdir->i_sb->s_fs_info;
566         struct bch_inode_info *src_dir = to_bch_ei(src_vdir);
567         struct bch_inode_info *dst_dir = to_bch_ei(dst_vdir);
568         struct bch_inode_info *src_inode = to_bch_ei(src_dentry->d_inode);
569         struct bch_inode_info *dst_inode = to_bch_ei(dst_dentry->d_inode);
570         struct bch_inode_unpacked dst_dir_u, src_dir_u;
571         struct bch_inode_unpacked src_inode_u, dst_inode_u;
572         struct btree_trans trans;
573         enum bch_rename_mode mode = flags & RENAME_EXCHANGE
574                 ? BCH_RENAME_EXCHANGE
575                 : dst_dentry->d_inode
576                 ? BCH_RENAME_OVERWRITE : BCH_RENAME;
577         int ret;
578
579         if (flags & ~(RENAME_NOREPLACE|RENAME_EXCHANGE))
580                 return -EINVAL;
581
582         if (mode == BCH_RENAME_OVERWRITE) {
583                 ret = filemap_write_and_wait_range(src_inode->v.i_mapping,
584                                                    0, LLONG_MAX);
585                 if (ret)
586                         return ret;
587         }
588
589         bch2_trans_init(&trans, c, 8, 2048);
590
591         bch2_lock_inodes(INODE_UPDATE_LOCK,
592                          src_dir,
593                          dst_dir,
594                          src_inode,
595                          dst_inode);
596
597         if (inode_attr_changing(dst_dir, src_inode, Inode_opt_project)) {
598                 ret = bch2_fs_quota_transfer(c, src_inode,
599                                              dst_dir->ei_qid,
600                                              1 << QTYP_PRJ,
601                                              KEY_TYPE_QUOTA_PREALLOC);
602                 if (ret)
603                         goto err;
604         }
605
606         if (mode == BCH_RENAME_EXCHANGE &&
607             inode_attr_changing(src_dir, dst_inode, Inode_opt_project)) {
608                 ret = bch2_fs_quota_transfer(c, dst_inode,
609                                              src_dir->ei_qid,
610                                              1 << QTYP_PRJ,
611                                              KEY_TYPE_QUOTA_PREALLOC);
612                 if (ret)
613                         goto err;
614         }
615
616         ret = __bch2_trans_do(&trans, NULL, NULL, 0,
617                         bch2_rename_trans(&trans,
618                                           inode_inum(src_dir), &src_dir_u,
619                                           inode_inum(dst_dir), &dst_dir_u,
620                                           &src_inode_u,
621                                           &dst_inode_u,
622                                           &src_dentry->d_name,
623                                           &dst_dentry->d_name,
624                                           mode));
625         if (unlikely(ret))
626                 goto err;
627
628         BUG_ON(src_inode->v.i_ino != src_inode_u.bi_inum);
629         BUG_ON(dst_inode &&
630                dst_inode->v.i_ino != dst_inode_u.bi_inum);
631
632         bch2_inode_update_after_write(&trans, src_dir, &src_dir_u,
633                                       ATTR_MTIME|ATTR_CTIME);
634
635         if (src_dir != dst_dir)
636                 bch2_inode_update_after_write(&trans, dst_dir, &dst_dir_u,
637                                               ATTR_MTIME|ATTR_CTIME);
638
639         bch2_inode_update_after_write(&trans, src_inode, &src_inode_u,
640                                       ATTR_CTIME);
641
642         if (dst_inode)
643                 bch2_inode_update_after_write(&trans, dst_inode, &dst_inode_u,
644                                               ATTR_CTIME);
645 err:
646         bch2_trans_exit(&trans);
647
648         bch2_fs_quota_transfer(c, src_inode,
649                                bch_qid(&src_inode->ei_inode),
650                                1 << QTYP_PRJ,
651                                KEY_TYPE_QUOTA_NOCHECK);
652         if (dst_inode)
653                 bch2_fs_quota_transfer(c, dst_inode,
654                                        bch_qid(&dst_inode->ei_inode),
655                                        1 << QTYP_PRJ,
656                                        KEY_TYPE_QUOTA_NOCHECK);
657
658         bch2_unlock_inodes(INODE_UPDATE_LOCK,
659                            src_dir,
660                            dst_dir,
661                            src_inode,
662                            dst_inode);
663
664         return ret;
665 }
666
667 static void bch2_setattr_copy(struct user_namespace *mnt_userns,
668                               struct bch_inode_info *inode,
669                               struct bch_inode_unpacked *bi,
670                               struct iattr *attr)
671 {
672         struct bch_fs *c = inode->v.i_sb->s_fs_info;
673         unsigned int ia_valid = attr->ia_valid;
674
675         if (ia_valid & ATTR_UID)
676                 bi->bi_uid = from_kuid(mnt_userns, attr->ia_uid);
677         if (ia_valid & ATTR_GID)
678                 bi->bi_gid = from_kgid(mnt_userns, attr->ia_gid);
679
680         if (ia_valid & ATTR_SIZE)
681                 bi->bi_size = attr->ia_size;
682
683         if (ia_valid & ATTR_ATIME)
684                 bi->bi_atime = timespec_to_bch2_time(c, attr->ia_atime);
685         if (ia_valid & ATTR_MTIME)
686                 bi->bi_mtime = timespec_to_bch2_time(c, attr->ia_mtime);
687         if (ia_valid & ATTR_CTIME)
688                 bi->bi_ctime = timespec_to_bch2_time(c, attr->ia_ctime);
689
690         if (ia_valid & ATTR_MODE) {
691                 umode_t mode = attr->ia_mode;
692                 kgid_t gid = ia_valid & ATTR_GID
693                         ? attr->ia_gid
694                         : inode->v.i_gid;
695
696                 if (!in_group_p(gid) &&
697                     !capable_wrt_inode_uidgid(mnt_userns, &inode->v, CAP_FSETID))
698                         mode &= ~S_ISGID;
699                 bi->bi_mode = mode;
700         }
701 }
702
703 int bch2_setattr_nonsize(struct user_namespace *mnt_userns,
704                          struct bch_inode_info *inode,
705                          struct iattr *attr)
706 {
707         struct bch_fs *c = inode->v.i_sb->s_fs_info;
708         struct bch_qid qid;
709         struct btree_trans trans;
710         struct btree_iter inode_iter = { NULL };
711         struct bch_inode_unpacked inode_u;
712         struct posix_acl *acl = NULL;
713         int ret;
714
715         mutex_lock(&inode->ei_update_lock);
716
717         qid = inode->ei_qid;
718
719         if (attr->ia_valid & ATTR_UID)
720                 qid.q[QTYP_USR] = from_kuid(&init_user_ns, attr->ia_uid);
721
722         if (attr->ia_valid & ATTR_GID)
723                 qid.q[QTYP_GRP] = from_kgid(&init_user_ns, attr->ia_gid);
724
725         ret = bch2_fs_quota_transfer(c, inode, qid, ~0,
726                                      KEY_TYPE_QUOTA_PREALLOC);
727         if (ret)
728                 goto err;
729
730         bch2_trans_init(&trans, c, 0, 0);
731 retry:
732         bch2_trans_begin(&trans);
733         kfree(acl);
734         acl = NULL;
735
736         ret = bch2_inode_peek(&trans, &inode_iter, &inode_u, inode_inum(inode),
737                               BTREE_ITER_INTENT);
738         if (ret)
739                 goto btree_err;
740
741         bch2_setattr_copy(mnt_userns, inode, &inode_u, attr);
742
743         if (attr->ia_valid & ATTR_MODE) {
744                 ret = bch2_acl_chmod(&trans, inode_inum(inode), &inode_u,
745                                      inode_u.bi_mode, &acl);
746                 if (ret)
747                         goto btree_err;
748         }
749
750         ret =   bch2_inode_write(&trans, &inode_iter, &inode_u) ?:
751                 bch2_trans_commit(&trans, NULL, NULL,
752                                   BTREE_INSERT_NOFAIL);
753 btree_err:
754         bch2_trans_iter_exit(&trans, &inode_iter);
755
756         if (ret == -EINTR)
757                 goto retry;
758         if (unlikely(ret))
759                 goto err_trans;
760
761         bch2_inode_update_after_write(&trans, inode, &inode_u, attr->ia_valid);
762
763         if (acl)
764                 set_cached_acl(&inode->v, ACL_TYPE_ACCESS, acl);
765 err_trans:
766         bch2_trans_exit(&trans);
767 err:
768         mutex_unlock(&inode->ei_update_lock);
769
770         return ret;
771 }
772
773 static int bch2_getattr(struct user_namespace *mnt_userns,
774                         const struct path *path, struct kstat *stat,
775                         u32 request_mask, unsigned query_flags)
776 {
777         struct bch_inode_info *inode = to_bch_ei(d_inode(path->dentry));
778         struct bch_fs *c = inode->v.i_sb->s_fs_info;
779
780         stat->dev       = inode->v.i_sb->s_dev;
781         stat->ino       = inode->v.i_ino;
782         stat->mode      = inode->v.i_mode;
783         stat->nlink     = inode->v.i_nlink;
784         stat->uid       = inode->v.i_uid;
785         stat->gid       = inode->v.i_gid;
786         stat->rdev      = inode->v.i_rdev;
787         stat->size      = i_size_read(&inode->v);
788         stat->atime     = inode->v.i_atime;
789         stat->mtime     = inode->v.i_mtime;
790         stat->ctime     = inode->v.i_ctime;
791         stat->blksize   = block_bytes(c);
792         stat->blocks    = inode->v.i_blocks;
793
794         if (request_mask & STATX_BTIME) {
795                 stat->result_mask |= STATX_BTIME;
796                 stat->btime = bch2_time_to_timespec(c, inode->ei_inode.bi_otime);
797         }
798
799         if (inode->ei_inode.bi_flags & BCH_INODE_IMMUTABLE)
800                 stat->attributes |= STATX_ATTR_IMMUTABLE;
801         stat->attributes_mask    |= STATX_ATTR_IMMUTABLE;
802
803         if (inode->ei_inode.bi_flags & BCH_INODE_APPEND)
804                 stat->attributes |= STATX_ATTR_APPEND;
805         stat->attributes_mask    |= STATX_ATTR_APPEND;
806
807         if (inode->ei_inode.bi_flags & BCH_INODE_NODUMP)
808                 stat->attributes |= STATX_ATTR_NODUMP;
809         stat->attributes_mask    |= STATX_ATTR_NODUMP;
810
811         return 0;
812 }
813
814 static int bch2_setattr(struct user_namespace *mnt_userns,
815                         struct dentry *dentry, struct iattr *iattr)
816 {
817         struct bch_inode_info *inode = to_bch_ei(dentry->d_inode);
818         int ret;
819
820         lockdep_assert_held(&inode->v.i_rwsem);
821
822         ret = setattr_prepare(mnt_userns, dentry, iattr);
823         if (ret)
824                 return ret;
825
826         return iattr->ia_valid & ATTR_SIZE
827                 ? bch2_truncate(mnt_userns, inode, iattr)
828                 : bch2_setattr_nonsize(mnt_userns, inode, iattr);
829 }
830
831 static int bch2_tmpfile(struct user_namespace *mnt_userns,
832                         struct inode *vdir, struct dentry *dentry, umode_t mode)
833 {
834         struct bch_inode_info *inode =
835                 __bch2_create(mnt_userns, to_bch_ei(vdir), dentry, mode, 0,
836                               (subvol_inum) { 0 }, BCH_CREATE_TMPFILE);
837
838         if (IS_ERR(inode))
839                 return PTR_ERR(inode);
840
841         d_mark_tmpfile(dentry, &inode->v);
842         d_instantiate(dentry, &inode->v);
843         return 0;
844 }
845
846 static int bch2_fill_extent(struct bch_fs *c,
847                             struct fiemap_extent_info *info,
848                             struct bkey_s_c k, unsigned flags)
849 {
850         if (bkey_extent_is_direct_data(k.k)) {
851                 struct bkey_ptrs_c ptrs = bch2_bkey_ptrs_c(k);
852                 const union bch_extent_entry *entry;
853                 struct extent_ptr_decoded p;
854                 int ret;
855
856                 if (k.k->type == KEY_TYPE_reflink_v)
857                         flags |= FIEMAP_EXTENT_SHARED;
858
859                 bkey_for_each_ptr_decode(k.k, ptrs, p, entry) {
860                         int flags2 = 0;
861                         u64 offset = p.ptr.offset;
862
863                         if (p.crc.compression_type)
864                                 flags2 |= FIEMAP_EXTENT_ENCODED;
865                         else
866                                 offset += p.crc.offset;
867
868                         if ((offset & (block_sectors(c) - 1)) ||
869                             (k.k->size & (block_sectors(c) - 1)))
870                                 flags2 |= FIEMAP_EXTENT_NOT_ALIGNED;
871
872                         ret = fiemap_fill_next_extent(info,
873                                                 bkey_start_offset(k.k) << 9,
874                                                 offset << 9,
875                                                 k.k->size << 9, flags|flags2);
876                         if (ret)
877                                 return ret;
878                 }
879
880                 return 0;
881         } else if (bkey_extent_is_inline_data(k.k)) {
882                 return fiemap_fill_next_extent(info,
883                                                bkey_start_offset(k.k) << 9,
884                                                0, k.k->size << 9,
885                                                flags|
886                                                FIEMAP_EXTENT_DATA_INLINE);
887         } else if (k.k->type == KEY_TYPE_reservation) {
888                 return fiemap_fill_next_extent(info,
889                                                bkey_start_offset(k.k) << 9,
890                                                0, k.k->size << 9,
891                                                flags|
892                                                FIEMAP_EXTENT_DELALLOC|
893                                                FIEMAP_EXTENT_UNWRITTEN);
894         } else {
895                 BUG();
896         }
897 }
898
899 static int bch2_fiemap(struct inode *vinode, struct fiemap_extent_info *info,
900                        u64 start, u64 len)
901 {
902         struct bch_fs *c = vinode->i_sb->s_fs_info;
903         struct bch_inode_info *ei = to_bch_ei(vinode);
904         struct btree_trans trans;
905         struct btree_iter iter;
906         struct bkey_s_c k;
907         struct bkey_buf cur, prev;
908         struct bpos end = POS(ei->v.i_ino, (start + len) >> 9);
909         unsigned offset_into_extent, sectors;
910         bool have_extent = false;
911         u32 snapshot;
912         int ret = 0;
913
914         ret = fiemap_prep(&ei->v, info, start, &len, FIEMAP_FLAG_SYNC);
915         if (ret)
916                 return ret;
917
918         if (start + len < start)
919                 return -EINVAL;
920
921         start >>= 9;
922
923         bch2_bkey_buf_init(&cur);
924         bch2_bkey_buf_init(&prev);
925         bch2_trans_init(&trans, c, 0, 0);
926 retry:
927         bch2_trans_begin(&trans);
928
929         ret = bch2_subvolume_get_snapshot(&trans, ei->ei_subvol, &snapshot);
930         if (ret)
931                 goto err;
932
933         bch2_trans_iter_init(&trans, &iter, BTREE_ID_extents,
934                              SPOS(ei->v.i_ino, start, snapshot), 0);
935
936         while (!(ret = btree_trans_too_many_iters(&trans)) &&
937                (k = bch2_btree_iter_peek(&iter)).k &&
938                !(ret = bkey_err(k)) &&
939                bkey_cmp(iter.pos, end) < 0) {
940                 enum btree_id data_btree = BTREE_ID_extents;
941
942                 if (!bkey_extent_is_data(k.k) &&
943                     k.k->type != KEY_TYPE_reservation) {
944                         bch2_btree_iter_advance(&iter);
945                         continue;
946                 }
947
948                 offset_into_extent      = iter.pos.offset -
949                         bkey_start_offset(k.k);
950                 sectors                 = k.k->size - offset_into_extent;
951
952                 bch2_bkey_buf_reassemble(&cur, c, k);
953
954                 ret = bch2_read_indirect_extent(&trans, &data_btree,
955                                         &offset_into_extent, &cur);
956                 if (ret)
957                         break;
958
959                 k = bkey_i_to_s_c(cur.k);
960                 bch2_bkey_buf_realloc(&prev, c, k.k->u64s);
961
962                 sectors = min(sectors, k.k->size - offset_into_extent);
963
964                 bch2_cut_front(POS(k.k->p.inode,
965                                    bkey_start_offset(k.k) +
966                                    offset_into_extent),
967                                cur.k);
968                 bch2_key_resize(&cur.k->k, sectors);
969                 cur.k->k.p = iter.pos;
970                 cur.k->k.p.offset += cur.k->k.size;
971
972                 if (have_extent) {
973                         ret = bch2_fill_extent(c, info,
974                                         bkey_i_to_s_c(prev.k), 0);
975                         if (ret)
976                                 break;
977                 }
978
979                 bkey_copy(prev.k, cur.k);
980                 have_extent = true;
981
982                 bch2_btree_iter_set_pos(&iter,
983                         POS(iter.pos.inode, iter.pos.offset + sectors));
984         }
985         start = iter.pos.offset;
986         bch2_trans_iter_exit(&trans, &iter);
987 err:
988         if (ret == -EINTR)
989                 goto retry;
990
991         if (!ret && have_extent)
992                 ret = bch2_fill_extent(c, info, bkey_i_to_s_c(prev.k),
993                                        FIEMAP_EXTENT_LAST);
994
995         bch2_trans_exit(&trans);
996         bch2_bkey_buf_exit(&cur, c);
997         bch2_bkey_buf_exit(&prev, c);
998         return ret < 0 ? ret : 0;
999 }
1000
1001 static const struct vm_operations_struct bch_vm_ops = {
1002         .fault          = bch2_page_fault,
1003         .map_pages      = filemap_map_pages,
1004         .page_mkwrite   = bch2_page_mkwrite,
1005 };
1006
1007 static int bch2_mmap(struct file *file, struct vm_area_struct *vma)
1008 {
1009         file_accessed(file);
1010
1011         vma->vm_ops = &bch_vm_ops;
1012         return 0;
1013 }
1014
1015 /* Directories: */
1016
1017 static loff_t bch2_dir_llseek(struct file *file, loff_t offset, int whence)
1018 {
1019         return generic_file_llseek_size(file, offset, whence,
1020                                         S64_MAX, S64_MAX);
1021 }
1022
1023 static int bch2_vfs_readdir(struct file *file, struct dir_context *ctx)
1024 {
1025         struct bch_inode_info *inode = file_bch_inode(file);
1026         struct bch_fs *c = inode->v.i_sb->s_fs_info;
1027
1028         if (!dir_emit_dots(file, ctx))
1029                 return 0;
1030
1031         return bch2_readdir(c, inode_inum(inode), ctx);
1032 }
1033
1034 static const struct file_operations bch_file_operations = {
1035         .llseek         = bch2_llseek,
1036         .read_iter      = bch2_read_iter,
1037         .write_iter     = bch2_write_iter,
1038         .mmap           = bch2_mmap,
1039         .open           = generic_file_open,
1040         .fsync          = bch2_fsync,
1041         .splice_read    = generic_file_splice_read,
1042         .splice_write   = iter_file_splice_write,
1043         .fallocate      = bch2_fallocate_dispatch,
1044         .unlocked_ioctl = bch2_fs_file_ioctl,
1045 #ifdef CONFIG_COMPAT
1046         .compat_ioctl   = bch2_compat_fs_ioctl,
1047 #endif
1048         .remap_file_range = bch2_remap_file_range,
1049 };
1050
1051 static const struct inode_operations bch_file_inode_operations = {
1052         .getattr        = bch2_getattr,
1053         .setattr        = bch2_setattr,
1054         .fiemap         = bch2_fiemap,
1055         .listxattr      = bch2_xattr_list,
1056 #ifdef CONFIG_BCACHEFS_POSIX_ACL
1057         .get_acl        = bch2_get_acl,
1058         .set_acl        = bch2_set_acl,
1059 #endif
1060 };
1061
1062 static const struct inode_operations bch_dir_inode_operations = {
1063         .lookup         = bch2_lookup,
1064         .create         = bch2_create,
1065         .link           = bch2_link,
1066         .unlink         = bch2_unlink,
1067         .symlink        = bch2_symlink,
1068         .mkdir          = bch2_mkdir,
1069         .rmdir          = bch2_unlink,
1070         .mknod          = bch2_mknod,
1071         .rename         = bch2_rename2,
1072         .getattr        = bch2_getattr,
1073         .setattr        = bch2_setattr,
1074         .tmpfile        = bch2_tmpfile,
1075         .listxattr      = bch2_xattr_list,
1076 #ifdef CONFIG_BCACHEFS_POSIX_ACL
1077         .get_acl        = bch2_get_acl,
1078         .set_acl        = bch2_set_acl,
1079 #endif
1080 };
1081
1082 static const struct file_operations bch_dir_file_operations = {
1083         .llseek         = bch2_dir_llseek,
1084         .read           = generic_read_dir,
1085         .iterate_shared = bch2_vfs_readdir,
1086         .fsync          = bch2_fsync,
1087         .unlocked_ioctl = bch2_fs_file_ioctl,
1088 #ifdef CONFIG_COMPAT
1089         .compat_ioctl   = bch2_compat_fs_ioctl,
1090 #endif
1091 };
1092
1093 static const struct inode_operations bch_symlink_inode_operations = {
1094         .get_link       = page_get_link,
1095         .getattr        = bch2_getattr,
1096         .setattr        = bch2_setattr,
1097         .listxattr      = bch2_xattr_list,
1098 #ifdef CONFIG_BCACHEFS_POSIX_ACL
1099         .get_acl        = bch2_get_acl,
1100         .set_acl        = bch2_set_acl,
1101 #endif
1102 };
1103
1104 static const struct inode_operations bch_special_inode_operations = {
1105         .getattr        = bch2_getattr,
1106         .setattr        = bch2_setattr,
1107         .listxattr      = bch2_xattr_list,
1108 #ifdef CONFIG_BCACHEFS_POSIX_ACL
1109         .get_acl        = bch2_get_acl,
1110         .set_acl        = bch2_set_acl,
1111 #endif
1112 };
1113
1114 static const struct address_space_operations bch_address_space_operations = {
1115         .writepage      = bch2_writepage,
1116         .readpage       = bch2_readpage,
1117         .writepages     = bch2_writepages,
1118         .readahead      = bch2_readahead,
1119         .set_page_dirty = __set_page_dirty_nobuffers,
1120         .write_begin    = bch2_write_begin,
1121         .write_end      = bch2_write_end,
1122         .invalidatepage = bch2_invalidatepage,
1123         .releasepage    = bch2_releasepage,
1124         .direct_IO      = noop_direct_IO,
1125 #ifdef CONFIG_MIGRATION
1126         .migratepage    = bch2_migrate_page,
1127 #endif
1128         .error_remove_page = generic_error_remove_page,
1129 };
1130
1131 struct bcachefs_fid {
1132         u64             inum;
1133         u32             subvol;
1134         u32             gen;
1135 } __packed;
1136
1137 struct bcachefs_fid_with_parent {
1138         struct bcachefs_fid     fid;
1139         struct bcachefs_fid     dir;
1140 } __packed;
1141
1142 static int bcachefs_fid_valid(int fh_len, int fh_type)
1143 {
1144         switch (fh_type) {
1145         case FILEID_BCACHEFS_WITHOUT_PARENT:
1146                 return fh_len == sizeof(struct bcachefs_fid) / sizeof(u32);
1147         case FILEID_BCACHEFS_WITH_PARENT:
1148                 return fh_len == sizeof(struct bcachefs_fid_with_parent) / sizeof(u32);
1149         default:
1150                 return false;
1151         }
1152 }
1153
1154 static struct bcachefs_fid bch2_inode_to_fid(struct bch_inode_info *inode)
1155 {
1156         return (struct bcachefs_fid) {
1157                 .inum   = inode->ei_inode.bi_inum,
1158                 .subvol = inode->ei_subvol,
1159                 .gen    = inode->ei_inode.bi_generation,
1160         };
1161 }
1162
1163 static int bch2_encode_fh(struct inode *vinode, u32 *fh, int *len,
1164                           struct inode *vdir)
1165 {
1166         struct bch_inode_info *inode    = to_bch_ei(vinode);
1167         struct bch_inode_info *dir      = to_bch_ei(vdir);
1168
1169         if (*len < sizeof(struct bcachefs_fid_with_parent) / sizeof(u32))
1170                 return FILEID_INVALID;
1171
1172         if (!S_ISDIR(inode->v.i_mode) && dir) {
1173                 struct bcachefs_fid_with_parent *fid = (void *) fh;
1174
1175                 fid->fid = bch2_inode_to_fid(inode);
1176                 fid->dir = bch2_inode_to_fid(dir);
1177
1178                 *len = sizeof(*fid) / sizeof(u32);
1179                 return FILEID_BCACHEFS_WITH_PARENT;
1180         } else {
1181                 struct bcachefs_fid *fid = (void *) fh;
1182
1183                 *fid = bch2_inode_to_fid(inode);
1184
1185                 *len = sizeof(*fid) / sizeof(u32);
1186                 return FILEID_BCACHEFS_WITHOUT_PARENT;
1187         }
1188 }
1189
1190 static struct inode *bch2_nfs_get_inode(struct super_block *sb,
1191                                         struct bcachefs_fid fid)
1192 {
1193         struct bch_fs *c = sb->s_fs_info;
1194         struct inode *vinode = bch2_vfs_inode_get(c, (subvol_inum) {
1195                                     .subvol = fid.subvol,
1196                                     .inum = fid.inum,
1197         });
1198         if (!IS_ERR(vinode) && vinode->i_generation != fid.gen) {
1199                 iput(vinode);
1200                 vinode = ERR_PTR(-ESTALE);
1201         }
1202         return vinode;
1203 }
1204
1205 static struct dentry *bch2_fh_to_dentry(struct super_block *sb, struct fid *_fid,
1206                 int fh_len, int fh_type)
1207 {
1208         struct bcachefs_fid *fid = (void *) _fid;
1209
1210         if (!bcachefs_fid_valid(fh_len, fh_type))
1211                 return NULL;
1212
1213         return d_obtain_alias(bch2_nfs_get_inode(sb, *fid));
1214 }
1215
1216 static struct dentry *bch2_fh_to_parent(struct super_block *sb, struct fid *_fid,
1217                 int fh_len, int fh_type)
1218 {
1219         struct bcachefs_fid_with_parent *fid = (void *) _fid;
1220
1221         if (!bcachefs_fid_valid(fh_len, fh_type) ||
1222             fh_type != FILEID_BCACHEFS_WITH_PARENT)
1223                 return NULL;
1224
1225         return d_obtain_alias(bch2_nfs_get_inode(sb, fid->dir));
1226 }
1227
1228 static struct dentry *bch2_get_parent(struct dentry *child)
1229 {
1230         struct bch_inode_info *inode = to_bch_ei(child->d_inode);
1231         struct bch_fs *c = inode->v.i_sb->s_fs_info;
1232         subvol_inum parent_inum = {
1233                 .subvol = inode->ei_inode.bi_parent_subvol ?:
1234                         inode->ei_subvol,
1235                 .inum = inode->ei_inode.bi_dir,
1236         };
1237
1238         if (!parent_inum.inum)
1239                 return NULL;
1240
1241         return d_obtain_alias(bch2_vfs_inode_get(c, parent_inum));
1242 }
1243
1244 static int bch2_get_name(struct dentry *parent, char *name, struct dentry *child)
1245 {
1246         struct bch_inode_info *inode    = to_bch_ei(child->d_inode);
1247         struct bch_inode_info *dir      = to_bch_ei(parent->d_inode);
1248         struct bch_fs *c = inode->v.i_sb->s_fs_info;
1249         struct btree_trans trans;
1250         struct btree_iter iter1;
1251         struct btree_iter iter2;
1252         struct bkey_s_c k;
1253         struct bkey_s_c_dirent d;
1254         struct bch_inode_unpacked inode_u;
1255         subvol_inum target;
1256         u32 snapshot;
1257         unsigned name_len;
1258         int ret;
1259
1260         if (!S_ISDIR(dir->v.i_mode))
1261                 return -EINVAL;
1262
1263         bch2_trans_init(&trans, c, 0, 0);
1264
1265         bch2_trans_iter_init(&trans, &iter1, BTREE_ID_dirents,
1266                              POS(dir->ei_inode.bi_inum, 0), 0);
1267         bch2_trans_iter_init(&trans, &iter2, BTREE_ID_dirents,
1268                              POS(dir->ei_inode.bi_inum, 0), 0);
1269 retry:
1270         bch2_trans_begin(&trans);
1271
1272         ret = bch2_subvolume_get_snapshot(&trans, dir->ei_subvol, &snapshot);
1273         if (ret)
1274                 goto err;
1275
1276         bch2_btree_iter_set_snapshot(&iter1, snapshot);
1277         bch2_btree_iter_set_snapshot(&iter2, snapshot);
1278
1279         ret = bch2_inode_find_by_inum_trans(&trans, inode_inum(inode), &inode_u);
1280         if (ret)
1281                 goto err;
1282
1283         if (inode_u.bi_dir == dir->ei_inode.bi_inum) {
1284                 bch2_btree_iter_set_pos(&iter1, POS(inode_u.bi_dir, inode_u.bi_dir_offset));
1285
1286                 k = bch2_btree_iter_peek_slot(&iter1);
1287                 ret = bkey_err(k);
1288                 if (ret)
1289                         goto err;
1290
1291                 if (k.k->type != KEY_TYPE_dirent) {
1292                         ret = -ENOENT;
1293                         goto err;
1294                 }
1295
1296                 d = bkey_s_c_to_dirent(k);
1297                 ret = bch2_dirent_read_target(&trans, inode_inum(dir), d, &target);
1298                 if (ret > 0)
1299                         ret = -ENOENT;
1300                 if (ret)
1301                         goto err;
1302
1303                 if (target.subvol       == inode->ei_subvol &&
1304                     target.inum         == inode->ei_inode.bi_inum)
1305                         goto found;
1306         } else {
1307                 /*
1308                  * File with multiple hardlinks and our backref is to the wrong
1309                  * directory - linear search:
1310                  */
1311                 for_each_btree_key_continue_norestart(iter2, 0, k, ret) {
1312                         if (k.k->p.inode > dir->ei_inode.bi_inum)
1313                                 break;
1314
1315                         if (k.k->type != KEY_TYPE_dirent)
1316                                 continue;
1317
1318                         d = bkey_s_c_to_dirent(k);
1319                         ret = bch2_dirent_read_target(&trans, inode_inum(dir), d, &target);
1320                         if (ret < 0)
1321                                 break;
1322                         if (ret)
1323                                 continue;
1324
1325                         if (target.subvol       == inode->ei_subvol &&
1326                             target.inum         == inode->ei_inode.bi_inum)
1327                                 goto found;
1328                 }
1329         }
1330
1331         ret = -ENOENT;
1332         goto err;
1333 found:
1334         name_len = min_t(unsigned, bch2_dirent_name_bytes(d), NAME_MAX);
1335
1336         memcpy(name, d.v->d_name, name_len);
1337         name[name_len] = '\0';
1338 err:
1339         if (ret == -EINTR)
1340                 goto retry;
1341
1342         bch2_trans_iter_exit(&trans, &iter1);
1343         bch2_trans_iter_exit(&trans, &iter2);
1344         bch2_trans_exit(&trans);
1345
1346         return ret;
1347 }
1348
1349 static const struct export_operations bch_export_ops = {
1350         .encode_fh      = bch2_encode_fh,
1351         .fh_to_dentry   = bch2_fh_to_dentry,
1352         .fh_to_parent   = bch2_fh_to_parent,
1353         .get_parent     = bch2_get_parent,
1354         .get_name       = bch2_get_name,
1355 };
1356
1357 static void bch2_vfs_inode_init(struct btree_trans *trans, subvol_inum inum,
1358                                 struct bch_inode_info *inode,
1359                                 struct bch_inode_unpacked *bi,
1360                                 struct bch_subvolume *subvol)
1361 {
1362         bch2_inode_update_after_write(trans, inode, bi, ~0);
1363
1364         if (BCH_SUBVOLUME_SNAP(subvol))
1365                 set_bit(EI_INODE_SNAPSHOT, &inode->ei_flags);
1366         else
1367                 clear_bit(EI_INODE_SNAPSHOT, &inode->ei_flags);
1368
1369         inode->v.i_blocks       = bi->bi_sectors;
1370         inode->v.i_ino          = bi->bi_inum;
1371         inode->v.i_rdev         = bi->bi_dev;
1372         inode->v.i_generation   = bi->bi_generation;
1373         inode->v.i_size         = bi->bi_size;
1374
1375         inode->ei_flags         = 0;
1376         inode->ei_quota_reserved = 0;
1377         inode->ei_qid           = bch_qid(bi);
1378         inode->ei_subvol        = inum.subvol;
1379
1380         inode->v.i_mapping->a_ops = &bch_address_space_operations;
1381
1382         switch (inode->v.i_mode & S_IFMT) {
1383         case S_IFREG:
1384                 inode->v.i_op   = &bch_file_inode_operations;
1385                 inode->v.i_fop  = &bch_file_operations;
1386                 break;
1387         case S_IFDIR:
1388                 inode->v.i_op   = &bch_dir_inode_operations;
1389                 inode->v.i_fop  = &bch_dir_file_operations;
1390                 break;
1391         case S_IFLNK:
1392                 inode_nohighmem(&inode->v);
1393                 inode->v.i_op   = &bch_symlink_inode_operations;
1394                 break;
1395         default:
1396                 init_special_inode(&inode->v, inode->v.i_mode, inode->v.i_rdev);
1397                 inode->v.i_op   = &bch_special_inode_operations;
1398                 break;
1399         }
1400 }
1401
1402 static struct inode *bch2_alloc_inode(struct super_block *sb)
1403 {
1404         struct bch_inode_info *inode;
1405
1406         inode = kmem_cache_alloc(bch2_inode_cache, GFP_NOFS);
1407         if (!inode)
1408                 return NULL;
1409
1410         inode_init_once(&inode->v);
1411         mutex_init(&inode->ei_update_lock);
1412         pagecache_lock_init(&inode->ei_pagecache_lock);
1413         mutex_init(&inode->ei_quota_lock);
1414
1415         return &inode->v;
1416 }
1417
1418 static void bch2_i_callback(struct rcu_head *head)
1419 {
1420         struct inode *vinode = container_of(head, struct inode, i_rcu);
1421         struct bch_inode_info *inode = to_bch_ei(vinode);
1422
1423         kmem_cache_free(bch2_inode_cache, inode);
1424 }
1425
1426 static void bch2_destroy_inode(struct inode *vinode)
1427 {
1428         call_rcu(&vinode->i_rcu, bch2_i_callback);
1429 }
1430
1431 static int inode_update_times_fn(struct bch_inode_info *inode,
1432                                  struct bch_inode_unpacked *bi,
1433                                  void *p)
1434 {
1435         struct bch_fs *c = inode->v.i_sb->s_fs_info;
1436
1437         bi->bi_atime    = timespec_to_bch2_time(c, inode->v.i_atime);
1438         bi->bi_mtime    = timespec_to_bch2_time(c, inode->v.i_mtime);
1439         bi->bi_ctime    = timespec_to_bch2_time(c, inode->v.i_ctime);
1440
1441         return 0;
1442 }
1443
1444 static int bch2_vfs_write_inode(struct inode *vinode,
1445                                 struct writeback_control *wbc)
1446 {
1447         struct bch_fs *c = vinode->i_sb->s_fs_info;
1448         struct bch_inode_info *inode = to_bch_ei(vinode);
1449         int ret;
1450
1451         mutex_lock(&inode->ei_update_lock);
1452         ret = bch2_write_inode(c, inode, inode_update_times_fn, NULL,
1453                                ATTR_ATIME|ATTR_MTIME|ATTR_CTIME);
1454         mutex_unlock(&inode->ei_update_lock);
1455
1456         return ret;
1457 }
1458
1459 static void bch2_evict_inode(struct inode *vinode)
1460 {
1461         struct bch_fs *c = vinode->i_sb->s_fs_info;
1462         struct bch_inode_info *inode = to_bch_ei(vinode);
1463
1464         truncate_inode_pages_final(&inode->v.i_data);
1465
1466         clear_inode(&inode->v);
1467
1468         BUG_ON(!is_bad_inode(&inode->v) && inode->ei_quota_reserved);
1469
1470         if (!inode->v.i_nlink && !is_bad_inode(&inode->v)) {
1471                 bch2_quota_acct(c, inode->ei_qid, Q_SPC, -((s64) inode->v.i_blocks),
1472                                 KEY_TYPE_QUOTA_WARN);
1473                 bch2_quota_acct(c, inode->ei_qid, Q_INO, -1,
1474                                 KEY_TYPE_QUOTA_WARN);
1475                 bch2_inode_rm(c, inode_inum(inode));
1476         }
1477 }
1478
1479 void bch2_evict_subvolume_inodes(struct bch_fs *c,
1480                                  struct snapshot_id_list *s)
1481 {
1482         struct super_block *sb = c->vfs_sb;
1483         struct inode *inode;
1484
1485         spin_lock(&sb->s_inode_list_lock);
1486         list_for_each_entry(inode, &sb->s_inodes, i_sb_list) {
1487                 if (!snapshot_list_has_id(s, to_bch_ei(inode)->ei_subvol) ||
1488                     (inode->i_state & I_FREEING))
1489                         continue;
1490
1491                 d_mark_dontcache(inode);
1492                 d_prune_aliases(inode);
1493         }
1494         spin_unlock(&sb->s_inode_list_lock);
1495 again:
1496         cond_resched();
1497         spin_lock(&sb->s_inode_list_lock);
1498         list_for_each_entry(inode, &sb->s_inodes, i_sb_list) {
1499                 if (!snapshot_list_has_id(s, to_bch_ei(inode)->ei_subvol) ||
1500                     (inode->i_state & I_FREEING))
1501                         continue;
1502
1503                 if (!(inode->i_state & I_DONTCACHE)) {
1504                         d_mark_dontcache(inode);
1505                         d_prune_aliases(inode);
1506                 }
1507
1508                 spin_lock(&inode->i_lock);
1509                 if (snapshot_list_has_id(s, to_bch_ei(inode)->ei_subvol) &&
1510                     !(inode->i_state & I_FREEING)) {
1511                         wait_queue_head_t *wq = bit_waitqueue(&inode->i_state, __I_NEW);
1512                         DEFINE_WAIT_BIT(wait, &inode->i_state, __I_NEW);
1513                         prepare_to_wait(wq, &wait.wq_entry, TASK_UNINTERRUPTIBLE);
1514                         spin_unlock(&inode->i_lock);
1515                         spin_unlock(&sb->s_inode_list_lock);
1516                         schedule();
1517                         finish_wait(wq, &wait.wq_entry);
1518                         goto again;
1519                 }
1520
1521                 spin_unlock(&inode->i_lock);
1522         }
1523         spin_unlock(&sb->s_inode_list_lock);
1524 }
1525
1526 static int bch2_statfs(struct dentry *dentry, struct kstatfs *buf)
1527 {
1528         struct super_block *sb = dentry->d_sb;
1529         struct bch_fs *c = sb->s_fs_info;
1530         struct bch_fs_usage_short usage = bch2_fs_usage_read_short(c);
1531         unsigned shift = sb->s_blocksize_bits - 9;
1532         /*
1533          * this assumes inodes take up 64 bytes, which is a decent average
1534          * number:
1535          */
1536         u64 avail_inodes = ((usage.capacity - usage.used) << 3);
1537         u64 fsid;
1538
1539         buf->f_type     = BCACHEFS_STATFS_MAGIC;
1540         buf->f_bsize    = sb->s_blocksize;
1541         buf->f_blocks   = usage.capacity >> shift;
1542         buf->f_bfree    = usage.free >> shift;
1543         buf->f_bavail   = avail_factor(usage.free) >> shift;
1544
1545         buf->f_files    = usage.nr_inodes + avail_inodes;
1546         buf->f_ffree    = avail_inodes;
1547
1548         fsid = le64_to_cpup((void *) c->sb.user_uuid.b) ^
1549                le64_to_cpup((void *) c->sb.user_uuid.b + sizeof(u64));
1550         buf->f_fsid.val[0] = fsid & 0xFFFFFFFFUL;
1551         buf->f_fsid.val[1] = (fsid >> 32) & 0xFFFFFFFFUL;
1552         buf->f_namelen  = BCH_NAME_MAX;
1553
1554         return 0;
1555 }
1556
1557 static int bch2_sync_fs(struct super_block *sb, int wait)
1558 {
1559         struct bch_fs *c = sb->s_fs_info;
1560
1561         if (c->opts.journal_flush_disabled)
1562                 return 0;
1563
1564         if (!wait) {
1565                 bch2_journal_flush_async(&c->journal, NULL);
1566                 return 0;
1567         }
1568
1569         return bch2_journal_flush(&c->journal);
1570 }
1571
1572 static struct bch_fs *bch2_path_to_fs(const char *path)
1573 {
1574         struct bch_fs *c;
1575         dev_t dev;
1576         int ret;
1577
1578         ret = lookup_bdev(path, &dev);
1579         if (ret)
1580                 return ERR_PTR(ret);
1581
1582         c = bch2_dev_to_fs(dev);
1583         if (c)
1584                 closure_put(&c->cl);
1585         return c ?: ERR_PTR(-ENOENT);
1586 }
1587
1588 static char **split_devs(const char *_dev_name, unsigned *nr)
1589 {
1590         char *dev_name = NULL, **devs = NULL, *s;
1591         size_t i, nr_devs = 0;
1592
1593         dev_name = kstrdup(_dev_name, GFP_KERNEL);
1594         if (!dev_name)
1595                 return NULL;
1596
1597         for (s = dev_name; s; s = strchr(s + 1, ':'))
1598                 nr_devs++;
1599
1600         devs = kcalloc(nr_devs + 1, sizeof(const char *), GFP_KERNEL);
1601         if (!devs) {
1602                 kfree(dev_name);
1603                 return NULL;
1604         }
1605
1606         for (i = 0, s = dev_name;
1607              s;
1608              (s = strchr(s, ':')) && (*s++ = '\0'))
1609                 devs[i++] = s;
1610
1611         *nr = nr_devs;
1612         return devs;
1613 }
1614
1615 static int bch2_remount(struct super_block *sb, int *flags, char *data)
1616 {
1617         struct bch_fs *c = sb->s_fs_info;
1618         struct bch_opts opts = bch2_opts_empty();
1619         int ret;
1620
1621         opt_set(opts, read_only, (*flags & SB_RDONLY) != 0);
1622
1623         ret = bch2_parse_mount_opts(c, &opts, data);
1624         if (ret)
1625                 return ret;
1626
1627         if (opts.read_only != c->opts.read_only) {
1628                 down_write(&c->state_lock);
1629
1630                 if (opts.read_only) {
1631                         bch2_fs_read_only(c);
1632
1633                         sb->s_flags |= SB_RDONLY;
1634                 } else {
1635                         ret = bch2_fs_read_write(c);
1636                         if (ret) {
1637                                 bch_err(c, "error going rw: %i", ret);
1638                                 up_write(&c->state_lock);
1639                                 return -EINVAL;
1640                         }
1641
1642                         sb->s_flags &= ~SB_RDONLY;
1643                 }
1644
1645                 c->opts.read_only = opts.read_only;
1646
1647                 up_write(&c->state_lock);
1648         }
1649
1650         if (opts.errors >= 0)
1651                 c->opts.errors = opts.errors;
1652
1653         return ret;
1654 }
1655
1656 static int bch2_show_devname(struct seq_file *seq, struct dentry *root)
1657 {
1658         struct bch_fs *c = root->d_sb->s_fs_info;
1659         struct bch_dev *ca;
1660         unsigned i;
1661         bool first = true;
1662
1663         for_each_online_member(ca, c, i) {
1664                 if (!first)
1665                         seq_putc(seq, ':');
1666                 first = false;
1667                 seq_puts(seq, "/dev/");
1668                 seq_puts(seq, ca->name);
1669         }
1670
1671         return 0;
1672 }
1673
1674 static int bch2_show_options(struct seq_file *seq, struct dentry *root)
1675 {
1676         struct bch_fs *c = root->d_sb->s_fs_info;
1677         enum bch_opt_id i;
1678         struct printbuf buf = PRINTBUF;
1679         int ret = 0;
1680
1681         for (i = 0; i < bch2_opts_nr; i++) {
1682                 const struct bch_option *opt = &bch2_opt_table[i];
1683                 u64 v = bch2_opt_get_by_id(&c->opts, i);
1684
1685                 if (!(opt->flags & OPT_MOUNT))
1686                         continue;
1687
1688                 if (v == bch2_opt_get_by_id(&bch2_opts_default, i))
1689                         continue;
1690
1691                 printbuf_reset(&buf);
1692                 bch2_opt_to_text(&buf, c, c->disk_sb.sb, opt, v,
1693                                  OPT_SHOW_MOUNT_STYLE);
1694                 seq_putc(seq, ',');
1695                 seq_puts(seq, buf.buf);
1696         }
1697
1698         if (buf.allocation_failure)
1699                 ret = -ENOMEM;
1700         printbuf_exit(&buf);
1701         return ret;
1702 }
1703
1704 static void bch2_put_super(struct super_block *sb)
1705 {
1706         struct bch_fs *c = sb->s_fs_info;
1707
1708         __bch2_fs_stop(c);
1709 }
1710
1711 static const struct super_operations bch_super_operations = {
1712         .alloc_inode    = bch2_alloc_inode,
1713         .destroy_inode  = bch2_destroy_inode,
1714         .write_inode    = bch2_vfs_write_inode,
1715         .evict_inode    = bch2_evict_inode,
1716         .sync_fs        = bch2_sync_fs,
1717         .statfs         = bch2_statfs,
1718         .show_devname   = bch2_show_devname,
1719         .show_options   = bch2_show_options,
1720         .remount_fs     = bch2_remount,
1721         .put_super      = bch2_put_super,
1722 #if 0
1723         .freeze_fs      = bch2_freeze,
1724         .unfreeze_fs    = bch2_unfreeze,
1725 #endif
1726 };
1727
1728 static int bch2_set_super(struct super_block *s, void *data)
1729 {
1730         s->s_fs_info = data;
1731         return 0;
1732 }
1733
1734 static int bch2_noset_super(struct super_block *s, void *data)
1735 {
1736         return -EBUSY;
1737 }
1738
1739 static int bch2_test_super(struct super_block *s, void *data)
1740 {
1741         struct bch_fs *c = s->s_fs_info;
1742         struct bch_fs **devs = data;
1743         unsigned i;
1744
1745         if (!c)
1746                 return false;
1747
1748         for (i = 0; devs[i]; i++)
1749                 if (c != devs[i])
1750                         return false;
1751         return true;
1752 }
1753
1754 static struct dentry *bch2_mount(struct file_system_type *fs_type,
1755                                  int flags, const char *dev_name, void *data)
1756 {
1757         struct bch_fs *c;
1758         struct bch_dev *ca;
1759         struct super_block *sb;
1760         struct inode *vinode;
1761         struct bch_opts opts = bch2_opts_empty();
1762         char **devs;
1763         struct bch_fs **devs_to_fs = NULL;
1764         unsigned i, nr_devs;
1765         int ret;
1766
1767         opt_set(opts, read_only, (flags & SB_RDONLY) != 0);
1768
1769         ret = bch2_parse_mount_opts(NULL, &opts, data);
1770         if (ret)
1771                 return ERR_PTR(ret);
1772
1773         if (!dev_name || strlen(dev_name) == 0)
1774                 return ERR_PTR(-EINVAL);
1775
1776         devs = split_devs(dev_name, &nr_devs);
1777         if (!devs)
1778                 return ERR_PTR(-ENOMEM);
1779
1780         devs_to_fs = kcalloc(nr_devs + 1, sizeof(void *), GFP_KERNEL);
1781         if (!devs_to_fs) {
1782                 sb = ERR_PTR(-ENOMEM);
1783                 goto got_sb;
1784         }
1785
1786         for (i = 0; i < nr_devs; i++)
1787                 devs_to_fs[i] = bch2_path_to_fs(devs[i]);
1788
1789         sb = sget(fs_type, bch2_test_super, bch2_noset_super,
1790                   flags|SB_NOSEC, devs_to_fs);
1791         if (!IS_ERR(sb))
1792                 goto got_sb;
1793
1794         c = bch2_fs_open(devs, nr_devs, opts);
1795         if (IS_ERR(c)) {
1796                 sb = ERR_CAST(c);
1797                 goto got_sb;
1798         }
1799
1800         /* Some options can't be parsed until after the fs is started: */
1801         ret = bch2_parse_mount_opts(c, &opts, data);
1802         if (ret) {
1803                 bch2_fs_stop(c);
1804                 sb = ERR_PTR(ret);
1805                 goto got_sb;
1806         }
1807
1808         bch2_opts_apply(&c->opts, opts);
1809
1810         sb = sget(fs_type, NULL, bch2_set_super, flags|SB_NOSEC, c);
1811         if (IS_ERR(sb))
1812                 bch2_fs_stop(c);
1813 got_sb:
1814         kfree(devs_to_fs);
1815         kfree(devs[0]);
1816         kfree(devs);
1817
1818         if (IS_ERR(sb))
1819                 return ERR_CAST(sb);
1820
1821         c = sb->s_fs_info;
1822
1823         if (sb->s_root) {
1824                 if ((flags ^ sb->s_flags) & SB_RDONLY) {
1825                         ret = -EBUSY;
1826                         goto err_put_super;
1827                 }
1828                 goto out;
1829         }
1830
1831         sb->s_blocksize         = block_bytes(c);
1832         sb->s_blocksize_bits    = ilog2(block_bytes(c));
1833         sb->s_maxbytes          = MAX_LFS_FILESIZE;
1834         sb->s_op                = &bch_super_operations;
1835         sb->s_export_op         = &bch_export_ops;
1836 #ifdef CONFIG_BCACHEFS_QUOTA
1837         sb->s_qcop              = &bch2_quotactl_operations;
1838         sb->s_quota_types       = QTYPE_MASK_USR|QTYPE_MASK_GRP|QTYPE_MASK_PRJ;
1839 #endif
1840         sb->s_xattr             = bch2_xattr_handlers;
1841         sb->s_magic             = BCACHEFS_STATFS_MAGIC;
1842         sb->s_time_gran         = c->sb.nsec_per_time_unit;
1843         sb->s_time_min          = div_s64(S64_MIN, c->sb.time_units_per_sec) + 1;
1844         sb->s_time_max          = div_s64(S64_MAX, c->sb.time_units_per_sec);
1845         c->vfs_sb               = sb;
1846         strlcpy(sb->s_id, c->name, sizeof(sb->s_id));
1847
1848         ret = super_setup_bdi(sb);
1849         if (ret)
1850                 goto err_put_super;
1851
1852         sb->s_bdi->ra_pages             = VM_READAHEAD_PAGES;
1853
1854         for_each_online_member(ca, c, i) {
1855                 struct block_device *bdev = ca->disk_sb.bdev;
1856
1857                 /* XXX: create an anonymous device for multi device filesystems */
1858                 sb->s_bdev      = bdev;
1859                 sb->s_dev       = bdev->bd_dev;
1860                 percpu_ref_put(&ca->io_ref);
1861                 break;
1862         }
1863
1864         c->dev = sb->s_dev;
1865
1866 #ifdef CONFIG_BCACHEFS_POSIX_ACL
1867         if (c->opts.acl)
1868                 sb->s_flags     |= SB_POSIXACL;
1869 #endif
1870
1871         sb->s_shrink.seeks = 0;
1872
1873         vinode = bch2_vfs_inode_get(c, BCACHEFS_ROOT_SUBVOL_INUM);
1874         if (IS_ERR(vinode)) {
1875                 bch_err(c, "error mounting: error getting root inode %i",
1876                         (int) PTR_ERR(vinode));
1877                 ret = PTR_ERR(vinode);
1878                 goto err_put_super;
1879         }
1880
1881         sb->s_root = d_make_root(vinode);
1882         if (!sb->s_root) {
1883                 bch_err(c, "error mounting: error allocating root dentry");
1884                 ret = -ENOMEM;
1885                 goto err_put_super;
1886         }
1887
1888         sb->s_flags |= SB_ACTIVE;
1889 out:
1890         return dget(sb->s_root);
1891
1892 err_put_super:
1893         deactivate_locked_super(sb);
1894         return ERR_PTR(ret);
1895 }
1896
1897 static void bch2_kill_sb(struct super_block *sb)
1898 {
1899         struct bch_fs *c = sb->s_fs_info;
1900
1901         generic_shutdown_super(sb);
1902         bch2_fs_free(c);
1903 }
1904
1905 static struct file_system_type bcache_fs_type = {
1906         .owner          = THIS_MODULE,
1907         .name           = "bcachefs",
1908         .mount          = bch2_mount,
1909         .kill_sb        = bch2_kill_sb,
1910         .fs_flags       = FS_REQUIRES_DEV,
1911 };
1912
1913 MODULE_ALIAS_FS("bcachefs");
1914
1915 void bch2_vfs_exit(void)
1916 {
1917         unregister_filesystem(&bcache_fs_type);
1918         if (bch2_inode_cache)
1919                 kmem_cache_destroy(bch2_inode_cache);
1920 }
1921
1922 int __init bch2_vfs_init(void)
1923 {
1924         int ret = -ENOMEM;
1925
1926         bch2_inode_cache = KMEM_CACHE(bch_inode_info, 0);
1927         if (!bch2_inode_cache)
1928                 goto err;
1929
1930         ret = register_filesystem(&bcache_fs_type);
1931         if (ret)
1932                 goto err;
1933
1934         return 0;
1935 err:
1936         bch2_vfs_exit();
1937         return ret;
1938 }
1939
1940 #endif /* NO_BCACHEFS_FS */