xref: /linux/fs/ceph/super.h (revision e8a4d26771547cd690616bb204e0f350c4fa0e09)
1b2441318SGreg Kroah-Hartman /* SPDX-License-Identifier: GPL-2.0 */
2de57606cSSage Weil #ifndef _FS_CEPH_SUPER_H
3de57606cSSage Weil #define _FS_CEPH_SUPER_H
4de57606cSSage Weil 
53d14c5d2SYehuda Sadeh #include <linux/ceph/ceph_debug.h>
6de57606cSSage Weil 
7de57606cSSage Weil #include <asm/unaligned.h>
8de57606cSSage Weil #include <linux/backing-dev.h>
9de57606cSSage Weil #include <linux/completion.h>
10de57606cSSage Weil #include <linux/exportfs.h>
11de57606cSSage Weil #include <linux/fs.h>
12de57606cSSage Weil #include <linux/mempool.h>
13de57606cSSage Weil #include <linux/pagemap.h>
14de57606cSSage Weil #include <linux/wait.h>
15f1a3d572SStephen Rothwell #include <linux/writeback.h>
165a0e3ad6STejun Heo #include <linux/slab.h>
17c969d9bfSGuangliang Zhao #include <linux/posix_acl.h>
18805692d0SElena Reshetova #include <linux/refcount.h>
19668959a5SJeff Layton #include <linux/security.h>
20de57606cSSage Weil 
213d14c5d2SYehuda Sadeh #include <linux/ceph/libceph.h>
22de57606cSSage Weil 
2399ccbd22SMilosz Tanski #ifdef CONFIG_CEPH_FSCACHE
2499ccbd22SMilosz Tanski #include <linux/fscache.h>
2599ccbd22SMilosz Tanski #endif
2699ccbd22SMilosz Tanski 
27de57606cSSage Weil /* f_type in struct statfs */
28de57606cSSage Weil #define CEPH_SUPER_MAGIC 0x00c36400
29de57606cSSage Weil 
30de57606cSSage Weil /* large granularity for statfs utilization stats to facilitate
31de57606cSSage Weil  * large volume sizes on 32-bit machines. */
3292a49fb0SSage Weil #define CEPH_BLOCK_SHIFT   22  /* 4 MB */
33de57606cSSage Weil #define CEPH_BLOCK         (1 << CEPH_BLOCK_SHIFT)
34de57606cSSage Weil 
35131d7eb4SYan, Zheng #define CEPH_MOUNT_OPT_CLEANRECOVER    (1<<1) /* auto reonnect (clean mode) after blacklisted */
363d14c5d2SYehuda Sadeh #define CEPH_MOUNT_OPT_DIRSTAT         (1<<4) /* `cat dirname` for stats */
373d14c5d2SYehuda Sadeh #define CEPH_MOUNT_OPT_RBYTES          (1<<5) /* dir st_bytes = rbytes */
383d14c5d2SYehuda Sadeh #define CEPH_MOUNT_OPT_NOASYNCREADDIR  (1<<7) /* no dcache readdir */
39ad1fee96SYehuda Sadeh #define CEPH_MOUNT_OPT_INO32           (1<<8) /* 32 bit inos */
40a40dc6ccSSage Weil #define CEPH_MOUNT_OPT_DCACHE          (1<<9) /* use dcache for readdir etc */
4199ccbd22SMilosz Tanski #define CEPH_MOUNT_OPT_FSCACHE         (1<<10) /* use fscache */
4210183a69SYan, Zheng #define CEPH_MOUNT_OPT_NOPOOLPERM      (1<<11) /* no pool permission check */
43e9e427f0SYan, Zheng #define CEPH_MOUNT_OPT_MOUNTWAIT       (1<<12) /* mount waits if no mds is up */
449122eed5SLuis Henriques #define CEPH_MOUNT_OPT_NOQUOTADF       (1<<13) /* no root dir quota in statfs */
45ea4cdc54SLuis Henriques #define CEPH_MOUNT_OPT_NOCOPYFROM      (1<<14) /* don't use RADOS 'copy-from' op */
466a259382SSage Weil 
476f9718feSLuis Henriques #define CEPH_MOUNT_OPT_DEFAULT			\
486f9718feSLuis Henriques 	(CEPH_MOUNT_OPT_DCACHE |		\
496f9718feSLuis Henriques 	 CEPH_MOUNT_OPT_NOCOPYFROM)
50de57606cSSage Weil 
513d14c5d2SYehuda Sadeh #define ceph_set_mount_opt(fsc, opt) \
523d14c5d2SYehuda Sadeh 	(fsc)->mount_options->flags |= CEPH_MOUNT_OPT_##opt;
533d14c5d2SYehuda Sadeh #define ceph_test_mount_opt(fsc, opt) \
543d14c5d2SYehuda Sadeh 	(!!((fsc)->mount_options->flags & CEPH_MOUNT_OPT_##opt))
55de57606cSSage Weil 
56aa187926SYan, Zheng /* max size of osd read request, limited by libceph */
57aa187926SYan, Zheng #define CEPH_MAX_READ_SIZE              CEPH_MSG_MAX_DATA_LEN
5895cca2b4SYan, Zheng /* osd has a configurable limitaion of max write size.
5995cca2b4SYan, Zheng  * CEPH_MSG_MAX_DATA_LEN should be small enough. */
6095cca2b4SYan, Zheng #define CEPH_MAX_WRITE_SIZE		CEPH_MSG_MAX_DATA_LEN
617c94ba27SAndreas Gerstmayr #define CEPH_RASIZE_DEFAULT             (8192*1024)    /* max readahead */
623d14c5d2SYehuda Sadeh #define CEPH_MAX_READDIR_DEFAULT        1024
633d14c5d2SYehuda Sadeh #define CEPH_MAX_READDIR_BYTES_DEFAULT  (512*1024)
643d14c5d2SYehuda Sadeh #define CEPH_SNAPDIRNAME_DEFAULT        ".snap"
65de57606cSSage Weil 
664214fb15SYan, Zheng /*
674214fb15SYan, Zheng  * Delay telling the MDS we no longer want caps, in case we reopen
684214fb15SYan, Zheng  * the file.  Delay a minimum amount of time, even if we send a cap
694214fb15SYan, Zheng  * message for some other reason.  Otherwise, take the oppotunity to
704214fb15SYan, Zheng  * update the mds to avoid sending another message later.
714214fb15SYan, Zheng  */
724214fb15SYan, Zheng #define CEPH_CAPS_WANTED_DELAY_MIN_DEFAULT      5  /* cap release delay */
734214fb15SYan, Zheng #define CEPH_CAPS_WANTED_DELAY_MAX_DEFAULT     60  /* cap release delay */
744214fb15SYan, Zheng 
753d14c5d2SYehuda Sadeh struct ceph_mount_options {
76ad8c28a9SJeff Layton 	unsigned int flags;
773d14c5d2SYehuda Sadeh 
78ad8c28a9SJeff Layton 	unsigned int wsize;            /* max write size */
79ad8c28a9SJeff Layton 	unsigned int rsize;            /* max read size */
80ad8c28a9SJeff Layton 	unsigned int rasize;           /* max readahead */
81ad8c28a9SJeff Layton 	unsigned int congestion_kb;    /* max writeback in flight */
82ad8c28a9SJeff Layton 	unsigned int caps_wanted_delay_min, caps_wanted_delay_max;
83fe33032dSYan, Zheng 	int caps_max;
84ad8c28a9SJeff Layton 	unsigned int max_readdir;       /* max readdir result (entries) */
85ad8c28a9SJeff Layton 	unsigned int max_readdir_bytes; /* max readdir result (bytes) */
863d14c5d2SYehuda Sadeh 
873d14c5d2SYehuda Sadeh 	/*
883d14c5d2SYehuda Sadeh 	 * everything above this point can be memcmp'd; everything below
893d14c5d2SYehuda Sadeh 	 * is handled in compare_mount_options()
903d14c5d2SYehuda Sadeh 	 */
913d14c5d2SYehuda Sadeh 
92de57606cSSage Weil 	char *snapdir_name;   /* default ".snap" */
93430afbadSYan, Zheng 	char *mds_namespace;  /* default NULL */
94b27a939eSIlya Dryomov 	char *server_path;    /* default NULL (means "/") */
951d8f8360SYan, Zheng 	char *fscache_uniq;   /* default NULL */
96de57606cSSage Weil };
97de57606cSSage Weil 
983d14c5d2SYehuda Sadeh struct ceph_fs_client {
99de57606cSSage Weil 	struct super_block *sb;
100de57606cSSage Weil 
1013d14c5d2SYehuda Sadeh 	struct ceph_mount_options *mount_options;
1023d14c5d2SYehuda Sadeh 	struct ceph_client *client;
1033d14c5d2SYehuda Sadeh 
104de57606cSSage Weil 	unsigned long mount_state;
10581f148a9SYan, Zheng 
106131d7eb4SYan, Zheng 	unsigned long last_auto_reconnect;
107131d7eb4SYan, Zheng 	bool blacklisted;
108131d7eb4SYan, Zheng 
10978beb0ffSLuis Henriques 	bool have_copy_from2;
11078beb0ffSLuis Henriques 
11181f148a9SYan, Zheng 	u32 filp_gen;
112719784baSChengguang Xu 	loff_t max_file_size;
11385ccce43SSage Weil 
1143d14c5d2SYehuda Sadeh 	struct ceph_mds_client *mdsc;
115de57606cSSage Weil 
116de57606cSSage Weil 	/* writeback */
117de57606cSSage Weil 	mempool_t *wb_pagevec_pool;
118e3ec8d68SYan, Zheng 	atomic_long_t writeback_count;
119e3ec8d68SYan, Zheng 
1201cf89a8dSYan, Zheng 	struct workqueue_struct *inode_wq;
121e3ec8d68SYan, Zheng 	struct workqueue_struct *cap_wq;
122de57606cSSage Weil 
1230743304dSSage Weil #ifdef CONFIG_DEBUG_FS
1243d14c5d2SYehuda Sadeh 	struct dentry *debugfs_dentry_lru, *debugfs_caps;
1252baba250SYehuda Sadeh 	struct dentry *debugfs_congestion_kb;
12606edf046SSage Weil 	struct dentry *debugfs_bdi;
1273d14c5d2SYehuda Sadeh 	struct dentry *debugfs_mdsc, *debugfs_mdsmap;
12814ed9703SJohn Spray 	struct dentry *debugfs_mds_sessions;
1290743304dSSage Weil #endif
13099ccbd22SMilosz Tanski 
13199ccbd22SMilosz Tanski #ifdef CONFIG_CEPH_FSCACHE
13299ccbd22SMilosz Tanski 	struct fscache_cookie *fscache;
13399ccbd22SMilosz Tanski #endif
134de57606cSSage Weil };
135de57606cSSage Weil 
1363d14c5d2SYehuda Sadeh 
137de57606cSSage Weil /*
138de57606cSSage Weil  * File i/o capability.  This tracks shared state with the metadata
139de57606cSSage Weil  * server that allows us to cache or writeback attributes or to read
140de57606cSSage Weil  * and write data.  For any given inode, we should have one or more
141de57606cSSage Weil  * capabilities, one issued by each metadata server, and our
142de57606cSSage Weil  * cumulative access is the OR of all issued capabilities.
143de57606cSSage Weil  *
144de57606cSSage Weil  * Each cap is referenced by the inode's i_caps rbtree and by per-mds
145de57606cSSage Weil  * session capability lists.
146de57606cSSage Weil  */
147de57606cSSage Weil struct ceph_cap {
148de57606cSSage Weil 	struct ceph_inode_info *ci;
149de57606cSSage Weil 	struct rb_node ci_node;          /* per-ci cap tree */
150de57606cSSage Weil 	struct ceph_mds_session *session;
151de57606cSSage Weil 	struct list_head session_caps;   /* per-session caplist */
152de57606cSSage Weil 	u64 cap_id;       /* unique cap id (mds provided) */
153745a8e3bSYan, Zheng 	union {
154745a8e3bSYan, Zheng 		/* in-use caps */
155745a8e3bSYan, Zheng 		struct {
156de57606cSSage Weil 			int issued;       /* latest, from the mds */
157745a8e3bSYan, Zheng 			int implemented;  /* implemented superset of
158745a8e3bSYan, Zheng 					     issued (for revocation) */
159745a8e3bSYan, Zheng 			int mds, mds_wanted;
160745a8e3bSYan, Zheng 		};
161745a8e3bSYan, Zheng 		/* caps to release */
162745a8e3bSYan, Zheng 		struct {
163745a8e3bSYan, Zheng 			u64 cap_ino;
164745a8e3bSYan, Zheng 			int queue_release;
165745a8e3bSYan, Zheng 		};
166745a8e3bSYan, Zheng 	};
167685f9a5dSSage Weil 	u32 seq, issue_seq, mseq;
168685f9a5dSSage Weil 	u32 cap_gen;      /* active/stale cycle */
169de57606cSSage Weil 	unsigned long last_used;
170de57606cSSage Weil 	struct list_head caps_item;
171de57606cSSage Weil };
172de57606cSSage Weil 
173de57606cSSage Weil #define CHECK_CAPS_NODELAY    1  /* do not delay any further */
174de57606cSSage Weil #define CHECK_CAPS_AUTHONLY   2  /* only check auth cap */
175de57606cSSage Weil #define CHECK_CAPS_FLUSH      4  /* flush any dirty caps */
176de57606cSSage Weil 
1770e294387SYan, Zheng struct ceph_cap_flush {
1780e294387SYan, Zheng 	u64 tid;
1790e294387SYan, Zheng 	int caps; /* 0 means capsnap */
180c8799fc4SYan, Zheng 	bool wake; /* wake up flush waiters when finish ? */
1810e294387SYan, Zheng 	struct list_head g_list; // global
1820e294387SYan, Zheng 	struct list_head i_list; // per inode
1830e294387SYan, Zheng };
1840e294387SYan, Zheng 
185de57606cSSage Weil /*
186de57606cSSage Weil  * Snapped cap state that is pending flush to mds.  When a snapshot occurs,
187de57606cSSage Weil  * we first complete any in-process sync writes and writeback any dirty
188de57606cSSage Weil  * data before flushing the snapped state (tracked here) back to the MDS.
189de57606cSSage Weil  */
190de57606cSSage Weil struct ceph_cap_snap {
191805692d0SElena Reshetova 	refcount_t nref;
1920e294387SYan, Zheng 	struct list_head ci_item;
193de57606cSSage Weil 
1940e294387SYan, Zheng 	struct ceph_cap_flush cap_flush;
1950e294387SYan, Zheng 
1960e294387SYan, Zheng 	u64 follows;
197de57606cSSage Weil 	int issued, dirty;
198de57606cSSage Weil 	struct ceph_snap_context *context;
199de57606cSSage Weil 
2005706b27dSAl Viro 	umode_t mode;
20105cb11c1SEric W. Biederman 	kuid_t uid;
20205cb11c1SEric W. Biederman 	kgid_t gid;
203de57606cSSage Weil 
2044a625be4SSage Weil 	struct ceph_buffer *xattr_blob;
205de57606cSSage Weil 	u64 xattr_version;
206de57606cSSage Weil 
207de57606cSSage Weil 	u64 size;
208176c77c9SJeff Layton 	u64 change_attr;
209ec62b894SJeff Layton 	struct timespec64 mtime, atime, ctime, btime;
210de57606cSSage Weil 	u64 time_warp_seq;
2115f743e45SYan, Zheng 	u64 truncate_size;
2125f743e45SYan, Zheng 	u32 truncate_seq;
213de57606cSSage Weil 	int writing;   /* a sync write is still in progress */
214de57606cSSage Weil 	int dirty_pages;     /* dirty pages awaiting writeback */
215e20d258dSYan, Zheng 	bool inline_data;
21686056090SYan, Zheng 	bool need_flush;
217de57606cSSage Weil };
218de57606cSSage Weil 
219de57606cSSage Weil static inline void ceph_put_cap_snap(struct ceph_cap_snap *capsnap)
220de57606cSSage Weil {
221805692d0SElena Reshetova 	if (refcount_dec_and_test(&capsnap->nref)) {
2224a625be4SSage Weil 		if (capsnap->xattr_blob)
2234a625be4SSage Weil 			ceph_buffer_put(capsnap->xattr_blob);
224de57606cSSage Weil 		kfree(capsnap);
225de57606cSSage Weil 	}
2264a625be4SSage Weil }
227de57606cSSage Weil 
228de57606cSSage Weil /*
229de57606cSSage Weil  * The frag tree describes how a directory is fragmented, potentially across
230de57606cSSage Weil  * multiple metadata servers.  It is also used to indicate points where
231de57606cSSage Weil  * metadata authority is delegated, and whether/where metadata is replicated.
232de57606cSSage Weil  *
233de57606cSSage Weil  * A _leaf_ frag will be present in the i_fragtree IFF there is
234de57606cSSage Weil  * delegation info.  That is, if mds >= 0 || ndist > 0.
235de57606cSSage Weil  */
236de57606cSSage Weil #define CEPH_MAX_DIRFRAG_REP 4
237de57606cSSage Weil 
238de57606cSSage Weil struct ceph_inode_frag {
239de57606cSSage Weil 	struct rb_node node;
240de57606cSSage Weil 
241de57606cSSage Weil 	/* fragtree state */
242de57606cSSage Weil 	u32 frag;
243de57606cSSage Weil 	int split_by;         /* i.e. 2^(split_by) children */
244de57606cSSage Weil 
245de57606cSSage Weil 	/* delegation and replication info */
246de57606cSSage Weil 	int mds;              /* -1 if same authority as parent */
247de57606cSSage Weil 	int ndist;            /* >0 if replicated */
248de57606cSSage Weil 	int dist[CEPH_MAX_DIRFRAG_REP];
249de57606cSSage Weil };
250de57606cSSage Weil 
251de57606cSSage Weil /*
252de57606cSSage Weil  * We cache inode xattrs as an encoded blob until they are first used,
253de57606cSSage Weil  * at which point we parse them into an rbtree.
254de57606cSSage Weil  */
255de57606cSSage Weil struct ceph_inode_xattr {
256de57606cSSage Weil 	struct rb_node node;
257de57606cSSage Weil 
258de57606cSSage Weil 	const char *name;
259de57606cSSage Weil 	int name_len;
260de57606cSSage Weil 	const char *val;
261de57606cSSage Weil 	int val_len;
262de57606cSSage Weil 	int dirty;
263de57606cSSage Weil 
264de57606cSSage Weil 	int should_free_name;
265de57606cSSage Weil 	int should_free_val;
266de57606cSSage Weil };
267de57606cSSage Weil 
2683d14c5d2SYehuda Sadeh /*
2693d14c5d2SYehuda Sadeh  * Ceph dentry state
2703d14c5d2SYehuda Sadeh  */
2713d14c5d2SYehuda Sadeh struct ceph_dentry_info {
27237c4efc1SYan, Zheng 	struct dentry *dentry;
2733d14c5d2SYehuda Sadeh 	struct ceph_mds_session *lease_session;
27437c4efc1SYan, Zheng 	struct list_head lease_list;
27537c4efc1SYan, Zheng 	unsigned flags;
27697aeb6bfSYan, Zheng 	int lease_shared_gen;
27797aeb6bfSYan, Zheng 	u32 lease_gen;
2783d14c5d2SYehuda Sadeh 	u32 lease_seq;
2793d14c5d2SYehuda Sadeh 	unsigned long lease_renew_after, lease_renew_from;
2809b16f03cSMiklos Szeredi 	unsigned long time;
2813d14c5d2SYehuda Sadeh 	u64 offset;
2823d14c5d2SYehuda Sadeh };
2833d14c5d2SYehuda Sadeh 
28437c4efc1SYan, Zheng #define CEPH_DENTRY_REFERENCED		1
28537c4efc1SYan, Zheng #define CEPH_DENTRY_LEASE_LIST		2
28637c4efc1SYan, Zheng #define CEPH_DENTRY_SHRINK_LIST		4
28737c4efc1SYan, Zheng 
288de57606cSSage Weil struct ceph_inode_xattrs_info {
289de57606cSSage Weil 	/*
290de57606cSSage Weil 	 * (still encoded) xattr blob. we avoid the overhead of parsing
291de57606cSSage Weil 	 * this until someone actually calls getxattr, etc.
292de57606cSSage Weil 	 *
293de57606cSSage Weil 	 * blob->vec.iov_len == 4 implies there are no xattrs; blob ==
294de57606cSSage Weil 	 * NULL means we don't know.
295de57606cSSage Weil 	*/
296de57606cSSage Weil 	struct ceph_buffer *blob, *prealloc_blob;
297de57606cSSage Weil 
298de57606cSSage Weil 	struct rb_root index;
299de57606cSSage Weil 	bool dirty;
300de57606cSSage Weil 	int count;
301de57606cSSage Weil 	int names_size;
302de57606cSSage Weil 	int vals_size;
303de57606cSSage Weil 	u64 version, index_version;
304de57606cSSage Weil };
305de57606cSSage Weil 
306de57606cSSage Weil /*
307de57606cSSage Weil  * Ceph inode.
308de57606cSSage Weil  */
309de57606cSSage Weil struct ceph_inode_info {
310de57606cSSage Weil 	struct ceph_vino i_vino;   /* ceph ino + snap */
311de57606cSSage Weil 
312be655596SSage Weil 	spinlock_t i_ceph_lock;
313be655596SSage Weil 
314de57606cSSage Weil 	u64 i_version;
31531c542a1SYan, Zheng 	u64 i_inline_version;
316de57606cSSage Weil 	u32 i_time_warp_seq;
317de57606cSSage Weil 
318de57606cSSage Weil 	unsigned i_ceph_flags;
319fdd4e158SYan, Zheng 	atomic64_t i_release_count;
320fdd4e158SYan, Zheng 	atomic64_t i_ordered_count;
321fdd4e158SYan, Zheng 	atomic64_t i_complete_seq[2];
322de57606cSSage Weil 
3236c0f3af7SSage Weil 	struct ceph_dir_layout i_dir_layout;
324de57606cSSage Weil 	struct ceph_file_layout i_layout;
325de57606cSSage Weil 	char *i_symlink;
326de57606cSSage Weil 
327de57606cSSage Weil 	/* for dirs */
3289bbeab41SArnd Bergmann 	struct timespec64 i_rctime;
329de57606cSSage Weil 	u64 i_rbytes, i_rfiles, i_rsubdirs;
330de57606cSSage Weil 	u64 i_files, i_subdirs;
331de57606cSSage Weil 
332fb18a575SLuis Henriques 	/* quotas */
333fb18a575SLuis Henriques 	u64 i_max_bytes, i_max_files;
334fb18a575SLuis Henriques 
33508796873SYan, Zheng 	s32 i_dir_pin;
33608796873SYan, Zheng 
337de57606cSSage Weil 	struct rb_root i_fragtree;
3381b1bc16dSYan, Zheng 	int i_fragtree_nsplits;
339de57606cSSage Weil 	struct mutex i_fragtree_mutex;
340de57606cSSage Weil 
341de57606cSSage Weil 	struct ceph_inode_xattrs_info i_xattrs;
342de57606cSSage Weil 
343be655596SSage Weil 	/* capabilities.  protected _both_ by i_ceph_lock and cap->session's
344de57606cSSage Weil 	 * s_mutex. */
345de57606cSSage Weil 	struct rb_root i_caps;           /* cap list */
346de57606cSSage Weil 	struct ceph_cap *i_auth_cap;     /* authoritative cap, if any */
347de57606cSSage Weil 	unsigned i_dirty_caps, i_flushing_caps;     /* mask of dirtied fields */
348de57606cSSage Weil 	struct list_head i_dirty_item, i_flushing_item;
349de57606cSSage Weil 	/* we need to track cap writeback on a per-cap-bit basis, to allow
350de57606cSSage Weil 	 * overlapping, pipelined cap flushes to the mds.  we can probably
351de57606cSSage Weil 	 * reduce the tid to 8 bits if we're concerned about inode size. */
352f66fd9f0SYan, Zheng 	struct ceph_cap_flush *i_prealloc_cap_flush;
353e4500b5eSYan, Zheng 	struct list_head i_cap_flush_list;
354de57606cSSage Weil 	wait_queue_head_t i_cap_wq;      /* threads waiting on a capability */
355de57606cSSage Weil 	unsigned long i_hold_caps_min; /* jiffies */
356de57606cSSage Weil 	unsigned long i_hold_caps_max; /* jiffies */
357de57606cSSage Weil 	struct list_head i_cap_delay_list;  /* for delayed cap release to mds */
358de57606cSSage Weil 	struct ceph_cap_reservation i_cap_migration_resv;
359de57606cSSage Weil 	struct list_head i_cap_snaps;   /* snapped state pending flush to mds */
3607d8cb26dSSage Weil 	struct ceph_snap_context *i_head_snapc;  /* set if wr_buffer_head > 0 or
3617d8cb26dSSage Weil 						    dirty|flushing caps */
362de57606cSSage Weil 	unsigned i_snap_caps;           /* cap bits for snapped files */
363de57606cSSage Weil 
364774a6a11SYan, Zheng 	int i_nr_by_mode[CEPH_FILE_MODE_BITS];  /* open file counts */
365de57606cSSage Weil 
366b0d7c223SYan, Zheng 	struct mutex i_truncate_mutex;
367de57606cSSage Weil 	u32 i_truncate_seq;        /* last truncate to smaller size */
368de57606cSSage Weil 	u64 i_truncate_size;       /*  and the size we last truncated down to */
369de57606cSSage Weil 	int i_truncate_pending;    /*  still need to call vmtruncate */
370de57606cSSage Weil 
371de57606cSSage Weil 	u64 i_max_size;            /* max file size authorized by mds */
372de57606cSSage Weil 	u64 i_reported_size; /* (max_)size reported to or requested of mds */
373de57606cSSage Weil 	u64 i_wanted_max_size;     /* offset we'd like to write too */
374de57606cSSage Weil 	u64 i_requested_max_size;  /* max_size we've requested */
375de57606cSSage Weil 
376de57606cSSage Weil 	/* held references to caps */
377de57606cSSage Weil 	int i_pin_ref;
378f85122afSJeff Layton 	int i_rd_ref, i_rdcache_ref, i_wr_ref, i_wb_ref, i_fx_ref;
379de57606cSSage Weil 	int i_wrbuffer_ref, i_wrbuffer_ref_head;
38089aa5930SYan, Zheng 	atomic_t i_filelock_ref;
38197aeb6bfSYan, Zheng 	atomic_t i_shared_gen;       /* increment each time we get FILE_SHARED */
382cd045cb4SSage Weil 	u32 i_rdcache_gen;      /* incremented each time we get FILE_CACHE. */
383de57606cSSage Weil 	u32 i_rdcache_revoking; /* RDCACHE gen to async invalidate, if any */
384de57606cSSage Weil 
385de57606cSSage Weil 	struct list_head i_unsafe_dirops; /* uncommitted mds dir ops */
38668cd5b4bSYan, Zheng 	struct list_head i_unsafe_iops;   /* uncommitted mds inode ops */
387de57606cSSage Weil 	spinlock_t i_unsafe_lock;
388de57606cSSage Weil 
38975c9627eSYan, Zheng 	union {
390de57606cSSage Weil 		struct ceph_snap_realm *i_snap_realm; /* snap realm (if caps) */
39175c9627eSYan, Zheng 		struct ceph_snapid_map *i_snapid_map; /* snapid -> dev_t */
39275c9627eSYan, Zheng 	};
393de57606cSSage Weil 	int i_snap_realm_counter; /* snap realm (if caps) */
394de57606cSSage Weil 	struct list_head i_snap_realm_item;
395de57606cSSage Weil 	struct list_head i_snap_flush_item;
396245ce991SJeff Layton 	struct timespec64 i_btime;
397193e7b37SDavid Disseldorp 	struct timespec64 i_snap_btime;
398de57606cSSage Weil 
3991cf89a8dSYan, Zheng 	struct work_struct i_work;
4001cf89a8dSYan, Zheng 	unsigned long  i_work_mask;
401de57606cSSage Weil 
40299ccbd22SMilosz Tanski #ifdef CONFIG_CEPH_FSCACHE
40399ccbd22SMilosz Tanski 	struct fscache_cookie *fscache;
404f7f7e7a0SYan, Zheng 	u32 i_fscache_gen;
40599ccbd22SMilosz Tanski #endif
406f4b97866SYan, Zheng 	errseq_t i_meta_err;
407f4b97866SYan, Zheng 
408de57606cSSage Weil 	struct inode vfs_inode; /* at end */
409de57606cSSage Weil };
410de57606cSSage Weil 
411721d5c13SJeff Layton static inline struct ceph_inode_info *
412721d5c13SJeff Layton ceph_inode(const struct inode *inode)
413de57606cSSage Weil {
414fbbccec9SNoah Watkins 	return container_of(inode, struct ceph_inode_info, vfs_inode);
415de57606cSSage Weil }
416de57606cSSage Weil 
417721d5c13SJeff Layton static inline struct ceph_fs_client *
418721d5c13SJeff Layton ceph_inode_to_client(const struct inode *inode)
419ad1fee96SYehuda Sadeh {
420ad1fee96SYehuda Sadeh 	return (struct ceph_fs_client *)inode->i_sb->s_fs_info;
421ad1fee96SYehuda Sadeh }
422ad1fee96SYehuda Sadeh 
423721d5c13SJeff Layton static inline struct ceph_fs_client *
424721d5c13SJeff Layton ceph_sb_to_client(const struct super_block *sb)
425ad1fee96SYehuda Sadeh {
426ad1fee96SYehuda Sadeh 	return (struct ceph_fs_client *)sb->s_fs_info;
427ad1fee96SYehuda Sadeh }
428ad1fee96SYehuda Sadeh 
429721d5c13SJeff Layton static inline struct ceph_vino
430721d5c13SJeff Layton ceph_vino(const struct inode *inode)
4313d14c5d2SYehuda Sadeh {
4323d14c5d2SYehuda Sadeh 	return ceph_inode(inode)->i_vino;
4333d14c5d2SYehuda Sadeh }
4343d14c5d2SYehuda Sadeh 
4353d14c5d2SYehuda Sadeh /*
4363d14c5d2SYehuda Sadeh  * ino_t is <64 bits on many architectures, blech.
4373d14c5d2SYehuda Sadeh  *
438ad1fee96SYehuda Sadeh  *               i_ino (kernel inode)   st_ino (userspace)
439ad1fee96SYehuda Sadeh  * i386          32                     32
440ad1fee96SYehuda Sadeh  * x86_64+ino32  64                     32
441ad1fee96SYehuda Sadeh  * x86_64        64                     64
442ad1fee96SYehuda Sadeh  */
4433310f754SAmon Ott static inline u32 ceph_ino_to_ino32(__u64 vino)
444ad1fee96SYehuda Sadeh {
4453310f754SAmon Ott 	u32 ino = vino & 0xffffffff;
4463310f754SAmon Ott 	ino ^= vino >> 32;
447ad1fee96SYehuda Sadeh 	if (!ino)
448a661fc56SAmon Ott 		ino = 2;
449ad1fee96SYehuda Sadeh 	return ino;
450ad1fee96SYehuda Sadeh }
451ad1fee96SYehuda Sadeh 
452ad1fee96SYehuda Sadeh /*
453ad1fee96SYehuda Sadeh  * kernel i_ino value
4543d14c5d2SYehuda Sadeh  */
4553d14c5d2SYehuda Sadeh static inline ino_t ceph_vino_to_ino(struct ceph_vino vino)
4563d14c5d2SYehuda Sadeh {
4573d14c5d2SYehuda Sadeh #if BITS_PER_LONG == 32
4583310f754SAmon Ott 	return ceph_ino_to_ino32(vino.ino);
4593310f754SAmon Ott #else
4603310f754SAmon Ott 	return (ino_t)vino.ino;
4613d14c5d2SYehuda Sadeh #endif
4623d14c5d2SYehuda Sadeh }
4633d14c5d2SYehuda Sadeh 
464ad1fee96SYehuda Sadeh /*
465ad1fee96SYehuda Sadeh  * user-visible ino (stat, filldir)
466ad1fee96SYehuda Sadeh  */
467ad1fee96SYehuda Sadeh #if BITS_PER_LONG == 32
468ad1fee96SYehuda Sadeh static inline ino_t ceph_translate_ino(struct super_block *sb, ino_t ino)
469ad1fee96SYehuda Sadeh {
470ad1fee96SYehuda Sadeh 	return ino;
471ad1fee96SYehuda Sadeh }
472ad1fee96SYehuda Sadeh #else
473ad1fee96SYehuda Sadeh static inline ino_t ceph_translate_ino(struct super_block *sb, ino_t ino)
474ad1fee96SYehuda Sadeh {
475ad1fee96SYehuda Sadeh 	if (ceph_test_mount_opt(ceph_sb_to_client(sb), INO32))
476ad1fee96SYehuda Sadeh 		ino = ceph_ino_to_ino32(ino);
477ad1fee96SYehuda Sadeh 	return ino;
478ad1fee96SYehuda Sadeh }
479ad1fee96SYehuda Sadeh #endif
480ad1fee96SYehuda Sadeh 
481ad1fee96SYehuda Sadeh 
4823d14c5d2SYehuda Sadeh /* for printf-style formatting */
4833d14c5d2SYehuda Sadeh #define ceph_vinop(i) ceph_inode(i)->i_vino.ino, ceph_inode(i)->i_vino.snap
4843d14c5d2SYehuda Sadeh 
4853d14c5d2SYehuda Sadeh static inline u64 ceph_ino(struct inode *inode)
4863d14c5d2SYehuda Sadeh {
4873d14c5d2SYehuda Sadeh 	return ceph_inode(inode)->i_vino.ino;
4883d14c5d2SYehuda Sadeh }
4893d14c5d2SYehuda Sadeh static inline u64 ceph_snap(struct inode *inode)
4903d14c5d2SYehuda Sadeh {
4913d14c5d2SYehuda Sadeh 	return ceph_inode(inode)->i_vino.snap;
4923d14c5d2SYehuda Sadeh }
4933d14c5d2SYehuda Sadeh 
4943d14c5d2SYehuda Sadeh static inline int ceph_ino_compare(struct inode *inode, void *data)
4953d14c5d2SYehuda Sadeh {
4963d14c5d2SYehuda Sadeh 	struct ceph_vino *pvino = (struct ceph_vino *)data;
4973d14c5d2SYehuda Sadeh 	struct ceph_inode_info *ci = ceph_inode(inode);
4983d14c5d2SYehuda Sadeh 	return ci->i_vino.ino == pvino->ino &&
4993d14c5d2SYehuda Sadeh 		ci->i_vino.snap == pvino->snap;
5003d14c5d2SYehuda Sadeh }
5013d14c5d2SYehuda Sadeh 
5023d14c5d2SYehuda Sadeh static inline struct inode *ceph_find_inode(struct super_block *sb,
5033d14c5d2SYehuda Sadeh 					    struct ceph_vino vino)
5043d14c5d2SYehuda Sadeh {
5053d14c5d2SYehuda Sadeh 	ino_t t = ceph_vino_to_ino(vino);
5063d14c5d2SYehuda Sadeh 	return ilookup5(sb, t, ceph_ino_compare, &vino);
5073d14c5d2SYehuda Sadeh }
5083d14c5d2SYehuda Sadeh 
5093d14c5d2SYehuda Sadeh 
5103d14c5d2SYehuda Sadeh /*
5113d14c5d2SYehuda Sadeh  * Ceph inode.
5123d14c5d2SYehuda Sadeh  */
51310183a69SYan, Zheng #define CEPH_I_DIR_ORDERED	(1 << 0)  /* dentries in dir are ordered */
51410183a69SYan, Zheng #define CEPH_I_NODELAY		(1 << 1)  /* do not delay cap release */
51510183a69SYan, Zheng #define CEPH_I_FLUSH		(1 << 2)  /* do not delay flush of dirty metadata */
516daca8bdaSJeff Layton #define CEPH_I_POOL_PERM	(1 << 3)  /* pool rd/wr bits are valid */
517daca8bdaSJeff Layton #define CEPH_I_POOL_RD		(1 << 4)  /* can read from pool */
518daca8bdaSJeff Layton #define CEPH_I_POOL_WR		(1 << 5)  /* can write to pool */
519daca8bdaSJeff Layton #define CEPH_I_SEC_INITED	(1 << 6)  /* security initialized */
520daca8bdaSJeff Layton #define CEPH_I_CAP_DROPPED	(1 << 7)  /* caps were forcibly dropped */
521daca8bdaSJeff Layton #define CEPH_I_KICK_FLUSH	(1 << 8)  /* kick flushing caps */
522daca8bdaSJeff Layton #define CEPH_I_FLUSH_SNAPS	(1 << 9)  /* need flush snapss */
523daca8bdaSJeff Layton #define CEPH_I_ERROR_WRITE	(1 << 10) /* have seen write errors */
524daca8bdaSJeff Layton #define CEPH_I_ERROR_FILELOCK	(1 << 11) /* have seen file lock errors */
525321fe13cSJeff Layton #define CEPH_I_ODIRECT		(1 << 12) /* inode in direct I/O mode */
52626544c62SJeff Layton 
52726544c62SJeff Layton /*
5281cf89a8dSYan, Zheng  * Masks of ceph inode work.
5291cf89a8dSYan, Zheng  */
5301cf89a8dSYan, Zheng #define CEPH_I_WORK_WRITEBACK		0 /* writeback */
5311cf89a8dSYan, Zheng #define CEPH_I_WORK_INVALIDATE_PAGES	1 /* invalidate pages */
5321cf89a8dSYan, Zheng #define CEPH_I_WORK_VMTRUNCATE		2 /* vmtruncate */
5331cf89a8dSYan, Zheng 
5341cf89a8dSYan, Zheng /*
53526544c62SJeff Layton  * We set the ERROR_WRITE bit when we start seeing write errors on an inode
53626544c62SJeff Layton  * and then clear it when they start succeeding. Note that we do a lockless
53726544c62SJeff Layton  * check first, and only take the lock if it looks like it needs to be changed.
53826544c62SJeff Layton  * The write submission code just takes this as a hint, so we're not too
53926544c62SJeff Layton  * worried if a few slip through in either direction.
54026544c62SJeff Layton  */
54126544c62SJeff Layton static inline void ceph_set_error_write(struct ceph_inode_info *ci)
54226544c62SJeff Layton {
54326544c62SJeff Layton 	if (!(READ_ONCE(ci->i_ceph_flags) & CEPH_I_ERROR_WRITE)) {
54426544c62SJeff Layton 		spin_lock(&ci->i_ceph_lock);
54526544c62SJeff Layton 		ci->i_ceph_flags |= CEPH_I_ERROR_WRITE;
54626544c62SJeff Layton 		spin_unlock(&ci->i_ceph_lock);
54726544c62SJeff Layton 	}
54826544c62SJeff Layton }
54926544c62SJeff Layton 
55026544c62SJeff Layton static inline void ceph_clear_error_write(struct ceph_inode_info *ci)
55126544c62SJeff Layton {
55226544c62SJeff Layton 	if (READ_ONCE(ci->i_ceph_flags) & CEPH_I_ERROR_WRITE) {
55326544c62SJeff Layton 		spin_lock(&ci->i_ceph_lock);
55426544c62SJeff Layton 		ci->i_ceph_flags &= ~CEPH_I_ERROR_WRITE;
55526544c62SJeff Layton 		spin_unlock(&ci->i_ceph_lock);
55626544c62SJeff Layton 	}
55726544c62SJeff Layton }
5583d14c5d2SYehuda Sadeh 
5592f276c51SYan, Zheng static inline void __ceph_dir_set_complete(struct ceph_inode_info *ci,
560fdd4e158SYan, Zheng 					   long long release_count,
561fdd4e158SYan, Zheng 					   long long ordered_count)
562de57606cSSage Weil {
56374960773SAndrea Parri 	/*
56474960773SAndrea Parri 	 * Makes sure operations that setup readdir cache (update page
56574960773SAndrea Parri 	 * cache and i_size) are strongly ordered w.r.t. the following
56674960773SAndrea Parri 	 * atomic64_set() operations.
56774960773SAndrea Parri 	 */
56874960773SAndrea Parri 	smp_mb();
569fdd4e158SYan, Zheng 	atomic64_set(&ci->i_complete_seq[0], release_count);
570fdd4e158SYan, Zheng 	atomic64_set(&ci->i_complete_seq[1], ordered_count);
571de57606cSSage Weil }
572de57606cSSage Weil 
5732f276c51SYan, Zheng static inline void __ceph_dir_clear_complete(struct ceph_inode_info *ci)
574de57606cSSage Weil {
575fdd4e158SYan, Zheng 	atomic64_inc(&ci->i_release_count);
576fdd4e158SYan, Zheng }
577fdd4e158SYan, Zheng 
578fdd4e158SYan, Zheng static inline void __ceph_dir_clear_ordered(struct ceph_inode_info *ci)
579fdd4e158SYan, Zheng {
580fdd4e158SYan, Zheng 	atomic64_inc(&ci->i_ordered_count);
581de57606cSSage Weil }
582de57606cSSage Weil 
5832f276c51SYan, Zheng static inline bool __ceph_dir_is_complete(struct ceph_inode_info *ci)
584de57606cSSage Weil {
585fdd4e158SYan, Zheng 	return atomic64_read(&ci->i_complete_seq[0]) ==
586fdd4e158SYan, Zheng 		atomic64_read(&ci->i_release_count);
5872f276c51SYan, Zheng }
588de57606cSSage Weil 
58970db4f36SYan, Zheng static inline bool __ceph_dir_is_complete_ordered(struct ceph_inode_info *ci)
59070db4f36SYan, Zheng {
591fdd4e158SYan, Zheng 	return  atomic64_read(&ci->i_complete_seq[0]) ==
592fdd4e158SYan, Zheng 		atomic64_read(&ci->i_release_count) &&
593fdd4e158SYan, Zheng 		atomic64_read(&ci->i_complete_seq[1]) ==
594fdd4e158SYan, Zheng 		atomic64_read(&ci->i_ordered_count);
59570db4f36SYan, Zheng }
59670db4f36SYan, Zheng 
5972f276c51SYan, Zheng static inline void ceph_dir_clear_complete(struct inode *inode)
5982f276c51SYan, Zheng {
5992f276c51SYan, Zheng 	__ceph_dir_clear_complete(ceph_inode(inode));
6002f276c51SYan, Zheng }
6012f276c51SYan, Zheng 
60270db4f36SYan, Zheng static inline void ceph_dir_clear_ordered(struct inode *inode)
6032f276c51SYan, Zheng {
604fdd4e158SYan, Zheng 	__ceph_dir_clear_ordered(ceph_inode(inode));
605de57606cSSage Weil }
606de57606cSSage Weil 
60770db4f36SYan, Zheng static inline bool ceph_dir_is_complete_ordered(struct inode *inode)
60870db4f36SYan, Zheng {
609fdd4e158SYan, Zheng 	bool ret = __ceph_dir_is_complete_ordered(ceph_inode(inode));
610fdd4e158SYan, Zheng 	smp_rmb();
61170db4f36SYan, Zheng 	return ret;
61270db4f36SYan, Zheng }
613de57606cSSage Weil 
614de57606cSSage Weil /* find a specific frag @f */
615de57606cSSage Weil extern struct ceph_inode_frag *__ceph_find_frag(struct ceph_inode_info *ci,
616de57606cSSage Weil 						u32 f);
617de57606cSSage Weil 
618de57606cSSage Weil /*
619de57606cSSage Weil  * choose fragment for value @v.  copy frag content to pfrag, if leaf
620de57606cSSage Weil  * exists
621de57606cSSage Weil  */
622de57606cSSage Weil extern u32 ceph_choose_frag(struct ceph_inode_info *ci, u32 v,
623de57606cSSage Weil 			    struct ceph_inode_frag *pfrag,
624de57606cSSage Weil 			    int *found);
625de57606cSSage Weil 
6261e9c2eb6SYan, Zheng static inline struct ceph_dentry_info *ceph_dentry(const struct dentry *dentry)
627de57606cSSage Weil {
628de57606cSSage Weil 	return (struct ceph_dentry_info *)dentry->d_fsdata;
629de57606cSSage Weil }
630de57606cSSage Weil 
631de57606cSSage Weil /*
632de57606cSSage Weil  * caps helpers
633de57606cSSage Weil  */
634de57606cSSage Weil static inline bool __ceph_is_any_real_caps(struct ceph_inode_info *ci)
635de57606cSSage Weil {
636de57606cSSage Weil 	return !RB_EMPTY_ROOT(&ci->i_caps);
637de57606cSSage Weil }
638de57606cSSage Weil 
639de57606cSSage Weil extern int __ceph_caps_issued(struct ceph_inode_info *ci, int *implemented);
640de57606cSSage Weil extern int __ceph_caps_issued_mask(struct ceph_inode_info *ci, int mask, int t);
641de57606cSSage Weil extern int __ceph_caps_issued_other(struct ceph_inode_info *ci,
642de57606cSSage Weil 				    struct ceph_cap *cap);
643de57606cSSage Weil 
644de57606cSSage Weil static inline int ceph_caps_issued(struct ceph_inode_info *ci)
645de57606cSSage Weil {
646de57606cSSage Weil 	int issued;
647be655596SSage Weil 	spin_lock(&ci->i_ceph_lock);
648de57606cSSage Weil 	issued = __ceph_caps_issued(ci, NULL);
649be655596SSage Weil 	spin_unlock(&ci->i_ceph_lock);
650de57606cSSage Weil 	return issued;
651de57606cSSage Weil }
652de57606cSSage Weil 
653de57606cSSage Weil static inline int ceph_caps_issued_mask(struct ceph_inode_info *ci, int mask,
654de57606cSSage Weil 					int touch)
655de57606cSSage Weil {
656de57606cSSage Weil 	int r;
657be655596SSage Weil 	spin_lock(&ci->i_ceph_lock);
658de57606cSSage Weil 	r = __ceph_caps_issued_mask(ci, mask, touch);
659be655596SSage Weil 	spin_unlock(&ci->i_ceph_lock);
660de57606cSSage Weil 	return r;
661de57606cSSage Weil }
662de57606cSSage Weil 
663de57606cSSage Weil static inline int __ceph_caps_dirty(struct ceph_inode_info *ci)
664de57606cSSage Weil {
665de57606cSSage Weil 	return ci->i_dirty_caps | ci->i_flushing_caps;
666de57606cSSage Weil }
667f66fd9f0SYan, Zheng extern struct ceph_cap_flush *ceph_alloc_cap_flush(void);
668f66fd9f0SYan, Zheng extern void ceph_free_cap_flush(struct ceph_cap_flush *cf);
669f66fd9f0SYan, Zheng extern int __ceph_mark_dirty_caps(struct ceph_inode_info *ci, int mask,
670f66fd9f0SYan, Zheng 				  struct ceph_cap_flush **pcf);
671de57606cSSage Weil 
6729563f88cSYan, Zheng extern int __ceph_caps_revoking_other(struct ceph_inode_info *ci,
6739563f88cSYan, Zheng 				      struct ceph_cap *ocap, int mask);
674de57606cSSage Weil extern int ceph_caps_revoking(struct ceph_inode_info *ci, int mask);
675de57606cSSage Weil extern int __ceph_caps_used(struct ceph_inode_info *ci);
676de57606cSSage Weil 
677de57606cSSage Weil extern int __ceph_caps_file_wanted(struct ceph_inode_info *ci);
678525d15e8SYan, Zheng extern int __ceph_caps_wanted(struct ceph_inode_info *ci);
679de57606cSSage Weil 
680de57606cSSage Weil /* what the mds thinks we want */
681c1944fedSYan, Zheng extern int __ceph_caps_mds_wanted(struct ceph_inode_info *ci, bool check);
682de57606cSSage Weil 
68337151668SYehuda Sadeh extern void ceph_caps_init(struct ceph_mds_client *mdsc);
68437151668SYehuda Sadeh extern void ceph_caps_finalize(struct ceph_mds_client *mdsc);
685fe33032dSYan, Zheng extern void ceph_adjust_caps_max_min(struct ceph_mds_client *mdsc,
686fe33032dSYan, Zheng 				     struct ceph_mount_options *fsopt);
687e30ee581SZhi Zhang extern int ceph_reserve_caps(struct ceph_mds_client *mdsc,
68837151668SYehuda Sadeh 			     struct ceph_cap_reservation *ctx, int need);
6897bf8f736SChengguang Xu extern void ceph_unreserve_caps(struct ceph_mds_client *mdsc,
69037151668SYehuda Sadeh 			       struct ceph_cap_reservation *ctx);
6913d14c5d2SYehuda Sadeh extern void ceph_reservation_status(struct ceph_fs_client *client,
692de57606cSSage Weil 				    int *total, int *avail, int *used,
69385ccce43SSage Weil 				    int *reserved, int *min);
694de57606cSSage Weil 
695de57606cSSage Weil 
696de57606cSSage Weil 
697de57606cSSage Weil /*
698de57606cSSage Weil  * we keep buffered readdir results attached to file->private_data
699de57606cSSage Weil  */
7004918b6d1SSage Weil #define CEPH_F_SYNC     1
7019cfa1098SSage Weil #define CEPH_F_ATEND    2
7024918b6d1SSage Weil 
703de57606cSSage Weil struct ceph_file_info {
704252c6728SSage Weil 	short fmode;     /* initialized on open */
705252c6728SSage Weil 	short flags;     /* CEPH_F_* */
706de57606cSSage Weil 
7075d988308SYan, Zheng 	spinlock_t rw_contexts_lock;
7085d988308SYan, Zheng 	struct list_head rw_contexts;
709f4b97866SYan, Zheng 
710f4b97866SYan, Zheng 	errseq_t meta_err;
71181f148a9SYan, Zheng 	u32 filp_gen;
712ff5d913dSYan, Zheng 	atomic_t num_locks;
713bb48bd4dSChengguang Xu };
714bb48bd4dSChengguang Xu 
715bb48bd4dSChengguang Xu struct ceph_dir_file_info {
716bb48bd4dSChengguang Xu 	struct ceph_file_info file_info;
7175d988308SYan, Zheng 
718de57606cSSage Weil 	/* readdir: position within the dir */
719de57606cSSage Weil 	u32 frag;
720de57606cSSage Weil 	struct ceph_mds_request *last_readdir;
721de57606cSSage Weil 
722de57606cSSage Weil 	/* readdir: position within a frag */
723f0494206SYan, Zheng 	unsigned next_offset;  /* offset of next chunk (last_name's + 1) */
724de57606cSSage Weil 	char *last_name;       /* last entry in previous chunk */
725fdd4e158SYan, Zheng 	long long dir_release_count;
726fdd4e158SYan, Zheng 	long long dir_ordered_count;
727fdd4e158SYan, Zheng 	int readdir_cache_idx;
728de57606cSSage Weil 
729de57606cSSage Weil 	/* used for -o dirstat read() on directory thing */
730de57606cSSage Weil 	char *dir_info;
731de57606cSSage Weil 	int dir_info_len;
732de57606cSSage Weil };
733de57606cSSage Weil 
7345d988308SYan, Zheng struct ceph_rw_context {
7355d988308SYan, Zheng 	struct list_head list;
7365d988308SYan, Zheng 	struct task_struct *thread;
7375d988308SYan, Zheng 	int caps;
7385d988308SYan, Zheng };
7395d988308SYan, Zheng 
7405d988308SYan, Zheng #define CEPH_DEFINE_RW_CONTEXT(_name, _caps)	\
7415d988308SYan, Zheng 	struct ceph_rw_context _name = {	\
7425d988308SYan, Zheng 		.thread = current,		\
7435d988308SYan, Zheng 		.caps = _caps,			\
7445d988308SYan, Zheng 	}
7455d988308SYan, Zheng 
7465d988308SYan, Zheng static inline void ceph_add_rw_context(struct ceph_file_info *cf,
7475d988308SYan, Zheng 				       struct ceph_rw_context *ctx)
7485d988308SYan, Zheng {
7495d988308SYan, Zheng 	spin_lock(&cf->rw_contexts_lock);
7505d988308SYan, Zheng 	list_add(&ctx->list, &cf->rw_contexts);
7515d988308SYan, Zheng 	spin_unlock(&cf->rw_contexts_lock);
7525d988308SYan, Zheng }
7535d988308SYan, Zheng 
7545d988308SYan, Zheng static inline void ceph_del_rw_context(struct ceph_file_info *cf,
7555d988308SYan, Zheng 				       struct ceph_rw_context *ctx)
7565d988308SYan, Zheng {
7575d988308SYan, Zheng 	spin_lock(&cf->rw_contexts_lock);
7585d988308SYan, Zheng 	list_del(&ctx->list);
7595d988308SYan, Zheng 	spin_unlock(&cf->rw_contexts_lock);
7605d988308SYan, Zheng }
7615d988308SYan, Zheng 
7625d988308SYan, Zheng static inline struct ceph_rw_context*
7635d988308SYan, Zheng ceph_find_rw_context(struct ceph_file_info *cf)
7645d988308SYan, Zheng {
7655d988308SYan, Zheng 	struct ceph_rw_context *ctx, *found = NULL;
7665d988308SYan, Zheng 	spin_lock(&cf->rw_contexts_lock);
7675d988308SYan, Zheng 	list_for_each_entry(ctx, &cf->rw_contexts, list) {
7685d988308SYan, Zheng 		if (ctx->thread == current) {
7695d988308SYan, Zheng 			found = ctx;
7705d988308SYan, Zheng 			break;
7715d988308SYan, Zheng 		}
7725d988308SYan, Zheng 	}
7735d988308SYan, Zheng 	spin_unlock(&cf->rw_contexts_lock);
7745d988308SYan, Zheng 	return found;
7755d988308SYan, Zheng }
7765d988308SYan, Zheng 
777fdd4e158SYan, Zheng struct ceph_readdir_cache_control {
778fdd4e158SYan, Zheng 	struct page  *page;
779fdd4e158SYan, Zheng 	struct dentry **dentries;
780fdd4e158SYan, Zheng 	int index;
781fdd4e158SYan, Zheng };
782de57606cSSage Weil 
783de57606cSSage Weil /*
784de57606cSSage Weil  * A "snap realm" describes a subset of the file hierarchy sharing
785de57606cSSage Weil  * the same set of snapshots that apply to it.  The realms themselves
786de57606cSSage Weil  * are organized into a hierarchy, such that children inherit (some of)
787de57606cSSage Weil  * the snapshots of their parents.
788de57606cSSage Weil  *
789de57606cSSage Weil  * All inodes within the realm that have capabilities are linked into a
790de57606cSSage Weil  * per-realm list.
791de57606cSSage Weil  */
792de57606cSSage Weil struct ceph_snap_realm {
793de57606cSSage Weil 	u64 ino;
794e3161f17SLuis Henriques 	struct inode *inode;
795de57606cSSage Weil 	atomic_t nref;
796a105f00cSSage Weil 	struct rb_node node;
797a105f00cSSage Weil 
798de57606cSSage Weil 	u64 created, seq;
799de57606cSSage Weil 	u64 parent_ino;
800de57606cSSage Weil 	u64 parent_since;   /* snapid when our current parent became so */
801de57606cSSage Weil 
802de57606cSSage Weil 	u64 *prior_parent_snaps;      /* snaps inherited from any parents we */
803aa711ee3SAlex Elder 	u32 num_prior_parent_snaps;   /*  had prior to parent_since */
804de57606cSSage Weil 	u64 *snaps;                   /* snaps specific to this realm */
805aa711ee3SAlex Elder 	u32 num_snaps;
806de57606cSSage Weil 
807de57606cSSage Weil 	struct ceph_snap_realm *parent;
808de57606cSSage Weil 	struct list_head children;       /* list of child realms */
809de57606cSSage Weil 	struct list_head child_item;
810de57606cSSage Weil 
811de57606cSSage Weil 	struct list_head empty_item;     /* if i have ref==0 */
812de57606cSSage Weil 
813ae00d4f3SSage Weil 	struct list_head dirty_item;     /* if realm needs new context */
814ae00d4f3SSage Weil 
815de57606cSSage Weil 	/* the current set of snaps for this realm */
816de57606cSSage Weil 	struct ceph_snap_context *cached_context;
817de57606cSSage Weil 
818de57606cSSage Weil 	struct list_head inodes_with_caps;
819de57606cSSage Weil 	spinlock_t inodes_with_caps_lock;
820de57606cSSage Weil };
821de57606cSSage Weil 
8223d14c5d2SYehuda Sadeh static inline int default_congestion_kb(void)
8233d14c5d2SYehuda Sadeh {
8243d14c5d2SYehuda Sadeh 	int congestion_kb;
825de57606cSSage Weil 
826de57606cSSage Weil 	/*
8273d14c5d2SYehuda Sadeh 	 * Copied from NFS
8283d14c5d2SYehuda Sadeh 	 *
8293d14c5d2SYehuda Sadeh 	 * congestion size, scale with available memory.
8303d14c5d2SYehuda Sadeh 	 *
8313d14c5d2SYehuda Sadeh 	 *  64MB:    8192k
8323d14c5d2SYehuda Sadeh 	 * 128MB:   11585k
8333d14c5d2SYehuda Sadeh 	 * 256MB:   16384k
8343d14c5d2SYehuda Sadeh 	 * 512MB:   23170k
8353d14c5d2SYehuda Sadeh 	 *   1GB:   32768k
8363d14c5d2SYehuda Sadeh 	 *   2GB:   46340k
8373d14c5d2SYehuda Sadeh 	 *   4GB:   65536k
8383d14c5d2SYehuda Sadeh 	 *   8GB:   92681k
8393d14c5d2SYehuda Sadeh 	 *  16GB:  131072k
8403d14c5d2SYehuda Sadeh 	 *
8413d14c5d2SYehuda Sadeh 	 * This allows larger machines to have larger/more transfers.
8423d14c5d2SYehuda Sadeh 	 * Limit the default to 256M
843de57606cSSage Weil 	 */
844ca79b0c2SArun KS 	congestion_kb = (16*int_sqrt(totalram_pages())) << (PAGE_SHIFT-10);
8453d14c5d2SYehuda Sadeh 	if (congestion_kb > 256*1024)
8463d14c5d2SYehuda Sadeh 		congestion_kb = 256*1024;
8473d14c5d2SYehuda Sadeh 
8483d14c5d2SYehuda Sadeh 	return congestion_kb;
849de57606cSSage Weil }
850de57606cSSage Weil 
851de57606cSSage Weil 
852d468e729SYan, Zheng /* super.c */
853d468e729SYan, Zheng extern int ceph_force_reconnect(struct super_block *sb);
854de57606cSSage Weil /* snap.c */
855de57606cSSage Weil struct ceph_snap_realm *ceph_lookup_snap_realm(struct ceph_mds_client *mdsc,
856de57606cSSage Weil 					       u64 ino);
857de57606cSSage Weil extern void ceph_get_snap_realm(struct ceph_mds_client *mdsc,
858de57606cSSage Weil 				struct ceph_snap_realm *realm);
859de57606cSSage Weil extern void ceph_put_snap_realm(struct ceph_mds_client *mdsc,
860de57606cSSage Weil 				struct ceph_snap_realm *realm);
861de57606cSSage Weil extern int ceph_update_snap_trace(struct ceph_mds_client *m,
862982d6011SYan, Zheng 				  void *p, void *e, bool deletion,
863982d6011SYan, Zheng 				  struct ceph_snap_realm **realm_ret);
864de57606cSSage Weil extern void ceph_handle_snap(struct ceph_mds_client *mdsc,
8652600d2ddSSage Weil 			     struct ceph_mds_session *session,
866de57606cSSage Weil 			     struct ceph_msg *msg);
867fc837c8fSSage Weil extern void ceph_queue_cap_snap(struct ceph_inode_info *ci);
868de57606cSSage Weil extern int __ceph_finish_cap_snap(struct ceph_inode_info *ci,
869de57606cSSage Weil 				  struct ceph_cap_snap *capsnap);
870de57606cSSage Weil extern void ceph_cleanup_empty_realms(struct ceph_mds_client *mdsc);
871de57606cSSage Weil 
87275c9627eSYan, Zheng extern struct ceph_snapid_map *ceph_get_snapid_map(struct ceph_mds_client *mdsc,
87375c9627eSYan, Zheng 						   u64 snap);
87475c9627eSYan, Zheng extern void ceph_put_snapid_map(struct ceph_mds_client* mdsc,
87575c9627eSYan, Zheng 				struct ceph_snapid_map *sm);
87675c9627eSYan, Zheng extern void ceph_trim_snapid_map(struct ceph_mds_client *mdsc);
87775c9627eSYan, Zheng extern void ceph_cleanup_snapid_map(struct ceph_mds_client *mdsc);
87875c9627eSYan, Zheng 
87975c9627eSYan, Zheng 
880de57606cSSage Weil /*
881de57606cSSage Weil  * a cap_snap is "pending" if it is still awaiting an in-progress
882de57606cSSage Weil  * sync write (that may/may not still update size, mtime, etc.).
883de57606cSSage Weil  */
884de57606cSSage Weil static inline bool __ceph_have_pending_cap_snap(struct ceph_inode_info *ci)
885de57606cSSage Weil {
886de57606cSSage Weil 	return !list_empty(&ci->i_cap_snaps) &&
88786056090SYan, Zheng 	       list_last_entry(&ci->i_cap_snaps, struct ceph_cap_snap,
888de57606cSSage Weil 			       ci_item)->writing;
889de57606cSSage Weil }
890de57606cSSage Weil 
891de57606cSSage Weil /* inode.c */
892de57606cSSage Weil extern const struct inode_operations ceph_file_iops;
893de57606cSSage Weil 
894de57606cSSage Weil extern struct inode *ceph_alloc_inode(struct super_block *sb);
89587bc5b89SYan, Zheng extern void ceph_evict_inode(struct inode *inode);
896cfa6d412SAl Viro extern void ceph_free_inode(struct inode *inode);
897de57606cSSage Weil 
898de57606cSSage Weil extern struct inode *ceph_get_inode(struct super_block *sb,
899de57606cSSage Weil 				    struct ceph_vino vino);
900de57606cSSage Weil extern struct inode *ceph_get_snapdir(struct inode *parent);
901de57606cSSage Weil extern int ceph_fill_file_size(struct inode *inode, int issued,
902de57606cSSage Weil 			       u32 truncate_seq, u64 truncate_size, u64 size);
903de57606cSSage Weil extern void ceph_fill_file_time(struct inode *inode, int issued,
9049bbeab41SArnd Bergmann 				u64 time_warp_seq, struct timespec64 *ctime,
9059bbeab41SArnd Bergmann 				struct timespec64 *mtime,
9069bbeab41SArnd Bergmann 				struct timespec64 *atime);
907de57606cSSage Weil extern int ceph_fill_trace(struct super_block *sb,
908f5a03b08SJeff Layton 			   struct ceph_mds_request *req);
909de57606cSSage Weil extern int ceph_readdir_prepopulate(struct ceph_mds_request *req,
910de57606cSSage Weil 				    struct ceph_mds_session *session);
911de57606cSSage Weil 
912de57606cSSage Weil extern int ceph_inode_holds_cap(struct inode *inode, int mask);
913de57606cSSage Weil 
914efb0ca76SYan, Zheng extern bool ceph_inode_set_size(struct inode *inode, loff_t size);
915b415bf4fSYan, Zheng extern void __ceph_do_pending_vmtruncate(struct inode *inode);
9163c6f6b79SSage Weil extern void ceph_queue_vmtruncate(struct inode *inode);
9173c6f6b79SSage Weil extern void ceph_queue_invalidate(struct inode *inode);
9183c6f6b79SSage Weil extern void ceph_queue_writeback(struct inode *inode);
9193e1d0452SYan, Zheng extern void ceph_async_iput(struct inode *inode);
920de57606cSSage Weil 
92101deead0SYan, Zheng extern int __ceph_do_getattr(struct inode *inode, struct page *locked_page,
92201deead0SYan, Zheng 			     int mask, bool force);
92301deead0SYan, Zheng static inline int ceph_do_getattr(struct inode *inode, int mask, bool force)
92401deead0SYan, Zheng {
92501deead0SYan, Zheng 	return __ceph_do_getattr(inode, NULL, mask, force);
92601deead0SYan, Zheng }
92710556cb2SAl Viro extern int ceph_permission(struct inode *inode, int mask);
928a26feccaSAndreas Gruenbacher extern int __ceph_setattr(struct inode *inode, struct iattr *attr);
929de57606cSSage Weil extern int ceph_setattr(struct dentry *dentry, struct iattr *attr);
930a528d35eSDavid Howells extern int ceph_getattr(const struct path *path, struct kstat *stat,
931a528d35eSDavid Howells 			u32 request_mask, unsigned int flags);
932de57606cSSage Weil 
933de57606cSSage Weil /* xattr.c */
934a26feccaSAndreas Gruenbacher int __ceph_setxattr(struct inode *, const char *, const void *, size_t, int);
9357221fe4cSGuangliang Zhao ssize_t __ceph_getxattr(struct inode *, const char *, void *, size_t);
936de57606cSSage Weil extern ssize_t ceph_listxattr(struct dentry *, char *, size_t);
93712fe3ddaSLuis Henriques extern struct ceph_buffer *__ceph_build_xattrs_blob(struct ceph_inode_info *ci);
938de57606cSSage Weil extern void __ceph_destroy_xattrs(struct ceph_inode_info *ci);
939b1ee94aaSYan, Zheng extern const struct xattr_handler *ceph_xattr_handlers[];
940de57606cSSage Weil 
9415c31e92dSYan, Zheng struct ceph_acl_sec_ctx {
9425c31e92dSYan, Zheng #ifdef CONFIG_CEPH_FS_POSIX_ACL
9435c31e92dSYan, Zheng 	void *default_acl;
9445c31e92dSYan, Zheng 	void *acl;
9455c31e92dSYan, Zheng #endif
946ac6713ccSYan, Zheng #ifdef CONFIG_CEPH_FS_SECURITY_LABEL
947ac6713ccSYan, Zheng 	void *sec_ctx;
948ac6713ccSYan, Zheng 	u32 sec_ctxlen;
949ac6713ccSYan, Zheng #endif
9505c31e92dSYan, Zheng 	struct ceph_pagelist *pagelist;
9515c31e92dSYan, Zheng };
9525c31e92dSYan, Zheng 
953315f2408SYan, Zheng #ifdef CONFIG_SECURITY
954315f2408SYan, Zheng extern bool ceph_security_xattr_deadlock(struct inode *in);
955315f2408SYan, Zheng extern bool ceph_security_xattr_wanted(struct inode *in);
956315f2408SYan, Zheng #else
957315f2408SYan, Zheng static inline bool ceph_security_xattr_deadlock(struct inode *in)
958315f2408SYan, Zheng {
959315f2408SYan, Zheng 	return false;
960315f2408SYan, Zheng }
961315f2408SYan, Zheng static inline bool ceph_security_xattr_wanted(struct inode *in)
962315f2408SYan, Zheng {
963315f2408SYan, Zheng 	return false;
964315f2408SYan, Zheng }
965315f2408SYan, Zheng #endif
966315f2408SYan, Zheng 
967ac6713ccSYan, Zheng #ifdef CONFIG_CEPH_FS_SECURITY_LABEL
968ac6713ccSYan, Zheng extern int ceph_security_init_secctx(struct dentry *dentry, umode_t mode,
969ac6713ccSYan, Zheng 				     struct ceph_acl_sec_ctx *ctx);
970668959a5SJeff Layton static inline void ceph_security_invalidate_secctx(struct inode *inode)
971668959a5SJeff Layton {
972668959a5SJeff Layton 	security_inode_invalidate_secctx(inode);
973668959a5SJeff Layton }
974ac6713ccSYan, Zheng #else
975ac6713ccSYan, Zheng static inline int ceph_security_init_secctx(struct dentry *dentry, umode_t mode,
976ac6713ccSYan, Zheng 					    struct ceph_acl_sec_ctx *ctx)
977ac6713ccSYan, Zheng {
978ac6713ccSYan, Zheng 	return 0;
979ac6713ccSYan, Zheng }
980ac6713ccSYan, Zheng static inline void ceph_security_invalidate_secctx(struct inode *inode)
981ac6713ccSYan, Zheng {
982ac6713ccSYan, Zheng }
983ac6713ccSYan, Zheng #endif
9847221fe4cSGuangliang Zhao 
9855c31e92dSYan, Zheng void ceph_release_acl_sec_ctx(struct ceph_acl_sec_ctx *as_ctx);
9867221fe4cSGuangliang Zhao 
9875c31e92dSYan, Zheng /* acl.c */
9887221fe4cSGuangliang Zhao #ifdef CONFIG_CEPH_FS_POSIX_ACL
9897221fe4cSGuangliang Zhao 
9907221fe4cSGuangliang Zhao struct posix_acl *ceph_get_acl(struct inode *, int);
99172466d0bSSage Weil int ceph_set_acl(struct inode *inode, struct posix_acl *acl, int type);
992b1ee94aaSYan, Zheng int ceph_pre_init_acls(struct inode *dir, umode_t *mode,
9935c31e92dSYan, Zheng 		       struct ceph_acl_sec_ctx *as_ctx);
9945c31e92dSYan, Zheng void ceph_init_inode_acls(struct inode *inode,
9955c31e92dSYan, Zheng 			  struct ceph_acl_sec_ctx *as_ctx);
996c969d9bfSGuangliang Zhao 
997c969d9bfSGuangliang Zhao static inline void ceph_forget_all_cached_acls(struct inode *inode)
998c969d9bfSGuangliang Zhao {
999c969d9bfSGuangliang Zhao        forget_all_cached_acls(inode);
1000c969d9bfSGuangliang Zhao }
10017221fe4cSGuangliang Zhao 
10027221fe4cSGuangliang Zhao #else
10037221fe4cSGuangliang Zhao 
10047221fe4cSGuangliang Zhao #define ceph_get_acl NULL
100572466d0bSSage Weil #define ceph_set_acl NULL
10067221fe4cSGuangliang Zhao 
1007b1ee94aaSYan, Zheng static inline int ceph_pre_init_acls(struct inode *dir, umode_t *mode,
10085c31e92dSYan, Zheng 				     struct ceph_acl_sec_ctx *as_ctx)
10097221fe4cSGuangliang Zhao {
10107221fe4cSGuangliang Zhao 	return 0;
10117221fe4cSGuangliang Zhao }
1012b1ee94aaSYan, Zheng static inline void ceph_init_inode_acls(struct inode *inode,
10135c31e92dSYan, Zheng 					struct ceph_acl_sec_ctx *as_ctx)
1014b1ee94aaSYan, Zheng {
1015b1ee94aaSYan, Zheng }
10167221fe4cSGuangliang Zhao static inline int ceph_acl_chmod(struct dentry *dentry, struct inode *inode)
10177221fe4cSGuangliang Zhao {
10187221fe4cSGuangliang Zhao 	return 0;
10197221fe4cSGuangliang Zhao }
10207221fe4cSGuangliang Zhao 
10217221fe4cSGuangliang Zhao static inline void ceph_forget_all_cached_acls(struct inode *inode)
10227221fe4cSGuangliang Zhao {
10237221fe4cSGuangliang Zhao }
10247221fe4cSGuangliang Zhao 
10257221fe4cSGuangliang Zhao #endif
10267221fe4cSGuangliang Zhao 
1027de57606cSSage Weil /* caps.c */
1028de57606cSSage Weil extern const char *ceph_cap_string(int c);
1029de57606cSSage Weil extern void ceph_handle_caps(struct ceph_mds_session *session,
1030de57606cSSage Weil 			     struct ceph_msg *msg);
1031d9df2783SYan, Zheng extern struct ceph_cap *ceph_get_cap(struct ceph_mds_client *mdsc,
1032d9df2783SYan, Zheng 				     struct ceph_cap_reservation *ctx);
1033d9df2783SYan, Zheng extern void ceph_add_cap(struct inode *inode,
1034de57606cSSage Weil 			 struct ceph_mds_session *session, u64 cap_id,
1035de57606cSSage Weil 			 int fmode, unsigned issued, unsigned wanted,
1036de57606cSSage Weil 			 unsigned cap, unsigned seq, u64 realmino, int flags,
1037d9df2783SYan, Zheng 			 struct ceph_cap **new_cap);
1038a096b09aSYan, Zheng extern void __ceph_remove_cap(struct ceph_cap *cap, bool queue_release);
1039d6e47819SYan, Zheng extern void __ceph_remove_caps(struct ceph_inode_info *ci);
104037151668SYehuda Sadeh extern void ceph_put_cap(struct ceph_mds_client *mdsc,
104137151668SYehuda Sadeh 			 struct ceph_cap *cap);
10429215aeeaSYan, Zheng extern int ceph_is_any_caps(struct inode *inode);
1043de57606cSSage Weil 
1044f1a3d572SStephen Rothwell extern int ceph_write_inode(struct inode *inode, struct writeback_control *wbc);
104502c24a82SJosef Bacik extern int ceph_fsync(struct file *file, loff_t start, loff_t end,
104602c24a82SJosef Bacik 		      int datasync);
1047e548e9b9SYan, Zheng extern void ceph_early_kick_flushing_caps(struct ceph_mds_client *mdsc,
1048e548e9b9SYan, Zheng 					  struct ceph_mds_session *session);
1049de57606cSSage Weil extern void ceph_kick_flushing_caps(struct ceph_mds_client *mdsc,
1050de57606cSSage Weil 				    struct ceph_mds_session *session);
1051*e8a4d267SJeff Layton void ceph_kick_flushing_inode_caps(struct ceph_mds_session *session,
1052*e8a4d267SJeff Layton 				   struct ceph_inode_info *ci);
10532bc50259SGreg Farnum extern struct ceph_cap *ceph_get_cap_for_mds(struct ceph_inode_info *ci,
10542bc50259SGreg Farnum 					     int mds);
1055de57606cSSage Weil extern void ceph_get_cap_refs(struct ceph_inode_info *ci, int caps);
1056de57606cSSage Weil extern void ceph_put_cap_refs(struct ceph_inode_info *ci, int had);
1057de57606cSSage Weil extern void ceph_put_wrbuffer_cap_refs(struct ceph_inode_info *ci, int nr,
1058de57606cSSage Weil 				       struct ceph_snap_context *snapc);
1059ed9b430cSYan, Zheng extern void ceph_flush_snaps(struct ceph_inode_info *ci,
10600e294387SYan, Zheng 			     struct ceph_mds_session **psession);
1061efb0ca76SYan, Zheng extern bool __ceph_should_report_size(struct ceph_inode_info *ci);
1062de57606cSSage Weil extern void ceph_check_caps(struct ceph_inode_info *ci, int flags,
1063de57606cSSage Weil 			    struct ceph_mds_session *session);
1064afcdaea3SSage Weil extern void ceph_check_delayed_caps(struct ceph_mds_client *mdsc);
1065afcdaea3SSage Weil extern void ceph_flush_dirty_caps(struct ceph_mds_client *mdsc);
10666ef0bc6dSZhi Zhang extern int  ceph_drop_caps_for_unlink(struct inode *inode);
1067de57606cSSage Weil extern int ceph_encode_inode_release(void **p, struct inode *inode,
1068de57606cSSage Weil 				     int mds, int drop, int unless, int force);
1069de57606cSSage Weil extern int ceph_encode_dentry_release(void **p, struct dentry *dn,
1070ca6c8ae0SJeff Layton 				      struct inode *dir,
1071de57606cSSage Weil 				      int mds, int drop, int unless);
1072de57606cSSage Weil 
10735e3ded1bSYan, Zheng extern int ceph_get_caps(struct file *filp, int need, int want,
107431c542a1SYan, Zheng 			 loff_t endoff, int *got, struct page **pinned_page);
10755e3ded1bSYan, Zheng extern int ceph_try_get_caps(struct inode *inode,
10762ee9dd95SLuis Henriques 			     int need, int want, bool nonblock, int *got);
1077de57606cSSage Weil 
1078de57606cSSage Weil /* for counting open files by mode */
1079774a6a11SYan, Zheng extern void __ceph_get_fmode(struct ceph_inode_info *ci, int mode);
1080de57606cSSage Weil extern void ceph_put_fmode(struct ceph_inode_info *ci, int mode);
1081de57606cSSage Weil 
1082de57606cSSage Weil /* addr.c */
1083de57606cSSage Weil extern const struct address_space_operations ceph_aops;
1084de57606cSSage Weil extern int ceph_mmap(struct file *file, struct vm_area_struct *vma);
108510183a69SYan, Zheng extern int ceph_uninline_data(struct file *filp, struct page *locked_page);
10865e3ded1bSYan, Zheng extern int ceph_pool_perm_check(struct inode *inode, int need);
108710183a69SYan, Zheng extern void ceph_pool_perm_destroy(struct ceph_mds_client* mdsc);
1088de57606cSSage Weil 
1089de57606cSSage Weil /* file.c */
1090de57606cSSage Weil extern const struct file_operations ceph_file_fops;
10919e0eb85dSAlex Elder 
109277310320SYan, Zheng extern int ceph_renew_caps(struct inode *inode);
1093de57606cSSage Weil extern int ceph_open(struct inode *inode, struct file *file);
10945ef50c3bSSage Weil extern int ceph_atomic_open(struct inode *dir, struct dentry *dentry,
109544907d79SAl Viro 			    struct file *file, unsigned flags, umode_t mode);
1096de57606cSSage Weil extern int ceph_release(struct inode *inode, struct file *filp);
109731c542a1SYan, Zheng extern void ceph_fill_inline_data(struct inode *inode, struct page *locked_page,
109831c542a1SYan, Zheng 				  char *data, size_t len);
109955f2a045SIlya Dryomov 
1100de57606cSSage Weil /* dir.c */
1101de57606cSSage Weil extern const struct file_operations ceph_dir_fops;
110238c48b5fSYan, Zheng extern const struct file_operations ceph_snapdir_fops;
1103de57606cSSage Weil extern const struct inode_operations ceph_dir_iops;
110438c48b5fSYan, Zheng extern const struct inode_operations ceph_snapdir_iops;
110518fc8abdSAl Viro extern const struct dentry_operations ceph_dentry_ops;
1106de57606cSSage Weil 
1107f3c4ebe6SYan, Zheng extern loff_t ceph_make_fpos(unsigned high, unsigned off, bool hash_order);
1108de57606cSSage Weil extern int ceph_handle_notrace_create(struct inode *dir, struct dentry *dentry);
1109468640e3SSage Weil extern int ceph_handle_snapdir(struct ceph_mds_request *req,
1110468640e3SSage Weil 			       struct dentry *dentry, int err);
1111de57606cSSage Weil extern struct dentry *ceph_finish_lookup(struct ceph_mds_request *req,
1112de57606cSSage Weil 					 struct dentry *dentry, int err);
1113de57606cSSage Weil 
111437c4efc1SYan, Zheng extern void __ceph_dentry_lease_touch(struct ceph_dentry_info *di);
111537c4efc1SYan, Zheng extern void __ceph_dentry_dir_lease_touch(struct ceph_dentry_info *di);
111681a6cf2dSSage Weil extern void ceph_invalidate_dentry_lease(struct dentry *dentry);
111737c4efc1SYan, Zheng extern int ceph_trim_dentries(struct ceph_mds_client *mdsc);
1118e5f86dc3SSage Weil extern unsigned ceph_dentry_hash(struct inode *dir, struct dentry *dn);
1119fdd4e158SYan, Zheng extern void ceph_readdir_cache_release(struct ceph_readdir_cache_control *ctl);
1120de57606cSSage Weil 
1121de57606cSSage Weil /* ioctl.c */
1122de57606cSSage Weil extern long ceph_ioctl(struct file *file, unsigned int cmd, unsigned long arg);
1123de57606cSSage Weil 
1124de57606cSSage Weil /* export.c */
1125de57606cSSage Weil extern const struct export_operations ceph_export_ops;
11263886274aSLuis Henriques struct inode *ceph_lookup_inode(struct super_block *sb, u64 ino);
1127de57606cSSage Weil 
112840819f6fSGreg Farnum /* locks.c */
1129eb13e832SYan, Zheng extern __init void ceph_flock_init(void);
113040819f6fSGreg Farnum extern int ceph_lock(struct file *file, int cmd, struct file_lock *fl);
113140819f6fSGreg Farnum extern int ceph_flock(struct file *file, int cmd, struct file_lock *fl);
113240819f6fSGreg Farnum extern void ceph_count_locks(struct inode *inode, int *p_num, int *f_num);
113339be95e9SJim Schutt extern int ceph_encode_locks_to_buffer(struct inode *inode,
113439be95e9SJim Schutt 				       struct ceph_filelock *flocks,
113539be95e9SJim Schutt 				       int num_fcntl_locks,
113639be95e9SJim Schutt 				       int num_flock_locks);
113739be95e9SJim Schutt extern int ceph_locks_to_pagelist(struct ceph_filelock *flocks,
113839be95e9SJim Schutt 				  struct ceph_pagelist *pagelist,
113939be95e9SJim Schutt 				  int num_fcntl_locks, int num_flock_locks);
114040819f6fSGreg Farnum 
11413d14c5d2SYehuda Sadeh /* debugfs.c */
11421a829ff2SGreg Kroah-Hartman extern void ceph_fs_debugfs_init(struct ceph_fs_client *client);
11433d14c5d2SYehuda Sadeh extern void ceph_fs_debugfs_cleanup(struct ceph_fs_client *client);
11443d14c5d2SYehuda Sadeh 
1145fb18a575SLuis Henriques /* quota.c */
1146d557c48dSLuis Henriques static inline bool __ceph_has_any_quota(struct ceph_inode_info *ci)
1147d557c48dSLuis Henriques {
1148d557c48dSLuis Henriques 	return ci->i_max_files || ci->i_max_bytes;
1149d557c48dSLuis Henriques }
1150d557c48dSLuis Henriques 
1151d557c48dSLuis Henriques extern void ceph_adjust_quota_realms_count(struct inode *inode, bool inc);
1152d557c48dSLuis Henriques 
1153d557c48dSLuis Henriques static inline void __ceph_update_quota(struct ceph_inode_info *ci,
1154d557c48dSLuis Henriques 				       u64 max_bytes, u64 max_files)
1155d557c48dSLuis Henriques {
1156d557c48dSLuis Henriques 	bool had_quota, has_quota;
1157d557c48dSLuis Henriques 	had_quota = __ceph_has_any_quota(ci);
1158d557c48dSLuis Henriques 	ci->i_max_bytes = max_bytes;
1159d557c48dSLuis Henriques 	ci->i_max_files = max_files;
1160d557c48dSLuis Henriques 	has_quota = __ceph_has_any_quota(ci);
1161d557c48dSLuis Henriques 
1162d557c48dSLuis Henriques 	if (had_quota != has_quota)
1163d557c48dSLuis Henriques 		ceph_adjust_quota_realms_count(&ci->vfs_inode, has_quota);
1164d557c48dSLuis Henriques }
1165d557c48dSLuis Henriques 
1166fb18a575SLuis Henriques extern void ceph_handle_quota(struct ceph_mds_client *mdsc,
1167fb18a575SLuis Henriques 			      struct ceph_mds_session *session,
1168fb18a575SLuis Henriques 			      struct ceph_msg *msg);
1169b7a29217SLuis Henriques extern bool ceph_quota_is_max_files_exceeded(struct inode *inode);
1170cafe21a4SLuis Henriques extern bool ceph_quota_is_same_realm(struct inode *old, struct inode *new);
11712b83845fSLuis Henriques extern bool ceph_quota_is_max_bytes_exceeded(struct inode *inode,
11722b83845fSLuis Henriques 					     loff_t newlen);
11731ab302a0SLuis Henriques extern bool ceph_quota_is_max_bytes_approaching(struct inode *inode,
11741ab302a0SLuis Henriques 						loff_t newlen);
11759122eed5SLuis Henriques extern bool ceph_quota_update_statfs(struct ceph_fs_client *fsc,
11769122eed5SLuis Henriques 				     struct kstatfs *buf);
11770c44a8e0SLuis Henriques extern void ceph_cleanup_quotarealms_inodes(struct ceph_mds_client *mdsc);
1178fb18a575SLuis Henriques 
1179de57606cSSage Weil #endif /* _FS_CEPH_SUPER_H */
1180