blob: 133dbd9338e7304e40cda2a86ffca10a9905d3a9 [file] [log] [blame]
Greg Kroah-Hartmanb2441312017-11-01 15:07:57 +01001// SPDX-License-Identifier: GPL-2.0
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -07002#include <linux/ceph/ceph_debug.h>
Sage Weil2817b002009-10-06 11:31:08 -07003
4#include <linux/spinlock.h>
Sage Weil2817b002009-10-06 11:31:08 -07005#include <linux/namei.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +09006#include <linux/slab.h>
Sage Weil2817b002009-10-06 11:31:08 -07007#include <linux/sched.h>
Andreas Gruenbacher2cdeb1e2016-04-14 00:30:17 +02008#include <linux/xattr.h>
Sage Weil2817b002009-10-06 11:31:08 -07009
10#include "super.h"
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -070011#include "mds_client.h"
Sage Weil2817b002009-10-06 11:31:08 -070012
13/*
14 * Directory operations: readdir, lookup, create, link, unlink,
15 * rename, etc.
16 */
17
18/*
19 * Ceph MDS operations are specified in terms of a base ino and
20 * relative path. Thus, the client can specify an operation on a
21 * specific inode (e.g., a getattr due to fstat(2)), or as a path
22 * relative to, say, the root directory.
23 *
24 * Normally, we limit ourselves to strict inode ops (no path component)
25 * or dentry operations (a single path component relative to an ino). The
26 * exception to this is open_root_dentry(), which will open the mount
27 * point by name.
28 */
29
Sage Weil52dfb8a2010-08-03 10:25:30 -070030const struct dentry_operations ceph_dentry_ops;
Sage Weil2817b002009-10-06 11:31:08 -070031
Yan, Zheng37c4efc2019-01-31 16:55:51 +080032static bool __dentry_lease_is_valid(struct ceph_dentry_info *di);
33static int __dir_lease_try_check(const struct dentry *dentry);
34
Sage Weil2817b002009-10-06 11:31:08 -070035/*
36 * Initialize ceph dentry state.
37 */
Al Viroad5cb122016-10-28 22:05:13 -040038static int ceph_d_init(struct dentry *dentry)
Sage Weil2817b002009-10-06 11:31:08 -070039{
40 struct ceph_dentry_info *di;
Xiubo Li2678da82020-09-03 09:01:39 -040041 struct ceph_mds_client *mdsc = ceph_sb_to_mdsc(dentry->d_sb);
Sage Weil2817b002009-10-06 11:31:08 -070042
Geliang Tang99ec2692016-03-13 15:26:29 +080043 di = kmem_cache_zalloc(ceph_dentry_cachep, GFP_KERNEL);
Sage Weil2817b002009-10-06 11:31:08 -070044 if (!di)
45 return -ENOMEM; /* oh well */
46
Sage Weil2817b002009-10-06 11:31:08 -070047 di->dentry = dentry;
48 di->lease_session = NULL;
Miklos Szeredi9b16f03c2016-06-22 16:35:04 +020049 di->time = jiffies;
Sage Weil48d0cbd2011-07-26 11:30:15 -070050 dentry->d_fsdata = di;
Yan, Zheng37c4efc2019-01-31 16:55:51 +080051 INIT_LIST_HEAD(&di->lease_list);
Xiubo Lif9009ef2020-03-19 23:44:59 -040052
53 atomic64_inc(&mdsc->metric.total_dentries);
54
Sage Weil2817b002009-10-06 11:31:08 -070055 return 0;
56}
57
Sage Weil2817b002009-10-06 11:31:08 -070058/*
Yan, Zhengf3c4ebe2016-04-29 11:27:30 +080059 * for f_pos for readdir:
60 * - hash order:
61 * (0xff << 52) | ((24 bits hash) << 28) |
62 * (the nth entry has hash collision);
63 * - frag+name order;
64 * ((frag value) << 28) | (the nth entry in frag);
Sage Weil2817b002009-10-06 11:31:08 -070065 */
Yan, Zhengf3c4ebe2016-04-29 11:27:30 +080066#define OFFSET_BITS 28
67#define OFFSET_MASK ((1 << OFFSET_BITS) - 1)
68#define HASH_ORDER (0xffull << (OFFSET_BITS + 24))
69loff_t ceph_make_fpos(unsigned high, unsigned off, bool hash_order)
70{
71 loff_t fpos = ((loff_t)high << 28) | (loff_t)off;
72 if (hash_order)
73 fpos |= HASH_ORDER;
74 return fpos;
75}
76
77static bool is_hash_order(loff_t p)
78{
79 return (p & HASH_ORDER) == HASH_ORDER;
80}
81
Sage Weil2817b002009-10-06 11:31:08 -070082static unsigned fpos_frag(loff_t p)
83{
Yan, Zhengf3c4ebe2016-04-29 11:27:30 +080084 return p >> OFFSET_BITS;
Sage Weil2817b002009-10-06 11:31:08 -070085}
Yan, Zhengf3c4ebe2016-04-29 11:27:30 +080086
87static unsigned fpos_hash(loff_t p)
88{
89 return ceph_frag_value(fpos_frag(p));
90}
91
Sage Weil2817b002009-10-06 11:31:08 -070092static unsigned fpos_off(loff_t p)
93{
Yan, Zhengf3c4ebe2016-04-29 11:27:30 +080094 return p & OFFSET_MASK;
Sage Weil2817b002009-10-06 11:31:08 -070095}
96
Yan, Zheng4d5f5df2014-02-13 19:40:26 +080097static int fpos_cmp(loff_t l, loff_t r)
98{
99 int v = ceph_frag_compare(fpos_frag(l), fpos_frag(r));
100 if (v)
101 return v;
102 return (int)(fpos_off(l) - fpos_off(r));
103}
104
Sage Weil2817b002009-10-06 11:31:08 -0700105/*
Yan, Zhengfdd4e152015-06-16 20:48:56 +0800106 * make note of the last dentry we read, so we can
107 * continue at the same lexicographical point,
108 * regardless of what dir changes take place on the
109 * server.
110 */
Chengguang Xubb48bd42018-03-13 10:42:44 +0800111static int note_last_dentry(struct ceph_dir_file_info *dfi, const char *name,
Yan, Zhengfdd4e152015-06-16 20:48:56 +0800112 int len, unsigned next_offset)
113{
114 char *buf = kmalloc(len+1, GFP_KERNEL);
115 if (!buf)
116 return -ENOMEM;
Chengguang Xubb48bd42018-03-13 10:42:44 +0800117 kfree(dfi->last_name);
118 dfi->last_name = buf;
119 memcpy(dfi->last_name, name, len);
120 dfi->last_name[len] = 0;
121 dfi->next_offset = next_offset;
122 dout("note_last_dentry '%s'\n", dfi->last_name);
Yan, Zhengfdd4e152015-06-16 20:48:56 +0800123 return 0;
124}
125
Yan, Zhengc530cd22016-04-28 17:43:35 +0800126
127static struct dentry *
128__dcache_find_get_entry(struct dentry *parent, u64 idx,
129 struct ceph_readdir_cache_control *cache_ctl)
130{
131 struct inode *dir = d_inode(parent);
132 struct dentry *dentry;
133 unsigned idx_mask = (PAGE_SIZE / sizeof(struct dentry *)) - 1;
134 loff_t ptr_pos = idx * sizeof(struct dentry *);
135 pgoff_t ptr_pgoff = ptr_pos >> PAGE_SHIFT;
136
137 if (ptr_pos >= i_size_read(dir))
138 return NULL;
139
140 if (!cache_ctl->page || ptr_pgoff != page_index(cache_ctl->page)) {
141 ceph_readdir_cache_release(cache_ctl);
142 cache_ctl->page = find_lock_page(&dir->i_data, ptr_pgoff);
143 if (!cache_ctl->page) {
144 dout(" page %lu not found\n", ptr_pgoff);
145 return ERR_PTR(-EAGAIN);
146 }
147 /* reading/filling the cache are serialized by
148 i_mutex, no need to use page lock */
149 unlock_page(cache_ctl->page);
150 cache_ctl->dentries = kmap(cache_ctl->page);
151 }
152
153 cache_ctl->index = idx & idx_mask;
154
155 rcu_read_lock();
156 spin_lock(&parent->d_lock);
157 /* check i_size again here, because empty directory can be
158 * marked as complete while not holding the i_mutex. */
159 if (ceph_dir_is_complete_ordered(dir) && ptr_pos < i_size_read(dir))
160 dentry = cache_ctl->dentries[cache_ctl->index];
161 else
162 dentry = NULL;
163 spin_unlock(&parent->d_lock);
164 if (dentry && !lockref_get_not_dead(&dentry->d_lockref))
165 dentry = NULL;
166 rcu_read_unlock();
167 return dentry ? : ERR_PTR(-EAGAIN);
168}
169
Yan, Zhengfdd4e152015-06-16 20:48:56 +0800170/*
Sage Weil2817b002009-10-06 11:31:08 -0700171 * When possible, we try to satisfy a readdir by peeking at the
172 * dcache. We make this work by carefully ordering dentries on
Al Viro946e51f2014-10-26 19:19:16 -0400173 * d_child when we initially get results back from the MDS, and
Sage Weil2817b002009-10-06 11:31:08 -0700174 * falling back to a "normal" sync readdir if any dentries in the dir
175 * are dropped.
176 *
Yan, Zheng2f276c52013-03-13 19:44:32 +0800177 * Complete dir indicates that we have all dentries in the dir. It is
Sage Weil2817b002009-10-06 11:31:08 -0700178 * defined IFF we hold CEPH_CAP_FILE_SHARED (which will be revoked by
179 * the MDS if/when the directory is modified).
180 */
Yan, Zhenga30be7c2014-04-06 14:10:04 +0800181static int __dcache_readdir(struct file *file, struct dir_context *ctx,
Yan, Zheng97aeb6b2017-11-27 10:47:46 +0800182 int shared_gen)
Sage Weil2817b002009-10-06 11:31:08 -0700183{
Chengguang Xubb48bd42018-03-13 10:42:44 +0800184 struct ceph_dir_file_info *dfi = file->private_data;
Al Virob5830432014-10-31 01:22:04 -0400185 struct dentry *parent = file->f_path.dentry;
David Howells2b0143b2015-03-17 22:25:59 +0000186 struct inode *dir = d_inode(parent);
Yan, Zhengfdd4e152015-06-16 20:48:56 +0800187 struct dentry *dentry, *last = NULL;
Sage Weil2817b002009-10-06 11:31:08 -0700188 struct ceph_dentry_info *di;
Yan, Zhengfdd4e152015-06-16 20:48:56 +0800189 struct ceph_readdir_cache_control cache_ctl = {};
Yan, Zhengc530cd22016-04-28 17:43:35 +0800190 u64 idx = 0;
191 int err = 0;
Sage Weil2817b002009-10-06 11:31:08 -0700192
Yan, Zheng97aeb6b2017-11-27 10:47:46 +0800193 dout("__dcache_readdir %p v%u at %llx\n", dir, (unsigned)shared_gen, ctx->pos);
Sage Weil2817b002009-10-06 11:31:08 -0700194
Yan, Zhengc530cd22016-04-28 17:43:35 +0800195 /* search start position */
196 if (ctx->pos > 2) {
197 u64 count = div_u64(i_size_read(dir), sizeof(struct dentry *));
198 while (count > 0) {
199 u64 step = count >> 1;
200 dentry = __dcache_find_get_entry(parent, idx + step,
201 &cache_ctl);
202 if (!dentry) {
203 /* use linar search */
204 idx = 0;
205 break;
206 }
207 if (IS_ERR(dentry)) {
208 err = PTR_ERR(dentry);
209 goto out;
210 }
211 di = ceph_dentry(dentry);
212 spin_lock(&dentry->d_lock);
213 if (fpos_cmp(di->offset, ctx->pos) < 0) {
214 idx += step + 1;
215 count -= step + 1;
216 } else {
217 count = step;
218 }
219 spin_unlock(&dentry->d_lock);
220 dput(dentry);
221 }
222
223 dout("__dcache_readdir %p cache idx %llu\n", dir, idx);
Sage Weil2817b002009-10-06 11:31:08 -0700224 }
225
Yan, Zhengfdd4e152015-06-16 20:48:56 +0800226
Yan, Zhengc530cd22016-04-28 17:43:35 +0800227 for (;;) {
228 bool emit_dentry = false;
229 dentry = __dcache_find_get_entry(parent, idx++, &cache_ctl);
230 if (!dentry) {
Chengguang Xubb48bd42018-03-13 10:42:44 +0800231 dfi->file_info.flags |= CEPH_F_ATEND;
Yan, Zhengfdd4e152015-06-16 20:48:56 +0800232 err = 0;
233 break;
Sage Weil2817b002009-10-06 11:31:08 -0700234 }
Yan, Zhengc530cd22016-04-28 17:43:35 +0800235 if (IS_ERR(dentry)) {
236 err = PTR_ERR(dentry);
237 goto out;
Yan, Zhengfdd4e152015-06-16 20:48:56 +0800238 }
239
Yan, Zhengfdd4e152015-06-16 20:48:56 +0800240 spin_lock(&dentry->d_lock);
Yan, Zheng5495c2d2017-11-27 11:23:48 +0800241 di = ceph_dentry(dentry);
242 if (d_unhashed(dentry) ||
243 d_really_is_negative(dentry) ||
244 di->lease_shared_gen != shared_gen) {
245 spin_unlock(&dentry->d_lock);
246 dput(dentry);
247 err = -EAGAIN;
248 goto out;
249 }
250 if (fpos_cmp(ctx->pos, di->offset) <= 0) {
Yan, Zheng37c4efc2019-01-31 16:55:51 +0800251 __ceph_dentry_dir_lease_touch(di);
Yan, Zhengfdd4e152015-06-16 20:48:56 +0800252 emit_dentry = true;
Sage Weil2817b002009-10-06 11:31:08 -0700253 }
Yan, Zhengfdd4e152015-06-16 20:48:56 +0800254 spin_unlock(&dentry->d_lock);
255
256 if (emit_dentry) {
Yan, Zhengf3c4ebe2016-04-29 11:27:30 +0800257 dout(" %llx dentry %p %pd %p\n", di->offset,
Yan, Zhengfdd4e152015-06-16 20:48:56 +0800258 dentry, dentry, d_inode(dentry));
259 ctx->pos = di->offset;
260 if (!dir_emit(ctx, dentry->d_name.name,
Jeff Laytonebce3eb2020-08-18 08:03:48 -0400261 dentry->d_name.len, ceph_present_inode(d_inode(dentry)),
Yan, Zhengfdd4e152015-06-16 20:48:56 +0800262 d_inode(dentry)->i_mode >> 12)) {
263 dput(dentry);
264 err = 0;
265 break;
266 }
267 ctx->pos++;
268
269 if (last)
270 dput(last);
271 last = dentry;
272 } else {
273 dput(dentry);
274 }
Sage Weil2817b002009-10-06 11:31:08 -0700275 }
Yan, Zhengc530cd22016-04-28 17:43:35 +0800276out:
Yan, Zhengfdd4e152015-06-16 20:48:56 +0800277 ceph_readdir_cache_release(&cache_ctl);
278 if (last) {
279 int ret;
280 di = ceph_dentry(last);
Chengguang Xubb48bd42018-03-13 10:42:44 +0800281 ret = note_last_dentry(dfi, last->d_name.name, last->d_name.len,
Yan, Zhengfdd4e152015-06-16 20:48:56 +0800282 fpos_off(di->offset) + 1);
283 if (ret < 0)
284 err = ret;
Al Viro77acfa22013-05-17 16:52:26 -0400285 dput(last);
Yan, Zheng84583cfb2017-07-06 11:12:21 +0800286 /* last_name no longer match cache index */
Chengguang Xubb48bd42018-03-13 10:42:44 +0800287 if (dfi->readdir_cache_idx >= 0) {
288 dfi->readdir_cache_idx = -1;
289 dfi->dir_release_count = 0;
Yan, Zheng84583cfb2017-07-06 11:12:21 +0800290 }
Yan, Zhengfdd4e152015-06-16 20:48:56 +0800291 }
Sage Weil2817b002009-10-06 11:31:08 -0700292 return err;
293}
294
Chengguang Xubb48bd42018-03-13 10:42:44 +0800295static bool need_send_readdir(struct ceph_dir_file_info *dfi, loff_t pos)
Yan, Zhengf3c4ebe2016-04-29 11:27:30 +0800296{
Chengguang Xubb48bd42018-03-13 10:42:44 +0800297 if (!dfi->last_readdir)
Yan, Zhengf3c4ebe2016-04-29 11:27:30 +0800298 return true;
299 if (is_hash_order(pos))
Chengguang Xubb48bd42018-03-13 10:42:44 +0800300 return !ceph_frag_contains_value(dfi->frag, fpos_hash(pos));
Yan, Zhengf3c4ebe2016-04-29 11:27:30 +0800301 else
Chengguang Xubb48bd42018-03-13 10:42:44 +0800302 return dfi->frag != fpos_frag(pos);
Yan, Zhengf3c4ebe2016-04-29 11:27:30 +0800303}
304
Al Viro77acfa22013-05-17 16:52:26 -0400305static int ceph_readdir(struct file *file, struct dir_context *ctx)
Sage Weil2817b002009-10-06 11:31:08 -0700306{
Chengguang Xubb48bd42018-03-13 10:42:44 +0800307 struct ceph_dir_file_info *dfi = file->private_data;
Al Viro77acfa22013-05-17 16:52:26 -0400308 struct inode *inode = file_inode(file);
Sage Weil2817b002009-10-06 11:31:08 -0700309 struct ceph_inode_info *ci = ceph_inode(inode);
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700310 struct ceph_fs_client *fsc = ceph_inode_to_client(inode);
311 struct ceph_mds_client *mdsc = fsc->mdsc;
Yan, Zheng8974eeb2016-04-28 15:17:40 +0800312 int i;
Sage Weil2817b002009-10-06 11:31:08 -0700313 int err;
Yan, Zhengb50c2de2017-04-24 11:56:50 +0800314 unsigned frag = -1;
Sage Weil2817b002009-10-06 11:31:08 -0700315 struct ceph_mds_reply_info_parsed *rinfo;
Sage Weil2817b002009-10-06 11:31:08 -0700316
Yan, Zheng8974eeb2016-04-28 15:17:40 +0800317 dout("readdir %p file %p pos %llx\n", inode, file, ctx->pos);
Chengguang Xubb48bd42018-03-13 10:42:44 +0800318 if (dfi->file_info.flags & CEPH_F_ATEND)
Sage Weil2817b002009-10-06 11:31:08 -0700319 return 0;
320
321 /* always start with . and .. */
Al Viro77acfa22013-05-17 16:52:26 -0400322 if (ctx->pos == 0) {
Sage Weil2817b002009-10-06 11:31:08 -0700323 dout("readdir off 0 -> '.'\n");
Jeff Laytonebce3eb2020-08-18 08:03:48 -0400324 if (!dir_emit(ctx, ".", 1, ceph_present_inode(inode),
Al Viro77acfa22013-05-17 16:52:26 -0400325 inode->i_mode >> 12))
Sage Weil2817b002009-10-06 11:31:08 -0700326 return 0;
Al Viro77acfa22013-05-17 16:52:26 -0400327 ctx->pos = 1;
Sage Weil2817b002009-10-06 11:31:08 -0700328 }
Al Viro77acfa22013-05-17 16:52:26 -0400329 if (ctx->pos == 1) {
Jeff Laytonebce3eb2020-08-18 08:03:48 -0400330 u64 ino;
331 struct dentry *dentry = file->f_path.dentry;
332
333 spin_lock(&dentry->d_lock);
334 ino = ceph_present_inode(dentry->d_parent->d_inode);
335 spin_unlock(&dentry->d_lock);
336
Sage Weil2817b002009-10-06 11:31:08 -0700337 dout("readdir off 1 -> '..'\n");
Jeff Laytonebce3eb2020-08-18 08:03:48 -0400338 if (!dir_emit(ctx, "..", 2, ino, inode->i_mode >> 12))
Sage Weil2817b002009-10-06 11:31:08 -0700339 return 0;
Al Viro77acfa22013-05-17 16:52:26 -0400340 ctx->pos = 2;
Sage Weil2817b002009-10-06 11:31:08 -0700341 }
342
Sage Weilbe655592011-11-30 09:47:09 -0800343 spin_lock(&ci->i_ceph_lock);
Yan, Zheng719a2512020-03-05 20:21:00 +0800344 /* request Fx cap. if have Fx, we don't need to release Fs cap
345 * for later create/unlink. */
346 __ceph_touch_fmode(ci, mdsc, CEPH_FILE_MODE_WR);
347 /* can we use the dcache? */
Yan, Zhengfdd4e152015-06-16 20:48:56 +0800348 if (ceph_test_mount_opt(fsc, DCACHE) &&
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700349 !ceph_test_mount_opt(fsc, NOASYNCREADDIR) &&
Sage Weila0dff782010-07-22 13:47:21 -0700350 ceph_snap(inode) != CEPH_SNAPDIR &&
Yan, Zheng70db4f32014-10-21 18:09:56 -0700351 __ceph_dir_is_complete_ordered(ci) &&
Xiubo Li1af16d52020-03-19 23:45:00 -0400352 __ceph_caps_issued_mask_metric(ci, CEPH_CAP_FILE_SHARED, 1)) {
Yan, Zheng97aeb6b2017-11-27 10:47:46 +0800353 int shared_gen = atomic_read(&ci->i_shared_gen);
Xiubo Li1af16d52020-03-19 23:45:00 -0400354
Sage Weilbe655592011-11-30 09:47:09 -0800355 spin_unlock(&ci->i_ceph_lock);
Yan, Zhenga30be7c2014-04-06 14:10:04 +0800356 err = __dcache_readdir(file, ctx, shared_gen);
Sage Weilefa4c122010-10-18 14:04:31 -0700357 if (err != -EAGAIN)
Sage Weil2817b002009-10-06 11:31:08 -0700358 return err;
Sage Weilefa4c122010-10-18 14:04:31 -0700359 } else {
Sage Weilbe655592011-11-30 09:47:09 -0800360 spin_unlock(&ci->i_ceph_lock);
Sage Weil2817b002009-10-06 11:31:08 -0700361 }
Sage Weil2817b002009-10-06 11:31:08 -0700362
363 /* proceed with a normal readdir */
Sage Weil2817b002009-10-06 11:31:08 -0700364more:
365 /* do we have the correct frag content buffered? */
Chengguang Xubb48bd42018-03-13 10:42:44 +0800366 if (need_send_readdir(dfi, ctx->pos)) {
Sage Weil2817b002009-10-06 11:31:08 -0700367 struct ceph_mds_request *req;
368 int op = ceph_snap(inode) == CEPH_SNAPDIR ?
369 CEPH_MDS_OP_LSSNAP : CEPH_MDS_OP_READDIR;
370
371 /* discard old result, if any */
Chengguang Xubb48bd42018-03-13 10:42:44 +0800372 if (dfi->last_readdir) {
373 ceph_mdsc_put_request(dfi->last_readdir);
374 dfi->last_readdir = NULL;
Sage Weil393f6622010-03-10 12:03:32 -0800375 }
Sage Weil2817b002009-10-06 11:31:08 -0700376
Yan, Zhengf3c4ebe2016-04-29 11:27:30 +0800377 if (is_hash_order(ctx->pos)) {
Yan, Zhengb50c2de2017-04-24 11:56:50 +0800378 /* fragtree isn't always accurate. choose frag
379 * based on previous reply when possible. */
380 if (frag == (unsigned)-1)
381 frag = ceph_choose_frag(ci, fpos_hash(ctx->pos),
382 NULL, NULL);
Yan, Zhengf3c4ebe2016-04-29 11:27:30 +0800383 } else {
384 frag = fpos_frag(ctx->pos);
385 }
386
Sage Weil2817b002009-10-06 11:31:08 -0700387 dout("readdir fetching %llx.%llx frag %x offset '%s'\n",
Chengguang Xubb48bd42018-03-13 10:42:44 +0800388 ceph_vinop(inode), frag, dfi->last_name);
Sage Weil2817b002009-10-06 11:31:08 -0700389 req = ceph_mdsc_create_request(mdsc, op, USE_AUTH_MDS);
390 if (IS_ERR(req))
391 return PTR_ERR(req);
Yan, Zheng54008392014-03-29 13:41:15 +0800392 err = ceph_alloc_readdir_reply_buffer(req, inode);
393 if (err) {
394 ceph_mdsc_put_request(req);
395 return err;
396 }
Sage Weil2817b002009-10-06 11:31:08 -0700397 /* hints to request -> mds selection code */
398 req->r_direct_mode = USE_AUTH_MDS;
Yan, Zheng5d37ca12017-07-26 12:48:08 +0800399 if (op == CEPH_MDS_OP_READDIR) {
400 req->r_direct_hash = ceph_frag_value(frag);
401 __set_bit(CEPH_MDS_R_DIRECT_IS_HASH, &req->r_req_flags);
Yan, Zheng87c91a92017-11-23 18:28:16 +0800402 req->r_inode_drop = CEPH_CAP_FILE_EXCL;
Yan, Zheng5d37ca12017-07-26 12:48:08 +0800403 }
Chengguang Xubb48bd42018-03-13 10:42:44 +0800404 if (dfi->last_name) {
405 req->r_path2 = kstrdup(dfi->last_name, GFP_KERNEL);
Sanidhya Kashyapa149bb92015-03-21 12:54:58 -0400406 if (!req->r_path2) {
407 ceph_mdsc_put_request(req);
408 return -ENOMEM;
409 }
Yan, Zheng79162542017-04-05 12:54:05 -0400410 } else if (is_hash_order(ctx->pos)) {
411 req->r_args.readdir.offset_hash =
412 cpu_to_le32(fpos_hash(ctx->pos));
Sanidhya Kashyapa149bb92015-03-21 12:54:58 -0400413 }
Yan, Zheng79162542017-04-05 12:54:05 -0400414
Chengguang Xubb48bd42018-03-13 10:42:44 +0800415 req->r_dir_release_cnt = dfi->dir_release_count;
416 req->r_dir_ordered_cnt = dfi->dir_ordered_count;
417 req->r_readdir_cache_idx = dfi->readdir_cache_idx;
418 req->r_readdir_offset = dfi->next_offset;
Sage Weil2817b002009-10-06 11:31:08 -0700419 req->r_args.readdir.frag = cpu_to_le32(frag);
Yan, Zheng956d39d2016-04-27 17:48:30 +0800420 req->r_args.readdir.flags =
421 cpu_to_le16(CEPH_READDIR_REPLY_BITFLAGS);
Sanidhya Kashyapa149bb92015-03-21 12:54:58 -0400422
423 req->r_inode = inode;
424 ihold(inode);
425 req->r_dentry = dget(file->f_path.dentry);
Sage Weil2817b002009-10-06 11:31:08 -0700426 err = ceph_mdsc_do_request(mdsc, NULL, req);
427 if (err < 0) {
428 ceph_mdsc_put_request(req);
429 return err;
430 }
Yan, Zhengf3c4ebe2016-04-29 11:27:30 +0800431 dout("readdir got and parsed readdir result=%d on "
432 "frag %x, end=%d, complete=%d, hash_order=%d\n",
433 err, frag,
Sage Weil2817b002009-10-06 11:31:08 -0700434 (int)req->r_reply_info.dir_end,
Yan, Zhengf3c4ebe2016-04-29 11:27:30 +0800435 (int)req->r_reply_info.dir_complete,
436 (int)req->r_reply_info.hash_order);
Sage Weil2817b002009-10-06 11:31:08 -0700437
Yan, Zheng81c6aea2013-09-18 09:44:13 +0800438 rinfo = &req->r_reply_info;
439 if (le32_to_cpu(rinfo->dir_dir->frag) != frag) {
440 frag = le32_to_cpu(rinfo->dir_dir->frag);
Yan, Zhengf3c4ebe2016-04-29 11:27:30 +0800441 if (!rinfo->hash_order) {
Chengguang Xubb48bd42018-03-13 10:42:44 +0800442 dfi->next_offset = req->r_readdir_offset;
Yan, Zhengf3c4ebe2016-04-29 11:27:30 +0800443 /* adjust ctx->pos to beginning of frag */
444 ctx->pos = ceph_make_fpos(frag,
Chengguang Xubb48bd42018-03-13 10:42:44 +0800445 dfi->next_offset,
Yan, Zhengf3c4ebe2016-04-29 11:27:30 +0800446 false);
447 }
Yan, Zheng81c6aea2013-09-18 09:44:13 +0800448 }
Yan, Zhengfdd4e152015-06-16 20:48:56 +0800449
Chengguang Xubb48bd42018-03-13 10:42:44 +0800450 dfi->frag = frag;
451 dfi->last_readdir = req;
Sage Weil2817b002009-10-06 11:31:08 -0700452
Jeff Laytonbc2de10d2017-02-01 13:49:09 -0500453 if (test_bit(CEPH_MDS_R_DID_PREPOPULATE, &req->r_req_flags)) {
Chengguang Xubb48bd42018-03-13 10:42:44 +0800454 dfi->readdir_cache_idx = req->r_readdir_cache_idx;
455 if (dfi->readdir_cache_idx < 0) {
Yan, Zhengfdd4e152015-06-16 20:48:56 +0800456 /* preclude from marking dir ordered */
Chengguang Xubb48bd42018-03-13 10:42:44 +0800457 dfi->dir_ordered_count = 0;
Yan, Zheng8974eeb2016-04-28 15:17:40 +0800458 } else if (ceph_frag_is_leftmost(frag) &&
Chengguang Xubb48bd42018-03-13 10:42:44 +0800459 dfi->next_offset == 2) {
Yan, Zhengfdd4e152015-06-16 20:48:56 +0800460 /* note dir version at start of readdir so
461 * we can tell if any dentries get dropped */
Chengguang Xubb48bd42018-03-13 10:42:44 +0800462 dfi->dir_release_count = req->r_dir_release_cnt;
463 dfi->dir_ordered_count = req->r_dir_ordered_cnt;
Yan, Zhengfdd4e152015-06-16 20:48:56 +0800464 }
465 } else {
Chengguang Xu4c069a52018-01-30 16:29:17 +0800466 dout("readdir !did_prepopulate\n");
Yan, Zhengfdd4e152015-06-16 20:48:56 +0800467 /* disable readdir cache */
Chengguang Xubb48bd42018-03-13 10:42:44 +0800468 dfi->readdir_cache_idx = -1;
Yan, Zhengfdd4e152015-06-16 20:48:56 +0800469 /* preclude from marking dir complete */
Chengguang Xubb48bd42018-03-13 10:42:44 +0800470 dfi->dir_release_count = 0;
Yan, Zhengfdd4e152015-06-16 20:48:56 +0800471 }
472
Yan, Zhengf3c4ebe2016-04-29 11:27:30 +0800473 /* note next offset and last dentry name */
474 if (rinfo->dir_nr > 0) {
Yan, Zheng2a5beea2016-04-28 09:37:39 +0800475 struct ceph_mds_reply_dir_entry *rde =
476 rinfo->dir_entries + (rinfo->dir_nr-1);
Yan, Zhengf3c4ebe2016-04-29 11:27:30 +0800477 unsigned next_offset = req->r_reply_info.dir_end ?
478 2 : (fpos_off(rde->offset) + 1);
Chengguang Xubb48bd42018-03-13 10:42:44 +0800479 err = note_last_dentry(dfi, rde->name, rde->name_len,
Yan, Zhengf3c4ebe2016-04-29 11:27:30 +0800480 next_offset);
Sage Weil2817b002009-10-06 11:31:08 -0700481 if (err)
482 return err;
Yan, Zhengf3c4ebe2016-04-29 11:27:30 +0800483 } else if (req->r_reply_info.dir_end) {
Chengguang Xubb48bd42018-03-13 10:42:44 +0800484 dfi->next_offset = 2;
Yan, Zhengf3c4ebe2016-04-29 11:27:30 +0800485 /* keep last name */
Sage Weil2817b002009-10-06 11:31:08 -0700486 }
487 }
488
Chengguang Xubb48bd42018-03-13 10:42:44 +0800489 rinfo = &dfi->last_readdir->r_reply_info;
Yan, Zheng8974eeb2016-04-28 15:17:40 +0800490 dout("readdir frag %x num %d pos %llx chunk first %llx\n",
Chengguang Xubb48bd42018-03-13 10:42:44 +0800491 dfi->frag, rinfo->dir_nr, ctx->pos,
Yan, Zheng8974eeb2016-04-28 15:17:40 +0800492 rinfo->dir_nr ? rinfo->dir_entries[0].offset : 0LL);
Al Viro77acfa22013-05-17 16:52:26 -0400493
Yan, Zheng8974eeb2016-04-28 15:17:40 +0800494 i = 0;
495 /* search start position */
496 if (rinfo->dir_nr > 0) {
497 int step, nr = rinfo->dir_nr;
498 while (nr > 0) {
499 step = nr >> 1;
500 if (rinfo->dir_entries[i + step].offset < ctx->pos) {
501 i += step + 1;
502 nr -= step + 1;
503 } else {
504 nr = step;
505 }
506 }
507 }
508 for (; i < rinfo->dir_nr; i++) {
509 struct ceph_mds_reply_dir_entry *rde = rinfo->dir_entries + i;
Sage Weil3105c192010-11-18 09:15:07 -0800510
Yan, Zheng8974eeb2016-04-28 15:17:40 +0800511 BUG_ON(rde->offset < ctx->pos);
512
513 ctx->pos = rde->offset;
514 dout("readdir (%d/%d) -> %llx '%.*s' %p\n",
515 i, rinfo->dir_nr, ctx->pos,
Yan, Zheng2a5beea2016-04-28 09:37:39 +0800516 rde->name_len, rde->name, &rde->inode.in);
Yan, Zheng8974eeb2016-04-28 15:17:40 +0800517
Yan, Zheng2a5beea2016-04-28 09:37:39 +0800518 BUG_ON(!rde->inode.in);
Yan, Zheng8974eeb2016-04-28 15:17:40 +0800519
Yan, Zheng2a5beea2016-04-28 09:37:39 +0800520 if (!dir_emit(ctx, rde->name, rde->name_len,
Jeff Laytonebce3eb2020-08-18 08:03:48 -0400521 ceph_present_ino(inode->i_sb, le64_to_cpu(rde->inode.in->ino)),
522 le32_to_cpu(rde->inode.in->mode) >> 12)) {
Sage Weil2817b002009-10-06 11:31:08 -0700523 dout("filldir stopping us...\n");
524 return 0;
525 }
Al Viro77acfa22013-05-17 16:52:26 -0400526 ctx->pos++;
Sage Weil2817b002009-10-06 11:31:08 -0700527 }
528
Chengguang Xubb48bd42018-03-13 10:42:44 +0800529 ceph_mdsc_put_request(dfi->last_readdir);
530 dfi->last_readdir = NULL;
Yan, Zhengb50c2de2017-04-24 11:56:50 +0800531
Chengguang Xubb48bd42018-03-13 10:42:44 +0800532 if (dfi->next_offset > 2) {
533 frag = dfi->frag;
Sage Weil2817b002009-10-06 11:31:08 -0700534 goto more;
535 }
536
537 /* more frags? */
Chengguang Xubb48bd42018-03-13 10:42:44 +0800538 if (!ceph_frag_is_rightmost(dfi->frag)) {
539 frag = ceph_frag_next(dfi->frag);
Yan, Zhengf3c4ebe2016-04-29 11:27:30 +0800540 if (is_hash_order(ctx->pos)) {
541 loff_t new_pos = ceph_make_fpos(ceph_frag_value(frag),
Chengguang Xubb48bd42018-03-13 10:42:44 +0800542 dfi->next_offset, true);
Yan, Zhengf3c4ebe2016-04-29 11:27:30 +0800543 if (new_pos > ctx->pos)
544 ctx->pos = new_pos;
545 /* keep last_name */
546 } else {
Chengguang Xubb48bd42018-03-13 10:42:44 +0800547 ctx->pos = ceph_make_fpos(frag, dfi->next_offset,
548 false);
549 kfree(dfi->last_name);
550 dfi->last_name = NULL;
Yan, Zhengf3c4ebe2016-04-29 11:27:30 +0800551 }
Sage Weil2817b002009-10-06 11:31:08 -0700552 dout("readdir next frag is %x\n", frag);
553 goto more;
554 }
Chengguang Xubb48bd42018-03-13 10:42:44 +0800555 dfi->file_info.flags |= CEPH_F_ATEND;
Sage Weil2817b002009-10-06 11:31:08 -0700556
557 /*
558 * if dir_release_count still matches the dir, no dentries
559 * were released during the whole readdir, and we should have
560 * the complete dir contents in our cache.
561 */
Chengguang Xubb48bd42018-03-13 10:42:44 +0800562 if (atomic64_read(&ci->i_release_count) ==
563 dfi->dir_release_count) {
Yan, Zhengfdd4e152015-06-16 20:48:56 +0800564 spin_lock(&ci->i_ceph_lock);
Chengguang Xubb48bd42018-03-13 10:42:44 +0800565 if (dfi->dir_ordered_count ==
566 atomic64_read(&ci->i_ordered_count)) {
Yan, Zheng70db4f32014-10-21 18:09:56 -0700567 dout(" marking %p complete and ordered\n", inode);
Yan, Zhengfdd4e152015-06-16 20:48:56 +0800568 /* use i_size to track number of entries in
569 * readdir cache */
Chengguang Xubb48bd42018-03-13 10:42:44 +0800570 BUG_ON(dfi->readdir_cache_idx < 0);
571 i_size_write(inode, dfi->readdir_cache_idx *
Yan, Zhengfdd4e152015-06-16 20:48:56 +0800572 sizeof(struct dentry*));
573 } else {
Yan, Zheng70db4f32014-10-21 18:09:56 -0700574 dout(" marking %p complete\n", inode);
Yan, Zhengfdd4e152015-06-16 20:48:56 +0800575 }
Chengguang Xubb48bd42018-03-13 10:42:44 +0800576 __ceph_dir_set_complete(ci, dfi->dir_release_count,
577 dfi->dir_ordered_count);
Yan, Zhengfdd4e152015-06-16 20:48:56 +0800578 spin_unlock(&ci->i_ceph_lock);
Sage Weil2817b002009-10-06 11:31:08 -0700579 }
Sage Weil2817b002009-10-06 11:31:08 -0700580
Al Viro77acfa22013-05-17 16:52:26 -0400581 dout("readdir %p file %p done.\n", inode, file);
Sage Weil2817b002009-10-06 11:31:08 -0700582 return 0;
583}
584
Chengguang Xubb48bd42018-03-13 10:42:44 +0800585static void reset_readdir(struct ceph_dir_file_info *dfi)
Sage Weil2817b002009-10-06 11:31:08 -0700586{
Chengguang Xubb48bd42018-03-13 10:42:44 +0800587 if (dfi->last_readdir) {
588 ceph_mdsc_put_request(dfi->last_readdir);
589 dfi->last_readdir = NULL;
Sage Weil2817b002009-10-06 11:31:08 -0700590 }
Chengguang Xubb48bd42018-03-13 10:42:44 +0800591 kfree(dfi->last_name);
592 dfi->last_name = NULL;
593 dfi->dir_release_count = 0;
594 dfi->readdir_cache_idx = -1;
595 dfi->next_offset = 2; /* compensate for . and .. */
596 dfi->file_info.flags &= ~CEPH_F_ATEND;
Sage Weil2817b002009-10-06 11:31:08 -0700597}
598
Yan, Zheng8974eeb2016-04-28 15:17:40 +0800599/*
600 * discard buffered readdir content on seekdir(0), or seek to new frag,
601 * or seek prior to current chunk
602 */
Chengguang Xubb48bd42018-03-13 10:42:44 +0800603static bool need_reset_readdir(struct ceph_dir_file_info *dfi, loff_t new_pos)
Yan, Zheng8974eeb2016-04-28 15:17:40 +0800604{
605 struct ceph_mds_reply_info_parsed *rinfo;
Yan, Zhengf3c4ebe2016-04-29 11:27:30 +0800606 loff_t chunk_offset;
Yan, Zheng8974eeb2016-04-28 15:17:40 +0800607 if (new_pos == 0)
608 return true;
Yan, Zhengf3c4ebe2016-04-29 11:27:30 +0800609 if (is_hash_order(new_pos)) {
610 /* no need to reset last_name for a forward seek when
611 * dentries are sotred in hash order */
Chengguang Xubb48bd42018-03-13 10:42:44 +0800612 } else if (dfi->frag != fpos_frag(new_pos)) {
Yan, Zheng8974eeb2016-04-28 15:17:40 +0800613 return true;
Yan, Zhengf3c4ebe2016-04-29 11:27:30 +0800614 }
Chengguang Xubb48bd42018-03-13 10:42:44 +0800615 rinfo = dfi->last_readdir ? &dfi->last_readdir->r_reply_info : NULL;
Yan, Zheng8974eeb2016-04-28 15:17:40 +0800616 if (!rinfo || !rinfo->dir_nr)
617 return true;
Yan, Zhengf3c4ebe2016-04-29 11:27:30 +0800618 chunk_offset = rinfo->dir_entries[0].offset;
619 return new_pos < chunk_offset ||
620 is_hash_order(new_pos) != is_hash_order(chunk_offset);
Yan, Zheng8974eeb2016-04-28 15:17:40 +0800621}
622
Andrew Morton965c8e52012-12-17 15:59:39 -0800623static loff_t ceph_dir_llseek(struct file *file, loff_t offset, int whence)
Sage Weil2817b002009-10-06 11:31:08 -0700624{
Chengguang Xubb48bd42018-03-13 10:42:44 +0800625 struct ceph_dir_file_info *dfi = file->private_data;
Sage Weil2817b002009-10-06 11:31:08 -0700626 struct inode *inode = file->f_mapping->host;
Sage Weil2817b002009-10-06 11:31:08 -0700627 loff_t retval;
628
Al Viro59551022016-01-22 15:40:57 -0500629 inode_lock(inode);
Josef Bacik06222e42011-07-18 13:21:38 -0400630 retval = -EINVAL;
Andrew Morton965c8e52012-12-17 15:59:39 -0800631 switch (whence) {
Sage Weil2817b002009-10-06 11:31:08 -0700632 case SEEK_CUR:
633 offset += file->f_pos;
Gustavo A. R. Silvafcaddb12021-03-05 03:59:23 -0600634 break;
Josef Bacik06222e42011-07-18 13:21:38 -0400635 case SEEK_SET:
636 break;
Yan, Zhengfdd4e152015-06-16 20:48:56 +0800637 case SEEK_END:
638 retval = -EOPNOTSUPP;
Gustavo A. R. Silvafcaddb12021-03-05 03:59:23 -0600639 goto out;
Josef Bacik06222e42011-07-18 13:21:38 -0400640 default:
641 goto out;
Sage Weil2817b002009-10-06 11:31:08 -0700642 }
Josef Bacik06222e42011-07-18 13:21:38 -0400643
Yan, Zhengf0494202014-02-27 16:26:24 +0800644 if (offset >= 0) {
Chengguang Xubb48bd42018-03-13 10:42:44 +0800645 if (need_reset_readdir(dfi, offset)) {
Yan, Zhengf3c4ebe2016-04-29 11:27:30 +0800646 dout("dir_llseek dropping %p content\n", file);
Chengguang Xubb48bd42018-03-13 10:42:44 +0800647 reset_readdir(dfi);
Yan, Zhengf3c4ebe2016-04-29 11:27:30 +0800648 } else if (is_hash_order(offset) && offset > file->f_pos) {
649 /* for hash offset, we don't know if a forward seek
650 * is within same frag */
Chengguang Xubb48bd42018-03-13 10:42:44 +0800651 dfi->dir_release_count = 0;
652 dfi->readdir_cache_idx = -1;
Yan, Zhengf3c4ebe2016-04-29 11:27:30 +0800653 }
654
Sage Weil2817b002009-10-06 11:31:08 -0700655 if (offset != file->f_pos) {
656 file->f_pos = offset;
657 file->f_version = 0;
Chengguang Xubb48bd42018-03-13 10:42:44 +0800658 dfi->file_info.flags &= ~CEPH_F_ATEND;
Sage Weil2817b002009-10-06 11:31:08 -0700659 }
660 retval = offset;
Sage Weil2817b002009-10-06 11:31:08 -0700661 }
Josef Bacik06222e42011-07-18 13:21:38 -0400662out:
Al Viro59551022016-01-22 15:40:57 -0500663 inode_unlock(inode);
Sage Weil2817b002009-10-06 11:31:08 -0700664 return retval;
665}
666
667/*
Sage Weil468640e2011-07-26 11:28:11 -0700668 * Handle lookups for the hidden .snap directory.
Sage Weil2817b002009-10-06 11:31:08 -0700669 */
Jeff Laytonaa60cfc2021-03-01 08:01:54 -0500670struct dentry *ceph_handle_snapdir(struct ceph_mds_request *req,
Jeff Layton7a971e22021-06-02 12:46:07 -0400671 struct dentry *dentry)
Sage Weil2817b002009-10-06 11:31:08 -0700672{
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700673 struct ceph_fs_client *fsc = ceph_sb_to_client(dentry->d_sb);
David Howells2b0143b2015-03-17 22:25:59 +0000674 struct inode *parent = d_inode(dentry->d_parent); /* we hold i_mutex */
Sage Weil2817b002009-10-06 11:31:08 -0700675
676 /* .snap dir? */
Jeff Layton7a971e22021-06-02 12:46:07 -0400677 if (ceph_snap(parent) == CEPH_NOSNAP &&
Jeff Laytonaa60cfc2021-03-01 08:01:54 -0500678 strcmp(dentry->d_name.name, fsc->mount_options->snapdir_name) == 0) {
679 struct dentry *res;
Sage Weil2817b002009-10-06 11:31:08 -0700680 struct inode *inode = ceph_get_snapdir(parent);
Jeff Laytonaa60cfc2021-03-01 08:01:54 -0500681
682 res = d_splice_alias(inode, dentry);
683 dout("ENOENT on snapdir %p '%pd', linking to snapdir %p. Spliced dentry %p\n",
684 dentry, dentry, inode, res);
685 if (res)
686 dentry = res;
Sage Weil2817b002009-10-06 11:31:08 -0700687 }
Jeff Laytonaa60cfc2021-03-01 08:01:54 -0500688 return dentry;
Sage Weil468640e2011-07-26 11:28:11 -0700689}
Sage Weil2817b002009-10-06 11:31:08 -0700690
Sage Weil468640e2011-07-26 11:28:11 -0700691/*
692 * Figure out final result of a lookup/open request.
693 *
694 * Mainly, make sure we return the final req->r_dentry (if it already
695 * existed) in place of the original VFS-provided dentry when they
696 * differ.
697 *
698 * Gracefully handle the case where the MDS replies with -ENOENT and
699 * no trace (which it may do, at its discretion, e.g., if it doesn't
700 * care to issue a lease on the negative dentry).
701 */
702struct dentry *ceph_finish_lookup(struct ceph_mds_request *req,
703 struct dentry *dentry, int err)
704{
Sage Weil2817b002009-10-06 11:31:08 -0700705 if (err == -ENOENT) {
706 /* no trace? */
707 err = 0;
708 if (!req->r_reply_info.head->is_dentry) {
709 dout("ENOENT and no trace, dentry %p inode %p\n",
David Howells2b0143b2015-03-17 22:25:59 +0000710 dentry, d_inode(dentry));
711 if (d_really_is_positive(dentry)) {
Sage Weil2817b002009-10-06 11:31:08 -0700712 d_drop(dentry);
713 err = -ENOENT;
714 } else {
715 d_add(dentry, NULL);
716 }
717 }
718 }
719 if (err)
720 dentry = ERR_PTR(err);
721 else if (dentry != req->r_dentry)
722 dentry = dget(req->r_dentry); /* we got spliced */
723 else
724 dentry = NULL;
725 return dentry;
726}
727
Zhang Zhuoyu3b33f692016-03-25 05:18:39 -0400728static bool is_root_ceph_dentry(struct inode *inode, struct dentry *dentry)
Sage Weil1d1de9162009-12-02 11:54:25 -0800729{
730 return ceph_ino(inode) == CEPH_INO_ROOT &&
731 strncmp(dentry->d_name.name, ".ceph", 5) == 0;
732}
733
Sage Weil2817b002009-10-06 11:31:08 -0700734/*
735 * Look up a single dir entry. If there is a lookup intent, inform
736 * the MDS so that it gets our 'caps wanted' value in a single op.
737 */
738static struct dentry *ceph_lookup(struct inode *dir, struct dentry *dentry,
Al Viro00cd8dd2012-06-10 17:13:09 -0400739 unsigned int flags)
Sage Weil2817b002009-10-06 11:31:08 -0700740{
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700741 struct ceph_fs_client *fsc = ceph_sb_to_client(dir->i_sb);
Xiubo Li2678da82020-09-03 09:01:39 -0400742 struct ceph_mds_client *mdsc = ceph_sb_to_mdsc(dir->i_sb);
Sage Weil2817b002009-10-06 11:31:08 -0700743 struct ceph_mds_request *req;
744 int op;
Yan, Zheng315f2402016-03-07 10:34:50 +0800745 int mask;
Sage Weil2817b002009-10-06 11:31:08 -0700746 int err;
747
Al Viroa4555892014-10-21 20:11:25 -0400748 dout("lookup %p dentry %p '%pd'\n",
749 dir, dentry, dentry);
Sage Weil2817b002009-10-06 11:31:08 -0700750
751 if (dentry->d_name.len > NAME_MAX)
752 return ERR_PTR(-ENAMETOOLONG);
753
Sage Weil2817b002009-10-06 11:31:08 -0700754 /* can we conclude ENOENT locally? */
David Howells2b0143b2015-03-17 22:25:59 +0000755 if (d_really_is_negative(dentry)) {
Sage Weil2817b002009-10-06 11:31:08 -0700756 struct ceph_inode_info *ci = ceph_inode(dir);
757 struct ceph_dentry_info *di = ceph_dentry(dentry);
758
Sage Weilbe655592011-11-30 09:47:09 -0800759 spin_lock(&ci->i_ceph_lock);
Jeff Layton891f3f52020-01-14 15:06:40 -0500760 dout(" dir %p flags are 0x%lx\n", dir, ci->i_ceph_flags);
Sage Weil2817b002009-10-06 11:31:08 -0700761 if (strncmp(dentry->d_name.name,
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700762 fsc->mount_options->snapdir_name,
Sage Weil2817b002009-10-06 11:31:08 -0700763 dentry->d_name.len) &&
Sage Weil1d1de9162009-12-02 11:54:25 -0800764 !is_root_ceph_dentry(dir, dentry) &&
Yan, Zhenge2c3de02015-03-04 16:05:04 +0800765 ceph_test_mount_opt(fsc, DCACHE) &&
Yan, Zheng2f276c52013-03-13 19:44:32 +0800766 __ceph_dir_is_complete(ci) &&
Xiubo Li1af16d52020-03-19 23:45:00 -0400767 __ceph_caps_issued_mask_metric(ci, CEPH_CAP_FILE_SHARED, 1)) {
Yan, Zheng719a2512020-03-05 20:21:00 +0800768 __ceph_touch_fmode(ci, mdsc, CEPH_FILE_MODE_RD);
Sage Weilbe655592011-11-30 09:47:09 -0800769 spin_unlock(&ci->i_ceph_lock);
Sage Weil2817b002009-10-06 11:31:08 -0700770 dout(" dir %p complete, -ENOENT\n", dir);
771 d_add(dentry, NULL);
Yan, Zheng97aeb6b2017-11-27 10:47:46 +0800772 di->lease_shared_gen = atomic_read(&ci->i_shared_gen);
Sage Weil2817b002009-10-06 11:31:08 -0700773 return NULL;
774 }
Sage Weilbe655592011-11-30 09:47:09 -0800775 spin_unlock(&ci->i_ceph_lock);
Sage Weil2817b002009-10-06 11:31:08 -0700776 }
777
778 op = ceph_snap(dir) == CEPH_SNAPDIR ?
779 CEPH_MDS_OP_LOOKUPSNAP : CEPH_MDS_OP_LOOKUP;
780 req = ceph_mdsc_create_request(mdsc, op, USE_ANY_MDS);
781 if (IS_ERR(req))
Julia Lawall7e34bc52010-05-22 12:01:14 +0200782 return ERR_CAST(req);
Sage Weil2817b002009-10-06 11:31:08 -0700783 req->r_dentry = dget(dentry);
784 req->r_num_caps = 2;
Yan, Zheng315f2402016-03-07 10:34:50 +0800785
786 mask = CEPH_STAT_CAP_INODE | CEPH_CAP_AUTH_SHARED;
787 if (ceph_security_xattr_wanted(dir))
788 mask |= CEPH_CAP_XATTR_SHARED;
789 req->r_args.getattr.mask = cpu_to_le32(mask);
790
Jeff Layton4c183472021-06-18 13:05:06 -0400791 ihold(dir);
Jeff Layton3dd69aa2017-01-31 10:28:26 -0500792 req->r_parent = dir;
793 set_bit(CEPH_MDS_R_PARENT_LOCKED, &req->r_req_flags);
Sage Weil2817b002009-10-06 11:31:08 -0700794 err = ceph_mdsc_do_request(mdsc, NULL, req);
Jeff Layton7a971e22021-06-02 12:46:07 -0400795 if (err == -ENOENT) {
796 struct dentry *res;
797
798 res = ceph_handle_snapdir(req, dentry);
799 if (IS_ERR(res)) {
800 err = PTR_ERR(res);
801 } else {
802 dentry = res;
803 err = 0;
804 }
Jeff Laytonaa60cfc2021-03-01 08:01:54 -0500805 }
Sage Weil2817b002009-10-06 11:31:08 -0700806 dentry = ceph_finish_lookup(req, dentry, err);
807 ceph_mdsc_put_request(req); /* will dput(dentry) */
808 dout("lookup result=%p\n", dentry);
809 return dentry;
810}
811
812/*
813 * If we do a create but get no trace back from the MDS, follow up with
814 * a lookup (the VFS expects us to link up the provided dentry).
815 */
816int ceph_handle_notrace_create(struct inode *dir, struct dentry *dentry)
817{
Al Viro00cd8dd2012-06-10 17:13:09 -0400818 struct dentry *result = ceph_lookup(dir, dentry, 0);
Sage Weil2817b002009-10-06 11:31:08 -0700819
820 if (result && !IS_ERR(result)) {
821 /*
822 * We created the item, then did a lookup, and found
823 * it was already linked to another inode we already
Yan, Zheng4d41cef2015-02-04 15:10:48 +0800824 * had in our cache (and thus got spliced). To not
825 * confuse VFS (especially when inode is a directory),
826 * we don't link our dentry to that inode, return an
827 * error instead.
828 *
829 * This event should be rare and it happens only when
830 * we talk to old MDS. Recent MDS does not send traceless
831 * reply for request that creates new inode.
Sage Weil2817b002009-10-06 11:31:08 -0700832 */
Yan, Zheng5cba3722015-02-02 11:27:56 +0800833 d_drop(result);
Yan, Zheng4d41cef2015-02-04 15:10:48 +0800834 return -ESTALE;
Sage Weil2817b002009-10-06 11:31:08 -0700835 }
836 return PTR_ERR(result);
837}
838
Christian Brauner549c7292021-01-21 14:19:43 +0100839static int ceph_mknod(struct user_namespace *mnt_userns, struct inode *dir,
840 struct dentry *dentry, umode_t mode, dev_t rdev)
Sage Weil2817b002009-10-06 11:31:08 -0700841{
Xiubo Li2678da82020-09-03 09:01:39 -0400842 struct ceph_mds_client *mdsc = ceph_sb_to_mdsc(dir->i_sb);
Sage Weil2817b002009-10-06 11:31:08 -0700843 struct ceph_mds_request *req;
Yan, Zheng5c31e922019-05-26 15:35:39 +0800844 struct ceph_acl_sec_ctx as_ctx = {};
Sage Weil2817b002009-10-06 11:31:08 -0700845 int err;
846
847 if (ceph_snap(dir) != CEPH_NOSNAP)
848 return -EROFS;
849
Chengguang Xu04598712018-07-09 22:17:30 +0800850 if (ceph_quota_is_max_files_exceeded(dir)) {
851 err = -EDQUOT;
852 goto out;
853 }
Luis Henriquesb7a29212018-01-05 10:47:19 +0000854
Yan, Zheng5c31e922019-05-26 15:35:39 +0800855 err = ceph_pre_init_acls(dir, &mode, &as_ctx);
Yan, Zhengb1ee94a2014-09-16 20:35:17 +0800856 if (err < 0)
Chengguang Xu04598712018-07-09 22:17:30 +0800857 goto out;
Yan, Zhengac6713c2019-05-26 16:27:56 +0800858 err = ceph_security_init_secctx(dentry, mode, &as_ctx);
859 if (err < 0)
860 goto out;
Yan, Zhengb1ee94a2014-09-16 20:35:17 +0800861
Al Viro1a67aaf2011-07-26 01:52:52 -0400862 dout("mknod in dir %p dentry %p mode 0%ho rdev %d\n",
Sage Weil2817b002009-10-06 11:31:08 -0700863 dir, dentry, mode, rdev);
864 req = ceph_mdsc_create_request(mdsc, CEPH_MDS_OP_MKNOD, USE_AUTH_MDS);
865 if (IS_ERR(req)) {
Yan, Zhengb1ee94a2014-09-16 20:35:17 +0800866 err = PTR_ERR(req);
867 goto out;
Sage Weil2817b002009-10-06 11:31:08 -0700868 }
869 req->r_dentry = dget(dentry);
870 req->r_num_caps = 2;
Jeff Layton3dd69aa2017-01-31 10:28:26 -0500871 req->r_parent = dir;
Jeff Layton4c183472021-06-18 13:05:06 -0400872 ihold(dir);
Jeff Layton3dd69aa2017-01-31 10:28:26 -0500873 set_bit(CEPH_MDS_R_PARENT_LOCKED, &req->r_req_flags);
Sage Weil2817b002009-10-06 11:31:08 -0700874 req->r_args.mknod.mode = cpu_to_le32(mode);
875 req->r_args.mknod.rdev = cpu_to_le32(rdev);
Yan, Zheng222b7f92017-11-23 17:47:15 +0800876 req->r_dentry_drop = CEPH_CAP_FILE_SHARED | CEPH_CAP_AUTH_EXCL;
Sage Weil2817b002009-10-06 11:31:08 -0700877 req->r_dentry_unless = CEPH_CAP_FILE_EXCL;
Yan, Zheng5c31e922019-05-26 15:35:39 +0800878 if (as_ctx.pagelist) {
879 req->r_pagelist = as_ctx.pagelist;
880 as_ctx.pagelist = NULL;
Yan, Zhengb1ee94a2014-09-16 20:35:17 +0800881 }
Sage Weil2817b002009-10-06 11:31:08 -0700882 err = ceph_mdsc_do_request(mdsc, dir, req);
883 if (!err && !req->r_reply_info.head->is_dentry)
884 err = ceph_handle_notrace_create(dir, dentry);
885 ceph_mdsc_put_request(req);
Yan, Zhengb1ee94a2014-09-16 20:35:17 +0800886out:
Guangliang Zhao7221fe42013-11-11 15:18:03 +0800887 if (!err)
Yan, Zheng5c31e922019-05-26 15:35:39 +0800888 ceph_init_inode_acls(d_inode(dentry), &as_ctx);
Yan, Zhengb20a95a2014-02-11 12:55:05 +0800889 else
Sage Weil2817b002009-10-06 11:31:08 -0700890 d_drop(dentry);
Yan, Zheng5c31e922019-05-26 15:35:39 +0800891 ceph_release_acl_sec_ctx(&as_ctx);
Sage Weil2817b002009-10-06 11:31:08 -0700892 return err;
893}
894
Christian Brauner549c7292021-01-21 14:19:43 +0100895static int ceph_create(struct user_namespace *mnt_userns, struct inode *dir,
896 struct dentry *dentry, umode_t mode, bool excl)
Sage Weil2817b002009-10-06 11:31:08 -0700897{
Christian Brauner549c7292021-01-21 14:19:43 +0100898 return ceph_mknod(mnt_userns, dir, dentry, mode, 0);
Sage Weil2817b002009-10-06 11:31:08 -0700899}
900
Christian Brauner549c7292021-01-21 14:19:43 +0100901static int ceph_symlink(struct user_namespace *mnt_userns, struct inode *dir,
902 struct dentry *dentry, const char *dest)
Sage Weil2817b002009-10-06 11:31:08 -0700903{
Xiubo Li2678da82020-09-03 09:01:39 -0400904 struct ceph_mds_client *mdsc = ceph_sb_to_mdsc(dir->i_sb);
Sage Weil2817b002009-10-06 11:31:08 -0700905 struct ceph_mds_request *req;
Yan, Zhengac6713c2019-05-26 16:27:56 +0800906 struct ceph_acl_sec_ctx as_ctx = {};
Sage Weil2817b002009-10-06 11:31:08 -0700907 int err;
908
909 if (ceph_snap(dir) != CEPH_NOSNAP)
910 return -EROFS;
911
Chengguang Xu67fcd152018-07-09 22:17:31 +0800912 if (ceph_quota_is_max_files_exceeded(dir)) {
913 err = -EDQUOT;
914 goto out;
915 }
Luis Henriquesb7a29212018-01-05 10:47:19 +0000916
Yan, Zhengac6713c2019-05-26 16:27:56 +0800917 err = ceph_security_init_secctx(dentry, S_IFLNK | 0777, &as_ctx);
918 if (err < 0)
919 goto out;
920
Sage Weil2817b002009-10-06 11:31:08 -0700921 dout("symlink in dir %p dentry %p to '%s'\n", dir, dentry, dest);
922 req = ceph_mdsc_create_request(mdsc, CEPH_MDS_OP_SYMLINK, USE_AUTH_MDS);
923 if (IS_ERR(req)) {
Yan, Zhengb1ee94a2014-09-16 20:35:17 +0800924 err = PTR_ERR(req);
925 goto out;
Sage Weil2817b002009-10-06 11:31:08 -0700926 }
Yan, Zheng687265e2015-06-13 17:27:05 +0800927 req->r_path2 = kstrdup(dest, GFP_KERNEL);
Sanidhya Kashyapa149bb92015-03-21 12:54:58 -0400928 if (!req->r_path2) {
929 err = -ENOMEM;
930 ceph_mdsc_put_request(req);
931 goto out;
932 }
Jeff Layton3dd69aa2017-01-31 10:28:26 -0500933 req->r_parent = dir;
Jeff Layton4c183472021-06-18 13:05:06 -0400934 ihold(dir);
935
Jeff Layton3dd69aa2017-01-31 10:28:26 -0500936 set_bit(CEPH_MDS_R_PARENT_LOCKED, &req->r_req_flags);
Sage Weil2817b002009-10-06 11:31:08 -0700937 req->r_dentry = dget(dentry);
938 req->r_num_caps = 2;
Yan, Zheng222b7f92017-11-23 17:47:15 +0800939 req->r_dentry_drop = CEPH_CAP_FILE_SHARED | CEPH_CAP_AUTH_EXCL;
Sage Weil2817b002009-10-06 11:31:08 -0700940 req->r_dentry_unless = CEPH_CAP_FILE_EXCL;
Jeff Laytonb748fc72020-07-28 10:34:20 -0400941 if (as_ctx.pagelist) {
942 req->r_pagelist = as_ctx.pagelist;
943 as_ctx.pagelist = NULL;
944 }
Sage Weil2817b002009-10-06 11:31:08 -0700945 err = ceph_mdsc_do_request(mdsc, dir, req);
946 if (!err && !req->r_reply_info.head->is_dentry)
947 err = ceph_handle_notrace_create(dir, dentry);
948 ceph_mdsc_put_request(req);
Yan, Zhengb1ee94a2014-09-16 20:35:17 +0800949out:
950 if (err)
Sage Weil2817b002009-10-06 11:31:08 -0700951 d_drop(dentry);
Yan, Zhengac6713c2019-05-26 16:27:56 +0800952 ceph_release_acl_sec_ctx(&as_ctx);
Sage Weil2817b002009-10-06 11:31:08 -0700953 return err;
954}
955
Christian Brauner549c7292021-01-21 14:19:43 +0100956static int ceph_mkdir(struct user_namespace *mnt_userns, struct inode *dir,
957 struct dentry *dentry, umode_t mode)
Sage Weil2817b002009-10-06 11:31:08 -0700958{
Xiubo Li2678da82020-09-03 09:01:39 -0400959 struct ceph_mds_client *mdsc = ceph_sb_to_mdsc(dir->i_sb);
Sage Weil2817b002009-10-06 11:31:08 -0700960 struct ceph_mds_request *req;
Yan, Zheng5c31e922019-05-26 15:35:39 +0800961 struct ceph_acl_sec_ctx as_ctx = {};
Sage Weil2817b002009-10-06 11:31:08 -0700962 int err = -EROFS;
963 int op;
964
965 if (ceph_snap(dir) == CEPH_SNAPDIR) {
966 /* mkdir .snap/foo is a MKSNAP */
967 op = CEPH_MDS_OP_MKSNAP;
Al Viroa4555892014-10-21 20:11:25 -0400968 dout("mksnap dir %p snap '%pd' dn %p\n", dir,
969 dentry, dentry);
Sage Weil2817b002009-10-06 11:31:08 -0700970 } else if (ceph_snap(dir) == CEPH_NOSNAP) {
Al Viro18bb1db2011-07-26 01:41:39 -0400971 dout("mkdir dir %p dn %p mode 0%ho\n", dir, dentry, mode);
Sage Weil2817b002009-10-06 11:31:08 -0700972 op = CEPH_MDS_OP_MKDIR;
973 } else {
974 goto out;
975 }
Yan, Zhengb1ee94a2014-09-16 20:35:17 +0800976
Yan, Zheng25963662018-01-12 16:26:17 +0800977 if (op == CEPH_MDS_OP_MKDIR &&
978 ceph_quota_is_max_files_exceeded(dir)) {
Luis Henriquesb7a29212018-01-05 10:47:19 +0000979 err = -EDQUOT;
980 goto out;
981 }
982
Yan, Zhengb1ee94a2014-09-16 20:35:17 +0800983 mode |= S_IFDIR;
Yan, Zheng5c31e922019-05-26 15:35:39 +0800984 err = ceph_pre_init_acls(dir, &mode, &as_ctx);
Yan, Zhengb1ee94a2014-09-16 20:35:17 +0800985 if (err < 0)
986 goto out;
Yan, Zhengac6713c2019-05-26 16:27:56 +0800987 err = ceph_security_init_secctx(dentry, mode, &as_ctx);
988 if (err < 0)
989 goto out;
Yan, Zhengb1ee94a2014-09-16 20:35:17 +0800990
Sage Weil2817b002009-10-06 11:31:08 -0700991 req = ceph_mdsc_create_request(mdsc, op, USE_AUTH_MDS);
992 if (IS_ERR(req)) {
993 err = PTR_ERR(req);
994 goto out;
995 }
996
997 req->r_dentry = dget(dentry);
998 req->r_num_caps = 2;
Jeff Layton3dd69aa2017-01-31 10:28:26 -0500999 req->r_parent = dir;
Jeff Layton4c183472021-06-18 13:05:06 -04001000 ihold(dir);
Jeff Layton3dd69aa2017-01-31 10:28:26 -05001001 set_bit(CEPH_MDS_R_PARENT_LOCKED, &req->r_req_flags);
Sage Weil2817b002009-10-06 11:31:08 -07001002 req->r_args.mkdir.mode = cpu_to_le32(mode);
Yan, Zheng222b7f92017-11-23 17:47:15 +08001003 req->r_dentry_drop = CEPH_CAP_FILE_SHARED | CEPH_CAP_AUTH_EXCL;
Sage Weil2817b002009-10-06 11:31:08 -07001004 req->r_dentry_unless = CEPH_CAP_FILE_EXCL;
Yan, Zheng5c31e922019-05-26 15:35:39 +08001005 if (as_ctx.pagelist) {
1006 req->r_pagelist = as_ctx.pagelist;
1007 as_ctx.pagelist = NULL;
Yan, Zhengb1ee94a2014-09-16 20:35:17 +08001008 }
Sage Weil2817b002009-10-06 11:31:08 -07001009 err = ceph_mdsc_do_request(mdsc, dir, req);
Yan, Zheng275dd192014-12-10 16:17:31 +08001010 if (!err &&
1011 !req->r_reply_info.head->is_target &&
1012 !req->r_reply_info.head->is_dentry)
Sage Weil2817b002009-10-06 11:31:08 -07001013 err = ceph_handle_notrace_create(dir, dentry);
1014 ceph_mdsc_put_request(req);
1015out:
Yan, Zhengb20a95a2014-02-11 12:55:05 +08001016 if (!err)
Yan, Zheng5c31e922019-05-26 15:35:39 +08001017 ceph_init_inode_acls(d_inode(dentry), &as_ctx);
Yan, Zhengb20a95a2014-02-11 12:55:05 +08001018 else
Sage Weil2817b002009-10-06 11:31:08 -07001019 d_drop(dentry);
Yan, Zheng5c31e922019-05-26 15:35:39 +08001020 ceph_release_acl_sec_ctx(&as_ctx);
Sage Weil2817b002009-10-06 11:31:08 -07001021 return err;
1022}
1023
1024static int ceph_link(struct dentry *old_dentry, struct inode *dir,
1025 struct dentry *dentry)
1026{
Xiubo Li2678da82020-09-03 09:01:39 -04001027 struct ceph_mds_client *mdsc = ceph_sb_to_mdsc(dir->i_sb);
Sage Weil2817b002009-10-06 11:31:08 -07001028 struct ceph_mds_request *req;
1029 int err;
1030
1031 if (ceph_snap(dir) != CEPH_NOSNAP)
1032 return -EROFS;
1033
1034 dout("link in dir %p old_dentry %p dentry %p\n", dir,
1035 old_dentry, dentry);
1036 req = ceph_mdsc_create_request(mdsc, CEPH_MDS_OP_LINK, USE_AUTH_MDS);
1037 if (IS_ERR(req)) {
1038 d_drop(dentry);
1039 return PTR_ERR(req);
1040 }
1041 req->r_dentry = dget(dentry);
1042 req->r_num_caps = 2;
Sage Weil4b58c9b192013-02-05 13:41:23 -08001043 req->r_old_dentry = dget(old_dentry);
Jeff Layton3dd69aa2017-01-31 10:28:26 -05001044 req->r_parent = dir;
Jeff Layton4c183472021-06-18 13:05:06 -04001045 ihold(dir);
Jeff Layton3dd69aa2017-01-31 10:28:26 -05001046 set_bit(CEPH_MDS_R_PARENT_LOCKED, &req->r_req_flags);
Sage Weil2817b002009-10-06 11:31:08 -07001047 req->r_dentry_drop = CEPH_CAP_FILE_SHARED;
1048 req->r_dentry_unless = CEPH_CAP_FILE_EXCL;
Yan, Zhengad88f232013-07-21 20:25:25 +08001049 /* release LINK_SHARED on source inode (mds will lock it) */
Yan, Zhengd19a0b52017-11-23 17:59:13 +08001050 req->r_old_inode_drop = CEPH_CAP_LINK_SHARED | CEPH_CAP_LINK_EXCL;
Sage Weil2817b002009-10-06 11:31:08 -07001051 err = ceph_mdsc_do_request(mdsc, dir, req);
Sage Weil70b666c2011-05-27 09:24:26 -07001052 if (err) {
Sage Weil2817b002009-10-06 11:31:08 -07001053 d_drop(dentry);
Sage Weil70b666c2011-05-27 09:24:26 -07001054 } else if (!req->r_reply_info.head->is_dentry) {
David Howells2b0143b2015-03-17 22:25:59 +00001055 ihold(d_inode(old_dentry));
1056 d_instantiate(dentry, d_inode(old_dentry));
Sage Weil70b666c2011-05-27 09:24:26 -07001057 }
Sage Weil2817b002009-10-06 11:31:08 -07001058 ceph_mdsc_put_request(req);
1059 return err;
1060}
1061
Jeff Layton2ccb4542019-04-02 15:35:56 -04001062static void ceph_async_unlink_cb(struct ceph_mds_client *mdsc,
1063 struct ceph_mds_request *req)
1064{
1065 int result = req->r_err ? req->r_err :
1066 le32_to_cpu(req->r_reply_info.head->result);
1067
1068 if (result == -EJUKEBOX)
1069 goto out;
1070
1071 /* If op failed, mark everyone involved for errors */
1072 if (result) {
Jeff Layton2a575f132020-04-08 08:41:38 -04001073 int pathlen = 0;
1074 u64 base = 0;
Jeff Layton2ccb4542019-04-02 15:35:56 -04001075 char *path = ceph_mdsc_build_path(req->r_dentry, &pathlen,
1076 &base, 0);
1077
1078 /* mark error on parent + clear complete */
1079 mapping_set_error(req->r_parent->i_mapping, result);
1080 ceph_dir_clear_complete(req->r_parent);
1081
1082 /* drop the dentry -- we don't know its status */
1083 if (!d_unhashed(req->r_dentry))
1084 d_drop(req->r_dentry);
1085
1086 /* mark inode itself for an error (since metadata is bogus) */
1087 mapping_set_error(req->r_old_inode->i_mapping, result);
1088
1089 pr_warn("ceph: async unlink failure path=(%llx)%s result=%d!\n",
1090 base, IS_ERR(path) ? "<<bad>>" : path, result);
1091 ceph_mdsc_free_path(path, pathlen);
1092 }
1093out:
1094 iput(req->r_old_inode);
1095 ceph_mdsc_release_dir_caps(req);
1096}
1097
1098static int get_caps_for_async_unlink(struct inode *dir, struct dentry *dentry)
1099{
1100 struct ceph_inode_info *ci = ceph_inode(dir);
1101 struct ceph_dentry_info *di;
1102 int got = 0, want = CEPH_CAP_FILE_EXCL | CEPH_CAP_DIR_UNLINK;
1103
1104 spin_lock(&ci->i_ceph_lock);
1105 if ((__ceph_caps_issued(ci, NULL) & want) == want) {
1106 ceph_take_cap_refs(ci, want, false);
1107 got = want;
1108 }
1109 spin_unlock(&ci->i_ceph_lock);
1110
1111 /* If we didn't get anything, return 0 */
1112 if (!got)
1113 return 0;
1114
1115 spin_lock(&dentry->d_lock);
1116 di = ceph_dentry(dentry);
1117 /*
1118 * - We are holding Fx, which implies Fs caps.
1119 * - Only support async unlink for primary linkage
1120 */
1121 if (atomic_read(&ci->i_shared_gen) != di->lease_shared_gen ||
1122 !(di->flags & CEPH_DENTRY_PRIMARY_LINK))
1123 want = 0;
1124 spin_unlock(&dentry->d_lock);
1125
1126 /* Do we still want what we've got? */
1127 if (want == got)
1128 return got;
1129
1130 ceph_put_cap_refs(ci, got);
1131 return 0;
1132}
1133
Sage Weil2817b002009-10-06 11:31:08 -07001134/*
Sage Weil2817b002009-10-06 11:31:08 -07001135 * rmdir and unlink are differ only by the metadata op code
1136 */
1137static int ceph_unlink(struct inode *dir, struct dentry *dentry)
1138{
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -07001139 struct ceph_fs_client *fsc = ceph_sb_to_client(dir->i_sb);
1140 struct ceph_mds_client *mdsc = fsc->mdsc;
David Howells2b0143b2015-03-17 22:25:59 +00001141 struct inode *inode = d_inode(dentry);
Sage Weil2817b002009-10-06 11:31:08 -07001142 struct ceph_mds_request *req;
Jeff Layton2ccb4542019-04-02 15:35:56 -04001143 bool try_async = ceph_test_mount_opt(fsc, ASYNC_DIROPS);
Sage Weil2817b002009-10-06 11:31:08 -07001144 int err = -EROFS;
1145 int op;
1146
1147 if (ceph_snap(dir) == CEPH_SNAPDIR) {
1148 /* rmdir .snap/foo is RMSNAP */
Al Viroa4555892014-10-21 20:11:25 -04001149 dout("rmsnap dir %p '%pd' dn %p\n", dir, dentry, dentry);
Sage Weil2817b002009-10-06 11:31:08 -07001150 op = CEPH_MDS_OP_RMSNAP;
1151 } else if (ceph_snap(dir) == CEPH_NOSNAP) {
1152 dout("unlink/rmdir dir %p dn %p inode %p\n",
1153 dir, dentry, inode);
David Howellse36cb0b2015-01-29 12:02:35 +00001154 op = d_is_dir(dentry) ?
Sage Weil2817b002009-10-06 11:31:08 -07001155 CEPH_MDS_OP_RMDIR : CEPH_MDS_OP_UNLINK;
1156 } else
1157 goto out;
Jeff Layton2ccb4542019-04-02 15:35:56 -04001158retry:
Sage Weil2817b002009-10-06 11:31:08 -07001159 req = ceph_mdsc_create_request(mdsc, op, USE_AUTH_MDS);
1160 if (IS_ERR(req)) {
1161 err = PTR_ERR(req);
1162 goto out;
1163 }
1164 req->r_dentry = dget(dentry);
1165 req->r_num_caps = 2;
Jeff Layton3dd69aa2017-01-31 10:28:26 -05001166 req->r_parent = dir;
Jeff Layton4c183472021-06-18 13:05:06 -04001167 ihold(dir);
Sage Weil2817b002009-10-06 11:31:08 -07001168 req->r_dentry_drop = CEPH_CAP_FILE_SHARED;
1169 req->r_dentry_unless = CEPH_CAP_FILE_EXCL;
Zhi Zhang6ef0bc62018-01-24 21:24:33 +08001170 req->r_inode_drop = ceph_drop_caps_for_unlink(inode);
Jeff Layton2ccb4542019-04-02 15:35:56 -04001171
1172 if (try_async && op == CEPH_MDS_OP_UNLINK &&
1173 (req->r_dir_caps = get_caps_for_async_unlink(dir, dentry))) {
Jeff Laytonebce3eb2020-08-18 08:03:48 -04001174 dout("async unlink on %llu/%.*s caps=%s", ceph_ino(dir),
Jeff Layton2ccb4542019-04-02 15:35:56 -04001175 dentry->d_name.len, dentry->d_name.name,
1176 ceph_cap_string(req->r_dir_caps));
1177 set_bit(CEPH_MDS_R_ASYNC, &req->r_req_flags);
1178 req->r_callback = ceph_async_unlink_cb;
1179 req->r_old_inode = d_inode(dentry);
1180 ihold(req->r_old_inode);
1181 err = ceph_mdsc_submit_request(mdsc, dir, req);
1182 if (!err) {
1183 /*
1184 * We have enough caps, so we assume that the unlink
1185 * will succeed. Fix up the target inode and dcache.
1186 */
1187 drop_nlink(inode);
1188 d_delete(dentry);
1189 } else if (err == -EJUKEBOX) {
1190 try_async = false;
1191 ceph_mdsc_put_request(req);
1192 goto retry;
1193 }
1194 } else {
1195 set_bit(CEPH_MDS_R_PARENT_LOCKED, &req->r_req_flags);
1196 err = ceph_mdsc_do_request(mdsc, dir, req);
1197 if (!err && !req->r_reply_info.head->is_dentry)
1198 d_delete(dentry);
1199 }
1200
Sage Weil2817b002009-10-06 11:31:08 -07001201 ceph_mdsc_put_request(req);
1202out:
1203 return err;
1204}
1205
Christian Brauner549c7292021-01-21 14:19:43 +01001206static int ceph_rename(struct user_namespace *mnt_userns, struct inode *old_dir,
1207 struct dentry *old_dentry, struct inode *new_dir,
1208 struct dentry *new_dentry, unsigned int flags)
Sage Weil2817b002009-10-06 11:31:08 -07001209{
Xiubo Li2678da82020-09-03 09:01:39 -04001210 struct ceph_mds_client *mdsc = ceph_sb_to_mdsc(old_dir->i_sb);
Sage Weil2817b002009-10-06 11:31:08 -07001211 struct ceph_mds_request *req;
Yan, Zheng0ea611a2015-04-07 15:36:32 +08001212 int op = CEPH_MDS_OP_RENAME;
Sage Weil2817b002009-10-06 11:31:08 -07001213 int err;
1214
Miklos Szeredi1cd66c92016-09-27 11:03:58 +02001215 if (flags)
1216 return -EINVAL;
1217
Sage Weil2817b002009-10-06 11:31:08 -07001218 if (ceph_snap(old_dir) != ceph_snap(new_dir))
1219 return -EXDEV;
Yan, Zheng0ea611a2015-04-07 15:36:32 +08001220 if (ceph_snap(old_dir) != CEPH_NOSNAP) {
1221 if (old_dir == new_dir && ceph_snap(old_dir) == CEPH_SNAPDIR)
1222 op = CEPH_MDS_OP_RENAMESNAP;
1223 else
1224 return -EROFS;
1225 }
Luis Henriques6646ea12020-11-12 15:23:21 +00001226 /* don't allow cross-quota renames */
1227 if ((old_dir != new_dir) &&
1228 (!ceph_quota_is_same_realm(old_dir, new_dir)))
1229 return -EXDEV;
Luis Henriquescafe21a2018-01-05 10:47:20 +00001230
Sage Weil2817b002009-10-06 11:31:08 -07001231 dout("rename dir %p dentry %p to dir %p dentry %p\n",
1232 old_dir, old_dentry, new_dir, new_dentry);
Yan, Zheng0ea611a2015-04-07 15:36:32 +08001233 req = ceph_mdsc_create_request(mdsc, op, USE_AUTH_MDS);
Sage Weil2817b002009-10-06 11:31:08 -07001234 if (IS_ERR(req))
1235 return PTR_ERR(req);
Sage Weil180061a2013-02-05 13:36:05 -08001236 ihold(old_dir);
Sage Weil2817b002009-10-06 11:31:08 -07001237 req->r_dentry = dget(new_dentry);
1238 req->r_num_caps = 2;
1239 req->r_old_dentry = dget(old_dentry);
Sage Weil180061a2013-02-05 13:36:05 -08001240 req->r_old_dentry_dir = old_dir;
Jeff Layton3dd69aa2017-01-31 10:28:26 -05001241 req->r_parent = new_dir;
Jeff Layton4c183472021-06-18 13:05:06 -04001242 ihold(new_dir);
Jeff Layton3dd69aa2017-01-31 10:28:26 -05001243 set_bit(CEPH_MDS_R_PARENT_LOCKED, &req->r_req_flags);
Sage Weil2817b002009-10-06 11:31:08 -07001244 req->r_old_dentry_drop = CEPH_CAP_FILE_SHARED;
1245 req->r_old_dentry_unless = CEPH_CAP_FILE_EXCL;
1246 req->r_dentry_drop = CEPH_CAP_FILE_SHARED;
1247 req->r_dentry_unless = CEPH_CAP_FILE_EXCL;
1248 /* release LINK_RDCACHE on source inode (mds will lock it) */
Yan, Zhengd19a0b52017-11-23 17:59:13 +08001249 req->r_old_inode_drop = CEPH_CAP_LINK_SHARED | CEPH_CAP_LINK_EXCL;
Zhi Zhang6ef0bc62018-01-24 21:24:33 +08001250 if (d_really_is_positive(new_dentry)) {
1251 req->r_inode_drop =
1252 ceph_drop_caps_for_unlink(d_inode(new_dentry));
1253 }
Sage Weil2817b002009-10-06 11:31:08 -07001254 err = ceph_mdsc_do_request(mdsc, old_dir, req);
1255 if (!err && !req->r_reply_info.head->is_dentry) {
1256 /*
1257 * Normally d_move() is done by fill_trace (called by
1258 * do_request, above). If there is no trace, we need
1259 * to do it here.
1260 */
1261 d_move(old_dentry, new_dentry);
1262 }
1263 ceph_mdsc_put_request(req);
1264 return err;
1265}
1266
Sage Weil81a6cf22010-05-14 09:35:38 -07001267/*
Yan, Zheng37c4efc2019-01-31 16:55:51 +08001268 * Move dentry to tail of mdsc->dentry_leases list when lease is updated.
1269 * Leases at front of the list will expire first. (Assume all leases have
1270 * similar duration)
1271 *
1272 * Called under dentry->d_lock.
1273 */
1274void __ceph_dentry_lease_touch(struct ceph_dentry_info *di)
1275{
1276 struct dentry *dn = di->dentry;
1277 struct ceph_mds_client *mdsc;
1278
1279 dout("dentry_lease_touch %p %p '%pd'\n", di, dn, dn);
1280
1281 di->flags |= CEPH_DENTRY_LEASE_LIST;
1282 if (di->flags & CEPH_DENTRY_SHRINK_LIST) {
1283 di->flags |= CEPH_DENTRY_REFERENCED;
1284 return;
1285 }
1286
1287 mdsc = ceph_sb_to_client(dn->d_sb)->mdsc;
1288 spin_lock(&mdsc->dentry_list_lock);
1289 list_move_tail(&di->lease_list, &mdsc->dentry_leases);
1290 spin_unlock(&mdsc->dentry_list_lock);
1291}
1292
1293static void __dentry_dir_lease_touch(struct ceph_mds_client* mdsc,
1294 struct ceph_dentry_info *di)
1295{
1296 di->flags &= ~(CEPH_DENTRY_LEASE_LIST | CEPH_DENTRY_REFERENCED);
1297 di->lease_gen = 0;
1298 di->time = jiffies;
1299 list_move_tail(&di->lease_list, &mdsc->dentry_dir_leases);
1300}
1301
1302/*
1303 * When dir lease is used, add dentry to tail of mdsc->dentry_dir_leases
1304 * list if it's not in the list, otherwise set 'referenced' flag.
1305 *
1306 * Called under dentry->d_lock.
1307 */
1308void __ceph_dentry_dir_lease_touch(struct ceph_dentry_info *di)
1309{
1310 struct dentry *dn = di->dentry;
1311 struct ceph_mds_client *mdsc;
1312
Xiubo Li0eb30852019-12-18 21:15:18 -05001313 dout("dentry_dir_lease_touch %p %p '%pd' (offset 0x%llx)\n",
Yan, Zheng37c4efc2019-01-31 16:55:51 +08001314 di, dn, dn, di->offset);
1315
1316 if (!list_empty(&di->lease_list)) {
1317 if (di->flags & CEPH_DENTRY_LEASE_LIST) {
1318 /* don't remove dentry from dentry lease list
1319 * if its lease is valid */
1320 if (__dentry_lease_is_valid(di))
1321 return;
1322 } else {
1323 di->flags |= CEPH_DENTRY_REFERENCED;
1324 return;
1325 }
1326 }
1327
1328 if (di->flags & CEPH_DENTRY_SHRINK_LIST) {
1329 di->flags |= CEPH_DENTRY_REFERENCED;
1330 di->flags &= ~CEPH_DENTRY_LEASE_LIST;
1331 return;
1332 }
1333
1334 mdsc = ceph_sb_to_client(dn->d_sb)->mdsc;
1335 spin_lock(&mdsc->dentry_list_lock);
1336 __dentry_dir_lease_touch(mdsc, di),
1337 spin_unlock(&mdsc->dentry_list_lock);
1338}
1339
1340static void __dentry_lease_unlist(struct ceph_dentry_info *di)
1341{
1342 struct ceph_mds_client *mdsc;
1343 if (di->flags & CEPH_DENTRY_SHRINK_LIST)
1344 return;
1345 if (list_empty(&di->lease_list))
1346 return;
1347
1348 mdsc = ceph_sb_to_client(di->dentry->d_sb)->mdsc;
1349 spin_lock(&mdsc->dentry_list_lock);
1350 list_del_init(&di->lease_list);
1351 spin_unlock(&mdsc->dentry_list_lock);
1352}
1353
1354enum {
1355 KEEP = 0,
1356 DELETE = 1,
1357 TOUCH = 2,
1358 STOP = 4,
1359};
1360
1361struct ceph_lease_walk_control {
1362 bool dir_lease;
Yan, Zhengfe330322019-02-01 14:57:15 +08001363 bool expire_dir_lease;
Yan, Zheng37c4efc2019-01-31 16:55:51 +08001364 unsigned long nr_to_scan;
1365 unsigned long dir_lease_ttl;
1366};
1367
1368static unsigned long
1369__dentry_leases_walk(struct ceph_mds_client *mdsc,
1370 struct ceph_lease_walk_control *lwc,
1371 int (*check)(struct dentry*, void*))
1372{
1373 struct ceph_dentry_info *di, *tmp;
1374 struct dentry *dentry, *last = NULL;
1375 struct list_head* list;
1376 LIST_HEAD(dispose);
1377 unsigned long freed = 0;
1378 int ret = 0;
1379
1380 list = lwc->dir_lease ? &mdsc->dentry_dir_leases : &mdsc->dentry_leases;
1381 spin_lock(&mdsc->dentry_list_lock);
1382 list_for_each_entry_safe(di, tmp, list, lease_list) {
1383 if (!lwc->nr_to_scan)
1384 break;
1385 --lwc->nr_to_scan;
1386
1387 dentry = di->dentry;
1388 if (last == dentry)
1389 break;
1390
1391 if (!spin_trylock(&dentry->d_lock))
1392 continue;
1393
Al Viro516162b92019-06-27 22:25:23 -04001394 if (__lockref_is_dead(&dentry->d_lockref)) {
Yan, Zheng37c4efc2019-01-31 16:55:51 +08001395 list_del_init(&di->lease_list);
1396 goto next;
1397 }
1398
1399 ret = check(dentry, lwc);
1400 if (ret & TOUCH) {
1401 /* move it into tail of dir lease list */
1402 __dentry_dir_lease_touch(mdsc, di);
1403 if (!last)
1404 last = dentry;
1405 }
1406 if (ret & DELETE) {
1407 /* stale lease */
1408 di->flags &= ~CEPH_DENTRY_REFERENCED;
1409 if (dentry->d_lockref.count > 0) {
1410 /* update_dentry_lease() will re-add
1411 * it to lease list, or
1412 * ceph_d_delete() will return 1 when
1413 * last reference is dropped */
1414 list_del_init(&di->lease_list);
1415 } else {
1416 di->flags |= CEPH_DENTRY_SHRINK_LIST;
1417 list_move_tail(&di->lease_list, &dispose);
1418 dget_dlock(dentry);
1419 }
1420 }
1421next:
1422 spin_unlock(&dentry->d_lock);
1423 if (ret & STOP)
1424 break;
1425 }
1426 spin_unlock(&mdsc->dentry_list_lock);
1427
1428 while (!list_empty(&dispose)) {
1429 di = list_first_entry(&dispose, struct ceph_dentry_info,
1430 lease_list);
1431 dentry = di->dentry;
1432 spin_lock(&dentry->d_lock);
1433
1434 list_del_init(&di->lease_list);
1435 di->flags &= ~CEPH_DENTRY_SHRINK_LIST;
1436 if (di->flags & CEPH_DENTRY_REFERENCED) {
1437 spin_lock(&mdsc->dentry_list_lock);
1438 if (di->flags & CEPH_DENTRY_LEASE_LIST) {
1439 list_add_tail(&di->lease_list,
1440 &mdsc->dentry_leases);
1441 } else {
1442 __dentry_dir_lease_touch(mdsc, di);
1443 }
1444 spin_unlock(&mdsc->dentry_list_lock);
1445 } else {
1446 freed++;
1447 }
1448
1449 spin_unlock(&dentry->d_lock);
1450 /* ceph_d_delete() does the trick */
1451 dput(dentry);
1452 }
1453 return freed;
1454}
1455
1456static int __dentry_lease_check(struct dentry *dentry, void *arg)
1457{
1458 struct ceph_dentry_info *di = ceph_dentry(dentry);
1459 int ret;
1460
1461 if (__dentry_lease_is_valid(di))
1462 return STOP;
1463 ret = __dir_lease_try_check(dentry);
1464 if (ret == -EBUSY)
1465 return KEEP;
1466 if (ret > 0)
1467 return TOUCH;
1468 return DELETE;
1469}
1470
1471static int __dir_lease_check(struct dentry *dentry, void *arg)
1472{
1473 struct ceph_lease_walk_control *lwc = arg;
1474 struct ceph_dentry_info *di = ceph_dentry(dentry);
1475
1476 int ret = __dir_lease_try_check(dentry);
1477 if (ret == -EBUSY)
1478 return KEEP;
1479 if (ret > 0) {
1480 if (time_before(jiffies, di->time + lwc->dir_lease_ttl))
1481 return STOP;
1482 /* Move dentry to tail of dir lease list if we don't want
1483 * to delete it. So dentries in the list are checked in a
1484 * round robin manner */
Yan, Zhengfe330322019-02-01 14:57:15 +08001485 if (!lwc->expire_dir_lease)
1486 return TOUCH;
1487 if (dentry->d_lockref.count > 0 ||
1488 (di->flags & CEPH_DENTRY_REFERENCED))
1489 return TOUCH;
1490 /* invalidate dir lease */
1491 di->lease_shared_gen = 0;
Yan, Zheng37c4efc2019-01-31 16:55:51 +08001492 }
1493 return DELETE;
1494}
1495
1496int ceph_trim_dentries(struct ceph_mds_client *mdsc)
1497{
1498 struct ceph_lease_walk_control lwc;
Yan, Zhengfe330322019-02-01 14:57:15 +08001499 unsigned long count;
Yan, Zheng37c4efc2019-01-31 16:55:51 +08001500 unsigned long freed;
1501
Yan, Zhengfe330322019-02-01 14:57:15 +08001502 spin_lock(&mdsc->caps_list_lock);
1503 if (mdsc->caps_use_max > 0 &&
1504 mdsc->caps_use_count > mdsc->caps_use_max)
1505 count = mdsc->caps_use_count - mdsc->caps_use_max;
1506 else
1507 count = 0;
1508 spin_unlock(&mdsc->caps_list_lock);
1509
Yan, Zheng37c4efc2019-01-31 16:55:51 +08001510 lwc.dir_lease = false;
1511 lwc.nr_to_scan = CEPH_CAPS_PER_RELEASE * 2;
1512 freed = __dentry_leases_walk(mdsc, &lwc, __dentry_lease_check);
1513 if (!lwc.nr_to_scan) /* more invalid leases */
1514 return -EAGAIN;
1515
1516 if (lwc.nr_to_scan < CEPH_CAPS_PER_RELEASE)
1517 lwc.nr_to_scan = CEPH_CAPS_PER_RELEASE;
1518
1519 lwc.dir_lease = true;
Yan, Zhengfe330322019-02-01 14:57:15 +08001520 lwc.expire_dir_lease = freed < count;
1521 lwc.dir_lease_ttl = mdsc->fsc->mount_options->caps_wanted_delay_max * HZ;
Yan, Zheng37c4efc2019-01-31 16:55:51 +08001522 freed +=__dentry_leases_walk(mdsc, &lwc, __dir_lease_check);
1523 if (!lwc.nr_to_scan) /* more to check */
1524 return -EAGAIN;
1525
1526 return freed > 0 ? 1 : 0;
1527}
1528
1529/*
Sage Weil81a6cf22010-05-14 09:35:38 -07001530 * Ensure a dentry lease will no longer revalidate.
1531 */
1532void ceph_invalidate_dentry_lease(struct dentry *dentry)
1533{
Yan, Zheng37c4efc2019-01-31 16:55:51 +08001534 struct ceph_dentry_info *di = ceph_dentry(dentry);
Sage Weil81a6cf22010-05-14 09:35:38 -07001535 spin_lock(&dentry->d_lock);
Yan, Zheng37c4efc2019-01-31 16:55:51 +08001536 di->time = jiffies;
1537 di->lease_shared_gen = 0;
Jeff Laytonf5e17ae2020-02-18 14:12:32 -05001538 di->flags &= ~CEPH_DENTRY_PRIMARY_LINK;
Yan, Zheng37c4efc2019-01-31 16:55:51 +08001539 __dentry_lease_unlist(di);
Sage Weil81a6cf22010-05-14 09:35:38 -07001540 spin_unlock(&dentry->d_lock);
1541}
Sage Weil2817b002009-10-06 11:31:08 -07001542
1543/*
1544 * Check if dentry lease is valid. If not, delete the lease. Try to
1545 * renew if the least is more than half up.
1546 */
Yan, Zheng1e9c2eb2019-01-28 20:43:55 +08001547static bool __dentry_lease_is_valid(struct ceph_dentry_info *di)
1548{
1549 struct ceph_mds_session *session;
1550
1551 if (!di->lease_gen)
1552 return false;
1553
1554 session = di->lease_session;
1555 if (session) {
1556 u32 gen;
1557 unsigned long ttl;
1558
Jeff Layton52d60f82021-06-04 12:03:09 -04001559 gen = atomic_read(&session->s_cap_gen);
Yan, Zheng1e9c2eb2019-01-28 20:43:55 +08001560 ttl = session->s_cap_ttl;
Yan, Zheng1e9c2eb2019-01-28 20:43:55 +08001561
1562 if (di->lease_gen == gen &&
1563 time_before(jiffies, ttl) &&
1564 time_before(jiffies, di->time))
1565 return true;
1566 }
1567 di->lease_gen = 0;
1568 return false;
1569}
1570
Yan, Zheng8f2a98ef2019-05-23 10:45:24 +08001571static int dentry_lease_is_valid(struct dentry *dentry, unsigned int flags)
Sage Weil2817b002009-10-06 11:31:08 -07001572{
1573 struct ceph_dentry_info *di;
Sage Weil2817b002009-10-06 11:31:08 -07001574 struct ceph_mds_session *session = NULL;
Sage Weil2817b002009-10-06 11:31:08 -07001575 u32 seq = 0;
Yan, Zheng1e9c2eb2019-01-28 20:43:55 +08001576 int valid = 0;
Sage Weil2817b002009-10-06 11:31:08 -07001577
1578 spin_lock(&dentry->d_lock);
1579 di = ceph_dentry(dentry);
Yan, Zheng1e9c2eb2019-01-28 20:43:55 +08001580 if (di && __dentry_lease_is_valid(di)) {
1581 valid = 1;
Sage Weil2817b002009-10-06 11:31:08 -07001582
Yan, Zheng1e9c2eb2019-01-28 20:43:55 +08001583 if (di->lease_renew_after &&
1584 time_after(jiffies, di->lease_renew_after)) {
1585 /*
1586 * We should renew. If we're in RCU walk mode
1587 * though, we can't do that so just return
1588 * -ECHILD.
1589 */
1590 if (flags & LOOKUP_RCU) {
1591 valid = -ECHILD;
1592 } else {
1593 session = ceph_get_mds_session(di->lease_session);
1594 seq = di->lease_seq;
1595 di->lease_renew_after = 0;
1596 di->lease_renew_from = jiffies;
Sage Weil2817b002009-10-06 11:31:08 -07001597 }
Sage Weil2817b002009-10-06 11:31:08 -07001598 }
1599 }
1600 spin_unlock(&dentry->d_lock);
1601
1602 if (session) {
Yan, Zheng8f2a98ef2019-05-23 10:45:24 +08001603 ceph_mdsc_lease_send_msg(session, dentry,
Sage Weil2817b002009-10-06 11:31:08 -07001604 CEPH_MDS_LEASE_RENEW, seq);
1605 ceph_put_mds_session(session);
1606 }
1607 dout("dentry_lease_is_valid - dentry %p = %d\n", dentry, valid);
1608 return valid;
1609}
1610
1611/*
Yan, Zheng1e9c2eb2019-01-28 20:43:55 +08001612 * Called under dentry->d_lock.
1613 */
1614static int __dir_lease_try_check(const struct dentry *dentry)
1615{
1616 struct ceph_dentry_info *di = ceph_dentry(dentry);
1617 struct inode *dir;
1618 struct ceph_inode_info *ci;
1619 int valid = 0;
1620
1621 if (!di->lease_shared_gen)
1622 return 0;
1623 if (IS_ROOT(dentry))
1624 return 0;
1625
1626 dir = d_inode(dentry->d_parent);
1627 ci = ceph_inode(dir);
1628
1629 if (spin_trylock(&ci->i_ceph_lock)) {
1630 if (atomic_read(&ci->i_shared_gen) == di->lease_shared_gen &&
1631 __ceph_caps_issued_mask(ci, CEPH_CAP_FILE_SHARED, 0))
1632 valid = 1;
1633 spin_unlock(&ci->i_ceph_lock);
1634 } else {
1635 valid = -EBUSY;
1636 }
1637
1638 if (!valid)
1639 di->lease_shared_gen = 0;
1640 return valid;
1641}
1642
1643/*
Sage Weil2817b002009-10-06 11:31:08 -07001644 * Check if directory-wide content lease/cap is valid.
1645 */
Yan, Zheng719a2512020-03-05 20:21:00 +08001646static int dir_lease_is_valid(struct inode *dir, struct dentry *dentry,
1647 struct ceph_mds_client *mdsc)
Sage Weil2817b002009-10-06 11:31:08 -07001648{
1649 struct ceph_inode_info *ci = ceph_inode(dir);
Yan, Zhengfeab6ac2019-05-22 17:26:27 +08001650 int valid;
1651 int shared_gen;
Sage Weil2817b002009-10-06 11:31:08 -07001652
Sage Weilbe655592011-11-30 09:47:09 -08001653 spin_lock(&ci->i_ceph_lock);
Yan, Zhengfeab6ac2019-05-22 17:26:27 +08001654 valid = __ceph_caps_issued_mask(ci, CEPH_CAP_FILE_SHARED, 1);
Yan, Zheng719a2512020-03-05 20:21:00 +08001655 if (valid) {
1656 __ceph_touch_fmode(ci, mdsc, CEPH_FILE_MODE_RD);
1657 shared_gen = atomic_read(&ci->i_shared_gen);
1658 }
Sage Weilbe655592011-11-30 09:47:09 -08001659 spin_unlock(&ci->i_ceph_lock);
Yan, Zhengfeab6ac2019-05-22 17:26:27 +08001660 if (valid) {
1661 struct ceph_dentry_info *di;
1662 spin_lock(&dentry->d_lock);
1663 di = ceph_dentry(dentry);
1664 if (dir == d_inode(dentry->d_parent) &&
1665 di && di->lease_shared_gen == shared_gen)
1666 __ceph_dentry_dir_lease_touch(di);
1667 else
1668 valid = 0;
1669 spin_unlock(&dentry->d_lock);
1670 }
1671 dout("dir_lease_is_valid dir %p v%u dentry %p = %d\n",
1672 dir, (unsigned)atomic_read(&ci->i_shared_gen), dentry, valid);
Sage Weil2817b002009-10-06 11:31:08 -07001673 return valid;
1674}
1675
1676/*
1677 * Check if cached dentry can be trusted.
1678 */
Al Viro0b728e12012-06-10 16:03:43 -04001679static int ceph_d_revalidate(struct dentry *dentry, unsigned int flags)
Sage Weil2817b002009-10-06 11:31:08 -07001680{
Sage Weilbf1c6ac2011-07-26 11:30:43 -07001681 int valid = 0;
Yan, Zheng641235d2016-03-16 16:40:23 +08001682 struct dentry *parent;
Al Viroaa8dd812019-10-29 13:50:19 +00001683 struct inode *dir, *inode;
Yan, Zheng719a2512020-03-05 20:21:00 +08001684 struct ceph_mds_client *mdsc;
Nick Piggin34286d62011-01-07 17:49:57 +11001685
Jeff Laytonf49d1e02016-07-01 09:39:21 -04001686 if (flags & LOOKUP_RCU) {
Seraphime Kirkovski52953d52016-12-26 10:26:34 +01001687 parent = READ_ONCE(dentry->d_parent);
Jeff Laytonf49d1e02016-07-01 09:39:21 -04001688 dir = d_inode_rcu(parent);
1689 if (!dir)
1690 return -ECHILD;
Al Viroaa8dd812019-10-29 13:50:19 +00001691 inode = d_inode_rcu(dentry);
Jeff Laytonf49d1e02016-07-01 09:39:21 -04001692 } else {
1693 parent = dget_parent(dentry);
1694 dir = d_inode(parent);
Al Viroaa8dd812019-10-29 13:50:19 +00001695 inode = d_inode(dentry);
Jeff Laytonf49d1e02016-07-01 09:39:21 -04001696 }
Nick Piggin34286d62011-01-07 17:49:57 +11001697
Xiubo Li0eb30852019-12-18 21:15:18 -05001698 dout("d_revalidate %p '%pd' inode %p offset 0x%llx\n", dentry,
Al Viroaa8dd812019-10-29 13:50:19 +00001699 dentry, inode, ceph_dentry(dentry)->offset);
Sage Weil2817b002009-10-06 11:31:08 -07001700
Yan, Zheng719a2512020-03-05 20:21:00 +08001701 mdsc = ceph_sb_to_client(dir->i_sb)->mdsc;
1702
Sage Weil2817b002009-10-06 11:31:08 -07001703 /* always trust cached snapped dentries, snapdir dentry */
1704 if (ceph_snap(dir) != CEPH_NOSNAP) {
Al Viroa4555892014-10-21 20:11:25 -04001705 dout("d_revalidate %p '%pd' inode %p is SNAPPED\n", dentry,
Al Viroaa8dd812019-10-29 13:50:19 +00001706 dentry, inode);
Sage Weilbf1c6ac2011-07-26 11:30:43 -07001707 valid = 1;
Al Viroaa8dd812019-10-29 13:50:19 +00001708 } else if (inode && ceph_snap(inode) == CEPH_SNAPDIR) {
Sage Weilbf1c6ac2011-07-26 11:30:43 -07001709 valid = 1;
Jeff Layton14fb9c92016-07-01 09:39:20 -04001710 } else {
Yan, Zheng8f2a98ef2019-05-23 10:45:24 +08001711 valid = dentry_lease_is_valid(dentry, flags);
Jeff Layton14fb9c92016-07-01 09:39:20 -04001712 if (valid == -ECHILD)
1713 return valid;
Yan, Zheng719a2512020-03-05 20:21:00 +08001714 if (valid || dir_lease_is_valid(dir, dentry, mdsc)) {
Al Viroaa8dd812019-10-29 13:50:19 +00001715 if (inode)
1716 valid = ceph_is_any_caps(inode);
Jeff Layton14fb9c92016-07-01 09:39:20 -04001717 else
1718 valid = 1;
1719 }
Sage Weil2817b002009-10-06 11:31:08 -07001720 }
Sage Weil2817b002009-10-06 11:31:08 -07001721
Yan, Zheng200fd272016-03-17 14:41:59 +08001722 if (!valid) {
Yan, Zheng200fd272016-03-17 14:41:59 +08001723 struct ceph_mds_request *req;
Jeff Layton10976802017-01-12 14:42:38 -05001724 int op, err;
1725 u32 mask;
Yan, Zheng200fd272016-03-17 14:41:59 +08001726
Jeff Laytonf49d1e02016-07-01 09:39:21 -04001727 if (flags & LOOKUP_RCU)
1728 return -ECHILD;
1729
Xiubo Lif9009ef2020-03-19 23:44:59 -04001730 percpu_counter_inc(&mdsc->metric.d_lease_mis);
1731
Yan, Zheng200fd272016-03-17 14:41:59 +08001732 op = ceph_snap(dir) == CEPH_SNAPDIR ?
Jeff Layton5eb9f602017-01-30 09:47:25 -05001733 CEPH_MDS_OP_LOOKUPSNAP : CEPH_MDS_OP_LOOKUP;
Yan, Zheng200fd272016-03-17 14:41:59 +08001734 req = ceph_mdsc_create_request(mdsc, op, USE_ANY_MDS);
1735 if (!IS_ERR(req)) {
1736 req->r_dentry = dget(dentry);
Jeff Layton5eb9f602017-01-30 09:47:25 -05001737 req->r_num_caps = 2;
1738 req->r_parent = dir;
Jeff Layton4c183472021-06-18 13:05:06 -04001739 ihold(dir);
Yan, Zheng200fd272016-03-17 14:41:59 +08001740
1741 mask = CEPH_STAT_CAP_INODE | CEPH_CAP_AUTH_SHARED;
1742 if (ceph_security_xattr_wanted(dir))
1743 mask |= CEPH_CAP_XATTR_SHARED;
Jeff Layton10976802017-01-12 14:42:38 -05001744 req->r_args.getattr.mask = cpu_to_le32(mask);
Yan, Zheng200fd272016-03-17 14:41:59 +08001745
Yan, Zheng200fd272016-03-17 14:41:59 +08001746 err = ceph_mdsc_do_request(mdsc, NULL, req);
Jeff Laytonc3f46882016-11-30 15:56:46 -05001747 switch (err) {
1748 case 0:
1749 if (d_really_is_positive(dentry) &&
1750 d_inode(dentry) == req->r_target_inode)
1751 valid = 1;
1752 break;
1753 case -ENOENT:
1754 if (d_really_is_negative(dentry))
1755 valid = 1;
Gustavo A. R. Silvadf561f662020-08-23 17:36:59 -05001756 fallthrough;
Jeff Laytonc3f46882016-11-30 15:56:46 -05001757 default:
1758 break;
Yan, Zheng200fd272016-03-17 14:41:59 +08001759 }
1760 ceph_mdsc_put_request(req);
1761 dout("d_revalidate %p lookup result=%d\n",
1762 dentry, err);
1763 }
Xiubo Lif9009ef2020-03-19 23:44:59 -04001764 } else {
1765 percpu_counter_inc(&mdsc->metric.d_lease_hit);
Yan, Zheng200fd272016-03-17 14:41:59 +08001766 }
1767
Sage Weilbf1c6ac2011-07-26 11:30:43 -07001768 dout("d_revalidate %p %s\n", dentry, valid ? "valid" : "invalid");
Yan, Zheng37c4efc2019-01-31 16:55:51 +08001769 if (!valid)
Yan, Zheng9215aee2013-11-30 12:47:41 +08001770 ceph_dir_clear_complete(dir);
Yan, Zheng641235d2016-03-16 16:40:23 +08001771
Jeff Laytonf49d1e02016-07-01 09:39:21 -04001772 if (!(flags & LOOKUP_RCU))
1773 dput(parent);
Sage Weilbf1c6ac2011-07-26 11:30:43 -07001774 return valid;
Sage Weil2817b002009-10-06 11:31:08 -07001775}
1776
1777/*
Yan, Zheng1e9c2eb2019-01-28 20:43:55 +08001778 * Delete unused dentry that doesn't have valid lease
1779 *
1780 * Called under dentry->d_lock.
1781 */
1782static int ceph_d_delete(const struct dentry *dentry)
1783{
1784 struct ceph_dentry_info *di;
1785
1786 /* won't release caps */
1787 if (d_really_is_negative(dentry))
1788 return 0;
1789 if (ceph_snap(d_inode(dentry)) != CEPH_NOSNAP)
1790 return 0;
1791 /* vaild lease? */
1792 di = ceph_dentry(dentry);
1793 if (di) {
1794 if (__dentry_lease_is_valid(di))
1795 return 0;
1796 if (__dir_lease_try_check(dentry))
1797 return 0;
1798 }
1799 return 1;
1800}
1801
1802/*
Sage Weil147851d2011-03-15 14:57:41 -07001803 * Release our ceph_dentry_info.
Sage Weil2817b002009-10-06 11:31:08 -07001804 */
Sage Weil147851d2011-03-15 14:57:41 -07001805static void ceph_d_release(struct dentry *dentry)
Sage Weil2817b002009-10-06 11:31:08 -07001806{
1807 struct ceph_dentry_info *di = ceph_dentry(dentry);
Xiubo Lif9009ef2020-03-19 23:44:59 -04001808 struct ceph_fs_client *fsc = ceph_sb_to_client(dentry->d_sb);
Sage Weil2817b002009-10-06 11:31:08 -07001809
Sage Weil147851d2011-03-15 14:57:41 -07001810 dout("d_release %p\n", dentry);
Jeff Layton5b484a52016-07-01 09:39:20 -04001811
Xiubo Lif9009ef2020-03-19 23:44:59 -04001812 atomic64_dec(&fsc->mdsc->metric.total_dentries);
1813
Jeff Layton5b484a52016-07-01 09:39:20 -04001814 spin_lock(&dentry->d_lock);
Yan, Zheng37c4efc2019-01-31 16:55:51 +08001815 __dentry_lease_unlist(di);
Jeff Layton5b484a52016-07-01 09:39:20 -04001816 dentry->d_fsdata = NULL;
1817 spin_unlock(&dentry->d_lock);
1818
Jeff Layton7e656242021-06-09 14:09:52 -04001819 ceph_put_mds_session(di->lease_session);
Sage Weil3d8eb7a2011-11-11 09:48:53 -08001820 kmem_cache_free(ceph_dentry_cachep, di);
Sage Weil2817b002009-10-06 11:31:08 -07001821}
1822
Sage Weilb58dc412011-03-15 15:53:40 -07001823/*
1824 * When the VFS prunes a dentry from the cache, we need to clear the
1825 * complete flag on the parent directory.
1826 *
1827 * Called under dentry->d_lock.
1828 */
1829static void ceph_d_prune(struct dentry *dentry)
1830{
Yan, Zheng5495c2d2017-11-27 11:23:48 +08001831 struct ceph_inode_info *dir_ci;
1832 struct ceph_dentry_info *di;
1833
1834 dout("ceph_d_prune %pd %p\n", dentry, dentry);
Sage Weilb58dc412011-03-15 15:53:40 -07001835
1836 /* do we have a valid parent? */
Sage Weil8842b3b2012-06-07 13:43:35 -07001837 if (IS_ROOT(dentry))
Sage Weilb58dc412011-03-15 15:53:40 -07001838 return;
1839
Yan, Zheng5495c2d2017-11-27 11:23:48 +08001840 /* we hold d_lock, so d_parent is stable */
1841 dir_ci = ceph_inode(d_inode(dentry->d_parent));
1842 if (dir_ci->i_vino.snap == CEPH_SNAPDIR)
Sage Weilb58dc412011-03-15 15:53:40 -07001843 return;
1844
Yan, Zheng5495c2d2017-11-27 11:23:48 +08001845 /* who calls d_delete() should also disable dcache readdir */
1846 if (d_really_is_negative(dentry))
Al Viro18fc8ab2016-10-28 21:52:50 -04001847 return;
1848
Yan, Zheng5495c2d2017-11-27 11:23:48 +08001849 /* d_fsdata does not get cleared until d_release */
1850 if (!d_unhashed(dentry)) {
1851 __ceph_dir_clear_complete(dir_ci);
1852 return;
1853 }
1854
1855 /* Disable dcache readdir just in case that someone called d_drop()
1856 * or d_invalidate(), but MDS didn't revoke CEPH_CAP_FILE_SHARED
1857 * properly (dcache readdir is still enabled) */
1858 di = ceph_dentry(dentry);
1859 if (di->offset > 0 &&
1860 di->lease_shared_gen == atomic_read(&dir_ci->i_shared_gen))
1861 __ceph_dir_clear_ordered(dir_ci);
Sage Weilb58dc412011-03-15 15:53:40 -07001862}
Sage Weil2817b002009-10-06 11:31:08 -07001863
1864/*
1865 * read() on a dir. This weird interface hack only works if mounted
1866 * with '-o dirstat'.
1867 */
1868static ssize_t ceph_read_dir(struct file *file, char __user *buf, size_t size,
1869 loff_t *ppos)
1870{
Chengguang Xubb48bd42018-03-13 10:42:44 +08001871 struct ceph_dir_file_info *dfi = file->private_data;
Al Viro496ad9a2013-01-23 17:07:38 -05001872 struct inode *inode = file_inode(file);
Sage Weil2817b002009-10-06 11:31:08 -07001873 struct ceph_inode_info *ci = ceph_inode(inode);
1874 int left;
Sage Weilae598082011-05-12 14:28:05 -07001875 const int bufsize = 1024;
Sage Weil2817b002009-10-06 11:31:08 -07001876
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -07001877 if (!ceph_test_mount_opt(ceph_sb_to_client(inode->i_sb), DIRSTAT))
Sage Weil2817b002009-10-06 11:31:08 -07001878 return -EISDIR;
1879
Chengguang Xubb48bd42018-03-13 10:42:44 +08001880 if (!dfi->dir_info) {
1881 dfi->dir_info = kmalloc(bufsize, GFP_KERNEL);
1882 if (!dfi->dir_info)
Sage Weil2817b002009-10-06 11:31:08 -07001883 return -ENOMEM;
Chengguang Xubb48bd42018-03-13 10:42:44 +08001884 dfi->dir_info_len =
1885 snprintf(dfi->dir_info, bufsize,
Sage Weil2817b002009-10-06 11:31:08 -07001886 "entries: %20lld\n"
1887 " files: %20lld\n"
1888 " subdirs: %20lld\n"
1889 "rentries: %20lld\n"
1890 " rfiles: %20lld\n"
1891 " rsubdirs: %20lld\n"
1892 "rbytes: %20lld\n"
Arnd Bergmann9bbeab42018-07-13 22:18:36 +02001893 "rctime: %10lld.%09ld\n",
Sage Weil2817b002009-10-06 11:31:08 -07001894 ci->i_files + ci->i_subdirs,
1895 ci->i_files,
1896 ci->i_subdirs,
1897 ci->i_rfiles + ci->i_rsubdirs,
1898 ci->i_rfiles,
1899 ci->i_rsubdirs,
1900 ci->i_rbytes,
Arnd Bergmann9bbeab42018-07-13 22:18:36 +02001901 ci->i_rctime.tv_sec,
1902 ci->i_rctime.tv_nsec);
Sage Weil2817b002009-10-06 11:31:08 -07001903 }
1904
Chengguang Xubb48bd42018-03-13 10:42:44 +08001905 if (*ppos >= dfi->dir_info_len)
Sage Weil2817b002009-10-06 11:31:08 -07001906 return 0;
Chengguang Xubb48bd42018-03-13 10:42:44 +08001907 size = min_t(unsigned, size, dfi->dir_info_len-*ppos);
1908 left = copy_to_user(buf, dfi->dir_info + *ppos, size);
Sage Weil2817b002009-10-06 11:31:08 -07001909 if (left == size)
1910 return -EFAULT;
1911 *ppos += (size - left);
1912 return size - left;
1913}
1914
Sage Weil2817b002009-10-06 11:31:08 -07001915
Sage Weil2817b002009-10-06 11:31:08 -07001916
Sage Weil6c0f3af2010-11-16 11:14:34 -08001917/*
1918 * Return name hash for a given dentry. This is dependent on
1919 * the parent directory's hash function.
1920 */
Sage Weile5f86dc2011-07-26 11:30:55 -07001921unsigned ceph_dentry_hash(struct inode *dir, struct dentry *dn)
Sage Weil6c0f3af2010-11-16 11:14:34 -08001922{
Sage Weil6c0f3af2010-11-16 11:14:34 -08001923 struct ceph_inode_info *dci = ceph_inode(dir);
Jeff Layton76a495d2019-04-17 12:58:28 -04001924 unsigned hash;
Sage Weil6c0f3af2010-11-16 11:14:34 -08001925
1926 switch (dci->i_dir_layout.dl_dir_hash) {
1927 case 0: /* for backward compat */
1928 case CEPH_STR_HASH_LINUX:
1929 return dn->d_name.hash;
1930
1931 default:
Jeff Layton76a495d2019-04-17 12:58:28 -04001932 spin_lock(&dn->d_lock);
1933 hash = ceph_str_hash(dci->i_dir_layout.dl_dir_hash,
Sage Weil6c0f3af2010-11-16 11:14:34 -08001934 dn->d_name.name, dn->d_name.len);
Jeff Layton76a495d2019-04-17 12:58:28 -04001935 spin_unlock(&dn->d_lock);
1936 return hash;
Sage Weil6c0f3af2010-11-16 11:14:34 -08001937 }
1938}
1939
Sage Weil2817b002009-10-06 11:31:08 -07001940const struct file_operations ceph_dir_fops = {
1941 .read = ceph_read_dir,
Al Viro77acfa22013-05-17 16:52:26 -04001942 .iterate = ceph_readdir,
Sage Weil2817b002009-10-06 11:31:08 -07001943 .llseek = ceph_dir_llseek,
1944 .open = ceph_open,
1945 .release = ceph_release,
1946 .unlocked_ioctl = ceph_ioctl,
Arnd Bergmann18bd6ca2018-09-11 20:47:23 +02001947 .compat_ioctl = compat_ptr_ioctl,
Yan, Zhengda819c82015-05-27 11:19:34 +08001948 .fsync = ceph_fsync,
Yan, Zheng597817d2018-05-15 11:30:43 +08001949 .lock = ceph_lock,
1950 .flock = ceph_flock,
Sage Weil2817b002009-10-06 11:31:08 -07001951};
1952
Yan, Zheng38c48b52015-01-14 13:46:04 +08001953const struct file_operations ceph_snapdir_fops = {
1954 .iterate = ceph_readdir,
1955 .llseek = ceph_dir_llseek,
1956 .open = ceph_open,
1957 .release = ceph_release,
1958};
1959
Sage Weil2817b002009-10-06 11:31:08 -07001960const struct inode_operations ceph_dir_iops = {
1961 .lookup = ceph_lookup,
1962 .permission = ceph_permission,
1963 .getattr = ceph_getattr,
1964 .setattr = ceph_setattr,
Sage Weil2817b002009-10-06 11:31:08 -07001965 .listxattr = ceph_listxattr,
Guangliang Zhao7221fe42013-11-11 15:18:03 +08001966 .get_acl = ceph_get_acl,
Sage Weil72466d02014-01-29 06:22:25 -08001967 .set_acl = ceph_set_acl,
Sage Weil2817b002009-10-06 11:31:08 -07001968 .mknod = ceph_mknod,
1969 .symlink = ceph_symlink,
1970 .mkdir = ceph_mkdir,
1971 .link = ceph_link,
1972 .unlink = ceph_unlink,
1973 .rmdir = ceph_unlink,
1974 .rename = ceph_rename,
1975 .create = ceph_create,
Miklos Szeredi2d83bde2012-06-05 15:10:25 +02001976 .atomic_open = ceph_atomic_open,
Sage Weil2817b002009-10-06 11:31:08 -07001977};
1978
Yan, Zheng38c48b52015-01-14 13:46:04 +08001979const struct inode_operations ceph_snapdir_iops = {
1980 .lookup = ceph_lookup,
1981 .permission = ceph_permission,
1982 .getattr = ceph_getattr,
1983 .mkdir = ceph_mkdir,
1984 .rmdir = ceph_unlink,
Yan, Zheng0ea611a2015-04-07 15:36:32 +08001985 .rename = ceph_rename,
Yan, Zheng38c48b52015-01-14 13:46:04 +08001986};
1987
Sage Weil52dfb8a2010-08-03 10:25:30 -07001988const struct dentry_operations ceph_dentry_ops = {
Sage Weil2817b002009-10-06 11:31:08 -07001989 .d_revalidate = ceph_d_revalidate,
Yan, Zheng1e9c2eb2019-01-28 20:43:55 +08001990 .d_delete = ceph_d_delete,
Sage Weil147851d2011-03-15 14:57:41 -07001991 .d_release = ceph_d_release,
Sage Weilb58dc412011-03-15 15:53:40 -07001992 .d_prune = ceph_d_prune,
Al Viroad5cb122016-10-28 22:05:13 -04001993 .d_init = ceph_d_init,
Sage Weil2817b002009-10-06 11:31:08 -07001994};