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