]> git.ipfire.org Git - thirdparty/linux.git/blame - fs/ceph/caps.c
Merge tag 'io_uring-5.7-2020-05-22' of git://git.kernel.dk/linux-block
[thirdparty/linux.git] / fs / ceph / caps.c
CommitLineData
b2441318 1// SPDX-License-Identifier: GPL-2.0
3d14c5d2 2#include <linux/ceph/ceph_debug.h>
a8599bd8
SW
3
4#include <linux/fs.h>
5#include <linux/kernel.h>
174cd4b1 6#include <linux/sched/signal.h>
5a0e3ad6 7#include <linux/slab.h>
a8599bd8
SW
8#include <linux/vmalloc.h>
9#include <linux/wait.h>
f1a3d572 10#include <linux/writeback.h>
176c77c9 11#include <linux/iversion.h>
a8599bd8
SW
12
13#include "super.h"
3d14c5d2 14#include "mds_client.h"
99ccbd22 15#include "cache.h"
3d14c5d2
YS
16#include <linux/ceph/decode.h>
17#include <linux/ceph/messenger.h>
a8599bd8
SW
18
19/*
20 * Capability management
21 *
22 * The Ceph metadata servers control client access to inode metadata
23 * and file data by issuing capabilities, granting clients permission
24 * to read and/or write both inode field and file data to OSDs
25 * (storage nodes). Each capability consists of a set of bits
26 * indicating which operations are allowed.
27 *
28 * If the client holds a *_SHARED cap, the client has a coherent value
29 * that can be safely read from the cached inode.
30 *
31 * In the case of a *_EXCL (exclusive) or FILE_WR capabilities, the
32 * client is allowed to change inode attributes (e.g., file size,
33 * mtime), note its dirty state in the ceph_cap, and asynchronously
34 * flush that metadata change to the MDS.
35 *
36 * In the event of a conflicting operation (perhaps by another
37 * client), the MDS will revoke the conflicting client capabilities.
38 *
39 * In order for a client to cache an inode, it must hold a capability
40 * with at least one MDS server. When inodes are released, release
41 * notifications are batched and periodically sent en masse to the MDS
42 * cluster to release server state.
43 */
44
0e294387 45static u64 __get_oldest_flush_tid(struct ceph_mds_client *mdsc);
7bc00fdd
YZ
46static void __kick_flushing_caps(struct ceph_mds_client *mdsc,
47 struct ceph_mds_session *session,
48 struct ceph_inode_info *ci,
49 u64 oldest_flush_tid);
a8599bd8
SW
50
51/*
52 * Generate readable cap strings for debugging output.
53 */
54#define MAX_CAP_STR 20
55static char cap_str[MAX_CAP_STR][40];
56static DEFINE_SPINLOCK(cap_str_lock);
57static int last_cap_str;
58
59static char *gcap_string(char *s, int c)
60{
61 if (c & CEPH_CAP_GSHARED)
62 *s++ = 's';
63 if (c & CEPH_CAP_GEXCL)
64 *s++ = 'x';
65 if (c & CEPH_CAP_GCACHE)
66 *s++ = 'c';
67 if (c & CEPH_CAP_GRD)
68 *s++ = 'r';
69 if (c & CEPH_CAP_GWR)
70 *s++ = 'w';
71 if (c & CEPH_CAP_GBUFFER)
72 *s++ = 'b';
49a9f4f6
YZ
73 if (c & CEPH_CAP_GWREXTEND)
74 *s++ = 'a';
a8599bd8
SW
75 if (c & CEPH_CAP_GLAZYIO)
76 *s++ = 'l';
77 return s;
78}
79
80const char *ceph_cap_string(int caps)
81{
82 int i;
83 char *s;
84 int c;
85
86 spin_lock(&cap_str_lock);
87 i = last_cap_str++;
88 if (last_cap_str == MAX_CAP_STR)
89 last_cap_str = 0;
90 spin_unlock(&cap_str_lock);
91
92 s = cap_str[i];
93
94 if (caps & CEPH_CAP_PIN)
95 *s++ = 'p';
96
97 c = (caps >> CEPH_CAP_SAUTH) & 3;
98 if (c) {
99 *s++ = 'A';
100 s = gcap_string(s, c);
101 }
102
103 c = (caps >> CEPH_CAP_SLINK) & 3;
104 if (c) {
105 *s++ = 'L';
106 s = gcap_string(s, c);
107 }
108
109 c = (caps >> CEPH_CAP_SXATTR) & 3;
110 if (c) {
111 *s++ = 'X';
112 s = gcap_string(s, c);
113 }
114
115 c = caps >> CEPH_CAP_SFILE;
116 if (c) {
117 *s++ = 'F';
118 s = gcap_string(s, c);
119 }
120
121 if (s == cap_str[i])
122 *s++ = '-';
123 *s = 0;
124 return cap_str[i];
125}
126
37151668 127void ceph_caps_init(struct ceph_mds_client *mdsc)
a8599bd8 128{
37151668
YS
129 INIT_LIST_HEAD(&mdsc->caps_list);
130 spin_lock_init(&mdsc->caps_list_lock);
a8599bd8
SW
131}
132
37151668 133void ceph_caps_finalize(struct ceph_mds_client *mdsc)
a8599bd8
SW
134{
135 struct ceph_cap *cap;
136
37151668
YS
137 spin_lock(&mdsc->caps_list_lock);
138 while (!list_empty(&mdsc->caps_list)) {
139 cap = list_first_entry(&mdsc->caps_list,
140 struct ceph_cap, caps_item);
a8599bd8
SW
141 list_del(&cap->caps_item);
142 kmem_cache_free(ceph_cap_cachep, cap);
143 }
37151668
YS
144 mdsc->caps_total_count = 0;
145 mdsc->caps_avail_count = 0;
146 mdsc->caps_use_count = 0;
147 mdsc->caps_reserve_count = 0;
148 mdsc->caps_min_count = 0;
149 spin_unlock(&mdsc->caps_list_lock);
85ccce43
SW
150}
151
fe33032d
YZ
152void ceph_adjust_caps_max_min(struct ceph_mds_client *mdsc,
153 struct ceph_mount_options *fsopt)
85ccce43 154{
37151668 155 spin_lock(&mdsc->caps_list_lock);
fe33032d
YZ
156 mdsc->caps_min_count = fsopt->max_readdir;
157 if (mdsc->caps_min_count < 1024)
158 mdsc->caps_min_count = 1024;
159 mdsc->caps_use_max = fsopt->caps_max;
160 if (mdsc->caps_use_max > 0 &&
161 mdsc->caps_use_max < mdsc->caps_min_count)
162 mdsc->caps_use_max = mdsc->caps_min_count;
37151668 163 spin_unlock(&mdsc->caps_list_lock);
a8599bd8
SW
164}
165
7bf8f736
CX
166static void __ceph_unreserve_caps(struct ceph_mds_client *mdsc, int nr_caps)
167{
168 struct ceph_cap *cap;
169 int i;
170
171 if (nr_caps) {
172 BUG_ON(mdsc->caps_reserve_count < nr_caps);
173 mdsc->caps_reserve_count -= nr_caps;
174 if (mdsc->caps_avail_count >=
175 mdsc->caps_reserve_count + mdsc->caps_min_count) {
176 mdsc->caps_total_count -= nr_caps;
177 for (i = 0; i < nr_caps; i++) {
178 cap = list_first_entry(&mdsc->caps_list,
179 struct ceph_cap, caps_item);
180 list_del(&cap->caps_item);
181 kmem_cache_free(ceph_cap_cachep, cap);
182 }
183 } else {
184 mdsc->caps_avail_count += nr_caps;
185 }
186
187 dout("%s: caps %d = %d used + %d resv + %d avail\n",
188 __func__,
189 mdsc->caps_total_count, mdsc->caps_use_count,
190 mdsc->caps_reserve_count, mdsc->caps_avail_count);
191 BUG_ON(mdsc->caps_total_count != mdsc->caps_use_count +
192 mdsc->caps_reserve_count +
193 mdsc->caps_avail_count);
194 }
195}
196
e30ee581
ZZ
197/*
198 * Called under mdsc->mutex.
199 */
200int ceph_reserve_caps(struct ceph_mds_client *mdsc,
37151668 201 struct ceph_cap_reservation *ctx, int need)
a8599bd8 202{
e30ee581 203 int i, j;
a8599bd8
SW
204 struct ceph_cap *cap;
205 int have;
206 int alloc = 0;
e30ee581 207 int max_caps;
e5bc08d0 208 int err = 0;
e30ee581
ZZ
209 bool trimmed = false;
210 struct ceph_mds_session *s;
a8599bd8 211 LIST_HEAD(newcaps);
a8599bd8
SW
212
213 dout("reserve caps ctx=%p need=%d\n", ctx, need);
214
215 /* first reserve any caps that are already allocated */
37151668
YS
216 spin_lock(&mdsc->caps_list_lock);
217 if (mdsc->caps_avail_count >= need)
a8599bd8
SW
218 have = need;
219 else
37151668
YS
220 have = mdsc->caps_avail_count;
221 mdsc->caps_avail_count -= have;
222 mdsc->caps_reserve_count += have;
223 BUG_ON(mdsc->caps_total_count != mdsc->caps_use_count +
224 mdsc->caps_reserve_count +
225 mdsc->caps_avail_count);
226 spin_unlock(&mdsc->caps_list_lock);
a8599bd8 227
79cd674a 228 for (i = have; i < need; ) {
a8599bd8 229 cap = kmem_cache_alloc(ceph_cap_cachep, GFP_NOFS);
79cd674a
CX
230 if (cap) {
231 list_add(&cap->caps_item, &newcaps);
232 alloc++;
233 i++;
234 continue;
235 }
236
237 if (!trimmed) {
238 for (j = 0; j < mdsc->max_sessions; j++) {
239 s = __ceph_lookup_mds_session(mdsc, j);
240 if (!s)
241 continue;
242 mutex_unlock(&mdsc->mutex);
243
244 mutex_lock(&s->s_mutex);
245 max_caps = s->s_nr_caps - (need - i);
246 ceph_trim_caps(mdsc, s, max_caps);
247 mutex_unlock(&s->s_mutex);
248
249 ceph_put_mds_session(s);
250 mutex_lock(&mdsc->mutex);
e30ee581 251 }
79cd674a
CX
252 trimmed = true;
253
254 spin_lock(&mdsc->caps_list_lock);
255 if (mdsc->caps_avail_count) {
256 int more_have;
257 if (mdsc->caps_avail_count >= need - i)
258 more_have = need - i;
259 else
260 more_have = mdsc->caps_avail_count;
261
262 i += more_have;
263 have += more_have;
264 mdsc->caps_avail_count -= more_have;
265 mdsc->caps_reserve_count += more_have;
266
267 }
268 spin_unlock(&mdsc->caps_list_lock);
269
270 continue;
e30ee581 271 }
79cd674a
CX
272
273 pr_warn("reserve caps ctx=%p ENOMEM need=%d got=%d\n",
274 ctx, need, have + alloc);
e5bc08d0
CX
275 err = -ENOMEM;
276 break;
277 }
278
279 if (!err) {
280 BUG_ON(have + alloc != need);
281 ctx->count = need;
fe33032d 282 ctx->used = 0;
a8599bd8 283 }
a8599bd8 284
37151668
YS
285 spin_lock(&mdsc->caps_list_lock);
286 mdsc->caps_total_count += alloc;
287 mdsc->caps_reserve_count += alloc;
288 list_splice(&newcaps, &mdsc->caps_list);
a8599bd8 289
37151668
YS
290 BUG_ON(mdsc->caps_total_count != mdsc->caps_use_count +
291 mdsc->caps_reserve_count +
292 mdsc->caps_avail_count);
e5bc08d0
CX
293
294 if (err)
295 __ceph_unreserve_caps(mdsc, have + alloc);
296
37151668 297 spin_unlock(&mdsc->caps_list_lock);
a8599bd8 298
a8599bd8 299 dout("reserve caps ctx=%p %d = %d used + %d resv + %d avail\n",
37151668
YS
300 ctx, mdsc->caps_total_count, mdsc->caps_use_count,
301 mdsc->caps_reserve_count, mdsc->caps_avail_count);
e5bc08d0 302 return err;
a8599bd8
SW
303}
304
7bf8f736 305void ceph_unreserve_caps(struct ceph_mds_client *mdsc,
fe33032d 306 struct ceph_cap_reservation *ctx)
a8599bd8 307{
fe33032d
YZ
308 bool reclaim = false;
309 if (!ctx->count)
310 return;
311
a8599bd8 312 dout("unreserve caps ctx=%p count=%d\n", ctx, ctx->count);
7bf8f736
CX
313 spin_lock(&mdsc->caps_list_lock);
314 __ceph_unreserve_caps(mdsc, ctx->count);
315 ctx->count = 0;
fe33032d
YZ
316
317 if (mdsc->caps_use_max > 0 &&
318 mdsc->caps_use_count > mdsc->caps_use_max)
319 reclaim = true;
7bf8f736 320 spin_unlock(&mdsc->caps_list_lock);
fe33032d
YZ
321
322 if (reclaim)
323 ceph_reclaim_caps_nr(mdsc, ctx->used);
a8599bd8
SW
324}
325
d9df2783
YZ
326struct ceph_cap *ceph_get_cap(struct ceph_mds_client *mdsc,
327 struct ceph_cap_reservation *ctx)
a8599bd8
SW
328{
329 struct ceph_cap *cap = NULL;
330
331 /* temporary, until we do something about cap import/export */
443b3760
SW
332 if (!ctx) {
333 cap = kmem_cache_alloc(ceph_cap_cachep, GFP_NOFS);
334 if (cap) {
4d1d0534 335 spin_lock(&mdsc->caps_list_lock);
37151668
YS
336 mdsc->caps_use_count++;
337 mdsc->caps_total_count++;
4d1d0534 338 spin_unlock(&mdsc->caps_list_lock);
e327ce06
CX
339 } else {
340 spin_lock(&mdsc->caps_list_lock);
341 if (mdsc->caps_avail_count) {
342 BUG_ON(list_empty(&mdsc->caps_list));
343
344 mdsc->caps_avail_count--;
345 mdsc->caps_use_count++;
346 cap = list_first_entry(&mdsc->caps_list,
347 struct ceph_cap, caps_item);
348 list_del(&cap->caps_item);
349
350 BUG_ON(mdsc->caps_total_count != mdsc->caps_use_count +
351 mdsc->caps_reserve_count + mdsc->caps_avail_count);
352 }
353 spin_unlock(&mdsc->caps_list_lock);
443b3760 354 }
e327ce06 355
443b3760
SW
356 return cap;
357 }
a8599bd8 358
37151668 359 spin_lock(&mdsc->caps_list_lock);
a8599bd8 360 dout("get_cap ctx=%p (%d) %d = %d used + %d resv + %d avail\n",
37151668
YS
361 ctx, ctx->count, mdsc->caps_total_count, mdsc->caps_use_count,
362 mdsc->caps_reserve_count, mdsc->caps_avail_count);
a8599bd8 363 BUG_ON(!ctx->count);
37151668
YS
364 BUG_ON(ctx->count > mdsc->caps_reserve_count);
365 BUG_ON(list_empty(&mdsc->caps_list));
a8599bd8
SW
366
367 ctx->count--;
fe33032d 368 ctx->used++;
37151668
YS
369 mdsc->caps_reserve_count--;
370 mdsc->caps_use_count++;
a8599bd8 371
37151668 372 cap = list_first_entry(&mdsc->caps_list, struct ceph_cap, caps_item);
a8599bd8
SW
373 list_del(&cap->caps_item);
374
37151668
YS
375 BUG_ON(mdsc->caps_total_count != mdsc->caps_use_count +
376 mdsc->caps_reserve_count + mdsc->caps_avail_count);
377 spin_unlock(&mdsc->caps_list_lock);
a8599bd8
SW
378 return cap;
379}
380
37151668 381void ceph_put_cap(struct ceph_mds_client *mdsc, struct ceph_cap *cap)
a8599bd8 382{
37151668 383 spin_lock(&mdsc->caps_list_lock);
7c1332b8 384 dout("put_cap %p %d = %d used + %d resv + %d avail\n",
37151668
YS
385 cap, mdsc->caps_total_count, mdsc->caps_use_count,
386 mdsc->caps_reserve_count, mdsc->caps_avail_count);
387 mdsc->caps_use_count--;
a8599bd8 388 /*
85ccce43
SW
389 * Keep some preallocated caps around (ceph_min_count), to
390 * avoid lots of free/alloc churn.
a8599bd8 391 */
37151668
YS
392 if (mdsc->caps_avail_count >= mdsc->caps_reserve_count +
393 mdsc->caps_min_count) {
394 mdsc->caps_total_count--;
a8599bd8
SW
395 kmem_cache_free(ceph_cap_cachep, cap);
396 } else {
37151668
YS
397 mdsc->caps_avail_count++;
398 list_add(&cap->caps_item, &mdsc->caps_list);
a8599bd8
SW
399 }
400
37151668
YS
401 BUG_ON(mdsc->caps_total_count != mdsc->caps_use_count +
402 mdsc->caps_reserve_count + mdsc->caps_avail_count);
403 spin_unlock(&mdsc->caps_list_lock);
a8599bd8
SW
404}
405
3d14c5d2 406void ceph_reservation_status(struct ceph_fs_client *fsc,
85ccce43
SW
407 int *total, int *avail, int *used, int *reserved,
408 int *min)
a8599bd8 409{
3d14c5d2 410 struct ceph_mds_client *mdsc = fsc->mdsc;
37151668 411
b884014a
CX
412 spin_lock(&mdsc->caps_list_lock);
413
a8599bd8 414 if (total)
37151668 415 *total = mdsc->caps_total_count;
a8599bd8 416 if (avail)
37151668 417 *avail = mdsc->caps_avail_count;
a8599bd8 418 if (used)
37151668 419 *used = mdsc->caps_use_count;
a8599bd8 420 if (reserved)
37151668 421 *reserved = mdsc->caps_reserve_count;
85ccce43 422 if (min)
37151668 423 *min = mdsc->caps_min_count;
b884014a
CX
424
425 spin_unlock(&mdsc->caps_list_lock);
a8599bd8
SW
426}
427
428/*
429 * Find ceph_cap for given mds, if any.
430 *
be655596 431 * Called with i_ceph_lock held.
a8599bd8
SW
432 */
433static struct ceph_cap *__get_cap_for_mds(struct ceph_inode_info *ci, int mds)
434{
435 struct ceph_cap *cap;
436 struct rb_node *n = ci->i_caps.rb_node;
437
438 while (n) {
439 cap = rb_entry(n, struct ceph_cap, ci_node);
440 if (mds < cap->mds)
441 n = n->rb_left;
442 else if (mds > cap->mds)
443 n = n->rb_right;
444 else
445 return cap;
446 }
447 return NULL;
448}
449
2bc50259
GF
450struct ceph_cap *ceph_get_cap_for_mds(struct ceph_inode_info *ci, int mds)
451{
452 struct ceph_cap *cap;
453
be655596 454 spin_lock(&ci->i_ceph_lock);
2bc50259 455 cap = __get_cap_for_mds(ci, mds);
be655596 456 spin_unlock(&ci->i_ceph_lock);
2bc50259
GF
457 return cap;
458}
459
a8599bd8 460/*
be655596 461 * Called under i_ceph_lock.
a8599bd8
SW
462 */
463static void __insert_cap_node(struct ceph_inode_info *ci,
464 struct ceph_cap *new)
465{
466 struct rb_node **p = &ci->i_caps.rb_node;
467 struct rb_node *parent = NULL;
468 struct ceph_cap *cap = NULL;
469
470 while (*p) {
471 parent = *p;
472 cap = rb_entry(parent, struct ceph_cap, ci_node);
473 if (new->mds < cap->mds)
474 p = &(*p)->rb_left;
475 else if (new->mds > cap->mds)
476 p = &(*p)->rb_right;
477 else
478 BUG();
479 }
480
481 rb_link_node(&new->ci_node, parent, p);
482 rb_insert_color(&new->ci_node, &ci->i_caps);
483}
484
485/*
486 * (re)set cap hold timeouts, which control the delayed release
487 * of unused caps back to the MDS. Should be called on cap use.
488 */
489static void __cap_set_timeouts(struct ceph_mds_client *mdsc,
490 struct ceph_inode_info *ci)
491{
fe33032d 492 struct ceph_mount_options *opt = mdsc->fsc->mount_options;
a8599bd8 493 ci->i_hold_caps_max = round_jiffies(jiffies +
fe33032d 494 opt->caps_wanted_delay_max * HZ);
a0d93e32
YZ
495 dout("__cap_set_timeouts %p %lu\n", &ci->vfs_inode,
496 ci->i_hold_caps_max - jiffies);
a8599bd8
SW
497}
498
499/*
500 * (Re)queue cap at the end of the delayed cap release list.
501 *
502 * If I_FLUSH is set, leave the inode at the front of the list.
503 *
be655596 504 * Caller holds i_ceph_lock
a8599bd8
SW
505 * -> we take mdsc->cap_delay_lock
506 */
507static void __cap_delay_requeue(struct ceph_mds_client *mdsc,
a0d93e32 508 struct ceph_inode_info *ci)
a8599bd8 509{
891f3f5a 510 dout("__cap_delay_requeue %p flags 0x%lx at %lu\n", &ci->vfs_inode,
a8599bd8
SW
511 ci->i_ceph_flags, ci->i_hold_caps_max);
512 if (!mdsc->stopping) {
513 spin_lock(&mdsc->cap_delay_lock);
514 if (!list_empty(&ci->i_cap_delay_list)) {
515 if (ci->i_ceph_flags & CEPH_I_FLUSH)
516 goto no_change;
517 list_del_init(&ci->i_cap_delay_list);
518 }
a0d93e32 519 __cap_set_timeouts(mdsc, ci);
a8599bd8
SW
520 list_add_tail(&ci->i_cap_delay_list, &mdsc->cap_delay_list);
521no_change:
522 spin_unlock(&mdsc->cap_delay_lock);
523 }
524}
525
526/*
527 * Queue an inode for immediate writeback. Mark inode with I_FLUSH,
528 * indicating we should send a cap message to flush dirty metadata
529 * asap, and move to the front of the delayed cap list.
530 */
531static void __cap_delay_requeue_front(struct ceph_mds_client *mdsc,
532 struct ceph_inode_info *ci)
533{
534 dout("__cap_delay_requeue_front %p\n", &ci->vfs_inode);
535 spin_lock(&mdsc->cap_delay_lock);
536 ci->i_ceph_flags |= CEPH_I_FLUSH;
537 if (!list_empty(&ci->i_cap_delay_list))
538 list_del_init(&ci->i_cap_delay_list);
539 list_add(&ci->i_cap_delay_list, &mdsc->cap_delay_list);
540 spin_unlock(&mdsc->cap_delay_lock);
541}
542
543/*
544 * Cancel delayed work on cap.
545 *
be655596 546 * Caller must hold i_ceph_lock.
a8599bd8
SW
547 */
548static void __cap_delay_cancel(struct ceph_mds_client *mdsc,
549 struct ceph_inode_info *ci)
550{
551 dout("__cap_delay_cancel %p\n", &ci->vfs_inode);
552 if (list_empty(&ci->i_cap_delay_list))
553 return;
554 spin_lock(&mdsc->cap_delay_lock);
555 list_del_init(&ci->i_cap_delay_list);
556 spin_unlock(&mdsc->cap_delay_lock);
557}
558
785892fe 559/* Common issue checks for add_cap, handle_cap_grant. */
a8599bd8
SW
560static void __check_cap_issue(struct ceph_inode_info *ci, struct ceph_cap *cap,
561 unsigned issued)
562{
563 unsigned had = __ceph_caps_issued(ci, NULL);
564
785892fe
JL
565 lockdep_assert_held(&ci->i_ceph_lock);
566
a8599bd8
SW
567 /*
568 * Each time we receive FILE_CACHE anew, we increment
569 * i_rdcache_gen.
570 */
525d15e8
YZ
571 if (S_ISREG(ci->vfs_inode.i_mode) &&
572 (issued & (CEPH_CAP_FILE_CACHE|CEPH_CAP_FILE_LAZYIO)) &&
99ccbd22 573 (had & (CEPH_CAP_FILE_CACHE|CEPH_CAP_FILE_LAZYIO)) == 0) {
a8599bd8 574 ci->i_rdcache_gen++;
99ccbd22 575 }
a8599bd8
SW
576
577 /*
15b51bd6
YZ
578 * If FILE_SHARED is newly issued, mark dir not complete. We don't
579 * know what happened to this directory while we didn't have the cap.
580 * If FILE_SHARED is being revoked, also mark dir not complete. It
581 * stops on-going cached readdir.
a8599bd8 582 */
15b51bd6
YZ
583 if ((issued & CEPH_CAP_FILE_SHARED) != (had & CEPH_CAP_FILE_SHARED)) {
584 if (issued & CEPH_CAP_FILE_SHARED)
97aeb6bf 585 atomic_inc(&ci->i_shared_gen);
a8673d61
YZ
586 if (S_ISDIR(ci->vfs_inode.i_mode)) {
587 dout(" marking %p NOT complete\n", &ci->vfs_inode);
2f276c51 588 __ceph_dir_clear_complete(ci);
a8673d61 589 }
a8599bd8 590 }
785892fe
JL
591
592 /* Wipe saved layout if we're losing DIR_CREATE caps */
593 if (S_ISDIR(ci->vfs_inode.i_mode) && (had & CEPH_CAP_DIR_CREATE) &&
594 !(issued & CEPH_CAP_DIR_CREATE)) {
595 ceph_put_string(rcu_dereference_raw(ci->i_cached_layout.pool_ns));
596 memset(&ci->i_cached_layout, 0, sizeof(ci->i_cached_layout));
597 }
a8599bd8
SW
598}
599
600/*
601 * Add a capability under the given MDS session.
602 *
354c63a0 603 * Caller should hold session snap_rwsem (read) and ci->i_ceph_lock
a8599bd8
SW
604 *
605 * @fmode is the open file mode, if we are opening a file, otherwise
606 * it is < 0. (This is so we can atomically add the cap and add an
607 * open file reference to it.)
608 */
d9df2783
YZ
609void ceph_add_cap(struct inode *inode,
610 struct ceph_mds_session *session, u64 cap_id,
135e671e 611 unsigned issued, unsigned wanted,
d9df2783
YZ
612 unsigned seq, unsigned mseq, u64 realmino, int flags,
613 struct ceph_cap **new_cap)
a8599bd8 614{
3d14c5d2 615 struct ceph_mds_client *mdsc = ceph_inode_to_client(inode)->mdsc;
a8599bd8 616 struct ceph_inode_info *ci = ceph_inode(inode);
a8599bd8
SW
617 struct ceph_cap *cap;
618 int mds = session->s_mds;
619 int actual_wanted;
606d1023 620 u32 gen;
a8599bd8 621
354c63a0
JL
622 lockdep_assert_held(&ci->i_ceph_lock);
623
a8599bd8
SW
624 dout("add_cap %p mds%d cap %llx %s seq %d\n", inode,
625 session->s_mds, cap_id, ceph_cap_string(issued), seq);
626
606d1023
JL
627 spin_lock(&session->s_gen_ttl_lock);
628 gen = session->s_cap_gen;
629 spin_unlock(&session->s_gen_ttl_lock);
630
a8599bd8
SW
631 cap = __get_cap_for_mds(ci, mds);
632 if (!cap) {
d9df2783
YZ
633 cap = *new_cap;
634 *new_cap = NULL;
a8599bd8
SW
635
636 cap->issued = 0;
637 cap->implemented = 0;
638 cap->mds = mds;
639 cap->mds_wanted = 0;
964266cc 640 cap->mseq = 0;
a8599bd8
SW
641
642 cap->ci = ci;
643 __insert_cap_node(ci, cap);
644
a8599bd8
SW
645 /* add to session cap list */
646 cap->session = session;
647 spin_lock(&session->s_cap_lock);
648 list_add_tail(&cap->session_caps, &session->s_caps);
649 session->s_nr_caps++;
650 spin_unlock(&session->s_cap_lock);
11df2dfb 651 } else {
32f6511a
YZ
652 spin_lock(&session->s_cap_lock);
653 list_move_tail(&cap->session_caps, &session->s_caps);
654 spin_unlock(&session->s_cap_lock);
655
606d1023 656 if (cap->cap_gen < gen)
d2f8bb27
YZ
657 cap->issued = cap->implemented = CEPH_CAP_PIN;
658
11df2dfb
YZ
659 /*
660 * auth mds of the inode changed. we received the cap export
661 * message, but still haven't received the cap import message.
662 * handle_cap_export() updated the new auth MDS' cap.
663 *
664 * "ceph_seq_cmp(seq, cap->seq) <= 0" means we are processing
665 * a message that was send before the cap import message. So
666 * don't remove caps.
667 */
668 if (ceph_seq_cmp(seq, cap->seq) <= 0) {
669 WARN_ON(cap != ci->i_auth_cap);
670 WARN_ON(cap->cap_id != cap_id);
671 seq = cap->seq;
672 mseq = cap->mseq;
673 issued |= cap->issued;
674 flags |= CEPH_CAP_FLAG_AUTH;
675 }
676 }
a8599bd8 677
7d9c9193
YZ
678 if (!ci->i_snap_realm ||
679 ((flags & CEPH_CAP_FLAG_AUTH) &&
680 realmino != (u64)-1 && ci->i_snap_realm->ino != realmino)) {
a8599bd8
SW
681 /*
682 * add this inode to the appropriate snap realm
683 */
684 struct ceph_snap_realm *realm = ceph_lookup_snap_realm(mdsc,
685 realmino);
686 if (realm) {
7d9c9193
YZ
687 struct ceph_snap_realm *oldrealm = ci->i_snap_realm;
688 if (oldrealm) {
689 spin_lock(&oldrealm->inodes_with_caps_lock);
690 list_del_init(&ci->i_snap_realm_item);
691 spin_unlock(&oldrealm->inodes_with_caps_lock);
692 }
693
a8599bd8 694 spin_lock(&realm->inodes_with_caps_lock);
a8599bd8
SW
695 list_add(&ci->i_snap_realm_item,
696 &realm->inodes_with_caps);
e3161f17
LH
697 ci->i_snap_realm = realm;
698 if (realm->ino == ci->i_vino.ino)
699 realm->inode = inode;
a8599bd8 700 spin_unlock(&realm->inodes_with_caps_lock);
7d9c9193
YZ
701
702 if (oldrealm)
703 ceph_put_snap_realm(mdsc, oldrealm);
a8599bd8
SW
704 } else {
705 pr_err("ceph_add_cap: couldn't find snap realm %llx\n",
706 realmino);
b8cd07e7 707 WARN_ON(!realm);
a8599bd8
SW
708 }
709 }
710
711 __check_cap_issue(ci, cap, issued);
712
713 /*
714 * If we are issued caps we don't want, or the mds' wanted
715 * value appears to be off, queue a check so we'll release
716 * later and/or update the mds wanted value.
717 */
718 actual_wanted = __ceph_caps_wanted(ci);
719 if ((wanted & ~actual_wanted) ||
720 (issued & ~actual_wanted & CEPH_CAP_ANY_WR)) {
721 dout(" issued %s, mds wanted %s, actual %s, queueing\n",
722 ceph_cap_string(issued), ceph_cap_string(wanted),
723 ceph_cap_string(actual_wanted));
a0d93e32 724 __cap_delay_requeue(mdsc, ci);
a8599bd8
SW
725 }
726
b8c2f3ae 727 if (flags & CEPH_CAP_FLAG_AUTH) {
d37b1d99 728 if (!ci->i_auth_cap ||
d9ffc4f7 729 ceph_seq_cmp(ci->i_auth_cap->mseq, mseq) < 0) {
b8c2f3ae 730 ci->i_auth_cap = cap;
d9ffc4f7
YZ
731 cap->mds_wanted = wanted;
732 }
11df2dfb
YZ
733 } else {
734 WARN_ON(ci->i_auth_cap == cap);
8a92a119 735 }
a8599bd8
SW
736
737 dout("add_cap inode %p (%llx.%llx) cap %p %s now %s seq %d mds%d\n",
738 inode, ceph_vinop(inode), cap, ceph_cap_string(issued),
739 ceph_cap_string(issued|cap->issued), seq, mds);
740 cap->cap_id = cap_id;
741 cap->issued = issued;
742 cap->implemented |= issued;
d1b87809 743 if (ceph_seq_cmp(mseq, cap->mseq) > 0)
964266cc
YZ
744 cap->mds_wanted = wanted;
745 else
746 cap->mds_wanted |= wanted;
a8599bd8
SW
747 cap->seq = seq;
748 cap->issue_seq = seq;
749 cap->mseq = mseq;
606d1023 750 cap->cap_gen = gen;
a8599bd8
SW
751}
752
753/*
754 * Return true if cap has not timed out and belongs to the current
755 * generation of the MDS session (i.e. has not gone 'stale' due to
756 * us losing touch with the mds).
757 */
758static int __cap_is_valid(struct ceph_cap *cap)
759{
760 unsigned long ttl;
cdac8303 761 u32 gen;
a8599bd8 762
d8fb02ab 763 spin_lock(&cap->session->s_gen_ttl_lock);
a8599bd8
SW
764 gen = cap->session->s_cap_gen;
765 ttl = cap->session->s_cap_ttl;
d8fb02ab 766 spin_unlock(&cap->session->s_gen_ttl_lock);
a8599bd8 767
685f9a5d 768 if (cap->cap_gen < gen || time_after_eq(jiffies, ttl)) {
a8599bd8
SW
769 dout("__cap_is_valid %p cap %p issued %s "
770 "but STALE (gen %u vs %u)\n", &cap->ci->vfs_inode,
685f9a5d 771 cap, ceph_cap_string(cap->issued), cap->cap_gen, gen);
a8599bd8
SW
772 return 0;
773 }
774
775 return 1;
776}
777
778/*
779 * Return set of valid cap bits issued to us. Note that caps time
780 * out, and may be invalidated in bulk if the client session times out
781 * and session->s_cap_gen is bumped.
782 */
783int __ceph_caps_issued(struct ceph_inode_info *ci, int *implemented)
784{
d9df2783 785 int have = ci->i_snap_caps;
a8599bd8
SW
786 struct ceph_cap *cap;
787 struct rb_node *p;
788
789 if (implemented)
790 *implemented = 0;
791 for (p = rb_first(&ci->i_caps); p; p = rb_next(p)) {
792 cap = rb_entry(p, struct ceph_cap, ci_node);
793 if (!__cap_is_valid(cap))
794 continue;
795 dout("__ceph_caps_issued %p cap %p issued %s\n",
796 &ci->vfs_inode, cap, ceph_cap_string(cap->issued));
797 have |= cap->issued;
798 if (implemented)
799 *implemented |= cap->implemented;
800 }
b1530f57
YZ
801 /*
802 * exclude caps issued by non-auth MDS, but are been revoking
803 * by the auth MDS. The non-auth MDS should be revoking/exporting
804 * these caps, but the message is delayed.
805 */
806 if (ci->i_auth_cap) {
807 cap = ci->i_auth_cap;
808 have &= ~cap->implemented | cap->issued;
809 }
a8599bd8
SW
810 return have;
811}
812
813/*
814 * Get cap bits issued by caps other than @ocap
815 */
816int __ceph_caps_issued_other(struct ceph_inode_info *ci, struct ceph_cap *ocap)
817{
818 int have = ci->i_snap_caps;
819 struct ceph_cap *cap;
820 struct rb_node *p;
821
822 for (p = rb_first(&ci->i_caps); p; p = rb_next(p)) {
823 cap = rb_entry(p, struct ceph_cap, ci_node);
824 if (cap == ocap)
825 continue;
826 if (!__cap_is_valid(cap))
827 continue;
828 have |= cap->issued;
829 }
830 return have;
831}
832
833/*
834 * Move a cap to the end of the LRU (oldest caps at list head, newest
835 * at list tail).
836 */
837static void __touch_cap(struct ceph_cap *cap)
838{
839 struct ceph_mds_session *s = cap->session;
840
a8599bd8 841 spin_lock(&s->s_cap_lock);
d37b1d99 842 if (!s->s_cap_iterator) {
5dacf091
SW
843 dout("__touch_cap %p cap %p mds%d\n", &cap->ci->vfs_inode, cap,
844 s->s_mds);
845 list_move_tail(&cap->session_caps, &s->s_caps);
846 } else {
847 dout("__touch_cap %p cap %p mds%d NOP, iterating over caps\n",
848 &cap->ci->vfs_inode, cap, s->s_mds);
849 }
a8599bd8
SW
850 spin_unlock(&s->s_cap_lock);
851}
852
853/*
854 * Check if we hold the given mask. If so, move the cap(s) to the
855 * front of their respective LRUs. (This is the preferred way for
856 * callers to check for caps they want.)
857 */
858int __ceph_caps_issued_mask(struct ceph_inode_info *ci, int mask, int touch)
859{
860 struct ceph_cap *cap;
861 struct rb_node *p;
862 int have = ci->i_snap_caps;
863
864 if ((have & mask) == mask) {
5ddc61fc
JL
865 dout("__ceph_caps_issued_mask ino 0x%lx snap issued %s"
866 " (mask %s)\n", ci->vfs_inode.i_ino,
a8599bd8
SW
867 ceph_cap_string(have),
868 ceph_cap_string(mask));
869 return 1;
870 }
871
872 for (p = rb_first(&ci->i_caps); p; p = rb_next(p)) {
873 cap = rb_entry(p, struct ceph_cap, ci_node);
874 if (!__cap_is_valid(cap))
875 continue;
876 if ((cap->issued & mask) == mask) {
5ddc61fc
JL
877 dout("__ceph_caps_issued_mask ino 0x%lx cap %p issued %s"
878 " (mask %s)\n", ci->vfs_inode.i_ino, cap,
a8599bd8
SW
879 ceph_cap_string(cap->issued),
880 ceph_cap_string(mask));
881 if (touch)
882 __touch_cap(cap);
883 return 1;
884 }
885
886 /* does a combination of caps satisfy mask? */
887 have |= cap->issued;
888 if ((have & mask) == mask) {
5ddc61fc
JL
889 dout("__ceph_caps_issued_mask ino 0x%lx combo issued %s"
890 " (mask %s)\n", ci->vfs_inode.i_ino,
a8599bd8
SW
891 ceph_cap_string(cap->issued),
892 ceph_cap_string(mask));
893 if (touch) {
894 struct rb_node *q;
895
25985edc 896 /* touch this + preceding caps */
a8599bd8
SW
897 __touch_cap(cap);
898 for (q = rb_first(&ci->i_caps); q != p;
899 q = rb_next(q)) {
900 cap = rb_entry(q, struct ceph_cap,
901 ci_node);
902 if (!__cap_is_valid(cap))
903 continue;
9f8b72b3
XL
904 if (cap->issued & mask)
905 __touch_cap(cap);
a8599bd8
SW
906 }
907 }
908 return 1;
909 }
910 }
911
912 return 0;
913}
914
915/*
916 * Return true if mask caps are currently being revoked by an MDS.
917 */
6ee6b953
YZ
918int __ceph_caps_revoking_other(struct ceph_inode_info *ci,
919 struct ceph_cap *ocap, int mask)
a8599bd8 920{
a8599bd8
SW
921 struct ceph_cap *cap;
922 struct rb_node *p;
a8599bd8 923
a8599bd8
SW
924 for (p = rb_first(&ci->i_caps); p; p = rb_next(p)) {
925 cap = rb_entry(p, struct ceph_cap, ci_node);
9563f88c 926 if (cap != ocap &&
6ee6b953
YZ
927 (cap->implemented & ~cap->issued & mask))
928 return 1;
a8599bd8 929 }
6ee6b953
YZ
930 return 0;
931}
932
933int ceph_caps_revoking(struct ceph_inode_info *ci, int mask)
934{
935 struct inode *inode = &ci->vfs_inode;
936 int ret;
937
938 spin_lock(&ci->i_ceph_lock);
939 ret = __ceph_caps_revoking_other(ci, NULL, mask);
be655596 940 spin_unlock(&ci->i_ceph_lock);
a8599bd8
SW
941 dout("ceph_caps_revoking %p %s = %d\n", inode,
942 ceph_cap_string(mask), ret);
943 return ret;
944}
945
946int __ceph_caps_used(struct ceph_inode_info *ci)
947{
948 int used = 0;
949 if (ci->i_pin_ref)
950 used |= CEPH_CAP_PIN;
951 if (ci->i_rd_ref)
952 used |= CEPH_CAP_FILE_RD;
fdd4e158 953 if (ci->i_rdcache_ref ||
525d15e8 954 (S_ISREG(ci->vfs_inode.i_mode) &&
fdd4e158 955 ci->vfs_inode.i_data.nrpages))
a8599bd8
SW
956 used |= CEPH_CAP_FILE_CACHE;
957 if (ci->i_wr_ref)
958 used |= CEPH_CAP_FILE_WR;
d3d0720d 959 if (ci->i_wb_ref || ci->i_wrbuffer_ref)
a8599bd8 960 used |= CEPH_CAP_FILE_BUFFER;
f85122af
JL
961 if (ci->i_fx_ref)
962 used |= CEPH_CAP_FILE_EXCL;
a8599bd8
SW
963 return used;
964}
965
719a2514
YZ
966#define FMODE_WAIT_BIAS 1000
967
a8599bd8
SW
968/*
969 * wanted, by virtue of open file modes
970 */
971int __ceph_caps_file_wanted(struct ceph_inode_info *ci)
972{
719a2514
YZ
973 const int PIN_SHIFT = ffs(CEPH_FILE_MODE_PIN);
974 const int RD_SHIFT = ffs(CEPH_FILE_MODE_RD);
975 const int WR_SHIFT = ffs(CEPH_FILE_MODE_WR);
976 const int LAZY_SHIFT = ffs(CEPH_FILE_MODE_LAZY);
977 struct ceph_mount_options *opt =
978 ceph_inode_to_client(&ci->vfs_inode)->mount_options;
979 unsigned long used_cutoff = jiffies - opt->caps_wanted_delay_max * HZ;
980 unsigned long idle_cutoff = jiffies - opt->caps_wanted_delay_min * HZ;
981
982 if (S_ISDIR(ci->vfs_inode.i_mode)) {
983 int want = 0;
984
985 /* use used_cutoff here, to keep dir's wanted caps longer */
986 if (ci->i_nr_by_mode[RD_SHIFT] > 0 ||
987 time_after(ci->i_last_rd, used_cutoff))
988 want |= CEPH_CAP_ANY_SHARED;
989
990 if (ci->i_nr_by_mode[WR_SHIFT] > 0 ||
991 time_after(ci->i_last_wr, used_cutoff)) {
992 want |= CEPH_CAP_ANY_SHARED | CEPH_CAP_FILE_EXCL;
993 if (opt->flags & CEPH_MOUNT_OPT_ASYNC_DIROPS)
994 want |= CEPH_CAP_ANY_DIR_OPS;
995 }
996
997 if (want || ci->i_nr_by_mode[PIN_SHIFT] > 0)
998 want |= CEPH_CAP_PIN;
999
1000 return want;
1001 } else {
1002 int bits = 0;
1003
1004 if (ci->i_nr_by_mode[RD_SHIFT] > 0) {
1005 if (ci->i_nr_by_mode[RD_SHIFT] >= FMODE_WAIT_BIAS ||
1006 time_after(ci->i_last_rd, used_cutoff))
1007 bits |= 1 << RD_SHIFT;
1008 } else if (time_after(ci->i_last_rd, idle_cutoff)) {
1009 bits |= 1 << RD_SHIFT;
1010 }
1011
1012 if (ci->i_nr_by_mode[WR_SHIFT] > 0) {
1013 if (ci->i_nr_by_mode[WR_SHIFT] >= FMODE_WAIT_BIAS ||
1014 time_after(ci->i_last_wr, used_cutoff))
1015 bits |= 1 << WR_SHIFT;
1016 } else if (time_after(ci->i_last_wr, idle_cutoff)) {
1017 bits |= 1 << WR_SHIFT;
1018 }
1019
1020 /* check lazyio only when read/write is wanted */
1021 if ((bits & (CEPH_FILE_MODE_RDWR << 1)) &&
1022 ci->i_nr_by_mode[LAZY_SHIFT] > 0)
1023 bits |= 1 << LAZY_SHIFT;
1024
1025 return bits ? ceph_caps_for_mode(bits >> 1) : 0;
774a6a11 1026 }
a8599bd8
SW
1027}
1028
525d15e8
YZ
1029/*
1030 * wanted, by virtue of open file modes AND cap refs (buffered/cached data)
1031 */
1032int __ceph_caps_wanted(struct ceph_inode_info *ci)
1033{
1034 int w = __ceph_caps_file_wanted(ci) | __ceph_caps_used(ci);
a25949b9
JL
1035 if (S_ISDIR(ci->vfs_inode.i_mode)) {
1036 /* we want EXCL if holding caps of dir ops */
1037 if (w & CEPH_CAP_ANY_DIR_OPS)
1038 w |= CEPH_CAP_FILE_EXCL;
1039 } else {
525d15e8
YZ
1040 /* we want EXCL if dirty data */
1041 if (w & CEPH_CAP_FILE_BUFFER)
1042 w |= CEPH_CAP_FILE_EXCL;
1043 }
1044 return w;
1045}
1046
a8599bd8
SW
1047/*
1048 * Return caps we have registered with the MDS(s) as 'wanted'.
1049 */
c1944fed 1050int __ceph_caps_mds_wanted(struct ceph_inode_info *ci, bool check)
a8599bd8
SW
1051{
1052 struct ceph_cap *cap;
1053 struct rb_node *p;
1054 int mds_wanted = 0;
1055
1056 for (p = rb_first(&ci->i_caps); p; p = rb_next(p)) {
1057 cap = rb_entry(p, struct ceph_cap, ci_node);
c1944fed 1058 if (check && !__cap_is_valid(cap))
a8599bd8 1059 continue;
a2550604
YZ
1060 if (cap == ci->i_auth_cap)
1061 mds_wanted |= cap->mds_wanted;
1062 else
1063 mds_wanted |= (cap->mds_wanted & ~CEPH_CAP_ANY_FILE_WR);
a8599bd8
SW
1064 }
1065 return mds_wanted;
1066}
1067
9215aeea
YZ
1068int ceph_is_any_caps(struct inode *inode)
1069{
1070 struct ceph_inode_info *ci = ceph_inode(inode);
1071 int ret;
1072
1073 spin_lock(&ci->i_ceph_lock);
bd84fbcb 1074 ret = __ceph_is_any_real_caps(ci);
9215aeea
YZ
1075 spin_unlock(&ci->i_ceph_lock);
1076
1077 return ret;
1078}
1079
db40cc17
YZ
1080static void drop_inode_snap_realm(struct ceph_inode_info *ci)
1081{
1082 struct ceph_snap_realm *realm = ci->i_snap_realm;
1083 spin_lock(&realm->inodes_with_caps_lock);
1084 list_del_init(&ci->i_snap_realm_item);
1085 ci->i_snap_realm_counter++;
1086 ci->i_snap_realm = NULL;
d95e674c
YZ
1087 if (realm->ino == ci->i_vino.ino)
1088 realm->inode = NULL;
db40cc17
YZ
1089 spin_unlock(&realm->inodes_with_caps_lock);
1090 ceph_put_snap_realm(ceph_sb_to_client(ci->vfs_inode.i_sb)->mdsc,
1091 realm);
1092}
1093
a8599bd8 1094/*
f818a736
SW
1095 * Remove a cap. Take steps to deal with a racing iterate_session_caps.
1096 *
be655596 1097 * caller should hold i_ceph_lock.
a6369741 1098 * caller will not hold session s_mutex if called from destroy_inode.
a8599bd8 1099 */
a096b09a 1100void __ceph_remove_cap(struct ceph_cap *cap, bool queue_release)
a8599bd8
SW
1101{
1102 struct ceph_mds_session *session = cap->session;
1103 struct ceph_inode_info *ci = cap->ci;
640ef79d 1104 struct ceph_mds_client *mdsc =
3d14c5d2 1105 ceph_sb_to_client(ci->vfs_inode.i_sb)->mdsc;
f818a736 1106 int removed = 0;
a8599bd8
SW
1107
1108 dout("__ceph_remove_cap %p from %p\n", cap, &ci->vfs_inode);
1109
ea60ed6f
LH
1110 /* remove from inode's cap rbtree, and clear auth cap */
1111 rb_erase(&cap->ci_node, &ci->i_caps);
1112 if (ci->i_auth_cap == cap)
1113 ci->i_auth_cap = NULL;
1114
7c1332b8
SW
1115 /* remove from session list */
1116 spin_lock(&session->s_cap_lock);
1117 if (session->s_cap_iterator == cap) {
1118 /* not yet, we are iterating over this very cap */
1119 dout("__ceph_remove_cap delaying %p removal from session %p\n",
1120 cap, cap->session);
1121 } else {
1122 list_del_init(&cap->session_caps);
1123 session->s_nr_caps--;
1124 cap->session = NULL;
f818a736 1125 removed = 1;
7c1332b8 1126 }
f818a736
SW
1127 /* protect backpointer with s_cap_lock: see iterate_session_caps */
1128 cap->ci = NULL;
745a8e3b
YZ
1129
1130 /*
1131 * s_cap_reconnect is protected by s_cap_lock. no one changes
1132 * s_cap_gen while session is in the reconnect state.
1133 */
1134 if (queue_release &&
1135 (!session->s_cap_reconnect || cap->cap_gen == session->s_cap_gen)) {
1136 cap->queue_release = 1;
1137 if (removed) {
e3ec8d68 1138 __ceph_queue_cap_release(session, cap);
745a8e3b
YZ
1139 removed = 0;
1140 }
1141 } else {
1142 cap->queue_release = 0;
1143 }
1144 cap->cap_ino = ci->i_vino.ino;
1145
7c1332b8
SW
1146 spin_unlock(&session->s_cap_lock);
1147
f818a736 1148 if (removed)
37151668 1149 ceph_put_cap(mdsc, cap);
a8599bd8 1150
bd84fbcb
XL
1151 if (!__ceph_is_any_real_caps(ci)) {
1152 /* when reconnect denied, we remove session caps forcibly,
1153 * i_wr_ref can be non-zero. If there are ongoing write,
1154 * keep i_snap_realm.
1155 */
1156 if (ci->i_wr_ref == 0 && ci->i_snap_realm)
1157 drop_inode_snap_realm(ci);
db40cc17 1158
a8599bd8 1159 __cap_delay_cancel(mdsc, ci);
bd84fbcb 1160 }
a8599bd8
SW
1161}
1162
0ff8bfb3
JL
1163struct cap_msg_args {
1164 struct ceph_mds_session *session;
1165 u64 ino, cid, follows;
1166 u64 flush_tid, oldest_flush_tid, size, max_size;
1167 u64 xattr_version;
176c77c9 1168 u64 change_attr;
0ff8bfb3 1169 struct ceph_buffer *xattr_buf;
ec62b894 1170 struct timespec64 atime, mtime, ctime, btime;
0ff8bfb3
JL
1171 int op, caps, wanted, dirty;
1172 u32 seq, issue_seq, mseq, time_warp_seq;
1e4ef0c6 1173 u32 flags;
0ff8bfb3
JL
1174 kuid_t uid;
1175 kgid_t gid;
1176 umode_t mode;
1177 bool inline_data;
1178};
1179
a8599bd8
SW
1180/*
1181 * Build and send a cap message to the given MDS.
1182 *
1183 * Caller should be holding s_mutex.
1184 */
0ff8bfb3 1185static int send_cap_msg(struct cap_msg_args *arg)
a8599bd8
SW
1186{
1187 struct ceph_mds_caps *fc;
1188 struct ceph_msg *msg;
e20d258d
YZ
1189 void *p;
1190 size_t extra_len;
92475f05 1191 struct ceph_osd_client *osdc = &arg->session->s_mdsc->fsc->client->osdc;
a8599bd8
SW
1192
1193 dout("send_cap_msg %s %llx %llx caps %s wanted %s dirty %s"
a2971c8c 1194 " seq %u/%u tid %llu/%llu mseq %u follows %lld size %llu/%llu"
0ff8bfb3
JL
1195 " xattr_ver %llu xattr_len %d\n", ceph_cap_op_name(arg->op),
1196 arg->cid, arg->ino, ceph_cap_string(arg->caps),
1197 ceph_cap_string(arg->wanted), ceph_cap_string(arg->dirty),
1198 arg->seq, arg->issue_seq, arg->flush_tid, arg->oldest_flush_tid,
1199 arg->mseq, arg->follows, arg->size, arg->max_size,
1200 arg->xattr_version,
1201 arg->xattr_buf ? (int)arg->xattr_buf->vec.iov_len : 0);
a8599bd8 1202
a2971c8c
YZ
1203 /* flock buffer size + inline version + inline data size +
1204 * osd_epoch_barrier + oldest_flush_tid */
43b29673 1205 extra_len = 4 + 8 + 4 + 4 + 8 + 4 + 4 + 4 + 8 + 8 + 4;
e20d258d
YZ
1206 msg = ceph_msg_new(CEPH_MSG_CLIENT_CAPS, sizeof(*fc) + extra_len,
1207 GFP_NOFS, false);
a79832f2
SW
1208 if (!msg)
1209 return -ENOMEM;
a8599bd8 1210
43b29673 1211 msg->hdr.version = cpu_to_le16(10);
0ff8bfb3 1212 msg->hdr.tid = cpu_to_le64(arg->flush_tid);
a8599bd8 1213
6df058c0 1214 fc = msg->front.iov_base;
a8599bd8
SW
1215 memset(fc, 0, sizeof(*fc));
1216
0ff8bfb3
JL
1217 fc->cap_id = cpu_to_le64(arg->cid);
1218 fc->op = cpu_to_le32(arg->op);
1219 fc->seq = cpu_to_le32(arg->seq);
1220 fc->issue_seq = cpu_to_le32(arg->issue_seq);
1221 fc->migrate_seq = cpu_to_le32(arg->mseq);
1222 fc->caps = cpu_to_le32(arg->caps);
1223 fc->wanted = cpu_to_le32(arg->wanted);
1224 fc->dirty = cpu_to_le32(arg->dirty);
1225 fc->ino = cpu_to_le64(arg->ino);
1226 fc->snap_follows = cpu_to_le64(arg->follows);
1227
1228 fc->size = cpu_to_le64(arg->size);
1229 fc->max_size = cpu_to_le64(arg->max_size);
9bbeab41
AB
1230 ceph_encode_timespec64(&fc->mtime, &arg->mtime);
1231 ceph_encode_timespec64(&fc->atime, &arg->atime);
1232 ceph_encode_timespec64(&fc->ctime, &arg->ctime);
0ff8bfb3
JL
1233 fc->time_warp_seq = cpu_to_le32(arg->time_warp_seq);
1234
1235 fc->uid = cpu_to_le32(from_kuid(&init_user_ns, arg->uid));
1236 fc->gid = cpu_to_le32(from_kgid(&init_user_ns, arg->gid));
1237 fc->mode = cpu_to_le32(arg->mode);
1238
1239 fc->xattr_version = cpu_to_le64(arg->xattr_version);
1240 if (arg->xattr_buf) {
1241 msg->middle = ceph_buffer_get(arg->xattr_buf);
1242 fc->xattr_len = cpu_to_le32(arg->xattr_buf->vec.iov_len);
1243 msg->hdr.middle_len = cpu_to_le32(arg->xattr_buf->vec.iov_len);
9670079f
JL
1244 }
1245
e20d258d 1246 p = fc + 1;
43b29673 1247 /* flock buffer size (version 2) */
e20d258d 1248 ceph_encode_32(&p, 0);
43b29673 1249 /* inline version (version 4) */
0ff8bfb3 1250 ceph_encode_64(&p, arg->inline_data ? 0 : CEPH_INLINE_NONE);
e20d258d
YZ
1251 /* inline data size */
1252 ceph_encode_32(&p, 0);
92475f05
JL
1253 /*
1254 * osd_epoch_barrier (version 5)
1255 * The epoch_barrier is protected osdc->lock, so READ_ONCE here in
1256 * case it was recently changed
1257 */
1258 ceph_encode_32(&p, READ_ONCE(osdc->epoch_barrier));
43b29673 1259 /* oldest_flush_tid (version 6) */
0ff8bfb3 1260 ceph_encode_64(&p, arg->oldest_flush_tid);
e20d258d 1261
43b29673
JL
1262 /*
1263 * caller_uid/caller_gid (version 7)
1264 *
1265 * Currently, we don't properly track which caller dirtied the caps
1266 * last, and force a flush of them when there is a conflict. For now,
1267 * just set this to 0:0, to emulate how the MDS has worked up to now.
1268 */
1269 ceph_encode_32(&p, 0);
1270 ceph_encode_32(&p, 0);
1271
1272 /* pool namespace (version 8) (mds always ignores this) */
1273 ceph_encode_32(&p, 0);
1274
176c77c9 1275 /* btime and change_attr (version 9) */
ec62b894 1276 ceph_encode_timespec64(p, &arg->btime);
43b29673 1277 p += sizeof(struct ceph_timespec);
176c77c9 1278 ceph_encode_64(&p, arg->change_attr);
43b29673
JL
1279
1280 /* Advisory flags (version 10) */
1e4ef0c6 1281 ceph_encode_32(&p, arg->flags);
43b29673 1282
0ff8bfb3 1283 ceph_con_send(&arg->session->s_con, msg);
a8599bd8
SW
1284 return 0;
1285}
1286
1287/*
d6e47819 1288 * Queue cap releases when an inode is dropped from our cache.
a8599bd8 1289 */
d6e47819 1290void __ceph_remove_caps(struct ceph_inode_info *ci)
a8599bd8 1291{
a8599bd8
SW
1292 struct rb_node *p;
1293
d6e47819
YZ
1294 /* lock i_ceph_lock, because ceph_d_revalidate(..., LOOKUP_RCU)
1295 * may call __ceph_caps_issued_mask() on a freeing inode. */
1296 spin_lock(&ci->i_ceph_lock);
a8599bd8
SW
1297 p = rb_first(&ci->i_caps);
1298 while (p) {
1299 struct ceph_cap *cap = rb_entry(p, struct ceph_cap, ci_node);
a8599bd8 1300 p = rb_next(p);
a096b09a 1301 __ceph_remove_cap(cap, true);
a8599bd8 1302 }
d6e47819 1303 spin_unlock(&ci->i_ceph_lock);
a8599bd8
SW
1304}
1305
1306/*
1307 * Send a cap msg on the given inode. Update our caps state, then
be655596 1308 * drop i_ceph_lock and send the message.
a8599bd8
SW
1309 *
1310 * Make note of max_size reported/requested from mds, revoked caps
1311 * that have now been implemented.
1312 *
a8599bd8
SW
1313 * Return non-zero if delayed release, or we experienced an error
1314 * such that the caller should requeue + retry later.
1315 *
be655596 1316 * called with i_ceph_lock, then drops it.
a8599bd8
SW
1317 * caller should hold snap_rwsem (read), s_mutex.
1318 */
1319static int __send_cap(struct ceph_mds_client *mdsc, struct ceph_cap *cap,
49ada6e8 1320 int op, int flags, int used, int want, int retain,
1e4ef0c6 1321 int flushing, u64 flush_tid, u64 oldest_flush_tid)
be655596 1322 __releases(cap->ci->i_ceph_lock)
a8599bd8
SW
1323{
1324 struct ceph_inode_info *ci = cap->ci;
1325 struct inode *inode = &ci->vfs_inode;
12fe3dda 1326 struct ceph_buffer *old_blob = NULL;
0ff8bfb3 1327 struct cap_msg_args arg;
bb0581f0 1328 int held, revoking;
a8599bd8 1329 int wake = 0;
a8599bd8
SW
1330 int ret;
1331
891f3f5a
JL
1332 /* Don't send anything if it's still being created. Return delayed */
1333 if (ci->i_ceph_flags & CEPH_I_ASYNC_CREATE) {
1334 spin_unlock(&ci->i_ceph_lock);
1335 dout("%s async create in flight for %p\n", __func__, inode);
1336 return 1;
1337 }
1338
68c28323
SW
1339 held = cap->issued | cap->implemented;
1340 revoking = cap->implemented & ~cap->issued;
1341 retain &= ~revoking;
68c28323 1342
a8599bd8
SW
1343 dout("__send_cap %p cap %p session %p %s -> %s (revoking %s)\n",
1344 inode, cap, cap->session,
1345 ceph_cap_string(held), ceph_cap_string(held & retain),
1346 ceph_cap_string(revoking));
1347 BUG_ON((retain & CEPH_CAP_PIN) == 0);
1348
a0d93e32 1349 ci->i_ceph_flags &= ~CEPH_I_FLUSH;
a8599bd8
SW
1350
1351 cap->issued &= retain; /* drop bits we don't want */
1352 if (cap->implemented & ~cap->issued) {
1353 /*
1354 * Wake up any waiters on wanted -> needed transition.
1355 * This is due to the weird transition from buffered
1356 * to sync IO... we need to flush dirty pages _before_
1357 * allowing sync writes to avoid reordering.
1358 */
1359 wake = 1;
1360 }
1361 cap->implemented &= cap->issued | used;
1362 cap->mds_wanted = want;
1363
a0d93e32 1364 arg.session = cap->session;
0ff8bfb3
JL
1365 arg.ino = ceph_vino(inode).ino;
1366 arg.cid = cap->cap_id;
1367 arg.follows = flushing ? ci->i_head_snapc->seq : 0;
1368 arg.flush_tid = flush_tid;
1369 arg.oldest_flush_tid = oldest_flush_tid;
1370
1371 arg.size = inode->i_size;
1372 ci->i_reported_size = arg.size;
1373 arg.max_size = ci->i_wanted_max_size;
11ba6b9c
YZ
1374 if (cap == ci->i_auth_cap)
1375 ci->i_requested_max_size = arg.max_size;
a8599bd8 1376
082afec9 1377 if (flushing & CEPH_CAP_XATTR_EXCL) {
12fe3dda 1378 old_blob = __ceph_build_xattrs_blob(ci);
0ff8bfb3
JL
1379 arg.xattr_version = ci->i_xattrs.version;
1380 arg.xattr_buf = ci->i_xattrs.blob;
1381 } else {
1382 arg.xattr_buf = NULL;
a8599bd8
SW
1383 }
1384
9bbeab41
AB
1385 arg.mtime = inode->i_mtime;
1386 arg.atime = inode->i_atime;
1387 arg.ctime = inode->i_ctime;
ec62b894 1388 arg.btime = ci->i_btime;
176c77c9 1389 arg.change_attr = inode_peek_iversion_raw(inode);
0ff8bfb3
JL
1390
1391 arg.op = op;
1392 arg.caps = cap->implemented;
1393 arg.wanted = want;
1394 arg.dirty = flushing;
1395
1396 arg.seq = cap->seq;
1397 arg.issue_seq = cap->issue_seq;
1398 arg.mseq = cap->mseq;
1399 arg.time_warp_seq = ci->i_time_warp_seq;
1400
1401 arg.uid = inode->i_uid;
1402 arg.gid = inode->i_gid;
1403 arg.mode = inode->i_mode;
1404
1405 arg.inline_data = ci->i_inline_version != CEPH_INLINE_NONE;
49ada6e8
YZ
1406 if (!(flags & CEPH_CLIENT_CAPS_PENDING_CAPSNAP) &&
1407 !list_empty(&ci->i_cap_snaps)) {
1408 struct ceph_cap_snap *capsnap;
1409 list_for_each_entry_reverse(capsnap, &ci->i_cap_snaps, ci_item) {
1410 if (capsnap->cap_flush.tid)
1411 break;
1412 if (capsnap->need_flush) {
1413 flags |= CEPH_CLIENT_CAPS_PENDING_CAPSNAP;
1414 break;
1415 }
1416 }
1417 }
1418 arg.flags = flags;
e20d258d 1419
be655596 1420 spin_unlock(&ci->i_ceph_lock);
a8599bd8 1421
12fe3dda
LH
1422 ceph_buffer_put(old_blob);
1423
0ff8bfb3 1424 ret = send_cap_msg(&arg);
a8599bd8 1425 if (ret < 0) {
a0d93e32
YZ
1426 pr_err("error sending cap msg, ino (%llx.%llx) "
1427 "flushing %s tid %llu, requeue\n",
1428 ceph_vinop(inode), ceph_cap_string(flushing),
1429 flush_tid);
1430 spin_lock(&ci->i_ceph_lock);
1431 __cap_delay_requeue(mdsc, ci);
1432 spin_unlock(&ci->i_ceph_lock);
a8599bd8
SW
1433 }
1434
1435 if (wake)
03066f23 1436 wake_up_all(&ci->i_cap_wq);
a8599bd8 1437
a0d93e32 1438 return ret;
a8599bd8
SW
1439}
1440
0e294387
YZ
1441static inline int __send_flush_snap(struct inode *inode,
1442 struct ceph_mds_session *session,
1443 struct ceph_cap_snap *capsnap,
1444 u32 mseq, u64 oldest_flush_tid)
1445{
0ff8bfb3
JL
1446 struct cap_msg_args arg;
1447
1448 arg.session = session;
1449 arg.ino = ceph_vino(inode).ino;
1450 arg.cid = 0;
1451 arg.follows = capsnap->follows;
1452 arg.flush_tid = capsnap->cap_flush.tid;
1453 arg.oldest_flush_tid = oldest_flush_tid;
1454
1455 arg.size = capsnap->size;
1456 arg.max_size = 0;
1457 arg.xattr_version = capsnap->xattr_version;
1458 arg.xattr_buf = capsnap->xattr_blob;
1459
1460 arg.atime = capsnap->atime;
1461 arg.mtime = capsnap->mtime;
1462 arg.ctime = capsnap->ctime;
ec62b894 1463 arg.btime = capsnap->btime;
176c77c9 1464 arg.change_attr = capsnap->change_attr;
0ff8bfb3
JL
1465
1466 arg.op = CEPH_CAP_OP_FLUSHSNAP;
1467 arg.caps = capsnap->issued;
1468 arg.wanted = 0;
1469 arg.dirty = capsnap->dirty;
1470
1471 arg.seq = 0;
1472 arg.issue_seq = 0;
1473 arg.mseq = mseq;
1474 arg.time_warp_seq = capsnap->time_warp_seq;
1475
1476 arg.uid = capsnap->uid;
1477 arg.gid = capsnap->gid;
1478 arg.mode = capsnap->mode;
1479
1480 arg.inline_data = capsnap->inline_data;
1e4ef0c6 1481 arg.flags = 0;
0ff8bfb3
JL
1482
1483 return send_cap_msg(&arg);
0e294387
YZ
1484}
1485
a8599bd8
SW
1486/*
1487 * When a snapshot is taken, clients accumulate dirty metadata on
1488 * inodes with capabilities in ceph_cap_snaps to describe the file
1489 * state at the time the snapshot was taken. This must be flushed
1490 * asynchronously back to the MDS once sync writes complete and dirty
1491 * data is written out.
1492 *
be655596 1493 * Called under i_ceph_lock. Takes s_mutex as needed.
a8599bd8 1494 */
ed9b430c
YZ
1495static void __ceph_flush_snaps(struct ceph_inode_info *ci,
1496 struct ceph_mds_session *session)
be655596
SW
1497 __releases(ci->i_ceph_lock)
1498 __acquires(ci->i_ceph_lock)
a8599bd8
SW
1499{
1500 struct inode *inode = &ci->vfs_inode;
ed9b430c 1501 struct ceph_mds_client *mdsc = session->s_mdsc;
a8599bd8 1502 struct ceph_cap_snap *capsnap;
ed9b430c
YZ
1503 u64 oldest_flush_tid = 0;
1504 u64 first_tid = 1, last_tid = 0;
a8599bd8 1505
ed9b430c 1506 dout("__flush_snaps %p session %p\n", inode, session);
a8599bd8 1507
a8599bd8 1508 list_for_each_entry(capsnap, &ci->i_cap_snaps, ci_item) {
a8599bd8
SW
1509 /*
1510 * we need to wait for sync writes to complete and for dirty
1511 * pages to be written out.
1512 */
1513 if (capsnap->dirty_pages || capsnap->writing)
cfc0bf66 1514 break;
a8599bd8 1515
86056090
YZ
1516 /* should be removed by ceph_try_drop_cap_snap() */
1517 BUG_ON(!capsnap->need_flush);
819ccbfa 1518
e835124c 1519 /* only flush each capsnap once */
0e294387 1520 if (capsnap->cap_flush.tid > 0) {
ed9b430c 1521 dout(" already flushed %p, skipping\n", capsnap);
e835124c
SW
1522 continue;
1523 }
1524
553adfd9 1525 spin_lock(&mdsc->cap_dirty_lock);
0e294387
YZ
1526 capsnap->cap_flush.tid = ++mdsc->last_cap_flush_tid;
1527 list_add_tail(&capsnap->cap_flush.g_list,
1528 &mdsc->cap_flush_list);
ed9b430c
YZ
1529 if (oldest_flush_tid == 0)
1530 oldest_flush_tid = __get_oldest_flush_tid(mdsc);
0e294387
YZ
1531 if (list_empty(&ci->i_flushing_item)) {
1532 list_add_tail(&ci->i_flushing_item,
1533 &session->s_cap_flushing);
1534 }
553adfd9
YZ
1535 spin_unlock(&mdsc->cap_dirty_lock);
1536
0e294387
YZ
1537 list_add_tail(&capsnap->cap_flush.i_list,
1538 &ci->i_cap_flush_list);
1539
ed9b430c
YZ
1540 if (first_tid == 1)
1541 first_tid = capsnap->cap_flush.tid;
1542 last_tid = capsnap->cap_flush.tid;
1543 }
1544
1545 ci->i_ceph_flags &= ~CEPH_I_FLUSH_SNAPS;
1546
1547 while (first_tid <= last_tid) {
1548 struct ceph_cap *cap = ci->i_auth_cap;
1549 struct ceph_cap_flush *cf;
1550 int ret;
1551
1552 if (!(cap && cap->session == session)) {
1553 dout("__flush_snaps %p auth cap %p not mds%d, "
1554 "stop\n", inode, cap, session->s_mds);
1555 break;
1556 }
1557
1558 ret = -ENOENT;
1559 list_for_each_entry(cf, &ci->i_cap_flush_list, i_list) {
1560 if (cf->tid >= first_tid) {
1561 ret = 0;
1562 break;
1563 }
1564 }
1565 if (ret < 0)
1566 break;
1567
1568 first_tid = cf->tid + 1;
1569
1570 capsnap = container_of(cf, struct ceph_cap_snap, cap_flush);
805692d0 1571 refcount_inc(&capsnap->nref);
be655596 1572 spin_unlock(&ci->i_ceph_lock);
a8599bd8 1573
ed9b430c
YZ
1574 dout("__flush_snaps %p capsnap %p tid %llu %s\n",
1575 inode, capsnap, cf->tid, ceph_cap_string(capsnap->dirty));
a8599bd8 1576
ed9b430c
YZ
1577 ret = __send_flush_snap(inode, session, capsnap, cap->mseq,
1578 oldest_flush_tid);
1579 if (ret < 0) {
1580 pr_err("__flush_snaps: error sending cap flushsnap, "
1581 "ino (%llx.%llx) tid %llu follows %llu\n",
1582 ceph_vinop(inode), cf->tid, capsnap->follows);
1583 }
a8599bd8 1584
ed9b430c 1585 ceph_put_cap_snap(capsnap);
be655596 1586 spin_lock(&ci->i_ceph_lock);
a8599bd8 1587 }
ed9b430c 1588}
a8599bd8 1589
ed9b430c
YZ
1590void ceph_flush_snaps(struct ceph_inode_info *ci,
1591 struct ceph_mds_session **psession)
1592{
1593 struct inode *inode = &ci->vfs_inode;
1594 struct ceph_mds_client *mdsc = ceph_inode_to_client(inode)->mdsc;
e4d2b16a 1595 struct ceph_mds_session *session = NULL;
ed9b430c 1596 int mds;
e4d2b16a 1597
ed9b430c 1598 dout("ceph_flush_snaps %p\n", inode);
e4d2b16a
YZ
1599 if (psession)
1600 session = *psession;
ed9b430c
YZ
1601retry:
1602 spin_lock(&ci->i_ceph_lock);
1603 if (!(ci->i_ceph_flags & CEPH_I_FLUSH_SNAPS)) {
1604 dout(" no capsnap needs flush, doing nothing\n");
1605 goto out;
1606 }
1607 if (!ci->i_auth_cap) {
1608 dout(" no auth cap (migrating?), doing nothing\n");
1609 goto out;
1610 }
a8599bd8 1611
ed9b430c
YZ
1612 mds = ci->i_auth_cap->session->s_mds;
1613 if (session && session->s_mds != mds) {
1614 dout(" oops, wrong session %p mutex\n", session);
a8599bd8
SW
1615 mutex_unlock(&session->s_mutex);
1616 ceph_put_mds_session(session);
ed9b430c
YZ
1617 session = NULL;
1618 }
1619 if (!session) {
1620 spin_unlock(&ci->i_ceph_lock);
1621 mutex_lock(&mdsc->mutex);
1622 session = __ceph_lookup_mds_session(mdsc, mds);
1623 mutex_unlock(&mdsc->mutex);
1624 if (session) {
1625 dout(" inverting session/ino locks on %p\n", session);
1626 mutex_lock(&session->s_mutex);
1627 }
1628 goto retry;
a8599bd8 1629 }
a8599bd8 1630
24d063ac 1631 // make sure flushsnap messages are sent in proper order.
054f8d41 1632 if (ci->i_ceph_flags & CEPH_I_KICK_FLUSH)
24d063ac 1633 __kick_flushing_caps(mdsc, session, ci, 0);
24d063ac 1634
ed9b430c
YZ
1635 __ceph_flush_snaps(ci, session);
1636out:
be655596 1637 spin_unlock(&ci->i_ceph_lock);
ed9b430c
YZ
1638
1639 if (psession) {
1640 *psession = session;
c858a070 1641 } else if (session) {
ed9b430c
YZ
1642 mutex_unlock(&session->s_mutex);
1643 ceph_put_mds_session(session);
1644 }
1645 /* we flushed them all; remove this inode from the queue */
1646 spin_lock(&mdsc->snap_flush_lock);
1647 list_del_init(&ci->i_snap_flush_item);
1648 spin_unlock(&mdsc->snap_flush_lock);
a8599bd8
SW
1649}
1650
76e3b390 1651/*
fca65b4a
SW
1652 * Mark caps dirty. If inode is newly dirty, return the dirty flags.
1653 * Caller is then responsible for calling __mark_inode_dirty with the
1654 * returned flags value.
76e3b390 1655 */
f66fd9f0
YZ
1656int __ceph_mark_dirty_caps(struct ceph_inode_info *ci, int mask,
1657 struct ceph_cap_flush **pcf)
76e3b390 1658{
640ef79d 1659 struct ceph_mds_client *mdsc =
3d14c5d2 1660 ceph_sb_to_client(ci->vfs_inode.i_sb)->mdsc;
76e3b390
SW
1661 struct inode *inode = &ci->vfs_inode;
1662 int was = ci->i_dirty_caps;
1663 int dirty = 0;
1664
c7e4f85c
JL
1665 lockdep_assert_held(&ci->i_ceph_lock);
1666
571ade33
YZ
1667 if (!ci->i_auth_cap) {
1668 pr_warn("__mark_dirty_caps %p %llx mask %s, "
1669 "but no auth cap (session was closed?)\n",
1670 inode, ceph_ino(inode), ceph_cap_string(mask));
1671 return 0;
1672 }
1673
76e3b390
SW
1674 dout("__mark_dirty_caps %p %s dirty %s -> %s\n", &ci->vfs_inode,
1675 ceph_cap_string(mask), ceph_cap_string(was),
1676 ceph_cap_string(was | mask));
1677 ci->i_dirty_caps |= mask;
1678 if (was == 0) {
f66fd9f0
YZ
1679 WARN_ON_ONCE(ci->i_prealloc_cap_flush);
1680 swap(ci->i_prealloc_cap_flush, *pcf);
1681
604d1b02
YZ
1682 if (!ci->i_head_snapc) {
1683 WARN_ON_ONCE(!rwsem_is_locked(&mdsc->snap_rwsem));
7d8cb26d
SW
1684 ci->i_head_snapc = ceph_get_snap_context(
1685 ci->i_snap_realm->cached_context);
604d1b02 1686 }
0685235f
YZ
1687 dout(" inode %p now dirty snapc %p auth cap %p\n",
1688 &ci->vfs_inode, ci->i_head_snapc, ci->i_auth_cap);
76e3b390
SW
1689 BUG_ON(!list_empty(&ci->i_dirty_item));
1690 spin_lock(&mdsc->cap_dirty_lock);
11df2dfb 1691 list_add(&ci->i_dirty_item, &mdsc->cap_dirty);
76e3b390
SW
1692 spin_unlock(&mdsc->cap_dirty_lock);
1693 if (ci->i_flushing_caps == 0) {
3772d26d 1694 ihold(inode);
76e3b390
SW
1695 dirty |= I_DIRTY_SYNC;
1696 }
f66fd9f0
YZ
1697 } else {
1698 WARN_ON_ONCE(!ci->i_prealloc_cap_flush);
76e3b390
SW
1699 }
1700 BUG_ON(list_empty(&ci->i_dirty_item));
1701 if (((was | ci->i_flushing_caps) & CEPH_CAP_FILE_BUFFER) &&
1702 (mask & CEPH_CAP_FILE_BUFFER))
1703 dirty |= I_DIRTY_DATASYNC;
a0d93e32 1704 __cap_delay_requeue(mdsc, ci);
fca65b4a 1705 return dirty;
76e3b390
SW
1706}
1707
f66fd9f0
YZ
1708struct ceph_cap_flush *ceph_alloc_cap_flush(void)
1709{
1710 return kmem_cache_alloc(ceph_cap_flush_cachep, GFP_KERNEL);
1711}
1712
1713void ceph_free_cap_flush(struct ceph_cap_flush *cf)
1714{
1715 if (cf)
1716 kmem_cache_free(ceph_cap_flush_cachep, cf);
1717}
1718
a2971c8c
YZ
1719static u64 __get_oldest_flush_tid(struct ceph_mds_client *mdsc)
1720{
e4500b5e 1721 if (!list_empty(&mdsc->cap_flush_list)) {
a2971c8c 1722 struct ceph_cap_flush *cf =
e4500b5e
YZ
1723 list_first_entry(&mdsc->cap_flush_list,
1724 struct ceph_cap_flush, g_list);
a2971c8c
YZ
1725 return cf->tid;
1726 }
1727 return 0;
1728}
1729
c8799fc4
YZ
1730/*
1731 * Remove cap_flush from the mdsc's or inode's flushing cap list.
1732 * Return true if caller needs to wake up flush waiters.
1733 */
1734static bool __finish_cap_flush(struct ceph_mds_client *mdsc,
1735 struct ceph_inode_info *ci,
1736 struct ceph_cap_flush *cf)
1737{
1738 struct ceph_cap_flush *prev;
1739 bool wake = cf->wake;
1740 if (mdsc) {
1741 /* are there older pending cap flushes? */
1742 if (wake && cf->g_list.prev != &mdsc->cap_flush_list) {
1743 prev = list_prev_entry(cf, g_list);
1744 prev->wake = true;
1745 wake = false;
1746 }
1747 list_del(&cf->g_list);
1748 } else if (ci) {
1749 if (wake && cf->i_list.prev != &ci->i_cap_flush_list) {
1750 prev = list_prev_entry(cf, i_list);
1751 prev->wake = true;
1752 wake = false;
1753 }
1754 list_del(&cf->i_list);
1755 } else {
1756 BUG_ON(1);
1757 }
1758 return wake;
1759}
1760
a8599bd8
SW
1761/*
1762 * Add dirty inode to the flushing list. Assigned a seq number so we
1763 * can wait for caps to flush without starving.
cdc35f96 1764 *
9f3345d8 1765 * Called under i_ceph_lock. Returns the flush tid.
a8599bd8 1766 */
9f3345d8 1767static u64 __mark_caps_flushing(struct inode *inode,
c8799fc4 1768 struct ceph_mds_session *session, bool wake,
9f3345d8 1769 u64 *oldest_flush_tid)
a8599bd8 1770{
3d14c5d2 1771 struct ceph_mds_client *mdsc = ceph_sb_to_client(inode->i_sb)->mdsc;
a8599bd8 1772 struct ceph_inode_info *ci = ceph_inode(inode);
f66fd9f0 1773 struct ceph_cap_flush *cf = NULL;
cdc35f96 1774 int flushing;
50b885b9 1775
c7e4f85c 1776 lockdep_assert_held(&ci->i_ceph_lock);
cdc35f96 1777 BUG_ON(ci->i_dirty_caps == 0);
a8599bd8 1778 BUG_ON(list_empty(&ci->i_dirty_item));
f66fd9f0 1779 BUG_ON(!ci->i_prealloc_cap_flush);
cdc35f96
SW
1780
1781 flushing = ci->i_dirty_caps;
1782 dout("__mark_caps_flushing flushing %s, flushing_caps %s -> %s\n",
1783 ceph_cap_string(flushing),
1784 ceph_cap_string(ci->i_flushing_caps),
1785 ceph_cap_string(ci->i_flushing_caps | flushing));
1786 ci->i_flushing_caps |= flushing;
1787 ci->i_dirty_caps = 0;
afcdaea3 1788 dout(" inode %p now !dirty\n", inode);
cdc35f96 1789
f66fd9f0 1790 swap(cf, ci->i_prealloc_cap_flush);
553adfd9 1791 cf->caps = flushing;
c8799fc4 1792 cf->wake = wake;
553adfd9 1793
a8599bd8 1794 spin_lock(&mdsc->cap_dirty_lock);
afcdaea3
SW
1795 list_del_init(&ci->i_dirty_item);
1796
553adfd9 1797 cf->tid = ++mdsc->last_cap_flush_tid;
e4500b5e 1798 list_add_tail(&cf->g_list, &mdsc->cap_flush_list);
a2971c8c 1799 *oldest_flush_tid = __get_oldest_flush_tid(mdsc);
553adfd9 1800
a8599bd8
SW
1801 if (list_empty(&ci->i_flushing_item)) {
1802 list_add_tail(&ci->i_flushing_item, &session->s_cap_flushing);
1803 mdsc->num_cap_flushing++;
a8599bd8
SW
1804 }
1805 spin_unlock(&mdsc->cap_dirty_lock);
cdc35f96 1806
e4500b5e 1807 list_add_tail(&cf->i_list, &ci->i_cap_flush_list);
553adfd9 1808
9f3345d8 1809 return cf->tid;
a8599bd8
SW
1810}
1811
5ecad6fd
SW
1812/*
1813 * try to invalidate mapping pages without blocking.
1814 */
5ecad6fd
SW
1815static int try_nonblocking_invalidate(struct inode *inode)
1816{
1817 struct ceph_inode_info *ci = ceph_inode(inode);
1818 u32 invalidating_gen = ci->i_rdcache_gen;
1819
be655596 1820 spin_unlock(&ci->i_ceph_lock);
5ecad6fd 1821 invalidate_mapping_pages(&inode->i_data, 0, -1);
be655596 1822 spin_lock(&ci->i_ceph_lock);
5ecad6fd 1823
18a38193 1824 if (inode->i_data.nrpages == 0 &&
5ecad6fd
SW
1825 invalidating_gen == ci->i_rdcache_gen) {
1826 /* success. */
1827 dout("try_nonblocking_invalidate %p success\n", inode);
cd045cb4
SW
1828 /* save any racing async invalidate some trouble */
1829 ci->i_rdcache_revoking = ci->i_rdcache_gen - 1;
5ecad6fd
SW
1830 return 0;
1831 }
1832 dout("try_nonblocking_invalidate %p failed\n", inode);
1833 return -1;
1834}
1835
efb0ca76
YZ
1836bool __ceph_should_report_size(struct ceph_inode_info *ci)
1837{
1838 loff_t size = ci->vfs_inode.i_size;
1839 /* mds will adjust max size according to the reported size */
1840 if (ci->i_flushing_caps & CEPH_CAP_FILE_WR)
1841 return false;
1842 if (size >= ci->i_max_size)
1843 return true;
1844 /* half of previous max_size increment has been used */
1845 if (ci->i_max_size > ci->i_reported_size &&
1846 (size << 1) >= ci->i_max_size + ci->i_reported_size)
1847 return true;
1848 return false;
1849}
1850
a8599bd8
SW
1851/*
1852 * Swiss army knife function to examine currently used and wanted
1853 * versus held caps. Release, flush, ack revoked caps to mds as
1854 * appropriate.
1855 *
a8599bd8
SW
1856 * CHECK_CAPS_AUTHONLY - we should only check the auth cap
1857 * CHECK_CAPS_FLUSH - we should flush any dirty caps immediately, without
1858 * further delay.
1859 */
1860void ceph_check_caps(struct ceph_inode_info *ci, int flags,
1861 struct ceph_mds_session *session)
1862{
3d14c5d2
YS
1863 struct ceph_fs_client *fsc = ceph_inode_to_client(&ci->vfs_inode);
1864 struct ceph_mds_client *mdsc = fsc->mdsc;
a8599bd8
SW
1865 struct inode *inode = &ci->vfs_inode;
1866 struct ceph_cap *cap;
a2971c8c 1867 u64 flush_tid, oldest_flush_tid;
395c312b 1868 int file_wanted, used, cap_used;
a8599bd8 1869 int took_snap_rwsem = 0; /* true if mdsc->snap_rwsem held */
cbd03635 1870 int issued, implemented, want, retain, revoking, flushing = 0;
a8599bd8
SW
1871 int mds = -1; /* keep track of how far we've gone through i_caps list
1872 to avoid an infinite loop on retry */
1873 struct rb_node *p;
3609404f 1874 bool queue_invalidate = false;
3609404f 1875 bool tried_invalidate = false;
a8599bd8 1876
be655596 1877 spin_lock(&ci->i_ceph_lock);
a8599bd8
SW
1878 if (ci->i_ceph_flags & CEPH_I_FLUSH)
1879 flags |= CHECK_CAPS_FLUSH;
1880
a8599bd8
SW
1881 goto retry_locked;
1882retry:
be655596 1883 spin_lock(&ci->i_ceph_lock);
a8599bd8
SW
1884retry_locked:
1885 file_wanted = __ceph_caps_file_wanted(ci);
1886 used = __ceph_caps_used(ci);
cbd03635
SW
1887 issued = __ceph_caps_issued(ci, &implemented);
1888 revoking = implemented & ~issued;
a8599bd8 1889
41445999
YZ
1890 want = file_wanted;
1891 retain = file_wanted | used | CEPH_CAP_PIN;
a8599bd8 1892 if (!mdsc->stopping && inode->i_nlink > 0) {
41445999 1893 if (file_wanted) {
a8599bd8 1894 retain |= CEPH_CAP_ANY; /* be greedy */
32ec4397
YZ
1895 } else if (S_ISDIR(inode->i_mode) &&
1896 (issued & CEPH_CAP_FILE_SHARED) &&
8a2ac3a8 1897 __ceph_dir_is_complete(ci)) {
32ec4397
YZ
1898 /*
1899 * If a directory is complete, we want to keep
1900 * the exclusive cap. So that MDS does not end up
1901 * revoking the shared cap on every create/unlink
1902 * operation.
1903 */
a25949b9 1904 if (IS_RDONLY(inode)) {
8a2ac3a8 1905 want = CEPH_CAP_ANY_SHARED;
a25949b9 1906 } else {
719a2514 1907 want |= CEPH_CAP_ANY_SHARED | CEPH_CAP_FILE_EXCL;
a25949b9 1908 }
32ec4397 1909 retain |= want;
a8599bd8 1910 } else {
32ec4397 1911
a8599bd8
SW
1912 retain |= CEPH_CAP_ANY_SHARED;
1913 /*
1914 * keep RD only if we didn't have the file open RW,
1915 * because then the mds would revoke it anyway to
1916 * journal max_size=0.
1917 */
1918 if (ci->i_max_size == 0)
1919 retain |= CEPH_CAP_ANY_RD;
1920 }
1921 }
1922
1923 dout("check_caps %p file_want %s used %s dirty %s flushing %s"
a0d93e32 1924 " issued %s revoking %s retain %s %s%s\n", inode,
a8599bd8
SW
1925 ceph_cap_string(file_wanted),
1926 ceph_cap_string(used), ceph_cap_string(ci->i_dirty_caps),
1927 ceph_cap_string(ci->i_flushing_caps),
cbd03635 1928 ceph_cap_string(issued), ceph_cap_string(revoking),
a8599bd8
SW
1929 ceph_cap_string(retain),
1930 (flags & CHECK_CAPS_AUTHONLY) ? " AUTHONLY" : "",
a8599bd8
SW
1931 (flags & CHECK_CAPS_FLUSH) ? " FLUSH" : "");
1932
1933 /*
1934 * If we no longer need to hold onto old our caps, and we may
1935 * have cached pages, but don't want them, then try to invalidate.
1936 * If we fail, it's because pages are locked.... try again later.
1937 */
a0d93e32 1938 if ((!(flags & CHECK_CAPS_NOINVAL) || mdsc->stopping) &&
525d15e8 1939 S_ISREG(inode->i_mode) &&
9abd4db7 1940 !(ci->i_wb_ref || ci->i_wrbuffer_ref) && /* no dirty pages... */
fdd4e158 1941 inode->i_data.nrpages && /* have cached pages */
5e804ac4
YZ
1942 (revoking & (CEPH_CAP_FILE_CACHE|
1943 CEPH_CAP_FILE_LAZYIO)) && /* or revoking cache */
a8599bd8 1944 !tried_invalidate) {
a8599bd8 1945 dout("check_caps trying to invalidate on %p\n", inode);
5ecad6fd 1946 if (try_nonblocking_invalidate(inode) < 0) {
ee612d95
YZ
1947 dout("check_caps queuing invalidate\n");
1948 queue_invalidate = true;
1949 ci->i_rdcache_revoking = ci->i_rdcache_gen;
a8599bd8 1950 }
3609404f 1951 tried_invalidate = true;
a8599bd8
SW
1952 goto retry_locked;
1953 }
1954
a8599bd8
SW
1955 for (p = rb_first(&ci->i_caps); p; p = rb_next(p)) {
1956 cap = rb_entry(p, struct ceph_cap, ci_node);
a8599bd8
SW
1957
1958 /* avoid looping forever */
1959 if (mds >= cap->mds ||
1960 ((flags & CHECK_CAPS_AUTHONLY) && cap != ci->i_auth_cap))
1961 continue;
1962
1963 /* NOTE: no side-effects allowed, until we take s_mutex */
1964
395c312b
YZ
1965 cap_used = used;
1966 if (ci->i_auth_cap && cap != ci->i_auth_cap)
1967 cap_used &= ~ci->i_auth_cap->issued;
1968
a8599bd8 1969 revoking = cap->implemented & ~cap->issued;
395c312b 1970 dout(" mds%d cap %p used %s issued %s implemented %s revoking %s\n",
9abd4db7
YZ
1971 cap->mds, cap, ceph_cap_string(cap_used),
1972 ceph_cap_string(cap->issued),
088b3f5e
SW
1973 ceph_cap_string(cap->implemented),
1974 ceph_cap_string(revoking));
a8599bd8
SW
1975
1976 if (cap == ci->i_auth_cap &&
1977 (cap->issued & CEPH_CAP_FILE_WR)) {
1978 /* request larger max_size from MDS? */
1979 if (ci->i_wanted_max_size > ci->i_max_size &&
1980 ci->i_wanted_max_size > ci->i_requested_max_size) {
1981 dout("requesting new max_size\n");
1982 goto ack;
1983 }
1984
1985 /* approaching file_max? */
efb0ca76 1986 if (__ceph_should_report_size(ci)) {
a8599bd8
SW
1987 dout("i_size approaching max_size\n");
1988 goto ack;
1989 }
1990 }
1991 /* flush anything dirty? */
7bc00fdd
YZ
1992 if (cap == ci->i_auth_cap) {
1993 if ((flags & CHECK_CAPS_FLUSH) && ci->i_dirty_caps) {
1994 dout("flushing dirty caps\n");
1995 goto ack;
1996 }
1997 if (ci->i_ceph_flags & CEPH_I_FLUSH_SNAPS) {
1998 dout("flushing snap caps\n");
1999 goto ack;
2000 }
a8599bd8
SW
2001 }
2002
2003 /* completed revocation? going down and there are no caps? */
395c312b 2004 if (revoking && (revoking & cap_used) == 0) {
a8599bd8
SW
2005 dout("completed revocation of %s\n",
2006 ceph_cap_string(cap->implemented & ~cap->issued));
2007 goto ack;
2008 }
2009
2010 /* want more caps from mds? */
0aa971b6
YZ
2011 if (want & ~cap->mds_wanted) {
2012 if (want & ~(cap->mds_wanted | cap->issued))
2013 goto ack;
2014 if (!__cap_is_valid(cap))
2015 goto ack;
2016 }
a8599bd8
SW
2017
2018 /* things we might delay */
fdac94fa 2019 if ((cap->issued & ~retain) == 0)
a8599bd8
SW
2020 continue; /* nope, all good */
2021
a8599bd8
SW
2022ack:
2023 if (session && session != cap->session) {
2024 dout("oops, wrong session %p mutex\n", session);
2025 mutex_unlock(&session->s_mutex);
2026 session = NULL;
2027 }
2028 if (!session) {
2029 session = cap->session;
2030 if (mutex_trylock(&session->s_mutex) == 0) {
2031 dout("inverting session/ino locks on %p\n",
2032 session);
be655596 2033 spin_unlock(&ci->i_ceph_lock);
a8599bd8
SW
2034 if (took_snap_rwsem) {
2035 up_read(&mdsc->snap_rwsem);
2036 took_snap_rwsem = 0;
2037 }
2038 mutex_lock(&session->s_mutex);
2039 goto retry;
2040 }
2041 }
7bc00fdd
YZ
2042
2043 /* kick flushing and flush snaps before sending normal
2044 * cap message */
2045 if (cap == ci->i_auth_cap &&
2046 (ci->i_ceph_flags &
2047 (CEPH_I_KICK_FLUSH | CEPH_I_FLUSH_SNAPS))) {
054f8d41 2048 if (ci->i_ceph_flags & CEPH_I_KICK_FLUSH)
24d063ac 2049 __kick_flushing_caps(mdsc, session, ci, 0);
ed9b430c
YZ
2050 if (ci->i_ceph_flags & CEPH_I_FLUSH_SNAPS)
2051 __ceph_flush_snaps(ci, session);
2052
7bc00fdd
YZ
2053 goto retry_locked;
2054 }
2055
a8599bd8
SW
2056 /* take snap_rwsem after session mutex */
2057 if (!took_snap_rwsem) {
2058 if (down_read_trylock(&mdsc->snap_rwsem) == 0) {
2059 dout("inverting snap/in locks on %p\n",
2060 inode);
be655596 2061 spin_unlock(&ci->i_ceph_lock);
a8599bd8
SW
2062 down_read(&mdsc->snap_rwsem);
2063 took_snap_rwsem = 1;
2064 goto retry;
2065 }
2066 took_snap_rwsem = 1;
2067 }
2068
553adfd9 2069 if (cap == ci->i_auth_cap && ci->i_dirty_caps) {
9f3345d8
JL
2070 flushing = ci->i_dirty_caps;
2071 flush_tid = __mark_caps_flushing(inode, session, false,
2072 &oldest_flush_tid);
553adfd9 2073 } else {
24be0c48 2074 flushing = 0;
553adfd9 2075 flush_tid = 0;
a2971c8c
YZ
2076 spin_lock(&mdsc->cap_dirty_lock);
2077 oldest_flush_tid = __get_oldest_flush_tid(mdsc);
2078 spin_unlock(&mdsc->cap_dirty_lock);
553adfd9 2079 }
a8599bd8
SW
2080
2081 mds = cap->mds; /* remember mds, so we don't repeat */
a8599bd8 2082
be655596 2083 /* __send_cap drops i_ceph_lock */
a0d93e32
YZ
2084 __send_cap(mdsc, cap, CEPH_CAP_OP_UPDATE, 0, cap_used, want,
2085 retain, flushing, flush_tid, oldest_flush_tid);
be655596 2086 goto retry; /* retake i_ceph_lock and restart our cap scan. */
a8599bd8
SW
2087 }
2088
a0d93e32
YZ
2089 /* periodically re-calculate caps wanted by open files */
2090 if (__ceph_is_any_real_caps(ci) &&
2091 list_empty(&ci->i_cap_delay_list) &&
2092 (file_wanted & ~CEPH_CAP_PIN) &&
2093 !(used & (CEPH_CAP_FILE_RD | CEPH_CAP_ANY_FILE_WR))) {
2094 __cap_delay_requeue(mdsc, ci);
719a2514 2095 }
a8599bd8 2096
be655596 2097 spin_unlock(&ci->i_ceph_lock);
a8599bd8 2098
cbd03635 2099 if (queue_invalidate)
3c6f6b79 2100 ceph_queue_invalidate(inode);
cbd03635 2101
cdc2ce05 2102 if (session)
a8599bd8
SW
2103 mutex_unlock(&session->s_mutex);
2104 if (took_snap_rwsem)
2105 up_read(&mdsc->snap_rwsem);
2106}
2107
a8599bd8
SW
2108/*
2109 * Try to flush dirty caps back to the auth mds.
2110 */
553adfd9 2111static int try_flush_caps(struct inode *inode, u64 *ptid)
a8599bd8 2112{
3d14c5d2 2113 struct ceph_mds_client *mdsc = ceph_sb_to_client(inode->i_sb)->mdsc;
a8599bd8 2114 struct ceph_inode_info *ci = ceph_inode(inode);
4fe59789 2115 struct ceph_mds_session *session = NULL;
89b52fe1 2116 int flushing = 0;
a2971c8c 2117 u64 flush_tid = 0, oldest_flush_tid = 0;
a8599bd8
SW
2118
2119retry:
be655596 2120 spin_lock(&ci->i_ceph_lock);
d6cee9db 2121retry_locked:
a8599bd8
SW
2122 if (ci->i_dirty_caps && ci->i_auth_cap) {
2123 struct ceph_cap *cap = ci->i_auth_cap;
a8599bd8 2124
27b0a392 2125 if (session != cap->session) {
be655596 2126 spin_unlock(&ci->i_ceph_lock);
4fe59789
YZ
2127 if (session)
2128 mutex_unlock(&session->s_mutex);
a8599bd8
SW
2129 session = cap->session;
2130 mutex_lock(&session->s_mutex);
2131 goto retry;
2132 }
6c2838fb
JL
2133 if (cap->session->s_state < CEPH_MDS_SESSION_OPEN) {
2134 spin_unlock(&ci->i_ceph_lock);
a8599bd8 2135 goto out;
6c2838fb 2136 }
a8599bd8 2137
d6cee9db
YZ
2138 if (ci->i_ceph_flags &
2139 (CEPH_I_KICK_FLUSH | CEPH_I_FLUSH_SNAPS)) {
2140 if (ci->i_ceph_flags & CEPH_I_KICK_FLUSH)
2141 __kick_flushing_caps(mdsc, session, ci, 0);
2142 if (ci->i_ceph_flags & CEPH_I_FLUSH_SNAPS)
2143 __ceph_flush_snaps(ci, session);
2144 goto retry_locked;
2145 }
2146
9f3345d8
JL
2147 flushing = ci->i_dirty_caps;
2148 flush_tid = __mark_caps_flushing(inode, session, true,
2149 &oldest_flush_tid);
a8599bd8 2150
be655596 2151 /* __send_cap drops i_ceph_lock */
a0d93e32
YZ
2152 __send_cap(mdsc, cap, CEPH_CAP_OP_FLUSH, CEPH_CLIENT_CAPS_SYNC,
2153 __ceph_caps_used(ci), __ceph_caps_wanted(ci),
2154 (cap->issued | cap->implemented),
2155 flushing, flush_tid, oldest_flush_tid);
553adfd9 2156 } else {
e4500b5e 2157 if (!list_empty(&ci->i_cap_flush_list)) {
553adfd9 2158 struct ceph_cap_flush *cf =
e4500b5e 2159 list_last_entry(&ci->i_cap_flush_list,
c8799fc4
YZ
2160 struct ceph_cap_flush, i_list);
2161 cf->wake = true;
553adfd9
YZ
2162 flush_tid = cf->tid;
2163 }
2164 flushing = ci->i_flushing_caps;
2165 spin_unlock(&ci->i_ceph_lock);
a8599bd8
SW
2166 }
2167out:
4fe59789 2168 if (session)
a8599bd8 2169 mutex_unlock(&session->s_mutex);
553adfd9
YZ
2170
2171 *ptid = flush_tid;
a8599bd8
SW
2172 return flushing;
2173}
2174
2175/*
2176 * Return true if we've flushed caps through the given flush_tid.
2177 */
553adfd9 2178static int caps_are_flushed(struct inode *inode, u64 flush_tid)
a8599bd8
SW
2179{
2180 struct ceph_inode_info *ci = ceph_inode(inode);
553adfd9 2181 int ret = 1;
a8599bd8 2182
be655596 2183 spin_lock(&ci->i_ceph_lock);
e4500b5e
YZ
2184 if (!list_empty(&ci->i_cap_flush_list)) {
2185 struct ceph_cap_flush * cf =
2186 list_first_entry(&ci->i_cap_flush_list,
2187 struct ceph_cap_flush, i_list);
553adfd9 2188 if (cf->tid <= flush_tid)
a8599bd8 2189 ret = 0;
89b52fe1 2190 }
be655596 2191 spin_unlock(&ci->i_ceph_lock);
a8599bd8
SW
2192 return ret;
2193}
2194
da819c81 2195/*
68cd5b4b 2196 * wait for any unsafe requests to complete.
da819c81 2197 */
68cd5b4b 2198static int unsafe_request_wait(struct inode *inode)
da819c81
YZ
2199{
2200 struct ceph_inode_info *ci = ceph_inode(inode);
68cd5b4b
YZ
2201 struct ceph_mds_request *req1 = NULL, *req2 = NULL;
2202 int ret, err = 0;
da819c81
YZ
2203
2204 spin_lock(&ci->i_unsafe_lock);
68cd5b4b
YZ
2205 if (S_ISDIR(inode->i_mode) && !list_empty(&ci->i_unsafe_dirops)) {
2206 req1 = list_last_entry(&ci->i_unsafe_dirops,
2207 struct ceph_mds_request,
2208 r_unsafe_dir_item);
2209 ceph_mdsc_get_request(req1);
2210 }
2211 if (!list_empty(&ci->i_unsafe_iops)) {
2212 req2 = list_last_entry(&ci->i_unsafe_iops,
2213 struct ceph_mds_request,
2214 r_unsafe_target_item);
2215 ceph_mdsc_get_request(req2);
2216 }
2217 spin_unlock(&ci->i_unsafe_lock);
da819c81 2218
4945a084 2219 dout("unsafe_request_wait %p wait on tid %llu %llu\n",
68cd5b4b
YZ
2220 inode, req1 ? req1->r_tid : 0ULL, req2 ? req2->r_tid : 0ULL);
2221 if (req1) {
2222 ret = !wait_for_completion_timeout(&req1->r_safe_completion,
2223 ceph_timeout_jiffies(req1->r_timeout));
da819c81 2224 if (ret)
68cd5b4b
YZ
2225 err = -EIO;
2226 ceph_mdsc_put_request(req1);
2227 }
2228 if (req2) {
2229 ret = !wait_for_completion_timeout(&req2->r_safe_completion,
2230 ceph_timeout_jiffies(req2->r_timeout));
2231 if (ret)
2232 err = -EIO;
2233 ceph_mdsc_put_request(req2);
2234 }
2235 return err;
da819c81
YZ
2236}
2237
02c24a82 2238int ceph_fsync(struct file *file, loff_t start, loff_t end, int datasync)
a8599bd8 2239{
f4b97866 2240 struct ceph_file_info *fi = file->private_data;
7ea80859 2241 struct inode *inode = file->f_mapping->host;
a8599bd8 2242 struct ceph_inode_info *ci = ceph_inode(inode);
553adfd9 2243 u64 flush_tid;
f4b97866 2244 int ret, err;
a8599bd8
SW
2245 int dirty;
2246
2247 dout("fsync %p%s\n", inode, datasync ? " datasync" : "");
9a5530c6 2248
b74fceae 2249 ret = file_write_and_wait_range(file, start, end);
da819c81
YZ
2250 if (datasync)
2251 goto out;
2252
891f3f5a
JL
2253 ret = ceph_wait_on_async_create(inode);
2254 if (ret)
2255 goto out;
2256
553adfd9 2257 dirty = try_flush_caps(inode, &flush_tid);
a8599bd8
SW
2258 dout("fsync dirty caps are %s\n", ceph_cap_string(dirty));
2259
f4b97866 2260 err = unsafe_request_wait(inode);
da819c81 2261
a8599bd8
SW
2262 /*
2263 * only wait on non-file metadata writeback (the mds
2264 * can recover size and mtime, so we don't need to
2265 * wait for that)
2266 */
f4b97866
YZ
2267 if (!err && (dirty & ~CEPH_CAP_ANY_FILE_WR)) {
2268 err = wait_event_interruptible(ci->i_cap_wq,
da819c81 2269 caps_are_flushed(inode, flush_tid));
a8599bd8 2270 }
f4b97866
YZ
2271
2272 if (err < 0)
2273 ret = err;
2274
2275 if (errseq_check(&ci->i_meta_err, READ_ONCE(fi->meta_err))) {
2276 spin_lock(&file->f_lock);
2277 err = errseq_check_and_advance(&ci->i_meta_err,
2278 &fi->meta_err);
2279 spin_unlock(&file->f_lock);
2280 if (err < 0)
2281 ret = err;
2282 }
da819c81
YZ
2283out:
2284 dout("fsync %p%s result=%d\n", inode, datasync ? " datasync" : "", ret);
a8599bd8
SW
2285 return ret;
2286}
2287
2288/*
2289 * Flush any dirty caps back to the mds. If we aren't asked to wait,
2290 * queue inode for flush but don't do so immediately, because we can
2291 * get by with fewer MDS messages if we wait for data writeback to
2292 * complete first.
2293 */
f1a3d572 2294int ceph_write_inode(struct inode *inode, struct writeback_control *wbc)
a8599bd8
SW
2295{
2296 struct ceph_inode_info *ci = ceph_inode(inode);
553adfd9 2297 u64 flush_tid;
a8599bd8
SW
2298 int err = 0;
2299 int dirty;
16515a6d 2300 int wait = (wbc->sync_mode == WB_SYNC_ALL && !wbc->for_sync);
a8599bd8
SW
2301
2302 dout("write_inode %p wait=%d\n", inode, wait);
2303 if (wait) {
553adfd9 2304 dirty = try_flush_caps(inode, &flush_tid);
a8599bd8
SW
2305 if (dirty)
2306 err = wait_event_interruptible(ci->i_cap_wq,
2307 caps_are_flushed(inode, flush_tid));
2308 } else {
640ef79d 2309 struct ceph_mds_client *mdsc =
3d14c5d2 2310 ceph_sb_to_client(inode->i_sb)->mdsc;
a8599bd8 2311
be655596 2312 spin_lock(&ci->i_ceph_lock);
a8599bd8
SW
2313 if (__ceph_caps_dirty(ci))
2314 __cap_delay_requeue_front(mdsc, ci);
be655596 2315 spin_unlock(&ci->i_ceph_lock);
a8599bd8
SW
2316 }
2317 return err;
2318}
2319
0e294387
YZ
2320static void __kick_flushing_caps(struct ceph_mds_client *mdsc,
2321 struct ceph_mds_session *session,
2322 struct ceph_inode_info *ci,
2323 u64 oldest_flush_tid)
2324 __releases(ci->i_ceph_lock)
2325 __acquires(ci->i_ceph_lock)
553adfd9
YZ
2326{
2327 struct inode *inode = &ci->vfs_inode;
2328 struct ceph_cap *cap;
2329 struct ceph_cap_flush *cf;
0e294387 2330 int ret;
553adfd9 2331 u64 first_tid = 0;
49ada6e8 2332 u64 last_snap_flush = 0;
553adfd9 2333
054f8d41
YZ
2334 ci->i_ceph_flags &= ~CEPH_I_KICK_FLUSH;
2335
49ada6e8
YZ
2336 list_for_each_entry_reverse(cf, &ci->i_cap_flush_list, i_list) {
2337 if (!cf->caps) {
2338 last_snap_flush = cf->tid;
2339 break;
2340 }
2341 }
2342
e4500b5e
YZ
2343 list_for_each_entry(cf, &ci->i_cap_flush_list, i_list) {
2344 if (cf->tid < first_tid)
2345 continue;
2346
553adfd9
YZ
2347 cap = ci->i_auth_cap;
2348 if (!(cap && cap->session == session)) {
0e294387
YZ
2349 pr_err("%p auth cap %p not mds%d ???\n",
2350 inode, cap, session->s_mds);
553adfd9
YZ
2351 break;
2352 }
2353
553adfd9
YZ
2354 first_tid = cf->tid + 1;
2355
0e294387
YZ
2356 if (cf->caps) {
2357 dout("kick_flushing_caps %p cap %p tid %llu %s\n",
2358 inode, cap, cf->tid, ceph_cap_string(cf->caps));
a0d93e32 2359 __send_cap(mdsc, cap, CEPH_CAP_OP_FLUSH,
49ada6e8
YZ
2360 (cf->tid < last_snap_flush ?
2361 CEPH_CLIENT_CAPS_PENDING_CAPSNAP : 0),
2362 __ceph_caps_used(ci),
0e294387 2363 __ceph_caps_wanted(ci),
49ada6e8 2364 (cap->issued | cap->implemented),
0e294387 2365 cf->caps, cf->tid, oldest_flush_tid);
0e294387
YZ
2366 } else {
2367 struct ceph_cap_snap *capsnap =
2368 container_of(cf, struct ceph_cap_snap,
2369 cap_flush);
2370 dout("kick_flushing_caps %p capsnap %p tid %llu %s\n",
2371 inode, capsnap, cf->tid,
2372 ceph_cap_string(capsnap->dirty));
2373
805692d0 2374 refcount_inc(&capsnap->nref);
0e294387
YZ
2375 spin_unlock(&ci->i_ceph_lock);
2376
2377 ret = __send_flush_snap(inode, session, capsnap, cap->mseq,
2378 oldest_flush_tid);
2379 if (ret < 0) {
2380 pr_err("kick_flushing_caps: error sending "
2381 "cap flushsnap, ino (%llx.%llx) "
2382 "tid %llu follows %llu\n",
2383 ceph_vinop(inode), cf->tid,
2384 capsnap->follows);
2385 }
2386
2387 ceph_put_cap_snap(capsnap);
2388 }
e4500b5e
YZ
2389
2390 spin_lock(&ci->i_ceph_lock);
553adfd9 2391 }
553adfd9
YZ
2392}
2393
e548e9b9
YZ
2394void ceph_early_kick_flushing_caps(struct ceph_mds_client *mdsc,
2395 struct ceph_mds_session *session)
2396{
2397 struct ceph_inode_info *ci;
2398 struct ceph_cap *cap;
0e294387 2399 u64 oldest_flush_tid;
e548e9b9
YZ
2400
2401 dout("early_kick_flushing_caps mds%d\n", session->s_mds);
0e294387
YZ
2402
2403 spin_lock(&mdsc->cap_dirty_lock);
2404 oldest_flush_tid = __get_oldest_flush_tid(mdsc);
2405 spin_unlock(&mdsc->cap_dirty_lock);
2406
e548e9b9
YZ
2407 list_for_each_entry(ci, &session->s_cap_flushing, i_flushing_item) {
2408 spin_lock(&ci->i_ceph_lock);
2409 cap = ci->i_auth_cap;
2410 if (!(cap && cap->session == session)) {
2411 pr_err("%p auth cap %p not mds%d ???\n",
2412 &ci->vfs_inode, cap, session->s_mds);
2413 spin_unlock(&ci->i_ceph_lock);
2414 continue;
2415 }
2416
2417
2418 /*
2419 * if flushing caps were revoked, we re-send the cap flush
2420 * in client reconnect stage. This guarantees MDS * processes
2421 * the cap flush message before issuing the flushing caps to
2422 * other client.
2423 */
2424 if ((cap->issued & ci->i_flushing_caps) !=
2425 ci->i_flushing_caps) {
81c5a148
YZ
2426 /* encode_caps_cb() also will reset these sequence
2427 * numbers. make sure sequence numbers in cap flush
2428 * message match later reconnect message */
2429 cap->seq = 0;
2430 cap->issue_seq = 0;
2431 cap->mseq = 0;
0e294387
YZ
2432 __kick_flushing_caps(mdsc, session, ci,
2433 oldest_flush_tid);
13c2b57d
YZ
2434 } else {
2435 ci->i_ceph_flags |= CEPH_I_KICK_FLUSH;
e548e9b9
YZ
2436 }
2437
e548e9b9
YZ
2438 spin_unlock(&ci->i_ceph_lock);
2439 }
2440}
2441
a8599bd8
SW
2442void ceph_kick_flushing_caps(struct ceph_mds_client *mdsc,
2443 struct ceph_mds_session *session)
2444{
2445 struct ceph_inode_info *ci;
13c2b57d 2446 struct ceph_cap *cap;
0e294387 2447 u64 oldest_flush_tid;
a8599bd8
SW
2448
2449 dout("kick_flushing_caps mds%d\n", session->s_mds);
0e294387
YZ
2450
2451 spin_lock(&mdsc->cap_dirty_lock);
2452 oldest_flush_tid = __get_oldest_flush_tid(mdsc);
2453 spin_unlock(&mdsc->cap_dirty_lock);
2454
a8599bd8 2455 list_for_each_entry(ci, &session->s_cap_flushing, i_flushing_item) {
0e294387 2456 spin_lock(&ci->i_ceph_lock);
13c2b57d
YZ
2457 cap = ci->i_auth_cap;
2458 if (!(cap && cap->session == session)) {
2459 pr_err("%p auth cap %p not mds%d ???\n",
2460 &ci->vfs_inode, cap, session->s_mds);
2461 spin_unlock(&ci->i_ceph_lock);
2462 continue;
2463 }
2464 if (ci->i_ceph_flags & CEPH_I_KICK_FLUSH) {
13c2b57d
YZ
2465 __kick_flushing_caps(mdsc, session, ci,
2466 oldest_flush_tid);
2467 }
0e294387 2468 spin_unlock(&ci->i_ceph_lock);
a8599bd8
SW
2469 }
2470}
2471
e8a4d267
JL
2472void ceph_kick_flushing_inode_caps(struct ceph_mds_session *session,
2473 struct ceph_inode_info *ci)
088b3f5e 2474{
e8a4d267
JL
2475 struct ceph_mds_client *mdsc = session->s_mdsc;
2476 struct ceph_cap *cap = ci->i_auth_cap;
2477
2478 lockdep_assert_held(&ci->i_ceph_lock);
088b3f5e 2479
e8a4d267 2480 dout("%s %p flushing %s\n", __func__, &ci->vfs_inode,
8310b089 2481 ceph_cap_string(ci->i_flushing_caps));
005c4697 2482
0e294387
YZ
2483 if (!list_empty(&ci->i_cap_flush_list)) {
2484 u64 oldest_flush_tid;
005c4697
YZ
2485 spin_lock(&mdsc->cap_dirty_lock);
2486 list_move_tail(&ci->i_flushing_item,
2487 &cap->session->s_cap_flushing);
0e294387 2488 oldest_flush_tid = __get_oldest_flush_tid(mdsc);
005c4697
YZ
2489 spin_unlock(&mdsc->cap_dirty_lock);
2490
0e294387 2491 __kick_flushing_caps(mdsc, session, ci, oldest_flush_tid);
088b3f5e
SW
2492 }
2493}
2494
a8599bd8
SW
2495
2496/*
2497 * Take references to capabilities we hold, so that we don't release
2498 * them to the MDS prematurely.
a8599bd8 2499 */
40dcf75e 2500void ceph_take_cap_refs(struct ceph_inode_info *ci, int got,
5dda377c 2501 bool snap_rwsem_locked)
a8599bd8 2502{
40dcf75e
JL
2503 lockdep_assert_held(&ci->i_ceph_lock);
2504
a8599bd8
SW
2505 if (got & CEPH_CAP_PIN)
2506 ci->i_pin_ref++;
2507 if (got & CEPH_CAP_FILE_RD)
2508 ci->i_rd_ref++;
2509 if (got & CEPH_CAP_FILE_CACHE)
2510 ci->i_rdcache_ref++;
f85122af
JL
2511 if (got & CEPH_CAP_FILE_EXCL)
2512 ci->i_fx_ref++;
5dda377c
YZ
2513 if (got & CEPH_CAP_FILE_WR) {
2514 if (ci->i_wr_ref == 0 && !ci->i_head_snapc) {
2515 BUG_ON(!snap_rwsem_locked);
2516 ci->i_head_snapc = ceph_get_snap_context(
2517 ci->i_snap_realm->cached_context);
2518 }
a8599bd8 2519 ci->i_wr_ref++;
5dda377c 2520 }
a8599bd8 2521 if (got & CEPH_CAP_FILE_BUFFER) {
d3d0720d 2522 if (ci->i_wb_ref == 0)
3772d26d 2523 ihold(&ci->vfs_inode);
d3d0720d 2524 ci->i_wb_ref++;
40dcf75e 2525 dout("%s %p wb %d -> %d (?)\n", __func__,
d3d0720d 2526 &ci->vfs_inode, ci->i_wb_ref-1, ci->i_wb_ref);
a8599bd8
SW
2527 }
2528}
2529
2530/*
2531 * Try to grab cap references. Specify those refs we @want, and the
2532 * minimal set we @need. Also include the larger offset we are writing
2533 * to (when applicable), and check against max_size here as well.
2534 * Note that caller is responsible for ensuring max_size increases are
2535 * requested from the MDS.
1199d7da 2536 *
546d4020
YZ
2537 * Returns 0 if caps were not able to be acquired (yet), 1 if succeed,
2538 * or a negative error code. There are 3 speical error codes:
2539 * -EAGAIN: need to sleep but non-blocking is specified
2540 * -EFBIG: ask caller to call check_max_size() and try again.
2541 * -ESTALE: ask caller to call ceph_renew_caps() and try again.
a8599bd8 2542 */
ff5d913d 2543enum {
719a2514
YZ
2544 /* first 8 bits are reserved for CEPH_FILE_MODE_FOO */
2545 NON_BLOCKING = (1 << 8),
2546 CHECK_FILELOCK = (1 << 9),
ff5d913d
YZ
2547};
2548
5e3ded1b 2549static int try_get_cap_refs(struct inode *inode, int need, int want,
ff5d913d 2550 loff_t endoff, int flags, int *got)
a8599bd8 2551{
5e3ded1b 2552 struct ceph_inode_info *ci = ceph_inode(inode);
5dda377c 2553 struct ceph_mds_client *mdsc = ceph_inode_to_client(inode)->mdsc;
a8599bd8 2554 int ret = 0;
c4d4a582 2555 int have, implemented;
5dda377c 2556 bool snap_rwsem_locked = false;
a8599bd8
SW
2557
2558 dout("get_cap_refs %p need %s want %s\n", inode,
2559 ceph_cap_string(need), ceph_cap_string(want));
c4d4a582 2560
5dda377c 2561again:
be655596 2562 spin_lock(&ci->i_ceph_lock);
a8599bd8 2563
ff5d913d
YZ
2564 if ((flags & CHECK_FILELOCK) &&
2565 (ci->i_ceph_flags & CEPH_I_ERROR_FILELOCK)) {
2566 dout("try_get_cap_refs %p error filelock\n", inode);
2567 ret = -EIO;
2568 goto out_unlock;
2569 }
2570
37505d57
YZ
2571 /* finish pending truncate */
2572 while (ci->i_truncate_pending) {
2573 spin_unlock(&ci->i_ceph_lock);
5dda377c
YZ
2574 if (snap_rwsem_locked) {
2575 up_read(&mdsc->snap_rwsem);
2576 snap_rwsem_locked = false;
2577 }
b415bf4f 2578 __ceph_do_pending_vmtruncate(inode);
37505d57
YZ
2579 spin_lock(&ci->i_ceph_lock);
2580 }
2581
3871cbb9
YZ
2582 have = __ceph_caps_issued(ci, &implemented);
2583
2584 if (have & need & CEPH_CAP_FILE_WR) {
a8599bd8
SW
2585 if (endoff >= 0 && endoff > (loff_t)ci->i_max_size) {
2586 dout("get_cap_refs %p endoff %llu > maxsize %llu\n",
2587 inode, endoff, ci->i_max_size);
1199d7da 2588 if (endoff > ci->i_requested_max_size)
42d70f8e 2589 ret = ci->i_auth_cap ? -EFBIG : -ESTALE;
3738daa6 2590 goto out_unlock;
a8599bd8
SW
2591 }
2592 /*
2593 * If a sync write is in progress, we must wait, so that we
2594 * can get a final snapshot value for size+mtime.
2595 */
2596 if (__ceph_have_pending_cap_snap(ci)) {
2597 dout("get_cap_refs %p cap_snap_pending\n", inode);
3738daa6 2598 goto out_unlock;
a8599bd8
SW
2599 }
2600 }
a8599bd8 2601
a8599bd8
SW
2602 if ((have & need) == need) {
2603 /*
2604 * Look at (implemented & ~have & not) so that we keep waiting
2605 * on transition from wanted -> needed caps. This is needed
2606 * for WRBUFFER|WR -> WR to avoid a new WR sync write from
2607 * going before a prior buffered writeback happens.
2608 */
2609 int not = want & ~(have & need);
2610 int revoking = implemented & ~have;
2611 dout("get_cap_refs %p have %s but not %s (revoking %s)\n",
2612 inode, ceph_cap_string(have), ceph_cap_string(not),
2613 ceph_cap_string(revoking));
2614 if ((revoking & not) == 0) {
5dda377c
YZ
2615 if (!snap_rwsem_locked &&
2616 !ci->i_head_snapc &&
2617 (need & CEPH_CAP_FILE_WR)) {
2618 if (!down_read_trylock(&mdsc->snap_rwsem)) {
2619 /*
2620 * we can not call down_read() when
2621 * task isn't in TASK_RUNNING state
2622 */
ff5d913d 2623 if (flags & NON_BLOCKING) {
1199d7da 2624 ret = -EAGAIN;
5dda377c
YZ
2625 goto out_unlock;
2626 }
2627
2628 spin_unlock(&ci->i_ceph_lock);
2629 down_read(&mdsc->snap_rwsem);
2630 snap_rwsem_locked = true;
2631 goto again;
2632 }
2633 snap_rwsem_locked = true;
2634 }
173e70e8
YZ
2635 if ((have & want) == want)
2636 *got = need | want;
2637 else
2638 *got = need;
525d15e8
YZ
2639 if (S_ISREG(inode->i_mode) &&
2640 (need & CEPH_CAP_FILE_RD) &&
f7f7e7a0
YZ
2641 !(*got & CEPH_CAP_FILE_CACHE))
2642 ceph_disable_fscache_readpage(ci);
40dcf75e 2643 ceph_take_cap_refs(ci, *got, true);
a8599bd8
SW
2644 ret = 1;
2645 }
2646 } else {
03f4fcb0 2647 int session_readonly = false;
c0e385b1 2648 int mds_wanted;
525d15e8
YZ
2649 if (ci->i_auth_cap &&
2650 (need & (CEPH_CAP_FILE_WR | CEPH_CAP_FILE_EXCL))) {
03f4fcb0
YZ
2651 struct ceph_mds_session *s = ci->i_auth_cap->session;
2652 spin_lock(&s->s_cap_lock);
2653 session_readonly = s->s_readonly;
2654 spin_unlock(&s->s_cap_lock);
2655 }
2656 if (session_readonly) {
c0e385b1 2657 dout("get_cap_refs %p need %s but mds%d readonly\n",
03f4fcb0 2658 inode, ceph_cap_string(need), ci->i_auth_cap->mds);
1199d7da 2659 ret = -EROFS;
03f4fcb0
YZ
2660 goto out_unlock;
2661 }
2662
c0e385b1
YZ
2663 if (READ_ONCE(mdsc->fsc->mount_state) == CEPH_MOUNT_SHUTDOWN) {
2664 dout("get_cap_refs %p forced umount\n", inode);
2665 ret = -EIO;
2666 goto out_unlock;
2667 }
2668 mds_wanted = __ceph_caps_mds_wanted(ci, false);
2669 if (need & ~mds_wanted) {
2670 dout("get_cap_refs %p need %s > mds_wanted %s\n",
2671 inode, ceph_cap_string(need),
2672 ceph_cap_string(mds_wanted));
2673 ret = -ESTALE;
2674 goto out_unlock;
48fec5d0
YZ
2675 }
2676
c0e385b1 2677 dout("get_cap_refs %p have %s need %s\n", inode,
a8599bd8
SW
2678 ceph_cap_string(have), ceph_cap_string(need));
2679 }
3738daa6 2680out_unlock:
719a2514
YZ
2681
2682 __ceph_touch_fmode(ci, mdsc, flags);
2683
be655596 2684 spin_unlock(&ci->i_ceph_lock);
5dda377c
YZ
2685 if (snap_rwsem_locked)
2686 up_read(&mdsc->snap_rwsem);
3738daa6 2687
a8599bd8 2688 dout("get_cap_refs %p ret %d got %s\n", inode,
c4d4a582 2689 ret, ceph_cap_string(*got));
a8599bd8
SW
2690 return ret;
2691}
2692
2693/*
2694 * Check the offset we are writing up to against our current
2695 * max_size. If necessary, tell the MDS we want to write to
2696 * a larger offset.
2697 */
2698static void check_max_size(struct inode *inode, loff_t endoff)
2699{
2700 struct ceph_inode_info *ci = ceph_inode(inode);
2701 int check = 0;
2702
2703 /* do we need to explicitly request a larger max_size? */
be655596 2704 spin_lock(&ci->i_ceph_lock);
3871cbb9 2705 if (endoff >= ci->i_max_size && endoff > ci->i_wanted_max_size) {
a8599bd8
SW
2706 dout("write %p at large endoff %llu, req max_size\n",
2707 inode, endoff);
2708 ci->i_wanted_max_size = endoff;
a8599bd8 2709 }
3871cbb9
YZ
2710 /* duplicate ceph_check_caps()'s logic */
2711 if (ci->i_auth_cap &&
2712 (ci->i_auth_cap->issued & CEPH_CAP_FILE_WR) &&
2713 ci->i_wanted_max_size > ci->i_max_size &&
2714 ci->i_wanted_max_size > ci->i_requested_max_size)
2715 check = 1;
be655596 2716 spin_unlock(&ci->i_ceph_lock);
a8599bd8
SW
2717 if (check)
2718 ceph_check_caps(ci, CHECK_CAPS_AUTHONLY, NULL);
2719}
2720
719a2514
YZ
2721static inline int get_used_fmode(int caps)
2722{
2723 int fmode = 0;
2724 if (caps & CEPH_CAP_FILE_RD)
2725 fmode |= CEPH_FILE_MODE_RD;
2726 if (caps & CEPH_CAP_FILE_WR)
2727 fmode |= CEPH_FILE_MODE_WR;
2728 return fmode;
2729}
2730
5e3ded1b 2731int ceph_try_get_caps(struct inode *inode, int need, int want,
2ee9dd95 2732 bool nonblock, int *got)
2b1ac852 2733{
719a2514 2734 int ret, flags;
2b1ac852
YZ
2735
2736 BUG_ON(need & ~CEPH_CAP_FILE_RD);
a25949b9
JL
2737 BUG_ON(want & ~(CEPH_CAP_FILE_CACHE | CEPH_CAP_FILE_LAZYIO |
2738 CEPH_CAP_FILE_SHARED | CEPH_CAP_FILE_EXCL |
2739 CEPH_CAP_ANY_DIR_OPS));
2740 if (need) {
2741 ret = ceph_pool_perm_check(inode, need);
2742 if (ret < 0)
2743 return ret;
2744 }
2b1ac852 2745
719a2514
YZ
2746 flags = get_used_fmode(need | want);
2747 if (nonblock)
2748 flags |= NON_BLOCKING;
2749
2750 ret = try_get_cap_refs(inode, need, want, 0, flags, got);
546d4020 2751 /* three special error codes */
7d8976af 2752 if (ret == -EAGAIN || ret == -EFBIG || ret == -ESTALE)
546d4020
YZ
2753 ret = 0;
2754 return ret;
2b1ac852
YZ
2755}
2756
a8599bd8
SW
2757/*
2758 * Wait for caps, and take cap references. If we can't get a WR cap
2759 * due to a small max_size, make sure we check_max_size (and possibly
2760 * ask the mds) so we don't get hung up indefinitely.
2761 */
5e3ded1b 2762int ceph_get_caps(struct file *filp, int need, int want,
3738daa6 2763 loff_t endoff, int *got, struct page **pinned_page)
a8599bd8 2764{
ff5d913d 2765 struct ceph_file_info *fi = filp->private_data;
5e3ded1b
YZ
2766 struct inode *inode = file_inode(filp);
2767 struct ceph_inode_info *ci = ceph_inode(inode);
81f148a9 2768 struct ceph_fs_client *fsc = ceph_inode_to_client(inode);
ff5d913d 2769 int ret, _got, flags;
a8599bd8 2770
5e3ded1b 2771 ret = ceph_pool_perm_check(inode, need);
10183a69
YZ
2772 if (ret < 0)
2773 return ret;
2774
81f148a9
YZ
2775 if ((fi->fmode & CEPH_FILE_MODE_WR) &&
2776 fi->filp_gen != READ_ONCE(fsc->filp_gen))
2777 return -EBADF;
2778
719a2514
YZ
2779 flags = get_used_fmode(need | want);
2780
5dda377c 2781 while (true) {
719a2514
YZ
2782 flags &= CEPH_FILE_MODE_MASK;
2783 if (atomic_read(&fi->num_locks))
2784 flags |= CHECK_FILELOCK;
5dda377c 2785 _got = 0;
5e3ded1b 2786 ret = try_get_cap_refs(inode, need, want, endoff,
ff5d913d 2787 flags, &_got);
546d4020 2788 WARN_ON_ONCE(ret == -EAGAIN);
7b2f936f 2789 if (!ret) {
3a3430af
JL
2790 struct ceph_mds_client *mdsc = fsc->mdsc;
2791 struct cap_wait cw;
5c341ee3 2792 DEFINE_WAIT_FUNC(wait, woken_wake_function);
3a3430af
JL
2793
2794 cw.ino = inode->i_ino;
2795 cw.tgid = current->tgid;
2796 cw.need = need;
2797 cw.want = want;
2798
2799 spin_lock(&mdsc->caps_list_lock);
2800 list_add(&cw.list, &mdsc->cap_wait_list);
2801 spin_unlock(&mdsc->caps_list_lock);
2802
719a2514
YZ
2803 /* make sure used fmode not timeout */
2804 ceph_get_fmode(ci, flags, FMODE_WAIT_BIAS);
5c341ee3
NB
2805 add_wait_queue(&ci->i_cap_wq, &wait);
2806
ff5d913d 2807 flags |= NON_BLOCKING;
5e3ded1b 2808 while (!(ret = try_get_cap_refs(inode, need, want,
ff5d913d 2809 endoff, flags, &_got))) {
6e09d0fb
YZ
2810 if (signal_pending(current)) {
2811 ret = -ERESTARTSYS;
2812 break;
2813 }
5c341ee3 2814 wait_woken(&wait, TASK_INTERRUPTIBLE, MAX_SCHEDULE_TIMEOUT);
6e09d0fb 2815 }
5c341ee3
NB
2816
2817 remove_wait_queue(&ci->i_cap_wq, &wait);
719a2514 2818 ceph_put_fmode(ci, flags, FMODE_WAIT_BIAS);
3a3430af
JL
2819
2820 spin_lock(&mdsc->caps_list_lock);
2821 list_del(&cw.list);
2822 spin_unlock(&mdsc->caps_list_lock);
2823
7b2f936f 2824 if (ret == -EAGAIN)
5dda377c 2825 continue;
77310320 2826 }
81f148a9
YZ
2827
2828 if ((fi->fmode & CEPH_FILE_MODE_WR) &&
2829 fi->filp_gen != READ_ONCE(fsc->filp_gen)) {
2830 if (ret >= 0 && _got)
2831 ceph_put_cap_refs(ci, _got);
2832 return -EBADF;
2833 }
2834
7b2f936f 2835 if (ret < 0) {
9bccb765
YZ
2836 if (ret == -EFBIG || ret == -ESTALE) {
2837 int ret2 = ceph_wait_on_async_create(inode);
2838 if (ret2 < 0)
2839 return ret2;
2840 }
546d4020
YZ
2841 if (ret == -EFBIG) {
2842 check_max_size(inode, endoff);
2843 continue;
2844 }
7b2f936f
YZ
2845 if (ret == -ESTALE) {
2846 /* session was killed, try renew caps */
719a2514 2847 ret = ceph_renew_caps(inode, flags);
7b2f936f
YZ
2848 if (ret == 0)
2849 continue;
2850 }
77310320 2851 return ret;
5dda377c 2852 }
c4d4a582 2853
525d15e8
YZ
2854 if (S_ISREG(ci->vfs_inode.i_mode) &&
2855 ci->i_inline_version != CEPH_INLINE_NONE &&
5dda377c 2856 (_got & (CEPH_CAP_FILE_CACHE|CEPH_CAP_FILE_LAZYIO)) &&
5e3ded1b 2857 i_size_read(inode) > 0) {
5dda377c 2858 struct page *page =
5e3ded1b 2859 find_get_page(inode->i_mapping, 0);
5dda377c
YZ
2860 if (page) {
2861 if (PageUptodate(page)) {
2862 *pinned_page = page;
2863 break;
2864 }
09cbfeaf 2865 put_page(page);
c4d4a582 2866 }
5dda377c
YZ
2867 /*
2868 * drop cap refs first because getattr while
2869 * holding * caps refs can cause deadlock.
2870 */
2871 ceph_put_cap_refs(ci, _got);
2872 _got = 0;
c4d4a582 2873
5dda377c
YZ
2874 /*
2875 * getattr request will bring inline data into
2876 * page cache
2877 */
5e3ded1b 2878 ret = __ceph_do_getattr(inode, NULL,
5dda377c
YZ
2879 CEPH_STAT_CAP_INLINE_DATA,
2880 true);
2881 if (ret < 0)
2882 return ret;
2883 continue;
2884 }
2885 break;
c4d4a582 2886 }
5dda377c 2887
525d15e8
YZ
2888 if (S_ISREG(ci->vfs_inode.i_mode) &&
2889 (_got & CEPH_CAP_FILE_RD) && (_got & CEPH_CAP_FILE_CACHE))
f7f7e7a0
YZ
2890 ceph_fscache_revalidate_cookie(ci);
2891
c4d4a582
YZ
2892 *got = _got;
2893 return 0;
a8599bd8
SW
2894}
2895
2896/*
2897 * Take cap refs. Caller must already know we hold at least one ref
2898 * on the caps in question or we don't know this is safe.
2899 */
2900void ceph_get_cap_refs(struct ceph_inode_info *ci, int caps)
2901{
be655596 2902 spin_lock(&ci->i_ceph_lock);
40dcf75e 2903 ceph_take_cap_refs(ci, caps, false);
be655596 2904 spin_unlock(&ci->i_ceph_lock);
a8599bd8
SW
2905}
2906
86056090
YZ
2907
2908/*
2909 * drop cap_snap that is not associated with any snapshot.
2910 * we don't need to send FLUSHSNAP message for it.
2911 */
70220ac8
YZ
2912static int ceph_try_drop_cap_snap(struct ceph_inode_info *ci,
2913 struct ceph_cap_snap *capsnap)
86056090
YZ
2914{
2915 if (!capsnap->need_flush &&
2916 !capsnap->writing && !capsnap->dirty_pages) {
86056090
YZ
2917 dout("dropping cap_snap %p follows %llu\n",
2918 capsnap, capsnap->follows);
0e294387 2919 BUG_ON(capsnap->cap_flush.tid > 0);
86056090 2920 ceph_put_snap_context(capsnap->context);
70220ac8
YZ
2921 if (!list_is_last(&capsnap->ci_item, &ci->i_cap_snaps))
2922 ci->i_ceph_flags |= CEPH_I_FLUSH_SNAPS;
2923
86056090 2924 list_del(&capsnap->ci_item);
86056090
YZ
2925 ceph_put_cap_snap(capsnap);
2926 return 1;
2927 }
2928 return 0;
2929}
2930
a8599bd8
SW
2931/*
2932 * Release cap refs.
2933 *
2934 * If we released the last ref on any given cap, call ceph_check_caps
2935 * to release (or schedule a release).
2936 *
2937 * If we are releasing a WR cap (from a sync write), finalize any affected
2938 * cap_snap, and wake up any waiters.
2939 */
2940void ceph_put_cap_refs(struct ceph_inode_info *ci, int had)
2941{
2942 struct inode *inode = &ci->vfs_inode;
2943 int last = 0, put = 0, flushsnaps = 0, wake = 0;
a8599bd8 2944
be655596 2945 spin_lock(&ci->i_ceph_lock);
a8599bd8
SW
2946 if (had & CEPH_CAP_PIN)
2947 --ci->i_pin_ref;
2948 if (had & CEPH_CAP_FILE_RD)
2949 if (--ci->i_rd_ref == 0)
2950 last++;
2951 if (had & CEPH_CAP_FILE_CACHE)
2952 if (--ci->i_rdcache_ref == 0)
2953 last++;
f85122af
JL
2954 if (had & CEPH_CAP_FILE_EXCL)
2955 if (--ci->i_fx_ref == 0)
2956 last++;
a8599bd8 2957 if (had & CEPH_CAP_FILE_BUFFER) {
d3d0720d 2958 if (--ci->i_wb_ref == 0) {
a8599bd8
SW
2959 last++;
2960 put++;
2961 }
d3d0720d
HC
2962 dout("put_cap_refs %p wb %d -> %d (?)\n",
2963 inode, ci->i_wb_ref+1, ci->i_wb_ref);
a8599bd8
SW
2964 }
2965 if (had & CEPH_CAP_FILE_WR)
2966 if (--ci->i_wr_ref == 0) {
2967 last++;
86056090
YZ
2968 if (__ceph_have_pending_cap_snap(ci)) {
2969 struct ceph_cap_snap *capsnap =
2970 list_last_entry(&ci->i_cap_snaps,
2971 struct ceph_cap_snap,
2972 ci_item);
2973 capsnap->writing = 0;
70220ac8 2974 if (ceph_try_drop_cap_snap(ci, capsnap))
86056090
YZ
2975 put++;
2976 else if (__ceph_finish_cap_snap(ci, capsnap))
2977 flushsnaps = 1;
2978 wake = 1;
a8599bd8 2979 }
5dda377c
YZ
2980 if (ci->i_wrbuffer_ref_head == 0 &&
2981 ci->i_dirty_caps == 0 &&
2982 ci->i_flushing_caps == 0) {
2983 BUG_ON(!ci->i_head_snapc);
2984 ceph_put_snap_context(ci->i_head_snapc);
2985 ci->i_head_snapc = NULL;
2986 }
db40cc17 2987 /* see comment in __ceph_remove_cap() */
bd84fbcb 2988 if (!__ceph_is_any_real_caps(ci) && ci->i_snap_realm)
db40cc17 2989 drop_inode_snap_realm(ci);
a8599bd8 2990 }
be655596 2991 spin_unlock(&ci->i_ceph_lock);
a8599bd8 2992
819ccbfa
SW
2993 dout("put_cap_refs %p had %s%s%s\n", inode, ceph_cap_string(had),
2994 last ? " last" : "", put ? " put" : "");
a8599bd8 2995
a0d93e32 2996 if (last)
a8599bd8
SW
2997 ceph_check_caps(ci, 0, NULL);
2998 else if (flushsnaps)
ed9b430c 2999 ceph_flush_snaps(ci, NULL);
a8599bd8 3000 if (wake)
03066f23 3001 wake_up_all(&ci->i_cap_wq);
86056090 3002 while (put-- > 0)
a8599bd8
SW
3003 iput(inode);
3004}
3005
3006/*
3007 * Release @nr WRBUFFER refs on dirty pages for the given @snapc snap
3008 * context. Adjust per-snap dirty page accounting as appropriate.
3009 * Once all dirty data for a cap_snap is flushed, flush snapped file
3010 * metadata back to the MDS. If we dropped the last ref, call
3011 * ceph_check_caps.
3012 */
3013void ceph_put_wrbuffer_cap_refs(struct ceph_inode_info *ci, int nr,
3014 struct ceph_snap_context *snapc)
3015{
3016 struct inode *inode = &ci->vfs_inode;
a8599bd8 3017 struct ceph_cap_snap *capsnap = NULL;
70220ac8
YZ
3018 int put = 0;
3019 bool last = false;
3020 bool found = false;
3021 bool flush_snaps = false;
3022 bool complete_capsnap = false;
a8599bd8 3023
be655596 3024 spin_lock(&ci->i_ceph_lock);
a8599bd8 3025 ci->i_wrbuffer_ref -= nr;
70220ac8
YZ
3026 if (ci->i_wrbuffer_ref == 0) {
3027 last = true;
3028 put++;
3029 }
a8599bd8
SW
3030
3031 if (ci->i_head_snapc == snapc) {
3032 ci->i_wrbuffer_ref_head -= nr;
7d8cb26d 3033 if (ci->i_wrbuffer_ref_head == 0 &&
5dda377c
YZ
3034 ci->i_wr_ref == 0 &&
3035 ci->i_dirty_caps == 0 &&
3036 ci->i_flushing_caps == 0) {
7d8cb26d 3037 BUG_ON(!ci->i_head_snapc);
a8599bd8
SW
3038 ceph_put_snap_context(ci->i_head_snapc);
3039 ci->i_head_snapc = NULL;
3040 }
3041 dout("put_wrbuffer_cap_refs on %p head %d/%d -> %d/%d %s\n",
3042 inode,
3043 ci->i_wrbuffer_ref+nr, ci->i_wrbuffer_ref_head+nr,
3044 ci->i_wrbuffer_ref, ci->i_wrbuffer_ref_head,
3045 last ? " LAST" : "");
3046 } else {
3047 list_for_each_entry(capsnap, &ci->i_cap_snaps, ci_item) {
3048 if (capsnap->context == snapc) {
70220ac8 3049 found = true;
a8599bd8
SW
3050 break;
3051 }
3052 }
3053 BUG_ON(!found);
819ccbfa
SW
3054 capsnap->dirty_pages -= nr;
3055 if (capsnap->dirty_pages == 0) {
70220ac8
YZ
3056 complete_capsnap = true;
3057 if (!capsnap->writing) {
3058 if (ceph_try_drop_cap_snap(ci, capsnap)) {
3059 put++;
3060 } else {
3061 ci->i_ceph_flags |= CEPH_I_FLUSH_SNAPS;
3062 flush_snaps = true;
3063 }
3064 }
819ccbfa 3065 }
a8599bd8 3066 dout("put_wrbuffer_cap_refs on %p cap_snap %p "
86056090 3067 " snap %lld %d/%d -> %d/%d %s%s\n",
a8599bd8
SW
3068 inode, capsnap, capsnap->context->seq,
3069 ci->i_wrbuffer_ref+nr, capsnap->dirty_pages + nr,
3070 ci->i_wrbuffer_ref, capsnap->dirty_pages,
3071 last ? " (wrbuffer last)" : "",
86056090 3072 complete_capsnap ? " (complete capsnap)" : "");
a8599bd8
SW
3073 }
3074
be655596 3075 spin_unlock(&ci->i_ceph_lock);
a8599bd8
SW
3076
3077 if (last) {
bf73c62e 3078 ceph_check_caps(ci, 0, NULL);
70220ac8 3079 } else if (flush_snaps) {
ed9b430c 3080 ceph_flush_snaps(ci, NULL);
a8599bd8 3081 }
70220ac8
YZ
3082 if (complete_capsnap)
3083 wake_up_all(&ci->i_cap_wq);
3e1d0452
YZ
3084 while (put-- > 0) {
3085 /* avoid calling iput_final() in osd dispatch threads */
3086 ceph_async_iput(inode);
3087 }
a8599bd8
SW
3088}
3089
ca20c991
YZ
3090/*
3091 * Invalidate unlinked inode's aliases, so we can drop the inode ASAP.
3092 */
3093static void invalidate_aliases(struct inode *inode)
3094{
3095 struct dentry *dn, *prev = NULL;
3096
3097 dout("invalidate_aliases inode %p\n", inode);
3098 d_prune_aliases(inode);
3099 /*
3100 * For non-directory inode, d_find_alias() only returns
fc12c80a
BF
3101 * hashed dentry. After calling d_invalidate(), the
3102 * dentry becomes unhashed.
ca20c991 3103 *
a8d436f0 3104 * For directory inode, d_find_alias() can return
fc12c80a 3105 * unhashed dentry. But directory inode should have
ca20c991
YZ
3106 * one alias at most.
3107 */
3108 while ((dn = d_find_alias(inode))) {
3109 if (dn == prev) {
3110 dput(dn);
3111 break;
3112 }
a8d436f0 3113 d_invalidate(dn);
ca20c991
YZ
3114 if (prev)
3115 dput(prev);
3116 prev = dn;
3117 }
3118 if (prev)
3119 dput(prev);
3120}
3121
a1c6b835
YZ
3122struct cap_extra_info {
3123 struct ceph_string *pool_ns;
3124 /* inline data */
3125 u64 inline_version;
3126 void *inline_data;
3127 u32 inline_len;
4985d6f9
YZ
3128 /* dirstat */
3129 bool dirstat_valid;
3130 u64 nfiles;
3131 u64 nsubdirs;
176c77c9 3132 u64 change_attr;
a1c6b835
YZ
3133 /* currently issued */
3134 int issued;
ec62b894 3135 struct timespec64 btime;
a1c6b835
YZ
3136};
3137
a8599bd8
SW
3138/*
3139 * Handle a cap GRANT message from the MDS. (Note that a GRANT may
3140 * actually be a revocation if it specifies a smaller cap set.)
3141 *
be655596 3142 * caller holds s_mutex and i_ceph_lock, we drop both.
a8599bd8 3143 */
a1c6b835 3144static void handle_cap_grant(struct inode *inode,
15637c8b 3145 struct ceph_mds_session *session,
a1c6b835
YZ
3146 struct ceph_cap *cap,
3147 struct ceph_mds_caps *grant,
3148 struct ceph_buffer *xattr_buf,
3149 struct cap_extra_info *extra_info)
2cd698be 3150 __releases(ci->i_ceph_lock)
a1c6b835 3151 __releases(session->s_mdsc->snap_rwsem)
a8599bd8
SW
3152{
3153 struct ceph_inode_info *ci = ceph_inode(inode);
2f56f56a 3154 int seq = le32_to_cpu(grant->seq);
a8599bd8 3155 int newcaps = le32_to_cpu(grant->caps);
2cd698be 3156 int used, wanted, dirty;
a8599bd8
SW
3157 u64 size = le64_to_cpu(grant->size);
3158 u64 max_size = le64_to_cpu(grant->max_size);
fdac94fa
YZ
3159 unsigned char check_caps = 0;
3160 bool was_stale = cap->cap_gen < session->s_cap_gen;
ab6c2c3e
FF
3161 bool wake = false;
3162 bool writeback = false;
3163 bool queue_trunc = false;
3164 bool queue_invalidate = false;
ab6c2c3e 3165 bool deleted_inode = false;
31c542a1 3166 bool fill_inline = false;
a8599bd8 3167
2f56f56a 3168 dout("handle_cap_grant inode %p cap %p mds%d seq %d %s\n",
a1c6b835 3169 inode, cap, session->s_mds, seq, ceph_cap_string(newcaps));
a8599bd8
SW
3170 dout(" size %llu max_size %llu, i_size %llu\n", size, max_size,
3171 inode->i_size);
3172
11df2dfb 3173
a8599bd8
SW
3174 /*
3175 * If CACHE is being revoked, and we have no dirty buffers,
3176 * try to invalidate (once). (If there are dirty buffers, we
3177 * will invalidate _after_ writeback.)
3178 */
525d15e8 3179 if (S_ISREG(inode->i_mode) && /* don't invalidate readdir cache */
fdd4e158 3180 ((cap->issued & ~newcaps) & CEPH_CAP_FILE_CACHE) &&
3b454c49 3181 (newcaps & CEPH_CAP_FILE_LAZYIO) == 0 &&
9abd4db7 3182 !(ci->i_wrbuffer_ref || ci->i_wb_ref)) {
e9075743 3183 if (try_nonblocking_invalidate(inode)) {
a8599bd8
SW
3184 /* there were locked pages.. invalidate later
3185 in a separate thread. */
3186 if (ci->i_rdcache_revoking != ci->i_rdcache_gen) {
ab6c2c3e 3187 queue_invalidate = true;
a8599bd8
SW
3188 ci->i_rdcache_revoking = ci->i_rdcache_gen;
3189 }
a8599bd8 3190 }
a8599bd8
SW
3191 }
3192
d2f8bb27
YZ
3193 if (was_stale)
3194 cap->issued = cap->implemented = CEPH_CAP_PIN;
3195
3196 /*
3197 * auth mds of the inode changed. we received the cap export message,
3198 * but still haven't received the cap import message. handle_cap_export
3199 * updated the new auth MDS' cap.
3200 *
3201 * "ceph_seq_cmp(seq, cap->seq) <= 0" means we are processing a message
3202 * that was sent before the cap import message. So don't remove caps.
3203 */
3204 if (ceph_seq_cmp(seq, cap->seq) <= 0) {
3205 WARN_ON(cap != ci->i_auth_cap);
3206 WARN_ON(cap->cap_id != le64_to_cpu(grant->cap_id));
3207 seq = cap->seq;
3208 newcaps |= cap->issued;
3209 }
3210
a8599bd8 3211 /* side effects now are allowed */
685f9a5d 3212 cap->cap_gen = session->s_cap_gen;
11df2dfb 3213 cap->seq = seq;
a8599bd8
SW
3214
3215 __check_cap_issue(ci, cap, newcaps);
3216
176c77c9
JL
3217 inode_set_max_iversion_raw(inode, extra_info->change_attr);
3218
f98a128a 3219 if ((newcaps & CEPH_CAP_AUTH_SHARED) &&
a1c6b835 3220 (extra_info->issued & CEPH_CAP_AUTH_EXCL) == 0) {
a8599bd8 3221 inode->i_mode = le32_to_cpu(grant->mode);
05cb11c1
EB
3222 inode->i_uid = make_kuid(&init_user_ns, le32_to_cpu(grant->uid));
3223 inode->i_gid = make_kgid(&init_user_ns, le32_to_cpu(grant->gid));
ec62b894 3224 ci->i_btime = extra_info->btime;
a8599bd8 3225 dout("%p mode 0%o uid.gid %d.%d\n", inode, inode->i_mode,
bd2bae6a
EB
3226 from_kuid(&init_user_ns, inode->i_uid),
3227 from_kgid(&init_user_ns, inode->i_gid));
a8599bd8
SW
3228 }
3229
fa466743 3230 if ((newcaps & CEPH_CAP_LINK_SHARED) &&
a1c6b835 3231 (extra_info->issued & CEPH_CAP_LINK_EXCL) == 0) {
bfe86848 3232 set_nlink(inode, le32_to_cpu(grant->nlink));
ca20c991
YZ
3233 if (inode->i_nlink == 0 &&
3234 (newcaps & (CEPH_CAP_LINK_SHARED | CEPH_CAP_LINK_EXCL)))
ab6c2c3e 3235 deleted_inode = true;
ca20c991 3236 }
a8599bd8 3237
a1c6b835
YZ
3238 if ((extra_info->issued & CEPH_CAP_XATTR_EXCL) == 0 &&
3239 grant->xattr_len) {
a8599bd8
SW
3240 int len = le32_to_cpu(grant->xattr_len);
3241 u64 version = le64_to_cpu(grant->xattr_version);
3242
3243 if (version > ci->i_xattrs.version) {
3244 dout(" got new xattrs v%llu on %p len %d\n",
3245 version, inode, len);
3246 if (ci->i_xattrs.blob)
3247 ceph_buffer_put(ci->i_xattrs.blob);
3248 ci->i_xattrs.blob = ceph_buffer_get(xattr_buf);
3249 ci->i_xattrs.version = version;
7221fe4c 3250 ceph_forget_all_cached_acls(inode);
ac6713cc 3251 ceph_security_invalidate_secctx(inode);
a8599bd8
SW
3252 }
3253 }
3254
f98a128a 3255 if (newcaps & CEPH_CAP_ANY_RD) {
9bbeab41 3256 struct timespec64 mtime, atime, ctime;
f98a128a 3257 /* ctime/mtime/atime? */
9bbeab41
AB
3258 ceph_decode_timespec64(&mtime, &grant->mtime);
3259 ceph_decode_timespec64(&atime, &grant->atime);
3260 ceph_decode_timespec64(&ctime, &grant->ctime);
a1c6b835 3261 ceph_fill_file_time(inode, extra_info->issued,
f98a128a
YZ
3262 le32_to_cpu(grant->time_warp_seq),
3263 &ctime, &mtime, &atime);
3264 }
3265
4985d6f9
YZ
3266 if ((newcaps & CEPH_CAP_FILE_SHARED) && extra_info->dirstat_valid) {
3267 ci->i_files = extra_info->nfiles;
3268 ci->i_subdirs = extra_info->nsubdirs;
3269 }
3270
f98a128a
YZ
3271 if (newcaps & (CEPH_CAP_ANY_FILE_RD | CEPH_CAP_ANY_FILE_WR)) {
3272 /* file layout may have changed */
7627151e 3273 s64 old_pool = ci->i_layout.pool_id;
779fe0fb
YZ
3274 struct ceph_string *old_ns;
3275
7627151e 3276 ceph_file_layout_from_legacy(&ci->i_layout, &grant->layout);
779fe0fb
YZ
3277 old_ns = rcu_dereference_protected(ci->i_layout.pool_ns,
3278 lockdep_is_held(&ci->i_ceph_lock));
a1c6b835 3279 rcu_assign_pointer(ci->i_layout.pool_ns, extra_info->pool_ns);
779fe0fb 3280
a1c6b835
YZ
3281 if (ci->i_layout.pool_id != old_pool ||
3282 extra_info->pool_ns != old_ns)
7627151e 3283 ci->i_ceph_flags &= ~CEPH_I_POOL_PERM;
5ea5c5e0 3284
a1c6b835 3285 extra_info->pool_ns = old_ns;
779fe0fb 3286
f98a128a 3287 /* size/truncate_seq? */
a1c6b835 3288 queue_trunc = ceph_fill_file_size(inode, extra_info->issued,
f98a128a
YZ
3289 le32_to_cpu(grant->truncate_seq),
3290 le64_to_cpu(grant->truncate_size),
3291 size);
84eea8c7
YZ
3292 }
3293
3294 if (ci->i_auth_cap == cap && (newcaps & CEPH_CAP_ANY_FILE_WR)) {
3295 if (max_size != ci->i_max_size) {
f98a128a
YZ
3296 dout("max_size %lld -> %llu\n",
3297 ci->i_max_size, max_size);
3298 ci->i_max_size = max_size;
3299 if (max_size >= ci->i_wanted_max_size) {
3300 ci->i_wanted_max_size = 0; /* reset */
3301 ci->i_requested_max_size = 0;
3302 }
ab6c2c3e 3303 wake = true;
84eea8c7
YZ
3304 } else if (ci->i_wanted_max_size > ci->i_max_size &&
3305 ci->i_wanted_max_size > ci->i_requested_max_size) {
3306 /* CEPH_CAP_OP_IMPORT */
3307 wake = true;
a8599bd8 3308 }
a8599bd8
SW
3309 }
3310
3311 /* check cap bits */
3312 wanted = __ceph_caps_wanted(ci);
3313 used = __ceph_caps_used(ci);
3314 dirty = __ceph_caps_dirty(ci);
3315 dout(" my wanted = %s, used = %s, dirty %s\n",
3316 ceph_cap_string(wanted),
3317 ceph_cap_string(used),
3318 ceph_cap_string(dirty));
fdac94fa
YZ
3319
3320 if ((was_stale || le32_to_cpu(grant->op) == CEPH_CAP_OP_IMPORT) &&
3321 (wanted & ~(cap->mds_wanted | newcaps))) {
3322 /*
3323 * If mds is importing cap, prior cap messages that update
3324 * 'wanted' may get dropped by mds (migrate seq mismatch).
3325 *
3326 * We don't send cap message to update 'wanted' if what we
3327 * want are already issued. If mds revokes caps, cap message
3328 * that releases caps also tells mds what we want. But if
3329 * caps got revoked by mds forcedly (session stale). We may
3330 * haven't told mds what we want.
3331 */
3332 check_caps = 1;
a8599bd8
SW
3333 }
3334
a8599bd8
SW
3335 /* revocation, grant, or no-op? */
3336 if (cap->issued & ~newcaps) {
3b454c49
SW
3337 int revoking = cap->issued & ~newcaps;
3338
3339 dout("revocation: %s -> %s (revoking %s)\n",
3340 ceph_cap_string(cap->issued),
3341 ceph_cap_string(newcaps),
3342 ceph_cap_string(revoking));
525d15e8
YZ
3343 if (S_ISREG(inode->i_mode) &&
3344 (revoking & used & CEPH_CAP_FILE_BUFFER))
ab6c2c3e 3345 writeback = true; /* initiate writeback; will delay ack */
525d15e8
YZ
3346 else if (queue_invalidate &&
3347 revoking == CEPH_CAP_FILE_CACHE &&
3348 (newcaps & CEPH_CAP_FILE_LAZYIO) == 0)
3b454c49
SW
3349 ; /* do nothing yet, invalidation will be queued */
3350 else if (cap == ci->i_auth_cap)
3351 check_caps = 1; /* check auth cap only */
3352 else
3353 check_caps = 2; /* check all caps */
a8599bd8 3354 cap->issued = newcaps;
978097c9 3355 cap->implemented |= newcaps;
a8599bd8
SW
3356 } else if (cap->issued == newcaps) {
3357 dout("caps unchanged: %s -> %s\n",
3358 ceph_cap_string(cap->issued), ceph_cap_string(newcaps));
3359 } else {
3360 dout("grant: %s -> %s\n", ceph_cap_string(cap->issued),
3361 ceph_cap_string(newcaps));
6ee6b953
YZ
3362 /* non-auth MDS is revoking the newly grant caps ? */
3363 if (cap == ci->i_auth_cap &&
3364 __ceph_caps_revoking_other(ci, cap, newcaps))
3365 check_caps = 2;
3366
a8599bd8
SW
3367 cap->issued = newcaps;
3368 cap->implemented |= newcaps; /* add bits only, to
3369 * avoid stepping on a
3370 * pending revocation */
ab6c2c3e 3371 wake = true;
a8599bd8 3372 }
978097c9 3373 BUG_ON(cap->issued & ~cap->implemented);
a8599bd8 3374
a1c6b835
YZ
3375 if (extra_info->inline_version > 0 &&
3376 extra_info->inline_version >= ci->i_inline_version) {
3377 ci->i_inline_version = extra_info->inline_version;
31c542a1
YZ
3378 if (ci->i_inline_version != CEPH_INLINE_NONE &&
3379 (newcaps & (CEPH_CAP_FILE_CACHE|CEPH_CAP_FILE_LAZYIO)))
3380 fill_inline = true;
3381 }
3382
2cd698be 3383 if (le32_to_cpu(grant->op) == CEPH_CAP_OP_IMPORT) {
a1c6b835 3384 if (newcaps & ~extra_info->issued)
ab6c2c3e 3385 wake = true;
e8a4d267
JL
3386 ceph_kick_flushing_inode_caps(session, ci);
3387 spin_unlock(&ci->i_ceph_lock);
a1c6b835 3388 up_read(&session->s_mdsc->snap_rwsem);
0e294387
YZ
3389 } else {
3390 spin_unlock(&ci->i_ceph_lock);
2cd698be
YZ
3391 }
3392
31c542a1 3393 if (fill_inline)
a1c6b835
YZ
3394 ceph_fill_inline_data(inode, NULL, extra_info->inline_data,
3395 extra_info->inline_len);
31c542a1 3396
14649758 3397 if (queue_trunc)
c6bcda6f 3398 ceph_queue_vmtruncate(inode);
c6bcda6f 3399
3c6f6b79 3400 if (writeback)
a8599bd8
SW
3401 /*
3402 * queue inode for writeback: we can't actually call
3403 * filemap_write_and_wait, etc. from message handler
3404 * context.
3405 */
3c6f6b79
SW
3406 ceph_queue_writeback(inode);
3407 if (queue_invalidate)
3408 ceph_queue_invalidate(inode);
ca20c991
YZ
3409 if (deleted_inode)
3410 invalidate_aliases(inode);
a8599bd8 3411 if (wake)
03066f23 3412 wake_up_all(&ci->i_cap_wq);
15637c8b
SW
3413
3414 if (check_caps == 1)
a0d93e32 3415 ceph_check_caps(ci, CHECK_CAPS_AUTHONLY | CHECK_CAPS_NOINVAL,
15637c8b
SW
3416 session);
3417 else if (check_caps == 2)
a0d93e32 3418 ceph_check_caps(ci, CHECK_CAPS_NOINVAL, session);
15637c8b
SW
3419 else
3420 mutex_unlock(&session->s_mutex);
a8599bd8
SW
3421}
3422
3423/*
3424 * Handle FLUSH_ACK from MDS, indicating that metadata we sent to the
3425 * MDS has been safely committed.
3426 */
6df058c0 3427static void handle_cap_flush_ack(struct inode *inode, u64 flush_tid,
a8599bd8
SW
3428 struct ceph_mds_caps *m,
3429 struct ceph_mds_session *session,
3430 struct ceph_cap *cap)
be655596 3431 __releases(ci->i_ceph_lock)
a8599bd8
SW
3432{
3433 struct ceph_inode_info *ci = ceph_inode(inode);
3d14c5d2 3434 struct ceph_mds_client *mdsc = ceph_sb_to_client(inode->i_sb)->mdsc;
e4500b5e 3435 struct ceph_cap_flush *cf, *tmp_cf;
553adfd9 3436 LIST_HEAD(to_remove);
a8599bd8
SW
3437 unsigned seq = le32_to_cpu(m->seq);
3438 int dirty = le32_to_cpu(m->dirty);
3439 int cleaned = 0;
c8799fc4 3440 bool drop = false;
7271efa7
TM
3441 bool wake_ci = false;
3442 bool wake_mdsc = false;
a8599bd8 3443
e4500b5e 3444 list_for_each_entry_safe(cf, tmp_cf, &ci->i_cap_flush_list, i_list) {
553adfd9
YZ
3445 if (cf->tid == flush_tid)
3446 cleaned = cf->caps;
0e294387
YZ
3447 if (cf->caps == 0) /* capsnap */
3448 continue;
553adfd9 3449 if (cf->tid <= flush_tid) {
c8799fc4
YZ
3450 if (__finish_cap_flush(NULL, ci, cf))
3451 wake_ci = true;
e4500b5e 3452 list_add_tail(&cf->i_list, &to_remove);
553adfd9
YZ
3453 } else {
3454 cleaned &= ~cf->caps;
3455 if (!cleaned)
3456 break;
3457 }
3458 }
a8599bd8
SW
3459
3460 dout("handle_cap_flush_ack inode %p mds%d seq %d on %s cleaned %s,"
3461 " flushing %s -> %s\n",
3462 inode, session->s_mds, seq, ceph_cap_string(dirty),
3463 ceph_cap_string(cleaned), ceph_cap_string(ci->i_flushing_caps),
3464 ceph_cap_string(ci->i_flushing_caps & ~cleaned));
3465
8310b089 3466 if (list_empty(&to_remove) && !cleaned)
a8599bd8
SW
3467 goto out;
3468
a8599bd8 3469 ci->i_flushing_caps &= ~cleaned;
a8599bd8
SW
3470
3471 spin_lock(&mdsc->cap_dirty_lock);
8310b089 3472
c8799fc4
YZ
3473 list_for_each_entry(cf, &to_remove, i_list) {
3474 if (__finish_cap_flush(mdsc, NULL, cf))
3475 wake_mdsc = true;
8310b089
YZ
3476 }
3477
a8599bd8 3478 if (ci->i_flushing_caps == 0) {
0e294387
YZ
3479 if (list_empty(&ci->i_cap_flush_list)) {
3480 list_del_init(&ci->i_flushing_item);
3481 if (!list_empty(&session->s_cap_flushing)) {
3482 dout(" mds%d still flushing cap on %p\n",
3483 session->s_mds,
3484 &list_first_entry(&session->s_cap_flushing,
3485 struct ceph_inode_info,
3486 i_flushing_item)->vfs_inode);
3487 }
3488 }
a8599bd8 3489 mdsc->num_cap_flushing--;
a8599bd8 3490 dout(" inode %p now !flushing\n", inode);
afcdaea3
SW
3491
3492 if (ci->i_dirty_caps == 0) {
3493 dout(" inode %p now clean\n", inode);
3494 BUG_ON(!list_empty(&ci->i_dirty_item));
c8799fc4 3495 drop = true;
5dda377c
YZ
3496 if (ci->i_wr_ref == 0 &&
3497 ci->i_wrbuffer_ref_head == 0) {
7d8cb26d
SW
3498 BUG_ON(!ci->i_head_snapc);
3499 ceph_put_snap_context(ci->i_head_snapc);
3500 ci->i_head_snapc = NULL;
3501 }
76e3b390
SW
3502 } else {
3503 BUG_ON(list_empty(&ci->i_dirty_item));
afcdaea3 3504 }
a8599bd8
SW
3505 }
3506 spin_unlock(&mdsc->cap_dirty_lock);
a8599bd8
SW
3507
3508out:
be655596 3509 spin_unlock(&ci->i_ceph_lock);
553adfd9
YZ
3510
3511 while (!list_empty(&to_remove)) {
3512 cf = list_first_entry(&to_remove,
e4500b5e
YZ
3513 struct ceph_cap_flush, i_list);
3514 list_del(&cf->i_list);
f66fd9f0 3515 ceph_free_cap_flush(cf);
553adfd9 3516 }
c8799fc4
YZ
3517
3518 if (wake_ci)
3519 wake_up_all(&ci->i_cap_wq);
3520 if (wake_mdsc)
3521 wake_up_all(&mdsc->cap_flushing_wq);
afcdaea3 3522 if (drop)
a8599bd8
SW
3523 iput(inode);
3524}
3525
3526/*
3527 * Handle FLUSHSNAP_ACK. MDS has flushed snap data to disk and we can
3528 * throw away our cap_snap.
3529 *
3530 * Caller hold s_mutex.
3531 */
6df058c0 3532static void handle_cap_flushsnap_ack(struct inode *inode, u64 flush_tid,
a8599bd8
SW
3533 struct ceph_mds_caps *m,
3534 struct ceph_mds_session *session)
3535{
3536 struct ceph_inode_info *ci = ceph_inode(inode);
affbc19a 3537 struct ceph_mds_client *mdsc = ceph_sb_to_client(inode->i_sb)->mdsc;
a8599bd8 3538 u64 follows = le64_to_cpu(m->snap_follows);
a8599bd8 3539 struct ceph_cap_snap *capsnap;
c8799fc4
YZ
3540 bool flushed = false;
3541 bool wake_ci = false;
3542 bool wake_mdsc = false;
a8599bd8
SW
3543
3544 dout("handle_cap_flushsnap_ack inode %p ci %p mds%d follows %lld\n",
3545 inode, ci, session->s_mds, follows);
3546
be655596 3547 spin_lock(&ci->i_ceph_lock);
a8599bd8
SW
3548 list_for_each_entry(capsnap, &ci->i_cap_snaps, ci_item) {
3549 if (capsnap->follows == follows) {
0e294387 3550 if (capsnap->cap_flush.tid != flush_tid) {
a8599bd8
SW
3551 dout(" cap_snap %p follows %lld tid %lld !="
3552 " %lld\n", capsnap, follows,
0e294387 3553 flush_tid, capsnap->cap_flush.tid);
a8599bd8
SW
3554 break;
3555 }
c8799fc4 3556 flushed = true;
a8599bd8
SW
3557 break;
3558 } else {
3559 dout(" skipping cap_snap %p follows %lld\n",
3560 capsnap, capsnap->follows);
3561 }
3562 }
0e294387 3563 if (flushed) {
0e294387
YZ
3564 WARN_ON(capsnap->dirty_pages || capsnap->writing);
3565 dout(" removing %p cap_snap %p follows %lld\n",
3566 inode, capsnap, follows);
3567 list_del(&capsnap->ci_item);
c8799fc4
YZ
3568 if (__finish_cap_flush(NULL, ci, &capsnap->cap_flush))
3569 wake_ci = true;
0e294387
YZ
3570
3571 spin_lock(&mdsc->cap_dirty_lock);
3572
3573 if (list_empty(&ci->i_cap_flush_list))
3574 list_del_init(&ci->i_flushing_item);
3575
c8799fc4
YZ
3576 if (__finish_cap_flush(mdsc, NULL, &capsnap->cap_flush))
3577 wake_mdsc = true;
0e294387
YZ
3578
3579 spin_unlock(&mdsc->cap_dirty_lock);
0e294387 3580 }
be655596 3581 spin_unlock(&ci->i_ceph_lock);
0e294387
YZ
3582 if (flushed) {
3583 ceph_put_snap_context(capsnap->context);
3584 ceph_put_cap_snap(capsnap);
c8799fc4
YZ
3585 if (wake_ci)
3586 wake_up_all(&ci->i_cap_wq);
3587 if (wake_mdsc)
3588 wake_up_all(&mdsc->cap_flushing_wq);
a8599bd8 3589 iput(inode);
0e294387 3590 }
a8599bd8
SW
3591}
3592
3593/*
3594 * Handle TRUNC from MDS, indicating file truncation.
3595 *
3596 * caller hold s_mutex.
3597 */
3598static void handle_cap_trunc(struct inode *inode,
3599 struct ceph_mds_caps *trunc,
3600 struct ceph_mds_session *session)
be655596 3601 __releases(ci->i_ceph_lock)
a8599bd8
SW
3602{
3603 struct ceph_inode_info *ci = ceph_inode(inode);
3604 int mds = session->s_mds;
3605 int seq = le32_to_cpu(trunc->seq);
3606 u32 truncate_seq = le32_to_cpu(trunc->truncate_seq);
3607 u64 truncate_size = le64_to_cpu(trunc->truncate_size);
3608 u64 size = le64_to_cpu(trunc->size);
3609 int implemented = 0;
3610 int dirty = __ceph_caps_dirty(ci);
3611 int issued = __ceph_caps_issued(ceph_inode(inode), &implemented);
3612 int queue_trunc = 0;
3613
3614 issued |= implemented | dirty;
3615
3616 dout("handle_cap_trunc inode %p mds%d seq %d to %lld seq %d\n",
3617 inode, mds, seq, truncate_size, truncate_seq);
3618 queue_trunc = ceph_fill_file_size(inode, issued,
3619 truncate_seq, truncate_size, size);
be655596 3620 spin_unlock(&ci->i_ceph_lock);
a8599bd8 3621
14649758 3622 if (queue_trunc)
3c6f6b79 3623 ceph_queue_vmtruncate(inode);
a8599bd8
SW
3624}
3625
3626/*
3627 * Handle EXPORT from MDS. Cap is being migrated _from_ this mds to a
3628 * different one. If we are the most recent migration we've seen (as
3629 * indicated by mseq), make note of the migrating cap bits for the
3630 * duration (until we see the corresponding IMPORT).
3631 *
3632 * caller holds s_mutex
3633 */
3634static void handle_cap_export(struct inode *inode, struct ceph_mds_caps *ex,
11df2dfb
YZ
3635 struct ceph_mds_cap_peer *ph,
3636 struct ceph_mds_session *session)
a8599bd8 3637{
db354052 3638 struct ceph_mds_client *mdsc = ceph_inode_to_client(inode)->mdsc;
11df2dfb 3639 struct ceph_mds_session *tsession = NULL;
d9df2783 3640 struct ceph_cap *cap, *tcap, *new_cap = NULL;
a8599bd8 3641 struct ceph_inode_info *ci = ceph_inode(inode);
11df2dfb 3642 u64 t_cap_id;
a8599bd8 3643 unsigned mseq = le32_to_cpu(ex->migrate_seq);
11df2dfb
YZ
3644 unsigned t_seq, t_mseq;
3645 int target, issued;
3646 int mds = session->s_mds;
a8599bd8 3647
11df2dfb
YZ
3648 if (ph) {
3649 t_cap_id = le64_to_cpu(ph->cap_id);
3650 t_seq = le32_to_cpu(ph->seq);
3651 t_mseq = le32_to_cpu(ph->mseq);
3652 target = le32_to_cpu(ph->mds);
3653 } else {
3654 t_cap_id = t_seq = t_mseq = 0;
3655 target = -1;
3656 }
a8599bd8 3657
11df2dfb
YZ
3658 dout("handle_cap_export inode %p ci %p mds%d mseq %d target %d\n",
3659 inode, ci, mds, mseq, target);
3660retry:
be655596 3661 spin_lock(&ci->i_ceph_lock);
11df2dfb 3662 cap = __get_cap_for_mds(ci, mds);
ca665e02 3663 if (!cap || cap->cap_id != le64_to_cpu(ex->cap_id))
11df2dfb 3664 goto out_unlock;
a8599bd8 3665
11df2dfb 3666 if (target < 0) {
d2f8bb27 3667 __ceph_remove_cap(cap, false);
11df2dfb 3668 goto out_unlock;
a8599bd8
SW
3669 }
3670
11df2dfb
YZ
3671 /*
3672 * now we know we haven't received the cap import message yet
3673 * because the exported cap still exist.
3674 */
db354052 3675
11df2dfb 3676 issued = cap->issued;
d84b37f9
YZ
3677 if (issued != cap->implemented)
3678 pr_err_ratelimited("handle_cap_export: issued != implemented: "
3679 "ino (%llx.%llx) mds%d seq %d mseq %d "
3680 "issued %s implemented %s\n",
3681 ceph_vinop(inode), mds, cap->seq, cap->mseq,
3682 ceph_cap_string(issued),
3683 ceph_cap_string(cap->implemented));
3684
11df2dfb
YZ
3685
3686 tcap = __get_cap_for_mds(ci, target);
3687 if (tcap) {
3688 /* already have caps from the target */
fa0aa3b8 3689 if (tcap->cap_id == t_cap_id &&
11df2dfb
YZ
3690 ceph_seq_cmp(tcap->seq, t_seq) < 0) {
3691 dout(" updating import cap %p mds%d\n", tcap, target);
3692 tcap->cap_id = t_cap_id;
3693 tcap->seq = t_seq - 1;
3694 tcap->issue_seq = t_seq - 1;
11df2dfb
YZ
3695 tcap->issued |= issued;
3696 tcap->implemented |= issued;
3697 if (cap == ci->i_auth_cap)
3698 ci->i_auth_cap = tcap;
00f06cba 3699
0e294387
YZ
3700 if (!list_empty(&ci->i_cap_flush_list) &&
3701 ci->i_auth_cap == tcap) {
11df2dfb
YZ
3702 spin_lock(&mdsc->cap_dirty_lock);
3703 list_move_tail(&ci->i_flushing_item,
3704 &tcap->session->s_cap_flushing);
3705 spin_unlock(&mdsc->cap_dirty_lock);
db354052 3706 }
a8599bd8 3707 }
a096b09a 3708 __ceph_remove_cap(cap, false);
11df2dfb 3709 goto out_unlock;
d9df2783 3710 } else if (tsession) {
11df2dfb 3711 /* add placeholder for the export tagert */
d9df2783 3712 int flag = (cap == ci->i_auth_cap) ? CEPH_CAP_FLAG_AUTH : 0;
00f06cba 3713 tcap = new_cap;
135e671e 3714 ceph_add_cap(inode, tsession, t_cap_id, issued, 0,
d9df2783
YZ
3715 t_seq - 1, t_mseq, (u64)-1, flag, &new_cap);
3716
00f06cba
YZ
3717 if (!list_empty(&ci->i_cap_flush_list) &&
3718 ci->i_auth_cap == tcap) {
3719 spin_lock(&mdsc->cap_dirty_lock);
3720 list_move_tail(&ci->i_flushing_item,
3721 &tcap->session->s_cap_flushing);
3722 spin_unlock(&mdsc->cap_dirty_lock);
3723 }
3724
d9df2783
YZ
3725 __ceph_remove_cap(cap, false);
3726 goto out_unlock;
a8599bd8
SW
3727 }
3728
be655596 3729 spin_unlock(&ci->i_ceph_lock);
11df2dfb
YZ
3730 mutex_unlock(&session->s_mutex);
3731
3732 /* open target session */
3733 tsession = ceph_mdsc_open_export_target_session(mdsc, target);
3734 if (!IS_ERR(tsession)) {
3735 if (mds > target) {
3736 mutex_lock(&session->s_mutex);
3737 mutex_lock_nested(&tsession->s_mutex,
3738 SINGLE_DEPTH_NESTING);
3739 } else {
3740 mutex_lock(&tsession->s_mutex);
3741 mutex_lock_nested(&session->s_mutex,
3742 SINGLE_DEPTH_NESTING);
3743 }
d9df2783 3744 new_cap = ceph_get_cap(mdsc, NULL);
11df2dfb
YZ
3745 } else {
3746 WARN_ON(1);
3747 tsession = NULL;
3748 target = -1;
4d8e28ff 3749 mutex_lock(&session->s_mutex);
11df2dfb
YZ
3750 }
3751 goto retry;
3752
3753out_unlock:
3754 spin_unlock(&ci->i_ceph_lock);
3755 mutex_unlock(&session->s_mutex);
3756 if (tsession) {
3757 mutex_unlock(&tsession->s_mutex);
3758 ceph_put_mds_session(tsession);
3759 }
d9df2783
YZ
3760 if (new_cap)
3761 ceph_put_cap(mdsc, new_cap);
a8599bd8
SW
3762}
3763
3764/*
2cd698be 3765 * Handle cap IMPORT.
a8599bd8 3766 *
2cd698be 3767 * caller holds s_mutex. acquires i_ceph_lock
a8599bd8
SW
3768 */
3769static void handle_cap_import(struct ceph_mds_client *mdsc,
3770 struct inode *inode, struct ceph_mds_caps *im,
4ee6a914 3771 struct ceph_mds_cap_peer *ph,
a8599bd8 3772 struct ceph_mds_session *session,
2cd698be
YZ
3773 struct ceph_cap **target_cap, int *old_issued)
3774 __acquires(ci->i_ceph_lock)
a8599bd8
SW
3775{
3776 struct ceph_inode_info *ci = ceph_inode(inode);
2cd698be 3777 struct ceph_cap *cap, *ocap, *new_cap = NULL;
a8599bd8 3778 int mds = session->s_mds;
2cd698be
YZ
3779 int issued;
3780 unsigned caps = le32_to_cpu(im->caps);
a8599bd8
SW
3781 unsigned wanted = le32_to_cpu(im->wanted);
3782 unsigned seq = le32_to_cpu(im->seq);
3783 unsigned mseq = le32_to_cpu(im->migrate_seq);
3784 u64 realmino = le64_to_cpu(im->realm);
3785 u64 cap_id = le64_to_cpu(im->cap_id);
4ee6a914
YZ
3786 u64 p_cap_id;
3787 int peer;
a8599bd8 3788
4ee6a914
YZ
3789 if (ph) {
3790 p_cap_id = le64_to_cpu(ph->cap_id);
3791 peer = le32_to_cpu(ph->mds);
3792 } else {
3793 p_cap_id = 0;
3794 peer = -1;
3795 }
db354052 3796
4ee6a914
YZ
3797 dout("handle_cap_import inode %p ci %p mds%d mseq %d peer %d\n",
3798 inode, ci, mds, mseq, peer);
3799
d9df2783 3800retry:
4ee6a914 3801 spin_lock(&ci->i_ceph_lock);
d9df2783
YZ
3802 cap = __get_cap_for_mds(ci, mds);
3803 if (!cap) {
3804 if (!new_cap) {
3805 spin_unlock(&ci->i_ceph_lock);
3806 new_cap = ceph_get_cap(mdsc, NULL);
3807 goto retry;
3808 }
2cd698be
YZ
3809 cap = new_cap;
3810 } else {
3811 if (new_cap) {
3812 ceph_put_cap(mdsc, new_cap);
3813 new_cap = NULL;
3814 }
d9df2783
YZ
3815 }
3816
2cd698be
YZ
3817 __ceph_caps_issued(ci, &issued);
3818 issued |= __ceph_caps_dirty(ci);
3819
135e671e 3820 ceph_add_cap(inode, session, cap_id, caps, wanted, seq, mseq,
d9df2783
YZ
3821 realmino, CEPH_CAP_FLAG_AUTH, &new_cap);
3822
2cd698be
YZ
3823 ocap = peer >= 0 ? __get_cap_for_mds(ci, peer) : NULL;
3824 if (ocap && ocap->cap_id == p_cap_id) {
4ee6a914 3825 dout(" remove export cap %p mds%d flags %d\n",
2cd698be 3826 ocap, peer, ph->flags);
4ee6a914 3827 if ((ph->flags & CEPH_CAP_FLAG_AUTH) &&
2cd698be
YZ
3828 (ocap->seq != le32_to_cpu(ph->seq) ||
3829 ocap->mseq != le32_to_cpu(ph->mseq))) {
d84b37f9
YZ
3830 pr_err_ratelimited("handle_cap_import: "
3831 "mismatched seq/mseq: ino (%llx.%llx) "
3832 "mds%d seq %d mseq %d importer mds%d "
3833 "has peer seq %d mseq %d\n",
3834 ceph_vinop(inode), peer, ocap->seq,
3835 ocap->mseq, mds, le32_to_cpu(ph->seq),
3836 le32_to_cpu(ph->mseq));
db354052 3837 }
2cd698be 3838 __ceph_remove_cap(ocap, (ph->flags & CEPH_CAP_FLAG_RELEASE));
a8599bd8
SW
3839 }
3840
4ee6a914 3841 /* make sure we re-request max_size, if necessary */
4ee6a914 3842 ci->i_requested_max_size = 0;
d9df2783 3843
2cd698be
YZ
3844 *old_issued = issued;
3845 *target_cap = cap;
a8599bd8
SW
3846}
3847
3848/*
3849 * Handle a caps message from the MDS.
3850 *
3851 * Identify the appropriate session, inode, and call the right handler
3852 * based on the cap op.
3853 */
3854void ceph_handle_caps(struct ceph_mds_session *session,
3855 struct ceph_msg *msg)
3856{
3857 struct ceph_mds_client *mdsc = session->s_mdsc;
a8599bd8 3858 struct inode *inode;
be655596 3859 struct ceph_inode_info *ci;
a8599bd8
SW
3860 struct ceph_cap *cap;
3861 struct ceph_mds_caps *h;
4ee6a914 3862 struct ceph_mds_cap_peer *peer = NULL;
779fe0fb 3863 struct ceph_snap_realm *realm = NULL;
a1c6b835 3864 int op;
4985d6f9 3865 int msg_version = le16_to_cpu(msg->hdr.version);
3d7ded4d 3866 u32 seq, mseq;
a8599bd8 3867 struct ceph_vino vino;
70edb55b 3868 void *snaptrace;
ce1fbc8d 3869 size_t snaptrace_len;
fb01d1f8 3870 void *p, *end;
a1c6b835 3871 struct cap_extra_info extra_info = {};
a8599bd8 3872
a1c6b835 3873 dout("handle_caps from mds%d\n", session->s_mds);
a8599bd8
SW
3874
3875 /* decode */
4ee6a914 3876 end = msg->front.iov_base + msg->front.iov_len;
a8599bd8
SW
3877 if (msg->front.iov_len < sizeof(*h))
3878 goto bad;
3879 h = msg->front.iov_base;
3880 op = le32_to_cpu(h->op);
3881 vino.ino = le64_to_cpu(h->ino);
3882 vino.snap = CEPH_NOSNAP;
a8599bd8 3883 seq = le32_to_cpu(h->seq);
3d7ded4d 3884 mseq = le32_to_cpu(h->migrate_seq);
a8599bd8 3885
ce1fbc8d
SW
3886 snaptrace = h + 1;
3887 snaptrace_len = le32_to_cpu(h->snap_trace_len);
fb01d1f8 3888 p = snaptrace + snaptrace_len;
ce1fbc8d 3889
4985d6f9 3890 if (msg_version >= 2) {
fb01d1f8 3891 u32 flock_len;
ce1fbc8d 3892 ceph_decode_32_safe(&p, end, flock_len, bad);
4ee6a914
YZ
3893 if (p + flock_len > end)
3894 goto bad;
fb01d1f8 3895 p += flock_len;
ce1fbc8d
SW
3896 }
3897
4985d6f9 3898 if (msg_version >= 3) {
4ee6a914 3899 if (op == CEPH_CAP_OP_IMPORT) {
4ee6a914
YZ
3900 if (p + sizeof(*peer) > end)
3901 goto bad;
3902 peer = p;
fb01d1f8 3903 p += sizeof(*peer);
11df2dfb
YZ
3904 } else if (op == CEPH_CAP_OP_EXPORT) {
3905 /* recorded in unused fields */
3906 peer = (void *)&h->size;
4ee6a914
YZ
3907 }
3908 }
3909
4985d6f9 3910 if (msg_version >= 4) {
a1c6b835
YZ
3911 ceph_decode_64_safe(&p, end, extra_info.inline_version, bad);
3912 ceph_decode_32_safe(&p, end, extra_info.inline_len, bad);
3913 if (p + extra_info.inline_len > end)
fb01d1f8 3914 goto bad;
a1c6b835
YZ
3915 extra_info.inline_data = p;
3916 p += extra_info.inline_len;
fb01d1f8
YZ
3917 }
3918
4985d6f9 3919 if (msg_version >= 5) {
92475f05
JL
3920 struct ceph_osd_client *osdc = &mdsc->fsc->client->osdc;
3921 u32 epoch_barrier;
3922
3923 ceph_decode_32_safe(&p, end, epoch_barrier, bad);
3924 ceph_osdc_update_epoch_barrier(osdc, epoch_barrier);
3925 }
3926
4985d6f9 3927 if (msg_version >= 8) {
5ea5c5e0
YZ
3928 u64 flush_tid;
3929 u32 caller_uid, caller_gid;
779fe0fb 3930 u32 pool_ns_len;
92475f05 3931
5ea5c5e0
YZ
3932 /* version >= 6 */
3933 ceph_decode_64_safe(&p, end, flush_tid, bad);
3934 /* version >= 7 */
3935 ceph_decode_32_safe(&p, end, caller_uid, bad);
3936 ceph_decode_32_safe(&p, end, caller_gid, bad);
3937 /* version >= 8 */
3938 ceph_decode_32_safe(&p, end, pool_ns_len, bad);
779fe0fb
YZ
3939 if (pool_ns_len > 0) {
3940 ceph_decode_need(&p, end, pool_ns_len, bad);
a1c6b835
YZ
3941 extra_info.pool_ns =
3942 ceph_find_or_create_string(p, pool_ns_len);
779fe0fb
YZ
3943 p += pool_ns_len;
3944 }
5ea5c5e0
YZ
3945 }
3946
ec62b894 3947 if (msg_version >= 9) {
4985d6f9 3948 struct ceph_timespec *btime;
4985d6f9 3949
4985d6f9
YZ
3950 if (p + sizeof(*btime) > end)
3951 goto bad;
3952 btime = p;
ec62b894 3953 ceph_decode_timespec64(&extra_info.btime, btime);
4985d6f9 3954 p += sizeof(*btime);
176c77c9 3955 ceph_decode_64_safe(&p, end, extra_info.change_attr, bad);
ec62b894
JL
3956 }
3957
3958 if (msg_version >= 11) {
3959 u32 flags;
4985d6f9
YZ
3960 /* version >= 10 */
3961 ceph_decode_32_safe(&p, end, flags, bad);
3962 /* version >= 11 */
3963 extra_info.dirstat_valid = true;
3964 ceph_decode_64_safe(&p, end, extra_info.nfiles, bad);
3965 ceph_decode_64_safe(&p, end, extra_info.nsubdirs, bad);
3966 }
3967
6cd3bcad 3968 /* lookup ino */
a1c6b835 3969 inode = ceph_find_inode(mdsc->fsc->sb, vino);
6cd3bcad
YZ
3970 ci = ceph_inode(inode);
3971 dout(" op %s ino %llx.%llx inode %p\n", ceph_cap_op_name(op), vino.ino,
3972 vino.snap, inode);
3973
a8599bd8
SW
3974 mutex_lock(&session->s_mutex);
3975 session->s_seq++;
3976 dout(" mds%d seq %lld cap seq %u\n", session->s_mds, session->s_seq,
3977 (unsigned)seq);
3978
a8599bd8
SW
3979 if (!inode) {
3980 dout(" i don't have ino %llx\n", vino.ino);
3d7ded4d 3981
a096b09a 3982 if (op == CEPH_CAP_OP_IMPORT) {
745a8e3b
YZ
3983 cap = ceph_get_cap(mdsc, NULL);
3984 cap->cap_ino = vino.ino;
3985 cap->queue_release = 1;
779fe0fb 3986 cap->cap_id = le64_to_cpu(h->cap_id);
745a8e3b
YZ
3987 cap->mseq = mseq;
3988 cap->seq = seq;
dc24de82 3989 cap->issue_seq = seq;
a096b09a 3990 spin_lock(&session->s_cap_lock);
e3ec8d68 3991 __ceph_queue_cap_release(session, cap);
a096b09a
YZ
3992 spin_unlock(&session->s_cap_lock);
3993 }
e3ec8d68 3994 goto done;
a8599bd8
SW
3995 }
3996
3997 /* these will work even if we don't have a cap yet */
3998 switch (op) {
3999 case CEPH_CAP_OP_FLUSHSNAP_ACK:
a1c6b835
YZ
4000 handle_cap_flushsnap_ack(inode, le64_to_cpu(msg->hdr.tid),
4001 h, session);
a8599bd8
SW
4002 goto done;
4003
4004 case CEPH_CAP_OP_EXPORT:
11df2dfb
YZ
4005 handle_cap_export(inode, h, peer, session);
4006 goto done_unlocked;
a8599bd8
SW
4007
4008 case CEPH_CAP_OP_IMPORT:
982d6011
YZ
4009 realm = NULL;
4010 if (snaptrace_len) {
4011 down_write(&mdsc->snap_rwsem);
4012 ceph_update_snap_trace(mdsc, snaptrace,
4013 snaptrace + snaptrace_len,
4014 false, &realm);
4015 downgrade_write(&mdsc->snap_rwsem);
4016 } else {
4017 down_read(&mdsc->snap_rwsem);
4018 }
4ee6a914 4019 handle_cap_import(mdsc, inode, h, peer, session,
a1c6b835
YZ
4020 &cap, &extra_info.issued);
4021 handle_cap_grant(inode, session, cap,
4022 h, msg->middle, &extra_info);
982d6011
YZ
4023 if (realm)
4024 ceph_put_snap_realm(mdsc, realm);
2cd698be 4025 goto done_unlocked;
a8599bd8
SW
4026 }
4027
4028 /* the rest require a cap */
be655596 4029 spin_lock(&ci->i_ceph_lock);
a1c6b835 4030 cap = __get_cap_for_mds(ceph_inode(inode), session->s_mds);
a8599bd8 4031 if (!cap) {
9dbd412f 4032 dout(" no cap on %p ino %llx.%llx from mds%d\n",
a1c6b835
YZ
4033 inode, ceph_ino(inode), ceph_snap(inode),
4034 session->s_mds);
be655596 4035 spin_unlock(&ci->i_ceph_lock);
21b559de 4036 goto flush_cap_releases;
a8599bd8
SW
4037 }
4038
be655596 4039 /* note that each of these drops i_ceph_lock for us */
a8599bd8
SW
4040 switch (op) {
4041 case CEPH_CAP_OP_REVOKE:
4042 case CEPH_CAP_OP_GRANT:
a1c6b835
YZ
4043 __ceph_caps_issued(ci, &extra_info.issued);
4044 extra_info.issued |= __ceph_caps_dirty(ci);
4045 handle_cap_grant(inode, session, cap,
4046 h, msg->middle, &extra_info);
15637c8b 4047 goto done_unlocked;
a8599bd8
SW
4048
4049 case CEPH_CAP_OP_FLUSH_ACK:
a1c6b835
YZ
4050 handle_cap_flush_ack(inode, le64_to_cpu(msg->hdr.tid),
4051 h, session, cap);
a8599bd8
SW
4052 break;
4053
4054 case CEPH_CAP_OP_TRUNC:
4055 handle_cap_trunc(inode, h, session);
4056 break;
4057
4058 default:
be655596 4059 spin_unlock(&ci->i_ceph_lock);
a8599bd8
SW
4060 pr_err("ceph_handle_caps: unknown cap op %d %s\n", op,
4061 ceph_cap_op_name(op));
4062 }
4063
e3ec8d68
YZ
4064done:
4065 mutex_unlock(&session->s_mutex);
4066done_unlocked:
e3ec8d68 4067 ceph_put_string(extra_info.pool_ns);
3e1d0452
YZ
4068 /* avoid calling iput_final() in mds dispatch threads */
4069 ceph_async_iput(inode);
e3ec8d68 4070 return;
21b559de
GF
4071
4072flush_cap_releases:
4073 /*
745a8e3b 4074 * send any cap release message to try to move things
21b559de
GF
4075 * along for the mds (who clearly thinks we still have this
4076 * cap).
4077 */
e3ec8d68
YZ
4078 ceph_flush_cap_releases(mdsc, session);
4079 goto done;
a8599bd8
SW
4080
4081bad:
4082 pr_err("ceph_handle_caps: corrupt message\n");
9ec7cab1 4083 ceph_msg_dump(msg);
a8599bd8
SW
4084 return;
4085}
4086
4087/*
4088 * Delayed work handler to process end of delayed cap release LRU list.
4089 */
afcdaea3 4090void ceph_check_delayed_caps(struct ceph_mds_client *mdsc)
a8599bd8 4091{
4b9f2042 4092 struct inode *inode;
a8599bd8 4093 struct ceph_inode_info *ci;
a8599bd8 4094
a8599bd8
SW
4095 dout("check_delayed_caps\n");
4096 while (1) {
4097 spin_lock(&mdsc->cap_delay_lock);
4098 if (list_empty(&mdsc->cap_delay_list))
4099 break;
4100 ci = list_first_entry(&mdsc->cap_delay_list,
4101 struct ceph_inode_info,
4102 i_cap_delay_list);
4103 if ((ci->i_ceph_flags & CEPH_I_FLUSH) == 0 &&
4104 time_before(jiffies, ci->i_hold_caps_max))
4105 break;
4106 list_del_init(&ci->i_cap_delay_list);
4b9f2042
YZ
4107
4108 inode = igrab(&ci->vfs_inode);
a8599bd8 4109 spin_unlock(&mdsc->cap_delay_lock);
4b9f2042
YZ
4110
4111 if (inode) {
4112 dout("check_delayed_caps on %p\n", inode);
a0d93e32 4113 ceph_check_caps(ci, 0, NULL);
3e1d0452
YZ
4114 /* avoid calling iput_final() in tick thread */
4115 ceph_async_iput(inode);
4b9f2042 4116 }
a8599bd8
SW
4117 }
4118 spin_unlock(&mdsc->cap_delay_lock);
4119}
4120
afcdaea3
SW
4121/*
4122 * Flush all dirty caps to the mds
4123 */
4124void ceph_flush_dirty_caps(struct ceph_mds_client *mdsc)
4125{
db354052
SW
4126 struct ceph_inode_info *ci;
4127 struct inode *inode;
afcdaea3
SW
4128
4129 dout("flush_dirty_caps\n");
4130 spin_lock(&mdsc->cap_dirty_lock);
db354052
SW
4131 while (!list_empty(&mdsc->cap_dirty)) {
4132 ci = list_first_entry(&mdsc->cap_dirty, struct ceph_inode_info,
4133 i_dirty_item);
70b666c3
SW
4134 inode = &ci->vfs_inode;
4135 ihold(inode);
db354052 4136 dout("flush_dirty_caps %p\n", inode);
afcdaea3 4137 spin_unlock(&mdsc->cap_dirty_lock);
a0d93e32 4138 ceph_check_caps(ci, CHECK_CAPS_FLUSH, NULL);
70b666c3 4139 iput(inode);
afcdaea3
SW
4140 spin_lock(&mdsc->cap_dirty_lock);
4141 }
4142 spin_unlock(&mdsc->cap_dirty_lock);
db354052 4143 dout("flush_dirty_caps done\n");
afcdaea3
SW
4144}
4145
719a2514
YZ
4146void __ceph_touch_fmode(struct ceph_inode_info *ci,
4147 struct ceph_mds_client *mdsc, int fmode)
4148{
4149 unsigned long now = jiffies;
4150 if (fmode & CEPH_FILE_MODE_RD)
4151 ci->i_last_rd = now;
4152 if (fmode & CEPH_FILE_MODE_WR)
4153 ci->i_last_wr = now;
4154 /* queue periodic check */
4155 if (fmode &&
4156 __ceph_is_any_real_caps(ci) &&
4157 list_empty(&ci->i_cap_delay_list))
a0d93e32 4158 __cap_delay_requeue(mdsc, ci);
719a2514
YZ
4159}
4160
4161void ceph_get_fmode(struct ceph_inode_info *ci, int fmode, int count)
4162{
4163 int i;
4164 int bits = (fmode << 1) | 1;
4165 spin_lock(&ci->i_ceph_lock);
4166 for (i = 0; i < CEPH_FILE_MODE_BITS; i++) {
4167 if (bits & (1 << i))
4168 ci->i_nr_by_mode[i] += count;
4169 }
4170 spin_unlock(&ci->i_ceph_lock);
4171}
4172
a8599bd8
SW
4173/*
4174 * Drop open file reference. If we were the last open file,
4175 * we may need to release capabilities to the MDS (or schedule
4176 * their delayed release).
4177 */
719a2514 4178void ceph_put_fmode(struct ceph_inode_info *ci, int fmode, int count)
a8599bd8 4179{
719a2514 4180 int i;
774a6a11 4181 int bits = (fmode << 1) | 1;
be655596 4182 spin_lock(&ci->i_ceph_lock);
774a6a11
YZ
4183 for (i = 0; i < CEPH_FILE_MODE_BITS; i++) {
4184 if (bits & (1 << i)) {
719a2514
YZ
4185 BUG_ON(ci->i_nr_by_mode[i] < count);
4186 ci->i_nr_by_mode[i] -= count;
774a6a11
YZ
4187 }
4188 }
be655596 4189 spin_unlock(&ci->i_ceph_lock);
a8599bd8
SW
4190}
4191
6ef0bc6d 4192/*
a452bc06 4193 * For a soon-to-be unlinked file, drop the LINK caps. If it
6ef0bc6d
ZZ
4194 * looks like the link count will hit 0, drop any other caps (other
4195 * than PIN) we don't specifically want (due to the file still being
4196 * open).
4197 */
4198int ceph_drop_caps_for_unlink(struct inode *inode)
4199{
4200 struct ceph_inode_info *ci = ceph_inode(inode);
4201 int drop = CEPH_CAP_LINK_SHARED | CEPH_CAP_LINK_EXCL;
4202
4203 spin_lock(&ci->i_ceph_lock);
4204 if (inode->i_nlink == 1) {
4205 drop |= ~(__ceph_caps_wanted(ci) | CEPH_CAP_PIN);
4206
6ef0bc6d
ZZ
4207 if (__ceph_caps_dirty(ci)) {
4208 struct ceph_mds_client *mdsc =
4209 ceph_inode_to_client(inode)->mdsc;
4210 __cap_delay_requeue_front(mdsc, ci);
4211 }
4212 }
4213 spin_unlock(&ci->i_ceph_lock);
4214 return drop;
4215}
4216
a8599bd8
SW
4217/*
4218 * Helpers for embedding cap and dentry lease releases into mds
4219 * requests.
4220 *
4221 * @force is used by dentry_release (below) to force inclusion of a
4222 * record for the directory inode, even when there aren't any caps to
4223 * drop.
4224 */
4225int ceph_encode_inode_release(void **p, struct inode *inode,
4226 int mds, int drop, int unless, int force)
4227{
4228 struct ceph_inode_info *ci = ceph_inode(inode);
4229 struct ceph_cap *cap;
4230 struct ceph_mds_request_release *rel = *p;
ec97f88b 4231 int used, dirty;
a8599bd8 4232 int ret = 0;
a8599bd8 4233
be655596 4234 spin_lock(&ci->i_ceph_lock);
916623da 4235 used = __ceph_caps_used(ci);
ec97f88b 4236 dirty = __ceph_caps_dirty(ci);
916623da 4237
ec97f88b
SW
4238 dout("encode_inode_release %p mds%d used|dirty %s drop %s unless %s\n",
4239 inode, mds, ceph_cap_string(used|dirty), ceph_cap_string(drop),
916623da
SW
4240 ceph_cap_string(unless));
4241
ec97f88b
SW
4242 /* only drop unused, clean caps */
4243 drop &= ~(used | dirty);
916623da 4244
a8599bd8
SW
4245 cap = __get_cap_for_mds(ci, mds);
4246 if (cap && __cap_is_valid(cap)) {
222b7f90
YZ
4247 unless &= cap->issued;
4248 if (unless) {
4249 if (unless & CEPH_CAP_AUTH_EXCL)
4250 drop &= ~CEPH_CAP_AUTH_SHARED;
4251 if (unless & CEPH_CAP_LINK_EXCL)
4252 drop &= ~CEPH_CAP_LINK_SHARED;
4253 if (unless & CEPH_CAP_XATTR_EXCL)
4254 drop &= ~CEPH_CAP_XATTR_SHARED;
4255 if (unless & CEPH_CAP_FILE_EXCL)
4256 drop &= ~CEPH_CAP_FILE_SHARED;
4257 }
4258
4259 if (force || (cap->issued & drop)) {
4260 if (cap->issued & drop) {
bb137f84 4261 int wanted = __ceph_caps_wanted(ci);
bb137f84
YZ
4262 dout("encode_inode_release %p cap %p "
4263 "%s -> %s, wanted %s -> %s\n", inode, cap,
a8599bd8 4264 ceph_cap_string(cap->issued),
bb137f84
YZ
4265 ceph_cap_string(cap->issued & ~drop),
4266 ceph_cap_string(cap->mds_wanted),
4267 ceph_cap_string(wanted));
4268
a8599bd8
SW
4269 cap->issued &= ~drop;
4270 cap->implemented &= ~drop;
bb137f84 4271 cap->mds_wanted = wanted;
a8599bd8
SW
4272 } else {
4273 dout("encode_inode_release %p cap %p %s"
4274 " (force)\n", inode, cap,
4275 ceph_cap_string(cap->issued));
4276 }
4277
4278 rel->ino = cpu_to_le64(ceph_ino(inode));
4279 rel->cap_id = cpu_to_le64(cap->cap_id);
4280 rel->seq = cpu_to_le32(cap->seq);
08a0f24e 4281 rel->issue_seq = cpu_to_le32(cap->issue_seq);
a8599bd8 4282 rel->mseq = cpu_to_le32(cap->mseq);
fd7b95cd 4283 rel->caps = cpu_to_le32(cap->implemented);
a8599bd8
SW
4284 rel->wanted = cpu_to_le32(cap->mds_wanted);
4285 rel->dname_len = 0;
4286 rel->dname_seq = 0;
4287 *p += sizeof(*rel);
4288 ret = 1;
4289 } else {
222b7f90 4290 dout("encode_inode_release %p cap %p %s (noop)\n",
a8599bd8
SW
4291 inode, cap, ceph_cap_string(cap->issued));
4292 }
4293 }
be655596 4294 spin_unlock(&ci->i_ceph_lock);
a8599bd8
SW
4295 return ret;
4296}
4297
4298int ceph_encode_dentry_release(void **p, struct dentry *dentry,
ca6c8ae0 4299 struct inode *dir,
a8599bd8
SW
4300 int mds, int drop, int unless)
4301{
ca6c8ae0 4302 struct dentry *parent = NULL;
a8599bd8
SW
4303 struct ceph_mds_request_release *rel = *p;
4304 struct ceph_dentry_info *di = ceph_dentry(dentry);
4305 int force = 0;
4306 int ret;
4307
4308 /*
4309 * force an record for the directory caps if we have a dentry lease.
be655596 4310 * this is racy (can't take i_ceph_lock and d_lock together), but it
a8599bd8
SW
4311 * doesn't have to be perfect; the mds will revoke anything we don't
4312 * release.
4313 */
4314 spin_lock(&dentry->d_lock);
4315 if (di->lease_session && di->lease_session->s_mds == mds)
4316 force = 1;
ca6c8ae0
JL
4317 if (!dir) {
4318 parent = dget(dentry->d_parent);
4319 dir = d_inode(parent);
4320 }
a8599bd8
SW
4321 spin_unlock(&dentry->d_lock);
4322
ca6c8ae0 4323 ret = ceph_encode_inode_release(p, dir, mds, drop, unless, force);
adf0d687 4324 dput(parent);
a8599bd8
SW
4325
4326 spin_lock(&dentry->d_lock);
4327 if (ret && di->lease_session && di->lease_session->s_mds == mds) {
4328 dout("encode_dentry_release %p mds%d seq %d\n",
4329 dentry, mds, (int)di->lease_seq);
4330 rel->dname_len = cpu_to_le32(dentry->d_name.len);
4331 memcpy(*p, dentry->d_name.name, dentry->d_name.len);
4332 *p += dentry->d_name.len;
4333 rel->dname_seq = cpu_to_le32(di->lease_seq);
1dadcce3 4334 __ceph_mdsc_drop_dentry_lease(dentry);
a8599bd8
SW
4335 }
4336 spin_unlock(&dentry->d_lock);
4337 return ret;
4338}