2019-07-10 23:12:15 +03:00
|
|
|
/* SPDX-License-Identifier: GPL-2.0 */
|
2017-10-06 01:41:44 +03:00
|
|
|
#ifndef _BCACHEFS_FS_H
|
|
|
|
#define _BCACHEFS_FS_H
|
2017-01-08 12:13:18 +03:00
|
|
|
|
2018-08-16 02:41:24 +03:00
|
|
|
#include "inode.h"
|
2017-12-22 02:00:30 +03:00
|
|
|
#include "opts.h"
|
2017-01-08 12:13:18 +03:00
|
|
|
#include "str_hash.h"
|
2018-01-11 14:41:59 +03:00
|
|
|
#include "quota_types.h"
|
2022-11-14 04:04:21 +03:00
|
|
|
#include "two_state_shared_lock.h"
|
2017-01-08 12:13:18 +03:00
|
|
|
|
|
|
|
#include <linux/seqlock.h>
|
2017-03-20 08:39:19 +03:00
|
|
|
#include <linux/stat.h>
|
2017-01-08 12:13:18 +03:00
|
|
|
|
|
|
|
struct bch_inode_info {
|
2017-11-05 01:32:07 +03:00
|
|
|
struct inode v;
|
2023-03-31 22:52:24 +03:00
|
|
|
struct list_head ei_vfs_inode_list;
|
2020-12-04 21:41:49 +03:00
|
|
|
unsigned long ei_flags;
|
2017-01-08 12:13:18 +03:00
|
|
|
|
2017-11-05 01:32:07 +03:00
|
|
|
struct mutex ei_update_lock;
|
2018-01-21 20:16:32 +03:00
|
|
|
u64 ei_quota_reserved;
|
2017-12-22 02:00:30 +03:00
|
|
|
unsigned long ei_last_dirtied;
|
2022-11-14 04:04:21 +03:00
|
|
|
two_state_lock_t ei_pagecache_lock;
|
2019-11-10 06:49:03 +03:00
|
|
|
|
2018-05-04 21:04:31 +03:00
|
|
|
struct mutex ei_quota_lock;
|
2018-01-11 14:41:59 +03:00
|
|
|
struct bch_qid ei_qid;
|
2017-01-08 12:13:18 +03:00
|
|
|
|
2021-09-27 01:19:46 +03:00
|
|
|
u32 ei_subvol;
|
|
|
|
|
2022-11-19 02:21:11 +03:00
|
|
|
/*
|
|
|
|
* When we've been doing nocow writes we'll need to issue flushes to the
|
|
|
|
* underlying block devices
|
|
|
|
*
|
|
|
|
* XXX: a device may have had a flush issued by some other codepath. It
|
|
|
|
* would be better to keep for each device a sequence number that's
|
|
|
|
* incremented when we isusue a cache flush, and track here the sequence
|
|
|
|
* number that needs flushing.
|
|
|
|
*/
|
|
|
|
struct bch_devs_mask ei_devs_need_flush;
|
|
|
|
|
2017-12-22 02:00:30 +03:00
|
|
|
/* copy of inode in btree: */
|
|
|
|
struct bch_inode_unpacked ei_inode;
|
2017-01-08 12:13:18 +03:00
|
|
|
};
|
|
|
|
|
2022-11-14 04:04:21 +03:00
|
|
|
#define bch2_pagecache_add_put(i) bch2_two_state_unlock(&i->ei_pagecache_lock, 0)
|
|
|
|
#define bch2_pagecache_add_tryget(i) bch2_two_state_trylock(&i->ei_pagecache_lock, 0)
|
|
|
|
#define bch2_pagecache_add_get(i) bch2_two_state_lock(&i->ei_pagecache_lock, 0)
|
|
|
|
|
|
|
|
#define bch2_pagecache_block_put(i) bch2_two_state_unlock(&i->ei_pagecache_lock, 1)
|
|
|
|
#define bch2_pagecache_block_get(i) bch2_two_state_lock(&i->ei_pagecache_lock, 1)
|
|
|
|
|
2021-09-27 01:19:46 +03:00
|
|
|
static inline subvol_inum inode_inum(struct bch_inode_info *inode)
|
|
|
|
{
|
|
|
|
return (subvol_inum) {
|
|
|
|
.subvol = inode->ei_subvol,
|
|
|
|
.inum = inode->ei_inode.bi_inum,
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
2020-12-04 21:41:49 +03:00
|
|
|
/*
|
|
|
|
* Set if we've gotten a btree error for this inode, and thus the vfs inode and
|
|
|
|
* btree inode may be inconsistent:
|
|
|
|
*/
|
|
|
|
#define EI_INODE_ERROR 0
|
|
|
|
|
2021-11-30 23:27:31 +03:00
|
|
|
/*
|
|
|
|
* Set in the inode is in a snapshot subvolume - we don't do quota accounting in
|
|
|
|
* those:
|
|
|
|
*/
|
|
|
|
#define EI_INODE_SNAPSHOT 1
|
|
|
|
|
2017-01-08 12:13:18 +03:00
|
|
|
#define to_bch_ei(_inode) \
|
2017-11-05 01:32:07 +03:00
|
|
|
container_of_or_null(_inode, struct bch_inode_info, v)
|
|
|
|
|
2018-12-17 17:26:29 +03:00
|
|
|
static inline int ptrcmp(void *l, void *r)
|
|
|
|
{
|
2019-04-18 00:01:40 +03:00
|
|
|
return cmp_int(l, r);
|
2018-12-17 17:26:29 +03:00
|
|
|
}
|
|
|
|
|
2019-07-10 23:12:15 +03:00
|
|
|
enum bch_inode_lock_op {
|
2023-11-21 03:33:52 +03:00
|
|
|
INODE_PAGECACHE_BLOCK = (1U << 0),
|
|
|
|
INODE_UPDATE_LOCK = (1U << 1),
|
2019-07-10 23:12:15 +03:00
|
|
|
};
|
|
|
|
|
|
|
|
#define bch2_lock_inodes(_locks, ...) \
|
2018-12-17 17:26:29 +03:00
|
|
|
do { \
|
|
|
|
struct bch_inode_info *a[] = { NULL, __VA_ARGS__ }; \
|
|
|
|
unsigned i; \
|
|
|
|
\
|
2019-07-10 23:12:15 +03:00
|
|
|
bubble_sort(&a[1], ARRAY_SIZE(a) - 1, ptrcmp); \
|
2018-12-17 17:26:29 +03:00
|
|
|
\
|
2019-07-10 23:12:15 +03:00
|
|
|
for (i = 1; i < ARRAY_SIZE(a); i++) \
|
2018-12-17 17:26:29 +03:00
|
|
|
if (a[i] != a[i - 1]) { \
|
2019-11-10 06:49:03 +03:00
|
|
|
if ((_locks) & INODE_PAGECACHE_BLOCK) \
|
2022-11-14 04:04:21 +03:00
|
|
|
bch2_pagecache_block_get(a[i]);\
|
2019-11-10 06:49:03 +03:00
|
|
|
if ((_locks) & INODE_UPDATE_LOCK) \
|
2018-12-17 17:26:29 +03:00
|
|
|
mutex_lock_nested(&a[i]->ei_update_lock, i);\
|
|
|
|
} \
|
|
|
|
} while (0)
|
|
|
|
|
2019-07-10 23:12:15 +03:00
|
|
|
#define bch2_unlock_inodes(_locks, ...) \
|
|
|
|
do { \
|
|
|
|
struct bch_inode_info *a[] = { NULL, __VA_ARGS__ }; \
|
|
|
|
unsigned i; \
|
|
|
|
\
|
|
|
|
bubble_sort(&a[1], ARRAY_SIZE(a) - 1, ptrcmp); \
|
|
|
|
\
|
|
|
|
for (i = 1; i < ARRAY_SIZE(a); i++) \
|
|
|
|
if (a[i] != a[i - 1]) { \
|
2019-11-10 06:49:03 +03:00
|
|
|
if ((_locks) & INODE_PAGECACHE_BLOCK) \
|
2022-11-14 04:04:21 +03:00
|
|
|
bch2_pagecache_block_put(a[i]);\
|
2019-11-10 06:49:03 +03:00
|
|
|
if ((_locks) & INODE_UPDATE_LOCK) \
|
2019-07-10 23:12:15 +03:00
|
|
|
mutex_unlock(&a[i]->ei_update_lock); \
|
|
|
|
} \
|
|
|
|
} while (0)
|
2018-12-17 17:26:29 +03:00
|
|
|
|
2017-11-05 01:32:07 +03:00
|
|
|
static inline struct bch_inode_info *file_bch_inode(struct file *file)
|
|
|
|
{
|
|
|
|
return to_bch_ei(file_inode(file));
|
|
|
|
}
|
2017-01-08 12:13:18 +03:00
|
|
|
|
2018-12-17 17:26:29 +03:00
|
|
|
static inline bool inode_attr_changing(struct bch_inode_info *dir,
|
|
|
|
struct bch_inode_info *inode,
|
|
|
|
enum inode_opt_id id)
|
|
|
|
{
|
|
|
|
return !(inode->ei_inode.bi_fields_set & (1 << id)) &&
|
|
|
|
bch2_inode_opt_get(&dir->ei_inode, id) !=
|
|
|
|
bch2_inode_opt_get(&inode->ei_inode, id);
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline bool inode_attrs_changing(struct bch_inode_info *dir,
|
|
|
|
struct bch_inode_info *inode)
|
|
|
|
{
|
|
|
|
unsigned id;
|
|
|
|
|
|
|
|
for (id = 0; id < Inode_opt_nr; id++)
|
|
|
|
if (inode_attr_changing(dir, inode, id))
|
|
|
|
return true;
|
|
|
|
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2016-10-04 06:22:17 +03:00
|
|
|
struct bch_inode_unpacked;
|
|
|
|
|
2017-10-06 01:41:44 +03:00
|
|
|
#ifndef NO_BCACHEFS_FS
|
2017-03-04 09:09:52 +03:00
|
|
|
|
2021-09-27 01:19:46 +03:00
|
|
|
struct bch_inode_info *
|
2023-04-26 23:34:57 +03:00
|
|
|
__bch2_create(struct mnt_idmap *, struct bch_inode_info *,
|
2021-09-27 01:19:46 +03:00
|
|
|
struct dentry *, umode_t, dev_t, subvol_inum, unsigned);
|
|
|
|
|
2018-12-17 17:26:29 +03:00
|
|
|
int bch2_fs_quota_transfer(struct bch_fs *,
|
|
|
|
struct bch_inode_info *,
|
|
|
|
struct bch_qid,
|
|
|
|
unsigned,
|
|
|
|
enum quota_acct_mode);
|
|
|
|
|
2018-12-19 23:20:44 +03:00
|
|
|
static inline int bch2_set_projid(struct bch_fs *c,
|
|
|
|
struct bch_inode_info *inode,
|
|
|
|
u32 projid)
|
|
|
|
{
|
|
|
|
struct bch_qid qid = inode->ei_qid;
|
|
|
|
|
|
|
|
qid.q[QTYP_PRJ] = projid;
|
|
|
|
|
|
|
|
return bch2_fs_quota_transfer(c, inode, qid,
|
|
|
|
1 << QTYP_PRJ,
|
|
|
|
KEY_TYPE_QUOTA_PREALLOC);
|
|
|
|
}
|
|
|
|
|
2021-09-27 01:19:46 +03:00
|
|
|
struct inode *bch2_vfs_inode_get(struct bch_fs *, subvol_inum);
|
2018-12-17 17:26:29 +03:00
|
|
|
|
2017-01-08 12:13:18 +03:00
|
|
|
/* returns 0 if we want to do the update, or error is passed up */
|
2023-08-18 00:08:33 +03:00
|
|
|
typedef int (*inode_set_fn)(struct btree_trans *,
|
|
|
|
struct bch_inode_info *,
|
2016-10-04 06:22:17 +03:00
|
|
|
struct bch_inode_unpacked *, void *);
|
2017-01-08 12:13:18 +03:00
|
|
|
|
2021-11-16 17:12:15 +03:00
|
|
|
void bch2_inode_update_after_write(struct btree_trans *,
|
2018-07-16 10:58:54 +03:00
|
|
|
struct bch_inode_info *,
|
|
|
|
struct bch_inode_unpacked *,
|
|
|
|
unsigned);
|
2018-08-16 02:41:24 +03:00
|
|
|
int __must_check bch2_write_inode(struct bch_fs *, struct bch_inode_info *,
|
|
|
|
inode_set_fn, void *, unsigned);
|
2017-01-08 12:13:18 +03:00
|
|
|
|
2023-04-26 23:34:57 +03:00
|
|
|
int bch2_setattr_nonsize(struct mnt_idmap *,
|
2021-06-23 03:45:30 +03:00
|
|
|
struct bch_inode_info *,
|
|
|
|
struct iattr *);
|
2021-10-28 23:27:01 +03:00
|
|
|
int __bch2_unlink(struct inode *, struct dentry *, bool);
|
|
|
|
|
2022-03-31 00:40:25 +03:00
|
|
|
void bch2_evict_subvolume_inodes(struct bch_fs *, snapshot_id_list *);
|
2021-06-23 03:45:30 +03:00
|
|
|
|
2017-03-20 02:56:34 +03:00
|
|
|
void bch2_vfs_exit(void);
|
|
|
|
int bch2_vfs_init(void);
|
2017-01-08 12:13:18 +03:00
|
|
|
|
2017-03-04 09:09:52 +03:00
|
|
|
#else
|
|
|
|
|
2023-09-24 01:42:30 +03:00
|
|
|
#define bch2_inode_update_after_write(_trans, _inode, _inode_u, _fields) ({ do {} while (0); })
|
2023-07-09 22:16:50 +03:00
|
|
|
|
2021-10-28 23:27:01 +03:00
|
|
|
static inline void bch2_evict_subvolume_inodes(struct bch_fs *c,
|
2022-03-31 00:40:25 +03:00
|
|
|
snapshot_id_list *s) {}
|
2017-03-20 02:56:34 +03:00
|
|
|
static inline void bch2_vfs_exit(void) {}
|
|
|
|
static inline int bch2_vfs_init(void) { return 0; }
|
2017-03-04 09:09:52 +03:00
|
|
|
|
2017-10-06 01:41:44 +03:00
|
|
|
#endif /* NO_BCACHEFS_FS */
|
2017-03-04 09:09:52 +03:00
|
|
|
|
2017-10-06 01:41:44 +03:00
|
|
|
#endif /* _BCACHEFS_FS_H */
|