ceph: use atomic_t for ceph_inode_info::i_shared_gen
[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)
97aeb6bf 501 atomic_inc(&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 1162 struct cap_msg_args arg;
bb0581f0 1163 int held, revoking;
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;
68c28323 1171
a8599bd8
SW
1172 dout("__send_cap %p cap %p session %p %s -> %s (revoking %s)\n",
1173 inode, cap, cap->session,
1174 ceph_cap_string(held), ceph_cap_string(held & retain),
1175 ceph_cap_string(revoking));
1176 BUG_ON((retain & CEPH_CAP_PIN) == 0);
1177
0ff8bfb3 1178 arg.session = cap->session;
a8599bd8
SW
1179
1180 /* don't release wanted unless we've waited a bit. */
1181 if ((ci->i_ceph_flags & CEPH_I_NODELAY) == 0 &&
1182 time_before(jiffies, ci->i_hold_caps_min)) {
1183 dout(" delaying issued %s -> %s, wanted %s -> %s on send\n",
1184 ceph_cap_string(cap->issued),
1185 ceph_cap_string(cap->issued & retain),
1186 ceph_cap_string(cap->mds_wanted),
1187 ceph_cap_string(want));
1188 want |= cap->mds_wanted;
1189 retain |= cap->issued;
1190 delayed = 1;
1191 }
1192 ci->i_ceph_flags &= ~(CEPH_I_NODELAY | CEPH_I_FLUSH);
eb65b919
YZ
1193 if (want & ~cap->mds_wanted) {
1194 /* user space may open/close single file frequently.
1195 * This avoids droping mds_wanted immediately after
1196 * requesting new mds_wanted.
1197 */
1198 __cap_set_timeouts(mdsc, ci);
1199 }
a8599bd8
SW
1200
1201 cap->issued &= retain; /* drop bits we don't want */
1202 if (cap->implemented & ~cap->issued) {
1203 /*
1204 * Wake up any waiters on wanted -> needed transition.
1205 * This is due to the weird transition from buffered
1206 * to sync IO... we need to flush dirty pages _before_
1207 * allowing sync writes to avoid reordering.
1208 */
1209 wake = 1;
1210 }
1211 cap->implemented &= cap->issued | used;
1212 cap->mds_wanted = want;
1213
0ff8bfb3
JL
1214 arg.ino = ceph_vino(inode).ino;
1215 arg.cid = cap->cap_id;
1216 arg.follows = flushing ? ci->i_head_snapc->seq : 0;
1217 arg.flush_tid = flush_tid;
1218 arg.oldest_flush_tid = oldest_flush_tid;
1219
1220 arg.size = inode->i_size;
1221 ci->i_reported_size = arg.size;
1222 arg.max_size = ci->i_wanted_max_size;
1223 ci->i_requested_max_size = arg.max_size;
a8599bd8 1224
082afec9 1225 if (flushing & CEPH_CAP_XATTR_EXCL) {
a8599bd8 1226 __ceph_build_xattrs_blob(ci);
0ff8bfb3
JL
1227 arg.xattr_version = ci->i_xattrs.version;
1228 arg.xattr_buf = ci->i_xattrs.blob;
1229 } else {
1230 arg.xattr_buf = NULL;
a8599bd8
SW
1231 }
1232
0ff8bfb3
JL
1233 arg.mtime = inode->i_mtime;
1234 arg.atime = inode->i_atime;
1235 arg.ctime = inode->i_ctime;
1236
1237 arg.op = op;
1238 arg.caps = cap->implemented;
1239 arg.wanted = want;
1240 arg.dirty = flushing;
1241
1242 arg.seq = cap->seq;
1243 arg.issue_seq = cap->issue_seq;
1244 arg.mseq = cap->mseq;
1245 arg.time_warp_seq = ci->i_time_warp_seq;
1246
1247 arg.uid = inode->i_uid;
1248 arg.gid = inode->i_gid;
1249 arg.mode = inode->i_mode;
1250
1251 arg.inline_data = ci->i_inline_version != CEPH_INLINE_NONE;
95569713
YZ
1252 if (list_empty(&ci->i_cap_snaps))
1253 arg.flags = CEPH_CLIENT_CAPS_NO_CAPSNAP;
1254 else
1255 arg.flags = CEPH_CLIENT_CAPS_PENDING_CAPSNAP;
1e4ef0c6
JL
1256 if (sync)
1257 arg.flags |= CEPH_CLIENT_CAPS_SYNC;
e20d258d 1258
be655596 1259 spin_unlock(&ci->i_ceph_lock);
a8599bd8 1260
0ff8bfb3 1261 ret = send_cap_msg(&arg);
a8599bd8
SW
1262 if (ret < 0) {
1263 dout("error sending cap msg, must requeue %p\n", inode);
1264 delayed = 1;
1265 }
1266
1267 if (wake)
03066f23 1268 wake_up_all(&ci->i_cap_wq);
a8599bd8
SW
1269
1270 return delayed;
1271}
1272
0e294387
YZ
1273static inline int __send_flush_snap(struct inode *inode,
1274 struct ceph_mds_session *session,
1275 struct ceph_cap_snap *capsnap,
1276 u32 mseq, u64 oldest_flush_tid)
1277{
0ff8bfb3
JL
1278 struct cap_msg_args arg;
1279
1280 arg.session = session;
1281 arg.ino = ceph_vino(inode).ino;
1282 arg.cid = 0;
1283 arg.follows = capsnap->follows;
1284 arg.flush_tid = capsnap->cap_flush.tid;
1285 arg.oldest_flush_tid = oldest_flush_tid;
1286
1287 arg.size = capsnap->size;
1288 arg.max_size = 0;
1289 arg.xattr_version = capsnap->xattr_version;
1290 arg.xattr_buf = capsnap->xattr_blob;
1291
1292 arg.atime = capsnap->atime;
1293 arg.mtime = capsnap->mtime;
1294 arg.ctime = capsnap->ctime;
1295
1296 arg.op = CEPH_CAP_OP_FLUSHSNAP;
1297 arg.caps = capsnap->issued;
1298 arg.wanted = 0;
1299 arg.dirty = capsnap->dirty;
1300
1301 arg.seq = 0;
1302 arg.issue_seq = 0;
1303 arg.mseq = mseq;
1304 arg.time_warp_seq = capsnap->time_warp_seq;
1305
1306 arg.uid = capsnap->uid;
1307 arg.gid = capsnap->gid;
1308 arg.mode = capsnap->mode;
1309
1310 arg.inline_data = capsnap->inline_data;
1e4ef0c6 1311 arg.flags = 0;
0ff8bfb3
JL
1312
1313 return send_cap_msg(&arg);
0e294387
YZ
1314}
1315
a8599bd8
SW
1316/*
1317 * When a snapshot is taken, clients accumulate dirty metadata on
1318 * inodes with capabilities in ceph_cap_snaps to describe the file
1319 * state at the time the snapshot was taken. This must be flushed
1320 * asynchronously back to the MDS once sync writes complete and dirty
1321 * data is written out.
1322 *
be655596 1323 * Called under i_ceph_lock. Takes s_mutex as needed.
a8599bd8 1324 */
ed9b430c
YZ
1325static void __ceph_flush_snaps(struct ceph_inode_info *ci,
1326 struct ceph_mds_session *session)
be655596
SW
1327 __releases(ci->i_ceph_lock)
1328 __acquires(ci->i_ceph_lock)
a8599bd8
SW
1329{
1330 struct inode *inode = &ci->vfs_inode;
ed9b430c 1331 struct ceph_mds_client *mdsc = session->s_mdsc;
a8599bd8 1332 struct ceph_cap_snap *capsnap;
ed9b430c
YZ
1333 u64 oldest_flush_tid = 0;
1334 u64 first_tid = 1, last_tid = 0;
a8599bd8 1335
ed9b430c 1336 dout("__flush_snaps %p session %p\n", inode, session);
a8599bd8 1337
a8599bd8 1338 list_for_each_entry(capsnap, &ci->i_cap_snaps, ci_item) {
a8599bd8
SW
1339 /*
1340 * we need to wait for sync writes to complete and for dirty
1341 * pages to be written out.
1342 */
1343 if (capsnap->dirty_pages || capsnap->writing)
cfc0bf66 1344 break;
a8599bd8 1345
86056090
YZ
1346 /* should be removed by ceph_try_drop_cap_snap() */
1347 BUG_ON(!capsnap->need_flush);
819ccbfa 1348
e835124c 1349 /* only flush each capsnap once */
0e294387 1350 if (capsnap->cap_flush.tid > 0) {
ed9b430c 1351 dout(" already flushed %p, skipping\n", capsnap);
e835124c
SW
1352 continue;
1353 }
1354
553adfd9 1355 spin_lock(&mdsc->cap_dirty_lock);
0e294387
YZ
1356 capsnap->cap_flush.tid = ++mdsc->last_cap_flush_tid;
1357 list_add_tail(&capsnap->cap_flush.g_list,
1358 &mdsc->cap_flush_list);
ed9b430c
YZ
1359 if (oldest_flush_tid == 0)
1360 oldest_flush_tid = __get_oldest_flush_tid(mdsc);
0e294387
YZ
1361 if (list_empty(&ci->i_flushing_item)) {
1362 list_add_tail(&ci->i_flushing_item,
1363 &session->s_cap_flushing);
1364 }
553adfd9
YZ
1365 spin_unlock(&mdsc->cap_dirty_lock);
1366
0e294387
YZ
1367 list_add_tail(&capsnap->cap_flush.i_list,
1368 &ci->i_cap_flush_list);
1369
ed9b430c
YZ
1370 if (first_tid == 1)
1371 first_tid = capsnap->cap_flush.tid;
1372 last_tid = capsnap->cap_flush.tid;
1373 }
1374
1375 ci->i_ceph_flags &= ~CEPH_I_FLUSH_SNAPS;
1376
1377 while (first_tid <= last_tid) {
1378 struct ceph_cap *cap = ci->i_auth_cap;
1379 struct ceph_cap_flush *cf;
1380 int ret;
1381
1382 if (!(cap && cap->session == session)) {
1383 dout("__flush_snaps %p auth cap %p not mds%d, "
1384 "stop\n", inode, cap, session->s_mds);
1385 break;
1386 }
1387
1388 ret = -ENOENT;
1389 list_for_each_entry(cf, &ci->i_cap_flush_list, i_list) {
1390 if (cf->tid >= first_tid) {
1391 ret = 0;
1392 break;
1393 }
1394 }
1395 if (ret < 0)
1396 break;
1397
1398 first_tid = cf->tid + 1;
1399
1400 capsnap = container_of(cf, struct ceph_cap_snap, cap_flush);
805692d0 1401 refcount_inc(&capsnap->nref);
be655596 1402 spin_unlock(&ci->i_ceph_lock);
a8599bd8 1403
ed9b430c
YZ
1404 dout("__flush_snaps %p capsnap %p tid %llu %s\n",
1405 inode, capsnap, cf->tid, ceph_cap_string(capsnap->dirty));
a8599bd8 1406
ed9b430c
YZ
1407 ret = __send_flush_snap(inode, session, capsnap, cap->mseq,
1408 oldest_flush_tid);
1409 if (ret < 0) {
1410 pr_err("__flush_snaps: error sending cap flushsnap, "
1411 "ino (%llx.%llx) tid %llu follows %llu\n",
1412 ceph_vinop(inode), cf->tid, capsnap->follows);
1413 }
a8599bd8 1414
ed9b430c 1415 ceph_put_cap_snap(capsnap);
be655596 1416 spin_lock(&ci->i_ceph_lock);
a8599bd8 1417 }
ed9b430c 1418}
a8599bd8 1419
ed9b430c
YZ
1420void ceph_flush_snaps(struct ceph_inode_info *ci,
1421 struct ceph_mds_session **psession)
1422{
1423 struct inode *inode = &ci->vfs_inode;
1424 struct ceph_mds_client *mdsc = ceph_inode_to_client(inode)->mdsc;
e4d2b16a 1425 struct ceph_mds_session *session = NULL;
ed9b430c 1426 int mds;
e4d2b16a 1427
ed9b430c 1428 dout("ceph_flush_snaps %p\n", inode);
e4d2b16a
YZ
1429 if (psession)
1430 session = *psession;
ed9b430c
YZ
1431retry:
1432 spin_lock(&ci->i_ceph_lock);
1433 if (!(ci->i_ceph_flags & CEPH_I_FLUSH_SNAPS)) {
1434 dout(" no capsnap needs flush, doing nothing\n");
1435 goto out;
1436 }
1437 if (!ci->i_auth_cap) {
1438 dout(" no auth cap (migrating?), doing nothing\n");
1439 goto out;
1440 }
a8599bd8 1441
ed9b430c
YZ
1442 mds = ci->i_auth_cap->session->s_mds;
1443 if (session && session->s_mds != mds) {
1444 dout(" oops, wrong session %p mutex\n", session);
a8599bd8
SW
1445 mutex_unlock(&session->s_mutex);
1446 ceph_put_mds_session(session);
ed9b430c
YZ
1447 session = NULL;
1448 }
1449 if (!session) {
1450 spin_unlock(&ci->i_ceph_lock);
1451 mutex_lock(&mdsc->mutex);
1452 session = __ceph_lookup_mds_session(mdsc, mds);
1453 mutex_unlock(&mdsc->mutex);
1454 if (session) {
1455 dout(" inverting session/ino locks on %p\n", session);
1456 mutex_lock(&session->s_mutex);
1457 }
1458 goto retry;
a8599bd8 1459 }
a8599bd8 1460
24d063ac
YZ
1461 // make sure flushsnap messages are sent in proper order.
1462 if (ci->i_ceph_flags & CEPH_I_KICK_FLUSH) {
1463 __kick_flushing_caps(mdsc, session, ci, 0);
1464 ci->i_ceph_flags &= ~CEPH_I_KICK_FLUSH;
1465 }
1466
ed9b430c
YZ
1467 __ceph_flush_snaps(ci, session);
1468out:
be655596 1469 spin_unlock(&ci->i_ceph_lock);
ed9b430c
YZ
1470
1471 if (psession) {
1472 *psession = session;
c858a070 1473 } else if (session) {
ed9b430c
YZ
1474 mutex_unlock(&session->s_mutex);
1475 ceph_put_mds_session(session);
1476 }
1477 /* we flushed them all; remove this inode from the queue */
1478 spin_lock(&mdsc->snap_flush_lock);
1479 list_del_init(&ci->i_snap_flush_item);
1480 spin_unlock(&mdsc->snap_flush_lock);
a8599bd8
SW
1481}
1482
76e3b390 1483/*
fca65b4a
SW
1484 * Mark caps dirty. If inode is newly dirty, return the dirty flags.
1485 * Caller is then responsible for calling __mark_inode_dirty with the
1486 * returned flags value.
76e3b390 1487 */
f66fd9f0
YZ
1488int __ceph_mark_dirty_caps(struct ceph_inode_info *ci, int mask,
1489 struct ceph_cap_flush **pcf)
76e3b390 1490{
640ef79d 1491 struct ceph_mds_client *mdsc =
3d14c5d2 1492 ceph_sb_to_client(ci->vfs_inode.i_sb)->mdsc;
76e3b390
SW
1493 struct inode *inode = &ci->vfs_inode;
1494 int was = ci->i_dirty_caps;
1495 int dirty = 0;
1496
571ade33
YZ
1497 if (!ci->i_auth_cap) {
1498 pr_warn("__mark_dirty_caps %p %llx mask %s, "
1499 "but no auth cap (session was closed?)\n",
1500 inode, ceph_ino(inode), ceph_cap_string(mask));
1501 return 0;
1502 }
1503
76e3b390
SW
1504 dout("__mark_dirty_caps %p %s dirty %s -> %s\n", &ci->vfs_inode,
1505 ceph_cap_string(mask), ceph_cap_string(was),
1506 ceph_cap_string(was | mask));
1507 ci->i_dirty_caps |= mask;
1508 if (was == 0) {
f66fd9f0
YZ
1509 WARN_ON_ONCE(ci->i_prealloc_cap_flush);
1510 swap(ci->i_prealloc_cap_flush, *pcf);
1511
604d1b02
YZ
1512 if (!ci->i_head_snapc) {
1513 WARN_ON_ONCE(!rwsem_is_locked(&mdsc->snap_rwsem));
7d8cb26d
SW
1514 ci->i_head_snapc = ceph_get_snap_context(
1515 ci->i_snap_realm->cached_context);
604d1b02 1516 }
0685235f
YZ
1517 dout(" inode %p now dirty snapc %p auth cap %p\n",
1518 &ci->vfs_inode, ci->i_head_snapc, ci->i_auth_cap);
76e3b390
SW
1519 BUG_ON(!list_empty(&ci->i_dirty_item));
1520 spin_lock(&mdsc->cap_dirty_lock);
11df2dfb 1521 list_add(&ci->i_dirty_item, &mdsc->cap_dirty);
76e3b390
SW
1522 spin_unlock(&mdsc->cap_dirty_lock);
1523 if (ci->i_flushing_caps == 0) {
3772d26d 1524 ihold(inode);
76e3b390
SW
1525 dirty |= I_DIRTY_SYNC;
1526 }
f66fd9f0
YZ
1527 } else {
1528 WARN_ON_ONCE(!ci->i_prealloc_cap_flush);
76e3b390
SW
1529 }
1530 BUG_ON(list_empty(&ci->i_dirty_item));
1531 if (((was | ci->i_flushing_caps) & CEPH_CAP_FILE_BUFFER) &&
1532 (mask & CEPH_CAP_FILE_BUFFER))
1533 dirty |= I_DIRTY_DATASYNC;
76e3b390 1534 __cap_delay_requeue(mdsc, ci);
fca65b4a 1535 return dirty;
76e3b390
SW
1536}
1537
f66fd9f0
YZ
1538struct ceph_cap_flush *ceph_alloc_cap_flush(void)
1539{
1540 return kmem_cache_alloc(ceph_cap_flush_cachep, GFP_KERNEL);
1541}
1542
1543void ceph_free_cap_flush(struct ceph_cap_flush *cf)
1544{
1545 if (cf)
1546 kmem_cache_free(ceph_cap_flush_cachep, cf);
1547}
1548
a2971c8c
YZ
1549static u64 __get_oldest_flush_tid(struct ceph_mds_client *mdsc)
1550{
e4500b5e 1551 if (!list_empty(&mdsc->cap_flush_list)) {
a2971c8c 1552 struct ceph_cap_flush *cf =
e4500b5e
YZ
1553 list_first_entry(&mdsc->cap_flush_list,
1554 struct ceph_cap_flush, g_list);
a2971c8c
YZ
1555 return cf->tid;
1556 }
1557 return 0;
1558}
1559
c8799fc4
YZ
1560/*
1561 * Remove cap_flush from the mdsc's or inode's flushing cap list.
1562 * Return true if caller needs to wake up flush waiters.
1563 */
1564static bool __finish_cap_flush(struct ceph_mds_client *mdsc,
1565 struct ceph_inode_info *ci,
1566 struct ceph_cap_flush *cf)
1567{
1568 struct ceph_cap_flush *prev;
1569 bool wake = cf->wake;
1570 if (mdsc) {
1571 /* are there older pending cap flushes? */
1572 if (wake && cf->g_list.prev != &mdsc->cap_flush_list) {
1573 prev = list_prev_entry(cf, g_list);
1574 prev->wake = true;
1575 wake = false;
1576 }
1577 list_del(&cf->g_list);
1578 } else if (ci) {
1579 if (wake && cf->i_list.prev != &ci->i_cap_flush_list) {
1580 prev = list_prev_entry(cf, i_list);
1581 prev->wake = true;
1582 wake = false;
1583 }
1584 list_del(&cf->i_list);
1585 } else {
1586 BUG_ON(1);
1587 }
1588 return wake;
1589}
1590
a8599bd8
SW
1591/*
1592 * Add dirty inode to the flushing list. Assigned a seq number so we
1593 * can wait for caps to flush without starving.
cdc35f96 1594 *
be655596 1595 * Called under i_ceph_lock.
a8599bd8 1596 */
cdc35f96 1597static int __mark_caps_flushing(struct inode *inode,
c8799fc4 1598 struct ceph_mds_session *session, bool wake,
a2971c8c 1599 u64 *flush_tid, u64 *oldest_flush_tid)
a8599bd8 1600{
3d14c5d2 1601 struct ceph_mds_client *mdsc = ceph_sb_to_client(inode->i_sb)->mdsc;
a8599bd8 1602 struct ceph_inode_info *ci = ceph_inode(inode);
f66fd9f0 1603 struct ceph_cap_flush *cf = NULL;
cdc35f96 1604 int flushing;
50b885b9 1605
cdc35f96 1606 BUG_ON(ci->i_dirty_caps == 0);
a8599bd8 1607 BUG_ON(list_empty(&ci->i_dirty_item));
f66fd9f0 1608 BUG_ON(!ci->i_prealloc_cap_flush);
cdc35f96
SW
1609
1610 flushing = ci->i_dirty_caps;
1611 dout("__mark_caps_flushing flushing %s, flushing_caps %s -> %s\n",
1612 ceph_cap_string(flushing),
1613 ceph_cap_string(ci->i_flushing_caps),
1614 ceph_cap_string(ci->i_flushing_caps | flushing));
1615 ci->i_flushing_caps |= flushing;
1616 ci->i_dirty_caps = 0;
afcdaea3 1617 dout(" inode %p now !dirty\n", inode);
cdc35f96 1618
f66fd9f0 1619 swap(cf, ci->i_prealloc_cap_flush);
553adfd9 1620 cf->caps = flushing;
c8799fc4 1621 cf->wake = wake;
553adfd9 1622
a8599bd8 1623 spin_lock(&mdsc->cap_dirty_lock);
afcdaea3
SW
1624 list_del_init(&ci->i_dirty_item);
1625
553adfd9 1626 cf->tid = ++mdsc->last_cap_flush_tid;
e4500b5e 1627 list_add_tail(&cf->g_list, &mdsc->cap_flush_list);
a2971c8c 1628 *oldest_flush_tid = __get_oldest_flush_tid(mdsc);
553adfd9 1629
a8599bd8
SW
1630 if (list_empty(&ci->i_flushing_item)) {
1631 list_add_tail(&ci->i_flushing_item, &session->s_cap_flushing);
1632 mdsc->num_cap_flushing++;
a8599bd8
SW
1633 }
1634 spin_unlock(&mdsc->cap_dirty_lock);
cdc35f96 1635
e4500b5e 1636 list_add_tail(&cf->i_list, &ci->i_cap_flush_list);
553adfd9
YZ
1637
1638 *flush_tid = cf->tid;
cdc35f96 1639 return flushing;
a8599bd8
SW
1640}
1641
5ecad6fd
SW
1642/*
1643 * try to invalidate mapping pages without blocking.
1644 */
5ecad6fd
SW
1645static int try_nonblocking_invalidate(struct inode *inode)
1646{
1647 struct ceph_inode_info *ci = ceph_inode(inode);
1648 u32 invalidating_gen = ci->i_rdcache_gen;
1649
be655596 1650 spin_unlock(&ci->i_ceph_lock);
5ecad6fd 1651 invalidate_mapping_pages(&inode->i_data, 0, -1);
be655596 1652 spin_lock(&ci->i_ceph_lock);
5ecad6fd 1653
18a38193 1654 if (inode->i_data.nrpages == 0 &&
5ecad6fd
SW
1655 invalidating_gen == ci->i_rdcache_gen) {
1656 /* success. */
1657 dout("try_nonblocking_invalidate %p success\n", inode);
cd045cb4
SW
1658 /* save any racing async invalidate some trouble */
1659 ci->i_rdcache_revoking = ci->i_rdcache_gen - 1;
5ecad6fd
SW
1660 return 0;
1661 }
1662 dout("try_nonblocking_invalidate %p failed\n", inode);
1663 return -1;
1664}
1665
efb0ca76
YZ
1666bool __ceph_should_report_size(struct ceph_inode_info *ci)
1667{
1668 loff_t size = ci->vfs_inode.i_size;
1669 /* mds will adjust max size according to the reported size */
1670 if (ci->i_flushing_caps & CEPH_CAP_FILE_WR)
1671 return false;
1672 if (size >= ci->i_max_size)
1673 return true;
1674 /* half of previous max_size increment has been used */
1675 if (ci->i_max_size > ci->i_reported_size &&
1676 (size << 1) >= ci->i_max_size + ci->i_reported_size)
1677 return true;
1678 return false;
1679}
1680
a8599bd8
SW
1681/*
1682 * Swiss army knife function to examine currently used and wanted
1683 * versus held caps. Release, flush, ack revoked caps to mds as
1684 * appropriate.
1685 *
1686 * CHECK_CAPS_NODELAY - caller is delayed work and we should not delay
1687 * cap release further.
1688 * CHECK_CAPS_AUTHONLY - we should only check the auth cap
1689 * CHECK_CAPS_FLUSH - we should flush any dirty caps immediately, without
1690 * further delay.
1691 */
1692void ceph_check_caps(struct ceph_inode_info *ci, int flags,
1693 struct ceph_mds_session *session)
1694{
3d14c5d2
YS
1695 struct ceph_fs_client *fsc = ceph_inode_to_client(&ci->vfs_inode);
1696 struct ceph_mds_client *mdsc = fsc->mdsc;
a8599bd8
SW
1697 struct inode *inode = &ci->vfs_inode;
1698 struct ceph_cap *cap;
a2971c8c 1699 u64 flush_tid, oldest_flush_tid;
395c312b 1700 int file_wanted, used, cap_used;
a8599bd8 1701 int took_snap_rwsem = 0; /* true if mdsc->snap_rwsem held */
cbd03635 1702 int issued, implemented, want, retain, revoking, flushing = 0;
a8599bd8
SW
1703 int mds = -1; /* keep track of how far we've gone through i_caps list
1704 to avoid an infinite loop on retry */
1705 struct rb_node *p;
3609404f
YZ
1706 int delayed = 0, sent = 0, num;
1707 bool is_delayed = flags & CHECK_CAPS_NODELAY;
1708 bool queue_invalidate = false;
1709 bool force_requeue = false;
1710 bool tried_invalidate = false;
a8599bd8
SW
1711
1712 /* if we are unmounting, flush any unused caps immediately. */
1713 if (mdsc->stopping)
7271efa7 1714 is_delayed = true;
a8599bd8 1715
be655596 1716 spin_lock(&ci->i_ceph_lock);
a8599bd8
SW
1717
1718 if (ci->i_ceph_flags & CEPH_I_FLUSH)
1719 flags |= CHECK_CAPS_FLUSH;
1720
a8599bd8
SW
1721 goto retry_locked;
1722retry:
be655596 1723 spin_lock(&ci->i_ceph_lock);
a8599bd8
SW
1724retry_locked:
1725 file_wanted = __ceph_caps_file_wanted(ci);
1726 used = __ceph_caps_used(ci);
cbd03635
SW
1727 issued = __ceph_caps_issued(ci, &implemented);
1728 revoking = implemented & ~issued;
a8599bd8 1729
41445999
YZ
1730 want = file_wanted;
1731 retain = file_wanted | used | CEPH_CAP_PIN;
a8599bd8 1732 if (!mdsc->stopping && inode->i_nlink > 0) {
41445999 1733 if (file_wanted) {
a8599bd8 1734 retain |= CEPH_CAP_ANY; /* be greedy */
32ec4397
YZ
1735 } else if (S_ISDIR(inode->i_mode) &&
1736 (issued & CEPH_CAP_FILE_SHARED) &&
1737 __ceph_dir_is_complete(ci)) {
1738 /*
1739 * If a directory is complete, we want to keep
1740 * the exclusive cap. So that MDS does not end up
1741 * revoking the shared cap on every create/unlink
1742 * operation.
1743 */
1744 want = CEPH_CAP_ANY_SHARED | CEPH_CAP_FILE_EXCL;
1745 retain |= want;
a8599bd8 1746 } else {
32ec4397 1747
a8599bd8
SW
1748 retain |= CEPH_CAP_ANY_SHARED;
1749 /*
1750 * keep RD only if we didn't have the file open RW,
1751 * because then the mds would revoke it anyway to
1752 * journal max_size=0.
1753 */
1754 if (ci->i_max_size == 0)
1755 retain |= CEPH_CAP_ANY_RD;
1756 }
1757 }
1758
1759 dout("check_caps %p file_want %s used %s dirty %s flushing %s"
cbd03635 1760 " issued %s revoking %s retain %s %s%s%s\n", inode,
a8599bd8
SW
1761 ceph_cap_string(file_wanted),
1762 ceph_cap_string(used), ceph_cap_string(ci->i_dirty_caps),
1763 ceph_cap_string(ci->i_flushing_caps),
cbd03635 1764 ceph_cap_string(issued), ceph_cap_string(revoking),
a8599bd8
SW
1765 ceph_cap_string(retain),
1766 (flags & CHECK_CAPS_AUTHONLY) ? " AUTHONLY" : "",
1767 (flags & CHECK_CAPS_NODELAY) ? " NODELAY" : "",
1768 (flags & CHECK_CAPS_FLUSH) ? " FLUSH" : "");
1769
1770 /*
1771 * If we no longer need to hold onto old our caps, and we may
1772 * have cached pages, but don't want them, then try to invalidate.
1773 * If we fail, it's because pages are locked.... try again later.
1774 */
1775 if ((!is_delayed || mdsc->stopping) &&
fdd4e158 1776 !S_ISDIR(inode->i_mode) && /* ignore readdir cache */
9abd4db7 1777 !(ci->i_wb_ref || ci->i_wrbuffer_ref) && /* no dirty pages... */
fdd4e158 1778 inode->i_data.nrpages && /* have cached pages */
5e804ac4
YZ
1779 (revoking & (CEPH_CAP_FILE_CACHE|
1780 CEPH_CAP_FILE_LAZYIO)) && /* or revoking cache */
a8599bd8 1781 !tried_invalidate) {
a8599bd8 1782 dout("check_caps trying to invalidate on %p\n", inode);
5ecad6fd 1783 if (try_nonblocking_invalidate(inode) < 0) {
2962507c
SW
1784 if (revoking & (CEPH_CAP_FILE_CACHE|
1785 CEPH_CAP_FILE_LAZYIO)) {
5ecad6fd 1786 dout("check_caps queuing invalidate\n");
3609404f 1787 queue_invalidate = true;
5ecad6fd
SW
1788 ci->i_rdcache_revoking = ci->i_rdcache_gen;
1789 } else {
1790 dout("check_caps failed to invalidate pages\n");
1791 /* we failed to invalidate pages. check these
1792 caps again later. */
3609404f 1793 force_requeue = true;
5ecad6fd
SW
1794 __cap_set_timeouts(mdsc, ci);
1795 }
a8599bd8 1796 }
3609404f 1797 tried_invalidate = true;
a8599bd8
SW
1798 goto retry_locked;
1799 }
1800
1801 num = 0;
1802 for (p = rb_first(&ci->i_caps); p; p = rb_next(p)) {
1803 cap = rb_entry(p, struct ceph_cap, ci_node);
1804 num++;
1805
1806 /* avoid looping forever */
1807 if (mds >= cap->mds ||
1808 ((flags & CHECK_CAPS_AUTHONLY) && cap != ci->i_auth_cap))
1809 continue;
1810
1811 /* NOTE: no side-effects allowed, until we take s_mutex */
1812
395c312b
YZ
1813 cap_used = used;
1814 if (ci->i_auth_cap && cap != ci->i_auth_cap)
1815 cap_used &= ~ci->i_auth_cap->issued;
1816
a8599bd8 1817 revoking = cap->implemented & ~cap->issued;
395c312b 1818 dout(" mds%d cap %p used %s issued %s implemented %s revoking %s\n",
9abd4db7
YZ
1819 cap->mds, cap, ceph_cap_string(cap_used),
1820 ceph_cap_string(cap->issued),
088b3f5e
SW
1821 ceph_cap_string(cap->implemented),
1822 ceph_cap_string(revoking));
a8599bd8
SW
1823
1824 if (cap == ci->i_auth_cap &&
1825 (cap->issued & CEPH_CAP_FILE_WR)) {
1826 /* request larger max_size from MDS? */
1827 if (ci->i_wanted_max_size > ci->i_max_size &&
1828 ci->i_wanted_max_size > ci->i_requested_max_size) {
1829 dout("requesting new max_size\n");
1830 goto ack;
1831 }
1832
1833 /* approaching file_max? */
efb0ca76 1834 if (__ceph_should_report_size(ci)) {
a8599bd8
SW
1835 dout("i_size approaching max_size\n");
1836 goto ack;
1837 }
1838 }
1839 /* flush anything dirty? */
7bc00fdd
YZ
1840 if (cap == ci->i_auth_cap) {
1841 if ((flags & CHECK_CAPS_FLUSH) && ci->i_dirty_caps) {
1842 dout("flushing dirty caps\n");
1843 goto ack;
1844 }
1845 if (ci->i_ceph_flags & CEPH_I_FLUSH_SNAPS) {
1846 dout("flushing snap caps\n");
1847 goto ack;
1848 }
a8599bd8
SW
1849 }
1850
1851 /* completed revocation? going down and there are no caps? */
395c312b 1852 if (revoking && (revoking & cap_used) == 0) {
a8599bd8
SW
1853 dout("completed revocation of %s\n",
1854 ceph_cap_string(cap->implemented & ~cap->issued));
1855 goto ack;
1856 }
1857
1858 /* want more caps from mds? */
1859 if (want & ~(cap->mds_wanted | cap->issued))
1860 goto ack;
1861
1862 /* things we might delay */
1863 if ((cap->issued & ~retain) == 0 &&
1864 cap->mds_wanted == want)
1865 continue; /* nope, all good */
1866
1867 if (is_delayed)
1868 goto ack;
1869
1870 /* delay? */
1871 if ((ci->i_ceph_flags & CEPH_I_NODELAY) == 0 &&
1872 time_before(jiffies, ci->i_hold_caps_max)) {
1873 dout(" delaying issued %s -> %s, wanted %s -> %s\n",
1874 ceph_cap_string(cap->issued),
1875 ceph_cap_string(cap->issued & retain),
1876 ceph_cap_string(cap->mds_wanted),
1877 ceph_cap_string(want));
1878 delayed++;
1879 continue;
1880 }
1881
1882ack:
e9964c10
SW
1883 if (ci->i_ceph_flags & CEPH_I_NOFLUSH) {
1884 dout(" skipping %p I_NOFLUSH set\n", inode);
1885 continue;
1886 }
1887
a8599bd8
SW
1888 if (session && session != cap->session) {
1889 dout("oops, wrong session %p mutex\n", session);
1890 mutex_unlock(&session->s_mutex);
1891 session = NULL;
1892 }
1893 if (!session) {
1894 session = cap->session;
1895 if (mutex_trylock(&session->s_mutex) == 0) {
1896 dout("inverting session/ino locks on %p\n",
1897 session);
be655596 1898 spin_unlock(&ci->i_ceph_lock);
a8599bd8
SW
1899 if (took_snap_rwsem) {
1900 up_read(&mdsc->snap_rwsem);
1901 took_snap_rwsem = 0;
1902 }
1903 mutex_lock(&session->s_mutex);
1904 goto retry;
1905 }
1906 }
7bc00fdd
YZ
1907
1908 /* kick flushing and flush snaps before sending normal
1909 * cap message */
1910 if (cap == ci->i_auth_cap &&
1911 (ci->i_ceph_flags &
1912 (CEPH_I_KICK_FLUSH | CEPH_I_FLUSH_SNAPS))) {
1913 if (ci->i_ceph_flags & CEPH_I_KICK_FLUSH) {
24d063ac 1914 __kick_flushing_caps(mdsc, session, ci, 0);
7bc00fdd
YZ
1915 ci->i_ceph_flags &= ~CEPH_I_KICK_FLUSH;
1916 }
ed9b430c
YZ
1917 if (ci->i_ceph_flags & CEPH_I_FLUSH_SNAPS)
1918 __ceph_flush_snaps(ci, session);
1919
7bc00fdd
YZ
1920 goto retry_locked;
1921 }
1922
a8599bd8
SW
1923 /* take snap_rwsem after session mutex */
1924 if (!took_snap_rwsem) {
1925 if (down_read_trylock(&mdsc->snap_rwsem) == 0) {
1926 dout("inverting snap/in locks on %p\n",
1927 inode);
be655596 1928 spin_unlock(&ci->i_ceph_lock);
a8599bd8
SW
1929 down_read(&mdsc->snap_rwsem);
1930 took_snap_rwsem = 1;
1931 goto retry;
1932 }
1933 took_snap_rwsem = 1;
1934 }
1935
553adfd9 1936 if (cap == ci->i_auth_cap && ci->i_dirty_caps) {
c8799fc4 1937 flushing = __mark_caps_flushing(inode, session, false,
a2971c8c
YZ
1938 &flush_tid,
1939 &oldest_flush_tid);
553adfd9 1940 } else {
24be0c48 1941 flushing = 0;
553adfd9 1942 flush_tid = 0;
a2971c8c
YZ
1943 spin_lock(&mdsc->cap_dirty_lock);
1944 oldest_flush_tid = __get_oldest_flush_tid(mdsc);
1945 spin_unlock(&mdsc->cap_dirty_lock);
553adfd9 1946 }
a8599bd8
SW
1947
1948 mds = cap->mds; /* remember mds, so we don't repeat */
1949 sent++;
1950
be655596 1951 /* __send_cap drops i_ceph_lock */
1e4ef0c6
JL
1952 delayed += __send_cap(mdsc, cap, CEPH_CAP_OP_UPDATE, false,
1953 cap_used, want, retain, flushing,
1954 flush_tid, oldest_flush_tid);
be655596 1955 goto retry; /* retake i_ceph_lock and restart our cap scan. */
a8599bd8
SW
1956 }
1957
1958 /*
1959 * Reschedule delayed caps release if we delayed anything,
1960 * otherwise cancel.
1961 */
1962 if (delayed && is_delayed)
3609404f 1963 force_requeue = true; /* __send_cap delayed release; requeue */
a8599bd8
SW
1964 if (!delayed && !is_delayed)
1965 __cap_delay_cancel(mdsc, ci);
1966 else if (!is_delayed || force_requeue)
1967 __cap_delay_requeue(mdsc, ci);
1968
be655596 1969 spin_unlock(&ci->i_ceph_lock);
a8599bd8 1970
cbd03635 1971 if (queue_invalidate)
3c6f6b79 1972 ceph_queue_invalidate(inode);
cbd03635 1973
cdc2ce05 1974 if (session)
a8599bd8
SW
1975 mutex_unlock(&session->s_mutex);
1976 if (took_snap_rwsem)
1977 up_read(&mdsc->snap_rwsem);
1978}
1979
a8599bd8
SW
1980/*
1981 * Try to flush dirty caps back to the auth mds.
1982 */
553adfd9 1983static int try_flush_caps(struct inode *inode, u64 *ptid)
a8599bd8 1984{
3d14c5d2 1985 struct ceph_mds_client *mdsc = ceph_sb_to_client(inode->i_sb)->mdsc;
a8599bd8 1986 struct ceph_inode_info *ci = ceph_inode(inode);
4fe59789 1987 struct ceph_mds_session *session = NULL;
89b52fe1 1988 int flushing = 0;
a2971c8c 1989 u64 flush_tid = 0, oldest_flush_tid = 0;
a8599bd8
SW
1990
1991retry:
be655596 1992 spin_lock(&ci->i_ceph_lock);
e9964c10 1993 if (ci->i_ceph_flags & CEPH_I_NOFLUSH) {
6c2838fb 1994 spin_unlock(&ci->i_ceph_lock);
e9964c10
SW
1995 dout("try_flush_caps skipping %p I_NOFLUSH set\n", inode);
1996 goto out;
1997 }
a8599bd8
SW
1998 if (ci->i_dirty_caps && ci->i_auth_cap) {
1999 struct ceph_cap *cap = ci->i_auth_cap;
2000 int used = __ceph_caps_used(ci);
2001 int want = __ceph_caps_wanted(ci);
2002 int delayed;
2003
4fe59789 2004 if (!session || session != cap->session) {
be655596 2005 spin_unlock(&ci->i_ceph_lock);
4fe59789
YZ
2006 if (session)
2007 mutex_unlock(&session->s_mutex);
a8599bd8
SW
2008 session = cap->session;
2009 mutex_lock(&session->s_mutex);
2010 goto retry;
2011 }
6c2838fb
JL
2012 if (cap->session->s_state < CEPH_MDS_SESSION_OPEN) {
2013 spin_unlock(&ci->i_ceph_lock);
a8599bd8 2014 goto out;
6c2838fb 2015 }
a8599bd8 2016
c8799fc4
YZ
2017 flushing = __mark_caps_flushing(inode, session, true,
2018 &flush_tid, &oldest_flush_tid);
a8599bd8 2019
be655596 2020 /* __send_cap drops i_ceph_lock */
1e4ef0c6
JL
2021 delayed = __send_cap(mdsc, cap, CEPH_CAP_OP_FLUSH, true,
2022 used, want, (cap->issued | cap->implemented),
2023 flushing, flush_tid, oldest_flush_tid);
a8599bd8 2024
553adfd9
YZ
2025 if (delayed) {
2026 spin_lock(&ci->i_ceph_lock);
89b52fe1 2027 __cap_delay_requeue(mdsc, ci);
553adfd9
YZ
2028 spin_unlock(&ci->i_ceph_lock);
2029 }
2030 } else {
e4500b5e 2031 if (!list_empty(&ci->i_cap_flush_list)) {
553adfd9 2032 struct ceph_cap_flush *cf =
e4500b5e 2033 list_last_entry(&ci->i_cap_flush_list,
c8799fc4
YZ
2034 struct ceph_cap_flush, i_list);
2035 cf->wake = true;
553adfd9
YZ
2036 flush_tid = cf->tid;
2037 }
2038 flushing = ci->i_flushing_caps;
2039 spin_unlock(&ci->i_ceph_lock);
a8599bd8
SW
2040 }
2041out:
4fe59789 2042 if (session)
a8599bd8 2043 mutex_unlock(&session->s_mutex);
553adfd9
YZ
2044
2045 *ptid = flush_tid;
a8599bd8
SW
2046 return flushing;
2047}
2048
2049/*
2050 * Return true if we've flushed caps through the given flush_tid.
2051 */
553adfd9 2052static int caps_are_flushed(struct inode *inode, u64 flush_tid)
a8599bd8
SW
2053{
2054 struct ceph_inode_info *ci = ceph_inode(inode);
553adfd9 2055 int ret = 1;
a8599bd8 2056
be655596 2057 spin_lock(&ci->i_ceph_lock);
e4500b5e
YZ
2058 if (!list_empty(&ci->i_cap_flush_list)) {
2059 struct ceph_cap_flush * cf =
2060 list_first_entry(&ci->i_cap_flush_list,
2061 struct ceph_cap_flush, i_list);
553adfd9 2062 if (cf->tid <= flush_tid)
a8599bd8 2063 ret = 0;
89b52fe1 2064 }
be655596 2065 spin_unlock(&ci->i_ceph_lock);
a8599bd8
SW
2066 return ret;
2067}
2068
da819c81 2069/*
68cd5b4b 2070 * wait for any unsafe requests to complete.
da819c81 2071 */
68cd5b4b 2072static int unsafe_request_wait(struct inode *inode)
da819c81
YZ
2073{
2074 struct ceph_inode_info *ci = ceph_inode(inode);
68cd5b4b
YZ
2075 struct ceph_mds_request *req1 = NULL, *req2 = NULL;
2076 int ret, err = 0;
da819c81
YZ
2077
2078 spin_lock(&ci->i_unsafe_lock);
68cd5b4b
YZ
2079 if (S_ISDIR(inode->i_mode) && !list_empty(&ci->i_unsafe_dirops)) {
2080 req1 = list_last_entry(&ci->i_unsafe_dirops,
2081 struct ceph_mds_request,
2082 r_unsafe_dir_item);
2083 ceph_mdsc_get_request(req1);
2084 }
2085 if (!list_empty(&ci->i_unsafe_iops)) {
2086 req2 = list_last_entry(&ci->i_unsafe_iops,
2087 struct ceph_mds_request,
2088 r_unsafe_target_item);
2089 ceph_mdsc_get_request(req2);
2090 }
2091 spin_unlock(&ci->i_unsafe_lock);
da819c81 2092
4945a084 2093 dout("unsafe_request_wait %p wait on tid %llu %llu\n",
68cd5b4b
YZ
2094 inode, req1 ? req1->r_tid : 0ULL, req2 ? req2->r_tid : 0ULL);
2095 if (req1) {
2096 ret = !wait_for_completion_timeout(&req1->r_safe_completion,
2097 ceph_timeout_jiffies(req1->r_timeout));
da819c81 2098 if (ret)
68cd5b4b
YZ
2099 err = -EIO;
2100 ceph_mdsc_put_request(req1);
2101 }
2102 if (req2) {
2103 ret = !wait_for_completion_timeout(&req2->r_safe_completion,
2104 ceph_timeout_jiffies(req2->r_timeout));
2105 if (ret)
2106 err = -EIO;
2107 ceph_mdsc_put_request(req2);
2108 }
2109 return err;
da819c81
YZ
2110}
2111
02c24a82 2112int ceph_fsync(struct file *file, loff_t start, loff_t end, int datasync)
a8599bd8 2113{
7ea80859 2114 struct inode *inode = file->f_mapping->host;
a8599bd8 2115 struct ceph_inode_info *ci = ceph_inode(inode);
553adfd9 2116 u64 flush_tid;
a8599bd8
SW
2117 int ret;
2118 int dirty;
2119
2120 dout("fsync %p%s\n", inode, datasync ? " datasync" : "");
9a5530c6 2121
b74fceae 2122 ret = file_write_and_wait_range(file, start, end);
a8599bd8 2123 if (ret < 0)
da819c81
YZ
2124 goto out;
2125
2126 if (datasync)
2127 goto out;
2128
5955102c 2129 inode_lock(inode);
a8599bd8 2130
553adfd9 2131 dirty = try_flush_caps(inode, &flush_tid);
a8599bd8
SW
2132 dout("fsync dirty caps are %s\n", ceph_cap_string(dirty));
2133
68cd5b4b 2134 ret = unsafe_request_wait(inode);
da819c81 2135
a8599bd8
SW
2136 /*
2137 * only wait on non-file metadata writeback (the mds
2138 * can recover size and mtime, so we don't need to
2139 * wait for that)
2140 */
da819c81 2141 if (!ret && (dirty & ~CEPH_CAP_ANY_FILE_WR)) {
a8599bd8 2142 ret = wait_event_interruptible(ci->i_cap_wq,
da819c81 2143 caps_are_flushed(inode, flush_tid));
a8599bd8 2144 }
5955102c 2145 inode_unlock(inode);
da819c81
YZ
2146out:
2147 dout("fsync %p%s result=%d\n", inode, datasync ? " datasync" : "", ret);
a8599bd8
SW
2148 return ret;
2149}
2150
2151/*
2152 * Flush any dirty caps back to the mds. If we aren't asked to wait,
2153 * queue inode for flush but don't do so immediately, because we can
2154 * get by with fewer MDS messages if we wait for data writeback to
2155 * complete first.
2156 */
f1a3d572 2157int ceph_write_inode(struct inode *inode, struct writeback_control *wbc)
a8599bd8
SW
2158{
2159 struct ceph_inode_info *ci = ceph_inode(inode);
553adfd9 2160 u64 flush_tid;
a8599bd8
SW
2161 int err = 0;
2162 int dirty;
f1a3d572 2163 int wait = wbc->sync_mode == WB_SYNC_ALL;
a8599bd8
SW
2164
2165 dout("write_inode %p wait=%d\n", inode, wait);
2166 if (wait) {
553adfd9 2167 dirty = try_flush_caps(inode, &flush_tid);
a8599bd8
SW
2168 if (dirty)
2169 err = wait_event_interruptible(ci->i_cap_wq,
2170 caps_are_flushed(inode, flush_tid));
2171 } else {
640ef79d 2172 struct ceph_mds_client *mdsc =
3d14c5d2 2173 ceph_sb_to_client(inode->i_sb)->mdsc;
a8599bd8 2174
be655596 2175 spin_lock(&ci->i_ceph_lock);
a8599bd8
SW
2176 if (__ceph_caps_dirty(ci))
2177 __cap_delay_requeue_front(mdsc, ci);
be655596 2178 spin_unlock(&ci->i_ceph_lock);
a8599bd8
SW
2179 }
2180 return err;
2181}
2182
0e294387
YZ
2183static void __kick_flushing_caps(struct ceph_mds_client *mdsc,
2184 struct ceph_mds_session *session,
2185 struct ceph_inode_info *ci,
2186 u64 oldest_flush_tid)
2187 __releases(ci->i_ceph_lock)
2188 __acquires(ci->i_ceph_lock)
553adfd9
YZ
2189{
2190 struct inode *inode = &ci->vfs_inode;
2191 struct ceph_cap *cap;
2192 struct ceph_cap_flush *cf;
0e294387 2193 int ret;
553adfd9
YZ
2194 u64 first_tid = 0;
2195
e4500b5e
YZ
2196 list_for_each_entry(cf, &ci->i_cap_flush_list, i_list) {
2197 if (cf->tid < first_tid)
2198 continue;
2199
553adfd9
YZ
2200 cap = ci->i_auth_cap;
2201 if (!(cap && cap->session == session)) {
0e294387
YZ
2202 pr_err("%p auth cap %p not mds%d ???\n",
2203 inode, cap, session->s_mds);
553adfd9
YZ
2204 break;
2205 }
2206
553adfd9
YZ
2207 first_tid = cf->tid + 1;
2208
0e294387
YZ
2209 if (cf->caps) {
2210 dout("kick_flushing_caps %p cap %p tid %llu %s\n",
2211 inode, cap, cf->tid, ceph_cap_string(cf->caps));
2212 ci->i_ceph_flags |= CEPH_I_NODELAY;
2213 ret = __send_cap(mdsc, cap, CEPH_CAP_OP_FLUSH,
1e4ef0c6 2214 false, __ceph_caps_used(ci),
0e294387
YZ
2215 __ceph_caps_wanted(ci),
2216 cap->issued | cap->implemented,
2217 cf->caps, cf->tid, oldest_flush_tid);
2218 if (ret) {
2219 pr_err("kick_flushing_caps: error sending "
2220 "cap flush, ino (%llx.%llx) "
2221 "tid %llu flushing %s\n",
2222 ceph_vinop(inode), cf->tid,
2223 ceph_cap_string(cf->caps));
2224 }
2225 } else {
2226 struct ceph_cap_snap *capsnap =
2227 container_of(cf, struct ceph_cap_snap,
2228 cap_flush);
2229 dout("kick_flushing_caps %p capsnap %p tid %llu %s\n",
2230 inode, capsnap, cf->tid,
2231 ceph_cap_string(capsnap->dirty));
2232
805692d0 2233 refcount_inc(&capsnap->nref);
0e294387
YZ
2234 spin_unlock(&ci->i_ceph_lock);
2235
2236 ret = __send_flush_snap(inode, session, capsnap, cap->mseq,
2237 oldest_flush_tid);
2238 if (ret < 0) {
2239 pr_err("kick_flushing_caps: error sending "
2240 "cap flushsnap, ino (%llx.%llx) "
2241 "tid %llu follows %llu\n",
2242 ceph_vinop(inode), cf->tid,
2243 capsnap->follows);
2244 }
2245
2246 ceph_put_cap_snap(capsnap);
2247 }
e4500b5e
YZ
2248
2249 spin_lock(&ci->i_ceph_lock);
553adfd9 2250 }
553adfd9
YZ
2251}
2252
e548e9b9
YZ
2253void ceph_early_kick_flushing_caps(struct ceph_mds_client *mdsc,
2254 struct ceph_mds_session *session)
2255{
2256 struct ceph_inode_info *ci;
2257 struct ceph_cap *cap;
0e294387 2258 u64 oldest_flush_tid;
e548e9b9
YZ
2259
2260 dout("early_kick_flushing_caps mds%d\n", session->s_mds);
0e294387
YZ
2261
2262 spin_lock(&mdsc->cap_dirty_lock);
2263 oldest_flush_tid = __get_oldest_flush_tid(mdsc);
2264 spin_unlock(&mdsc->cap_dirty_lock);
2265
e548e9b9
YZ
2266 list_for_each_entry(ci, &session->s_cap_flushing, i_flushing_item) {
2267 spin_lock(&ci->i_ceph_lock);
2268 cap = ci->i_auth_cap;
2269 if (!(cap && cap->session == session)) {
2270 pr_err("%p auth cap %p not mds%d ???\n",
2271 &ci->vfs_inode, cap, session->s_mds);
2272 spin_unlock(&ci->i_ceph_lock);
2273 continue;
2274 }
2275
2276
2277 /*
2278 * if flushing caps were revoked, we re-send the cap flush
2279 * in client reconnect stage. This guarantees MDS * processes
2280 * the cap flush message before issuing the flushing caps to
2281 * other client.
2282 */
2283 if ((cap->issued & ci->i_flushing_caps) !=
2284 ci->i_flushing_caps) {
13c2b57d 2285 ci->i_ceph_flags &= ~CEPH_I_KICK_FLUSH;
0e294387
YZ
2286 __kick_flushing_caps(mdsc, session, ci,
2287 oldest_flush_tid);
13c2b57d
YZ
2288 } else {
2289 ci->i_ceph_flags |= CEPH_I_KICK_FLUSH;
e548e9b9
YZ
2290 }
2291
e548e9b9
YZ
2292 spin_unlock(&ci->i_ceph_lock);
2293 }
2294}
2295
a8599bd8
SW
2296void ceph_kick_flushing_caps(struct ceph_mds_client *mdsc,
2297 struct ceph_mds_session *session)
2298{
2299 struct ceph_inode_info *ci;
13c2b57d 2300 struct ceph_cap *cap;
0e294387 2301 u64 oldest_flush_tid;
a8599bd8
SW
2302
2303 dout("kick_flushing_caps mds%d\n", session->s_mds);
0e294387
YZ
2304
2305 spin_lock(&mdsc->cap_dirty_lock);
2306 oldest_flush_tid = __get_oldest_flush_tid(mdsc);
2307 spin_unlock(&mdsc->cap_dirty_lock);
2308
a8599bd8 2309 list_for_each_entry(ci, &session->s_cap_flushing, i_flushing_item) {
0e294387 2310 spin_lock(&ci->i_ceph_lock);
13c2b57d
YZ
2311 cap = ci->i_auth_cap;
2312 if (!(cap && cap->session == session)) {
2313 pr_err("%p auth cap %p not mds%d ???\n",
2314 &ci->vfs_inode, cap, session->s_mds);
2315 spin_unlock(&ci->i_ceph_lock);
2316 continue;
2317 }
2318 if (ci->i_ceph_flags & CEPH_I_KICK_FLUSH) {
2319 ci->i_ceph_flags &= ~CEPH_I_KICK_FLUSH;
2320 __kick_flushing_caps(mdsc, session, ci,
2321 oldest_flush_tid);
2322 }
0e294387 2323 spin_unlock(&ci->i_ceph_lock);
a8599bd8
SW
2324 }
2325}
2326
088b3f5e
SW
2327static void kick_flushing_inode_caps(struct ceph_mds_client *mdsc,
2328 struct ceph_mds_session *session,
2329 struct inode *inode)
0e294387 2330 __releases(ci->i_ceph_lock)
088b3f5e
SW
2331{
2332 struct ceph_inode_info *ci = ceph_inode(inode);
2333 struct ceph_cap *cap;
088b3f5e 2334
088b3f5e 2335 cap = ci->i_auth_cap;
8310b089
YZ
2336 dout("kick_flushing_inode_caps %p flushing %s\n", inode,
2337 ceph_cap_string(ci->i_flushing_caps));
005c4697 2338
0e294387
YZ
2339 if (!list_empty(&ci->i_cap_flush_list)) {
2340 u64 oldest_flush_tid;
005c4697
YZ
2341 spin_lock(&mdsc->cap_dirty_lock);
2342 list_move_tail(&ci->i_flushing_item,
2343 &cap->session->s_cap_flushing);
0e294387 2344 oldest_flush_tid = __get_oldest_flush_tid(mdsc);
005c4697
YZ
2345 spin_unlock(&mdsc->cap_dirty_lock);
2346
13c2b57d 2347 ci->i_ceph_flags &= ~CEPH_I_KICK_FLUSH;
0e294387 2348 __kick_flushing_caps(mdsc, session, ci, oldest_flush_tid);
553adfd9 2349 spin_unlock(&ci->i_ceph_lock);
088b3f5e 2350 } else {
be655596 2351 spin_unlock(&ci->i_ceph_lock);
088b3f5e
SW
2352 }
2353}
2354
a8599bd8
SW
2355
2356/*
2357 * Take references to capabilities we hold, so that we don't release
2358 * them to the MDS prematurely.
2359 *
be655596 2360 * Protected by i_ceph_lock.
a8599bd8 2361 */
5dda377c
YZ
2362static void __take_cap_refs(struct ceph_inode_info *ci, int got,
2363 bool snap_rwsem_locked)
a8599bd8
SW
2364{
2365 if (got & CEPH_CAP_PIN)
2366 ci->i_pin_ref++;
2367 if (got & CEPH_CAP_FILE_RD)
2368 ci->i_rd_ref++;
2369 if (got & CEPH_CAP_FILE_CACHE)
2370 ci->i_rdcache_ref++;
5dda377c
YZ
2371 if (got & CEPH_CAP_FILE_WR) {
2372 if (ci->i_wr_ref == 0 && !ci->i_head_snapc) {
2373 BUG_ON(!snap_rwsem_locked);
2374 ci->i_head_snapc = ceph_get_snap_context(
2375 ci->i_snap_realm->cached_context);
2376 }
a8599bd8 2377 ci->i_wr_ref++;
5dda377c 2378 }
a8599bd8 2379 if (got & CEPH_CAP_FILE_BUFFER) {
d3d0720d 2380 if (ci->i_wb_ref == 0)
3772d26d 2381 ihold(&ci->vfs_inode);
d3d0720d
HC
2382 ci->i_wb_ref++;
2383 dout("__take_cap_refs %p wb %d -> %d (?)\n",
2384 &ci->vfs_inode, ci->i_wb_ref-1, ci->i_wb_ref);
a8599bd8
SW
2385 }
2386}
2387
2388/*
2389 * Try to grab cap references. Specify those refs we @want, and the
2390 * minimal set we @need. Also include the larger offset we are writing
2391 * to (when applicable), and check against max_size here as well.
2392 * Note that caller is responsible for ensuring max_size increases are
2393 * requested from the MDS.
2394 */
2395static int try_get_cap_refs(struct ceph_inode_info *ci, int need, int want,
5dda377c 2396 loff_t endoff, bool nonblock, int *got, int *err)
a8599bd8
SW
2397{
2398 struct inode *inode = &ci->vfs_inode;
5dda377c 2399 struct ceph_mds_client *mdsc = ceph_inode_to_client(inode)->mdsc;
a8599bd8 2400 int ret = 0;
c4d4a582 2401 int have, implemented;
195d3ce2 2402 int file_wanted;
5dda377c 2403 bool snap_rwsem_locked = false;
a8599bd8
SW
2404
2405 dout("get_cap_refs %p need %s want %s\n", inode,
2406 ceph_cap_string(need), ceph_cap_string(want));
c4d4a582 2407
5dda377c 2408again:
be655596 2409 spin_lock(&ci->i_ceph_lock);
a8599bd8 2410
195d3ce2
SW
2411 /* make sure file is actually open */
2412 file_wanted = __ceph_caps_file_wanted(ci);
77310320 2413 if ((file_wanted & need) != need) {
195d3ce2
SW
2414 dout("try_get_cap_refs need %s file_wanted %s, EBADF\n",
2415 ceph_cap_string(need), ceph_cap_string(file_wanted));
a8599bd8
SW
2416 *err = -EBADF;
2417 ret = 1;
3738daa6 2418 goto out_unlock;
a8599bd8
SW
2419 }
2420
37505d57
YZ
2421 /* finish pending truncate */
2422 while (ci->i_truncate_pending) {
2423 spin_unlock(&ci->i_ceph_lock);
5dda377c
YZ
2424 if (snap_rwsem_locked) {
2425 up_read(&mdsc->snap_rwsem);
2426 snap_rwsem_locked = false;
2427 }
b415bf4f 2428 __ceph_do_pending_vmtruncate(inode);
37505d57
YZ
2429 spin_lock(&ci->i_ceph_lock);
2430 }
2431
3871cbb9
YZ
2432 have = __ceph_caps_issued(ci, &implemented);
2433
2434 if (have & need & CEPH_CAP_FILE_WR) {
a8599bd8
SW
2435 if (endoff >= 0 && endoff > (loff_t)ci->i_max_size) {
2436 dout("get_cap_refs %p endoff %llu > maxsize %llu\n",
2437 inode, endoff, ci->i_max_size);
3871cbb9 2438 if (endoff > ci->i_requested_max_size) {
5dda377c 2439 *err = -EAGAIN;
a8599bd8
SW
2440 ret = 1;
2441 }
3738daa6 2442 goto out_unlock;
a8599bd8
SW
2443 }
2444 /*
2445 * If a sync write is in progress, we must wait, so that we
2446 * can get a final snapshot value for size+mtime.
2447 */
2448 if (__ceph_have_pending_cap_snap(ci)) {
2449 dout("get_cap_refs %p cap_snap_pending\n", inode);
3738daa6 2450 goto out_unlock;
a8599bd8
SW
2451 }
2452 }
a8599bd8 2453
a8599bd8
SW
2454 if ((have & need) == need) {
2455 /*
2456 * Look at (implemented & ~have & not) so that we keep waiting
2457 * on transition from wanted -> needed caps. This is needed
2458 * for WRBUFFER|WR -> WR to avoid a new WR sync write from
2459 * going before a prior buffered writeback happens.
2460 */
2461 int not = want & ~(have & need);
2462 int revoking = implemented & ~have;
2463 dout("get_cap_refs %p have %s but not %s (revoking %s)\n",
2464 inode, ceph_cap_string(have), ceph_cap_string(not),
2465 ceph_cap_string(revoking));
2466 if ((revoking & not) == 0) {
5dda377c
YZ
2467 if (!snap_rwsem_locked &&
2468 !ci->i_head_snapc &&
2469 (need & CEPH_CAP_FILE_WR)) {
2470 if (!down_read_trylock(&mdsc->snap_rwsem)) {
2471 /*
2472 * we can not call down_read() when
2473 * task isn't in TASK_RUNNING state
2474 */
2475 if (nonblock) {
2476 *err = -EAGAIN;
2477 ret = 1;
2478 goto out_unlock;
2479 }
2480
2481 spin_unlock(&ci->i_ceph_lock);
2482 down_read(&mdsc->snap_rwsem);
2483 snap_rwsem_locked = true;
2484 goto again;
2485 }
2486 snap_rwsem_locked = true;
2487 }
c4d4a582 2488 *got = need | (have & want);
f7f7e7a0
YZ
2489 if ((need & CEPH_CAP_FILE_RD) &&
2490 !(*got & CEPH_CAP_FILE_CACHE))
2491 ceph_disable_fscache_readpage(ci);
5dda377c 2492 __take_cap_refs(ci, *got, true);
a8599bd8
SW
2493 ret = 1;
2494 }
2495 } else {
03f4fcb0
YZ
2496 int session_readonly = false;
2497 if ((need & CEPH_CAP_FILE_WR) && ci->i_auth_cap) {
2498 struct ceph_mds_session *s = ci->i_auth_cap->session;
2499 spin_lock(&s->s_cap_lock);
2500 session_readonly = s->s_readonly;
2501 spin_unlock(&s->s_cap_lock);
2502 }
2503 if (session_readonly) {
2504 dout("get_cap_refs %p needed %s but mds%d readonly\n",
2505 inode, ceph_cap_string(need), ci->i_auth_cap->mds);
2506 *err = -EROFS;
2507 ret = 1;
2508 goto out_unlock;
2509 }
2510
77310320
YZ
2511 if (ci->i_ceph_flags & CEPH_I_CAP_DROPPED) {
2512 int mds_wanted;
52953d55 2513 if (READ_ONCE(mdsc->fsc->mount_state) ==
77310320
YZ
2514 CEPH_MOUNT_SHUTDOWN) {
2515 dout("get_cap_refs %p forced umount\n", inode);
2516 *err = -EIO;
2517 ret = 1;
2518 goto out_unlock;
2519 }
c1944fed 2520 mds_wanted = __ceph_caps_mds_wanted(ci, false);
eb65b919 2521 if (need & ~(mds_wanted & need)) {
77310320
YZ
2522 dout("get_cap_refs %p caps were dropped"
2523 " (session killed?)\n", inode);
2524 *err = -ESTALE;
2525 ret = 1;
2526 goto out_unlock;
2527 }
eb65b919 2528 if (!(file_wanted & ~mds_wanted))
77310320 2529 ci->i_ceph_flags &= ~CEPH_I_CAP_DROPPED;
48fec5d0
YZ
2530 }
2531
a8599bd8
SW
2532 dout("get_cap_refs %p have %s needed %s\n", inode,
2533 ceph_cap_string(have), ceph_cap_string(need));
2534 }
3738daa6 2535out_unlock:
be655596 2536 spin_unlock(&ci->i_ceph_lock);
5dda377c
YZ
2537 if (snap_rwsem_locked)
2538 up_read(&mdsc->snap_rwsem);
3738daa6 2539
a8599bd8 2540 dout("get_cap_refs %p ret %d got %s\n", inode,
c4d4a582 2541 ret, ceph_cap_string(*got));
a8599bd8
SW
2542 return ret;
2543}
2544
2545/*
2546 * Check the offset we are writing up to against our current
2547 * max_size. If necessary, tell the MDS we want to write to
2548 * a larger offset.
2549 */
2550static void check_max_size(struct inode *inode, loff_t endoff)
2551{
2552 struct ceph_inode_info *ci = ceph_inode(inode);
2553 int check = 0;
2554
2555 /* do we need to explicitly request a larger max_size? */
be655596 2556 spin_lock(&ci->i_ceph_lock);
3871cbb9 2557 if (endoff >= ci->i_max_size && endoff > ci->i_wanted_max_size) {
a8599bd8
SW
2558 dout("write %p at large endoff %llu, req max_size\n",
2559 inode, endoff);
2560 ci->i_wanted_max_size = endoff;
a8599bd8 2561 }
3871cbb9
YZ
2562 /* duplicate ceph_check_caps()'s logic */
2563 if (ci->i_auth_cap &&
2564 (ci->i_auth_cap->issued & CEPH_CAP_FILE_WR) &&
2565 ci->i_wanted_max_size > ci->i_max_size &&
2566 ci->i_wanted_max_size > ci->i_requested_max_size)
2567 check = 1;
be655596 2568 spin_unlock(&ci->i_ceph_lock);
a8599bd8
SW
2569 if (check)
2570 ceph_check_caps(ci, CHECK_CAPS_AUTHONLY, NULL);
2571}
2572
2b1ac852
YZ
2573int ceph_try_get_caps(struct ceph_inode_info *ci, int need, int want, int *got)
2574{
2575 int ret, err = 0;
2576
2577 BUG_ON(need & ~CEPH_CAP_FILE_RD);
2578 BUG_ON(want & ~(CEPH_CAP_FILE_CACHE|CEPH_CAP_FILE_LAZYIO));
2579 ret = ceph_pool_perm_check(ci, need);
2580 if (ret < 0)
2581 return ret;
2582
2583 ret = try_get_cap_refs(ci, need, want, 0, true, got, &err);
2584 if (ret) {
2585 if (err == -EAGAIN) {
2586 ret = 0;
2587 } else if (err < 0) {
2588 ret = err;
2589 }
2590 }
2591 return ret;
2592}
2593
a8599bd8
SW
2594/*
2595 * Wait for caps, and take cap references. If we can't get a WR cap
2596 * due to a small max_size, make sure we check_max_size (and possibly
2597 * ask the mds) so we don't get hung up indefinitely.
2598 */
3738daa6
YZ
2599int ceph_get_caps(struct ceph_inode_info *ci, int need, int want,
2600 loff_t endoff, int *got, struct page **pinned_page)
a8599bd8 2601{
5dda377c 2602 int _got, ret, err = 0;
a8599bd8 2603
10183a69
YZ
2604 ret = ceph_pool_perm_check(ci, need);
2605 if (ret < 0)
2606 return ret;
2607
5dda377c
YZ
2608 while (true) {
2609 if (endoff > 0)
2610 check_max_size(&ci->vfs_inode, endoff);
c4d4a582 2611
5dda377c
YZ
2612 err = 0;
2613 _got = 0;
2614 ret = try_get_cap_refs(ci, need, want, endoff,
2615 false, &_got, &err);
2616 if (ret) {
2617 if (err == -EAGAIN)
2618 continue;
2619 if (err < 0)
77310320 2620 ret = err;
5dda377c 2621 } else {
5c341ee3
NB
2622 DEFINE_WAIT_FUNC(wait, woken_wake_function);
2623 add_wait_queue(&ci->i_cap_wq, &wait);
2624
2625 while (!try_get_cap_refs(ci, need, want, endoff,
6e09d0fb
YZ
2626 true, &_got, &err)) {
2627 if (signal_pending(current)) {
2628 ret = -ERESTARTSYS;
2629 break;
2630 }
5c341ee3 2631 wait_woken(&wait, TASK_INTERRUPTIBLE, MAX_SCHEDULE_TIMEOUT);
6e09d0fb 2632 }
5c341ee3
NB
2633
2634 remove_wait_queue(&ci->i_cap_wq, &wait);
2635
5dda377c
YZ
2636 if (err == -EAGAIN)
2637 continue;
2638 if (err < 0)
2639 ret = err;
77310320
YZ
2640 }
2641 if (ret < 0) {
2642 if (err == -ESTALE) {
2643 /* session was killed, try renew caps */
2644 ret = ceph_renew_caps(&ci->vfs_inode);
2645 if (ret == 0)
2646 continue;
2647 }
2648 return ret;
5dda377c 2649 }
c4d4a582 2650
5dda377c
YZ
2651 if (ci->i_inline_version != CEPH_INLINE_NONE &&
2652 (_got & (CEPH_CAP_FILE_CACHE|CEPH_CAP_FILE_LAZYIO)) &&
2653 i_size_read(&ci->vfs_inode) > 0) {
2654 struct page *page =
2655 find_get_page(ci->vfs_inode.i_mapping, 0);
2656 if (page) {
2657 if (PageUptodate(page)) {
2658 *pinned_page = page;
2659 break;
2660 }
09cbfeaf 2661 put_page(page);
c4d4a582 2662 }
5dda377c
YZ
2663 /*
2664 * drop cap refs first because getattr while
2665 * holding * caps refs can cause deadlock.
2666 */
2667 ceph_put_cap_refs(ci, _got);
2668 _got = 0;
c4d4a582 2669
5dda377c
YZ
2670 /*
2671 * getattr request will bring inline data into
2672 * page cache
2673 */
2674 ret = __ceph_do_getattr(&ci->vfs_inode, NULL,
2675 CEPH_STAT_CAP_INLINE_DATA,
2676 true);
2677 if (ret < 0)
2678 return ret;
2679 continue;
2680 }
2681 break;
c4d4a582 2682 }
5dda377c 2683
f7f7e7a0
YZ
2684 if ((_got & CEPH_CAP_FILE_RD) && (_got & CEPH_CAP_FILE_CACHE))
2685 ceph_fscache_revalidate_cookie(ci);
2686
c4d4a582
YZ
2687 *got = _got;
2688 return 0;
a8599bd8
SW
2689}
2690
2691/*
2692 * Take cap refs. Caller must already know we hold at least one ref
2693 * on the caps in question or we don't know this is safe.
2694 */
2695void ceph_get_cap_refs(struct ceph_inode_info *ci, int caps)
2696{
be655596 2697 spin_lock(&ci->i_ceph_lock);
5dda377c 2698 __take_cap_refs(ci, caps, false);
be655596 2699 spin_unlock(&ci->i_ceph_lock);
a8599bd8
SW
2700}
2701
86056090
YZ
2702
2703/*
2704 * drop cap_snap that is not associated with any snapshot.
2705 * we don't need to send FLUSHSNAP message for it.
2706 */
70220ac8
YZ
2707static int ceph_try_drop_cap_snap(struct ceph_inode_info *ci,
2708 struct ceph_cap_snap *capsnap)
86056090
YZ
2709{
2710 if (!capsnap->need_flush &&
2711 !capsnap->writing && !capsnap->dirty_pages) {
86056090
YZ
2712 dout("dropping cap_snap %p follows %llu\n",
2713 capsnap, capsnap->follows);
0e294387 2714 BUG_ON(capsnap->cap_flush.tid > 0);
86056090 2715 ceph_put_snap_context(capsnap->context);
70220ac8
YZ
2716 if (!list_is_last(&capsnap->ci_item, &ci->i_cap_snaps))
2717 ci->i_ceph_flags |= CEPH_I_FLUSH_SNAPS;
2718
86056090 2719 list_del(&capsnap->ci_item);
86056090
YZ
2720 ceph_put_cap_snap(capsnap);
2721 return 1;
2722 }
2723 return 0;
2724}
2725
a8599bd8
SW
2726/*
2727 * Release cap refs.
2728 *
2729 * If we released the last ref on any given cap, call ceph_check_caps
2730 * to release (or schedule a release).
2731 *
2732 * If we are releasing a WR cap (from a sync write), finalize any affected
2733 * cap_snap, and wake up any waiters.
2734 */
2735void ceph_put_cap_refs(struct ceph_inode_info *ci, int had)
2736{
2737 struct inode *inode = &ci->vfs_inode;
2738 int last = 0, put = 0, flushsnaps = 0, wake = 0;
a8599bd8 2739
be655596 2740 spin_lock(&ci->i_ceph_lock);
a8599bd8
SW
2741 if (had & CEPH_CAP_PIN)
2742 --ci->i_pin_ref;
2743 if (had & CEPH_CAP_FILE_RD)
2744 if (--ci->i_rd_ref == 0)
2745 last++;
2746 if (had & CEPH_CAP_FILE_CACHE)
2747 if (--ci->i_rdcache_ref == 0)
2748 last++;
2749 if (had & CEPH_CAP_FILE_BUFFER) {
d3d0720d 2750 if (--ci->i_wb_ref == 0) {
a8599bd8
SW
2751 last++;
2752 put++;
2753 }
d3d0720d
HC
2754 dout("put_cap_refs %p wb %d -> %d (?)\n",
2755 inode, ci->i_wb_ref+1, ci->i_wb_ref);
a8599bd8
SW
2756 }
2757 if (had & CEPH_CAP_FILE_WR)
2758 if (--ci->i_wr_ref == 0) {
2759 last++;
86056090
YZ
2760 if (__ceph_have_pending_cap_snap(ci)) {
2761 struct ceph_cap_snap *capsnap =
2762 list_last_entry(&ci->i_cap_snaps,
2763 struct ceph_cap_snap,
2764 ci_item);
2765 capsnap->writing = 0;
70220ac8 2766 if (ceph_try_drop_cap_snap(ci, capsnap))
86056090
YZ
2767 put++;
2768 else if (__ceph_finish_cap_snap(ci, capsnap))
2769 flushsnaps = 1;
2770 wake = 1;
a8599bd8 2771 }
5dda377c
YZ
2772 if (ci->i_wrbuffer_ref_head == 0 &&
2773 ci->i_dirty_caps == 0 &&
2774 ci->i_flushing_caps == 0) {
2775 BUG_ON(!ci->i_head_snapc);
2776 ceph_put_snap_context(ci->i_head_snapc);
2777 ci->i_head_snapc = NULL;
2778 }
db40cc17
YZ
2779 /* see comment in __ceph_remove_cap() */
2780 if (!__ceph_is_any_caps(ci) && ci->i_snap_realm)
2781 drop_inode_snap_realm(ci);
a8599bd8 2782 }
be655596 2783 spin_unlock(&ci->i_ceph_lock);
a8599bd8 2784
819ccbfa
SW
2785 dout("put_cap_refs %p had %s%s%s\n", inode, ceph_cap_string(had),
2786 last ? " last" : "", put ? " put" : "");
a8599bd8
SW
2787
2788 if (last && !flushsnaps)
2789 ceph_check_caps(ci, 0, NULL);
2790 else if (flushsnaps)
ed9b430c 2791 ceph_flush_snaps(ci, NULL);
a8599bd8 2792 if (wake)
03066f23 2793 wake_up_all(&ci->i_cap_wq);
86056090 2794 while (put-- > 0)
a8599bd8
SW
2795 iput(inode);
2796}
2797
2798/*
2799 * Release @nr WRBUFFER refs on dirty pages for the given @snapc snap
2800 * context. Adjust per-snap dirty page accounting as appropriate.
2801 * Once all dirty data for a cap_snap is flushed, flush snapped file
2802 * metadata back to the MDS. If we dropped the last ref, call
2803 * ceph_check_caps.
2804 */
2805void ceph_put_wrbuffer_cap_refs(struct ceph_inode_info *ci, int nr,
2806 struct ceph_snap_context *snapc)
2807{
2808 struct inode *inode = &ci->vfs_inode;
a8599bd8 2809 struct ceph_cap_snap *capsnap = NULL;
70220ac8
YZ
2810 int put = 0;
2811 bool last = false;
2812 bool found = false;
2813 bool flush_snaps = false;
2814 bool complete_capsnap = false;
a8599bd8 2815
be655596 2816 spin_lock(&ci->i_ceph_lock);
a8599bd8 2817 ci->i_wrbuffer_ref -= nr;
70220ac8
YZ
2818 if (ci->i_wrbuffer_ref == 0) {
2819 last = true;
2820 put++;
2821 }
a8599bd8
SW
2822
2823 if (ci->i_head_snapc == snapc) {
2824 ci->i_wrbuffer_ref_head -= nr;
7d8cb26d 2825 if (ci->i_wrbuffer_ref_head == 0 &&
5dda377c
YZ
2826 ci->i_wr_ref == 0 &&
2827 ci->i_dirty_caps == 0 &&
2828 ci->i_flushing_caps == 0) {
7d8cb26d 2829 BUG_ON(!ci->i_head_snapc);
a8599bd8
SW
2830 ceph_put_snap_context(ci->i_head_snapc);
2831 ci->i_head_snapc = NULL;
2832 }
2833 dout("put_wrbuffer_cap_refs on %p head %d/%d -> %d/%d %s\n",
2834 inode,
2835 ci->i_wrbuffer_ref+nr, ci->i_wrbuffer_ref_head+nr,
2836 ci->i_wrbuffer_ref, ci->i_wrbuffer_ref_head,
2837 last ? " LAST" : "");
2838 } else {
2839 list_for_each_entry(capsnap, &ci->i_cap_snaps, ci_item) {
2840 if (capsnap->context == snapc) {
70220ac8 2841 found = true;
a8599bd8
SW
2842 break;
2843 }
2844 }
2845 BUG_ON(!found);
819ccbfa
SW
2846 capsnap->dirty_pages -= nr;
2847 if (capsnap->dirty_pages == 0) {
70220ac8
YZ
2848 complete_capsnap = true;
2849 if (!capsnap->writing) {
2850 if (ceph_try_drop_cap_snap(ci, capsnap)) {
2851 put++;
2852 } else {
2853 ci->i_ceph_flags |= CEPH_I_FLUSH_SNAPS;
2854 flush_snaps = true;
2855 }
2856 }
819ccbfa 2857 }
a8599bd8 2858 dout("put_wrbuffer_cap_refs on %p cap_snap %p "
86056090 2859 " snap %lld %d/%d -> %d/%d %s%s\n",
a8599bd8
SW
2860 inode, capsnap, capsnap->context->seq,
2861 ci->i_wrbuffer_ref+nr, capsnap->dirty_pages + nr,
2862 ci->i_wrbuffer_ref, capsnap->dirty_pages,
2863 last ? " (wrbuffer last)" : "",
86056090 2864 complete_capsnap ? " (complete capsnap)" : "");
a8599bd8
SW
2865 }
2866
be655596 2867 spin_unlock(&ci->i_ceph_lock);
a8599bd8
SW
2868
2869 if (last) {
2870 ceph_check_caps(ci, CHECK_CAPS_AUTHONLY, NULL);
70220ac8 2871 } else if (flush_snaps) {
ed9b430c 2872 ceph_flush_snaps(ci, NULL);
a8599bd8 2873 }
70220ac8
YZ
2874 if (complete_capsnap)
2875 wake_up_all(&ci->i_cap_wq);
2876 while (put-- > 0)
819ccbfa 2877 iput(inode);
a8599bd8
SW
2878}
2879
ca20c991
YZ
2880/*
2881 * Invalidate unlinked inode's aliases, so we can drop the inode ASAP.
2882 */
2883static void invalidate_aliases(struct inode *inode)
2884{
2885 struct dentry *dn, *prev = NULL;
2886
2887 dout("invalidate_aliases inode %p\n", inode);
2888 d_prune_aliases(inode);
2889 /*
2890 * For non-directory inode, d_find_alias() only returns
fc12c80a
BF
2891 * hashed dentry. After calling d_invalidate(), the
2892 * dentry becomes unhashed.
ca20c991 2893 *
a8d436f0 2894 * For directory inode, d_find_alias() can return
fc12c80a 2895 * unhashed dentry. But directory inode should have
ca20c991
YZ
2896 * one alias at most.
2897 */
2898 while ((dn = d_find_alias(inode))) {
2899 if (dn == prev) {
2900 dput(dn);
2901 break;
2902 }
a8d436f0 2903 d_invalidate(dn);
ca20c991
YZ
2904 if (prev)
2905 dput(prev);
2906 prev = dn;
2907 }
2908 if (prev)
2909 dput(prev);
2910}
2911
a8599bd8
SW
2912/*
2913 * Handle a cap GRANT message from the MDS. (Note that a GRANT may
2914 * actually be a revocation if it specifies a smaller cap set.)
2915 *
be655596 2916 * caller holds s_mutex and i_ceph_lock, we drop both.
a8599bd8 2917 */
2cd698be
YZ
2918static void handle_cap_grant(struct ceph_mds_client *mdsc,
2919 struct inode *inode, struct ceph_mds_caps *grant,
779fe0fb
YZ
2920 struct ceph_string **pns, u64 inline_version,
2921 void *inline_data, u32 inline_len,
2cd698be 2922 struct ceph_buffer *xattr_buf,
15637c8b 2923 struct ceph_mds_session *session,
779fe0fb 2924 struct ceph_cap *cap, int issued)
2cd698be 2925 __releases(ci->i_ceph_lock)
982d6011 2926 __releases(mdsc->snap_rwsem)
a8599bd8
SW
2927{
2928 struct ceph_inode_info *ci = ceph_inode(inode);
2929 int mds = session->s_mds;
2f56f56a 2930 int seq = le32_to_cpu(grant->seq);
a8599bd8 2931 int newcaps = le32_to_cpu(grant->caps);
2cd698be 2932 int used, wanted, dirty;
a8599bd8
SW
2933 u64 size = le64_to_cpu(grant->size);
2934 u64 max_size = le64_to_cpu(grant->max_size);
2935 struct timespec mtime, atime, ctime;
15637c8b 2936 int check_caps = 0;
ab6c2c3e
FF
2937 bool wake = false;
2938 bool writeback = false;
2939 bool queue_trunc = false;
2940 bool queue_invalidate = false;
ab6c2c3e 2941 bool deleted_inode = false;
31c542a1 2942 bool fill_inline = false;
a8599bd8 2943
2f56f56a
SW
2944 dout("handle_cap_grant inode %p cap %p mds%d seq %d %s\n",
2945 inode, cap, mds, seq, ceph_cap_string(newcaps));
a8599bd8
SW
2946 dout(" size %llu max_size %llu, i_size %llu\n", size, max_size,
2947 inode->i_size);
2948
11df2dfb
YZ
2949
2950 /*
2951 * auth mds of the inode changed. we received the cap export message,
2952 * but still haven't received the cap import message. handle_cap_export
2953 * updated the new auth MDS' cap.
2954 *
2955 * "ceph_seq_cmp(seq, cap->seq) <= 0" means we are processing a message
2956 * that was sent before the cap import message. So don't remove caps.
2957 */
2958 if (ceph_seq_cmp(seq, cap->seq) <= 0) {
2959 WARN_ON(cap != ci->i_auth_cap);
2960 WARN_ON(cap->cap_id != le64_to_cpu(grant->cap_id));
2961 seq = cap->seq;
2962 newcaps |= cap->issued;
2963 }
2964
a8599bd8
SW
2965 /*
2966 * If CACHE is being revoked, and we have no dirty buffers,
2967 * try to invalidate (once). (If there are dirty buffers, we
2968 * will invalidate _after_ writeback.)
2969 */
fdd4e158
YZ
2970 if (!S_ISDIR(inode->i_mode) && /* don't invalidate readdir cache */
2971 ((cap->issued & ~newcaps) & CEPH_CAP_FILE_CACHE) &&
3b454c49 2972 (newcaps & CEPH_CAP_FILE_LAZYIO) == 0 &&
9abd4db7 2973 !(ci->i_wrbuffer_ref || ci->i_wb_ref)) {
e9075743 2974 if (try_nonblocking_invalidate(inode)) {
a8599bd8
SW
2975 /* there were locked pages.. invalidate later
2976 in a separate thread. */
2977 if (ci->i_rdcache_revoking != ci->i_rdcache_gen) {
ab6c2c3e 2978 queue_invalidate = true;
a8599bd8
SW
2979 ci->i_rdcache_revoking = ci->i_rdcache_gen;
2980 }
a8599bd8 2981 }
a8599bd8
SW
2982 }
2983
2984 /* side effects now are allowed */
685f9a5d 2985 cap->cap_gen = session->s_cap_gen;
11df2dfb 2986 cap->seq = seq;
a8599bd8
SW
2987
2988 __check_cap_issue(ci, cap, newcaps);
2989
f98a128a
YZ
2990 if ((newcaps & CEPH_CAP_AUTH_SHARED) &&
2991 (issued & CEPH_CAP_AUTH_EXCL) == 0) {
a8599bd8 2992 inode->i_mode = le32_to_cpu(grant->mode);
05cb11c1
EB
2993 inode->i_uid = make_kuid(&init_user_ns, le32_to_cpu(grant->uid));
2994 inode->i_gid = make_kgid(&init_user_ns, le32_to_cpu(grant->gid));
a8599bd8 2995 dout("%p mode 0%o uid.gid %d.%d\n", inode, inode->i_mode,
bd2bae6a
EB
2996 from_kuid(&init_user_ns, inode->i_uid),
2997 from_kgid(&init_user_ns, inode->i_gid));
a8599bd8
SW
2998 }
2999
f98a128a
YZ
3000 if ((newcaps & CEPH_CAP_AUTH_SHARED) &&
3001 (issued & CEPH_CAP_LINK_EXCL) == 0) {
bfe86848 3002 set_nlink(inode, le32_to_cpu(grant->nlink));
ca20c991
YZ
3003 if (inode->i_nlink == 0 &&
3004 (newcaps & (CEPH_CAP_LINK_SHARED | CEPH_CAP_LINK_EXCL)))
ab6c2c3e 3005 deleted_inode = true;
ca20c991 3006 }
a8599bd8
SW
3007
3008 if ((issued & CEPH_CAP_XATTR_EXCL) == 0 && grant->xattr_len) {
3009 int len = le32_to_cpu(grant->xattr_len);
3010 u64 version = le64_to_cpu(grant->xattr_version);
3011
3012 if (version > ci->i_xattrs.version) {
3013 dout(" got new xattrs v%llu on %p len %d\n",
3014 version, inode, len);
3015 if (ci->i_xattrs.blob)
3016 ceph_buffer_put(ci->i_xattrs.blob);
3017 ci->i_xattrs.blob = ceph_buffer_get(xattr_buf);
3018 ci->i_xattrs.version = version;
7221fe4c 3019 ceph_forget_all_cached_acls(inode);
a8599bd8
SW
3020 }
3021 }
3022
f98a128a
YZ
3023 if (newcaps & CEPH_CAP_ANY_RD) {
3024 /* ctime/mtime/atime? */
3025 ceph_decode_timespec(&mtime, &grant->mtime);
3026 ceph_decode_timespec(&atime, &grant->atime);
3027 ceph_decode_timespec(&ctime, &grant->ctime);
3028 ceph_fill_file_time(inode, issued,
3029 le32_to_cpu(grant->time_warp_seq),
3030 &ctime, &mtime, &atime);
3031 }
3032
3033 if (newcaps & (CEPH_CAP_ANY_FILE_RD | CEPH_CAP_ANY_FILE_WR)) {
3034 /* file layout may have changed */
7627151e 3035 s64 old_pool = ci->i_layout.pool_id;
779fe0fb
YZ
3036 struct ceph_string *old_ns;
3037
7627151e 3038 ceph_file_layout_from_legacy(&ci->i_layout, &grant->layout);
779fe0fb
YZ
3039 old_ns = rcu_dereference_protected(ci->i_layout.pool_ns,
3040 lockdep_is_held(&ci->i_ceph_lock));
3041 rcu_assign_pointer(ci->i_layout.pool_ns, *pns);
3042
3043 if (ci->i_layout.pool_id != old_pool || *pns != old_ns)
7627151e 3044 ci->i_ceph_flags &= ~CEPH_I_POOL_PERM;
5ea5c5e0 3045
779fe0fb
YZ
3046 *pns = old_ns;
3047
f98a128a
YZ
3048 /* size/truncate_seq? */
3049 queue_trunc = ceph_fill_file_size(inode, issued,
3050 le32_to_cpu(grant->truncate_seq),
3051 le64_to_cpu(grant->truncate_size),
3052 size);
84eea8c7
YZ
3053 }
3054
3055 if (ci->i_auth_cap == cap && (newcaps & CEPH_CAP_ANY_FILE_WR)) {
3056 if (max_size != ci->i_max_size) {
f98a128a
YZ
3057 dout("max_size %lld -> %llu\n",
3058 ci->i_max_size, max_size);
3059 ci->i_max_size = max_size;
3060 if (max_size >= ci->i_wanted_max_size) {
3061 ci->i_wanted_max_size = 0; /* reset */
3062 ci->i_requested_max_size = 0;
3063 }
ab6c2c3e 3064 wake = true;
84eea8c7
YZ
3065 } else if (ci->i_wanted_max_size > ci->i_max_size &&
3066 ci->i_wanted_max_size > ci->i_requested_max_size) {
3067 /* CEPH_CAP_OP_IMPORT */
3068 wake = true;
a8599bd8 3069 }
a8599bd8
SW
3070 }
3071
3072 /* check cap bits */
3073 wanted = __ceph_caps_wanted(ci);
3074 used = __ceph_caps_used(ci);
3075 dirty = __ceph_caps_dirty(ci);
3076 dout(" my wanted = %s, used = %s, dirty %s\n",
3077 ceph_cap_string(wanted),
3078 ceph_cap_string(used),
3079 ceph_cap_string(dirty));
3080 if (wanted != le32_to_cpu(grant->wanted)) {
3081 dout("mds wanted %s -> %s\n",
3082 ceph_cap_string(le32_to_cpu(grant->wanted)),
3083 ceph_cap_string(wanted));
390306c3
YZ
3084 /* imported cap may not have correct mds_wanted */
3085 if (le32_to_cpu(grant->op) == CEPH_CAP_OP_IMPORT)
3086 check_caps = 1;
a8599bd8
SW
3087 }
3088
a8599bd8
SW
3089 /* revocation, grant, or no-op? */
3090 if (cap->issued & ~newcaps) {
3b454c49
SW
3091 int revoking = cap->issued & ~newcaps;
3092
3093 dout("revocation: %s -> %s (revoking %s)\n",
3094 ceph_cap_string(cap->issued),
3095 ceph_cap_string(newcaps),
3096 ceph_cap_string(revoking));
0eb6cd49 3097 if (revoking & used & CEPH_CAP_FILE_BUFFER)
ab6c2c3e 3098 writeback = true; /* initiate writeback; will delay ack */
3b454c49
SW
3099 else if (revoking == CEPH_CAP_FILE_CACHE &&
3100 (newcaps & CEPH_CAP_FILE_LAZYIO) == 0 &&
3101 queue_invalidate)
3102 ; /* do nothing yet, invalidation will be queued */
3103 else if (cap == ci->i_auth_cap)
3104 check_caps = 1; /* check auth cap only */
3105 else
3106 check_caps = 2; /* check all caps */
a8599bd8 3107 cap->issued = newcaps;
978097c9 3108 cap->implemented |= newcaps;
a8599bd8
SW
3109 } else if (cap->issued == newcaps) {
3110 dout("caps unchanged: %s -> %s\n",
3111 ceph_cap_string(cap->issued), ceph_cap_string(newcaps));
3112 } else {
3113 dout("grant: %s -> %s\n", ceph_cap_string(cap->issued),
3114 ceph_cap_string(newcaps));
6ee6b953
YZ
3115 /* non-auth MDS is revoking the newly grant caps ? */
3116 if (cap == ci->i_auth_cap &&
3117 __ceph_caps_revoking_other(ci, cap, newcaps))
3118 check_caps = 2;
3119
a8599bd8
SW
3120 cap->issued = newcaps;
3121 cap->implemented |= newcaps; /* add bits only, to
3122 * avoid stepping on a
3123 * pending revocation */
ab6c2c3e 3124 wake = true;
a8599bd8 3125 }
978097c9 3126 BUG_ON(cap->issued & ~cap->implemented);
a8599bd8 3127
31c542a1
YZ
3128 if (inline_version > 0 && inline_version >= ci->i_inline_version) {
3129 ci->i_inline_version = inline_version;
3130 if (ci->i_inline_version != CEPH_INLINE_NONE &&
3131 (newcaps & (CEPH_CAP_FILE_CACHE|CEPH_CAP_FILE_LAZYIO)))
3132 fill_inline = true;
3133 }
3134
2cd698be 3135 if (le32_to_cpu(grant->op) == CEPH_CAP_OP_IMPORT) {
2cd698be 3136 if (newcaps & ~issued)
ab6c2c3e 3137 wake = true;
0e294387
YZ
3138 kick_flushing_inode_caps(mdsc, session, inode);
3139 up_read(&mdsc->snap_rwsem);
3140 } else {
3141 spin_unlock(&ci->i_ceph_lock);
2cd698be
YZ
3142 }
3143
31c542a1
YZ
3144 if (fill_inline)
3145 ceph_fill_inline_data(inode, NULL, inline_data, inline_len);
3146
14649758 3147 if (queue_trunc)
c6bcda6f 3148 ceph_queue_vmtruncate(inode);
c6bcda6f 3149
3c6f6b79 3150 if (writeback)
a8599bd8
SW
3151 /*
3152 * queue inode for writeback: we can't actually call
3153 * filemap_write_and_wait, etc. from message handler
3154 * context.
3155 */
3c6f6b79
SW
3156 ceph_queue_writeback(inode);
3157 if (queue_invalidate)
3158 ceph_queue_invalidate(inode);
ca20c991
YZ
3159 if (deleted_inode)
3160 invalidate_aliases(inode);
a8599bd8 3161 if (wake)
03066f23 3162 wake_up_all(&ci->i_cap_wq);
15637c8b
SW
3163
3164 if (check_caps == 1)
3165 ceph_check_caps(ci, CHECK_CAPS_NODELAY|CHECK_CAPS_AUTHONLY,
3166 session);
3167 else if (check_caps == 2)
3168 ceph_check_caps(ci, CHECK_CAPS_NODELAY, session);
3169 else
3170 mutex_unlock(&session->s_mutex);
a8599bd8
SW
3171}
3172
3173/*
3174 * Handle FLUSH_ACK from MDS, indicating that metadata we sent to the
3175 * MDS has been safely committed.
3176 */
6df058c0 3177static void handle_cap_flush_ack(struct inode *inode, u64 flush_tid,
a8599bd8
SW
3178 struct ceph_mds_caps *m,
3179 struct ceph_mds_session *session,
3180 struct ceph_cap *cap)
be655596 3181 __releases(ci->i_ceph_lock)
a8599bd8
SW
3182{
3183 struct ceph_inode_info *ci = ceph_inode(inode);
3d14c5d2 3184 struct ceph_mds_client *mdsc = ceph_sb_to_client(inode->i_sb)->mdsc;
e4500b5e 3185 struct ceph_cap_flush *cf, *tmp_cf;
553adfd9 3186 LIST_HEAD(to_remove);
a8599bd8
SW
3187 unsigned seq = le32_to_cpu(m->seq);
3188 int dirty = le32_to_cpu(m->dirty);
3189 int cleaned = 0;
c8799fc4 3190 bool drop = false;
7271efa7
TM
3191 bool wake_ci = false;
3192 bool wake_mdsc = false;
a8599bd8 3193
e4500b5e 3194 list_for_each_entry_safe(cf, tmp_cf, &ci->i_cap_flush_list, i_list) {
553adfd9
YZ
3195 if (cf->tid == flush_tid)
3196 cleaned = cf->caps;
0e294387
YZ
3197 if (cf->caps == 0) /* capsnap */
3198 continue;
553adfd9 3199 if (cf->tid <= flush_tid) {
c8799fc4
YZ
3200 if (__finish_cap_flush(NULL, ci, cf))
3201 wake_ci = true;
e4500b5e 3202 list_add_tail(&cf->i_list, &to_remove);
553adfd9
YZ
3203 } else {
3204 cleaned &= ~cf->caps;
3205 if (!cleaned)
3206 break;
3207 }
3208 }
a8599bd8
SW
3209
3210 dout("handle_cap_flush_ack inode %p mds%d seq %d on %s cleaned %s,"
3211 " flushing %s -> %s\n",
3212 inode, session->s_mds, seq, ceph_cap_string(dirty),
3213 ceph_cap_string(cleaned), ceph_cap_string(ci->i_flushing_caps),
3214 ceph_cap_string(ci->i_flushing_caps & ~cleaned));
3215
8310b089 3216 if (list_empty(&to_remove) && !cleaned)
a8599bd8
SW
3217 goto out;
3218
a8599bd8 3219 ci->i_flushing_caps &= ~cleaned;
a8599bd8
SW
3220
3221 spin_lock(&mdsc->cap_dirty_lock);
8310b089 3222
c8799fc4
YZ
3223 list_for_each_entry(cf, &to_remove, i_list) {
3224 if (__finish_cap_flush(mdsc, NULL, cf))
3225 wake_mdsc = true;
8310b089
YZ
3226 }
3227
a8599bd8 3228 if (ci->i_flushing_caps == 0) {
0e294387
YZ
3229 if (list_empty(&ci->i_cap_flush_list)) {
3230 list_del_init(&ci->i_flushing_item);
3231 if (!list_empty(&session->s_cap_flushing)) {
3232 dout(" mds%d still flushing cap on %p\n",
3233 session->s_mds,
3234 &list_first_entry(&session->s_cap_flushing,
3235 struct ceph_inode_info,
3236 i_flushing_item)->vfs_inode);
3237 }
3238 }
a8599bd8 3239 mdsc->num_cap_flushing--;
a8599bd8 3240 dout(" inode %p now !flushing\n", inode);
afcdaea3
SW
3241
3242 if (ci->i_dirty_caps == 0) {
3243 dout(" inode %p now clean\n", inode);
3244 BUG_ON(!list_empty(&ci->i_dirty_item));
c8799fc4 3245 drop = true;
5dda377c
YZ
3246 if (ci->i_wr_ref == 0 &&
3247 ci->i_wrbuffer_ref_head == 0) {
7d8cb26d
SW
3248 BUG_ON(!ci->i_head_snapc);
3249 ceph_put_snap_context(ci->i_head_snapc);
3250 ci->i_head_snapc = NULL;
3251 }
76e3b390
SW
3252 } else {
3253 BUG_ON(list_empty(&ci->i_dirty_item));
afcdaea3 3254 }
a8599bd8
SW
3255 }
3256 spin_unlock(&mdsc->cap_dirty_lock);
a8599bd8
SW
3257
3258out:
be655596 3259 spin_unlock(&ci->i_ceph_lock);
553adfd9
YZ
3260
3261 while (!list_empty(&to_remove)) {
3262 cf = list_first_entry(&to_remove,
e4500b5e
YZ
3263 struct ceph_cap_flush, i_list);
3264 list_del(&cf->i_list);
f66fd9f0 3265 ceph_free_cap_flush(cf);
553adfd9 3266 }
c8799fc4
YZ
3267
3268 if (wake_ci)
3269 wake_up_all(&ci->i_cap_wq);
3270 if (wake_mdsc)
3271 wake_up_all(&mdsc->cap_flushing_wq);
afcdaea3 3272 if (drop)
a8599bd8
SW
3273 iput(inode);
3274}
3275
3276/*
3277 * Handle FLUSHSNAP_ACK. MDS has flushed snap data to disk and we can
3278 * throw away our cap_snap.
3279 *
3280 * Caller hold s_mutex.
3281 */
6df058c0 3282static void handle_cap_flushsnap_ack(struct inode *inode, u64 flush_tid,
a8599bd8
SW
3283 struct ceph_mds_caps *m,
3284 struct ceph_mds_session *session)
3285{
3286 struct ceph_inode_info *ci = ceph_inode(inode);
affbc19a 3287 struct ceph_mds_client *mdsc = ceph_sb_to_client(inode->i_sb)->mdsc;
a8599bd8 3288 u64 follows = le64_to_cpu(m->snap_follows);
a8599bd8 3289 struct ceph_cap_snap *capsnap;
c8799fc4
YZ
3290 bool flushed = false;
3291 bool wake_ci = false;
3292 bool wake_mdsc = false;
a8599bd8
SW
3293
3294 dout("handle_cap_flushsnap_ack inode %p ci %p mds%d follows %lld\n",
3295 inode, ci, session->s_mds, follows);
3296
be655596 3297 spin_lock(&ci->i_ceph_lock);
a8599bd8
SW
3298 list_for_each_entry(capsnap, &ci->i_cap_snaps, ci_item) {
3299 if (capsnap->follows == follows) {
0e294387 3300 if (capsnap->cap_flush.tid != flush_tid) {
a8599bd8
SW
3301 dout(" cap_snap %p follows %lld tid %lld !="
3302 " %lld\n", capsnap, follows,
0e294387 3303 flush_tid, capsnap->cap_flush.tid);
a8599bd8
SW
3304 break;
3305 }
c8799fc4 3306 flushed = true;
a8599bd8
SW
3307 break;
3308 } else {
3309 dout(" skipping cap_snap %p follows %lld\n",
3310 capsnap, capsnap->follows);
3311 }
3312 }
0e294387 3313 if (flushed) {
0e294387
YZ
3314 WARN_ON(capsnap->dirty_pages || capsnap->writing);
3315 dout(" removing %p cap_snap %p follows %lld\n",
3316 inode, capsnap, follows);
3317 list_del(&capsnap->ci_item);
c8799fc4
YZ
3318 if (__finish_cap_flush(NULL, ci, &capsnap->cap_flush))
3319 wake_ci = true;
0e294387
YZ
3320
3321 spin_lock(&mdsc->cap_dirty_lock);
3322
3323 if (list_empty(&ci->i_cap_flush_list))
3324 list_del_init(&ci->i_flushing_item);
3325
c8799fc4
YZ
3326 if (__finish_cap_flush(mdsc, NULL, &capsnap->cap_flush))
3327 wake_mdsc = true;
0e294387
YZ
3328
3329 spin_unlock(&mdsc->cap_dirty_lock);
0e294387 3330 }
be655596 3331 spin_unlock(&ci->i_ceph_lock);
0e294387
YZ
3332 if (flushed) {
3333 ceph_put_snap_context(capsnap->context);
3334 ceph_put_cap_snap(capsnap);
c8799fc4
YZ
3335 if (wake_ci)
3336 wake_up_all(&ci->i_cap_wq);
3337 if (wake_mdsc)
3338 wake_up_all(&mdsc->cap_flushing_wq);
a8599bd8 3339 iput(inode);
0e294387 3340 }
a8599bd8
SW
3341}
3342
3343/*
3344 * Handle TRUNC from MDS, indicating file truncation.
3345 *
3346 * caller hold s_mutex.
3347 */
3348static void handle_cap_trunc(struct inode *inode,
3349 struct ceph_mds_caps *trunc,
3350 struct ceph_mds_session *session)
be655596 3351 __releases(ci->i_ceph_lock)
a8599bd8
SW
3352{
3353 struct ceph_inode_info *ci = ceph_inode(inode);
3354 int mds = session->s_mds;
3355 int seq = le32_to_cpu(trunc->seq);
3356 u32 truncate_seq = le32_to_cpu(trunc->truncate_seq);
3357 u64 truncate_size = le64_to_cpu(trunc->truncate_size);
3358 u64 size = le64_to_cpu(trunc->size);
3359 int implemented = 0;
3360 int dirty = __ceph_caps_dirty(ci);
3361 int issued = __ceph_caps_issued(ceph_inode(inode), &implemented);
3362 int queue_trunc = 0;
3363
3364 issued |= implemented | dirty;
3365
3366 dout("handle_cap_trunc inode %p mds%d seq %d to %lld seq %d\n",
3367 inode, mds, seq, truncate_size, truncate_seq);
3368 queue_trunc = ceph_fill_file_size(inode, issued,
3369 truncate_seq, truncate_size, size);
be655596 3370 spin_unlock(&ci->i_ceph_lock);
a8599bd8 3371
14649758 3372 if (queue_trunc)
3c6f6b79 3373 ceph_queue_vmtruncate(inode);
a8599bd8
SW
3374}
3375
3376/*
3377 * Handle EXPORT from MDS. Cap is being migrated _from_ this mds to a
3378 * different one. If we are the most recent migration we've seen (as
3379 * indicated by mseq), make note of the migrating cap bits for the
3380 * duration (until we see the corresponding IMPORT).
3381 *
3382 * caller holds s_mutex
3383 */
3384static void handle_cap_export(struct inode *inode, struct ceph_mds_caps *ex,
11df2dfb
YZ
3385 struct ceph_mds_cap_peer *ph,
3386 struct ceph_mds_session *session)
a8599bd8 3387{
db354052 3388 struct ceph_mds_client *mdsc = ceph_inode_to_client(inode)->mdsc;
11df2dfb 3389 struct ceph_mds_session *tsession = NULL;
d9df2783 3390 struct ceph_cap *cap, *tcap, *new_cap = NULL;
a8599bd8 3391 struct ceph_inode_info *ci = ceph_inode(inode);
11df2dfb 3392 u64 t_cap_id;
a8599bd8 3393 unsigned mseq = le32_to_cpu(ex->migrate_seq);
11df2dfb
YZ
3394 unsigned t_seq, t_mseq;
3395 int target, issued;
3396 int mds = session->s_mds;
a8599bd8 3397
11df2dfb
YZ
3398 if (ph) {
3399 t_cap_id = le64_to_cpu(ph->cap_id);
3400 t_seq = le32_to_cpu(ph->seq);
3401 t_mseq = le32_to_cpu(ph->mseq);
3402 target = le32_to_cpu(ph->mds);
3403 } else {
3404 t_cap_id = t_seq = t_mseq = 0;
3405 target = -1;
3406 }
a8599bd8 3407
11df2dfb
YZ
3408 dout("handle_cap_export inode %p ci %p mds%d mseq %d target %d\n",
3409 inode, ci, mds, mseq, target);
3410retry:
be655596 3411 spin_lock(&ci->i_ceph_lock);
11df2dfb 3412 cap = __get_cap_for_mds(ci, mds);
ca665e02 3413 if (!cap || cap->cap_id != le64_to_cpu(ex->cap_id))
11df2dfb 3414 goto out_unlock;
a8599bd8 3415
11df2dfb
YZ
3416 if (target < 0) {
3417 __ceph_remove_cap(cap, false);
77310320
YZ
3418 if (!ci->i_auth_cap)
3419 ci->i_ceph_flags |= CEPH_I_CAP_DROPPED;
11df2dfb 3420 goto out_unlock;
a8599bd8
SW
3421 }
3422
11df2dfb
YZ
3423 /*
3424 * now we know we haven't received the cap import message yet
3425 * because the exported cap still exist.
3426 */
db354052 3427
11df2dfb
YZ
3428 issued = cap->issued;
3429 WARN_ON(issued != cap->implemented);
3430
3431 tcap = __get_cap_for_mds(ci, target);
3432 if (tcap) {
3433 /* already have caps from the target */
fa0aa3b8 3434 if (tcap->cap_id == t_cap_id &&
11df2dfb
YZ
3435 ceph_seq_cmp(tcap->seq, t_seq) < 0) {
3436 dout(" updating import cap %p mds%d\n", tcap, target);
3437 tcap->cap_id = t_cap_id;
3438 tcap->seq = t_seq - 1;
3439 tcap->issue_seq = t_seq - 1;
3440 tcap->mseq = t_mseq;
3441 tcap->issued |= issued;
3442 tcap->implemented |= issued;
3443 if (cap == ci->i_auth_cap)
3444 ci->i_auth_cap = tcap;
00f06cba 3445
0e294387
YZ
3446 if (!list_empty(&ci->i_cap_flush_list) &&
3447 ci->i_auth_cap == tcap) {
11df2dfb
YZ
3448 spin_lock(&mdsc->cap_dirty_lock);
3449 list_move_tail(&ci->i_flushing_item,
3450 &tcap->session->s_cap_flushing);
3451 spin_unlock(&mdsc->cap_dirty_lock);
db354052 3452 }
a8599bd8 3453 }
a096b09a 3454 __ceph_remove_cap(cap, false);
11df2dfb 3455 goto out_unlock;
d9df2783 3456 } else if (tsession) {
11df2dfb 3457 /* add placeholder for the export tagert */
d9df2783 3458 int flag = (cap == ci->i_auth_cap) ? CEPH_CAP_FLAG_AUTH : 0;
00f06cba 3459 tcap = new_cap;
11df2dfb 3460 ceph_add_cap(inode, tsession, t_cap_id, -1, issued, 0,
d9df2783
YZ
3461 t_seq - 1, t_mseq, (u64)-1, flag, &new_cap);
3462
00f06cba
YZ
3463 if (!list_empty(&ci->i_cap_flush_list) &&
3464 ci->i_auth_cap == tcap) {
3465 spin_lock(&mdsc->cap_dirty_lock);
3466 list_move_tail(&ci->i_flushing_item,
3467 &tcap->session->s_cap_flushing);
3468 spin_unlock(&mdsc->cap_dirty_lock);
3469 }
3470
d9df2783
YZ
3471 __ceph_remove_cap(cap, false);
3472 goto out_unlock;
a8599bd8
SW
3473 }
3474
be655596 3475 spin_unlock(&ci->i_ceph_lock);
11df2dfb
YZ
3476 mutex_unlock(&session->s_mutex);
3477
3478 /* open target session */
3479 tsession = ceph_mdsc_open_export_target_session(mdsc, target);
3480 if (!IS_ERR(tsession)) {
3481 if (mds > target) {
3482 mutex_lock(&session->s_mutex);
3483 mutex_lock_nested(&tsession->s_mutex,
3484 SINGLE_DEPTH_NESTING);
3485 } else {
3486 mutex_lock(&tsession->s_mutex);
3487 mutex_lock_nested(&session->s_mutex,
3488 SINGLE_DEPTH_NESTING);
3489 }
d9df2783 3490 new_cap = ceph_get_cap(mdsc, NULL);
11df2dfb
YZ
3491 } else {
3492 WARN_ON(1);
3493 tsession = NULL;
3494 target = -1;
3495 }
3496 goto retry;
3497
3498out_unlock:
3499 spin_unlock(&ci->i_ceph_lock);
3500 mutex_unlock(&session->s_mutex);
3501 if (tsession) {
3502 mutex_unlock(&tsession->s_mutex);
3503 ceph_put_mds_session(tsession);
3504 }
d9df2783
YZ
3505 if (new_cap)
3506 ceph_put_cap(mdsc, new_cap);
a8599bd8
SW
3507}
3508
3509/*
2cd698be 3510 * Handle cap IMPORT.
a8599bd8 3511 *
2cd698be 3512 * caller holds s_mutex. acquires i_ceph_lock
a8599bd8
SW
3513 */
3514static void handle_cap_import(struct ceph_mds_client *mdsc,
3515 struct inode *inode, struct ceph_mds_caps *im,
4ee6a914 3516 struct ceph_mds_cap_peer *ph,
a8599bd8 3517 struct ceph_mds_session *session,
2cd698be
YZ
3518 struct ceph_cap **target_cap, int *old_issued)
3519 __acquires(ci->i_ceph_lock)
a8599bd8
SW
3520{
3521 struct ceph_inode_info *ci = ceph_inode(inode);
2cd698be 3522 struct ceph_cap *cap, *ocap, *new_cap = NULL;
a8599bd8 3523 int mds = session->s_mds;
2cd698be
YZ
3524 int issued;
3525 unsigned caps = le32_to_cpu(im->caps);
a8599bd8
SW
3526 unsigned wanted = le32_to_cpu(im->wanted);
3527 unsigned seq = le32_to_cpu(im->seq);
3528 unsigned mseq = le32_to_cpu(im->migrate_seq);
3529 u64 realmino = le64_to_cpu(im->realm);
3530 u64 cap_id = le64_to_cpu(im->cap_id);
4ee6a914
YZ
3531 u64 p_cap_id;
3532 int peer;
a8599bd8 3533
4ee6a914
YZ
3534 if (ph) {
3535 p_cap_id = le64_to_cpu(ph->cap_id);
3536 peer = le32_to_cpu(ph->mds);
3537 } else {
3538 p_cap_id = 0;
3539 peer = -1;
3540 }
db354052 3541
4ee6a914
YZ
3542 dout("handle_cap_import inode %p ci %p mds%d mseq %d peer %d\n",
3543 inode, ci, mds, mseq, peer);
3544
d9df2783 3545retry:
4ee6a914 3546 spin_lock(&ci->i_ceph_lock);
d9df2783
YZ
3547 cap = __get_cap_for_mds(ci, mds);
3548 if (!cap) {
3549 if (!new_cap) {
3550 spin_unlock(&ci->i_ceph_lock);
3551 new_cap = ceph_get_cap(mdsc, NULL);
3552 goto retry;
3553 }
2cd698be
YZ
3554 cap = new_cap;
3555 } else {
3556 if (new_cap) {
3557 ceph_put_cap(mdsc, new_cap);
3558 new_cap = NULL;
3559 }
d9df2783
YZ
3560 }
3561
2cd698be
YZ
3562 __ceph_caps_issued(ci, &issued);
3563 issued |= __ceph_caps_dirty(ci);
3564
3565 ceph_add_cap(inode, session, cap_id, -1, caps, wanted, seq, mseq,
d9df2783
YZ
3566 realmino, CEPH_CAP_FLAG_AUTH, &new_cap);
3567
2cd698be
YZ
3568 ocap = peer >= 0 ? __get_cap_for_mds(ci, peer) : NULL;
3569 if (ocap && ocap->cap_id == p_cap_id) {
4ee6a914 3570 dout(" remove export cap %p mds%d flags %d\n",
2cd698be 3571 ocap, peer, ph->flags);
4ee6a914 3572 if ((ph->flags & CEPH_CAP_FLAG_AUTH) &&
2cd698be
YZ
3573 (ocap->seq != le32_to_cpu(ph->seq) ||
3574 ocap->mseq != le32_to_cpu(ph->mseq))) {
4ee6a914
YZ
3575 pr_err("handle_cap_import: mismatched seq/mseq: "
3576 "ino (%llx.%llx) mds%d seq %d mseq %d "
3577 "importer mds%d has peer seq %d mseq %d\n",
2cd698be
YZ
3578 ceph_vinop(inode), peer, ocap->seq,
3579 ocap->mseq, mds, le32_to_cpu(ph->seq),
4ee6a914 3580 le32_to_cpu(ph->mseq));
db354052 3581 }
2cd698be 3582 __ceph_remove_cap(ocap, (ph->flags & CEPH_CAP_FLAG_RELEASE));
a8599bd8
SW
3583 }
3584
4ee6a914 3585 /* make sure we re-request max_size, if necessary */
4ee6a914 3586 ci->i_requested_max_size = 0;
d9df2783 3587
2cd698be
YZ
3588 *old_issued = issued;
3589 *target_cap = cap;
a8599bd8
SW
3590}
3591
3592/*
3593 * Handle a caps message from the MDS.
3594 *
3595 * Identify the appropriate session, inode, and call the right handler
3596 * based on the cap op.
3597 */
3598void ceph_handle_caps(struct ceph_mds_session *session,
3599 struct ceph_msg *msg)
3600{
3601 struct ceph_mds_client *mdsc = session->s_mdsc;
3d14c5d2 3602 struct super_block *sb = mdsc->fsc->sb;
a8599bd8 3603 struct inode *inode;
be655596 3604 struct ceph_inode_info *ci;
a8599bd8
SW
3605 struct ceph_cap *cap;
3606 struct ceph_mds_caps *h;
4ee6a914 3607 struct ceph_mds_cap_peer *peer = NULL;
779fe0fb
YZ
3608 struct ceph_snap_realm *realm = NULL;
3609 struct ceph_string *pool_ns = NULL;
2600d2dd 3610 int mds = session->s_mds;
2cd698be 3611 int op, issued;
3d7ded4d 3612 u32 seq, mseq;
a8599bd8 3613 struct ceph_vino vino;
6df058c0 3614 u64 tid;
fb01d1f8
YZ
3615 u64 inline_version = 0;
3616 void *inline_data = NULL;
3617 u32 inline_len = 0;
70edb55b 3618 void *snaptrace;
ce1fbc8d 3619 size_t snaptrace_len;
fb01d1f8 3620 void *p, *end;
a8599bd8
SW
3621
3622 dout("handle_caps from mds%d\n", mds);
3623
3624 /* decode */
4ee6a914 3625 end = msg->front.iov_base + msg->front.iov_len;
6df058c0 3626 tid = le64_to_cpu(msg->hdr.tid);
a8599bd8
SW
3627 if (msg->front.iov_len < sizeof(*h))
3628 goto bad;
3629 h = msg->front.iov_base;
3630 op = le32_to_cpu(h->op);
3631 vino.ino = le64_to_cpu(h->ino);
3632 vino.snap = CEPH_NOSNAP;
a8599bd8 3633 seq = le32_to_cpu(h->seq);
3d7ded4d 3634 mseq = le32_to_cpu(h->migrate_seq);
a8599bd8 3635
ce1fbc8d
SW
3636 snaptrace = h + 1;
3637 snaptrace_len = le32_to_cpu(h->snap_trace_len);
fb01d1f8 3638 p = snaptrace + snaptrace_len;
ce1fbc8d
SW
3639
3640 if (le16_to_cpu(msg->hdr.version) >= 2) {
fb01d1f8 3641 u32 flock_len;
ce1fbc8d 3642 ceph_decode_32_safe(&p, end, flock_len, bad);
4ee6a914
YZ
3643 if (p + flock_len > end)
3644 goto bad;
fb01d1f8 3645 p += flock_len;
ce1fbc8d
SW
3646 }
3647
4ee6a914
YZ
3648 if (le16_to_cpu(msg->hdr.version) >= 3) {
3649 if (op == CEPH_CAP_OP_IMPORT) {
4ee6a914
YZ
3650 if (p + sizeof(*peer) > end)
3651 goto bad;
3652 peer = p;
fb01d1f8 3653 p += sizeof(*peer);
11df2dfb
YZ
3654 } else if (op == CEPH_CAP_OP_EXPORT) {
3655 /* recorded in unused fields */
3656 peer = (void *)&h->size;
4ee6a914
YZ
3657 }
3658 }
3659
fb01d1f8
YZ
3660 if (le16_to_cpu(msg->hdr.version) >= 4) {
3661 ceph_decode_64_safe(&p, end, inline_version, bad);
3662 ceph_decode_32_safe(&p, end, inline_len, bad);
3663 if (p + inline_len > end)
3664 goto bad;
3665 inline_data = p;
3666 p += inline_len;
3667 }
3668
92475f05
JL
3669 if (le16_to_cpu(msg->hdr.version) >= 5) {
3670 struct ceph_osd_client *osdc = &mdsc->fsc->client->osdc;
3671 u32 epoch_barrier;
3672
3673 ceph_decode_32_safe(&p, end, epoch_barrier, bad);
3674 ceph_osdc_update_epoch_barrier(osdc, epoch_barrier);
3675 }
3676
5ea5c5e0
YZ
3677 if (le16_to_cpu(msg->hdr.version) >= 8) {
3678 u64 flush_tid;
3679 u32 caller_uid, caller_gid;
779fe0fb 3680 u32 pool_ns_len;
92475f05 3681
5ea5c5e0
YZ
3682 /* version >= 6 */
3683 ceph_decode_64_safe(&p, end, flush_tid, bad);
3684 /* version >= 7 */
3685 ceph_decode_32_safe(&p, end, caller_uid, bad);
3686 ceph_decode_32_safe(&p, end, caller_gid, bad);
3687 /* version >= 8 */
3688 ceph_decode_32_safe(&p, end, pool_ns_len, bad);
779fe0fb
YZ
3689 if (pool_ns_len > 0) {
3690 ceph_decode_need(&p, end, pool_ns_len, bad);
3691 pool_ns = ceph_find_or_create_string(p, pool_ns_len);
3692 p += pool_ns_len;
3693 }
5ea5c5e0
YZ
3694 }
3695
6cd3bcad
YZ
3696 /* lookup ino */
3697 inode = ceph_find_inode(sb, vino);
3698 ci = ceph_inode(inode);
3699 dout(" op %s ino %llx.%llx inode %p\n", ceph_cap_op_name(op), vino.ino,
3700 vino.snap, inode);
3701
a8599bd8
SW
3702 mutex_lock(&session->s_mutex);
3703 session->s_seq++;
3704 dout(" mds%d seq %lld cap seq %u\n", session->s_mds, session->s_seq,
3705 (unsigned)seq);
3706
a8599bd8
SW
3707 if (!inode) {
3708 dout(" i don't have ino %llx\n", vino.ino);
3d7ded4d 3709
a096b09a 3710 if (op == CEPH_CAP_OP_IMPORT) {
745a8e3b
YZ
3711 cap = ceph_get_cap(mdsc, NULL);
3712 cap->cap_ino = vino.ino;
3713 cap->queue_release = 1;
779fe0fb 3714 cap->cap_id = le64_to_cpu(h->cap_id);
745a8e3b
YZ
3715 cap->mseq = mseq;
3716 cap->seq = seq;
dc24de82 3717 cap->issue_seq = seq;
a096b09a 3718 spin_lock(&session->s_cap_lock);
745a8e3b
YZ
3719 list_add_tail(&cap->session_caps,
3720 &session->s_cap_releases);
3721 session->s_num_cap_releases++;
a096b09a
YZ
3722 spin_unlock(&session->s_cap_lock);
3723 }
21b559de 3724 goto flush_cap_releases;
a8599bd8
SW
3725 }
3726
3727 /* these will work even if we don't have a cap yet */
3728 switch (op) {
3729 case CEPH_CAP_OP_FLUSHSNAP_ACK:
6df058c0 3730 handle_cap_flushsnap_ack(inode, tid, h, session);
a8599bd8
SW
3731 goto done;
3732
3733 case CEPH_CAP_OP_EXPORT:
11df2dfb
YZ
3734 handle_cap_export(inode, h, peer, session);
3735 goto done_unlocked;
a8599bd8
SW
3736
3737 case CEPH_CAP_OP_IMPORT:
982d6011
YZ
3738 realm = NULL;
3739 if (snaptrace_len) {
3740 down_write(&mdsc->snap_rwsem);
3741 ceph_update_snap_trace(mdsc, snaptrace,
3742 snaptrace + snaptrace_len,
3743 false, &realm);
3744 downgrade_write(&mdsc->snap_rwsem);
3745 } else {
3746 down_read(&mdsc->snap_rwsem);
3747 }
4ee6a914 3748 handle_cap_import(mdsc, inode, h, peer, session,
2cd698be 3749 &cap, &issued);
779fe0fb 3750 handle_cap_grant(mdsc, inode, h, &pool_ns,
fb01d1f8 3751 inline_version, inline_data, inline_len,
779fe0fb 3752 msg->middle, session, cap, issued);
982d6011
YZ
3753 if (realm)
3754 ceph_put_snap_realm(mdsc, realm);
2cd698be 3755 goto done_unlocked;
a8599bd8
SW
3756 }
3757
3758 /* the rest require a cap */
be655596 3759 spin_lock(&ci->i_ceph_lock);
a8599bd8
SW
3760 cap = __get_cap_for_mds(ceph_inode(inode), mds);
3761 if (!cap) {
9dbd412f 3762 dout(" no cap on %p ino %llx.%llx from mds%d\n",
a8599bd8 3763 inode, ceph_ino(inode), ceph_snap(inode), mds);
be655596 3764 spin_unlock(&ci->i_ceph_lock);
21b559de 3765 goto flush_cap_releases;
a8599bd8
SW
3766 }
3767
be655596 3768 /* note that each of these drops i_ceph_lock for us */
a8599bd8
SW
3769 switch (op) {
3770 case CEPH_CAP_OP_REVOKE:
3771 case CEPH_CAP_OP_GRANT:
2cd698be
YZ
3772 __ceph_caps_issued(ci, &issued);
3773 issued |= __ceph_caps_dirty(ci);
779fe0fb 3774 handle_cap_grant(mdsc, inode, h, &pool_ns,
fb01d1f8 3775 inline_version, inline_data, inline_len,
779fe0fb 3776 msg->middle, session, cap, issued);
15637c8b 3777 goto done_unlocked;
a8599bd8
SW
3778
3779 case CEPH_CAP_OP_FLUSH_ACK:
6df058c0 3780 handle_cap_flush_ack(inode, tid, h, session, cap);
a8599bd8
SW
3781 break;
3782
3783 case CEPH_CAP_OP_TRUNC:
3784 handle_cap_trunc(inode, h, session);
3785 break;
3786
3787 default:
be655596 3788 spin_unlock(&ci->i_ceph_lock);
a8599bd8
SW
3789 pr_err("ceph_handle_caps: unknown cap op %d %s\n", op,
3790 ceph_cap_op_name(op));
3791 }
3792
21b559de
GF
3793 goto done;
3794
3795flush_cap_releases:
3796 /*
745a8e3b 3797 * send any cap release message to try to move things
21b559de
GF
3798 * along for the mds (who clearly thinks we still have this
3799 * cap).
3800 */
21b559de
GF
3801 ceph_send_cap_releases(mdsc, session);
3802
a8599bd8 3803done:
15637c8b
SW
3804 mutex_unlock(&session->s_mutex);
3805done_unlocked:
e96a650a 3806 iput(inode);
779fe0fb 3807 ceph_put_string(pool_ns);
a8599bd8
SW
3808 return;
3809
3810bad:
3811 pr_err("ceph_handle_caps: corrupt message\n");
9ec7cab1 3812 ceph_msg_dump(msg);
a8599bd8
SW
3813 return;
3814}
3815
3816/*
3817 * Delayed work handler to process end of delayed cap release LRU list.
3818 */
afcdaea3 3819void ceph_check_delayed_caps(struct ceph_mds_client *mdsc)
a8599bd8 3820{
4b9f2042 3821 struct inode *inode;
a8599bd8
SW
3822 struct ceph_inode_info *ci;
3823 int flags = CHECK_CAPS_NODELAY;
3824
a8599bd8
SW
3825 dout("check_delayed_caps\n");
3826 while (1) {
3827 spin_lock(&mdsc->cap_delay_lock);
3828 if (list_empty(&mdsc->cap_delay_list))
3829 break;
3830 ci = list_first_entry(&mdsc->cap_delay_list,
3831 struct ceph_inode_info,
3832 i_cap_delay_list);
3833 if ((ci->i_ceph_flags & CEPH_I_FLUSH) == 0 &&
3834 time_before(jiffies, ci->i_hold_caps_max))
3835 break;
3836 list_del_init(&ci->i_cap_delay_list);
4b9f2042
YZ
3837
3838 inode = igrab(&ci->vfs_inode);
a8599bd8 3839 spin_unlock(&mdsc->cap_delay_lock);
4b9f2042
YZ
3840
3841 if (inode) {
3842 dout("check_delayed_caps on %p\n", inode);
3843 ceph_check_caps(ci, flags, NULL);
3844 iput(inode);
3845 }
a8599bd8
SW
3846 }
3847 spin_unlock(&mdsc->cap_delay_lock);
3848}
3849
afcdaea3
SW
3850/*
3851 * Flush all dirty caps to the mds
3852 */
3853void ceph_flush_dirty_caps(struct ceph_mds_client *mdsc)
3854{
db354052
SW
3855 struct ceph_inode_info *ci;
3856 struct inode *inode;
afcdaea3
SW
3857
3858 dout("flush_dirty_caps\n");
3859 spin_lock(&mdsc->cap_dirty_lock);
db354052
SW
3860 while (!list_empty(&mdsc->cap_dirty)) {
3861 ci = list_first_entry(&mdsc->cap_dirty, struct ceph_inode_info,
3862 i_dirty_item);
70b666c3
SW
3863 inode = &ci->vfs_inode;
3864 ihold(inode);
db354052 3865 dout("flush_dirty_caps %p\n", inode);
afcdaea3 3866 spin_unlock(&mdsc->cap_dirty_lock);
70b666c3
SW
3867 ceph_check_caps(ci, CHECK_CAPS_NODELAY|CHECK_CAPS_FLUSH, NULL);
3868 iput(inode);
afcdaea3
SW
3869 spin_lock(&mdsc->cap_dirty_lock);
3870 }
3871 spin_unlock(&mdsc->cap_dirty_lock);
db354052 3872 dout("flush_dirty_caps done\n");
afcdaea3
SW
3873}
3874
774a6a11
YZ
3875void __ceph_get_fmode(struct ceph_inode_info *ci, int fmode)
3876{
3877 int i;
3878 int bits = (fmode << 1) | 1;
3879 for (i = 0; i < CEPH_FILE_MODE_BITS; i++) {
3880 if (bits & (1 << i))
3881 ci->i_nr_by_mode[i]++;
3882 }
3883}
3884
a8599bd8
SW
3885/*
3886 * Drop open file reference. If we were the last open file,
3887 * we may need to release capabilities to the MDS (or schedule
3888 * their delayed release).
3889 */
3890void ceph_put_fmode(struct ceph_inode_info *ci, int fmode)
3891{
774a6a11
YZ
3892 int i, last = 0;
3893 int bits = (fmode << 1) | 1;
be655596 3894 spin_lock(&ci->i_ceph_lock);
774a6a11
YZ
3895 for (i = 0; i < CEPH_FILE_MODE_BITS; i++) {
3896 if (bits & (1 << i)) {
3897 BUG_ON(ci->i_nr_by_mode[i] == 0);
3898 if (--ci->i_nr_by_mode[i] == 0)
3899 last++;
3900 }
3901 }
3902 dout("put_fmode %p fmode %d {%d,%d,%d,%d}\n",
3903 &ci->vfs_inode, fmode,
3904 ci->i_nr_by_mode[0], ci->i_nr_by_mode[1],
3905 ci->i_nr_by_mode[2], ci->i_nr_by_mode[3]);
be655596 3906 spin_unlock(&ci->i_ceph_lock);
a8599bd8
SW
3907
3908 if (last && ci->i_vino.snap == CEPH_NOSNAP)
3909 ceph_check_caps(ci, 0, NULL);
3910}
3911
3912/*
3913 * Helpers for embedding cap and dentry lease releases into mds
3914 * requests.
3915 *
3916 * @force is used by dentry_release (below) to force inclusion of a
3917 * record for the directory inode, even when there aren't any caps to
3918 * drop.
3919 */
3920int ceph_encode_inode_release(void **p, struct inode *inode,
3921 int mds, int drop, int unless, int force)
3922{
3923 struct ceph_inode_info *ci = ceph_inode(inode);
3924 struct ceph_cap *cap;
3925 struct ceph_mds_request_release *rel = *p;
ec97f88b 3926 int used, dirty;
a8599bd8 3927 int ret = 0;
a8599bd8 3928
be655596 3929 spin_lock(&ci->i_ceph_lock);
916623da 3930 used = __ceph_caps_used(ci);
ec97f88b 3931 dirty = __ceph_caps_dirty(ci);
916623da 3932
ec97f88b
SW
3933 dout("encode_inode_release %p mds%d used|dirty %s drop %s unless %s\n",
3934 inode, mds, ceph_cap_string(used|dirty), ceph_cap_string(drop),
916623da
SW
3935 ceph_cap_string(unless));
3936
ec97f88b
SW
3937 /* only drop unused, clean caps */
3938 drop &= ~(used | dirty);
916623da 3939
a8599bd8
SW
3940 cap = __get_cap_for_mds(ci, mds);
3941 if (cap && __cap_is_valid(cap)) {
222b7f90
YZ
3942 unless &= cap->issued;
3943 if (unless) {
3944 if (unless & CEPH_CAP_AUTH_EXCL)
3945 drop &= ~CEPH_CAP_AUTH_SHARED;
3946 if (unless & CEPH_CAP_LINK_EXCL)
3947 drop &= ~CEPH_CAP_LINK_SHARED;
3948 if (unless & CEPH_CAP_XATTR_EXCL)
3949 drop &= ~CEPH_CAP_XATTR_SHARED;
3950 if (unless & CEPH_CAP_FILE_EXCL)
3951 drop &= ~CEPH_CAP_FILE_SHARED;
3952 }
3953
3954 if (force || (cap->issued & drop)) {
3955 if (cap->issued & drop) {
bb137f84
YZ
3956 int wanted = __ceph_caps_wanted(ci);
3957 if ((ci->i_ceph_flags & CEPH_I_NODELAY) == 0)
3958 wanted |= cap->mds_wanted;
3959 dout("encode_inode_release %p cap %p "
3960 "%s -> %s, wanted %s -> %s\n", inode, cap,
a8599bd8 3961 ceph_cap_string(cap->issued),
bb137f84
YZ
3962 ceph_cap_string(cap->issued & ~drop),
3963 ceph_cap_string(cap->mds_wanted),
3964 ceph_cap_string(wanted));
3965
a8599bd8
SW
3966 cap->issued &= ~drop;
3967 cap->implemented &= ~drop;
bb137f84 3968 cap->mds_wanted = wanted;
a8599bd8
SW
3969 } else {
3970 dout("encode_inode_release %p cap %p %s"
3971 " (force)\n", inode, cap,
3972 ceph_cap_string(cap->issued));
3973 }
3974
3975 rel->ino = cpu_to_le64(ceph_ino(inode));
3976 rel->cap_id = cpu_to_le64(cap->cap_id);
3977 rel->seq = cpu_to_le32(cap->seq);
08a0f24e 3978 rel->issue_seq = cpu_to_le32(cap->issue_seq);
a8599bd8 3979 rel->mseq = cpu_to_le32(cap->mseq);
fd7b95cd 3980 rel->caps = cpu_to_le32(cap->implemented);
a8599bd8
SW
3981 rel->wanted = cpu_to_le32(cap->mds_wanted);
3982 rel->dname_len = 0;
3983 rel->dname_seq = 0;
3984 *p += sizeof(*rel);
3985 ret = 1;
3986 } else {
222b7f90 3987 dout("encode_inode_release %p cap %p %s (noop)\n",
a8599bd8
SW
3988 inode, cap, ceph_cap_string(cap->issued));
3989 }
3990 }
be655596 3991 spin_unlock(&ci->i_ceph_lock);
a8599bd8
SW
3992 return ret;
3993}
3994
3995int ceph_encode_dentry_release(void **p, struct dentry *dentry,
ca6c8ae0 3996 struct inode *dir,
a8599bd8
SW
3997 int mds, int drop, int unless)
3998{
ca6c8ae0 3999 struct dentry *parent = NULL;
a8599bd8
SW
4000 struct ceph_mds_request_release *rel = *p;
4001 struct ceph_dentry_info *di = ceph_dentry(dentry);
4002 int force = 0;
4003 int ret;
4004
4005 /*
4006 * force an record for the directory caps if we have a dentry lease.
be655596 4007 * this is racy (can't take i_ceph_lock and d_lock together), but it
a8599bd8
SW
4008 * doesn't have to be perfect; the mds will revoke anything we don't
4009 * release.
4010 */
4011 spin_lock(&dentry->d_lock);
4012 if (di->lease_session && di->lease_session->s_mds == mds)
4013 force = 1;
ca6c8ae0
JL
4014 if (!dir) {
4015 parent = dget(dentry->d_parent);
4016 dir = d_inode(parent);
4017 }
a8599bd8
SW
4018 spin_unlock(&dentry->d_lock);
4019
ca6c8ae0 4020 ret = ceph_encode_inode_release(p, dir, mds, drop, unless, force);
adf0d687 4021 dput(parent);
a8599bd8
SW
4022
4023 spin_lock(&dentry->d_lock);
4024 if (ret && di->lease_session && di->lease_session->s_mds == mds) {
4025 dout("encode_dentry_release %p mds%d seq %d\n",
4026 dentry, mds, (int)di->lease_seq);
4027 rel->dname_len = cpu_to_le32(dentry->d_name.len);
4028 memcpy(*p, dentry->d_name.name, dentry->d_name.len);
4029 *p += dentry->d_name.len;
4030 rel->dname_seq = cpu_to_le32(di->lease_seq);
1dadcce3 4031 __ceph_mdsc_drop_dentry_lease(dentry);
a8599bd8
SW
4032 }
4033 spin_unlock(&dentry->d_lock);
4034 return ret;
4035}