ceph: clean up locking annotation for ceph_get_snap_realm and __lookup_snap_realm
[linux-block.git] / fs / ceph / dir.c
CommitLineData
b2441318 1// SPDX-License-Identifier: GPL-2.0
3d14c5d2 2#include <linux/ceph/ceph_debug.h>
2817b000
SW
3
4#include <linux/spinlock.h>
2817b000 5#include <linux/namei.h>
5a0e3ad6 6#include <linux/slab.h>
2817b000 7#include <linux/sched.h>
2cdeb1e4 8#include <linux/xattr.h>
2817b000
SW
9
10#include "super.h"
3d14c5d2 11#include "mds_client.h"
2817b000
SW
12
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
52dfb8ac 30const struct dentry_operations ceph_dentry_ops;
2817b000 31
37c4efc1
YZ
32static bool __dentry_lease_is_valid(struct ceph_dentry_info *di);
33static int __dir_lease_try_check(const struct dentry *dentry);
34
2817b000
SW
35/*
36 * Initialize ceph dentry state.
37 */
ad5cb123 38static int ceph_d_init(struct dentry *dentry)
2817b000
SW
39{
40 struct ceph_dentry_info *di;
2678da88 41 struct ceph_mds_client *mdsc = ceph_sb_to_mdsc(dentry->d_sb);
2817b000 42
99ec2697 43 di = kmem_cache_zalloc(ceph_dentry_cachep, GFP_KERNEL);
2817b000
SW
44 if (!di)
45 return -ENOMEM; /* oh well */
46
2817b000
SW
47 di->dentry = dentry;
48 di->lease_session = NULL;
9b16f03c 49 di->time = jiffies;
48d0cbd1 50 dentry->d_fsdata = di;
37c4efc1 51 INIT_LIST_HEAD(&di->lease_list);
f9009efa
XL
52
53 atomic64_inc(&mdsc->metric.total_dentries);
54
2817b000
SW
55 return 0;
56}
57
2817b000 58/*
f3c4ebe6
YZ
59 * 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);
2817b000 65 */
f3c4ebe6
YZ
66#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
2817b000
SW
82static unsigned fpos_frag(loff_t p)
83{
f3c4ebe6 84 return p >> OFFSET_BITS;
2817b000 85}
f3c4ebe6
YZ
86
87static unsigned fpos_hash(loff_t p)
88{
89 return ceph_frag_value(fpos_frag(p));
90}
91
2817b000
SW
92static unsigned fpos_off(loff_t p)
93{
f3c4ebe6 94 return p & OFFSET_MASK;
2817b000
SW
95}
96
4d5f5df6
YZ
97static 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
fdd4e158
YZ
105/*
106 * 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 */
bb48bd4d 111static int note_last_dentry(struct ceph_dir_file_info *dfi, const char *name,
fdd4e158
YZ
112 int len, unsigned next_offset)
113{
114 char *buf = kmalloc(len+1, GFP_KERNEL);
115 if (!buf)
116 return -ENOMEM;
bb48bd4d
CX
117 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);
fdd4e158
YZ
123 return 0;
124}
125
c530cd24
YZ
126
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
2817b000
SW
170/*
171 * When possible, we try to satisfy a readdir by peeking at the
172 * dcache. We make this work by carefully ordering dentries on
946e51f2 173 * d_child when we initially get results back from the MDS, and
2817b000
SW
174 * falling back to a "normal" sync readdir if any dentries in the dir
175 * are dropped.
176 *
2f276c51 177 * Complete dir indicates that we have all dentries in the dir. It is
2817b000
SW
178 * defined IFF we hold CEPH_CAP_FILE_SHARED (which will be revoked by
179 * the MDS if/when the directory is modified).
180 */
a30be7cb 181static int __dcache_readdir(struct file *file, struct dir_context *ctx,
97aeb6bf 182 int shared_gen)
2817b000 183{
bb48bd4d 184 struct ceph_dir_file_info *dfi = file->private_data;
b583043e 185 struct dentry *parent = file->f_path.dentry;
2b0143b5 186 struct inode *dir = d_inode(parent);
fdd4e158 187 struct dentry *dentry, *last = NULL;
2817b000 188 struct ceph_dentry_info *di;
fdd4e158 189 struct ceph_readdir_cache_control cache_ctl = {};
c530cd24
YZ
190 u64 idx = 0;
191 int err = 0;
2817b000 192
97aeb6bf 193 dout("__dcache_readdir %p v%u at %llx\n", dir, (unsigned)shared_gen, ctx->pos);
2817b000 194
c530cd24
YZ
195 /* 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 }
2817b000 222
c530cd24 223 dout("__dcache_readdir %p cache idx %llu\n", dir, idx);
2817b000
SW
224 }
225
fdd4e158 226
c530cd24
YZ
227 for (;;) {
228 bool emit_dentry = false;
229 dentry = __dcache_find_get_entry(parent, idx++, &cache_ctl);
230 if (!dentry) {
bb48bd4d 231 dfi->file_info.flags |= CEPH_F_ATEND;
fdd4e158
YZ
232 err = 0;
233 break;
2817b000 234 }
c530cd24
YZ
235 if (IS_ERR(dentry)) {
236 err = PTR_ERR(dentry);
237 goto out;
fdd4e158
YZ
238 }
239
fdd4e158 240 spin_lock(&dentry->d_lock);
5495c2d0
YZ
241 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) {
37c4efc1 251 __ceph_dentry_dir_lease_touch(di);
fdd4e158
YZ
252 emit_dentry = true;
253 }
da502956 254 spin_unlock(&dentry->d_lock);
2817b000 255
fdd4e158 256 if (emit_dentry) {
f3c4ebe6 257 dout(" %llx dentry %p %pd %p\n", di->offset,
fdd4e158
YZ
258 dentry, dentry, d_inode(dentry));
259 ctx->pos = di->offset;
260 if (!dir_emit(ctx, dentry->d_name.name,
ebce3eb2 261 dentry->d_name.len, ceph_present_inode(d_inode(dentry)),
fdd4e158
YZ
262 d_inode(dentry)->i_mode >> 12)) {
263 dput(dentry);
264 err = 0;
265 break;
266 }
267 ctx->pos++;
0081bd83 268
fdd4e158
YZ
269 if (last)
270 dput(last);
271 last = dentry;
272 } else {
273 dput(dentry);
2817b000 274 }
fdd4e158 275 }
c530cd24 276out:
fdd4e158
YZ
277 ceph_readdir_cache_release(&cache_ctl);
278 if (last) {
279 int ret;
280 di = ceph_dentry(last);
bb48bd4d 281 ret = note_last_dentry(dfi, last->d_name.name, last->d_name.len,
fdd4e158
YZ
282 fpos_off(di->offset) + 1);
283 if (ret < 0)
284 err = ret;
2817b000 285 dput(last);
84583cfb 286 /* last_name no longer match cache index */
bb48bd4d
CX
287 if (dfi->readdir_cache_idx >= 0) {
288 dfi->readdir_cache_idx = -1;
289 dfi->dir_release_count = 0;
84583cfb 290 }
fdd4e158 291 }
2817b000
SW
292 return err;
293}
294
bb48bd4d 295static bool need_send_readdir(struct ceph_dir_file_info *dfi, loff_t pos)
f3c4ebe6 296{
bb48bd4d 297 if (!dfi->last_readdir)
f3c4ebe6
YZ
298 return true;
299 if (is_hash_order(pos))
bb48bd4d 300 return !ceph_frag_contains_value(dfi->frag, fpos_hash(pos));
f3c4ebe6 301 else
bb48bd4d 302 return dfi->frag != fpos_frag(pos);
f3c4ebe6
YZ
303}
304
77acfa29 305static int ceph_readdir(struct file *file, struct dir_context *ctx)
2817b000 306{
bb48bd4d 307 struct ceph_dir_file_info *dfi = file->private_data;
77acfa29 308 struct inode *inode = file_inode(file);
2817b000 309 struct ceph_inode_info *ci = ceph_inode(inode);
3d14c5d2
YS
310 struct ceph_fs_client *fsc = ceph_inode_to_client(inode);
311 struct ceph_mds_client *mdsc = fsc->mdsc;
8974eebd 312 int i;
2817b000 313 int err;
b50c2de5 314 unsigned frag = -1;
2817b000 315 struct ceph_mds_reply_info_parsed *rinfo;
2817b000 316
8974eebd 317 dout("readdir %p file %p pos %llx\n", inode, file, ctx->pos);
bb48bd4d 318 if (dfi->file_info.flags & CEPH_F_ATEND)
2817b000
SW
319 return 0;
320
321 /* always start with . and .. */
77acfa29 322 if (ctx->pos == 0) {
2817b000 323 dout("readdir off 0 -> '.'\n");
ebce3eb2 324 if (!dir_emit(ctx, ".", 1, ceph_present_inode(inode),
77acfa29 325 inode->i_mode >> 12))
2817b000 326 return 0;
77acfa29 327 ctx->pos = 1;
2817b000 328 }
77acfa29 329 if (ctx->pos == 1) {
ebce3eb2
JL
330 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
2817b000 337 dout("readdir off 1 -> '..'\n");
ebce3eb2 338 if (!dir_emit(ctx, "..", 2, ino, inode->i_mode >> 12))
2817b000 339 return 0;
77acfa29 340 ctx->pos = 2;
2817b000
SW
341 }
342
be655596 343 spin_lock(&ci->i_ceph_lock);
719a2514
YZ
344 /* 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? */
fdd4e158 348 if (ceph_test_mount_opt(fsc, DCACHE) &&
3d14c5d2 349 !ceph_test_mount_opt(fsc, NOASYNCREADDIR) &&
a0dff78d 350 ceph_snap(inode) != CEPH_SNAPDIR &&
70db4f36 351 __ceph_dir_is_complete_ordered(ci) &&
1af16d54 352 __ceph_caps_issued_mask_metric(ci, CEPH_CAP_FILE_SHARED, 1)) {
97aeb6bf 353 int shared_gen = atomic_read(&ci->i_shared_gen);
1af16d54 354
be655596 355 spin_unlock(&ci->i_ceph_lock);
a30be7cb 356 err = __dcache_readdir(file, ctx, shared_gen);
efa4c120 357 if (err != -EAGAIN)
2817b000 358 return err;
efa4c120 359 } else {
be655596 360 spin_unlock(&ci->i_ceph_lock);
2817b000 361 }
2817b000
SW
362
363 /* proceed with a normal readdir */
2817b000
SW
364more:
365 /* do we have the correct frag content buffered? */
bb48bd4d 366 if (need_send_readdir(dfi, ctx->pos)) {
2817b000
SW
367 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 */
bb48bd4d
CX
372 if (dfi->last_readdir) {
373 ceph_mdsc_put_request(dfi->last_readdir);
374 dfi->last_readdir = NULL;
393f6620 375 }
2817b000 376
f3c4ebe6 377 if (is_hash_order(ctx->pos)) {
b50c2de5
YZ
378 /* 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);
f3c4ebe6
YZ
383 } else {
384 frag = fpos_frag(ctx->pos);
385 }
386
2817b000 387 dout("readdir fetching %llx.%llx frag %x offset '%s'\n",
bb48bd4d 388 ceph_vinop(inode), frag, dfi->last_name);
2817b000
SW
389 req = ceph_mdsc_create_request(mdsc, op, USE_AUTH_MDS);
390 if (IS_ERR(req))
391 return PTR_ERR(req);
54008399
YZ
392 err = ceph_alloc_readdir_reply_buffer(req, inode);
393 if (err) {
394 ceph_mdsc_put_request(req);
395 return err;
396 }
2817b000
SW
397 /* hints to request -> mds selection code */
398 req->r_direct_mode = USE_AUTH_MDS;
5d37ca14
YZ
399 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);
87c91a96 402 req->r_inode_drop = CEPH_CAP_FILE_EXCL;
5d37ca14 403 }
bb48bd4d
CX
404 if (dfi->last_name) {
405 req->r_path2 = kstrdup(dfi->last_name, GFP_KERNEL);
a149bb9a
SK
406 if (!req->r_path2) {
407 ceph_mdsc_put_request(req);
408 return -ENOMEM;
409 }
79162547
YZ
410 } else if (is_hash_order(ctx->pos)) {
411 req->r_args.readdir.offset_hash =
412 cpu_to_le32(fpos_hash(ctx->pos));
a149bb9a 413 }
79162547 414
bb48bd4d
CX
415 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;
2817b000 419 req->r_args.readdir.frag = cpu_to_le32(frag);
956d39d6
YZ
420 req->r_args.readdir.flags =
421 cpu_to_le16(CEPH_READDIR_REPLY_BITFLAGS);
a149bb9a
SK
422
423 req->r_inode = inode;
424 ihold(inode);
425 req->r_dentry = dget(file->f_path.dentry);
2817b000
SW
426 err = ceph_mdsc_do_request(mdsc, NULL, req);
427 if (err < 0) {
428 ceph_mdsc_put_request(req);
429 return err;
430 }
f3c4ebe6
YZ
431 dout("readdir got and parsed readdir result=%d on "
432 "frag %x, end=%d, complete=%d, hash_order=%d\n",
433 err, frag,
2817b000 434 (int)req->r_reply_info.dir_end,
f3c4ebe6
YZ
435 (int)req->r_reply_info.dir_complete,
436 (int)req->r_reply_info.hash_order);
2817b000 437
81c6aea5
YZ
438 rinfo = &req->r_reply_info;
439 if (le32_to_cpu(rinfo->dir_dir->frag) != frag) {
440 frag = le32_to_cpu(rinfo->dir_dir->frag);
f3c4ebe6 441 if (!rinfo->hash_order) {
bb48bd4d 442 dfi->next_offset = req->r_readdir_offset;
f3c4ebe6
YZ
443 /* adjust ctx->pos to beginning of frag */
444 ctx->pos = ceph_make_fpos(frag,
bb48bd4d 445 dfi->next_offset,
f3c4ebe6
YZ
446 false);
447 }
81c6aea5 448 }
fdd4e158 449
bb48bd4d
CX
450 dfi->frag = frag;
451 dfi->last_readdir = req;
2817b000 452
bc2de10d 453 if (test_bit(CEPH_MDS_R_DID_PREPOPULATE, &req->r_req_flags)) {
bb48bd4d
CX
454 dfi->readdir_cache_idx = req->r_readdir_cache_idx;
455 if (dfi->readdir_cache_idx < 0) {
fdd4e158 456 /* preclude from marking dir ordered */
bb48bd4d 457 dfi->dir_ordered_count = 0;
8974eebd 458 } else if (ceph_frag_is_leftmost(frag) &&
bb48bd4d 459 dfi->next_offset == 2) {
fdd4e158
YZ
460 /* note dir version at start of readdir so
461 * we can tell if any dentries get dropped */
bb48bd4d
CX
462 dfi->dir_release_count = req->r_dir_release_cnt;
463 dfi->dir_ordered_count = req->r_dir_ordered_cnt;
fdd4e158
YZ
464 }
465 } else {
4c069a58 466 dout("readdir !did_prepopulate\n");
fdd4e158 467 /* disable readdir cache */
bb48bd4d 468 dfi->readdir_cache_idx = -1;
fdd4e158 469 /* preclude from marking dir complete */
bb48bd4d 470 dfi->dir_release_count = 0;
fdd4e158
YZ
471 }
472
f3c4ebe6
YZ
473 /* note next offset and last dentry name */
474 if (rinfo->dir_nr > 0) {
2a5beea3
YZ
475 struct ceph_mds_reply_dir_entry *rde =
476 rinfo->dir_entries + (rinfo->dir_nr-1);
f3c4ebe6
YZ
477 unsigned next_offset = req->r_reply_info.dir_end ?
478 2 : (fpos_off(rde->offset) + 1);
bb48bd4d 479 err = note_last_dentry(dfi, rde->name, rde->name_len,
f3c4ebe6 480 next_offset);
2817b000
SW
481 if (err)
482 return err;
f3c4ebe6 483 } else if (req->r_reply_info.dir_end) {
bb48bd4d 484 dfi->next_offset = 2;
f3c4ebe6 485 /* keep last name */
2817b000
SW
486 }
487 }
488
bb48bd4d 489 rinfo = &dfi->last_readdir->r_reply_info;
8974eebd 490 dout("readdir frag %x num %d pos %llx chunk first %llx\n",
bb48bd4d 491 dfi->frag, rinfo->dir_nr, ctx->pos,
8974eebd 492 rinfo->dir_nr ? rinfo->dir_entries[0].offset : 0LL);
77acfa29 493
8974eebd
YZ
494 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;
3105c19c 510
8974eebd
YZ
511 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,
2a5beea3 516 rde->name_len, rde->name, &rde->inode.in);
8974eebd 517
2a5beea3 518 BUG_ON(!rde->inode.in);
8974eebd 519
2a5beea3 520 if (!dir_emit(ctx, rde->name, rde->name_len,
ebce3eb2
JL
521 ceph_present_ino(inode->i_sb, le64_to_cpu(rde->inode.in->ino)),
522 le32_to_cpu(rde->inode.in->mode) >> 12)) {
2817b000
SW
523 dout("filldir stopping us...\n");
524 return 0;
525 }
77acfa29 526 ctx->pos++;
2817b000
SW
527 }
528
bb48bd4d
CX
529 ceph_mdsc_put_request(dfi->last_readdir);
530 dfi->last_readdir = NULL;
b50c2de5 531
bb48bd4d
CX
532 if (dfi->next_offset > 2) {
533 frag = dfi->frag;
2817b000
SW
534 goto more;
535 }
536
537 /* more frags? */
bb48bd4d
CX
538 if (!ceph_frag_is_rightmost(dfi->frag)) {
539 frag = ceph_frag_next(dfi->frag);
f3c4ebe6
YZ
540 if (is_hash_order(ctx->pos)) {
541 loff_t new_pos = ceph_make_fpos(ceph_frag_value(frag),
bb48bd4d 542 dfi->next_offset, true);
f3c4ebe6
YZ
543 if (new_pos > ctx->pos)
544 ctx->pos = new_pos;
545 /* keep last_name */
546 } else {
bb48bd4d
CX
547 ctx->pos = ceph_make_fpos(frag, dfi->next_offset,
548 false);
549 kfree(dfi->last_name);
550 dfi->last_name = NULL;
f3c4ebe6 551 }
2817b000
SW
552 dout("readdir next frag is %x\n", frag);
553 goto more;
554 }
bb48bd4d 555 dfi->file_info.flags |= CEPH_F_ATEND;
2817b000
SW
556
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 */
bb48bd4d
CX
562 if (atomic64_read(&ci->i_release_count) ==
563 dfi->dir_release_count) {
fdd4e158 564 spin_lock(&ci->i_ceph_lock);
bb48bd4d
CX
565 if (dfi->dir_ordered_count ==
566 atomic64_read(&ci->i_ordered_count)) {
70db4f36 567 dout(" marking %p complete and ordered\n", inode);
fdd4e158
YZ
568 /* use i_size to track number of entries in
569 * readdir cache */
bb48bd4d
CX
570 BUG_ON(dfi->readdir_cache_idx < 0);
571 i_size_write(inode, dfi->readdir_cache_idx *
fdd4e158
YZ
572 sizeof(struct dentry*));
573 } else {
70db4f36 574 dout(" marking %p complete\n", inode);
fdd4e158 575 }
bb48bd4d
CX
576 __ceph_dir_set_complete(ci, dfi->dir_release_count,
577 dfi->dir_ordered_count);
fdd4e158 578 spin_unlock(&ci->i_ceph_lock);
2817b000 579 }
2817b000 580
77acfa29 581 dout("readdir %p file %p done.\n", inode, file);
2817b000
SW
582 return 0;
583}
584
bb48bd4d 585static void reset_readdir(struct ceph_dir_file_info *dfi)
2817b000 586{
bb48bd4d
CX
587 if (dfi->last_readdir) {
588 ceph_mdsc_put_request(dfi->last_readdir);
589 dfi->last_readdir = NULL;
2817b000 590 }
bb48bd4d
CX
591 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;
2817b000
SW
597}
598
8974eebd
YZ
599/*
600 * discard buffered readdir content on seekdir(0), or seek to new frag,
601 * or seek prior to current chunk
602 */
bb48bd4d 603static bool need_reset_readdir(struct ceph_dir_file_info *dfi, loff_t new_pos)
8974eebd
YZ
604{
605 struct ceph_mds_reply_info_parsed *rinfo;
f3c4ebe6 606 loff_t chunk_offset;
8974eebd
YZ
607 if (new_pos == 0)
608 return true;
f3c4ebe6
YZ
609 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 */
bb48bd4d 612 } else if (dfi->frag != fpos_frag(new_pos)) {
8974eebd 613 return true;
f3c4ebe6 614 }
bb48bd4d 615 rinfo = dfi->last_readdir ? &dfi->last_readdir->r_reply_info : NULL;
8974eebd
YZ
616 if (!rinfo || !rinfo->dir_nr)
617 return true;
f3c4ebe6
YZ
618 chunk_offset = rinfo->dir_entries[0].offset;
619 return new_pos < chunk_offset ||
620 is_hash_order(new_pos) != is_hash_order(chunk_offset);
8974eebd
YZ
621}
622
965c8e59 623static loff_t ceph_dir_llseek(struct file *file, loff_t offset, int whence)
2817b000 624{
bb48bd4d 625 struct ceph_dir_file_info *dfi = file->private_data;
2817b000 626 struct inode *inode = file->f_mapping->host;
2817b000
SW
627 loff_t retval;
628
5955102c 629 inode_lock(inode);
06222e49 630 retval = -EINVAL;
965c8e59 631 switch (whence) {
2817b000
SW
632 case SEEK_CUR:
633 offset += file->f_pos;
fcaddb1d 634 break;
06222e49
JB
635 case SEEK_SET:
636 break;
fdd4e158
YZ
637 case SEEK_END:
638 retval = -EOPNOTSUPP;
fcaddb1d 639 goto out;
06222e49
JB
640 default:
641 goto out;
2817b000 642 }
06222e49 643
f0494206 644 if (offset >= 0) {
bb48bd4d 645 if (need_reset_readdir(dfi, offset)) {
f3c4ebe6 646 dout("dir_llseek dropping %p content\n", file);
bb48bd4d 647 reset_readdir(dfi);
f3c4ebe6
YZ
648 } 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 */
bb48bd4d
CX
651 dfi->dir_release_count = 0;
652 dfi->readdir_cache_idx = -1;
f3c4ebe6
YZ
653 }
654
2817b000
SW
655 if (offset != file->f_pos) {
656 file->f_pos = offset;
657 file->f_version = 0;
bb48bd4d 658 dfi->file_info.flags &= ~CEPH_F_ATEND;
2817b000
SW
659 }
660 retval = offset;
2817b000 661 }
06222e49 662out:
5955102c 663 inode_unlock(inode);
2817b000
SW
664 return retval;
665}
666
667/*
468640e3 668 * Handle lookups for the hidden .snap directory.
2817b000 669 */
aa60cfc3 670struct dentry *ceph_handle_snapdir(struct ceph_mds_request *req,
7a971e2c 671 struct dentry *dentry)
2817b000 672{
3d14c5d2 673 struct ceph_fs_client *fsc = ceph_sb_to_client(dentry->d_sb);
2b0143b5 674 struct inode *parent = d_inode(dentry->d_parent); /* we hold i_mutex */
2817b000
SW
675
676 /* .snap dir? */
7a971e2c 677 if (ceph_snap(parent) == CEPH_NOSNAP &&
aa60cfc3
JL
678 strcmp(dentry->d_name.name, fsc->mount_options->snapdir_name) == 0) {
679 struct dentry *res;
2817b000 680 struct inode *inode = ceph_get_snapdir(parent);
aa60cfc3
JL
681
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;
2817b000 687 }
aa60cfc3 688 return dentry;
468640e3 689}
2817b000 690
468640e3
SW
691/*
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{
2817b000
SW
705 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",
2b0143b5
DH
710 dentry, d_inode(dentry));
711 if (d_really_is_positive(dentry)) {
2817b000
SW
712 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
3b33f692 728static bool is_root_ceph_dentry(struct inode *inode, struct dentry *dentry)
1d1de916
SW
729{
730 return ceph_ino(inode) == CEPH_INO_ROOT &&
731 strncmp(dentry->d_name.name, ".ceph", 5) == 0;
732}
733
2817b000
SW
734/*
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,
00cd8dd3 739 unsigned int flags)
2817b000 740{
3d14c5d2 741 struct ceph_fs_client *fsc = ceph_sb_to_client(dir->i_sb);
2678da88 742 struct ceph_mds_client *mdsc = ceph_sb_to_mdsc(dir->i_sb);
2817b000
SW
743 struct ceph_mds_request *req;
744 int op;
315f2408 745 int mask;
2817b000
SW
746 int err;
747
a455589f
AV
748 dout("lookup %p dentry %p '%pd'\n",
749 dir, dentry, dentry);
2817b000
SW
750
751 if (dentry->d_name.len > NAME_MAX)
752 return ERR_PTR(-ENAMETOOLONG);
753
2817b000 754 /* can we conclude ENOENT locally? */
2b0143b5 755 if (d_really_is_negative(dentry)) {
2817b000
SW
756 struct ceph_inode_info *ci = ceph_inode(dir);
757 struct ceph_dentry_info *di = ceph_dentry(dentry);
758
be655596 759 spin_lock(&ci->i_ceph_lock);
891f3f5a 760 dout(" dir %p flags are 0x%lx\n", dir, ci->i_ceph_flags);
2817b000 761 if (strncmp(dentry->d_name.name,
3d14c5d2 762 fsc->mount_options->snapdir_name,
2817b000 763 dentry->d_name.len) &&
1d1de916 764 !is_root_ceph_dentry(dir, dentry) &&
e2c3de04 765 ceph_test_mount_opt(fsc, DCACHE) &&
2f276c51 766 __ceph_dir_is_complete(ci) &&
1af16d54 767 __ceph_caps_issued_mask_metric(ci, CEPH_CAP_FILE_SHARED, 1)) {
719a2514 768 __ceph_touch_fmode(ci, mdsc, CEPH_FILE_MODE_RD);
be655596 769 spin_unlock(&ci->i_ceph_lock);
2817b000
SW
770 dout(" dir %p complete, -ENOENT\n", dir);
771 d_add(dentry, NULL);
97aeb6bf 772 di->lease_shared_gen = atomic_read(&ci->i_shared_gen);
2817b000
SW
773 return NULL;
774 }
be655596 775 spin_unlock(&ci->i_ceph_lock);
2817b000
SW
776 }
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))
7e34bc52 782 return ERR_CAST(req);
2817b000
SW
783 req->r_dentry = dget(dentry);
784 req->r_num_caps = 2;
315f2408
YZ
785
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
3dd69aab
JL
791 req->r_parent = dir;
792 set_bit(CEPH_MDS_R_PARENT_LOCKED, &req->r_req_flags);
2817b000 793 err = ceph_mdsc_do_request(mdsc, NULL, req);
7a971e2c
JL
794 if (err == -ENOENT) {
795 struct dentry *res;
796
797 res = ceph_handle_snapdir(req, dentry);
798 if (IS_ERR(res)) {
799 err = PTR_ERR(res);
800 } else {
801 dentry = res;
802 err = 0;
803 }
aa60cfc3 804 }
2817b000
SW
805 dentry = ceph_finish_lookup(req, dentry, err);
806 ceph_mdsc_put_request(req); /* will dput(dentry) */
807 dout("lookup result=%p\n", dentry);
808 return dentry;
809}
810
811/*
812 * If we do a create but get no trace back from the MDS, follow up with
813 * a lookup (the VFS expects us to link up the provided dentry).
814 */
815int ceph_handle_notrace_create(struct inode *dir, struct dentry *dentry)
816{
00cd8dd3 817 struct dentry *result = ceph_lookup(dir, dentry, 0);
2817b000
SW
818
819 if (result && !IS_ERR(result)) {
820 /*
821 * We created the item, then did a lookup, and found
822 * it was already linked to another inode we already
4d41cef2
YZ
823 * had in our cache (and thus got spliced). To not
824 * confuse VFS (especially when inode is a directory),
825 * we don't link our dentry to that inode, return an
826 * error instead.
827 *
828 * This event should be rare and it happens only when
829 * we talk to old MDS. Recent MDS does not send traceless
830 * reply for request that creates new inode.
2817b000 831 */
5cba372c 832 d_drop(result);
4d41cef2 833 return -ESTALE;
2817b000
SW
834 }
835 return PTR_ERR(result);
836}
837
549c7297
CB
838static int ceph_mknod(struct user_namespace *mnt_userns, struct inode *dir,
839 struct dentry *dentry, umode_t mode, dev_t rdev)
2817b000 840{
2678da88 841 struct ceph_mds_client *mdsc = ceph_sb_to_mdsc(dir->i_sb);
2817b000 842 struct ceph_mds_request *req;
5c31e92d 843 struct ceph_acl_sec_ctx as_ctx = {};
2817b000
SW
844 int err;
845
846 if (ceph_snap(dir) != CEPH_NOSNAP)
847 return -EROFS;
848
0459871c
CX
849 if (ceph_quota_is_max_files_exceeded(dir)) {
850 err = -EDQUOT;
851 goto out;
852 }
b7a29217 853
5c31e92d 854 err = ceph_pre_init_acls(dir, &mode, &as_ctx);
ac6713cc
YZ
855 if (err < 0)
856 goto out;
857 err = ceph_security_init_secctx(dentry, mode, &as_ctx);
b1ee94aa 858 if (err < 0)
0459871c 859 goto out;
b1ee94aa 860
1a67aafb 861 dout("mknod in dir %p dentry %p mode 0%ho rdev %d\n",
2817b000
SW
862 dir, dentry, mode, rdev);
863 req = ceph_mdsc_create_request(mdsc, CEPH_MDS_OP_MKNOD, USE_AUTH_MDS);
864 if (IS_ERR(req)) {
b1ee94aa
YZ
865 err = PTR_ERR(req);
866 goto out;
2817b000
SW
867 }
868 req->r_dentry = dget(dentry);
869 req->r_num_caps = 2;
3dd69aab
JL
870 req->r_parent = dir;
871 set_bit(CEPH_MDS_R_PARENT_LOCKED, &req->r_req_flags);
2817b000
SW
872 req->r_args.mknod.mode = cpu_to_le32(mode);
873 req->r_args.mknod.rdev = cpu_to_le32(rdev);
222b7f90 874 req->r_dentry_drop = CEPH_CAP_FILE_SHARED | CEPH_CAP_AUTH_EXCL;
2817b000 875 req->r_dentry_unless = CEPH_CAP_FILE_EXCL;
5c31e92d
YZ
876 if (as_ctx.pagelist) {
877 req->r_pagelist = as_ctx.pagelist;
878 as_ctx.pagelist = NULL;
b1ee94aa 879 }
2817b000
SW
880 err = ceph_mdsc_do_request(mdsc, dir, req);
881 if (!err && !req->r_reply_info.head->is_dentry)
882 err = ceph_handle_notrace_create(dir, dentry);
883 ceph_mdsc_put_request(req);
b1ee94aa 884out:
7221fe4c 885 if (!err)
5c31e92d 886 ceph_init_inode_acls(d_inode(dentry), &as_ctx);
b20a95a0 887 else
2817b000 888 d_drop(dentry);
5c31e92d 889 ceph_release_acl_sec_ctx(&as_ctx);
2817b000
SW
890 return err;
891}
892
549c7297
CB
893static int ceph_create(struct user_namespace *mnt_userns, struct inode *dir,
894 struct dentry *dentry, umode_t mode, bool excl)
2817b000 895{
549c7297 896 return ceph_mknod(mnt_userns, dir, dentry, mode, 0);
2817b000
SW
897}
898
549c7297
CB
899static int ceph_symlink(struct user_namespace *mnt_userns, struct inode *dir,
900 struct dentry *dentry, const char *dest)
2817b000 901{
2678da88 902 struct ceph_mds_client *mdsc = ceph_sb_to_mdsc(dir->i_sb);
2817b000 903 struct ceph_mds_request *req;
ac6713cc 904 struct ceph_acl_sec_ctx as_ctx = {};
2817b000
SW
905 int err;
906
907 if (ceph_snap(dir) != CEPH_NOSNAP)
908 return -EROFS;
909
67fcd151
CX
910 if (ceph_quota_is_max_files_exceeded(dir)) {
911 err = -EDQUOT;
912 goto out;
913 }
b7a29217 914
ac6713cc
YZ
915 err = ceph_security_init_secctx(dentry, S_IFLNK | 0777, &as_ctx);
916 if (err < 0)
917 goto out;
918
2817b000
SW
919 dout("symlink in dir %p dentry %p to '%s'\n", dir, dentry, dest);
920 req = ceph_mdsc_create_request(mdsc, CEPH_MDS_OP_SYMLINK, USE_AUTH_MDS);
921 if (IS_ERR(req)) {
b1ee94aa
YZ
922 err = PTR_ERR(req);
923 goto out;
2817b000 924 }
687265e5 925 req->r_path2 = kstrdup(dest, GFP_KERNEL);
a149bb9a
SK
926 if (!req->r_path2) {
927 err = -ENOMEM;
928 ceph_mdsc_put_request(req);
929 goto out;
930 }
3dd69aab
JL
931 req->r_parent = dir;
932 set_bit(CEPH_MDS_R_PARENT_LOCKED, &req->r_req_flags);
a149bb9a
SK
933 req->r_dentry = dget(dentry);
934 req->r_num_caps = 2;
222b7f90 935 req->r_dentry_drop = CEPH_CAP_FILE_SHARED | CEPH_CAP_AUTH_EXCL;
2817b000 936 req->r_dentry_unless = CEPH_CAP_FILE_EXCL;
b748fc7a
JL
937 if (as_ctx.pagelist) {
938 req->r_pagelist = as_ctx.pagelist;
939 as_ctx.pagelist = NULL;
940 }
2817b000
SW
941 err = ceph_mdsc_do_request(mdsc, dir, req);
942 if (!err && !req->r_reply_info.head->is_dentry)
943 err = ceph_handle_notrace_create(dir, dentry);
944 ceph_mdsc_put_request(req);
b1ee94aa
YZ
945out:
946 if (err)
2817b000 947 d_drop(dentry);
ac6713cc 948 ceph_release_acl_sec_ctx(&as_ctx);
2817b000
SW
949 return err;
950}
951
549c7297
CB
952static int ceph_mkdir(struct user_namespace *mnt_userns, struct inode *dir,
953 struct dentry *dentry, umode_t mode)
2817b000 954{
2678da88 955 struct ceph_mds_client *mdsc = ceph_sb_to_mdsc(dir->i_sb);
2817b000 956 struct ceph_mds_request *req;
5c31e92d 957 struct ceph_acl_sec_ctx as_ctx = {};
2817b000
SW
958 int err = -EROFS;
959 int op;
960
961 if (ceph_snap(dir) == CEPH_SNAPDIR) {
962 /* mkdir .snap/foo is a MKSNAP */
963 op = CEPH_MDS_OP_MKSNAP;
a455589f
AV
964 dout("mksnap dir %p snap '%pd' dn %p\n", dir,
965 dentry, dentry);
2817b000 966 } else if (ceph_snap(dir) == CEPH_NOSNAP) {
18bb1db3 967 dout("mkdir dir %p dn %p mode 0%ho\n", dir, dentry, mode);
2817b000
SW
968 op = CEPH_MDS_OP_MKDIR;
969 } else {
970 goto out;
971 }
b1ee94aa 972
25963669
YZ
973 if (op == CEPH_MDS_OP_MKDIR &&
974 ceph_quota_is_max_files_exceeded(dir)) {
b7a29217
LH
975 err = -EDQUOT;
976 goto out;
977 }
978
b1ee94aa 979 mode |= S_IFDIR;
5c31e92d 980 err = ceph_pre_init_acls(dir, &mode, &as_ctx);
ac6713cc
YZ
981 if (err < 0)
982 goto out;
983 err = ceph_security_init_secctx(dentry, mode, &as_ctx);
b1ee94aa
YZ
984 if (err < 0)
985 goto out;
986
2817b000
SW
987 req = ceph_mdsc_create_request(mdsc, op, USE_AUTH_MDS);
988 if (IS_ERR(req)) {
989 err = PTR_ERR(req);
990 goto out;
991 }
992
993 req->r_dentry = dget(dentry);
994 req->r_num_caps = 2;
3dd69aab
JL
995 req->r_parent = dir;
996 set_bit(CEPH_MDS_R_PARENT_LOCKED, &req->r_req_flags);
2817b000 997 req->r_args.mkdir.mode = cpu_to_le32(mode);
222b7f90 998 req->r_dentry_drop = CEPH_CAP_FILE_SHARED | CEPH_CAP_AUTH_EXCL;
2817b000 999 req->r_dentry_unless = CEPH_CAP_FILE_EXCL;
5c31e92d
YZ
1000 if (as_ctx.pagelist) {
1001 req->r_pagelist = as_ctx.pagelist;
1002 as_ctx.pagelist = NULL;
b1ee94aa 1003 }
2817b000 1004 err = ceph_mdsc_do_request(mdsc, dir, req);
275dd19e
YZ
1005 if (!err &&
1006 !req->r_reply_info.head->is_target &&
1007 !req->r_reply_info.head->is_dentry)
2817b000
SW
1008 err = ceph_handle_notrace_create(dir, dentry);
1009 ceph_mdsc_put_request(req);
1010out:
b20a95a0 1011 if (!err)
5c31e92d 1012 ceph_init_inode_acls(d_inode(dentry), &as_ctx);
b20a95a0 1013 else
2817b000 1014 d_drop(dentry);
5c31e92d 1015 ceph_release_acl_sec_ctx(&as_ctx);
2817b000
SW
1016 return err;
1017}
1018
1019static int ceph_link(struct dentry *old_dentry, struct inode *dir,
1020 struct dentry *dentry)
1021{
2678da88 1022 struct ceph_mds_client *mdsc = ceph_sb_to_mdsc(dir->i_sb);
2817b000
SW
1023 struct ceph_mds_request *req;
1024 int err;
1025
1026 if (ceph_snap(dir) != CEPH_NOSNAP)
1027 return -EROFS;
1028
1029 dout("link in dir %p old_dentry %p dentry %p\n", dir,
1030 old_dentry, dentry);
1031 req = ceph_mdsc_create_request(mdsc, CEPH_MDS_OP_LINK, USE_AUTH_MDS);
1032 if (IS_ERR(req)) {
1033 d_drop(dentry);
1034 return PTR_ERR(req);
1035 }
1036 req->r_dentry = dget(dentry);
1037 req->r_num_caps = 2;
4b58c9b1 1038 req->r_old_dentry = dget(old_dentry);
3dd69aab
JL
1039 req->r_parent = dir;
1040 set_bit(CEPH_MDS_R_PARENT_LOCKED, &req->r_req_flags);
2817b000
SW
1041 req->r_dentry_drop = CEPH_CAP_FILE_SHARED;
1042 req->r_dentry_unless = CEPH_CAP_FILE_EXCL;
ad88f23f 1043 /* release LINK_SHARED on source inode (mds will lock it) */
d19a0b54 1044 req->r_old_inode_drop = CEPH_CAP_LINK_SHARED | CEPH_CAP_LINK_EXCL;
2817b000 1045 err = ceph_mdsc_do_request(mdsc, dir, req);
70b666c3 1046 if (err) {
2817b000 1047 d_drop(dentry);
70b666c3 1048 } else if (!req->r_reply_info.head->is_dentry) {
2b0143b5
DH
1049 ihold(d_inode(old_dentry));
1050 d_instantiate(dentry, d_inode(old_dentry));
70b666c3 1051 }
2817b000
SW
1052 ceph_mdsc_put_request(req);
1053 return err;
1054}
1055
2ccb4546
JL
1056static void ceph_async_unlink_cb(struct ceph_mds_client *mdsc,
1057 struct ceph_mds_request *req)
1058{
1059 int result = req->r_err ? req->r_err :
1060 le32_to_cpu(req->r_reply_info.head->result);
1061
1062 if (result == -EJUKEBOX)
1063 goto out;
1064
1065 /* If op failed, mark everyone involved for errors */
1066 if (result) {
2a575f13
JL
1067 int pathlen = 0;
1068 u64 base = 0;
2ccb4546
JL
1069 char *path = ceph_mdsc_build_path(req->r_dentry, &pathlen,
1070 &base, 0);
1071
1072 /* mark error on parent + clear complete */
1073 mapping_set_error(req->r_parent->i_mapping, result);
1074 ceph_dir_clear_complete(req->r_parent);
1075
1076 /* drop the dentry -- we don't know its status */
1077 if (!d_unhashed(req->r_dentry))
1078 d_drop(req->r_dentry);
1079
1080 /* mark inode itself for an error (since metadata is bogus) */
1081 mapping_set_error(req->r_old_inode->i_mapping, result);
1082
1083 pr_warn("ceph: async unlink failure path=(%llx)%s result=%d!\n",
1084 base, IS_ERR(path) ? "<<bad>>" : path, result);
1085 ceph_mdsc_free_path(path, pathlen);
1086 }
1087out:
1088 iput(req->r_old_inode);
1089 ceph_mdsc_release_dir_caps(req);
1090}
1091
1092static int get_caps_for_async_unlink(struct inode *dir, struct dentry *dentry)
1093{
1094 struct ceph_inode_info *ci = ceph_inode(dir);
1095 struct ceph_dentry_info *di;
1096 int got = 0, want = CEPH_CAP_FILE_EXCL | CEPH_CAP_DIR_UNLINK;
1097
1098 spin_lock(&ci->i_ceph_lock);
1099 if ((__ceph_caps_issued(ci, NULL) & want) == want) {
1100 ceph_take_cap_refs(ci, want, false);
1101 got = want;
1102 }
1103 spin_unlock(&ci->i_ceph_lock);
1104
1105 /* If we didn't get anything, return 0 */
1106 if (!got)
1107 return 0;
1108
1109 spin_lock(&dentry->d_lock);
1110 di = ceph_dentry(dentry);
1111 /*
1112 * - We are holding Fx, which implies Fs caps.
1113 * - Only support async unlink for primary linkage
1114 */
1115 if (atomic_read(&ci->i_shared_gen) != di->lease_shared_gen ||
1116 !(di->flags & CEPH_DENTRY_PRIMARY_LINK))
1117 want = 0;
1118 spin_unlock(&dentry->d_lock);
1119
1120 /* Do we still want what we've got? */
1121 if (want == got)
1122 return got;
1123
1124 ceph_put_cap_refs(ci, got);
1125 return 0;
1126}
1127
2817b000
SW
1128/*
1129 * rmdir and unlink are differ only by the metadata op code
1130 */
1131static int ceph_unlink(struct inode *dir, struct dentry *dentry)
1132{
3d14c5d2
YS
1133 struct ceph_fs_client *fsc = ceph_sb_to_client(dir->i_sb);
1134 struct ceph_mds_client *mdsc = fsc->mdsc;
2b0143b5 1135 struct inode *inode = d_inode(dentry);
2817b000 1136 struct ceph_mds_request *req;
2ccb4546 1137 bool try_async = ceph_test_mount_opt(fsc, ASYNC_DIROPS);
2817b000
SW
1138 int err = -EROFS;
1139 int op;
1140
1141 if (ceph_snap(dir) == CEPH_SNAPDIR) {
1142 /* rmdir .snap/foo is RMSNAP */
a455589f 1143 dout("rmsnap dir %p '%pd' dn %p\n", dir, dentry, dentry);
2817b000
SW
1144 op = CEPH_MDS_OP_RMSNAP;
1145 } else if (ceph_snap(dir) == CEPH_NOSNAP) {
1146 dout("unlink/rmdir dir %p dn %p inode %p\n",
1147 dir, dentry, inode);
e36cb0b8 1148 op = d_is_dir(dentry) ?
2817b000
SW
1149 CEPH_MDS_OP_RMDIR : CEPH_MDS_OP_UNLINK;
1150 } else
1151 goto out;
2ccb4546 1152retry:
2817b000
SW
1153 req = ceph_mdsc_create_request(mdsc, op, USE_AUTH_MDS);
1154 if (IS_ERR(req)) {
1155 err = PTR_ERR(req);
1156 goto out;
1157 }
1158 req->r_dentry = dget(dentry);
1159 req->r_num_caps = 2;
3dd69aab 1160 req->r_parent = dir;
2817b000
SW
1161 req->r_dentry_drop = CEPH_CAP_FILE_SHARED;
1162 req->r_dentry_unless = CEPH_CAP_FILE_EXCL;
6ef0bc6d 1163 req->r_inode_drop = ceph_drop_caps_for_unlink(inode);
2ccb4546
JL
1164
1165 if (try_async && op == CEPH_MDS_OP_UNLINK &&
1166 (req->r_dir_caps = get_caps_for_async_unlink(dir, dentry))) {
ebce3eb2 1167 dout("async unlink on %llu/%.*s caps=%s", ceph_ino(dir),
2ccb4546
JL
1168 dentry->d_name.len, dentry->d_name.name,
1169 ceph_cap_string(req->r_dir_caps));
1170 set_bit(CEPH_MDS_R_ASYNC, &req->r_req_flags);
1171 req->r_callback = ceph_async_unlink_cb;
1172 req->r_old_inode = d_inode(dentry);
1173 ihold(req->r_old_inode);
1174 err = ceph_mdsc_submit_request(mdsc, dir, req);
1175 if (!err) {
1176 /*
1177 * We have enough caps, so we assume that the unlink
1178 * will succeed. Fix up the target inode and dcache.
1179 */
1180 drop_nlink(inode);
1181 d_delete(dentry);
1182 } else if (err == -EJUKEBOX) {
1183 try_async = false;
1184 ceph_mdsc_put_request(req);
1185 goto retry;
1186 }
1187 } else {
1188 set_bit(CEPH_MDS_R_PARENT_LOCKED, &req->r_req_flags);
1189 err = ceph_mdsc_do_request(mdsc, dir, req);
1190 if (!err && !req->r_reply_info.head->is_dentry)
1191 d_delete(dentry);
1192 }
1193
2817b000
SW
1194 ceph_mdsc_put_request(req);
1195out:
1196 return err;
1197}
1198
549c7297
CB
1199static int ceph_rename(struct user_namespace *mnt_userns, struct inode *old_dir,
1200 struct dentry *old_dentry, struct inode *new_dir,
1201 struct dentry *new_dentry, unsigned int flags)
2817b000 1202{
2678da88 1203 struct ceph_mds_client *mdsc = ceph_sb_to_mdsc(old_dir->i_sb);
2817b000 1204 struct ceph_mds_request *req;
0ea611a3 1205 int op = CEPH_MDS_OP_RENAME;
2817b000
SW
1206 int err;
1207
1cd66c93
MS
1208 if (flags)
1209 return -EINVAL;
1210
2817b000
SW
1211 if (ceph_snap(old_dir) != ceph_snap(new_dir))
1212 return -EXDEV;
0ea611a3
YZ
1213 if (ceph_snap(old_dir) != CEPH_NOSNAP) {
1214 if (old_dir == new_dir && ceph_snap(old_dir) == CEPH_SNAPDIR)
1215 op = CEPH_MDS_OP_RENAMESNAP;
1216 else
1217 return -EROFS;
1218 }
6646ea1c
LH
1219 /* don't allow cross-quota renames */
1220 if ((old_dir != new_dir) &&
1221 (!ceph_quota_is_same_realm(old_dir, new_dir)))
1222 return -EXDEV;
cafe21a4 1223
2817b000
SW
1224 dout("rename dir %p dentry %p to dir %p dentry %p\n",
1225 old_dir, old_dentry, new_dir, new_dentry);
0ea611a3 1226 req = ceph_mdsc_create_request(mdsc, op, USE_AUTH_MDS);
2817b000
SW
1227 if (IS_ERR(req))
1228 return PTR_ERR(req);
180061a5 1229 ihold(old_dir);
2817b000
SW
1230 req->r_dentry = dget(new_dentry);
1231 req->r_num_caps = 2;
1232 req->r_old_dentry = dget(old_dentry);
180061a5 1233 req->r_old_dentry_dir = old_dir;
3dd69aab
JL
1234 req->r_parent = new_dir;
1235 set_bit(CEPH_MDS_R_PARENT_LOCKED, &req->r_req_flags);
2817b000
SW
1236 req->r_old_dentry_drop = CEPH_CAP_FILE_SHARED;
1237 req->r_old_dentry_unless = CEPH_CAP_FILE_EXCL;
1238 req->r_dentry_drop = CEPH_CAP_FILE_SHARED;
1239 req->r_dentry_unless = CEPH_CAP_FILE_EXCL;
1240 /* release LINK_RDCACHE on source inode (mds will lock it) */
d19a0b54 1241 req->r_old_inode_drop = CEPH_CAP_LINK_SHARED | CEPH_CAP_LINK_EXCL;
6ef0bc6d
ZZ
1242 if (d_really_is_positive(new_dentry)) {
1243 req->r_inode_drop =
1244 ceph_drop_caps_for_unlink(d_inode(new_dentry));
1245 }
2817b000
SW
1246 err = ceph_mdsc_do_request(mdsc, old_dir, req);
1247 if (!err && !req->r_reply_info.head->is_dentry) {
1248 /*
1249 * Normally d_move() is done by fill_trace (called by
1250 * do_request, above). If there is no trace, we need
1251 * to do it here.
1252 */
1253 d_move(old_dentry, new_dentry);
1254 }
1255 ceph_mdsc_put_request(req);
1256 return err;
1257}
1258
37c4efc1
YZ
1259/*
1260 * Move dentry to tail of mdsc->dentry_leases list when lease is updated.
1261 * Leases at front of the list will expire first. (Assume all leases have
1262 * similar duration)
1263 *
1264 * Called under dentry->d_lock.
1265 */
1266void __ceph_dentry_lease_touch(struct ceph_dentry_info *di)
1267{
1268 struct dentry *dn = di->dentry;
1269 struct ceph_mds_client *mdsc;
1270
1271 dout("dentry_lease_touch %p %p '%pd'\n", di, dn, dn);
1272
1273 di->flags |= CEPH_DENTRY_LEASE_LIST;
1274 if (di->flags & CEPH_DENTRY_SHRINK_LIST) {
1275 di->flags |= CEPH_DENTRY_REFERENCED;
1276 return;
1277 }
1278
1279 mdsc = ceph_sb_to_client(dn->d_sb)->mdsc;
1280 spin_lock(&mdsc->dentry_list_lock);
1281 list_move_tail(&di->lease_list, &mdsc->dentry_leases);
1282 spin_unlock(&mdsc->dentry_list_lock);
1283}
1284
1285static void __dentry_dir_lease_touch(struct ceph_mds_client* mdsc,
1286 struct ceph_dentry_info *di)
1287{
1288 di->flags &= ~(CEPH_DENTRY_LEASE_LIST | CEPH_DENTRY_REFERENCED);
1289 di->lease_gen = 0;
1290 di->time = jiffies;
1291 list_move_tail(&di->lease_list, &mdsc->dentry_dir_leases);
1292}
1293
1294/*
1295 * When dir lease is used, add dentry to tail of mdsc->dentry_dir_leases
1296 * list if it's not in the list, otherwise set 'referenced' flag.
1297 *
1298 * Called under dentry->d_lock.
1299 */
1300void __ceph_dentry_dir_lease_touch(struct ceph_dentry_info *di)
1301{
1302 struct dentry *dn = di->dentry;
1303 struct ceph_mds_client *mdsc;
1304
0eb30853 1305 dout("dentry_dir_lease_touch %p %p '%pd' (offset 0x%llx)\n",
37c4efc1
YZ
1306 di, dn, dn, di->offset);
1307
1308 if (!list_empty(&di->lease_list)) {
1309 if (di->flags & CEPH_DENTRY_LEASE_LIST) {
1310 /* don't remove dentry from dentry lease list
1311 * if its lease is valid */
1312 if (__dentry_lease_is_valid(di))
1313 return;
1314 } else {
1315 di->flags |= CEPH_DENTRY_REFERENCED;
1316 return;
1317 }
1318 }
1319
1320 if (di->flags & CEPH_DENTRY_SHRINK_LIST) {
1321 di->flags |= CEPH_DENTRY_REFERENCED;
1322 di->flags &= ~CEPH_DENTRY_LEASE_LIST;
1323 return;
1324 }
1325
1326 mdsc = ceph_sb_to_client(dn->d_sb)->mdsc;
1327 spin_lock(&mdsc->dentry_list_lock);
1328 __dentry_dir_lease_touch(mdsc, di),
1329 spin_unlock(&mdsc->dentry_list_lock);
1330}
1331
1332static void __dentry_lease_unlist(struct ceph_dentry_info *di)
1333{
1334 struct ceph_mds_client *mdsc;
1335 if (di->flags & CEPH_DENTRY_SHRINK_LIST)
1336 return;
1337 if (list_empty(&di->lease_list))
1338 return;
1339
1340 mdsc = ceph_sb_to_client(di->dentry->d_sb)->mdsc;
1341 spin_lock(&mdsc->dentry_list_lock);
1342 list_del_init(&di->lease_list);
1343 spin_unlock(&mdsc->dentry_list_lock);
1344}
1345
1346enum {
1347 KEEP = 0,
1348 DELETE = 1,
1349 TOUCH = 2,
1350 STOP = 4,
1351};
1352
1353struct ceph_lease_walk_control {
1354 bool dir_lease;
fe33032d 1355 bool expire_dir_lease;
37c4efc1
YZ
1356 unsigned long nr_to_scan;
1357 unsigned long dir_lease_ttl;
1358};
1359
1360static unsigned long
1361__dentry_leases_walk(struct ceph_mds_client *mdsc,
1362 struct ceph_lease_walk_control *lwc,
1363 int (*check)(struct dentry*, void*))
1364{
1365 struct ceph_dentry_info *di, *tmp;
1366 struct dentry *dentry, *last = NULL;
1367 struct list_head* list;
1368 LIST_HEAD(dispose);
1369 unsigned long freed = 0;
1370 int ret = 0;
1371
1372 list = lwc->dir_lease ? &mdsc->dentry_dir_leases : &mdsc->dentry_leases;
1373 spin_lock(&mdsc->dentry_list_lock);
1374 list_for_each_entry_safe(di, tmp, list, lease_list) {
1375 if (!lwc->nr_to_scan)
1376 break;
1377 --lwc->nr_to_scan;
1378
1379 dentry = di->dentry;
1380 if (last == dentry)
1381 break;
1382
1383 if (!spin_trylock(&dentry->d_lock))
1384 continue;
1385
516162b9 1386 if (__lockref_is_dead(&dentry->d_lockref)) {
37c4efc1
YZ
1387 list_del_init(&di->lease_list);
1388 goto next;
1389 }
1390
1391 ret = check(dentry, lwc);
1392 if (ret & TOUCH) {
1393 /* move it into tail of dir lease list */
1394 __dentry_dir_lease_touch(mdsc, di);
1395 if (!last)
1396 last = dentry;
1397 }
1398 if (ret & DELETE) {
1399 /* stale lease */
1400 di->flags &= ~CEPH_DENTRY_REFERENCED;
1401 if (dentry->d_lockref.count > 0) {
1402 /* update_dentry_lease() will re-add
1403 * it to lease list, or
1404 * ceph_d_delete() will return 1 when
1405 * last reference is dropped */
1406 list_del_init(&di->lease_list);
1407 } else {
1408 di->flags |= CEPH_DENTRY_SHRINK_LIST;
1409 list_move_tail(&di->lease_list, &dispose);
1410 dget_dlock(dentry);
1411 }
1412 }
1413next:
1414 spin_unlock(&dentry->d_lock);
1415 if (ret & STOP)
1416 break;
1417 }
1418 spin_unlock(&mdsc->dentry_list_lock);
1419
1420 while (!list_empty(&dispose)) {
1421 di = list_first_entry(&dispose, struct ceph_dentry_info,
1422 lease_list);
1423 dentry = di->dentry;
1424 spin_lock(&dentry->d_lock);
1425
1426 list_del_init(&di->lease_list);
1427 di->flags &= ~CEPH_DENTRY_SHRINK_LIST;
1428 if (di->flags & CEPH_DENTRY_REFERENCED) {
1429 spin_lock(&mdsc->dentry_list_lock);
1430 if (di->flags & CEPH_DENTRY_LEASE_LIST) {
1431 list_add_tail(&di->lease_list,
1432 &mdsc->dentry_leases);
1433 } else {
1434 __dentry_dir_lease_touch(mdsc, di);
1435 }
1436 spin_unlock(&mdsc->dentry_list_lock);
1437 } else {
1438 freed++;
1439 }
1440
1441 spin_unlock(&dentry->d_lock);
1442 /* ceph_d_delete() does the trick */
1443 dput(dentry);
1444 }
1445 return freed;
1446}
1447
1448static int __dentry_lease_check(struct dentry *dentry, void *arg)
1449{
1450 struct ceph_dentry_info *di = ceph_dentry(dentry);
1451 int ret;
1452
1453 if (__dentry_lease_is_valid(di))
1454 return STOP;
1455 ret = __dir_lease_try_check(dentry);
1456 if (ret == -EBUSY)
1457 return KEEP;
1458 if (ret > 0)
1459 return TOUCH;
1460 return DELETE;
1461}
1462
1463static int __dir_lease_check(struct dentry *dentry, void *arg)
1464{
1465 struct ceph_lease_walk_control *lwc = arg;
1466 struct ceph_dentry_info *di = ceph_dentry(dentry);
1467
1468 int ret = __dir_lease_try_check(dentry);
1469 if (ret == -EBUSY)
1470 return KEEP;
1471 if (ret > 0) {
1472 if (time_before(jiffies, di->time + lwc->dir_lease_ttl))
1473 return STOP;
1474 /* Move dentry to tail of dir lease list if we don't want
1475 * to delete it. So dentries in the list are checked in a
1476 * round robin manner */
fe33032d
YZ
1477 if (!lwc->expire_dir_lease)
1478 return TOUCH;
1479 if (dentry->d_lockref.count > 0 ||
1480 (di->flags & CEPH_DENTRY_REFERENCED))
1481 return TOUCH;
1482 /* invalidate dir lease */
1483 di->lease_shared_gen = 0;
37c4efc1
YZ
1484 }
1485 return DELETE;
1486}
1487
1488int ceph_trim_dentries(struct ceph_mds_client *mdsc)
1489{
1490 struct ceph_lease_walk_control lwc;
fe33032d 1491 unsigned long count;
37c4efc1
YZ
1492 unsigned long freed;
1493
fe33032d
YZ
1494 spin_lock(&mdsc->caps_list_lock);
1495 if (mdsc->caps_use_max > 0 &&
1496 mdsc->caps_use_count > mdsc->caps_use_max)
1497 count = mdsc->caps_use_count - mdsc->caps_use_max;
1498 else
1499 count = 0;
1500 spin_unlock(&mdsc->caps_list_lock);
1501
37c4efc1
YZ
1502 lwc.dir_lease = false;
1503 lwc.nr_to_scan = CEPH_CAPS_PER_RELEASE * 2;
1504 freed = __dentry_leases_walk(mdsc, &lwc, __dentry_lease_check);
1505 if (!lwc.nr_to_scan) /* more invalid leases */
1506 return -EAGAIN;
1507
1508 if (lwc.nr_to_scan < CEPH_CAPS_PER_RELEASE)
1509 lwc.nr_to_scan = CEPH_CAPS_PER_RELEASE;
1510
1511 lwc.dir_lease = true;
fe33032d
YZ
1512 lwc.expire_dir_lease = freed < count;
1513 lwc.dir_lease_ttl = mdsc->fsc->mount_options->caps_wanted_delay_max * HZ;
37c4efc1
YZ
1514 freed +=__dentry_leases_walk(mdsc, &lwc, __dir_lease_check);
1515 if (!lwc.nr_to_scan) /* more to check */
1516 return -EAGAIN;
1517
1518 return freed > 0 ? 1 : 0;
1519}
1520
81a6cf2d
SW
1521/*
1522 * Ensure a dentry lease will no longer revalidate.
1523 */
1524void ceph_invalidate_dentry_lease(struct dentry *dentry)
1525{
37c4efc1 1526 struct ceph_dentry_info *di = ceph_dentry(dentry);
81a6cf2d 1527 spin_lock(&dentry->d_lock);
37c4efc1
YZ
1528 di->time = jiffies;
1529 di->lease_shared_gen = 0;
f5e17aed 1530 di->flags &= ~CEPH_DENTRY_PRIMARY_LINK;
37c4efc1 1531 __dentry_lease_unlist(di);
81a6cf2d
SW
1532 spin_unlock(&dentry->d_lock);
1533}
2817b000
SW
1534
1535/*
1536 * Check if dentry lease is valid. If not, delete the lease. Try to
1537 * renew if the least is more than half up.
1538 */
1e9c2eb6
YZ
1539static bool __dentry_lease_is_valid(struct ceph_dentry_info *di)
1540{
1541 struct ceph_mds_session *session;
1542
1543 if (!di->lease_gen)
1544 return false;
1545
1546 session = di->lease_session;
1547 if (session) {
1548 u32 gen;
1549 unsigned long ttl;
1550
1551 spin_lock(&session->s_gen_ttl_lock);
1552 gen = session->s_cap_gen;
1553 ttl = session->s_cap_ttl;
1554 spin_unlock(&session->s_gen_ttl_lock);
1555
1556 if (di->lease_gen == gen &&
1557 time_before(jiffies, ttl) &&
1558 time_before(jiffies, di->time))
1559 return true;
1560 }
1561 di->lease_gen = 0;
1562 return false;
1563}
1564
8f2a98ef 1565static int dentry_lease_is_valid(struct dentry *dentry, unsigned int flags)
2817b000
SW
1566{
1567 struct ceph_dentry_info *di;
2817b000 1568 struct ceph_mds_session *session = NULL;
2817b000 1569 u32 seq = 0;
1e9c2eb6 1570 int valid = 0;
2817b000
SW
1571
1572 spin_lock(&dentry->d_lock);
1573 di = ceph_dentry(dentry);
1e9c2eb6
YZ
1574 if (di && __dentry_lease_is_valid(di)) {
1575 valid = 1;
2817b000 1576
1e9c2eb6
YZ
1577 if (di->lease_renew_after &&
1578 time_after(jiffies, di->lease_renew_after)) {
1579 /*
1580 * We should renew. If we're in RCU walk mode
1581 * though, we can't do that so just return
1582 * -ECHILD.
1583 */
1584 if (flags & LOOKUP_RCU) {
1585 valid = -ECHILD;
1586 } else {
1587 session = ceph_get_mds_session(di->lease_session);
1588 seq = di->lease_seq;
1589 di->lease_renew_after = 0;
1590 di->lease_renew_from = jiffies;
2817b000 1591 }
2817b000
SW
1592 }
1593 }
1594 spin_unlock(&dentry->d_lock);
1595
1596 if (session) {
8f2a98ef 1597 ceph_mdsc_lease_send_msg(session, dentry,
2817b000
SW
1598 CEPH_MDS_LEASE_RENEW, seq);
1599 ceph_put_mds_session(session);
1600 }
1601 dout("dentry_lease_is_valid - dentry %p = %d\n", dentry, valid);
1602 return valid;
1603}
1604
1e9c2eb6
YZ
1605/*
1606 * Called under dentry->d_lock.
1607 */
1608static int __dir_lease_try_check(const struct dentry *dentry)
1609{
1610 struct ceph_dentry_info *di = ceph_dentry(dentry);
1611 struct inode *dir;
1612 struct ceph_inode_info *ci;
1613 int valid = 0;
1614
1615 if (!di->lease_shared_gen)
1616 return 0;
1617 if (IS_ROOT(dentry))
1618 return 0;
1619
1620 dir = d_inode(dentry->d_parent);
1621 ci = ceph_inode(dir);
1622
1623 if (spin_trylock(&ci->i_ceph_lock)) {
1624 if (atomic_read(&ci->i_shared_gen) == di->lease_shared_gen &&
1625 __ceph_caps_issued_mask(ci, CEPH_CAP_FILE_SHARED, 0))
1626 valid = 1;
1627 spin_unlock(&ci->i_ceph_lock);
1628 } else {
1629 valid = -EBUSY;
1630 }
1631
1632 if (!valid)
1633 di->lease_shared_gen = 0;
1634 return valid;
1635}
1636
2817b000
SW
1637/*
1638 * Check if directory-wide content lease/cap is valid.
1639 */
719a2514
YZ
1640static int dir_lease_is_valid(struct inode *dir, struct dentry *dentry,
1641 struct ceph_mds_client *mdsc)
2817b000
SW
1642{
1643 struct ceph_inode_info *ci = ceph_inode(dir);
feab6ac2
YZ
1644 int valid;
1645 int shared_gen;
2817b000 1646
be655596 1647 spin_lock(&ci->i_ceph_lock);
feab6ac2 1648 valid = __ceph_caps_issued_mask(ci, CEPH_CAP_FILE_SHARED, 1);
719a2514
YZ
1649 if (valid) {
1650 __ceph_touch_fmode(ci, mdsc, CEPH_FILE_MODE_RD);
1651 shared_gen = atomic_read(&ci->i_shared_gen);
1652 }
be655596 1653 spin_unlock(&ci->i_ceph_lock);
feab6ac2
YZ
1654 if (valid) {
1655 struct ceph_dentry_info *di;
1656 spin_lock(&dentry->d_lock);
1657 di = ceph_dentry(dentry);
1658 if (dir == d_inode(dentry->d_parent) &&
1659 di && di->lease_shared_gen == shared_gen)
1660 __ceph_dentry_dir_lease_touch(di);
1661 else
1662 valid = 0;
1663 spin_unlock(&dentry->d_lock);
1664 }
1665 dout("dir_lease_is_valid dir %p v%u dentry %p = %d\n",
1666 dir, (unsigned)atomic_read(&ci->i_shared_gen), dentry, valid);
2817b000
SW
1667 return valid;
1668}
1669
1670/*
1671 * Check if cached dentry can be trusted.
1672 */
0b728e19 1673static int ceph_d_revalidate(struct dentry *dentry, unsigned int flags)
2817b000 1674{
bf1c6aca 1675 int valid = 0;
641235d8 1676 struct dentry *parent;
aa8dd816 1677 struct inode *dir, *inode;
719a2514 1678 struct ceph_mds_client *mdsc;
34286d66 1679
f49d1e05 1680 if (flags & LOOKUP_RCU) {
52953d55 1681 parent = READ_ONCE(dentry->d_parent);
f49d1e05
JL
1682 dir = d_inode_rcu(parent);
1683 if (!dir)
1684 return -ECHILD;
aa8dd816 1685 inode = d_inode_rcu(dentry);
f49d1e05
JL
1686 } else {
1687 parent = dget_parent(dentry);
1688 dir = d_inode(parent);
aa8dd816 1689 inode = d_inode(dentry);
f49d1e05 1690 }
34286d66 1691
0eb30853 1692 dout("d_revalidate %p '%pd' inode %p offset 0x%llx\n", dentry,
aa8dd816 1693 dentry, inode, ceph_dentry(dentry)->offset);
2817b000 1694
719a2514
YZ
1695 mdsc = ceph_sb_to_client(dir->i_sb)->mdsc;
1696
2817b000
SW
1697 /* always trust cached snapped dentries, snapdir dentry */
1698 if (ceph_snap(dir) != CEPH_NOSNAP) {
a455589f 1699 dout("d_revalidate %p '%pd' inode %p is SNAPPED\n", dentry,
aa8dd816 1700 dentry, inode);
bf1c6aca 1701 valid = 1;
aa8dd816 1702 } else if (inode && ceph_snap(inode) == CEPH_SNAPDIR) {
bf1c6aca 1703 valid = 1;
14fb9c9e 1704 } else {
8f2a98ef 1705 valid = dentry_lease_is_valid(dentry, flags);
14fb9c9e
JL
1706 if (valid == -ECHILD)
1707 return valid;
719a2514 1708 if (valid || dir_lease_is_valid(dir, dentry, mdsc)) {
aa8dd816
AV
1709 if (inode)
1710 valid = ceph_is_any_caps(inode);
14fb9c9e
JL
1711 else
1712 valid = 1;
1713 }
2817b000 1714 }
2817b000 1715
200fd27c 1716 if (!valid) {
200fd27c 1717 struct ceph_mds_request *req;
1097680d
JL
1718 int op, err;
1719 u32 mask;
200fd27c 1720
f49d1e05
JL
1721 if (flags & LOOKUP_RCU)
1722 return -ECHILD;
1723
f9009efa
XL
1724 percpu_counter_inc(&mdsc->metric.d_lease_mis);
1725
200fd27c 1726 op = ceph_snap(dir) == CEPH_SNAPDIR ?
5eb9f604 1727 CEPH_MDS_OP_LOOKUPSNAP : CEPH_MDS_OP_LOOKUP;
200fd27c
YZ
1728 req = ceph_mdsc_create_request(mdsc, op, USE_ANY_MDS);
1729 if (!IS_ERR(req)) {
1730 req->r_dentry = dget(dentry);
5eb9f604
JL
1731 req->r_num_caps = 2;
1732 req->r_parent = dir;
200fd27c
YZ
1733
1734 mask = CEPH_STAT_CAP_INODE | CEPH_CAP_AUTH_SHARED;
1735 if (ceph_security_xattr_wanted(dir))
1736 mask |= CEPH_CAP_XATTR_SHARED;
1097680d 1737 req->r_args.getattr.mask = cpu_to_le32(mask);
200fd27c 1738
200fd27c 1739 err = ceph_mdsc_do_request(mdsc, NULL, req);
c3f4688a
JL
1740 switch (err) {
1741 case 0:
1742 if (d_really_is_positive(dentry) &&
1743 d_inode(dentry) == req->r_target_inode)
1744 valid = 1;
1745 break;
1746 case -ENOENT:
1747 if (d_really_is_negative(dentry))
1748 valid = 1;
df561f66 1749 fallthrough;
c3f4688a
JL
1750 default:
1751 break;
200fd27c
YZ
1752 }
1753 ceph_mdsc_put_request(req);
1754 dout("d_revalidate %p lookup result=%d\n",
1755 dentry, err);
1756 }
f9009efa
XL
1757 } else {
1758 percpu_counter_inc(&mdsc->metric.d_lease_hit);
200fd27c
YZ
1759 }
1760
bf1c6aca 1761 dout("d_revalidate %p %s\n", dentry, valid ? "valid" : "invalid");
37c4efc1 1762 if (!valid)
9215aeea 1763 ceph_dir_clear_complete(dir);
641235d8 1764
f49d1e05
JL
1765 if (!(flags & LOOKUP_RCU))
1766 dput(parent);
bf1c6aca 1767 return valid;
2817b000
SW
1768}
1769
1e9c2eb6
YZ
1770/*
1771 * Delete unused dentry that doesn't have valid lease
1772 *
1773 * Called under dentry->d_lock.
1774 */
1775static int ceph_d_delete(const struct dentry *dentry)
1776{
1777 struct ceph_dentry_info *di;
1778
1779 /* won't release caps */
1780 if (d_really_is_negative(dentry))
1781 return 0;
1782 if (ceph_snap(d_inode(dentry)) != CEPH_NOSNAP)
1783 return 0;
1784 /* vaild lease? */
1785 di = ceph_dentry(dentry);
1786 if (di) {
1787 if (__dentry_lease_is_valid(di))
1788 return 0;
1789 if (__dir_lease_try_check(dentry))
1790 return 0;
1791 }
1792 return 1;
1793}
1794
2817b000 1795/*
147851d2 1796 * Release our ceph_dentry_info.
2817b000 1797 */
147851d2 1798static void ceph_d_release(struct dentry *dentry)
2817b000
SW
1799{
1800 struct ceph_dentry_info *di = ceph_dentry(dentry);
f9009efa 1801 struct ceph_fs_client *fsc = ceph_sb_to_client(dentry->d_sb);
2817b000 1802
147851d2 1803 dout("d_release %p\n", dentry);
5b484a51 1804
f9009efa
XL
1805 atomic64_dec(&fsc->mdsc->metric.total_dentries);
1806
5b484a51 1807 spin_lock(&dentry->d_lock);
37c4efc1 1808 __dentry_lease_unlist(di);
5b484a51
JL
1809 dentry->d_fsdata = NULL;
1810 spin_unlock(&dentry->d_lock);
1811
3d8eb7a9
SW
1812 if (di->lease_session)
1813 ceph_put_mds_session(di->lease_session);
1814 kmem_cache_free(ceph_dentry_cachep, di);
2817b000
SW
1815}
1816
b58dc410
SW
1817/*
1818 * When the VFS prunes a dentry from the cache, we need to clear the
1819 * complete flag on the parent directory.
1820 *
1821 * Called under dentry->d_lock.
1822 */
1823static void ceph_d_prune(struct dentry *dentry)
1824{
5495c2d0
YZ
1825 struct ceph_inode_info *dir_ci;
1826 struct ceph_dentry_info *di;
1827
1828 dout("ceph_d_prune %pd %p\n", dentry, dentry);
b58dc410
SW
1829
1830 /* do we have a valid parent? */
8842b3be 1831 if (IS_ROOT(dentry))
b58dc410
SW
1832 return;
1833
5495c2d0
YZ
1834 /* we hold d_lock, so d_parent is stable */
1835 dir_ci = ceph_inode(d_inode(dentry->d_parent));
1836 if (dir_ci->i_vino.snap == CEPH_SNAPDIR)
b58dc410 1837 return;
2817b000 1838
5495c2d0
YZ
1839 /* who calls d_delete() should also disable dcache readdir */
1840 if (d_really_is_negative(dentry))
18fc8abd
AV
1841 return;
1842
5495c2d0
YZ
1843 /* d_fsdata does not get cleared until d_release */
1844 if (!d_unhashed(dentry)) {
1845 __ceph_dir_clear_complete(dir_ci);
1846 return;
1847 }
1848
1849 /* Disable dcache readdir just in case that someone called d_drop()
1850 * or d_invalidate(), but MDS didn't revoke CEPH_CAP_FILE_SHARED
1851 * properly (dcache readdir is still enabled) */
1852 di = ceph_dentry(dentry);
1853 if (di->offset > 0 &&
1854 di->lease_shared_gen == atomic_read(&dir_ci->i_shared_gen))
1855 __ceph_dir_clear_ordered(dir_ci);
b58dc410 1856}
2817b000
SW
1857
1858/*
1859 * read() on a dir. This weird interface hack only works if mounted
1860 * with '-o dirstat'.
1861 */
1862static ssize_t ceph_read_dir(struct file *file, char __user *buf, size_t size,
1863 loff_t *ppos)
1864{
bb48bd4d 1865 struct ceph_dir_file_info *dfi = file->private_data;
496ad9aa 1866 struct inode *inode = file_inode(file);
2817b000
SW
1867 struct ceph_inode_info *ci = ceph_inode(inode);
1868 int left;
ae598083 1869 const int bufsize = 1024;
2817b000 1870
3d14c5d2 1871 if (!ceph_test_mount_opt(ceph_sb_to_client(inode->i_sb), DIRSTAT))
2817b000
SW
1872 return -EISDIR;
1873
bb48bd4d
CX
1874 if (!dfi->dir_info) {
1875 dfi->dir_info = kmalloc(bufsize, GFP_KERNEL);
1876 if (!dfi->dir_info)
2817b000 1877 return -ENOMEM;
bb48bd4d
CX
1878 dfi->dir_info_len =
1879 snprintf(dfi->dir_info, bufsize,
2817b000
SW
1880 "entries: %20lld\n"
1881 " files: %20lld\n"
1882 " subdirs: %20lld\n"
1883 "rentries: %20lld\n"
1884 " rfiles: %20lld\n"
1885 " rsubdirs: %20lld\n"
1886 "rbytes: %20lld\n"
9bbeab41 1887 "rctime: %10lld.%09ld\n",
2817b000
SW
1888 ci->i_files + ci->i_subdirs,
1889 ci->i_files,
1890 ci->i_subdirs,
1891 ci->i_rfiles + ci->i_rsubdirs,
1892 ci->i_rfiles,
1893 ci->i_rsubdirs,
1894 ci->i_rbytes,
9bbeab41
AB
1895 ci->i_rctime.tv_sec,
1896 ci->i_rctime.tv_nsec);
2817b000
SW
1897 }
1898
bb48bd4d 1899 if (*ppos >= dfi->dir_info_len)
2817b000 1900 return 0;
bb48bd4d
CX
1901 size = min_t(unsigned, size, dfi->dir_info_len-*ppos);
1902 left = copy_to_user(buf, dfi->dir_info + *ppos, size);
2817b000
SW
1903 if (left == size)
1904 return -EFAULT;
1905 *ppos += (size - left);
1906 return size - left;
1907}
1908
2817b000 1909
2817b000 1910
6c0f3af7
SW
1911/*
1912 * Return name hash for a given dentry. This is dependent on
1913 * the parent directory's hash function.
1914 */
e5f86dc3 1915unsigned ceph_dentry_hash(struct inode *dir, struct dentry *dn)
6c0f3af7 1916{
6c0f3af7 1917 struct ceph_inode_info *dci = ceph_inode(dir);
76a495d6 1918 unsigned hash;
6c0f3af7
SW
1919
1920 switch (dci->i_dir_layout.dl_dir_hash) {
1921 case 0: /* for backward compat */
1922 case CEPH_STR_HASH_LINUX:
1923 return dn->d_name.hash;
1924
1925 default:
76a495d6
JL
1926 spin_lock(&dn->d_lock);
1927 hash = ceph_str_hash(dci->i_dir_layout.dl_dir_hash,
6c0f3af7 1928 dn->d_name.name, dn->d_name.len);
76a495d6
JL
1929 spin_unlock(&dn->d_lock);
1930 return hash;
6c0f3af7
SW
1931 }
1932}
1933
2817b000
SW
1934const struct file_operations ceph_dir_fops = {
1935 .read = ceph_read_dir,
77acfa29 1936 .iterate = ceph_readdir,
2817b000
SW
1937 .llseek = ceph_dir_llseek,
1938 .open = ceph_open,
1939 .release = ceph_release,
1940 .unlocked_ioctl = ceph_ioctl,
18bd6caa 1941 .compat_ioctl = compat_ptr_ioctl,
da819c81 1942 .fsync = ceph_fsync,
597817dd
YZ
1943 .lock = ceph_lock,
1944 .flock = ceph_flock,
2817b000
SW
1945};
1946
38c48b5f
YZ
1947const struct file_operations ceph_snapdir_fops = {
1948 .iterate = ceph_readdir,
1949 .llseek = ceph_dir_llseek,
1950 .open = ceph_open,
1951 .release = ceph_release,
1952};
1953
2817b000
SW
1954const struct inode_operations ceph_dir_iops = {
1955 .lookup = ceph_lookup,
1956 .permission = ceph_permission,
1957 .getattr = ceph_getattr,
1958 .setattr = ceph_setattr,
2817b000 1959 .listxattr = ceph_listxattr,
7221fe4c 1960 .get_acl = ceph_get_acl,
72466d0b 1961 .set_acl = ceph_set_acl,
2817b000
SW
1962 .mknod = ceph_mknod,
1963 .symlink = ceph_symlink,
1964 .mkdir = ceph_mkdir,
1965 .link = ceph_link,
1966 .unlink = ceph_unlink,
1967 .rmdir = ceph_unlink,
1968 .rename = ceph_rename,
1969 .create = ceph_create,
2d83bde9 1970 .atomic_open = ceph_atomic_open,
2817b000
SW
1971};
1972
38c48b5f
YZ
1973const struct inode_operations ceph_snapdir_iops = {
1974 .lookup = ceph_lookup,
1975 .permission = ceph_permission,
1976 .getattr = ceph_getattr,
1977 .mkdir = ceph_mkdir,
1978 .rmdir = ceph_unlink,
0ea611a3 1979 .rename = ceph_rename,
38c48b5f
YZ
1980};
1981
52dfb8ac 1982const struct dentry_operations ceph_dentry_ops = {
2817b000 1983 .d_revalidate = ceph_d_revalidate,
1e9c2eb6 1984 .d_delete = ceph_d_delete,
147851d2 1985 .d_release = ceph_d_release,
b58dc410 1986 .d_prune = ceph_d_prune,
ad5cb123 1987 .d_init = ceph_d_init,
2817b000 1988};