netfs: Add a netfs inode context
[linux-block.git] / fs / ceph / super.h
CommitLineData
b2441318 1/* SPDX-License-Identifier: GPL-2.0 */
de57606c
SW
2#ifndef _FS_CEPH_SUPER_H
3#define _FS_CEPH_SUPER_H
4
3d14c5d2 5#include <linux/ceph/ceph_debug.h>
de57606c
SW
6
7#include <asm/unaligned.h>
8#include <linux/backing-dev.h>
9#include <linux/completion.h>
10#include <linux/exportfs.h>
11#include <linux/fs.h>
12#include <linux/mempool.h>
13#include <linux/pagemap.h>
14#include <linux/wait.h>
f1a3d572 15#include <linux/writeback.h>
5a0e3ad6 16#include <linux/slab.h>
c969d9bf 17#include <linux/posix_acl.h>
805692d0 18#include <linux/refcount.h>
668959a5 19#include <linux/security.h>
bc899ee1
DH
20#include <linux/netfs.h>
21#include <linux/fscache.h>
de57606c 22
3d14c5d2 23#include <linux/ceph/libceph.h>
de57606c 24
de57606c
SW
25/* large granularity for statfs utilization stats to facilitate
26 * large volume sizes on 32-bit machines. */
92a49fb0 27#define CEPH_BLOCK_SHIFT 22 /* 4 MB */
de57606c 28#define CEPH_BLOCK (1 << CEPH_BLOCK_SHIFT)
8e55ba8c 29#define CEPH_4K_BLOCK_SHIFT 12 /* 4 KB */
de57606c 30
0b98acd6 31#define CEPH_MOUNT_OPT_CLEANRECOVER (1<<1) /* auto reonnect (clean mode) after blocklisted */
3d14c5d2
YS
32#define CEPH_MOUNT_OPT_DIRSTAT (1<<4) /* `cat dirname` for stats */
33#define CEPH_MOUNT_OPT_RBYTES (1<<5) /* dir st_bytes = rbytes */
34#define CEPH_MOUNT_OPT_NOASYNCREADDIR (1<<7) /* no dcache readdir */
ad1fee96 35#define CEPH_MOUNT_OPT_INO32 (1<<8) /* 32 bit inos */
a40dc6cc 36#define CEPH_MOUNT_OPT_DCACHE (1<<9) /* use dcache for readdir etc */
99ccbd22 37#define CEPH_MOUNT_OPT_FSCACHE (1<<10) /* use fscache */
10183a69 38#define CEPH_MOUNT_OPT_NOPOOLPERM (1<<11) /* no pool permission check */
e9e427f0 39#define CEPH_MOUNT_OPT_MOUNTWAIT (1<<12) /* mount waits if no mds is up */
9122eed5 40#define CEPH_MOUNT_OPT_NOQUOTADF (1<<13) /* no root dir quota in statfs */
ea4cdc54 41#define CEPH_MOUNT_OPT_NOCOPYFROM (1<<14) /* don't use RADOS 'copy-from' op */
2ccb4546 42#define CEPH_MOUNT_OPT_ASYNC_DIROPS (1<<15) /* allow async directory ops */
94cc0877 43#define CEPH_MOUNT_OPT_NOPAGECACHE (1<<16) /* bypass pagecache altogether */
6a259382 44
6f9718fe
LH
45#define CEPH_MOUNT_OPT_DEFAULT \
46 (CEPH_MOUNT_OPT_DCACHE | \
f7a67b46
JL
47 CEPH_MOUNT_OPT_NOCOPYFROM | \
48 CEPH_MOUNT_OPT_ASYNC_DIROPS)
de57606c 49
3d14c5d2 50#define ceph_set_mount_opt(fsc, opt) \
2ccb4546
JL
51 (fsc)->mount_options->flags |= CEPH_MOUNT_OPT_##opt
52#define ceph_clear_mount_opt(fsc, opt) \
53 (fsc)->mount_options->flags &= ~CEPH_MOUNT_OPT_##opt
3d14c5d2
YS
54#define ceph_test_mount_opt(fsc, opt) \
55 (!!((fsc)->mount_options->flags & CEPH_MOUNT_OPT_##opt))
de57606c 56
aa187926
YZ
57/* max size of osd read request, limited by libceph */
58#define CEPH_MAX_READ_SIZE CEPH_MSG_MAX_DATA_LEN
95cca2b4
YZ
59/* osd has a configurable limitaion of max write size.
60 * CEPH_MSG_MAX_DATA_LEN should be small enough. */
61#define CEPH_MAX_WRITE_SIZE CEPH_MSG_MAX_DATA_LEN
7c94ba27 62#define CEPH_RASIZE_DEFAULT (8192*1024) /* max readahead */
3d14c5d2
YS
63#define CEPH_MAX_READDIR_DEFAULT 1024
64#define CEPH_MAX_READDIR_BYTES_DEFAULT (512*1024)
65#define CEPH_SNAPDIRNAME_DEFAULT ".snap"
de57606c 66
4214fb15
YZ
67/*
68 * Delay telling the MDS we no longer want caps, in case we reopen
69 * the file. Delay a minimum amount of time, even if we send a cap
70 * message for some other reason. Otherwise, take the oppotunity to
71 * update the mds to avoid sending another message later.
72 */
73#define CEPH_CAPS_WANTED_DELAY_MIN_DEFAULT 5 /* cap release delay */
74#define CEPH_CAPS_WANTED_DELAY_MAX_DEFAULT 60 /* cap release delay */
75
3d14c5d2 76struct ceph_mount_options {
ad8c28a9 77 unsigned int flags;
3d14c5d2 78
ad8c28a9
JL
79 unsigned int wsize; /* max write size */
80 unsigned int rsize; /* max read size */
81 unsigned int rasize; /* max readahead */
82 unsigned int congestion_kb; /* max writeback in flight */
83 unsigned int caps_wanted_delay_min, caps_wanted_delay_max;
fe33032d 84 int caps_max;
ad8c28a9
JL
85 unsigned int max_readdir; /* max readdir result (entries) */
86 unsigned int max_readdir_bytes; /* max readdir result (bytes) */
de57606c 87
7b19b4db
VS
88 bool new_dev_syntax;
89
3d14c5d2
YS
90 /*
91 * everything above this point can be memcmp'd; everything below
92 * is handled in compare_mount_options()
93 */
de57606c 94
3d14c5d2 95 char *snapdir_name; /* default ".snap" */
430afbad 96 char *mds_namespace; /* default NULL */
b27a939e 97 char *server_path; /* default NULL (means "/") */
1d8f8360 98 char *fscache_uniq; /* default NULL */
7b19b4db 99 char *mon_addr;
3d14c5d2 100};
de57606c 101
3d14c5d2 102struct ceph_fs_client {
de57606c
SW
103 struct super_block *sb;
104
18f473b3
XL
105 struct list_head metric_wakeup;
106
3d14c5d2
YS
107 struct ceph_mount_options *mount_options;
108 struct ceph_client *client;
de57606c 109
aa5c7910 110 int mount_state;
81f148a9 111
0b98acd6 112 bool blocklisted;
131d7eb4 113
78beb0ff
LH
114 bool have_copy_from2;
115
81f148a9 116 u32 filp_gen;
719784ba 117 loff_t max_file_size;
85ccce43 118
3d14c5d2 119 struct ceph_mds_client *mdsc;
de57606c 120
e3ec8d68
YZ
121 atomic_long_t writeback_count;
122
1cf89a8d 123 struct workqueue_struct *inode_wq;
e3ec8d68 124 struct workqueue_struct *cap_wq;
de57606c 125
0743304d 126#ifdef CONFIG_DEBUG_FS
3d14c5d2 127 struct dentry *debugfs_dentry_lru, *debugfs_caps;
2baba250 128 struct dentry *debugfs_congestion_kb;
06edf046 129 struct dentry *debugfs_bdi;
3d14c5d2 130 struct dentry *debugfs_mdsc, *debugfs_mdsmap;
247b1f19 131 struct dentry *debugfs_status;
14ed9703 132 struct dentry *debugfs_mds_sessions;
cbed4ff7 133 struct dentry *debugfs_metrics_dir;
0743304d 134#endif
99ccbd22
MT
135
136#ifdef CONFIG_CEPH_FSCACHE
400e1286 137 struct fscache_volume *fscache;
99ccbd22 138#endif
de57606c
SW
139};
140
3d14c5d2 141
de57606c
SW
142/*
143 * File i/o capability. This tracks shared state with the metadata
144 * server that allows us to cache or writeback attributes or to read
145 * and write data. For any given inode, we should have one or more
146 * capabilities, one issued by each metadata server, and our
147 * cumulative access is the OR of all issued capabilities.
148 *
149 * Each cap is referenced by the inode's i_caps rbtree and by per-mds
150 * session capability lists.
151 */
152struct ceph_cap {
153 struct ceph_inode_info *ci;
154 struct rb_node ci_node; /* per-ci cap tree */
155 struct ceph_mds_session *session;
156 struct list_head session_caps; /* per-session caplist */
de57606c 157 u64 cap_id; /* unique cap id (mds provided) */
745a8e3b
YZ
158 union {
159 /* in-use caps */
160 struct {
161 int issued; /* latest, from the mds */
162 int implemented; /* implemented superset of
163 issued (for revocation) */
c74d79af
JL
164 int mds; /* mds index for this cap */
165 int mds_wanted; /* caps wanted from this mds */
745a8e3b
YZ
166 };
167 /* caps to release */
168 struct {
169 u64 cap_ino;
170 int queue_release;
171 };
172 };
685f9a5d
SW
173 u32 seq, issue_seq, mseq;
174 u32 cap_gen; /* active/stale cycle */
de57606c
SW
175 unsigned long last_used;
176 struct list_head caps_item;
177};
178
a0d93e32
YZ
179#define CHECK_CAPS_AUTHONLY 1 /* only check auth cap */
180#define CHECK_CAPS_FLUSH 2 /* flush any dirty caps */
181#define CHECK_CAPS_NOINVAL 4 /* don't invalidate pagecache */
de57606c 182
0e294387
YZ
183struct ceph_cap_flush {
184 u64 tid;
b2f9fa1f 185 int caps;
c8799fc4 186 bool wake; /* wake up flush waiters when finish ? */
b2f9fa1f 187 bool is_capsnap; /* true means capsnap */
0e294387
YZ
188 struct list_head g_list; // global
189 struct list_head i_list; // per inode
190};
191
de57606c
SW
192/*
193 * Snapped cap state that is pending flush to mds. When a snapshot occurs,
194 * we first complete any in-process sync writes and writeback any dirty
195 * data before flushing the snapped state (tracked here) back to the MDS.
196 */
197struct ceph_cap_snap {
805692d0 198 refcount_t nref;
0e294387 199 struct list_head ci_item;
de57606c 200
0e294387
YZ
201 struct ceph_cap_flush cap_flush;
202
203 u64 follows;
de57606c
SW
204 int issued, dirty;
205 struct ceph_snap_context *context;
206
5706b27d 207 umode_t mode;
05cb11c1
EB
208 kuid_t uid;
209 kgid_t gid;
de57606c 210
4a625be4 211 struct ceph_buffer *xattr_blob;
de57606c
SW
212 u64 xattr_version;
213
214 u64 size;
176c77c9 215 u64 change_attr;
ec62b894 216 struct timespec64 mtime, atime, ctime, btime;
de57606c 217 u64 time_warp_seq;
5f743e45
YZ
218 u64 truncate_size;
219 u32 truncate_seq;
de57606c
SW
220 int writing; /* a sync write is still in progress */
221 int dirty_pages; /* dirty pages awaiting writeback */
e20d258d 222 bool inline_data;
86056090 223 bool need_flush;
de57606c
SW
224};
225
226static inline void ceph_put_cap_snap(struct ceph_cap_snap *capsnap)
227{
805692d0 228 if (refcount_dec_and_test(&capsnap->nref)) {
4a625be4
SW
229 if (capsnap->xattr_blob)
230 ceph_buffer_put(capsnap->xattr_blob);
ab58a5a1 231 kmem_cache_free(ceph_cap_snap_cachep, capsnap);
4a625be4 232 }
de57606c
SW
233}
234
235/*
236 * The frag tree describes how a directory is fragmented, potentially across
237 * multiple metadata servers. It is also used to indicate points where
238 * metadata authority is delegated, and whether/where metadata is replicated.
239 *
240 * A _leaf_ frag will be present in the i_fragtree IFF there is
241 * delegation info. That is, if mds >= 0 || ndist > 0.
242 */
243#define CEPH_MAX_DIRFRAG_REP 4
244
245struct ceph_inode_frag {
246 struct rb_node node;
247
248 /* fragtree state */
249 u32 frag;
250 int split_by; /* i.e. 2^(split_by) children */
251
252 /* delegation and replication info */
253 int mds; /* -1 if same authority as parent */
254 int ndist; /* >0 if replicated */
255 int dist[CEPH_MAX_DIRFRAG_REP];
256};
257
258/*
259 * We cache inode xattrs as an encoded blob until they are first used,
260 * at which point we parse them into an rbtree.
261 */
262struct ceph_inode_xattr {
263 struct rb_node node;
264
265 const char *name;
266 int name_len;
267 const char *val;
268 int val_len;
269 int dirty;
270
271 int should_free_name;
272 int should_free_val;
273};
274
3d14c5d2
YS
275/*
276 * Ceph dentry state
277 */
278struct ceph_dentry_info {
37c4efc1 279 struct dentry *dentry;
3d14c5d2 280 struct ceph_mds_session *lease_session;
37c4efc1
YZ
281 struct list_head lease_list;
282 unsigned flags;
97aeb6bf
YZ
283 int lease_shared_gen;
284 u32 lease_gen;
3d14c5d2
YS
285 u32 lease_seq;
286 unsigned long lease_renew_after, lease_renew_from;
9b16f03c 287 unsigned long time;
3d14c5d2
YS
288 u64 offset;
289};
290
37c4efc1
YZ
291#define CEPH_DENTRY_REFERENCED 1
292#define CEPH_DENTRY_LEASE_LIST 2
293#define CEPH_DENTRY_SHRINK_LIST 4
f5e17aed 294#define CEPH_DENTRY_PRIMARY_LINK 8
37c4efc1 295
de57606c
SW
296struct ceph_inode_xattrs_info {
297 /*
298 * (still encoded) xattr blob. we avoid the overhead of parsing
299 * this until someone actually calls getxattr, etc.
300 *
301 * blob->vec.iov_len == 4 implies there are no xattrs; blob ==
302 * NULL means we don't know.
303 */
304 struct ceph_buffer *blob, *prealloc_blob;
305
306 struct rb_root index;
307 bool dirty;
308 int count;
309 int names_size;
310 int vals_size;
311 u64 version, index_version;
312};
313
314/*
315 * Ceph inode.
316 */
de57606c 317struct ceph_inode_info {
bc899ee1
DH
318 struct {
319 /* These must be contiguous */
320 struct inode vfs_inode;
321 struct netfs_i_context netfs_ctx; /* Netfslib context */
322 };
de57606c
SW
323 struct ceph_vino i_vino; /* ceph ino + snap */
324
be655596
SW
325 spinlock_t i_ceph_lock;
326
de57606c 327 u64 i_version;
31c542a1 328 u64 i_inline_version;
de57606c
SW
329 u32 i_time_warp_seq;
330
891f3f5a 331 unsigned long i_ceph_flags;
fdd4e158
YZ
332 atomic64_t i_release_count;
333 atomic64_t i_ordered_count;
334 atomic64_t i_complete_seq[2];
de57606c 335
6c0f3af7 336 struct ceph_dir_layout i_dir_layout;
de57606c 337 struct ceph_file_layout i_layout;
785892fe 338 struct ceph_file_layout i_cached_layout; // for async creates
de57606c
SW
339 char *i_symlink;
340
341 /* for dirs */
9bbeab41 342 struct timespec64 i_rctime;
e7f72952 343 u64 i_rbytes, i_rfiles, i_rsubdirs, i_rsnaps;
de57606c 344 u64 i_files, i_subdirs;
de57606c 345
fb18a575
LH
346 /* quotas */
347 u64 i_max_bytes, i_max_files;
348
08796873
YZ
349 s32 i_dir_pin;
350
de57606c 351 struct rb_root i_fragtree;
1b1bc16d 352 int i_fragtree_nsplits;
de57606c
SW
353 struct mutex i_fragtree_mutex;
354
355 struct ceph_inode_xattrs_info i_xattrs;
356
be655596 357 /* capabilities. protected _both_ by i_ceph_lock and cap->session's
de57606c
SW
358 * s_mutex. */
359 struct rb_root i_caps; /* cap list */
360 struct ceph_cap *i_auth_cap; /* authoritative cap, if any */
361 unsigned i_dirty_caps, i_flushing_caps; /* mask of dirtied fields */
1cf03a68
JL
362
363 /*
f1f565a2 364 * Link to the auth cap's session's s_cap_dirty list. s_cap_dirty
1cf03a68
JL
365 * is protected by the mdsc->cap_dirty_lock, but each individual item
366 * is also protected by the inode's i_ceph_lock. Walking s_cap_dirty
367 * requires the mdsc->cap_dirty_lock. List presence for an item can
368 * be tested under the i_ceph_lock. Changing anything requires both.
369 */
370 struct list_head i_dirty_item;
371
372 /*
829ad4db
JL
373 * Link to session's s_cap_flushing list. Protected in a similar
374 * fashion to i_dirty_item, but also by the s_mutex for changes. The
375 * s_cap_flushing list can be walked while holding either the s_mutex
376 * or msdc->cap_dirty_lock. List presence can also be checked while
377 * holding the i_ceph_lock for this inode.
1cf03a68
JL
378 */
379 struct list_head i_flushing_item;
380
de57606c
SW
381 /* we need to track cap writeback on a per-cap-bit basis, to allow
382 * overlapping, pipelined cap flushes to the mds. we can probably
383 * reduce the tid to 8 bits if we're concerned about inode size. */
f66fd9f0 384 struct ceph_cap_flush *i_prealloc_cap_flush;
e4500b5e 385 struct list_head i_cap_flush_list;
de57606c 386 wait_queue_head_t i_cap_wq; /* threads waiting on a capability */
de57606c
SW
387 unsigned long i_hold_caps_max; /* jiffies */
388 struct list_head i_cap_delay_list; /* for delayed cap release to mds */
de57606c
SW
389 struct ceph_cap_reservation i_cap_migration_resv;
390 struct list_head i_cap_snaps; /* snapped state pending flush to mds */
7d8cb26d
SW
391 struct ceph_snap_context *i_head_snapc; /* set if wr_buffer_head > 0 or
392 dirty|flushing caps */
de57606c
SW
393 unsigned i_snap_caps; /* cap bits for snapped files */
394
719a2514
YZ
395 unsigned long i_last_rd;
396 unsigned long i_last_wr;
774a6a11 397 int i_nr_by_mode[CEPH_FILE_MODE_BITS]; /* open file counts */
de57606c 398
b0d7c223 399 struct mutex i_truncate_mutex;
de57606c
SW
400 u32 i_truncate_seq; /* last truncate to smaller size */
401 u64 i_truncate_size; /* and the size we last truncated down to */
402 int i_truncate_pending; /* still need to call vmtruncate */
403
404 u64 i_max_size; /* max file size authorized by mds */
405 u64 i_reported_size; /* (max_)size reported to or requested of mds */
406 u64 i_wanted_max_size; /* offset we'd like to write too */
407 u64 i_requested_max_size; /* max_size we've requested */
408
409 /* held references to caps */
410 int i_pin_ref;
f85122af 411 int i_rd_ref, i_rdcache_ref, i_wr_ref, i_wb_ref, i_fx_ref;
de57606c 412 int i_wrbuffer_ref, i_wrbuffer_ref_head;
89aa5930 413 atomic_t i_filelock_ref;
97aeb6bf 414 atomic_t i_shared_gen; /* increment each time we get FILE_SHARED */
cd045cb4 415 u32 i_rdcache_gen; /* incremented each time we get FILE_CACHE. */
de57606c
SW
416 u32 i_rdcache_revoking; /* RDCACHE gen to async invalidate, if any */
417
de57606c 418 struct list_head i_unsafe_dirops; /* uncommitted mds dir ops */
68cd5b4b 419 struct list_head i_unsafe_iops; /* uncommitted mds inode ops */
de57606c
SW
420 spinlock_t i_unsafe_lock;
421
75c9627e
YZ
422 union {
423 struct ceph_snap_realm *i_snap_realm; /* snap realm (if caps) */
424 struct ceph_snapid_map *i_snapid_map; /* snapid -> dev_t */
425 };
de57606c
SW
426 struct list_head i_snap_realm_item;
427 struct list_head i_snap_flush_item;
245ce991 428 struct timespec64 i_btime;
193e7b37 429 struct timespec64 i_snap_btime;
de57606c 430
1cf89a8d
YZ
431 struct work_struct i_work;
432 unsigned long i_work_mask;
de57606c
SW
433};
434
721d5c13
JL
435static inline struct ceph_inode_info *
436ceph_inode(const struct inode *inode)
de57606c 437{
fbbccec9 438 return container_of(inode, struct ceph_inode_info, vfs_inode);
de57606c
SW
439}
440
721d5c13
JL
441static inline struct ceph_fs_client *
442ceph_inode_to_client(const struct inode *inode)
ad1fee96
YS
443{
444 return (struct ceph_fs_client *)inode->i_sb->s_fs_info;
445}
446
721d5c13
JL
447static inline struct ceph_fs_client *
448ceph_sb_to_client(const struct super_block *sb)
ad1fee96
YS
449{
450 return (struct ceph_fs_client *)sb->s_fs_info;
451}
452
2678da88
XL
453static inline struct ceph_mds_client *
454ceph_sb_to_mdsc(const struct super_block *sb)
455{
456 return (struct ceph_mds_client *)ceph_sb_to_client(sb)->mdsc;
457}
458
721d5c13
JL
459static inline struct ceph_vino
460ceph_vino(const struct inode *inode)
3d14c5d2
YS
461{
462 return ceph_inode(inode)->i_vino;
463}
464
ebce3eb2 465static inline u32 ceph_ino_to_ino32(u64 vino)
ad1fee96 466{
3310f754
AO
467 u32 ino = vino & 0xffffffff;
468 ino ^= vino >> 32;
ad1fee96 469 if (!ino)
a661fc56 470 ino = 2;
ad1fee96
YS
471 return ino;
472}
473
474/*
ebce3eb2
JL
475 * Inode numbers in cephfs are 64 bits, but inode->i_ino is 32-bits on
476 * some arches. We generally do not use this value inside the ceph driver, but
477 * we do want to set it to something, so that generic vfs code has an
478 * appropriate value for tracepoints and the like.
3d14c5d2 479 */
ebce3eb2 480static inline ino_t ceph_vino_to_ino_t(struct ceph_vino vino)
3d14c5d2 481{
ebce3eb2
JL
482 if (sizeof(ino_t) == sizeof(u32))
483 return ceph_ino_to_ino32(vino.ino);
3310f754 484 return (ino_t)vino.ino;
ad1fee96 485}
ad1fee96 486
3d14c5d2
YS
487/* for printf-style formatting */
488#define ceph_vinop(i) ceph_inode(i)->i_vino.ino, ceph_inode(i)->i_vino.snap
489
490static inline u64 ceph_ino(struct inode *inode)
491{
492 return ceph_inode(inode)->i_vino.ino;
493}
ebce3eb2 494
3d14c5d2
YS
495static inline u64 ceph_snap(struct inode *inode)
496{
497 return ceph_inode(inode)->i_vino.snap;
498}
499
ebce3eb2
JL
500/**
501 * ceph_present_ino - format an inode number for presentation to userland
502 * @sb: superblock where the inode lives
503 * @ino: inode number to (possibly) convert
504 *
505 * If the user mounted with the ino32 option, then the 64-bit value needs
506 * to be converted to something that can fit inside 32 bits. Note that
507 * internal kernel code never uses this value, so this is entirely for
508 * userland consumption.
509 */
510static inline u64 ceph_present_ino(struct super_block *sb, u64 ino)
511{
512 if (unlikely(ceph_test_mount_opt(ceph_sb_to_client(sb), INO32)))
513 return ceph_ino_to_ino32(ino);
514 return ino;
515}
516
517static inline u64 ceph_present_inode(struct inode *inode)
518{
519 return ceph_present_ino(inode->i_sb, ceph_ino(inode));
520}
521
3d14c5d2
YS
522static inline int ceph_ino_compare(struct inode *inode, void *data)
523{
524 struct ceph_vino *pvino = (struct ceph_vino *)data;
525 struct ceph_inode_info *ci = ceph_inode(inode);
526 return ci->i_vino.ino == pvino->ino &&
527 ci->i_vino.snap == pvino->snap;
528}
529
d4f6b31d
JL
530/*
531 * The MDS reserves a set of inodes for its own usage. These should never
532 * be accessible by clients, and so the MDS has no reason to ever hand these
533 * out. The range is CEPH_MDS_INO_MDSDIR_OFFSET..CEPH_INO_SYSTEM_BASE.
534 *
535 * These come from src/mds/mdstypes.h in the ceph sources.
536 */
0078ea3b
JL
537#define CEPH_MAX_MDS 0x100
538#define CEPH_NUM_STRAY 10
d4f6b31d 539#define CEPH_MDS_INO_MDSDIR_OFFSET (1 * CEPH_MAX_MDS)
0078ea3b 540#define CEPH_MDS_INO_LOG_OFFSET (2 * CEPH_MAX_MDS)
d4f6b31d
JL
541#define CEPH_INO_SYSTEM_BASE ((6*CEPH_MAX_MDS) + (CEPH_MAX_MDS * CEPH_NUM_STRAY))
542
543static inline bool ceph_vino_is_reserved(const struct ceph_vino vino)
544{
0078ea3b
JL
545 if (vino.ino >= CEPH_INO_SYSTEM_BASE ||
546 vino.ino < CEPH_MDS_INO_MDSDIR_OFFSET)
547 return false;
548
549 /* Don't warn on mdsdirs */
550 WARN_RATELIMIT(vino.ino >= CEPH_MDS_INO_LOG_OFFSET,
551 "Attempt to access reserved inode number 0x%llx",
552 vino.ino);
553 return true;
d4f6b31d 554}
ebce3eb2 555
3d14c5d2
YS
556static inline struct inode *ceph_find_inode(struct super_block *sb,
557 struct ceph_vino vino)
558{
d4f6b31d
JL
559 if (ceph_vino_is_reserved(vino))
560 return NULL;
561
ebce3eb2
JL
562 /*
563 * NB: The hashval will be run through the fs/inode.c hash function
564 * anyway, so there is no need to squash the inode number down to
565 * 32-bits first. Just use low-order bits on arches with 32-bit long.
566 */
567 return ilookup5(sb, (unsigned long)vino.ino, ceph_ino_compare, &vino);
3d14c5d2
YS
568}
569
570
571/*
572 * Ceph inode.
573 */
10183a69 574#define CEPH_I_DIR_ORDERED (1 << 0) /* dentries in dir are ordered */
10183a69 575#define CEPH_I_FLUSH (1 << 2) /* do not delay flush of dirty metadata */
daca8bda
JL
576#define CEPH_I_POOL_PERM (1 << 3) /* pool rd/wr bits are valid */
577#define CEPH_I_POOL_RD (1 << 4) /* can read from pool */
578#define CEPH_I_POOL_WR (1 << 5) /* can write to pool */
579#define CEPH_I_SEC_INITED (1 << 6) /* security initialized */
c0e385b1
YZ
580#define CEPH_I_KICK_FLUSH (1 << 7) /* kick flushing caps */
581#define CEPH_I_FLUSH_SNAPS (1 << 8) /* need flush snapss */
582#define CEPH_I_ERROR_WRITE (1 << 9) /* have seen write errors */
583#define CEPH_I_ERROR_FILELOCK (1 << 10) /* have seen file lock errors */
584#define CEPH_I_ODIRECT (1 << 11) /* inode in direct I/O mode */
585#define CEPH_ASYNC_CREATE_BIT (12) /* async create in flight for this */
891f3f5a 586#define CEPH_I_ASYNC_CREATE (1 << CEPH_ASYNC_CREATE_BIT)
5d6451b1 587#define CEPH_I_SHUTDOWN (1 << 13) /* inode is no longer usable */
26544c62 588
1cf89a8d
YZ
589/*
590 * Masks of ceph inode work.
591 */
a8810cdc
JL
592#define CEPH_I_WORK_WRITEBACK 0
593#define CEPH_I_WORK_INVALIDATE_PAGES 1
594#define CEPH_I_WORK_VMTRUNCATE 2
595#define CEPH_I_WORK_CHECK_CAPS 3
596#define CEPH_I_WORK_FLUSH_SNAPS 4
1cf89a8d 597
26544c62
JL
598/*
599 * We set the ERROR_WRITE bit when we start seeing write errors on an inode
600 * and then clear it when they start succeeding. Note that we do a lockless
601 * check first, and only take the lock if it looks like it needs to be changed.
602 * The write submission code just takes this as a hint, so we're not too
603 * worried if a few slip through in either direction.
604 */
605static inline void ceph_set_error_write(struct ceph_inode_info *ci)
606{
607 if (!(READ_ONCE(ci->i_ceph_flags) & CEPH_I_ERROR_WRITE)) {
608 spin_lock(&ci->i_ceph_lock);
609 ci->i_ceph_flags |= CEPH_I_ERROR_WRITE;
610 spin_unlock(&ci->i_ceph_lock);
611 }
612}
613
614static inline void ceph_clear_error_write(struct ceph_inode_info *ci)
615{
616 if (READ_ONCE(ci->i_ceph_flags) & CEPH_I_ERROR_WRITE) {
617 spin_lock(&ci->i_ceph_lock);
618 ci->i_ceph_flags &= ~CEPH_I_ERROR_WRITE;
619 spin_unlock(&ci->i_ceph_lock);
620 }
621}
3d14c5d2 622
2f276c51 623static inline void __ceph_dir_set_complete(struct ceph_inode_info *ci,
fdd4e158
YZ
624 long long release_count,
625 long long ordered_count)
de57606c 626{
74960773
AP
627 /*
628 * Makes sure operations that setup readdir cache (update page
629 * cache and i_size) are strongly ordered w.r.t. the following
630 * atomic64_set() operations.
631 */
632 smp_mb();
fdd4e158
YZ
633 atomic64_set(&ci->i_complete_seq[0], release_count);
634 atomic64_set(&ci->i_complete_seq[1], ordered_count);
de57606c
SW
635}
636
2f276c51 637static inline void __ceph_dir_clear_complete(struct ceph_inode_info *ci)
de57606c 638{
fdd4e158
YZ
639 atomic64_inc(&ci->i_release_count);
640}
641
642static inline void __ceph_dir_clear_ordered(struct ceph_inode_info *ci)
643{
644 atomic64_inc(&ci->i_ordered_count);
2f276c51 645}
de57606c 646
2f276c51
YZ
647static inline bool __ceph_dir_is_complete(struct ceph_inode_info *ci)
648{
fdd4e158
YZ
649 return atomic64_read(&ci->i_complete_seq[0]) ==
650 atomic64_read(&ci->i_release_count);
de57606c
SW
651}
652
70db4f36
YZ
653static inline bool __ceph_dir_is_complete_ordered(struct ceph_inode_info *ci)
654{
fdd4e158
YZ
655 return atomic64_read(&ci->i_complete_seq[0]) ==
656 atomic64_read(&ci->i_release_count) &&
657 atomic64_read(&ci->i_complete_seq[1]) ==
658 atomic64_read(&ci->i_ordered_count);
70db4f36
YZ
659}
660
2f276c51 661static inline void ceph_dir_clear_complete(struct inode *inode)
de57606c 662{
2f276c51
YZ
663 __ceph_dir_clear_complete(ceph_inode(inode));
664}
de57606c 665
70db4f36 666static inline void ceph_dir_clear_ordered(struct inode *inode)
2f276c51 667{
fdd4e158 668 __ceph_dir_clear_ordered(ceph_inode(inode));
de57606c
SW
669}
670
70db4f36
YZ
671static inline bool ceph_dir_is_complete_ordered(struct inode *inode)
672{
fdd4e158
YZ
673 bool ret = __ceph_dir_is_complete_ordered(ceph_inode(inode));
674 smp_rmb();
70db4f36
YZ
675 return ret;
676}
de57606c
SW
677
678/* find a specific frag @f */
679extern struct ceph_inode_frag *__ceph_find_frag(struct ceph_inode_info *ci,
680 u32 f);
681
682/*
683 * choose fragment for value @v. copy frag content to pfrag, if leaf
684 * exists
685 */
686extern u32 ceph_choose_frag(struct ceph_inode_info *ci, u32 v,
687 struct ceph_inode_frag *pfrag,
688 int *found);
689
1e9c2eb6 690static inline struct ceph_dentry_info *ceph_dentry(const struct dentry *dentry)
de57606c
SW
691{
692 return (struct ceph_dentry_info *)dentry->d_fsdata;
693}
694
de57606c
SW
695/*
696 * caps helpers
697 */
698static inline bool __ceph_is_any_real_caps(struct ceph_inode_info *ci)
699{
700 return !RB_EMPTY_ROOT(&ci->i_caps);
701}
702
703extern int __ceph_caps_issued(struct ceph_inode_info *ci, int *implemented);
704extern int __ceph_caps_issued_mask(struct ceph_inode_info *ci, int mask, int t);
1af16d54
XL
705extern int __ceph_caps_issued_mask_metric(struct ceph_inode_info *ci, int mask,
706 int t);
de57606c
SW
707extern int __ceph_caps_issued_other(struct ceph_inode_info *ci,
708 struct ceph_cap *cap);
709
710static inline int ceph_caps_issued(struct ceph_inode_info *ci)
711{
712 int issued;
be655596 713 spin_lock(&ci->i_ceph_lock);
de57606c 714 issued = __ceph_caps_issued(ci, NULL);
be655596 715 spin_unlock(&ci->i_ceph_lock);
de57606c
SW
716 return issued;
717}
718
1af16d54
XL
719static inline int ceph_caps_issued_mask_metric(struct ceph_inode_info *ci,
720 int mask, int touch)
de57606c
SW
721{
722 int r;
be655596 723 spin_lock(&ci->i_ceph_lock);
1af16d54 724 r = __ceph_caps_issued_mask_metric(ci, mask, touch);
be655596 725 spin_unlock(&ci->i_ceph_lock);
de57606c
SW
726 return r;
727}
728
729static inline int __ceph_caps_dirty(struct ceph_inode_info *ci)
730{
731 return ci->i_dirty_caps | ci->i_flushing_caps;
732}
f66fd9f0
YZ
733extern struct ceph_cap_flush *ceph_alloc_cap_flush(void);
734extern void ceph_free_cap_flush(struct ceph_cap_flush *cf);
735extern int __ceph_mark_dirty_caps(struct ceph_inode_info *ci, int mask,
736 struct ceph_cap_flush **pcf);
de57606c 737
9563f88c
YZ
738extern int __ceph_caps_revoking_other(struct ceph_inode_info *ci,
739 struct ceph_cap *ocap, int mask);
de57606c
SW
740extern int ceph_caps_revoking(struct ceph_inode_info *ci, int mask);
741extern int __ceph_caps_used(struct ceph_inode_info *ci);
742
719a2514
YZ
743static inline bool __ceph_is_file_opened(struct ceph_inode_info *ci)
744{
745 return ci->i_nr_by_mode[0];
746}
de57606c 747extern int __ceph_caps_file_wanted(struct ceph_inode_info *ci);
525d15e8 748extern int __ceph_caps_wanted(struct ceph_inode_info *ci);
de57606c
SW
749
750/* what the mds thinks we want */
c1944fed 751extern int __ceph_caps_mds_wanted(struct ceph_inode_info *ci, bool check);
de57606c 752
37151668
YS
753extern void ceph_caps_init(struct ceph_mds_client *mdsc);
754extern void ceph_caps_finalize(struct ceph_mds_client *mdsc);
fe33032d
YZ
755extern void ceph_adjust_caps_max_min(struct ceph_mds_client *mdsc,
756 struct ceph_mount_options *fsopt);
e30ee581 757extern int ceph_reserve_caps(struct ceph_mds_client *mdsc,
37151668 758 struct ceph_cap_reservation *ctx, int need);
7bf8f736 759extern void ceph_unreserve_caps(struct ceph_mds_client *mdsc,
37151668 760 struct ceph_cap_reservation *ctx);
3d14c5d2 761extern void ceph_reservation_status(struct ceph_fs_client *client,
de57606c 762 int *total, int *avail, int *used,
85ccce43 763 int *reserved, int *min);
de57606c 764
de57606c 765
de57606c
SW
766
767/*
768 * we keep buffered readdir results attached to file->private_data
769 */
4918b6d1 770#define CEPH_F_SYNC 1
9cfa1098 771#define CEPH_F_ATEND 2
4918b6d1 772
de57606c 773struct ceph_file_info {
252c6728
SW
774 short fmode; /* initialized on open */
775 short flags; /* CEPH_F_* */
de57606c 776
5d988308
YZ
777 spinlock_t rw_contexts_lock;
778 struct list_head rw_contexts;
f4b97866 779
81f148a9 780 u32 filp_gen;
ff5d913d 781 atomic_t num_locks;
bb48bd4d
CX
782};
783
784struct ceph_dir_file_info {
785 struct ceph_file_info file_info;
5d988308 786
de57606c
SW
787 /* readdir: position within the dir */
788 u32 frag;
789 struct ceph_mds_request *last_readdir;
de57606c
SW
790
791 /* readdir: position within a frag */
f0494206 792 unsigned next_offset; /* offset of next chunk (last_name's + 1) */
de57606c 793 char *last_name; /* last entry in previous chunk */
fdd4e158
YZ
794 long long dir_release_count;
795 long long dir_ordered_count;
796 int readdir_cache_idx;
de57606c
SW
797
798 /* used for -o dirstat read() on directory thing */
799 char *dir_info;
800 int dir_info_len;
801};
802
5d988308
YZ
803struct ceph_rw_context {
804 struct list_head list;
805 struct task_struct *thread;
806 int caps;
807};
808
809#define CEPH_DEFINE_RW_CONTEXT(_name, _caps) \
810 struct ceph_rw_context _name = { \
811 .thread = current, \
812 .caps = _caps, \
813 }
814
815static inline void ceph_add_rw_context(struct ceph_file_info *cf,
816 struct ceph_rw_context *ctx)
817{
818 spin_lock(&cf->rw_contexts_lock);
819 list_add(&ctx->list, &cf->rw_contexts);
820 spin_unlock(&cf->rw_contexts_lock);
821}
822
823static inline void ceph_del_rw_context(struct ceph_file_info *cf,
824 struct ceph_rw_context *ctx)
825{
826 spin_lock(&cf->rw_contexts_lock);
827 list_del(&ctx->list);
828 spin_unlock(&cf->rw_contexts_lock);
829}
830
831static inline struct ceph_rw_context*
832ceph_find_rw_context(struct ceph_file_info *cf)
833{
834 struct ceph_rw_context *ctx, *found = NULL;
835 spin_lock(&cf->rw_contexts_lock);
836 list_for_each_entry(ctx, &cf->rw_contexts, list) {
837 if (ctx->thread == current) {
838 found = ctx;
839 break;
840 }
841 }
842 spin_unlock(&cf->rw_contexts_lock);
843 return found;
844}
845
fdd4e158
YZ
846struct ceph_readdir_cache_control {
847 struct page *page;
848 struct dentry **dentries;
849 int index;
850};
de57606c 851
de57606c
SW
852/*
853 * A "snap realm" describes a subset of the file hierarchy sharing
854 * the same set of snapshots that apply to it. The realms themselves
855 * are organized into a hierarchy, such that children inherit (some of)
856 * the snapshots of their parents.
857 *
858 * All inodes within the realm that have capabilities are linked into a
859 * per-realm list.
860 */
861struct ceph_snap_realm {
862 u64 ino;
e3161f17 863 struct inode *inode;
de57606c 864 atomic_t nref;
a105f00c
SW
865 struct rb_node node;
866
de57606c
SW
867 u64 created, seq;
868 u64 parent_ino;
869 u64 parent_since; /* snapid when our current parent became so */
870
871 u64 *prior_parent_snaps; /* snaps inherited from any parents we */
aa711ee3 872 u32 num_prior_parent_snaps; /* had prior to parent_since */
de57606c 873 u64 *snaps; /* snaps specific to this realm */
aa711ee3 874 u32 num_snaps;
de57606c
SW
875
876 struct ceph_snap_realm *parent;
877 struct list_head children; /* list of child realms */
878 struct list_head child_item;
879
880 struct list_head empty_item; /* if i have ref==0 */
881
ae00d4f3
SW
882 struct list_head dirty_item; /* if realm needs new context */
883
74a31df4
XL
884 struct list_head rebuild_item; /* rebuild snap realms _downward_ in hierarchy */
885
de57606c
SW
886 /* the current set of snaps for this realm */
887 struct ceph_snap_context *cached_context;
888
889 struct list_head inodes_with_caps;
890 spinlock_t inodes_with_caps_lock;
891};
892
3d14c5d2 893static inline int default_congestion_kb(void)
de57606c 894{
3d14c5d2
YS
895 int congestion_kb;
896
897 /*
898 * Copied from NFS
899 *
900 * congestion size, scale with available memory.
901 *
902 * 64MB: 8192k
903 * 128MB: 11585k
904 * 256MB: 16384k
905 * 512MB: 23170k
906 * 1GB: 32768k
907 * 2GB: 46340k
908 * 4GB: 65536k
909 * 8GB: 92681k
910 * 16GB: 131072k
911 *
912 * This allows larger machines to have larger/more transfers.
913 * Limit the default to 256M
914 */
ca79b0c2 915 congestion_kb = (16*int_sqrt(totalram_pages())) << (PAGE_SHIFT-10);
3d14c5d2
YS
916 if (congestion_kb > 256*1024)
917 congestion_kb = 256*1024;
918
919 return congestion_kb;
de57606c
SW
920}
921
922
d468e729
YZ
923/* super.c */
924extern int ceph_force_reconnect(struct super_block *sb);
de57606c
SW
925/* snap.c */
926struct ceph_snap_realm *ceph_lookup_snap_realm(struct ceph_mds_client *mdsc,
927 u64 ino);
928extern void ceph_get_snap_realm(struct ceph_mds_client *mdsc,
929 struct ceph_snap_realm *realm);
930extern void ceph_put_snap_realm(struct ceph_mds_client *mdsc,
931 struct ceph_snap_realm *realm);
932extern int ceph_update_snap_trace(struct ceph_mds_client *m,
982d6011
YZ
933 void *p, void *e, bool deletion,
934 struct ceph_snap_realm **realm_ret);
0ba92e1c 935void ceph_change_snap_realm(struct inode *inode, struct ceph_snap_realm *realm);
de57606c 936extern void ceph_handle_snap(struct ceph_mds_client *mdsc,
2600d2dd 937 struct ceph_mds_session *session,
de57606c 938 struct ceph_msg *msg);
de57606c
SW
939extern int __ceph_finish_cap_snap(struct ceph_inode_info *ci,
940 struct ceph_cap_snap *capsnap);
5ed91587 941extern void ceph_cleanup_global_and_empty_realms(struct ceph_mds_client *mdsc);
de57606c 942
75c9627e
YZ
943extern struct ceph_snapid_map *ceph_get_snapid_map(struct ceph_mds_client *mdsc,
944 u64 snap);
945extern void ceph_put_snapid_map(struct ceph_mds_client* mdsc,
946 struct ceph_snapid_map *sm);
947extern void ceph_trim_snapid_map(struct ceph_mds_client *mdsc);
948extern void ceph_cleanup_snapid_map(struct ceph_mds_client *mdsc);
631ed4b0 949void ceph_umount_begin(struct super_block *sb);
75c9627e
YZ
950
951
de57606c
SW
952/*
953 * a cap_snap is "pending" if it is still awaiting an in-progress
954 * sync write (that may/may not still update size, mtime, etc.).
955 */
956static inline bool __ceph_have_pending_cap_snap(struct ceph_inode_info *ci)
957{
958 return !list_empty(&ci->i_cap_snaps) &&
86056090
YZ
959 list_last_entry(&ci->i_cap_snaps, struct ceph_cap_snap,
960 ci_item)->writing;
de57606c
SW
961}
962
de57606c 963/* inode.c */
966c7160
JL
964struct ceph_mds_reply_info_in;
965struct ceph_mds_reply_dirfrag;
966
de57606c
SW
967extern const struct inode_operations ceph_file_iops;
968
969extern struct inode *ceph_alloc_inode(struct super_block *sb);
87bc5b89 970extern void ceph_evict_inode(struct inode *inode);
cfa6d412 971extern void ceph_free_inode(struct inode *inode);
de57606c
SW
972
973extern struct inode *ceph_get_inode(struct super_block *sb,
974 struct ceph_vino vino);
975extern struct inode *ceph_get_snapdir(struct inode *parent);
976extern int ceph_fill_file_size(struct inode *inode, int issued,
977 u32 truncate_seq, u64 truncate_size, u64 size);
978extern void ceph_fill_file_time(struct inode *inode, int issued,
9bbeab41
AB
979 u64 time_warp_seq, struct timespec64 *ctime,
980 struct timespec64 *mtime,
981 struct timespec64 *atime);
966c7160
JL
982extern int ceph_fill_inode(struct inode *inode, struct page *locked_page,
983 struct ceph_mds_reply_info_in *iinfo,
984 struct ceph_mds_reply_dirfrag *dirinfo,
985 struct ceph_mds_session *session, int cap_fmode,
986 struct ceph_cap_reservation *caps_reservation);
de57606c 987extern int ceph_fill_trace(struct super_block *sb,
f5a03b08 988 struct ceph_mds_request *req);
de57606c
SW
989extern int ceph_readdir_prepopulate(struct ceph_mds_request *req,
990 struct ceph_mds_session *session);
991
992extern int ceph_inode_holds_cap(struct inode *inode, int mask);
993
efb0ca76 994extern bool ceph_inode_set_size(struct inode *inode, loff_t size);
b415bf4f 995extern void __ceph_do_pending_vmtruncate(struct inode *inode);
64f28c62 996
64f28c62
JL
997void ceph_queue_inode_work(struct inode *inode, int work_bit);
998
999static inline void ceph_queue_vmtruncate(struct inode *inode)
1000{
1001 ceph_queue_inode_work(inode, CEPH_I_WORK_VMTRUNCATE);
1002}
1003
1004static inline void ceph_queue_invalidate(struct inode *inode)
1005{
1006 ceph_queue_inode_work(inode, CEPH_I_WORK_INVALIDATE_PAGES);
1007}
1008
1009static inline void ceph_queue_writeback(struct inode *inode)
1010{
1011 ceph_queue_inode_work(inode, CEPH_I_WORK_WRITEBACK);
1012}
1013
a8810cdc
JL
1014static inline void ceph_queue_check_caps(struct inode *inode)
1015{
1016 ceph_queue_inode_work(inode, CEPH_I_WORK_CHECK_CAPS);
1017}
1018
1019static inline void ceph_queue_flush_snaps(struct inode *inode)
1020{
1021 ceph_queue_inode_work(inode, CEPH_I_WORK_FLUSH_SNAPS);
1022}
1023
01deead0
YZ
1024extern int __ceph_do_getattr(struct inode *inode, struct page *locked_page,
1025 int mask, bool force);
1026static inline int ceph_do_getattr(struct inode *inode, int mask, bool force)
1027{
1028 return __ceph_do_getattr(inode, NULL, mask, force);
1029}
549c7297
CB
1030extern int ceph_permission(struct user_namespace *mnt_userns,
1031 struct inode *inode, int mask);
a26fecca 1032extern int __ceph_setattr(struct inode *inode, struct iattr *attr);
549c7297
CB
1033extern int ceph_setattr(struct user_namespace *mnt_userns,
1034 struct dentry *dentry, struct iattr *attr);
1035extern int ceph_getattr(struct user_namespace *mnt_userns,
1036 const struct path *path, struct kstat *stat,
a528d35e 1037 u32 request_mask, unsigned int flags);
5d6451b1
JL
1038void ceph_inode_shutdown(struct inode *inode);
1039
1040static inline bool ceph_inode_is_shutdown(struct inode *inode)
1041{
1042 unsigned long flags = READ_ONCE(ceph_inode(inode)->i_ceph_flags);
1043 struct ceph_fs_client *fsc = ceph_inode_to_client(inode);
1044 int state = READ_ONCE(fsc->mount_state);
1045
1046 return (flags & CEPH_I_SHUTDOWN) || state >= CEPH_MOUNT_SHUTDOWN;
1047}
de57606c
SW
1048
1049/* xattr.c */
a26fecca 1050int __ceph_setxattr(struct inode *, const char *, const void *, size_t, int);
6ddf5f16 1051int ceph_do_getvxattr(struct inode *inode, const char *name, void *value, size_t size);
7221fe4c 1052ssize_t __ceph_getxattr(struct inode *, const char *, void *, size_t);
de57606c 1053extern ssize_t ceph_listxattr(struct dentry *, char *, size_t);
12fe3dda 1054extern struct ceph_buffer *__ceph_build_xattrs_blob(struct ceph_inode_info *ci);
de57606c 1055extern void __ceph_destroy_xattrs(struct ceph_inode_info *ci);
b1ee94aa 1056extern const struct xattr_handler *ceph_xattr_handlers[];
de57606c 1057
5c31e92d
YZ
1058struct ceph_acl_sec_ctx {
1059#ifdef CONFIG_CEPH_FS_POSIX_ACL
1060 void *default_acl;
1061 void *acl;
ac6713cc
YZ
1062#endif
1063#ifdef CONFIG_CEPH_FS_SECURITY_LABEL
1064 void *sec_ctx;
1065 u32 sec_ctxlen;
5c31e92d
YZ
1066#endif
1067 struct ceph_pagelist *pagelist;
1068};
1069
315f2408
YZ
1070#ifdef CONFIG_SECURITY
1071extern bool ceph_security_xattr_deadlock(struct inode *in);
1072extern bool ceph_security_xattr_wanted(struct inode *in);
1073#else
1074static inline bool ceph_security_xattr_deadlock(struct inode *in)
1075{
1076 return false;
1077}
1078static inline bool ceph_security_xattr_wanted(struct inode *in)
1079{
1080 return false;
1081}
1082#endif
1083
ac6713cc
YZ
1084#ifdef CONFIG_CEPH_FS_SECURITY_LABEL
1085extern int ceph_security_init_secctx(struct dentry *dentry, umode_t mode,
1086 struct ceph_acl_sec_ctx *ctx);
668959a5
JL
1087static inline void ceph_security_invalidate_secctx(struct inode *inode)
1088{
1089 security_inode_invalidate_secctx(inode);
1090}
ac6713cc
YZ
1091#else
1092static inline int ceph_security_init_secctx(struct dentry *dentry, umode_t mode,
1093 struct ceph_acl_sec_ctx *ctx)
1094{
1095 return 0;
1096}
1097static inline void ceph_security_invalidate_secctx(struct inode *inode)
1098{
1099}
1100#endif
1101
5c31e92d 1102void ceph_release_acl_sec_ctx(struct ceph_acl_sec_ctx *as_ctx);
7221fe4c 1103
5c31e92d 1104/* acl.c */
7221fe4c
GZ
1105#ifdef CONFIG_CEPH_FS_POSIX_ACL
1106
0cad6246 1107struct posix_acl *ceph_get_acl(struct inode *, int, bool);
549c7297
CB
1108int ceph_set_acl(struct user_namespace *mnt_userns,
1109 struct inode *inode, struct posix_acl *acl, int type);
b1ee94aa 1110int ceph_pre_init_acls(struct inode *dir, umode_t *mode,
5c31e92d
YZ
1111 struct ceph_acl_sec_ctx *as_ctx);
1112void ceph_init_inode_acls(struct inode *inode,
1113 struct ceph_acl_sec_ctx *as_ctx);
c969d9bf
GZ
1114
1115static inline void ceph_forget_all_cached_acls(struct inode *inode)
1116{
1117 forget_all_cached_acls(inode);
1118}
7221fe4c
GZ
1119
1120#else
1121
1122#define ceph_get_acl NULL
72466d0b 1123#define ceph_set_acl NULL
7221fe4c 1124
b1ee94aa 1125static inline int ceph_pre_init_acls(struct inode *dir, umode_t *mode,
5c31e92d 1126 struct ceph_acl_sec_ctx *as_ctx)
7221fe4c
GZ
1127{
1128 return 0;
1129}
b1ee94aa 1130static inline void ceph_init_inode_acls(struct inode *inode,
5c31e92d 1131 struct ceph_acl_sec_ctx *as_ctx)
b1ee94aa
YZ
1132{
1133}
7221fe4c
GZ
1134static inline int ceph_acl_chmod(struct dentry *dentry, struct inode *inode)
1135{
1136 return 0;
1137}
1138
1139static inline void ceph_forget_all_cached_acls(struct inode *inode)
1140{
1141}
1142
1143#endif
1144
de57606c
SW
1145/* caps.c */
1146extern const char *ceph_cap_string(int c);
1147extern void ceph_handle_caps(struct ceph_mds_session *session,
1148 struct ceph_msg *msg);
d9df2783
YZ
1149extern struct ceph_cap *ceph_get_cap(struct ceph_mds_client *mdsc,
1150 struct ceph_cap_reservation *ctx);
1151extern void ceph_add_cap(struct inode *inode,
1152 struct ceph_mds_session *session, u64 cap_id,
135e671e 1153 unsigned issued, unsigned wanted,
d9df2783
YZ
1154 unsigned cap, unsigned seq, u64 realmino, int flags,
1155 struct ceph_cap **new_cap);
a096b09a 1156extern void __ceph_remove_cap(struct ceph_cap *cap, bool queue_release);
a76d0a9c 1157extern void ceph_remove_cap(struct ceph_cap *cap, bool queue_release);
d6e47819 1158extern void __ceph_remove_caps(struct ceph_inode_info *ci);
37151668
YS
1159extern void ceph_put_cap(struct ceph_mds_client *mdsc,
1160 struct ceph_cap *cap);
9215aeea 1161extern int ceph_is_any_caps(struct inode *inode);
de57606c 1162
f1a3d572 1163extern int ceph_write_inode(struct inode *inode, struct writeback_control *wbc);
02c24a82
JB
1164extern int ceph_fsync(struct file *file, loff_t start, loff_t end,
1165 int datasync);
e548e9b9
YZ
1166extern void ceph_early_kick_flushing_caps(struct ceph_mds_client *mdsc,
1167 struct ceph_mds_session *session);
de57606c
SW
1168extern void ceph_kick_flushing_caps(struct ceph_mds_client *mdsc,
1169 struct ceph_mds_session *session);
e8a4d267
JL
1170void ceph_kick_flushing_inode_caps(struct ceph_mds_session *session,
1171 struct ceph_inode_info *ci);
2bc50259
GF
1172extern struct ceph_cap *ceph_get_cap_for_mds(struct ceph_inode_info *ci,
1173 int mds);
40dcf75e
JL
1174extern void ceph_take_cap_refs(struct ceph_inode_info *ci, int caps,
1175 bool snap_rwsem_locked);
de57606c
SW
1176extern void ceph_get_cap_refs(struct ceph_inode_info *ci, int caps);
1177extern void ceph_put_cap_refs(struct ceph_inode_info *ci, int had);
a8810cdc 1178extern void ceph_put_cap_refs_async(struct ceph_inode_info *ci, int had);
e64f44a8
XL
1179extern void ceph_put_cap_refs_no_check_caps(struct ceph_inode_info *ci,
1180 int had);
de57606c
SW
1181extern void ceph_put_wrbuffer_cap_refs(struct ceph_inode_info *ci, int nr,
1182 struct ceph_snap_context *snapc);
a6d37ccd
XL
1183extern void __ceph_remove_capsnap(struct inode *inode,
1184 struct ceph_cap_snap *capsnap,
1185 bool *wake_ci, bool *wake_mdsc);
1186extern void ceph_remove_capsnap(struct inode *inode,
1187 struct ceph_cap_snap *capsnap,
1188 bool *wake_ci, bool *wake_mdsc);
ed9b430c
YZ
1189extern void ceph_flush_snaps(struct ceph_inode_info *ci,
1190 struct ceph_mds_session **psession);
efb0ca76 1191extern bool __ceph_should_report_size(struct ceph_inode_info *ci);
de57606c
SW
1192extern void ceph_check_caps(struct ceph_inode_info *ci, int flags,
1193 struct ceph_mds_session *session);
bf2ba432 1194extern unsigned long ceph_check_delayed_caps(struct ceph_mds_client *mdsc);
afcdaea3 1195extern void ceph_flush_dirty_caps(struct ceph_mds_client *mdsc);
6ef0bc6d 1196extern int ceph_drop_caps_for_unlink(struct inode *inode);
de57606c
SW
1197extern int ceph_encode_inode_release(void **p, struct inode *inode,
1198 int mds, int drop, int unless, int force);
1199extern int ceph_encode_dentry_release(void **p, struct dentry *dn,
ca6c8ae0 1200 struct inode *dir,
de57606c
SW
1201 int mds, int drop, int unless);
1202
5e3ded1b 1203extern int ceph_get_caps(struct file *filp, int need, int want,
e72968e1 1204 loff_t endoff, int *got);
5e3ded1b 1205extern int ceph_try_get_caps(struct inode *inode,
2ee9dd95 1206 int need, int want, bool nonblock, int *got);
de57606c
SW
1207
1208/* for counting open files by mode */
719a2514
YZ
1209extern void ceph_get_fmode(struct ceph_inode_info *ci, int mode, int count);
1210extern void ceph_put_fmode(struct ceph_inode_info *ci, int mode, int count);
1211extern void __ceph_touch_fmode(struct ceph_inode_info *ci,
1212 struct ceph_mds_client *mdsc, int fmode);
de57606c
SW
1213
1214/* addr.c */
1215extern const struct address_space_operations ceph_aops;
bc899ee1 1216extern const struct netfs_request_ops ceph_netfs_ops;
de57606c 1217extern int ceph_mmap(struct file *file, struct vm_area_struct *vma);
083db6fd 1218extern int ceph_uninline_data(struct file *file);
5e3ded1b 1219extern int ceph_pool_perm_check(struct inode *inode, int need);
10183a69 1220extern void ceph_pool_perm_destroy(struct ceph_mds_client* mdsc);
36e6da98 1221int ceph_purge_inode_cap(struct inode *inode, struct ceph_cap *cap, bool *invalidate);
de57606c
SW
1222
1223/* file.c */
1224extern const struct file_operations ceph_file_fops;
9e0eb85d 1225
719a2514 1226extern int ceph_renew_caps(struct inode *inode, int fmode);
de57606c 1227extern int ceph_open(struct inode *inode, struct file *file);
5ef50c3b 1228extern int ceph_atomic_open(struct inode *dir, struct dentry *dentry,
44907d79 1229 struct file *file, unsigned flags, umode_t mode);
de57606c 1230extern int ceph_release(struct inode *inode, struct file *filp);
31c542a1
YZ
1231extern void ceph_fill_inline_data(struct inode *inode, struct page *locked_page,
1232 char *data, size_t len);
55f2a045 1233
de57606c
SW
1234/* dir.c */
1235extern const struct file_operations ceph_dir_fops;
38c48b5f 1236extern const struct file_operations ceph_snapdir_fops;
de57606c 1237extern const struct inode_operations ceph_dir_iops;
38c48b5f 1238extern const struct inode_operations ceph_snapdir_iops;
18fc8abd 1239extern const struct dentry_operations ceph_dentry_ops;
de57606c 1240
f3c4ebe6 1241extern loff_t ceph_make_fpos(unsigned high, unsigned off, bool hash_order);
de57606c 1242extern int ceph_handle_notrace_create(struct inode *dir, struct dentry *dentry);
aa60cfc3 1243extern struct dentry *ceph_handle_snapdir(struct ceph_mds_request *req,
7a971e2c 1244 struct dentry *dentry);
de57606c
SW
1245extern struct dentry *ceph_finish_lookup(struct ceph_mds_request *req,
1246 struct dentry *dentry, int err);
1247
37c4efc1
YZ
1248extern void __ceph_dentry_lease_touch(struct ceph_dentry_info *di);
1249extern void __ceph_dentry_dir_lease_touch(struct ceph_dentry_info *di);
81a6cf2d 1250extern void ceph_invalidate_dentry_lease(struct dentry *dentry);
37c4efc1 1251extern int ceph_trim_dentries(struct ceph_mds_client *mdsc);
e5f86dc3 1252extern unsigned ceph_dentry_hash(struct inode *dir, struct dentry *dn);
fdd4e158 1253extern void ceph_readdir_cache_release(struct ceph_readdir_cache_control *ctl);
de57606c 1254
de57606c
SW
1255/* ioctl.c */
1256extern long ceph_ioctl(struct file *file, unsigned int cmd, unsigned long arg);
1257
1258/* export.c */
1259extern const struct export_operations ceph_export_ops;
3886274a 1260struct inode *ceph_lookup_inode(struct super_block *sb, u64 ino);
de57606c 1261
40819f6f 1262/* locks.c */
eb13e832 1263extern __init void ceph_flock_init(void);
40819f6f
GF
1264extern int ceph_lock(struct file *file, int cmd, struct file_lock *fl);
1265extern int ceph_flock(struct file *file, int cmd, struct file_lock *fl);
1266extern void ceph_count_locks(struct inode *inode, int *p_num, int *f_num);
39be95e9
JS
1267extern int ceph_encode_locks_to_buffer(struct inode *inode,
1268 struct ceph_filelock *flocks,
1269 int num_fcntl_locks,
1270 int num_flock_locks);
1271extern int ceph_locks_to_pagelist(struct ceph_filelock *flocks,
1272 struct ceph_pagelist *pagelist,
1273 int num_fcntl_locks, int num_flock_locks);
40819f6f 1274
3d14c5d2 1275/* debugfs.c */
1a829ff2 1276extern void ceph_fs_debugfs_init(struct ceph_fs_client *client);
3d14c5d2
YS
1277extern void ceph_fs_debugfs_cleanup(struct ceph_fs_client *client);
1278
fb18a575 1279/* quota.c */
d557c48d
LH
1280static inline bool __ceph_has_any_quota(struct ceph_inode_info *ci)
1281{
1282 return ci->i_max_files || ci->i_max_bytes;
1283}
1284
1285extern void ceph_adjust_quota_realms_count(struct inode *inode, bool inc);
1286
1287static inline void __ceph_update_quota(struct ceph_inode_info *ci,
1288 u64 max_bytes, u64 max_files)
1289{
1290 bool had_quota, has_quota;
1291 had_quota = __ceph_has_any_quota(ci);
1292 ci->i_max_bytes = max_bytes;
1293 ci->i_max_files = max_files;
1294 has_quota = __ceph_has_any_quota(ci);
1295
1296 if (had_quota != has_quota)
1297 ceph_adjust_quota_realms_count(&ci->vfs_inode, has_quota);
1298}
1299
fb18a575
LH
1300extern void ceph_handle_quota(struct ceph_mds_client *mdsc,
1301 struct ceph_mds_session *session,
1302 struct ceph_msg *msg);
b7a29217 1303extern bool ceph_quota_is_max_files_exceeded(struct inode *inode);
6646ea1c 1304extern bool ceph_quota_is_same_realm(struct inode *old, struct inode *new);
2b83845f
LH
1305extern bool ceph_quota_is_max_bytes_exceeded(struct inode *inode,
1306 loff_t newlen);
1ab302a0
LH
1307extern bool ceph_quota_is_max_bytes_approaching(struct inode *inode,
1308 loff_t newlen);
9122eed5
LH
1309extern bool ceph_quota_update_statfs(struct ceph_fs_client *fsc,
1310 struct kstatfs *buf);
0c44a8e0 1311extern void ceph_cleanup_quotarealms_inodes(struct ceph_mds_client *mdsc);
fb18a575 1312
de57606c 1313#endif /* _FS_CEPH_SUPER_H */